diff --git a/services/googledrive.inc.php b/services/googledrive.inc.php deleted file mode 100644 index b03d0995..00000000 --- a/services/googledrive.inc.php +++ /dev/null @@ -1,107 +0,0 @@ -setApplicationName('Google Drive API PHP Quickstart'); - $client->setScopes(Google_Service_Drive::DRIVE); - $client->setAuthConfig('/srv/services/anime.fansubs.cat/googledrive/credentials_'.$account_id.'.json'); - $client->setAccessType('offline'); - $client->setPrompt('select_account consent'); - - // Load previously authorized token from a file, if it exists. - // The file token.json stores the user's access and refresh tokens, and is - // created automatically when the authorization flow completes for the first - // time. - $tokenPath = '/srv/services/anime.fansubs.cat/googledrive/token_'.$account_id.'.json'; - if (file_exists($tokenPath)) { - $accessToken = json_decode(file_get_contents($tokenPath), true); - $client->setAccessToken($accessToken); - } - - // If there is no previous token or it's expired. - if ($client->isAccessTokenExpired()) { - // Refresh the token if possible, else fetch a new one. - if ($client->getRefreshToken()) { - $client->fetchAccessTokenWithRefreshToken($client->getRefreshToken()); - // Save the token to a file. - if (!file_exists(dirname($tokenPath))) { - mkdir(dirname($tokenPath), 0700, true); - } - file_put_contents($tokenPath, json_encode($client->getAccessToken())); - } else { - return NULL; - //This code will not be run automatically... If we reach this, just error out and wait for someone to fix it manually - /* - // Request authorization from the user. - $authUrl = $client->createAuthUrl(); - printf("Open the following link in your browser:\n%s\n", $authUrl); - print 'Enter verification code: '; - $authCode = trim(fgets(STDIN)); - - // Exchange authorization code for an access token. - $accessToken = $client->fetchAccessTokenWithAuthCode($authCode); - $client->setAccessToken($accessToken); - - // Check to see if there was an error. - if (array_key_exists('error', $accessToken)) { - throw new Exception(join(', ', $accessToken)); - } - // Save the token to a file. - if (!file_exists(dirname($tokenPath))) { - mkdir(dirname($tokenPath), 0700, true); - } - file_put_contents($tokenPath, json_encode($client->getAccessToken())); - */ - } - } - return $client; -} - -function get_google_drive_files($account_id, $drive_id, $folder_id) { - // Get the API client and construct the service object. - $client = get_google_drive_client($account_id); - - if ($client===NULL){ - return array('status' => 'ko', 'code' => 1); - } - - $service = new Google_Service_Drive($client); - - // Print the names and IDs for up to 10 files. - $optParams = array( - 'q' => "mimeType != 'application/vnd.google-apps.folder' and '$folder_id' in parents", - 'corpora' => 'drive', - 'supportsAllDrives' => true, - 'includeItemsFromAllDrives' => true, - 'driveId' => $drive_id, - 'pageSize' => 1000, - 'orderBy' => 'name', - 'fields' => 'nextPageToken, files(id, name)' - ); - - try { - $results = $service->files->listFiles($optParams); - } catch (Exception $e) { - return array('status' => 'ko', 'code' => 2); - } - - $lines = array(); - foreach ($results->getFiles() as $file) { - $permission = new Google_Service_Drive_Permission(); - $permission->setType('anyone'); - $permission->setRole('reader'); - $optParams = array( - 'supportsAllDrives' => true - ); - try { - $service->permissions->create($file->getId(), $permission, $optParams); - } catch (Exception $e) { - return array('status' => 'ko', 'code' => 3); - } - array_push($lines, $file->getName().':::https://drive.google.com/file/d/'.$file->getId().'/view?usp=sharing'); - } - return array('status' => 'ok', 'files' => $lines); -} -?> diff --git a/services/googledrive/readme.txt b/services/googledrive/readme.txt deleted file mode 100644 index 5a2e8664..00000000 --- a/services/googledrive/readme.txt +++ /dev/null @@ -1 +0,0 @@ -Your credentials_*.json and token_*.json files go here. diff --git a/services/libs/google-api-php-client-2.4.1/CODE_OF_CONDUCT.md b/services/libs/google-api-php-client-2.4.1/CODE_OF_CONDUCT.md deleted file mode 100644 index 46b2a08e..00000000 --- a/services/libs/google-api-php-client-2.4.1/CODE_OF_CONDUCT.md +++ /dev/null @@ -1,43 +0,0 @@ -# Contributor Code of Conduct - -As contributors and maintainers of this project, -and in the interest of fostering an open and welcoming community, -we pledge to respect all people who contribute through reporting issues, -posting feature requests, updating documentation, -submitting pull requests or patches, and other activities. - -We are committed to making participation in this project -a harassment-free experience for everyone, -regardless of level of experience, gender, gender identity and expression, -sexual orientation, disability, personal appearance, -body size, race, ethnicity, age, religion, or nationality. - -Examples of unacceptable behavior by participants include: - -* The use of sexualized language or imagery -* Personal attacks -* Trolling or insulting/derogatory comments -* Public or private harassment -* Publishing other's private information, -such as physical or electronic -addresses, without explicit permission -* Other unethical or unprofessional conduct. - -Project maintainers have the right and responsibility to remove, edit, or reject -comments, commits, code, wiki edits, issues, and other contributions -that are not aligned to this Code of Conduct. -By adopting this Code of Conduct, -project maintainers commit themselves to fairly and consistently -applying these principles to every aspect of managing this project. -Project maintainers who do not follow or enforce the Code of Conduct -may be permanently removed from the project team. - -This code of conduct applies both within project spaces and in public spaces -when an individual is representing the project or its community. - -Instances of abusive, harassing, or otherwise unacceptable behavior -may be reported by opening an issue -or contacting one or more of the project maintainers. - -This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.2.0, -available at [http://contributor-covenant.org/version/1/2/0/](http://contributor-covenant.org/version/1/2/0/) diff --git a/services/libs/google-api-php-client-2.4.1/LICENSE b/services/libs/google-api-php-client-2.4.1/LICENSE deleted file mode 100644 index a148ba56..00000000 --- a/services/libs/google-api-php-client-2.4.1/LICENSE +++ /dev/null @@ -1,203 +0,0 @@ -Apache License -Version 2.0, January 2004 -http://www.apache.org/licenses/ - -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - -"License" shall mean the terms and conditions for use, reproduction, -and distribution as defined by Sections 1 through 9 of this document. - -"Licensor" shall mean the copyright owner or entity authorized by -the copyright owner that is granting the License. - -"Legal Entity" shall mean the union of the acting entity and all -other entities that control, are controlled by, or are under common -control with that entity. For the purposes of this definition, -"control" means (i) the power, direct or indirect, to cause the -direction or management of such entity, whether by contract or -otherwise, or (ii) ownership of fifty percent (50%) or more of the -outstanding shares, or (iii) beneficial ownership of such entity. - -"You" (or "Your") shall mean an individual or Legal Entity -exercising permissions granted by this License. - -"Source" form shall mean the preferred form for making modifications, -including but not limited to software source code, documentation -source, and configuration files. - -"Object" form shall mean any form resulting from mechanical -transformation or translation of a Source form, including but -not limited to compiled object code, generated documentation, -and conversions to other media types. - -"Work" shall mean the work of authorship, whether in Source or -Object form, made available under the License, as indicated by a -copyright notice that is included in or attached to the work -(an example is provided in the Appendix below). - -"Derivative Works" shall mean any work, whether in Source or Object -form, that is based on (or derived from) the Work and for which the -editorial revisions, annotations, elaborations, or other modifications -represent, as a whole, an original work of authorship. For the purposes -of this License, Derivative Works shall not include works that remain -separable from, or merely link (or bind by name) to the interfaces of, -the Work and Derivative Works thereof. - -"Contribution" shall mean any work of authorship, including -the original version of the Work and any modifications or additions -to that Work or Derivative Works thereof, that is intentionally -submitted to Licensor for inclusion in the Work by the copyright owner -or by an individual or Legal Entity authorized to submit on behalf of -the copyright owner. For the purposes of this definition, "submitted" -means any form of electronic, verbal, or written communication sent -to the Licensor or its representatives, including but not limited to -communication on electronic mailing lists, source code control systems, -and issue tracking systems that are managed by, or on behalf of, the -Licensor for the purpose of discussing and improving the Work, but -excluding communication that is conspicuously marked or otherwise -designated in writing by the copyright owner as "Not a Contribution." - -"Contributor" shall mean Licensor and any individual or Legal Entity -on behalf of whom a Contribution has been received by Licensor and -subsequently incorporated within the Work. - -2. Grant of Copyright License. Subject to the terms and conditions of -this License, each Contributor hereby grants to You a perpetual, -worldwide, non-exclusive, no-charge, royalty-free, irrevocable -copyright license to reproduce, prepare Derivative Works of, -publicly display, publicly perform, sublicense, and distribute the -Work and such Derivative Works in Source or Object form. - -3. Grant of Patent License. Subject to the terms and conditions of -this License, each Contributor hereby grants to You a perpetual, -worldwide, non-exclusive, no-charge, royalty-free, irrevocable -(except as stated in this section) patent license to make, have made, -use, offer to sell, sell, import, and otherwise transfer the Work, -where such license applies only to those patent claims licensable -by such Contributor that are necessarily infringed by their -Contribution(s) alone or by combination of their Contribution(s) -with the Work to which such Contribution(s) was submitted. If You -institute patent litigation against any entity (including a -cross-claim or counterclaim in a lawsuit) alleging that the Work -or a Contribution incorporated within the Work constitutes direct -or contributory patent infringement, then any patent licenses -granted to You under this License for that Work shall terminate -as of the date such litigation is filed. - -4. Redistribution. You may reproduce and distribute copies of the -Work or Derivative Works thereof in any medium, with or without -modifications, and in Source or Object form, provided that You -meet the following conditions: - -(a) You must give any other recipients of the Work or -Derivative Works a copy of this License; and - -(b) You must cause any modified files to carry prominent notices -stating that You changed the files; and - -(c) You must retain, in the Source form of any Derivative Works -that You distribute, all copyright, patent, trademark, and -attribution notices from the Source form of the Work, -excluding those notices that do not pertain to any part of -the Derivative Works; and - -(d) If the Work includes a "NOTICE" text file as part of its -distribution, then any Derivative Works that You distribute must -include a readable copy of the attribution notices contained -within such NOTICE file, excluding those notices that do not -pertain to any part of the Derivative Works, in at least one -of the following places: within a NOTICE text file distributed -as part of the Derivative Works; within the Source form or -documentation, if provided along with the Derivative Works; or, -within a display generated by the Derivative Works, if and -wherever such third-party notices normally appear. The contents -of the NOTICE file are for informational purposes only and -do not modify the License. You may add Your own attribution -notices within Derivative Works that You distribute, alongside -or as an addendum to the NOTICE text from the Work, provided -that such additional attribution notices cannot be construed -as modifying the License. - -You may add Your own copyright statement to Your modifications and -may provide additional or different license terms and conditions -for use, reproduction, or distribution of Your modifications, or -for any such Derivative Works as a whole, provided Your use, -reproduction, and distribution of the Work otherwise complies with -the conditions stated in this License. - -5. Submission of Contributions. Unless You explicitly state otherwise, -any Contribution intentionally submitted for inclusion in the Work -by You to the Licensor shall be under the terms and conditions of -this License, without any additional terms or conditions. -Notwithstanding the above, nothing herein shall supersede or modify -the terms of any separate license agreement you may have executed -with Licensor regarding such Contributions. - -6. Trademarks. This License does not grant permission to use the trade -names, trademarks, service marks, or product names of the Licensor, -except as required for reasonable and customary use in describing the -origin of the Work and reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. Unless required by applicable law or -agreed to in writing, Licensor provides the Work (and each -Contributor provides its Contributions) on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or -implied, including, without limitation, any warranties or conditions -of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A -PARTICULAR PURPOSE. You are solely responsible for determining the -appropriateness of using or redistributing the Work and assume any -risks associated with Your exercise of permissions under this License. - -8. Limitation of Liability. In no event and under no legal theory, -whether in tort (including negligence), contract, or otherwise, -unless required by applicable law (such as deliberate and grossly -negligent acts) or agreed to in writing, shall any Contributor be -liable to You for damages, including any direct, indirect, special, -incidental, or consequential damages of any character arising as a -result of this License or out of the use or inability to use the -Work (including but not limited to damages for loss of goodwill, -work stoppage, computer failure or malfunction, or any and all -other commercial damages or losses), even if such Contributor -has been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. While redistributing -the Work or Derivative Works thereof, You may choose to offer, -and charge a fee for, acceptance of support, warranty, indemnity, -or other liability obligations and/or rights consistent with this -License. However, in accepting such obligations, You may act only -on Your own behalf and on Your sole responsibility, not on behalf -of any other Contributor, and only if You agree to indemnify, -defend, and hold each Contributor harmless for any liability -incurred by, or claims asserted against, such Contributor by reason -of your accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work. - -To apply the Apache License to your work, attach the following -boilerplate notice, with the fields enclosed by brackets "[]" -replaced with your own identifying information. (Don't include -the brackets!) The text should be enclosed in the appropriate -comment syntax for the file format. We also recommend that a -file or class name and description of purpose be included on the -same "printed page" as the copyright notice for easier -identification within third-party archives. - -Copyright [yyyy] [name of copyright owner] - -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. - - diff --git a/services/libs/google-api-php-client-2.4.1/README.md b/services/libs/google-api-php-client-2.4.1/README.md deleted file mode 100644 index c7327b69..00000000 --- a/services/libs/google-api-php-client-2.4.1/README.md +++ /dev/null @@ -1,396 +0,0 @@ -[![Build Status](https://travis-ci.org/googleapis/google-api-php-client.svg?branch=master)](https://travis-ci.org/googleapis/google-api-php-client) - -# Google APIs Client Library for PHP # - -The Google API Client Library enables you to work with Google APIs such as Gmail, Drive or YouTube on your server. - -These client libraries are officially supported by Google. However, the libraries are considered complete and are in maintenance mode. This means that we will address critical bugs and security issues but will not add any new features. - -**NOTE** The actively maintained (v2) version of this client requires PHP 5.4 or above. If you require support for PHP 5.2 or 5.3, use the v1 branch. - -## Google Cloud Platform - -For Google Cloud Platform APIs such as Datastore, Cloud Storage or Pub/Sub, we recommend using [GoogleCloudPlatform/google-cloud-php](https://github.com/googleapis/google-cloud-php) which is under active development. - -## Requirements ## -* [PHP 5.4.0 or higher](https://www.php.net/) - -## Developer Documentation ## - -The [docs folder](docs/) provides detailed guides for using this library. - -## Installation ## - -You can use **Composer** or simply **Download the Release** - -### Composer - -The preferred method is via [composer](https://getcomposer.org/). Follow the -[installation instructions](https://getcomposer.org/doc/00-intro.md) if you do not already have -composer installed. - -Once composer is installed, execute the following command in your project root to install this library: - -```sh -composer require google/apiclient:"^2.0" -``` - -Finally, be sure to include the autoloader: - -```php -require_once '/path/to/your-project/vendor/autoload.php'; -``` - -### Download the Release - -If you prefer not to use composer, you can download the package in its entirety. The [Releases](https://github.com/googleapis/google-api-php-client/releases) page lists all stable versions. Download any file -with the name `google-api-php-client-[RELEASE_NAME].zip` for a package including this library and its dependencies. - -Uncompress the zip file you download, and include the autoloader in your project: - -```php -require_once '/path/to/google-api-php-client/vendor/autoload.php'; -``` - -For additional installation and setup instructions, see [the documentation](docs/). - -## Examples ## -See the [`examples/`](examples) directory for examples of the key client features. You can -view them in your browser by running the php built-in web server. - -``` -$ php -S localhost:8000 -t examples/ -``` - -And then browsing to the host and port you specified -(in the above example, `http://localhost:8000`). - -### Basic Example ### - -```php -// include your composer dependencies -require_once 'vendor/autoload.php'; - -$client = new Google_Client(); -$client->setApplicationName("Client_Library_Examples"); -$client->setDeveloperKey("YOUR_APP_KEY"); - -$service = new Google_Service_Books($client); -$optParams = array('filter' => 'free-ebooks'); -$results = $service->volumes->listVolumes('Henry David Thoreau', $optParams); - -foreach ($results->getItems() as $item) { - echo $item['volumeInfo']['title'], "
\n"; -} -``` - -### Authentication with OAuth ### - -> An example of this can be seen in [`examples/simple-file-upload.php`](examples/simple-file-upload.php). - -1. Follow the instructions to [Create Web Application Credentials](docs/oauth-web.md#create-authorization-credentials) -1. Download the JSON credentials -1. Set the path to these credentials using `Google_Client::setAuthConfig`: - - ```php - $client = new Google_Client(); - $client->setAuthConfig('/path/to/client_credentials.json'); - ``` - -1. Set the scopes required for the API you are going to call - - ```php - $client->addScope(Google_Service_Drive::DRIVE); - ``` - -1. Set your application's redirect URI - - ```php - // Your redirect URI can be any registered URI, but in this example - // we redirect back to this same page - $redirect_uri = 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF']; - $client->setRedirectUri($redirect_uri); - ``` - -1. In the script handling the redirect URI, exchange the authorization code for an access token: - - ```php - if (isset($_GET['code'])) { - $token = $client->fetchAccessTokenWithAuthCode($_GET['code']); - } - ``` - -### Authentication with Service Accounts ### - -> An example of this can be seen in [`examples/service-account.php`](examples/service-account.php). - -Some APIs -(such as the [YouTube Data API](https://developers.google.com/youtube/v3/)) do -not support service accounts. Check with the specific API documentation if API -calls return unexpected 401 or 403 errors. - -1. Follow the instructions to [Create a Service Account](docs/oauth-server.md#creating-a-service-account) -1. Download the JSON credentials -1. Set the path to these credentials using the `GOOGLE_APPLICATION_CREDENTIALS` environment variable: - - ```php - putenv('GOOGLE_APPLICATION_CREDENTIALS=/path/to/service-account.json'); - ``` - -1. Tell the Google client to use your service account credentials to authenticate: - - ```php - $client = new Google_Client(); - $client->useApplicationDefaultCredentials(); - ``` - -1. Set the scopes required for the API you are going to call - - ```php - $client->addScope(Google_Service_Drive::DRIVE); - ``` - -1. If you have delegated domain-wide access to the service account and you want to impersonate a user account, specify the email address of the user account using the method setSubject: - - ```php - $client->setSubject($user_to_impersonate); - ``` - -### Making Requests ### - -The classes used to call the API in [google-api-php-client-services](https://github.com/googleapis/google-api-php-client-services) are autogenerated. They map directly to the JSON requests and responses found in the [APIs Explorer](https://developers.google.com/apis-explorer/#p/). - -A JSON request to the [Datastore API](https://developers.google.com/apis-explorer/#p/datastore/v1beta3/datastore.projects.runQuery) would look like this: - -```json -POST https://datastore.googleapis.com/v1beta3/projects/YOUR_PROJECT_ID:runQuery?key=YOUR_API_KEY - -{ - "query": { - "kind": [{ - "name": "Book" - }], - "order": [{ - "property": { - "name": "title" - }, - "direction": "descending" - }], - "limit": 10 - } -} -``` - -Using this library, the same call would look something like this: - -```php -// create the datastore service class -$datastore = new Google_Service_Datastore($client); - -// build the query - this maps directly to the JSON -$query = new Google_Service_Datastore_Query([ - 'kind' => [ - [ - 'name' => 'Book', - ], - ], - 'order' => [ - 'property' => [ - 'name' => 'title', - ], - 'direction' => 'descending', - ], - 'limit' => 10, -]); - -// build the request and response -$request = new Google_Service_Datastore_RunQueryRequest(['query' => $query]); -$response = $datastore->projects->runQuery('YOUR_DATASET_ID', $request); -``` - -However, as each property of the JSON API has a corresponding generated class, the above code could also be written like this: - -```php -// create the datastore service class -$datastore = new Google_Service_Datastore($client); - -// build the query -$request = new Google_Service_Datastore_RunQueryRequest(); -$query = new Google_Service_Datastore_Query(); -// - set the order -$order = new Google_Service_Datastore_PropertyOrder(); -$order->setDirection('descending'); -$property = new Google_Service_Datastore_PropertyReference(); -$property->setName('title'); -$order->setProperty($property); -$query->setOrder([$order]); -// - set the kinds -$kind = new Google_Service_Datastore_KindExpression(); -$kind->setName('Book'); -$query->setKinds([$kind]); -// - set the limit -$query->setLimit(10); - -// add the query to the request and make the request -$request->setQuery($query); -$response = $datastore->projects->runQuery('YOUR_DATASET_ID', $request); -``` - -The method used is a matter of preference, but *it will be very difficult to use this library without first understanding the JSON syntax for the API*, so it is recommended to look at the [APIs Explorer](https://developers.google.com/apis-explorer/#p/) before using any of the services here. - -### Making HTTP Requests Directly ### - -If Google Authentication is desired for external applications, or a Google API is not available yet in this library, HTTP requests can be made directly. - -The `authorize` method returns an authorized [Guzzle Client](http://docs.guzzlephp.org/), so any request made using the client will contain the corresponding authorization. - -```php -// create the Google client -$client = new Google_Client(); - -/** - * Set your method for authentication. Depending on the API, This could be - * directly with an access token, API key, or (recommended) using - * Application Default Credentials. - */ -$client->useApplicationDefaultCredentials(); -$client->addScope(Google_Service_Plus::PLUS_ME); - -// returns a Guzzle HTTP Client -$httpClient = $client->authorize(); - -// make an HTTP request -$response = $httpClient->get('https://www.googleapis.com/plus/v1/people/me'); -``` - -### Caching ### - -It is recommended to use another caching library to improve performance. This can be done by passing a [PSR-6](https://www.php-fig.org/psr/psr-6/) compatible library to the client: - -```php -use League\Flysystem\Adapter\Local; -use League\Flysystem\Filesystem; -use Cache\Adapter\Filesystem\FilesystemCachePool; - -$filesystemAdapter = new Local(__DIR__.'/'); -$filesystem = new Filesystem($filesystemAdapter); - -$cache = new FilesystemCachePool($filesystem); -$client->setCache($cache); -``` - -In this example we use [PHP Cache](http://www.php-cache.com/). Add this to your project with composer: - -``` -composer require cache/filesystem-adapter -``` - -### Updating Tokens ### - -When using [Refresh Tokens](https://developers.google.com/identity/protocols/OAuth2InstalledApp#offline) or [Service Account Credentials](https://developers.google.com/identity/protocols/OAuth2ServiceAccount#overview), it may be useful to perform some action when a new access token is granted. To do this, pass a callable to the `setTokenCallback` method on the client: - -```php -$logger = new Monolog\Logger; -$tokenCallback = function ($cacheKey, $accessToken) use ($logger) { - $logger->debug(sprintf('new access token received at cache key %s', $cacheKey)); -}; -$client->setTokenCallback($tokenCallback); -``` - -### Debugging Your HTTP Request using Charles ### - -It is often very useful to debug your API calls by viewing the raw HTTP request. This library supports the use of [Charles Web Proxy](https://www.charlesproxy.com/documentation/getting-started/). Download and run Charles, and then capture all HTTP traffic through Charles with the following code: - -```php -// FOR DEBUGGING ONLY -$httpClient = new GuzzleHttp\Client([ - 'proxy' => 'localhost:8888', // by default, Charles runs on localhost port 8888 - 'verify' => false, // otherwise HTTPS requests will fail. -]); - -$client = new Google_Client(); -$client->setHttpClient($httpClient); -``` - -Now all calls made by this library will appear in the Charles UI. - -One additional step is required in Charles to view SSL requests. Go to **Charles > Proxy > SSL Proxying Settings** and add the domain you'd like captured. In the case of the Google APIs, this is usually `*.googleapis.com`. - -### Controlling HTTP Client Configuration Directly - -Google API Client uses [Guzzle](http://docs.guzzlephp.org/) as its default HTTP client. That means that you can control your HTTP requests in the same manner you would for any application using Guzzle. - -Let's say, for instance, we wished to apply a referrer to each request. - -```php -use GuzzleHttp\Client; - -$httpClient = new Client([ - 'headers' => [ - 'referer' => 'mysite.com' - ] -]); - -$client = new Google_Client(); -$client->setHttpClient($httpClient); -``` - -Other Guzzle features such as [Handlers and Middleware](http://docs.guzzlephp.org/en/stable/handlers-and-middleware.html) offer even more control. - -### Service Specific Examples ### - -YouTube: https://github.com/youtube/api-samples/tree/master/php - -## How Do I Contribute? ## - -Please see the [contributing](.github/CONTRIBUTING.md) page for more information. In particular, we love pull requests - but please make sure to sign the contributor license agreement. - -## Frequently Asked Questions ## - -### What do I do if something isn't working? ### - -For support with the library the best place to ask is via the google-api-php-client tag on StackOverflow: https://stackoverflow.com/questions/tagged/google-api-php-client - -If there is a specific bug with the library, please [file an issue](https://github.com/googleapis/google-api-php-client/issues) in the GitHub issues tracker, including an example of the failing code and any specific errors retrieved. Feature requests can also be filed, as long as they are core library requests, and not-API specific: for those, refer to the documentation for the individual APIs for the best place to file requests. Please try to provide a clear statement of the problem that the feature would address. - -### I want an example of X! ### - -If X is a feature of the library, file away! If X is an example of using a specific service, the best place to go is to the teams for those specific APIs - our preference is to link to their examples rather than add them to the library, as they can then pin to specific versions of the library. If you have any examples for other APIs, let us know and we will happily add a link to the README above! - -### Why does Google_..._Service have weird names? ### - -The _Service classes are generally automatically generated from the API discovery documents: https://developers.google.com/discovery/. Sometimes new features are added to APIs with unusual names, which can cause some unexpected or non-standard style naming in the PHP classes. - -### How do I deal with non-JSON response types? ### - -Some services return XML or similar by default, rather than JSON, which is what the library supports. You can request a JSON response by adding an 'alt' argument to optional params that is normally the last argument to a method call: - -``` -$opt_params = array( - 'alt' => "json" -); -``` - -### How do I set a field to null? ### - -The library strips out nulls from the objects sent to the Google APIs as its the default value of all of the uninitialized properties. To work around this, set the field you want to null to `Google_Model::NULL_VALUE`. This is a placeholder that will be replaced with a true null when sent over the wire. - -## Code Quality ## - -Run the PHPUnit tests with PHPUnit. You can configure an API key and token in BaseTest.php to run all calls, but this will require some setup on the Google Developer Console. - - phpunit tests/ - -### Coding Style - -To check for coding style violations, run - -``` -vendor/bin/phpcs src --standard=style/ruleset.xml -np -``` - -To automatically fix (fixable) coding style violations, run - -``` -vendor/bin/phpcbf src --standard=style/ruleset.xml -``` diff --git a/services/libs/google-api-php-client-2.4.1/composer.json b/services/libs/google-api-php-client-2.4.1/composer.json deleted file mode 100644 index d732a218..00000000 --- a/services/libs/google-api-php-client-2.4.1/composer.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "name": "google/apiclient", - "type": "library", - "description": "Client library for Google APIs", - "keywords": [ - "google" - ], - "homepage": "http://developers.google.com/api-client-library/php", - "license": "Apache-2.0", - "require": { - "php": ">=5.4", - "google/auth": "^1.0", - "google/apiclient-services": "v0.127", - "firebase/php-jwt": "~2.0||~3.0||~4.0||~5.0", - "monolog/monolog": "^1.17|^2.0", - "phpseclib/phpseclib": "~0.3.10||~2.0", - "guzzlehttp/guzzle": "~5.3.1||~6.0", - "guzzlehttp/psr7": "^1.2" - }, - "require-dev": { - "phpunit/phpunit": "^4.8|^5.0", - "squizlabs/php_codesniffer": "~2.3", - "symfony/dom-crawler": "~2.1", - "symfony/css-selector": "~2.1", - "cache/filesystem-adapter": "^0.3.2", - "phpcompatibility/php-compatibility": "^9.2", - "dealerdirect/phpcodesniffer-composer-installer": "^0.5.0" - }, - "suggest": { - "cache/filesystem-adapter": "For caching certs and tokens (using Google_Client::setCache)" - }, - "autoload": { - "psr-0": { - "Google_": "src/" - }, - "classmap": [ - "src/Google/Service/" - ] - }, - "extra": { - "branch-alias": { - "dev-master": "2.x-dev" - } - } -} \ No newline at end of file diff --git a/services/libs/google-api-php-client-2.4.1/composer.lock b/services/libs/google-api-php-client-2.4.1/composer.lock deleted file mode 100644 index 58c5e86f..00000000 --- a/services/libs/google-api-php-client-2.4.1/composer.lock +++ /dev/null @@ -1,2723 +0,0 @@ -{ - "_readme": [ - "This file locks the dependencies of your project to a known state", - "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", - "This file is @generated automatically" - ], - "content-hash": "d5a288048c4f924a8ceb4cedede21106", - "packages": [ - { - "name": "firebase/php-jwt", - "version": "v5.2.0", - "source": { - "type": "git", - "url": "https://github.com/firebase/php-jwt.git", - "reference": "feb0e820b8436873675fd3aca04f3728eb2185cb" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/firebase/php-jwt/zipball/feb0e820b8436873675fd3aca04f3728eb2185cb", - "reference": "feb0e820b8436873675fd3aca04f3728eb2185cb", - "shasum": "" - }, - "require": { - "php": ">=5.3.0" - }, - "require-dev": { - "phpunit/phpunit": ">=4.8 <=9" - }, - "type": "library", - "autoload": { - "psr-4": { - "Firebase\\JWT\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Neuman Vong", - "email": "neuman+pear@twilio.com", - "role": "Developer" - }, - { - "name": "Anant Narayanan", - "email": "anant@php.net", - "role": "Developer" - } - ], - "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.", - "homepage": "https://github.com/firebase/php-jwt", - "keywords": [ - "jwt", - "php" - ], - "time": "2020-03-25T18:49:23+00:00" - }, - { - "name": "google/apiclient-services", - "version": "v0.127", - "source": { - "type": "git", - "url": "https://github.com/googleapis/google-api-php-client-services.git", - "reference": "19eacad739807e522891bf3f911ffab4a4c29869" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/googleapis/google-api-php-client-services/zipball/19eacad739807e522891bf3f911ffab4a4c29869", - "reference": "19eacad739807e522891bf3f911ffab4a4c29869", - "shasum": "" - }, - "require": { - "php": ">=5.4" - }, - "require-dev": { - "phpunit/phpunit": "^4.8|^5" - }, - "type": "library", - "autoload": { - "psr-0": { - "Google_Service_": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "Apache-2.0" - ], - "description": "Client library for Google APIs", - "homepage": "http://developers.google.com/api-client-library/php", - "keywords": [ - "google" - ], - "time": "2020-02-17T00:24:19+00:00" - }, - { - "name": "google/auth", - "version": "v1.7.1", - "source": { - "type": "git", - "url": "https://github.com/googleapis/google-auth-library-php.git", - "reference": "39e243a7d8320b1889ab8bb4cd6f98f7af83c582" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/googleapis/google-auth-library-php/zipball/39e243a7d8320b1889ab8bb4cd6f98f7af83c582", - "reference": "39e243a7d8320b1889ab8bb4cd6f98f7af83c582", - "shasum": "" - }, - "require": { - "firebase/php-jwt": "~2.0|~3.0|~4.0|~5.0", - "guzzlehttp/guzzle": "~5.3.1|~6.0", - "guzzlehttp/psr7": "^1.2", - "php": ">=5.4", - "psr/cache": "^1.0", - "psr/http-message": "^1.0" - }, - "require-dev": { - "friendsofphp/php-cs-fixer": "^1.11", - "guzzlehttp/promises": "0.1.1|^1.3", - "kelvinmo/simplejwt": "^0.2.5", - "phpseclib/phpseclib": "^2", - "phpunit/phpunit": "^4.8.36|^5.7", - "sebastian/comparator": ">=1.2.3" - }, - "suggest": { - "phpseclib/phpseclib": "May be used in place of OpenSSL for signing strings or for token management. Please require version ^2." - }, - "type": "library", - "autoload": { - "psr-4": { - "Google\\Auth\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "Apache-2.0" - ], - "description": "Google Auth Library for PHP", - "homepage": "http://github.com/google/google-auth-library-php", - "keywords": [ - "Authentication", - "google", - "oauth2" - ], - "time": "2020-02-12T20:54:50+00:00" - }, - { - "name": "guzzlehttp/guzzle", - "version": "6.5.2", - "source": { - "type": "git", - "url": "https://github.com/guzzle/guzzle.git", - "reference": "43ece0e75098b7ecd8d13918293029e555a50f82" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/guzzle/guzzle/zipball/43ece0e75098b7ecd8d13918293029e555a50f82", - "reference": "43ece0e75098b7ecd8d13918293029e555a50f82", - "shasum": "" - }, - "require": { - "ext-json": "*", - "guzzlehttp/promises": "^1.0", - "guzzlehttp/psr7": "^1.6.1", - "php": ">=5.5" - }, - "require-dev": { - "ext-curl": "*", - "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0", - "psr/log": "^1.1" - }, - "suggest": { - "ext-intl": "Required for Internationalized Domain Name (IDN) support", - "psr/log": "Required for using the Log middleware" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "6.5-dev" - } - }, - "autoload": { - "psr-4": { - "GuzzleHttp\\": "src/" - }, - "files": [ - "src/functions_include.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Michael Dowling", - "email": "mtdowling@gmail.com", - "homepage": "https://github.com/mtdowling" - } - ], - "description": "Guzzle is a PHP HTTP client library", - "homepage": "http://guzzlephp.org/", - "keywords": [ - "client", - "curl", - "framework", - "http", - "http client", - "rest", - "web service" - ], - "time": "2019-12-23T11:57:10+00:00" - }, - { - "name": "guzzlehttp/promises", - "version": "v1.3.1", - "source": { - "type": "git", - "url": "https://github.com/guzzle/promises.git", - "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646", - "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646", - "shasum": "" - }, - "require": { - "php": ">=5.5.0" - }, - "require-dev": { - "phpunit/phpunit": "^4.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.4-dev" - } - }, - "autoload": { - "psr-4": { - "GuzzleHttp\\Promise\\": "src/" - }, - "files": [ - "src/functions_include.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Michael Dowling", - "email": "mtdowling@gmail.com", - "homepage": "https://github.com/mtdowling" - } - ], - "description": "Guzzle promises library", - "keywords": [ - "promise" - ], - "time": "2016-12-20T10:07:11+00:00" - }, - { - "name": "guzzlehttp/psr7", - "version": "1.6.1", - "source": { - "type": "git", - "url": "https://github.com/guzzle/psr7.git", - "reference": "239400de7a173fe9901b9ac7c06497751f00727a" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a", - "reference": "239400de7a173fe9901b9ac7c06497751f00727a", - "shasum": "" - }, - "require": { - "php": ">=5.4.0", - "psr/http-message": "~1.0", - "ralouphie/getallheaders": "^2.0.5 || ^3.0.0" - }, - "provide": { - "psr/http-message-implementation": "1.0" - }, - "require-dev": { - "ext-zlib": "*", - "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8" - }, - "suggest": { - "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.6-dev" - } - }, - "autoload": { - "psr-4": { - "GuzzleHttp\\Psr7\\": "src/" - }, - "files": [ - "src/functions_include.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Michael Dowling", - "email": "mtdowling@gmail.com", - "homepage": "https://github.com/mtdowling" - }, - { - "name": "Tobias Schultze", - "homepage": "https://github.com/Tobion" - } - ], - "description": "PSR-7 message implementation that also provides common utility methods", - "keywords": [ - "http", - "message", - "psr-7", - "request", - "response", - "stream", - "uri", - "url" - ], - "time": "2019-07-01T23:21:34+00:00" - }, - { - "name": "monolog/monolog", - "version": "2.0.2", - "source": { - "type": "git", - "url": "https://github.com/Seldaek/monolog.git", - "reference": "c861fcba2ca29404dc9e617eedd9eff4616986b8" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/Seldaek/monolog/zipball/c861fcba2ca29404dc9e617eedd9eff4616986b8", - "reference": "c861fcba2ca29404dc9e617eedd9eff4616986b8", - "shasum": "" - }, - "require": { - "php": "^7.2", - "psr/log": "^1.0.1" - }, - "provide": { - "psr/log-implementation": "1.0.0" - }, - "require-dev": { - "aws/aws-sdk-php": "^2.4.9 || ^3.0", - "doctrine/couchdb": "~1.0@dev", - "elasticsearch/elasticsearch": "^6.0", - "graylog2/gelf-php": "^1.4.2", - "jakub-onderka/php-parallel-lint": "^0.9", - "php-amqplib/php-amqplib": "~2.4", - "php-console/php-console": "^3.1.3", - "phpspec/prophecy": "^1.6.1", - "phpunit/phpunit": "^8.3", - "predis/predis": "^1.1", - "rollbar/rollbar": "^1.3", - "ruflin/elastica": ">=0.90 <3.0", - "swiftmailer/swiftmailer": "^5.3|^6.0" - }, - "suggest": { - "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB", - "doctrine/couchdb": "Allow sending log messages to a CouchDB server", - "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client", - "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)", - "ext-mbstring": "Allow to work properly with unicode symbols", - "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)", - "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server", - "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)", - "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib", - "php-console/php-console": "Allow sending log messages to Google Chrome", - "rollbar/rollbar": "Allow sending log messages to Rollbar", - "ruflin/elastica": "Allow sending log messages to an Elastic Search server" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.x-dev" - } - }, - "autoload": { - "psr-4": { - "Monolog\\": "src/Monolog" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Jordi Boggiano", - "email": "j.boggiano@seld.be", - "homepage": "http://seld.be" - } - ], - "description": "Sends your logs to files, sockets, inboxes, databases and various web services", - "homepage": "http://github.com/Seldaek/monolog", - "keywords": [ - "log", - "logging", - "psr-3" - ], - "time": "2019-12-20T14:22:59+00:00" - }, - { - "name": "phpseclib/phpseclib", - "version": "2.0.26", - "source": { - "type": "git", - "url": "https://github.com/phpseclib/phpseclib.git", - "reference": "09655fcc1f8bab65727be036b28f6f20311c126c" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/09655fcc1f8bab65727be036b28f6f20311c126c", - "reference": "09655fcc1f8bab65727be036b28f6f20311c126c", - "shasum": "" - }, - "require": { - "php": ">=5.3.3" - }, - "require-dev": { - "phing/phing": "~2.7", - "phpunit/phpunit": "^4.8.35|^5.7|^6.0", - "sami/sami": "~2.0", - "squizlabs/php_codesniffer": "~2.0" - }, - "suggest": { - "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.", - "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.", - "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.", - "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations." - }, - "type": "library", - "autoload": { - "files": [ - "phpseclib/bootstrap.php" - ], - "psr-4": { - "phpseclib\\": "phpseclib/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Jim Wigginton", - "email": "terrafrost@php.net", - "role": "Lead Developer" - }, - { - "name": "Patrick Monnerat", - "email": "pm@datasphere.ch", - "role": "Developer" - }, - { - "name": "Andreas Fischer", - "email": "bantu@phpbb.com", - "role": "Developer" - }, - { - "name": "Hans-Jürgen Petrich", - "email": "petrich@tronic-media.com", - "role": "Developer" - }, - { - "name": "Graham Campbell", - "email": "graham@alt-three.com", - "role": "Developer" - } - ], - "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.", - "homepage": "http://phpseclib.sourceforge.net", - "keywords": [ - "BigInteger", - "aes", - "asn.1", - "asn1", - "blowfish", - "crypto", - "cryptography", - "encryption", - "rsa", - "security", - "sftp", - "signature", - "signing", - "ssh", - "twofish", - "x.509", - "x509" - ], - "time": "2020-03-13T04:15:39+00:00" - }, - { - "name": "psr/cache", - "version": "1.0.1", - "source": { - "type": "git", - "url": "https://github.com/php-fig/cache.git", - "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8", - "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8", - "shasum": "" - }, - "require": { - "php": ">=5.3.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, - "autoload": { - "psr-4": { - "Psr\\Cache\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" - } - ], - "description": "Common interface for caching libraries", - "keywords": [ - "cache", - "psr", - "psr-6" - ], - "time": "2016-08-06T20:24:11+00:00" - }, - { - "name": "psr/http-message", - "version": "1.0.1", - "source": { - "type": "git", - "url": "https://github.com/php-fig/http-message.git", - "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363", - "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363", - "shasum": "" - }, - "require": { - "php": ">=5.3.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, - "autoload": { - "psr-4": { - "Psr\\Http\\Message\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" - } - ], - "description": "Common interface for HTTP messages", - "homepage": "https://github.com/php-fig/http-message", - "keywords": [ - "http", - "http-message", - "psr", - "psr-7", - "request", - "response" - ], - "time": "2016-08-06T14:39:51+00:00" - }, - { - "name": "psr/log", - "version": "1.1.3", - "source": { - "type": "git", - "url": "https://github.com/php-fig/log.git", - "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc", - "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc", - "shasum": "" - }, - "require": { - "php": ">=5.3.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.1.x-dev" - } - }, - "autoload": { - "psr-4": { - "Psr\\Log\\": "Psr/Log/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" - } - ], - "description": "Common interface for logging libraries", - "homepage": "https://github.com/php-fig/log", - "keywords": [ - "log", - "psr", - "psr-3" - ], - "time": "2020-03-23T09:12:05+00:00" - }, - { - "name": "ralouphie/getallheaders", - "version": "3.0.3", - "source": { - "type": "git", - "url": "https://github.com/ralouphie/getallheaders.git", - "reference": "120b605dfeb996808c31b6477290a714d356e822" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822", - "reference": "120b605dfeb996808c31b6477290a714d356e822", - "shasum": "" - }, - "require": { - "php": ">=5.6" - }, - "require-dev": { - "php-coveralls/php-coveralls": "^2.1", - "phpunit/phpunit": "^5 || ^6.5" - }, - "type": "library", - "autoload": { - "files": [ - "src/getallheaders.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Ralph Khattar", - "email": "ralph.khattar@gmail.com" - } - ], - "description": "A polyfill for getallheaders.", - "time": "2019-03-08T08:55:37+00:00" - } - ], - "packages-dev": [ - { - "name": "cache/adapter-common", - "version": "0.3.3", - "source": { - "type": "git", - "url": "https://github.com/php-cache/adapter-common.git", - "reference": "874256105aefaa52b60599ab02858a4575e61095" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-cache/adapter-common/zipball/874256105aefaa52b60599ab02858a4575e61095", - "reference": "874256105aefaa52b60599ab02858a4575e61095", - "shasum": "" - }, - "require": { - "cache/taggable-cache": "^0.4", - "php": "^5.5 || ^7.0", - "psr/cache": "^1.0", - "psr/log": "^1.0" - }, - "require-dev": { - "cache/integration-tests": "^0.10", - "phpunit/phpunit": "^4.0 || ^5.1" - }, - "type": "library", - "autoload": { - "psr-4": { - "Cache\\Adapter\\Common\\": "" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Aaron Scherer", - "email": "aequasi@gmail.com", - "homepage": "https://github.com/aequasi" - }, - { - "name": "Tobias Nyholm", - "email": "tobias.nyholm@gmail.com", - "homepage": "https://github.com/Nyholm" - } - ], - "description": "Common classes for PSR-6 adapters", - "homepage": "http://www.php-cache.com/en/latest/", - "keywords": [ - "cache", - "psr-6", - "tag" - ], - "time": "2016-07-31T18:10:41+00:00" - }, - { - "name": "cache/filesystem-adapter", - "version": "0.3.3", - "source": { - "type": "git", - "url": "https://github.com/php-cache/filesystem-adapter.git", - "reference": "b05c31ea76dbe2650817e92265952a5d8b7fb070" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-cache/filesystem-adapter/zipball/b05c31ea76dbe2650817e92265952a5d8b7fb070", - "reference": "b05c31ea76dbe2650817e92265952a5d8b7fb070", - "shasum": "" - }, - "require": { - "cache/adapter-common": "^0.3", - "cache/taggable-cache": "^0.4", - "league/flysystem": "^1.0", - "php": "^5.5 || ^7.0", - "psr/cache": "^1.0" - }, - "provide": { - "psr/cache-implementation": "^1.0" - }, - "require-dev": { - "cache/integration-tests": "^0.11", - "phpunit/phpunit": "^4.0 || ^5.1" - }, - "type": "library", - "autoload": { - "psr-4": { - "Cache\\Adapter\\Filesystem\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Aaron Scherer", - "email": "aequasi@gmail.com", - "homepage": "https://github.com/aequasi" - }, - { - "name": "Tobias Nyholm", - "email": "tobias.nyholm@gmail.com", - "homepage": "https://github.com/Nyholm" - } - ], - "description": "A PSR-6 cache implementation using filesystem. This implementation supports tags", - "homepage": "http://www.php-cache.com/en/latest/", - "keywords": [ - "cache", - "filesystem", - "psr-6", - "tag" - ], - "time": "2016-12-25T09:15:25+00:00" - }, - { - "name": "cache/taggable-cache", - "version": "0.4.3", - "source": { - "type": "git", - "url": "https://github.com/php-cache/taggable-cache.git", - "reference": "8ae3042edd1ac9546c9eae1020dc2b438ef10742" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-cache/taggable-cache/zipball/8ae3042edd1ac9546c9eae1020dc2b438ef10742", - "reference": "8ae3042edd1ac9546c9eae1020dc2b438ef10742", - "shasum": "" - }, - "require": { - "php": "^5.5 || ^7.0", - "psr/cache": "^1.0" - }, - "require-dev": { - "cache/integration-tests": "^0.11", - "phpunit/phpunit": "^4.0 || ^5.1", - "symfony/cache": "^3.1" - }, - "type": "library", - "autoload": { - "psr-4": { - "Cache\\Taggable\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Aaron Scherer", - "email": "aequasi@gmail.com", - "homepage": "https://github.com/aequasi" - }, - { - "name": "Tobias Nyholm", - "email": "tobias.nyholm@gmail.com", - "homepage": "https://github.com/Nyholm" - } - ], - "description": "Add tag support to your PSR-6 cache implementation", - "homepage": "http://www.php-cache.com/en/latest/", - "keywords": [ - "Taggable", - "cache", - "psr6", - "tag" - ], - "time": "2016-08-08T17:20:09+00:00" - }, - { - "name": "dealerdirect/phpcodesniffer-composer-installer", - "version": "v0.5.0", - "source": { - "type": "git", - "url": "https://github.com/Dealerdirect/phpcodesniffer-composer-installer.git", - "reference": "e749410375ff6fb7a040a68878c656c2e610b132" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/Dealerdirect/phpcodesniffer-composer-installer/zipball/e749410375ff6fb7a040a68878c656c2e610b132", - "reference": "e749410375ff6fb7a040a68878c656c2e610b132", - "shasum": "" - }, - "require": { - "composer-plugin-api": "^1.0", - "php": "^5.3|^7", - "squizlabs/php_codesniffer": "^2|^3" - }, - "require-dev": { - "composer/composer": "*", - "phpcompatibility/php-compatibility": "^9.0", - "sensiolabs/security-checker": "^4.1.0" - }, - "type": "composer-plugin", - "extra": { - "class": "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin" - }, - "autoload": { - "psr-4": { - "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Franck Nijhof", - "email": "franck.nijhof@dealerdirect.com", - "homepage": "http://www.frenck.nl", - "role": "Developer / IT Manager" - } - ], - "description": "PHP_CodeSniffer Standards Composer Installer Plugin", - "homepage": "http://www.dealerdirect.com", - "keywords": [ - "PHPCodeSniffer", - "PHP_CodeSniffer", - "code quality", - "codesniffer", - "composer", - "installer", - "phpcs", - "plugin", - "qa", - "quality", - "standard", - "standards", - "style guide", - "stylecheck", - "tests" - ], - "time": "2018-10-26T13:21:45+00:00" - }, - { - "name": "doctrine/instantiator", - "version": "1.3.0", - "source": { - "type": "git", - "url": "https://github.com/doctrine/instantiator.git", - "reference": "ae466f726242e637cebdd526a7d991b9433bacf1" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/doctrine/instantiator/zipball/ae466f726242e637cebdd526a7d991b9433bacf1", - "reference": "ae466f726242e637cebdd526a7d991b9433bacf1", - "shasum": "" - }, - "require": { - "php": "^7.1" - }, - "require-dev": { - "doctrine/coding-standard": "^6.0", - "ext-pdo": "*", - "ext-phar": "*", - "phpbench/phpbench": "^0.13", - "phpstan/phpstan-phpunit": "^0.11", - "phpstan/phpstan-shim": "^0.11", - "phpunit/phpunit": "^7.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.2.x-dev" - } - }, - "autoload": { - "psr-4": { - "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Marco Pivetta", - "email": "ocramius@gmail.com", - "homepage": "http://ocramius.github.com/" - } - ], - "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", - "homepage": "https://www.doctrine-project.org/projects/instantiator.html", - "keywords": [ - "constructor", - "instantiate" - ], - "time": "2019-10-21T16:45:58+00:00" - }, - { - "name": "league/flysystem", - "version": "1.0.66", - "source": { - "type": "git", - "url": "https://github.com/thephpleague/flysystem.git", - "reference": "021569195e15f8209b1c4bebb78bd66aa4f08c21" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/021569195e15f8209b1c4bebb78bd66aa4f08c21", - "reference": "021569195e15f8209b1c4bebb78bd66aa4f08c21", - "shasum": "" - }, - "require": { - "ext-fileinfo": "*", - "php": ">=5.5.9" - }, - "conflict": { - "league/flysystem-sftp": "<1.0.6" - }, - "require-dev": { - "phpspec/phpspec": "^3.4", - "phpunit/phpunit": "^5.7.26" - }, - "suggest": { - "ext-fileinfo": "Required for MimeType", - "ext-ftp": "Allows you to use FTP server storage", - "ext-openssl": "Allows you to use FTPS server storage", - "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2", - "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3", - "league/flysystem-azure": "Allows you to use Windows Azure Blob storage", - "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching", - "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem", - "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files", - "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib", - "league/flysystem-webdav": "Allows you to use WebDAV storage", - "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter", - "spatie/flysystem-dropbox": "Allows you to use Dropbox storage", - "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.1-dev" - } - }, - "autoload": { - "psr-4": { - "League\\Flysystem\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Frank de Jonge", - "email": "info@frenky.net" - } - ], - "description": "Filesystem abstraction: Many filesystems, one API.", - "keywords": [ - "Cloud Files", - "WebDAV", - "abstraction", - "aws", - "cloud", - "copy.com", - "dropbox", - "file systems", - "files", - "filesystem", - "filesystems", - "ftp", - "rackspace", - "remote", - "s3", - "sftp", - "storage" - ], - "time": "2020-03-17T18:58:12+00:00" - }, - { - "name": "myclabs/deep-copy", - "version": "1.9.5", - "source": { - "type": "git", - "url": "https://github.com/myclabs/DeepCopy.git", - "reference": "b2c28789e80a97badd14145fda39b545d83ca3ef" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/b2c28789e80a97badd14145fda39b545d83ca3ef", - "reference": "b2c28789e80a97badd14145fda39b545d83ca3ef", - "shasum": "" - }, - "require": { - "php": "^7.1" - }, - "replace": { - "myclabs/deep-copy": "self.version" - }, - "require-dev": { - "doctrine/collections": "^1.0", - "doctrine/common": "^2.6", - "phpunit/phpunit": "^7.1" - }, - "type": "library", - "autoload": { - "psr-4": { - "DeepCopy\\": "src/DeepCopy/" - }, - "files": [ - "src/DeepCopy/deep_copy.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "description": "Create deep copies (clones) of your objects", - "keywords": [ - "clone", - "copy", - "duplicate", - "object", - "object graph" - ], - "time": "2020-01-17T21:11:47+00:00" - }, - { - "name": "phpcompatibility/php-compatibility", - "version": "9.3.5", - "source": { - "type": "git", - "url": "https://github.com/PHPCompatibility/PHPCompatibility.git", - "reference": "9fb324479acf6f39452e0655d2429cc0d3914243" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/PHPCompatibility/PHPCompatibility/zipball/9fb324479acf6f39452e0655d2429cc0d3914243", - "reference": "9fb324479acf6f39452e0655d2429cc0d3914243", - "shasum": "" - }, - "require": { - "php": ">=5.3", - "squizlabs/php_codesniffer": "^2.3 || ^3.0.2" - }, - "conflict": { - "squizlabs/php_codesniffer": "2.6.2" - }, - "require-dev": { - "phpunit/phpunit": "~4.5 || ^5.0 || ^6.0 || ^7.0" - }, - "suggest": { - "dealerdirect/phpcodesniffer-composer-installer": "^0.5 || This Composer plugin will sort out the PHPCS 'installed_paths' automatically.", - "roave/security-advisories": "dev-master || Helps prevent installing dependencies with known security issues." - }, - "type": "phpcodesniffer-standard", - "notification-url": "https://packagist.org/downloads/", - "license": [ - "LGPL-3.0-or-later" - ], - "authors": [ - { - "name": "Wim Godden", - "homepage": "https://github.com/wimg", - "role": "lead" - }, - { - "name": "Juliette Reinders Folmer", - "homepage": "https://github.com/jrfnl", - "role": "lead" - }, - { - "name": "Contributors", - "homepage": "https://github.com/PHPCompatibility/PHPCompatibility/graphs/contributors" - } - ], - "description": "A set of sniffs for PHP_CodeSniffer that checks for PHP cross-version compatibility.", - "homepage": "http://techblog.wimgodden.be/tag/codesniffer/", - "keywords": [ - "compatibility", - "phpcs", - "standards" - ], - "time": "2019-12-27T09:44:58+00:00" - }, - { - "name": "phpdocumentor/reflection-common", - "version": "2.0.0", - "source": { - "type": "git", - "url": "https://github.com/phpDocumentor/ReflectionCommon.git", - "reference": "63a995caa1ca9e5590304cd845c15ad6d482a62a" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/63a995caa1ca9e5590304cd845c15ad6d482a62a", - "reference": "63a995caa1ca9e5590304cd845c15ad6d482a62a", - "shasum": "" - }, - "require": { - "php": ">=7.1" - }, - "require-dev": { - "phpunit/phpunit": "~6" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.x-dev" - } - }, - "autoload": { - "psr-4": { - "phpDocumentor\\Reflection\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Jaap van Otterdijk", - "email": "opensource@ijaap.nl" - } - ], - "description": "Common reflection classes used by phpdocumentor to reflect the code structure", - "homepage": "http://www.phpdoc.org", - "keywords": [ - "FQSEN", - "phpDocumentor", - "phpdoc", - "reflection", - "static analysis" - ], - "time": "2018-08-07T13:53:10+00:00" - }, - { - "name": "phpdocumentor/reflection-docblock", - "version": "5.1.0", - "source": { - "type": "git", - "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", - "reference": "cd72d394ca794d3466a3b2fc09d5a6c1dc86b47e" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/cd72d394ca794d3466a3b2fc09d5a6c1dc86b47e", - "reference": "cd72d394ca794d3466a3b2fc09d5a6c1dc86b47e", - "shasum": "" - }, - "require": { - "ext-filter": "^7.1", - "php": "^7.2", - "phpdocumentor/reflection-common": "^2.0", - "phpdocumentor/type-resolver": "^1.0", - "webmozart/assert": "^1" - }, - "require-dev": { - "doctrine/instantiator": "^1", - "mockery/mockery": "^1" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "5.x-dev" - } - }, - "autoload": { - "psr-4": { - "phpDocumentor\\Reflection\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Mike van Riel", - "email": "me@mikevanriel.com" - }, - { - "name": "Jaap van Otterdijk", - "email": "account@ijaap.nl" - } - ], - "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", - "time": "2020-02-22T12:28:44+00:00" - }, - { - "name": "phpdocumentor/type-resolver", - "version": "1.1.0", - "source": { - "type": "git", - "url": "https://github.com/phpDocumentor/TypeResolver.git", - "reference": "7462d5f123dfc080dfdf26897032a6513644fc95" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/7462d5f123dfc080dfdf26897032a6513644fc95", - "reference": "7462d5f123dfc080dfdf26897032a6513644fc95", - "shasum": "" - }, - "require": { - "php": "^7.2", - "phpdocumentor/reflection-common": "^2.0" - }, - "require-dev": { - "ext-tokenizer": "^7.2", - "mockery/mockery": "~1" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.x-dev" - } - }, - "autoload": { - "psr-4": { - "phpDocumentor\\Reflection\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Mike van Riel", - "email": "me@mikevanriel.com" - } - ], - "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names", - "time": "2020-02-18T18:59:58+00:00" - }, - { - "name": "phpspec/prophecy", - "version": "v1.10.3", - "source": { - "type": "git", - "url": "https://github.com/phpspec/prophecy.git", - "reference": "451c3cd1418cf640de218914901e51b064abb093" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/phpspec/prophecy/zipball/451c3cd1418cf640de218914901e51b064abb093", - "reference": "451c3cd1418cf640de218914901e51b064abb093", - "shasum": "" - }, - "require": { - "doctrine/instantiator": "^1.0.2", - "php": "^5.3|^7.0", - "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0", - "sebastian/comparator": "^1.2.3|^2.0|^3.0|^4.0", - "sebastian/recursion-context": "^1.0|^2.0|^3.0|^4.0" - }, - "require-dev": { - "phpspec/phpspec": "^2.5 || ^3.2", - "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.10.x-dev" - } - }, - "autoload": { - "psr-4": { - "Prophecy\\": "src/Prophecy" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Konstantin Kudryashov", - "email": "ever.zet@gmail.com", - "homepage": "http://everzet.com" - }, - { - "name": "Marcello Duarte", - "email": "marcello.duarte@gmail.com" - } - ], - "description": "Highly opinionated mocking framework for PHP 5.3+", - "homepage": "https://github.com/phpspec/prophecy", - "keywords": [ - "Double", - "Dummy", - "fake", - "mock", - "spy", - "stub" - ], - "time": "2020-03-05T15:02:03+00:00" - }, - { - "name": "phpunit/php-code-coverage", - "version": "4.0.8", - "source": { - "type": "git", - "url": "https://github.com/sebastianbergmann/php-code-coverage.git", - "reference": "ef7b2f56815df854e66ceaee8ebe9393ae36a40d" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/ef7b2f56815df854e66ceaee8ebe9393ae36a40d", - "reference": "ef7b2f56815df854e66ceaee8ebe9393ae36a40d", - "shasum": "" - }, - "require": { - "ext-dom": "*", - "ext-xmlwriter": "*", - "php": "^5.6 || ^7.0", - "phpunit/php-file-iterator": "^1.3", - "phpunit/php-text-template": "^1.2", - "phpunit/php-token-stream": "^1.4.2 || ^2.0", - "sebastian/code-unit-reverse-lookup": "^1.0", - "sebastian/environment": "^1.3.2 || ^2.0", - "sebastian/version": "^1.0 || ^2.0" - }, - "require-dev": { - "ext-xdebug": "^2.1.4", - "phpunit/phpunit": "^5.7" - }, - "suggest": { - "ext-xdebug": "^2.5.1" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "4.0.x-dev" - } - }, - "autoload": { - "classmap": [ - "src/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Sebastian Bergmann", - "email": "sb@sebastian-bergmann.de", - "role": "lead" - } - ], - "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", - "homepage": "https://github.com/sebastianbergmann/php-code-coverage", - "keywords": [ - "coverage", - "testing", - "xunit" - ], - "time": "2017-04-02T07:44:40+00:00" - }, - { - "name": "phpunit/php-file-iterator", - "version": "1.4.5", - "source": { - "type": "git", - "url": "https://github.com/sebastianbergmann/php-file-iterator.git", - "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4", - "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4", - "shasum": "" - }, - "require": { - "php": ">=5.3.3" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.4.x-dev" - } - }, - "autoload": { - "classmap": [ - "src/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Sebastian Bergmann", - "email": "sb@sebastian-bergmann.de", - "role": "lead" - } - ], - "description": "FilterIterator implementation that filters files based on a list of suffixes.", - "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", - "keywords": [ - "filesystem", - "iterator" - ], - "time": "2017-11-27T13:52:08+00:00" - }, - { - "name": "phpunit/php-text-template", - "version": "1.2.1", - "source": { - "type": "git", - "url": "https://github.com/sebastianbergmann/php-text-template.git", - "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686", - "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686", - "shasum": "" - }, - "require": { - "php": ">=5.3.3" - }, - "type": "library", - "autoload": { - "classmap": [ - "src/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "lead" - } - ], - "description": "Simple template engine.", - "homepage": "https://github.com/sebastianbergmann/php-text-template/", - "keywords": [ - "template" - ], - "time": "2015-06-21T13:50:34+00:00" - }, - { - "name": "phpunit/php-timer", - "version": "1.0.9", - "source": { - "type": "git", - "url": "https://github.com/sebastianbergmann/php-timer.git", - "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f", - "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f", - "shasum": "" - }, - "require": { - "php": "^5.3.3 || ^7.0" - }, - "require-dev": { - "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0-dev" - } - }, - "autoload": { - "classmap": [ - "src/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Sebastian Bergmann", - "email": "sb@sebastian-bergmann.de", - "role": "lead" - } - ], - "description": "Utility class for timing", - "homepage": "https://github.com/sebastianbergmann/php-timer/", - "keywords": [ - "timer" - ], - "time": "2017-02-26T11:10:40+00:00" - }, - { - "name": "phpunit/php-token-stream", - "version": "2.0.2", - "source": { - "type": "git", - "url": "https://github.com/sebastianbergmann/php-token-stream.git", - "reference": "791198a2c6254db10131eecfe8c06670700904db" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db", - "reference": "791198a2c6254db10131eecfe8c06670700904db", - "shasum": "" - }, - "require": { - "ext-tokenizer": "*", - "php": "^7.0" - }, - "require-dev": { - "phpunit/phpunit": "^6.2.4" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.0-dev" - } - }, - "autoload": { - "classmap": [ - "src/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" - } - ], - "description": "Wrapper around PHP's tokenizer extension.", - "homepage": "https://github.com/sebastianbergmann/php-token-stream/", - "keywords": [ - "tokenizer" - ], - "time": "2017-11-27T05:48:46+00:00" - }, - { - "name": "phpunit/phpunit", - "version": "5.7.27", - "source": { - "type": "git", - "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "b7803aeca3ccb99ad0a506fa80b64cd6a56bbc0c" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/b7803aeca3ccb99ad0a506fa80b64cd6a56bbc0c", - "reference": "b7803aeca3ccb99ad0a506fa80b64cd6a56bbc0c", - "shasum": "" - }, - "require": { - "ext-dom": "*", - "ext-json": "*", - "ext-libxml": "*", - "ext-mbstring": "*", - "ext-xml": "*", - "myclabs/deep-copy": "~1.3", - "php": "^5.6 || ^7.0", - "phpspec/prophecy": "^1.6.2", - "phpunit/php-code-coverage": "^4.0.4", - "phpunit/php-file-iterator": "~1.4", - "phpunit/php-text-template": "~1.2", - "phpunit/php-timer": "^1.0.6", - "phpunit/phpunit-mock-objects": "^3.2", - "sebastian/comparator": "^1.2.4", - "sebastian/diff": "^1.4.3", - "sebastian/environment": "^1.3.4 || ^2.0", - "sebastian/exporter": "~2.0", - "sebastian/global-state": "^1.1", - "sebastian/object-enumerator": "~2.0", - "sebastian/resource-operations": "~1.0", - "sebastian/version": "^1.0.6|^2.0.1", - "symfony/yaml": "~2.1|~3.0|~4.0" - }, - "conflict": { - "phpdocumentor/reflection-docblock": "3.0.2" - }, - "require-dev": { - "ext-pdo": "*" - }, - "suggest": { - "ext-xdebug": "*", - "phpunit/php-invoker": "~1.1" - }, - "bin": [ - "phpunit" - ], - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "5.7.x-dev" - } - }, - "autoload": { - "classmap": [ - "src/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "lead" - } - ], - "description": "The PHP Unit Testing framework.", - "homepage": "https://phpunit.de/", - "keywords": [ - "phpunit", - "testing", - "xunit" - ], - "time": "2018-02-01T05:50:59+00:00" - }, - { - "name": "phpunit/phpunit-mock-objects", - "version": "3.4.4", - "source": { - "type": "git", - "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git", - "reference": "a23b761686d50a560cc56233b9ecf49597cc9118" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/a23b761686d50a560cc56233b9ecf49597cc9118", - "reference": "a23b761686d50a560cc56233b9ecf49597cc9118", - "shasum": "" - }, - "require": { - "doctrine/instantiator": "^1.0.2", - "php": "^5.6 || ^7.0", - "phpunit/php-text-template": "^1.2", - "sebastian/exporter": "^1.2 || ^2.0" - }, - "conflict": { - "phpunit/phpunit": "<5.4.0" - }, - "require-dev": { - "phpunit/phpunit": "^5.4" - }, - "suggest": { - "ext-soap": "*" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.2.x-dev" - } - }, - "autoload": { - "classmap": [ - "src/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Sebastian Bergmann", - "email": "sb@sebastian-bergmann.de", - "role": "lead" - } - ], - "description": "Mock Object library for PHPUnit", - "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/", - "keywords": [ - "mock", - "xunit" - ], - "abandoned": true, - "time": "2017-06-30T09:13:00+00:00" - }, - { - "name": "sebastian/code-unit-reverse-lookup", - "version": "1.0.1", - "source": { - "type": "git", - "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", - "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18", - "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18", - "shasum": "" - }, - "require": { - "php": "^5.6 || ^7.0" - }, - "require-dev": { - "phpunit/phpunit": "^5.7 || ^6.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, - "autoload": { - "classmap": [ - "src/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" - } - ], - "description": "Looks up which function or method a line of code belongs to", - "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", - "time": "2017-03-04T06:30:41+00:00" - }, - { - "name": "sebastian/comparator", - "version": "1.2.4", - "source": { - "type": "git", - "url": "https://github.com/sebastianbergmann/comparator.git", - "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2b7424b55f5047b47ac6e5ccb20b2aea4011d9be", - "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be", - "shasum": "" - }, - "require": { - "php": ">=5.3.3", - "sebastian/diff": "~1.2", - "sebastian/exporter": "~1.2 || ~2.0" - }, - "require-dev": { - "phpunit/phpunit": "~4.4" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.2.x-dev" - } - }, - "autoload": { - "classmap": [ - "src/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Jeff Welch", - "email": "whatthejeff@gmail.com" - }, - { - "name": "Volker Dusch", - "email": "github@wallbash.com" - }, - { - "name": "Bernhard Schussek", - "email": "bschussek@2bepublished.at" - }, - { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" - } - ], - "description": "Provides the functionality to compare PHP values for equality", - "homepage": "http://www.github.com/sebastianbergmann/comparator", - "keywords": [ - "comparator", - "compare", - "equality" - ], - "time": "2017-01-29T09:50:25+00:00" - }, - { - "name": "sebastian/diff", - "version": "1.4.3", - "source": { - "type": "git", - "url": "https://github.com/sebastianbergmann/diff.git", - "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/7f066a26a962dbe58ddea9f72a4e82874a3975a4", - "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4", - "shasum": "" - }, - "require": { - "php": "^5.3.3 || ^7.0" - }, - "require-dev": { - "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.4-dev" - } - }, - "autoload": { - "classmap": [ - "src/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Kore Nordmann", - "email": "mail@kore-nordmann.de" - }, - { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" - } - ], - "description": "Diff implementation", - "homepage": "https://github.com/sebastianbergmann/diff", - "keywords": [ - "diff" - ], - "time": "2017-05-22T07:24:03+00:00" - }, - { - "name": "sebastian/environment", - "version": "2.0.0", - "source": { - "type": "git", - "url": "https://github.com/sebastianbergmann/environment.git", - "reference": "5795ffe5dc5b02460c3e34222fee8cbe245d8fac" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/5795ffe5dc5b02460c3e34222fee8cbe245d8fac", - "reference": "5795ffe5dc5b02460c3e34222fee8cbe245d8fac", - "shasum": "" - }, - "require": { - "php": "^5.6 || ^7.0" - }, - "require-dev": { - "phpunit/phpunit": "^5.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.0.x-dev" - } - }, - "autoload": { - "classmap": [ - "src/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" - } - ], - "description": "Provides functionality to handle HHVM/PHP environments", - "homepage": "http://www.github.com/sebastianbergmann/environment", - "keywords": [ - "Xdebug", - "environment", - "hhvm" - ], - "time": "2016-11-26T07:53:53+00:00" - }, - { - "name": "sebastian/exporter", - "version": "2.0.0", - "source": { - "type": "git", - "url": "https://github.com/sebastianbergmann/exporter.git", - "reference": "ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4", - "reference": "ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4", - "shasum": "" - }, - "require": { - "php": ">=5.3.3", - "sebastian/recursion-context": "~2.0" - }, - "require-dev": { - "ext-mbstring": "*", - "phpunit/phpunit": "~4.4" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.0.x-dev" - } - }, - "autoload": { - "classmap": [ - "src/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Jeff Welch", - "email": "whatthejeff@gmail.com" - }, - { - "name": "Volker Dusch", - "email": "github@wallbash.com" - }, - { - "name": "Bernhard Schussek", - "email": "bschussek@2bepublished.at" - }, - { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" - }, - { - "name": "Adam Harvey", - "email": "aharvey@php.net" - } - ], - "description": "Provides the functionality to export PHP variables for visualization", - "homepage": "http://www.github.com/sebastianbergmann/exporter", - "keywords": [ - "export", - "exporter" - ], - "time": "2016-11-19T08:54:04+00:00" - }, - { - "name": "sebastian/global-state", - "version": "1.1.1", - "source": { - "type": "git", - "url": "https://github.com/sebastianbergmann/global-state.git", - "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bc37d50fea7d017d3d340f230811c9f1d7280af4", - "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4", - "shasum": "" - }, - "require": { - "php": ">=5.3.3" - }, - "require-dev": { - "phpunit/phpunit": "~4.2" - }, - "suggest": { - "ext-uopz": "*" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0-dev" - } - }, - "autoload": { - "classmap": [ - "src/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" - } - ], - "description": "Snapshotting of global state", - "homepage": "http://www.github.com/sebastianbergmann/global-state", - "keywords": [ - "global state" - ], - "time": "2015-10-12T03:26:01+00:00" - }, - { - "name": "sebastian/object-enumerator", - "version": "2.0.1", - "source": { - "type": "git", - "url": "https://github.com/sebastianbergmann/object-enumerator.git", - "reference": "1311872ac850040a79c3c058bea3e22d0f09cbb7" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/1311872ac850040a79c3c058bea3e22d0f09cbb7", - "reference": "1311872ac850040a79c3c058bea3e22d0f09cbb7", - "shasum": "" - }, - "require": { - "php": ">=5.6", - "sebastian/recursion-context": "~2.0" - }, - "require-dev": { - "phpunit/phpunit": "~5" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.0.x-dev" - } - }, - "autoload": { - "classmap": [ - "src/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" - } - ], - "description": "Traverses array structures and object graphs to enumerate all referenced objects", - "homepage": "https://github.com/sebastianbergmann/object-enumerator/", - "time": "2017-02-18T15:18:39+00:00" - }, - { - "name": "sebastian/recursion-context", - "version": "2.0.0", - "source": { - "type": "git", - "url": "https://github.com/sebastianbergmann/recursion-context.git", - "reference": "2c3ba150cbec723aa057506e73a8d33bdb286c9a" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/2c3ba150cbec723aa057506e73a8d33bdb286c9a", - "reference": "2c3ba150cbec723aa057506e73a8d33bdb286c9a", - "shasum": "" - }, - "require": { - "php": ">=5.3.3" - }, - "require-dev": { - "phpunit/phpunit": "~4.4" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.0.x-dev" - } - }, - "autoload": { - "classmap": [ - "src/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Jeff Welch", - "email": "whatthejeff@gmail.com" - }, - { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" - }, - { - "name": "Adam Harvey", - "email": "aharvey@php.net" - } - ], - "description": "Provides functionality to recursively process PHP variables", - "homepage": "http://www.github.com/sebastianbergmann/recursion-context", - "time": "2016-11-19T07:33:16+00:00" - }, - { - "name": "sebastian/resource-operations", - "version": "1.0.0", - "source": { - "type": "git", - "url": "https://github.com/sebastianbergmann/resource-operations.git", - "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52", - "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52", - "shasum": "" - }, - "require": { - "php": ">=5.6.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, - "autoload": { - "classmap": [ - "src/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" - } - ], - "description": "Provides a list of PHP built-in functions that operate on resources", - "homepage": "https://www.github.com/sebastianbergmann/resource-operations", - "time": "2015-07-28T20:34:47+00:00" - }, - { - "name": "sebastian/version", - "version": "2.0.1", - "source": { - "type": "git", - "url": "https://github.com/sebastianbergmann/version.git", - "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019", - "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019", - "shasum": "" - }, - "require": { - "php": ">=5.6" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.0.x-dev" - } - }, - "autoload": { - "classmap": [ - "src/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "lead" - } - ], - "description": "Library that helps with managing the version number of Git-hosted PHP projects", - "homepage": "https://github.com/sebastianbergmann/version", - "time": "2016-10-03T07:35:21+00:00" - }, - { - "name": "squizlabs/php_codesniffer", - "version": "2.9.2", - "source": { - "type": "git", - "url": "https://github.com/squizlabs/PHP_CodeSniffer.git", - "reference": "2acf168de78487db620ab4bc524135a13cfe6745" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/2acf168de78487db620ab4bc524135a13cfe6745", - "reference": "2acf168de78487db620ab4bc524135a13cfe6745", - "shasum": "" - }, - "require": { - "ext-simplexml": "*", - "ext-tokenizer": "*", - "ext-xmlwriter": "*", - "php": ">=5.1.2" - }, - "require-dev": { - "phpunit/phpunit": "~4.0" - }, - "bin": [ - "scripts/phpcs", - "scripts/phpcbf" - ], - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.x-dev" - } - }, - "autoload": { - "classmap": [ - "CodeSniffer.php", - "CodeSniffer/CLI.php", - "CodeSniffer/Exception.php", - "CodeSniffer/File.php", - "CodeSniffer/Fixer.php", - "CodeSniffer/Report.php", - "CodeSniffer/Reporting.php", - "CodeSniffer/Sniff.php", - "CodeSniffer/Tokens.php", - "CodeSniffer/Reports/", - "CodeSniffer/Tokenizers/", - "CodeSniffer/DocGenerators/", - "CodeSniffer/Standards/AbstractPatternSniff.php", - "CodeSniffer/Standards/AbstractScopeSniff.php", - "CodeSniffer/Standards/AbstractVariableSniff.php", - "CodeSniffer/Standards/IncorrectPatternException.php", - "CodeSniffer/Standards/Generic/Sniffs/", - "CodeSniffer/Standards/MySource/Sniffs/", - "CodeSniffer/Standards/PEAR/Sniffs/", - "CodeSniffer/Standards/PSR1/Sniffs/", - "CodeSniffer/Standards/PSR2/Sniffs/", - "CodeSniffer/Standards/Squiz/Sniffs/", - "CodeSniffer/Standards/Zend/Sniffs/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Greg Sherwood", - "role": "lead" - } - ], - "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.", - "homepage": "http://www.squizlabs.com/php-codesniffer", - "keywords": [ - "phpcs", - "standards" - ], - "time": "2018-11-07T22:31:41+00:00" - }, - { - "name": "symfony/css-selector", - "version": "v2.8.52", - "source": { - "type": "git", - "url": "https://github.com/symfony/css-selector.git", - "reference": "7b1692e418d7ccac24c373528453bc90e42797de" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/css-selector/zipball/7b1692e418d7ccac24c373528453bc90e42797de", - "reference": "7b1692e418d7ccac24c373528453bc90e42797de", - "shasum": "" - }, - "require": { - "php": ">=5.3.9" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.8-dev" - } - }, - "autoload": { - "psr-4": { - "Symfony\\Component\\CssSelector\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Jean-François Simon", - "email": "jeanfrancois.simon@sensiolabs.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony CssSelector Component", - "homepage": "https://symfony.com", - "time": "2018-11-11T11:18:13+00:00" - }, - { - "name": "symfony/dom-crawler", - "version": "v2.8.52", - "source": { - "type": "git", - "url": "https://github.com/symfony/dom-crawler.git", - "reference": "2cdc7d3909eea6f982a6298d2e9ab7db01b6403c" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/2cdc7d3909eea6f982a6298d2e9ab7db01b6403c", - "reference": "2cdc7d3909eea6f982a6298d2e9ab7db01b6403c", - "shasum": "" - }, - "require": { - "php": ">=5.3.9", - "symfony/polyfill-ctype": "~1.8", - "symfony/polyfill-mbstring": "~1.0" - }, - "require-dev": { - "symfony/css-selector": "~2.8|~3.0.0" - }, - "suggest": { - "symfony/css-selector": "" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.8-dev" - } - }, - "autoload": { - "psr-4": { - "Symfony\\Component\\DomCrawler\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony DomCrawler Component", - "homepage": "https://symfony.com", - "time": "2018-11-24T22:30:19+00:00" - }, - { - "name": "symfony/polyfill-ctype", - "version": "v1.14.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "fbdeaec0df06cf3d51c93de80c7eb76e271f5a38" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/fbdeaec0df06cf3d51c93de80c7eb76e271f5a38", - "reference": "fbdeaec0df06cf3d51c93de80c7eb76e271f5a38", - "shasum": "" - }, - "require": { - "php": ">=5.3.3" - }, - "suggest": { - "ext-ctype": "For best performance" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.14-dev" - } - }, - "autoload": { - "psr-4": { - "Symfony\\Polyfill\\Ctype\\": "" - }, - "files": [ - "bootstrap.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Gert de Pagter", - "email": "BackEndTea@gmail.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony polyfill for ctype functions", - "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "ctype", - "polyfill", - "portable" - ], - "time": "2020-01-13T11:15:53+00:00" - }, - { - "name": "symfony/polyfill-mbstring", - "version": "v1.14.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "34094cfa9abe1f0f14f48f490772db7a775559f2" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/34094cfa9abe1f0f14f48f490772db7a775559f2", - "reference": "34094cfa9abe1f0f14f48f490772db7a775559f2", - "shasum": "" - }, - "require": { - "php": ">=5.3.3" - }, - "suggest": { - "ext-mbstring": "For best performance" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.14-dev" - } - }, - "autoload": { - "psr-4": { - "Symfony\\Polyfill\\Mbstring\\": "" - }, - "files": [ - "bootstrap.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony polyfill for the Mbstring extension", - "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "mbstring", - "polyfill", - "portable", - "shim" - ], - "time": "2020-01-13T11:15:53+00:00" - }, - { - "name": "symfony/yaml", - "version": "v4.4.5", - "source": { - "type": "git", - "url": "https://github.com/symfony/yaml.git", - "reference": "94d005c176db2080e98825d98e01e8b311a97a88" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/94d005c176db2080e98825d98e01e8b311a97a88", - "reference": "94d005c176db2080e98825d98e01e8b311a97a88", - "shasum": "" - }, - "require": { - "php": "^7.1.3", - "symfony/polyfill-ctype": "~1.8" - }, - "conflict": { - "symfony/console": "<3.4" - }, - "require-dev": { - "symfony/console": "^3.4|^4.0|^5.0" - }, - "suggest": { - "symfony/console": "For validating YAML files using the lint command" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "4.4-dev" - } - }, - "autoload": { - "psr-4": { - "Symfony\\Component\\Yaml\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony Yaml Component", - "homepage": "https://symfony.com", - "time": "2020-02-03T10:46:43+00:00" - }, - { - "name": "webmozart/assert", - "version": "1.7.0", - "source": { - "type": "git", - "url": "https://github.com/webmozart/assert.git", - "reference": "aed98a490f9a8f78468232db345ab9cf606cf598" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/webmozart/assert/zipball/aed98a490f9a8f78468232db345ab9cf606cf598", - "reference": "aed98a490f9a8f78468232db345ab9cf606cf598", - "shasum": "" - }, - "require": { - "php": "^5.3.3 || ^7.0", - "symfony/polyfill-ctype": "^1.8" - }, - "conflict": { - "vimeo/psalm": "<3.6.0" - }, - "require-dev": { - "phpunit/phpunit": "^4.8.36 || ^7.5.13" - }, - "type": "library", - "autoload": { - "psr-4": { - "Webmozart\\Assert\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Bernhard Schussek", - "email": "bschussek@gmail.com" - } - ], - "description": "Assertions to validate method input/output with nice error messages.", - "keywords": [ - "assert", - "check", - "validate" - ], - "time": "2020-02-14T12:15:55+00:00" - } - ], - "aliases": [], - "minimum-stability": "stable", - "stability-flags": [], - "prefer-stable": false, - "prefer-lowest": false, - "platform": { - "php": ">=5.4" - }, - "platform-dev": [] -} diff --git a/services/libs/google-api-php-client-2.4.1/docs/README.md b/services/libs/google-api-php-client-2.4.1/docs/README.md deleted file mode 100644 index c9723617..00000000 --- a/services/libs/google-api-php-client-2.4.1/docs/README.md +++ /dev/null @@ -1,15 +0,0 @@ -# Google API Client Library for PHP Docs - -The Google API Client Library for PHP offers simple, flexible access to many Google APIs. - -## Documentation - -- [Getting Started](start.md) -- [API Keys](api-keys.md) -- [Auth](auth.md) -- [Installation](install.md) -- [Media](media.md) -- [OAuth Server](oauth-server.md) -- [OAuth Web](oauth-web.md) -- [Pagination](pagination.md) -- [Parameters](parameters.md) diff --git a/services/libs/google-api-php-client-2.4.1/docs/api-keys.md b/services/libs/google-api-php-client-2.4.1/docs/api-keys.md deleted file mode 100644 index 7828651f..00000000 --- a/services/libs/google-api-php-client-2.4.1/docs/api-keys.md +++ /dev/null @@ -1,13 +0,0 @@ -# API Keys - -When calling APIs that do not access private user data, you can use simple API keys. These keys are used to authenticate your application for accounting purposes. The Google Developers Console documentation also describes [API keys](https://developers.google.com/console/help/using-keys). - -> Note: If you do need to access private user data, you must use OAuth 2.0. See [Using OAuth 2.0 for Web Server Applications](/docs/oauth-web.md) and [Using OAuth 2.0 for Server to Server Applications](/docs/oauth-server.md) for more information. - -## Using API Keys - -To use API keys, call the `setDeveloperKey()` method of the `Google_Client` object before making any API calls. For example: - -```php -$client->setDeveloperKey($api_key); -``` diff --git a/services/libs/google-api-php-client-2.4.1/docs/auth.md b/services/libs/google-api-php-client-2.4.1/docs/auth.md deleted file mode 100644 index 65dc2463..00000000 --- a/services/libs/google-api-php-client-2.4.1/docs/auth.md +++ /dev/null @@ -1,11 +0,0 @@ -# Authorization - -The Google PHP Client Library supports several methods for making authenticated calls to the Google APIs. - -- [API Keys](api-keys.md) -- [OAuth 2.0 For Webservers](oauth-web.md) -- [OAuth 2.0 Service Accounts](oauth-server.md) - -In addition, it supports a method of identifying users without granting access to make Google API calls. - -- [ID Token Verification](id-token.md) \ No newline at end of file diff --git a/services/libs/google-api-php-client-2.4.1/docs/id-token.md b/services/libs/google-api-php-client-2.4.1/docs/id-token.md deleted file mode 100644 index 56456fa8..00000000 --- a/services/libs/google-api-php-client-2.4.1/docs/id-token.md +++ /dev/null @@ -1,22 +0,0 @@ -# ID Token Authentication - -ID tokens allow authenticating a user securely without requiring a network call (in many cases), and without granting the server access to request user information from the Google APIs. - -> For a complete example, see the [idtoken.php](https://github.com/googleapis/google-api-php-client/blob/master/examples/idtoken.php) sample in the examples/ directory of the client library. - -This is accomplished because each ID token is a cryptographically signed, base64 encoded JSON structure. The token payload includes the Google user ID, the client ID of the application the user signed in to, and the issuer (in this case, Google). It also contains a cryptographic signature which can be verified with the public Google certificates to ensure that the token was created by Google. If the user has granted permission to view their email address to the application, the ID token will additionally include their email address. - -The token can be easily and securely verified with the PHP client library - -```php -function getUserFromToken($token) { - $ticket = $client->verifyIdToken($token); - if ($ticket) { - $data = $ticket->getAttributes(); - return $data['payload']['sub']; // user ID - } - return false -} -``` - -The library will automatically download and cache the certificate required for verification, and refresh it if it has expired. diff --git a/services/libs/google-api-php-client-2.4.1/docs/install.md b/services/libs/google-api-php-client-2.4.1/docs/install.md deleted file mode 100644 index 36bb6591..00000000 --- a/services/libs/google-api-php-client-2.4.1/docs/install.md +++ /dev/null @@ -1,39 +0,0 @@ -# Installation - -This page contains information about installing the Google APIs Client Library for PHP. - -## Requirements - -* PHP version 5.4 or greater. - -## Obtaining the client library - -There are two options for obtaining the files for the client library. - -### Using Composer - -You can install the library by adding it as a dependency to your composer.json. - -```json -"require": { - "google/apiclient": "^2.0" -} -``` - -### Downloading from GitHub - -Follow [the instructions in the README](https://github.com/google/google-api-php-client#download-the-release) to download the package locally. - -### What to do with the files - -After obtaining the files, include the autoloader. If you used Composer, your require statement will look like this: - -```php -require_once '/path/to/your-project/vendor/autoload.php'; -``` - -If you downloaded the package separately, your require statement will look like this: - -```php -require_once '/path/to/google-api-php-client/vendor/autoload.php'; -``` diff --git a/services/libs/google-api-php-client-2.4.1/docs/media.md b/services/libs/google-api-php-client-2.4.1/docs/media.md deleted file mode 100644 index 783e632b..00000000 --- a/services/libs/google-api-php-client-2.4.1/docs/media.md +++ /dev/null @@ -1,75 +0,0 @@ -# Media Upload - -The PHP client library allows for uploading large files for use with APIs such as Drive or YouTube. There are three different methods available. - -## Simple Upload - -In the simple upload case, the data is passed as the body of the request made to the server. This limits the ability to specify metadata, but is very easy to use. - -```php -$file = new Google_Service_Drive_DriveFile(); -$result = $service->files->insert($file, array( - 'data' => file_get_contents("path/to/file"), - 'mimeType' => 'application/octet-stream', - 'uploadType' => 'media' -)); -``` - -## Multipart File Upload - -With multipart file uploads, the uploaded file is sent as one part of a multipart form post. This allows metadata about the file object to be sent as part of the post as well. This is triggered by specifying the _multipart_ uploadType. - -```php -$file = new Google_Service_Drive_DriveFile(); -$file->setTitle("Hello World!"); -$result = $service->files->insert($file, array( - 'data' => file_get_contents("path/to/file"), - 'mimeType' => 'application/octet-stream', - 'uploadType' => 'multipart' -)); -``` - -## Resumable File Upload - -It is also possible to split the upload across multiple requests. This is convenient for larger files, and allows resumption of the upload if there is a problem. Resumable uploads can be sent with separate metadata. - -```php -$file = new Google_Service_Drive_DriveFile(); -$file->title = "Big File"; -$chunkSizeBytes = 1 * 1024 * 1024; - -// Call the API with the media upload, defer so it doesn't immediately return. -$client->setDefer(true); -$request = $service->files->insert($file); - -// Create a media file upload to represent our upload process. -$media = new Google_Http_MediaFileUpload( - $client, - $request, - 'text/plain', - null, - true, - $chunkSizeBytes -); -$media->setFileSize(filesize("path/to/file")); - -// Upload the various chunks. $status will be false until the process is -// complete. -$status = false; -$handle = fopen("path/to/file", "rb"); -while (!$status && !feof($handle)) { - $chunk = fread($handle, $chunkSizeBytes); - $status = $media->nextChunk($chunk); - } - -// The final value of $status will be the data from the API for the object -// that has been uploaded. -$result = false; -if($status != false) { - $result = $status; -} - -fclose($handle); -// Reset to the client to execute requests immediately in the future. -$client->setDefer(false); -``` \ No newline at end of file diff --git a/services/libs/google-api-php-client-2.4.1/docs/oauth-server.md b/services/libs/google-api-php-client-2.4.1/docs/oauth-server.md deleted file mode 100644 index 906fd082..00000000 --- a/services/libs/google-api-php-client-2.4.1/docs/oauth-server.md +++ /dev/null @@ -1,140 +0,0 @@ -# Using OAuth 2.0 for Server to Server Applications - -The Google APIs Client Library for PHP supports using OAuth 2.0 for server-to-server interactions such as those between a web application and a Google service. For this scenario you need a service account, which is an account that belongs to your application instead of to an individual end user. Your application calls Google APIs on behalf of the service account, so users aren't directly involved. This scenario is sometimes called "two-legged OAuth," or "2LO." (The related term "three-legged OAuth" refers to scenarios in which your application calls Google APIs on behalf of end users, and in which user consent is sometimes required.) - -Typically, an application uses a service account when the application uses Google APIs to work with its own data rather than a user's data. For example, an application that uses [Google Cloud Datastore](https://cloud.google.com/datastore/) for data persistence would use a service account to authenticate its calls to the Google Cloud Datastore API. - -If you have a G Suite domain—if you use [G Suite Business](https://gsuite.google.com), for example—an administrator of the G Suite domain can authorize an application to access user data on behalf of users in the G Suite domain. For example, an application that uses the [Google Calendar API](https://developers.google.com/google-apps/calendar/) to add events to the calendars of all users in a G Suite domain would use a service account to access the Google Calendar API on behalf of users. Authorizing a service account to access data on behalf of users in a domain is sometimes referred to as "delegating domain-wide authority" to a service account. - -> **Note:** When you use [G Suite Marketplace](https://www.google.com/enterprise/marketplace/) to install an application for your domain, the required permissions are automatically granted to the application. You do not need to manually authorize the service accounts that the application uses. - -> **Note:** Although you can use service accounts in applications that run from a G Suite domain, service accounts are not members of your G Suite account and aren't subject to domain policies set by G Suite administrators. For example, a policy set in the G Suite admin console to restrict the ability of Apps end users to share documents outside of the domain would not apply to service accounts. - -This document describes how an application can complete the server-to-server OAuth 2.0 flow by using the Google APIs Client Library for PHP. - -## Overview - -To support server-to-server interactions, first create a service account for your project in the Developers Console. If you want to access user data for users in your G Suite domain, then delegate domain-wide access to the service account. - -Then, your application prepares to make authorized API calls by using the service account's credentials to request an access token from the OAuth 2.0 auth server. - -Finally, your application can use the access token to call Google APIs. - -## Creating a service account - -A service account's credentials include a generated email address that is unique, a client ID, and at least one public/private key pair. - -If your application runs on Google App Engine, a service account is set up automatically when you create your project. - -If your application doesn't run on Google App Engine or Google Compute Engine, you must obtain these credentials in the Google Developers Console. To generate service-account credentials, or to view the public credentials that you've already generated, do the following: - -1. Open the [**Service accounts** section](https://console.developers.google.com/permissions/serviceaccounts?project=_) of the Developers Console's **Permissions** page. -2. Click **Create service account**. -3. In the **Create service account** window, type a name for the service account and select **Furnish a new private key**. If you want to [grant G Suite domain-wide authority](https://developers.google.com/identity/protocols/OAuth2ServiceAccount#delegatingauthority) to the service account, also select **Enable G Suite Domain-wide Delegation**. Then, click **Create**. - -Your new public/private key pair is generated and downloaded to your machine; it serves as the only copy of this key. You are responsible for storing it securely. - -You can return to the [Developers Console](https://console.developers.google.com/) at any time to view the client ID, email address, and public key fingerprints, or to generate additional public/private key pairs. For more details about service account credentials in the Developers Console, see [Service accounts](https://developers.google.com/console/help/service-accounts) in the Developers Console help file. - -Take note of the service account's email address and store the service account's private key file in a location accessible to your application. Your application needs them to make authorized API calls. - -**Note:** You must store and manage private keys securely in both development and production environments. Google does not keep a copy of your private keys, only your public keys. - -### Delegating domain-wide authority to the service account - -If your application runs in a G Suite domain and accesses user data, the service account that you created needs to be granted access to the user data that you want to access. - -The following steps must be performed by an administrator of the G Suite domain: - -1. Go to your G Suite domain’s [Admin console](http://admin.google.com). -2. Select **Security** from the list of controls. If you don't see **Security** listed, select **More controls** from the gray bar at the bottom of the page, then select **Security** from the list of controls. If you can't see the controls, make sure you're signed in as an administrator for the domain. -3. Select **Advanced settings** from the list of options. -4. Select **Manage third party OAuth Client access** in the **Authentication** section. -5. In the **Client name** field enter the service account's **Client ID**. -6. In the **One or More API Scopes** field enter the list of scopes that your application should be granted access to. For example, if your application needs domain-wide access to the Google Drive API and the Google Calendar API, enter: https://www.googleapis.com/auth/drive, https://www.googleapis.com/auth/calendar. -7. Click **Authorize**. - -Your application now has the authority to make API calls as users in your domain (to "impersonate" users). When you prepare to make authorized API calls, you specify the user to impersonate. - -[](#top_of_page)Preparing to make an authorized API call --------------------------------------------------------- - -After you have obtained the client email address and private key from the Developers Console, set the path to these credentials in the `GOOGLE_APPLICATION_CREDENTIALS` environment variable ( **Note:** This is not required in the App Engine environment): - -```php -putenv('GOOGLE_APPLICATION_CREDENTIALS=/path/to/service-account.json'); -``` - -Call the `useApplicationDefaultCredentials` to use your service account credentials to authenticate: - -```php -$client = new Google_Client(); -$client->useApplicationDefaultCredentials(); -``` - -If you have delegated domain-wide access to the service account and you want to impersonate a user account, specify the email address of the user account using the method `setSubject`: - -```php -$client->setSubject($user_to_impersonate); -``` - -Use the authorized `Google_Client` object to call Google APIs in your application. - -## Calling Google APIs - -Use the authorized `Google_Client` object to call Google APIs by completing the following steps: - -1. Build a service object for the API that you want to call, providing the authorized `Google_Client` object. For example, to call the Cloud SQL Administration API: - - ```php - $sqladmin = new Google_Service_SQLAdmin($client); - ``` - -2. Make requests to the API service using the [interface provided by the service object](https://github.com/googleapis/google-api-php-client/blob/master/docs/start.md#build-the-service-object). For example, to list the instances of Cloud SQL databases in the examinable-example-123 project: - - ```php - $response = $sqladmin->instances->listInstances('examinable-example-123')->getItems(); - ``` - -## Complete example - -The following example prints a JSON-formatted list of Cloud SQL instances in a project. - -To run this example: - -1. Create a new directory and change to it. For example: - - ```sh - mkdir ~/php-oauth2-example - cd ~/php-oauth2-example - ``` - -2. Install the [Google API Client Library](https://github.com/google/google-api-php-client) for PHP using [Composer](https://getcomposer.org): - - ```sh - composer require google/apiclient:^2.0 - ``` - -3. Create the file sqlinstances.php with the content below. -4. Run the example from the command line: - - ``` - php ~/php-oauth2-example/sqlinstances.php - ``` - -### sqlinstances.php - -```php -useApplicationDefaultCredentials(); - -$sqladmin = new Google_Service_SQLAdmin($client); -$response = $sqladmin->instances - ->listInstances('examinable-example-123')->getItems(); -echo json_encode($response) . "\n"; -``` diff --git a/services/libs/google-api-php-client-2.4.1/docs/oauth-web.md b/services/libs/google-api-php-client-2.4.1/docs/oauth-web.md deleted file mode 100644 index 699dc322..00000000 --- a/services/libs/google-api-php-client-2.4.1/docs/oauth-web.md +++ /dev/null @@ -1,424 +0,0 @@ -# Using OAuth 2.0 for Web Server Applications - -This document explains how web server applications use the Google API Client Library for PHP to implement OAuth 2.0 authorization to access Google APIs. OAuth 2.0 allows users to share specific data with an application while keeping their usernames, passwords, and other information private. For example, an application can use OAuth 2.0 to obtain permission from users to store files in their Google Drives. - -This OAuth 2.0 flow is specifically for user authorization. It is designed for applications that can store confidential information and maintain state. A properly authorized web server application can access an API while the user interacts with the application or after the user has left the application. - -Web server applications frequently also use [service accounts](oauth-server.md) to authorize API requests, particularly when calling Cloud APIs to access project-based data rather than user-specific data. Web server applications can use service accounts in conjunction with user authorization. - -## Prerequisites - -### Enable APIs for your project - -Any application that calls Google APIs needs to enable those APIs in the API Console. To enable the appropriate APIs for your project: - -1. Open the [Library](https://console.developers.google.com/apis/library) page in the API Console. -2. Select the project associated with your application. Create a project if you do not have one already. -3. Use the **Library** page to find each API that your application will use. Click on each API and enable it for your project. - -### Create authorization credentials - -Any application that uses OAuth 2.0 to access Google APIs must have authorization credentials that identify the application to Google's OAuth 2.0 server. The following steps explain how to create credentials for your project. Your applications can then use the credentials to access APIs that you have enabled for that project. - -1. Open the [Credentials page](https://console.developers.google.com/apis/credentials) in the API Console. -2. Click **Create credentials > OAuth client ID**. -3. Complete the form. Set the application type to `Web application`. Applications that use languages and frameworks like PHP, Java, Python, Ruby, and .NET must specify authorized **redirect URIs**. The redirect URIs are the endpoints to which the OAuth 2.0 server can send responses. - - For testing, you can specify URIs that refer to the local machine, such as `http://localhost:8080`. With that in mind, please note that all of the examples in this document use `http://localhost:8080` as the redirect URI. - - We recommend that you design your app's auth endpoints so that your application does not expose authorization codes to other resources on the page. - -After creating your credentials, download the **client_secret.json** file from the API Console. Securely store the file in a location that only your application can access. - -> **Important:** Do not store the **client_secret.json** file in a publicly-accessible location. In addition, if you share the source code to your application—for example, on GitHub—store the **client_secret.json** file outside of your source tree to avoid inadvertently sharing your client credentials. - -### Identify access scopes - -Scopes enable your application to only request access to the resources that it needs while also enabling users to control the amount of access that they grant to your application. Thus, there may be an inverse relationship between the number of scopes requested and the likelihood of obtaining user consent. - -Before you start implementing OAuth 2.0 authorization, we recommend that you identify the scopes that your app will need permission to access. - -We also recommend that your application request access to authorization scopes via an [incremental authorization](#incremental-authorization) process, in which your application requests access to user data in context. This best practice helps users to more easily understand why your application needs the access it is requesting. - -The [OAuth 2.0 API Scopes](https://developers.google.com/identity/protocols/googlescopes) document contains a full list of scopes that you might use to access Google APIs. - -> If your public application uses scopes that permit access to certain user data, it must pass review. If you see **unverified app** on the screen when testing your application, you must submit a verification request to remove it. Find out more about [unverified apps](https://support.google.com/cloud/answer/7454865) and get answers to [frequently asked questions about app verification](https://support.google.com/cloud/answer/9110914) in the Help Center. - -### Language-specific requirements - -To run any of the code samples in this document, you'll need a Google account, access to the Internet, and a web browser. If you are using one of the API client libraries, also see the language-specific requirements below. - -To run the PHP code samples in this document, you'll need: - -* PHP 5.4 or greater with the command-line interface (CLI) and JSON extension installed. -* The [Composer](https://getcomposer.org/) dependency management tool. -* The Google APIs Client Library for PHP: - ```sh - php composer.phar require google/apiclient:^2.0 - ``` - -## Obtaining OAuth 2.0 access tokens - -The following steps show how your application interacts with Google's OAuth 2.0 server to obtain a user's consent to perform an API request on the user's behalf. Your application must have that consent before it can execute a Google API request that requires user authorization. - -The list below quickly summarizes these steps: - -1. Your application identifies the permissions it needs. -2. Your application redirects the user to Google along with the list of requested permissions. -3. The user decides whether to grant the permissions to your application. -4. Your application finds out what the user decided. -5. If the user granted the requested permissions, your application retrieves tokens needed to make API requests on the user's behalf. - -### Step 1: Set authorization parameters - -Your first step is to create the authorization request. That request sets parameters that identify your application and define the permissions that the user will be asked to grant to your application. - -The code snippet below creates a `Google_Client()` object, which defines the parameters in the authorization request. - -That object uses information from your **client_secret.json** file to identify your application. The object also identifies the scopes that your application is requesting permission to access and the URL to your application's auth endpoint, which will handle the response from Google's OAuth 2.0 server. Finally, the code sets the optional access_type and include_granted_scopes parameters. - -For example, this code requests read-only, offline access to a user's Google Drive: - -```php -$client = new Google_Client(); -$client->setAuthConfig('client_secret.json'); -$client->addScope(Google_Service_Drive::DRIVE_METADATA_READONLY); -$client->setRedirectUri('http://' . $_SERVER['HTTP_HOST'] . '/oauth2callback.php'); -$client->setAccessType('offline'); // offline access -$client->setIncludeGrantedScopes(true); // incremental auth -``` - -The request specifies the following information: - -#### Parameters - -##### `client_id` - -**Required**. The client ID for your application. You can find this value in the [API Console](https://console.developers.google.com/). In PHP, call the `setAuthConfig` function to load authorization credentials from a **client_secret.json** file. - -```php -$client = new Google_Client(); -$client->setAuthConfig('client_secret.json'); -``` - -##### `redirect_uri` - -**Required**. Determines where the API server redirects the user after the user completes the authorization flow. The value must exactly match one of the authorized redirect URIs for the OAuth 2.0 client, which you configured in the [API Console](https://console.developers.google.com/). If this value doesn't match an authorized URI, you will get a 'redirect_uri_mismatch' error. Note that the `http` or `https` scheme, case, and trailing slash ('`/`') must all match. - -To set this value in PHP, call the `setRedirectUri` function. Note that you must specify a valid redirect URI for your API Console project. - -```php -$client->setRedirectUri('http://localhost:8080/oauth2callback.php'); -``` - -##### `scope` - -**Required**. A space-delimited list of scopes that identify the resources that your application could access on the user's behalf. These values inform the consent screen that Google displays to the user. - -Scopes enable your application to only request access to the resources that it needs while also enabling users to control the amount of access that they grant to your application. Thus, there is an inverse relationship between the number of scopes requested and the likelihood of obtaining user consent. To set this value in PHP, call the `addScope` function: - -```php -$client->addScope(Google_Service_Drive::DRIVE_METADATA_READONLY); -``` - -The [OAuth 2.0 API Scopes](https://developers.google.com/identity/protocols/googlescopes) document provides a full list of scopes that you might use to access Google APIs. - -We recommend that your application request access to authorization scopes in context whenever possible. By requesting access to user data in context, via [incremental authorization](#Incremental-authorization), you help users to more easily understand why your application needs the access it is requesting. - -##### `access_type` - -**Recommended**. Indicates whether your application can refresh access tokens when the user is not present at the browser. Valid parameter values are `online`, which is the default value, and `offline`. - -Set the value to `offline` if your application needs to refresh access tokens when the user is not present at the browser. This is the method of refreshing access tokens described later in this document. This value instructs the Google authorization server to return a refresh token _and_ an access token the first time that your application exchanges an authorization code for tokens. - -To set this value in PHP, call the `setAccessType` function: - -```php -$client->setAccessType('offline'); -``` - -##### `state` - -**Recommended**. Specifies any string value that your application uses to maintain state between your authorization request and the authorization server's response. The server returns the exact value that you send as a `name=value` pair in the hash (`#`) fragment of the `redirect_uri` after the user consents to or denies your application's access request. - -You can use this parameter for several purposes, such as directing the user to the correct resource in your application, sending nonces, and mitigating cross-site request forgery. Since your `redirect_uri` can be guessed, using a `state` value can increase your assurance that an incoming connection is the result of an authentication request. If you generate a random string or encode the hash of a cookie or another value that captures the client's state, you can validate the response to additionally ensure that the request and response originated in the same browser, providing protection against attacks such as cross-site request forgery. See the [OpenID Connect](https://developers.google.com/identity/protocols/OpenIDConnect#createxsrftoken) documentation for an example of how to create and confirm a `state` token. - -To set this value in PHP, call the `setState` function: - -```php -$client->setState($sample_passthrough_value); -``` - -##### `include_granted_scopes` - -**Optional**. Enables applications to use incremental authorization to request access to additional scopes in context. If you set this parameter's value to `true` and the authorization request is granted, then the new access token will also cover any scopes to which the user previously granted the application access. See the [incremental authorization](#Incremental-authorization) section for examples. - -To set this value in PHP, call the `setIncludeGrantedScopes` function: - -```php -$client->setIncludeGrantedScopes(true); -``` - -##### `login_hint` - -**Optional**. If your application knows which user is trying to authenticate, it can use this parameter to provide a hint to the Google Authentication Server. The server uses the hint to simplify the login flow either by prefilling the email field in the sign-in form or by selecting the appropriate multi-login session. - -Set the parameter value to an email address or `sub` identifier, which is equivalent to the user's Google ID. - -To set this value in PHP, call the `setLoginHint` function: - -```php -$client->setLoginHint('timmerman@google.com'); -``` - -##### `prompt` - -**Optional**. A space-delimited, case-sensitive list of prompts to present the user. If you don't specify this parameter, the user will be prompted only the first time your app requests access. - -To set this value in PHP, call the `setApprovalPrompt` function: - -```php -$client->setPrompt('consent'); -``` - -Possible values are: - -`none` - -Do not display any authentication or consent screens. Must not be specified with other values. - -`consent` - -Prompt the user for consent. - -`select_account` - -Prompt the user to select an account. - -### Step 2: Redirect to Google's OAuth 2.0 server - -Redirect the user to Google's OAuth 2.0 server to initiate the authentication and authorization process. Typically, this occurs when your application first needs to access the user's data. In the case of [incremental authorization](#incremental-authorization), this step also occurs when your application first needs to access additional resources that it does not yet have permission to access. - -1. Generate a URL to request access from Google's OAuth 2.0 server: - - ```php - $auth_url = $client->createAuthUrl(); - ``` - -2. Redirect the user to `$auth_url`: - - ```php - header('Location: ' . filter_var($auth_url, FILTER_SANITIZE_URL)); - ``` - -Google's OAuth 2.0 server authenticates the user and obtains consent from the user for your application to access the requested scopes. The response is sent back to your application using the redirect URL you specified. - -### Step 3: Google prompts user for consent - -In this step, the user decides whether to grant your application the requested access. At this stage, Google displays a consent window that shows the name of your application and the Google API services that it is requesting permission to access with the user's authorization credentials. The user can then consent or refuse to grant access to your application. - -Your application doesn't need to do anything at this stage as it waits for the response from Google's OAuth 2.0 server indicating whether the access was granted. That response is explained in the following step. - -### Step 4: Handle the OAuth 2.0 server response - -The OAuth 2.0 server responds to your application's access request by using the URL specified in the request. - -If the user approves the access request, then the response contains an authorization code. If the user does not approve the request, the response contains an error message. The authorization code or error message that is returned to the web server appears on the query string, as shown below: - -An error response: - - https://oauth2.example.com/auth?error=access_denied - -An authorization code response: - - https://oauth2.example.com/auth?code=4/P7q7W91a-oMsCeLvIaQm6bTrgtp7 - -> **Important**: If your response endpoint renders an HTML page, any resources on that page will be able to see the authorization code in the URL. Scripts can read the URL directly, and the URL in the `Referer` HTTP header may be sent to any or all resources on the page. -> -> Carefully consider whether you want to send authorization credentials to all resources on that page (especially third-party scripts such as social plugins and analytics). To avoid this issue, we recommend that the server first handle the request, then redirect to another URL that doesn't include the response parameters. - -#### Sample OAuth 2.0 server response - -You can test this flow by clicking on the following sample URL, which requests read-only access to view metadata for files in your Google Drive: - -``` -https://accounts.google.com/o/oauth2/v2/auth? - scope=https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fdrive.metadata.readonly& - access_type=offline& - include_granted_scopes=true& - state=state_parameter_passthrough_value& - redirect_uri=http%3A%2F%2Foauth2.example.com%2Fcallback& - response_type=code& - client_id=client_id -``` - -After completing the OAuth 2.0 flow, you should be redirected to `http://localhost/oauth2callback`, which will likely yield a `404 NOT FOUND` error unless your local machine serves a file at that address. The next step provides more detail about the information returned in the URI when the user is redirected back to your application. - -### Step 5: Exchange authorization code for refresh and access tokens - -After the web server receives the authorization code, it can exchange the authorization code for an access token. - -To exchange an authorization code for an access token, use the `authenticate` method: - -```php -$client->authenticate($_GET['code']); -``` - -You can retrieve the access token with the `getAccessToken` method: - -```php -$access_token = $client->getAccessToken(); -``` - -[](#top_of_page)Calling Google APIs ------------------------------------ - -Use the access token to call Google APIs by completing the following steps: - -1. If you need to apply an access token to a new `Google_Client` object—for example, if you stored the access token in a user session—use the `setAccessToken` method: - - ```php - $client->setAccessToken($access_token); - ``` - -2. Build a service object for the API that you want to call. You build a a service object by providing an authorized `Google_Client` object to the constructor for the API you want to call. For example, to call the Drive API: - - ```php - $drive = new Google_Service_Drive($client); - ``` - -3. Make requests to the API service using the [interface provided by the service object](start.md). For example, to list the files in the authenticated user's Google Drive: - - ```php - $files = $drive->files->listFiles(array())->getItems(); - ``` - -[](#top_of_page)Complete example --------------------------------- - -The following example prints a JSON-formatted list of files in a user's Google Drive after the user authenticates and gives consent for the application to access the user's Drive files. - -To run this example: - -1. In the API Console, add the URL of the local machine to the list of redirect URLs. For example, add `http://localhost:8080`. -2. Create a new directory and change to it. For example: - - ```sh - mkdir ~/php-oauth2-example - cd ~/php-oauth2-example - ``` - -3. Install the [Google API Client Library](https://github.com/google/google-api-php-client) for PHP using [Composer](https://getcomposer.org): - - ```sh - composer require google/apiclient:^2.0 - ``` - -4. Create the files `index.php` and `oauth2callback.php` with the content below. -5. Run the example with a web server configured to serve PHP. If you use PHP 5.4 or newer, you can use PHP's built-in test web server: - - ```sh - php -S localhost:8080 ~/php-oauth2-example - ``` - -#### index.php - -```php -setAuthConfig('client_secrets.json'); -$client->addScope(Google_Service_Drive::DRIVE_METADATA_READONLY); - -if (isset($_SESSION['access_token']) && $_SESSION['access_token']) { - $client->setAccessToken($_SESSION['access_token']); - $drive = new Google_Service_Drive($client); - $files = $drive->files->listFiles(array())->getItems(); - echo json_encode($files); -} else { - $redirect_uri = 'http://' . $_SERVER['HTTP_HOST'] . '/oauth2callback.php'; - header('Location: ' . filter_var($redirect_uri, FILTER_SANITIZE_URL)); -} -``` - -#### oauth2callback.php - -```php -setAuthConfigFile('client_secrets.json'); -$client->setRedirectUri('http://' . $_SERVER['HTTP_HOST'] . '/oauth2callback.php'); -$client->addScope(Google_Service_Drive::DRIVE_METADATA_READONLY); - -if (! isset($_GET['code'])) { - $auth_url = $client->createAuthUrl(); - header('Location: ' . filter_var($auth_url, FILTER_SANITIZE_URL)); -} else { - $client->authenticate($_GET['code']); - $_SESSION['access_token'] = $client->getAccessToken(); - $redirect_uri = 'http://' . $_SERVER['HTTP_HOST'] . '/'; - header('Location: ' . filter_var($redirect_uri, FILTER_SANITIZE_URL)); -} -``` - -## Incremental authorization - -In the OAuth 2.0 protocol, your app requests authorization to access resources, which are identified by scopes. It is considered a best user-experience practice to request authorization for resources at the time you need them. To enable that practice, Google's authorization server supports incremental authorization. This feature lets you request scopes as they are needed and, if the user grants permission, add those scopes to your existing access token for that user. - -For example, an app that lets people sample music tracks and create mixes might need very few resources at sign-in time, perhaps nothing more than the name of the person signing in. However, saving a completed mix would require access to their Google Drive. Most people would find it natural if they only were asked for access to their Google Drive at the time the app actually needed it. - -In this case, at sign-in time the app might request the `profile` scope to perform basic sign-in, and then later request the `https://www.googleapis.com/auth/drive.file` scope at the time of the first request to save a mix. - -To implement incremental authorization, you complete the normal flow for requesting an access token but make sure that the authorization request includes previously granted scopes. This approach allows your app to avoid having to manage multiple access tokens. - -The following rules apply to an access token obtained from an incremental authorization: - -* The token can be used to access resources corresponding to any of the scopes rolled into the new, combined authorization. -* When you use the refresh token for the combined authorization to obtain an access token, the access token represents the combined authorization and can be used for any of its scopes. -* The combined authorization includes all scopes that the user granted to the API project even if the grants were requested from different clients. For example, if a user granted access to one scope using an application's desktop client and then granted another scope to the same application via a mobile client, the combined authorization would include both scopes. -* If you revoke a token that represents a combined authorization, access to all of that authorization's scopes on behalf of the associated user are revoked simultaneously. - -The example for [setting authorization parameters](#Step-1-Set-authorization-parameters) demonstrates how to ensure authorization requests follow this best practice. The code snippet below also shows the code that you need to add to use incremental authorization. - -```php -$client->setIncludeGrantedScopes(true); -``` - -## Refreshing an access token (offline access) - -Access tokens periodically expire. You can refresh an access token without prompting the user for permission (including when the user is not present) if you requested offline access to the scopes associated with the token. - -If you use a Google API Client Library, the [client object](#Step-1-Set-authorization-parameters) refreshes the access token as needed as long as you configure that object for offline access. - -Requesting offline access is a requirement for any application that needs to access a Google API when the user is not present. For example, an app that performs backup services or executes actions at predetermined times needs to be able to refresh its access token when the user is not present. The default style of access is called `online`. - -Server-side web applications, installed applications, and devices all obtain refresh tokens during the authorization process. Refresh tokens are not typically used in client-side (JavaScript) web applications. - -If your application needs offline access to a Google API, set the API client's access type to `offline`: - -```php -$client->setAccessType("offline"); -``` - -After a user grants offline access to the requested scopes, you can continue to use the API client to access Google APIs on the user's behalf when the user is offline. The client object will refresh the access token as needed. - -## Revoking a token - -In some cases a user may wish to revoke access given to an application. A user can revoke access by visiting [Account Settings](https://security.google.com/settings/security/permissions). It is also possible for an application to programmatically revoke the access given to it. Programmatic revocation is important in instances where a user unsubscribes or removes an application. In other words, part of the removal process can include an API request to ensure the permissions granted to the application are removed. - -To programmatically revoke a token, call `revokeToken()`: - -```php -$client->revokeToken(); -``` - -**Note:** Following a successful revocation response, it might take some time before the revocation has full effect. - -Except as otherwise noted, the content of this page is licensed under the [Creative Commons Attribution 4.0 License](https://creativecommons.org/licenses/by/4.0/), and code samples are licensed under the [Apache 2.0 License](https://www.apache.org/licenses/LICENSE-2.0). For details, see our [Site Policies](https://developers.google.com/terms/site-policies). Java is a registered trademark of Oracle and/or its affiliates. \ No newline at end of file diff --git a/services/libs/google-api-php-client-2.4.1/docs/pagination.md b/services/libs/google-api-php-client-2.4.1/docs/pagination.md deleted file mode 100644 index 22bf7872..00000000 --- a/services/libs/google-api-php-client-2.4.1/docs/pagination.md +++ /dev/null @@ -1,10 +0,0 @@ -# Pagination - -Most list API calls have a maximum limit of results they will return in a single response. To allow retrieving more than this number of results, responses may return a pagination token which can be passed with a request in order to access subsequent pages. - -The token for the page will normally be found on list response objects, normally `nextPageToken`. This can be passed in the optional params. - -```php -$token = $results->getNextPageToken(); -$server->listActivities('me', 'public', array('pageToken' => $token)); -``` \ No newline at end of file diff --git a/services/libs/google-api-php-client-2.4.1/docs/parameters.md b/services/libs/google-api-php-client-2.4.1/docs/parameters.md deleted file mode 100644 index 029ebe4e..00000000 --- a/services/libs/google-api-php-client-2.4.1/docs/parameters.md +++ /dev/null @@ -1,14 +0,0 @@ -# Standard Parameters - -Many API methods include support for certain optional parameters. In addition to these there are several standard parameters that can be applied to any API call. These are defined in the `Google_Service_Resource` class. - -## Parameters - -- **alt**: Specify an alternative response type, for example csv. -- **fields**: A comma separated list of fields that should be included in the response. Nested parameters can be specified with parens, e.g. key,parent(child/subsection). -- **userIp**: The IP of the end-user making the request. This is used in per-user request quotas, as defined in the Google Developers Console -- **quotaUser**: A user ID for the end user, an alternative to userIp for applying per-user request quotas -- **data**: Used as part of [media](media.md) -- **mimeType**: Used as part of [media](media.md) -- **uploadType**: Used as part of [media](media.md) -- **mediaUpload**: Used as part of [media](media.md) \ No newline at end of file diff --git a/services/libs/google-api-php-client-2.4.1/docs/start.md b/services/libs/google-api-php-client-2.4.1/docs/start.md deleted file mode 100644 index a315d665..00000000 --- a/services/libs/google-api-php-client-2.4.1/docs/start.md +++ /dev/null @@ -1,91 +0,0 @@ -# Getting Started - -This document provides all the basic information you need to start using the library. It covers important library concepts, shows examples for various use cases, and gives links to more information. - -## Setup - -There are a few setup steps you need to complete before you can use this library: - -1. If you don't already have a Google account, [sign up](https://www.google.com/accounts). -2. If you have never created a Google API project, read the [Managing Projects page](https://developers.google.com/console/help/#managingprojects) and create a project in the [Google Developers Console](https://console.developers.google.com/) -3. [Install](install.md) the library. - -## Authentication and authorization - -It is important to understand the basics of how API authentication and authorization are handled. All API calls must use either simple or authorized access (defined below). Many API methods require authorized access, but some can use either. Some API methods that can use either behave differently, depending on whether you use simple or authorized access. See the API's method documentation to determine the appropriate access type. - -### 1. Simple API access (API keys) - -These API calls do not access any private user data. Your application must authenticate itself as an application belonging to your Google Cloud project. This is needed to measure project usage for accounting purposes. - -#### Important concepts - -* **API key**: To authenticate your application, use an [API key](https://cloud.google.com/docs/authentication/api-keys) for your Google Cloud Console project. Every simple access call your application makes must include this key. - -> **Warning**: Keep your API key private. If someone obtains your key, they could use it to consume your quota or incur charges against your Google Cloud project. - - -### 2. Authorized API access (OAuth 2.0) - -These API calls access private user data. Before you can call them, the user that has access to the private data must grant your application access. Therefore, your application must be authenticated, the user must grant access for your application, and the user must be authenticated in order to grant that access. All of this is accomplished with [OAuth 2.0](https://developers.google.com/identity/protocols/OAuth2) and libraries written for it. - -#### Important concepts - -* **Scope**: Each API defines one or more scopes that declare a set of operations permitted. For example, an API might have read-only and read-write scopes. When your application requests access to user data, the request must include one or more scopes. The user needs to approve the scope of access your application is requesting. -* **Refresh and access tokens**: When a user grants your application access, the OAuth 2.0 authorization server provides your application with refresh and access tokens. These tokens are only valid for the scope requested. Your application uses access tokens to authorize API calls. Access tokens expire, but refresh tokens do not. Your application can use a refresh token to acquire a new access token. - - > **Warning**: Keep refresh and access tokens private. If someone obtains your tokens, they could use them to access private user data. - -* **Client ID and client secret**: These strings uniquely identify your application and are used to acquire tokens. They are created for your Google Cloud project on the [API Access pane](https://code.google.com/apis/console#:access) of the Google Cloud. There are three types of client IDs, so be sure to get the correct type for your application: - - * Web application client IDs - * Installed application client IDs - * [Service Account](https://developers.google.com/identity/protocols/OAuth2ServiceAccount) client IDs - - > **Warning**: Keep your client secret private. If someone obtains your client secret, they could use it to consume your quota, incur charges against your Google Cloud project, and request access to user data. - - -## Building and calling a service - -This section described how to build an API-specific service object, make calls to the service, and process the response. - -### Build the client object - -The client object is the primary container for classes and configuration in the library. - -```php -$client = new Google_Client(); -$client->setApplicationName("My Application"); -$client->setDeveloperKey("MY_SIMPLE_API_KEY"); -``` - -### Build the service object - -Services are called through queries to service specific objects. These are created by constructing the service object, and passing an instance of `Google_Client` to it. `Google_Client` contains the IO, authentication and other classes required by the service to function, and the service informs the client which scopes it uses to provide a default when authenticating a user. - -```php -$service = new Google_Service_Books($client); -``` - -### Calling an API - -Each API provides resources and methods, usually in a chain. These can be accessed from the service object in the form `$service->resource->method(args)`. Most method require some arguments, then accept a final parameter of an array containing optional parameters. For example, with the Google Books API, we can make a call to list volumes matching a certain string, and add an optional _filter_ parameter. - -```php -$optParams = array('filter' => 'free-ebooks'); -$results = $service->volumes->listVolumes('Henry David Thoreau', $optParams); -``` - -### Handling the result - -There are two main types of response - items and collections of items. Each can be accessed either as an object or as an array. Collections implement the `Iterator` interface so can be used in foreach and other constructs. - -```php -foreach ($results as $item) { - echo $item['volumeInfo']['title'], "
\n"; -} -``` - -## Google App Engine support - -This library works well with Google App Engine applications. The Memcache class is automatically used for caching, and the file IO is implemented with the use of the Streams API. \ No newline at end of file diff --git a/services/libs/google-api-php-client-2.4.1/src/Google/AccessToken/Revoke.php b/services/libs/google-api-php-client-2.4.1/src/Google/AccessToken/Revoke.php deleted file mode 100644 index 29eb3fb3..00000000 --- a/services/libs/google-api-php-client-2.4.1/src/Google/AccessToken/Revoke.php +++ /dev/null @@ -1,78 +0,0 @@ -http = $http; - } - - /** - * Revoke an OAuth2 access token or refresh token. This method will revoke the current access - * token, if a token isn't provided. - * - * @param string|array $token The token (access token or a refresh token) that should be revoked. - * @return boolean Returns True if the revocation was successful, otherwise False. - */ - public function revokeToken($token) - { - if (is_array($token)) { - if (isset($token['refresh_token'])) { - $token = $token['refresh_token']; - } else { - $token = $token['access_token']; - } - } - - $body = Psr7\stream_for(http_build_query(array('token' => $token))); - $request = new Request( - 'POST', - Google_Client::OAUTH2_REVOKE_URI, - [ - 'Cache-Control' => 'no-store', - 'Content-Type' => 'application/x-www-form-urlencoded', - ], - $body - ); - - $httpHandler = HttpHandlerFactory::build($this->http); - - $response = $httpHandler($request); - - return $response->getStatusCode() == 200; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/src/Google/AccessToken/Verify.php b/services/libs/google-api-php-client-2.4.1/src/Google/AccessToken/Verify.php deleted file mode 100644 index bc0afcb3..00000000 --- a/services/libs/google-api-php-client-2.4.1/src/Google/AccessToken/Verify.php +++ /dev/null @@ -1,273 +0,0 @@ -http = $http; - $this->cache = $cache; - $this->jwt = $jwt ?: $this->getJwtService(); - } - - /** - * Verifies an id token and returns the authenticated apiLoginTicket. - * Throws an exception if the id token is not valid. - * The audience parameter can be used to control which id tokens are - * accepted. By default, the id token must have been issued to this OAuth2 client. - * - * @param $audience - * @return array the token payload, if successful - */ - public function verifyIdToken($idToken, $audience = null) - { - if (empty($idToken)) { - throw new LogicException('id_token cannot be null'); - } - - // set phpseclib constants if applicable - $this->setPhpsecConstants(); - - // Check signature - $certs = $this->getFederatedSignOnCerts(); - foreach ($certs as $cert) { - $bigIntClass = $this->getBigIntClass(); - $rsaClass = $this->getRsaClass(); - $modulus = new $bigIntClass($this->jwt->urlsafeB64Decode($cert['n']), 256); - $exponent = new $bigIntClass($this->jwt->urlsafeB64Decode($cert['e']), 256); - - $rsa = new $rsaClass(); - $rsa->loadKey(array('n' => $modulus, 'e' => $exponent)); - - try { - $payload = $this->jwt->decode( - $idToken, - $rsa->getPublicKey(), - array('RS256') - ); - - if (property_exists($payload, 'aud')) { - if ($audience && $payload->aud != $audience) { - return false; - } - } - - // support HTTP and HTTPS issuers - // @see https://developers.google.com/identity/sign-in/web/backend-auth - $issuers = array(self::OAUTH2_ISSUER, self::OAUTH2_ISSUER_HTTPS); - if (!isset($payload->iss) || !in_array($payload->iss, $issuers)) { - return false; - } - - return (array) $payload; - } catch (ExpiredException $e) { - return false; - } catch (ExpiredExceptionV3 $e) { - return false; - } catch (SignatureInvalidException $e) { - // continue - } catch (DomainException $e) { - // continue - } - } - - return false; - } - - private function getCache() - { - return $this->cache; - } - - /** - * Retrieve and cache a certificates file. - * - * @param $url string location - * @throws Google_Exception - * @return array certificates - */ - private function retrieveCertsFromLocation($url) - { - // If we're retrieving a local file, just grab it. - if (0 !== strpos($url, 'http')) { - if (!$file = file_get_contents($url)) { - throw new Google_Exception( - "Failed to retrieve verification certificates: '" . - $url . "'." - ); - } - - return json_decode($file, true); - } - - $response = $this->http->get($url); - - if ($response->getStatusCode() == 200) { - return json_decode((string) $response->getBody(), true); - } - throw new Google_Exception( - sprintf( - 'Failed to retrieve verification certificates: "%s".', - $response->getBody()->getContents() - ), - $response->getStatusCode() - ); - } - - // Gets federated sign-on certificates to use for verifying identity tokens. - // Returns certs as array structure, where keys are key ids, and values - // are PEM encoded certificates. - private function getFederatedSignOnCerts() - { - $certs = null; - if ($cache = $this->getCache()) { - $cacheItem = $cache->getItem('federated_signon_certs_v3'); - $certs = $cacheItem->get(); - } - - - if (!$certs) { - $certs = $this->retrieveCertsFromLocation( - self::FEDERATED_SIGNON_CERT_URL - ); - - if ($cache) { - $cacheItem->expiresAt(new DateTime('+1 hour')); - $cacheItem->set($certs); - $cache->save($cacheItem); - } - } - - if (!isset($certs['keys'])) { - throw new InvalidArgumentException( - 'federated sign-on certs expects "keys" to be set' - ); - } - - return $certs['keys']; - } - - private function getJwtService() - { - $jwtClass = 'JWT'; - if (class_exists('\Firebase\JWT\JWT')) { - $jwtClass = 'Firebase\JWT\JWT'; - } - - if (property_exists($jwtClass, 'leeway') && $jwtClass::$leeway < 1) { - // Ensures JWT leeway is at least 1 - // @see https://github.com/google/google-api-php-client/issues/827 - $jwtClass::$leeway = 1; - } - - return new $jwtClass; - } - - private function getRsaClass() - { - if (class_exists('phpseclib\Crypt\RSA')) { - return 'phpseclib\Crypt\RSA'; - } - - return 'Crypt_RSA'; - } - - private function getBigIntClass() - { - if (class_exists('phpseclib\Math\BigInteger')) { - return 'phpseclib\Math\BigInteger'; - } - - return 'Math_BigInteger'; - } - - private function getOpenSslConstant() - { - if (class_exists('phpseclib\Crypt\RSA')) { - return 'phpseclib\Crypt\RSA::MODE_OPENSSL'; - } - - if (class_exists('Crypt_RSA')) { - return 'CRYPT_RSA_MODE_OPENSSL'; - } - - throw new \Exception('Cannot find RSA class'); - } - - /** - * phpseclib calls "phpinfo" by default, which requires special - * whitelisting in the AppEngine VM environment. This function - * sets constants to bypass the need for phpseclib to check phpinfo - * - * @see phpseclib/Math/BigInteger - * @see https://github.com/GoogleCloudPlatform/getting-started-php/issues/85 - */ - private function setPhpsecConstants() - { - if (filter_var(getenv('GAE_VM'), FILTER_VALIDATE_BOOLEAN)) { - if (!defined('MATH_BIGINTEGER_OPENSSL_ENABLED')) { - define('MATH_BIGINTEGER_OPENSSL_ENABLED', true); - } - if (!defined('CRYPT_RSA_MODE')) { - define('CRYPT_RSA_MODE', constant($this->getOpenSslConstant())); - } - } - } -} diff --git a/services/libs/google-api-php-client-2.4.1/src/Google/AuthHandler/AuthHandlerFactory.php b/services/libs/google-api-php-client-2.4.1/src/Google/AuthHandler/AuthHandlerFactory.php deleted file mode 100644 index f1a3229a..00000000 --- a/services/libs/google-api-php-client-2.4.1/src/Google/AuthHandler/AuthHandlerFactory.php +++ /dev/null @@ -1,42 +0,0 @@ -cache = $cache; - $this->cacheConfig = $cacheConfig; - } - - public function attachCredentials( - ClientInterface $http, - CredentialsLoader $credentials, - callable $tokenCallback = null - ) { - // use the provided cache - if ($this->cache) { - $credentials = new FetchAuthTokenCache( - $credentials, - $this->cacheConfig, - $this->cache - ); - } - // if we end up needing to make an HTTP request to retrieve credentials, we - // can use our existing one, but we need to throw exceptions so the error - // bubbles up. - $authHttp = $this->createAuthHttp($http); - $authHttpHandler = HttpHandlerFactory::build($authHttp); - $subscriber = new AuthTokenSubscriber( - $credentials, - $authHttpHandler, - $tokenCallback - ); - - $http->setDefaultOption('auth', 'google_auth'); - $http->getEmitter()->attach($subscriber); - - return $http; - } - - public function attachToken(ClientInterface $http, array $token, array $scopes) - { - $tokenFunc = function ($scopes) use ($token) { - return $token['access_token']; - }; - - $subscriber = new ScopedAccessTokenSubscriber( - $tokenFunc, - $scopes, - $this->cacheConfig, - $this->cache - ); - - $http->setDefaultOption('auth', 'scoped'); - $http->getEmitter()->attach($subscriber); - - return $http; - } - - public function attachKey(ClientInterface $http, $key) - { - $subscriber = new SimpleSubscriber(['key' => $key]); - - $http->setDefaultOption('auth', 'simple'); - $http->getEmitter()->attach($subscriber); - - return $http; - } - - private function createAuthHttp(ClientInterface $http) - { - return new Client( - [ - 'base_url' => $http->getBaseUrl(), - 'defaults' => [ - 'exceptions' => true, - 'verify' => $http->getDefaultOption('verify'), - 'proxy' => $http->getDefaultOption('proxy'), - ] - ] - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/src/Google/AuthHandler/Guzzle6AuthHandler.php b/services/libs/google-api-php-client-2.4.1/src/Google/AuthHandler/Guzzle6AuthHandler.php deleted file mode 100644 index fcdfb3b0..00000000 --- a/services/libs/google-api-php-client-2.4.1/src/Google/AuthHandler/Guzzle6AuthHandler.php +++ /dev/null @@ -1,106 +0,0 @@ -cache = $cache; - $this->cacheConfig = $cacheConfig; - } - - public function attachCredentials( - ClientInterface $http, - CredentialsLoader $credentials, - callable $tokenCallback = null - ) { - // use the provided cache - if ($this->cache) { - $credentials = new FetchAuthTokenCache( - $credentials, - $this->cacheConfig, - $this->cache - ); - } - // if we end up needing to make an HTTP request to retrieve credentials, we - // can use our existing one, but we need to throw exceptions so the error - // bubbles up. - $authHttp = $this->createAuthHttp($http); - $authHttpHandler = HttpHandlerFactory::build($authHttp); - $middleware = new AuthTokenMiddleware( - $credentials, - $authHttpHandler, - $tokenCallback - ); - - $config = $http->getConfig(); - $config['handler']->remove('google_auth'); - $config['handler']->push($middleware, 'google_auth'); - $config['auth'] = 'google_auth'; - $http = new Client($config); - - return $http; - } - - public function attachToken(ClientInterface $http, array $token, array $scopes) - { - $tokenFunc = function ($scopes) use ($token) { - return $token['access_token']; - }; - - $middleware = new ScopedAccessTokenMiddleware( - $tokenFunc, - $scopes, - $this->cacheConfig, - $this->cache - ); - - $config = $http->getConfig(); - $config['handler']->remove('google_auth'); - $config['handler']->push($middleware, 'google_auth'); - $config['auth'] = 'scoped'; - $http = new Client($config); - - return $http; - } - - public function attachKey(ClientInterface $http, $key) - { - $middleware = new SimpleMiddleware(['key' => $key]); - - $config = $http->getConfig(); - $config['handler']->remove('google_auth'); - $config['handler']->push($middleware, 'google_auth'); - $config['auth'] = 'simple'; - $http = new Client($config); - - return $http; - } - - private function createAuthHttp(ClientInterface $http) - { - return new Client( - [ - 'base_uri' => $http->getConfig('base_uri'), - 'exceptions' => true, - 'verify' => $http->getConfig('verify'), - 'proxy' => $http->getConfig('proxy'), - ] - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/src/Google/Client.php b/services/libs/google-api-php-client-2.4.1/src/Google/Client.php deleted file mode 100644 index 6f1fcfd3..00000000 --- a/services/libs/google-api-php-client-2.4.1/src/Google/Client.php +++ /dev/null @@ -1,1185 +0,0 @@ -config = array_merge( - [ - 'application_name' => '', - - // Don't change these unless you're working against a special development - // or testing environment. - 'base_path' => self::API_BASE_PATH, - - // https://developers.google.com/console - 'client_id' => '', - 'client_secret' => '', - 'redirect_uri' => null, - 'state' => null, - - // Simple API access key, also from the API console. Ensure you get - // a Server key, and not a Browser key. - 'developer_key' => '', - - // For use with Google Cloud Platform - // fetch the ApplicationDefaultCredentials, if applicable - // @see https://developers.google.com/identity/protocols/application-default-credentials - 'use_application_default_credentials' => false, - 'signing_key' => null, - 'signing_algorithm' => null, - 'subject' => null, - - // Other OAuth2 parameters. - 'hd' => '', - 'prompt' => '', - 'openid.realm' => '', - 'include_granted_scopes' => null, - 'login_hint' => '', - 'request_visible_actions' => '', - 'access_type' => 'online', - 'approval_prompt' => 'auto', - - // Task Runner retry configuration - // @see Google_Task_Runner - 'retry' => array(), - 'retry_map' => null, - - // cache config for downstream auth caching - 'cache_config' => [], - - // function to be called when an access token is fetched - // follows the signature function ($cacheKey, $accessToken) - 'token_callback' => null, - - // Service class used in Google_Client::verifyIdToken. - // Explicitly pass this in to avoid setting JWT::$leeway - 'jwt' => null, - - // Setting api_format_v2 will return more detailed error messages - // from certain APIs. - 'api_format_v2' => false - ], - $config - ); - } - - /** - * Get a string containing the version of the library. - * - * @return string - */ - public function getLibraryVersion() - { - return self::LIBVER; - } - - /** - * For backwards compatibility - * alias for fetchAccessTokenWithAuthCode - * - * @param $code string code from accounts.google.com - * @return array access token - * @deprecated - */ - public function authenticate($code) - { - return $this->fetchAccessTokenWithAuthCode($code); - } - - /** - * Attempt to exchange a code for an valid authentication token. - * Helper wrapped around the OAuth 2.0 implementation. - * - * @param $code string code from accounts.google.com - * @return array access token - */ - public function fetchAccessTokenWithAuthCode($code) - { - if (strlen($code) == 0) { - throw new InvalidArgumentException("Invalid code"); - } - - $auth = $this->getOAuth2Service(); - $auth->setCode($code); - $auth->setRedirectUri($this->getRedirectUri()); - - $httpHandler = HttpHandlerFactory::build($this->getHttpClient()); - $creds = $auth->fetchAuthToken($httpHandler); - if ($creds && isset($creds['access_token'])) { - $creds['created'] = time(); - $this->setAccessToken($creds); - } - - return $creds; - } - - /** - * For backwards compatibility - * alias for fetchAccessTokenWithAssertion - * - * @return array access token - * @deprecated - */ - public function refreshTokenWithAssertion() - { - return $this->fetchAccessTokenWithAssertion(); - } - - /** - * Fetches a fresh access token with a given assertion token. - * @param ClientInterface $authHttp optional. - * @return array access token - */ - public function fetchAccessTokenWithAssertion(ClientInterface $authHttp = null) - { - if (!$this->isUsingApplicationDefaultCredentials()) { - throw new DomainException( - 'set the JSON service account credentials using' - . ' Google_Client::setAuthConfig or set the path to your JSON file' - . ' with the "GOOGLE_APPLICATION_CREDENTIALS" environment variable' - . ' and call Google_Client::useApplicationDefaultCredentials to' - . ' refresh a token with assertion.' - ); - } - - $this->getLogger()->log( - 'info', - 'OAuth2 access token refresh with Signed JWT assertion grants.' - ); - - $credentials = $this->createApplicationDefaultCredentials(); - - $httpHandler = HttpHandlerFactory::build($authHttp); - $creds = $credentials->fetchAuthToken($httpHandler); - if ($creds && isset($creds['access_token'])) { - $creds['created'] = time(); - $this->setAccessToken($creds); - } - - return $creds; - } - - /** - * For backwards compatibility - * alias for fetchAccessTokenWithRefreshToken - * - * @param string $refreshToken - * @return array access token - */ - public function refreshToken($refreshToken) - { - return $this->fetchAccessTokenWithRefreshToken($refreshToken); - } - - /** - * Fetches a fresh OAuth 2.0 access token with the given refresh token. - * @param string $refreshToken - * @return array access token - */ - public function fetchAccessTokenWithRefreshToken($refreshToken = null) - { - if (null === $refreshToken) { - if (!isset($this->token['refresh_token'])) { - throw new LogicException( - 'refresh token must be passed in or set as part of setAccessToken' - ); - } - $refreshToken = $this->token['refresh_token']; - } - $this->getLogger()->info('OAuth2 access token refresh'); - $auth = $this->getOAuth2Service(); - $auth->setRefreshToken($refreshToken); - - $httpHandler = HttpHandlerFactory::build($this->getHttpClient()); - $creds = $auth->fetchAuthToken($httpHandler); - if ($creds && isset($creds['access_token'])) { - $creds['created'] = time(); - if (!isset($creds['refresh_token'])) { - $creds['refresh_token'] = $refreshToken; - } - $this->setAccessToken($creds); - } - - return $creds; - } - - /** - * Create a URL to obtain user authorization. - * The authorization endpoint allows the user to first - * authenticate, and then grant/deny the access request. - * @param string|array $scope The scope is expressed as an array or list of space-delimited strings. - * @return string - */ - public function createAuthUrl($scope = null) - { - if (empty($scope)) { - $scope = $this->prepareScopes(); - } - if (is_array($scope)) { - $scope = implode(' ', $scope); - } - - // only accept one of prompt or approval_prompt - $approvalPrompt = $this->config['prompt'] - ? null - : $this->config['approval_prompt']; - - // include_granted_scopes should be string "true", string "false", or null - $includeGrantedScopes = $this->config['include_granted_scopes'] === null - ? null - : var_export($this->config['include_granted_scopes'], true); - - $params = array_filter( - [ - 'access_type' => $this->config['access_type'], - 'approval_prompt' => $approvalPrompt, - 'hd' => $this->config['hd'], - 'include_granted_scopes' => $includeGrantedScopes, - 'login_hint' => $this->config['login_hint'], - 'openid.realm' => $this->config['openid.realm'], - 'prompt' => $this->config['prompt'], - 'response_type' => 'code', - 'scope' => $scope, - 'state' => $this->config['state'], - ] - ); - - // If the list of scopes contains plus.login, add request_visible_actions - // to auth URL. - $rva = $this->config['request_visible_actions']; - if (strlen($rva) > 0 && false !== strpos($scope, 'plus.login')) { - $params['request_visible_actions'] = $rva; - } - - $auth = $this->getOAuth2Service(); - - return (string) $auth->buildFullAuthorizationUri($params); - } - - /** - * Adds auth listeners to the HTTP client based on the credentials - * set in the Google API Client object - * - * @param GuzzleHttp\ClientInterface $http the http client object. - * @return GuzzleHttp\ClientInterface the http client object - */ - public function authorize(ClientInterface $http = null) - { - $credentials = null; - $token = null; - $scopes = null; - if (null === $http) { - $http = $this->getHttpClient(); - } - - // These conditionals represent the decision tree for authentication - // 1. Check for Application Default Credentials - // 2. Check for API Key - // 3a. Check for an Access Token - // 3b. If access token exists but is expired, try to refresh it - if ($this->isUsingApplicationDefaultCredentials()) { - $credentials = $this->createApplicationDefaultCredentials(); - } elseif ($token = $this->getAccessToken()) { - $scopes = $this->prepareScopes(); - // add refresh subscriber to request a new token - if (isset($token['refresh_token']) && $this->isAccessTokenExpired()) { - $credentials = $this->createUserRefreshCredentials( - $scopes, - $token['refresh_token'] - ); - } - } - - $authHandler = $this->getAuthHandler(); - - if ($credentials) { - $callback = $this->config['token_callback']; - $http = $authHandler->attachCredentials($http, $credentials, $callback); - } elseif ($token) { - $http = $authHandler->attachToken($http, $token, (array) $scopes); - } elseif ($key = $this->config['developer_key']) { - $http = $authHandler->attachKey($http, $key); - } - - return $http; - } - - /** - * Set the configuration to use application default credentials for - * authentication - * - * @see https://developers.google.com/identity/protocols/application-default-credentials - * @param boolean $useAppCreds - */ - public function useApplicationDefaultCredentials($useAppCreds = true) - { - $this->config['use_application_default_credentials'] = $useAppCreds; - } - - /** - * To prevent useApplicationDefaultCredentials from inappropriately being - * called in a conditional - * - * @see https://developers.google.com/identity/protocols/application-default-credentials - */ - public function isUsingApplicationDefaultCredentials() - { - return $this->config['use_application_default_credentials']; - } - - /** - * Set the access token used for requests. - * - * Note that at the time requests are sent, tokens are cached. A token will be - * cached for each combination of service and authentication scopes. If a - * cache pool is not provided, creating a new instance of the client will - * allow modification of access tokens. If a persistent cache pool is - * provided, in order to change the access token, you must clear the cached - * token by calling `$client->getCache()->clear()`. (Use caution in this case, - * as calling `clear()` will remove all cache items, including any items not - * related to Google API PHP Client.) - * - * @param string|array $token - * @throws InvalidArgumentException - */ - public function setAccessToken($token) - { - if (is_string($token)) { - if ($json = json_decode($token, true)) { - $token = $json; - } else { - // assume $token is just the token string - $token = array( - 'access_token' => $token, - ); - } - } - if ($token == null) { - throw new InvalidArgumentException('invalid json token'); - } - if (!isset($token['access_token'])) { - throw new InvalidArgumentException("Invalid token format"); - } - $this->token = $token; - } - - public function getAccessToken() - { - return $this->token; - } - - /** - * @return string|null - */ - public function getRefreshToken() - { - if (isset($this->token['refresh_token'])) { - return $this->token['refresh_token']; - } - - return null; - } - - /** - * Returns if the access_token is expired. - * @return bool Returns True if the access_token is expired. - */ - public function isAccessTokenExpired() - { - if (!$this->token) { - return true; - } - - $created = 0; - if (isset($this->token['created'])) { - $created = $this->token['created']; - } elseif (isset($this->token['id_token'])) { - // check the ID token for "iat" - // signature verification is not required here, as we are just - // using this for convenience to save a round trip request - // to the Google API server - $idToken = $this->token['id_token']; - if (substr_count($idToken, '.') == 2) { - $parts = explode('.', $idToken); - $payload = json_decode(base64_decode($parts[1]), true); - if ($payload && isset($payload['iat'])) { - $created = $payload['iat']; - } - } - } - - // If the token is set to expire in the next 30 seconds. - return ($created + ($this->token['expires_in'] - 30)) < time(); - } - - /** - * @deprecated See UPGRADING.md for more information - */ - public function getAuth() - { - throw new BadMethodCallException( - 'This function no longer exists. See UPGRADING.md for more information' - ); - } - - /** - * @deprecated See UPGRADING.md for more information - */ - public function setAuth($auth) - { - throw new BadMethodCallException( - 'This function no longer exists. See UPGRADING.md for more information' - ); - } - - /** - * Set the OAuth 2.0 Client ID. - * @param string $clientId - */ - public function setClientId($clientId) - { - $this->config['client_id'] = $clientId; - } - - public function getClientId() - { - return $this->config['client_id']; - } - - /** - * Set the OAuth 2.0 Client Secret. - * @param string $clientSecret - */ - public function setClientSecret($clientSecret) - { - $this->config['client_secret'] = $clientSecret; - } - - public function getClientSecret() - { - return $this->config['client_secret']; - } - - /** - * Set the OAuth 2.0 Redirect URI. - * @param string $redirectUri - */ - public function setRedirectUri($redirectUri) - { - $this->config['redirect_uri'] = $redirectUri; - } - - public function getRedirectUri() - { - return $this->config['redirect_uri']; - } - - /** - * Set OAuth 2.0 "state" parameter to achieve per-request customization. - * @see http://tools.ietf.org/html/draft-ietf-oauth-v2-22#section-3.1.2.2 - * @param string $state - */ - public function setState($state) - { - $this->config['state'] = $state; - } - - /** - * @param string $accessType Possible values for access_type include: - * {@code "offline"} to request offline access from the user. - * {@code "online"} to request online access from the user. - */ - public function setAccessType($accessType) - { - $this->config['access_type'] = $accessType; - } - - /** - * @param string $approvalPrompt Possible values for approval_prompt include: - * {@code "force"} to force the approval UI to appear. - * {@code "auto"} to request auto-approval when possible. (This is the default value) - */ - public function setApprovalPrompt($approvalPrompt) - { - $this->config['approval_prompt'] = $approvalPrompt; - } - - /** - * Set the login hint, email address or sub id. - * @param string $loginHint - */ - public function setLoginHint($loginHint) - { - $this->config['login_hint'] = $loginHint; - } - - /** - * Set the application name, this is included in the User-Agent HTTP header. - * @param string $applicationName - */ - public function setApplicationName($applicationName) - { - $this->config['application_name'] = $applicationName; - } - - /** - * If 'plus.login' is included in the list of requested scopes, you can use - * this method to define types of app activities that your app will write. - * You can find a list of available types here: - * @link https://developers.google.com/+/api/moment-types - * - * @param array $requestVisibleActions Array of app activity types - */ - public function setRequestVisibleActions($requestVisibleActions) - { - if (is_array($requestVisibleActions)) { - $requestVisibleActions = implode(" ", $requestVisibleActions); - } - $this->config['request_visible_actions'] = $requestVisibleActions; - } - - /** - * Set the developer key to use, these are obtained through the API Console. - * @see http://code.google.com/apis/console-help/#generatingdevkeys - * @param string $developerKey - */ - public function setDeveloperKey($developerKey) - { - $this->config['developer_key'] = $developerKey; - } - - /** - * Set the hd (hosted domain) parameter streamlines the login process for - * Google Apps hosted accounts. By including the domain of the user, you - * restrict sign-in to accounts at that domain. - * @param $hd string - the domain to use. - */ - public function setHostedDomain($hd) - { - $this->config['hd'] = $hd; - } - - /** - * Set the prompt hint. Valid values are none, consent and select_account. - * If no value is specified and the user has not previously authorized - * access, then the user is shown a consent screen. - * @param $prompt string - * {@code "none"} Do not display any authentication or consent screens. Must not be specified with other values. - * {@code "consent"} Prompt the user for consent. - * {@code "select_account"} Prompt the user to select an account. - */ - public function setPrompt($prompt) - { - $this->config['prompt'] = $prompt; - } - - /** - * openid.realm is a parameter from the OpenID 2.0 protocol, not from OAuth - * 2.0. It is used in OpenID 2.0 requests to signify the URL-space for which - * an authentication request is valid. - * @param $realm string - the URL-space to use. - */ - public function setOpenidRealm($realm) - { - $this->config['openid.realm'] = $realm; - } - - /** - * If this is provided with the value true, and the authorization request is - * granted, the authorization will include any previous authorizations - * granted to this user/application combination for other scopes. - * @param $include boolean - the URL-space to use. - */ - public function setIncludeGrantedScopes($include) - { - $this->config['include_granted_scopes'] = $include; - } - - /** - * sets function to be called when an access token is fetched - * @param callable $tokenCallback - function ($cacheKey, $accessToken) - */ - public function setTokenCallback(callable $tokenCallback) - { - $this->config['token_callback'] = $tokenCallback; - } - - /** - * Revoke an OAuth2 access token or refresh token. This method will revoke the current access - * token, if a token isn't provided. - * - * @param string|array|null $token The token (access token or a refresh token) that should be revoked. - * @return boolean Returns True if the revocation was successful, otherwise False. - */ - public function revokeToken($token = null) - { - $tokenRevoker = new Google_AccessToken_Revoke( - $this->getHttpClient() - ); - - return $tokenRevoker->revokeToken($token ?: $this->getAccessToken()); - } - - /** - * Verify an id_token. This method will verify the current id_token, if one - * isn't provided. - * - * @throws LogicException If no token was provided and no token was set using `setAccessToken`. - * @throws UnexpectedValueException If the token is not a valid JWT. - * @param string|null $idToken The token (id_token) that should be verified. - * @return array|false Returns the token payload as an array if the verification was - * successful, false otherwise. - */ - public function verifyIdToken($idToken = null) - { - $tokenVerifier = new Google_AccessToken_Verify( - $this->getHttpClient(), - $this->getCache(), - $this->config['jwt'] - ); - - if (null === $idToken) { - $token = $this->getAccessToken(); - if (!isset($token['id_token'])) { - throw new LogicException( - 'id_token must be passed in or set as part of setAccessToken' - ); - } - $idToken = $token['id_token']; - } - - return $tokenVerifier->verifyIdToken( - $idToken, - $this->getClientId() - ); - } - - /** - * Set the scopes to be requested. Must be called before createAuthUrl(). - * Will remove any previously configured scopes. - * @param string|array $scope_or_scopes, ie: array('https://www.googleapis.com/auth/plus.login', - * 'https://www.googleapis.com/auth/moderator') - */ - public function setScopes($scope_or_scopes) - { - $this->requestedScopes = array(); - $this->addScope($scope_or_scopes); - } - - /** - * This functions adds a scope to be requested as part of the OAuth2.0 flow. - * Will append any scopes not previously requested to the scope parameter. - * A single string will be treated as a scope to request. An array of strings - * will each be appended. - * @param $scope_or_scopes string|array e.g. "profile" - */ - public function addScope($scope_or_scopes) - { - if (is_string($scope_or_scopes) && !in_array($scope_or_scopes, $this->requestedScopes)) { - $this->requestedScopes[] = $scope_or_scopes; - } else if (is_array($scope_or_scopes)) { - foreach ($scope_or_scopes as $scope) { - $this->addScope($scope); - } - } - } - - /** - * Returns the list of scopes requested by the client - * @return array the list of scopes - * - */ - public function getScopes() - { - return $this->requestedScopes; - } - - /** - * @return string|null - * @visible For Testing - */ - public function prepareScopes() - { - if (empty($this->requestedScopes)) { - return null; - } - - return implode(' ', $this->requestedScopes); - } - - /** - * Helper method to execute deferred HTTP requests. - * - * @param $request Psr\Http\Message\RequestInterface|Google_Http_Batch - * @throws Google_Exception - * @return object of the type of the expected class or Psr\Http\Message\ResponseInterface. - */ - public function execute(RequestInterface $request, $expectedClass = null) - { - $request = $request - ->withHeader( - 'User-Agent', - sprintf( - '%s %s%s', - $this->config['application_name'], - self::USER_AGENT_SUFFIX, - $this->getLibraryVersion() - ) - ) - ->withHeader( - 'x-goog-api-client', - sprintf( - 'gl-php/%s gdcl/%s', - phpversion(), - $this->getLibraryVersion() - ) - ); - - if ($this->config['api_format_v2']) { - $request = $request->withHeader( - 'X-GOOG-API-FORMAT-VERSION', - 2 - ); - } - - // call the authorize method - // this is where most of the grunt work is done - $http = $this->authorize(); - - return Google_Http_REST::execute( - $http, - $request, - $expectedClass, - $this->config['retry'], - $this->config['retry_map'] - ); - } - - /** - * Declare whether batch calls should be used. This may increase throughput - * by making multiple requests in one connection. - * - * @param boolean $useBatch True if the batch support should - * be enabled. Defaults to False. - */ - public function setUseBatch($useBatch) - { - // This is actually an alias for setDefer. - $this->setDefer($useBatch); - } - - /** - * Are we running in Google AppEngine? - * return bool - */ - public function isAppEngine() - { - return (isset($_SERVER['SERVER_SOFTWARE']) && - strpos($_SERVER['SERVER_SOFTWARE'], 'Google App Engine') !== false); - } - - public function setConfig($name, $value) - { - $this->config[$name] = $value; - } - - public function getConfig($name, $default = null) - { - return isset($this->config[$name]) ? $this->config[$name] : $default; - } - - /** - * For backwards compatibility - * alias for setAuthConfig - * - * @param string $file the configuration file - * @throws Google_Exception - * @deprecated - */ - public function setAuthConfigFile($file) - { - $this->setAuthConfig($file); - } - - /** - * Set the auth config from new or deprecated JSON config. - * This structure should match the file downloaded from - * the "Download JSON" button on in the Google Developer - * Console. - * @param string|array $config the configuration json - * @throws Google_Exception - */ - public function setAuthConfig($config) - { - if (is_string($config)) { - if (!file_exists($config)) { - throw new InvalidArgumentException(sprintf('file "%s" does not exist', $config)); - } - - $json = file_get_contents($config); - - if (!$config = json_decode($json, true)) { - throw new LogicException('invalid json for auth config'); - } - } - - $key = isset($config['installed']) ? 'installed' : 'web'; - if (isset($config['type']) && $config['type'] == 'service_account') { - // application default credentials - $this->useApplicationDefaultCredentials(); - - // set the information from the config - $this->setClientId($config['client_id']); - $this->config['client_email'] = $config['client_email']; - $this->config['signing_key'] = $config['private_key']; - $this->config['signing_algorithm'] = 'HS256'; - } elseif (isset($config[$key])) { - // old-style - $this->setClientId($config[$key]['client_id']); - $this->setClientSecret($config[$key]['client_secret']); - if (isset($config[$key]['redirect_uris'])) { - $this->setRedirectUri($config[$key]['redirect_uris'][0]); - } - } else { - // new-style - $this->setClientId($config['client_id']); - $this->setClientSecret($config['client_secret']); - if (isset($config['redirect_uris'])) { - $this->setRedirectUri($config['redirect_uris'][0]); - } - } - } - - /** - * Use when the service account has been delegated domain wide access. - * - * @param string $subject an email address account to impersonate - */ - public function setSubject($subject) - { - $this->config['subject'] = $subject; - } - - /** - * Declare whether making API calls should make the call immediately, or - * return a request which can be called with ->execute(); - * - * @param boolean $defer True if calls should not be executed right away. - */ - public function setDefer($defer) - { - $this->deferExecution = $defer; - } - - /** - * Whether or not to return raw requests - * @return boolean - */ - public function shouldDefer() - { - return $this->deferExecution; - } - - /** - * @return Google\Auth\OAuth2 implementation - */ - public function getOAuth2Service() - { - if (!isset($this->auth)) { - $this->auth = $this->createOAuth2Service(); - } - - return $this->auth; - } - - /** - * create a default google auth object - */ - protected function createOAuth2Service() - { - $auth = new OAuth2( - [ - 'clientId' => $this->getClientId(), - 'clientSecret' => $this->getClientSecret(), - 'authorizationUri' => self::OAUTH2_AUTH_URL, - 'tokenCredentialUri' => self::OAUTH2_TOKEN_URI, - 'redirectUri' => $this->getRedirectUri(), - 'issuer' => $this->config['client_id'], - 'signingKey' => $this->config['signing_key'], - 'signingAlgorithm' => $this->config['signing_algorithm'], - ] - ); - - return $auth; - } - - /** - * Set the Cache object - * @param Psr\Cache\CacheItemPoolInterface $cache - */ - public function setCache(CacheItemPoolInterface $cache) - { - $this->cache = $cache; - } - - /** - * @return Psr\Cache\CacheItemPoolInterface Cache implementation - */ - public function getCache() - { - if (!$this->cache) { - $this->cache = $this->createDefaultCache(); - } - - return $this->cache; - } - - /** - * @param array $cacheConfig - */ - public function setCacheConfig(array $cacheConfig) - { - $this->config['cache_config'] = $cacheConfig; - } - - /** - * Set the Logger object - * @param Psr\Log\LoggerInterface $logger - */ - public function setLogger(LoggerInterface $logger) - { - $this->logger = $logger; - } - - /** - * @return Psr\Log\LoggerInterface implementation - */ - public function getLogger() - { - if (!isset($this->logger)) { - $this->logger = $this->createDefaultLogger(); - } - - return $this->logger; - } - - protected function createDefaultLogger() - { - $logger = new Logger('google-api-php-client'); - if ($this->isAppEngine()) { - $handler = new MonologSyslogHandler('app', LOG_USER, Logger::NOTICE); - } else { - $handler = new MonologStreamHandler('php://stderr', Logger::NOTICE); - } - $logger->pushHandler($handler); - - return $logger; - } - - protected function createDefaultCache() - { - return new MemoryCacheItemPool; - } - - /** - * Set the Http Client object - * @param GuzzleHttp\ClientInterface $http - */ - public function setHttpClient(ClientInterface $http) - { - $this->http = $http; - } - - /** - * @return GuzzleHttp\ClientInterface implementation - */ - public function getHttpClient() - { - if (null === $this->http) { - $this->http = $this->createDefaultHttpClient(); - } - - return $this->http; - } - - /** - * Set the API format version. - * - * `true` will use V2, which may return more useful error messages. - * - * @param bool $value - */ - public function setApiFormatV2($value) - { - $this->config['api_format_v2'] = (bool) $value; - } - - protected function createDefaultHttpClient() - { - $options = ['exceptions' => false]; - - $version = ClientInterface::VERSION; - if ('5' === $version[0]) { - $options = [ - 'base_url' => $this->config['base_path'], - 'defaults' => $options, - ]; - if ($this->isAppEngine()) { - // set StreamHandler on AppEngine by default - $options['handler'] = new StreamHandler(); - $options['defaults']['verify'] = '/etc/ca-certificates.crt'; - } - } else { - // guzzle 6 - $options['base_uri'] = $this->config['base_path']; - } - - return new Client($options); - } - - private function createApplicationDefaultCredentials() - { - $scopes = $this->prepareScopes(); - $sub = $this->config['subject']; - $signingKey = $this->config['signing_key']; - - // create credentials using values supplied in setAuthConfig - if ($signingKey) { - $serviceAccountCredentials = array( - 'client_id' => $this->config['client_id'], - 'client_email' => $this->config['client_email'], - 'private_key' => $signingKey, - 'type' => 'service_account', - ); - $credentials = CredentialsLoader::makeCredentials($scopes, $serviceAccountCredentials); - } else { - $credentials = ApplicationDefaultCredentials::getCredentials($scopes); - } - - // for service account domain-wide authority (impersonating a user) - // @see https://developers.google.com/identity/protocols/OAuth2ServiceAccount - if ($sub) { - if (!$credentials instanceof ServiceAccountCredentials) { - throw new DomainException('domain-wide authority requires service account credentials'); - } - - $credentials->setSub($sub); - } - - return $credentials; - } - - protected function getAuthHandler() - { - // Be very careful using the cache, as the underlying auth library's cache - // implementation is naive, and the cache keys do not account for user - // sessions. - // - // @see https://github.com/google/google-api-php-client/issues/821 - return Google_AuthHandler_AuthHandlerFactory::build( - $this->getCache(), - $this->config['cache_config'] - ); - } - - private function createUserRefreshCredentials($scope, $refreshToken) - { - $creds = array_filter( - array( - 'client_id' => $this->getClientId(), - 'client_secret' => $this->getClientSecret(), - 'refresh_token' => $refreshToken, - ) - ); - - return new UserRefreshCredentials($scope, $creds); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/src/Google/Collection.php b/services/libs/google-api-php-client-2.4.1/src/Google/Collection.php deleted file mode 100644 index df8d444d..00000000 --- a/services/libs/google-api-php-client-2.4.1/src/Google/Collection.php +++ /dev/null @@ -1,100 +0,0 @@ -{$this->collection_key}) - && is_array($this->{$this->collection_key})) { - reset($this->{$this->collection_key}); - } - } - - public function current() - { - $this->coerceType($this->key()); - if (is_array($this->{$this->collection_key})) { - return current($this->{$this->collection_key}); - } - } - - public function key() - { - if (isset($this->{$this->collection_key}) - && is_array($this->{$this->collection_key})) { - return key($this->{$this->collection_key}); - } - } - - public function next() - { - return next($this->{$this->collection_key}); - } - - public function valid() - { - $key = $this->key(); - return $key !== null && $key !== false; - } - - public function count() - { - if (!isset($this->{$this->collection_key})) { - return 0; - } - return count($this->{$this->collection_key}); - } - - public function offsetExists($offset) - { - if (!is_numeric($offset)) { - return parent::offsetExists($offset); - } - return isset($this->{$this->collection_key}[$offset]); - } - - public function offsetGet($offset) - { - if (!is_numeric($offset)) { - return parent::offsetGet($offset); - } - $this->coerceType($offset); - return $this->{$this->collection_key}[$offset]; - } - - public function offsetSet($offset, $value) - { - if (!is_numeric($offset)) { - return parent::offsetSet($offset, $value); - } - $this->{$this->collection_key}[$offset] = $value; - } - - public function offsetUnset($offset) - { - if (!is_numeric($offset)) { - return parent::offsetUnset($offset); - } - unset($this->{$this->collection_key}[$offset]); - } - - private function coerceType($offset) - { - $keyType = $this->keyType($this->collection_key); - if ($keyType && !is_object($this->{$this->collection_key}[$offset])) { - $this->{$this->collection_key}[$offset] = - new $keyType($this->{$this->collection_key}[$offset]); - } - } -} diff --git a/services/libs/google-api-php-client-2.4.1/src/Google/Exception.php b/services/libs/google-api-php-client-2.4.1/src/Google/Exception.php deleted file mode 100644 index af802697..00000000 --- a/services/libs/google-api-php-client-2.4.1/src/Google/Exception.php +++ /dev/null @@ -1,20 +0,0 @@ -client = $client; - $this->boundary = $boundary ?: mt_rand(); - $this->rootUrl = rtrim($rootUrl ?: $this->client->getConfig('base_path'), '/'); - $this->batchPath = $batchPath ?: self::BATCH_PATH; - } - - public function add(RequestInterface $request, $key = false) - { - if (false == $key) { - $key = mt_rand(); - } - - $this->requests[$key] = $request; - } - - public function execute() - { - $body = ''; - $classes = array(); - $batchHttpTemplate = <<requests as $key => $request) { - $firstLine = sprintf( - '%s %s HTTP/%s', - $request->getMethod(), - $request->getRequestTarget(), - $request->getProtocolVersion() - ); - - $content = (string) $request->getBody(); - - $headers = ''; - foreach ($request->getHeaders() as $name => $values) { - $headers .= sprintf("%s:%s\r\n", $name, implode(', ', $values)); - } - - $body .= sprintf( - $batchHttpTemplate, - $this->boundary, - $key, - $firstLine, - $headers, - $content ? "\n".$content : '' - ); - - $classes['response-' . $key] = $request->getHeaderLine('X-Php-Expected-Class'); - } - - $body .= "--{$this->boundary}--"; - $body = trim($body); - $url = $this->rootUrl . '/' . $this->batchPath; - $headers = array( - 'Content-Type' => sprintf('multipart/mixed; boundary=%s', $this->boundary), - 'Content-Length' => strlen($body), - ); - - $request = new Request( - 'POST', - $url, - $headers, - $body - ); - - $response = $this->client->execute($request); - - return $this->parseResponse($response, $classes); - } - - public function parseResponse(ResponseInterface $response, $classes = array()) - { - $contentType = $response->getHeaderLine('content-type'); - $contentType = explode(';', $contentType); - $boundary = false; - foreach ($contentType as $part) { - $part = explode('=', $part, 2); - if (isset($part[0]) && 'boundary' == trim($part[0])) { - $boundary = $part[1]; - } - } - - $body = (string) $response->getBody(); - if (!empty($body)) { - $body = str_replace("--$boundary--", "--$boundary", $body); - $parts = explode("--$boundary", $body); - $responses = array(); - $requests = array_values($this->requests); - - foreach ($parts as $i => $part) { - $part = trim($part); - if (!empty($part)) { - list($rawHeaders, $part) = explode("\r\n\r\n", $part, 2); - $headers = $this->parseRawHeaders($rawHeaders); - - $status = substr($part, 0, strpos($part, "\n")); - $status = explode(" ", $status); - $status = $status[1]; - - list($partHeaders, $partBody) = $this->parseHttpResponse($part, false); - $response = new Response( - $status, - $partHeaders, - Psr7\stream_for($partBody) - ); - - // Need content id. - $key = $headers['content-id']; - - try { - $response = Google_Http_REST::decodeHttpResponse($response, $requests[$i-1]); - } catch (Google_Service_Exception $e) { - // Store the exception as the response, so successful responses - // can be processed. - $response = $e; - } - - $responses[$key] = $response; - } - } - - return $responses; - } - - return null; - } - - private function parseRawHeaders($rawHeaders) - { - $headers = array(); - $responseHeaderLines = explode("\r\n", $rawHeaders); - foreach ($responseHeaderLines as $headerLine) { - if ($headerLine && strpos($headerLine, ':') !== false) { - list($header, $value) = explode(': ', $headerLine, 2); - $header = strtolower($header); - if (isset($headers[$header])) { - $headers[$header] .= "\n" . $value; - } else { - $headers[$header] = $value; - } - } - } - return $headers; - } - - /** - * Used by the IO lib and also the batch processing. - * - * @param $respData - * @param $headerSize - * @return array - */ - private function parseHttpResponse($respData, $headerSize) - { - // check proxy header - foreach (self::$CONNECTION_ESTABLISHED_HEADERS as $established_header) { - if (stripos($respData, $established_header) !== false) { - // existed, remove it - $respData = str_ireplace($established_header, '', $respData); - // Subtract the proxy header size unless the cURL bug prior to 7.30.0 - // is present which prevented the proxy header size from being taken into - // account. - // @TODO look into this - // if (!$this->needsQuirk()) { - // $headerSize -= strlen($established_header); - // } - break; - } - } - - if ($headerSize) { - $responseBody = substr($respData, $headerSize); - $responseHeaders = substr($respData, 0, $headerSize); - } else { - $responseSegments = explode("\r\n\r\n", $respData, 2); - $responseHeaders = $responseSegments[0]; - $responseBody = isset($responseSegments[1]) ? $responseSegments[1] : - null; - } - - $responseHeaders = $this->parseRawHeaders($responseHeaders); - - return array($responseHeaders, $responseBody); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/src/Google/Http/MediaFileUpload.php b/services/libs/google-api-php-client-2.4.1/src/Google/Http/MediaFileUpload.php deleted file mode 100644 index f4ee9768..00000000 --- a/services/libs/google-api-php-client-2.4.1/src/Google/Http/MediaFileUpload.php +++ /dev/null @@ -1,353 +0,0 @@ -client = $client; - $this->request = $request; - $this->mimeType = $mimeType; - $this->data = $data; - $this->resumable = $resumable; - $this->chunkSize = $chunkSize; - $this->progress = 0; - - $this->process(); - } - - /** - * Set the size of the file that is being uploaded. - * @param $size - int file size in bytes - */ - public function setFileSize($size) - { - $this->size = $size; - } - - /** - * Return the progress on the upload - * @return int progress in bytes uploaded. - */ - public function getProgress() - { - return $this->progress; - } - - /** - * Send the next part of the file to upload. - * @param [$chunk] the next set of bytes to send. If false will used $data passed - * at construct time. - */ - public function nextChunk($chunk = false) - { - $resumeUri = $this->getResumeUri(); - - if (false == $chunk) { - $chunk = substr($this->data, $this->progress, $this->chunkSize); - } - - $lastBytePos = $this->progress + strlen($chunk) - 1; - $headers = array( - 'content-range' => "bytes $this->progress-$lastBytePos/$this->size", - 'content-length' => strlen($chunk), - 'expect' => '', - ); - - $request = new Request( - 'PUT', - $resumeUri, - $headers, - Psr7\stream_for($chunk) - ); - - return $this->makePutRequest($request); - } - - /** - * Return the HTTP result code from the last call made. - * @return int code - */ - public function getHttpResultCode() - { - return $this->httpResultCode; - } - - /** - * Sends a PUT-Request to google drive and parses the response, - * setting the appropiate variables from the response() - * - * @param Google_Http_Request $httpRequest the Reuqest which will be send - * - * @return false|mixed false when the upload is unfinished or the decoded http response - * - */ - private function makePutRequest(RequestInterface $request) - { - $response = $this->client->execute($request); - $this->httpResultCode = $response->getStatusCode(); - - if (308 == $this->httpResultCode) { - // Track the amount uploaded. - $range = $response->getHeaderLine('range'); - if ($range) { - $range_array = explode('-', $range); - $this->progress = $range_array[1] + 1; - } - - // Allow for changing upload URLs. - $location = $response->getHeaderLine('location'); - if ($location) { - $this->resumeUri = $location; - } - - // No problems, but upload not complete. - return false; - } - - return Google_Http_REST::decodeHttpResponse($response, $this->request); - } - - /** - * Resume a previously unfinished upload - * @param $resumeUri the resume-URI of the unfinished, resumable upload. - */ - public function resume($resumeUri) - { - $this->resumeUri = $resumeUri; - $headers = array( - 'content-range' => "bytes */$this->size", - 'content-length' => 0, - ); - $httpRequest = new Request( - 'PUT', - $this->resumeUri, - $headers - ); - - return $this->makePutRequest($httpRequest); - } - - /** - * @return Psr\Http\Message\RequestInterface $request - * @visible for testing - */ - private function process() - { - $this->transformToUploadUrl(); - $request = $this->request; - - $postBody = ''; - $contentType = false; - - $meta = (string) $request->getBody(); - $meta = is_string($meta) ? json_decode($meta, true) : $meta; - - $uploadType = $this->getUploadType($meta); - $request = $request->withUri( - Uri::withQueryValue($request->getUri(), 'uploadType', $uploadType) - ); - - $mimeType = $this->mimeType ?: $request->getHeaderLine('content-type'); - - if (self::UPLOAD_RESUMABLE_TYPE == $uploadType) { - $contentType = $mimeType; - $postBody = is_string($meta) ? $meta : json_encode($meta); - } else if (self::UPLOAD_MEDIA_TYPE == $uploadType) { - $contentType = $mimeType; - $postBody = $this->data; - } else if (self::UPLOAD_MULTIPART_TYPE == $uploadType) { - // This is a multipart/related upload. - $boundary = $this->boundary ?: mt_rand(); - $boundary = str_replace('"', '', $boundary); - $contentType = 'multipart/related; boundary=' . $boundary; - $related = "--$boundary\r\n"; - $related .= "Content-Type: application/json; charset=UTF-8\r\n"; - $related .= "\r\n" . json_encode($meta) . "\r\n"; - $related .= "--$boundary\r\n"; - $related .= "Content-Type: $mimeType\r\n"; - $related .= "Content-Transfer-Encoding: base64\r\n"; - $related .= "\r\n" . base64_encode($this->data) . "\r\n"; - $related .= "--$boundary--"; - $postBody = $related; - } - - $request = $request->withBody(Psr7\stream_for($postBody)); - - if (isset($contentType) && $contentType) { - $request = $request->withHeader('content-type', $contentType); - } - - return $this->request = $request; - } - - /** - * Valid upload types: - * - resumable (UPLOAD_RESUMABLE_TYPE) - * - media (UPLOAD_MEDIA_TYPE) - * - multipart (UPLOAD_MULTIPART_TYPE) - * @param $meta - * @return string - * @visible for testing - */ - public function getUploadType($meta) - { - if ($this->resumable) { - return self::UPLOAD_RESUMABLE_TYPE; - } - - if (false == $meta && $this->data) { - return self::UPLOAD_MEDIA_TYPE; - } - - return self::UPLOAD_MULTIPART_TYPE; - } - - public function getResumeUri() - { - if (null === $this->resumeUri) { - $this->resumeUri = $this->fetchResumeUri(); - } - - return $this->resumeUri; - } - - private function fetchResumeUri() - { - $body = $this->request->getBody(); - if ($body) { - $headers = array( - 'content-type' => 'application/json; charset=UTF-8', - 'content-length' => $body->getSize(), - 'x-upload-content-type' => $this->mimeType, - 'x-upload-content-length' => $this->size, - 'expect' => '', - ); - foreach ($headers as $key => $value) { - $this->request = $this->request->withHeader($key, $value); - } - } - - $response = $this->client->execute($this->request, false); - $location = $response->getHeaderLine('location'); - $code = $response->getStatusCode(); - - if (200 == $code && true == $location) { - return $location; - } - - $message = $code; - $body = json_decode((string) $this->request->getBody(), true); - if (isset($body['error']['errors'])) { - $message .= ': '; - foreach ($body['error']['errors'] as $error) { - $message .= "{$error['domain']}, {$error['message']};"; - } - $message = rtrim($message, ';'); - } - - $error = "Failed to start the resumable upload (HTTP {$message})"; - $this->client->getLogger()->error($error); - - throw new Google_Exception($error); - } - - private function transformToUploadUrl() - { - $parts = parse_url((string) $this->request->getUri()); - if (!isset($parts['path'])) { - $parts['path'] = ''; - } - $parts['path'] = '/upload' . $parts['path']; - $uri = Uri::fromParts($parts); - $this->request = $this->request->withUri($uri); - } - - public function setChunkSize($chunkSize) - { - $this->chunkSize = $chunkSize; - } - - public function getRequest() - { - return $this->request; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/src/Google/Http/REST.php b/services/libs/google-api-php-client-2.4.1/src/Google/Http/REST.php deleted file mode 100644 index c2156a2e..00000000 --- a/services/libs/google-api-php-client-2.4.1/src/Google/Http/REST.php +++ /dev/null @@ -1,182 +0,0 @@ -getMethod(), (string) $request->getUri()), - array(get_class(), 'doExecute'), - array($client, $request, $expectedClass) - ); - - if (null !== $retryMap) { - $runner->setRetryMap($retryMap); - } - - return $runner->run(); - } - - /** - * Executes a Psr\Http\Message\RequestInterface - * - * @param Google_Client $client - * @param Psr\Http\Message\RequestInterface $request - * @return array decoded result - * @throws Google_Service_Exception on server side error (ie: not authenticated, - * invalid or malformed post body, invalid url) - */ - public static function doExecute(ClientInterface $client, RequestInterface $request, $expectedClass = null) - { - try { - $httpHandler = HttpHandlerFactory::build($client); - $response = $httpHandler($request); - } catch (RequestException $e) { - // if Guzzle throws an exception, catch it and handle the response - if (!$e->hasResponse()) { - throw $e; - } - - $response = $e->getResponse(); - // specific checking for Guzzle 5: convert to PSR7 response - if ($response instanceof \GuzzleHttp\Message\ResponseInterface) { - $response = new Response( - $response->getStatusCode(), - $response->getHeaders() ?: [], - $response->getBody(), - $response->getProtocolVersion(), - $response->getReasonPhrase() - ); - } - } - - return self::decodeHttpResponse($response, $request, $expectedClass); - } - - /** - * Decode an HTTP Response. - * @static - * @throws Google_Service_Exception - * @param Psr\Http\Message\RequestInterface $response The http response to be decoded. - * @param Psr\Http\Message\ResponseInterface $response - * @return mixed|null - */ - public static function decodeHttpResponse( - ResponseInterface $response, - RequestInterface $request = null, - $expectedClass = null - ) { - $code = $response->getStatusCode(); - - // retry strategy - if (intVal($code) >= 400) { - // if we errored out, it should be safe to grab the response body - $body = (string) $response->getBody(); - - // Check if we received errors, and add those to the Exception for convenience - throw new Google_Service_Exception($body, $code, null, self::getResponseErrors($body)); - } - - // Ensure we only pull the entire body into memory if the request is not - // of media type - $body = self::decodeBody($response, $request); - - if ($expectedClass = self::determineExpectedClass($expectedClass, $request)) { - $json = json_decode($body, true); - - return new $expectedClass($json); - } - - return $response; - } - - private static function decodeBody(ResponseInterface $response, RequestInterface $request = null) - { - if (self::isAltMedia($request)) { - // don't decode the body, it's probably a really long string - return ''; - } - - return (string) $response->getBody(); - } - - private static function determineExpectedClass($expectedClass, RequestInterface $request = null) - { - // "false" is used to explicitly prevent an expected class from being returned - if (false === $expectedClass) { - return null; - } - - // if we don't have a request, we just use what's passed in - if (null === $request) { - return $expectedClass; - } - - // return what we have in the request header if one was not supplied - return $expectedClass ?: $request->getHeaderLine('X-Php-Expected-Class'); - } - - private static function getResponseErrors($body) - { - $json = json_decode($body, true); - - if (isset($json['error']['errors'])) { - return $json['error']['errors']; - } - - return null; - } - - private static function isAltMedia(RequestInterface $request = null) - { - if ($request && $qs = $request->getUri()->getQuery()) { - parse_str($qs, $query); - if (isset($query['alt']) && $query['alt'] == 'media') { - return true; - } - } - - return false; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/src/Google/Model.php b/services/libs/google-api-php-client-2.4.1/src/Google/Model.php deleted file mode 100644 index 18262608..00000000 --- a/services/libs/google-api-php-client-2.4.1/src/Google/Model.php +++ /dev/null @@ -1,317 +0,0 @@ -mapTypes($array); - } - $this->gapiInit(); - } - - /** - * Getter that handles passthrough access to the data array, and lazy object creation. - * @param string $key Property name. - * @return mixed The value if any, or null. - */ - public function __get($key) - { - $keyType = $this->keyType($key); - $keyDataType = $this->dataType($key); - if ($keyType && !isset($this->processed[$key])) { - if (isset($this->modelData[$key])) { - $val = $this->modelData[$key]; - } elseif ($keyDataType == 'array' || $keyDataType == 'map') { - $val = array(); - } else { - $val = null; - } - - if ($this->isAssociativeArray($val)) { - if ($keyDataType && 'map' == $keyDataType) { - foreach ($val as $arrayKey => $arrayItem) { - $this->modelData[$key][$arrayKey] = - new $keyType($arrayItem); - } - } else { - $this->modelData[$key] = new $keyType($val); - } - } else if (is_array($val)) { - $arrayObject = array(); - foreach ($val as $arrayIndex => $arrayItem) { - $arrayObject[$arrayIndex] = new $keyType($arrayItem); - } - $this->modelData[$key] = $arrayObject; - } - $this->processed[$key] = true; - } - - return isset($this->modelData[$key]) ? $this->modelData[$key] : null; - } - - /** - * Initialize this object's properties from an array. - * - * @param array $array Used to seed this object's properties. - * @return void - */ - protected function mapTypes($array) - { - // Hard initialise simple types, lazy load more complex ones. - foreach ($array as $key => $val) { - if ($keyType = $this->keyType($key)) { - $dataType = $this->dataType($key); - if ($dataType == 'array' || $dataType == 'map') { - $this->$key = array(); - foreach ($val as $itemKey => $itemVal) { - if ($itemVal instanceof $keyType) { - $this->{$key}[$itemKey] = $itemVal; - } else { - $this->{$key}[$itemKey] = new $keyType($itemVal); - } - } - } elseif ($val instanceof $keyType) { - $this->$key = $val; - } else { - $this->$key = new $keyType($val); - } - unset($array[$key]); - } elseif (property_exists($this, $key)) { - $this->$key = $val; - unset($array[$key]); - } elseif (property_exists($this, $camelKey = $this->camelCase($key))) { - // This checks if property exists as camelCase, leaving it in array as snake_case - // in case of backwards compatibility issues. - $this->$camelKey = $val; - } - } - $this->modelData = $array; - } - - /** - * Blank initialiser to be used in subclasses to do post-construction initialisation - this - * avoids the need for subclasses to have to implement the variadics handling in their - * constructors. - */ - protected function gapiInit() - { - return; - } - - /** - * Create a simplified object suitable for straightforward - * conversion to JSON. This is relatively expensive - * due to the usage of reflection, but shouldn't be called - * a whole lot, and is the most straightforward way to filter. - */ - public function toSimpleObject() - { - $object = new stdClass(); - - // Process all other data. - foreach ($this->modelData as $key => $val) { - $result = $this->getSimpleValue($val); - if ($result !== null) { - $object->$key = $this->nullPlaceholderCheck($result); - } - } - - // Process all public properties. - $reflect = new ReflectionObject($this); - $props = $reflect->getProperties(ReflectionProperty::IS_PUBLIC); - foreach ($props as $member) { - $name = $member->getName(); - $result = $this->getSimpleValue($this->$name); - if ($result !== null) { - $name = $this->getMappedName($name); - $object->$name = $this->nullPlaceholderCheck($result); - } - } - - return $object; - } - - /** - * Handle different types of values, primarily - * other objects and map and array data types. - */ - private function getSimpleValue($value) - { - if ($value instanceof Google_Model) { - return $value->toSimpleObject(); - } else if (is_array($value)) { - $return = array(); - foreach ($value as $key => $a_value) { - $a_value = $this->getSimpleValue($a_value); - if ($a_value !== null) { - $key = $this->getMappedName($key); - $return[$key] = $this->nullPlaceholderCheck($a_value); - } - } - return $return; - } - return $value; - } - - /** - * Check whether the value is the null placeholder and return true null. - */ - private function nullPlaceholderCheck($value) - { - if ($value === self::NULL_VALUE) { - return null; - } - return $value; - } - - /** - * If there is an internal name mapping, use that. - */ - private function getMappedName($key) - { - if (isset($this->internal_gapi_mappings, $this->internal_gapi_mappings[$key])) { - $key = $this->internal_gapi_mappings[$key]; - } - return $key; - } - - /** - * Returns true only if the array is associative. - * @param array $array - * @return bool True if the array is associative. - */ - protected function isAssociativeArray($array) - { - if (!is_array($array)) { - return false; - } - $keys = array_keys($array); - foreach ($keys as $key) { - if (is_string($key)) { - return true; - } - } - return false; - } - - /** - * Verify if $obj is an array. - * @throws Google_Exception Thrown if $obj isn't an array. - * @param array $obj Items that should be validated. - * @param string $method Method expecting an array as an argument. - */ - public function assertIsArray($obj, $method) - { - if ($obj && !is_array($obj)) { - throw new Google_Exception( - "Incorrect parameter type passed to $method(). Expected an array." - ); - } - } - - public function offsetExists($offset) - { - return isset($this->$offset) || isset($this->modelData[$offset]); - } - - public function offsetGet($offset) - { - return isset($this->$offset) ? - $this->$offset : - $this->__get($offset); - } - - public function offsetSet($offset, $value) - { - if (property_exists($this, $offset)) { - $this->$offset = $value; - } else { - $this->modelData[$offset] = $value; - $this->processed[$offset] = true; - } - } - - public function offsetUnset($offset) - { - unset($this->modelData[$offset]); - } - - protected function keyType($key) - { - $keyType = $key . "Type"; - - // ensure keyType is a valid class - if (property_exists($this, $keyType) && class_exists($this->$keyType)) { - return $this->$keyType; - } - } - - protected function dataType($key) - { - $dataType = $key . "DataType"; - - if (property_exists($this, $dataType)) { - return $this->$dataType; - } - } - - public function __isset($key) - { - return isset($this->modelData[$key]); - } - - public function __unset($key) - { - unset($this->modelData[$key]); - } - - /** - * Convert a string to camelCase - * @param string $value - * @return string - */ - private function camelCase($value) - { - $value = ucwords(str_replace(array('-', '_'), ' ', $value)); - $value = str_replace(' ', '', $value); - $value[0] = strtolower($value[0]); - return $value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/src/Google/Service.php b/services/libs/google-api-php-client-2.4.1/src/Google/Service.php deleted file mode 100644 index d3fd3b49..00000000 --- a/services/libs/google-api-php-client-2.4.1/src/Google/Service.php +++ /dev/null @@ -1,56 +0,0 @@ -client = $client; - } - - /** - * Return the associated Google_Client class. - * @return Google_Client - */ - public function getClient() - { - return $this->client; - } - - /** - * Create a new HTTP Batch handler for this service - * - * @return Google_Http_Batch - */ - public function createBatch() - { - return new Google_Http_Batch( - $this->client, - false, - $this->rootUrl, - $this->batchPath - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/src/Google/Service/Exception.php b/services/libs/google-api-php-client-2.4.1/src/Google/Service/Exception.php deleted file mode 100644 index abfd3f7f..00000000 --- a/services/libs/google-api-php-client-2.4.1/src/Google/Service/Exception.php +++ /dev/null @@ -1,68 +0,0 @@ -= 0) { - parent::__construct($message, $code, $previous); - } else { - parent::__construct($message, $code); - } - - $this->errors = $errors; - } - - /** - * An example of the possible errors returned. - * - * { - * "domain": "global", - * "reason": "authError", - * "message": "Invalid Credentials", - * "locationType": "header", - * "location": "Authorization", - * } - * - * @return [{string, string}] List of errors return in an HTTP response or []. - */ - public function getErrors() - { - return $this->errors; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/src/Google/Service/README.md b/services/libs/google-api-php-client-2.4.1/src/Google/Service/README.md deleted file mode 100644 index 0de48620..00000000 --- a/services/libs/google-api-php-client-2.4.1/src/Google/Service/README.md +++ /dev/null @@ -1,5 +0,0 @@ -# Google API Client Services - -Google API Client Service classes have been moved to the -[google-api-php-client-services](https://github.com/google/google-api-php-client-services) -repository. diff --git a/services/libs/google-api-php-client-2.4.1/src/Google/Service/Resource.php b/services/libs/google-api-php-client-2.4.1/src/Google/Service/Resource.php deleted file mode 100644 index 77070fc4..00000000 --- a/services/libs/google-api-php-client-2.4.1/src/Google/Service/Resource.php +++ /dev/null @@ -1,302 +0,0 @@ - array('type' => 'string', 'location' => 'query'), - 'fields' => array('type' => 'string', 'location' => 'query'), - 'trace' => array('type' => 'string', 'location' => 'query'), - 'userIp' => array('type' => 'string', 'location' => 'query'), - 'quotaUser' => array('type' => 'string', 'location' => 'query'), - 'data' => array('type' => 'string', 'location' => 'body'), - 'mimeType' => array('type' => 'string', 'location' => 'header'), - 'uploadType' => array('type' => 'string', 'location' => 'query'), - 'mediaUpload' => array('type' => 'complex', 'location' => 'query'), - 'prettyPrint' => array('type' => 'string', 'location' => 'query'), - ); - - /** @var string $rootUrl */ - private $rootUrl; - - /** @var Google_Client $client */ - private $client; - - /** @var string $serviceName */ - private $serviceName; - - /** @var string $servicePath */ - private $servicePath; - - /** @var string $resourceName */ - private $resourceName; - - /** @var array $methods */ - private $methods; - - public function __construct($service, $serviceName, $resourceName, $resource) - { - $this->rootUrl = $service->rootUrl; - $this->client = $service->getClient(); - $this->servicePath = $service->servicePath; - $this->serviceName = $serviceName; - $this->resourceName = $resourceName; - $this->methods = is_array($resource) && isset($resource['methods']) ? - $resource['methods'] : - array($resourceName => $resource); - } - - /** - * TODO: This function needs simplifying. - * @param $name - * @param $arguments - * @param $expectedClass - optional, the expected class name - * @return Google_Http_Request|expectedClass - * @throws Google_Exception - */ - public function call($name, $arguments, $expectedClass = null) - { - if (! isset($this->methods[$name])) { - $this->client->getLogger()->error( - 'Service method unknown', - array( - 'service' => $this->serviceName, - 'resource' => $this->resourceName, - 'method' => $name - ) - ); - - throw new Google_Exception( - "Unknown function: " . - "{$this->serviceName}->{$this->resourceName}->{$name}()" - ); - } - $method = $this->methods[$name]; - $parameters = $arguments[0]; - - // postBody is a special case since it's not defined in the discovery - // document as parameter, but we abuse the param entry for storing it. - $postBody = null; - if (isset($parameters['postBody'])) { - if ($parameters['postBody'] instanceof Google_Model) { - // In the cases the post body is an existing object, we want - // to use the smart method to create a simple object for - // for JSONification. - $parameters['postBody'] = $parameters['postBody']->toSimpleObject(); - } else if (is_object($parameters['postBody'])) { - // If the post body is another kind of object, we will try and - // wrangle it into a sensible format. - $parameters['postBody'] = - $this->convertToArrayAndStripNulls($parameters['postBody']); - } - $postBody = (array) $parameters['postBody']; - unset($parameters['postBody']); - } - - // TODO: optParams here probably should have been - // handled already - this may well be redundant code. - if (isset($parameters['optParams'])) { - $optParams = $parameters['optParams']; - unset($parameters['optParams']); - $parameters = array_merge($parameters, $optParams); - } - - if (!isset($method['parameters'])) { - $method['parameters'] = array(); - } - - $method['parameters'] = array_merge( - $this->stackParameters, - $method['parameters'] - ); - - foreach ($parameters as $key => $val) { - if ($key != 'postBody' && ! isset($method['parameters'][$key])) { - $this->client->getLogger()->error( - 'Service parameter unknown', - array( - 'service' => $this->serviceName, - 'resource' => $this->resourceName, - 'method' => $name, - 'parameter' => $key - ) - ); - throw new Google_Exception("($name) unknown parameter: '$key'"); - } - } - - foreach ($method['parameters'] as $paramName => $paramSpec) { - if (isset($paramSpec['required']) && - $paramSpec['required'] && - ! isset($parameters[$paramName]) - ) { - $this->client->getLogger()->error( - 'Service parameter missing', - array( - 'service' => $this->serviceName, - 'resource' => $this->resourceName, - 'method' => $name, - 'parameter' => $paramName - ) - ); - throw new Google_Exception("($name) missing required param: '$paramName'"); - } - if (isset($parameters[$paramName])) { - $value = $parameters[$paramName]; - $parameters[$paramName] = $paramSpec; - $parameters[$paramName]['value'] = $value; - unset($parameters[$paramName]['required']); - } else { - // Ensure we don't pass nulls. - unset($parameters[$paramName]); - } - } - - $this->client->getLogger()->info( - 'Service Call', - array( - 'service' => $this->serviceName, - 'resource' => $this->resourceName, - 'method' => $name, - 'arguments' => $parameters, - ) - ); - - // build the service uri - $url = $this->createRequestUri( - $method['path'], - $parameters - ); - - // NOTE: because we're creating the request by hand, - // and because the service has a rootUrl property - // the "base_uri" of the Http Client is not accounted for - $request = new Request( - $method['httpMethod'], - $url, - ['content-type' => 'application/json'], - $postBody ? json_encode($postBody) : '' - ); - - // support uploads - if (isset($parameters['data'])) { - $mimeType = isset($parameters['mimeType']) - ? $parameters['mimeType']['value'] - : 'application/octet-stream'; - $data = $parameters['data']['value']; - $upload = new Google_Http_MediaFileUpload($this->client, $request, $mimeType, $data); - - // pull down the modified request - $request = $upload->getRequest(); - } - - // if this is a media type, we will return the raw response - // rather than using an expected class - if (isset($parameters['alt']) && $parameters['alt']['value'] == 'media') { - $expectedClass = null; - } - - // if the client is marked for deferring, rather than - // execute the request, return the response - if ($this->client->shouldDefer()) { - // @TODO find a better way to do this - $request = $request - ->withHeader('X-Php-Expected-Class', $expectedClass); - - return $request; - } - - return $this->client->execute($request, $expectedClass); - } - - protected function convertToArrayAndStripNulls($o) - { - $o = (array) $o; - foreach ($o as $k => $v) { - if ($v === null) { - unset($o[$k]); - } elseif (is_object($v) || is_array($v)) { - $o[$k] = $this->convertToArrayAndStripNulls($o[$k]); - } - } - return $o; - } - - /** - * Parse/expand request parameters and create a fully qualified - * request uri. - * @static - * @param string $restPath - * @param array $params - * @return string $requestUrl - */ - public function createRequestUri($restPath, $params) - { - // Override the default servicePath address if the $restPath use a / - if ('/' == substr($restPath, 0, 1)) { - $requestUrl = substr($restPath, 1); - } else { - $requestUrl = $this->servicePath . $restPath; - } - - // code for leading slash - if ($this->rootUrl) { - if ('/' !== substr($this->rootUrl, -1) && '/' !== substr($requestUrl, 0, 1)) { - $requestUrl = '/' . $requestUrl; - } - $requestUrl = $this->rootUrl . $requestUrl; - } - $uriTemplateVars = array(); - $queryVars = array(); - foreach ($params as $paramName => $paramSpec) { - if ($paramSpec['type'] == 'boolean') { - $paramSpec['value'] = $paramSpec['value'] ? 'true' : 'false'; - } - if ($paramSpec['location'] == 'path') { - $uriTemplateVars[$paramName] = $paramSpec['value']; - } else if ($paramSpec['location'] == 'query') { - if (is_array($paramSpec['value'])) { - foreach ($paramSpec['value'] as $value) { - $queryVars[] = $paramName . '=' . rawurlencode(rawurldecode($value)); - } - } else { - $queryVars[] = $paramName . '=' . rawurlencode(rawurldecode($paramSpec['value'])); - } - } - } - - if (count($uriTemplateVars)) { - $uriTemplateParser = new Google_Utils_UriTemplate(); - $requestUrl = $uriTemplateParser->parse($requestUrl, $uriTemplateVars); - } - - if (count($queryVars)) { - $requestUrl .= '?' . implode('&', $queryVars); - } - - return $requestUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/src/Google/Task/Exception.php b/services/libs/google-api-php-client-2.4.1/src/Google/Task/Exception.php deleted file mode 100644 index 5422e6fc..00000000 --- a/services/libs/google-api-php-client-2.4.1/src/Google/Task/Exception.php +++ /dev/null @@ -1,20 +0,0 @@ - self::TASK_RETRY_ALWAYS, - '503' => self::TASK_RETRY_ALWAYS, - 'rateLimitExceeded' => self::TASK_RETRY_ALWAYS, - 'userRateLimitExceeded' => self::TASK_RETRY_ALWAYS, - 6 => self::TASK_RETRY_ALWAYS, // CURLE_COULDNT_RESOLVE_HOST - 7 => self::TASK_RETRY_ALWAYS, // CURLE_COULDNT_CONNECT - 28 => self::TASK_RETRY_ALWAYS, // CURLE_OPERATION_TIMEOUTED - 35 => self::TASK_RETRY_ALWAYS, // CURLE_SSL_CONNECT_ERROR - 52 => self::TASK_RETRY_ALWAYS // CURLE_GOT_NOTHING - ]; - - /** - * Creates a new task runner with exponential backoff support. - * - * @param array $config The task runner config - * @param string $name The name of the current task (used for logging) - * @param callable $action The task to run and possibly retry - * @param array $arguments The task arguments - * @throws Google_Task_Exception when misconfigured - */ - public function __construct( - $config, - $name, - $action, - array $arguments = array() - ) { - if (isset($config['initial_delay'])) { - if ($config['initial_delay'] < 0) { - throw new Google_Task_Exception( - 'Task configuration `initial_delay` must not be negative.' - ); - } - - $this->delay = $config['initial_delay']; - } - - if (isset($config['max_delay'])) { - if ($config['max_delay'] <= 0) { - throw new Google_Task_Exception( - 'Task configuration `max_delay` must be greater than 0.' - ); - } - - $this->maxDelay = $config['max_delay']; - } - - if (isset($config['factor'])) { - if ($config['factor'] <= 0) { - throw new Google_Task_Exception( - 'Task configuration `factor` must be greater than 0.' - ); - } - - $this->factor = $config['factor']; - } - - if (isset($config['jitter'])) { - if ($config['jitter'] <= 0) { - throw new Google_Task_Exception( - 'Task configuration `jitter` must be greater than 0.' - ); - } - - $this->jitter = $config['jitter']; - } - - if (isset($config['retries'])) { - if ($config['retries'] < 0) { - throw new Google_Task_Exception( - 'Task configuration `retries` must not be negative.' - ); - } - $this->maxAttempts += $config['retries']; - } - - if (!is_callable($action)) { - throw new Google_Task_Exception( - 'Task argument `$action` must be a valid callable.' - ); - } - - $this->action = $action; - $this->arguments = $arguments; - } - - /** - * Checks if a retry can be attempted. - * - * @return boolean - */ - public function canAttempt() - { - return $this->attempts < $this->maxAttempts; - } - - /** - * Runs the task and (if applicable) automatically retries when errors occur. - * - * @return mixed - * @throws Google_Task_Retryable on failure when no retries are available. - */ - public function run() - { - while ($this->attempt()) { - try { - return call_user_func_array($this->action, $this->arguments); - } catch (Google_Service_Exception $exception) { - $allowedRetries = $this->allowedRetries( - $exception->getCode(), - $exception->getErrors() - ); - - if (!$this->canAttempt() || !$allowedRetries) { - throw $exception; - } - - if ($allowedRetries > 0) { - $this->maxAttempts = min( - $this->maxAttempts, - $this->attempts + $allowedRetries - ); - } - } - } - } - - /** - * Runs a task once, if possible. This is useful for bypassing the `run()` - * loop. - * - * NOTE: If this is not the first attempt, this function will sleep in - * accordance to the backoff configurations before running the task. - * - * @return boolean - */ - public function attempt() - { - if (!$this->canAttempt()) { - return false; - } - - if ($this->attempts > 0) { - $this->backOff(); - } - - $this->attempts++; - return true; - } - - /** - * Sleeps in accordance to the backoff configurations. - */ - private function backOff() - { - $delay = $this->getDelay(); - - usleep($delay * 1000000); - } - - /** - * Gets the delay (in seconds) for the current backoff period. - * - * @return float - */ - private function getDelay() - { - $jitter = $this->getJitter(); - $factor = $this->attempts > 1 ? $this->factor + $jitter : 1 + abs($jitter); - - return $this->delay = min($this->maxDelay, $this->delay * $factor); - } - - /** - * Gets the current jitter (random number between -$this->jitter and - * $this->jitter). - * - * @return float - */ - private function getJitter() - { - return $this->jitter * 2 * mt_rand() / mt_getrandmax() - $this->jitter; - } - - /** - * Gets the number of times the associated task can be retried. - * - * NOTE: -1 is returned if the task can be retried indefinitely - * - * @return integer - */ - public function allowedRetries($code, $errors = array()) - { - if (isset($this->retryMap[$code])) { - return $this->retryMap[$code]; - } - - if ( - !empty($errors) && - isset($errors[0]['reason'], $this->retryMap[$errors[0]['reason']]) - ) { - return $this->retryMap[$errors[0]['reason']]; - } - - return 0; - } - - public function setRetryMap($retryMap) - { - $this->retryMap = $retryMap; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/src/Google/Utils/UriTemplate.php b/services/libs/google-api-php-client-2.4.1/src/Google/Utils/UriTemplate.php deleted file mode 100644 index e59fe9f2..00000000 --- a/services/libs/google-api-php-client-2.4.1/src/Google/Utils/UriTemplate.php +++ /dev/null @@ -1,333 +0,0 @@ - "reserved", - "/" => "segments", - "." => "dotprefix", - "#" => "fragment", - ";" => "semicolon", - "?" => "form", - "&" => "continuation" - ); - - /** - * @var reserved array - * These are the characters which should not be URL encoded in reserved - * strings. - */ - private $reserved = array( - "=", ",", "!", "@", "|", ":", "/", "?", "#", - "[", "]",'$', "&", "'", "(", ")", "*", "+", ";" - ); - private $reservedEncoded = array( - "%3D", "%2C", "%21", "%40", "%7C", "%3A", "%2F", "%3F", - "%23", "%5B", "%5D", "%24", "%26", "%27", "%28", "%29", - "%2A", "%2B", "%3B" - ); - - public function parse($string, array $parameters) - { - return $this->resolveNextSection($string, $parameters); - } - - /** - * This function finds the first matching {...} block and - * executes the replacement. It then calls itself to find - * subsequent blocks, if any. - */ - private function resolveNextSection($string, $parameters) - { - $start = strpos($string, "{"); - if ($start === false) { - return $string; - } - $end = strpos($string, "}"); - if ($end === false) { - return $string; - } - $string = $this->replace($string, $start, $end, $parameters); - return $this->resolveNextSection($string, $parameters); - } - - private function replace($string, $start, $end, $parameters) - { - // We know a data block will have {} round it, so we can strip that. - $data = substr($string, $start + 1, $end - $start - 1); - - // If the first character is one of the reserved operators, it effects - // the processing of the stream. - if (isset($this->operators[$data[0]])) { - $op = $this->operators[$data[0]]; - $data = substr($data, 1); - $prefix = ""; - $prefix_on_missing = false; - - switch ($op) { - case "reserved": - // Reserved means certain characters should not be URL encoded - $data = $this->replaceVars($data, $parameters, ",", null, true); - break; - case "fragment": - // Comma separated with fragment prefix. Bare values only. - $prefix = "#"; - $prefix_on_missing = true; - $data = $this->replaceVars($data, $parameters, ",", null, true); - break; - case "segments": - // Slash separated data. Bare values only. - $prefix = "/"; - $data =$this->replaceVars($data, $parameters, "/"); - break; - case "dotprefix": - // Dot separated data. Bare values only. - $prefix = "."; - $prefix_on_missing = true; - $data = $this->replaceVars($data, $parameters, "."); - break; - case "semicolon": - // Semicolon prefixed and separated. Uses the key name - $prefix = ";"; - $data = $this->replaceVars($data, $parameters, ";", "=", false, true, false); - break; - case "form": - // Standard URL format. Uses the key name - $prefix = "?"; - $data = $this->replaceVars($data, $parameters, "&", "="); - break; - case "continuation": - // Standard URL, but with leading ampersand. Uses key name. - $prefix = "&"; - $data = $this->replaceVars($data, $parameters, "&", "="); - break; - } - - // Add the initial prefix character if data is valid. - if ($data || ($data !== false && $prefix_on_missing)) { - $data = $prefix . $data; - } - - } else { - // If no operator we replace with the defaults. - $data = $this->replaceVars($data, $parameters); - } - // This is chops out the {...} and replaces with the new section. - return substr($string, 0, $start) . $data . substr($string, $end + 1); - } - - private function replaceVars( - $section, - $parameters, - $sep = ",", - $combine = null, - $reserved = false, - $tag_empty = false, - $combine_on_empty = true - ) { - if (strpos($section, ",") === false) { - // If we only have a single value, we can immediately process. - return $this->combine( - $section, - $parameters, - $sep, - $combine, - $reserved, - $tag_empty, - $combine_on_empty - ); - } else { - // If we have multiple values, we need to split and loop over them. - // Each is treated individually, then glued together with the - // separator character. - $vars = explode(",", $section); - return $this->combineList( - $vars, - $sep, - $parameters, - $combine, - $reserved, - false, // Never emit empty strings in multi-param replacements - $combine_on_empty - ); - } - } - - public function combine( - $key, - $parameters, - $sep, - $combine, - $reserved, - $tag_empty, - $combine_on_empty - ) { - $length = false; - $explode = false; - $skip_final_combine = false; - $value = false; - - // Check for length restriction. - if (strpos($key, ":") !== false) { - list($key, $length) = explode(":", $key); - } - - // Check for explode parameter. - if ($key[strlen($key) - 1] == "*") { - $explode = true; - $key = substr($key, 0, -1); - $skip_final_combine = true; - } - - // Define the list separator. - $list_sep = $explode ? $sep : ","; - - if (isset($parameters[$key])) { - $data_type = $this->getDataType($parameters[$key]); - switch ($data_type) { - case self::TYPE_SCALAR: - $value = $this->getValue($parameters[$key], $length); - break; - case self::TYPE_LIST: - $values = array(); - foreach ($parameters[$key] as $pkey => $pvalue) { - $pvalue = $this->getValue($pvalue, $length); - if ($combine && $explode) { - $values[$pkey] = $key . $combine . $pvalue; - } else { - $values[$pkey] = $pvalue; - } - } - $value = implode($list_sep, $values); - if ($value == '') { - return ''; - } - break; - case self::TYPE_MAP: - $values = array(); - foreach ($parameters[$key] as $pkey => $pvalue) { - $pvalue = $this->getValue($pvalue, $length); - if ($explode) { - $pkey = $this->getValue($pkey, $length); - $values[] = $pkey . "=" . $pvalue; // Explode triggers = combine. - } else { - $values[] = $pkey; - $values[] = $pvalue; - } - } - $value = implode($list_sep, $values); - if ($value == '') { - return false; - } - break; - } - } else if ($tag_empty) { - // If we are just indicating empty values with their key name, return that. - return $key; - } else { - // Otherwise we can skip this variable due to not being defined. - return false; - } - - if ($reserved) { - $value = str_replace($this->reservedEncoded, $this->reserved, $value); - } - - // If we do not need to include the key name, we just return the raw - // value. - if (!$combine || $skip_final_combine) { - return $value; - } - - // Else we combine the key name: foo=bar, if value is not the empty string. - return $key . ($value != '' || $combine_on_empty ? $combine . $value : ''); - } - - /** - * Return the type of a passed in value - */ - private function getDataType($data) - { - if (is_array($data)) { - reset($data); - if (key($data) !== 0) { - return self::TYPE_MAP; - } - return self::TYPE_LIST; - } - return self::TYPE_SCALAR; - } - - /** - * Utility function that merges multiple combine calls - * for multi-key templates. - */ - private function combineList( - $vars, - $sep, - $parameters, - $combine, - $reserved, - $tag_empty, - $combine_on_empty - ) { - $ret = array(); - foreach ($vars as $var) { - $response = $this->combine( - $var, - $parameters, - $sep, - $combine, - $reserved, - $tag_empty, - $combine_on_empty - ); - if ($response === false) { - continue; - } - $ret[] = $response; - } - return implode($sep, $ret); - } - - /** - * Utility function to encode and trim values - */ - private function getValue($value, $length) - { - if ($length) { - $value = substr($value, 0, $length); - } - $value = rawurlencode($value); - return $value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/src/Google/autoload.php b/services/libs/google-api-php-client-2.4.1/src/Google/autoload.php deleted file mode 100644 index 8b493010..00000000 --- a/services/libs/google-api-php-client-2.4.1/src/Google/autoload.php +++ /dev/null @@ -1,21 +0,0 @@ - - * Jordi Boggiano - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Composer\Autoload; - -/** - * ClassLoader implements a PSR-0, PSR-4 and classmap class loader. - * - * $loader = new \Composer\Autoload\ClassLoader(); - * - * // register classes with namespaces - * $loader->add('Symfony\Component', __DIR__.'/component'); - * $loader->add('Symfony', __DIR__.'/framework'); - * - * // activate the autoloader - * $loader->register(); - * - * // to enable searching the include path (eg. for PEAR packages) - * $loader->setUseIncludePath(true); - * - * In this example, if you try to use a class in the Symfony\Component - * namespace or one of its children (Symfony\Component\Console for instance), - * the autoloader will first look for the class under the component/ - * directory, and it will then fallback to the framework/ directory if not - * found before giving up. - * - * This class is loosely based on the Symfony UniversalClassLoader. - * - * @author Fabien Potencier - * @author Jordi Boggiano - * @see http://www.php-fig.org/psr/psr-0/ - * @see http://www.php-fig.org/psr/psr-4/ - */ -class ClassLoader -{ - // PSR-4 - private $prefixLengthsPsr4 = array(); - private $prefixDirsPsr4 = array(); - private $fallbackDirsPsr4 = array(); - - // PSR-0 - private $prefixesPsr0 = array(); - private $fallbackDirsPsr0 = array(); - - private $useIncludePath = false; - private $classMap = array(); - private $classMapAuthoritative = false; - private $missingClasses = array(); - private $apcuPrefix; - - public function getPrefixes() - { - if (!empty($this->prefixesPsr0)) { - return call_user_func_array('array_merge', $this->prefixesPsr0); - } - - return array(); - } - - public function getPrefixesPsr4() - { - return $this->prefixDirsPsr4; - } - - public function getFallbackDirs() - { - return $this->fallbackDirsPsr0; - } - - public function getFallbackDirsPsr4() - { - return $this->fallbackDirsPsr4; - } - - public function getClassMap() - { - return $this->classMap; - } - - /** - * @param array $classMap Class to filename map - */ - public function addClassMap(array $classMap) - { - if ($this->classMap) { - $this->classMap = array_merge($this->classMap, $classMap); - } else { - $this->classMap = $classMap; - } - } - - /** - * Registers a set of PSR-0 directories for a given prefix, either - * appending or prepending to the ones previously set for this prefix. - * - * @param string $prefix The prefix - * @param array|string $paths The PSR-0 root directories - * @param bool $prepend Whether to prepend the directories - */ - public function add($prefix, $paths, $prepend = false) - { - if (!$prefix) { - if ($prepend) { - $this->fallbackDirsPsr0 = array_merge( - (array) $paths, - $this->fallbackDirsPsr0 - ); - } else { - $this->fallbackDirsPsr0 = array_merge( - $this->fallbackDirsPsr0, - (array) $paths - ); - } - - return; - } - - $first = $prefix[0]; - if (!isset($this->prefixesPsr0[$first][$prefix])) { - $this->prefixesPsr0[$first][$prefix] = (array) $paths; - - return; - } - if ($prepend) { - $this->prefixesPsr0[$first][$prefix] = array_merge( - (array) $paths, - $this->prefixesPsr0[$first][$prefix] - ); - } else { - $this->prefixesPsr0[$first][$prefix] = array_merge( - $this->prefixesPsr0[$first][$prefix], - (array) $paths - ); - } - } - - /** - * Registers a set of PSR-4 directories for a given namespace, either - * appending or prepending to the ones previously set for this namespace. - * - * @param string $prefix The prefix/namespace, with trailing '\\' - * @param array|string $paths The PSR-4 base directories - * @param bool $prepend Whether to prepend the directories - * - * @throws \InvalidArgumentException - */ - public function addPsr4($prefix, $paths, $prepend = false) - { - if (!$prefix) { - // Register directories for the root namespace. - if ($prepend) { - $this->fallbackDirsPsr4 = array_merge( - (array) $paths, - $this->fallbackDirsPsr4 - ); - } else { - $this->fallbackDirsPsr4 = array_merge( - $this->fallbackDirsPsr4, - (array) $paths - ); - } - } elseif (!isset($this->prefixDirsPsr4[$prefix])) { - // Register directories for a new namespace. - $length = strlen($prefix); - if ('\\' !== $prefix[$length - 1]) { - throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator."); - } - $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length; - $this->prefixDirsPsr4[$prefix] = (array) $paths; - } elseif ($prepend) { - // Prepend directories for an already registered namespace. - $this->prefixDirsPsr4[$prefix] = array_merge( - (array) $paths, - $this->prefixDirsPsr4[$prefix] - ); - } else { - // Append directories for an already registered namespace. - $this->prefixDirsPsr4[$prefix] = array_merge( - $this->prefixDirsPsr4[$prefix], - (array) $paths - ); - } - } - - /** - * Registers a set of PSR-0 directories for a given prefix, - * replacing any others previously set for this prefix. - * - * @param string $prefix The prefix - * @param array|string $paths The PSR-0 base directories - */ - public function set($prefix, $paths) - { - if (!$prefix) { - $this->fallbackDirsPsr0 = (array) $paths; - } else { - $this->prefixesPsr0[$prefix[0]][$prefix] = (array) $paths; - } - } - - /** - * Registers a set of PSR-4 directories for a given namespace, - * replacing any others previously set for this namespace. - * - * @param string $prefix The prefix/namespace, with trailing '\\' - * @param array|string $paths The PSR-4 base directories - * - * @throws \InvalidArgumentException - */ - public function setPsr4($prefix, $paths) - { - if (!$prefix) { - $this->fallbackDirsPsr4 = (array) $paths; - } else { - $length = strlen($prefix); - if ('\\' !== $prefix[$length - 1]) { - throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator."); - } - $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length; - $this->prefixDirsPsr4[$prefix] = (array) $paths; - } - } - - /** - * Turns on searching the include path for class files. - * - * @param bool $useIncludePath - */ - public function setUseIncludePath($useIncludePath) - { - $this->useIncludePath = $useIncludePath; - } - - /** - * Can be used to check if the autoloader uses the include path to check - * for classes. - * - * @return bool - */ - public function getUseIncludePath() - { - return $this->useIncludePath; - } - - /** - * Turns off searching the prefix and fallback directories for classes - * that have not been registered with the class map. - * - * @param bool $classMapAuthoritative - */ - public function setClassMapAuthoritative($classMapAuthoritative) - { - $this->classMapAuthoritative = $classMapAuthoritative; - } - - /** - * Should class lookup fail if not found in the current class map? - * - * @return bool - */ - public function isClassMapAuthoritative() - { - return $this->classMapAuthoritative; - } - - /** - * APCu prefix to use to cache found/not-found classes, if the extension is enabled. - * - * @param string|null $apcuPrefix - */ - public function setApcuPrefix($apcuPrefix) - { - $this->apcuPrefix = function_exists('apcu_fetch') && filter_var(ini_get('apc.enabled'), FILTER_VALIDATE_BOOLEAN) ? $apcuPrefix : null; - } - - /** - * The APCu prefix in use, or null if APCu caching is not enabled. - * - * @return string|null - */ - public function getApcuPrefix() - { - return $this->apcuPrefix; - } - - /** - * Registers this instance as an autoloader. - * - * @param bool $prepend Whether to prepend the autoloader or not - */ - public function register($prepend = false) - { - spl_autoload_register(array($this, 'loadClass'), true, $prepend); - } - - /** - * Unregisters this instance as an autoloader. - */ - public function unregister() - { - spl_autoload_unregister(array($this, 'loadClass')); - } - - /** - * Loads the given class or interface. - * - * @param string $class The name of the class - * @return bool|null True if loaded, null otherwise - */ - public function loadClass($class) - { - if ($file = $this->findFile($class)) { - includeFile($file); - - return true; - } - } - - /** - * Finds the path to the file where the class is defined. - * - * @param string $class The name of the class - * - * @return string|false The path if found, false otherwise - */ - public function findFile($class) - { - // class map lookup - if (isset($this->classMap[$class])) { - return $this->classMap[$class]; - } - if ($this->classMapAuthoritative || isset($this->missingClasses[$class])) { - return false; - } - if (null !== $this->apcuPrefix) { - $file = apcu_fetch($this->apcuPrefix.$class, $hit); - if ($hit) { - return $file; - } - } - - $file = $this->findFileWithExtension($class, '.php'); - - // Search for Hack files if we are running on HHVM - if (false === $file && defined('HHVM_VERSION')) { - $file = $this->findFileWithExtension($class, '.hh'); - } - - if (null !== $this->apcuPrefix) { - apcu_add($this->apcuPrefix.$class, $file); - } - - if (false === $file) { - // Remember that this class does not exist. - $this->missingClasses[$class] = true; - } - - return $file; - } - - private function findFileWithExtension($class, $ext) - { - // PSR-4 lookup - $logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR) . $ext; - - $first = $class[0]; - if (isset($this->prefixLengthsPsr4[$first])) { - $subPath = $class; - while (false !== $lastPos = strrpos($subPath, '\\')) { - $subPath = substr($subPath, 0, $lastPos); - $search = $subPath . '\\'; - if (isset($this->prefixDirsPsr4[$search])) { - $pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1); - foreach ($this->prefixDirsPsr4[$search] as $dir) { - if (file_exists($file = $dir . $pathEnd)) { - return $file; - } - } - } - } - } - - // PSR-4 fallback dirs - foreach ($this->fallbackDirsPsr4 as $dir) { - if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) { - return $file; - } - } - - // PSR-0 lookup - if (false !== $pos = strrpos($class, '\\')) { - // namespaced class name - $logicalPathPsr0 = substr($logicalPathPsr4, 0, $pos + 1) - . strtr(substr($logicalPathPsr4, $pos + 1), '_', DIRECTORY_SEPARATOR); - } else { - // PEAR-like class name - $logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR) . $ext; - } - - if (isset($this->prefixesPsr0[$first])) { - foreach ($this->prefixesPsr0[$first] as $prefix => $dirs) { - if (0 === strpos($class, $prefix)) { - foreach ($dirs as $dir) { - if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) { - return $file; - } - } - } - } - } - - // PSR-0 fallback dirs - foreach ($this->fallbackDirsPsr0 as $dir) { - if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) { - return $file; - } - } - - // PSR-0 include paths. - if ($this->useIncludePath && $file = stream_resolve_include_path($logicalPathPsr0)) { - return $file; - } - - return false; - } -} - -/** - * Scope isolated include. - * - * Prevents access to $this/self from included files. - */ -function includeFile($file) -{ - include $file; -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/composer/LICENSE b/services/libs/google-api-php-client-2.4.1/vendor/composer/LICENSE deleted file mode 100644 index f27399a0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/composer/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ - -Copyright (c) Nils Adermann, Jordi Boggiano - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is furnished -to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - diff --git a/services/libs/google-api-php-client-2.4.1/vendor/composer/autoload_classmap.php b/services/libs/google-api-php-client-2.4.1/vendor/composer/autoload_classmap.php deleted file mode 100644 index a4896b74..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/composer/autoload_classmap.php +++ /dev/null @@ -1,11 +0,0 @@ - $baseDir . '/src/Google/Service/Exception.php', - 'Google_Service_Resource' => $baseDir . '/src/Google/Service/Resource.php', -); diff --git a/services/libs/google-api-php-client-2.4.1/vendor/composer/autoload_files.php b/services/libs/google-api-php-client-2.4.1/vendor/composer/autoload_files.php deleted file mode 100644 index 23571c61..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/composer/autoload_files.php +++ /dev/null @@ -1,14 +0,0 @@ - $vendorDir . '/ralouphie/getallheaders/src/getallheaders.php', - 'c964ee0ededf28c96ebd9db5099ef910' => $vendorDir . '/guzzlehttp/promises/src/functions_include.php', - 'a0edc8309cc5e1d60e3047b5df6b7052' => $vendorDir . '/guzzlehttp/psr7/src/functions_include.php', - '37a3dc5111fe8f707ab4c132ef1dbc62' => $vendorDir . '/guzzlehttp/guzzle/src/functions_include.php', - 'decc78cc4436b1292c6c0d151b19445c' => $vendorDir . '/phpseclib/phpseclib/phpseclib/bootstrap.php', -); diff --git a/services/libs/google-api-php-client-2.4.1/vendor/composer/autoload_namespaces.php b/services/libs/google-api-php-client-2.4.1/vendor/composer/autoload_namespaces.php deleted file mode 100644 index 11ff06f3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/composer/autoload_namespaces.php +++ /dev/null @@ -1,11 +0,0 @@ - array($vendorDir . '/google/apiclient-services/src'), - 'Google_' => array($baseDir . '/src'), -); diff --git a/services/libs/google-api-php-client-2.4.1/vendor/composer/autoload_psr4.php b/services/libs/google-api-php-client-2.4.1/vendor/composer/autoload_psr4.php deleted file mode 100644 index 36bd6b5a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/composer/autoload_psr4.php +++ /dev/null @@ -1,19 +0,0 @@ - array($vendorDir . '/phpseclib/phpseclib/phpseclib'), - 'Psr\\Log\\' => array($vendorDir . '/psr/log/Psr/Log'), - 'Psr\\Http\\Message\\' => array($vendorDir . '/psr/http-message/src'), - 'Psr\\Cache\\' => array($vendorDir . '/psr/cache/src'), - 'Monolog\\' => array($vendorDir . '/monolog/monolog/src/Monolog'), - 'GuzzleHttp\\Psr7\\' => array($vendorDir . '/guzzlehttp/psr7/src'), - 'GuzzleHttp\\Promise\\' => array($vendorDir . '/guzzlehttp/promises/src'), - 'GuzzleHttp\\' => array($vendorDir . '/guzzlehttp/guzzle/src'), - 'Google\\Auth\\' => array($vendorDir . '/google/auth/src'), - 'Firebase\\JWT\\' => array($vendorDir . '/firebase/php-jwt/src'), -); diff --git a/services/libs/google-api-php-client-2.4.1/vendor/composer/autoload_real.php b/services/libs/google-api-php-client-2.4.1/vendor/composer/autoload_real.php deleted file mode 100644 index e6540271..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/composer/autoload_real.php +++ /dev/null @@ -1,70 +0,0 @@ -= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); - if ($useStaticLoader) { - require_once __DIR__ . '/autoload_static.php'; - - call_user_func(\Composer\Autoload\ComposerStaticInitc3e923ed25651a932bf958403aba88eb::getInitializer($loader)); - } else { - $map = require __DIR__ . '/autoload_namespaces.php'; - foreach ($map as $namespace => $path) { - $loader->set($namespace, $path); - } - - $map = require __DIR__ . '/autoload_psr4.php'; - foreach ($map as $namespace => $path) { - $loader->setPsr4($namespace, $path); - } - - $classMap = require __DIR__ . '/autoload_classmap.php'; - if ($classMap) { - $loader->addClassMap($classMap); - } - } - - $loader->register(true); - - if ($useStaticLoader) { - $includeFiles = Composer\Autoload\ComposerStaticInitc3e923ed25651a932bf958403aba88eb::$files; - } else { - $includeFiles = require __DIR__ . '/autoload_files.php'; - } - foreach ($includeFiles as $fileIdentifier => $file) { - composerRequirec3e923ed25651a932bf958403aba88eb($fileIdentifier, $file); - } - - return $loader; - } -} - -function composerRequirec3e923ed25651a932bf958403aba88eb($fileIdentifier, $file) -{ - if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { - require $file; - - $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/composer/autoload_static.php b/services/libs/google-api-php-client-2.4.1/vendor/composer/autoload_static.php deleted file mode 100644 index f4fededb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/composer/autoload_static.php +++ /dev/null @@ -1,117 +0,0 @@ - __DIR__ . '/..' . '/ralouphie/getallheaders/src/getallheaders.php', - 'c964ee0ededf28c96ebd9db5099ef910' => __DIR__ . '/..' . '/guzzlehttp/promises/src/functions_include.php', - 'a0edc8309cc5e1d60e3047b5df6b7052' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/functions_include.php', - '37a3dc5111fe8f707ab4c132ef1dbc62' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/functions_include.php', - 'decc78cc4436b1292c6c0d151b19445c' => __DIR__ . '/..' . '/phpseclib/phpseclib/phpseclib/bootstrap.php', - ); - - public static $prefixLengthsPsr4 = array ( - 'p' => - array ( - 'phpseclib\\' => 10, - ), - 'P' => - array ( - 'Psr\\Log\\' => 8, - 'Psr\\Http\\Message\\' => 17, - 'Psr\\Cache\\' => 10, - ), - 'M' => - array ( - 'Monolog\\' => 8, - ), - 'G' => - array ( - 'GuzzleHttp\\Psr7\\' => 16, - 'GuzzleHttp\\Promise\\' => 19, - 'GuzzleHttp\\' => 11, - 'Google\\Auth\\' => 12, - ), - 'F' => - array ( - 'Firebase\\JWT\\' => 13, - ), - ); - - public static $prefixDirsPsr4 = array ( - 'phpseclib\\' => - array ( - 0 => __DIR__ . '/..' . '/phpseclib/phpseclib/phpseclib', - ), - 'Psr\\Log\\' => - array ( - 0 => __DIR__ . '/..' . '/psr/log/Psr/Log', - ), - 'Psr\\Http\\Message\\' => - array ( - 0 => __DIR__ . '/..' . '/psr/http-message/src', - ), - 'Psr\\Cache\\' => - array ( - 0 => __DIR__ . '/..' . '/psr/cache/src', - ), - 'Monolog\\' => - array ( - 0 => __DIR__ . '/..' . '/monolog/monolog/src/Monolog', - ), - 'GuzzleHttp\\Psr7\\' => - array ( - 0 => __DIR__ . '/..' . '/guzzlehttp/psr7/src', - ), - 'GuzzleHttp\\Promise\\' => - array ( - 0 => __DIR__ . '/..' . '/guzzlehttp/promises/src', - ), - 'GuzzleHttp\\' => - array ( - 0 => __DIR__ . '/..' . '/guzzlehttp/guzzle/src', - ), - 'Google\\Auth\\' => - array ( - 0 => __DIR__ . '/..' . '/google/auth/src', - ), - 'Firebase\\JWT\\' => - array ( - 0 => __DIR__ . '/..' . '/firebase/php-jwt/src', - ), - ); - - public static $prefixesPsr0 = array ( - 'G' => - array ( - 'Google_Service_' => - array ( - 0 => __DIR__ . '/..' . '/google/apiclient-services/src', - ), - 'Google_' => - array ( - 0 => __DIR__ . '/../..' . '/src', - ), - ), - ); - - public static $classMap = array ( - 'Google_Service_Exception' => __DIR__ . '/../..' . '/src/Google/Service/Exception.php', - 'Google_Service_Resource' => __DIR__ . '/../..' . '/src/Google/Service/Resource.php', - ); - - public static function getInitializer(ClassLoader $loader) - { - return \Closure::bind(function () use ($loader) { - $loader->prefixLengthsPsr4 = ComposerStaticInitc3e923ed25651a932bf958403aba88eb::$prefixLengthsPsr4; - $loader->prefixDirsPsr4 = ComposerStaticInitc3e923ed25651a932bf958403aba88eb::$prefixDirsPsr4; - $loader->prefixesPsr0 = ComposerStaticInitc3e923ed25651a932bf958403aba88eb::$prefixesPsr0; - $loader->classMap = ComposerStaticInitc3e923ed25651a932bf958403aba88eb::$classMap; - - }, null, ClassLoader::class); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/composer/installed.json b/services/libs/google-api-php-client-2.4.1/vendor/composer/installed.json deleted file mode 100644 index 98d749ba..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/composer/installed.json +++ /dev/null @@ -1,710 +0,0 @@ -[ - { - "name": "firebase/php-jwt", - "version": "v5.2.0", - "version_normalized": "5.2.0.0", - "source": { - "type": "git", - "url": "https://github.com/firebase/php-jwt.git", - "reference": "feb0e820b8436873675fd3aca04f3728eb2185cb" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/firebase/php-jwt/zipball/feb0e820b8436873675fd3aca04f3728eb2185cb", - "reference": "feb0e820b8436873675fd3aca04f3728eb2185cb", - "shasum": "" - }, - "require": { - "php": ">=5.3.0" - }, - "require-dev": { - "phpunit/phpunit": ">=4.8 <=9" - }, - "time": "2020-03-25T18:49:23+00:00", - "type": "library", - "installation-source": "dist", - "autoload": { - "psr-4": { - "Firebase\\JWT\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Neuman Vong", - "email": "neuman+pear@twilio.com", - "role": "Developer" - }, - { - "name": "Anant Narayanan", - "email": "anant@php.net", - "role": "Developer" - } - ], - "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.", - "homepage": "https://github.com/firebase/php-jwt", - "keywords": [ - "jwt", - "php" - ] - }, - { - "name": "google/apiclient-services", - "version": "v0.127", - "version_normalized": "0.127.0.0", - "source": { - "type": "git", - "url": "https://github.com/googleapis/google-api-php-client-services.git", - "reference": "19eacad739807e522891bf3f911ffab4a4c29869" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/googleapis/google-api-php-client-services/zipball/19eacad739807e522891bf3f911ffab4a4c29869", - "reference": "19eacad739807e522891bf3f911ffab4a4c29869", - "shasum": "" - }, - "require": { - "php": ">=5.4" - }, - "require-dev": { - "phpunit/phpunit": "^4.8|^5" - }, - "time": "2020-02-17T00:24:19+00:00", - "type": "library", - "installation-source": "dist", - "autoload": { - "psr-0": { - "Google_Service_": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "Apache-2.0" - ], - "description": "Client library for Google APIs", - "homepage": "http://developers.google.com/api-client-library/php", - "keywords": [ - "google" - ] - }, - { - "name": "google/auth", - "version": "v1.7.1", - "version_normalized": "1.7.1.0", - "source": { - "type": "git", - "url": "https://github.com/googleapis/google-auth-library-php.git", - "reference": "39e243a7d8320b1889ab8bb4cd6f98f7af83c582" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/googleapis/google-auth-library-php/zipball/39e243a7d8320b1889ab8bb4cd6f98f7af83c582", - "reference": "39e243a7d8320b1889ab8bb4cd6f98f7af83c582", - "shasum": "" - }, - "require": { - "firebase/php-jwt": "~2.0|~3.0|~4.0|~5.0", - "guzzlehttp/guzzle": "~5.3.1|~6.0", - "guzzlehttp/psr7": "^1.2", - "php": ">=5.4", - "psr/cache": "^1.0", - "psr/http-message": "^1.0" - }, - "require-dev": { - "friendsofphp/php-cs-fixer": "^1.11", - "guzzlehttp/promises": "0.1.1|^1.3", - "kelvinmo/simplejwt": "^0.2.5", - "phpseclib/phpseclib": "^2", - "phpunit/phpunit": "^4.8.36|^5.7", - "sebastian/comparator": ">=1.2.3" - }, - "suggest": { - "phpseclib/phpseclib": "May be used in place of OpenSSL for signing strings or for token management. Please require version ^2." - }, - "time": "2020-02-12T20:54:50+00:00", - "type": "library", - "installation-source": "dist", - "autoload": { - "psr-4": { - "Google\\Auth\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "Apache-2.0" - ], - "description": "Google Auth Library for PHP", - "homepage": "http://github.com/google/google-auth-library-php", - "keywords": [ - "Authentication", - "google", - "oauth2" - ] - }, - { - "name": "guzzlehttp/guzzle", - "version": "6.5.2", - "version_normalized": "6.5.2.0", - "source": { - "type": "git", - "url": "https://github.com/guzzle/guzzle.git", - "reference": "43ece0e75098b7ecd8d13918293029e555a50f82" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/guzzle/guzzle/zipball/43ece0e75098b7ecd8d13918293029e555a50f82", - "reference": "43ece0e75098b7ecd8d13918293029e555a50f82", - "shasum": "" - }, - "require": { - "ext-json": "*", - "guzzlehttp/promises": "^1.0", - "guzzlehttp/psr7": "^1.6.1", - "php": ">=5.5" - }, - "require-dev": { - "ext-curl": "*", - "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0", - "psr/log": "^1.1" - }, - "suggest": { - "ext-intl": "Required for Internationalized Domain Name (IDN) support", - "psr/log": "Required for using the Log middleware" - }, - "time": "2019-12-23T11:57:10+00:00", - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "6.5-dev" - } - }, - "installation-source": "dist", - "autoload": { - "psr-4": { - "GuzzleHttp\\": "src/" - }, - "files": [ - "src/functions_include.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Michael Dowling", - "email": "mtdowling@gmail.com", - "homepage": "https://github.com/mtdowling" - } - ], - "description": "Guzzle is a PHP HTTP client library", - "homepage": "http://guzzlephp.org/", - "keywords": [ - "client", - "curl", - "framework", - "http", - "http client", - "rest", - "web service" - ] - }, - { - "name": "guzzlehttp/promises", - "version": "v1.3.1", - "version_normalized": "1.3.1.0", - "source": { - "type": "git", - "url": "https://github.com/guzzle/promises.git", - "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646", - "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646", - "shasum": "" - }, - "require": { - "php": ">=5.5.0" - }, - "require-dev": { - "phpunit/phpunit": "^4.0" - }, - "time": "2016-12-20T10:07:11+00:00", - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.4-dev" - } - }, - "installation-source": "dist", - "autoload": { - "psr-4": { - "GuzzleHttp\\Promise\\": "src/" - }, - "files": [ - "src/functions_include.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Michael Dowling", - "email": "mtdowling@gmail.com", - "homepage": "https://github.com/mtdowling" - } - ], - "description": "Guzzle promises library", - "keywords": [ - "promise" - ] - }, - { - "name": "guzzlehttp/psr7", - "version": "1.6.1", - "version_normalized": "1.6.1.0", - "source": { - "type": "git", - "url": "https://github.com/guzzle/psr7.git", - "reference": "239400de7a173fe9901b9ac7c06497751f00727a" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a", - "reference": "239400de7a173fe9901b9ac7c06497751f00727a", - "shasum": "" - }, - "require": { - "php": ">=5.4.0", - "psr/http-message": "~1.0", - "ralouphie/getallheaders": "^2.0.5 || ^3.0.0" - }, - "provide": { - "psr/http-message-implementation": "1.0" - }, - "require-dev": { - "ext-zlib": "*", - "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8" - }, - "suggest": { - "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses" - }, - "time": "2019-07-01T23:21:34+00:00", - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.6-dev" - } - }, - "installation-source": "dist", - "autoload": { - "psr-4": { - "GuzzleHttp\\Psr7\\": "src/" - }, - "files": [ - "src/functions_include.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Michael Dowling", - "email": "mtdowling@gmail.com", - "homepage": "https://github.com/mtdowling" - }, - { - "name": "Tobias Schultze", - "homepage": "https://github.com/Tobion" - } - ], - "description": "PSR-7 message implementation that also provides common utility methods", - "keywords": [ - "http", - "message", - "psr-7", - "request", - "response", - "stream", - "uri", - "url" - ] - }, - { - "name": "monolog/monolog", - "version": "2.0.2", - "version_normalized": "2.0.2.0", - "source": { - "type": "git", - "url": "https://github.com/Seldaek/monolog.git", - "reference": "c861fcba2ca29404dc9e617eedd9eff4616986b8" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/Seldaek/monolog/zipball/c861fcba2ca29404dc9e617eedd9eff4616986b8", - "reference": "c861fcba2ca29404dc9e617eedd9eff4616986b8", - "shasum": "" - }, - "require": { - "php": "^7.2", - "psr/log": "^1.0.1" - }, - "provide": { - "psr/log-implementation": "1.0.0" - }, - "require-dev": { - "aws/aws-sdk-php": "^2.4.9 || ^3.0", - "doctrine/couchdb": "~1.0@dev", - "elasticsearch/elasticsearch": "^6.0", - "graylog2/gelf-php": "^1.4.2", - "jakub-onderka/php-parallel-lint": "^0.9", - "php-amqplib/php-amqplib": "~2.4", - "php-console/php-console": "^3.1.3", - "phpspec/prophecy": "^1.6.1", - "phpunit/phpunit": "^8.3", - "predis/predis": "^1.1", - "rollbar/rollbar": "^1.3", - "ruflin/elastica": ">=0.90 <3.0", - "swiftmailer/swiftmailer": "^5.3|^6.0" - }, - "suggest": { - "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB", - "doctrine/couchdb": "Allow sending log messages to a CouchDB server", - "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client", - "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)", - "ext-mbstring": "Allow to work properly with unicode symbols", - "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)", - "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server", - "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)", - "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib", - "php-console/php-console": "Allow sending log messages to Google Chrome", - "rollbar/rollbar": "Allow sending log messages to Rollbar", - "ruflin/elastica": "Allow sending log messages to an Elastic Search server" - }, - "time": "2019-12-20T14:22:59+00:00", - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.x-dev" - } - }, - "installation-source": "dist", - "autoload": { - "psr-4": { - "Monolog\\": "src/Monolog" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Jordi Boggiano", - "email": "j.boggiano@seld.be", - "homepage": "http://seld.be" - } - ], - "description": "Sends your logs to files, sockets, inboxes, databases and various web services", - "homepage": "http://github.com/Seldaek/monolog", - "keywords": [ - "log", - "logging", - "psr-3" - ] - }, - { - "name": "phpseclib/phpseclib", - "version": "2.0.26", - "version_normalized": "2.0.26.0", - "source": { - "type": "git", - "url": "https://github.com/phpseclib/phpseclib.git", - "reference": "09655fcc1f8bab65727be036b28f6f20311c126c" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/09655fcc1f8bab65727be036b28f6f20311c126c", - "reference": "09655fcc1f8bab65727be036b28f6f20311c126c", - "shasum": "" - }, - "require": { - "php": ">=5.3.3" - }, - "require-dev": { - "phing/phing": "~2.7", - "phpunit/phpunit": "^4.8.35|^5.7|^6.0", - "sami/sami": "~2.0", - "squizlabs/php_codesniffer": "~2.0" - }, - "suggest": { - "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.", - "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.", - "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.", - "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations." - }, - "time": "2020-03-13T04:15:39+00:00", - "type": "library", - "installation-source": "dist", - "autoload": { - "files": [ - "phpseclib/bootstrap.php" - ], - "psr-4": { - "phpseclib\\": "phpseclib/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Jim Wigginton", - "email": "terrafrost@php.net", - "role": "Lead Developer" - }, - { - "name": "Patrick Monnerat", - "email": "pm@datasphere.ch", - "role": "Developer" - }, - { - "name": "Andreas Fischer", - "email": "bantu@phpbb.com", - "role": "Developer" - }, - { - "name": "Hans-Jürgen Petrich", - "email": "petrich@tronic-media.com", - "role": "Developer" - }, - { - "name": "Graham Campbell", - "email": "graham@alt-three.com", - "role": "Developer" - } - ], - "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.", - "homepage": "http://phpseclib.sourceforge.net", - "keywords": [ - "BigInteger", - "aes", - "asn.1", - "asn1", - "blowfish", - "crypto", - "cryptography", - "encryption", - "rsa", - "security", - "sftp", - "signature", - "signing", - "ssh", - "twofish", - "x.509", - "x509" - ] - }, - { - "name": "psr/cache", - "version": "1.0.1", - "version_normalized": "1.0.1.0", - "source": { - "type": "git", - "url": "https://github.com/php-fig/cache.git", - "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8", - "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8", - "shasum": "" - }, - "require": { - "php": ">=5.3.0" - }, - "time": "2016-08-06T20:24:11+00:00", - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, - "installation-source": "dist", - "autoload": { - "psr-4": { - "Psr\\Cache\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" - } - ], - "description": "Common interface for caching libraries", - "keywords": [ - "cache", - "psr", - "psr-6" - ] - }, - { - "name": "psr/http-message", - "version": "1.0.1", - "version_normalized": "1.0.1.0", - "source": { - "type": "git", - "url": "https://github.com/php-fig/http-message.git", - "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363", - "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363", - "shasum": "" - }, - "require": { - "php": ">=5.3.0" - }, - "time": "2016-08-06T14:39:51+00:00", - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, - "installation-source": "dist", - "autoload": { - "psr-4": { - "Psr\\Http\\Message\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" - } - ], - "description": "Common interface for HTTP messages", - "homepage": "https://github.com/php-fig/http-message", - "keywords": [ - "http", - "http-message", - "psr", - "psr-7", - "request", - "response" - ] - }, - { - "name": "psr/log", - "version": "1.1.3", - "version_normalized": "1.1.3.0", - "source": { - "type": "git", - "url": "https://github.com/php-fig/log.git", - "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc", - "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc", - "shasum": "" - }, - "require": { - "php": ">=5.3.0" - }, - "time": "2020-03-23T09:12:05+00:00", - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.1.x-dev" - } - }, - "installation-source": "dist", - "autoload": { - "psr-4": { - "Psr\\Log\\": "Psr/Log/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" - } - ], - "description": "Common interface for logging libraries", - "homepage": "https://github.com/php-fig/log", - "keywords": [ - "log", - "psr", - "psr-3" - ] - }, - { - "name": "ralouphie/getallheaders", - "version": "3.0.3", - "version_normalized": "3.0.3.0", - "source": { - "type": "git", - "url": "https://github.com/ralouphie/getallheaders.git", - "reference": "120b605dfeb996808c31b6477290a714d356e822" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822", - "reference": "120b605dfeb996808c31b6477290a714d356e822", - "shasum": "" - }, - "require": { - "php": ">=5.6" - }, - "require-dev": { - "php-coveralls/php-coveralls": "^2.1", - "phpunit/phpunit": "^5 || ^6.5" - }, - "time": "2019-03-08T08:55:37+00:00", - "type": "library", - "installation-source": "dist", - "autoload": { - "files": [ - "src/getallheaders.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Ralph Khattar", - "email": "ralph.khattar@gmail.com" - } - ], - "description": "A polyfill for getallheaders." - } -] diff --git a/services/libs/google-api-php-client-2.4.1/vendor/firebase/php-jwt/LICENSE b/services/libs/google-api-php-client-2.4.1/vendor/firebase/php-jwt/LICENSE deleted file mode 100644 index cb0c49b3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/firebase/php-jwt/LICENSE +++ /dev/null @@ -1,30 +0,0 @@ -Copyright (c) 2011, Neuman Vong - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - * Neither the name of Neuman Vong nor the names of other - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/services/libs/google-api-php-client-2.4.1/vendor/firebase/php-jwt/README.md b/services/libs/google-api-php-client-2.4.1/vendor/firebase/php-jwt/README.md deleted file mode 100644 index 9c8b5455..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/firebase/php-jwt/README.md +++ /dev/null @@ -1,200 +0,0 @@ -[![Build Status](https://travis-ci.org/firebase/php-jwt.png?branch=master)](https://travis-ci.org/firebase/php-jwt) -[![Latest Stable Version](https://poser.pugx.org/firebase/php-jwt/v/stable)](https://packagist.org/packages/firebase/php-jwt) -[![Total Downloads](https://poser.pugx.org/firebase/php-jwt/downloads)](https://packagist.org/packages/firebase/php-jwt) -[![License](https://poser.pugx.org/firebase/php-jwt/license)](https://packagist.org/packages/firebase/php-jwt) - -PHP-JWT -======= -A simple library to encode and decode JSON Web Tokens (JWT) in PHP, conforming to [RFC 7519](https://tools.ietf.org/html/rfc7519). - -Installation ------------- - -Use composer to manage your dependencies and download PHP-JWT: - -```bash -composer require firebase/php-jwt -``` - -Example -------- -```php - "http://example.org", - "aud" => "http://example.com", - "iat" => 1356999524, - "nbf" => 1357000000 -); - -/** - * IMPORTANT: - * You must specify supported algorithms for your application. See - * https://tools.ietf.org/html/draft-ietf-jose-json-web-algorithms-40 - * for a list of spec-compliant algorithms. - */ -$jwt = JWT::encode($payload, $key); -$decoded = JWT::decode($jwt, $key, array('HS256')); - -print_r($decoded); - -/* - NOTE: This will now be an object instead of an associative array. To get - an associative array, you will need to cast it as such: -*/ - -$decoded_array = (array) $decoded; - -/** - * You can add a leeway to account for when there is a clock skew times between - * the signing and verifying servers. It is recommended that this leeway should - * not be bigger than a few minutes. - * - * Source: http://self-issued.info/docs/draft-ietf-oauth-json-web-token.html#nbfDef - */ -JWT::$leeway = 60; // $leeway in seconds -$decoded = JWT::decode($jwt, $key, array('HS256')); - -?> -``` -Example with RS256 (openssl) ----------------------------- -```php - "example.org", - "aud" => "example.com", - "iat" => 1356999524, - "nbf" => 1357000000 -); - -$jwt = JWT::encode($payload, $privateKey, 'RS256'); -echo "Encode:\n" . print_r($jwt, true) . "\n"; - -$decoded = JWT::decode($jwt, $publicKey, array('RS256')); - -/* - NOTE: This will now be an object instead of an associative array. To get - an associative array, you will need to cast it as such: -*/ - -$decoded_array = (array) $decoded; -echo "Decode:\n" . print_r($decoded_array, true) . "\n"; -?> -``` - -Changelog ---------- - -#### 5.0.0 / 2017-06-26 -- Support RS384 and RS512. - See [#117](https://github.com/firebase/php-jwt/pull/117). Thanks [@joostfaassen](https://github.com/joostfaassen)! -- Add an example for RS256 openssl. - See [#125](https://github.com/firebase/php-jwt/pull/125). Thanks [@akeeman](https://github.com/akeeman)! -- Detect invalid Base64 encoding in signature. - See [#162](https://github.com/firebase/php-jwt/pull/162). Thanks [@psignoret](https://github.com/psignoret)! -- Update `JWT::verify` to handle OpenSSL errors. - See [#159](https://github.com/firebase/php-jwt/pull/159). Thanks [@bshaffer](https://github.com/bshaffer)! -- Add `array` type hinting to `decode` method - See [#101](https://github.com/firebase/php-jwt/pull/101). Thanks [@hywak](https://github.com/hywak)! -- Add all JSON error types. - See [#110](https://github.com/firebase/php-jwt/pull/110). Thanks [@gbalduzzi](https://github.com/gbalduzzi)! -- Bugfix 'kid' not in given key list. - See [#129](https://github.com/firebase/php-jwt/pull/129). Thanks [@stampycode](https://github.com/stampycode)! -- Miscellaneous cleanup, documentation and test fixes. - See [#107](https://github.com/firebase/php-jwt/pull/107), [#115](https://github.com/firebase/php-jwt/pull/115), - [#160](https://github.com/firebase/php-jwt/pull/160), [#161](https://github.com/firebase/php-jwt/pull/161), and - [#165](https://github.com/firebase/php-jwt/pull/165). Thanks [@akeeman](https://github.com/akeeman), - [@chinedufn](https://github.com/chinedufn), and [@bshaffer](https://github.com/bshaffer)! - -#### 4.0.0 / 2016-07-17 -- Add support for late static binding. See [#88](https://github.com/firebase/php-jwt/pull/88) for details. Thanks to [@chappy84](https://github.com/chappy84)! -- Use static `$timestamp` instead of `time()` to improve unit testing. See [#93](https://github.com/firebase/php-jwt/pull/93) for details. Thanks to [@josephmcdermott](https://github.com/josephmcdermott)! -- Fixes to exceptions classes. See [#81](https://github.com/firebase/php-jwt/pull/81) for details. Thanks to [@Maks3w](https://github.com/Maks3w)! -- Fixes to PHPDoc. See [#76](https://github.com/firebase/php-jwt/pull/76) for details. Thanks to [@akeeman](https://github.com/akeeman)! - -#### 3.0.0 / 2015-07-22 -- Minimum PHP version updated from `5.2.0` to `5.3.0`. -- Add `\Firebase\JWT` namespace. See -[#59](https://github.com/firebase/php-jwt/pull/59) for details. Thanks to -[@Dashron](https://github.com/Dashron)! -- Require a non-empty key to decode and verify a JWT. See -[#60](https://github.com/firebase/php-jwt/pull/60) for details. Thanks to -[@sjones608](https://github.com/sjones608)! -- Cleaner documentation blocks in the code. See -[#62](https://github.com/firebase/php-jwt/pull/62) for details. Thanks to -[@johanderuijter](https://github.com/johanderuijter)! - -#### 2.2.0 / 2015-06-22 -- Add support for adding custom, optional JWT headers to `JWT::encode()`. See -[#53](https://github.com/firebase/php-jwt/pull/53/files) for details. Thanks to -[@mcocaro](https://github.com/mcocaro)! - -#### 2.1.0 / 2015-05-20 -- Add support for adding a leeway to `JWT:decode()` that accounts for clock skew -between signing and verifying entities. Thanks to [@lcabral](https://github.com/lcabral)! -- Add support for passing an object implementing the `ArrayAccess` interface for -`$keys` argument in `JWT::decode()`. Thanks to [@aztech-dev](https://github.com/aztech-dev)! - -#### 2.0.0 / 2015-04-01 -- **Note**: It is strongly recommended that you update to > v2.0.0 to address - known security vulnerabilities in prior versions when both symmetric and - asymmetric keys are used together. -- Update signature for `JWT::decode(...)` to require an array of supported - algorithms to use when verifying token signatures. - - -Tests ------ -Run the tests using phpunit: - -```bash -$ pear install PHPUnit -$ phpunit --configuration phpunit.xml.dist -PHPUnit 3.7.10 by Sebastian Bergmann. -..... -Time: 0 seconds, Memory: 2.50Mb -OK (5 tests, 5 assertions) -``` - -New Lines in private keys ------ - -If your private key contains `\n` characters, be sure to wrap it in double quotes `""` -and not single quotes `''` in order to properly interpret the escaped characters. - -License -------- -[3-Clause BSD](http://opensource.org/licenses/BSD-3-Clause). diff --git a/services/libs/google-api-php-client-2.4.1/vendor/firebase/php-jwt/composer.json b/services/libs/google-api-php-client-2.4.1/vendor/firebase/php-jwt/composer.json deleted file mode 100644 index 25d1cfa9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/firebase/php-jwt/composer.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "name": "firebase/php-jwt", - "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.", - "homepage": "https://github.com/firebase/php-jwt", - "keywords": [ - "php", - "jwt" - ], - "authors": [ - { - "name": "Neuman Vong", - "email": "neuman+pear@twilio.com", - "role": "Developer" - }, - { - "name": "Anant Narayanan", - "email": "anant@php.net", - "role": "Developer" - } - ], - "license": "BSD-3-Clause", - "require": { - "php": ">=5.3.0" - }, - "autoload": { - "psr-4": { - "Firebase\\JWT\\": "src" - } - }, - "require-dev": { - "phpunit/phpunit": ">=4.8 <=9" - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/firebase/php-jwt/src/BeforeValidException.php b/services/libs/google-api-php-client-2.4.1/vendor/firebase/php-jwt/src/BeforeValidException.php deleted file mode 100644 index fdf82bd9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/firebase/php-jwt/src/BeforeValidException.php +++ /dev/null @@ -1,6 +0,0 @@ - - * @license http://opensource.org/licenses/BSD-3-Clause 3-clause BSD - * @link https://github.com/firebase/php-jwt - */ -class JWK -{ - /** - * Parse a set of JWK keys - * - * @param array $jwks The JSON Web Key Set as an associative array - * - * @return array An associative array that represents the set of keys - * - * @throws InvalidArgumentException Provided JWK Set is empty - * @throws UnexpectedValueException Provided JWK Set was invalid - * @throws DomainException OpenSSL failure - * - * @uses parseKey - */ - public static function parseKeySet(array $jwks) - { - $keys = array(); - - if (!isset($jwks['keys'])) { - throw new UnexpectedValueException('"keys" member must exist in the JWK Set'); - } - if (empty($jwks['keys'])) { - throw new InvalidArgumentException('JWK Set did not contain any keys'); - } - - foreach ($jwks['keys'] as $k => $v) { - $kid = isset($v['kid']) ? $v['kid'] : $k; - if ($key = self::parseKey($v)) { - $keys[$kid] = $key; - } - } - - if (0 === \count($keys)) { - throw new UnexpectedValueException('No supported algorithms found in JWK Set'); - } - - return $keys; - } - - /** - * Parse a JWK key - * - * @param array $jwk An individual JWK - * - * @return resource|array An associative array that represents the key - * - * @throws InvalidArgumentException Provided JWK is empty - * @throws UnexpectedValueException Provided JWK was invalid - * @throws DomainException OpenSSL failure - * - * @uses createPemFromModulusAndExponent - */ - private static function parseKey(array $jwk) - { - if (empty($jwk)) { - throw new InvalidArgumentException('JWK must not be empty'); - } - if (!isset($jwk['kty'])) { - throw new UnexpectedValueException('JWK must contain a "kty" parameter'); - } - - switch ($jwk['kty']) { - case 'RSA': - if (\array_key_exists('d', $jwk)) { - throw new UnexpectedValueException('RSA private keys are not supported'); - } - if (!isset($jwk['n']) || !isset($jwk['e'])) { - throw new UnexpectedValueException('RSA keys must contain values for both "n" and "e"'); - } - - $pem = self::createPemFromModulusAndExponent($jwk['n'], $jwk['e']); - $publicKey = \openssl_pkey_get_public($pem); - if (false === $publicKey) { - throw new DomainException( - 'OpenSSL error: ' . \openssl_error_string() - ); - } - return $publicKey; - default: - // Currently only RSA is supported - break; - } - } - - /** - * Create a public key represented in PEM format from RSA modulus and exponent information - * - * @param string $n The RSA modulus encoded in Base64 - * @param string $e The RSA exponent encoded in Base64 - * - * @return string The RSA public key represented in PEM format - * - * @uses encodeLength - */ - private static function createPemFromModulusAndExponent($n, $e) - { - $modulus = JWT::urlsafeB64Decode($n); - $publicExponent = JWT::urlsafeB64Decode($e); - - $components = array( - 'modulus' => \pack('Ca*a*', 2, self::encodeLength(\strlen($modulus)), $modulus), - 'publicExponent' => \pack('Ca*a*', 2, self::encodeLength(\strlen($publicExponent)), $publicExponent) - ); - - $rsaPublicKey = \pack( - 'Ca*a*a*', - 48, - self::encodeLength(\strlen($components['modulus']) + \strlen($components['publicExponent'])), - $components['modulus'], - $components['publicExponent'] - ); - - // sequence(oid(1.2.840.113549.1.1.1), null)) = rsaEncryption. - $rsaOID = \pack('H*', '300d06092a864886f70d0101010500'); // hex version of MA0GCSqGSIb3DQEBAQUA - $rsaPublicKey = \chr(0) . $rsaPublicKey; - $rsaPublicKey = \chr(3) . self::encodeLength(\strlen($rsaPublicKey)) . $rsaPublicKey; - - $rsaPublicKey = \pack( - 'Ca*a*', - 48, - self::encodeLength(\strlen($rsaOID . $rsaPublicKey)), - $rsaOID . $rsaPublicKey - ); - - $rsaPublicKey = "-----BEGIN PUBLIC KEY-----\r\n" . - \chunk_split(\base64_encode($rsaPublicKey), 64) . - '-----END PUBLIC KEY-----'; - - return $rsaPublicKey; - } - - /** - * DER-encode the length - * - * DER supports lengths up to (2**8)**127, however, we'll only support lengths up to (2**8)**4. See - * {@link http://itu.int/ITU-T/studygroups/com17/languages/X.690-0207.pdf#p=13 X.690 paragraph 8.1.3} for more information. - * - * @param int $length - * @return string - */ - private static function encodeLength($length) - { - if ($length <= 0x7F) { - return \chr($length); - } - - $temp = \ltrim(\pack('N', $length), \chr(0)); - - return \pack('Ca*', 0x80 | \strlen($temp), $temp); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/firebase/php-jwt/src/JWT.php b/services/libs/google-api-php-client-2.4.1/vendor/firebase/php-jwt/src/JWT.php deleted file mode 100644 index 4860028b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/firebase/php-jwt/src/JWT.php +++ /dev/null @@ -1,512 +0,0 @@ - - * @author Anant Narayanan - * @license http://opensource.org/licenses/BSD-3-Clause 3-clause BSD - * @link https://github.com/firebase/php-jwt - */ -class JWT -{ - const ASN1_INTEGER = 0x02; - const ASN1_SEQUENCE = 0x10; - const ASN1_BIT_STRING = 0x03; - - /** - * When checking nbf, iat or expiration times, - * we want to provide some extra leeway time to - * account for clock skew. - */ - public static $leeway = 0; - - /** - * Allow the current timestamp to be specified. - * Useful for fixing a value within unit testing. - * - * Will default to PHP time() value if null. - */ - public static $timestamp = null; - - public static $supported_algs = array( - 'ES256' => array('openssl', 'SHA256'), - 'HS256' => array('hash_hmac', 'SHA256'), - 'HS384' => array('hash_hmac', 'SHA384'), - 'HS512' => array('hash_hmac', 'SHA512'), - 'RS256' => array('openssl', 'SHA256'), - 'RS384' => array('openssl', 'SHA384'), - 'RS512' => array('openssl', 'SHA512'), - ); - - /** - * Decodes a JWT string into a PHP object. - * - * @param string $jwt The JWT - * @param string|array|resource $key The key, or map of keys. - * If the algorithm used is asymmetric, this is the public key - * @param array $allowed_algs List of supported verification algorithms - * Supported algorithms are 'ES256', 'HS256', 'HS384', 'HS512', 'RS256', 'RS384', and 'RS512' - * - * @return object The JWT's payload as a PHP object - * - * @throws UnexpectedValueException Provided JWT was invalid - * @throws SignatureInvalidException Provided JWT was invalid because the signature verification failed - * @throws BeforeValidException Provided JWT is trying to be used before it's eligible as defined by 'nbf' - * @throws BeforeValidException Provided JWT is trying to be used before it's been created as defined by 'iat' - * @throws ExpiredException Provided JWT has since expired, as defined by the 'exp' claim - * - * @uses jsonDecode - * @uses urlsafeB64Decode - */ - public static function decode($jwt, $key, array $allowed_algs = array()) - { - $timestamp = \is_null(static::$timestamp) ? \time() : static::$timestamp; - - if (empty($key)) { - throw new InvalidArgumentException('Key may not be empty'); - } - $tks = \explode('.', $jwt); - if (\count($tks) != 3) { - throw new UnexpectedValueException('Wrong number of segments'); - } - list($headb64, $bodyb64, $cryptob64) = $tks; - if (null === ($header = static::jsonDecode(static::urlsafeB64Decode($headb64)))) { - throw new UnexpectedValueException('Invalid header encoding'); - } - if (null === $payload = static::jsonDecode(static::urlsafeB64Decode($bodyb64))) { - throw new UnexpectedValueException('Invalid claims encoding'); - } - if (false === ($sig = static::urlsafeB64Decode($cryptob64))) { - throw new UnexpectedValueException('Invalid signature encoding'); - } - if (empty($header->alg)) { - throw new UnexpectedValueException('Empty algorithm'); - } - if (empty(static::$supported_algs[$header->alg])) { - throw new UnexpectedValueException('Algorithm not supported'); - } - if (!\in_array($header->alg, $allowed_algs)) { - throw new UnexpectedValueException('Algorithm not allowed'); - } - if ($header->alg === 'ES256') { - // OpenSSL expects an ASN.1 DER sequence for ES256 signatures - $sig = self::signatureToDER($sig); - } - - if (\is_array($key) || $key instanceof \ArrayAccess) { - if (isset($header->kid)) { - if (!isset($key[$header->kid])) { - throw new UnexpectedValueException('"kid" invalid, unable to lookup correct key'); - } - $key = $key[$header->kid]; - } else { - throw new UnexpectedValueException('"kid" empty, unable to lookup correct key'); - } - } - - // Check the signature - if (!static::verify("$headb64.$bodyb64", $sig, $key, $header->alg)) { - throw new SignatureInvalidException('Signature verification failed'); - } - - // Check the nbf if it is defined. This is the time that the - // token can actually be used. If it's not yet that time, abort. - if (isset($payload->nbf) && $payload->nbf > ($timestamp + static::$leeway)) { - throw new BeforeValidException( - 'Cannot handle token prior to ' . \date(DateTime::ISO8601, $payload->nbf) - ); - } - - // Check that this token has been created before 'now'. This prevents - // using tokens that have been created for later use (and haven't - // correctly used the nbf claim). - if (isset($payload->iat) && $payload->iat > ($timestamp + static::$leeway)) { - throw new BeforeValidException( - 'Cannot handle token prior to ' . \date(DateTime::ISO8601, $payload->iat) - ); - } - - // Check if this token has expired. - if (isset($payload->exp) && ($timestamp - static::$leeway) >= $payload->exp) { - throw new ExpiredException('Expired token'); - } - - return $payload; - } - - /** - * Converts and signs a PHP object or array into a JWT string. - * - * @param object|array $payload PHP object or array - * @param string $key The secret key. - * If the algorithm used is asymmetric, this is the private key - * @param string $alg The signing algorithm. - * Supported algorithms are 'ES256', 'HS256', 'HS384', 'HS512', 'RS256', 'RS384', and 'RS512' - * @param mixed $keyId - * @param array $head An array with header elements to attach - * - * @return string A signed JWT - * - * @uses jsonEncode - * @uses urlsafeB64Encode - */ - public static function encode($payload, $key, $alg = 'HS256', $keyId = null, $head = null) - { - $header = array('typ' => 'JWT', 'alg' => $alg); - if ($keyId !== null) { - $header['kid'] = $keyId; - } - if (isset($head) && \is_array($head)) { - $header = \array_merge($head, $header); - } - $segments = array(); - $segments[] = static::urlsafeB64Encode(static::jsonEncode($header)); - $segments[] = static::urlsafeB64Encode(static::jsonEncode($payload)); - $signing_input = \implode('.', $segments); - - $signature = static::sign($signing_input, $key, $alg); - $segments[] = static::urlsafeB64Encode($signature); - - return \implode('.', $segments); - } - - /** - * Sign a string with a given key and algorithm. - * - * @param string $msg The message to sign - * @param string|resource $key The secret key - * @param string $alg The signing algorithm. - * Supported algorithms are 'ES256', 'HS256', 'HS384', 'HS512', 'RS256', 'RS384', and 'RS512' - * - * @return string An encrypted message - * - * @throws DomainException Unsupported algorithm was specified - */ - public static function sign($msg, $key, $alg = 'HS256') - { - if (empty(static::$supported_algs[$alg])) { - throw new DomainException('Algorithm not supported'); - } - list($function, $algorithm) = static::$supported_algs[$alg]; - switch ($function) { - case 'hash_hmac': - return \hash_hmac($algorithm, $msg, $key, true); - case 'openssl': - $signature = ''; - $success = \openssl_sign($msg, $signature, $key, $algorithm); - if (!$success) { - throw new DomainException("OpenSSL unable to sign data"); - } else { - if ($alg === 'ES256') { - $signature = self::signatureFromDER($signature, 256); - } - return $signature; - } - } - } - - /** - * Verify a signature with the message, key and method. Not all methods - * are symmetric, so we must have a separate verify and sign method. - * - * @param string $msg The original message (header and body) - * @param string $signature The original signature - * @param string|resource $key For HS*, a string key works. for RS*, must be a resource of an openssl public key - * @param string $alg The algorithm - * - * @return bool - * - * @throws DomainException Invalid Algorithm or OpenSSL failure - */ - private static function verify($msg, $signature, $key, $alg) - { - if (empty(static::$supported_algs[$alg])) { - throw new DomainException('Algorithm not supported'); - } - - list($function, $algorithm) = static::$supported_algs[$alg]; - switch ($function) { - case 'openssl': - $success = \openssl_verify($msg, $signature, $key, $algorithm); - if ($success === 1) { - return true; - } elseif ($success === 0) { - return false; - } - // returns 1 on success, 0 on failure, -1 on error. - throw new DomainException( - 'OpenSSL error: ' . \openssl_error_string() - ); - case 'hash_hmac': - default: - $hash = \hash_hmac($algorithm, $msg, $key, true); - if (\function_exists('hash_equals')) { - return \hash_equals($signature, $hash); - } - $len = \min(static::safeStrlen($signature), static::safeStrlen($hash)); - - $status = 0; - for ($i = 0; $i < $len; $i++) { - $status |= (\ord($signature[$i]) ^ \ord($hash[$i])); - } - $status |= (static::safeStrlen($signature) ^ static::safeStrlen($hash)); - - return ($status === 0); - } - } - - /** - * Decode a JSON string into a PHP object. - * - * @param string $input JSON string - * - * @return object Object representation of JSON string - * - * @throws DomainException Provided string was invalid JSON - */ - public static function jsonDecode($input) - { - if (\version_compare(PHP_VERSION, '5.4.0', '>=') && !(\defined('JSON_C_VERSION') && PHP_INT_SIZE > 4)) { - /** In PHP >=5.4.0, json_decode() accepts an options parameter, that allows you - * to specify that large ints (like Steam Transaction IDs) should be treated as - * strings, rather than the PHP default behaviour of converting them to floats. - */ - $obj = \json_decode($input, false, 512, JSON_BIGINT_AS_STRING); - } else { - /** Not all servers will support that, however, so for older versions we must - * manually detect large ints in the JSON string and quote them (thus converting - *them to strings) before decoding, hence the preg_replace() call. - */ - $max_int_length = \strlen((string) PHP_INT_MAX) - 1; - $json_without_bigints = \preg_replace('/:\s*(-?\d{'.$max_int_length.',})/', ': "$1"', $input); - $obj = \json_decode($json_without_bigints); - } - - if ($errno = \json_last_error()) { - static::handleJsonError($errno); - } elseif ($obj === null && $input !== 'null') { - throw new DomainException('Null result with non-null input'); - } - return $obj; - } - - /** - * Encode a PHP object into a JSON string. - * - * @param object|array $input A PHP object or array - * - * @return string JSON representation of the PHP object or array - * - * @throws DomainException Provided object could not be encoded to valid JSON - */ - public static function jsonEncode($input) - { - $json = \json_encode($input); - if ($errno = \json_last_error()) { - static::handleJsonError($errno); - } elseif ($json === 'null' && $input !== null) { - throw new DomainException('Null result with non-null input'); - } - return $json; - } - - /** - * Decode a string with URL-safe Base64. - * - * @param string $input A Base64 encoded string - * - * @return string A decoded string - */ - public static function urlsafeB64Decode($input) - { - $remainder = \strlen($input) % 4; - if ($remainder) { - $padlen = 4 - $remainder; - $input .= \str_repeat('=', $padlen); - } - return \base64_decode(\strtr($input, '-_', '+/')); - } - - /** - * Encode a string with URL-safe Base64. - * - * @param string $input The string you want encoded - * - * @return string The base64 encode of what you passed in - */ - public static function urlsafeB64Encode($input) - { - return \str_replace('=', '', \strtr(\base64_encode($input), '+/', '-_')); - } - - /** - * Helper method to create a JSON error. - * - * @param int $errno An error number from json_last_error() - * - * @return void - */ - private static function handleJsonError($errno) - { - $messages = array( - JSON_ERROR_DEPTH => 'Maximum stack depth exceeded', - JSON_ERROR_STATE_MISMATCH => 'Invalid or malformed JSON', - JSON_ERROR_CTRL_CHAR => 'Unexpected control character found', - JSON_ERROR_SYNTAX => 'Syntax error, malformed JSON', - JSON_ERROR_UTF8 => 'Malformed UTF-8 characters' //PHP >= 5.3.3 - ); - throw new DomainException( - isset($messages[$errno]) - ? $messages[$errno] - : 'Unknown JSON error: ' . $errno - ); - } - - /** - * Get the number of bytes in cryptographic strings. - * - * @param string $str - * - * @return int - */ - private static function safeStrlen($str) - { - if (\function_exists('mb_strlen')) { - return \mb_strlen($str, '8bit'); - } - return \strlen($str); - } - - /** - * Convert an ECDSA signature to an ASN.1 DER sequence - * - * @param string $sig The ECDSA signature to convert - * @return string The encoded DER object - */ - private static function signatureToDER($sig) - { - // Separate the signature into r-value and s-value - list($r, $s) = \str_split($sig, (int) (\strlen($sig) / 2)); - - // Trim leading zeros - $r = \ltrim($r, "\x00"); - $s = \ltrim($s, "\x00"); - - // Convert r-value and s-value from unsigned big-endian integers to - // signed two's complement - if (\ord($r[0]) > 0x7f) { - $r = "\x00" . $r; - } - if (\ord($s[0]) > 0x7f) { - $s = "\x00" . $s; - } - - return self::encodeDER( - self::ASN1_SEQUENCE, - self::encodeDER(self::ASN1_INTEGER, $r) . - self::encodeDER(self::ASN1_INTEGER, $s) - ); - } - - /** - * Encodes a value into a DER object. - * - * @param int $type DER tag - * @param string $value the value to encode - * @return string the encoded object - */ - private static function encodeDER($type, $value) - { - $tag_header = 0; - if ($type === self::ASN1_SEQUENCE) { - $tag_header |= 0x20; - } - - // Type - $der = \chr($tag_header | $type); - - // Length - $der .= \chr(\strlen($value)); - - return $der . $value; - } - - /** - * Encodes signature from a DER object. - * - * @param string $der binary signature in DER format - * @param int $keySize the number of bits in the key - * @return string the signature - */ - private static function signatureFromDER($der, $keySize) - { - // OpenSSL returns the ECDSA signatures as a binary ASN.1 DER SEQUENCE - list($offset, $_) = self::readDER($der); - list($offset, $r) = self::readDER($der, $offset); - list($offset, $s) = self::readDER($der, $offset); - - // Convert r-value and s-value from signed two's compliment to unsigned - // big-endian integers - $r = \ltrim($r, "\x00"); - $s = \ltrim($s, "\x00"); - - // Pad out r and s so that they are $keySize bits long - $r = \str_pad($r, $keySize / 8, "\x00", STR_PAD_LEFT); - $s = \str_pad($s, $keySize / 8, "\x00", STR_PAD_LEFT); - - return $r . $s; - } - - /** - * Reads binary DER-encoded data and decodes into a single object - * - * @param string $der the binary data in DER format - * @param int $offset the offset of the data stream containing the object - * to decode - * @return array [$offset, $data] the new offset and the decoded object - */ - private static function readDER($der, $offset = 0) - { - $pos = $offset; - $size = \strlen($der); - $constructed = (\ord($der[$pos]) >> 5) & 0x01; - $type = \ord($der[$pos++]) & 0x1f; - - // Length - $len = \ord($der[$pos++]); - if ($len & 0x80) { - $n = $len & 0x1f; - $len = 0; - while ($n-- && $pos < $size) { - $len = ($len << 8) | \ord($der[$pos++]); - } - } - - // Value - if ($type == self::ASN1_BIT_STRING) { - $pos++; // Skip the first contents octet (padding indicator) - $data = \substr($der, $pos, $len - 1); - $pos += $len - 1; - } elseif (!$constructed) { - $data = \substr($der, $pos, $len); - $pos += $len; - } else { - $data = null; - } - - return array($pos, $data); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/firebase/php-jwt/src/SignatureInvalidException.php b/services/libs/google-api-php-client-2.4.1/vendor/firebase/php-jwt/src/SignatureInvalidException.php deleted file mode 100644 index 87cb34df..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/firebase/php-jwt/src/SignatureInvalidException.php +++ /dev/null @@ -1,6 +0,0 @@ -=5.4" - }, - "require-dev": { - "phpunit/phpunit": "^4.8|^5" - }, - "autoload": { - "psr-0": { - "Google_Service_": "src" - } - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/phpunit.xml b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/phpunit.xml deleted file mode 100644 index d112e5a3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/phpunit.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - tests - - - diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AbusiveExperienceReport.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AbusiveExperienceReport.php deleted file mode 100644 index 60bd28ec..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AbusiveExperienceReport.php +++ /dev/null @@ -1,90 +0,0 @@ - - * Views Abusive Experience Report data, and gets a list of sites that have a - * significant number of abusive experiences.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_AbusiveExperienceReport extends Google_Service -{ - - - public $sites; - public $violatingSites; - - /** - * Constructs the internal representation of the AbusiveExperienceReport - * service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://abusiveexperiencereport.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'abusiveexperiencereport'; - - $this->sites = new Google_Service_AbusiveExperienceReport_Resource_Sites( - $this, - $this->serviceName, - 'sites', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->violatingSites = new Google_Service_AbusiveExperienceReport_Resource_ViolatingSites( - $this, - $this->serviceName, - 'violatingSites', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1/violatingSites', - 'httpMethod' => 'GET', - 'parameters' => array(), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AbusiveExperienceReport/Resource/Sites.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AbusiveExperienceReport/Resource/Sites.php deleted file mode 100644 index 548d81ac..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AbusiveExperienceReport/Resource/Sites.php +++ /dev/null @@ -1,44 +0,0 @@ - - * $abusiveexperiencereportService = new Google_Service_AbusiveExperienceReport(...); - * $sites = $abusiveexperiencereportService->sites; - * - */ -class Google_Service_AbusiveExperienceReport_Resource_Sites extends Google_Service_Resource -{ - /** - * Gets a site's Abusive Experience Report summary. (sites.get) - * - * @param string $name Required. The name of the site whose summary to get, e.g. - * `sites/http%3A%2F%2Fwww.google.com%2F`. - * - * Format: `sites/{site}` - * @param array $optParams Optional parameters. - * @return Google_Service_AbusiveExperienceReport_SiteSummaryResponse - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AbusiveExperienceReport_SiteSummaryResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AbusiveExperienceReport/Resource/ViolatingSites.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AbusiveExperienceReport/Resource/ViolatingSites.php deleted file mode 100644 index baf14023..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AbusiveExperienceReport/Resource/ViolatingSites.php +++ /dev/null @@ -1,41 +0,0 @@ - - * $abusiveexperiencereportService = new Google_Service_AbusiveExperienceReport(...); - * $violatingSites = $abusiveexperiencereportService->violatingSites; - * - */ -class Google_Service_AbusiveExperienceReport_Resource_ViolatingSites extends Google_Service_Resource -{ - /** - * Lists sites that are failing in the Abusive Experience Report. - * (violatingSites.listViolatingSites) - * - * @param array $optParams Optional parameters. - * @return Google_Service_AbusiveExperienceReport_ViolatingSitesResponse - */ - public function listViolatingSites($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AbusiveExperienceReport_ViolatingSitesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AbusiveExperienceReport/SiteSummaryResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AbusiveExperienceReport/SiteSummaryResponse.php deleted file mode 100644 index d5150bf9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AbusiveExperienceReport/SiteSummaryResponse.php +++ /dev/null @@ -1,84 +0,0 @@ -abusiveStatus = $abusiveStatus; - } - public function getAbusiveStatus() - { - return $this->abusiveStatus; - } - public function setEnforcementTime($enforcementTime) - { - $this->enforcementTime = $enforcementTime; - } - public function getEnforcementTime() - { - return $this->enforcementTime; - } - public function setFilterStatus($filterStatus) - { - $this->filterStatus = $filterStatus; - } - public function getFilterStatus() - { - return $this->filterStatus; - } - public function setLastChangeTime($lastChangeTime) - { - $this->lastChangeTime = $lastChangeTime; - } - public function getLastChangeTime() - { - return $this->lastChangeTime; - } - public function setReportUrl($reportUrl) - { - $this->reportUrl = $reportUrl; - } - public function getReportUrl() - { - return $this->reportUrl; - } - public function setReviewedSite($reviewedSite) - { - $this->reviewedSite = $reviewedSite; - } - public function getReviewedSite() - { - return $this->reviewedSite; - } - public function setUnderReview($underReview) - { - $this->underReview = $underReview; - } - public function getUnderReview() - { - return $this->underReview; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AbusiveExperienceReport/ViolatingSitesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AbusiveExperienceReport/ViolatingSitesResponse.php deleted file mode 100644 index 7390a393..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AbusiveExperienceReport/ViolatingSitesResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -violatingSites = $violatingSites; - } - /** - * @return Google_Service_AbusiveExperienceReport_SiteSummaryResponse - */ - public function getViolatingSites() - { - return $this->violatingSites; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Acceleratedmobilepageurl.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Acceleratedmobilepageurl.php deleted file mode 100644 index 79dcff2b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Acceleratedmobilepageurl.php +++ /dev/null @@ -1,69 +0,0 @@ - - * Retrieves the list of AMP URLs (and equivalent AMP Cache URLs) for a given - * list of public URL(s).

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Acceleratedmobilepageurl extends Google_Service -{ - - - public $ampUrls; - - /** - * Constructs the internal representation of the Acceleratedmobilepageurl - * service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://acceleratedmobilepageurl.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'acceleratedmobilepageurl'; - - $this->ampUrls = new Google_Service_Acceleratedmobilepageurl_Resource_AmpUrls( - $this, - $this->serviceName, - 'ampUrls', - array( - 'methods' => array( - 'batchGet' => array( - 'path' => 'v1/ampUrls:batchGet', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Acceleratedmobilepageurl/AmpUrl.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Acceleratedmobilepageurl/AmpUrl.php deleted file mode 100644 index 911b99a0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Acceleratedmobilepageurl/AmpUrl.php +++ /dev/null @@ -1,48 +0,0 @@ -ampUrl = $ampUrl; - } - public function getAmpUrl() - { - return $this->ampUrl; - } - public function setCdnAmpUrl($cdnAmpUrl) - { - $this->cdnAmpUrl = $cdnAmpUrl; - } - public function getCdnAmpUrl() - { - return $this->cdnAmpUrl; - } - public function setOriginalUrl($originalUrl) - { - $this->originalUrl = $originalUrl; - } - public function getOriginalUrl() - { - return $this->originalUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Acceleratedmobilepageurl/AmpUrlError.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Acceleratedmobilepageurl/AmpUrlError.php deleted file mode 100644 index e5af8761..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Acceleratedmobilepageurl/AmpUrlError.php +++ /dev/null @@ -1,48 +0,0 @@ -errorCode = $errorCode; - } - public function getErrorCode() - { - return $this->errorCode; - } - public function setErrorMessage($errorMessage) - { - $this->errorMessage = $errorMessage; - } - public function getErrorMessage() - { - return $this->errorMessage; - } - public function setOriginalUrl($originalUrl) - { - $this->originalUrl = $originalUrl; - } - public function getOriginalUrl() - { - return $this->originalUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Acceleratedmobilepageurl/BatchGetAmpUrlsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Acceleratedmobilepageurl/BatchGetAmpUrlsRequest.php deleted file mode 100644 index 91acd524..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Acceleratedmobilepageurl/BatchGetAmpUrlsRequest.php +++ /dev/null @@ -1,40 +0,0 @@ -lookupStrategy = $lookupStrategy; - } - public function getLookupStrategy() - { - return $this->lookupStrategy; - } - public function setUrls($urls) - { - $this->urls = $urls; - } - public function getUrls() - { - return $this->urls; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Acceleratedmobilepageurl/BatchGetAmpUrlsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Acceleratedmobilepageurl/BatchGetAmpUrlsResponse.php deleted file mode 100644 index ea574a97..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Acceleratedmobilepageurl/BatchGetAmpUrlsResponse.php +++ /dev/null @@ -1,54 +0,0 @@ -ampUrls = $ampUrls; - } - /** - * @return Google_Service_Acceleratedmobilepageurl_AmpUrl - */ - public function getAmpUrls() - { - return $this->ampUrls; - } - /** - * @param Google_Service_Acceleratedmobilepageurl_AmpUrlError - */ - public function setUrlErrors($urlErrors) - { - $this->urlErrors = $urlErrors; - } - /** - * @return Google_Service_Acceleratedmobilepageurl_AmpUrlError - */ - public function getUrlErrors() - { - return $this->urlErrors; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Acceleratedmobilepageurl/Resource/AmpUrls.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Acceleratedmobilepageurl/Resource/AmpUrls.php deleted file mode 100644 index 242d30cd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Acceleratedmobilepageurl/Resource/AmpUrls.php +++ /dev/null @@ -1,42 +0,0 @@ - - * $acceleratedmobilepageurlService = new Google_Service_Acceleratedmobilepageurl(...); - * $ampUrls = $acceleratedmobilepageurlService->ampUrls; - * - */ -class Google_Service_Acceleratedmobilepageurl_Resource_AmpUrls extends Google_Service_Resource -{ - /** - * Returns AMP URL(s) and equivalent [AMP Cache URL(s)](/amp/cache/overview#amp- - * cache-url-format). (ampUrls.batchGet) - * - * @param Google_Service_Acceleratedmobilepageurl_BatchGetAmpUrlsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Acceleratedmobilepageurl_BatchGetAmpUrlsResponse - */ - public function batchGet(Google_Service_Acceleratedmobilepageurl_BatchGetAmpUrlsRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('batchGet', array($params), "Google_Service_Acceleratedmobilepageurl_BatchGetAmpUrlsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessApproval.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessApproval.php deleted file mode 100644 index 1864c03f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessApproval.php +++ /dev/null @@ -1,378 +0,0 @@ - - * An API for controlling access to data by Google personnel.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_AccessApproval extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - - public $folders; - public $folders_approvalRequests; - public $organizations; - public $organizations_approvalRequests; - public $projects; - public $projects_approvalRequests; - - /** - * Constructs the internal representation of the AccessApproval service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://accessapproval.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'accessapproval'; - - $this->folders = new Google_Service_AccessApproval_Resource_Folders( - $this, - $this->serviceName, - 'folders', - array( - 'methods' => array( - 'deleteAccessApprovalSettings' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getAccessApprovalSettings' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'updateAccessApprovalSettings' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->folders_approvalRequests = new Google_Service_AccessApproval_Resource_FoldersApprovalRequests( - $this, - $this->serviceName, - 'approvalRequests', - array( - 'methods' => array( - 'approve' => array( - 'path' => 'v1/{+name}:approve', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'dismiss' => array( - 'path' => 'v1/{+name}:dismiss', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/approvalRequests', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->organizations = new Google_Service_AccessApproval_Resource_Organizations( - $this, - $this->serviceName, - 'organizations', - array( - 'methods' => array( - 'deleteAccessApprovalSettings' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getAccessApprovalSettings' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'updateAccessApprovalSettings' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->organizations_approvalRequests = new Google_Service_AccessApproval_Resource_OrganizationsApprovalRequests( - $this, - $this->serviceName, - 'approvalRequests', - array( - 'methods' => array( - 'approve' => array( - 'path' => 'v1/{+name}:approve', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'dismiss' => array( - 'path' => 'v1/{+name}:dismiss', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/approvalRequests', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->projects = new Google_Service_AccessApproval_Resource_Projects( - $this, - $this->serviceName, - 'projects', - array( - 'methods' => array( - 'deleteAccessApprovalSettings' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getAccessApprovalSettings' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'updateAccessApprovalSettings' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_approvalRequests = new Google_Service_AccessApproval_Resource_ProjectsApprovalRequests( - $this, - $this->serviceName, - 'approvalRequests', - array( - 'methods' => array( - 'approve' => array( - 'path' => 'v1/{+name}:approve', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'dismiss' => array( - 'path' => 'v1/{+name}:dismiss', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/approvalRequests', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessApproval/AccessApprovalSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessApproval/AccessApprovalSettings.php deleted file mode 100644 index add2c257..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessApproval/AccessApprovalSettings.php +++ /dev/null @@ -1,65 +0,0 @@ -enrolledAncestor = $enrolledAncestor; - } - public function getEnrolledAncestor() - { - return $this->enrolledAncestor; - } - /** - * @param Google_Service_AccessApproval_EnrolledService - */ - public function setEnrolledServices($enrolledServices) - { - $this->enrolledServices = $enrolledServices; - } - /** - * @return Google_Service_AccessApproval_EnrolledService - */ - public function getEnrolledServices() - { - return $this->enrolledServices; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNotificationEmails($notificationEmails) - { - $this->notificationEmails = $notificationEmails; - } - public function getNotificationEmails() - { - return $this->notificationEmails; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessApproval/AccessLocations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessApproval/AccessLocations.php deleted file mode 100644 index 7227f5bc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessApproval/AccessLocations.php +++ /dev/null @@ -1,39 +0,0 @@ -principalOfficeCountry = $principalOfficeCountry; - } - public function getPrincipalOfficeCountry() - { - return $this->principalOfficeCountry; - } - public function setPrincipalPhysicalLocationCountry($principalPhysicalLocationCountry) - { - $this->principalPhysicalLocationCountry = $principalPhysicalLocationCountry; - } - public function getPrincipalPhysicalLocationCountry() - { - return $this->principalPhysicalLocationCountry; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessApproval/AccessReason.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessApproval/AccessReason.php deleted file mode 100644 index be0b641b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessApproval/AccessReason.php +++ /dev/null @@ -1,39 +0,0 @@ -detail = $detail; - } - public function getDetail() - { - return $this->detail; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessApproval/AccessapprovalEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessApproval/AccessapprovalEmpty.php deleted file mode 100644 index fd56449b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessApproval/AccessapprovalEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -approve = $approve; - } - /** - * @return Google_Service_AccessApproval_ApproveDecision - */ - public function getApprove() - { - return $this->approve; - } - /** - * @param Google_Service_AccessApproval_DismissDecision - */ - public function setDismiss(Google_Service_AccessApproval_DismissDecision $dismiss) - { - $this->dismiss = $dismiss; - } - /** - * @return Google_Service_AccessApproval_DismissDecision - */ - public function getDismiss() - { - return $this->dismiss; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setRequestTime($requestTime) - { - $this->requestTime = $requestTime; - } - public function getRequestTime() - { - return $this->requestTime; - } - public function setRequestedExpiration($requestedExpiration) - { - $this->requestedExpiration = $requestedExpiration; - } - public function getRequestedExpiration() - { - return $this->requestedExpiration; - } - /** - * @param Google_Service_AccessApproval_AccessLocations - */ - public function setRequestedLocations(Google_Service_AccessApproval_AccessLocations $requestedLocations) - { - $this->requestedLocations = $requestedLocations; - } - /** - * @return Google_Service_AccessApproval_AccessLocations - */ - public function getRequestedLocations() - { - return $this->requestedLocations; - } - /** - * @param Google_Service_AccessApproval_AccessReason - */ - public function setRequestedReason(Google_Service_AccessApproval_AccessReason $requestedReason) - { - $this->requestedReason = $requestedReason; - } - /** - * @return Google_Service_AccessApproval_AccessReason - */ - public function getRequestedReason() - { - return $this->requestedReason; - } - public function setRequestedResourceName($requestedResourceName) - { - $this->requestedResourceName = $requestedResourceName; - } - public function getRequestedResourceName() - { - return $this->requestedResourceName; - } - /** - * @param Google_Service_AccessApproval_ResourceProperties - */ - public function setRequestedResourceProperties(Google_Service_AccessApproval_ResourceProperties $requestedResourceProperties) - { - $this->requestedResourceProperties = $requestedResourceProperties; - } - /** - * @return Google_Service_AccessApproval_ResourceProperties - */ - public function getRequestedResourceProperties() - { - return $this->requestedResourceProperties; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessApproval/ApproveApprovalRequestMessage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessApproval/ApproveApprovalRequestMessage.php deleted file mode 100644 index db003670..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessApproval/ApproveApprovalRequestMessage.php +++ /dev/null @@ -1,30 +0,0 @@ -expireTime = $expireTime; - } - public function getExpireTime() - { - return $this->expireTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessApproval/ApproveDecision.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessApproval/ApproveDecision.php deleted file mode 100644 index bbb7cb18..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessApproval/ApproveDecision.php +++ /dev/null @@ -1,39 +0,0 @@ -approveTime = $approveTime; - } - public function getApproveTime() - { - return $this->approveTime; - } - public function setExpireTime($expireTime) - { - $this->expireTime = $expireTime; - } - public function getExpireTime() - { - return $this->expireTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessApproval/DismissApprovalRequestMessage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessApproval/DismissApprovalRequestMessage.php deleted file mode 100644 index f5991ae2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessApproval/DismissApprovalRequestMessage.php +++ /dev/null @@ -1,20 +0,0 @@ -dismissTime = $dismissTime; - } - public function getDismissTime() - { - return $this->dismissTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessApproval/EnrolledService.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessApproval/EnrolledService.php deleted file mode 100644 index a4e1eda5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessApproval/EnrolledService.php +++ /dev/null @@ -1,39 +0,0 @@ -cloudProduct = $cloudProduct; - } - public function getCloudProduct() - { - return $this->cloudProduct; - } - public function setEnrollmentLevel($enrollmentLevel) - { - $this->enrollmentLevel = $enrollmentLevel; - } - public function getEnrollmentLevel() - { - return $this->enrollmentLevel; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessApproval/ListApprovalRequestsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessApproval/ListApprovalRequestsResponse.php deleted file mode 100644 index c405f87c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessApproval/ListApprovalRequestsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -approvalRequests = $approvalRequests; - } - /** - * @return Google_Service_AccessApproval_ApprovalRequest - */ - public function getApprovalRequests() - { - return $this->approvalRequests; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessApproval/Resource/Folders.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessApproval/Resource/Folders.php deleted file mode 100644 index 215a6460..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessApproval/Resource/Folders.php +++ /dev/null @@ -1,90 +0,0 @@ - - * $accessapprovalService = new Google_Service_AccessApproval(...); - * $folders = $accessapprovalService->folders; - * - */ -class Google_Service_AccessApproval_Resource_Folders extends Google_Service_Resource -{ - /** - * Deletes the settings associated with a project, folder, or organization. This - * will have the effect of disabling Access Approval for the project, folder, or - * organization, but only if all ancestors also have Access Approval disabled. - * If Access Approval is enabled at a higher level of the hierarchy, then Access - * Approval will still be enabled at this level as the settings are inherited. - * (folders.deleteAccessApprovalSettings) - * - * @param string $name Name of the AccessApprovalSettings to delete. - * @param array $optParams Optional parameters. - * @return Google_Service_AccessApproval_AccessapprovalEmpty - */ - public function deleteAccessApprovalSettings($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('deleteAccessApprovalSettings', array($params), "Google_Service_AccessApproval_AccessapprovalEmpty"); - } - /** - * Gets the settings associated with a project, folder, or organization. - * (folders.getAccessApprovalSettings) - * - * @param string $name Name of the AccessApprovalSettings to retrieve. - * @param array $optParams Optional parameters. - * @return Google_Service_AccessApproval_AccessApprovalSettings - */ - public function getAccessApprovalSettings($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('getAccessApprovalSettings', array($params), "Google_Service_AccessApproval_AccessApprovalSettings"); - } - /** - * Updates the settings associated with a project, folder, or organization. - * Settings to update are determined by the value of field_mask. - * (folders.updateAccessApprovalSettings) - * - * @param string $name The resource name of the settings. Format is one of: - * - * "projects/{project_id}/accessApprovalSettings" - * "folders/{folder_id}/accessApprovalSettings" - * "organizations/{organization_id}/accessApprovalSettings" - * @param Google_Service_AccessApproval_AccessApprovalSettings $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask The update mask applies to the settings. Only - * the top level fields of AccessApprovalSettings (notification_emails & - * enrolled_services) are supported. For each field, if it is included, the - * currently stored value will be entirely overwritten with the value of the - * field passed in this request. - * - * For the `FieldMask` definition, see https://developers.google.com/protocol- - * buffers/docs/reference/google.protobuf#fieldmask If this field is left unset, - * only the notification_emails field will be updated. - * @return Google_Service_AccessApproval_AccessApprovalSettings - */ - public function updateAccessApprovalSettings($name, Google_Service_AccessApproval_AccessApprovalSettings $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updateAccessApprovalSettings', array($params), "Google_Service_AccessApproval_AccessApprovalSettings"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessApproval/Resource/FoldersApprovalRequests.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessApproval/Resource/FoldersApprovalRequests.php deleted file mode 100644 index a963c27f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessApproval/Resource/FoldersApprovalRequests.php +++ /dev/null @@ -1,112 +0,0 @@ - - * $accessapprovalService = new Google_Service_AccessApproval(...); - * $approvalRequests = $accessapprovalService->approvalRequests; - * - */ -class Google_Service_AccessApproval_Resource_FoldersApprovalRequests extends Google_Service_Resource -{ - /** - * Approves a request and returns the updated ApprovalRequest. - * - * Returns NOT_FOUND if the request does not exist. Returns FAILED_PRECONDITION - * if the request exists but is not in a pending state. - * (approvalRequests.approve) - * - * @param string $name Name of the approval request to approve. - * @param Google_Service_AccessApproval_ApproveApprovalRequestMessage $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AccessApproval_ApprovalRequest - */ - public function approve($name, Google_Service_AccessApproval_ApproveApprovalRequestMessage $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('approve', array($params), "Google_Service_AccessApproval_ApprovalRequest"); - } - /** - * Dismisses a request. Returns the updated ApprovalRequest. - * - * NOTE: This does not deny access to the resource if another request has been - * made and approved. It is equivalent in effect to ignoring the request - * altogether. - * - * Returns NOT_FOUND if the request does not exist. - * - * Returns FAILED_PRECONDITION if the request exists but is not in a pending - * state. (approvalRequests.dismiss) - * - * @param string $name Name of the ApprovalRequest to dismiss. - * @param Google_Service_AccessApproval_DismissApprovalRequestMessage $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AccessApproval_ApprovalRequest - */ - public function dismiss($name, Google_Service_AccessApproval_DismissApprovalRequestMessage $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('dismiss', array($params), "Google_Service_AccessApproval_ApprovalRequest"); - } - /** - * Gets an approval request. Returns NOT_FOUND if the request does not exist. - * (approvalRequests.get) - * - * @param string $name Name of the approval request to retrieve. - * @param array $optParams Optional parameters. - * @return Google_Service_AccessApproval_ApprovalRequest - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AccessApproval_ApprovalRequest"); - } - /** - * Lists approval requests associated with a project, folder, or organization. - * Approval requests can be filtered by state (pending, active, dismissed). The - * order is reverse chronological. - * (approvalRequests.listFoldersApprovalRequests) - * - * @param string $parent The parent resource. This may be - * "projects/{project_id}", "folders/{folder_id}", or - * "organizations/{organization_id}". - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter on the type of approval requests to - * retrieve. Must be one of the following values: - * - * [not set]: Requests that are pending or have active approvals. ALL: All - * requests. PENDING: Only pending requests. ACTIVE: Only active (i.e. - * currently approved) requests. DISMISSED: Only dismissed (including expired) - * requests. - * @opt_param string pageToken A token identifying the page of results to - * return. - * @opt_param int pageSize Requested page size. - * @return Google_Service_AccessApproval_ListApprovalRequestsResponse - */ - public function listFoldersApprovalRequests($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AccessApproval_ListApprovalRequestsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessApproval/Resource/Organizations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessApproval/Resource/Organizations.php deleted file mode 100644 index 55be863a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessApproval/Resource/Organizations.php +++ /dev/null @@ -1,90 +0,0 @@ - - * $accessapprovalService = new Google_Service_AccessApproval(...); - * $organizations = $accessapprovalService->organizations; - * - */ -class Google_Service_AccessApproval_Resource_Organizations extends Google_Service_Resource -{ - /** - * Deletes the settings associated with a project, folder, or organization. This - * will have the effect of disabling Access Approval for the project, folder, or - * organization, but only if all ancestors also have Access Approval disabled. - * If Access Approval is enabled at a higher level of the hierarchy, then Access - * Approval will still be enabled at this level as the settings are inherited. - * (organizations.deleteAccessApprovalSettings) - * - * @param string $name Name of the AccessApprovalSettings to delete. - * @param array $optParams Optional parameters. - * @return Google_Service_AccessApproval_AccessapprovalEmpty - */ - public function deleteAccessApprovalSettings($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('deleteAccessApprovalSettings', array($params), "Google_Service_AccessApproval_AccessapprovalEmpty"); - } - /** - * Gets the settings associated with a project, folder, or organization. - * (organizations.getAccessApprovalSettings) - * - * @param string $name Name of the AccessApprovalSettings to retrieve. - * @param array $optParams Optional parameters. - * @return Google_Service_AccessApproval_AccessApprovalSettings - */ - public function getAccessApprovalSettings($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('getAccessApprovalSettings', array($params), "Google_Service_AccessApproval_AccessApprovalSettings"); - } - /** - * Updates the settings associated with a project, folder, or organization. - * Settings to update are determined by the value of field_mask. - * (organizations.updateAccessApprovalSettings) - * - * @param string $name The resource name of the settings. Format is one of: - * - * "projects/{project_id}/accessApprovalSettings" - * "folders/{folder_id}/accessApprovalSettings" - * "organizations/{organization_id}/accessApprovalSettings" - * @param Google_Service_AccessApproval_AccessApprovalSettings $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask The update mask applies to the settings. Only - * the top level fields of AccessApprovalSettings (notification_emails & - * enrolled_services) are supported. For each field, if it is included, the - * currently stored value will be entirely overwritten with the value of the - * field passed in this request. - * - * For the `FieldMask` definition, see https://developers.google.com/protocol- - * buffers/docs/reference/google.protobuf#fieldmask If this field is left unset, - * only the notification_emails field will be updated. - * @return Google_Service_AccessApproval_AccessApprovalSettings - */ - public function updateAccessApprovalSettings($name, Google_Service_AccessApproval_AccessApprovalSettings $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updateAccessApprovalSettings', array($params), "Google_Service_AccessApproval_AccessApprovalSettings"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessApproval/Resource/OrganizationsApprovalRequests.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessApproval/Resource/OrganizationsApprovalRequests.php deleted file mode 100644 index 05f97a17..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessApproval/Resource/OrganizationsApprovalRequests.php +++ /dev/null @@ -1,112 +0,0 @@ - - * $accessapprovalService = new Google_Service_AccessApproval(...); - * $approvalRequests = $accessapprovalService->approvalRequests; - * - */ -class Google_Service_AccessApproval_Resource_OrganizationsApprovalRequests extends Google_Service_Resource -{ - /** - * Approves a request and returns the updated ApprovalRequest. - * - * Returns NOT_FOUND if the request does not exist. Returns FAILED_PRECONDITION - * if the request exists but is not in a pending state. - * (approvalRequests.approve) - * - * @param string $name Name of the approval request to approve. - * @param Google_Service_AccessApproval_ApproveApprovalRequestMessage $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AccessApproval_ApprovalRequest - */ - public function approve($name, Google_Service_AccessApproval_ApproveApprovalRequestMessage $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('approve', array($params), "Google_Service_AccessApproval_ApprovalRequest"); - } - /** - * Dismisses a request. Returns the updated ApprovalRequest. - * - * NOTE: This does not deny access to the resource if another request has been - * made and approved. It is equivalent in effect to ignoring the request - * altogether. - * - * Returns NOT_FOUND if the request does not exist. - * - * Returns FAILED_PRECONDITION if the request exists but is not in a pending - * state. (approvalRequests.dismiss) - * - * @param string $name Name of the ApprovalRequest to dismiss. - * @param Google_Service_AccessApproval_DismissApprovalRequestMessage $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AccessApproval_ApprovalRequest - */ - public function dismiss($name, Google_Service_AccessApproval_DismissApprovalRequestMessage $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('dismiss', array($params), "Google_Service_AccessApproval_ApprovalRequest"); - } - /** - * Gets an approval request. Returns NOT_FOUND if the request does not exist. - * (approvalRequests.get) - * - * @param string $name Name of the approval request to retrieve. - * @param array $optParams Optional parameters. - * @return Google_Service_AccessApproval_ApprovalRequest - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AccessApproval_ApprovalRequest"); - } - /** - * Lists approval requests associated with a project, folder, or organization. - * Approval requests can be filtered by state (pending, active, dismissed). The - * order is reverse chronological. - * (approvalRequests.listOrganizationsApprovalRequests) - * - * @param string $parent The parent resource. This may be - * "projects/{project_id}", "folders/{folder_id}", or - * "organizations/{organization_id}". - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter on the type of approval requests to - * retrieve. Must be one of the following values: - * - * [not set]: Requests that are pending or have active approvals. ALL: All - * requests. PENDING: Only pending requests. ACTIVE: Only active (i.e. - * currently approved) requests. DISMISSED: Only dismissed (including expired) - * requests. - * @opt_param string pageToken A token identifying the page of results to - * return. - * @opt_param int pageSize Requested page size. - * @return Google_Service_AccessApproval_ListApprovalRequestsResponse - */ - public function listOrganizationsApprovalRequests($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AccessApproval_ListApprovalRequestsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessApproval/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessApproval/Resource/Projects.php deleted file mode 100644 index cca01fb0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessApproval/Resource/Projects.php +++ /dev/null @@ -1,90 +0,0 @@ - - * $accessapprovalService = new Google_Service_AccessApproval(...); - * $projects = $accessapprovalService->projects; - * - */ -class Google_Service_AccessApproval_Resource_Projects extends Google_Service_Resource -{ - /** - * Deletes the settings associated with a project, folder, or organization. This - * will have the effect of disabling Access Approval for the project, folder, or - * organization, but only if all ancestors also have Access Approval disabled. - * If Access Approval is enabled at a higher level of the hierarchy, then Access - * Approval will still be enabled at this level as the settings are inherited. - * (projects.deleteAccessApprovalSettings) - * - * @param string $name Name of the AccessApprovalSettings to delete. - * @param array $optParams Optional parameters. - * @return Google_Service_AccessApproval_AccessapprovalEmpty - */ - public function deleteAccessApprovalSettings($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('deleteAccessApprovalSettings', array($params), "Google_Service_AccessApproval_AccessapprovalEmpty"); - } - /** - * Gets the settings associated with a project, folder, or organization. - * (projects.getAccessApprovalSettings) - * - * @param string $name Name of the AccessApprovalSettings to retrieve. - * @param array $optParams Optional parameters. - * @return Google_Service_AccessApproval_AccessApprovalSettings - */ - public function getAccessApprovalSettings($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('getAccessApprovalSettings', array($params), "Google_Service_AccessApproval_AccessApprovalSettings"); - } - /** - * Updates the settings associated with a project, folder, or organization. - * Settings to update are determined by the value of field_mask. - * (projects.updateAccessApprovalSettings) - * - * @param string $name The resource name of the settings. Format is one of: - * - * "projects/{project_id}/accessApprovalSettings" - * "folders/{folder_id}/accessApprovalSettings" - * "organizations/{organization_id}/accessApprovalSettings" - * @param Google_Service_AccessApproval_AccessApprovalSettings $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask The update mask applies to the settings. Only - * the top level fields of AccessApprovalSettings (notification_emails & - * enrolled_services) are supported. For each field, if it is included, the - * currently stored value will be entirely overwritten with the value of the - * field passed in this request. - * - * For the `FieldMask` definition, see https://developers.google.com/protocol- - * buffers/docs/reference/google.protobuf#fieldmask If this field is left unset, - * only the notification_emails field will be updated. - * @return Google_Service_AccessApproval_AccessApprovalSettings - */ - public function updateAccessApprovalSettings($name, Google_Service_AccessApproval_AccessApprovalSettings $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updateAccessApprovalSettings', array($params), "Google_Service_AccessApproval_AccessApprovalSettings"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessApproval/Resource/ProjectsApprovalRequests.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessApproval/Resource/ProjectsApprovalRequests.php deleted file mode 100644 index dfc1185a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessApproval/Resource/ProjectsApprovalRequests.php +++ /dev/null @@ -1,112 +0,0 @@ - - * $accessapprovalService = new Google_Service_AccessApproval(...); - * $approvalRequests = $accessapprovalService->approvalRequests; - * - */ -class Google_Service_AccessApproval_Resource_ProjectsApprovalRequests extends Google_Service_Resource -{ - /** - * Approves a request and returns the updated ApprovalRequest. - * - * Returns NOT_FOUND if the request does not exist. Returns FAILED_PRECONDITION - * if the request exists but is not in a pending state. - * (approvalRequests.approve) - * - * @param string $name Name of the approval request to approve. - * @param Google_Service_AccessApproval_ApproveApprovalRequestMessage $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AccessApproval_ApprovalRequest - */ - public function approve($name, Google_Service_AccessApproval_ApproveApprovalRequestMessage $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('approve', array($params), "Google_Service_AccessApproval_ApprovalRequest"); - } - /** - * Dismisses a request. Returns the updated ApprovalRequest. - * - * NOTE: This does not deny access to the resource if another request has been - * made and approved. It is equivalent in effect to ignoring the request - * altogether. - * - * Returns NOT_FOUND if the request does not exist. - * - * Returns FAILED_PRECONDITION if the request exists but is not in a pending - * state. (approvalRequests.dismiss) - * - * @param string $name Name of the ApprovalRequest to dismiss. - * @param Google_Service_AccessApproval_DismissApprovalRequestMessage $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AccessApproval_ApprovalRequest - */ - public function dismiss($name, Google_Service_AccessApproval_DismissApprovalRequestMessage $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('dismiss', array($params), "Google_Service_AccessApproval_ApprovalRequest"); - } - /** - * Gets an approval request. Returns NOT_FOUND if the request does not exist. - * (approvalRequests.get) - * - * @param string $name Name of the approval request to retrieve. - * @param array $optParams Optional parameters. - * @return Google_Service_AccessApproval_ApprovalRequest - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AccessApproval_ApprovalRequest"); - } - /** - * Lists approval requests associated with a project, folder, or organization. - * Approval requests can be filtered by state (pending, active, dismissed). The - * order is reverse chronological. - * (approvalRequests.listProjectsApprovalRequests) - * - * @param string $parent The parent resource. This may be - * "projects/{project_id}", "folders/{folder_id}", or - * "organizations/{organization_id}". - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter on the type of approval requests to - * retrieve. Must be one of the following values: - * - * [not set]: Requests that are pending or have active approvals. ALL: All - * requests. PENDING: Only pending requests. ACTIVE: Only active (i.e. - * currently approved) requests. DISMISSED: Only dismissed (including expired) - * requests. - * @opt_param string pageToken A token identifying the page of results to - * return. - * @opt_param int pageSize Requested page size. - * @return Google_Service_AccessApproval_ListApprovalRequestsResponse - */ - public function listProjectsApprovalRequests($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AccessApproval_ListApprovalRequestsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessApproval/ResourceProperties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessApproval/ResourceProperties.php deleted file mode 100644 index 699f13e6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessApproval/ResourceProperties.php +++ /dev/null @@ -1,30 +0,0 @@ -excludesDescendants = $excludesDescendants; - } - public function getExcludesDescendants() - { - return $this->excludesDescendants; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager.php deleted file mode 100644 index b3ba1a7a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager.php +++ /dev/null @@ -1,338 +0,0 @@ - - * An API for setting attribute based access control to requests to GCP - * services.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_AccessContextManager extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - - public $accessPolicies; - public $accessPolicies_accessLevels; - public $accessPolicies_servicePerimeters; - public $operations; - - /** - * Constructs the internal representation of the AccessContextManager service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://accesscontextmanager.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'accesscontextmanager'; - - $this->accessPolicies = new Google_Service_AccessContextManager_Resource_AccessPolicies( - $this, - $this->serviceName, - 'accessPolicies', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/accessPolicies', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/accessPolicies', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'parent' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->accessPolicies_accessLevels = new Google_Service_AccessContextManager_Resource_AccessPoliciesAccessLevels( - $this, - $this->serviceName, - 'accessLevels', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/accessLevels', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'accessLevelFormat' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/accessLevels', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'accessLevelFormat' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->accessPolicies_servicePerimeters = new Google_Service_AccessContextManager_Resource_AccessPoliciesServicePerimeters( - $this, - $this->serviceName, - 'servicePerimeters', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/servicePerimeters', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/servicePerimeters', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->operations = new Google_Service_AccessContextManager_Resource_Operations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'cancel' => array( - 'path' => 'v1/{+name}:cancel', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/AccessLevel.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/AccessLevel.php deleted file mode 100644 index 2d76bac7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/AccessLevel.php +++ /dev/null @@ -1,98 +0,0 @@ -basic = $basic; - } - /** - * @return Google_Service_AccessContextManager_BasicLevel - */ - public function getBasic() - { - return $this->basic; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - /** - * @param Google_Service_AccessContextManager_CustomLevel - */ - public function setCustom(Google_Service_AccessContextManager_CustomLevel $custom) - { - $this->custom = $custom; - } - /** - * @return Google_Service_AccessContextManager_CustomLevel - */ - public function getCustom() - { - return $this->custom; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/AccessPolicy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/AccessPolicy.php deleted file mode 100644 index e2eabc48..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/AccessPolicy.php +++ /dev/null @@ -1,66 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setParent($parent) - { - $this->parent = $parent; - } - public function getParent() - { - return $this->parent; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/AccesscontextmanagerEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/AccesscontextmanagerEmpty.php deleted file mode 100644 index 25900400..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/AccesscontextmanagerEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -combiningFunction = $combiningFunction; - } - public function getCombiningFunction() - { - return $this->combiningFunction; - } - /** - * @param Google_Service_AccessContextManager_Condition - */ - public function setConditions($conditions) - { - $this->conditions = $conditions; - } - /** - * @return Google_Service_AccessContextManager_Condition - */ - public function getConditions() - { - return $this->conditions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/CancelOperationRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/CancelOperationRequest.php deleted file mode 100644 index c38b584e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/CancelOperationRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -devicePolicy = $devicePolicy; - } - /** - * @return Google_Service_AccessContextManager_DevicePolicy - */ - public function getDevicePolicy() - { - return $this->devicePolicy; - } - public function setIpSubnetworks($ipSubnetworks) - { - $this->ipSubnetworks = $ipSubnetworks; - } - public function getIpSubnetworks() - { - return $this->ipSubnetworks; - } - public function setMembers($members) - { - $this->members = $members; - } - public function getMembers() - { - return $this->members; - } - public function setNegate($negate) - { - $this->negate = $negate; - } - public function getNegate() - { - return $this->negate; - } - public function setRegions($regions) - { - $this->regions = $regions; - } - public function getRegions() - { - return $this->regions; - } - public function setRequiredAccessLevels($requiredAccessLevels) - { - $this->requiredAccessLevels = $requiredAccessLevels; - } - public function getRequiredAccessLevels() - { - return $this->requiredAccessLevels; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/CustomLevel.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/CustomLevel.php deleted file mode 100644 index 6423aae7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/CustomLevel.php +++ /dev/null @@ -1,37 +0,0 @@ -expr = $expr; - } - /** - * @return Google_Service_AccessContextManager_Expr - */ - public function getExpr() - { - return $this->expr; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/DevicePolicy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/DevicePolicy.php deleted file mode 100644 index 84f5430c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/DevicePolicy.php +++ /dev/null @@ -1,83 +0,0 @@ -allowedDeviceManagementLevels = $allowedDeviceManagementLevels; - } - public function getAllowedDeviceManagementLevels() - { - return $this->allowedDeviceManagementLevels; - } - public function setAllowedEncryptionStatuses($allowedEncryptionStatuses) - { - $this->allowedEncryptionStatuses = $allowedEncryptionStatuses; - } - public function getAllowedEncryptionStatuses() - { - return $this->allowedEncryptionStatuses; - } - /** - * @param Google_Service_AccessContextManager_OsConstraint - */ - public function setOsConstraints($osConstraints) - { - $this->osConstraints = $osConstraints; - } - /** - * @return Google_Service_AccessContextManager_OsConstraint - */ - public function getOsConstraints() - { - return $this->osConstraints; - } - public function setRequireAdminApproval($requireAdminApproval) - { - $this->requireAdminApproval = $requireAdminApproval; - } - public function getRequireAdminApproval() - { - return $this->requireAdminApproval; - } - public function setRequireCorpOwned($requireCorpOwned) - { - $this->requireCorpOwned = $requireCorpOwned; - } - public function getRequireCorpOwned() - { - return $this->requireCorpOwned; - } - public function setRequireScreenlock($requireScreenlock) - { - $this->requireScreenlock = $requireScreenlock; - } - public function getRequireScreenlock() - { - return $this->requireScreenlock; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/Expr.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/Expr.php deleted file mode 100644 index b5622f4a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/Expr.php +++ /dev/null @@ -1,57 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setExpression($expression) - { - $this->expression = $expression; - } - public function getExpression() - { - return $this->expression; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/ListAccessLevelsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/ListAccessLevelsResponse.php deleted file mode 100644 index 638fbba8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/ListAccessLevelsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -accessLevels = $accessLevels; - } - /** - * @return Google_Service_AccessContextManager_AccessLevel - */ - public function getAccessLevels() - { - return $this->accessLevels; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/ListAccessPoliciesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/ListAccessPoliciesResponse.php deleted file mode 100644 index b08be092..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/ListAccessPoliciesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -accessPolicies = $accessPolicies; - } - /** - * @return Google_Service_AccessContextManager_AccessPolicy - */ - public function getAccessPolicies() - { - return $this->accessPolicies; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/ListOperationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/ListOperationsResponse.php deleted file mode 100644 index 1c8d6981..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/ListOperationsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_AccessContextManager_Operation - */ - public function setOperations($operations) - { - $this->operations = $operations; - } - /** - * @return Google_Service_AccessContextManager_Operation - */ - public function getOperations() - { - return $this->operations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/ListServicePerimetersResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/ListServicePerimetersResponse.php deleted file mode 100644 index f161fd9a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/ListServicePerimetersResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_AccessContextManager_ServicePerimeter - */ - public function setServicePerimeters($servicePerimeters) - { - $this->servicePerimeters = $servicePerimeters; - } - /** - * @return Google_Service_AccessContextManager_ServicePerimeter - */ - public function getServicePerimeters() - { - return $this->servicePerimeters; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/Operation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/Operation.php deleted file mode 100644 index 12cdc359..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/Operation.php +++ /dev/null @@ -1,73 +0,0 @@ -done = $done; - } - public function getDone() - { - return $this->done; - } - /** - * @param Google_Service_AccessContextManager_Status - */ - public function setError(Google_Service_AccessContextManager_Status $error) - { - $this->error = $error; - } - /** - * @return Google_Service_AccessContextManager_Status - */ - public function getError() - { - return $this->error; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/OsConstraint.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/OsConstraint.php deleted file mode 100644 index c4f04daa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/OsConstraint.php +++ /dev/null @@ -1,48 +0,0 @@ -minimumVersion = $minimumVersion; - } - public function getMinimumVersion() - { - return $this->minimumVersion; - } - public function setOsType($osType) - { - $this->osType = $osType; - } - public function getOsType() - { - return $this->osType; - } - public function setRequireVerifiedChromeOs($requireVerifiedChromeOs) - { - $this->requireVerifiedChromeOs = $requireVerifiedChromeOs; - } - public function getRequireVerifiedChromeOs() - { - return $this->requireVerifiedChromeOs; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/Resource/AccessPolicies.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/Resource/AccessPolicies.php deleted file mode 100644 index 5a693ecb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/Resource/AccessPolicies.php +++ /dev/null @@ -1,120 +0,0 @@ - - * $accesscontextmanagerService = new Google_Service_AccessContextManager(...); - * $accessPolicies = $accesscontextmanagerService->accessPolicies; - * - */ -class Google_Service_AccessContextManager_Resource_AccessPolicies extends Google_Service_Resource -{ - /** - * Create an `AccessPolicy`. Fails if this organization already has a - * `AccessPolicy`. The longrunning Operation will have a successful status once - * the `AccessPolicy` has propagated to long-lasting storage. Syntactic and - * basic semantic errors will be returned in `metadata` as a BadRequest proto. - * (accessPolicies.create) - * - * @param Google_Service_AccessContextManager_AccessPolicy $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AccessContextManager_Operation - */ - public function create(Google_Service_AccessContextManager_AccessPolicy $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_AccessContextManager_Operation"); - } - /** - * Delete an AccessPolicy by resource name. The longrunning Operation will have - * a successful status once the AccessPolicy has been removed from long-lasting - * storage. (accessPolicies.delete) - * - * @param string $name Required. Resource name for the access policy to delete. - * - * Format `accessPolicies/{policy_id}` - * @param array $optParams Optional parameters. - * @return Google_Service_AccessContextManager_Operation - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_AccessContextManager_Operation"); - } - /** - * Get an AccessPolicy by name. (accessPolicies.get) - * - * @param string $name Required. Resource name for the access policy to get. - * - * Format `accessPolicies/{policy_id}` - * @param array $optParams Optional parameters. - * @return Google_Service_AccessContextManager_AccessPolicy - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AccessContextManager_AccessPolicy"); - } - /** - * List all AccessPolicies under a container. - * (accessPolicies.listAccessPolicies) - * - * @param array $optParams Optional parameters. - * - * @opt_param int pageSize Number of AccessPolicy instances to include in the - * list. Default 100. - * @opt_param string parent Required. Resource name for the container to list - * AccessPolicy instances from. - * - * Format: `organizations/{org_id}` - * @opt_param string pageToken Next page token for the next batch of - * AccessPolicy instances. Defaults to the first page of results. - * @return Google_Service_AccessContextManager_ListAccessPoliciesResponse - */ - public function listAccessPolicies($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AccessContextManager_ListAccessPoliciesResponse"); - } - /** - * Update an AccessPolicy. The longrunning Operation from this RPC will have a - * successful status once the changes to the AccessPolicy have propagated to - * long-lasting storage. Syntactic and basic semantic errors will be returned in - * `metadata` as a BadRequest proto. (accessPolicies.patch) - * - * @param string $name Output only. Resource name of the `AccessPolicy`. Format: - * `accessPolicies/{policy_id}` - * @param Google_Service_AccessContextManager_AccessPolicy $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Required. Mask to control which fields get - * updated. Must be non-empty. - * @return Google_Service_AccessContextManager_Operation - */ - public function patch($name, Google_Service_AccessContextManager_AccessPolicy $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_AccessContextManager_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/Resource/AccessPoliciesAccessLevels.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/Resource/AccessPoliciesAccessLevels.php deleted file mode 100644 index 6947de07..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/Resource/AccessPoliciesAccessLevels.php +++ /dev/null @@ -1,135 +0,0 @@ - - * $accesscontextmanagerService = new Google_Service_AccessContextManager(...); - * $accessLevels = $accesscontextmanagerService->accessLevels; - * - */ -class Google_Service_AccessContextManager_Resource_AccessPoliciesAccessLevels extends Google_Service_Resource -{ - /** - * Create an Access Level. The longrunning operation from this RPC will have a - * successful status once the Access Level has propagated to long-lasting - * storage. Access Levels containing errors will result in an error response for - * the first error encountered. (accessLevels.create) - * - * @param string $parent Required. Resource name for the access policy which - * owns this Access Level. - * - * Format: `accessPolicies/{policy_id}` - * @param Google_Service_AccessContextManager_AccessLevel $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AccessContextManager_Operation - */ - public function create($parent, Google_Service_AccessContextManager_AccessLevel $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_AccessContextManager_Operation"); - } - /** - * Delete an Access Level by resource name. The longrunning operation from this - * RPC will have a successful status once the Access Level has been removed from - * long-lasting storage. (accessLevels.delete) - * - * @param string $name Required. Resource name for the Access Level. - * - * Format: `accessPolicies/{policy_id}/accessLevels/{access_level_id}` - * @param array $optParams Optional parameters. - * @return Google_Service_AccessContextManager_Operation - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_AccessContextManager_Operation"); - } - /** - * Get an Access Level by resource name. (accessLevels.get) - * - * @param string $name Required. Resource name for the Access Level. - * - * Format: `accessPolicies/{policy_id}/accessLevels/{access_level_id}` - * @param array $optParams Optional parameters. - * - * @opt_param string accessLevelFormat Whether to return `BasicLevels` in the - * Cloud Common Expression Language rather than as `BasicLevels`. Defaults to - * AS_DEFINED, where Access Levels are returned as `BasicLevels` or - * `CustomLevels` based on how they were created. If set to CEL, all Access - * Levels are returned as `CustomLevels`. In the CEL case, `BasicLevels` are - * translated to equivalent `CustomLevels`. - * @return Google_Service_AccessContextManager_AccessLevel - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AccessContextManager_AccessLevel"); - } - /** - * List all Access Levels for an access policy. - * (accessLevels.listAccessPoliciesAccessLevels) - * - * @param string $parent Required. Resource name for the access policy to list - * Access Levels from. - * - * Format: `accessPolicies/{policy_id}` - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Next page token for the next batch of Access - * Level instances. Defaults to the first page of results. - * @opt_param int pageSize Number of Access Levels to include in the list. - * Default 100. - * @opt_param string accessLevelFormat Whether to return `BasicLevels` in the - * Cloud Common Expression language, as `CustomLevels`, rather than as - * `BasicLevels`. Defaults to returning `AccessLevels` in the format they were - * defined. - * @return Google_Service_AccessContextManager_ListAccessLevelsResponse - */ - public function listAccessPoliciesAccessLevels($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AccessContextManager_ListAccessLevelsResponse"); - } - /** - * Update an Access Level. The longrunning operation from this RPC will have a - * successful status once the changes to the Access Level have propagated to - * long-lasting storage. Access Levels containing errors will result in an error - * response for the first error encountered. (accessLevels.patch) - * - * @param string $name Required. Resource name for the Access Level. The - * `short_name` component must begin with a letter and only include alphanumeric - * and '_'. Format: `accessPolicies/{policy_id}/accessLevels/{short_name}` - * @param Google_Service_AccessContextManager_AccessLevel $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Required. Mask to control which fields get - * updated. Must be non-empty. - * @return Google_Service_AccessContextManager_Operation - */ - public function patch($name, Google_Service_AccessContextManager_AccessLevel $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_AccessContextManager_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/Resource/AccessPoliciesServicePerimeters.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/Resource/AccessPoliciesServicePerimeters.php deleted file mode 100644 index 8f700c6a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/Resource/AccessPoliciesServicePerimeters.php +++ /dev/null @@ -1,126 +0,0 @@ - - * $accesscontextmanagerService = new Google_Service_AccessContextManager(...); - * $servicePerimeters = $accesscontextmanagerService->servicePerimeters; - * - */ -class Google_Service_AccessContextManager_Resource_AccessPoliciesServicePerimeters extends Google_Service_Resource -{ - /** - * Create an Service Perimeter. The longrunning operation from this RPC will - * have a successful status once the Service Perimeter has propagated to long- - * lasting storage. Service Perimeters containing errors will result in an error - * response for the first error encountered. (servicePerimeters.create) - * - * @param string $parent Required. Resource name for the access policy which - * owns this Service Perimeter. - * - * Format: `accessPolicies/{policy_id}` - * @param Google_Service_AccessContextManager_ServicePerimeter $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AccessContextManager_Operation - */ - public function create($parent, Google_Service_AccessContextManager_ServicePerimeter $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_AccessContextManager_Operation"); - } - /** - * Delete an Service Perimeter by resource name. The longrunning operation from - * this RPC will have a successful status once the Service Perimeter has been - * removed from long-lasting storage. (servicePerimeters.delete) - * - * @param string $name Required. Resource name for the Service Perimeter. - * - * Format: `accessPolicies/{policy_id}/servicePerimeters/{service_perimeter_id}` - * @param array $optParams Optional parameters. - * @return Google_Service_AccessContextManager_Operation - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_AccessContextManager_Operation"); - } - /** - * Get an Service Perimeter by resource name. (servicePerimeters.get) - * - * @param string $name Required. Resource name for the Service Perimeter. - * - * Format: - * `accessPolicies/{policy_id}/servicePerimeters/{service_perimeters_id}` - * @param array $optParams Optional parameters. - * @return Google_Service_AccessContextManager_ServicePerimeter - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AccessContextManager_ServicePerimeter"); - } - /** - * List all Service Perimeters for an access policy. - * (servicePerimeters.listAccessPoliciesServicePerimeters) - * - * @param string $parent Required. Resource name for the access policy to list - * Service Perimeters from. - * - * Format: `accessPolicies/{policy_id}` - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Next page token for the next batch of Service - * Perimeter instances. Defaults to the first page of results. - * @opt_param int pageSize Number of Service Perimeters to include in the list. - * Default 100. - * @return Google_Service_AccessContextManager_ListServicePerimetersResponse - */ - public function listAccessPoliciesServicePerimeters($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AccessContextManager_ListServicePerimetersResponse"); - } - /** - * Update an Service Perimeter. The longrunning operation from this RPC will - * have a successful status once the changes to the Service Perimeter have - * propagated to long-lasting storage. Service Perimeter containing errors will - * result in an error response for the first error encountered. - * (servicePerimeters.patch) - * - * @param string $name Required. Resource name for the ServicePerimeter. The - * `short_name` component must begin with a letter and only include alphanumeric - * and '_'. Format: `accessPolicies/{policy_id}/servicePerimeters/{short_name}` - * @param Google_Service_AccessContextManager_ServicePerimeter $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Required. Mask to control which fields get - * updated. Must be non-empty. - * @return Google_Service_AccessContextManager_Operation - */ - public function patch($name, Google_Service_AccessContextManager_ServicePerimeter $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_AccessContextManager_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/Resource/Operations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/Resource/Operations.php deleted file mode 100644 index 1ba507f3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/Resource/Operations.php +++ /dev/null @@ -1,107 +0,0 @@ - - * $accesscontextmanagerService = new Google_Service_AccessContextManager(...); - * $operations = $accesscontextmanagerService->operations; - * - */ -class Google_Service_AccessContextManager_Resource_Operations extends Google_Service_Resource -{ - /** - * Starts asynchronous cancellation on a long-running operation. The server - * makes a best effort to cancel the operation, but success is not guaranteed. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or - * other methods to check whether the cancellation succeeded or whether the - * operation completed despite cancellation. On successful cancellation, the - * operation is not deleted; instead, it becomes an operation with an - * Operation.error value with a google.rpc.Status.code of 1, corresponding to - * `Code.CANCELLED`. (operations.cancel) - * - * @param string $name The name of the operation resource to be cancelled. - * @param Google_Service_AccessContextManager_CancelOperationRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AccessContextManager_AccesscontextmanagerEmpty - */ - public function cancel($name, Google_Service_AccessContextManager_CancelOperationRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('cancel', array($params), "Google_Service_AccessContextManager_AccesscontextmanagerEmpty"); - } - /** - * Deletes a long-running operation. This method indicates that the client is no - * longer interested in the operation result. It does not cancel the operation. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. (operations.delete) - * - * @param string $name The name of the operation resource to be deleted. - * @param array $optParams Optional parameters. - * @return Google_Service_AccessContextManager_AccesscontextmanagerEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_AccessContextManager_AccesscontextmanagerEmpty"); - } - /** - * Gets the latest state of a long-running operation. Clients can use this - * method to poll the operation result at intervals as recommended by the API - * service. (operations.get) - * - * @param string $name The name of the operation resource. - * @param array $optParams Optional parameters. - * @return Google_Service_AccessContextManager_Operation - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AccessContextManager_Operation"); - } - /** - * Lists operations that match the specified filter in the request. If the - * server doesn't support this method, it returns `UNIMPLEMENTED`. - * - * NOTE: the `name` binding allows API services to override the binding to use - * different resource name schemes, such as `users/operations`. To override the - * binding, API services can add a binding such as - * `"/v1/{name=users}/operations"` to their service configuration. For backwards - * compatibility, the default name includes the operations collection id, - * however overriding users must ensure the name binding is the parent resource, - * without the operations collection id. (operations.listOperations) - * - * @param string $name The name of the operation's parent resource. - * @param array $optParams Optional parameters. - * - * @opt_param string filter The standard list filter. - * @opt_param string pageToken The standard list page token. - * @opt_param int pageSize The standard list page size. - * @return Google_Service_AccessContextManager_ListOperationsResponse - */ - public function listOperations($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AccessContextManager_ListOperationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/ServicePerimeter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/ServicePerimeter.php deleted file mode 100644 index 03ed651a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/ServicePerimeter.php +++ /dev/null @@ -1,91 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPerimeterType($perimeterType) - { - $this->perimeterType = $perimeterType; - } - public function getPerimeterType() - { - return $this->perimeterType; - } - /** - * @param Google_Service_AccessContextManager_ServicePerimeterConfig - */ - public function setStatus(Google_Service_AccessContextManager_ServicePerimeterConfig $status) - { - $this->status = $status; - } - /** - * @return Google_Service_AccessContextManager_ServicePerimeterConfig - */ - public function getStatus() - { - return $this->status; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/ServicePerimeterConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/ServicePerimeterConfig.php deleted file mode 100644 index f8da0093..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/ServicePerimeterConfig.php +++ /dev/null @@ -1,49 +0,0 @@ -accessLevels = $accessLevels; - } - public function getAccessLevels() - { - return $this->accessLevels; - } - public function setResources($resources) - { - $this->resources = $resources; - } - public function getResources() - { - return $this->resources; - } - public function setRestrictedServices($restrictedServices) - { - $this->restrictedServices = $restrictedServices; - } - public function getRestrictedServices() - { - return $this->restrictedServices; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/Status.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/Status.php deleted file mode 100644 index 948b3cdc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AccessContextManager/Status.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer.php deleted file mode 100644 index 6617b3f9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer.php +++ /dev/null @@ -1,681 +0,0 @@ - - * Accesses your bidding-account information, submits creatives for validation, - * finds available direct deals, and retrieves performance reports.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_AdExchangeBuyer extends Google_Service -{ - /** Manage your Ad Exchange buyer account configuration. */ - const ADEXCHANGE_BUYER = - "https://www.googleapis.com/auth/adexchange.buyer"; - - public $accounts; - public $billingInfo; - public $budget; - public $creatives; - public $marketplacedeals; - public $marketplacenotes; - public $marketplaceprivateauction; - public $performanceReport; - public $pretargetingConfig; - public $products; - public $proposals; - public $pubprofiles; - - /** - * Constructs the internal representation of the AdExchangeBuyer service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://www.googleapis.com/'; - $this->servicePath = 'adexchangebuyer/v1.4/'; - $this->batchPath = 'batch/adexchangebuyer/v1.4'; - $this->version = 'v1.4'; - $this->serviceName = 'adexchangebuyer'; - - $this->accounts = new Google_Service_AdExchangeBuyer_Resource_Accounts( - $this, - $this->serviceName, - 'accounts', - array( - 'methods' => array( - 'get' => array( - 'path' => 'accounts/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'accounts', - 'httpMethod' => 'GET', - 'parameters' => array(), - ),'patch' => array( - 'path' => 'accounts/{id}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - 'confirmUnsafeAccountChange' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'update' => array( - 'path' => 'accounts/{id}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - 'confirmUnsafeAccountChange' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ), - ) - ) - ); - $this->billingInfo = new Google_Service_AdExchangeBuyer_Resource_BillingInfo( - $this, - $this->serviceName, - 'billingInfo', - array( - 'methods' => array( - 'get' => array( - 'path' => 'billinginfo/{accountId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'billinginfo', - 'httpMethod' => 'GET', - 'parameters' => array(), - ), - ) - ) - ); - $this->budget = new Google_Service_AdExchangeBuyer_Resource_Budget( - $this, - $this->serviceName, - 'budget', - array( - 'methods' => array( - 'get' => array( - 'path' => 'billinginfo/{accountId}/{billingId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'billingId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => 'billinginfo/{accountId}/{billingId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'billingId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'billinginfo/{accountId}/{billingId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'billingId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->creatives = new Google_Service_AdExchangeBuyer_Resource_Creatives( - $this, - $this->serviceName, - 'creatives', - array( - 'methods' => array( - 'addDeal' => array( - 'path' => 'creatives/{accountId}/{buyerCreativeId}/addDeal/{dealId}', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - 'buyerCreativeId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'dealId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'creatives/{accountId}/{buyerCreativeId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - 'buyerCreativeId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'creatives', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'list' => array( - 'path' => 'creatives', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'query', - 'type' => 'integer', - 'repeated' => true, - ), - 'buyerCreativeId' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'dealsStatusFilter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'openAuctionStatusFilter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'listDeals' => array( - 'path' => 'creatives/{accountId}/{buyerCreativeId}/listDeals', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - 'buyerCreativeId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'removeDeal' => array( - 'path' => 'creatives/{accountId}/{buyerCreativeId}/removeDeal/{dealId}', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - 'buyerCreativeId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'dealId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->marketplacedeals = new Google_Service_AdExchangeBuyer_Resource_Marketplacedeals( - $this, - $this->serviceName, - 'marketplacedeals', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'proposals/{proposalId}/deals/delete', - 'httpMethod' => 'POST', - 'parameters' => array( - 'proposalId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'proposals/{proposalId}/deals/insert', - 'httpMethod' => 'POST', - 'parameters' => array( - 'proposalId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'proposals/{proposalId}/deals', - 'httpMethod' => 'GET', - 'parameters' => array( - 'proposalId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pqlQuery' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'proposals/{proposalId}/deals/update', - 'httpMethod' => 'POST', - 'parameters' => array( - 'proposalId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->marketplacenotes = new Google_Service_AdExchangeBuyer_Resource_Marketplacenotes( - $this, - $this->serviceName, - 'marketplacenotes', - array( - 'methods' => array( - 'insert' => array( - 'path' => 'proposals/{proposalId}/notes/insert', - 'httpMethod' => 'POST', - 'parameters' => array( - 'proposalId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'proposals/{proposalId}/notes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'proposalId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pqlQuery' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->marketplaceprivateauction = new Google_Service_AdExchangeBuyer_Resource_Marketplaceprivateauction( - $this, - $this->serviceName, - 'marketplaceprivateauction', - array( - 'methods' => array( - 'updateproposal' => array( - 'path' => 'privateauction/{privateAuctionId}/updateproposal', - 'httpMethod' => 'POST', - 'parameters' => array( - 'privateAuctionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->performanceReport = new Google_Service_AdExchangeBuyer_Resource_PerformanceReport( - $this, - $this->serviceName, - 'performanceReport', - array( - 'methods' => array( - 'list' => array( - 'path' => 'performancereport', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'endDateTime' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'startDateTime' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->pretargetingConfig = new Google_Service_AdExchangeBuyer_Resource_PretargetingConfig( - $this, - $this->serviceName, - 'pretargetingConfig', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'pretargetingconfigs/{accountId}/{configId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'configId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'pretargetingconfigs/{accountId}/{configId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'configId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'pretargetingconfigs/{accountId}', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'pretargetingconfigs/{accountId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => 'pretargetingconfigs/{accountId}/{configId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'configId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'pretargetingconfigs/{accountId}/{configId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'configId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->products = new Google_Service_AdExchangeBuyer_Resource_Products( - $this, - $this->serviceName, - 'products', - array( - 'methods' => array( - 'get' => array( - 'path' => 'products/{productId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'productId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'search' => array( - 'path' => 'products/search', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pqlQuery' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->proposals = new Google_Service_AdExchangeBuyer_Resource_Proposals( - $this, - $this->serviceName, - 'proposals', - array( - 'methods' => array( - 'get' => array( - 'path' => 'proposals/{proposalId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'proposalId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'proposals/insert', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'patch' => array( - 'path' => 'proposals/{proposalId}/{revisionNumber}/{updateAction}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'proposalId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'revisionNumber' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateAction' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'search' => array( - 'path' => 'proposals/search', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pqlQuery' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setupcomplete' => array( - 'path' => 'proposals/{proposalId}/setupcomplete', - 'httpMethod' => 'POST', - 'parameters' => array( - 'proposalId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'proposals/{proposalId}/{revisionNumber}/{updateAction}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'proposalId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'revisionNumber' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateAction' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->pubprofiles = new Google_Service_AdExchangeBuyer_Resource_Pubprofiles( - $this, - $this->serviceName, - 'pubprofiles', - array( - 'methods' => array( - 'list' => array( - 'path' => 'publisher/{accountId}/profiles', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Account.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Account.php deleted file mode 100644 index 30db0789..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Account.php +++ /dev/null @@ -1,110 +0,0 @@ -applyPretargetingToNonGuaranteedDeals = $applyPretargetingToNonGuaranteedDeals; - } - public function getApplyPretargetingToNonGuaranteedDeals() - { - return $this->applyPretargetingToNonGuaranteedDeals; - } - /** - * @param Google_Service_AdExchangeBuyer_AccountBidderLocation - */ - public function setBidderLocation($bidderLocation) - { - $this->bidderLocation = $bidderLocation; - } - /** - * @return Google_Service_AdExchangeBuyer_AccountBidderLocation - */ - public function getBidderLocation() - { - return $this->bidderLocation; - } - public function setCookieMatchingNid($cookieMatchingNid) - { - $this->cookieMatchingNid = $cookieMatchingNid; - } - public function getCookieMatchingNid() - { - return $this->cookieMatchingNid; - } - public function setCookieMatchingUrl($cookieMatchingUrl) - { - $this->cookieMatchingUrl = $cookieMatchingUrl; - } - public function getCookieMatchingUrl() - { - return $this->cookieMatchingUrl; - } - 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 setMaximumActiveCreatives($maximumActiveCreatives) - { - $this->maximumActiveCreatives = $maximumActiveCreatives; - } - public function getMaximumActiveCreatives() - { - return $this->maximumActiveCreatives; - } - public function setMaximumTotalQps($maximumTotalQps) - { - $this->maximumTotalQps = $maximumTotalQps; - } - public function getMaximumTotalQps() - { - return $this->maximumTotalQps; - } - public function setNumberActiveCreatives($numberActiveCreatives) - { - $this->numberActiveCreatives = $numberActiveCreatives; - } - public function getNumberActiveCreatives() - { - return $this->numberActiveCreatives; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/AccountBidderLocation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/AccountBidderLocation.php deleted file mode 100644 index 49072578..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/AccountBidderLocation.php +++ /dev/null @@ -1,57 +0,0 @@ -bidProtocol = $bidProtocol; - } - public function getBidProtocol() - { - return $this->bidProtocol; - } - public function setMaximumQps($maximumQps) - { - $this->maximumQps = $maximumQps; - } - public function getMaximumQps() - { - return $this->maximumQps; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/AccountsList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/AccountsList.php deleted file mode 100644 index a634059a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/AccountsList.php +++ /dev/null @@ -1,47 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_AdExchangeBuyer_Account - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/AddOrderDealsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/AddOrderDealsRequest.php deleted file mode 100644 index 5d1357fe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/AddOrderDealsRequest.php +++ /dev/null @@ -1,56 +0,0 @@ -deals = $deals; - } - /** - * @return Google_Service_AdExchangeBuyer_MarketplaceDeal - */ - public function getDeals() - { - return $this->deals; - } - public function setProposalRevisionNumber($proposalRevisionNumber) - { - $this->proposalRevisionNumber = $proposalRevisionNumber; - } - public function getProposalRevisionNumber() - { - return $this->proposalRevisionNumber; - } - public function setUpdateAction($updateAction) - { - $this->updateAction = $updateAction; - } - public function getUpdateAction() - { - return $this->updateAction; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/AddOrderDealsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/AddOrderDealsResponse.php deleted file mode 100644 index 6556dba9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/AddOrderDealsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -deals = $deals; - } - /** - * @return Google_Service_AdExchangeBuyer_MarketplaceDeal - */ - public function getDeals() - { - return $this->deals; - } - public function setProposalRevisionNumber($proposalRevisionNumber) - { - $this->proposalRevisionNumber = $proposalRevisionNumber; - } - public function getProposalRevisionNumber() - { - return $this->proposalRevisionNumber; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/AddOrderNotesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/AddOrderNotesRequest.php deleted file mode 100644 index b202779b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/AddOrderNotesRequest.php +++ /dev/null @@ -1,38 +0,0 @@ -notes = $notes; - } - /** - * @return Google_Service_AdExchangeBuyer_MarketplaceNote - */ - public function getNotes() - { - return $this->notes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/AddOrderNotesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/AddOrderNotesResponse.php deleted file mode 100644 index 051d641c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/AddOrderNotesResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -notes = $notes; - } - /** - * @return Google_Service_AdExchangeBuyer_MarketplaceNote - */ - public function getNotes() - { - return $this->notes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/BillingInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/BillingInfo.php deleted file mode 100644 index 2738ae1a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/BillingInfo.php +++ /dev/null @@ -1,58 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setAccountName($accountName) - { - $this->accountName = $accountName; - } - public function getAccountName() - { - return $this->accountName; - } - public function setBillingId($billingId) - { - $this->billingId = $billingId; - } - public function getBillingId() - { - return $this->billingId; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/BillingInfoList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/BillingInfoList.php deleted file mode 100644 index 804069c9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/BillingInfoList.php +++ /dev/null @@ -1,47 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_AdExchangeBuyer_BillingInfo - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Budget.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Budget.php deleted file mode 100644 index a7480eed..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Budget.php +++ /dev/null @@ -1,75 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setBillingId($billingId) - { - $this->billingId = $billingId; - } - public function getBillingId() - { - return $this->billingId; - } - public function setBudgetAmount($budgetAmount) - { - $this->budgetAmount = $budgetAmount; - } - public function getBudgetAmount() - { - return $this->budgetAmount; - } - public function setCurrencyCode($currencyCode) - { - $this->currencyCode = $currencyCode; - } - public function getCurrencyCode() - { - return $this->currencyCode; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Buyer.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Buyer.php deleted file mode 100644 index 1a7edeaf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Buyer.php +++ /dev/null @@ -1,30 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/ContactInformation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/ContactInformation.php deleted file mode 100644 index fd913325..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/ContactInformation.php +++ /dev/null @@ -1,39 +0,0 @@ -email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreateOrdersRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreateOrdersRequest.php deleted file mode 100644 index 035a23a1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreateOrdersRequest.php +++ /dev/null @@ -1,47 +0,0 @@ -proposals = $proposals; - } - /** - * @return Google_Service_AdExchangeBuyer_Proposal - */ - public function getProposals() - { - return $this->proposals; - } - public function setWebPropertyCode($webPropertyCode) - { - $this->webPropertyCode = $webPropertyCode; - } - public function getWebPropertyCode() - { - return $this->webPropertyCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreateOrdersResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreateOrdersResponse.php deleted file mode 100644 index 7dab350f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreateOrdersResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -proposals = $proposals; - } - /** - * @return Google_Service_AdExchangeBuyer_Proposal - */ - public function getProposals() - { - return $this->proposals; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Creative.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Creative.php deleted file mode 100644 index 4d7a63f5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Creative.php +++ /dev/null @@ -1,339 +0,0 @@ - "HTMLSnippet", - ); - public $hTMLSnippet; - public $accountId; - public $adChoicesDestinationUrl; - protected $adTechnologyProvidersType = 'Google_Service_AdExchangeBuyer_CreativeAdTechnologyProviders'; - protected $adTechnologyProvidersDataType = ''; - public $advertiserId; - public $advertiserName; - public $agencyId; - public $apiUploadTimestamp; - public $attribute; - public $buyerCreativeId; - public $clickThroughUrl; - protected $correctionsType = 'Google_Service_AdExchangeBuyer_CreativeCorrections'; - protected $correctionsDataType = 'array'; - public $creativeStatusIdentityType; - public $dealsStatus; - public $detectedDomains; - protected $filteringReasonsType = 'Google_Service_AdExchangeBuyer_CreativeFilteringReasons'; - protected $filteringReasonsDataType = ''; - public $height; - public $impressionTrackingUrl; - public $kind; - public $languages; - protected $nativeAdType = 'Google_Service_AdExchangeBuyer_CreativeNativeAd'; - protected $nativeAdDataType = ''; - public $openAuctionStatus; - public $productCategories; - public $restrictedCategories; - public $sensitiveCategories; - protected $servingRestrictionsType = 'Google_Service_AdExchangeBuyer_CreativeServingRestrictions'; - protected $servingRestrictionsDataType = 'array'; - public $vendorType; - public $version; - public $videoURL; - public $videoVastXML; - public $width; - - public function setHTMLSnippet($hTMLSnippet) - { - $this->hTMLSnippet = $hTMLSnippet; - } - public function getHTMLSnippet() - { - return $this->hTMLSnippet; - } - public function setAccountId($accountId) - { - $this->accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setAdChoicesDestinationUrl($adChoicesDestinationUrl) - { - $this->adChoicesDestinationUrl = $adChoicesDestinationUrl; - } - public function getAdChoicesDestinationUrl() - { - return $this->adChoicesDestinationUrl; - } - /** - * @param Google_Service_AdExchangeBuyer_CreativeAdTechnologyProviders - */ - public function setAdTechnologyProviders(Google_Service_AdExchangeBuyer_CreativeAdTechnologyProviders $adTechnologyProviders) - { - $this->adTechnologyProviders = $adTechnologyProviders; - } - /** - * @return Google_Service_AdExchangeBuyer_CreativeAdTechnologyProviders - */ - public function getAdTechnologyProviders() - { - return $this->adTechnologyProviders; - } - public function setAdvertiserId($advertiserId) - { - $this->advertiserId = $advertiserId; - } - public function getAdvertiserId() - { - return $this->advertiserId; - } - public function setAdvertiserName($advertiserName) - { - $this->advertiserName = $advertiserName; - } - public function getAdvertiserName() - { - return $this->advertiserName; - } - public function setAgencyId($agencyId) - { - $this->agencyId = $agencyId; - } - public function getAgencyId() - { - return $this->agencyId; - } - public function setApiUploadTimestamp($apiUploadTimestamp) - { - $this->apiUploadTimestamp = $apiUploadTimestamp; - } - public function getApiUploadTimestamp() - { - return $this->apiUploadTimestamp; - } - public function setAttribute($attribute) - { - $this->attribute = $attribute; - } - public function getAttribute() - { - return $this->attribute; - } - public function setBuyerCreativeId($buyerCreativeId) - { - $this->buyerCreativeId = $buyerCreativeId; - } - public function getBuyerCreativeId() - { - return $this->buyerCreativeId; - } - public function setClickThroughUrl($clickThroughUrl) - { - $this->clickThroughUrl = $clickThroughUrl; - } - public function getClickThroughUrl() - { - return $this->clickThroughUrl; - } - /** - * @param Google_Service_AdExchangeBuyer_CreativeCorrections - */ - public function setCorrections($corrections) - { - $this->corrections = $corrections; - } - /** - * @return Google_Service_AdExchangeBuyer_CreativeCorrections - */ - public function getCorrections() - { - return $this->corrections; - } - public function setCreativeStatusIdentityType($creativeStatusIdentityType) - { - $this->creativeStatusIdentityType = $creativeStatusIdentityType; - } - public function getCreativeStatusIdentityType() - { - return $this->creativeStatusIdentityType; - } - public function setDealsStatus($dealsStatus) - { - $this->dealsStatus = $dealsStatus; - } - public function getDealsStatus() - { - return $this->dealsStatus; - } - public function setDetectedDomains($detectedDomains) - { - $this->detectedDomains = $detectedDomains; - } - public function getDetectedDomains() - { - return $this->detectedDomains; - } - /** - * @param Google_Service_AdExchangeBuyer_CreativeFilteringReasons - */ - public function setFilteringReasons(Google_Service_AdExchangeBuyer_CreativeFilteringReasons $filteringReasons) - { - $this->filteringReasons = $filteringReasons; - } - /** - * @return Google_Service_AdExchangeBuyer_CreativeFilteringReasons - */ - public function getFilteringReasons() - { - return $this->filteringReasons; - } - public function setHeight($height) - { - $this->height = $height; - } - public function getHeight() - { - return $this->height; - } - public function setImpressionTrackingUrl($impressionTrackingUrl) - { - $this->impressionTrackingUrl = $impressionTrackingUrl; - } - public function getImpressionTrackingUrl() - { - return $this->impressionTrackingUrl; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLanguages($languages) - { - $this->languages = $languages; - } - public function getLanguages() - { - return $this->languages; - } - /** - * @param Google_Service_AdExchangeBuyer_CreativeNativeAd - */ - public function setNativeAd(Google_Service_AdExchangeBuyer_CreativeNativeAd $nativeAd) - { - $this->nativeAd = $nativeAd; - } - /** - * @return Google_Service_AdExchangeBuyer_CreativeNativeAd - */ - public function getNativeAd() - { - return $this->nativeAd; - } - public function setOpenAuctionStatus($openAuctionStatus) - { - $this->openAuctionStatus = $openAuctionStatus; - } - public function getOpenAuctionStatus() - { - return $this->openAuctionStatus; - } - public function setProductCategories($productCategories) - { - $this->productCategories = $productCategories; - } - public function getProductCategories() - { - return $this->productCategories; - } - public function setRestrictedCategories($restrictedCategories) - { - $this->restrictedCategories = $restrictedCategories; - } - public function getRestrictedCategories() - { - return $this->restrictedCategories; - } - public function setSensitiveCategories($sensitiveCategories) - { - $this->sensitiveCategories = $sensitiveCategories; - } - public function getSensitiveCategories() - { - return $this->sensitiveCategories; - } - /** - * @param Google_Service_AdExchangeBuyer_CreativeServingRestrictions - */ - public function setServingRestrictions($servingRestrictions) - { - $this->servingRestrictions = $servingRestrictions; - } - /** - * @return Google_Service_AdExchangeBuyer_CreativeServingRestrictions - */ - public function getServingRestrictions() - { - return $this->servingRestrictions; - } - public function setVendorType($vendorType) - { - $this->vendorType = $vendorType; - } - public function getVendorType() - { - return $this->vendorType; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } - public function setVideoURL($videoURL) - { - $this->videoURL = $videoURL; - } - public function getVideoURL() - { - return $this->videoURL; - } - public function setVideoVastXML($videoVastXML) - { - $this->videoVastXML = $videoVastXML; - } - public function getVideoVastXML() - { - return $this->videoVastXML; - } - public function setWidth($width) - { - $this->width = $width; - } - public function getWidth() - { - return $this->width; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativeAdTechnologyProviders.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativeAdTechnologyProviders.php deleted file mode 100644 index 6d6b729a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativeAdTechnologyProviders.php +++ /dev/null @@ -1,40 +0,0 @@ -detectedProviderIds = $detectedProviderIds; - } - public function getDetectedProviderIds() - { - return $this->detectedProviderIds; - } - public function setHasUnidentifiedProvider($hasUnidentifiedProvider) - { - $this->hasUnidentifiedProvider = $hasUnidentifiedProvider; - } - public function getHasUnidentifiedProvider() - { - return $this->hasUnidentifiedProvider; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativeCorrections.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativeCorrections.php deleted file mode 100644 index 3bb7dc17..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativeCorrections.php +++ /dev/null @@ -1,56 +0,0 @@ -contexts = $contexts; - } - /** - * @return Google_Service_AdExchangeBuyer_CreativeCorrectionsContexts - */ - public function getContexts() - { - return $this->contexts; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setReason($reason) - { - $this->reason = $reason; - } - public function getReason() - { - return $this->reason; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativeCorrectionsContexts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativeCorrectionsContexts.php deleted file mode 100644 index fa0e3cdd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativeCorrectionsContexts.php +++ /dev/null @@ -1,58 +0,0 @@ -auctionType = $auctionType; - } - public function getAuctionType() - { - return $this->auctionType; - } - public function setContextType($contextType) - { - $this->contextType = $contextType; - } - public function getContextType() - { - return $this->contextType; - } - public function setGeoCriteriaId($geoCriteriaId) - { - $this->geoCriteriaId = $geoCriteriaId; - } - public function getGeoCriteriaId() - { - return $this->geoCriteriaId; - } - public function setPlatform($platform) - { - $this->platform = $platform; - } - public function getPlatform() - { - return $this->platform; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativeDealIds.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativeDealIds.php deleted file mode 100644 index b37d4fbd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativeDealIds.php +++ /dev/null @@ -1,47 +0,0 @@ -dealStatuses = $dealStatuses; - } - /** - * @return Google_Service_AdExchangeBuyer_CreativeDealIdsDealStatuses - */ - public function getDealStatuses() - { - return $this->dealStatuses; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativeDealIdsDealStatuses.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativeDealIdsDealStatuses.php deleted file mode 100644 index 1842d6e7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativeDealIdsDealStatuses.php +++ /dev/null @@ -1,48 +0,0 @@ -arcStatus = $arcStatus; - } - public function getArcStatus() - { - return $this->arcStatus; - } - public function setDealId($dealId) - { - $this->dealId = $dealId; - } - public function getDealId() - { - return $this->dealId; - } - public function setWebPropertyId($webPropertyId) - { - $this->webPropertyId = $webPropertyId; - } - public function getWebPropertyId() - { - return $this->webPropertyId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativeFilteringReasons.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativeFilteringReasons.php deleted file mode 100644 index 44fa12a6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativeFilteringReasons.php +++ /dev/null @@ -1,47 +0,0 @@ -date = $date; - } - public function getDate() - { - return $this->date; - } - /** - * @param Google_Service_AdExchangeBuyer_CreativeFilteringReasonsReasons - */ - public function setReasons($reasons) - { - $this->reasons = $reasons; - } - /** - * @return Google_Service_AdExchangeBuyer_CreativeFilteringReasonsReasons - */ - public function getReasons() - { - return $this->reasons; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativeFilteringReasonsReasons.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativeFilteringReasonsReasons.php deleted file mode 100644 index fb70fa11..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativeFilteringReasonsReasons.php +++ /dev/null @@ -1,39 +0,0 @@ -filteringCount = $filteringCount; - } - public function getFilteringCount() - { - return $this->filteringCount; - } - public function setFilteringStatus($filteringStatus) - { - $this->filteringStatus = $filteringStatus; - } - public function getFilteringStatus() - { - return $this->filteringStatus; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativeNativeAd.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativeNativeAd.php deleted file mode 100644 index 220531b3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativeNativeAd.php +++ /dev/null @@ -1,160 +0,0 @@ -advertiser = $advertiser; - } - public function getAdvertiser() - { - return $this->advertiser; - } - /** - * @param Google_Service_AdExchangeBuyer_CreativeNativeAdAppIcon - */ - public function setAppIcon(Google_Service_AdExchangeBuyer_CreativeNativeAdAppIcon $appIcon) - { - $this->appIcon = $appIcon; - } - /** - * @return Google_Service_AdExchangeBuyer_CreativeNativeAdAppIcon - */ - public function getAppIcon() - { - return $this->appIcon; - } - public function setBody($body) - { - $this->body = $body; - } - public function getBody() - { - return $this->body; - } - public function setCallToAction($callToAction) - { - $this->callToAction = $callToAction; - } - public function getCallToAction() - { - return $this->callToAction; - } - public function setClickLinkUrl($clickLinkUrl) - { - $this->clickLinkUrl = $clickLinkUrl; - } - public function getClickLinkUrl() - { - return $this->clickLinkUrl; - } - public function setClickTrackingUrl($clickTrackingUrl) - { - $this->clickTrackingUrl = $clickTrackingUrl; - } - public function getClickTrackingUrl() - { - return $this->clickTrackingUrl; - } - public function setHeadline($headline) - { - $this->headline = $headline; - } - public function getHeadline() - { - return $this->headline; - } - /** - * @param Google_Service_AdExchangeBuyer_CreativeNativeAdImage - */ - public function setImage(Google_Service_AdExchangeBuyer_CreativeNativeAdImage $image) - { - $this->image = $image; - } - /** - * @return Google_Service_AdExchangeBuyer_CreativeNativeAdImage - */ - public function getImage() - { - return $this->image; - } - public function setImpressionTrackingUrl($impressionTrackingUrl) - { - $this->impressionTrackingUrl = $impressionTrackingUrl; - } - public function getImpressionTrackingUrl() - { - return $this->impressionTrackingUrl; - } - /** - * @param Google_Service_AdExchangeBuyer_CreativeNativeAdLogo - */ - public function setLogo(Google_Service_AdExchangeBuyer_CreativeNativeAdLogo $logo) - { - $this->logo = $logo; - } - /** - * @return Google_Service_AdExchangeBuyer_CreativeNativeAdLogo - */ - public function getLogo() - { - return $this->logo; - } - public function setPrice($price) - { - $this->price = $price; - } - public function getPrice() - { - return $this->price; - } - public function setStarRating($starRating) - { - $this->starRating = $starRating; - } - public function getStarRating() - { - return $this->starRating; - } - public function setVideoURL($videoURL) - { - $this->videoURL = $videoURL; - } - public function getVideoURL() - { - return $this->videoURL; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativeNativeAdAppIcon.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativeNativeAdAppIcon.php deleted file mode 100644 index 96555649..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativeNativeAdAppIcon.php +++ /dev/null @@ -1,48 +0,0 @@ -height = $height; - } - public function getHeight() - { - return $this->height; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } - public function setWidth($width) - { - $this->width = $width; - } - public function getWidth() - { - return $this->width; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativeNativeAdImage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativeNativeAdImage.php deleted file mode 100644 index e5e393d2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativeNativeAdImage.php +++ /dev/null @@ -1,48 +0,0 @@ -height = $height; - } - public function getHeight() - { - return $this->height; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } - public function setWidth($width) - { - $this->width = $width; - } - public function getWidth() - { - return $this->width; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativeNativeAdLogo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativeNativeAdLogo.php deleted file mode 100644 index 54fbf739..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativeNativeAdLogo.php +++ /dev/null @@ -1,48 +0,0 @@ -height = $height; - } - public function getHeight() - { - return $this->height; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } - public function setWidth($width) - { - $this->width = $width; - } - public function getWidth() - { - return $this->width; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativeServingRestrictions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativeServingRestrictions.php deleted file mode 100644 index d3789544..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativeServingRestrictions.php +++ /dev/null @@ -1,63 +0,0 @@ -contexts = $contexts; - } - /** - * @return Google_Service_AdExchangeBuyer_CreativeServingRestrictionsContexts - */ - public function getContexts() - { - return $this->contexts; - } - /** - * @param Google_Service_AdExchangeBuyer_CreativeServingRestrictionsDisapprovalReasons - */ - public function setDisapprovalReasons($disapprovalReasons) - { - $this->disapprovalReasons = $disapprovalReasons; - } - /** - * @return Google_Service_AdExchangeBuyer_CreativeServingRestrictionsDisapprovalReasons - */ - public function getDisapprovalReasons() - { - return $this->disapprovalReasons; - } - public function setReason($reason) - { - $this->reason = $reason; - } - public function getReason() - { - return $this->reason; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativeServingRestrictionsContexts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativeServingRestrictionsContexts.php deleted file mode 100644 index 27bf5479..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativeServingRestrictionsContexts.php +++ /dev/null @@ -1,58 +0,0 @@ -auctionType = $auctionType; - } - public function getAuctionType() - { - return $this->auctionType; - } - public function setContextType($contextType) - { - $this->contextType = $contextType; - } - public function getContextType() - { - return $this->contextType; - } - public function setGeoCriteriaId($geoCriteriaId) - { - $this->geoCriteriaId = $geoCriteriaId; - } - public function getGeoCriteriaId() - { - return $this->geoCriteriaId; - } - public function setPlatform($platform) - { - $this->platform = $platform; - } - public function getPlatform() - { - return $this->platform; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativeServingRestrictionsDisapprovalReasons.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativeServingRestrictionsDisapprovalReasons.php deleted file mode 100644 index ec28226b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativeServingRestrictionsDisapprovalReasons.php +++ /dev/null @@ -1,40 +0,0 @@ -details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setReason($reason) - { - $this->reason = $reason; - } - public function getReason() - { - return $this->reason; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativesList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativesList.php deleted file mode 100644 index 35373845..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativesList.php +++ /dev/null @@ -1,56 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_AdExchangeBuyer_Creative - */ - public function getItems() - { - return $this->items; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/DealServingMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/DealServingMetadata.php deleted file mode 100644 index 48fa1395..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/DealServingMetadata.php +++ /dev/null @@ -1,46 +0,0 @@ -alcoholAdsAllowed = $alcoholAdsAllowed; - } - public function getAlcoholAdsAllowed() - { - return $this->alcoholAdsAllowed; - } - /** - * @param Google_Service_AdExchangeBuyer_DealServingMetadataDealPauseStatus - */ - public function setDealPauseStatus(Google_Service_AdExchangeBuyer_DealServingMetadataDealPauseStatus $dealPauseStatus) - { - $this->dealPauseStatus = $dealPauseStatus; - } - /** - * @return Google_Service_AdExchangeBuyer_DealServingMetadataDealPauseStatus - */ - public function getDealPauseStatus() - { - return $this->dealPauseStatus; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/DealServingMetadataDealPauseStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/DealServingMetadataDealPauseStatus.php deleted file mode 100644 index 35333aeb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/DealServingMetadataDealPauseStatus.php +++ /dev/null @@ -1,66 +0,0 @@ -buyerPauseReason = $buyerPauseReason; - } - public function getBuyerPauseReason() - { - return $this->buyerPauseReason; - } - public function setFirstPausedBy($firstPausedBy) - { - $this->firstPausedBy = $firstPausedBy; - } - public function getFirstPausedBy() - { - return $this->firstPausedBy; - } - public function setHasBuyerPaused($hasBuyerPaused) - { - $this->hasBuyerPaused = $hasBuyerPaused; - } - public function getHasBuyerPaused() - { - return $this->hasBuyerPaused; - } - public function setHasSellerPaused($hasSellerPaused) - { - $this->hasSellerPaused = $hasSellerPaused; - } - public function getHasSellerPaused() - { - return $this->hasSellerPaused; - } - public function setSellerPauseReason($sellerPauseReason) - { - $this->sellerPauseReason = $sellerPauseReason; - } - public function getSellerPauseReason() - { - return $this->sellerPauseReason; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/DealTerms.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/DealTerms.php deleted file mode 100644 index 680fbfbd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/DealTerms.php +++ /dev/null @@ -1,146 +0,0 @@ -brandingType = $brandingType; - } - public function getBrandingType() - { - return $this->brandingType; - } - public function setCrossListedExternalDealIdType($crossListedExternalDealIdType) - { - $this->crossListedExternalDealIdType = $crossListedExternalDealIdType; - } - public function getCrossListedExternalDealIdType() - { - return $this->crossListedExternalDealIdType; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - /** - * @param Google_Service_AdExchangeBuyer_Price - */ - public function setEstimatedGrossSpend(Google_Service_AdExchangeBuyer_Price $estimatedGrossSpend) - { - $this->estimatedGrossSpend = $estimatedGrossSpend; - } - /** - * @return Google_Service_AdExchangeBuyer_Price - */ - public function getEstimatedGrossSpend() - { - return $this->estimatedGrossSpend; - } - public function setEstimatedImpressionsPerDay($estimatedImpressionsPerDay) - { - $this->estimatedImpressionsPerDay = $estimatedImpressionsPerDay; - } - public function getEstimatedImpressionsPerDay() - { - return $this->estimatedImpressionsPerDay; - } - /** - * @param Google_Service_AdExchangeBuyer_DealTermsGuaranteedFixedPriceTerms - */ - public function setGuaranteedFixedPriceTerms(Google_Service_AdExchangeBuyer_DealTermsGuaranteedFixedPriceTerms $guaranteedFixedPriceTerms) - { - $this->guaranteedFixedPriceTerms = $guaranteedFixedPriceTerms; - } - /** - * @return Google_Service_AdExchangeBuyer_DealTermsGuaranteedFixedPriceTerms - */ - public function getGuaranteedFixedPriceTerms() - { - return $this->guaranteedFixedPriceTerms; - } - /** - * @param Google_Service_AdExchangeBuyer_DealTermsNonGuaranteedAuctionTerms - */ - public function setNonGuaranteedAuctionTerms(Google_Service_AdExchangeBuyer_DealTermsNonGuaranteedAuctionTerms $nonGuaranteedAuctionTerms) - { - $this->nonGuaranteedAuctionTerms = $nonGuaranteedAuctionTerms; - } - /** - * @return Google_Service_AdExchangeBuyer_DealTermsNonGuaranteedAuctionTerms - */ - public function getNonGuaranteedAuctionTerms() - { - return $this->nonGuaranteedAuctionTerms; - } - /** - * @param Google_Service_AdExchangeBuyer_DealTermsNonGuaranteedFixedPriceTerms - */ - public function setNonGuaranteedFixedPriceTerms(Google_Service_AdExchangeBuyer_DealTermsNonGuaranteedFixedPriceTerms $nonGuaranteedFixedPriceTerms) - { - $this->nonGuaranteedFixedPriceTerms = $nonGuaranteedFixedPriceTerms; - } - /** - * @return Google_Service_AdExchangeBuyer_DealTermsNonGuaranteedFixedPriceTerms - */ - public function getNonGuaranteedFixedPriceTerms() - { - return $this->nonGuaranteedFixedPriceTerms; - } - /** - * @param Google_Service_AdExchangeBuyer_DealTermsRubiconNonGuaranteedTerms - */ - public function setRubiconNonGuaranteedTerms(Google_Service_AdExchangeBuyer_DealTermsRubiconNonGuaranteedTerms $rubiconNonGuaranteedTerms) - { - $this->rubiconNonGuaranteedTerms = $rubiconNonGuaranteedTerms; - } - /** - * @return Google_Service_AdExchangeBuyer_DealTermsRubiconNonGuaranteedTerms - */ - public function getRubiconNonGuaranteedTerms() - { - return $this->rubiconNonGuaranteedTerms; - } - public function setSellerTimeZone($sellerTimeZone) - { - $this->sellerTimeZone = $sellerTimeZone; - } - public function getSellerTimeZone() - { - return $this->sellerTimeZone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/DealTermsGuaranteedFixedPriceTerms.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/DealTermsGuaranteedFixedPriceTerms.php deleted file mode 100644 index 2cca2476..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/DealTermsGuaranteedFixedPriceTerms.php +++ /dev/null @@ -1,81 +0,0 @@ -billingInfo = $billingInfo; - } - /** - * @return Google_Service_AdExchangeBuyer_DealTermsGuaranteedFixedPriceTermsBillingInfo - */ - public function getBillingInfo() - { - return $this->billingInfo; - } - /** - * @param Google_Service_AdExchangeBuyer_PricePerBuyer - */ - public function setFixedPrices($fixedPrices) - { - $this->fixedPrices = $fixedPrices; - } - /** - * @return Google_Service_AdExchangeBuyer_PricePerBuyer - */ - public function getFixedPrices() - { - return $this->fixedPrices; - } - public function setGuaranteedImpressions($guaranteedImpressions) - { - $this->guaranteedImpressions = $guaranteedImpressions; - } - public function getGuaranteedImpressions() - { - return $this->guaranteedImpressions; - } - public function setGuaranteedLooks($guaranteedLooks) - { - $this->guaranteedLooks = $guaranteedLooks; - } - public function getGuaranteedLooks() - { - return $this->guaranteedLooks; - } - public function setMinimumDailyLooks($minimumDailyLooks) - { - $this->minimumDailyLooks = $minimumDailyLooks; - } - public function getMinimumDailyLooks() - { - return $this->minimumDailyLooks; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/DealTermsGuaranteedFixedPriceTermsBillingInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/DealTermsGuaranteedFixedPriceTermsBillingInfo.php deleted file mode 100644 index a677b5bc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/DealTermsGuaranteedFixedPriceTermsBillingInfo.php +++ /dev/null @@ -1,64 +0,0 @@ -currencyConversionTimeMs = $currencyConversionTimeMs; - } - public function getCurrencyConversionTimeMs() - { - return $this->currencyConversionTimeMs; - } - public function setDfpLineItemId($dfpLineItemId) - { - $this->dfpLineItemId = $dfpLineItemId; - } - public function getDfpLineItemId() - { - return $this->dfpLineItemId; - } - public function setOriginalContractedQuantity($originalContractedQuantity) - { - $this->originalContractedQuantity = $originalContractedQuantity; - } - public function getOriginalContractedQuantity() - { - return $this->originalContractedQuantity; - } - /** - * @param Google_Service_AdExchangeBuyer_Price - */ - public function setPrice(Google_Service_AdExchangeBuyer_Price $price) - { - $this->price = $price; - } - /** - * @return Google_Service_AdExchangeBuyer_Price - */ - public function getPrice() - { - return $this->price; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/DealTermsNonGuaranteedAuctionTerms.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/DealTermsNonGuaranteedAuctionTerms.php deleted file mode 100644 index e97395fc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/DealTermsNonGuaranteedAuctionTerms.php +++ /dev/null @@ -1,47 +0,0 @@ -autoOptimizePrivateAuction = $autoOptimizePrivateAuction; - } - public function getAutoOptimizePrivateAuction() - { - return $this->autoOptimizePrivateAuction; - } - /** - * @param Google_Service_AdExchangeBuyer_PricePerBuyer - */ - public function setReservePricePerBuyers($reservePricePerBuyers) - { - $this->reservePricePerBuyers = $reservePricePerBuyers; - } - /** - * @return Google_Service_AdExchangeBuyer_PricePerBuyer - */ - public function getReservePricePerBuyers() - { - return $this->reservePricePerBuyers; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/DealTermsNonGuaranteedFixedPriceTerms.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/DealTermsNonGuaranteedFixedPriceTerms.php deleted file mode 100644 index 55b1ee1a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/DealTermsNonGuaranteedFixedPriceTerms.php +++ /dev/null @@ -1,38 +0,0 @@ -fixedPrices = $fixedPrices; - } - /** - * @return Google_Service_AdExchangeBuyer_PricePerBuyer - */ - public function getFixedPrices() - { - return $this->fixedPrices; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/DealTermsRubiconNonGuaranteedTerms.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/DealTermsRubiconNonGuaranteedTerms.php deleted file mode 100644 index 62f1acb6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/DealTermsRubiconNonGuaranteedTerms.php +++ /dev/null @@ -1,53 +0,0 @@ -priorityPrice = $priorityPrice; - } - /** - * @return Google_Service_AdExchangeBuyer_Price - */ - public function getPriorityPrice() - { - return $this->priorityPrice; - } - /** - * @param Google_Service_AdExchangeBuyer_Price - */ - public function setStandardPrice(Google_Service_AdExchangeBuyer_Price $standardPrice) - { - $this->standardPrice = $standardPrice; - } - /** - * @return Google_Service_AdExchangeBuyer_Price - */ - public function getStandardPrice() - { - return $this->standardPrice; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/DeleteOrderDealsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/DeleteOrderDealsRequest.php deleted file mode 100644 index 1c29a906..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/DeleteOrderDealsRequest.php +++ /dev/null @@ -1,49 +0,0 @@ -dealIds = $dealIds; - } - public function getDealIds() - { - return $this->dealIds; - } - public function setProposalRevisionNumber($proposalRevisionNumber) - { - $this->proposalRevisionNumber = $proposalRevisionNumber; - } - public function getProposalRevisionNumber() - { - return $this->proposalRevisionNumber; - } - public function setUpdateAction($updateAction) - { - $this->updateAction = $updateAction; - } - public function getUpdateAction() - { - return $this->updateAction; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/DeleteOrderDealsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/DeleteOrderDealsResponse.php deleted file mode 100644 index 4094e6b6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/DeleteOrderDealsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -deals = $deals; - } - /** - * @return Google_Service_AdExchangeBuyer_MarketplaceDeal - */ - public function getDeals() - { - return $this->deals; - } - public function setProposalRevisionNumber($proposalRevisionNumber) - { - $this->proposalRevisionNumber = $proposalRevisionNumber; - } - public function getProposalRevisionNumber() - { - return $this->proposalRevisionNumber; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/DeliveryControl.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/DeliveryControl.php deleted file mode 100644 index fea46b53..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/DeliveryControl.php +++ /dev/null @@ -1,56 +0,0 @@ -creativeBlockingLevel = $creativeBlockingLevel; - } - public function getCreativeBlockingLevel() - { - return $this->creativeBlockingLevel; - } - public function setDeliveryRateType($deliveryRateType) - { - $this->deliveryRateType = $deliveryRateType; - } - public function getDeliveryRateType() - { - return $this->deliveryRateType; - } - /** - * @param Google_Service_AdExchangeBuyer_DeliveryControlFrequencyCap - */ - public function setFrequencyCaps($frequencyCaps) - { - $this->frequencyCaps = $frequencyCaps; - } - /** - * @return Google_Service_AdExchangeBuyer_DeliveryControlFrequencyCap - */ - public function getFrequencyCaps() - { - return $this->frequencyCaps; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/DeliveryControlFrequencyCap.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/DeliveryControlFrequencyCap.php deleted file mode 100644 index 831a7519..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/DeliveryControlFrequencyCap.php +++ /dev/null @@ -1,48 +0,0 @@ -maxImpressions = $maxImpressions; - } - public function getMaxImpressions() - { - return $this->maxImpressions; - } - public function setNumTimeUnits($numTimeUnits) - { - $this->numTimeUnits = $numTimeUnits; - } - public function getNumTimeUnits() - { - return $this->numTimeUnits; - } - public function setTimeUnitType($timeUnitType) - { - $this->timeUnitType = $timeUnitType; - } - public function getTimeUnitType() - { - return $this->timeUnitType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Dimension.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Dimension.php deleted file mode 100644 index c8ce890a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Dimension.php +++ /dev/null @@ -1,47 +0,0 @@ -dimensionType = $dimensionType; - } - public function getDimensionType() - { - return $this->dimensionType; - } - /** - * @param Google_Service_AdExchangeBuyer_DimensionDimensionValue - */ - public function setDimensionValues($dimensionValues) - { - $this->dimensionValues = $dimensionValues; - } - /** - * @return Google_Service_AdExchangeBuyer_DimensionDimensionValue - */ - public function getDimensionValues() - { - return $this->dimensionValues; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/DimensionDimensionValue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/DimensionDimensionValue.php deleted file mode 100644 index 21ca3242..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/DimensionDimensionValue.php +++ /dev/null @@ -1,48 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPercentage($percentage) - { - $this->percentage = $percentage; - } - public function getPercentage() - { - return $this->percentage; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/EditAllOrderDealsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/EditAllOrderDealsRequest.php deleted file mode 100644 index 3e147199..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/EditAllOrderDealsRequest.php +++ /dev/null @@ -1,72 +0,0 @@ -deals = $deals; - } - /** - * @return Google_Service_AdExchangeBuyer_MarketplaceDeal - */ - public function getDeals() - { - return $this->deals; - } - /** - * @param Google_Service_AdExchangeBuyer_Proposal - */ - public function setProposal(Google_Service_AdExchangeBuyer_Proposal $proposal) - { - $this->proposal = $proposal; - } - /** - * @return Google_Service_AdExchangeBuyer_Proposal - */ - public function getProposal() - { - return $this->proposal; - } - public function setProposalRevisionNumber($proposalRevisionNumber) - { - $this->proposalRevisionNumber = $proposalRevisionNumber; - } - public function getProposalRevisionNumber() - { - return $this->proposalRevisionNumber; - } - public function setUpdateAction($updateAction) - { - $this->updateAction = $updateAction; - } - public function getUpdateAction() - { - return $this->updateAction; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/EditAllOrderDealsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/EditAllOrderDealsResponse.php deleted file mode 100644 index 078adfb0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/EditAllOrderDealsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -deals = $deals; - } - /** - * @return Google_Service_AdExchangeBuyer_MarketplaceDeal - */ - public function getDeals() - { - return $this->deals; - } - public function setOrderRevisionNumber($orderRevisionNumber) - { - $this->orderRevisionNumber = $orderRevisionNumber; - } - public function getOrderRevisionNumber() - { - return $this->orderRevisionNumber; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/GetOffersResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/GetOffersResponse.php deleted file mode 100644 index 7940a7cf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/GetOffersResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -products = $products; - } - /** - * @return Google_Service_AdExchangeBuyer_Product - */ - public function getProducts() - { - return $this->products; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/GetOrderDealsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/GetOrderDealsResponse.php deleted file mode 100644 index 75d41dbf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/GetOrderDealsResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -deals = $deals; - } - /** - * @return Google_Service_AdExchangeBuyer_MarketplaceDeal - */ - public function getDeals() - { - return $this->deals; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/GetOrderNotesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/GetOrderNotesResponse.php deleted file mode 100644 index ae87aa5d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/GetOrderNotesResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -notes = $notes; - } - /** - * @return Google_Service_AdExchangeBuyer_MarketplaceNote - */ - public function getNotes() - { - return $this->notes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/GetOrdersResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/GetOrdersResponse.php deleted file mode 100644 index f8fcdcac..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/GetOrdersResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -proposals = $proposals; - } - /** - * @return Google_Service_AdExchangeBuyer_Proposal - */ - public function getProposals() - { - return $this->proposals; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/GetPublisherProfilesByAccountIdResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/GetPublisherProfilesByAccountIdResponse.php deleted file mode 100644 index 76aa2c03..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/GetPublisherProfilesByAccountIdResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -profiles = $profiles; - } - /** - * @return Google_Service_AdExchangeBuyer_PublisherProfileApiProto - */ - public function getProfiles() - { - return $this->profiles; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/MarketplaceDeal.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/MarketplaceDeal.php deleted file mode 100644 index 5f2a51e4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/MarketplaceDeal.php +++ /dev/null @@ -1,289 +0,0 @@ -buyerPrivateData = $buyerPrivateData; - } - /** - * @return Google_Service_AdExchangeBuyer_PrivateData - */ - public function getBuyerPrivateData() - { - return $this->buyerPrivateData; - } - public function setCreationTimeMs($creationTimeMs) - { - $this->creationTimeMs = $creationTimeMs; - } - public function getCreationTimeMs() - { - return $this->creationTimeMs; - } - public function setCreativePreApprovalPolicy($creativePreApprovalPolicy) - { - $this->creativePreApprovalPolicy = $creativePreApprovalPolicy; - } - public function getCreativePreApprovalPolicy() - { - return $this->creativePreApprovalPolicy; - } - public function setCreativeSafeFrameCompatibility($creativeSafeFrameCompatibility) - { - $this->creativeSafeFrameCompatibility = $creativeSafeFrameCompatibility; - } - public function getCreativeSafeFrameCompatibility() - { - return $this->creativeSafeFrameCompatibility; - } - public function setDealId($dealId) - { - $this->dealId = $dealId; - } - public function getDealId() - { - return $this->dealId; - } - /** - * @param Google_Service_AdExchangeBuyer_DealServingMetadata - */ - public function setDealServingMetadata(Google_Service_AdExchangeBuyer_DealServingMetadata $dealServingMetadata) - { - $this->dealServingMetadata = $dealServingMetadata; - } - /** - * @return Google_Service_AdExchangeBuyer_DealServingMetadata - */ - public function getDealServingMetadata() - { - return $this->dealServingMetadata; - } - /** - * @param Google_Service_AdExchangeBuyer_DeliveryControl - */ - public function setDeliveryControl(Google_Service_AdExchangeBuyer_DeliveryControl $deliveryControl) - { - $this->deliveryControl = $deliveryControl; - } - /** - * @return Google_Service_AdExchangeBuyer_DeliveryControl - */ - public function getDeliveryControl() - { - return $this->deliveryControl; - } - public function setExternalDealId($externalDealId) - { - $this->externalDealId = $externalDealId; - } - public function getExternalDealId() - { - return $this->externalDealId; - } - public function setFlightEndTimeMs($flightEndTimeMs) - { - $this->flightEndTimeMs = $flightEndTimeMs; - } - public function getFlightEndTimeMs() - { - return $this->flightEndTimeMs; - } - public function setFlightStartTimeMs($flightStartTimeMs) - { - $this->flightStartTimeMs = $flightStartTimeMs; - } - public function getFlightStartTimeMs() - { - return $this->flightStartTimeMs; - } - public function setInventoryDescription($inventoryDescription) - { - $this->inventoryDescription = $inventoryDescription; - } - public function getInventoryDescription() - { - return $this->inventoryDescription; - } - public function setIsRfpTemplate($isRfpTemplate) - { - $this->isRfpTemplate = $isRfpTemplate; - } - public function getIsRfpTemplate() - { - return $this->isRfpTemplate; - } - public function setIsSetupComplete($isSetupComplete) - { - $this->isSetupComplete = $isSetupComplete; - } - public function getIsSetupComplete() - { - return $this->isSetupComplete; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLastUpdateTimeMs($lastUpdateTimeMs) - { - $this->lastUpdateTimeMs = $lastUpdateTimeMs; - } - public function getLastUpdateTimeMs() - { - return $this->lastUpdateTimeMs; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setProductId($productId) - { - $this->productId = $productId; - } - public function getProductId() - { - return $this->productId; - } - public function setProductRevisionNumber($productRevisionNumber) - { - $this->productRevisionNumber = $productRevisionNumber; - } - public function getProductRevisionNumber() - { - return $this->productRevisionNumber; - } - public function setProgrammaticCreativeSource($programmaticCreativeSource) - { - $this->programmaticCreativeSource = $programmaticCreativeSource; - } - public function getProgrammaticCreativeSource() - { - return $this->programmaticCreativeSource; - } - public function setProposalId($proposalId) - { - $this->proposalId = $proposalId; - } - public function getProposalId() - { - return $this->proposalId; - } - /** - * @param Google_Service_AdExchangeBuyer_ContactInformation - */ - public function setSellerContacts($sellerContacts) - { - $this->sellerContacts = $sellerContacts; - } - /** - * @return Google_Service_AdExchangeBuyer_ContactInformation - */ - public function getSellerContacts() - { - return $this->sellerContacts; - } - /** - * @param Google_Service_AdExchangeBuyer_SharedTargeting - */ - public function setSharedTargetings($sharedTargetings) - { - $this->sharedTargetings = $sharedTargetings; - } - /** - * @return Google_Service_AdExchangeBuyer_SharedTargeting - */ - public function getSharedTargetings() - { - return $this->sharedTargetings; - } - public function setSyndicationProduct($syndicationProduct) - { - $this->syndicationProduct = $syndicationProduct; - } - public function getSyndicationProduct() - { - return $this->syndicationProduct; - } - /** - * @param Google_Service_AdExchangeBuyer_DealTerms - */ - public function setTerms(Google_Service_AdExchangeBuyer_DealTerms $terms) - { - $this->terms = $terms; - } - /** - * @return Google_Service_AdExchangeBuyer_DealTerms - */ - public function getTerms() - { - return $this->terms; - } - public function setWebPropertyCode($webPropertyCode) - { - $this->webPropertyCode = $webPropertyCode; - } - public function getWebPropertyCode() - { - return $this->webPropertyCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/MarketplaceDealParty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/MarketplaceDealParty.php deleted file mode 100644 index 29c9d9c3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/MarketplaceDealParty.php +++ /dev/null @@ -1,53 +0,0 @@ -buyer = $buyer; - } - /** - * @return Google_Service_AdExchangeBuyer_Buyer - */ - public function getBuyer() - { - return $this->buyer; - } - /** - * @param Google_Service_AdExchangeBuyer_Seller - */ - public function setSeller(Google_Service_AdExchangeBuyer_Seller $seller) - { - $this->seller = $seller; - } - /** - * @return Google_Service_AdExchangeBuyer_Seller - */ - public function getSeller() - { - return $this->seller; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/MarketplaceLabel.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/MarketplaceLabel.php deleted file mode 100644 index e3e6bd7a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/MarketplaceLabel.php +++ /dev/null @@ -1,64 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setCreateTimeMs($createTimeMs) - { - $this->createTimeMs = $createTimeMs; - } - public function getCreateTimeMs() - { - return $this->createTimeMs; - } - /** - * @param Google_Service_AdExchangeBuyer_MarketplaceDealParty - */ - public function setDeprecatedMarketplaceDealParty(Google_Service_AdExchangeBuyer_MarketplaceDealParty $deprecatedMarketplaceDealParty) - { - $this->deprecatedMarketplaceDealParty = $deprecatedMarketplaceDealParty; - } - /** - * @return Google_Service_AdExchangeBuyer_MarketplaceDealParty - */ - public function getDeprecatedMarketplaceDealParty() - { - return $this->deprecatedMarketplaceDealParty; - } - public function setLabel($label) - { - $this->label = $label; - } - public function getLabel() - { - return $this->label; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/MarketplaceNote.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/MarketplaceNote.php deleted file mode 100644 index 52cb0775..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/MarketplaceNote.php +++ /dev/null @@ -1,93 +0,0 @@ -creatorRole = $creatorRole; - } - public function getCreatorRole() - { - return $this->creatorRole; - } - public function setDealId($dealId) - { - $this->dealId = $dealId; - } - public function getDealId() - { - return $this->dealId; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNote($note) - { - $this->note = $note; - } - public function getNote() - { - return $this->note; - } - public function setNoteId($noteId) - { - $this->noteId = $noteId; - } - public function getNoteId() - { - return $this->noteId; - } - public function setProposalId($proposalId) - { - $this->proposalId = $proposalId; - } - public function getProposalId() - { - return $this->proposalId; - } - public function setProposalRevisionNumber($proposalRevisionNumber) - { - $this->proposalRevisionNumber = $proposalRevisionNumber; - } - public function getProposalRevisionNumber() - { - return $this->proposalRevisionNumber; - } - public function setTimestampMs($timestampMs) - { - $this->timestampMs = $timestampMs; - } - public function getTimestampMs() - { - return $this->timestampMs; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/PerformanceReport.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/PerformanceReport.php deleted file mode 100644 index 92e5fa2b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/PerformanceReport.php +++ /dev/null @@ -1,220 +0,0 @@ -bidRate = $bidRate; - } - public function getBidRate() - { - return $this->bidRate; - } - public function setBidRequestRate($bidRequestRate) - { - $this->bidRequestRate = $bidRequestRate; - } - public function getBidRequestRate() - { - return $this->bidRequestRate; - } - public function setCalloutStatusRate($calloutStatusRate) - { - $this->calloutStatusRate = $calloutStatusRate; - } - public function getCalloutStatusRate() - { - return $this->calloutStatusRate; - } - public function setCookieMatcherStatusRate($cookieMatcherStatusRate) - { - $this->cookieMatcherStatusRate = $cookieMatcherStatusRate; - } - public function getCookieMatcherStatusRate() - { - return $this->cookieMatcherStatusRate; - } - public function setCreativeStatusRate($creativeStatusRate) - { - $this->creativeStatusRate = $creativeStatusRate; - } - public function getCreativeStatusRate() - { - return $this->creativeStatusRate; - } - public function setFilteredBidRate($filteredBidRate) - { - $this->filteredBidRate = $filteredBidRate; - } - public function getFilteredBidRate() - { - return $this->filteredBidRate; - } - public function setHostedMatchStatusRate($hostedMatchStatusRate) - { - $this->hostedMatchStatusRate = $hostedMatchStatusRate; - } - public function getHostedMatchStatusRate() - { - return $this->hostedMatchStatusRate; - } - public function setInventoryMatchRate($inventoryMatchRate) - { - $this->inventoryMatchRate = $inventoryMatchRate; - } - public function getInventoryMatchRate() - { - return $this->inventoryMatchRate; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLatency50thPercentile($latency50thPercentile) - { - $this->latency50thPercentile = $latency50thPercentile; - } - public function getLatency50thPercentile() - { - return $this->latency50thPercentile; - } - public function setLatency85thPercentile($latency85thPercentile) - { - $this->latency85thPercentile = $latency85thPercentile; - } - public function getLatency85thPercentile() - { - return $this->latency85thPercentile; - } - public function setLatency95thPercentile($latency95thPercentile) - { - $this->latency95thPercentile = $latency95thPercentile; - } - public function getLatency95thPercentile() - { - return $this->latency95thPercentile; - } - public function setNoQuotaInRegion($noQuotaInRegion) - { - $this->noQuotaInRegion = $noQuotaInRegion; - } - public function getNoQuotaInRegion() - { - return $this->noQuotaInRegion; - } - public function setOutOfQuota($outOfQuota) - { - $this->outOfQuota = $outOfQuota; - } - public function getOutOfQuota() - { - return $this->outOfQuota; - } - public function setPixelMatchRequests($pixelMatchRequests) - { - $this->pixelMatchRequests = $pixelMatchRequests; - } - public function getPixelMatchRequests() - { - return $this->pixelMatchRequests; - } - public function setPixelMatchResponses($pixelMatchResponses) - { - $this->pixelMatchResponses = $pixelMatchResponses; - } - public function getPixelMatchResponses() - { - return $this->pixelMatchResponses; - } - public function setQuotaConfiguredLimit($quotaConfiguredLimit) - { - $this->quotaConfiguredLimit = $quotaConfiguredLimit; - } - public function getQuotaConfiguredLimit() - { - return $this->quotaConfiguredLimit; - } - public function setQuotaThrottledLimit($quotaThrottledLimit) - { - $this->quotaThrottledLimit = $quotaThrottledLimit; - } - public function getQuotaThrottledLimit() - { - return $this->quotaThrottledLimit; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - public function setSuccessfulRequestRate($successfulRequestRate) - { - $this->successfulRequestRate = $successfulRequestRate; - } - public function getSuccessfulRequestRate() - { - return $this->successfulRequestRate; - } - public function setTimestamp($timestamp) - { - $this->timestamp = $timestamp; - } - public function getTimestamp() - { - return $this->timestamp; - } - public function setUnsuccessfulRequestRate($unsuccessfulRequestRate) - { - $this->unsuccessfulRequestRate = $unsuccessfulRequestRate; - } - public function getUnsuccessfulRequestRate() - { - return $this->unsuccessfulRequestRate; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/PerformanceReportList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/PerformanceReportList.php deleted file mode 100644 index 7b9823c1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/PerformanceReportList.php +++ /dev/null @@ -1,47 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_AdExchangeBuyer_PerformanceReport - */ - public function setPerformanceReport($performanceReport) - { - $this->performanceReport = $performanceReport; - } - /** - * @return Google_Service_AdExchangeBuyer_PerformanceReport - */ - public function getPerformanceReport() - { - return $this->performanceReport; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/PretargetingConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/PretargetingConfig.php deleted file mode 100644 index a9860e3b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/PretargetingConfig.php +++ /dev/null @@ -1,293 +0,0 @@ -billingId = $billingId; - } - public function getBillingId() - { - return $this->billingId; - } - public function setConfigId($configId) - { - $this->configId = $configId; - } - public function getConfigId() - { - return $this->configId; - } - public function setConfigName($configName) - { - $this->configName = $configName; - } - public function getConfigName() - { - return $this->configName; - } - public function setCreativeType($creativeType) - { - $this->creativeType = $creativeType; - } - public function getCreativeType() - { - return $this->creativeType; - } - /** - * @param Google_Service_AdExchangeBuyer_PretargetingConfigDimensions - */ - public function setDimensions($dimensions) - { - $this->dimensions = $dimensions; - } - /** - * @return Google_Service_AdExchangeBuyer_PretargetingConfigDimensions - */ - public function getDimensions() - { - return $this->dimensions; - } - public function setExcludedContentLabels($excludedContentLabels) - { - $this->excludedContentLabels = $excludedContentLabels; - } - public function getExcludedContentLabels() - { - return $this->excludedContentLabels; - } - public function setExcludedGeoCriteriaIds($excludedGeoCriteriaIds) - { - $this->excludedGeoCriteriaIds = $excludedGeoCriteriaIds; - } - public function getExcludedGeoCriteriaIds() - { - return $this->excludedGeoCriteriaIds; - } - /** - * @param Google_Service_AdExchangeBuyer_PretargetingConfigExcludedPlacements - */ - public function setExcludedPlacements($excludedPlacements) - { - $this->excludedPlacements = $excludedPlacements; - } - /** - * @return Google_Service_AdExchangeBuyer_PretargetingConfigExcludedPlacements - */ - public function getExcludedPlacements() - { - return $this->excludedPlacements; - } - public function setExcludedUserLists($excludedUserLists) - { - $this->excludedUserLists = $excludedUserLists; - } - public function getExcludedUserLists() - { - return $this->excludedUserLists; - } - public function setExcludedVerticals($excludedVerticals) - { - $this->excludedVerticals = $excludedVerticals; - } - public function getExcludedVerticals() - { - return $this->excludedVerticals; - } - public function setGeoCriteriaIds($geoCriteriaIds) - { - $this->geoCriteriaIds = $geoCriteriaIds; - } - public function getGeoCriteriaIds() - { - return $this->geoCriteriaIds; - } - public function setIsActive($isActive) - { - $this->isActive = $isActive; - } - public function getIsActive() - { - return $this->isActive; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLanguages($languages) - { - $this->languages = $languages; - } - public function getLanguages() - { - return $this->languages; - } - public function setMaximumQps($maximumQps) - { - $this->maximumQps = $maximumQps; - } - public function getMaximumQps() - { - return $this->maximumQps; - } - public function setMinimumViewabilityDecile($minimumViewabilityDecile) - { - $this->minimumViewabilityDecile = $minimumViewabilityDecile; - } - public function getMinimumViewabilityDecile() - { - return $this->minimumViewabilityDecile; - } - public function setMobileCarriers($mobileCarriers) - { - $this->mobileCarriers = $mobileCarriers; - } - public function getMobileCarriers() - { - return $this->mobileCarriers; - } - public function setMobileDevices($mobileDevices) - { - $this->mobileDevices = $mobileDevices; - } - public function getMobileDevices() - { - return $this->mobileDevices; - } - public function setMobileOperatingSystemVersions($mobileOperatingSystemVersions) - { - $this->mobileOperatingSystemVersions = $mobileOperatingSystemVersions; - } - public function getMobileOperatingSystemVersions() - { - return $this->mobileOperatingSystemVersions; - } - /** - * @param Google_Service_AdExchangeBuyer_PretargetingConfigPlacements - */ - public function setPlacements($placements) - { - $this->placements = $placements; - } - /** - * @return Google_Service_AdExchangeBuyer_PretargetingConfigPlacements - */ - public function getPlacements() - { - return $this->placements; - } - public function setPlatforms($platforms) - { - $this->platforms = $platforms; - } - public function getPlatforms() - { - return $this->platforms; - } - public function setSupportedCreativeAttributes($supportedCreativeAttributes) - { - $this->supportedCreativeAttributes = $supportedCreativeAttributes; - } - public function getSupportedCreativeAttributes() - { - return $this->supportedCreativeAttributes; - } - public function setUserIdentifierDataRequired($userIdentifierDataRequired) - { - $this->userIdentifierDataRequired = $userIdentifierDataRequired; - } - public function getUserIdentifierDataRequired() - { - return $this->userIdentifierDataRequired; - } - public function setUserLists($userLists) - { - $this->userLists = $userLists; - } - public function getUserLists() - { - return $this->userLists; - } - public function setVendorTypes($vendorTypes) - { - $this->vendorTypes = $vendorTypes; - } - public function getVendorTypes() - { - return $this->vendorTypes; - } - public function setVerticals($verticals) - { - $this->verticals = $verticals; - } - public function getVerticals() - { - return $this->verticals; - } - /** - * @param Google_Service_AdExchangeBuyer_PretargetingConfigVideoPlayerSizes - */ - public function setVideoPlayerSizes($videoPlayerSizes) - { - $this->videoPlayerSizes = $videoPlayerSizes; - } - /** - * @return Google_Service_AdExchangeBuyer_PretargetingConfigVideoPlayerSizes - */ - public function getVideoPlayerSizes() - { - return $this->videoPlayerSizes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/PretargetingConfigDimensions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/PretargetingConfigDimensions.php deleted file mode 100644 index 2e1af085..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/PretargetingConfigDimensions.php +++ /dev/null @@ -1,39 +0,0 @@ -height = $height; - } - public function getHeight() - { - return $this->height; - } - public function setWidth($width) - { - $this->width = $width; - } - public function getWidth() - { - return $this->width; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/PretargetingConfigExcludedPlacements.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/PretargetingConfigExcludedPlacements.php deleted file mode 100644 index 99d3d4d0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/PretargetingConfigExcludedPlacements.php +++ /dev/null @@ -1,39 +0,0 @@ -token = $token; - } - public function getToken() - { - return $this->token; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/PretargetingConfigList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/PretargetingConfigList.php deleted file mode 100644 index 124e377b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/PretargetingConfigList.php +++ /dev/null @@ -1,47 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_AdExchangeBuyer_PretargetingConfig - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/PretargetingConfigPlacements.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/PretargetingConfigPlacements.php deleted file mode 100644 index 3ee7c30a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/PretargetingConfigPlacements.php +++ /dev/null @@ -1,39 +0,0 @@ -token = $token; - } - public function getToken() - { - return $this->token; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/PretargetingConfigVideoPlayerSizes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/PretargetingConfigVideoPlayerSizes.php deleted file mode 100644 index 47802476..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/PretargetingConfigVideoPlayerSizes.php +++ /dev/null @@ -1,48 +0,0 @@ -aspectRatio = $aspectRatio; - } - public function getAspectRatio() - { - return $this->aspectRatio; - } - public function setMinHeight($minHeight) - { - $this->minHeight = $minHeight; - } - public function getMinHeight() - { - return $this->minHeight; - } - public function setMinWidth($minWidth) - { - $this->minWidth = $minWidth; - } - public function getMinWidth() - { - return $this->minWidth; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Price.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Price.php deleted file mode 100644 index d0590dd6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Price.php +++ /dev/null @@ -1,57 +0,0 @@ -amountMicros = $amountMicros; - } - public function getAmountMicros() - { - return $this->amountMicros; - } - public function setCurrencyCode($currencyCode) - { - $this->currencyCode = $currencyCode; - } - public function getCurrencyCode() - { - return $this->currencyCode; - } - public function setExpectedCpmMicros($expectedCpmMicros) - { - $this->expectedCpmMicros = $expectedCpmMicros; - } - public function getExpectedCpmMicros() - { - return $this->expectedCpmMicros; - } - public function setPricingType($pricingType) - { - $this->pricingType = $pricingType; - } - public function getPricingType() - { - return $this->pricingType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/PricePerBuyer.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/PricePerBuyer.php deleted file mode 100644 index 9c52afc3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/PricePerBuyer.php +++ /dev/null @@ -1,78 +0,0 @@ -auctionTier = $auctionTier; - } - public function getAuctionTier() - { - return $this->auctionTier; - } - /** - * @param Google_Service_AdExchangeBuyer_Buyer - */ - public function setBilledBuyer(Google_Service_AdExchangeBuyer_Buyer $billedBuyer) - { - $this->billedBuyer = $billedBuyer; - } - /** - * @return Google_Service_AdExchangeBuyer_Buyer - */ - public function getBilledBuyer() - { - return $this->billedBuyer; - } - /** - * @param Google_Service_AdExchangeBuyer_Buyer - */ - public function setBuyer(Google_Service_AdExchangeBuyer_Buyer $buyer) - { - $this->buyer = $buyer; - } - /** - * @return Google_Service_AdExchangeBuyer_Buyer - */ - public function getBuyer() - { - return $this->buyer; - } - /** - * @param Google_Service_AdExchangeBuyer_Price - */ - public function setPrice(Google_Service_AdExchangeBuyer_Price $price) - { - $this->price = $price; - } - /** - * @return Google_Service_AdExchangeBuyer_Price - */ - public function getPrice() - { - return $this->price; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/PrivateData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/PrivateData.php deleted file mode 100644 index 76798a1d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/PrivateData.php +++ /dev/null @@ -1,39 +0,0 @@ -referenceId = $referenceId; - } - public function getReferenceId() - { - return $this->referenceId; - } - public function setReferencePayload($referencePayload) - { - $this->referencePayload = $referencePayload; - } - public function getReferencePayload() - { - return $this->referencePayload; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Product.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Product.php deleted file mode 100644 index 304e74e6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Product.php +++ /dev/null @@ -1,328 +0,0 @@ -billedBuyer = $billedBuyer; - } - /** - * @return Google_Service_AdExchangeBuyer_Buyer - */ - public function getBilledBuyer() - { - return $this->billedBuyer; - } - /** - * @param Google_Service_AdExchangeBuyer_Buyer - */ - public function setBuyer(Google_Service_AdExchangeBuyer_Buyer $buyer) - { - $this->buyer = $buyer; - } - /** - * @return Google_Service_AdExchangeBuyer_Buyer - */ - public function getBuyer() - { - return $this->buyer; - } - public function setCreationTimeMs($creationTimeMs) - { - $this->creationTimeMs = $creationTimeMs; - } - public function getCreationTimeMs() - { - return $this->creationTimeMs; - } - /** - * @param Google_Service_AdExchangeBuyer_ContactInformation - */ - public function setCreatorContacts($creatorContacts) - { - $this->creatorContacts = $creatorContacts; - } - /** - * @return Google_Service_AdExchangeBuyer_ContactInformation - */ - public function getCreatorContacts() - { - return $this->creatorContacts; - } - public function setCreatorRole($creatorRole) - { - $this->creatorRole = $creatorRole; - } - public function getCreatorRole() - { - return $this->creatorRole; - } - /** - * @param Google_Service_AdExchangeBuyer_DeliveryControl - */ - public function setDeliveryControl(Google_Service_AdExchangeBuyer_DeliveryControl $deliveryControl) - { - $this->deliveryControl = $deliveryControl; - } - /** - * @return Google_Service_AdExchangeBuyer_DeliveryControl - */ - public function getDeliveryControl() - { - return $this->deliveryControl; - } - public function setFlightEndTimeMs($flightEndTimeMs) - { - $this->flightEndTimeMs = $flightEndTimeMs; - } - public function getFlightEndTimeMs() - { - return $this->flightEndTimeMs; - } - public function setFlightStartTimeMs($flightStartTimeMs) - { - $this->flightStartTimeMs = $flightStartTimeMs; - } - public function getFlightStartTimeMs() - { - return $this->flightStartTimeMs; - } - public function setHasCreatorSignedOff($hasCreatorSignedOff) - { - $this->hasCreatorSignedOff = $hasCreatorSignedOff; - } - public function getHasCreatorSignedOff() - { - return $this->hasCreatorSignedOff; - } - public function setInventorySource($inventorySource) - { - $this->inventorySource = $inventorySource; - } - public function getInventorySource() - { - return $this->inventorySource; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_AdExchangeBuyer_MarketplaceLabel - */ - public function setLabels($labels) - { - $this->labels = $labels; - } - /** - * @return Google_Service_AdExchangeBuyer_MarketplaceLabel - */ - public function getLabels() - { - return $this->labels; - } - public function setLastUpdateTimeMs($lastUpdateTimeMs) - { - $this->lastUpdateTimeMs = $lastUpdateTimeMs; - } - public function getLastUpdateTimeMs() - { - return $this->lastUpdateTimeMs; - } - public function setLegacyOfferId($legacyOfferId) - { - $this->legacyOfferId = $legacyOfferId; - } - public function getLegacyOfferId() - { - return $this->legacyOfferId; - } - public function setMarketplacePublisherProfileId($marketplacePublisherProfileId) - { - $this->marketplacePublisherProfileId = $marketplacePublisherProfileId; - } - public function getMarketplacePublisherProfileId() - { - return $this->marketplacePublisherProfileId; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPrivateAuctionId($privateAuctionId) - { - $this->privateAuctionId = $privateAuctionId; - } - public function getPrivateAuctionId() - { - return $this->privateAuctionId; - } - public function setProductId($productId) - { - $this->productId = $productId; - } - public function getProductId() - { - return $this->productId; - } - public function setPublisherProfileId($publisherProfileId) - { - $this->publisherProfileId = $publisherProfileId; - } - public function getPublisherProfileId() - { - return $this->publisherProfileId; - } - /** - * @param Google_Service_AdExchangeBuyer_PublisherProvidedForecast - */ - public function setPublisherProvidedForecast(Google_Service_AdExchangeBuyer_PublisherProvidedForecast $publisherProvidedForecast) - { - $this->publisherProvidedForecast = $publisherProvidedForecast; - } - /** - * @return Google_Service_AdExchangeBuyer_PublisherProvidedForecast - */ - public function getPublisherProvidedForecast() - { - return $this->publisherProvidedForecast; - } - public function setRevisionNumber($revisionNumber) - { - $this->revisionNumber = $revisionNumber; - } - public function getRevisionNumber() - { - return $this->revisionNumber; - } - /** - * @param Google_Service_AdExchangeBuyer_Seller - */ - public function setSeller(Google_Service_AdExchangeBuyer_Seller $seller) - { - $this->seller = $seller; - } - /** - * @return Google_Service_AdExchangeBuyer_Seller - */ - public function getSeller() - { - return $this->seller; - } - /** - * @param Google_Service_AdExchangeBuyer_SharedTargeting - */ - public function setSharedTargetings($sharedTargetings) - { - $this->sharedTargetings = $sharedTargetings; - } - /** - * @return Google_Service_AdExchangeBuyer_SharedTargeting - */ - public function getSharedTargetings() - { - return $this->sharedTargetings; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setSyndicationProduct($syndicationProduct) - { - $this->syndicationProduct = $syndicationProduct; - } - public function getSyndicationProduct() - { - return $this->syndicationProduct; - } - /** - * @param Google_Service_AdExchangeBuyer_DealTerms - */ - public function setTerms(Google_Service_AdExchangeBuyer_DealTerms $terms) - { - $this->terms = $terms; - } - /** - * @return Google_Service_AdExchangeBuyer_DealTerms - */ - public function getTerms() - { - return $this->terms; - } - public function setWebPropertyCode($webPropertyCode) - { - $this->webPropertyCode = $webPropertyCode; - } - public function getWebPropertyCode() - { - return $this->webPropertyCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Proposal.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Proposal.php deleted file mode 100644 index 47bd77aa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Proposal.php +++ /dev/null @@ -1,278 +0,0 @@ -billedBuyer = $billedBuyer; - } - /** - * @return Google_Service_AdExchangeBuyer_Buyer - */ - public function getBilledBuyer() - { - return $this->billedBuyer; - } - /** - * @param Google_Service_AdExchangeBuyer_Buyer - */ - public function setBuyer(Google_Service_AdExchangeBuyer_Buyer $buyer) - { - $this->buyer = $buyer; - } - /** - * @return Google_Service_AdExchangeBuyer_Buyer - */ - public function getBuyer() - { - return $this->buyer; - } - /** - * @param Google_Service_AdExchangeBuyer_ContactInformation - */ - public function setBuyerContacts($buyerContacts) - { - $this->buyerContacts = $buyerContacts; - } - /** - * @return Google_Service_AdExchangeBuyer_ContactInformation - */ - public function getBuyerContacts() - { - return $this->buyerContacts; - } - /** - * @param Google_Service_AdExchangeBuyer_PrivateData - */ - public function setBuyerPrivateData(Google_Service_AdExchangeBuyer_PrivateData $buyerPrivateData) - { - $this->buyerPrivateData = $buyerPrivateData; - } - /** - * @return Google_Service_AdExchangeBuyer_PrivateData - */ - public function getBuyerPrivateData() - { - return $this->buyerPrivateData; - } - public function setDbmAdvertiserIds($dbmAdvertiserIds) - { - $this->dbmAdvertiserIds = $dbmAdvertiserIds; - } - public function getDbmAdvertiserIds() - { - return $this->dbmAdvertiserIds; - } - public function setHasBuyerSignedOff($hasBuyerSignedOff) - { - $this->hasBuyerSignedOff = $hasBuyerSignedOff; - } - public function getHasBuyerSignedOff() - { - return $this->hasBuyerSignedOff; - } - public function setHasSellerSignedOff($hasSellerSignedOff) - { - $this->hasSellerSignedOff = $hasSellerSignedOff; - } - public function getHasSellerSignedOff() - { - return $this->hasSellerSignedOff; - } - public function setInventorySource($inventorySource) - { - $this->inventorySource = $inventorySource; - } - public function getInventorySource() - { - return $this->inventorySource; - } - public function setIsRenegotiating($isRenegotiating) - { - $this->isRenegotiating = $isRenegotiating; - } - public function getIsRenegotiating() - { - return $this->isRenegotiating; - } - public function setIsSetupComplete($isSetupComplete) - { - $this->isSetupComplete = $isSetupComplete; - } - public function getIsSetupComplete() - { - return $this->isSetupComplete; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_AdExchangeBuyer_MarketplaceLabel - */ - public function setLabels($labels) - { - $this->labels = $labels; - } - /** - * @return Google_Service_AdExchangeBuyer_MarketplaceLabel - */ - public function getLabels() - { - return $this->labels; - } - public function setLastUpdaterOrCommentorRole($lastUpdaterOrCommentorRole) - { - $this->lastUpdaterOrCommentorRole = $lastUpdaterOrCommentorRole; - } - public function getLastUpdaterOrCommentorRole() - { - return $this->lastUpdaterOrCommentorRole; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNegotiationId($negotiationId) - { - $this->negotiationId = $negotiationId; - } - public function getNegotiationId() - { - return $this->negotiationId; - } - public function setOriginatorRole($originatorRole) - { - $this->originatorRole = $originatorRole; - } - public function getOriginatorRole() - { - return $this->originatorRole; - } - public function setPrivateAuctionId($privateAuctionId) - { - $this->privateAuctionId = $privateAuctionId; - } - public function getPrivateAuctionId() - { - return $this->privateAuctionId; - } - public function setProposalId($proposalId) - { - $this->proposalId = $proposalId; - } - public function getProposalId() - { - return $this->proposalId; - } - public function setProposalState($proposalState) - { - $this->proposalState = $proposalState; - } - public function getProposalState() - { - return $this->proposalState; - } - public function setRevisionNumber($revisionNumber) - { - $this->revisionNumber = $revisionNumber; - } - public function getRevisionNumber() - { - return $this->revisionNumber; - } - public function setRevisionTimeMs($revisionTimeMs) - { - $this->revisionTimeMs = $revisionTimeMs; - } - public function getRevisionTimeMs() - { - return $this->revisionTimeMs; - } - /** - * @param Google_Service_AdExchangeBuyer_Seller - */ - public function setSeller(Google_Service_AdExchangeBuyer_Seller $seller) - { - $this->seller = $seller; - } - /** - * @return Google_Service_AdExchangeBuyer_Seller - */ - public function getSeller() - { - return $this->seller; - } - /** - * @param Google_Service_AdExchangeBuyer_ContactInformation - */ - public function setSellerContacts($sellerContacts) - { - $this->sellerContacts = $sellerContacts; - } - /** - * @return Google_Service_AdExchangeBuyer_ContactInformation - */ - public function getSellerContacts() - { - return $this->sellerContacts; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/PublisherProfileApiProto.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/PublisherProfileApiProto.php deleted file mode 100644 index ba12a5bb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/PublisherProfileApiProto.php +++ /dev/null @@ -1,234 +0,0 @@ -audience = $audience; - } - public function getAudience() - { - return $this->audience; - } - public function setBuyerPitchStatement($buyerPitchStatement) - { - $this->buyerPitchStatement = $buyerPitchStatement; - } - public function getBuyerPitchStatement() - { - return $this->buyerPitchStatement; - } - public function setDirectContact($directContact) - { - $this->directContact = $directContact; - } - public function getDirectContact() - { - return $this->directContact; - } - public function setExchange($exchange) - { - $this->exchange = $exchange; - } - public function getExchange() - { - return $this->exchange; - } - public function setGooglePlusLink($googlePlusLink) - { - $this->googlePlusLink = $googlePlusLink; - } - public function getGooglePlusLink() - { - return $this->googlePlusLink; - } - public function setIsParent($isParent) - { - $this->isParent = $isParent; - } - public function getIsParent() - { - return $this->isParent; - } - public function setIsPublished($isPublished) - { - $this->isPublished = $isPublished; - } - public function getIsPublished() - { - return $this->isPublished; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLogoUrl($logoUrl) - { - $this->logoUrl = $logoUrl; - } - public function getLogoUrl() - { - return $this->logoUrl; - } - public function setMediaKitLink($mediaKitLink) - { - $this->mediaKitLink = $mediaKitLink; - } - public function getMediaKitLink() - { - return $this->mediaKitLink; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOverview($overview) - { - $this->overview = $overview; - } - public function getOverview() - { - return $this->overview; - } - public function setProfileId($profileId) - { - $this->profileId = $profileId; - } - public function getProfileId() - { - return $this->profileId; - } - public function setProgrammaticContact($programmaticContact) - { - $this->programmaticContact = $programmaticContact; - } - public function getProgrammaticContact() - { - return $this->programmaticContact; - } - public function setPublisherDomains($publisherDomains) - { - $this->publisherDomains = $publisherDomains; - } - public function getPublisherDomains() - { - return $this->publisherDomains; - } - public function setPublisherProfileId($publisherProfileId) - { - $this->publisherProfileId = $publisherProfileId; - } - public function getPublisherProfileId() - { - return $this->publisherProfileId; - } - /** - * @param Google_Service_AdExchangeBuyer_PublisherProvidedForecast - */ - public function setPublisherProvidedForecast(Google_Service_AdExchangeBuyer_PublisherProvidedForecast $publisherProvidedForecast) - { - $this->publisherProvidedForecast = $publisherProvidedForecast; - } - /** - * @return Google_Service_AdExchangeBuyer_PublisherProvidedForecast - */ - public function getPublisherProvidedForecast() - { - return $this->publisherProvidedForecast; - } - public function setRateCardInfoLink($rateCardInfoLink) - { - $this->rateCardInfoLink = $rateCardInfoLink; - } - public function getRateCardInfoLink() - { - return $this->rateCardInfoLink; - } - public function setSamplePageLink($samplePageLink) - { - $this->samplePageLink = $samplePageLink; - } - public function getSamplePageLink() - { - return $this->samplePageLink; - } - /** - * @param Google_Service_AdExchangeBuyer_Seller - */ - public function setSeller(Google_Service_AdExchangeBuyer_Seller $seller) - { - $this->seller = $seller; - } - /** - * @return Google_Service_AdExchangeBuyer_Seller - */ - public function getSeller() - { - return $this->seller; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setTopHeadlines($topHeadlines) - { - $this->topHeadlines = $topHeadlines; - } - public function getTopHeadlines() - { - return $this->topHeadlines; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/PublisherProvidedForecast.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/PublisherProvidedForecast.php deleted file mode 100644 index d44d59a9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/PublisherProvidedForecast.php +++ /dev/null @@ -1,56 +0,0 @@ -dimensions = $dimensions; - } - /** - * @return Google_Service_AdExchangeBuyer_Dimension - */ - public function getDimensions() - { - return $this->dimensions; - } - public function setWeeklyImpressions($weeklyImpressions) - { - $this->weeklyImpressions = $weeklyImpressions; - } - public function getWeeklyImpressions() - { - return $this->weeklyImpressions; - } - public function setWeeklyUniques($weeklyUniques) - { - $this->weeklyUniques = $weeklyUniques; - } - public function getWeeklyUniques() - { - return $this->weeklyUniques; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Resource/Accounts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Resource/Accounts.php deleted file mode 100644 index 3976baf1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Resource/Accounts.php +++ /dev/null @@ -1,88 +0,0 @@ - - * $adexchangebuyerService = new Google_Service_AdExchangeBuyer(...); - * $accounts = $adexchangebuyerService->accounts; - * - */ -class Google_Service_AdExchangeBuyer_Resource_Accounts extends Google_Service_Resource -{ - /** - * Gets one account by ID. (accounts.get) - * - * @param int $id The account id - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeBuyer_Account - */ - public function get($id, $optParams = array()) - { - $params = array('id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AdExchangeBuyer_Account"); - } - /** - * Retrieves the authenticated user's list of accounts. (accounts.listAccounts) - * - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeBuyer_AccountsList - */ - public function listAccounts($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdExchangeBuyer_AccountsList"); - } - /** - * Updates an existing account. This method supports patch semantics. - * (accounts.patch) - * - * @param int $id The account id - * @param Google_Service_AdExchangeBuyer_Account $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool confirmUnsafeAccountChange Confirmation for erasing bidder - * and cookie matching urls. - * @return Google_Service_AdExchangeBuyer_Account - */ - public function patch($id, Google_Service_AdExchangeBuyer_Account $postBody, $optParams = array()) - { - $params = array('id' => $id, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_AdExchangeBuyer_Account"); - } - /** - * Updates an existing account. (accounts.update) - * - * @param int $id The account id - * @param Google_Service_AdExchangeBuyer_Account $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool confirmUnsafeAccountChange Confirmation for erasing bidder - * and cookie matching urls. - * @return Google_Service_AdExchangeBuyer_Account - */ - public function update($id, Google_Service_AdExchangeBuyer_Account $postBody, $optParams = array()) - { - $params = array('id' => $id, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_AdExchangeBuyer_Account"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Resource/BillingInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Resource/BillingInfo.php deleted file mode 100644 index 0f0b3e98..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Resource/BillingInfo.php +++ /dev/null @@ -1,55 +0,0 @@ - - * $adexchangebuyerService = new Google_Service_AdExchangeBuyer(...); - * $billingInfo = $adexchangebuyerService->billingInfo; - * - */ -class Google_Service_AdExchangeBuyer_Resource_BillingInfo extends Google_Service_Resource -{ - /** - * Returns the billing information for one account specified by account ID. - * (billingInfo.get) - * - * @param int $accountId The account id. - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeBuyer_BillingInfo - */ - public function get($accountId, $optParams = array()) - { - $params = array('accountId' => $accountId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AdExchangeBuyer_BillingInfo"); - } - /** - * Retrieves a list of billing information for all accounts of the authenticated - * user. (billingInfo.listBillingInfo) - * - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeBuyer_BillingInfoList - */ - public function listBillingInfo($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdExchangeBuyer_BillingInfoList"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Resource/Budget.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Resource/Budget.php deleted file mode 100644 index 38d5ac31..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Resource/Budget.php +++ /dev/null @@ -1,81 +0,0 @@ - - * $adexchangebuyerService = new Google_Service_AdExchangeBuyer(...); - * $budget = $adexchangebuyerService->budget; - * - */ -class Google_Service_AdExchangeBuyer_Resource_Budget extends Google_Service_Resource -{ - /** - * Returns the budget information for the adgroup specified by the accountId and - * billingId. (budget.get) - * - * @param string $accountId The account id to get the budget information for. - * @param string $billingId The billing id to get the budget information for. - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeBuyer_Budget - */ - public function get($accountId, $billingId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'billingId' => $billingId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AdExchangeBuyer_Budget"); - } - /** - * Updates the budget amount for the budget of the adgroup specified by the - * accountId and billingId, with the budget amount in the request. This method - * supports patch semantics. (budget.patch) - * - * @param string $accountId The account id associated with the budget being - * updated. - * @param string $billingId The billing id associated with the budget being - * updated. - * @param Google_Service_AdExchangeBuyer_Budget $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeBuyer_Budget - */ - public function patch($accountId, $billingId, Google_Service_AdExchangeBuyer_Budget $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'billingId' => $billingId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_AdExchangeBuyer_Budget"); - } - /** - * Updates the budget amount for the budget of the adgroup specified by the - * accountId and billingId, with the budget amount in the request. - * (budget.update) - * - * @param string $accountId The account id associated with the budget being - * updated. - * @param string $billingId The billing id associated with the budget being - * updated. - * @param Google_Service_AdExchangeBuyer_Budget $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeBuyer_Budget - */ - public function update($accountId, $billingId, Google_Service_AdExchangeBuyer_Budget $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'billingId' => $billingId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_AdExchangeBuyer_Budget"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Resource/Creatives.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Resource/Creatives.php deleted file mode 100644 index 8b535770..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Resource/Creatives.php +++ /dev/null @@ -1,127 +0,0 @@ - - * $adexchangebuyerService = new Google_Service_AdExchangeBuyer(...); - * $creatives = $adexchangebuyerService->creatives; - * - */ -class Google_Service_AdExchangeBuyer_Resource_Creatives extends Google_Service_Resource -{ - /** - * Add a deal id association for the creative. (creatives.addDeal) - * - * @param int $accountId The id for the account that will serve this creative. - * @param string $buyerCreativeId The buyer-specific id for this creative. - * @param string $dealId The id of the deal id to associate with this creative. - * @param array $optParams Optional parameters. - */ - public function addDeal($accountId, $buyerCreativeId, $dealId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'buyerCreativeId' => $buyerCreativeId, 'dealId' => $dealId); - $params = array_merge($params, $optParams); - return $this->call('addDeal', array($params)); - } - /** - * Gets the status for a single creative. A creative will be available 30-40 - * minutes after submission. (creatives.get) - * - * @param int $accountId The id for the account that will serve this creative. - * @param string $buyerCreativeId The buyer-specific id for this creative. - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeBuyer_Creative - */ - public function get($accountId, $buyerCreativeId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'buyerCreativeId' => $buyerCreativeId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AdExchangeBuyer_Creative"); - } - /** - * Submit a new creative. (creatives.insert) - * - * @param Google_Service_AdExchangeBuyer_Creative $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeBuyer_Creative - */ - public function insert(Google_Service_AdExchangeBuyer_Creative $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_AdExchangeBuyer_Creative"); - } - /** - * Retrieves a list of the authenticated user's active creatives. A creative - * will be available 30-40 minutes after submission. (creatives.listCreatives) - * - * @param array $optParams Optional parameters. - * - * @opt_param int accountId When specified, only creatives for the given account - * ids are returned. - * @opt_param string buyerCreativeId When specified, only creatives for the - * given buyer creative ids are returned. - * @opt_param string dealsStatusFilter When specified, only creatives having the - * given deals status are returned. - * @opt_param string maxResults Maximum number of entries returned on one result - * page. If not set, the default is 100. Optional. - * @opt_param string openAuctionStatusFilter When specified, only creatives - * having the given open auction status are returned. - * @opt_param string pageToken A continuation token, used to page through ad - * clients. To retrieve the next page, set this parameter to the value of - * "nextPageToken" from the previous response. Optional. - * @return Google_Service_AdExchangeBuyer_CreativesList - */ - public function listCreatives($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdExchangeBuyer_CreativesList"); - } - /** - * Lists the external deal ids associated with the creative. - * (creatives.listDeals) - * - * @param int $accountId The id for the account that will serve this creative. - * @param string $buyerCreativeId The buyer-specific id for this creative. - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeBuyer_CreativeDealIds - */ - public function listDeals($accountId, $buyerCreativeId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'buyerCreativeId' => $buyerCreativeId); - $params = array_merge($params, $optParams); - return $this->call('listDeals', array($params), "Google_Service_AdExchangeBuyer_CreativeDealIds"); - } - /** - * Remove a deal id associated with the creative. (creatives.removeDeal) - * - * @param int $accountId The id for the account that will serve this creative. - * @param string $buyerCreativeId The buyer-specific id for this creative. - * @param string $dealId The id of the deal id to disassociate with this - * creative. - * @param array $optParams Optional parameters. - */ - public function removeDeal($accountId, $buyerCreativeId, $dealId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'buyerCreativeId' => $buyerCreativeId, 'dealId' => $dealId); - $params = array_merge($params, $optParams); - return $this->call('removeDeal', array($params)); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Resource/Marketplacedeals.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Resource/Marketplacedeals.php deleted file mode 100644 index 362e0cbd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Resource/Marketplacedeals.php +++ /dev/null @@ -1,88 +0,0 @@ - - * $adexchangebuyerService = new Google_Service_AdExchangeBuyer(...); - * $marketplacedeals = $adexchangebuyerService->marketplacedeals; - * - */ -class Google_Service_AdExchangeBuyer_Resource_Marketplacedeals extends Google_Service_Resource -{ - /** - * Delete the specified deals from the proposal (marketplacedeals.delete) - * - * @param string $proposalId The proposalId to delete deals from. - * @param Google_Service_AdExchangeBuyer_DeleteOrderDealsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeBuyer_DeleteOrderDealsResponse - */ - public function delete($proposalId, Google_Service_AdExchangeBuyer_DeleteOrderDealsRequest $postBody, $optParams = array()) - { - $params = array('proposalId' => $proposalId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_AdExchangeBuyer_DeleteOrderDealsResponse"); - } - /** - * Add new deals for the specified proposal (marketplacedeals.insert) - * - * @param string $proposalId proposalId for which deals need to be added. - * @param Google_Service_AdExchangeBuyer_AddOrderDealsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeBuyer_AddOrderDealsResponse - */ - public function insert($proposalId, Google_Service_AdExchangeBuyer_AddOrderDealsRequest $postBody, $optParams = array()) - { - $params = array('proposalId' => $proposalId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_AdExchangeBuyer_AddOrderDealsResponse"); - } - /** - * List all the deals for a given proposal - * (marketplacedeals.listMarketplacedeals) - * - * @param string $proposalId The proposalId to get deals for. To search across - * all proposals specify order_id = '-' as part of the URL. - * @param array $optParams Optional parameters. - * - * @opt_param string pqlQuery Query string to retrieve specific deals. - * @return Google_Service_AdExchangeBuyer_GetOrderDealsResponse - */ - public function listMarketplacedeals($proposalId, $optParams = array()) - { - $params = array('proposalId' => $proposalId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdExchangeBuyer_GetOrderDealsResponse"); - } - /** - * Replaces all the deals in the proposal with the passed in deals - * (marketplacedeals.update) - * - * @param string $proposalId The proposalId to edit deals on. - * @param Google_Service_AdExchangeBuyer_EditAllOrderDealsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeBuyer_EditAllOrderDealsResponse - */ - public function update($proposalId, Google_Service_AdExchangeBuyer_EditAllOrderDealsRequest $postBody, $optParams = array()) - { - $params = array('proposalId' => $proposalId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_AdExchangeBuyer_EditAllOrderDealsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Resource/Marketplacenotes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Resource/Marketplacenotes.php deleted file mode 100644 index 16a7c941..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Resource/Marketplacenotes.php +++ /dev/null @@ -1,61 +0,0 @@ - - * $adexchangebuyerService = new Google_Service_AdExchangeBuyer(...); - * $marketplacenotes = $adexchangebuyerService->marketplacenotes; - * - */ -class Google_Service_AdExchangeBuyer_Resource_Marketplacenotes extends Google_Service_Resource -{ - /** - * Add notes to the proposal (marketplacenotes.insert) - * - * @param string $proposalId The proposalId to add notes for. - * @param Google_Service_AdExchangeBuyer_AddOrderNotesRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeBuyer_AddOrderNotesResponse - */ - public function insert($proposalId, Google_Service_AdExchangeBuyer_AddOrderNotesRequest $postBody, $optParams = array()) - { - $params = array('proposalId' => $proposalId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_AdExchangeBuyer_AddOrderNotesResponse"); - } - /** - * Get all the notes associated with a proposal - * (marketplacenotes.listMarketplacenotes) - * - * @param string $proposalId The proposalId to get notes for. To search across - * all proposals specify order_id = '-' as part of the URL. - * @param array $optParams Optional parameters. - * - * @opt_param string pqlQuery Query string to retrieve specific notes. To search - * the text contents of notes, please use syntax like "WHERE note.note = "foo" - * or "WHERE note.note LIKE "%bar%" - * @return Google_Service_AdExchangeBuyer_GetOrderNotesResponse - */ - public function listMarketplacenotes($proposalId, $optParams = array()) - { - $params = array('proposalId' => $proposalId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdExchangeBuyer_GetOrderNotesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Resource/Marketplaceprivateauction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Resource/Marketplaceprivateauction.php deleted file mode 100644 index 8524004b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Resource/Marketplaceprivateauction.php +++ /dev/null @@ -1,42 +0,0 @@ - - * $adexchangebuyerService = new Google_Service_AdExchangeBuyer(...); - * $marketplaceprivateauction = $adexchangebuyerService->marketplaceprivateauction; - * - */ -class Google_Service_AdExchangeBuyer_Resource_Marketplaceprivateauction extends Google_Service_Resource -{ - /** - * Update a given private auction proposal - * (marketplaceprivateauction.updateproposal) - * - * @param string $privateAuctionId The private auction id to be updated. - * @param Google_Service_AdExchangeBuyer_UpdatePrivateAuctionProposalRequest $postBody - * @param array $optParams Optional parameters. - */ - public function updateproposal($privateAuctionId, Google_Service_AdExchangeBuyer_UpdatePrivateAuctionProposalRequest $postBody, $optParams = array()) - { - $params = array('privateAuctionId' => $privateAuctionId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updateproposal', array($params)); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Resource/PerformanceReport.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Resource/PerformanceReport.php deleted file mode 100644 index 99f2af82..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Resource/PerformanceReport.php +++ /dev/null @@ -1,52 +0,0 @@ - - * $adexchangebuyerService = new Google_Service_AdExchangeBuyer(...); - * $performanceReport = $adexchangebuyerService->performanceReport; - * - */ -class Google_Service_AdExchangeBuyer_Resource_PerformanceReport extends Google_Service_Resource -{ - /** - * Retrieves the authenticated user's list of performance metrics. - * (performanceReport.listPerformanceReport) - * - * @param string $accountId The account id to get the reports. - * @param string $endDateTime The end time of the report in ISO 8601 timestamp - * format using UTC. - * @param string $startDateTime The start time of the report in ISO 8601 - * timestamp format using UTC. - * @param array $optParams Optional parameters. - * - * @opt_param string maxResults Maximum number of entries returned on one result - * page. If not set, the default is 100. Optional. - * @opt_param string pageToken A continuation token, used to page through - * performance reports. To retrieve the next page, set this parameter to the - * value of "nextPageToken" from the previous response. Optional. - * @return Google_Service_AdExchangeBuyer_PerformanceReportList - */ - public function listPerformanceReport($accountId, $endDateTime, $startDateTime, $optParams = array()) - { - $params = array('accountId' => $accountId, 'endDateTime' => $endDateTime, 'startDateTime' => $startDateTime); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdExchangeBuyer_PerformanceReportList"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Resource/PretargetingConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Resource/PretargetingConfig.php deleted file mode 100644 index d1ec7844..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Resource/PretargetingConfig.php +++ /dev/null @@ -1,118 +0,0 @@ - - * $adexchangebuyerService = new Google_Service_AdExchangeBuyer(...); - * $pretargetingConfig = $adexchangebuyerService->pretargetingConfig; - * - */ -class Google_Service_AdExchangeBuyer_Resource_PretargetingConfig extends Google_Service_Resource -{ - /** - * Deletes an existing pretargeting config. (pretargetingConfig.delete) - * - * @param string $accountId The account id to delete the pretargeting config - * for. - * @param string $configId The specific id of the configuration to delete. - * @param array $optParams Optional parameters. - */ - public function delete($accountId, $configId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'configId' => $configId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Gets a specific pretargeting configuration (pretargetingConfig.get) - * - * @param string $accountId The account id to get the pretargeting config for. - * @param string $configId The specific id of the configuration to retrieve. - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeBuyer_PretargetingConfig - */ - public function get($accountId, $configId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'configId' => $configId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AdExchangeBuyer_PretargetingConfig"); - } - /** - * Inserts a new pretargeting configuration. (pretargetingConfig.insert) - * - * @param string $accountId The account id to insert the pretargeting config - * for. - * @param Google_Service_AdExchangeBuyer_PretargetingConfig $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeBuyer_PretargetingConfig - */ - public function insert($accountId, Google_Service_AdExchangeBuyer_PretargetingConfig $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_AdExchangeBuyer_PretargetingConfig"); - } - /** - * Retrieves a list of the authenticated user's pretargeting configurations. - * (pretargetingConfig.listPretargetingConfig) - * - * @param string $accountId The account id to get the pretargeting configs for. - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeBuyer_PretargetingConfigList - */ - public function listPretargetingConfig($accountId, $optParams = array()) - { - $params = array('accountId' => $accountId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdExchangeBuyer_PretargetingConfigList"); - } - /** - * Updates an existing pretargeting config. This method supports patch - * semantics. (pretargetingConfig.patch) - * - * @param string $accountId The account id to update the pretargeting config - * for. - * @param string $configId The specific id of the configuration to update. - * @param Google_Service_AdExchangeBuyer_PretargetingConfig $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeBuyer_PretargetingConfig - */ - public function patch($accountId, $configId, Google_Service_AdExchangeBuyer_PretargetingConfig $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'configId' => $configId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_AdExchangeBuyer_PretargetingConfig"); - } - /** - * Updates an existing pretargeting config. (pretargetingConfig.update) - * - * @param string $accountId The account id to update the pretargeting config - * for. - * @param string $configId The specific id of the configuration to update. - * @param Google_Service_AdExchangeBuyer_PretargetingConfig $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeBuyer_PretargetingConfig - */ - public function update($accountId, $configId, Google_Service_AdExchangeBuyer_PretargetingConfig $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'configId' => $configId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_AdExchangeBuyer_PretargetingConfig"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Resource/Products.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Resource/Products.php deleted file mode 100644 index dea00e58..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Resource/Products.php +++ /dev/null @@ -1,55 +0,0 @@ - - * $adexchangebuyerService = new Google_Service_AdExchangeBuyer(...); - * $products = $adexchangebuyerService->products; - * - */ -class Google_Service_AdExchangeBuyer_Resource_Products extends Google_Service_Resource -{ - /** - * Gets the requested product by id. (products.get) - * - * @param string $productId The id for the product to get the head revision for. - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeBuyer_Product - */ - public function get($productId, $optParams = array()) - { - $params = array('productId' => $productId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AdExchangeBuyer_Product"); - } - /** - * Gets the requested product. (products.search) - * - * @param array $optParams Optional parameters. - * - * @opt_param string pqlQuery The pql query used to query for products. - * @return Google_Service_AdExchangeBuyer_GetOffersResponse - */ - public function search($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('search', array($params), "Google_Service_AdExchangeBuyer_GetOffersResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Resource/Proposals.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Resource/Proposals.php deleted file mode 100644 index d2f9c95d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Resource/Proposals.php +++ /dev/null @@ -1,122 +0,0 @@ - - * $adexchangebuyerService = new Google_Service_AdExchangeBuyer(...); - * $proposals = $adexchangebuyerService->proposals; - * - */ -class Google_Service_AdExchangeBuyer_Resource_Proposals extends Google_Service_Resource -{ - /** - * Get a proposal given its id (proposals.get) - * - * @param string $proposalId Id of the proposal to retrieve. - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeBuyer_Proposal - */ - public function get($proposalId, $optParams = array()) - { - $params = array('proposalId' => $proposalId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AdExchangeBuyer_Proposal"); - } - /** - * Create the given list of proposals (proposals.insert) - * - * @param Google_Service_AdExchangeBuyer_CreateOrdersRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeBuyer_CreateOrdersResponse - */ - public function insert(Google_Service_AdExchangeBuyer_CreateOrdersRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_AdExchangeBuyer_CreateOrdersResponse"); - } - /** - * Update the given proposal. This method supports patch semantics. - * (proposals.patch) - * - * @param string $proposalId The proposal id to update. - * @param string $revisionNumber The last known revision number to update. If - * the head revision in the marketplace database has since changed, an error - * will be thrown. The caller should then fetch the latest proposal at head - * revision and retry the update at that revision. - * @param string $updateAction The proposed action to take on the proposal. This - * field is required and it must be set when updating a proposal. - * @param Google_Service_AdExchangeBuyer_Proposal $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeBuyer_Proposal - */ - public function patch($proposalId, $revisionNumber, $updateAction, Google_Service_AdExchangeBuyer_Proposal $postBody, $optParams = array()) - { - $params = array('proposalId' => $proposalId, 'revisionNumber' => $revisionNumber, 'updateAction' => $updateAction, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_AdExchangeBuyer_Proposal"); - } - /** - * Search for proposals using pql query (proposals.search) - * - * @param array $optParams Optional parameters. - * - * @opt_param string pqlQuery Query string to retrieve specific proposals. - * @return Google_Service_AdExchangeBuyer_GetOrdersResponse - */ - public function search($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('search', array($params), "Google_Service_AdExchangeBuyer_GetOrdersResponse"); - } - /** - * Update the given proposal to indicate that setup has been completed. - * (proposals.setupcomplete) - * - * @param string $proposalId The proposal id for which the setup is complete - * @param array $optParams Optional parameters. - */ - public function setupcomplete($proposalId, $optParams = array()) - { - $params = array('proposalId' => $proposalId); - $params = array_merge($params, $optParams); - return $this->call('setupcomplete', array($params)); - } - /** - * Update the given proposal (proposals.update) - * - * @param string $proposalId The proposal id to update. - * @param string $revisionNumber The last known revision number to update. If - * the head revision in the marketplace database has since changed, an error - * will be thrown. The caller should then fetch the latest proposal at head - * revision and retry the update at that revision. - * @param string $updateAction The proposed action to take on the proposal. This - * field is required and it must be set when updating a proposal. - * @param Google_Service_AdExchangeBuyer_Proposal $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeBuyer_Proposal - */ - public function update($proposalId, $revisionNumber, $updateAction, Google_Service_AdExchangeBuyer_Proposal $postBody, $optParams = array()) - { - $params = array('proposalId' => $proposalId, 'revisionNumber' => $revisionNumber, 'updateAction' => $updateAction, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_AdExchangeBuyer_Proposal"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Resource/Pubprofiles.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Resource/Pubprofiles.php deleted file mode 100644 index 090afd3e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Resource/Pubprofiles.php +++ /dev/null @@ -1,42 +0,0 @@ - - * $adexchangebuyerService = new Google_Service_AdExchangeBuyer(...); - * $pubprofiles = $adexchangebuyerService->pubprofiles; - * - */ -class Google_Service_AdExchangeBuyer_Resource_Pubprofiles extends Google_Service_Resource -{ - /** - * Gets the requested publisher profile(s) by publisher accountId. - * (pubprofiles.listPubprofiles) - * - * @param int $accountId The accountId of the publisher to get profiles for. - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeBuyer_GetPublisherProfilesByAccountIdResponse - */ - public function listPubprofiles($accountId, $optParams = array()) - { - $params = array('accountId' => $accountId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdExchangeBuyer_GetPublisherProfilesByAccountIdResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Seller.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Seller.php deleted file mode 100644 index be4761ad..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Seller.php +++ /dev/null @@ -1,39 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setSubAccountId($subAccountId) - { - $this->subAccountId = $subAccountId; - } - public function getSubAccountId() - { - return $this->subAccountId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/SharedTargeting.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/SharedTargeting.php deleted file mode 100644 index d844841c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/SharedTargeting.php +++ /dev/null @@ -1,63 +0,0 @@ -exclusions = $exclusions; - } - /** - * @return Google_Service_AdExchangeBuyer_TargetingValue - */ - public function getExclusions() - { - return $this->exclusions; - } - /** - * @param Google_Service_AdExchangeBuyer_TargetingValue - */ - public function setInclusions($inclusions) - { - $this->inclusions = $inclusions; - } - /** - * @return Google_Service_AdExchangeBuyer_TargetingValue - */ - public function getInclusions() - { - return $this->inclusions; - } - public function setKey($key) - { - $this->key = $key; - } - public function getKey() - { - return $this->key; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/TargetingValue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/TargetingValue.php deleted file mode 100644 index 5b55c29e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/TargetingValue.php +++ /dev/null @@ -1,103 +0,0 @@ -creativeSizeValue = $creativeSizeValue; - } - /** - * @return Google_Service_AdExchangeBuyer_TargetingValueCreativeSize - */ - public function getCreativeSizeValue() - { - return $this->creativeSizeValue; - } - /** - * @param Google_Service_AdExchangeBuyer_TargetingValueDayPartTargeting - */ - public function setDayPartTargetingValue(Google_Service_AdExchangeBuyer_TargetingValueDayPartTargeting $dayPartTargetingValue) - { - $this->dayPartTargetingValue = $dayPartTargetingValue; - } - /** - * @return Google_Service_AdExchangeBuyer_TargetingValueDayPartTargeting - */ - public function getDayPartTargetingValue() - { - return $this->dayPartTargetingValue; - } - /** - * @param Google_Service_AdExchangeBuyer_TargetingValueDemogAgeCriteria - */ - public function setDemogAgeCriteriaValue(Google_Service_AdExchangeBuyer_TargetingValueDemogAgeCriteria $demogAgeCriteriaValue) - { - $this->demogAgeCriteriaValue = $demogAgeCriteriaValue; - } - /** - * @return Google_Service_AdExchangeBuyer_TargetingValueDemogAgeCriteria - */ - public function getDemogAgeCriteriaValue() - { - return $this->demogAgeCriteriaValue; - } - /** - * @param Google_Service_AdExchangeBuyer_TargetingValueDemogGenderCriteria - */ - public function setDemogGenderCriteriaValue(Google_Service_AdExchangeBuyer_TargetingValueDemogGenderCriteria $demogGenderCriteriaValue) - { - $this->demogGenderCriteriaValue = $demogGenderCriteriaValue; - } - /** - * @return Google_Service_AdExchangeBuyer_TargetingValueDemogGenderCriteria - */ - public function getDemogGenderCriteriaValue() - { - return $this->demogGenderCriteriaValue; - } - public function setLongValue($longValue) - { - $this->longValue = $longValue; - } - public function getLongValue() - { - return $this->longValue; - } - public function setStringValue($stringValue) - { - $this->stringValue = $stringValue; - } - public function getStringValue() - { - return $this->stringValue; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/TargetingValueCreativeSize.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/TargetingValueCreativeSize.php deleted file mode 100644 index fa8c2801..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/TargetingValueCreativeSize.php +++ /dev/null @@ -1,90 +0,0 @@ -allowedFormats = $allowedFormats; - } - public function getAllowedFormats() - { - return $this->allowedFormats; - } - /** - * @param Google_Service_AdExchangeBuyer_TargetingValueSize - */ - public function setCompanionSizes($companionSizes) - { - $this->companionSizes = $companionSizes; - } - /** - * @return Google_Service_AdExchangeBuyer_TargetingValueSize - */ - public function getCompanionSizes() - { - return $this->companionSizes; - } - public function setCreativeSizeType($creativeSizeType) - { - $this->creativeSizeType = $creativeSizeType; - } - public function getCreativeSizeType() - { - return $this->creativeSizeType; - } - public function setNativeTemplate($nativeTemplate) - { - $this->nativeTemplate = $nativeTemplate; - } - public function getNativeTemplate() - { - return $this->nativeTemplate; - } - /** - * @param Google_Service_AdExchangeBuyer_TargetingValueSize - */ - public function setSize(Google_Service_AdExchangeBuyer_TargetingValueSize $size) - { - $this->size = $size; - } - /** - * @return Google_Service_AdExchangeBuyer_TargetingValueSize - */ - public function getSize() - { - return $this->size; - } - public function setSkippableAdType($skippableAdType) - { - $this->skippableAdType = $skippableAdType; - } - public function getSkippableAdType() - { - return $this->skippableAdType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/TargetingValueDayPartTargeting.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/TargetingValueDayPartTargeting.php deleted file mode 100644 index 66acfb17..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/TargetingValueDayPartTargeting.php +++ /dev/null @@ -1,47 +0,0 @@ -dayParts = $dayParts; - } - /** - * @return Google_Service_AdExchangeBuyer_TargetingValueDayPartTargetingDayPart - */ - public function getDayParts() - { - return $this->dayParts; - } - public function setTimeZoneType($timeZoneType) - { - $this->timeZoneType = $timeZoneType; - } - public function getTimeZoneType() - { - return $this->timeZoneType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/TargetingValueDayPartTargetingDayPart.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/TargetingValueDayPartTargetingDayPart.php deleted file mode 100644 index 42f43342..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/TargetingValueDayPartTargetingDayPart.php +++ /dev/null @@ -1,66 +0,0 @@ -dayOfWeek = $dayOfWeek; - } - public function getDayOfWeek() - { - return $this->dayOfWeek; - } - public function setEndHour($endHour) - { - $this->endHour = $endHour; - } - public function getEndHour() - { - return $this->endHour; - } - public function setEndMinute($endMinute) - { - $this->endMinute = $endMinute; - } - public function getEndMinute() - { - return $this->endMinute; - } - public function setStartHour($startHour) - { - $this->startHour = $startHour; - } - public function getStartHour() - { - return $this->startHour; - } - public function setStartMinute($startMinute) - { - $this->startMinute = $startMinute; - } - public function getStartMinute() - { - return $this->startMinute; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/TargetingValueDemogAgeCriteria.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/TargetingValueDemogAgeCriteria.php deleted file mode 100644 index 42ad81fa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/TargetingValueDemogAgeCriteria.php +++ /dev/null @@ -1,31 +0,0 @@ -demogAgeCriteriaIds = $demogAgeCriteriaIds; - } - public function getDemogAgeCriteriaIds() - { - return $this->demogAgeCriteriaIds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/TargetingValueDemogGenderCriteria.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/TargetingValueDemogGenderCriteria.php deleted file mode 100644 index 8f46ccc5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/TargetingValueDemogGenderCriteria.php +++ /dev/null @@ -1,31 +0,0 @@ -demogGenderCriteriaIds = $demogGenderCriteriaIds; - } - public function getDemogGenderCriteriaIds() - { - return $this->demogGenderCriteriaIds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/TargetingValueSize.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/TargetingValueSize.php deleted file mode 100644 index 0ad076f2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/TargetingValueSize.php +++ /dev/null @@ -1,39 +0,0 @@ -height = $height; - } - public function getHeight() - { - return $this->height; - } - public function setWidth($width) - { - $this->width = $width; - } - public function getWidth() - { - return $this->width; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/UpdatePrivateAuctionProposalRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/UpdatePrivateAuctionProposalRequest.php deleted file mode 100644 index 03f1e555..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/UpdatePrivateAuctionProposalRequest.php +++ /dev/null @@ -1,64 +0,0 @@ -externalDealId = $externalDealId; - } - public function getExternalDealId() - { - return $this->externalDealId; - } - /** - * @param Google_Service_AdExchangeBuyer_MarketplaceNote - */ - public function setNote(Google_Service_AdExchangeBuyer_MarketplaceNote $note) - { - $this->note = $note; - } - /** - * @return Google_Service_AdExchangeBuyer_MarketplaceNote - */ - public function getNote() - { - return $this->note; - } - public function setProposalRevisionNumber($proposalRevisionNumber) - { - $this->proposalRevisionNumber = $proposalRevisionNumber; - } - public function getProposalRevisionNumber() - { - return $this->proposalRevisionNumber; - } - public function setUpdateAction($updateAction) - { - $this->updateAction = $updateAction; - } - public function getUpdateAction() - { - return $this->updateAction; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII.php deleted file mode 100644 index 2a65e8a4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII.php +++ /dev/null @@ -1,1469 +0,0 @@ - - * Accesses the latest features for managing Authorized Buyers accounts, Real- - * Time Bidding configurations and auction metrics, and Marketplace programmatic - * deals.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_AdExchangeBuyerII extends Google_Service -{ - /** Manage your Ad Exchange buyer account configuration. */ - const ADEXCHANGE_BUYER = - "https://www.googleapis.com/auth/adexchange.buyer"; - - public $accounts_clients; - public $accounts_clients_invitations; - public $accounts_clients_users; - public $accounts_creatives; - public $accounts_creatives_dealAssociations; - public $accounts_finalizedProposals; - public $accounts_products; - public $accounts_proposals; - public $accounts_publisherProfiles; - public $bidders_accounts_filterSets; - public $bidders_accounts_filterSets_bidMetrics; - public $bidders_accounts_filterSets_bidResponseErrors; - public $bidders_accounts_filterSets_bidResponsesWithoutBids; - public $bidders_accounts_filterSets_filteredBidRequests; - public $bidders_accounts_filterSets_filteredBids; - public $bidders_accounts_filterSets_filteredBids_creatives; - public $bidders_accounts_filterSets_filteredBids_details; - public $bidders_accounts_filterSets_impressionMetrics; - public $bidders_accounts_filterSets_losingBids; - public $bidders_accounts_filterSets_nonBillableWinningBids; - public $bidders_filterSets; - public $bidders_filterSets_bidMetrics; - public $bidders_filterSets_bidResponseErrors; - public $bidders_filterSets_bidResponsesWithoutBids; - public $bidders_filterSets_filteredBidRequests; - public $bidders_filterSets_filteredBids; - public $bidders_filterSets_filteredBids_creatives; - public $bidders_filterSets_filteredBids_details; - public $bidders_filterSets_impressionMetrics; - public $bidders_filterSets_losingBids; - public $bidders_filterSets_nonBillableWinningBids; - - /** - * Constructs the internal representation of the AdExchangeBuyerII service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://adexchangebuyer.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v2beta1'; - $this->serviceName = 'adexchangebuyer2'; - - $this->accounts_clients = new Google_Service_AdExchangeBuyerII_Resource_AccountsClients( - $this, - $this->serviceName, - 'clients', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v2beta1/accounts/{accountId}/clients', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v2beta1/accounts/{accountId}/clients/{clientAccountId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clientAccountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2beta1/accounts/{accountId}/clients', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'partnerClientId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'update' => array( - 'path' => 'v2beta1/accounts/{accountId}/clients/{clientAccountId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clientAccountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->accounts_clients_invitations = new Google_Service_AdExchangeBuyerII_Resource_AccountsClientsInvitations( - $this, - $this->serviceName, - 'invitations', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v2beta1/accounts/{accountId}/clients/{clientAccountId}/invitations', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clientAccountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v2beta1/accounts/{accountId}/clients/{clientAccountId}/invitations/{invitationId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clientAccountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'invitationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2beta1/accounts/{accountId}/clients/{clientAccountId}/invitations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clientAccountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->accounts_clients_users = new Google_Service_AdExchangeBuyerII_Resource_AccountsClientsUsers( - $this, - $this->serviceName, - 'users', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v2beta1/accounts/{accountId}/clients/{clientAccountId}/users/{userId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clientAccountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2beta1/accounts/{accountId}/clients/{clientAccountId}/users', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clientAccountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'update' => array( - 'path' => 'v2beta1/accounts/{accountId}/clients/{clientAccountId}/users/{userId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clientAccountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->accounts_creatives = new Google_Service_AdExchangeBuyerII_Resource_AccountsCreatives( - $this, - $this->serviceName, - 'creatives', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v2beta1/accounts/{accountId}/creatives', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'duplicateIdMode' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'v2beta1/accounts/{accountId}/creatives/{creativeId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'creativeId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2beta1/accounts/{accountId}/creatives', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'query' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'stopWatching' => array( - 'path' => 'v2beta1/accounts/{accountId}/creatives/{creativeId}:stopWatching', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'creativeId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'v2beta1/accounts/{accountId}/creatives/{creativeId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'creativeId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'watch' => array( - 'path' => 'v2beta1/accounts/{accountId}/creatives/{creativeId}:watch', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'creativeId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->accounts_creatives_dealAssociations = new Google_Service_AdExchangeBuyerII_Resource_AccountsCreativesDealAssociations( - $this, - $this->serviceName, - 'dealAssociations', - array( - 'methods' => array( - 'add' => array( - 'path' => 'v2beta1/accounts/{accountId}/creatives/{creativeId}/dealAssociations:add', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'creativeId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2beta1/accounts/{accountId}/creatives/{creativeId}/dealAssociations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'creativeId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'query' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'remove' => array( - 'path' => 'v2beta1/accounts/{accountId}/creatives/{creativeId}/dealAssociations:remove', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'creativeId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->accounts_finalizedProposals = new Google_Service_AdExchangeBuyerII_Resource_AccountsFinalizedProposals( - $this, - $this->serviceName, - 'finalizedProposals', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v2beta1/accounts/{accountId}/finalizedProposals', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filterSyntax' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->accounts_products = new Google_Service_AdExchangeBuyerII_Resource_AccountsProducts( - $this, - $this->serviceName, - 'products', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v2beta1/accounts/{accountId}/products/{productId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'productId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2beta1/accounts/{accountId}/products', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->accounts_proposals = new Google_Service_AdExchangeBuyerII_Resource_AccountsProposals( - $this, - $this->serviceName, - 'proposals', - array( - 'methods' => array( - 'accept' => array( - 'path' => 'v2beta1/accounts/{accountId}/proposals/{proposalId}:accept', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'proposalId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'addNote' => array( - 'path' => 'v2beta1/accounts/{accountId}/proposals/{proposalId}:addNote', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'proposalId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'cancelNegotiation' => array( - 'path' => 'v2beta1/accounts/{accountId}/proposals/{proposalId}:cancelNegotiation', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'proposalId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'completeSetup' => array( - 'path' => 'v2beta1/accounts/{accountId}/proposals/{proposalId}:completeSetup', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'proposalId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'create' => array( - 'path' => 'v2beta1/accounts/{accountId}/proposals', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v2beta1/accounts/{accountId}/proposals/{proposalId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'proposalId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2beta1/accounts/{accountId}/proposals', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filterSyntax' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'pause' => array( - 'path' => 'v2beta1/accounts/{accountId}/proposals/{proposalId}:pause', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'proposalId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'resume' => array( - 'path' => 'v2beta1/accounts/{accountId}/proposals/{proposalId}:resume', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'proposalId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'v2beta1/accounts/{accountId}/proposals/{proposalId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'proposalId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->accounts_publisherProfiles = new Google_Service_AdExchangeBuyerII_Resource_AccountsPublisherProfiles( - $this, - $this->serviceName, - 'publisherProfiles', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v2beta1/accounts/{accountId}/publisherProfiles/{publisherProfileId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'publisherProfileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2beta1/accounts/{accountId}/publisherProfiles', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->bidders_accounts_filterSets = new Google_Service_AdExchangeBuyerII_Resource_BiddersAccountsFilterSets( - $this, - $this->serviceName, - 'filterSets', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v2beta1/{+ownerName}/filterSets', - 'httpMethod' => 'POST', - 'parameters' => array( - 'ownerName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'isTransient' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'delete' => array( - 'path' => 'v2beta1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v2beta1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2beta1/{+ownerName}/filterSets', - 'httpMethod' => 'GET', - 'parameters' => array( - 'ownerName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->bidders_accounts_filterSets_bidMetrics = new Google_Service_AdExchangeBuyerII_Resource_BiddersAccountsFilterSetsBidMetrics( - $this, - $this->serviceName, - 'bidMetrics', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v2beta1/{+filterSetName}/bidMetrics', - 'httpMethod' => 'GET', - 'parameters' => array( - 'filterSetName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->bidders_accounts_filterSets_bidResponseErrors = new Google_Service_AdExchangeBuyerII_Resource_BiddersAccountsFilterSetsBidResponseErrors( - $this, - $this->serviceName, - 'bidResponseErrors', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v2beta1/{+filterSetName}/bidResponseErrors', - 'httpMethod' => 'GET', - 'parameters' => array( - 'filterSetName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->bidders_accounts_filterSets_bidResponsesWithoutBids = new Google_Service_AdExchangeBuyerII_Resource_BiddersAccountsFilterSetsBidResponsesWithoutBids( - $this, - $this->serviceName, - 'bidResponsesWithoutBids', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v2beta1/{+filterSetName}/bidResponsesWithoutBids', - 'httpMethod' => 'GET', - 'parameters' => array( - 'filterSetName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->bidders_accounts_filterSets_filteredBidRequests = new Google_Service_AdExchangeBuyerII_Resource_BiddersAccountsFilterSetsFilteredBidRequests( - $this, - $this->serviceName, - 'filteredBidRequests', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v2beta1/{+filterSetName}/filteredBidRequests', - 'httpMethod' => 'GET', - 'parameters' => array( - 'filterSetName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->bidders_accounts_filterSets_filteredBids = new Google_Service_AdExchangeBuyerII_Resource_BiddersAccountsFilterSetsFilteredBids( - $this, - $this->serviceName, - 'filteredBids', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v2beta1/{+filterSetName}/filteredBids', - 'httpMethod' => 'GET', - 'parameters' => array( - 'filterSetName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->bidders_accounts_filterSets_filteredBids_creatives = new Google_Service_AdExchangeBuyerII_Resource_BiddersAccountsFilterSetsFilteredBidsCreatives( - $this, - $this->serviceName, - 'creatives', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v2beta1/{+filterSetName}/filteredBids/{creativeStatusId}/creatives', - 'httpMethod' => 'GET', - 'parameters' => array( - 'filterSetName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'creativeStatusId' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->bidders_accounts_filterSets_filteredBids_details = new Google_Service_AdExchangeBuyerII_Resource_BiddersAccountsFilterSetsFilteredBidsDetails( - $this, - $this->serviceName, - 'details', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v2beta1/{+filterSetName}/filteredBids/{creativeStatusId}/details', - 'httpMethod' => 'GET', - 'parameters' => array( - 'filterSetName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'creativeStatusId' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->bidders_accounts_filterSets_impressionMetrics = new Google_Service_AdExchangeBuyerII_Resource_BiddersAccountsFilterSetsImpressionMetrics( - $this, - $this->serviceName, - 'impressionMetrics', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v2beta1/{+filterSetName}/impressionMetrics', - 'httpMethod' => 'GET', - 'parameters' => array( - 'filterSetName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->bidders_accounts_filterSets_losingBids = new Google_Service_AdExchangeBuyerII_Resource_BiddersAccountsFilterSetsLosingBids( - $this, - $this->serviceName, - 'losingBids', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v2beta1/{+filterSetName}/losingBids', - 'httpMethod' => 'GET', - 'parameters' => array( - 'filterSetName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->bidders_accounts_filterSets_nonBillableWinningBids = new Google_Service_AdExchangeBuyerII_Resource_BiddersAccountsFilterSetsNonBillableWinningBids( - $this, - $this->serviceName, - 'nonBillableWinningBids', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v2beta1/{+filterSetName}/nonBillableWinningBids', - 'httpMethod' => 'GET', - 'parameters' => array( - 'filterSetName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->bidders_filterSets = new Google_Service_AdExchangeBuyerII_Resource_BiddersFilterSets( - $this, - $this->serviceName, - 'filterSets', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v2beta1/{+ownerName}/filterSets', - 'httpMethod' => 'POST', - 'parameters' => array( - 'ownerName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'isTransient' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'delete' => array( - 'path' => 'v2beta1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v2beta1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2beta1/{+ownerName}/filterSets', - 'httpMethod' => 'GET', - 'parameters' => array( - 'ownerName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->bidders_filterSets_bidMetrics = new Google_Service_AdExchangeBuyerII_Resource_BiddersFilterSetsBidMetrics( - $this, - $this->serviceName, - 'bidMetrics', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v2beta1/{+filterSetName}/bidMetrics', - 'httpMethod' => 'GET', - 'parameters' => array( - 'filterSetName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->bidders_filterSets_bidResponseErrors = new Google_Service_AdExchangeBuyerII_Resource_BiddersFilterSetsBidResponseErrors( - $this, - $this->serviceName, - 'bidResponseErrors', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v2beta1/{+filterSetName}/bidResponseErrors', - 'httpMethod' => 'GET', - 'parameters' => array( - 'filterSetName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->bidders_filterSets_bidResponsesWithoutBids = new Google_Service_AdExchangeBuyerII_Resource_BiddersFilterSetsBidResponsesWithoutBids( - $this, - $this->serviceName, - 'bidResponsesWithoutBids', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v2beta1/{+filterSetName}/bidResponsesWithoutBids', - 'httpMethod' => 'GET', - 'parameters' => array( - 'filterSetName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->bidders_filterSets_filteredBidRequests = new Google_Service_AdExchangeBuyerII_Resource_BiddersFilterSetsFilteredBidRequests( - $this, - $this->serviceName, - 'filteredBidRequests', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v2beta1/{+filterSetName}/filteredBidRequests', - 'httpMethod' => 'GET', - 'parameters' => array( - 'filterSetName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->bidders_filterSets_filteredBids = new Google_Service_AdExchangeBuyerII_Resource_BiddersFilterSetsFilteredBids( - $this, - $this->serviceName, - 'filteredBids', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v2beta1/{+filterSetName}/filteredBids', - 'httpMethod' => 'GET', - 'parameters' => array( - 'filterSetName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->bidders_filterSets_filteredBids_creatives = new Google_Service_AdExchangeBuyerII_Resource_BiddersFilterSetsFilteredBidsCreatives( - $this, - $this->serviceName, - 'creatives', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v2beta1/{+filterSetName}/filteredBids/{creativeStatusId}/creatives', - 'httpMethod' => 'GET', - 'parameters' => array( - 'filterSetName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'creativeStatusId' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->bidders_filterSets_filteredBids_details = new Google_Service_AdExchangeBuyerII_Resource_BiddersFilterSetsFilteredBidsDetails( - $this, - $this->serviceName, - 'details', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v2beta1/{+filterSetName}/filteredBids/{creativeStatusId}/details', - 'httpMethod' => 'GET', - 'parameters' => array( - 'filterSetName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'creativeStatusId' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->bidders_filterSets_impressionMetrics = new Google_Service_AdExchangeBuyerII_Resource_BiddersFilterSetsImpressionMetrics( - $this, - $this->serviceName, - 'impressionMetrics', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v2beta1/{+filterSetName}/impressionMetrics', - 'httpMethod' => 'GET', - 'parameters' => array( - 'filterSetName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->bidders_filterSets_losingBids = new Google_Service_AdExchangeBuyerII_Resource_BiddersFilterSetsLosingBids( - $this, - $this->serviceName, - 'losingBids', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v2beta1/{+filterSetName}/losingBids', - 'httpMethod' => 'GET', - 'parameters' => array( - 'filterSetName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->bidders_filterSets_nonBillableWinningBids = new Google_Service_AdExchangeBuyerII_Resource_BiddersFilterSetsNonBillableWinningBids( - $this, - $this->serviceName, - 'nonBillableWinningBids', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v2beta1/{+filterSetName}/nonBillableWinningBids', - 'httpMethod' => 'GET', - 'parameters' => array( - 'filterSetName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/AbsoluteDateRange.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/AbsoluteDateRange.php deleted file mode 100644 index 231d2161..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/AbsoluteDateRange.php +++ /dev/null @@ -1,53 +0,0 @@ -endDate = $endDate; - } - /** - * @return Google_Service_AdExchangeBuyerII_Date - */ - public function getEndDate() - { - return $this->endDate; - } - /** - * @param Google_Service_AdExchangeBuyerII_Date - */ - public function setStartDate(Google_Service_AdExchangeBuyerII_Date $startDate) - { - $this->startDate = $startDate; - } - /** - * @return Google_Service_AdExchangeBuyerII_Date - */ - public function getStartDate() - { - return $this->startDate; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/AcceptProposalRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/AcceptProposalRequest.php deleted file mode 100644 index 8f359f12..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/AcceptProposalRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -proposalRevision = $proposalRevision; - } - public function getProposalRevision() - { - return $this->proposalRevision; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/AdSize.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/AdSize.php deleted file mode 100644 index f73dbf55..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/AdSize.php +++ /dev/null @@ -1,48 +0,0 @@ -height = $height; - } - public function getHeight() - { - return $this->height; - } - public function setSizeType($sizeType) - { - $this->sizeType = $sizeType; - } - public function getSizeType() - { - return $this->sizeType; - } - public function setWidth($width) - { - $this->width = $width; - } - public function getWidth() - { - return $this->width; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/AdTechnologyProviders.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/AdTechnologyProviders.php deleted file mode 100644 index 7885c727..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/AdTechnologyProviders.php +++ /dev/null @@ -1,40 +0,0 @@ -detectedProviderIds = $detectedProviderIds; - } - public function getDetectedProviderIds() - { - return $this->detectedProviderIds; - } - public function setHasUnidentifiedProvider($hasUnidentifiedProvider) - { - $this->hasUnidentifiedProvider = $hasUnidentifiedProvider; - } - public function getHasUnidentifiedProvider() - { - return $this->hasUnidentifiedProvider; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/AddDealAssociationRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/AddDealAssociationRequest.php deleted file mode 100644 index abd8d9d9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/AddDealAssociationRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -association = $association; - } - /** - * @return Google_Service_AdExchangeBuyerII_CreativeDealAssociation - */ - public function getAssociation() - { - return $this->association; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/AddNoteRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/AddNoteRequest.php deleted file mode 100644 index 843d4dbd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/AddNoteRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -note = $note; - } - /** - * @return Google_Service_AdExchangeBuyerII_Note - */ - public function getNote() - { - return $this->note; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Adexchangebuyer2Empty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Adexchangebuyer2Empty.php deleted file mode 100644 index 04f820b6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Adexchangebuyer2Empty.php +++ /dev/null @@ -1,20 +0,0 @@ -appTypes = $appTypes; - } - public function getAppTypes() - { - return $this->appTypes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/AuctionContext.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/AuctionContext.php deleted file mode 100644 index 449391aa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/AuctionContext.php +++ /dev/null @@ -1,31 +0,0 @@ -auctionTypes = $auctionTypes; - } - public function getAuctionTypes() - { - return $this->auctionTypes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/BidMetricsRow.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/BidMetricsRow.php deleted file mode 100644 index 88fc917f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/BidMetricsRow.php +++ /dev/null @@ -1,133 +0,0 @@ -bids = $bids; - } - /** - * @return Google_Service_AdExchangeBuyerII_MetricValue - */ - public function getBids() - { - return $this->bids; - } - /** - * @param Google_Service_AdExchangeBuyerII_MetricValue - */ - public function setBidsInAuction(Google_Service_AdExchangeBuyerII_MetricValue $bidsInAuction) - { - $this->bidsInAuction = $bidsInAuction; - } - /** - * @return Google_Service_AdExchangeBuyerII_MetricValue - */ - public function getBidsInAuction() - { - return $this->bidsInAuction; - } - /** - * @param Google_Service_AdExchangeBuyerII_MetricValue - */ - public function setBilledImpressions(Google_Service_AdExchangeBuyerII_MetricValue $billedImpressions) - { - $this->billedImpressions = $billedImpressions; - } - /** - * @return Google_Service_AdExchangeBuyerII_MetricValue - */ - public function getBilledImpressions() - { - return $this->billedImpressions; - } - /** - * @param Google_Service_AdExchangeBuyerII_MetricValue - */ - public function setImpressionsWon(Google_Service_AdExchangeBuyerII_MetricValue $impressionsWon) - { - $this->impressionsWon = $impressionsWon; - } - /** - * @return Google_Service_AdExchangeBuyerII_MetricValue - */ - public function getImpressionsWon() - { - return $this->impressionsWon; - } - /** - * @param Google_Service_AdExchangeBuyerII_MetricValue - */ - public function setMeasurableImpressions(Google_Service_AdExchangeBuyerII_MetricValue $measurableImpressions) - { - $this->measurableImpressions = $measurableImpressions; - } - /** - * @return Google_Service_AdExchangeBuyerII_MetricValue - */ - public function getMeasurableImpressions() - { - return $this->measurableImpressions; - } - /** - * @param Google_Service_AdExchangeBuyerII_RowDimensions - */ - public function setRowDimensions(Google_Service_AdExchangeBuyerII_RowDimensions $rowDimensions) - { - $this->rowDimensions = $rowDimensions; - } - /** - * @return Google_Service_AdExchangeBuyerII_RowDimensions - */ - public function getRowDimensions() - { - return $this->rowDimensions; - } - /** - * @param Google_Service_AdExchangeBuyerII_MetricValue - */ - public function setViewableImpressions(Google_Service_AdExchangeBuyerII_MetricValue $viewableImpressions) - { - $this->viewableImpressions = $viewableImpressions; - } - /** - * @return Google_Service_AdExchangeBuyerII_MetricValue - */ - public function getViewableImpressions() - { - return $this->viewableImpressions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/BidResponseWithoutBidsStatusRow.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/BidResponseWithoutBidsStatusRow.php deleted file mode 100644 index 31d2bd78..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/BidResponseWithoutBidsStatusRow.php +++ /dev/null @@ -1,62 +0,0 @@ -impressionCount = $impressionCount; - } - /** - * @return Google_Service_AdExchangeBuyerII_MetricValue - */ - public function getImpressionCount() - { - return $this->impressionCount; - } - /** - * @param Google_Service_AdExchangeBuyerII_RowDimensions - */ - public function setRowDimensions(Google_Service_AdExchangeBuyerII_RowDimensions $rowDimensions) - { - $this->rowDimensions = $rowDimensions; - } - /** - * @return Google_Service_AdExchangeBuyerII_RowDimensions - */ - public function getRowDimensions() - { - return $this->rowDimensions; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Buyer.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Buyer.php deleted file mode 100644 index 4b32ab51..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Buyer.php +++ /dev/null @@ -1,30 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/CalloutStatusRow.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/CalloutStatusRow.php deleted file mode 100644 index 957a4ec1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/CalloutStatusRow.php +++ /dev/null @@ -1,62 +0,0 @@ -calloutStatusId = $calloutStatusId; - } - public function getCalloutStatusId() - { - return $this->calloutStatusId; - } - /** - * @param Google_Service_AdExchangeBuyerII_MetricValue - */ - public function setImpressionCount(Google_Service_AdExchangeBuyerII_MetricValue $impressionCount) - { - $this->impressionCount = $impressionCount; - } - /** - * @return Google_Service_AdExchangeBuyerII_MetricValue - */ - public function getImpressionCount() - { - return $this->impressionCount; - } - /** - * @param Google_Service_AdExchangeBuyerII_RowDimensions - */ - public function setRowDimensions(Google_Service_AdExchangeBuyerII_RowDimensions $rowDimensions) - { - $this->rowDimensions = $rowDimensions; - } - /** - * @return Google_Service_AdExchangeBuyerII_RowDimensions - */ - public function getRowDimensions() - { - return $this->rowDimensions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/CancelNegotiationRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/CancelNegotiationRequest.php deleted file mode 100644 index 122f8641..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/CancelNegotiationRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -clientAccountId = $clientAccountId; - } - public function getClientAccountId() - { - return $this->clientAccountId; - } - public function setClientName($clientName) - { - $this->clientName = $clientName; - } - public function getClientName() - { - return $this->clientName; - } - public function setEntityId($entityId) - { - $this->entityId = $entityId; - } - public function getEntityId() - { - return $this->entityId; - } - public function setEntityName($entityName) - { - $this->entityName = $entityName; - } - public function getEntityName() - { - return $this->entityName; - } - public function setEntityType($entityType) - { - $this->entityType = $entityType; - } - public function getEntityType() - { - return $this->entityType; - } - public function setPartnerClientId($partnerClientId) - { - $this->partnerClientId = $partnerClientId; - } - public function getPartnerClientId() - { - return $this->partnerClientId; - } - public function setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setVisibleToSeller($visibleToSeller) - { - $this->visibleToSeller = $visibleToSeller; - } - public function getVisibleToSeller() - { - return $this->visibleToSeller; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ClientUser.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ClientUser.php deleted file mode 100644 index d9ca3d99..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ClientUser.php +++ /dev/null @@ -1,57 +0,0 @@ -clientAccountId = $clientAccountId; - } - public function getClientAccountId() - { - return $this->clientAccountId; - } - public function setEmail($email) - { - $this->email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setUserId($userId) - { - $this->userId = $userId; - } - public function getUserId() - { - return $this->userId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ClientUserInvitation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ClientUserInvitation.php deleted file mode 100644 index 05aeae9e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ClientUserInvitation.php +++ /dev/null @@ -1,48 +0,0 @@ -clientAccountId = $clientAccountId; - } - public function getClientAccountId() - { - return $this->clientAccountId; - } - public function setEmail($email) - { - $this->email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setInvitationId($invitationId) - { - $this->invitationId = $invitationId; - } - public function getInvitationId() - { - return $this->invitationId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/CompleteSetupRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/CompleteSetupRequest.php deleted file mode 100644 index edca546b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/CompleteSetupRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Correction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Correction.php deleted file mode 100644 index ca307b29..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Correction.php +++ /dev/null @@ -1,56 +0,0 @@ -contexts = $contexts; - } - /** - * @return Google_Service_AdExchangeBuyerII_ServingContext - */ - public function getContexts() - { - return $this->contexts; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Creative.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Creative.php deleted file mode 100644 index 16ba184d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Creative.php +++ /dev/null @@ -1,298 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setAdChoicesDestinationUrl($adChoicesDestinationUrl) - { - $this->adChoicesDestinationUrl = $adChoicesDestinationUrl; - } - public function getAdChoicesDestinationUrl() - { - return $this->adChoicesDestinationUrl; - } - /** - * @param Google_Service_AdExchangeBuyerII_AdTechnologyProviders - */ - public function setAdTechnologyProviders(Google_Service_AdExchangeBuyerII_AdTechnologyProviders $adTechnologyProviders) - { - $this->adTechnologyProviders = $adTechnologyProviders; - } - /** - * @return Google_Service_AdExchangeBuyerII_AdTechnologyProviders - */ - public function getAdTechnologyProviders() - { - return $this->adTechnologyProviders; - } - public function setAdvertiserName($advertiserName) - { - $this->advertiserName = $advertiserName; - } - public function getAdvertiserName() - { - return $this->advertiserName; - } - public function setAgencyId($agencyId) - { - $this->agencyId = $agencyId; - } - public function getAgencyId() - { - return $this->agencyId; - } - public function setApiUpdateTime($apiUpdateTime) - { - $this->apiUpdateTime = $apiUpdateTime; - } - public function getApiUpdateTime() - { - return $this->apiUpdateTime; - } - public function setAttributes($attributes) - { - $this->attributes = $attributes; - } - public function getAttributes() - { - return $this->attributes; - } - public function setClickThroughUrls($clickThroughUrls) - { - $this->clickThroughUrls = $clickThroughUrls; - } - public function getClickThroughUrls() - { - return $this->clickThroughUrls; - } - /** - * @param Google_Service_AdExchangeBuyerII_Correction - */ - public function setCorrections($corrections) - { - $this->corrections = $corrections; - } - /** - * @return Google_Service_AdExchangeBuyerII_Correction - */ - public function getCorrections() - { - return $this->corrections; - } - public function setCreativeId($creativeId) - { - $this->creativeId = $creativeId; - } - public function getCreativeId() - { - return $this->creativeId; - } - public function setDealsStatus($dealsStatus) - { - $this->dealsStatus = $dealsStatus; - } - public function getDealsStatus() - { - return $this->dealsStatus; - } - public function setDeclaredClickThroughUrls($declaredClickThroughUrls) - { - $this->declaredClickThroughUrls = $declaredClickThroughUrls; - } - public function getDeclaredClickThroughUrls() - { - return $this->declaredClickThroughUrls; - } - public function setDetectedAdvertiserIds($detectedAdvertiserIds) - { - $this->detectedAdvertiserIds = $detectedAdvertiserIds; - } - public function getDetectedAdvertiserIds() - { - return $this->detectedAdvertiserIds; - } - public function setDetectedDomains($detectedDomains) - { - $this->detectedDomains = $detectedDomains; - } - public function getDetectedDomains() - { - return $this->detectedDomains; - } - public function setDetectedLanguages($detectedLanguages) - { - $this->detectedLanguages = $detectedLanguages; - } - public function getDetectedLanguages() - { - return $this->detectedLanguages; - } - public function setDetectedProductCategories($detectedProductCategories) - { - $this->detectedProductCategories = $detectedProductCategories; - } - public function getDetectedProductCategories() - { - return $this->detectedProductCategories; - } - public function setDetectedSensitiveCategories($detectedSensitiveCategories) - { - $this->detectedSensitiveCategories = $detectedSensitiveCategories; - } - public function getDetectedSensitiveCategories() - { - return $this->detectedSensitiveCategories; - } - /** - * @param Google_Service_AdExchangeBuyerII_HtmlContent - */ - public function setHtml(Google_Service_AdExchangeBuyerII_HtmlContent $html) - { - $this->html = $html; - } - /** - * @return Google_Service_AdExchangeBuyerII_HtmlContent - */ - public function getHtml() - { - return $this->html; - } - public function setImpressionTrackingUrls($impressionTrackingUrls) - { - $this->impressionTrackingUrls = $impressionTrackingUrls; - } - public function getImpressionTrackingUrls() - { - return $this->impressionTrackingUrls; - } - /** - * @param Google_Service_AdExchangeBuyerII_NativeContent - */ - public function setNative(Google_Service_AdExchangeBuyerII_NativeContent $native) - { - $this->native = $native; - } - /** - * @return Google_Service_AdExchangeBuyerII_NativeContent - */ - public function getNative() - { - return $this->native; - } - public function setOpenAuctionStatus($openAuctionStatus) - { - $this->openAuctionStatus = $openAuctionStatus; - } - public function getOpenAuctionStatus() - { - return $this->openAuctionStatus; - } - public function setRestrictedCategories($restrictedCategories) - { - $this->restrictedCategories = $restrictedCategories; - } - public function getRestrictedCategories() - { - return $this->restrictedCategories; - } - /** - * @param Google_Service_AdExchangeBuyerII_ServingRestriction - */ - public function setServingRestrictions($servingRestrictions) - { - $this->servingRestrictions = $servingRestrictions; - } - /** - * @return Google_Service_AdExchangeBuyerII_ServingRestriction - */ - public function getServingRestrictions() - { - return $this->servingRestrictions; - } - public function setVendorIds($vendorIds) - { - $this->vendorIds = $vendorIds; - } - public function getVendorIds() - { - return $this->vendorIds; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } - /** - * @param Google_Service_AdExchangeBuyerII_VideoContent - */ - public function setVideo(Google_Service_AdExchangeBuyerII_VideoContent $video) - { - $this->video = $video; - } - /** - * @return Google_Service_AdExchangeBuyerII_VideoContent - */ - public function getVideo() - { - return $this->video; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/CreativeDealAssociation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/CreativeDealAssociation.php deleted file mode 100644 index 0c2f5841..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/CreativeDealAssociation.php +++ /dev/null @@ -1,48 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setCreativeId($creativeId) - { - $this->creativeId = $creativeId; - } - public function getCreativeId() - { - return $this->creativeId; - } - public function setDealsId($dealsId) - { - $this->dealsId = $dealsId; - } - public function getDealsId() - { - return $this->dealsId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/CreativeRestrictions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/CreativeRestrictions.php deleted file mode 100644 index fbbdc5a9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/CreativeRestrictions.php +++ /dev/null @@ -1,56 +0,0 @@ -creativeFormat = $creativeFormat; - } - public function getCreativeFormat() - { - return $this->creativeFormat; - } - /** - * @param Google_Service_AdExchangeBuyerII_CreativeSpecification - */ - public function setCreativeSpecifications($creativeSpecifications) - { - $this->creativeSpecifications = $creativeSpecifications; - } - /** - * @return Google_Service_AdExchangeBuyerII_CreativeSpecification - */ - public function getCreativeSpecifications() - { - return $this->creativeSpecifications; - } - public function setSkippableAdType($skippableAdType) - { - $this->skippableAdType = $skippableAdType; - } - public function getSkippableAdType() - { - return $this->skippableAdType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/CreativeSize.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/CreativeSize.php deleted file mode 100644 index f09bbaf9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/CreativeSize.php +++ /dev/null @@ -1,90 +0,0 @@ -allowedFormats = $allowedFormats; - } - public function getAllowedFormats() - { - return $this->allowedFormats; - } - /** - * @param Google_Service_AdExchangeBuyerII_Size - */ - public function setCompanionSizes($companionSizes) - { - $this->companionSizes = $companionSizes; - } - /** - * @return Google_Service_AdExchangeBuyerII_Size - */ - public function getCompanionSizes() - { - return $this->companionSizes; - } - public function setCreativeSizeType($creativeSizeType) - { - $this->creativeSizeType = $creativeSizeType; - } - public function getCreativeSizeType() - { - return $this->creativeSizeType; - } - public function setNativeTemplate($nativeTemplate) - { - $this->nativeTemplate = $nativeTemplate; - } - public function getNativeTemplate() - { - return $this->nativeTemplate; - } - /** - * @param Google_Service_AdExchangeBuyerII_Size - */ - public function setSize(Google_Service_AdExchangeBuyerII_Size $size) - { - $this->size = $size; - } - /** - * @return Google_Service_AdExchangeBuyerII_Size - */ - public function getSize() - { - return $this->size; - } - public function setSkippableAdType($skippableAdType) - { - $this->skippableAdType = $skippableAdType; - } - public function getSkippableAdType() - { - return $this->skippableAdType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/CreativeSpecification.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/CreativeSpecification.php deleted file mode 100644 index 400703c1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/CreativeSpecification.php +++ /dev/null @@ -1,54 +0,0 @@ -creativeCompanionSizes = $creativeCompanionSizes; - } - /** - * @return Google_Service_AdExchangeBuyerII_AdSize - */ - public function getCreativeCompanionSizes() - { - return $this->creativeCompanionSizes; - } - /** - * @param Google_Service_AdExchangeBuyerII_AdSize - */ - public function setCreativeSize(Google_Service_AdExchangeBuyerII_AdSize $creativeSize) - { - $this->creativeSize = $creativeSize; - } - /** - * @return Google_Service_AdExchangeBuyerII_AdSize - */ - public function getCreativeSize() - { - return $this->creativeSize; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/CreativeStatusRow.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/CreativeStatusRow.php deleted file mode 100644 index 341fcc56..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/CreativeStatusRow.php +++ /dev/null @@ -1,62 +0,0 @@ -bidCount = $bidCount; - } - /** - * @return Google_Service_AdExchangeBuyerII_MetricValue - */ - public function getBidCount() - { - return $this->bidCount; - } - public function setCreativeStatusId($creativeStatusId) - { - $this->creativeStatusId = $creativeStatusId; - } - public function getCreativeStatusId() - { - return $this->creativeStatusId; - } - /** - * @param Google_Service_AdExchangeBuyerII_RowDimensions - */ - public function setRowDimensions(Google_Service_AdExchangeBuyerII_RowDimensions $rowDimensions) - { - $this->rowDimensions = $rowDimensions; - } - /** - * @return Google_Service_AdExchangeBuyerII_RowDimensions - */ - public function getRowDimensions() - { - return $this->rowDimensions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/CriteriaTargeting.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/CriteriaTargeting.php deleted file mode 100644 index 4e429cfa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/CriteriaTargeting.php +++ /dev/null @@ -1,40 +0,0 @@ -excludedCriteriaIds = $excludedCriteriaIds; - } - public function getExcludedCriteriaIds() - { - return $this->excludedCriteriaIds; - } - public function setTargetedCriteriaIds($targetedCriteriaIds) - { - $this->targetedCriteriaIds = $targetedCriteriaIds; - } - public function getTargetedCriteriaIds() - { - return $this->targetedCriteriaIds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Date.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Date.php deleted file mode 100644 index 60a0dc8e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Date.php +++ /dev/null @@ -1,48 +0,0 @@ -day = $day; - } - public function getDay() - { - return $this->day; - } - public function setMonth($month) - { - $this->month = $month; - } - public function getMonth() - { - return $this->month; - } - public function setYear($year) - { - $this->year = $year; - } - public function getYear() - { - return $this->year; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/DayPart.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/DayPart.php deleted file mode 100644 index 1f81b754..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/DayPart.php +++ /dev/null @@ -1,62 +0,0 @@ -dayOfWeek = $dayOfWeek; - } - public function getDayOfWeek() - { - return $this->dayOfWeek; - } - /** - * @param Google_Service_AdExchangeBuyerII_TimeOfDay - */ - public function setEndTime(Google_Service_AdExchangeBuyerII_TimeOfDay $endTime) - { - $this->endTime = $endTime; - } - /** - * @return Google_Service_AdExchangeBuyerII_TimeOfDay - */ - public function getEndTime() - { - return $this->endTime; - } - /** - * @param Google_Service_AdExchangeBuyerII_TimeOfDay - */ - public function setStartTime(Google_Service_AdExchangeBuyerII_TimeOfDay $startTime) - { - $this->startTime = $startTime; - } - /** - * @return Google_Service_AdExchangeBuyerII_TimeOfDay - */ - public function getStartTime() - { - return $this->startTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/DayPartTargeting.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/DayPartTargeting.php deleted file mode 100644 index f3d28564..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/DayPartTargeting.php +++ /dev/null @@ -1,47 +0,0 @@ -dayParts = $dayParts; - } - /** - * @return Google_Service_AdExchangeBuyerII_DayPart - */ - public function getDayParts() - { - return $this->dayParts; - } - public function setTimeZoneType($timeZoneType) - { - $this->timeZoneType = $timeZoneType; - } - public function getTimeZoneType() - { - return $this->timeZoneType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Deal.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Deal.php deleted file mode 100644 index 1dc032ed..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Deal.php +++ /dev/null @@ -1,303 +0,0 @@ -availableEndTime = $availableEndTime; - } - public function getAvailableEndTime() - { - return $this->availableEndTime; - } - public function setAvailableStartTime($availableStartTime) - { - $this->availableStartTime = $availableStartTime; - } - public function getAvailableStartTime() - { - return $this->availableStartTime; - } - /** - * @param Google_Service_AdExchangeBuyerII_PrivateData - */ - public function setBuyerPrivateData(Google_Service_AdExchangeBuyerII_PrivateData $buyerPrivateData) - { - $this->buyerPrivateData = $buyerPrivateData; - } - /** - * @return Google_Service_AdExchangeBuyerII_PrivateData - */ - public function getBuyerPrivateData() - { - return $this->buyerPrivateData; - } - public function setCreateProductId($createProductId) - { - $this->createProductId = $createProductId; - } - public function getCreateProductId() - { - return $this->createProductId; - } - public function setCreateProductRevision($createProductRevision) - { - $this->createProductRevision = $createProductRevision; - } - public function getCreateProductRevision() - { - return $this->createProductRevision; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setCreativePreApprovalPolicy($creativePreApprovalPolicy) - { - $this->creativePreApprovalPolicy = $creativePreApprovalPolicy; - } - public function getCreativePreApprovalPolicy() - { - return $this->creativePreApprovalPolicy; - } - /** - * @param Google_Service_AdExchangeBuyerII_CreativeRestrictions - */ - public function setCreativeRestrictions(Google_Service_AdExchangeBuyerII_CreativeRestrictions $creativeRestrictions) - { - $this->creativeRestrictions = $creativeRestrictions; - } - /** - * @return Google_Service_AdExchangeBuyerII_CreativeRestrictions - */ - public function getCreativeRestrictions() - { - return $this->creativeRestrictions; - } - public function setCreativeSafeFrameCompatibility($creativeSafeFrameCompatibility) - { - $this->creativeSafeFrameCompatibility = $creativeSafeFrameCompatibility; - } - public function getCreativeSafeFrameCompatibility() - { - return $this->creativeSafeFrameCompatibility; - } - public function setDealId($dealId) - { - $this->dealId = $dealId; - } - public function getDealId() - { - return $this->dealId; - } - /** - * @param Google_Service_AdExchangeBuyerII_DealServingMetadata - */ - public function setDealServingMetadata(Google_Service_AdExchangeBuyerII_DealServingMetadata $dealServingMetadata) - { - $this->dealServingMetadata = $dealServingMetadata; - } - /** - * @return Google_Service_AdExchangeBuyerII_DealServingMetadata - */ - public function getDealServingMetadata() - { - return $this->dealServingMetadata; - } - /** - * @param Google_Service_AdExchangeBuyerII_DealTerms - */ - public function setDealTerms(Google_Service_AdExchangeBuyerII_DealTerms $dealTerms) - { - $this->dealTerms = $dealTerms; - } - /** - * @return Google_Service_AdExchangeBuyerII_DealTerms - */ - public function getDealTerms() - { - return $this->dealTerms; - } - /** - * @param Google_Service_AdExchangeBuyerII_DeliveryControl - */ - public function setDeliveryControl(Google_Service_AdExchangeBuyerII_DeliveryControl $deliveryControl) - { - $this->deliveryControl = $deliveryControl; - } - /** - * @return Google_Service_AdExchangeBuyerII_DeliveryControl - */ - public function getDeliveryControl() - { - return $this->deliveryControl; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setExternalDealId($externalDealId) - { - $this->externalDealId = $externalDealId; - } - public function getExternalDealId() - { - return $this->externalDealId; - } - public function setIsSetupComplete($isSetupComplete) - { - $this->isSetupComplete = $isSetupComplete; - } - public function getIsSetupComplete() - { - return $this->isSetupComplete; - } - public function setProgrammaticCreativeSource($programmaticCreativeSource) - { - $this->programmaticCreativeSource = $programmaticCreativeSource; - } - public function getProgrammaticCreativeSource() - { - return $this->programmaticCreativeSource; - } - public function setProposalId($proposalId) - { - $this->proposalId = $proposalId; - } - public function getProposalId() - { - return $this->proposalId; - } - /** - * @param Google_Service_AdExchangeBuyerII_ContactInformation - */ - public function setSellerContacts($sellerContacts) - { - $this->sellerContacts = $sellerContacts; - } - /** - * @return Google_Service_AdExchangeBuyerII_ContactInformation - */ - public function getSellerContacts() - { - return $this->sellerContacts; - } - public function setSyndicationProduct($syndicationProduct) - { - $this->syndicationProduct = $syndicationProduct; - } - public function getSyndicationProduct() - { - return $this->syndicationProduct; - } - /** - * @param Google_Service_AdExchangeBuyerII_MarketplaceTargeting - */ - public function setTargeting(Google_Service_AdExchangeBuyerII_MarketplaceTargeting $targeting) - { - $this->targeting = $targeting; - } - /** - * @return Google_Service_AdExchangeBuyerII_MarketplaceTargeting - */ - public function getTargeting() - { - return $this->targeting; - } - /** - * @param Google_Service_AdExchangeBuyerII_TargetingCriteria - */ - public function setTargetingCriterion($targetingCriterion) - { - $this->targetingCriterion = $targetingCriterion; - } - /** - * @return Google_Service_AdExchangeBuyerII_TargetingCriteria - */ - public function getTargetingCriterion() - { - return $this->targetingCriterion; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } - public function setWebPropertyCode($webPropertyCode) - { - $this->webPropertyCode = $webPropertyCode; - } - public function getWebPropertyCode() - { - return $this->webPropertyCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/DealPauseStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/DealPauseStatus.php deleted file mode 100644 index f0953eab..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/DealPauseStatus.php +++ /dev/null @@ -1,66 +0,0 @@ -buyerPauseReason = $buyerPauseReason; - } - public function getBuyerPauseReason() - { - return $this->buyerPauseReason; - } - public function setFirstPausedBy($firstPausedBy) - { - $this->firstPausedBy = $firstPausedBy; - } - public function getFirstPausedBy() - { - return $this->firstPausedBy; - } - public function setHasBuyerPaused($hasBuyerPaused) - { - $this->hasBuyerPaused = $hasBuyerPaused; - } - public function getHasBuyerPaused() - { - return $this->hasBuyerPaused; - } - public function setHasSellerPaused($hasSellerPaused) - { - $this->hasSellerPaused = $hasSellerPaused; - } - public function getHasSellerPaused() - { - return $this->hasSellerPaused; - } - public function setSellerPauseReason($sellerPauseReason) - { - $this->sellerPauseReason = $sellerPauseReason; - } - public function getSellerPauseReason() - { - return $this->sellerPauseReason; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/DealServingMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/DealServingMetadata.php deleted file mode 100644 index 5e224f61..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/DealServingMetadata.php +++ /dev/null @@ -1,37 +0,0 @@ -dealPauseStatus = $dealPauseStatus; - } - /** - * @return Google_Service_AdExchangeBuyerII_DealPauseStatus - */ - public function getDealPauseStatus() - { - return $this->dealPauseStatus; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/DealTerms.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/DealTerms.php deleted file mode 100644 index be63d4ef..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/DealTerms.php +++ /dev/null @@ -1,121 +0,0 @@ -brandingType = $brandingType; - } - public function getBrandingType() - { - return $this->brandingType; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - /** - * @param Google_Service_AdExchangeBuyerII_Price - */ - public function setEstimatedGrossSpend(Google_Service_AdExchangeBuyerII_Price $estimatedGrossSpend) - { - $this->estimatedGrossSpend = $estimatedGrossSpend; - } - /** - * @return Google_Service_AdExchangeBuyerII_Price - */ - public function getEstimatedGrossSpend() - { - return $this->estimatedGrossSpend; - } - public function setEstimatedImpressionsPerDay($estimatedImpressionsPerDay) - { - $this->estimatedImpressionsPerDay = $estimatedImpressionsPerDay; - } - public function getEstimatedImpressionsPerDay() - { - return $this->estimatedImpressionsPerDay; - } - /** - * @param Google_Service_AdExchangeBuyerII_GuaranteedFixedPriceTerms - */ - public function setGuaranteedFixedPriceTerms(Google_Service_AdExchangeBuyerII_GuaranteedFixedPriceTerms $guaranteedFixedPriceTerms) - { - $this->guaranteedFixedPriceTerms = $guaranteedFixedPriceTerms; - } - /** - * @return Google_Service_AdExchangeBuyerII_GuaranteedFixedPriceTerms - */ - public function getGuaranteedFixedPriceTerms() - { - return $this->guaranteedFixedPriceTerms; - } - /** - * @param Google_Service_AdExchangeBuyerII_NonGuaranteedAuctionTerms - */ - public function setNonGuaranteedAuctionTerms(Google_Service_AdExchangeBuyerII_NonGuaranteedAuctionTerms $nonGuaranteedAuctionTerms) - { - $this->nonGuaranteedAuctionTerms = $nonGuaranteedAuctionTerms; - } - /** - * @return Google_Service_AdExchangeBuyerII_NonGuaranteedAuctionTerms - */ - public function getNonGuaranteedAuctionTerms() - { - return $this->nonGuaranteedAuctionTerms; - } - /** - * @param Google_Service_AdExchangeBuyerII_NonGuaranteedFixedPriceTerms - */ - public function setNonGuaranteedFixedPriceTerms(Google_Service_AdExchangeBuyerII_NonGuaranteedFixedPriceTerms $nonGuaranteedFixedPriceTerms) - { - $this->nonGuaranteedFixedPriceTerms = $nonGuaranteedFixedPriceTerms; - } - /** - * @return Google_Service_AdExchangeBuyerII_NonGuaranteedFixedPriceTerms - */ - public function getNonGuaranteedFixedPriceTerms() - { - return $this->nonGuaranteedFixedPriceTerms; - } - public function setSellerTimeZone($sellerTimeZone) - { - $this->sellerTimeZone = $sellerTimeZone; - } - public function getSellerTimeZone() - { - return $this->sellerTimeZone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/DeliveryControl.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/DeliveryControl.php deleted file mode 100644 index 7d986981..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/DeliveryControl.php +++ /dev/null @@ -1,56 +0,0 @@ -creativeBlockingLevel = $creativeBlockingLevel; - } - public function getCreativeBlockingLevel() - { - return $this->creativeBlockingLevel; - } - public function setDeliveryRateType($deliveryRateType) - { - $this->deliveryRateType = $deliveryRateType; - } - public function getDeliveryRateType() - { - return $this->deliveryRateType; - } - /** - * @param Google_Service_AdExchangeBuyerII_FrequencyCap - */ - public function setFrequencyCaps($frequencyCaps) - { - $this->frequencyCaps = $frequencyCaps; - } - /** - * @return Google_Service_AdExchangeBuyerII_FrequencyCap - */ - public function getFrequencyCaps() - { - return $this->frequencyCaps; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Disapproval.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Disapproval.php deleted file mode 100644 index 3bec7c49..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Disapproval.php +++ /dev/null @@ -1,40 +0,0 @@ -details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setReason($reason) - { - $this->reason = $reason; - } - public function getReason() - { - return $this->reason; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/FilterSet.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/FilterSet.php deleted file mode 100644 index 7eda31b4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/FilterSet.php +++ /dev/null @@ -1,160 +0,0 @@ -absoluteDateRange = $absoluteDateRange; - } - /** - * @return Google_Service_AdExchangeBuyerII_AbsoluteDateRange - */ - public function getAbsoluteDateRange() - { - return $this->absoluteDateRange; - } - public function setBreakdownDimensions($breakdownDimensions) - { - $this->breakdownDimensions = $breakdownDimensions; - } - public function getBreakdownDimensions() - { - return $this->breakdownDimensions; - } - public function setCreativeId($creativeId) - { - $this->creativeId = $creativeId; - } - public function getCreativeId() - { - return $this->creativeId; - } - public function setDealId($dealId) - { - $this->dealId = $dealId; - } - public function getDealId() - { - return $this->dealId; - } - public function setEnvironment($environment) - { - $this->environment = $environment; - } - public function getEnvironment() - { - return $this->environment; - } - public function setFormats($formats) - { - $this->formats = $formats; - } - public function getFormats() - { - return $this->formats; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPlatforms($platforms) - { - $this->platforms = $platforms; - } - public function getPlatforms() - { - return $this->platforms; - } - public function setPublisherIdentifiers($publisherIdentifiers) - { - $this->publisherIdentifiers = $publisherIdentifiers; - } - public function getPublisherIdentifiers() - { - return $this->publisherIdentifiers; - } - /** - * @param Google_Service_AdExchangeBuyerII_RealtimeTimeRange - */ - public function setRealtimeTimeRange(Google_Service_AdExchangeBuyerII_RealtimeTimeRange $realtimeTimeRange) - { - $this->realtimeTimeRange = $realtimeTimeRange; - } - /** - * @return Google_Service_AdExchangeBuyerII_RealtimeTimeRange - */ - public function getRealtimeTimeRange() - { - return $this->realtimeTimeRange; - } - /** - * @param Google_Service_AdExchangeBuyerII_RelativeDateRange - */ - public function setRelativeDateRange(Google_Service_AdExchangeBuyerII_RelativeDateRange $relativeDateRange) - { - $this->relativeDateRange = $relativeDateRange; - } - /** - * @return Google_Service_AdExchangeBuyerII_RelativeDateRange - */ - public function getRelativeDateRange() - { - return $this->relativeDateRange; - } - public function setSellerNetworkIds($sellerNetworkIds) - { - $this->sellerNetworkIds = $sellerNetworkIds; - } - public function getSellerNetworkIds() - { - return $this->sellerNetworkIds; - } - public function setTimeSeriesGranularity($timeSeriesGranularity) - { - $this->timeSeriesGranularity = $timeSeriesGranularity; - } - public function getTimeSeriesGranularity() - { - return $this->timeSeriesGranularity; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/FilteredBidCreativeRow.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/FilteredBidCreativeRow.php deleted file mode 100644 index ff09a79c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/FilteredBidCreativeRow.php +++ /dev/null @@ -1,62 +0,0 @@ -bidCount = $bidCount; - } - /** - * @return Google_Service_AdExchangeBuyerII_MetricValue - */ - public function getBidCount() - { - return $this->bidCount; - } - public function setCreativeId($creativeId) - { - $this->creativeId = $creativeId; - } - public function getCreativeId() - { - return $this->creativeId; - } - /** - * @param Google_Service_AdExchangeBuyerII_RowDimensions - */ - public function setRowDimensions(Google_Service_AdExchangeBuyerII_RowDimensions $rowDimensions) - { - $this->rowDimensions = $rowDimensions; - } - /** - * @return Google_Service_AdExchangeBuyerII_RowDimensions - */ - public function getRowDimensions() - { - return $this->rowDimensions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/FilteredBidDetailRow.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/FilteredBidDetailRow.php deleted file mode 100644 index 89a0470f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/FilteredBidDetailRow.php +++ /dev/null @@ -1,62 +0,0 @@ -bidCount = $bidCount; - } - /** - * @return Google_Service_AdExchangeBuyerII_MetricValue - */ - public function getBidCount() - { - return $this->bidCount; - } - public function setDetailId($detailId) - { - $this->detailId = $detailId; - } - public function getDetailId() - { - return $this->detailId; - } - /** - * @param Google_Service_AdExchangeBuyerII_RowDimensions - */ - public function setRowDimensions(Google_Service_AdExchangeBuyerII_RowDimensions $rowDimensions) - { - $this->rowDimensions = $rowDimensions; - } - /** - * @return Google_Service_AdExchangeBuyerII_RowDimensions - */ - public function getRowDimensions() - { - return $this->rowDimensions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/FirstPartyMobileApplicationTargeting.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/FirstPartyMobileApplicationTargeting.php deleted file mode 100644 index a3645535..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/FirstPartyMobileApplicationTargeting.php +++ /dev/null @@ -1,40 +0,0 @@ -excludedAppIds = $excludedAppIds; - } - public function getExcludedAppIds() - { - return $this->excludedAppIds; - } - public function setTargetedAppIds($targetedAppIds) - { - $this->targetedAppIds = $targetedAppIds; - } - public function getTargetedAppIds() - { - return $this->targetedAppIds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/FrequencyCap.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/FrequencyCap.php deleted file mode 100644 index f5bf1b60..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/FrequencyCap.php +++ /dev/null @@ -1,48 +0,0 @@ -maxImpressions = $maxImpressions; - } - public function getMaxImpressions() - { - return $this->maxImpressions; - } - public function setNumTimeUnits($numTimeUnits) - { - $this->numTimeUnits = $numTimeUnits; - } - public function getNumTimeUnits() - { - return $this->numTimeUnits; - } - public function setTimeUnitType($timeUnitType) - { - $this->timeUnitType = $timeUnitType; - } - public function getTimeUnitType() - { - return $this->timeUnitType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/GuaranteedFixedPriceTerms.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/GuaranteedFixedPriceTerms.php deleted file mode 100644 index 8e938f6c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/GuaranteedFixedPriceTerms.php +++ /dev/null @@ -1,65 +0,0 @@ -fixedPrices = $fixedPrices; - } - /** - * @return Google_Service_AdExchangeBuyerII_PricePerBuyer - */ - public function getFixedPrices() - { - return $this->fixedPrices; - } - public function setGuaranteedImpressions($guaranteedImpressions) - { - $this->guaranteedImpressions = $guaranteedImpressions; - } - public function getGuaranteedImpressions() - { - return $this->guaranteedImpressions; - } - public function setGuaranteedLooks($guaranteedLooks) - { - $this->guaranteedLooks = $guaranteedLooks; - } - public function getGuaranteedLooks() - { - return $this->guaranteedLooks; - } - public function setMinimumDailyLooks($minimumDailyLooks) - { - $this->minimumDailyLooks = $minimumDailyLooks; - } - public function getMinimumDailyLooks() - { - return $this->minimumDailyLooks; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/HtmlContent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/HtmlContent.php deleted file mode 100644 index c066b0ad..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/HtmlContent.php +++ /dev/null @@ -1,48 +0,0 @@ -height = $height; - } - public function getHeight() - { - return $this->height; - } - public function setSnippet($snippet) - { - $this->snippet = $snippet; - } - public function getSnippet() - { - return $this->snippet; - } - public function setWidth($width) - { - $this->width = $width; - } - public function getWidth() - { - return $this->width; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Image.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Image.php deleted file mode 100644 index a9ace33c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Image.php +++ /dev/null @@ -1,48 +0,0 @@ -height = $height; - } - public function getHeight() - { - return $this->height; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } - public function setWidth($width) - { - $this->width = $width; - } - public function getWidth() - { - return $this->width; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ImpressionMetricsRow.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ImpressionMetricsRow.php deleted file mode 100644 index ecb9d7e5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ImpressionMetricsRow.php +++ /dev/null @@ -1,117 +0,0 @@ -availableImpressions = $availableImpressions; - } - /** - * @return Google_Service_AdExchangeBuyerII_MetricValue - */ - public function getAvailableImpressions() - { - return $this->availableImpressions; - } - /** - * @param Google_Service_AdExchangeBuyerII_MetricValue - */ - public function setBidRequests(Google_Service_AdExchangeBuyerII_MetricValue $bidRequests) - { - $this->bidRequests = $bidRequests; - } - /** - * @return Google_Service_AdExchangeBuyerII_MetricValue - */ - public function getBidRequests() - { - return $this->bidRequests; - } - /** - * @param Google_Service_AdExchangeBuyerII_MetricValue - */ - public function setInventoryMatches(Google_Service_AdExchangeBuyerII_MetricValue $inventoryMatches) - { - $this->inventoryMatches = $inventoryMatches; - } - /** - * @return Google_Service_AdExchangeBuyerII_MetricValue - */ - public function getInventoryMatches() - { - return $this->inventoryMatches; - } - /** - * @param Google_Service_AdExchangeBuyerII_MetricValue - */ - public function setResponsesWithBids(Google_Service_AdExchangeBuyerII_MetricValue $responsesWithBids) - { - $this->responsesWithBids = $responsesWithBids; - } - /** - * @return Google_Service_AdExchangeBuyerII_MetricValue - */ - public function getResponsesWithBids() - { - return $this->responsesWithBids; - } - /** - * @param Google_Service_AdExchangeBuyerII_RowDimensions - */ - public function setRowDimensions(Google_Service_AdExchangeBuyerII_RowDimensions $rowDimensions) - { - $this->rowDimensions = $rowDimensions; - } - /** - * @return Google_Service_AdExchangeBuyerII_RowDimensions - */ - public function getRowDimensions() - { - return $this->rowDimensions; - } - /** - * @param Google_Service_AdExchangeBuyerII_MetricValue - */ - public function setSuccessfulResponses(Google_Service_AdExchangeBuyerII_MetricValue $successfulResponses) - { - $this->successfulResponses = $successfulResponses; - } - /** - * @return Google_Service_AdExchangeBuyerII_MetricValue - */ - public function getSuccessfulResponses() - { - return $this->successfulResponses; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/InventorySizeTargeting.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/InventorySizeTargeting.php deleted file mode 100644 index 8373113d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/InventorySizeTargeting.php +++ /dev/null @@ -1,54 +0,0 @@ -excludedInventorySizes = $excludedInventorySizes; - } - /** - * @return Google_Service_AdExchangeBuyerII_AdSize - */ - public function getExcludedInventorySizes() - { - return $this->excludedInventorySizes; - } - /** - * @param Google_Service_AdExchangeBuyerII_AdSize - */ - public function setTargetedInventorySizes($targetedInventorySizes) - { - $this->targetedInventorySizes = $targetedInventorySizes; - } - /** - * @return Google_Service_AdExchangeBuyerII_AdSize - */ - public function getTargetedInventorySizes() - { - return $this->targetedInventorySizes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListBidMetricsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListBidMetricsResponse.php deleted file mode 100644 index 30e11924..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListBidMetricsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -bidMetricsRows = $bidMetricsRows; - } - /** - * @return Google_Service_AdExchangeBuyerII_BidMetricsRow - */ - public function getBidMetricsRows() - { - return $this->bidMetricsRows; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListBidResponseErrorsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListBidResponseErrorsResponse.php deleted file mode 100644 index c8497c94..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListBidResponseErrorsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -calloutStatusRows = $calloutStatusRows; - } - /** - * @return Google_Service_AdExchangeBuyerII_CalloutStatusRow - */ - public function getCalloutStatusRows() - { - return $this->calloutStatusRows; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListBidResponsesWithoutBidsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListBidResponsesWithoutBidsResponse.php deleted file mode 100644 index e2298549..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListBidResponsesWithoutBidsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -bidResponseWithoutBidsStatusRows = $bidResponseWithoutBidsStatusRows; - } - /** - * @return Google_Service_AdExchangeBuyerII_BidResponseWithoutBidsStatusRow - */ - public function getBidResponseWithoutBidsStatusRows() - { - return $this->bidResponseWithoutBidsStatusRows; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListClientUserInvitationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListClientUserInvitationsResponse.php deleted file mode 100644 index a301db18..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListClientUserInvitationsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -invitations = $invitations; - } - /** - * @return Google_Service_AdExchangeBuyerII_ClientUserInvitation - */ - public function getInvitations() - { - return $this->invitations; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListClientUsersResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListClientUsersResponse.php deleted file mode 100644 index f01175b4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListClientUsersResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_AdExchangeBuyerII_ClientUser - */ - public function setUsers($users) - { - $this->users = $users; - } - /** - * @return Google_Service_AdExchangeBuyerII_ClientUser - */ - public function getUsers() - { - return $this->users; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListClientsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListClientsResponse.php deleted file mode 100644 index 362b99b0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListClientsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -clients = $clients; - } - /** - * @return Google_Service_AdExchangeBuyerII_Client - */ - public function getClients() - { - return $this->clients; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListCreativeStatusBreakdownByCreativeResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListCreativeStatusBreakdownByCreativeResponse.php deleted file mode 100644 index 636edb2b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListCreativeStatusBreakdownByCreativeResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -filteredBidCreativeRows = $filteredBidCreativeRows; - } - /** - * @return Google_Service_AdExchangeBuyerII_FilteredBidCreativeRow - */ - public function getFilteredBidCreativeRows() - { - return $this->filteredBidCreativeRows; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListCreativeStatusBreakdownByDetailResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListCreativeStatusBreakdownByDetailResponse.php deleted file mode 100644 index 31a727a3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListCreativeStatusBreakdownByDetailResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -detailType = $detailType; - } - public function getDetailType() - { - return $this->detailType; - } - /** - * @param Google_Service_AdExchangeBuyerII_FilteredBidDetailRow - */ - public function setFilteredBidDetailRows($filteredBidDetailRows) - { - $this->filteredBidDetailRows = $filteredBidDetailRows; - } - /** - * @return Google_Service_AdExchangeBuyerII_FilteredBidDetailRow - */ - public function getFilteredBidDetailRows() - { - return $this->filteredBidDetailRows; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListCreativesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListCreativesResponse.php deleted file mode 100644 index 8f40d4a4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListCreativesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -creatives = $creatives; - } - /** - * @return Google_Service_AdExchangeBuyerII_Creative - */ - public function getCreatives() - { - return $this->creatives; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListDealAssociationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListDealAssociationsResponse.php deleted file mode 100644 index 5e81de80..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListDealAssociationsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -associations = $associations; - } - /** - * @return Google_Service_AdExchangeBuyerII_CreativeDealAssociation - */ - public function getAssociations() - { - return $this->associations; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListFilterSetsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListFilterSetsResponse.php deleted file mode 100644 index bef065c7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListFilterSetsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -filterSets = $filterSets; - } - /** - * @return Google_Service_AdExchangeBuyerII_FilterSet - */ - public function getFilterSets() - { - return $this->filterSets; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListFilteredBidRequestsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListFilteredBidRequestsResponse.php deleted file mode 100644 index d649341e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListFilteredBidRequestsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -calloutStatusRows = $calloutStatusRows; - } - /** - * @return Google_Service_AdExchangeBuyerII_CalloutStatusRow - */ - public function getCalloutStatusRows() - { - return $this->calloutStatusRows; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListFilteredBidsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListFilteredBidsResponse.php deleted file mode 100644 index 2d6e39a1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListFilteredBidsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -creativeStatusRows = $creativeStatusRows; - } - /** - * @return Google_Service_AdExchangeBuyerII_CreativeStatusRow - */ - public function getCreativeStatusRows() - { - return $this->creativeStatusRows; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListImpressionMetricsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListImpressionMetricsResponse.php deleted file mode 100644 index d9bc30e9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListImpressionMetricsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -impressionMetricsRows = $impressionMetricsRows; - } - /** - * @return Google_Service_AdExchangeBuyerII_ImpressionMetricsRow - */ - public function getImpressionMetricsRows() - { - return $this->impressionMetricsRows; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListLosingBidsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListLosingBidsResponse.php deleted file mode 100644 index 8c48cc25..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListLosingBidsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -creativeStatusRows = $creativeStatusRows; - } - /** - * @return Google_Service_AdExchangeBuyerII_CreativeStatusRow - */ - public function getCreativeStatusRows() - { - return $this->creativeStatusRows; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListNonBillableWinningBidsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListNonBillableWinningBidsResponse.php deleted file mode 100644 index b1067f4c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListNonBillableWinningBidsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_AdExchangeBuyerII_NonBillableWinningBidStatusRow - */ - public function setNonBillableWinningBidStatusRows($nonBillableWinningBidStatusRows) - { - $this->nonBillableWinningBidStatusRows = $nonBillableWinningBidStatusRows; - } - /** - * @return Google_Service_AdExchangeBuyerII_NonBillableWinningBidStatusRow - */ - public function getNonBillableWinningBidStatusRows() - { - return $this->nonBillableWinningBidStatusRows; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListProductsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListProductsResponse.php deleted file mode 100644 index 49eb15cc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListProductsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_AdExchangeBuyerII_Product - */ - public function setProducts($products) - { - $this->products = $products; - } - /** - * @return Google_Service_AdExchangeBuyerII_Product - */ - public function getProducts() - { - return $this->products; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListProposalsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListProposalsResponse.php deleted file mode 100644 index 18474f73..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListProposalsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_AdExchangeBuyerII_Proposal - */ - public function setProposals($proposals) - { - $this->proposals = $proposals; - } - /** - * @return Google_Service_AdExchangeBuyerII_Proposal - */ - public function getProposals() - { - return $this->proposals; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListPublisherProfilesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListPublisherProfilesResponse.php deleted file mode 100644 index 0a59b98c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ListPublisherProfilesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_AdExchangeBuyerII_PublisherProfile - */ - public function setPublisherProfiles($publisherProfiles) - { - $this->publisherProfiles = $publisherProfiles; - } - /** - * @return Google_Service_AdExchangeBuyerII_PublisherProfile - */ - public function getPublisherProfiles() - { - return $this->publisherProfiles; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/LocationContext.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/LocationContext.php deleted file mode 100644 index f5ee6881..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/LocationContext.php +++ /dev/null @@ -1,31 +0,0 @@ -geoCriteriaIds = $geoCriteriaIds; - } - public function getGeoCriteriaIds() - { - return $this->geoCriteriaIds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/MarketplaceTargeting.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/MarketplaceTargeting.php deleted file mode 100644 index 6a215b36..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/MarketplaceTargeting.php +++ /dev/null @@ -1,101 +0,0 @@ -geoTargeting = $geoTargeting; - } - /** - * @return Google_Service_AdExchangeBuyerII_CriteriaTargeting - */ - public function getGeoTargeting() - { - return $this->geoTargeting; - } - /** - * @param Google_Service_AdExchangeBuyerII_InventorySizeTargeting - */ - public function setInventorySizeTargeting(Google_Service_AdExchangeBuyerII_InventorySizeTargeting $inventorySizeTargeting) - { - $this->inventorySizeTargeting = $inventorySizeTargeting; - } - /** - * @return Google_Service_AdExchangeBuyerII_InventorySizeTargeting - */ - public function getInventorySizeTargeting() - { - return $this->inventorySizeTargeting; - } - /** - * @param Google_Service_AdExchangeBuyerII_PlacementTargeting - */ - public function setPlacementTargeting(Google_Service_AdExchangeBuyerII_PlacementTargeting $placementTargeting) - { - $this->placementTargeting = $placementTargeting; - } - /** - * @return Google_Service_AdExchangeBuyerII_PlacementTargeting - */ - public function getPlacementTargeting() - { - return $this->placementTargeting; - } - /** - * @param Google_Service_AdExchangeBuyerII_TechnologyTargeting - */ - public function setTechnologyTargeting(Google_Service_AdExchangeBuyerII_TechnologyTargeting $technologyTargeting) - { - $this->technologyTargeting = $technologyTargeting; - } - /** - * @return Google_Service_AdExchangeBuyerII_TechnologyTargeting - */ - public function getTechnologyTargeting() - { - return $this->technologyTargeting; - } - /** - * @param Google_Service_AdExchangeBuyerII_VideoTargeting - */ - public function setVideoTargeting(Google_Service_AdExchangeBuyerII_VideoTargeting $videoTargeting) - { - $this->videoTargeting = $videoTargeting; - } - /** - * @return Google_Service_AdExchangeBuyerII_VideoTargeting - */ - public function getVideoTargeting() - { - return $this->videoTargeting; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/MetricValue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/MetricValue.php deleted file mode 100644 index 98065c6c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/MetricValue.php +++ /dev/null @@ -1,39 +0,0 @@ -value = $value; - } - public function getValue() - { - return $this->value; - } - public function setVariance($variance) - { - $this->variance = $variance; - } - public function getVariance() - { - return $this->variance; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/MobileApplicationTargeting.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/MobileApplicationTargeting.php deleted file mode 100644 index 1cdbcaf1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/MobileApplicationTargeting.php +++ /dev/null @@ -1,37 +0,0 @@ -firstPartyTargeting = $firstPartyTargeting; - } - /** - * @return Google_Service_AdExchangeBuyerII_FirstPartyMobileApplicationTargeting - */ - public function getFirstPartyTargeting() - { - return $this->firstPartyTargeting; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Money.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Money.php deleted file mode 100644 index 12d0ed53..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Money.php +++ /dev/null @@ -1,48 +0,0 @@ -currencyCode = $currencyCode; - } - public function getCurrencyCode() - { - return $this->currencyCode; - } - public function setNanos($nanos) - { - $this->nanos = $nanos; - } - public function getNanos() - { - return $this->nanos; - } - public function setUnits($units) - { - $this->units = $units; - } - public function getUnits() - { - return $this->units; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/NativeContent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/NativeContent.php deleted file mode 100644 index e817ddbf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/NativeContent.php +++ /dev/null @@ -1,159 +0,0 @@ -advertiserName = $advertiserName; - } - public function getAdvertiserName() - { - return $this->advertiserName; - } - /** - * @param Google_Service_AdExchangeBuyerII_Image - */ - public function setAppIcon(Google_Service_AdExchangeBuyerII_Image $appIcon) - { - $this->appIcon = $appIcon; - } - /** - * @return Google_Service_AdExchangeBuyerII_Image - */ - public function getAppIcon() - { - return $this->appIcon; - } - public function setBody($body) - { - $this->body = $body; - } - public function getBody() - { - return $this->body; - } - public function setCallToAction($callToAction) - { - $this->callToAction = $callToAction; - } - public function getCallToAction() - { - return $this->callToAction; - } - public function setClickLinkUrl($clickLinkUrl) - { - $this->clickLinkUrl = $clickLinkUrl; - } - public function getClickLinkUrl() - { - return $this->clickLinkUrl; - } - public function setClickTrackingUrl($clickTrackingUrl) - { - $this->clickTrackingUrl = $clickTrackingUrl; - } - public function getClickTrackingUrl() - { - return $this->clickTrackingUrl; - } - public function setHeadline($headline) - { - $this->headline = $headline; - } - public function getHeadline() - { - return $this->headline; - } - /** - * @param Google_Service_AdExchangeBuyerII_Image - */ - public function setImage(Google_Service_AdExchangeBuyerII_Image $image) - { - $this->image = $image; - } - /** - * @return Google_Service_AdExchangeBuyerII_Image - */ - public function getImage() - { - return $this->image; - } - /** - * @param Google_Service_AdExchangeBuyerII_Image - */ - public function setLogo(Google_Service_AdExchangeBuyerII_Image $logo) - { - $this->logo = $logo; - } - /** - * @return Google_Service_AdExchangeBuyerII_Image - */ - public function getLogo() - { - return $this->logo; - } - public function setPriceDisplayText($priceDisplayText) - { - $this->priceDisplayText = $priceDisplayText; - } - public function getPriceDisplayText() - { - return $this->priceDisplayText; - } - public function setStarRating($starRating) - { - $this->starRating = $starRating; - } - public function getStarRating() - { - return $this->starRating; - } - public function setStoreUrl($storeUrl) - { - $this->storeUrl = $storeUrl; - } - public function getStoreUrl() - { - return $this->storeUrl; - } - public function setVideoUrl($videoUrl) - { - $this->videoUrl = $videoUrl; - } - public function getVideoUrl() - { - return $this->videoUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/NonBillableWinningBidStatusRow.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/NonBillableWinningBidStatusRow.php deleted file mode 100644 index d469fa71..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/NonBillableWinningBidStatusRow.php +++ /dev/null @@ -1,62 +0,0 @@ -bidCount = $bidCount; - } - /** - * @return Google_Service_AdExchangeBuyerII_MetricValue - */ - public function getBidCount() - { - return $this->bidCount; - } - /** - * @param Google_Service_AdExchangeBuyerII_RowDimensions - */ - public function setRowDimensions(Google_Service_AdExchangeBuyerII_RowDimensions $rowDimensions) - { - $this->rowDimensions = $rowDimensions; - } - /** - * @return Google_Service_AdExchangeBuyerII_RowDimensions - */ - public function getRowDimensions() - { - return $this->rowDimensions; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/NonGuaranteedAuctionTerms.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/NonGuaranteedAuctionTerms.php deleted file mode 100644 index 07b845c0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/NonGuaranteedAuctionTerms.php +++ /dev/null @@ -1,47 +0,0 @@ -autoOptimizePrivateAuction = $autoOptimizePrivateAuction; - } - public function getAutoOptimizePrivateAuction() - { - return $this->autoOptimizePrivateAuction; - } - /** - * @param Google_Service_AdExchangeBuyerII_PricePerBuyer - */ - public function setReservePricesPerBuyer($reservePricesPerBuyer) - { - $this->reservePricesPerBuyer = $reservePricesPerBuyer; - } - /** - * @return Google_Service_AdExchangeBuyerII_PricePerBuyer - */ - public function getReservePricesPerBuyer() - { - return $this->reservePricesPerBuyer; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/NonGuaranteedFixedPriceTerms.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/NonGuaranteedFixedPriceTerms.php deleted file mode 100644 index d878dde2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/NonGuaranteedFixedPriceTerms.php +++ /dev/null @@ -1,38 +0,0 @@ -fixedPrices = $fixedPrices; - } - /** - * @return Google_Service_AdExchangeBuyerII_PricePerBuyer - */ - public function getFixedPrices() - { - return $this->fixedPrices; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Note.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Note.php deleted file mode 100644 index 2a00e93f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Note.php +++ /dev/null @@ -1,66 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setCreatorRole($creatorRole) - { - $this->creatorRole = $creatorRole; - } - public function getCreatorRole() - { - return $this->creatorRole; - } - public function setNote($note) - { - $this->note = $note; - } - public function getNote() - { - return $this->note; - } - public function setNoteId($noteId) - { - $this->noteId = $noteId; - } - public function getNoteId() - { - return $this->noteId; - } - public function setProposalRevision($proposalRevision) - { - $this->proposalRevision = $proposalRevision; - } - public function getProposalRevision() - { - return $this->proposalRevision; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/OperatingSystemTargeting.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/OperatingSystemTargeting.php deleted file mode 100644 index 99a81b44..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/OperatingSystemTargeting.php +++ /dev/null @@ -1,53 +0,0 @@ -operatingSystemCriteria = $operatingSystemCriteria; - } - /** - * @return Google_Service_AdExchangeBuyerII_CriteriaTargeting - */ - public function getOperatingSystemCriteria() - { - return $this->operatingSystemCriteria; - } - /** - * @param Google_Service_AdExchangeBuyerII_CriteriaTargeting - */ - public function setOperatingSystemVersionCriteria(Google_Service_AdExchangeBuyerII_CriteriaTargeting $operatingSystemVersionCriteria) - { - $this->operatingSystemVersionCriteria = $operatingSystemVersionCriteria; - } - /** - * @return Google_Service_AdExchangeBuyerII_CriteriaTargeting - */ - public function getOperatingSystemVersionCriteria() - { - return $this->operatingSystemVersionCriteria; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/PauseProposalRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/PauseProposalRequest.php deleted file mode 100644 index 84b531e8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/PauseProposalRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -reason = $reason; - } - public function getReason() - { - return $this->reason; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/PlacementTargeting.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/PlacementTargeting.php deleted file mode 100644 index 9ffffc8a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/PlacementTargeting.php +++ /dev/null @@ -1,53 +0,0 @@ -mobileApplicationTargeting = $mobileApplicationTargeting; - } - /** - * @return Google_Service_AdExchangeBuyerII_MobileApplicationTargeting - */ - public function getMobileApplicationTargeting() - { - return $this->mobileApplicationTargeting; - } - /** - * @param Google_Service_AdExchangeBuyerII_UrlTargeting - */ - public function setUrlTargeting(Google_Service_AdExchangeBuyerII_UrlTargeting $urlTargeting) - { - $this->urlTargeting = $urlTargeting; - } - /** - * @return Google_Service_AdExchangeBuyerII_UrlTargeting - */ - public function getUrlTargeting() - { - return $this->urlTargeting; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/PlatformContext.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/PlatformContext.php deleted file mode 100644 index 96071950..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/PlatformContext.php +++ /dev/null @@ -1,31 +0,0 @@ -platforms = $platforms; - } - public function getPlatforms() - { - return $this->platforms; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Price.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Price.php deleted file mode 100644 index 3148efdf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Price.php +++ /dev/null @@ -1,46 +0,0 @@ -amount = $amount; - } - /** - * @return Google_Service_AdExchangeBuyerII_Money - */ - public function getAmount() - { - return $this->amount; - } - public function setPricingType($pricingType) - { - $this->pricingType = $pricingType; - } - public function getPricingType() - { - return $this->pricingType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/PricePerBuyer.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/PricePerBuyer.php deleted file mode 100644 index b1c54378..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/PricePerBuyer.php +++ /dev/null @@ -1,63 +0,0 @@ -advertiserIds = $advertiserIds; - } - public function getAdvertiserIds() - { - return $this->advertiserIds; - } - /** - * @param Google_Service_AdExchangeBuyerII_Buyer - */ - public function setBuyer(Google_Service_AdExchangeBuyerII_Buyer $buyer) - { - $this->buyer = $buyer; - } - /** - * @return Google_Service_AdExchangeBuyerII_Buyer - */ - public function getBuyer() - { - return $this->buyer; - } - /** - * @param Google_Service_AdExchangeBuyerII_Price - */ - public function setPrice(Google_Service_AdExchangeBuyerII_Price $price) - { - $this->price = $price; - } - /** - * @return Google_Service_AdExchangeBuyerII_Price - */ - public function getPrice() - { - return $this->price; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/PrivateData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/PrivateData.php deleted file mode 100644 index 30bd7d65..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/PrivateData.php +++ /dev/null @@ -1,30 +0,0 @@ -referenceId = $referenceId; - } - public function getReferenceId() - { - return $this->referenceId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Product.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Product.php deleted file mode 100644 index 0d3e45f3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Product.php +++ /dev/null @@ -1,185 +0,0 @@ -availableEndTime = $availableEndTime; - } - public function getAvailableEndTime() - { - return $this->availableEndTime; - } - public function setAvailableStartTime($availableStartTime) - { - $this->availableStartTime = $availableStartTime; - } - public function getAvailableStartTime() - { - return $this->availableStartTime; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - /** - * @param Google_Service_AdExchangeBuyerII_ContactInformation - */ - public function setCreatorContacts($creatorContacts) - { - $this->creatorContacts = $creatorContacts; - } - /** - * @return Google_Service_AdExchangeBuyerII_ContactInformation - */ - public function getCreatorContacts() - { - return $this->creatorContacts; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setHasCreatorSignedOff($hasCreatorSignedOff) - { - $this->hasCreatorSignedOff = $hasCreatorSignedOff; - } - public function getHasCreatorSignedOff() - { - return $this->hasCreatorSignedOff; - } - public function setProductId($productId) - { - $this->productId = $productId; - } - public function getProductId() - { - return $this->productId; - } - public function setProductRevision($productRevision) - { - $this->productRevision = $productRevision; - } - public function getProductRevision() - { - return $this->productRevision; - } - public function setPublisherProfileId($publisherProfileId) - { - $this->publisherProfileId = $publisherProfileId; - } - public function getPublisherProfileId() - { - return $this->publisherProfileId; - } - /** - * @param Google_Service_AdExchangeBuyerII_Seller - */ - public function setSeller(Google_Service_AdExchangeBuyerII_Seller $seller) - { - $this->seller = $seller; - } - /** - * @return Google_Service_AdExchangeBuyerII_Seller - */ - public function getSeller() - { - return $this->seller; - } - public function setSyndicationProduct($syndicationProduct) - { - $this->syndicationProduct = $syndicationProduct; - } - public function getSyndicationProduct() - { - return $this->syndicationProduct; - } - /** - * @param Google_Service_AdExchangeBuyerII_TargetingCriteria - */ - public function setTargetingCriterion($targetingCriterion) - { - $this->targetingCriterion = $targetingCriterion; - } - /** - * @return Google_Service_AdExchangeBuyerII_TargetingCriteria - */ - public function getTargetingCriterion() - { - return $this->targetingCriterion; - } - /** - * @param Google_Service_AdExchangeBuyerII_DealTerms - */ - public function setTerms(Google_Service_AdExchangeBuyerII_DealTerms $terms) - { - $this->terms = $terms; - } - /** - * @return Google_Service_AdExchangeBuyerII_DealTerms - */ - public function getTerms() - { - return $this->terms; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } - public function setWebPropertyCode($webPropertyCode) - { - $this->webPropertyCode = $webPropertyCode; - } - public function getWebPropertyCode() - { - return $this->webPropertyCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Proposal.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Proposal.php deleted file mode 100644 index c2f368d2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Proposal.php +++ /dev/null @@ -1,240 +0,0 @@ -billedBuyer = $billedBuyer; - } - /** - * @return Google_Service_AdExchangeBuyerII_Buyer - */ - public function getBilledBuyer() - { - return $this->billedBuyer; - } - /** - * @param Google_Service_AdExchangeBuyerII_Buyer - */ - public function setBuyer(Google_Service_AdExchangeBuyerII_Buyer $buyer) - { - $this->buyer = $buyer; - } - /** - * @return Google_Service_AdExchangeBuyerII_Buyer - */ - public function getBuyer() - { - return $this->buyer; - } - /** - * @param Google_Service_AdExchangeBuyerII_ContactInformation - */ - public function setBuyerContacts($buyerContacts) - { - $this->buyerContacts = $buyerContacts; - } - /** - * @return Google_Service_AdExchangeBuyerII_ContactInformation - */ - public function getBuyerContacts() - { - return $this->buyerContacts; - } - /** - * @param Google_Service_AdExchangeBuyerII_PrivateData - */ - public function setBuyerPrivateData(Google_Service_AdExchangeBuyerII_PrivateData $buyerPrivateData) - { - $this->buyerPrivateData = $buyerPrivateData; - } - /** - * @return Google_Service_AdExchangeBuyerII_PrivateData - */ - public function getBuyerPrivateData() - { - return $this->buyerPrivateData; - } - /** - * @param Google_Service_AdExchangeBuyerII_Deal - */ - public function setDeals($deals) - { - $this->deals = $deals; - } - /** - * @return Google_Service_AdExchangeBuyerII_Deal - */ - public function getDeals() - { - return $this->deals; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setIsRenegotiating($isRenegotiating) - { - $this->isRenegotiating = $isRenegotiating; - } - public function getIsRenegotiating() - { - return $this->isRenegotiating; - } - public function setIsSetupComplete($isSetupComplete) - { - $this->isSetupComplete = $isSetupComplete; - } - public function getIsSetupComplete() - { - return $this->isSetupComplete; - } - public function setLastUpdaterOrCommentorRole($lastUpdaterOrCommentorRole) - { - $this->lastUpdaterOrCommentorRole = $lastUpdaterOrCommentorRole; - } - public function getLastUpdaterOrCommentorRole() - { - return $this->lastUpdaterOrCommentorRole; - } - /** - * @param Google_Service_AdExchangeBuyerII_Note - */ - public function setNotes($notes) - { - $this->notes = $notes; - } - /** - * @return Google_Service_AdExchangeBuyerII_Note - */ - public function getNotes() - { - return $this->notes; - } - public function setOriginatorRole($originatorRole) - { - $this->originatorRole = $originatorRole; - } - public function getOriginatorRole() - { - return $this->originatorRole; - } - public function setPrivateAuctionId($privateAuctionId) - { - $this->privateAuctionId = $privateAuctionId; - } - public function getPrivateAuctionId() - { - return $this->privateAuctionId; - } - public function setProposalId($proposalId) - { - $this->proposalId = $proposalId; - } - public function getProposalId() - { - return $this->proposalId; - } - public function setProposalRevision($proposalRevision) - { - $this->proposalRevision = $proposalRevision; - } - public function getProposalRevision() - { - return $this->proposalRevision; - } - public function setProposalState($proposalState) - { - $this->proposalState = $proposalState; - } - public function getProposalState() - { - return $this->proposalState; - } - /** - * @param Google_Service_AdExchangeBuyerII_Seller - */ - public function setSeller(Google_Service_AdExchangeBuyerII_Seller $seller) - { - $this->seller = $seller; - } - /** - * @return Google_Service_AdExchangeBuyerII_Seller - */ - public function getSeller() - { - return $this->seller; - } - /** - * @param Google_Service_AdExchangeBuyerII_ContactInformation - */ - public function setSellerContacts($sellerContacts) - { - $this->sellerContacts = $sellerContacts; - } - /** - * @return Google_Service_AdExchangeBuyerII_ContactInformation - */ - public function getSellerContacts() - { - return $this->sellerContacts; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/PublisherProfile.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/PublisherProfile.php deleted file mode 100644 index 2f01e68f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/PublisherProfile.php +++ /dev/null @@ -1,164 +0,0 @@ -audienceDescription = $audienceDescription; - } - public function getAudienceDescription() - { - return $this->audienceDescription; - } - public function setBuyerPitchStatement($buyerPitchStatement) - { - $this->buyerPitchStatement = $buyerPitchStatement; - } - public function getBuyerPitchStatement() - { - return $this->buyerPitchStatement; - } - public function setDirectDealsContact($directDealsContact) - { - $this->directDealsContact = $directDealsContact; - } - public function getDirectDealsContact() - { - return $this->directDealsContact; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setDomains($domains) - { - $this->domains = $domains; - } - public function getDomains() - { - return $this->domains; - } - public function setGooglePlusUrl($googlePlusUrl) - { - $this->googlePlusUrl = $googlePlusUrl; - } - public function getGooglePlusUrl() - { - return $this->googlePlusUrl; - } - public function setLogoUrl($logoUrl) - { - $this->logoUrl = $logoUrl; - } - public function getLogoUrl() - { - return $this->logoUrl; - } - public function setMediaKitUrl($mediaKitUrl) - { - $this->mediaKitUrl = $mediaKitUrl; - } - public function getMediaKitUrl() - { - return $this->mediaKitUrl; - } - public function setOverview($overview) - { - $this->overview = $overview; - } - public function getOverview() - { - return $this->overview; - } - public function setProgrammaticDealsContact($programmaticDealsContact) - { - $this->programmaticDealsContact = $programmaticDealsContact; - } - public function getProgrammaticDealsContact() - { - return $this->programmaticDealsContact; - } - public function setPublisherProfileId($publisherProfileId) - { - $this->publisherProfileId = $publisherProfileId; - } - public function getPublisherProfileId() - { - return $this->publisherProfileId; - } - public function setRateCardInfoUrl($rateCardInfoUrl) - { - $this->rateCardInfoUrl = $rateCardInfoUrl; - } - public function getRateCardInfoUrl() - { - return $this->rateCardInfoUrl; - } - public function setSamplePageUrl($samplePageUrl) - { - $this->samplePageUrl = $samplePageUrl; - } - public function getSamplePageUrl() - { - return $this->samplePageUrl; - } - /** - * @param Google_Service_AdExchangeBuyerII_Seller - */ - public function setSeller(Google_Service_AdExchangeBuyerII_Seller $seller) - { - $this->seller = $seller; - } - /** - * @return Google_Service_AdExchangeBuyerII_Seller - */ - public function getSeller() - { - return $this->seller; - } - public function setTopHeadlines($topHeadlines) - { - $this->topHeadlines = $topHeadlines; - } - public function getTopHeadlines() - { - return $this->topHeadlines; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/RealtimeTimeRange.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/RealtimeTimeRange.php deleted file mode 100644 index 46033393..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/RealtimeTimeRange.php +++ /dev/null @@ -1,30 +0,0 @@ -startTimestamp = $startTimestamp; - } - public function getStartTimestamp() - { - return $this->startTimestamp; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/RelativeDateRange.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/RelativeDateRange.php deleted file mode 100644 index 7d3b1f34..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/RelativeDateRange.php +++ /dev/null @@ -1,39 +0,0 @@ -durationDays = $durationDays; - } - public function getDurationDays() - { - return $this->durationDays; - } - public function setOffsetDays($offsetDays) - { - $this->offsetDays = $offsetDays; - } - public function getOffsetDays() - { - return $this->offsetDays; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/RemoveDealAssociationRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/RemoveDealAssociationRequest.php deleted file mode 100644 index 182f51d4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/RemoveDealAssociationRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -association = $association; - } - /** - * @return Google_Service_AdExchangeBuyerII_CreativeDealAssociation - */ - public function getAssociation() - { - return $this->association; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/Accounts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/Accounts.php deleted file mode 100644 index cd6c867a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/Accounts.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $adexchangebuyer2Service = new Google_Service_AdExchangeBuyerII(...); - * $accounts = $adexchangebuyer2Service->accounts; - * - */ -class Google_Service_AdExchangeBuyerII_Resource_Accounts extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/AccountsClients.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/AccountsClients.php deleted file mode 100644 index b299d23e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/AccountsClients.php +++ /dev/null @@ -1,104 +0,0 @@ - - * $adexchangebuyer2Service = new Google_Service_AdExchangeBuyerII(...); - * $clients = $adexchangebuyer2Service->clients; - * - */ -class Google_Service_AdExchangeBuyerII_Resource_AccountsClients extends Google_Service_Resource -{ - /** - * Creates a new client buyer. (clients.create) - * - * @param string $accountId Unique numerical account ID for the buyer of which - * the client buyer is a customer; the sponsor buyer to create a client for. - * (required) - * @param Google_Service_AdExchangeBuyerII_Client $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeBuyerII_Client - */ - public function create($accountId, Google_Service_AdExchangeBuyerII_Client $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_AdExchangeBuyerII_Client"); - } - /** - * Gets a client buyer with a given client account ID. (clients.get) - * - * @param string $accountId Numerical account ID of the client's sponsor buyer. - * (required) - * @param string $clientAccountId Numerical account ID of the client buyer to - * retrieve. (required) - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeBuyerII_Client - */ - public function get($accountId, $clientAccountId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'clientAccountId' => $clientAccountId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AdExchangeBuyerII_Client"); - } - /** - * Lists all the clients for the current sponsor buyer. - * (clients.listAccountsClients) - * - * @param string $accountId Unique numerical account ID of the sponsor buyer to - * list the clients for. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A token identifying a page of results the server - * should return. Typically, this is the value of - * ListClientsResponse.nextPageToken returned from the previous call to the - * accounts.clients.list method. - * @opt_param string partnerClientId Optional unique identifier (from the - * standpoint of an Ad Exchange sponsor buyer partner) of the client to return. - * If specified, at most one client will be returned in the response. - * @opt_param int pageSize Requested page size. The server may return fewer - * clients than requested. If unspecified, the server will pick an appropriate - * default. - * @return Google_Service_AdExchangeBuyerII_ListClientsResponse - */ - public function listAccountsClients($accountId, $optParams = array()) - { - $params = array('accountId' => $accountId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdExchangeBuyerII_ListClientsResponse"); - } - /** - * Updates an existing client buyer. (clients.update) - * - * @param string $accountId Unique numerical account ID for the buyer of which - * the client buyer is a customer; the sponsor buyer to update a client for. - * (required) - * @param string $clientAccountId Unique numerical account ID of the client to - * update. (required) - * @param Google_Service_AdExchangeBuyerII_Client $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeBuyerII_Client - */ - public function update($accountId, $clientAccountId, Google_Service_AdExchangeBuyerII_Client $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'clientAccountId' => $clientAccountId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_AdExchangeBuyerII_Client"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/AccountsClientsInvitations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/AccountsClientsInvitations.php deleted file mode 100644 index 96abf5a1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/AccountsClientsInvitations.php +++ /dev/null @@ -1,90 +0,0 @@ - - * $adexchangebuyer2Service = new Google_Service_AdExchangeBuyerII(...); - * $invitations = $adexchangebuyer2Service->invitations; - * - */ -class Google_Service_AdExchangeBuyerII_Resource_AccountsClientsInvitations extends Google_Service_Resource -{ - /** - * Creates and sends out an email invitation to access an Ad Exchange client - * buyer account. (invitations.create) - * - * @param string $accountId Numerical account ID of the client's sponsor buyer. - * (required) - * @param string $clientAccountId Numerical account ID of the client buyer that - * the user should be associated with. (required) - * @param Google_Service_AdExchangeBuyerII_ClientUserInvitation $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeBuyerII_ClientUserInvitation - */ - public function create($accountId, $clientAccountId, Google_Service_AdExchangeBuyerII_ClientUserInvitation $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'clientAccountId' => $clientAccountId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_AdExchangeBuyerII_ClientUserInvitation"); - } - /** - * Retrieves an existing client user invitation. (invitations.get) - * - * @param string $accountId Numerical account ID of the client's sponsor buyer. - * (required) - * @param string $clientAccountId Numerical account ID of the client buyer that - * the user invitation to be retrieved is associated with. (required) - * @param string $invitationId Numerical identifier of the user invitation to - * retrieve. (required) - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeBuyerII_ClientUserInvitation - */ - public function get($accountId, $clientAccountId, $invitationId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'clientAccountId' => $clientAccountId, 'invitationId' => $invitationId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AdExchangeBuyerII_ClientUserInvitation"); - } - /** - * Lists all the client users invitations for a client with a given account ID. - * (invitations.listAccountsClientsInvitations) - * - * @param string $accountId Numerical account ID of the client's sponsor buyer. - * (required) - * @param string $clientAccountId Numerical account ID of the client buyer to - * list invitations for. (required) You must either specify a string - * representation of a numerical account identifier or the `-` character to list - * all the invitations for all the clients of a given sponsor buyer. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A token identifying a page of results the server - * should return. Typically, this is the value of - * ListClientUserInvitationsResponse.nextPageToken returned from the previous - * call to the clients.invitations.list method. - * @opt_param int pageSize Requested page size. Server may return fewer clients - * than requested. If unspecified, server will pick an appropriate default. - * @return Google_Service_AdExchangeBuyerII_ListClientUserInvitationsResponse - */ - public function listAccountsClientsInvitations($accountId, $clientAccountId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'clientAccountId' => $clientAccountId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdExchangeBuyerII_ListClientUserInvitationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/AccountsClientsUsers.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/AccountsClientsUsers.php deleted file mode 100644 index cfacb137..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/AccountsClientsUsers.php +++ /dev/null @@ -1,93 +0,0 @@ - - * $adexchangebuyer2Service = new Google_Service_AdExchangeBuyerII(...); - * $users = $adexchangebuyer2Service->users; - * - */ -class Google_Service_AdExchangeBuyerII_Resource_AccountsClientsUsers extends Google_Service_Resource -{ - /** - * Retrieves an existing client user. (users.get) - * - * @param string $accountId Numerical account ID of the client's sponsor buyer. - * (required) - * @param string $clientAccountId Numerical account ID of the client buyer that - * the user to be retrieved is associated with. (required) - * @param string $userId Numerical identifier of the user to retrieve. - * (required) - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeBuyerII_ClientUser - */ - public function get($accountId, $clientAccountId, $userId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'clientAccountId' => $clientAccountId, 'userId' => $userId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AdExchangeBuyerII_ClientUser"); - } - /** - * Lists all the known client users for a specified sponsor buyer account ID. - * (users.listAccountsClientsUsers) - * - * @param string $accountId Numerical account ID of the sponsor buyer of the - * client to list users for. (required) - * @param string $clientAccountId The account ID of the client buyer to list - * users for. (required) You must specify either a string representation of a - * numerical account identifier or the `-` character to list all the client - * users for all the clients of a given sponsor buyer. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A token identifying a page of results the server - * should return. Typically, this is the value of - * ListClientUsersResponse.nextPageToken returned from the previous call to the - * accounts.clients.users.list method. - * @opt_param int pageSize Requested page size. The server may return fewer - * clients than requested. If unspecified, the server will pick an appropriate - * default. - * @return Google_Service_AdExchangeBuyerII_ListClientUsersResponse - */ - public function listAccountsClientsUsers($accountId, $clientAccountId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'clientAccountId' => $clientAccountId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdExchangeBuyerII_ListClientUsersResponse"); - } - /** - * Updates an existing client user. Only the user status can be changed on - * update. (users.update) - * - * @param string $accountId Numerical account ID of the client's sponsor buyer. - * (required) - * @param string $clientAccountId Numerical account ID of the client buyer that - * the user to be retrieved is associated with. (required) - * @param string $userId Numerical identifier of the user to retrieve. - * (required) - * @param Google_Service_AdExchangeBuyerII_ClientUser $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeBuyerII_ClientUser - */ - public function update($accountId, $clientAccountId, $userId, Google_Service_AdExchangeBuyerII_ClientUser $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'clientAccountId' => $clientAccountId, 'userId' => $userId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_AdExchangeBuyerII_ClientUser"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/AccountsCreatives.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/AccountsCreatives.php deleted file mode 100644 index 3a35cb42..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/AccountsCreatives.php +++ /dev/null @@ -1,151 +0,0 @@ - - * $adexchangebuyer2Service = new Google_Service_AdExchangeBuyerII(...); - * $creatives = $adexchangebuyer2Service->creatives; - * - */ -class Google_Service_AdExchangeBuyerII_Resource_AccountsCreatives extends Google_Service_Resource -{ - /** - * Creates a creative. (creatives.create) - * - * @param string $accountId The account that this creative belongs to. Can be - * used to filter the response of the creatives.list method. - * @param Google_Service_AdExchangeBuyerII_Creative $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string duplicateIdMode Indicates if multiple creatives can share - * an ID or not. Default is NO_DUPLICATES (one ID per creative). - * @return Google_Service_AdExchangeBuyerII_Creative - */ - public function create($accountId, Google_Service_AdExchangeBuyerII_Creative $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_AdExchangeBuyerII_Creative"); - } - /** - * Gets a creative. (creatives.get) - * - * @param string $accountId The account the creative belongs to. - * @param string $creativeId The ID of the creative to retrieve. - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeBuyerII_Creative - */ - public function get($accountId, $creativeId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'creativeId' => $creativeId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AdExchangeBuyerII_Creative"); - } - /** - * Lists creatives. (creatives.listAccountsCreatives) - * - * @param string $accountId The account to list the creatives from. Specify "-" - * to list all creatives the current user has access to. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A token identifying a page of results the server - * should return. Typically, this is the value of - * ListCreativesResponse.next_page_token returned from the previous call to - * 'ListCreatives' method. - * @opt_param int pageSize Requested page size. The server may return fewer - * creatives than requested (due to timeout constraint) even if more are - * available via another call. If unspecified, server will pick an appropriate - * default. Acceptable values are 1 to 1000, inclusive. - * @opt_param string query An optional query string to filter creatives. If no - * filter is specified, all active creatives will be returned. Supported queries - * are: - * - * accountId=account_id_string creativeId=creative_id_string dealsStatus: - * {approved, conditionally_approved, disapproved, - * not_checked} openAuctionStatus: {approved, conditionally_approved, - * disapproved, not_checked} attribute: {a numeric - * attribute from the list of attributes} disapprovalReason: {a reason from - * DisapprovalReason} - * - * Example: 'accountId=12345 AND (dealsStatus:disapproved AND - * disapprovalReason:unacceptable_content) OR attribute:47' - * @return Google_Service_AdExchangeBuyerII_ListCreativesResponse - */ - public function listAccountsCreatives($accountId, $optParams = array()) - { - $params = array('accountId' => $accountId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdExchangeBuyerII_ListCreativesResponse"); - } - /** - * Stops watching a creative. Will stop push notifications being sent to the - * topics when the creative changes status. (creatives.stopWatching) - * - * @param string $accountId The account of the creative to stop notifications - * for. - * @param string $creativeId The creative ID of the creative to stop - * notifications for. Specify "-" to specify stopping account level - * notifications. - * @param Google_Service_AdExchangeBuyerII_StopWatchingCreativeRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeBuyerII_Adexchangebuyer2Empty - */ - public function stopWatching($accountId, $creativeId, Google_Service_AdExchangeBuyerII_StopWatchingCreativeRequest $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'creativeId' => $creativeId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('stopWatching', array($params), "Google_Service_AdExchangeBuyerII_Adexchangebuyer2Empty"); - } - /** - * Updates a creative. (creatives.update) - * - * @param string $accountId The account that this creative belongs to. Can be - * used to filter the response of the creatives.list method. - * @param string $creativeId The buyer-defined creative ID of this creative. Can - * be used to filter the response of the creatives.list method. - * @param Google_Service_AdExchangeBuyerII_Creative $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeBuyerII_Creative - */ - public function update($accountId, $creativeId, Google_Service_AdExchangeBuyerII_Creative $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'creativeId' => $creativeId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_AdExchangeBuyerII_Creative"); - } - /** - * Watches a creative. Will result in push notifications being sent to the topic - * when the creative changes status. (creatives.watch) - * - * @param string $accountId The account of the creative to watch. - * @param string $creativeId The creative ID to watch for status changes. - * Specify "-" to watch all creatives under the above account. If both creative- - * level and account-level notifications are sent, only a single notification - * will be sent to the creative-level notification topic. - * @param Google_Service_AdExchangeBuyerII_WatchCreativeRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeBuyerII_Adexchangebuyer2Empty - */ - public function watch($accountId, $creativeId, Google_Service_AdExchangeBuyerII_WatchCreativeRequest $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'creativeId' => $creativeId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('watch', array($params), "Google_Service_AdExchangeBuyerII_Adexchangebuyer2Empty"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/AccountsCreativesDealAssociations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/AccountsCreativesDealAssociations.php deleted file mode 100644 index 1c1b2780..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/AccountsCreativesDealAssociations.php +++ /dev/null @@ -1,94 +0,0 @@ - - * $adexchangebuyer2Service = new Google_Service_AdExchangeBuyerII(...); - * $dealAssociations = $adexchangebuyer2Service->dealAssociations; - * - */ -class Google_Service_AdExchangeBuyerII_Resource_AccountsCreativesDealAssociations extends Google_Service_Resource -{ - /** - * Associate an existing deal with a creative. (dealAssociations.add) - * - * @param string $accountId The account the creative belongs to. - * @param string $creativeId The ID of the creative associated with the deal. - * @param Google_Service_AdExchangeBuyerII_AddDealAssociationRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeBuyerII_Adexchangebuyer2Empty - */ - public function add($accountId, $creativeId, Google_Service_AdExchangeBuyerII_AddDealAssociationRequest $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'creativeId' => $creativeId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('add', array($params), "Google_Service_AdExchangeBuyerII_Adexchangebuyer2Empty"); - } - /** - * List all creative-deal associations. - * (dealAssociations.listAccountsCreativesDealAssociations) - * - * @param string $accountId The account to list the associations from. Specify - * "-" to list all creatives the current user has access to. - * @param string $creativeId The creative ID to list the associations from. - * Specify "-" to list all creatives under the above account. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A token identifying a page of results the server - * should return. Typically, this is the value of - * ListDealAssociationsResponse.next_page_token returned from the previous call - * to 'ListDealAssociations' method. - * @opt_param int pageSize Requested page size. Server may return fewer - * associations than requested. If unspecified, server will pick an appropriate - * default. - * @opt_param string query An optional query string to filter deal associations. - * If no filter is specified, all associations will be returned. Supported - * queries are: - * - * accountId=account_id_string creativeId=creative_id_string - * dealsId=deals_id_string dealsStatus:{approved, conditionally_approved, - * disapproved, not_checked} openAuctionStatus:{approved, - * conditionally_approved, disapproved, not_checked} - * - * Example: 'dealsId=12345 AND dealsStatus:disapproved' - * @return Google_Service_AdExchangeBuyerII_ListDealAssociationsResponse - */ - public function listAccountsCreativesDealAssociations($accountId, $creativeId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'creativeId' => $creativeId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdExchangeBuyerII_ListDealAssociationsResponse"); - } - /** - * Remove the association between a deal and a creative. - * (dealAssociations.remove) - * - * @param string $accountId The account the creative belongs to. - * @param string $creativeId The ID of the creative associated with the deal. - * @param Google_Service_AdExchangeBuyerII_RemoveDealAssociationRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeBuyerII_Adexchangebuyer2Empty - */ - public function remove($accountId, $creativeId, Google_Service_AdExchangeBuyerII_RemoveDealAssociationRequest $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'creativeId' => $creativeId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('remove', array($params), "Google_Service_AdExchangeBuyerII_Adexchangebuyer2Empty"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/AccountsFinalizedProposals.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/AccountsFinalizedProposals.php deleted file mode 100644 index d198a626..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/AccountsFinalizedProposals.php +++ /dev/null @@ -1,57 +0,0 @@ - - * $adexchangebuyer2Service = new Google_Service_AdExchangeBuyerII(...); - * $finalizedProposals = $adexchangebuyer2Service->finalizedProposals; - * - */ -class Google_Service_AdExchangeBuyerII_Resource_AccountsFinalizedProposals extends Google_Service_Resource -{ - /** - * List finalized proposals, regardless if a proposal is being renegotiated. A - * filter expression (PQL query) may be specified to filter the results. The - * notes will not be returned. - * (finalizedProposals.listAccountsFinalizedProposals) - * - * @param string $accountId Account ID of the buyer. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The page token as returned from - * ListProposalsResponse. - * @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 filterSyntax Syntax the filter is written in. Current - * implementation defaults to PQL but in the future it will be LIST_FILTER. - * @opt_param string filter An optional PQL filter query used to query for - * proposals. - * - * Nested repeated fields, such as proposal.deals.targetingCriterion, cannot be - * filtered. - * @return Google_Service_AdExchangeBuyerII_ListProposalsResponse - */ - public function listAccountsFinalizedProposals($accountId, $optParams = array()) - { - $params = array('accountId' => $accountId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdExchangeBuyerII_ListProposalsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/AccountsProducts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/AccountsProducts.php deleted file mode 100644 index 04453f5e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/AccountsProducts.php +++ /dev/null @@ -1,68 +0,0 @@ - - * $adexchangebuyer2Service = new Google_Service_AdExchangeBuyerII(...); - * $products = $adexchangebuyer2Service->products; - * - */ -class Google_Service_AdExchangeBuyerII_Resource_AccountsProducts extends Google_Service_Resource -{ - /** - * Gets the requested product by ID. (products.get) - * - * @param string $accountId Account ID of the buyer. - * @param string $productId The ID for the product to get the head revision for. - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeBuyerII_Product - */ - public function get($accountId, $productId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'productId' => $productId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AdExchangeBuyerII_Product"); - } - /** - * List all products visible to the buyer (optionally filtered by the specified - * PQL query). (products.listAccountsProducts) - * - * @param string $accountId Account ID of the buyer. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The page token as returned from - * ListProductsResponse. - * @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 filter An optional PQL query used to query for products. - * See https://developers.google.com/ad-manager/docs/pqlreference for - * documentation about PQL and examples. - * - * Nested repeated fields, such as product.targetingCriterion.inclusions, cannot - * be filtered. - * @return Google_Service_AdExchangeBuyerII_ListProductsResponse - */ - public function listAccountsProducts($accountId, $optParams = array()) - { - $params = array('accountId' => $accountId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdExchangeBuyerII_ListProductsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/AccountsProposals.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/AccountsProposals.php deleted file mode 100644 index 16a8be43..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/AccountsProposals.php +++ /dev/null @@ -1,232 +0,0 @@ - - * $adexchangebuyer2Service = new Google_Service_AdExchangeBuyerII(...); - * $proposals = $adexchangebuyer2Service->proposals; - * - */ -class Google_Service_AdExchangeBuyerII_Resource_AccountsProposals extends Google_Service_Resource -{ - /** - * Mark the proposal as accepted at the given revision number. If the number - * does not match the server's revision number an `ABORTED` error message will - * be returned. This call updates the proposal_state from `PROPOSED` to - * `BUYER_ACCEPTED`, or from `SELLER_ACCEPTED` to `FINALIZED`. - * (proposals.accept) - * - * @param string $accountId Account ID of the buyer. - * @param string $proposalId The ID of the proposal to accept. - * @param Google_Service_AdExchangeBuyerII_AcceptProposalRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeBuyerII_Proposal - */ - public function accept($accountId, $proposalId, Google_Service_AdExchangeBuyerII_AcceptProposalRequest $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'proposalId' => $proposalId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('accept', array($params), "Google_Service_AdExchangeBuyerII_Proposal"); - } - /** - * Create a new note and attach it to the proposal. The note is assigned a - * unique ID by the server. The proposal revision number will not increase when - * associated with a new note. (proposals.addNote) - * - * @param string $accountId Account ID of the buyer. - * @param string $proposalId The ID of the proposal to attach the note to. - * @param Google_Service_AdExchangeBuyerII_AddNoteRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeBuyerII_Note - */ - public function addNote($accountId, $proposalId, Google_Service_AdExchangeBuyerII_AddNoteRequest $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'proposalId' => $proposalId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('addNote', array($params), "Google_Service_AdExchangeBuyerII_Note"); - } - /** - * Cancel an ongoing negotiation on a proposal. This does not cancel or end - * serving for the deals if the proposal has been finalized, but only cancels a - * negotiation unilaterally. (proposals.cancelNegotiation) - * - * @param string $accountId Account ID of the buyer. - * @param string $proposalId The ID of the proposal to cancel negotiation for. - * @param Google_Service_AdExchangeBuyerII_CancelNegotiationRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeBuyerII_Proposal - */ - public function cancelNegotiation($accountId, $proposalId, Google_Service_AdExchangeBuyerII_CancelNegotiationRequest $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'proposalId' => $proposalId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('cancelNegotiation', array($params), "Google_Service_AdExchangeBuyerII_Proposal"); - } - /** - * Update the given proposal to indicate that setup has been completed. This - * method is called by the buyer when the line items have been created on their - * end for a finalized proposal and all the required creatives have been - * uploaded using the creatives API. This call updates the `is_setup_completed` - * bit on the proposal and also notifies the seller. The server will advance the - * revision number of the most recent proposal. (proposals.completeSetup) - * - * @param string $accountId Account ID of the buyer. - * @param string $proposalId The ID of the proposal to mark as setup completed. - * @param Google_Service_AdExchangeBuyerII_CompleteSetupRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeBuyerII_Proposal - */ - public function completeSetup($accountId, $proposalId, Google_Service_AdExchangeBuyerII_CompleteSetupRequest $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'proposalId' => $proposalId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('completeSetup', array($params), "Google_Service_AdExchangeBuyerII_Proposal"); - } - /** - * Create the given proposal. Each created proposal and any deals it contains - * are assigned a unique ID by the server. (proposals.create) - * - * @param string $accountId Account ID of the buyer. - * @param Google_Service_AdExchangeBuyerII_Proposal $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeBuyerII_Proposal - */ - public function create($accountId, Google_Service_AdExchangeBuyerII_Proposal $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_AdExchangeBuyerII_Proposal"); - } - /** - * Gets a proposal given its ID. The proposal is returned at its head revision. - * (proposals.get) - * - * @param string $accountId Account ID of the buyer. - * @param string $proposalId The unique ID of the proposal - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeBuyerII_Proposal - */ - public function get($accountId, $proposalId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'proposalId' => $proposalId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AdExchangeBuyerII_Proposal"); - } - /** - * List proposals. A filter expression (PQL query) may be specified to filter - * the results. To retrieve all finalized proposals, regardless if a proposal is - * being renegotiated, see the FinalizedProposals resource. Note that - * Bidder/ChildSeat relationships differ from the usual behavior. A Bidder - * account can only see its child seats' proposals by specifying the ChildSeat's - * accountId in the request path. (proposals.listAccountsProposals) - * - * @param string $accountId Account ID of the buyer. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The page token as returned from - * ListProposalsResponse. - * @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 filterSyntax Syntax the filter is written in. Current - * implementation defaults to PQL but in the future it will be LIST_FILTER. - * @opt_param string filter An optional PQL filter query used to query for - * proposals. - * - * Nested repeated fields, such as proposal.deals.targetingCriterion, cannot be - * filtered. - * @return Google_Service_AdExchangeBuyerII_ListProposalsResponse - */ - public function listAccountsProposals($accountId, $optParams = array()) - { - $params = array('accountId' => $accountId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdExchangeBuyerII_ListProposalsResponse"); - } - /** - * Update the given proposal to pause serving. This method will set the - * `DealServingMetadata.DealPauseStatus.has_buyer_paused` bit to true for all - * deals in the proposal. - * - * It is a no-op to pause an already-paused proposal. It is an error to call - * PauseProposal for a proposal that is not finalized or renegotiating. - * (proposals.pause) - * - * @param string $accountId Account ID of the buyer. - * @param string $proposalId The ID of the proposal to pause. - * @param Google_Service_AdExchangeBuyerII_PauseProposalRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeBuyerII_Proposal - */ - public function pause($accountId, $proposalId, Google_Service_AdExchangeBuyerII_PauseProposalRequest $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'proposalId' => $proposalId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('pause', array($params), "Google_Service_AdExchangeBuyerII_Proposal"); - } - /** - * Update the given proposal to resume serving. This method will set the - * `DealServingMetadata.DealPauseStatus.has_buyer_paused` bit to false for all - * deals in the proposal. - * - * Note that if the `has_seller_paused` bit is also set, serving will not resume - * until the seller also resumes. - * - * It is a no-op to resume an already-running proposal. It is an error to call - * ResumeProposal for a proposal that is not finalized or renegotiating. - * (proposals.resume) - * - * @param string $accountId Account ID of the buyer. - * @param string $proposalId The ID of the proposal to resume. - * @param Google_Service_AdExchangeBuyerII_ResumeProposalRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeBuyerII_Proposal - */ - public function resume($accountId, $proposalId, Google_Service_AdExchangeBuyerII_ResumeProposalRequest $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'proposalId' => $proposalId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('resume', array($params), "Google_Service_AdExchangeBuyerII_Proposal"); - } - /** - * Update the given proposal at the client known revision number. If the server - * revision has advanced since the passed-in `proposal.proposal_revision`, an - * `ABORTED` error message will be returned. Only the buyer-modifiable fields of - * the proposal will be updated. - * - * Note that the deals in the proposal will be updated to match the passed-in - * copy. If a passed-in deal does not have a `deal_id`, the server will assign a - * new unique ID and create the deal. If passed-in deal has a `deal_id`, it will - * be updated to match the passed-in copy. Any existing deals not present in the - * passed-in proposal will be deleted. It is an error to pass in a deal with a - * `deal_id` not present at head. (proposals.update) - * - * @param string $accountId Account ID of the buyer. - * @param string $proposalId The unique ID of the proposal. - * @param Google_Service_AdExchangeBuyerII_Proposal $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeBuyerII_Proposal - */ - public function update($accountId, $proposalId, Google_Service_AdExchangeBuyerII_Proposal $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'proposalId' => $proposalId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_AdExchangeBuyerII_Proposal"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/AccountsPublisherProfiles.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/AccountsPublisherProfiles.php deleted file mode 100644 index 8f5359ed..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/AccountsPublisherProfiles.php +++ /dev/null @@ -1,60 +0,0 @@ - - * $adexchangebuyer2Service = new Google_Service_AdExchangeBuyerII(...); - * $publisherProfiles = $adexchangebuyer2Service->publisherProfiles; - * - */ -class Google_Service_AdExchangeBuyerII_Resource_AccountsPublisherProfiles extends Google_Service_Resource -{ - /** - * Gets the requested publisher profile by id. (publisherProfiles.get) - * - * @param string $accountId Account ID of the buyer. - * @param string $publisherProfileId The id for the publisher profile to get. - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeBuyerII_PublisherProfile - */ - public function get($accountId, $publisherProfileId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'publisherProfileId' => $publisherProfileId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AdExchangeBuyerII_PublisherProfile"); - } - /** - * List all publisher profiles visible to the buyer - * (publisherProfiles.listAccountsPublisherProfiles) - * - * @param string $accountId Account ID of the buyer. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The page token as return from - * ListPublisherProfilesResponse. - * @opt_param int pageSize Specify the number of results to include per page. - * @return Google_Service_AdExchangeBuyerII_ListPublisherProfilesResponse - */ - public function listAccountsPublisherProfiles($accountId, $optParams = array()) - { - $params = array('accountId' => $accountId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdExchangeBuyerII_ListPublisherProfilesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/Bidders.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/Bidders.php deleted file mode 100644 index c99222c7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/Bidders.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $adexchangebuyer2Service = new Google_Service_AdExchangeBuyerII(...); - * $bidders = $adexchangebuyer2Service->bidders; - * - */ -class Google_Service_AdExchangeBuyerII_Resource_Bidders extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersAccounts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersAccounts.php deleted file mode 100644 index d5d68042..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersAccounts.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $adexchangebuyer2Service = new Google_Service_AdExchangeBuyerII(...); - * $accounts = $adexchangebuyer2Service->accounts; - * - */ -class Google_Service_AdExchangeBuyerII_Resource_BiddersAccounts extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersAccountsFilterSets.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersAccountsFilterSets.php deleted file mode 100644 index 0665ad65..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersAccountsFilterSets.php +++ /dev/null @@ -1,133 +0,0 @@ - - * $adexchangebuyer2Service = new Google_Service_AdExchangeBuyerII(...); - * $filterSets = $adexchangebuyer2Service->filterSets; - * - */ -class Google_Service_AdExchangeBuyerII_Resource_BiddersAccountsFilterSets extends Google_Service_Resource -{ - /** - * Creates the specified filter set for the account with the given account ID. - * (filterSets.create) - * - * @param string $ownerName Name of the owner (bidder or account) of the filter - * set to be created. For example: - * - * - For a bidder-level filter set for bidder 123: `bidders/123` - * - * - For an account-level filter set for the buyer account representing bidder - * 123: `bidders/123/accounts/123` - * - * - For an account-level filter set for the child seat buyer account 456 - * whose bidder is 123: `bidders/123/accounts/456` - * @param Google_Service_AdExchangeBuyerII_FilterSet $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool isTransient Whether the filter set is transient, or should be - * persisted indefinitely. By default, filter sets are not transient. If - * transient, it will be available for at least 1 hour after creation. - * @return Google_Service_AdExchangeBuyerII_FilterSet - */ - public function create($ownerName, Google_Service_AdExchangeBuyerII_FilterSet $postBody, $optParams = array()) - { - $params = array('ownerName' => $ownerName, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_AdExchangeBuyerII_FilterSet"); - } - /** - * Deletes the requested filter set from the account with the given account ID. - * (filterSets.delete) - * - * @param string $name Full name of the resource to delete. For example: - * - * - For a bidder-level filter set for bidder 123: - * `bidders/123/filterSets/abc` - * - * - For an account-level filter set for the buyer account representing bidder - * 123: `bidders/123/accounts/123/filterSets/abc` - * - * - For an account-level filter set for the child seat buyer account 456 - * whose bidder is 123: `bidders/123/accounts/456/filterSets/abc` - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeBuyerII_Adexchangebuyer2Empty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_AdExchangeBuyerII_Adexchangebuyer2Empty"); - } - /** - * Retrieves the requested filter set for the account with the given account ID. - * (filterSets.get) - * - * @param string $name Full name of the resource being requested. For example: - * - * - For a bidder-level filter set for bidder 123: - * `bidders/123/filterSets/abc` - * - * - For an account-level filter set for the buyer account representing bidder - * 123: `bidders/123/accounts/123/filterSets/abc` - * - * - For an account-level filter set for the child seat buyer account 456 - * whose bidder is 123: `bidders/123/accounts/456/filterSets/abc` - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeBuyerII_FilterSet - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AdExchangeBuyerII_FilterSet"); - } - /** - * Lists all filter sets for the account with the given account ID. - * (filterSets.listBiddersAccountsFilterSets) - * - * @param string $ownerName Name of the owner (bidder or account) of the filter - * sets to be listed. For example: - * - * - For a bidder-level filter set for bidder 123: `bidders/123` - * - * - For an account-level filter set for the buyer account representing bidder - * 123: `bidders/123/accounts/123` - * - * - For an account-level filter set for the child seat buyer account 456 - * whose bidder is 123: `bidders/123/accounts/456` - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A token identifying a page of results the server - * should return. Typically, this is the value of - * ListFilterSetsResponse.nextPageToken returned from the previous call to the - * accounts.filterSets.list method. - * @opt_param int pageSize Requested page size. The server may return fewer - * results than requested. If unspecified, the server will pick an appropriate - * default. - * @return Google_Service_AdExchangeBuyerII_ListFilterSetsResponse - */ - public function listBiddersAccountsFilterSets($ownerName, $optParams = array()) - { - $params = array('ownerName' => $ownerName); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdExchangeBuyerII_ListFilterSetsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersAccountsFilterSetsBidMetrics.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersAccountsFilterSetsBidMetrics.php deleted file mode 100644 index b8957bcf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersAccountsFilterSetsBidMetrics.php +++ /dev/null @@ -1,60 +0,0 @@ - - * $adexchangebuyer2Service = new Google_Service_AdExchangeBuyerII(...); - * $bidMetrics = $adexchangebuyer2Service->bidMetrics; - * - */ -class Google_Service_AdExchangeBuyerII_Resource_BiddersAccountsFilterSetsBidMetrics extends Google_Service_Resource -{ - /** - * Lists all metrics that are measured in terms of number of bids. - * (bidMetrics.listBiddersAccountsFilterSetsBidMetrics) - * - * @param string $filterSetName Name of the filter set that should be applied to - * the requested metrics. For example: - * - * - For a bidder-level filter set for bidder 123: - * `bidders/123/filterSets/abc` - * - * - For an account-level filter set for the buyer account representing bidder - * 123: `bidders/123/accounts/123/filterSets/abc` - * - * - For an account-level filter set for the child seat buyer account 456 - * whose bidder is 123: `bidders/123/accounts/456/filterSets/abc` - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A token identifying a page of results the server - * should return. Typically, this is the value of - * ListBidMetricsResponse.nextPageToken returned from the previous call to the - * bidMetrics.list method. - * @opt_param int pageSize Requested page size. The server may return fewer - * results than requested. If unspecified, the server will pick an appropriate - * default. - * @return Google_Service_AdExchangeBuyerII_ListBidMetricsResponse - */ - public function listBiddersAccountsFilterSetsBidMetrics($filterSetName, $optParams = array()) - { - $params = array('filterSetName' => $filterSetName); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdExchangeBuyerII_ListBidMetricsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersAccountsFilterSetsBidResponseErrors.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersAccountsFilterSetsBidResponseErrors.php deleted file mode 100644 index a03da958..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersAccountsFilterSetsBidResponseErrors.php +++ /dev/null @@ -1,61 +0,0 @@ - - * $adexchangebuyer2Service = new Google_Service_AdExchangeBuyerII(...); - * $bidResponseErrors = $adexchangebuyer2Service->bidResponseErrors; - * - */ -class Google_Service_AdExchangeBuyerII_Resource_BiddersAccountsFilterSetsBidResponseErrors extends Google_Service_Resource -{ - /** - * List all errors that occurred in bid responses, with the number of bid - * responses affected for each reason. - * (bidResponseErrors.listBiddersAccountsFilterSetsBidResponseErrors) - * - * @param string $filterSetName Name of the filter set that should be applied to - * the requested metrics. For example: - * - * - For a bidder-level filter set for bidder 123: - * `bidders/123/filterSets/abc` - * - * - For an account-level filter set for the buyer account representing bidder - * 123: `bidders/123/accounts/123/filterSets/abc` - * - * - For an account-level filter set for the child seat buyer account 456 - * whose bidder is 123: `bidders/123/accounts/456/filterSets/abc` - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A token identifying a page of results the server - * should return. Typically, this is the value of - * ListBidResponseErrorsResponse.nextPageToken returned from the previous call - * to the bidResponseErrors.list method. - * @opt_param int pageSize Requested page size. The server may return fewer - * results than requested. If unspecified, the server will pick an appropriate - * default. - * @return Google_Service_AdExchangeBuyerII_ListBidResponseErrorsResponse - */ - public function listBiddersAccountsFilterSetsBidResponseErrors($filterSetName, $optParams = array()) - { - $params = array('filterSetName' => $filterSetName); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdExchangeBuyerII_ListBidResponseErrorsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersAccountsFilterSetsBidResponsesWithoutBids.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersAccountsFilterSetsBidResponsesWithoutBids.php deleted file mode 100644 index 41ea3617..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersAccountsFilterSetsBidResponsesWithoutBids.php +++ /dev/null @@ -1,61 +0,0 @@ - - * $adexchangebuyer2Service = new Google_Service_AdExchangeBuyerII(...); - * $bidResponsesWithoutBids = $adexchangebuyer2Service->bidResponsesWithoutBids; - * - */ -class Google_Service_AdExchangeBuyerII_Resource_BiddersAccountsFilterSetsBidResponsesWithoutBids extends Google_Service_Resource -{ - /** - * List all reasons for which bid responses were considered to have no - * applicable bids, with the number of bid responses affected for each reason. ( - * bidResponsesWithoutBids.listBiddersAccountsFilterSetsBidResponsesWithoutBids) - * - * @param string $filterSetName Name of the filter set that should be applied to - * the requested metrics. For example: - * - * - For a bidder-level filter set for bidder 123: - * `bidders/123/filterSets/abc` - * - * - For an account-level filter set for the buyer account representing bidder - * 123: `bidders/123/accounts/123/filterSets/abc` - * - * - For an account-level filter set for the child seat buyer account 456 - * whose bidder is 123: `bidders/123/accounts/456/filterSets/abc` - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A token identifying a page of results the server - * should return. Typically, this is the value of - * ListBidResponsesWithoutBidsResponse.nextPageToken returned from the previous - * call to the bidResponsesWithoutBids.list method. - * @opt_param int pageSize Requested page size. The server may return fewer - * results than requested. If unspecified, the server will pick an appropriate - * default. - * @return Google_Service_AdExchangeBuyerII_ListBidResponsesWithoutBidsResponse - */ - public function listBiddersAccountsFilterSetsBidResponsesWithoutBids($filterSetName, $optParams = array()) - { - $params = array('filterSetName' => $filterSetName); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdExchangeBuyerII_ListBidResponsesWithoutBidsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersAccountsFilterSetsFilteredBidRequests.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersAccountsFilterSetsFilteredBidRequests.php deleted file mode 100644 index be84f35c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersAccountsFilterSetsFilteredBidRequests.php +++ /dev/null @@ -1,61 +0,0 @@ - - * $adexchangebuyer2Service = new Google_Service_AdExchangeBuyerII(...); - * $filteredBidRequests = $adexchangebuyer2Service->filteredBidRequests; - * - */ -class Google_Service_AdExchangeBuyerII_Resource_BiddersAccountsFilterSetsFilteredBidRequests extends Google_Service_Resource -{ - /** - * List all reasons that caused a bid request not to be sent for an impression, - * with the number of bid requests not sent for each reason. - * (filteredBidRequests.listBiddersAccountsFilterSetsFilteredBidRequests) - * - * @param string $filterSetName Name of the filter set that should be applied to - * the requested metrics. For example: - * - * - For a bidder-level filter set for bidder 123: - * `bidders/123/filterSets/abc` - * - * - For an account-level filter set for the buyer account representing bidder - * 123: `bidders/123/accounts/123/filterSets/abc` - * - * - For an account-level filter set for the child seat buyer account 456 - * whose bidder is 123: `bidders/123/accounts/456/filterSets/abc` - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A token identifying a page of results the server - * should return. Typically, this is the value of - * ListFilteredBidRequestsResponse.nextPageToken returned from the previous call - * to the filteredBidRequests.list method. - * @opt_param int pageSize Requested page size. The server may return fewer - * results than requested. If unspecified, the server will pick an appropriate - * default. - * @return Google_Service_AdExchangeBuyerII_ListFilteredBidRequestsResponse - */ - public function listBiddersAccountsFilterSetsFilteredBidRequests($filterSetName, $optParams = array()) - { - $params = array('filterSetName' => $filterSetName); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdExchangeBuyerII_ListFilteredBidRequestsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersAccountsFilterSetsFilteredBids.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersAccountsFilterSetsFilteredBids.php deleted file mode 100644 index b66a8aee..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersAccountsFilterSetsFilteredBids.php +++ /dev/null @@ -1,61 +0,0 @@ - - * $adexchangebuyer2Service = new Google_Service_AdExchangeBuyerII(...); - * $filteredBids = $adexchangebuyer2Service->filteredBids; - * - */ -class Google_Service_AdExchangeBuyerII_Resource_BiddersAccountsFilterSetsFilteredBids extends Google_Service_Resource -{ - /** - * List all reasons for which bids were filtered, with the number of bids - * filtered for each reason. - * (filteredBids.listBiddersAccountsFilterSetsFilteredBids) - * - * @param string $filterSetName Name of the filter set that should be applied to - * the requested metrics. For example: - * - * - For a bidder-level filter set for bidder 123: - * `bidders/123/filterSets/abc` - * - * - For an account-level filter set for the buyer account representing bidder - * 123: `bidders/123/accounts/123/filterSets/abc` - * - * - For an account-level filter set for the child seat buyer account 456 - * whose bidder is 123: `bidders/123/accounts/456/filterSets/abc` - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A token identifying a page of results the server - * should return. Typically, this is the value of - * ListFilteredBidsResponse.nextPageToken returned from the previous call to the - * filteredBids.list method. - * @opt_param int pageSize Requested page size. The server may return fewer - * results than requested. If unspecified, the server will pick an appropriate - * default. - * @return Google_Service_AdExchangeBuyerII_ListFilteredBidsResponse - */ - public function listBiddersAccountsFilterSetsFilteredBids($filterSetName, $optParams = array()) - { - $params = array('filterSetName' => $filterSetName); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdExchangeBuyerII_ListFilteredBidsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersAccountsFilterSetsFilteredBidsCreatives.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersAccountsFilterSetsFilteredBidsCreatives.php deleted file mode 100644 index 9590d086..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersAccountsFilterSetsFilteredBidsCreatives.php +++ /dev/null @@ -1,65 +0,0 @@ - - * $adexchangebuyer2Service = new Google_Service_AdExchangeBuyerII(...); - * $creatives = $adexchangebuyer2Service->creatives; - * - */ -class Google_Service_AdExchangeBuyerII_Resource_BiddersAccountsFilterSetsFilteredBidsCreatives extends Google_Service_Resource -{ - /** - * List all creatives associated with a specific reason for which bids were - * filtered, with the number of bids filtered for each creative. - * (creatives.listBiddersAccountsFilterSetsFilteredBidsCreatives) - * - * @param string $filterSetName Name of the filter set that should be applied to - * the requested metrics. For example: - * - * - For a bidder-level filter set for bidder 123: - * `bidders/123/filterSets/abc` - * - * - For an account-level filter set for the buyer account representing bidder - * 123: `bidders/123/accounts/123/filterSets/abc` - * - * - For an account-level filter set for the child seat buyer account 456 - * whose bidder is 123: `bidders/123/accounts/456/filterSets/abc` - * @param int $creativeStatusId The ID of the creative status for which to - * retrieve a breakdown by creative. See [creative-status- - * codes](https://developers.google.com/authorized-buyers/rtb/downloads - * /creative-status-codes). - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A token identifying a page of results the server - * should return. Typically, this is the value of - * ListCreativeStatusBreakdownByCreativeResponse.nextPageToken returned from the - * previous call to the filteredBids.creatives.list method. - * @opt_param int pageSize Requested page size. The server may return fewer - * results than requested. If unspecified, the server will pick an appropriate - * default. - * @return Google_Service_AdExchangeBuyerII_ListCreativeStatusBreakdownByCreativeResponse - */ - public function listBiddersAccountsFilterSetsFilteredBidsCreatives($filterSetName, $creativeStatusId, $optParams = array()) - { - $params = array('filterSetName' => $filterSetName, 'creativeStatusId' => $creativeStatusId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdExchangeBuyerII_ListCreativeStatusBreakdownByCreativeResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersAccountsFilterSetsFilteredBidsDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersAccountsFilterSetsFilteredBidsDetails.php deleted file mode 100644 index 366027c2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersAccountsFilterSetsFilteredBidsDetails.php +++ /dev/null @@ -1,66 +0,0 @@ - - * $adexchangebuyer2Service = new Google_Service_AdExchangeBuyerII(...); - * $details = $adexchangebuyer2Service->details; - * - */ -class Google_Service_AdExchangeBuyerII_Resource_BiddersAccountsFilterSetsFilteredBidsDetails extends Google_Service_Resource -{ - /** - * List all details associated with a specific reason for which bids were - * filtered, with the number of bids filtered for each detail. - * (details.listBiddersAccountsFilterSetsFilteredBidsDetails) - * - * @param string $filterSetName Name of the filter set that should be applied to - * the requested metrics. For example: - * - * - For a bidder-level filter set for bidder 123: - * `bidders/123/filterSets/abc` - * - * - For an account-level filter set for the buyer account representing bidder - * 123: `bidders/123/accounts/123/filterSets/abc` - * - * - For an account-level filter set for the child seat buyer account 456 - * whose bidder is 123: `bidders/123/accounts/456/filterSets/abc` - * @param int $creativeStatusId The ID of the creative status for which to - * retrieve a breakdown by detail. See [creative-status- - * codes](https://developers.google.com/authorized-buyers/rtb/downloads - * /creative-status-codes). Details are only available for statuses 10, 14, 15, - * 17, 18, 19, 86, and 87. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A token identifying a page of results the server - * should return. Typically, this is the value of - * ListCreativeStatusBreakdownByDetailResponse.nextPageToken returned from the - * previous call to the filteredBids.details.list method. - * @opt_param int pageSize Requested page size. The server may return fewer - * results than requested. If unspecified, the server will pick an appropriate - * default. - * @return Google_Service_AdExchangeBuyerII_ListCreativeStatusBreakdownByDetailResponse - */ - public function listBiddersAccountsFilterSetsFilteredBidsDetails($filterSetName, $creativeStatusId, $optParams = array()) - { - $params = array('filterSetName' => $filterSetName, 'creativeStatusId' => $creativeStatusId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdExchangeBuyerII_ListCreativeStatusBreakdownByDetailResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersAccountsFilterSetsImpressionMetrics.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersAccountsFilterSetsImpressionMetrics.php deleted file mode 100644 index f9d7830d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersAccountsFilterSetsImpressionMetrics.php +++ /dev/null @@ -1,60 +0,0 @@ - - * $adexchangebuyer2Service = new Google_Service_AdExchangeBuyerII(...); - * $impressionMetrics = $adexchangebuyer2Service->impressionMetrics; - * - */ -class Google_Service_AdExchangeBuyerII_Resource_BiddersAccountsFilterSetsImpressionMetrics extends Google_Service_Resource -{ - /** - * Lists all metrics that are measured in terms of number of impressions. - * (impressionMetrics.listBiddersAccountsFilterSetsImpressionMetrics) - * - * @param string $filterSetName Name of the filter set that should be applied to - * the requested metrics. For example: - * - * - For a bidder-level filter set for bidder 123: - * `bidders/123/filterSets/abc` - * - * - For an account-level filter set for the buyer account representing bidder - * 123: `bidders/123/accounts/123/filterSets/abc` - * - * - For an account-level filter set for the child seat buyer account 456 - * whose bidder is 123: `bidders/123/accounts/456/filterSets/abc` - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A token identifying a page of results the server - * should return. Typically, this is the value of - * ListImpressionMetricsResponse.nextPageToken returned from the previous call - * to the impressionMetrics.list method. - * @opt_param int pageSize Requested page size. The server may return fewer - * results than requested. If unspecified, the server will pick an appropriate - * default. - * @return Google_Service_AdExchangeBuyerII_ListImpressionMetricsResponse - */ - public function listBiddersAccountsFilterSetsImpressionMetrics($filterSetName, $optParams = array()) - { - $params = array('filterSetName' => $filterSetName); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdExchangeBuyerII_ListImpressionMetricsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersAccountsFilterSetsLosingBids.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersAccountsFilterSetsLosingBids.php deleted file mode 100644 index 5a22700d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersAccountsFilterSetsLosingBids.php +++ /dev/null @@ -1,61 +0,0 @@ - - * $adexchangebuyer2Service = new Google_Service_AdExchangeBuyerII(...); - * $losingBids = $adexchangebuyer2Service->losingBids; - * - */ -class Google_Service_AdExchangeBuyerII_Resource_BiddersAccountsFilterSetsLosingBids extends Google_Service_Resource -{ - /** - * List all reasons for which bids lost in the auction, with the number of bids - * that lost for each reason. - * (losingBids.listBiddersAccountsFilterSetsLosingBids) - * - * @param string $filterSetName Name of the filter set that should be applied to - * the requested metrics. For example: - * - * - For a bidder-level filter set for bidder 123: - * `bidders/123/filterSets/abc` - * - * - For an account-level filter set for the buyer account representing bidder - * 123: `bidders/123/accounts/123/filterSets/abc` - * - * - For an account-level filter set for the child seat buyer account 456 - * whose bidder is 123: `bidders/123/accounts/456/filterSets/abc` - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A token identifying a page of results the server - * should return. Typically, this is the value of - * ListLosingBidsResponse.nextPageToken returned from the previous call to the - * losingBids.list method. - * @opt_param int pageSize Requested page size. The server may return fewer - * results than requested. If unspecified, the server will pick an appropriate - * default. - * @return Google_Service_AdExchangeBuyerII_ListLosingBidsResponse - */ - public function listBiddersAccountsFilterSetsLosingBids($filterSetName, $optParams = array()) - { - $params = array('filterSetName' => $filterSetName); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdExchangeBuyerII_ListLosingBidsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersAccountsFilterSetsNonBillableWinningBids.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersAccountsFilterSetsNonBillableWinningBids.php deleted file mode 100644 index 3b1865ed..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersAccountsFilterSetsNonBillableWinningBids.php +++ /dev/null @@ -1,61 +0,0 @@ - - * $adexchangebuyer2Service = new Google_Service_AdExchangeBuyerII(...); - * $nonBillableWinningBids = $adexchangebuyer2Service->nonBillableWinningBids; - * - */ -class Google_Service_AdExchangeBuyerII_Resource_BiddersAccountsFilterSetsNonBillableWinningBids extends Google_Service_Resource -{ - /** - * List all reasons for which winning bids were not billable, with the number of - * bids not billed for each reason. - * (nonBillableWinningBids.listBiddersAccountsFilterSetsNonBillableWinningBids) - * - * @param string $filterSetName Name of the filter set that should be applied to - * the requested metrics. For example: - * - * - For a bidder-level filter set for bidder 123: - * `bidders/123/filterSets/abc` - * - * - For an account-level filter set for the buyer account representing bidder - * 123: `bidders/123/accounts/123/filterSets/abc` - * - * - For an account-level filter set for the child seat buyer account 456 - * whose bidder is 123: `bidders/123/accounts/456/filterSets/abc` - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A token identifying a page of results the server - * should return. Typically, this is the value of - * ListNonBillableWinningBidsResponse.nextPageToken returned from the previous - * call to the nonBillableWinningBids.list method. - * @opt_param int pageSize Requested page size. The server may return fewer - * results than requested. If unspecified, the server will pick an appropriate - * default. - * @return Google_Service_AdExchangeBuyerII_ListNonBillableWinningBidsResponse - */ - public function listBiddersAccountsFilterSetsNonBillableWinningBids($filterSetName, $optParams = array()) - { - $params = array('filterSetName' => $filterSetName); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdExchangeBuyerII_ListNonBillableWinningBidsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersFilterSets.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersFilterSets.php deleted file mode 100644 index 2d54c2a7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersFilterSets.php +++ /dev/null @@ -1,133 +0,0 @@ - - * $adexchangebuyer2Service = new Google_Service_AdExchangeBuyerII(...); - * $filterSets = $adexchangebuyer2Service->filterSets; - * - */ -class Google_Service_AdExchangeBuyerII_Resource_BiddersFilterSets extends Google_Service_Resource -{ - /** - * Creates the specified filter set for the account with the given account ID. - * (filterSets.create) - * - * @param string $ownerName Name of the owner (bidder or account) of the filter - * set to be created. For example: - * - * - For a bidder-level filter set for bidder 123: `bidders/123` - * - * - For an account-level filter set for the buyer account representing bidder - * 123: `bidders/123/accounts/123` - * - * - For an account-level filter set for the child seat buyer account 456 - * whose bidder is 123: `bidders/123/accounts/456` - * @param Google_Service_AdExchangeBuyerII_FilterSet $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool isTransient Whether the filter set is transient, or should be - * persisted indefinitely. By default, filter sets are not transient. If - * transient, it will be available for at least 1 hour after creation. - * @return Google_Service_AdExchangeBuyerII_FilterSet - */ - public function create($ownerName, Google_Service_AdExchangeBuyerII_FilterSet $postBody, $optParams = array()) - { - $params = array('ownerName' => $ownerName, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_AdExchangeBuyerII_FilterSet"); - } - /** - * Deletes the requested filter set from the account with the given account ID. - * (filterSets.delete) - * - * @param string $name Full name of the resource to delete. For example: - * - * - For a bidder-level filter set for bidder 123: - * `bidders/123/filterSets/abc` - * - * - For an account-level filter set for the buyer account representing bidder - * 123: `bidders/123/accounts/123/filterSets/abc` - * - * - For an account-level filter set for the child seat buyer account 456 - * whose bidder is 123: `bidders/123/accounts/456/filterSets/abc` - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeBuyerII_Adexchangebuyer2Empty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_AdExchangeBuyerII_Adexchangebuyer2Empty"); - } - /** - * Retrieves the requested filter set for the account with the given account ID. - * (filterSets.get) - * - * @param string $name Full name of the resource being requested. For example: - * - * - For a bidder-level filter set for bidder 123: - * `bidders/123/filterSets/abc` - * - * - For an account-level filter set for the buyer account representing bidder - * 123: `bidders/123/accounts/123/filterSets/abc` - * - * - For an account-level filter set for the child seat buyer account 456 - * whose bidder is 123: `bidders/123/accounts/456/filterSets/abc` - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeBuyerII_FilterSet - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AdExchangeBuyerII_FilterSet"); - } - /** - * Lists all filter sets for the account with the given account ID. - * (filterSets.listBiddersFilterSets) - * - * @param string $ownerName Name of the owner (bidder or account) of the filter - * sets to be listed. For example: - * - * - For a bidder-level filter set for bidder 123: `bidders/123` - * - * - For an account-level filter set for the buyer account representing bidder - * 123: `bidders/123/accounts/123` - * - * - For an account-level filter set for the child seat buyer account 456 - * whose bidder is 123: `bidders/123/accounts/456` - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A token identifying a page of results the server - * should return. Typically, this is the value of - * ListFilterSetsResponse.nextPageToken returned from the previous call to the - * accounts.filterSets.list method. - * @opt_param int pageSize Requested page size. The server may return fewer - * results than requested. If unspecified, the server will pick an appropriate - * default. - * @return Google_Service_AdExchangeBuyerII_ListFilterSetsResponse - */ - public function listBiddersFilterSets($ownerName, $optParams = array()) - { - $params = array('ownerName' => $ownerName); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdExchangeBuyerII_ListFilterSetsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersFilterSetsBidMetrics.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersFilterSetsBidMetrics.php deleted file mode 100644 index 00b3cd8a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersFilterSetsBidMetrics.php +++ /dev/null @@ -1,60 +0,0 @@ - - * $adexchangebuyer2Service = new Google_Service_AdExchangeBuyerII(...); - * $bidMetrics = $adexchangebuyer2Service->bidMetrics; - * - */ -class Google_Service_AdExchangeBuyerII_Resource_BiddersFilterSetsBidMetrics extends Google_Service_Resource -{ - /** - * Lists all metrics that are measured in terms of number of bids. - * (bidMetrics.listBiddersFilterSetsBidMetrics) - * - * @param string $filterSetName Name of the filter set that should be applied to - * the requested metrics. For example: - * - * - For a bidder-level filter set for bidder 123: - * `bidders/123/filterSets/abc` - * - * - For an account-level filter set for the buyer account representing bidder - * 123: `bidders/123/accounts/123/filterSets/abc` - * - * - For an account-level filter set for the child seat buyer account 456 - * whose bidder is 123: `bidders/123/accounts/456/filterSets/abc` - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A token identifying a page of results the server - * should return. Typically, this is the value of - * ListBidMetricsResponse.nextPageToken returned from the previous call to the - * bidMetrics.list method. - * @opt_param int pageSize Requested page size. The server may return fewer - * results than requested. If unspecified, the server will pick an appropriate - * default. - * @return Google_Service_AdExchangeBuyerII_ListBidMetricsResponse - */ - public function listBiddersFilterSetsBidMetrics($filterSetName, $optParams = array()) - { - $params = array('filterSetName' => $filterSetName); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdExchangeBuyerII_ListBidMetricsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersFilterSetsBidResponseErrors.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersFilterSetsBidResponseErrors.php deleted file mode 100644 index 4b4899ce..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersFilterSetsBidResponseErrors.php +++ /dev/null @@ -1,61 +0,0 @@ - - * $adexchangebuyer2Service = new Google_Service_AdExchangeBuyerII(...); - * $bidResponseErrors = $adexchangebuyer2Service->bidResponseErrors; - * - */ -class Google_Service_AdExchangeBuyerII_Resource_BiddersFilterSetsBidResponseErrors extends Google_Service_Resource -{ - /** - * List all errors that occurred in bid responses, with the number of bid - * responses affected for each reason. - * (bidResponseErrors.listBiddersFilterSetsBidResponseErrors) - * - * @param string $filterSetName Name of the filter set that should be applied to - * the requested metrics. For example: - * - * - For a bidder-level filter set for bidder 123: - * `bidders/123/filterSets/abc` - * - * - For an account-level filter set for the buyer account representing bidder - * 123: `bidders/123/accounts/123/filterSets/abc` - * - * - For an account-level filter set for the child seat buyer account 456 - * whose bidder is 123: `bidders/123/accounts/456/filterSets/abc` - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A token identifying a page of results the server - * should return. Typically, this is the value of - * ListBidResponseErrorsResponse.nextPageToken returned from the previous call - * to the bidResponseErrors.list method. - * @opt_param int pageSize Requested page size. The server may return fewer - * results than requested. If unspecified, the server will pick an appropriate - * default. - * @return Google_Service_AdExchangeBuyerII_ListBidResponseErrorsResponse - */ - public function listBiddersFilterSetsBidResponseErrors($filterSetName, $optParams = array()) - { - $params = array('filterSetName' => $filterSetName); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdExchangeBuyerII_ListBidResponseErrorsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersFilterSetsBidResponsesWithoutBids.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersFilterSetsBidResponsesWithoutBids.php deleted file mode 100644 index 1037ff9e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersFilterSetsBidResponsesWithoutBids.php +++ /dev/null @@ -1,61 +0,0 @@ - - * $adexchangebuyer2Service = new Google_Service_AdExchangeBuyerII(...); - * $bidResponsesWithoutBids = $adexchangebuyer2Service->bidResponsesWithoutBids; - * - */ -class Google_Service_AdExchangeBuyerII_Resource_BiddersFilterSetsBidResponsesWithoutBids extends Google_Service_Resource -{ - /** - * List all reasons for which bid responses were considered to have no - * applicable bids, with the number of bid responses affected for each reason. - * (bidResponsesWithoutBids.listBiddersFilterSetsBidResponsesWithoutBids) - * - * @param string $filterSetName Name of the filter set that should be applied to - * the requested metrics. For example: - * - * - For a bidder-level filter set for bidder 123: - * `bidders/123/filterSets/abc` - * - * - For an account-level filter set for the buyer account representing bidder - * 123: `bidders/123/accounts/123/filterSets/abc` - * - * - For an account-level filter set for the child seat buyer account 456 - * whose bidder is 123: `bidders/123/accounts/456/filterSets/abc` - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A token identifying a page of results the server - * should return. Typically, this is the value of - * ListBidResponsesWithoutBidsResponse.nextPageToken returned from the previous - * call to the bidResponsesWithoutBids.list method. - * @opt_param int pageSize Requested page size. The server may return fewer - * results than requested. If unspecified, the server will pick an appropriate - * default. - * @return Google_Service_AdExchangeBuyerII_ListBidResponsesWithoutBidsResponse - */ - public function listBiddersFilterSetsBidResponsesWithoutBids($filterSetName, $optParams = array()) - { - $params = array('filterSetName' => $filterSetName); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdExchangeBuyerII_ListBidResponsesWithoutBidsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersFilterSetsFilteredBidRequests.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersFilterSetsFilteredBidRequests.php deleted file mode 100644 index b8369b29..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersFilterSetsFilteredBidRequests.php +++ /dev/null @@ -1,61 +0,0 @@ - - * $adexchangebuyer2Service = new Google_Service_AdExchangeBuyerII(...); - * $filteredBidRequests = $adexchangebuyer2Service->filteredBidRequests; - * - */ -class Google_Service_AdExchangeBuyerII_Resource_BiddersFilterSetsFilteredBidRequests extends Google_Service_Resource -{ - /** - * List all reasons that caused a bid request not to be sent for an impression, - * with the number of bid requests not sent for each reason. - * (filteredBidRequests.listBiddersFilterSetsFilteredBidRequests) - * - * @param string $filterSetName Name of the filter set that should be applied to - * the requested metrics. For example: - * - * - For a bidder-level filter set for bidder 123: - * `bidders/123/filterSets/abc` - * - * - For an account-level filter set for the buyer account representing bidder - * 123: `bidders/123/accounts/123/filterSets/abc` - * - * - For an account-level filter set for the child seat buyer account 456 - * whose bidder is 123: `bidders/123/accounts/456/filterSets/abc` - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A token identifying a page of results the server - * should return. Typically, this is the value of - * ListFilteredBidRequestsResponse.nextPageToken returned from the previous call - * to the filteredBidRequests.list method. - * @opt_param int pageSize Requested page size. The server may return fewer - * results than requested. If unspecified, the server will pick an appropriate - * default. - * @return Google_Service_AdExchangeBuyerII_ListFilteredBidRequestsResponse - */ - public function listBiddersFilterSetsFilteredBidRequests($filterSetName, $optParams = array()) - { - $params = array('filterSetName' => $filterSetName); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdExchangeBuyerII_ListFilteredBidRequestsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersFilterSetsFilteredBids.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersFilterSetsFilteredBids.php deleted file mode 100644 index 2cd0c823..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersFilterSetsFilteredBids.php +++ /dev/null @@ -1,60 +0,0 @@ - - * $adexchangebuyer2Service = new Google_Service_AdExchangeBuyerII(...); - * $filteredBids = $adexchangebuyer2Service->filteredBids; - * - */ -class Google_Service_AdExchangeBuyerII_Resource_BiddersFilterSetsFilteredBids extends Google_Service_Resource -{ - /** - * List all reasons for which bids were filtered, with the number of bids - * filtered for each reason. (filteredBids.listBiddersFilterSetsFilteredBids) - * - * @param string $filterSetName Name of the filter set that should be applied to - * the requested metrics. For example: - * - * - For a bidder-level filter set for bidder 123: - * `bidders/123/filterSets/abc` - * - * - For an account-level filter set for the buyer account representing bidder - * 123: `bidders/123/accounts/123/filterSets/abc` - * - * - For an account-level filter set for the child seat buyer account 456 - * whose bidder is 123: `bidders/123/accounts/456/filterSets/abc` - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A token identifying a page of results the server - * should return. Typically, this is the value of - * ListFilteredBidsResponse.nextPageToken returned from the previous call to the - * filteredBids.list method. - * @opt_param int pageSize Requested page size. The server may return fewer - * results than requested. If unspecified, the server will pick an appropriate - * default. - * @return Google_Service_AdExchangeBuyerII_ListFilteredBidsResponse - */ - public function listBiddersFilterSetsFilteredBids($filterSetName, $optParams = array()) - { - $params = array('filterSetName' => $filterSetName); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdExchangeBuyerII_ListFilteredBidsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersFilterSetsFilteredBidsCreatives.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersFilterSetsFilteredBidsCreatives.php deleted file mode 100644 index a6eea79a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersFilterSetsFilteredBidsCreatives.php +++ /dev/null @@ -1,65 +0,0 @@ - - * $adexchangebuyer2Service = new Google_Service_AdExchangeBuyerII(...); - * $creatives = $adexchangebuyer2Service->creatives; - * - */ -class Google_Service_AdExchangeBuyerII_Resource_BiddersFilterSetsFilteredBidsCreatives extends Google_Service_Resource -{ - /** - * List all creatives associated with a specific reason for which bids were - * filtered, with the number of bids filtered for each creative. - * (creatives.listBiddersFilterSetsFilteredBidsCreatives) - * - * @param string $filterSetName Name of the filter set that should be applied to - * the requested metrics. For example: - * - * - For a bidder-level filter set for bidder 123: - * `bidders/123/filterSets/abc` - * - * - For an account-level filter set for the buyer account representing bidder - * 123: `bidders/123/accounts/123/filterSets/abc` - * - * - For an account-level filter set for the child seat buyer account 456 - * whose bidder is 123: `bidders/123/accounts/456/filterSets/abc` - * @param int $creativeStatusId The ID of the creative status for which to - * retrieve a breakdown by creative. See [creative-status- - * codes](https://developers.google.com/authorized-buyers/rtb/downloads - * /creative-status-codes). - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A token identifying a page of results the server - * should return. Typically, this is the value of - * ListCreativeStatusBreakdownByCreativeResponse.nextPageToken returned from the - * previous call to the filteredBids.creatives.list method. - * @opt_param int pageSize Requested page size. The server may return fewer - * results than requested. If unspecified, the server will pick an appropriate - * default. - * @return Google_Service_AdExchangeBuyerII_ListCreativeStatusBreakdownByCreativeResponse - */ - public function listBiddersFilterSetsFilteredBidsCreatives($filterSetName, $creativeStatusId, $optParams = array()) - { - $params = array('filterSetName' => $filterSetName, 'creativeStatusId' => $creativeStatusId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdExchangeBuyerII_ListCreativeStatusBreakdownByCreativeResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersFilterSetsFilteredBidsDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersFilterSetsFilteredBidsDetails.php deleted file mode 100644 index c3558f3c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersFilterSetsFilteredBidsDetails.php +++ /dev/null @@ -1,66 +0,0 @@ - - * $adexchangebuyer2Service = new Google_Service_AdExchangeBuyerII(...); - * $details = $adexchangebuyer2Service->details; - * - */ -class Google_Service_AdExchangeBuyerII_Resource_BiddersFilterSetsFilteredBidsDetails extends Google_Service_Resource -{ - /** - * List all details associated with a specific reason for which bids were - * filtered, with the number of bids filtered for each detail. - * (details.listBiddersFilterSetsFilteredBidsDetails) - * - * @param string $filterSetName Name of the filter set that should be applied to - * the requested metrics. For example: - * - * - For a bidder-level filter set for bidder 123: - * `bidders/123/filterSets/abc` - * - * - For an account-level filter set for the buyer account representing bidder - * 123: `bidders/123/accounts/123/filterSets/abc` - * - * - For an account-level filter set for the child seat buyer account 456 - * whose bidder is 123: `bidders/123/accounts/456/filterSets/abc` - * @param int $creativeStatusId The ID of the creative status for which to - * retrieve a breakdown by detail. See [creative-status- - * codes](https://developers.google.com/authorized-buyers/rtb/downloads - * /creative-status-codes). Details are only available for statuses 10, 14, 15, - * 17, 18, 19, 86, and 87. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A token identifying a page of results the server - * should return. Typically, this is the value of - * ListCreativeStatusBreakdownByDetailResponse.nextPageToken returned from the - * previous call to the filteredBids.details.list method. - * @opt_param int pageSize Requested page size. The server may return fewer - * results than requested. If unspecified, the server will pick an appropriate - * default. - * @return Google_Service_AdExchangeBuyerII_ListCreativeStatusBreakdownByDetailResponse - */ - public function listBiddersFilterSetsFilteredBidsDetails($filterSetName, $creativeStatusId, $optParams = array()) - { - $params = array('filterSetName' => $filterSetName, 'creativeStatusId' => $creativeStatusId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdExchangeBuyerII_ListCreativeStatusBreakdownByDetailResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersFilterSetsImpressionMetrics.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersFilterSetsImpressionMetrics.php deleted file mode 100644 index 2e2680aa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersFilterSetsImpressionMetrics.php +++ /dev/null @@ -1,60 +0,0 @@ - - * $adexchangebuyer2Service = new Google_Service_AdExchangeBuyerII(...); - * $impressionMetrics = $adexchangebuyer2Service->impressionMetrics; - * - */ -class Google_Service_AdExchangeBuyerII_Resource_BiddersFilterSetsImpressionMetrics extends Google_Service_Resource -{ - /** - * Lists all metrics that are measured in terms of number of impressions. - * (impressionMetrics.listBiddersFilterSetsImpressionMetrics) - * - * @param string $filterSetName Name of the filter set that should be applied to - * the requested metrics. For example: - * - * - For a bidder-level filter set for bidder 123: - * `bidders/123/filterSets/abc` - * - * - For an account-level filter set for the buyer account representing bidder - * 123: `bidders/123/accounts/123/filterSets/abc` - * - * - For an account-level filter set for the child seat buyer account 456 - * whose bidder is 123: `bidders/123/accounts/456/filterSets/abc` - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A token identifying a page of results the server - * should return. Typically, this is the value of - * ListImpressionMetricsResponse.nextPageToken returned from the previous call - * to the impressionMetrics.list method. - * @opt_param int pageSize Requested page size. The server may return fewer - * results than requested. If unspecified, the server will pick an appropriate - * default. - * @return Google_Service_AdExchangeBuyerII_ListImpressionMetricsResponse - */ - public function listBiddersFilterSetsImpressionMetrics($filterSetName, $optParams = array()) - { - $params = array('filterSetName' => $filterSetName); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdExchangeBuyerII_ListImpressionMetricsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersFilterSetsLosingBids.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersFilterSetsLosingBids.php deleted file mode 100644 index 8b8b3655..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersFilterSetsLosingBids.php +++ /dev/null @@ -1,60 +0,0 @@ - - * $adexchangebuyer2Service = new Google_Service_AdExchangeBuyerII(...); - * $losingBids = $adexchangebuyer2Service->losingBids; - * - */ -class Google_Service_AdExchangeBuyerII_Resource_BiddersFilterSetsLosingBids extends Google_Service_Resource -{ - /** - * List all reasons for which bids lost in the auction, with the number of bids - * that lost for each reason. (losingBids.listBiddersFilterSetsLosingBids) - * - * @param string $filterSetName Name of the filter set that should be applied to - * the requested metrics. For example: - * - * - For a bidder-level filter set for bidder 123: - * `bidders/123/filterSets/abc` - * - * - For an account-level filter set for the buyer account representing bidder - * 123: `bidders/123/accounts/123/filterSets/abc` - * - * - For an account-level filter set for the child seat buyer account 456 - * whose bidder is 123: `bidders/123/accounts/456/filterSets/abc` - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A token identifying a page of results the server - * should return. Typically, this is the value of - * ListLosingBidsResponse.nextPageToken returned from the previous call to the - * losingBids.list method. - * @opt_param int pageSize Requested page size. The server may return fewer - * results than requested. If unspecified, the server will pick an appropriate - * default. - * @return Google_Service_AdExchangeBuyerII_ListLosingBidsResponse - */ - public function listBiddersFilterSetsLosingBids($filterSetName, $optParams = array()) - { - $params = array('filterSetName' => $filterSetName); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdExchangeBuyerII_ListLosingBidsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersFilterSetsNonBillableWinningBids.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersFilterSetsNonBillableWinningBids.php deleted file mode 100644 index 39b21481..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Resource/BiddersFilterSetsNonBillableWinningBids.php +++ /dev/null @@ -1,61 +0,0 @@ - - * $adexchangebuyer2Service = new Google_Service_AdExchangeBuyerII(...); - * $nonBillableWinningBids = $adexchangebuyer2Service->nonBillableWinningBids; - * - */ -class Google_Service_AdExchangeBuyerII_Resource_BiddersFilterSetsNonBillableWinningBids extends Google_Service_Resource -{ - /** - * List all reasons for which winning bids were not billable, with the number of - * bids not billed for each reason. - * (nonBillableWinningBids.listBiddersFilterSetsNonBillableWinningBids) - * - * @param string $filterSetName Name of the filter set that should be applied to - * the requested metrics. For example: - * - * - For a bidder-level filter set for bidder 123: - * `bidders/123/filterSets/abc` - * - * - For an account-level filter set for the buyer account representing bidder - * 123: `bidders/123/accounts/123/filterSets/abc` - * - * - For an account-level filter set for the child seat buyer account 456 - * whose bidder is 123: `bidders/123/accounts/456/filterSets/abc` - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A token identifying a page of results the server - * should return. Typically, this is the value of - * ListNonBillableWinningBidsResponse.nextPageToken returned from the previous - * call to the nonBillableWinningBids.list method. - * @opt_param int pageSize Requested page size. The server may return fewer - * results than requested. If unspecified, the server will pick an appropriate - * default. - * @return Google_Service_AdExchangeBuyerII_ListNonBillableWinningBidsResponse - */ - public function listBiddersFilterSetsNonBillableWinningBids($filterSetName, $optParams = array()) - { - $params = array('filterSetName' => $filterSetName); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdExchangeBuyerII_ListNonBillableWinningBidsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ResumeProposalRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ResumeProposalRequest.php deleted file mode 100644 index 779adb81..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ResumeProposalRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -publisherIdentifier = $publisherIdentifier; - } - public function getPublisherIdentifier() - { - return $this->publisherIdentifier; - } - /** - * @param Google_Service_AdExchangeBuyerII_TimeInterval - */ - public function setTimeInterval(Google_Service_AdExchangeBuyerII_TimeInterval $timeInterval) - { - $this->timeInterval = $timeInterval; - } - /** - * @return Google_Service_AdExchangeBuyerII_TimeInterval - */ - public function getTimeInterval() - { - return $this->timeInterval; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/SecurityContext.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/SecurityContext.php deleted file mode 100644 index 44178e30..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/SecurityContext.php +++ /dev/null @@ -1,31 +0,0 @@ -securities = $securities; - } - public function getSecurities() - { - return $this->securities; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Seller.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Seller.php deleted file mode 100644 index 1f557902..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Seller.php +++ /dev/null @@ -1,39 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setSubAccountId($subAccountId) - { - $this->subAccountId = $subAccountId; - } - public function getSubAccountId() - { - return $this->subAccountId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ServingContext.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ServingContext.php deleted file mode 100644 index d013d2c8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ServingContext.php +++ /dev/null @@ -1,110 +0,0 @@ -all = $all; - } - public function getAll() - { - return $this->all; - } - /** - * @param Google_Service_AdExchangeBuyerII_AppContext - */ - public function setAppType(Google_Service_AdExchangeBuyerII_AppContext $appType) - { - $this->appType = $appType; - } - /** - * @return Google_Service_AdExchangeBuyerII_AppContext - */ - public function getAppType() - { - return $this->appType; - } - /** - * @param Google_Service_AdExchangeBuyerII_AuctionContext - */ - public function setAuctionType(Google_Service_AdExchangeBuyerII_AuctionContext $auctionType) - { - $this->auctionType = $auctionType; - } - /** - * @return Google_Service_AdExchangeBuyerII_AuctionContext - */ - public function getAuctionType() - { - return $this->auctionType; - } - /** - * @param Google_Service_AdExchangeBuyerII_LocationContext - */ - public function setLocation(Google_Service_AdExchangeBuyerII_LocationContext $location) - { - $this->location = $location; - } - /** - * @return Google_Service_AdExchangeBuyerII_LocationContext - */ - public function getLocation() - { - return $this->location; - } - /** - * @param Google_Service_AdExchangeBuyerII_PlatformContext - */ - public function setPlatform(Google_Service_AdExchangeBuyerII_PlatformContext $platform) - { - $this->platform = $platform; - } - /** - * @return Google_Service_AdExchangeBuyerII_PlatformContext - */ - public function getPlatform() - { - return $this->platform; - } - /** - * @param Google_Service_AdExchangeBuyerII_SecurityContext - */ - public function setSecurityType(Google_Service_AdExchangeBuyerII_SecurityContext $securityType) - { - $this->securityType = $securityType; - } - /** - * @return Google_Service_AdExchangeBuyerII_SecurityContext - */ - public function getSecurityType() - { - return $this->securityType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ServingRestriction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ServingRestriction.php deleted file mode 100644 index 9daac369..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/ServingRestriction.php +++ /dev/null @@ -1,79 +0,0 @@ -contexts = $contexts; - } - /** - * @return Google_Service_AdExchangeBuyerII_ServingContext - */ - public function getContexts() - { - return $this->contexts; - } - /** - * @param Google_Service_AdExchangeBuyerII_Disapproval - */ - public function setDisapproval(Google_Service_AdExchangeBuyerII_Disapproval $disapproval) - { - $this->disapproval = $disapproval; - } - /** - * @return Google_Service_AdExchangeBuyerII_Disapproval - */ - public function getDisapproval() - { - return $this->disapproval; - } - /** - * @param Google_Service_AdExchangeBuyerII_Disapproval - */ - public function setDisapprovalReasons($disapprovalReasons) - { - $this->disapprovalReasons = $disapprovalReasons; - } - /** - * @return Google_Service_AdExchangeBuyerII_Disapproval - */ - public function getDisapprovalReasons() - { - return $this->disapprovalReasons; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Size.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Size.php deleted file mode 100644 index c9b1e5ad..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/Size.php +++ /dev/null @@ -1,39 +0,0 @@ -height = $height; - } - public function getHeight() - { - return $this->height; - } - public function setWidth($width) - { - $this->width = $width; - } - public function getWidth() - { - return $this->width; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/StopWatchingCreativeRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/StopWatchingCreativeRequest.php deleted file mode 100644 index 4a1c6c0a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/StopWatchingCreativeRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -exclusions = $exclusions; - } - /** - * @return Google_Service_AdExchangeBuyerII_TargetingValue - */ - public function getExclusions() - { - return $this->exclusions; - } - /** - * @param Google_Service_AdExchangeBuyerII_TargetingValue - */ - public function setInclusions($inclusions) - { - $this->inclusions = $inclusions; - } - /** - * @return Google_Service_AdExchangeBuyerII_TargetingValue - */ - public function getInclusions() - { - return $this->inclusions; - } - public function setKey($key) - { - $this->key = $key; - } - public function getKey() - { - return $this->key; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/TargetingValue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/TargetingValue.php deleted file mode 100644 index 8a14ba39..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/TargetingValue.php +++ /dev/null @@ -1,71 +0,0 @@ -creativeSizeValue = $creativeSizeValue; - } - /** - * @return Google_Service_AdExchangeBuyerII_CreativeSize - */ - public function getCreativeSizeValue() - { - return $this->creativeSizeValue; - } - /** - * @param Google_Service_AdExchangeBuyerII_DayPartTargeting - */ - public function setDayPartTargetingValue(Google_Service_AdExchangeBuyerII_DayPartTargeting $dayPartTargetingValue) - { - $this->dayPartTargetingValue = $dayPartTargetingValue; - } - /** - * @return Google_Service_AdExchangeBuyerII_DayPartTargeting - */ - public function getDayPartTargetingValue() - { - return $this->dayPartTargetingValue; - } - public function setLongValue($longValue) - { - $this->longValue = $longValue; - } - public function getLongValue() - { - return $this->longValue; - } - public function setStringValue($stringValue) - { - $this->stringValue = $stringValue; - } - public function getStringValue() - { - return $this->stringValue; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/TechnologyTargeting.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/TechnologyTargeting.php deleted file mode 100644 index 7a56e0a1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/TechnologyTargeting.php +++ /dev/null @@ -1,69 +0,0 @@ -deviceCapabilityTargeting = $deviceCapabilityTargeting; - } - /** - * @return Google_Service_AdExchangeBuyerII_CriteriaTargeting - */ - public function getDeviceCapabilityTargeting() - { - return $this->deviceCapabilityTargeting; - } - /** - * @param Google_Service_AdExchangeBuyerII_CriteriaTargeting - */ - public function setDeviceCategoryTargeting(Google_Service_AdExchangeBuyerII_CriteriaTargeting $deviceCategoryTargeting) - { - $this->deviceCategoryTargeting = $deviceCategoryTargeting; - } - /** - * @return Google_Service_AdExchangeBuyerII_CriteriaTargeting - */ - public function getDeviceCategoryTargeting() - { - return $this->deviceCategoryTargeting; - } - /** - * @param Google_Service_AdExchangeBuyerII_OperatingSystemTargeting - */ - public function setOperatingSystemTargeting(Google_Service_AdExchangeBuyerII_OperatingSystemTargeting $operatingSystemTargeting) - { - $this->operatingSystemTargeting = $operatingSystemTargeting; - } - /** - * @return Google_Service_AdExchangeBuyerII_OperatingSystemTargeting - */ - public function getOperatingSystemTargeting() - { - return $this->operatingSystemTargeting; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/TimeInterval.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/TimeInterval.php deleted file mode 100644 index b639da13..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/TimeInterval.php +++ /dev/null @@ -1,39 +0,0 @@ -endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/TimeOfDay.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/TimeOfDay.php deleted file mode 100644 index 0c91deb2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/TimeOfDay.php +++ /dev/null @@ -1,57 +0,0 @@ -hours = $hours; - } - public function getHours() - { - return $this->hours; - } - public function setMinutes($minutes) - { - $this->minutes = $minutes; - } - public function getMinutes() - { - return $this->minutes; - } - public function setNanos($nanos) - { - $this->nanos = $nanos; - } - public function getNanos() - { - return $this->nanos; - } - public function setSeconds($seconds) - { - $this->seconds = $seconds; - } - public function getSeconds() - { - return $this->seconds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/UrlTargeting.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/UrlTargeting.php deleted file mode 100644 index c8c7aa44..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/UrlTargeting.php +++ /dev/null @@ -1,40 +0,0 @@ -excludedUrls = $excludedUrls; - } - public function getExcludedUrls() - { - return $this->excludedUrls; - } - public function setTargetedUrls($targetedUrls) - { - $this->targetedUrls = $targetedUrls; - } - public function getTargetedUrls() - { - return $this->targetedUrls; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/VideoContent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/VideoContent.php deleted file mode 100644 index c7b3f80d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/VideoContent.php +++ /dev/null @@ -1,39 +0,0 @@ -videoUrl = $videoUrl; - } - public function getVideoUrl() - { - return $this->videoUrl; - } - public function setVideoVastXml($videoVastXml) - { - $this->videoVastXml = $videoVastXml; - } - public function getVideoVastXml() - { - return $this->videoVastXml; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/VideoTargeting.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/VideoTargeting.php deleted file mode 100644 index 9e156590..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/VideoTargeting.php +++ /dev/null @@ -1,40 +0,0 @@ -excludedPositionTypes = $excludedPositionTypes; - } - public function getExcludedPositionTypes() - { - return $this->excludedPositionTypes; - } - public function setTargetedPositionTypes($targetedPositionTypes) - { - $this->targetedPositionTypes = $targetedPositionTypes; - } - public function getTargetedPositionTypes() - { - return $this->targetedPositionTypes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/WatchCreativeRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/WatchCreativeRequest.php deleted file mode 100644 index 6804e022..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyerII/WatchCreativeRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -topic = $topic; - } - public function getTopic() - { - return $this->topic; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller.php deleted file mode 100644 index 99a76651..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller.php +++ /dev/null @@ -1,428 +0,0 @@ - - * Accesses the inventory of Ad Exchange seller users and generates reports.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_AdExchangeSeller extends Google_Service -{ - /** View and manage your Ad Exchange data. */ - const ADEXCHANGE_SELLER = - "https://www.googleapis.com/auth/adexchange.seller"; - /** View your Ad Exchange data. */ - const ADEXCHANGE_SELLER_READONLY = - "https://www.googleapis.com/auth/adexchange.seller.readonly"; - - public $accounts; - public $accounts_adclients; - public $accounts_alerts; - public $accounts_customchannels; - public $accounts_metadata_dimensions; - public $accounts_metadata_metrics; - public $accounts_preferreddeals; - public $accounts_reports; - public $accounts_reports_saved; - public $accounts_urlchannels; - - /** - * Constructs the internal representation of the AdExchangeSeller service. - * - * @param Google_Client $client - */ - public function __construct(Google_Client $client) - { - parent::__construct($client); - $this->rootUrl = 'https://www.googleapis.com/'; - $this->servicePath = 'adexchangeseller/v2.0/'; - $this->version = 'v2.0'; - $this->serviceName = 'adexchangeseller'; - - $this->accounts = new Google_Service_AdExchangeSeller_Resource_Accounts( - $this, - $this->serviceName, - 'accounts', - array( - 'methods' => array( - 'get' => array( - 'path' => 'accounts/{accountId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'accounts', - 'httpMethod' => 'GET', - 'parameters' => array( - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->accounts_adclients = new Google_Service_AdExchangeSeller_Resource_AccountsAdclients( - $this, - $this->serviceName, - 'adclients', - array( - 'methods' => array( - 'list' => array( - 'path' => 'accounts/{accountId}/adclients', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->accounts_alerts = new Google_Service_AdExchangeSeller_Resource_AccountsAlerts( - $this, - $this->serviceName, - 'alerts', - array( - 'methods' => array( - 'list' => array( - 'path' => 'accounts/{accountId}/alerts', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->accounts_customchannels = new Google_Service_AdExchangeSeller_Resource_AccountsCustomchannels( - $this, - $this->serviceName, - 'customchannels', - array( - 'methods' => array( - 'get' => array( - 'path' => 'accounts/{accountId}/adclients/{adClientId}/customchannels/{customChannelId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'customChannelId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'accounts/{accountId}/adclients/{adClientId}/customchannels', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->accounts_metadata_dimensions = new Google_Service_AdExchangeSeller_Resource_AccountsMetadataDimensions( - $this, - $this->serviceName, - 'dimensions', - array( - 'methods' => array( - 'list' => array( - 'path' => 'accounts/{accountId}/metadata/dimensions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->accounts_metadata_metrics = new Google_Service_AdExchangeSeller_Resource_AccountsMetadataMetrics( - $this, - $this->serviceName, - 'metrics', - array( - 'methods' => array( - 'list' => array( - 'path' => 'accounts/{accountId}/metadata/metrics', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->accounts_preferreddeals = new Google_Service_AdExchangeSeller_Resource_AccountsPreferreddeals( - $this, - $this->serviceName, - 'preferreddeals', - array( - 'methods' => array( - 'get' => array( - 'path' => 'accounts/{accountId}/preferreddeals/{dealId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'dealId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'accounts/{accountId}/preferreddeals', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->accounts_reports = new Google_Service_AdExchangeSeller_Resource_AccountsReports( - $this, - $this->serviceName, - 'reports', - array( - 'methods' => array( - 'generate' => array( - 'path' => 'accounts/{accountId}/reports', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'startDate' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'endDate' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'dimension' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'metric' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'sort' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'startIndex' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->accounts_reports_saved = new Google_Service_AdExchangeSeller_Resource_AccountsReportsSaved( - $this, - $this->serviceName, - 'saved', - array( - 'methods' => array( - 'generate' => array( - 'path' => 'accounts/{accountId}/reports/{savedReportId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'savedReportId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'startIndex' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'list' => array( - 'path' => 'accounts/{accountId}/reports/saved', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->accounts_urlchannels = new Google_Service_AdExchangeSeller_Resource_AccountsUrlchannels( - $this, - $this->serviceName, - 'urlchannels', - array( - 'methods' => array( - 'list' => array( - 'path' => 'accounts/{accountId}/adclients/{adClientId}/urlchannels', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/Account.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/Account.php deleted file mode 100644 index e7d0f74b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/Account.php +++ /dev/null @@ -1,48 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/Accounts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/Accounts.php deleted file mode 100644 index f7d5a14a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/Accounts.php +++ /dev/null @@ -1,65 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_AdExchangeSeller_Account - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_AdExchangeSeller_Account - */ - public function getItems() - { - return $this->items; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/AdClient.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/AdClient.php deleted file mode 100644 index dd1c1cde..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/AdClient.php +++ /dev/null @@ -1,66 +0,0 @@ -arcOptIn = $arcOptIn; - } - public function getArcOptIn() - { - return $this->arcOptIn; - } - 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 setProductCode($productCode) - { - $this->productCode = $productCode; - } - public function getProductCode() - { - return $this->productCode; - } - public function setSupportsReporting($supportsReporting) - { - $this->supportsReporting = $supportsReporting; - } - public function getSupportsReporting() - { - return $this->supportsReporting; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/AdClients.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/AdClients.php deleted file mode 100644 index 26019b50..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/AdClients.php +++ /dev/null @@ -1,65 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_AdExchangeSeller_AdClient - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_AdExchangeSeller_AdClient - */ - public function getItems() - { - return $this->items; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/Alert.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/Alert.php deleted file mode 100644 index 8c4a73d7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/Alert.php +++ /dev/null @@ -1,66 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } - public function setSeverity($severity) - { - $this->severity = $severity; - } - public function getSeverity() - { - return $this->severity; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/Alerts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/Alerts.php deleted file mode 100644 index bc683304..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/Alerts.php +++ /dev/null @@ -1,47 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_AdExchangeSeller_Alert - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/CustomChannel.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/CustomChannel.php deleted file mode 100644 index 33b6e93d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/CustomChannel.php +++ /dev/null @@ -1,73 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_AdExchangeSeller_CustomChannelTargetingInfo - */ - public function setTargetingInfo(Google_Service_AdExchangeSeller_CustomChannelTargetingInfo $targetingInfo) - { - $this->targetingInfo = $targetingInfo; - } - /** - * @return Google_Service_AdExchangeSeller_CustomChannelTargetingInfo - */ - public function getTargetingInfo() - { - return $this->targetingInfo; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/CustomChannelTargetingInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/CustomChannelTargetingInfo.php deleted file mode 100644 index 2c947920..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/CustomChannelTargetingInfo.php +++ /dev/null @@ -1,57 +0,0 @@ -adsAppearOn = $adsAppearOn; - } - public function getAdsAppearOn() - { - return $this->adsAppearOn; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setSiteLanguage($siteLanguage) - { - $this->siteLanguage = $siteLanguage; - } - public function getSiteLanguage() - { - return $this->siteLanguage; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/CustomChannels.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/CustomChannels.php deleted file mode 100644 index b8a46baa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/CustomChannels.php +++ /dev/null @@ -1,65 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_AdExchangeSeller_CustomChannel - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_AdExchangeSeller_CustomChannel - */ - public function getItems() - { - return $this->items; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/Metadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/Metadata.php deleted file mode 100644 index 78e98b5d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/Metadata.php +++ /dev/null @@ -1,47 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_AdExchangeSeller_ReportingMetadataEntry - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/PreferredDeal.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/PreferredDeal.php deleted file mode 100644 index 7be49119..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/PreferredDeal.php +++ /dev/null @@ -1,93 +0,0 @@ -advertiserName = $advertiserName; - } - public function getAdvertiserName() - { - return $this->advertiserName; - } - public function setBuyerNetworkName($buyerNetworkName) - { - $this->buyerNetworkName = $buyerNetworkName; - } - public function getBuyerNetworkName() - { - return $this->buyerNetworkName; - } - public function setCurrencyCode($currencyCode) - { - $this->currencyCode = $currencyCode; - } - public function getCurrencyCode() - { - return $this->currencyCode; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setFixedCpm($fixedCpm) - { - $this->fixedCpm = $fixedCpm; - } - public function getFixedCpm() - { - return $this->fixedCpm; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/PreferredDeals.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/PreferredDeals.php deleted file mode 100644 index 855d9736..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/PreferredDeals.php +++ /dev/null @@ -1,47 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_AdExchangeSeller_PreferredDeal - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/Report.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/Report.php deleted file mode 100644 index a25ae44d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/Report.php +++ /dev/null @@ -1,92 +0,0 @@ -averages = $averages; - } - public function getAverages() - { - return $this->averages; - } - /** - * @param Google_Service_AdExchangeSeller_ReportHeaders - */ - public function setHeaders($headers) - { - $this->headers = $headers; - } - /** - * @return Google_Service_AdExchangeSeller_ReportHeaders - */ - public function getHeaders() - { - return $this->headers; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setRows($rows) - { - $this->rows = $rows; - } - public function getRows() - { - return $this->rows; - } - public function setTotalMatchedRows($totalMatchedRows) - { - $this->totalMatchedRows = $totalMatchedRows; - } - public function getTotalMatchedRows() - { - return $this->totalMatchedRows; - } - public function setTotals($totals) - { - $this->totals = $totals; - } - public function getTotals() - { - return $this->totals; - } - public function setWarnings($warnings) - { - $this->warnings = $warnings; - } - public function getWarnings() - { - return $this->warnings; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/ReportHeaders.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/ReportHeaders.php deleted file mode 100644 index d950f5f7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/ReportHeaders.php +++ /dev/null @@ -1,48 +0,0 @@ -currency = $currency; - } - public function getCurrency() - { - return $this->currency; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/ReportingMetadataEntry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/ReportingMetadataEntry.php deleted file mode 100644 index f776fbf8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/ReportingMetadataEntry.php +++ /dev/null @@ -1,85 +0,0 @@ -compatibleDimensions = $compatibleDimensions; - } - public function getCompatibleDimensions() - { - return $this->compatibleDimensions; - } - public function setCompatibleMetrics($compatibleMetrics) - { - $this->compatibleMetrics = $compatibleMetrics; - } - public function getCompatibleMetrics() - { - return $this->compatibleMetrics; - } - 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 setRequiredDimensions($requiredDimensions) - { - $this->requiredDimensions = $requiredDimensions; - } - public function getRequiredDimensions() - { - return $this->requiredDimensions; - } - public function setRequiredMetrics($requiredMetrics) - { - $this->requiredMetrics = $requiredMetrics; - } - public function getRequiredMetrics() - { - return $this->requiredMetrics; - } - public function setSupportedProducts($supportedProducts) - { - $this->supportedProducts = $supportedProducts; - } - public function getSupportedProducts() - { - return $this->supportedProducts; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/Resource/Accounts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/Resource/Accounts.php deleted file mode 100644 index 960e65ec..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/Resource/Accounts.php +++ /dev/null @@ -1,61 +0,0 @@ - - * $adexchangesellerService = new Google_Service_AdExchangeSeller(...); - * $accounts = $adexchangesellerService->accounts; - * - */ -class Google_Service_AdExchangeSeller_Resource_Accounts extends Google_Service_Resource -{ - /** - * Get information about the selected Ad Exchange account. (accounts.get) - * - * @param string $accountId Account to get information about. Tip: 'myaccount' - * is a valid ID. - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeSeller_Account - */ - public function get($accountId, $optParams = array()) - { - $params = array('accountId' => $accountId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AdExchangeSeller_Account"); - } - /** - * List all accounts available to this Ad Exchange account. - * (accounts.listAccounts) - * - * @param array $optParams Optional parameters. - * - * @opt_param int maxResults The maximum number of accounts to include in the - * response, used for paging. - * @opt_param string pageToken A continuation token, used to page through - * accounts. To retrieve the next page, set this parameter to the value of - * "nextPageToken" from the previous response. - * @return Google_Service_AdExchangeSeller_Accounts - */ - public function listAccounts($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdExchangeSeller_Accounts"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/Resource/AccountsAdclients.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/Resource/AccountsAdclients.php deleted file mode 100644 index 4eb6655d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/Resource/AccountsAdclients.php +++ /dev/null @@ -1,48 +0,0 @@ - - * $adexchangesellerService = new Google_Service_AdExchangeSeller(...); - * $adclients = $adexchangesellerService->adclients; - * - */ -class Google_Service_AdExchangeSeller_Resource_AccountsAdclients extends Google_Service_Resource -{ - /** - * List all ad clients in this Ad Exchange account. - * (adclients.listAccountsAdclients) - * - * @param string $accountId Account to which the ad client belongs. - * @param array $optParams Optional parameters. - * - * @opt_param string maxResults The maximum number of ad clients to include in - * the response, used for paging. - * @opt_param string pageToken A continuation token, used to page through ad - * clients. To retrieve the next page, set this parameter to the value of - * "nextPageToken" from the previous response. - * @return Google_Service_AdExchangeSeller_AdClients - */ - public function listAccountsAdclients($accountId, $optParams = array()) - { - $params = array('accountId' => $accountId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdExchangeSeller_AdClients"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/Resource/AccountsAlerts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/Resource/AccountsAlerts.php deleted file mode 100644 index 28859203..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/Resource/AccountsAlerts.php +++ /dev/null @@ -1,45 +0,0 @@ - - * $adexchangesellerService = new Google_Service_AdExchangeSeller(...); - * $alerts = $adexchangesellerService->alerts; - * - */ -class Google_Service_AdExchangeSeller_Resource_AccountsAlerts extends Google_Service_Resource -{ - /** - * List the alerts for this Ad Exchange account. (alerts.listAccountsAlerts) - * - * @param string $accountId Account owning the alerts. - * @param array $optParams Optional parameters. - * - * @opt_param string locale The locale to use for translating alert messages. - * The account locale will be used if this is not supplied. The AdSense default - * (English) will be used if the supplied locale is invalid or unsupported. - * @return Google_Service_AdExchangeSeller_Alerts - */ - public function listAccountsAlerts($accountId, $optParams = array()) - { - $params = array('accountId' => $accountId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdExchangeSeller_Alerts"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/Resource/AccountsCustomchannels.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/Resource/AccountsCustomchannels.php deleted file mode 100644 index d6159309..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/Resource/AccountsCustomchannels.php +++ /dev/null @@ -1,65 +0,0 @@ - - * $adexchangesellerService = new Google_Service_AdExchangeSeller(...); - * $customchannels = $adexchangesellerService->customchannels; - * - */ -class Google_Service_AdExchangeSeller_Resource_AccountsCustomchannels extends Google_Service_Resource -{ - /** - * Get the specified custom channel from the specified ad client. - * (customchannels.get) - * - * @param string $accountId Account to which the ad client belongs. - * @param string $adClientId Ad client which contains the custom channel. - * @param string $customChannelId Custom channel to retrieve. - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeSeller_CustomChannel - */ - public function get($accountId, $adClientId, $customChannelId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'customChannelId' => $customChannelId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AdExchangeSeller_CustomChannel"); - } - /** - * List all custom channels in the specified ad client for this Ad Exchange - * account. (customchannels.listAccountsCustomchannels) - * - * @param string $accountId Account to which the ad client belongs. - * @param string $adClientId Ad client for which to list custom channels. - * @param array $optParams Optional parameters. - * - * @opt_param string maxResults The maximum number of custom channels to include - * in the response, used for paging. - * @opt_param string pageToken A continuation token, used to page through custom - * channels. To retrieve the next page, set this parameter to the value of - * "nextPageToken" from the previous response. - * @return Google_Service_AdExchangeSeller_CustomChannels - */ - public function listAccountsCustomchannels($accountId, $adClientId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'adClientId' => $adClientId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdExchangeSeller_CustomChannels"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/Resource/AccountsMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/Resource/AccountsMetadata.php deleted file mode 100644 index 7080ec25..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/Resource/AccountsMetadata.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $adexchangesellerService = new Google_Service_AdExchangeSeller(...); - * $metadata = $adexchangesellerService->metadata; - * - */ -class Google_Service_AdExchangeSeller_Resource_AccountsMetadata extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/Resource/AccountsMetadataDimensions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/Resource/AccountsMetadataDimensions.php deleted file mode 100644 index c262a9b0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/Resource/AccountsMetadataDimensions.php +++ /dev/null @@ -1,42 +0,0 @@ - - * $adexchangesellerService = new Google_Service_AdExchangeSeller(...); - * $dimensions = $adexchangesellerService->dimensions; - * - */ -class Google_Service_AdExchangeSeller_Resource_AccountsMetadataDimensions extends Google_Service_Resource -{ - /** - * List the metadata for the dimensions available to this AdExchange account. - * (dimensions.listAccountsMetadataDimensions) - * - * @param string $accountId Account with visibility to the dimensions. - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeSeller_Metadata - */ - public function listAccountsMetadataDimensions($accountId, $optParams = array()) - { - $params = array('accountId' => $accountId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdExchangeSeller_Metadata"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/Resource/AccountsMetadataMetrics.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/Resource/AccountsMetadataMetrics.php deleted file mode 100644 index 2c95a98f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/Resource/AccountsMetadataMetrics.php +++ /dev/null @@ -1,42 +0,0 @@ - - * $adexchangesellerService = new Google_Service_AdExchangeSeller(...); - * $metrics = $adexchangesellerService->metrics; - * - */ -class Google_Service_AdExchangeSeller_Resource_AccountsMetadataMetrics extends Google_Service_Resource -{ - /** - * List the metadata for the metrics available to this AdExchange account. - * (metrics.listAccountsMetadataMetrics) - * - * @param string $accountId Account with visibility to the metrics. - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeSeller_Metadata - */ - public function listAccountsMetadataMetrics($accountId, $optParams = array()) - { - $params = array('accountId' => $accountId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdExchangeSeller_Metadata"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/Resource/AccountsPreferreddeals.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/Resource/AccountsPreferreddeals.php deleted file mode 100644 index fcc3d2e0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/Resource/AccountsPreferreddeals.php +++ /dev/null @@ -1,57 +0,0 @@ - - * $adexchangesellerService = new Google_Service_AdExchangeSeller(...); - * $preferreddeals = $adexchangesellerService->preferreddeals; - * - */ -class Google_Service_AdExchangeSeller_Resource_AccountsPreferreddeals extends Google_Service_Resource -{ - /** - * Get information about the selected Ad Exchange Preferred Deal. - * (preferreddeals.get) - * - * @param string $accountId Account owning the deal. - * @param string $dealId Preferred deal to get information about. - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeSeller_PreferredDeal - */ - public function get($accountId, $dealId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'dealId' => $dealId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AdExchangeSeller_PreferredDeal"); - } - /** - * List the preferred deals for this Ad Exchange account. - * (preferreddeals.listAccountsPreferreddeals) - * - * @param string $accountId Account owning the deals. - * @param array $optParams Optional parameters. - * @return Google_Service_AdExchangeSeller_PreferredDeals - */ - public function listAccountsPreferreddeals($accountId, $optParams = array()) - { - $params = array('accountId' => $accountId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdExchangeSeller_PreferredDeals"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/Resource/AccountsReports.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/Resource/AccountsReports.php deleted file mode 100644 index be1e26d5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/Resource/AccountsReports.php +++ /dev/null @@ -1,59 +0,0 @@ - - * $adexchangesellerService = new Google_Service_AdExchangeSeller(...); - * $reports = $adexchangesellerService->reports; - * - */ -class Google_Service_AdExchangeSeller_Resource_AccountsReports extends Google_Service_Resource -{ - /** - * Generate an Ad Exchange report based on the report request sent in the query - * parameters. Returns the result as JSON; to retrieve output in CSV format - * specify "alt=csv" as a query parameter. (reports.generate) - * - * @param string $accountId Account which owns the generated report. - * @param string $startDate Start of the date range to report on in "YYYY-MM-DD" - * format, inclusive. - * @param string $endDate End of the date range to report on in "YYYY-MM-DD" - * format, inclusive. - * @param array $optParams Optional parameters. - * - * @opt_param string dimension Dimensions to base the report on. - * @opt_param string filter Filters to be run on the report. - * @opt_param string locale Optional locale to use for translating report output - * to a local language. Defaults to "en_US" if not specified. - * @opt_param string maxResults The maximum number of rows of report data to - * return. - * @opt_param string metric Numeric columns to include in the report. - * @opt_param string sort The name of a dimension or metric to sort the - * resulting report on, optionally prefixed with "+" to sort ascending or "-" to - * sort descending. If no prefix is specified, the column is sorted ascending. - * @opt_param string startIndex Index of the first row of report data to return. - * @return Google_Service_AdExchangeSeller_Report - */ - public function generate($accountId, $startDate, $endDate, $optParams = array()) - { - $params = array('accountId' => $accountId, 'startDate' => $startDate, 'endDate' => $endDate); - $params = array_merge($params, $optParams); - return $this->call('generate', array($params), "Google_Service_AdExchangeSeller_Report"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/Resource/AccountsReportsSaved.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/Resource/AccountsReportsSaved.php deleted file mode 100644 index c138711b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/Resource/AccountsReportsSaved.php +++ /dev/null @@ -1,69 +0,0 @@ - - * $adexchangesellerService = new Google_Service_AdExchangeSeller(...); - * $saved = $adexchangesellerService->saved; - * - */ -class Google_Service_AdExchangeSeller_Resource_AccountsReportsSaved extends Google_Service_Resource -{ - /** - * Generate an Ad Exchange report based on the saved report ID sent in the query - * parameters. (saved.generate) - * - * @param string $accountId Account owning the saved report. - * @param string $savedReportId The saved report to retrieve. - * @param array $optParams Optional parameters. - * - * @opt_param string locale Optional locale to use for translating report output - * to a local language. Defaults to "en_US" if not specified. - * @opt_param int maxResults The maximum number of rows of report data to - * return. - * @opt_param int startIndex Index of the first row of report data to return. - * @return Google_Service_AdExchangeSeller_Report - */ - public function generate($accountId, $savedReportId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'savedReportId' => $savedReportId); - $params = array_merge($params, $optParams); - return $this->call('generate', array($params), "Google_Service_AdExchangeSeller_Report"); - } - /** - * List all saved reports in this Ad Exchange account. - * (saved.listAccountsReportsSaved) - * - * @param string $accountId Account owning the saved reports. - * @param array $optParams Optional parameters. - * - * @opt_param int maxResults The maximum number of saved reports to include in - * the response, used for paging. - * @opt_param string pageToken A continuation token, used to page through saved - * reports. To retrieve the next page, set this parameter to the value of - * "nextPageToken" from the previous response. - * @return Google_Service_AdExchangeSeller_SavedReports - */ - public function listAccountsReportsSaved($accountId, $optParams = array()) - { - $params = array('accountId' => $accountId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdExchangeSeller_SavedReports"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/Resource/AccountsUrlchannels.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/Resource/AccountsUrlchannels.php deleted file mode 100644 index e1643db9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/Resource/AccountsUrlchannels.php +++ /dev/null @@ -1,49 +0,0 @@ - - * $adexchangesellerService = new Google_Service_AdExchangeSeller(...); - * $urlchannels = $adexchangesellerService->urlchannels; - * - */ -class Google_Service_AdExchangeSeller_Resource_AccountsUrlchannels extends Google_Service_Resource -{ - /** - * List all URL channels in the specified ad client for this Ad Exchange - * account. (urlchannels.listAccountsUrlchannels) - * - * @param string $accountId Account to which the ad client belongs. - * @param string $adClientId Ad client for which to list URL channels. - * @param array $optParams Optional parameters. - * - * @opt_param string maxResults The maximum number of URL channels to include in - * the response, used for paging. - * @opt_param string pageToken A continuation token, used to page through URL - * channels. To retrieve the next page, set this parameter to the value of - * "nextPageToken" from the previous response. - * @return Google_Service_AdExchangeSeller_UrlChannels - */ - public function listAccountsUrlchannels($accountId, $adClientId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'adClientId' => $adClientId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdExchangeSeller_UrlChannels"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/SavedReport.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/SavedReport.php deleted file mode 100644 index da75e5af..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/SavedReport.php +++ /dev/null @@ -1,48 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/SavedReports.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/SavedReports.php deleted file mode 100644 index 65a57d4f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/SavedReports.php +++ /dev/null @@ -1,65 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_AdExchangeSeller_SavedReport - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_AdExchangeSeller_SavedReport - */ - public function getItems() - { - return $this->items; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/UrlChannel.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/UrlChannel.php deleted file mode 100644 index 135cda3c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/UrlChannel.php +++ /dev/null @@ -1,48 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setUrlPattern($urlPattern) - { - $this->urlPattern = $urlPattern; - } - public function getUrlPattern() - { - return $this->urlPattern; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/UrlChannels.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/UrlChannels.php deleted file mode 100644 index d22e4641..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExchangeSeller/UrlChannels.php +++ /dev/null @@ -1,65 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_AdExchangeSeller_UrlChannel - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_AdExchangeSeller_UrlChannel - */ - public function getItems() - { - return $this->items; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExperienceReport.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExperienceReport.php deleted file mode 100644 index 7adb725b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExperienceReport.php +++ /dev/null @@ -1,89 +0,0 @@ - - * Views Ad Experience Report data, and gets a list of sites that have a - * significant number of annoying ads.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_AdExperienceReport extends Google_Service -{ - - - public $sites; - public $violatingSites; - - /** - * Constructs the internal representation of the AdExperienceReport service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://adexperiencereport.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'adexperiencereport'; - - $this->sites = new Google_Service_AdExperienceReport_Resource_Sites( - $this, - $this->serviceName, - 'sites', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->violatingSites = new Google_Service_AdExperienceReport_Resource_ViolatingSites( - $this, - $this->serviceName, - 'violatingSites', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1/violatingSites', - 'httpMethod' => 'GET', - 'parameters' => array(), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExperienceReport/PlatformSummary.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExperienceReport/PlatformSummary.php deleted file mode 100644 index f03f0609..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExperienceReport/PlatformSummary.php +++ /dev/null @@ -1,85 +0,0 @@ -betterAdsStatus = $betterAdsStatus; - } - public function getBetterAdsStatus() - { - return $this->betterAdsStatus; - } - public function setEnforcementTime($enforcementTime) - { - $this->enforcementTime = $enforcementTime; - } - public function getEnforcementTime() - { - return $this->enforcementTime; - } - public function setFilterStatus($filterStatus) - { - $this->filterStatus = $filterStatus; - } - public function getFilterStatus() - { - return $this->filterStatus; - } - public function setLastChangeTime($lastChangeTime) - { - $this->lastChangeTime = $lastChangeTime; - } - public function getLastChangeTime() - { - return $this->lastChangeTime; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - public function setReportUrl($reportUrl) - { - $this->reportUrl = $reportUrl; - } - public function getReportUrl() - { - return $this->reportUrl; - } - public function setUnderReview($underReview) - { - $this->underReview = $underReview; - } - public function getUnderReview() - { - return $this->underReview; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExperienceReport/Resource/Sites.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExperienceReport/Resource/Sites.php deleted file mode 100644 index 5d0a848f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExperienceReport/Resource/Sites.php +++ /dev/null @@ -1,44 +0,0 @@ - - * $adexperiencereportService = new Google_Service_AdExperienceReport(...); - * $sites = $adexperiencereportService->sites; - * - */ -class Google_Service_AdExperienceReport_Resource_Sites extends Google_Service_Resource -{ - /** - * Gets a site's Ad Experience Report summary. (sites.get) - * - * @param string $name Required. The name of the site whose summary to get, e.g. - * `sites/http%3A%2F%2Fwww.google.com%2F`. - * - * Format: `sites/{site}` - * @param array $optParams Optional parameters. - * @return Google_Service_AdExperienceReport_SiteSummaryResponse - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AdExperienceReport_SiteSummaryResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExperienceReport/Resource/ViolatingSites.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExperienceReport/Resource/ViolatingSites.php deleted file mode 100644 index 9cc5d4ed..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExperienceReport/Resource/ViolatingSites.php +++ /dev/null @@ -1,41 +0,0 @@ - - * $adexperiencereportService = new Google_Service_AdExperienceReport(...); - * $violatingSites = $adexperiencereportService->violatingSites; - * - */ -class Google_Service_AdExperienceReport_Resource_ViolatingSites extends Google_Service_Resource -{ - /** - * Lists sites that are failing in the Ad Experience Report on at least one - * platform. (violatingSites.listViolatingSites) - * - * @param array $optParams Optional parameters. - * @return Google_Service_AdExperienceReport_ViolatingSitesResponse - */ - public function listViolatingSites($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdExperienceReport_ViolatingSitesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExperienceReport/SiteSummaryResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExperienceReport/SiteSummaryResponse.php deleted file mode 100644 index 6916e352..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExperienceReport/SiteSummaryResponse.php +++ /dev/null @@ -1,62 +0,0 @@ -desktopSummary = $desktopSummary; - } - /** - * @return Google_Service_AdExperienceReport_PlatformSummary - */ - public function getDesktopSummary() - { - return $this->desktopSummary; - } - /** - * @param Google_Service_AdExperienceReport_PlatformSummary - */ - public function setMobileSummary(Google_Service_AdExperienceReport_PlatformSummary $mobileSummary) - { - $this->mobileSummary = $mobileSummary; - } - /** - * @return Google_Service_AdExperienceReport_PlatformSummary - */ - public function getMobileSummary() - { - return $this->mobileSummary; - } - public function setReviewedSite($reviewedSite) - { - $this->reviewedSite = $reviewedSite; - } - public function getReviewedSite() - { - return $this->reviewedSite; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExperienceReport/ViolatingSitesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExperienceReport/ViolatingSitesResponse.php deleted file mode 100644 index 01b8de25..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdExperienceReport/ViolatingSitesResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -violatingSites = $violatingSites; - } - /** - * @return Google_Service_AdExperienceReport_SiteSummaryResponse - */ - public function getViolatingSites() - { - return $this->violatingSites; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob.php deleted file mode 100644 index 903f3f94..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob.php +++ /dev/null @@ -1,128 +0,0 @@ - - * The Google AdMob API lets you programmatically get reports on earnings.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_AdMob extends Google_Service -{ - - - public $accounts; - public $accounts_mediationReport; - public $accounts_networkReport; - - /** - * Constructs the internal representation of the AdMob service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://admob.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'admob'; - - $this->accounts = new Google_Service_AdMob_Resource_Accounts( - $this, - $this->serviceName, - 'accounts', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/accounts', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->accounts_mediationReport = new Google_Service_AdMob_Resource_AccountsMediationReport( - $this, - $this->serviceName, - 'mediationReport', - array( - 'methods' => array( - 'generate' => array( - 'path' => 'v1/{+parent}/mediationReport:generate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->accounts_networkReport = new Google_Service_AdMob_Resource_AccountsNetworkReport( - $this, - $this->serviceName, - 'networkReport', - array( - 'methods' => array( - 'generate' => array( - 'path' => 'v1/{+parent}/networkReport:generate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/Date.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/Date.php deleted file mode 100644 index 2ddcbc66..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/Date.php +++ /dev/null @@ -1,48 +0,0 @@ -day = $day; - } - public function getDay() - { - return $this->day; - } - public function setMonth($month) - { - $this->month = $month; - } - public function getMonth() - { - return $this->month; - } - public function setYear($year) - { - $this->year = $year; - } - public function getYear() - { - return $this->year; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/DateRange.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/DateRange.php deleted file mode 100644 index 7c937c01..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/DateRange.php +++ /dev/null @@ -1,53 +0,0 @@ -endDate = $endDate; - } - /** - * @return Google_Service_AdMob_Date - */ - public function getEndDate() - { - return $this->endDate; - } - /** - * @param Google_Service_AdMob_Date - */ - public function setStartDate(Google_Service_AdMob_Date $startDate) - { - $this->startDate = $startDate; - } - /** - * @return Google_Service_AdMob_Date - */ - public function getStartDate() - { - return $this->startDate; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/GenerateMediationReportRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/GenerateMediationReportRequest.php deleted file mode 100644 index e2e953df..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/GenerateMediationReportRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -reportSpec = $reportSpec; - } - /** - * @return Google_Service_AdMob_MediationReportSpec - */ - public function getReportSpec() - { - return $this->reportSpec; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/GenerateMediationReportResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/GenerateMediationReportResponse.php deleted file mode 100644 index 75cffe35..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/GenerateMediationReportResponse.php +++ /dev/null @@ -1,69 +0,0 @@ -footer = $footer; - } - /** - * @return Google_Service_AdMob_ReportFooter - */ - public function getFooter() - { - return $this->footer; - } - /** - * @param Google_Service_AdMob_ReportHeader - */ - public function setHeader(Google_Service_AdMob_ReportHeader $header) - { - $this->header = $header; - } - /** - * @return Google_Service_AdMob_ReportHeader - */ - public function getHeader() - { - return $this->header; - } - /** - * @param Google_Service_AdMob_ReportRow - */ - public function setRow(Google_Service_AdMob_ReportRow $row) - { - $this->row = $row; - } - /** - * @return Google_Service_AdMob_ReportRow - */ - public function getRow() - { - return $this->row; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/GenerateNetworkReportRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/GenerateNetworkReportRequest.php deleted file mode 100644 index e2d619e7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/GenerateNetworkReportRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -reportSpec = $reportSpec; - } - /** - * @return Google_Service_AdMob_NetworkReportSpec - */ - public function getReportSpec() - { - return $this->reportSpec; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/GenerateNetworkReportResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/GenerateNetworkReportResponse.php deleted file mode 100644 index e722bd37..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/GenerateNetworkReportResponse.php +++ /dev/null @@ -1,69 +0,0 @@ -footer = $footer; - } - /** - * @return Google_Service_AdMob_ReportFooter - */ - public function getFooter() - { - return $this->footer; - } - /** - * @param Google_Service_AdMob_ReportHeader - */ - public function setHeader(Google_Service_AdMob_ReportHeader $header) - { - $this->header = $header; - } - /** - * @return Google_Service_AdMob_ReportHeader - */ - public function getHeader() - { - return $this->header; - } - /** - * @param Google_Service_AdMob_ReportRow - */ - public function setRow(Google_Service_AdMob_ReportRow $row) - { - $this->row = $row; - } - /** - * @return Google_Service_AdMob_ReportRow - */ - public function getRow() - { - return $this->row; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/ListPublisherAccountsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/ListPublisherAccountsResponse.php deleted file mode 100644 index 17d85ac9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/ListPublisherAccountsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -account = $account; - } - /** - * @return Google_Service_AdMob_PublisherAccount - */ - public function getAccount() - { - return $this->account; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/LocalizationSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/LocalizationSettings.php deleted file mode 100644 index dfac68c1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/LocalizationSettings.php +++ /dev/null @@ -1,39 +0,0 @@ -currencyCode = $currencyCode; - } - public function getCurrencyCode() - { - return $this->currencyCode; - } - public function setLanguageCode($languageCode) - { - $this->languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/MediationReportSpec.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/MediationReportSpec.php deleted file mode 100644 index 1a55d70c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/MediationReportSpec.php +++ /dev/null @@ -1,122 +0,0 @@ -dateRange = $dateRange; - } - /** - * @return Google_Service_AdMob_DateRange - */ - public function getDateRange() - { - return $this->dateRange; - } - /** - * @param Google_Service_AdMob_MediationReportSpecDimensionFilter - */ - public function setDimensionFilters($dimensionFilters) - { - $this->dimensionFilters = $dimensionFilters; - } - /** - * @return Google_Service_AdMob_MediationReportSpecDimensionFilter - */ - public function getDimensionFilters() - { - return $this->dimensionFilters; - } - public function setDimensions($dimensions) - { - $this->dimensions = $dimensions; - } - public function getDimensions() - { - return $this->dimensions; - } - /** - * @param Google_Service_AdMob_LocalizationSettings - */ - public function setLocalizationSettings(Google_Service_AdMob_LocalizationSettings $localizationSettings) - { - $this->localizationSettings = $localizationSettings; - } - /** - * @return Google_Service_AdMob_LocalizationSettings - */ - public function getLocalizationSettings() - { - return $this->localizationSettings; - } - public function setMaxReportRows($maxReportRows) - { - $this->maxReportRows = $maxReportRows; - } - public function getMaxReportRows() - { - return $this->maxReportRows; - } - public function setMetrics($metrics) - { - $this->metrics = $metrics; - } - public function getMetrics() - { - return $this->metrics; - } - /** - * @param Google_Service_AdMob_MediationReportSpecSortCondition - */ - public function setSortConditions($sortConditions) - { - $this->sortConditions = $sortConditions; - } - /** - * @return Google_Service_AdMob_MediationReportSpecSortCondition - */ - public function getSortConditions() - { - return $this->sortConditions; - } - public function setTimeZone($timeZone) - { - $this->timeZone = $timeZone; - } - public function getTimeZone() - { - return $this->timeZone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/MediationReportSpecDimensionFilter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/MediationReportSpecDimensionFilter.php deleted file mode 100644 index 8366e844..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/MediationReportSpecDimensionFilter.php +++ /dev/null @@ -1,46 +0,0 @@ -dimension = $dimension; - } - public function getDimension() - { - return $this->dimension; - } - /** - * @param Google_Service_AdMob_StringList - */ - public function setMatchesAny(Google_Service_AdMob_StringList $matchesAny) - { - $this->matchesAny = $matchesAny; - } - /** - * @return Google_Service_AdMob_StringList - */ - public function getMatchesAny() - { - return $this->matchesAny; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/MediationReportSpecSortCondition.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/MediationReportSpecSortCondition.php deleted file mode 100644 index b0e5627f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/MediationReportSpecSortCondition.php +++ /dev/null @@ -1,48 +0,0 @@ -dimension = $dimension; - } - public function getDimension() - { - return $this->dimension; - } - public function setMetric($metric) - { - $this->metric = $metric; - } - public function getMetric() - { - return $this->metric; - } - public function setOrder($order) - { - $this->order = $order; - } - public function getOrder() - { - return $this->order; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/NetworkReportSpec.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/NetworkReportSpec.php deleted file mode 100644 index e894dc9f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/NetworkReportSpec.php +++ /dev/null @@ -1,122 +0,0 @@ -dateRange = $dateRange; - } - /** - * @return Google_Service_AdMob_DateRange - */ - public function getDateRange() - { - return $this->dateRange; - } - /** - * @param Google_Service_AdMob_NetworkReportSpecDimensionFilter - */ - public function setDimensionFilters($dimensionFilters) - { - $this->dimensionFilters = $dimensionFilters; - } - /** - * @return Google_Service_AdMob_NetworkReportSpecDimensionFilter - */ - public function getDimensionFilters() - { - return $this->dimensionFilters; - } - public function setDimensions($dimensions) - { - $this->dimensions = $dimensions; - } - public function getDimensions() - { - return $this->dimensions; - } - /** - * @param Google_Service_AdMob_LocalizationSettings - */ - public function setLocalizationSettings(Google_Service_AdMob_LocalizationSettings $localizationSettings) - { - $this->localizationSettings = $localizationSettings; - } - /** - * @return Google_Service_AdMob_LocalizationSettings - */ - public function getLocalizationSettings() - { - return $this->localizationSettings; - } - public function setMaxReportRows($maxReportRows) - { - $this->maxReportRows = $maxReportRows; - } - public function getMaxReportRows() - { - return $this->maxReportRows; - } - public function setMetrics($metrics) - { - $this->metrics = $metrics; - } - public function getMetrics() - { - return $this->metrics; - } - /** - * @param Google_Service_AdMob_NetworkReportSpecSortCondition - */ - public function setSortConditions($sortConditions) - { - $this->sortConditions = $sortConditions; - } - /** - * @return Google_Service_AdMob_NetworkReportSpecSortCondition - */ - public function getSortConditions() - { - return $this->sortConditions; - } - public function setTimeZone($timeZone) - { - $this->timeZone = $timeZone; - } - public function getTimeZone() - { - return $this->timeZone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/NetworkReportSpecDimensionFilter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/NetworkReportSpecDimensionFilter.php deleted file mode 100644 index b0206f33..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/NetworkReportSpecDimensionFilter.php +++ /dev/null @@ -1,46 +0,0 @@ -dimension = $dimension; - } - public function getDimension() - { - return $this->dimension; - } - /** - * @param Google_Service_AdMob_StringList - */ - public function setMatchesAny(Google_Service_AdMob_StringList $matchesAny) - { - $this->matchesAny = $matchesAny; - } - /** - * @return Google_Service_AdMob_StringList - */ - public function getMatchesAny() - { - return $this->matchesAny; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/NetworkReportSpecSortCondition.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/NetworkReportSpecSortCondition.php deleted file mode 100644 index 3da2b6ae..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/NetworkReportSpecSortCondition.php +++ /dev/null @@ -1,48 +0,0 @@ -dimension = $dimension; - } - public function getDimension() - { - return $this->dimension; - } - public function setMetric($metric) - { - $this->metric = $metric; - } - public function getMetric() - { - return $this->metric; - } - public function setOrder($order) - { - $this->order = $order; - } - public function getOrder() - { - return $this->order; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/PublisherAccount.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/PublisherAccount.php deleted file mode 100644 index e89c22a8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/PublisherAccount.php +++ /dev/null @@ -1,57 +0,0 @@ -currencyCode = $currencyCode; - } - public function getCurrencyCode() - { - return $this->currencyCode; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPublisherId($publisherId) - { - $this->publisherId = $publisherId; - } - public function getPublisherId() - { - return $this->publisherId; - } - public function setReportingTimeZone($reportingTimeZone) - { - $this->reportingTimeZone = $reportingTimeZone; - } - public function getReportingTimeZone() - { - return $this->reportingTimeZone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/ReportFooter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/ReportFooter.php deleted file mode 100644 index 5197f772..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/ReportFooter.php +++ /dev/null @@ -1,47 +0,0 @@ -matchingRowCount = $matchingRowCount; - } - public function getMatchingRowCount() - { - return $this->matchingRowCount; - } - /** - * @param Google_Service_AdMob_ReportWarning - */ - public function setWarnings($warnings) - { - $this->warnings = $warnings; - } - /** - * @return Google_Service_AdMob_ReportWarning - */ - public function getWarnings() - { - return $this->warnings; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/ReportHeader.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/ReportHeader.php deleted file mode 100644 index 6caf6007..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/ReportHeader.php +++ /dev/null @@ -1,62 +0,0 @@ -dateRange = $dateRange; - } - /** - * @return Google_Service_AdMob_DateRange - */ - public function getDateRange() - { - return $this->dateRange; - } - /** - * @param Google_Service_AdMob_LocalizationSettings - */ - public function setLocalizationSettings(Google_Service_AdMob_LocalizationSettings $localizationSettings) - { - $this->localizationSettings = $localizationSettings; - } - /** - * @return Google_Service_AdMob_LocalizationSettings - */ - public function getLocalizationSettings() - { - return $this->localizationSettings; - } - public function setReportingTimeZone($reportingTimeZone) - { - $this->reportingTimeZone = $reportingTimeZone; - } - public function getReportingTimeZone() - { - return $this->reportingTimeZone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/ReportRow.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/ReportRow.php deleted file mode 100644 index 0b1605d7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/ReportRow.php +++ /dev/null @@ -1,53 +0,0 @@ -dimensionValues = $dimensionValues; - } - /** - * @return Google_Service_AdMob_ReportRowDimensionValue - */ - public function getDimensionValues() - { - return $this->dimensionValues; - } - /** - * @param Google_Service_AdMob_ReportRowMetricValue - */ - public function setMetricValues($metricValues) - { - $this->metricValues = $metricValues; - } - /** - * @return Google_Service_AdMob_ReportRowMetricValue - */ - public function getMetricValues() - { - return $this->metricValues; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/ReportRowDimensionValue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/ReportRowDimensionValue.php deleted file mode 100644 index 66044de6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/ReportRowDimensionValue.php +++ /dev/null @@ -1,39 +0,0 @@ -displayLabel = $displayLabel; - } - public function getDisplayLabel() - { - return $this->displayLabel; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/ReportRowMetricValue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/ReportRowMetricValue.php deleted file mode 100644 index d34dea77..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/ReportRowMetricValue.php +++ /dev/null @@ -1,48 +0,0 @@ -doubleValue = $doubleValue; - } - public function getDoubleValue() - { - return $this->doubleValue; - } - public function setIntegerValue($integerValue) - { - $this->integerValue = $integerValue; - } - public function getIntegerValue() - { - return $this->integerValue; - } - public function setMicrosValue($microsValue) - { - $this->microsValue = $microsValue; - } - public function getMicrosValue() - { - return $this->microsValue; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/ReportWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/ReportWarning.php deleted file mode 100644 index 45c45137..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/ReportWarning.php +++ /dev/null @@ -1,39 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/Resource/Accounts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/Resource/Accounts.php deleted file mode 100644 index 266b5ad3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/Resource/Accounts.php +++ /dev/null @@ -1,62 +0,0 @@ - - * $admobService = new Google_Service_AdMob(...); - * $accounts = $admobService->accounts; - * - */ -class Google_Service_AdMob_Resource_Accounts extends Google_Service_Resource -{ - /** - * Gets information about the specified AdMob publisher account. (accounts.get) - * - * @param string $name Resource name of the publisher account to retrieve. - * Example: accounts/pub-9876543210987654 - * @param array $optParams Optional parameters. - * @return Google_Service_AdMob_PublisherAccount - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AdMob_PublisherAccount"); - } - /** - * Lists the AdMob publisher account accessible with the client credential. - * Currently, all credentials have access to at most one AdMob account. - * (accounts.listAccounts) - * - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The value returned by the last - * `ListPublisherAccountsResponse`; indicates that this is a continuation of a - * prior `ListPublisherAccounts` call, and that the system should return the - * next page of data. - * @opt_param int pageSize Maximum number of accounts to return. - * @return Google_Service_AdMob_ListPublisherAccountsResponse - */ - public function listAccounts($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdMob_ListPublisherAccountsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/Resource/AccountsMediationReport.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/Resource/AccountsMediationReport.php deleted file mode 100644 index ead0c7c4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/Resource/AccountsMediationReport.php +++ /dev/null @@ -1,44 +0,0 @@ - - * $admobService = new Google_Service_AdMob(...); - * $mediationReport = $admobService->mediationReport; - * - */ -class Google_Service_AdMob_Resource_AccountsMediationReport extends Google_Service_Resource -{ - /** - * Generates an AdMob Mediation report based on the provided report - * specification. (mediationReport.generate) - * - * @param string $parent Resource name of the account to generate the report - * for. Example: accounts/pub-9876543210987654 - * @param Google_Service_AdMob_GenerateMediationReportRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AdMob_GenerateMediationReportResponse - */ - public function generate($parent, Google_Service_AdMob_GenerateMediationReportRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('generate', array($params), "Google_Service_AdMob_GenerateMediationReportResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/Resource/AccountsNetworkReport.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/Resource/AccountsNetworkReport.php deleted file mode 100644 index 7f60cfa1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/Resource/AccountsNetworkReport.php +++ /dev/null @@ -1,44 +0,0 @@ - - * $admobService = new Google_Service_AdMob(...); - * $networkReport = $admobService->networkReport; - * - */ -class Google_Service_AdMob_Resource_AccountsNetworkReport extends Google_Service_Resource -{ - /** - * Generates an AdMob Network report based on the provided report specification. - * (networkReport.generate) - * - * @param string $parent Resource name of the account to generate the report - * for. Example: accounts/pub-9876543210987654 - * @param Google_Service_AdMob_GenerateNetworkReportRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AdMob_GenerateNetworkReportResponse - */ - public function generate($parent, Google_Service_AdMob_GenerateNetworkReportRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('generate', array($params), "Google_Service_AdMob_GenerateNetworkReportResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/StringList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/StringList.php deleted file mode 100644 index 463a0967..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdMob/StringList.php +++ /dev/null @@ -1,31 +0,0 @@ -values = $values; - } - public function getValues() - { - return $this->values; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense.php deleted file mode 100644 index 4c3d33d7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense.php +++ /dev/null @@ -1,1077 +0,0 @@ - - * Accesses AdSense publishers' inventory and generates performance reports.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_AdSense extends Google_Service -{ - /** View and manage your AdSense data. */ - const ADSENSE = - "https://www.googleapis.com/auth/adsense"; - /** View your AdSense data. */ - const ADSENSE_READONLY = - "https://www.googleapis.com/auth/adsense.readonly"; - - public $accounts; - public $accounts_adclients; - public $accounts_adunits; - public $accounts_adunits_customchannels; - public $accounts_alerts; - public $accounts_customchannels; - public $accounts_customchannels_adunits; - public $accounts_payments; - public $accounts_reports; - public $accounts_reports_saved; - public $accounts_savedadstyles; - public $accounts_urlchannels; - public $adclients; - public $adunits; - public $adunits_customchannels; - public $alerts; - public $customchannels; - public $customchannels_adunits; - public $metadata_dimensions; - public $metadata_metrics; - public $payments; - public $reports; - public $reports_saved; - public $savedadstyles; - public $urlchannels; - - /** - * Constructs the internal representation of the AdSense service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://www.googleapis.com/'; - $this->servicePath = 'adsense/v1.4/'; - $this->batchPath = 'batch/adsense/v1.4'; - $this->version = 'v1.4'; - $this->serviceName = 'adsense'; - - $this->accounts = new Google_Service_AdSense_Resource_Accounts( - $this, - $this->serviceName, - 'accounts', - array( - 'methods' => array( - 'get' => array( - 'path' => 'accounts/{accountId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'tree' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'list' => array( - 'path' => 'accounts', - 'httpMethod' => 'GET', - 'parameters' => array( - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->accounts_adclients = new Google_Service_AdSense_Resource_AccountsAdclients( - $this, - $this->serviceName, - 'adclients', - array( - 'methods' => array( - 'getAdCode' => array( - 'path' => 'accounts/{accountId}/adclients/{adClientId}/adcode', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'accounts/{accountId}/adclients', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->accounts_adunits = new Google_Service_AdSense_Resource_AccountsAdunits( - $this, - $this->serviceName, - 'adunits', - array( - 'methods' => array( - 'get' => array( - 'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits/{adUnitId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adUnitId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getAdCode' => array( - 'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits/{adUnitId}/adcode', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adUnitId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'includeInactive' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->accounts_adunits_customchannels = new Google_Service_AdSense_Resource_AccountsAdunitsCustomchannels( - $this, - $this->serviceName, - 'customchannels', - array( - 'methods' => array( - 'list' => array( - 'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits/{adUnitId}/customchannels', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adUnitId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->accounts_alerts = new Google_Service_AdSense_Resource_AccountsAlerts( - $this, - $this->serviceName, - 'alerts', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'accounts/{accountId}/alerts/{alertId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'alertId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'accounts/{accountId}/alerts', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->accounts_customchannels = new Google_Service_AdSense_Resource_AccountsCustomchannels( - $this, - $this->serviceName, - 'customchannels', - array( - 'methods' => array( - 'get' => array( - 'path' => 'accounts/{accountId}/adclients/{adClientId}/customchannels/{customChannelId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'customChannelId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'accounts/{accountId}/adclients/{adClientId}/customchannels', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->accounts_customchannels_adunits = new Google_Service_AdSense_Resource_AccountsCustomchannelsAdunits( - $this, - $this->serviceName, - 'adunits', - array( - 'methods' => array( - 'list' => array( - 'path' => 'accounts/{accountId}/adclients/{adClientId}/customchannels/{customChannelId}/adunits', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'customChannelId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'includeInactive' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->accounts_payments = new Google_Service_AdSense_Resource_AccountsPayments( - $this, - $this->serviceName, - 'payments', - array( - 'methods' => array( - 'list' => array( - 'path' => 'accounts/{accountId}/payments', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->accounts_reports = new Google_Service_AdSense_Resource_AccountsReports( - $this, - $this->serviceName, - 'reports', - array( - 'methods' => array( - 'generate' => array( - 'path' => 'accounts/{accountId}/reports', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'startDate' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'endDate' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'currency' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'dimension' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'metric' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'sort' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'startIndex' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'useTimezoneReporting' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ), - ) - ) - ); - $this->accounts_reports_saved = new Google_Service_AdSense_Resource_AccountsReportsSaved( - $this, - $this->serviceName, - 'saved', - array( - 'methods' => array( - 'generate' => array( - 'path' => 'accounts/{accountId}/reports/{savedReportId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'savedReportId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'startIndex' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'list' => array( - 'path' => 'accounts/{accountId}/reports/saved', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->accounts_savedadstyles = new Google_Service_AdSense_Resource_AccountsSavedadstyles( - $this, - $this->serviceName, - 'savedadstyles', - array( - 'methods' => array( - 'get' => array( - 'path' => 'accounts/{accountId}/savedadstyles/{savedAdStyleId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'savedAdStyleId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'accounts/{accountId}/savedadstyles', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->accounts_urlchannels = new Google_Service_AdSense_Resource_AccountsUrlchannels( - $this, - $this->serviceName, - 'urlchannels', - array( - 'methods' => array( - 'list' => array( - 'path' => 'accounts/{accountId}/adclients/{adClientId}/urlchannels', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->adclients = new Google_Service_AdSense_Resource_Adclients( - $this, - $this->serviceName, - 'adclients', - array( - 'methods' => array( - 'list' => array( - 'path' => 'adclients', - 'httpMethod' => 'GET', - 'parameters' => array( - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->adunits = new Google_Service_AdSense_Resource_Adunits( - $this, - $this->serviceName, - 'adunits', - array( - 'methods' => array( - 'get' => array( - 'path' => 'adclients/{adClientId}/adunits/{adUnitId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adUnitId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getAdCode' => array( - 'path' => 'adclients/{adClientId}/adunits/{adUnitId}/adcode', - 'httpMethod' => 'GET', - 'parameters' => array( - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adUnitId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'adclients/{adClientId}/adunits', - 'httpMethod' => 'GET', - 'parameters' => array( - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'includeInactive' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->adunits_customchannels = new Google_Service_AdSense_Resource_AdunitsCustomchannels( - $this, - $this->serviceName, - 'customchannels', - array( - 'methods' => array( - 'list' => array( - 'path' => 'adclients/{adClientId}/adunits/{adUnitId}/customchannels', - 'httpMethod' => 'GET', - 'parameters' => array( - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adUnitId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->alerts = new Google_Service_AdSense_Resource_Alerts( - $this, - $this->serviceName, - 'alerts', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'alerts/{alertId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'alertId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'alerts', - 'httpMethod' => 'GET', - 'parameters' => array( - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->customchannels = new Google_Service_AdSense_Resource_Customchannels( - $this, - $this->serviceName, - 'customchannels', - array( - 'methods' => array( - 'get' => array( - 'path' => 'adclients/{adClientId}/customchannels/{customChannelId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'customChannelId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'adclients/{adClientId}/customchannels', - 'httpMethod' => 'GET', - 'parameters' => array( - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->customchannels_adunits = new Google_Service_AdSense_Resource_CustomchannelsAdunits( - $this, - $this->serviceName, - 'adunits', - array( - 'methods' => array( - 'list' => array( - 'path' => 'adclients/{adClientId}/customchannels/{customChannelId}/adunits', - 'httpMethod' => 'GET', - 'parameters' => array( - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'customChannelId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'includeInactive' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->metadata_dimensions = new Google_Service_AdSense_Resource_MetadataDimensions( - $this, - $this->serviceName, - 'dimensions', - array( - 'methods' => array( - 'list' => array( - 'path' => 'metadata/dimensions', - 'httpMethod' => 'GET', - 'parameters' => array(), - ), - ) - ) - ); - $this->metadata_metrics = new Google_Service_AdSense_Resource_MetadataMetrics( - $this, - $this->serviceName, - 'metrics', - array( - 'methods' => array( - 'list' => array( - 'path' => 'metadata/metrics', - 'httpMethod' => 'GET', - 'parameters' => array(), - ), - ) - ) - ); - $this->payments = new Google_Service_AdSense_Resource_Payments( - $this, - $this->serviceName, - 'payments', - array( - 'methods' => array( - 'list' => array( - 'path' => 'payments', - 'httpMethod' => 'GET', - 'parameters' => array(), - ), - ) - ) - ); - $this->reports = new Google_Service_AdSense_Resource_Reports( - $this, - $this->serviceName, - 'reports', - array( - 'methods' => array( - 'generate' => array( - 'path' => 'reports', - 'httpMethod' => 'GET', - 'parameters' => array( - 'startDate' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'endDate' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'accountId' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'currency' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'dimension' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'metric' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'sort' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'startIndex' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'useTimezoneReporting' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ), - ) - ) - ); - $this->reports_saved = new Google_Service_AdSense_Resource_ReportsSaved( - $this, - $this->serviceName, - 'saved', - array( - 'methods' => array( - 'generate' => array( - 'path' => 'reports/{savedReportId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'savedReportId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'startIndex' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'list' => array( - 'path' => 'reports/saved', - 'httpMethod' => 'GET', - 'parameters' => array( - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->savedadstyles = new Google_Service_AdSense_Resource_Savedadstyles( - $this, - $this->serviceName, - 'savedadstyles', - array( - 'methods' => array( - 'get' => array( - 'path' => 'savedadstyles/{savedAdStyleId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'savedAdStyleId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'savedadstyles', - 'httpMethod' => 'GET', - 'parameters' => array( - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->urlchannels = new Google_Service_AdSense_Resource_Urlchannels( - $this, - $this->serviceName, - 'urlchannels', - array( - 'methods' => array( - 'list' => array( - 'path' => 'adclients/{adClientId}/urlchannels', - 'httpMethod' => 'GET', - 'parameters' => array( - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Account.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Account.php deleted file mode 100644 index d235589a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Account.php +++ /dev/null @@ -1,95 +0,0 @@ - "creation_time", - ); - public $creationTime; - public $id; - public $kind; - public $name; - public $premium; - protected $subAccountsType = 'Google_Service_AdSense_Account'; - protected $subAccountsDataType = 'array'; - public $timezone; - - public function setCreationTime($creationTime) - { - $this->creationTime = $creationTime; - } - public function getCreationTime() - { - return $this->creationTime; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPremium($premium) - { - $this->premium = $premium; - } - public function getPremium() - { - return $this->premium; - } - /** - * @param Google_Service_AdSense_Account - */ - public function setSubAccounts($subAccounts) - { - $this->subAccounts = $subAccounts; - } - /** - * @return Google_Service_AdSense_Account - */ - public function getSubAccounts() - { - return $this->subAccounts; - } - public function setTimezone($timezone) - { - $this->timezone = $timezone; - } - public function getTimezone() - { - return $this->timezone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Accounts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Accounts.php deleted file mode 100644 index ee1cb1e9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Accounts.php +++ /dev/null @@ -1,65 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_AdSense_Account - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_AdSense_Account - */ - public function getItems() - { - return $this->items; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/AdClient.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/AdClient.php deleted file mode 100644 index 489fcd25..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/AdClient.php +++ /dev/null @@ -1,66 +0,0 @@ -arcOptIn = $arcOptIn; - } - public function getArcOptIn() - { - return $this->arcOptIn; - } - 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 setProductCode($productCode) - { - $this->productCode = $productCode; - } - public function getProductCode() - { - return $this->productCode; - } - public function setSupportsReporting($supportsReporting) - { - $this->supportsReporting = $supportsReporting; - } - public function getSupportsReporting() - { - return $this->supportsReporting; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/AdClients.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/AdClients.php deleted file mode 100644 index 4e49035b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/AdClients.php +++ /dev/null @@ -1,65 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_AdSense_AdClient - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_AdSense_AdClient - */ - public function getItems() - { - return $this->items; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/AdCode.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/AdCode.php deleted file mode 100644 index f096bd63..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/AdCode.php +++ /dev/null @@ -1,57 +0,0 @@ -adCode = $adCode; - } - public function getAdCode() - { - return $this->adCode; - } - public function setAmpBody($ampBody) - { - $this->ampBody = $ampBody; - } - public function getAmpBody() - { - return $this->ampBody; - } - public function setAmpHead($ampHead) - { - $this->ampHead = $ampHead; - } - public function getAmpHead() - { - return $this->ampHead; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/AdStyle.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/AdStyle.php deleted file mode 100644 index 9289f5d4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/AdStyle.php +++ /dev/null @@ -1,71 +0,0 @@ -colors = $colors; - } - /** - * @return Google_Service_AdSense_AdStyleColors - */ - public function getColors() - { - return $this->colors; - } - public function setCorners($corners) - { - $this->corners = $corners; - } - public function getCorners() - { - return $this->corners; - } - /** - * @param Google_Service_AdSense_AdStyleFont - */ - public function setFont(Google_Service_AdSense_AdStyleFont $font) - { - $this->font = $font; - } - /** - * @return Google_Service_AdSense_AdStyleFont - */ - public function getFont() - { - return $this->font; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/AdStyleColors.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/AdStyleColors.php deleted file mode 100644 index 68314a96..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/AdStyleColors.php +++ /dev/null @@ -1,66 +0,0 @@ -background = $background; - } - public function getBackground() - { - return $this->background; - } - public function setBorder($border) - { - $this->border = $border; - } - public function getBorder() - { - return $this->border; - } - public function setText($text) - { - $this->text = $text; - } - public function getText() - { - return $this->text; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/AdStyleFont.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/AdStyleFont.php deleted file mode 100644 index c7b44ca7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/AdStyleFont.php +++ /dev/null @@ -1,39 +0,0 @@ -family = $family; - } - public function getFamily() - { - return $this->family; - } - public function setSize($size) - { - $this->size = $size; - } - public function getSize() - { - return $this->size; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/AdUnit.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/AdUnit.php deleted file mode 100644 index 2003ca2c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/AdUnit.php +++ /dev/null @@ -1,139 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_AdSense_AdUnitContentAdsSettings - */ - public function setContentAdsSettings(Google_Service_AdSense_AdUnitContentAdsSettings $contentAdsSettings) - { - $this->contentAdsSettings = $contentAdsSettings; - } - /** - * @return Google_Service_AdSense_AdUnitContentAdsSettings - */ - public function getContentAdsSettings() - { - return $this->contentAdsSettings; - } - /** - * @param Google_Service_AdSense_AdStyle - */ - public function setCustomStyle(Google_Service_AdSense_AdStyle $customStyle) - { - $this->customStyle = $customStyle; - } - /** - * @return Google_Service_AdSense_AdStyle - */ - public function getCustomStyle() - { - return $this->customStyle; - } - /** - * @param Google_Service_AdSense_AdUnitFeedAdsSettings - */ - public function setFeedAdsSettings(Google_Service_AdSense_AdUnitFeedAdsSettings $feedAdsSettings) - { - $this->feedAdsSettings = $feedAdsSettings; - } - /** - * @return Google_Service_AdSense_AdUnitFeedAdsSettings - */ - public function getFeedAdsSettings() - { - return $this->feedAdsSettings; - } - 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; - } - /** - * @param Google_Service_AdSense_AdUnitMobileContentAdsSettings - */ - public function setMobileContentAdsSettings(Google_Service_AdSense_AdUnitMobileContentAdsSettings $mobileContentAdsSettings) - { - $this->mobileContentAdsSettings = $mobileContentAdsSettings; - } - /** - * @return Google_Service_AdSense_AdUnitMobileContentAdsSettings - */ - public function getMobileContentAdsSettings() - { - return $this->mobileContentAdsSettings; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setSavedStyleId($savedStyleId) - { - $this->savedStyleId = $savedStyleId; - } - public function getSavedStyleId() - { - return $this->savedStyleId; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/AdUnitContentAdsSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/AdUnitContentAdsSettings.php deleted file mode 100644 index 774d98d3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/AdUnitContentAdsSettings.php +++ /dev/null @@ -1,55 +0,0 @@ -backupOption = $backupOption; - } - /** - * @return Google_Service_AdSense_AdUnitContentAdsSettingsBackupOption - */ - public function getBackupOption() - { - return $this->backupOption; - } - public function setSize($size) - { - $this->size = $size; - } - public function getSize() - { - return $this->size; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/AdUnitContentAdsSettingsBackupOption.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/AdUnitContentAdsSettingsBackupOption.php deleted file mode 100644 index f1fbeb37..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/AdUnitContentAdsSettingsBackupOption.php +++ /dev/null @@ -1,48 +0,0 @@ -color = $color; - } - public function getColor() - { - return $this->color; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/AdUnitFeedAdsSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/AdUnitFeedAdsSettings.php deleted file mode 100644 index 6d40a8e8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/AdUnitFeedAdsSettings.php +++ /dev/null @@ -1,57 +0,0 @@ -adPosition = $adPosition; - } - public function getAdPosition() - { - return $this->adPosition; - } - public function setFrequency($frequency) - { - $this->frequency = $frequency; - } - public function getFrequency() - { - return $this->frequency; - } - public function setMinimumWordCount($minimumWordCount) - { - $this->minimumWordCount = $minimumWordCount; - } - public function getMinimumWordCount() - { - return $this->minimumWordCount; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/AdUnitMobileContentAdsSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/AdUnitMobileContentAdsSettings.php deleted file mode 100644 index 046b8236..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/AdUnitMobileContentAdsSettings.php +++ /dev/null @@ -1,57 +0,0 @@ -markupLanguage = $markupLanguage; - } - public function getMarkupLanguage() - { - return $this->markupLanguage; - } - public function setScriptingLanguage($scriptingLanguage) - { - $this->scriptingLanguage = $scriptingLanguage; - } - public function getScriptingLanguage() - { - return $this->scriptingLanguage; - } - public function setSize($size) - { - $this->size = $size; - } - public function getSize() - { - return $this->size; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/AdUnits.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/AdUnits.php deleted file mode 100644 index 7ee13406..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/AdUnits.php +++ /dev/null @@ -1,65 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_AdSense_AdUnit - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_AdSense_AdUnit - */ - public function getItems() - { - return $this->items; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/AdsenseReportsGenerateResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/AdsenseReportsGenerateResponse.php deleted file mode 100644 index 681025ed..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/AdsenseReportsGenerateResponse.php +++ /dev/null @@ -1,110 +0,0 @@ -averages = $averages; - } - public function getAverages() - { - return $this->averages; - } - public function setEndDate($endDate) - { - $this->endDate = $endDate; - } - public function getEndDate() - { - return $this->endDate; - } - /** - * @param Google_Service_AdSense_AdsenseReportsGenerateResponseHeaders - */ - public function setHeaders($headers) - { - $this->headers = $headers; - } - /** - * @return Google_Service_AdSense_AdsenseReportsGenerateResponseHeaders - */ - public function getHeaders() - { - return $this->headers; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setRows($rows) - { - $this->rows = $rows; - } - public function getRows() - { - return $this->rows; - } - public function setStartDate($startDate) - { - $this->startDate = $startDate; - } - public function getStartDate() - { - return $this->startDate; - } - public function setTotalMatchedRows($totalMatchedRows) - { - $this->totalMatchedRows = $totalMatchedRows; - } - public function getTotalMatchedRows() - { - return $this->totalMatchedRows; - } - public function setTotals($totals) - { - $this->totals = $totals; - } - public function getTotals() - { - return $this->totals; - } - public function setWarnings($warnings) - { - $this->warnings = $warnings; - } - public function getWarnings() - { - return $this->warnings; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/AdsenseReportsGenerateResponseHeaders.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/AdsenseReportsGenerateResponseHeaders.php deleted file mode 100644 index 611dcc0c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/AdsenseReportsGenerateResponseHeaders.php +++ /dev/null @@ -1,48 +0,0 @@ -currency = $currency; - } - public function getCurrency() - { - return $this->currency; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Alert.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Alert.php deleted file mode 100644 index 3d391453..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Alert.php +++ /dev/null @@ -1,75 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setIsDismissible($isDismissible) - { - $this->isDismissible = $isDismissible; - } - public function getIsDismissible() - { - return $this->isDismissible; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } - public function setSeverity($severity) - { - $this->severity = $severity; - } - public function getSeverity() - { - return $this->severity; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Alerts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Alerts.php deleted file mode 100644 index d9a89663..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Alerts.php +++ /dev/null @@ -1,47 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_AdSense_Alert - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/CustomChannel.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/CustomChannel.php deleted file mode 100644 index 5f405929..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/CustomChannel.php +++ /dev/null @@ -1,73 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_AdSense_CustomChannelTargetingInfo - */ - public function setTargetingInfo(Google_Service_AdSense_CustomChannelTargetingInfo $targetingInfo) - { - $this->targetingInfo = $targetingInfo; - } - /** - * @return Google_Service_AdSense_CustomChannelTargetingInfo - */ - public function getTargetingInfo() - { - return $this->targetingInfo; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/CustomChannelTargetingInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/CustomChannelTargetingInfo.php deleted file mode 100644 index c33b1b34..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/CustomChannelTargetingInfo.php +++ /dev/null @@ -1,57 +0,0 @@ -adsAppearOn = $adsAppearOn; - } - public function getAdsAppearOn() - { - return $this->adsAppearOn; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setSiteLanguage($siteLanguage) - { - $this->siteLanguage = $siteLanguage; - } - public function getSiteLanguage() - { - return $this->siteLanguage; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/CustomChannels.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/CustomChannels.php deleted file mode 100644 index 20a02720..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/CustomChannels.php +++ /dev/null @@ -1,65 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_AdSense_CustomChannel - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_AdSense_CustomChannel - */ - public function getItems() - { - return $this->items; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Metadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Metadata.php deleted file mode 100644 index 0ccba4a8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Metadata.php +++ /dev/null @@ -1,47 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_AdSense_ReportingMetadataEntry - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Payment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Payment.php deleted file mode 100644 index bd602e43..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Payment.php +++ /dev/null @@ -1,66 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setPaymentAmount($paymentAmount) - { - $this->paymentAmount = $paymentAmount; - } - public function getPaymentAmount() - { - return $this->paymentAmount; - } - public function setPaymentAmountCurrencyCode($paymentAmountCurrencyCode) - { - $this->paymentAmountCurrencyCode = $paymentAmountCurrencyCode; - } - public function getPaymentAmountCurrencyCode() - { - return $this->paymentAmountCurrencyCode; - } - public function setPaymentDate($paymentDate) - { - $this->paymentDate = $paymentDate; - } - public function getPaymentDate() - { - return $this->paymentDate; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Payments.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Payments.php deleted file mode 100644 index d68f3918..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Payments.php +++ /dev/null @@ -1,47 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_AdSense_Payment - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/ReportingMetadataEntry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/ReportingMetadataEntry.php deleted file mode 100644 index 77b74783..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/ReportingMetadataEntry.php +++ /dev/null @@ -1,85 +0,0 @@ -compatibleDimensions = $compatibleDimensions; - } - public function getCompatibleDimensions() - { - return $this->compatibleDimensions; - } - public function setCompatibleMetrics($compatibleMetrics) - { - $this->compatibleMetrics = $compatibleMetrics; - } - public function getCompatibleMetrics() - { - return $this->compatibleMetrics; - } - 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 setRequiredDimensions($requiredDimensions) - { - $this->requiredDimensions = $requiredDimensions; - } - public function getRequiredDimensions() - { - return $this->requiredDimensions; - } - public function setRequiredMetrics($requiredMetrics) - { - $this->requiredMetrics = $requiredMetrics; - } - public function getRequiredMetrics() - { - return $this->requiredMetrics; - } - public function setSupportedProducts($supportedProducts) - { - $this->supportedProducts = $supportedProducts; - } - public function getSupportedProducts() - { - return $this->supportedProducts; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/Accounts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/Accounts.php deleted file mode 100644 index c6a6d640..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/Accounts.php +++ /dev/null @@ -1,61 +0,0 @@ - - * $adsenseService = new Google_Service_AdSense(...); - * $accounts = $adsenseService->accounts; - * - */ -class Google_Service_AdSense_Resource_Accounts extends Google_Service_Resource -{ - /** - * Get information about the selected AdSense account. (accounts.get) - * - * @param string $accountId Account to get information about. - * @param array $optParams Optional parameters. - * - * @opt_param bool tree Whether the tree of sub accounts should be returned. - * @return Google_Service_AdSense_Account - */ - public function get($accountId, $optParams = array()) - { - $params = array('accountId' => $accountId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AdSense_Account"); - } - /** - * List all accounts available to this AdSense account. (accounts.listAccounts) - * - * @param array $optParams Optional parameters. - * - * @opt_param int maxResults The maximum number of accounts to include in the - * response, used for paging. - * @opt_param string pageToken A continuation token, used to page through - * accounts. To retrieve the next page, set this parameter to the value of - * "nextPageToken" from the previous response. - * @return Google_Service_AdSense_Accounts - */ - public function listAccounts($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdSense_Accounts"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/AccountsAdclients.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/AccountsAdclients.php deleted file mode 100644 index 457b16ee..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/AccountsAdclients.php +++ /dev/null @@ -1,62 +0,0 @@ - - * $adsenseService = new Google_Service_AdSense(...); - * $adclients = $adsenseService->adclients; - * - */ -class Google_Service_AdSense_Resource_AccountsAdclients extends Google_Service_Resource -{ - /** - * Get Auto ad code for a given ad client. (adclients.getAdCode) - * - * @param string $accountId Account which contains the ad client. - * @param string $adClientId Ad client to get the code for. - * @param array $optParams Optional parameters. - * @return Google_Service_AdSense_AdCode - */ - public function getAdCode($accountId, $adClientId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'adClientId' => $adClientId); - $params = array_merge($params, $optParams); - return $this->call('getAdCode', array($params), "Google_Service_AdSense_AdCode"); - } - /** - * List all ad clients in the specified account. - * (adclients.listAccountsAdclients) - * - * @param string $accountId Account for which to list ad clients. - * @param array $optParams Optional parameters. - * - * @opt_param int maxResults The maximum number of ad clients to include in the - * response, used for paging. - * @opt_param string pageToken A continuation token, used to page through ad - * clients. To retrieve the next page, set this parameter to the value of - * "nextPageToken" from the previous response. - * @return Google_Service_AdSense_AdClients - */ - public function listAccountsAdclients($accountId, $optParams = array()) - { - $params = array('accountId' => $accountId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdSense_AdClients"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/AccountsAdunits.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/AccountsAdunits.php deleted file mode 100644 index 8e1682d1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/AccountsAdunits.php +++ /dev/null @@ -1,82 +0,0 @@ - - * $adsenseService = new Google_Service_AdSense(...); - * $adunits = $adsenseService->adunits; - * - */ -class Google_Service_AdSense_Resource_AccountsAdunits extends Google_Service_Resource -{ - /** - * Gets the specified ad unit in the specified ad client for the specified - * account. (adunits.get) - * - * @param string $accountId Account to which the ad client belongs. - * @param string $adClientId Ad client for which to get the ad unit. - * @param string $adUnitId Ad unit to retrieve. - * @param array $optParams Optional parameters. - * @return Google_Service_AdSense_AdUnit - */ - public function get($accountId, $adClientId, $adUnitId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'adUnitId' => $adUnitId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AdSense_AdUnit"); - } - /** - * Get ad code for the specified ad unit. (adunits.getAdCode) - * - * @param string $accountId Account which contains the ad client. - * @param string $adClientId Ad client with contains the ad unit. - * @param string $adUnitId Ad unit to get the code for. - * @param array $optParams Optional parameters. - * @return Google_Service_AdSense_AdCode - */ - public function getAdCode($accountId, $adClientId, $adUnitId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'adUnitId' => $adUnitId); - $params = array_merge($params, $optParams); - return $this->call('getAdCode', array($params), "Google_Service_AdSense_AdCode"); - } - /** - * List all ad units in the specified ad client for the specified account. - * (adunits.listAccountsAdunits) - * - * @param string $accountId Account to which the ad client belongs. - * @param string $adClientId Ad client for which to list ad units. - * @param array $optParams Optional parameters. - * - * @opt_param bool includeInactive Whether to include inactive ad units. - * Default: true. - * @opt_param int maxResults The maximum number of ad units to include in the - * response, used for paging. - * @opt_param string pageToken A continuation token, used to page through ad - * units. To retrieve the next page, set this parameter to the value of - * "nextPageToken" from the previous response. - * @return Google_Service_AdSense_AdUnits - */ - public function listAccountsAdunits($accountId, $adClientId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'adClientId' => $adClientId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdSense_AdUnits"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/AccountsAdunitsCustomchannels.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/AccountsAdunitsCustomchannels.php deleted file mode 100644 index 5d0c0d5e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/AccountsAdunitsCustomchannels.php +++ /dev/null @@ -1,50 +0,0 @@ - - * $adsenseService = new Google_Service_AdSense(...); - * $customchannels = $adsenseService->customchannels; - * - */ -class Google_Service_AdSense_Resource_AccountsAdunitsCustomchannels extends Google_Service_Resource -{ - /** - * List all custom channels which the specified ad unit belongs to. - * (customchannels.listAccountsAdunitsCustomchannels) - * - * @param string $accountId Account to which the ad client belongs. - * @param string $adClientId Ad client which contains the ad unit. - * @param string $adUnitId Ad unit for which to list custom channels. - * @param array $optParams Optional parameters. - * - * @opt_param int maxResults The maximum number of custom channels to include in - * the response, used for paging. - * @opt_param string pageToken A continuation token, used to page through custom - * channels. To retrieve the next page, set this parameter to the value of - * "nextPageToken" from the previous response. - * @return Google_Service_AdSense_CustomChannels - */ - public function listAccountsAdunitsCustomchannels($accountId, $adClientId, $adUnitId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'adUnitId' => $adUnitId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdSense_CustomChannels"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/AccountsAlerts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/AccountsAlerts.php deleted file mode 100644 index 7b036209..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/AccountsAlerts.php +++ /dev/null @@ -1,60 +0,0 @@ - - * $adsenseService = new Google_Service_AdSense(...); - * $alerts = $adsenseService->alerts; - * - */ -class Google_Service_AdSense_Resource_AccountsAlerts extends Google_Service_Resource -{ - /** - * Dismiss (delete) the specified alert from the specified publisher AdSense - * account. (alerts.delete) - * - * @param string $accountId Account which contains the ad unit. - * @param string $alertId Alert to delete. - * @param array $optParams Optional parameters. - */ - public function delete($accountId, $alertId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'alertId' => $alertId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * List the alerts for the specified AdSense account. - * (alerts.listAccountsAlerts) - * - * @param string $accountId Account for which to retrieve the alerts. - * @param array $optParams Optional parameters. - * - * @opt_param string locale The locale to use for translating alert messages. - * The account locale will be used if this is not supplied. The AdSense default - * (English) will be used if the supplied locale is invalid or unsupported. - * @return Google_Service_AdSense_Alerts - */ - public function listAccountsAlerts($accountId, $optParams = array()) - { - $params = array('accountId' => $accountId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdSense_Alerts"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/AccountsCustomchannels.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/AccountsCustomchannels.php deleted file mode 100644 index e4bf6744..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/AccountsCustomchannels.php +++ /dev/null @@ -1,65 +0,0 @@ - - * $adsenseService = new Google_Service_AdSense(...); - * $customchannels = $adsenseService->customchannels; - * - */ -class Google_Service_AdSense_Resource_AccountsCustomchannels extends Google_Service_Resource -{ - /** - * Get the specified custom channel from the specified ad client for the - * specified account. (customchannels.get) - * - * @param string $accountId Account to which the ad client belongs. - * @param string $adClientId Ad client which contains the custom channel. - * @param string $customChannelId Custom channel to retrieve. - * @param array $optParams Optional parameters. - * @return Google_Service_AdSense_CustomChannel - */ - public function get($accountId, $adClientId, $customChannelId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'customChannelId' => $customChannelId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AdSense_CustomChannel"); - } - /** - * List all custom channels in the specified ad client for the specified - * account. (customchannels.listAccountsCustomchannels) - * - * @param string $accountId Account to which the ad client belongs. - * @param string $adClientId Ad client for which to list custom channels. - * @param array $optParams Optional parameters. - * - * @opt_param int maxResults The maximum number of custom channels to include in - * the response, used for paging. - * @opt_param string pageToken A continuation token, used to page through custom - * channels. To retrieve the next page, set this parameter to the value of - * "nextPageToken" from the previous response. - * @return Google_Service_AdSense_CustomChannels - */ - public function listAccountsCustomchannels($accountId, $adClientId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'adClientId' => $adClientId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdSense_CustomChannels"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/AccountsCustomchannelsAdunits.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/AccountsCustomchannelsAdunits.php deleted file mode 100644 index 6ae6f473..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/AccountsCustomchannelsAdunits.php +++ /dev/null @@ -1,52 +0,0 @@ - - * $adsenseService = new Google_Service_AdSense(...); - * $adunits = $adsenseService->adunits; - * - */ -class Google_Service_AdSense_Resource_AccountsCustomchannelsAdunits extends Google_Service_Resource -{ - /** - * List all ad units in the specified custom channel. - * (adunits.listAccountsCustomchannelsAdunits) - * - * @param string $accountId Account to which the ad client belongs. - * @param string $adClientId Ad client which contains the custom channel. - * @param string $customChannelId Custom channel for which to list ad units. - * @param array $optParams Optional parameters. - * - * @opt_param bool includeInactive Whether to include inactive ad units. - * Default: true. - * @opt_param int maxResults The maximum number of ad units to include in the - * response, used for paging. - * @opt_param string pageToken A continuation token, used to page through ad - * units. To retrieve the next page, set this parameter to the value of - * "nextPageToken" from the previous response. - * @return Google_Service_AdSense_AdUnits - */ - public function listAccountsCustomchannelsAdunits($accountId, $adClientId, $customChannelId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'customChannelId' => $customChannelId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdSense_AdUnits"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/AccountsPayments.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/AccountsPayments.php deleted file mode 100644 index cf94205d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/AccountsPayments.php +++ /dev/null @@ -1,42 +0,0 @@ - - * $adsenseService = new Google_Service_AdSense(...); - * $payments = $adsenseService->payments; - * - */ -class Google_Service_AdSense_Resource_AccountsPayments extends Google_Service_Resource -{ - /** - * List the payments for the specified AdSense account. - * (payments.listAccountsPayments) - * - * @param string $accountId Account for which to retrieve the payments. - * @param array $optParams Optional parameters. - * @return Google_Service_AdSense_Payments - */ - public function listAccountsPayments($accountId, $optParams = array()) - { - $params = array('accountId' => $accountId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdSense_Payments"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/AccountsReports.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/AccountsReports.php deleted file mode 100644 index cca7772b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/AccountsReports.php +++ /dev/null @@ -1,64 +0,0 @@ - - * $adsenseService = new Google_Service_AdSense(...); - * $reports = $adsenseService->reports; - * - */ -class Google_Service_AdSense_Resource_AccountsReports extends Google_Service_Resource -{ - /** - * Generate an AdSense report based on the report request sent in the query - * parameters. Returns the result as JSON; to retrieve output in CSV format - * specify "alt=csv" as a query parameter. (reports.generate) - * - * @param string $accountId Account upon which to report. - * @param string $startDate Start of the date range to report on in "YYYY-MM-DD" - * format, inclusive. - * @param string $endDate End of the date range to report on in "YYYY-MM-DD" - * format, inclusive. - * @param array $optParams Optional parameters. - * - * @opt_param string currency Optional currency to use when reporting on - * monetary metrics. Defaults to the account's currency if not set. - * @opt_param string dimension Dimensions to base the report on. - * @opt_param string filter Filters to be run on the report. - * @opt_param string locale Optional locale to use for translating report output - * to a local language. Defaults to "en_US" if not specified. - * @opt_param int maxResults The maximum number of rows of report data to - * return. - * @opt_param string metric Numeric columns to include in the report. - * @opt_param string sort The name of a dimension or metric to sort the - * resulting report on, optionally prefixed with "+" to sort ascending or "-" to - * sort descending. If no prefix is specified, the column is sorted ascending. - * @opt_param int startIndex Index of the first row of report data to return. - * @opt_param bool useTimezoneReporting Whether the report should be generated - * in the AdSense account's local timezone. If false default PST/PDT timezone - * will be used. - * @return Google_Service_AdSense_AdsenseReportsGenerateResponse - */ - public function generate($accountId, $startDate, $endDate, $optParams = array()) - { - $params = array('accountId' => $accountId, 'startDate' => $startDate, 'endDate' => $endDate); - $params = array_merge($params, $optParams); - return $this->call('generate', array($params), "Google_Service_AdSense_AdsenseReportsGenerateResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/AccountsReportsSaved.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/AccountsReportsSaved.php deleted file mode 100644 index e296c74f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/AccountsReportsSaved.php +++ /dev/null @@ -1,69 +0,0 @@ - - * $adsenseService = new Google_Service_AdSense(...); - * $saved = $adsenseService->saved; - * - */ -class Google_Service_AdSense_Resource_AccountsReportsSaved extends Google_Service_Resource -{ - /** - * Generate an AdSense report based on the saved report ID sent in the query - * parameters. (saved.generate) - * - * @param string $accountId Account to which the saved reports belong. - * @param string $savedReportId The saved report to retrieve. - * @param array $optParams Optional parameters. - * - * @opt_param string locale Optional locale to use for translating report output - * to a local language. Defaults to "en_US" if not specified. - * @opt_param int maxResults The maximum number of rows of report data to - * return. - * @opt_param int startIndex Index of the first row of report data to return. - * @return Google_Service_AdSense_AdsenseReportsGenerateResponse - */ - public function generate($accountId, $savedReportId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'savedReportId' => $savedReportId); - $params = array_merge($params, $optParams); - return $this->call('generate', array($params), "Google_Service_AdSense_AdsenseReportsGenerateResponse"); - } - /** - * List all saved reports in the specified AdSense account. - * (saved.listAccountsReportsSaved) - * - * @param string $accountId Account to which the saved reports belong. - * @param array $optParams Optional parameters. - * - * @opt_param int maxResults The maximum number of saved reports to include in - * the response, used for paging. - * @opt_param string pageToken A continuation token, used to page through saved - * reports. To retrieve the next page, set this parameter to the value of - * "nextPageToken" from the previous response. - * @return Google_Service_AdSense_SavedReports - */ - public function listAccountsReportsSaved($accountId, $optParams = array()) - { - $params = array('accountId' => $accountId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdSense_SavedReports"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/AccountsSavedadstyles.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/AccountsSavedadstyles.php deleted file mode 100644 index 4f8215bf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/AccountsSavedadstyles.php +++ /dev/null @@ -1,62 +0,0 @@ - - * $adsenseService = new Google_Service_AdSense(...); - * $savedadstyles = $adsenseService->savedadstyles; - * - */ -class Google_Service_AdSense_Resource_AccountsSavedadstyles extends Google_Service_Resource -{ - /** - * List a specific saved ad style for the specified account. (savedadstyles.get) - * - * @param string $accountId Account for which to get the saved ad style. - * @param string $savedAdStyleId Saved ad style to retrieve. - * @param array $optParams Optional parameters. - * @return Google_Service_AdSense_SavedAdStyle - */ - public function get($accountId, $savedAdStyleId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'savedAdStyleId' => $savedAdStyleId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AdSense_SavedAdStyle"); - } - /** - * List all saved ad styles in the specified account. - * (savedadstyles.listAccountsSavedadstyles) - * - * @param string $accountId Account for which to list saved ad styles. - * @param array $optParams Optional parameters. - * - * @opt_param int maxResults The maximum number of saved ad styles to include in - * the response, used for paging. - * @opt_param string pageToken A continuation token, used to page through saved - * ad styles. To retrieve the next page, set this parameter to the value of - * "nextPageToken" from the previous response. - * @return Google_Service_AdSense_SavedAdStyles - */ - public function listAccountsSavedadstyles($accountId, $optParams = array()) - { - $params = array('accountId' => $accountId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdSense_SavedAdStyles"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/AccountsUrlchannels.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/AccountsUrlchannels.php deleted file mode 100644 index 27c23a40..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/AccountsUrlchannels.php +++ /dev/null @@ -1,49 +0,0 @@ - - * $adsenseService = new Google_Service_AdSense(...); - * $urlchannels = $adsenseService->urlchannels; - * - */ -class Google_Service_AdSense_Resource_AccountsUrlchannels extends Google_Service_Resource -{ - /** - * List all URL channels in the specified ad client for the specified account. - * (urlchannels.listAccountsUrlchannels) - * - * @param string $accountId Account to which the ad client belongs. - * @param string $adClientId Ad client for which to list URL channels. - * @param array $optParams Optional parameters. - * - * @opt_param int maxResults The maximum number of URL channels to include in - * the response, used for paging. - * @opt_param string pageToken A continuation token, used to page through URL - * channels. To retrieve the next page, set this parameter to the value of - * "nextPageToken" from the previous response. - * @return Google_Service_AdSense_UrlChannels - */ - public function listAccountsUrlchannels($accountId, $adClientId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'adClientId' => $adClientId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdSense_UrlChannels"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/Adclients.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/Adclients.php deleted file mode 100644 index 023babb3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/Adclients.php +++ /dev/null @@ -1,46 +0,0 @@ - - * $adsenseService = new Google_Service_AdSense(...); - * $adclients = $adsenseService->adclients; - * - */ -class Google_Service_AdSense_Resource_Adclients extends Google_Service_Resource -{ - /** - * List all ad clients in this AdSense account. (adclients.listAdclients) - * - * @param array $optParams Optional parameters. - * - * @opt_param int maxResults The maximum number of ad clients to include in the - * response, used for paging. - * @opt_param string pageToken A continuation token, used to page through ad - * clients. To retrieve the next page, set this parameter to the value of - * "nextPageToken" from the previous response. - * @return Google_Service_AdSense_AdClients - */ - public function listAdclients($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdSense_AdClients"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/Adunits.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/Adunits.php deleted file mode 100644 index bb7d15de..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/Adunits.php +++ /dev/null @@ -1,78 +0,0 @@ - - * $adsenseService = new Google_Service_AdSense(...); - * $adunits = $adsenseService->adunits; - * - */ -class Google_Service_AdSense_Resource_Adunits extends Google_Service_Resource -{ - /** - * Gets the specified ad unit in the specified ad client. (adunits.get) - * - * @param string $adClientId Ad client for which to get the ad unit. - * @param string $adUnitId Ad unit to retrieve. - * @param array $optParams Optional parameters. - * @return Google_Service_AdSense_AdUnit - */ - public function get($adClientId, $adUnitId, $optParams = array()) - { - $params = array('adClientId' => $adClientId, 'adUnitId' => $adUnitId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AdSense_AdUnit"); - } - /** - * Get ad code for the specified ad unit. (adunits.getAdCode) - * - * @param string $adClientId Ad client with contains the ad unit. - * @param string $adUnitId Ad unit to get the code for. - * @param array $optParams Optional parameters. - * @return Google_Service_AdSense_AdCode - */ - public function getAdCode($adClientId, $adUnitId, $optParams = array()) - { - $params = array('adClientId' => $adClientId, 'adUnitId' => $adUnitId); - $params = array_merge($params, $optParams); - return $this->call('getAdCode', array($params), "Google_Service_AdSense_AdCode"); - } - /** - * List all ad units in the specified ad client for this AdSense account. - * (adunits.listAdunits) - * - * @param string $adClientId Ad client for which to list ad units. - * @param array $optParams Optional parameters. - * - * @opt_param bool includeInactive Whether to include inactive ad units. - * Default: true. - * @opt_param int maxResults The maximum number of ad units to include in the - * response, used for paging. - * @opt_param string pageToken A continuation token, used to page through ad - * units. To retrieve the next page, set this parameter to the value of - * "nextPageToken" from the previous response. - * @return Google_Service_AdSense_AdUnits - */ - public function listAdunits($adClientId, $optParams = array()) - { - $params = array('adClientId' => $adClientId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdSense_AdUnits"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/AdunitsCustomchannels.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/AdunitsCustomchannels.php deleted file mode 100644 index f445c669..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/AdunitsCustomchannels.php +++ /dev/null @@ -1,49 +0,0 @@ - - * $adsenseService = new Google_Service_AdSense(...); - * $customchannels = $adsenseService->customchannels; - * - */ -class Google_Service_AdSense_Resource_AdunitsCustomchannels extends Google_Service_Resource -{ - /** - * List all custom channels which the specified ad unit belongs to. - * (customchannels.listAdunitsCustomchannels) - * - * @param string $adClientId Ad client which contains the ad unit. - * @param string $adUnitId Ad unit for which to list custom channels. - * @param array $optParams Optional parameters. - * - * @opt_param int maxResults The maximum number of custom channels to include in - * the response, used for paging. - * @opt_param string pageToken A continuation token, used to page through custom - * channels. To retrieve the next page, set this parameter to the value of - * "nextPageToken" from the previous response. - * @return Google_Service_AdSense_CustomChannels - */ - public function listAdunitsCustomchannels($adClientId, $adUnitId, $optParams = array()) - { - $params = array('adClientId' => $adClientId, 'adUnitId' => $adUnitId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdSense_CustomChannels"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/Alerts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/Alerts.php deleted file mode 100644 index a9bec62e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/Alerts.php +++ /dev/null @@ -1,57 +0,0 @@ - - * $adsenseService = new Google_Service_AdSense(...); - * $alerts = $adsenseService->alerts; - * - */ -class Google_Service_AdSense_Resource_Alerts extends Google_Service_Resource -{ - /** - * Dismiss (delete) the specified alert from the publisher's AdSense account. - * (alerts.delete) - * - * @param string $alertId Alert to delete. - * @param array $optParams Optional parameters. - */ - public function delete($alertId, $optParams = array()) - { - $params = array('alertId' => $alertId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * List the alerts for this AdSense account. (alerts.listAlerts) - * - * @param array $optParams Optional parameters. - * - * @opt_param string locale The locale to use for translating alert messages. - * The account locale will be used if this is not supplied. The AdSense default - * (English) will be used if the supplied locale is invalid or unsupported. - * @return Google_Service_AdSense_Alerts - */ - public function listAlerts($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdSense_Alerts"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/Customchannels.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/Customchannels.php deleted file mode 100644 index 9fde63df..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/Customchannels.php +++ /dev/null @@ -1,63 +0,0 @@ - - * $adsenseService = new Google_Service_AdSense(...); - * $customchannels = $adsenseService->customchannels; - * - */ -class Google_Service_AdSense_Resource_Customchannels extends Google_Service_Resource -{ - /** - * Get the specified custom channel from the specified ad client. - * (customchannels.get) - * - * @param string $adClientId Ad client which contains the custom channel. - * @param string $customChannelId Custom channel to retrieve. - * @param array $optParams Optional parameters. - * @return Google_Service_AdSense_CustomChannel - */ - public function get($adClientId, $customChannelId, $optParams = array()) - { - $params = array('adClientId' => $adClientId, 'customChannelId' => $customChannelId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AdSense_CustomChannel"); - } - /** - * List all custom channels in the specified ad client for this AdSense account. - * (customchannels.listCustomchannels) - * - * @param string $adClientId Ad client for which to list custom channels. - * @param array $optParams Optional parameters. - * - * @opt_param int maxResults The maximum number of custom channels to include in - * the response, used for paging. - * @opt_param string pageToken A continuation token, used to page through custom - * channels. To retrieve the next page, set this parameter to the value of - * "nextPageToken" from the previous response. - * @return Google_Service_AdSense_CustomChannels - */ - public function listCustomchannels($adClientId, $optParams = array()) - { - $params = array('adClientId' => $adClientId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdSense_CustomChannels"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/CustomchannelsAdunits.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/CustomchannelsAdunits.php deleted file mode 100644 index c5ed571e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/CustomchannelsAdunits.php +++ /dev/null @@ -1,51 +0,0 @@ - - * $adsenseService = new Google_Service_AdSense(...); - * $adunits = $adsenseService->adunits; - * - */ -class Google_Service_AdSense_Resource_CustomchannelsAdunits extends Google_Service_Resource -{ - /** - * List all ad units in the specified custom channel. - * (adunits.listCustomchannelsAdunits) - * - * @param string $adClientId Ad client which contains the custom channel. - * @param string $customChannelId Custom channel for which to list ad units. - * @param array $optParams Optional parameters. - * - * @opt_param bool includeInactive Whether to include inactive ad units. - * Default: true. - * @opt_param int maxResults The maximum number of ad units to include in the - * response, used for paging. - * @opt_param string pageToken A continuation token, used to page through ad - * units. To retrieve the next page, set this parameter to the value of - * "nextPageToken" from the previous response. - * @return Google_Service_AdSense_AdUnits - */ - public function listCustomchannelsAdunits($adClientId, $customChannelId, $optParams = array()) - { - $params = array('adClientId' => $adClientId, 'customChannelId' => $customChannelId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdSense_AdUnits"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/Metadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/Metadata.php deleted file mode 100644 index 9ea6edab..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/Metadata.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $adsenseService = new Google_Service_AdSense(...); - * $metadata = $adsenseService->metadata; - * - */ -class Google_Service_AdSense_Resource_Metadata extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/MetadataDimensions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/MetadataDimensions.php deleted file mode 100644 index c55a3456..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/MetadataDimensions.php +++ /dev/null @@ -1,41 +0,0 @@ - - * $adsenseService = new Google_Service_AdSense(...); - * $dimensions = $adsenseService->dimensions; - * - */ -class Google_Service_AdSense_Resource_MetadataDimensions extends Google_Service_Resource -{ - /** - * List the metadata for the dimensions available to this AdSense account. - * (dimensions.listMetadataDimensions) - * - * @param array $optParams Optional parameters. - * @return Google_Service_AdSense_Metadata - */ - public function listMetadataDimensions($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdSense_Metadata"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/MetadataMetrics.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/MetadataMetrics.php deleted file mode 100644 index b13507f4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/MetadataMetrics.php +++ /dev/null @@ -1,41 +0,0 @@ - - * $adsenseService = new Google_Service_AdSense(...); - * $metrics = $adsenseService->metrics; - * - */ -class Google_Service_AdSense_Resource_MetadataMetrics extends Google_Service_Resource -{ - /** - * List the metadata for the metrics available to this AdSense account. - * (metrics.listMetadataMetrics) - * - * @param array $optParams Optional parameters. - * @return Google_Service_AdSense_Metadata - */ - public function listMetadataMetrics($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdSense_Metadata"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/Payments.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/Payments.php deleted file mode 100644 index d536f28c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/Payments.php +++ /dev/null @@ -1,40 +0,0 @@ - - * $adsenseService = new Google_Service_AdSense(...); - * $payments = $adsenseService->payments; - * - */ -class Google_Service_AdSense_Resource_Payments extends Google_Service_Resource -{ - /** - * List the payments for this AdSense account. (payments.listPayments) - * - * @param array $optParams Optional parameters. - * @return Google_Service_AdSense_Payments - */ - public function listPayments($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdSense_Payments"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/Reports.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/Reports.php deleted file mode 100644 index e0481c89..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/Reports.php +++ /dev/null @@ -1,64 +0,0 @@ - - * $adsenseService = new Google_Service_AdSense(...); - * $reports = $adsenseService->reports; - * - */ -class Google_Service_AdSense_Resource_Reports extends Google_Service_Resource -{ - /** - * Generate an AdSense report based on the report request sent in the query - * parameters. Returns the result as JSON; to retrieve output in CSV format - * specify "alt=csv" as a query parameter. (reports.generate) - * - * @param string $startDate Start of the date range to report on in "YYYY-MM-DD" - * format, inclusive. - * @param string $endDate End of the date range to report on in "YYYY-MM-DD" - * format, inclusive. - * @param array $optParams Optional parameters. - * - * @opt_param string accountId Accounts upon which to report. - * @opt_param string currency Optional currency to use when reporting on - * monetary metrics. Defaults to the account's currency if not set. - * @opt_param string dimension Dimensions to base the report on. - * @opt_param string filter Filters to be run on the report. - * @opt_param string locale Optional locale to use for translating report output - * to a local language. Defaults to "en_US" if not specified. - * @opt_param int maxResults The maximum number of rows of report data to - * return. - * @opt_param string metric Numeric columns to include in the report. - * @opt_param string sort The name of a dimension or metric to sort the - * resulting report on, optionally prefixed with "+" to sort ascending or "-" to - * sort descending. If no prefix is specified, the column is sorted ascending. - * @opt_param int startIndex Index of the first row of report data to return. - * @opt_param bool useTimezoneReporting Whether the report should be generated - * in the AdSense account's local timezone. If false default PST/PDT timezone - * will be used. - * @return Google_Service_AdSense_AdsenseReportsGenerateResponse - */ - public function generate($startDate, $endDate, $optParams = array()) - { - $params = array('startDate' => $startDate, 'endDate' => $endDate); - $params = array_merge($params, $optParams); - return $this->call('generate', array($params), "Google_Service_AdSense_AdsenseReportsGenerateResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/ReportsSaved.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/ReportsSaved.php deleted file mode 100644 index 6d838fc8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/ReportsSaved.php +++ /dev/null @@ -1,66 +0,0 @@ - - * $adsenseService = new Google_Service_AdSense(...); - * $saved = $adsenseService->saved; - * - */ -class Google_Service_AdSense_Resource_ReportsSaved extends Google_Service_Resource -{ - /** - * Generate an AdSense report based on the saved report ID sent in the query - * parameters. (saved.generate) - * - * @param string $savedReportId The saved report to retrieve. - * @param array $optParams Optional parameters. - * - * @opt_param string locale Optional locale to use for translating report output - * to a local language. Defaults to "en_US" if not specified. - * @opt_param int maxResults The maximum number of rows of report data to - * return. - * @opt_param int startIndex Index of the first row of report data to return. - * @return Google_Service_AdSense_AdsenseReportsGenerateResponse - */ - public function generate($savedReportId, $optParams = array()) - { - $params = array('savedReportId' => $savedReportId); - $params = array_merge($params, $optParams); - return $this->call('generate', array($params), "Google_Service_AdSense_AdsenseReportsGenerateResponse"); - } - /** - * List all saved reports in this AdSense account. (saved.listReportsSaved) - * - * @param array $optParams Optional parameters. - * - * @opt_param int maxResults The maximum number of saved reports to include in - * the response, used for paging. - * @opt_param string pageToken A continuation token, used to page through saved - * reports. To retrieve the next page, set this parameter to the value of - * "nextPageToken" from the previous response. - * @return Google_Service_AdSense_SavedReports - */ - public function listReportsSaved($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdSense_SavedReports"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/Savedadstyles.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/Savedadstyles.php deleted file mode 100644 index f17a237d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/Savedadstyles.php +++ /dev/null @@ -1,60 +0,0 @@ - - * $adsenseService = new Google_Service_AdSense(...); - * $savedadstyles = $adsenseService->savedadstyles; - * - */ -class Google_Service_AdSense_Resource_Savedadstyles extends Google_Service_Resource -{ - /** - * Get a specific saved ad style from the user's account. (savedadstyles.get) - * - * @param string $savedAdStyleId Saved ad style to retrieve. - * @param array $optParams Optional parameters. - * @return Google_Service_AdSense_SavedAdStyle - */ - public function get($savedAdStyleId, $optParams = array()) - { - $params = array('savedAdStyleId' => $savedAdStyleId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AdSense_SavedAdStyle"); - } - /** - * List all saved ad styles in the user's account. - * (savedadstyles.listSavedadstyles) - * - * @param array $optParams Optional parameters. - * - * @opt_param int maxResults The maximum number of saved ad styles to include in - * the response, used for paging. - * @opt_param string pageToken A continuation token, used to page through saved - * ad styles. To retrieve the next page, set this parameter to the value of - * "nextPageToken" from the previous response. - * @return Google_Service_AdSense_SavedAdStyles - */ - public function listSavedadstyles($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdSense_SavedAdStyles"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/Urlchannels.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/Urlchannels.php deleted file mode 100644 index 0d881966..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/Resource/Urlchannels.php +++ /dev/null @@ -1,48 +0,0 @@ - - * $adsenseService = new Google_Service_AdSense(...); - * $urlchannels = $adsenseService->urlchannels; - * - */ -class Google_Service_AdSense_Resource_Urlchannels extends Google_Service_Resource -{ - /** - * List all URL channels in the specified ad client for this AdSense account. - * (urlchannels.listUrlchannels) - * - * @param string $adClientId Ad client for which to list URL channels. - * @param array $optParams Optional parameters. - * - * @opt_param int maxResults The maximum number of URL channels to include in - * the response, used for paging. - * @opt_param string pageToken A continuation token, used to page through URL - * channels. To retrieve the next page, set this parameter to the value of - * "nextPageToken" from the previous response. - * @return Google_Service_AdSense_UrlChannels - */ - public function listUrlchannels($adClientId, $optParams = array()) - { - $params = array('adClientId' => $adClientId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdSense_UrlChannels"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/SavedAdStyle.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/SavedAdStyle.php deleted file mode 100644 index b3b7c13c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/SavedAdStyle.php +++ /dev/null @@ -1,64 +0,0 @@ -adStyle = $adStyle; - } - /** - * @return Google_Service_AdSense_AdStyle - */ - public function getAdStyle() - { - return $this->adStyle; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/SavedAdStyles.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/SavedAdStyles.php deleted file mode 100644 index 9c168609..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/SavedAdStyles.php +++ /dev/null @@ -1,65 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_AdSense_SavedAdStyle - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_AdSense_SavedAdStyle - */ - public function getItems() - { - return $this->items; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/SavedReport.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/SavedReport.php deleted file mode 100644 index 7982daf8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/SavedReport.php +++ /dev/null @@ -1,48 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/SavedReports.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/SavedReports.php deleted file mode 100644 index 982269b5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/SavedReports.php +++ /dev/null @@ -1,65 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_AdSense_SavedReport - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_AdSense_SavedReport - */ - public function getItems() - { - return $this->items; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/UrlChannel.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/UrlChannel.php deleted file mode 100644 index 5005513b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/UrlChannel.php +++ /dev/null @@ -1,48 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setUrlPattern($urlPattern) - { - $this->urlPattern = $urlPattern; - } - public function getUrlPattern() - { - return $this->urlPattern; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/UrlChannels.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/UrlChannels.php deleted file mode 100644 index 87cf4dc1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSense/UrlChannels.php +++ /dev/null @@ -1,65 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_AdSense_UrlChannel - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_AdSense_UrlChannel - */ - public function getItems() - { - return $this->items; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost.php deleted file mode 100644 index 3314a21e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost.php +++ /dev/null @@ -1,632 +0,0 @@ - - * Generates performance reports, generates ad codes, and provides publisher - * management capabilities for AdSense Hosts.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_AdSenseHost extends Google_Service -{ - /** View and manage your AdSense host data and associated accounts. */ - const ADSENSEHOST = - "https://www.googleapis.com/auth/adsensehost"; - - public $accounts; - public $accounts_adclients; - public $accounts_adunits; - public $accounts_reports; - public $adclients; - public $associationsessions; - public $customchannels; - public $reports; - public $urlchannels; - - /** - * Constructs the internal representation of the AdSenseHost service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://www.googleapis.com/'; - $this->servicePath = 'adsensehost/v4.1/'; - $this->batchPath = 'batch/adsensehost/v4.1'; - $this->version = 'v4.1'; - $this->serviceName = 'adsensehost'; - - $this->accounts = new Google_Service_AdSenseHost_Resource_Accounts( - $this, - $this->serviceName, - 'accounts', - array( - 'methods' => array( - 'get' => array( - 'path' => 'accounts/{accountId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'accounts', - 'httpMethod' => 'GET', - 'parameters' => array( - 'filterAdClientId' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->accounts_adclients = new Google_Service_AdSenseHost_Resource_AccountsAdclients( - $this, - $this->serviceName, - 'adclients', - array( - 'methods' => array( - 'get' => array( - 'path' => 'accounts/{accountId}/adclients/{adClientId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'accounts/{accountId}/adclients', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->accounts_adunits = new Google_Service_AdSenseHost_Resource_AccountsAdunits( - $this, - $this->serviceName, - 'adunits', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits/{adUnitId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adUnitId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits/{adUnitId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adUnitId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getAdCode' => array( - 'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits/{adUnitId}/adcode', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adUnitId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'hostCustomChannelId' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ),'insert' => array( - 'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'includeInactive' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adUnitId' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->accounts_reports = new Google_Service_AdSenseHost_Resource_AccountsReports( - $this, - $this->serviceName, - 'reports', - array( - 'methods' => array( - 'generate' => array( - 'path' => 'accounts/{accountId}/reports', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'startDate' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'endDate' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'dimension' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'metric' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'sort' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'startIndex' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->adclients = new Google_Service_AdSenseHost_Resource_Adclients( - $this, - $this->serviceName, - 'adclients', - array( - 'methods' => array( - 'get' => array( - 'path' => 'adclients/{adClientId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'adclients', - 'httpMethod' => 'GET', - 'parameters' => array( - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->associationsessions = new Google_Service_AdSenseHost_Resource_Associationsessions( - $this, - $this->serviceName, - 'associationsessions', - array( - 'methods' => array( - 'start' => array( - 'path' => 'associationsessions/start', - 'httpMethod' => 'GET', - 'parameters' => array( - 'productCode' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - 'required' => true, - ), - 'websiteUrl' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'userLocale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'websiteLocale' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'verify' => array( - 'path' => 'associationsessions/verify', - 'httpMethod' => 'GET', - 'parameters' => array( - 'token' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->customchannels = new Google_Service_AdSenseHost_Resource_Customchannels( - $this, - $this->serviceName, - 'customchannels', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'adclients/{adClientId}/customchannels/{customChannelId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'customChannelId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'adclients/{adClientId}/customchannels/{customChannelId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'customChannelId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'adclients/{adClientId}/customchannels', - 'httpMethod' => 'POST', - 'parameters' => array( - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'adclients/{adClientId}/customchannels', - 'httpMethod' => 'GET', - 'parameters' => array( - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'adclients/{adClientId}/customchannels', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'customChannelId' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'adclients/{adClientId}/customchannels', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->reports = new Google_Service_AdSenseHost_Resource_Reports( - $this, - $this->serviceName, - 'reports', - array( - 'methods' => array( - 'generate' => array( - 'path' => 'reports', - 'httpMethod' => 'GET', - 'parameters' => array( - 'startDate' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'endDate' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'dimension' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'metric' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'sort' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'startIndex' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->urlchannels = new Google_Service_AdSenseHost_Resource_Urlchannels( - $this, - $this->serviceName, - 'urlchannels', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'adclients/{adClientId}/urlchannels/{urlChannelId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'urlChannelId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'adclients/{adClientId}/urlchannels', - 'httpMethod' => 'POST', - 'parameters' => array( - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'adclients/{adClientId}/urlchannels', - 'httpMethod' => 'GET', - 'parameters' => array( - 'adClientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/Account.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/Account.php deleted file mode 100644 index 460b3ad0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/Account.php +++ /dev/null @@ -1,57 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/Accounts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/Accounts.php deleted file mode 100644 index 50a7d60c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/Accounts.php +++ /dev/null @@ -1,56 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_AdSenseHost_Account - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_AdSenseHost_Account - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/AdClient.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/AdClient.php deleted file mode 100644 index b7dfacab..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/AdClient.php +++ /dev/null @@ -1,66 +0,0 @@ -arcOptIn = $arcOptIn; - } - public function getArcOptIn() - { - return $this->arcOptIn; - } - 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 setProductCode($productCode) - { - $this->productCode = $productCode; - } - public function getProductCode() - { - return $this->productCode; - } - public function setSupportsReporting($supportsReporting) - { - $this->supportsReporting = $supportsReporting; - } - public function getSupportsReporting() - { - return $this->supportsReporting; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/AdClients.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/AdClients.php deleted file mode 100644 index 50f66b5c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/AdClients.php +++ /dev/null @@ -1,65 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_AdSenseHost_AdClient - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_AdSenseHost_AdClient - */ - public function getItems() - { - return $this->items; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/AdCode.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/AdCode.php deleted file mode 100644 index abd0d659..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/AdCode.php +++ /dev/null @@ -1,39 +0,0 @@ -adCode = $adCode; - } - public function getAdCode() - { - return $this->adCode; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/AdStyle.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/AdStyle.php deleted file mode 100644 index 27bd6b1b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/AdStyle.php +++ /dev/null @@ -1,71 +0,0 @@ -colors = $colors; - } - /** - * @return Google_Service_AdSenseHost_AdStyleColors - */ - public function getColors() - { - return $this->colors; - } - public function setCorners($corners) - { - $this->corners = $corners; - } - public function getCorners() - { - return $this->corners; - } - /** - * @param Google_Service_AdSenseHost_AdStyleFont - */ - public function setFont(Google_Service_AdSenseHost_AdStyleFont $font) - { - $this->font = $font; - } - /** - * @return Google_Service_AdSenseHost_AdStyleFont - */ - public function getFont() - { - return $this->font; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/AdStyleColors.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/AdStyleColors.php deleted file mode 100644 index eb0f9d24..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/AdStyleColors.php +++ /dev/null @@ -1,66 +0,0 @@ -background = $background; - } - public function getBackground() - { - return $this->background; - } - public function setBorder($border) - { - $this->border = $border; - } - public function getBorder() - { - return $this->border; - } - public function setText($text) - { - $this->text = $text; - } - public function getText() - { - return $this->text; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/AdStyleFont.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/AdStyleFont.php deleted file mode 100644 index 63c8a958..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/AdStyleFont.php +++ /dev/null @@ -1,39 +0,0 @@ -family = $family; - } - public function getFamily() - { - return $this->family; - } - public function setSize($size) - { - $this->size = $size; - } - public function getSize() - { - return $this->size; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/AdUnit.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/AdUnit.php deleted file mode 100644 index a80027a9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/AdUnit.php +++ /dev/null @@ -1,114 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_AdSenseHost_AdUnitContentAdsSettings - */ - public function setContentAdsSettings(Google_Service_AdSenseHost_AdUnitContentAdsSettings $contentAdsSettings) - { - $this->contentAdsSettings = $contentAdsSettings; - } - /** - * @return Google_Service_AdSenseHost_AdUnitContentAdsSettings - */ - public function getContentAdsSettings() - { - return $this->contentAdsSettings; - } - /** - * @param Google_Service_AdSenseHost_AdStyle - */ - public function setCustomStyle(Google_Service_AdSenseHost_AdStyle $customStyle) - { - $this->customStyle = $customStyle; - } - /** - * @return Google_Service_AdSenseHost_AdStyle - */ - public function getCustomStyle() - { - return $this->customStyle; - } - 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; - } - /** - * @param Google_Service_AdSenseHost_AdUnitMobileContentAdsSettings - */ - public function setMobileContentAdsSettings(Google_Service_AdSenseHost_AdUnitMobileContentAdsSettings $mobileContentAdsSettings) - { - $this->mobileContentAdsSettings = $mobileContentAdsSettings; - } - /** - * @return Google_Service_AdSenseHost_AdUnitMobileContentAdsSettings - */ - public function getMobileContentAdsSettings() - { - return $this->mobileContentAdsSettings; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/AdUnitContentAdsSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/AdUnitContentAdsSettings.php deleted file mode 100644 index d6ae1c4d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/AdUnitContentAdsSettings.php +++ /dev/null @@ -1,55 +0,0 @@ -backupOption = $backupOption; - } - /** - * @return Google_Service_AdSenseHost_AdUnitContentAdsSettingsBackupOption - */ - public function getBackupOption() - { - return $this->backupOption; - } - public function setSize($size) - { - $this->size = $size; - } - public function getSize() - { - return $this->size; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/AdUnitContentAdsSettingsBackupOption.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/AdUnitContentAdsSettingsBackupOption.php deleted file mode 100644 index 12f5e850..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/AdUnitContentAdsSettingsBackupOption.php +++ /dev/null @@ -1,48 +0,0 @@ -color = $color; - } - public function getColor() - { - return $this->color; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/AdUnitMobileContentAdsSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/AdUnitMobileContentAdsSettings.php deleted file mode 100644 index 23dd20ce..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/AdUnitMobileContentAdsSettings.php +++ /dev/null @@ -1,57 +0,0 @@ -markupLanguage = $markupLanguage; - } - public function getMarkupLanguage() - { - return $this->markupLanguage; - } - public function setScriptingLanguage($scriptingLanguage) - { - $this->scriptingLanguage = $scriptingLanguage; - } - public function getScriptingLanguage() - { - return $this->scriptingLanguage; - } - public function setSize($size) - { - $this->size = $size; - } - public function getSize() - { - return $this->size; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/AdUnits.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/AdUnits.php deleted file mode 100644 index 16440e6a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/AdUnits.php +++ /dev/null @@ -1,65 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_AdSenseHost_AdUnit - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_AdSenseHost_AdUnit - */ - public function getItems() - { - return $this->items; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/AssociationSession.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/AssociationSession.php deleted file mode 100644 index 5658c98d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/AssociationSession.php +++ /dev/null @@ -1,103 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - 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 setProductCodes($productCodes) - { - $this->productCodes = $productCodes; - } - public function getProductCodes() - { - return $this->productCodes; - } - public function setRedirectUrl($redirectUrl) - { - $this->redirectUrl = $redirectUrl; - } - public function getRedirectUrl() - { - return $this->redirectUrl; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setUserLocale($userLocale) - { - $this->userLocale = $userLocale; - } - public function getUserLocale() - { - return $this->userLocale; - } - public function setWebsiteLocale($websiteLocale) - { - $this->websiteLocale = $websiteLocale; - } - public function getWebsiteLocale() - { - return $this->websiteLocale; - } - public function setWebsiteUrl($websiteUrl) - { - $this->websiteUrl = $websiteUrl; - } - public function getWebsiteUrl() - { - return $this->websiteUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/CustomChannel.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/CustomChannel.php deleted file mode 100644 index 4ff9ee23..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/CustomChannel.php +++ /dev/null @@ -1,57 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/CustomChannels.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/CustomChannels.php deleted file mode 100644 index 0ed507c7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/CustomChannels.php +++ /dev/null @@ -1,65 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_AdSenseHost_CustomChannel - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_AdSenseHost_CustomChannel - */ - public function getItems() - { - return $this->items; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/Report.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/Report.php deleted file mode 100644 index 07c3b8a5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/Report.php +++ /dev/null @@ -1,92 +0,0 @@ -averages = $averages; - } - public function getAverages() - { - return $this->averages; - } - /** - * @param Google_Service_AdSenseHost_ReportHeaders - */ - public function setHeaders($headers) - { - $this->headers = $headers; - } - /** - * @return Google_Service_AdSenseHost_ReportHeaders - */ - public function getHeaders() - { - return $this->headers; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setRows($rows) - { - $this->rows = $rows; - } - public function getRows() - { - return $this->rows; - } - public function setTotalMatchedRows($totalMatchedRows) - { - $this->totalMatchedRows = $totalMatchedRows; - } - public function getTotalMatchedRows() - { - return $this->totalMatchedRows; - } - public function setTotals($totals) - { - $this->totals = $totals; - } - public function getTotals() - { - return $this->totals; - } - public function setWarnings($warnings) - { - $this->warnings = $warnings; - } - public function getWarnings() - { - return $this->warnings; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/ReportHeaders.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/ReportHeaders.php deleted file mode 100644 index cfa29deb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/ReportHeaders.php +++ /dev/null @@ -1,48 +0,0 @@ -currency = $currency; - } - public function getCurrency() - { - return $this->currency; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/Resource/Accounts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/Resource/Accounts.php deleted file mode 100644 index 9590f687..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/Resource/Accounts.php +++ /dev/null @@ -1,55 +0,0 @@ - - * $adsensehostService = new Google_Service_AdSenseHost(...); - * $accounts = $adsensehostService->accounts; - * - */ -class Google_Service_AdSenseHost_Resource_Accounts extends Google_Service_Resource -{ - /** - * Get information about the selected associated AdSense account. (accounts.get) - * - * @param string $accountId Account to get information about. - * @param array $optParams Optional parameters. - * @return Google_Service_AdSenseHost_Account - */ - public function get($accountId, $optParams = array()) - { - $params = array('accountId' => $accountId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AdSenseHost_Account"); - } - /** - * List hosted accounts associated with this AdSense account by ad client id. - * (accounts.listAccounts) - * - * @param string|array $filterAdClientId Ad clients to list accounts for. - * @param array $optParams Optional parameters. - * @return Google_Service_AdSenseHost_Accounts - */ - public function listAccounts($filterAdClientId, $optParams = array()) - { - $params = array('filterAdClientId' => $filterAdClientId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdSenseHost_Accounts"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/Resource/AccountsAdclients.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/Resource/AccountsAdclients.php deleted file mode 100644 index acfb1df9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/Resource/AccountsAdclients.php +++ /dev/null @@ -1,63 +0,0 @@ - - * $adsensehostService = new Google_Service_AdSenseHost(...); - * $adclients = $adsensehostService->adclients; - * - */ -class Google_Service_AdSenseHost_Resource_AccountsAdclients extends Google_Service_Resource -{ - /** - * Get information about one of the ad clients in the specified publisher's - * AdSense account. (adclients.get) - * - * @param string $accountId Account which contains the ad client. - * @param string $adClientId Ad client to get. - * @param array $optParams Optional parameters. - * @return Google_Service_AdSenseHost_AdClient - */ - public function get($accountId, $adClientId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'adClientId' => $adClientId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AdSenseHost_AdClient"); - } - /** - * List all hosted ad clients in the specified hosted account. - * (adclients.listAccountsAdclients) - * - * @param string $accountId Account for which to list ad clients. - * @param array $optParams Optional parameters. - * - * @opt_param string maxResults The maximum number of ad clients to include in - * the response, used for paging. - * @opt_param string pageToken A continuation token, used to page through ad - * clients. To retrieve the next page, set this parameter to the value of - * "nextPageToken" from the previous response. - * @return Google_Service_AdSenseHost_AdClients - */ - public function listAccountsAdclients($accountId, $optParams = array()) - { - $params = array('accountId' => $accountId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdSenseHost_AdClients"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/Resource/AccountsAdunits.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/Resource/AccountsAdunits.php deleted file mode 100644 index f743c972..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/Resource/AccountsAdunits.php +++ /dev/null @@ -1,150 +0,0 @@ - - * $adsensehostService = new Google_Service_AdSenseHost(...); - * $adunits = $adsensehostService->adunits; - * - */ -class Google_Service_AdSenseHost_Resource_AccountsAdunits extends Google_Service_Resource -{ - /** - * Delete the specified ad unit from the specified publisher AdSense account. - * (adunits.delete) - * - * @param string $accountId Account which contains the ad unit. - * @param string $adClientId Ad client for which to get ad unit. - * @param string $adUnitId Ad unit to delete. - * @param array $optParams Optional parameters. - * @return Google_Service_AdSenseHost_AdUnit - */ - public function delete($accountId, $adClientId, $adUnitId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'adUnitId' => $adUnitId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_AdSenseHost_AdUnit"); - } - /** - * Get the specified host ad unit in this AdSense account. (adunits.get) - * - * @param string $accountId Account which contains the ad unit. - * @param string $adClientId Ad client for which to get ad unit. - * @param string $adUnitId Ad unit to get. - * @param array $optParams Optional parameters. - * @return Google_Service_AdSenseHost_AdUnit - */ - public function get($accountId, $adClientId, $adUnitId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'adUnitId' => $adUnitId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AdSenseHost_AdUnit"); - } - /** - * Get ad code for the specified ad unit, attaching the specified host custom - * channels. (adunits.getAdCode) - * - * @param string $accountId Account which contains the ad client. - * @param string $adClientId Ad client with contains the ad unit. - * @param string $adUnitId Ad unit to get the code for. - * @param array $optParams Optional parameters. - * - * @opt_param string hostCustomChannelId Host custom channel to attach to the ad - * code. - * @return Google_Service_AdSenseHost_AdCode - */ - public function getAdCode($accountId, $adClientId, $adUnitId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'adUnitId' => $adUnitId); - $params = array_merge($params, $optParams); - return $this->call('getAdCode', array($params), "Google_Service_AdSenseHost_AdCode"); - } - /** - * Insert the supplied ad unit into the specified publisher AdSense account. - * (adunits.insert) - * - * @param string $accountId Account which will contain the ad unit. - * @param string $adClientId Ad client into which to insert the ad unit. - * @param Google_Service_AdSenseHost_AdUnit $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AdSenseHost_AdUnit - */ - public function insert($accountId, $adClientId, Google_Service_AdSenseHost_AdUnit $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_AdSenseHost_AdUnit"); - } - /** - * List all ad units in the specified publisher's AdSense account. - * (adunits.listAccountsAdunits) - * - * @param string $accountId Account which contains the ad client. - * @param string $adClientId Ad client for which to list ad units. - * @param array $optParams Optional parameters. - * - * @opt_param bool includeInactive Whether to include inactive ad units. - * Default: true. - * @opt_param string maxResults The maximum number of ad units to include in the - * response, used for paging. - * @opt_param string pageToken A continuation token, used to page through ad - * units. To retrieve the next page, set this parameter to the value of - * "nextPageToken" from the previous response. - * @return Google_Service_AdSenseHost_AdUnits - */ - public function listAccountsAdunits($accountId, $adClientId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'adClientId' => $adClientId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdSenseHost_AdUnits"); - } - /** - * Update the supplied ad unit in the specified publisher AdSense account. This - * method supports patch semantics. (adunits.patch) - * - * @param string $accountId Account which contains the ad client. - * @param string $adClientId Ad client which contains the ad unit. - * @param string $adUnitId Ad unit to get. - * @param Google_Service_AdSenseHost_AdUnit $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AdSenseHost_AdUnit - */ - public function patch($accountId, $adClientId, $adUnitId, Google_Service_AdSenseHost_AdUnit $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'adUnitId' => $adUnitId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_AdSenseHost_AdUnit"); - } - /** - * Update the supplied ad unit in the specified publisher AdSense account. - * (adunits.update) - * - * @param string $accountId Account which contains the ad client. - * @param string $adClientId Ad client which contains the ad unit. - * @param Google_Service_AdSenseHost_AdUnit $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AdSenseHost_AdUnit - */ - public function update($accountId, $adClientId, Google_Service_AdSenseHost_AdUnit $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_AdSenseHost_AdUnit"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/Resource/AccountsReports.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/Resource/AccountsReports.php deleted file mode 100644 index bcf1ec62..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/Resource/AccountsReports.php +++ /dev/null @@ -1,59 +0,0 @@ - - * $adsensehostService = new Google_Service_AdSenseHost(...); - * $reports = $adsensehostService->reports; - * - */ -class Google_Service_AdSenseHost_Resource_AccountsReports extends Google_Service_Resource -{ - /** - * Generate an AdSense report based on the report request sent in the query - * parameters. Returns the result as JSON; to retrieve output in CSV format - * specify "alt=csv" as a query parameter. (reports.generate) - * - * @param string $accountId Hosted account upon which to report. - * @param string $startDate Start of the date range to report on in "YYYY-MM-DD" - * format, inclusive. - * @param string $endDate End of the date range to report on in "YYYY-MM-DD" - * format, inclusive. - * @param array $optParams Optional parameters. - * - * @opt_param string dimension Dimensions to base the report on. - * @opt_param string filter Filters to be run on the report. - * @opt_param string locale Optional locale to use for translating report output - * to a local language. Defaults to "en_US" if not specified. - * @opt_param string maxResults The maximum number of rows of report data to - * return. - * @opt_param string metric Numeric columns to include in the report. - * @opt_param string sort The name of a dimension or metric to sort the - * resulting report on, optionally prefixed with "+" to sort ascending or "-" to - * sort descending. If no prefix is specified, the column is sorted ascending. - * @opt_param string startIndex Index of the first row of report data to return. - * @return Google_Service_AdSenseHost_Report - */ - public function generate($accountId, $startDate, $endDate, $optParams = array()) - { - $params = array('accountId' => $accountId, 'startDate' => $startDate, 'endDate' => $endDate); - $params = array_merge($params, $optParams); - return $this->call('generate', array($params), "Google_Service_AdSenseHost_Report"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/Resource/Adclients.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/Resource/Adclients.php deleted file mode 100644 index a11251f8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/Resource/Adclients.php +++ /dev/null @@ -1,60 +0,0 @@ - - * $adsensehostService = new Google_Service_AdSenseHost(...); - * $adclients = $adsensehostService->adclients; - * - */ -class Google_Service_AdSenseHost_Resource_Adclients extends Google_Service_Resource -{ - /** - * Get information about one of the ad clients in the Host AdSense account. - * (adclients.get) - * - * @param string $adClientId Ad client to get. - * @param array $optParams Optional parameters. - * @return Google_Service_AdSenseHost_AdClient - */ - public function get($adClientId, $optParams = array()) - { - $params = array('adClientId' => $adClientId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AdSenseHost_AdClient"); - } - /** - * List all host ad clients in this AdSense account. (adclients.listAdclients) - * - * @param array $optParams Optional parameters. - * - * @opt_param string maxResults The maximum number of ad clients to include in - * the response, used for paging. - * @opt_param string pageToken A continuation token, used to page through ad - * clients. To retrieve the next page, set this parameter to the value of - * "nextPageToken" from the previous response. - * @return Google_Service_AdSenseHost_AdClients - */ - public function listAdclients($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdSenseHost_AdClients"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/Resource/Associationsessions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/Resource/Associationsessions.php deleted file mode 100644 index c7a3b591..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/Resource/Associationsessions.php +++ /dev/null @@ -1,60 +0,0 @@ - - * $adsensehostService = new Google_Service_AdSenseHost(...); - * $associationsessions = $adsensehostService->associationsessions; - * - */ -class Google_Service_AdSenseHost_Resource_Associationsessions extends Google_Service_Resource -{ - /** - * Create an association session for initiating an association with an AdSense - * user. (associationsessions.start) - * - * @param string|array $productCode Products to associate with the user. - * @param string $websiteUrl The URL of the user's hosted website. - * @param array $optParams Optional parameters. - * - * @opt_param string userLocale The preferred locale of the user. - * @opt_param string websiteLocale The locale of the user's hosted website. - * @return Google_Service_AdSenseHost_AssociationSession - */ - public function start($productCode, $websiteUrl, $optParams = array()) - { - $params = array('productCode' => $productCode, 'websiteUrl' => $websiteUrl); - $params = array_merge($params, $optParams); - return $this->call('start', array($params), "Google_Service_AdSenseHost_AssociationSession"); - } - /** - * Verify an association session after the association callback returns from - * AdSense signup. (associationsessions.verify) - * - * @param string $token The token returned to the association callback URL. - * @param array $optParams Optional parameters. - * @return Google_Service_AdSenseHost_AssociationSession - */ - public function verify($token, $optParams = array()) - { - $params = array('token' => $token); - $params = array_merge($params, $optParams); - return $this->call('verify', array($params), "Google_Service_AdSenseHost_AssociationSession"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/Resource/Customchannels.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/Resource/Customchannels.php deleted file mode 100644 index 5cb459a3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/Resource/Customchannels.php +++ /dev/null @@ -1,125 +0,0 @@ - - * $adsensehostService = new Google_Service_AdSenseHost(...); - * $customchannels = $adsensehostService->customchannels; - * - */ -class Google_Service_AdSenseHost_Resource_Customchannels extends Google_Service_Resource -{ - /** - * Delete a specific custom channel from the host AdSense account. - * (customchannels.delete) - * - * @param string $adClientId Ad client from which to delete the custom channel. - * @param string $customChannelId Custom channel to delete. - * @param array $optParams Optional parameters. - * @return Google_Service_AdSenseHost_CustomChannel - */ - public function delete($adClientId, $customChannelId, $optParams = array()) - { - $params = array('adClientId' => $adClientId, 'customChannelId' => $customChannelId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_AdSenseHost_CustomChannel"); - } - /** - * Get a specific custom channel from the host AdSense account. - * (customchannels.get) - * - * @param string $adClientId Ad client from which to get the custom channel. - * @param string $customChannelId Custom channel to get. - * @param array $optParams Optional parameters. - * @return Google_Service_AdSenseHost_CustomChannel - */ - public function get($adClientId, $customChannelId, $optParams = array()) - { - $params = array('adClientId' => $adClientId, 'customChannelId' => $customChannelId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AdSenseHost_CustomChannel"); - } - /** - * Add a new custom channel to the host AdSense account. (customchannels.insert) - * - * @param string $adClientId Ad client to which the new custom channel will be - * added. - * @param Google_Service_AdSenseHost_CustomChannel $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AdSenseHost_CustomChannel - */ - public function insert($adClientId, Google_Service_AdSenseHost_CustomChannel $postBody, $optParams = array()) - { - $params = array('adClientId' => $adClientId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_AdSenseHost_CustomChannel"); - } - /** - * List all host custom channels in this AdSense account. - * (customchannels.listCustomchannels) - * - * @param string $adClientId Ad client for which to list custom channels. - * @param array $optParams Optional parameters. - * - * @opt_param string maxResults The maximum number of custom channels to include - * in the response, used for paging. - * @opt_param string pageToken A continuation token, used to page through custom - * channels. To retrieve the next page, set this parameter to the value of - * "nextPageToken" from the previous response. - * @return Google_Service_AdSenseHost_CustomChannels - */ - public function listCustomchannels($adClientId, $optParams = array()) - { - $params = array('adClientId' => $adClientId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdSenseHost_CustomChannels"); - } - /** - * Update a custom channel in the host AdSense account. This method supports - * patch semantics. (customchannels.patch) - * - * @param string $adClientId Ad client in which the custom channel will be - * updated. - * @param string $customChannelId Custom channel to get. - * @param Google_Service_AdSenseHost_CustomChannel $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AdSenseHost_CustomChannel - */ - public function patch($adClientId, $customChannelId, Google_Service_AdSenseHost_CustomChannel $postBody, $optParams = array()) - { - $params = array('adClientId' => $adClientId, 'customChannelId' => $customChannelId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_AdSenseHost_CustomChannel"); - } - /** - * Update a custom channel in the host AdSense account. (customchannels.update) - * - * @param string $adClientId Ad client in which the custom channel will be - * updated. - * @param Google_Service_AdSenseHost_CustomChannel $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AdSenseHost_CustomChannel - */ - public function update($adClientId, Google_Service_AdSenseHost_CustomChannel $postBody, $optParams = array()) - { - $params = array('adClientId' => $adClientId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_AdSenseHost_CustomChannel"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/Resource/Reports.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/Resource/Reports.php deleted file mode 100644 index 6ec1c782..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/Resource/Reports.php +++ /dev/null @@ -1,58 +0,0 @@ - - * $adsensehostService = new Google_Service_AdSenseHost(...); - * $reports = $adsensehostService->reports; - * - */ -class Google_Service_AdSenseHost_Resource_Reports extends Google_Service_Resource -{ - /** - * Generate an AdSense report based on the report request sent in the query - * parameters. Returns the result as JSON; to retrieve output in CSV format - * specify "alt=csv" as a query parameter. (reports.generate) - * - * @param string $startDate Start of the date range to report on in "YYYY-MM-DD" - * format, inclusive. - * @param string $endDate End of the date range to report on in "YYYY-MM-DD" - * format, inclusive. - * @param array $optParams Optional parameters. - * - * @opt_param string dimension Dimensions to base the report on. - * @opt_param string filter Filters to be run on the report. - * @opt_param string locale Optional locale to use for translating report output - * to a local language. Defaults to "en_US" if not specified. - * @opt_param string maxResults The maximum number of rows of report data to - * return. - * @opt_param string metric Numeric columns to include in the report. - * @opt_param string sort The name of a dimension or metric to sort the - * resulting report on, optionally prefixed with "+" to sort ascending or "-" to - * sort descending. If no prefix is specified, the column is sorted ascending. - * @opt_param string startIndex Index of the first row of report data to return. - * @return Google_Service_AdSenseHost_Report - */ - public function generate($startDate, $endDate, $optParams = array()) - { - $params = array('startDate' => $startDate, 'endDate' => $endDate); - $params = array_merge($params, $optParams); - return $this->call('generate', array($params), "Google_Service_AdSenseHost_Report"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/Resource/Urlchannels.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/Resource/Urlchannels.php deleted file mode 100644 index 7146446e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/Resource/Urlchannels.php +++ /dev/null @@ -1,77 +0,0 @@ - - * $adsensehostService = new Google_Service_AdSenseHost(...); - * $urlchannels = $adsensehostService->urlchannels; - * - */ -class Google_Service_AdSenseHost_Resource_Urlchannels extends Google_Service_Resource -{ - /** - * Delete a URL channel from the host AdSense account. (urlchannels.delete) - * - * @param string $adClientId Ad client from which to delete the URL channel. - * @param string $urlChannelId URL channel to delete. - * @param array $optParams Optional parameters. - * @return Google_Service_AdSenseHost_UrlChannel - */ - public function delete($adClientId, $urlChannelId, $optParams = array()) - { - $params = array('adClientId' => $adClientId, 'urlChannelId' => $urlChannelId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_AdSenseHost_UrlChannel"); - } - /** - * Add a new URL channel to the host AdSense account. (urlchannels.insert) - * - * @param string $adClientId Ad client to which the new URL channel will be - * added. - * @param Google_Service_AdSenseHost_UrlChannel $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AdSenseHost_UrlChannel - */ - public function insert($adClientId, Google_Service_AdSenseHost_UrlChannel $postBody, $optParams = array()) - { - $params = array('adClientId' => $adClientId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_AdSenseHost_UrlChannel"); - } - /** - * List all host URL channels in the host AdSense account. - * (urlchannels.listUrlchannels) - * - * @param string $adClientId Ad client for which to list URL channels. - * @param array $optParams Optional parameters. - * - * @opt_param string maxResults The maximum number of URL channels to include in - * the response, used for paging. - * @opt_param string pageToken A continuation token, used to page through URL - * channels. To retrieve the next page, set this parameter to the value of - * "nextPageToken" from the previous response. - * @return Google_Service_AdSenseHost_UrlChannels - */ - public function listUrlchannels($adClientId, $optParams = array()) - { - $params = array('adClientId' => $adClientId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AdSenseHost_UrlChannels"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/UrlChannel.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/UrlChannel.php deleted file mode 100644 index 7bf4311a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/UrlChannel.php +++ /dev/null @@ -1,48 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setUrlPattern($urlPattern) - { - $this->urlPattern = $urlPattern; - } - public function getUrlPattern() - { - return $this->urlPattern; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/UrlChannels.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/UrlChannels.php deleted file mode 100644 index 0394e3e3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/UrlChannels.php +++ /dev/null @@ -1,65 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_AdSenseHost_UrlChannel - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_AdSenseHost_UrlChannel - */ - public function getItems() - { - return $this->items; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter.php deleted file mode 100644 index a0cfd97b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter.php +++ /dev/null @@ -1,222 +0,0 @@ - - * Manages alerts on issues affecting your domain.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_AlertCenter extends Google_Service -{ - /** See and delete your domain's G Suite alerts, and send alert feedback. */ - const APPS_ALERTS = - "https://www.googleapis.com/auth/apps.alerts"; - - public $alerts; - public $alerts_feedback; - public $v1beta1; - - /** - * Constructs the internal representation of the AlertCenter service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://alertcenter.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1beta1'; - $this->serviceName = 'alertcenter'; - - $this->alerts = new Google_Service_AlertCenter_Resource_Alerts( - $this, - $this->serviceName, - 'alerts', - array( - 'methods' => array( - 'batchDelete' => array( - 'path' => 'v1beta1/alerts:batchDelete', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'batchUndelete' => array( - 'path' => 'v1beta1/alerts:batchUndelete', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'delete' => array( - 'path' => 'v1beta1/alerts/{alertId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'alertId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'customerId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'v1beta1/alerts/{alertId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'alertId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'customerId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'getMetadata' => array( - 'path' => 'v1beta1/alerts/{alertId}/metadata', - 'httpMethod' => 'GET', - 'parameters' => array( - 'alertId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'customerId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'v1beta1/alerts', - 'httpMethod' => 'GET', - 'parameters' => array( - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'customerId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'undelete' => array( - 'path' => 'v1beta1/alerts/{alertId}:undelete', - 'httpMethod' => 'POST', - 'parameters' => array( - 'alertId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->alerts_feedback = new Google_Service_AlertCenter_Resource_AlertsFeedback( - $this, - $this->serviceName, - 'feedback', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1beta1/alerts/{alertId}/feedback', - 'httpMethod' => 'POST', - 'parameters' => array( - 'alertId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'customerId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'v1beta1/alerts/{alertId}/feedback', - 'httpMethod' => 'GET', - 'parameters' => array( - 'alertId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'customerId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->v1beta1 = new Google_Service_AlertCenter_Resource_V1beta1( - $this, - $this->serviceName, - 'v1beta1', - array( - 'methods' => array( - 'getSettings' => array( - 'path' => 'v1beta1/settings', - 'httpMethod' => 'GET', - 'parameters' => array( - 'customerId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'updateSettings' => array( - 'path' => 'v1beta1/settings', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'customerId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/AccountWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/AccountWarning.php deleted file mode 100644 index 0a9558dd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/AccountWarning.php +++ /dev/null @@ -1,46 +0,0 @@ -email = $email; - } - public function getEmail() - { - return $this->email; - } - /** - * @param Google_Service_AlertCenter_LoginDetails - */ - public function setLoginDetails(Google_Service_AlertCenter_LoginDetails $loginDetails) - { - $this->loginDetails = $loginDetails; - } - /** - * @return Google_Service_AlertCenter_LoginDetails - */ - public function getLoginDetails() - { - return $this->loginDetails; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/ActivityRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/ActivityRule.php deleted file mode 100644 index 535e0040..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/ActivityRule.php +++ /dev/null @@ -1,130 +0,0 @@ -actionNames = $actionNames; - } - public function getActionNames() - { - return $this->actionNames; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setQuery($query) - { - $this->query = $query; - } - public function getQuery() - { - return $this->query; - } - public function setSupersededAlerts($supersededAlerts) - { - $this->supersededAlerts = $supersededAlerts; - } - public function getSupersededAlerts() - { - return $this->supersededAlerts; - } - public function setSupersedingAlert($supersedingAlert) - { - $this->supersedingAlert = $supersedingAlert; - } - public function getSupersedingAlert() - { - return $this->supersedingAlert; - } - public function setThreshold($threshold) - { - $this->threshold = $threshold; - } - public function getThreshold() - { - return $this->threshold; - } - public function setTriggerSource($triggerSource) - { - $this->triggerSource = $triggerSource; - } - public function getTriggerSource() - { - return $this->triggerSource; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } - public function setWindowSize($windowSize) - { - $this->windowSize = $windowSize; - } - public function getWindowSize() - { - return $this->windowSize; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/Alert.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/Alert.php deleted file mode 100644 index 1c360801..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/Alert.php +++ /dev/null @@ -1,145 +0,0 @@ -alertId = $alertId; - } - public function getAlertId() - { - return $this->alertId; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setCustomerId($customerId) - { - $this->customerId = $customerId; - } - public function getCustomerId() - { - return $this->customerId; - } - public function setData($data) - { - $this->data = $data; - } - public function getData() - { - return $this->data; - } - public function setDeleted($deleted) - { - $this->deleted = $deleted; - } - public function getDeleted() - { - return $this->deleted; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_AlertCenter_AlertMetadata - */ - public function setMetadata(Google_Service_AlertCenter_AlertMetadata $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_AlertCenter_AlertMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - public function setSecurityInvestigationToolLink($securityInvestigationToolLink) - { - $this->securityInvestigationToolLink = $securityInvestigationToolLink; - } - public function getSecurityInvestigationToolLink() - { - return $this->securityInvestigationToolLink; - } - public function setSource($source) - { - $this->source = $source; - } - public function getSource() - { - return $this->source; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/AlertFeedback.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/AlertFeedback.php deleted file mode 100644 index 7b7e34ef..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/AlertFeedback.php +++ /dev/null @@ -1,75 +0,0 @@ -alertId = $alertId; - } - public function getAlertId() - { - return $this->alertId; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setCustomerId($customerId) - { - $this->customerId = $customerId; - } - public function getCustomerId() - { - return $this->customerId; - } - public function setEmail($email) - { - $this->email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setFeedbackId($feedbackId) - { - $this->feedbackId = $feedbackId; - } - public function getFeedbackId() - { - return $this->feedbackId; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/AlertMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/AlertMetadata.php deleted file mode 100644 index 0e4448dd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/AlertMetadata.php +++ /dev/null @@ -1,84 +0,0 @@ -alertId = $alertId; - } - public function getAlertId() - { - return $this->alertId; - } - public function setAssignee($assignee) - { - $this->assignee = $assignee; - } - public function getAssignee() - { - return $this->assignee; - } - public function setCustomerId($customerId) - { - $this->customerId = $customerId; - } - public function getCustomerId() - { - return $this->customerId; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setSeverity($severity) - { - $this->severity = $severity; - } - public function getSeverity() - { - return $this->severity; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/AlertcenterEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/AlertcenterEmpty.php deleted file mode 100644 index 0fa7cf8e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/AlertcenterEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -requestInfo = $requestInfo; - } - /** - * @return Google_Service_AlertCenter_RequestInfo - */ - public function getRequestInfo() - { - return $this->requestInfo; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/Attachment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/Attachment.php deleted file mode 100644 index 4d267fdf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/Attachment.php +++ /dev/null @@ -1,37 +0,0 @@ -csv = $csv; - } - /** - * @return Google_Service_AlertCenter_Csv - */ - public function getCsv() - { - return $this->csv; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/BadWhitelist.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/BadWhitelist.php deleted file mode 100644 index 9c864bdc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/BadWhitelist.php +++ /dev/null @@ -1,79 +0,0 @@ -domainId = $domainId; - } - /** - * @return Google_Service_AlertCenter_DomainId - */ - public function getDomainId() - { - return $this->domainId; - } - /** - * @param Google_Service_AlertCenter_MaliciousEntity - */ - public function setMaliciousEntity(Google_Service_AlertCenter_MaliciousEntity $maliciousEntity) - { - $this->maliciousEntity = $maliciousEntity; - } - /** - * @return Google_Service_AlertCenter_MaliciousEntity - */ - public function getMaliciousEntity() - { - return $this->maliciousEntity; - } - /** - * @param Google_Service_AlertCenter_GmailMessageInfo - */ - public function setMessages($messages) - { - $this->messages = $messages; - } - /** - * @return Google_Service_AlertCenter_GmailMessageInfo - */ - public function getMessages() - { - return $this->messages; - } - public function setSourceIp($sourceIp) - { - $this->sourceIp = $sourceIp; - } - public function getSourceIp() - { - return $this->sourceIp; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/BatchDeleteAlertsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/BatchDeleteAlertsRequest.php deleted file mode 100644 index b17656e1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/BatchDeleteAlertsRequest.php +++ /dev/null @@ -1,40 +0,0 @@ -alertId = $alertId; - } - public function getAlertId() - { - return $this->alertId; - } - public function setCustomerId($customerId) - { - $this->customerId = $customerId; - } - public function getCustomerId() - { - return $this->customerId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/BatchDeleteAlertsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/BatchDeleteAlertsResponse.php deleted file mode 100644 index 647d28f3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/BatchDeleteAlertsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -failedAlertStatus = $failedAlertStatus; - } - /** - * @return Google_Service_AlertCenter_Status - */ - public function getFailedAlertStatus() - { - return $this->failedAlertStatus; - } - public function setSuccessAlertIds($successAlertIds) - { - $this->successAlertIds = $successAlertIds; - } - public function getSuccessAlertIds() - { - return $this->successAlertIds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/BatchUndeleteAlertsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/BatchUndeleteAlertsRequest.php deleted file mode 100644 index 0c5ce2f5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/BatchUndeleteAlertsRequest.php +++ /dev/null @@ -1,40 +0,0 @@ -alertId = $alertId; - } - public function getAlertId() - { - return $this->alertId; - } - public function setCustomerId($customerId) - { - $this->customerId = $customerId; - } - public function getCustomerId() - { - return $this->customerId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/BatchUndeleteAlertsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/BatchUndeleteAlertsResponse.php deleted file mode 100644 index 4c0f0fbc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/BatchUndeleteAlertsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -failedAlertStatus = $failedAlertStatus; - } - /** - * @return Google_Service_AlertCenter_Status - */ - public function getFailedAlertStatus() - { - return $this->failedAlertStatus; - } - public function setSuccessAlertIds($successAlertIds) - { - $this->successAlertIds = $successAlertIds; - } - public function getSuccessAlertIds() - { - return $this->successAlertIds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/CloudPubsubTopic.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/CloudPubsubTopic.php deleted file mode 100644 index f095f177..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/CloudPubsubTopic.php +++ /dev/null @@ -1,39 +0,0 @@ -payloadFormat = $payloadFormat; - } - public function getPayloadFormat() - { - return $this->payloadFormat; - } - public function setTopicName($topicName) - { - $this->topicName = $topicName; - } - public function getTopicName() - { - return $this->topicName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/Csv.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/Csv.php deleted file mode 100644 index 3891c1c5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/Csv.php +++ /dev/null @@ -1,47 +0,0 @@ -dataRows = $dataRows; - } - /** - * @return Google_Service_AlertCenter_CsvRow - */ - public function getDataRows() - { - return $this->dataRows; - } - public function setHeaders($headers) - { - $this->headers = $headers; - } - public function getHeaders() - { - return $this->headers; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/CsvRow.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/CsvRow.php deleted file mode 100644 index 32a10652..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/CsvRow.php +++ /dev/null @@ -1,31 +0,0 @@ -entries = $entries; - } - public function getEntries() - { - return $this->entries; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/DeviceCompromised.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/DeviceCompromised.php deleted file mode 100644 index fc526eff..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/DeviceCompromised.php +++ /dev/null @@ -1,47 +0,0 @@ -email = $email; - } - public function getEmail() - { - return $this->email; - } - /** - * @param Google_Service_AlertCenter_DeviceCompromisedSecurityDetail - */ - public function setEvents($events) - { - $this->events = $events; - } - /** - * @return Google_Service_AlertCenter_DeviceCompromisedSecurityDetail - */ - public function getEvents() - { - return $this->events; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/DeviceCompromisedSecurityDetail.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/DeviceCompromisedSecurityDetail.php deleted file mode 100644 index ecee6301..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/DeviceCompromisedSecurityDetail.php +++ /dev/null @@ -1,84 +0,0 @@ -deviceCompromisedState = $deviceCompromisedState; - } - public function getDeviceCompromisedState() - { - return $this->deviceCompromisedState; - } - public function setDeviceId($deviceId) - { - $this->deviceId = $deviceId; - } - public function getDeviceId() - { - return $this->deviceId; - } - public function setDeviceModel($deviceModel) - { - $this->deviceModel = $deviceModel; - } - public function getDeviceModel() - { - return $this->deviceModel; - } - public function setDeviceType($deviceType) - { - $this->deviceType = $deviceType; - } - public function getDeviceType() - { - return $this->deviceType; - } - public function setIosVendorId($iosVendorId) - { - $this->iosVendorId = $iosVendorId; - } - public function getIosVendorId() - { - return $this->iosVendorId; - } - public function setResourceId($resourceId) - { - $this->resourceId = $resourceId; - } - public function getResourceId() - { - return $this->resourceId; - } - public function setSerialNumber($serialNumber) - { - $this->serialNumber = $serialNumber; - } - public function getSerialNumber() - { - return $this->serialNumber; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/DlpRuleViolation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/DlpRuleViolation.php deleted file mode 100644 index 1719ed39..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/DlpRuleViolation.php +++ /dev/null @@ -1,37 +0,0 @@ -ruleViolationInfo = $ruleViolationInfo; - } - /** - * @return Google_Service_AlertCenter_RuleViolationInfo - */ - public function getRuleViolationInfo() - { - return $this->ruleViolationInfo; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/DomainId.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/DomainId.php deleted file mode 100644 index 6fe2a0f8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/DomainId.php +++ /dev/null @@ -1,30 +0,0 @@ -customerPrimaryDomain = $customerPrimaryDomain; - } - public function getCustomerPrimaryDomain() - { - return $this->customerPrimaryDomain; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/DomainWideTakeoutInitiated.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/DomainWideTakeoutInitiated.php deleted file mode 100644 index 9fadf676..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/DomainWideTakeoutInitiated.php +++ /dev/null @@ -1,39 +0,0 @@ -email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setTakeoutRequestId($takeoutRequestId) - { - $this->takeoutRequestId = $takeoutRequestId; - } - public function getTakeoutRequestId() - { - return $this->takeoutRequestId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/GmailMessageInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/GmailMessageInfo.php deleted file mode 100644 index 52450869..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/GmailMessageInfo.php +++ /dev/null @@ -1,94 +0,0 @@ -attachmentsSha256Hash = $attachmentsSha256Hash; - } - public function getAttachmentsSha256Hash() - { - return $this->attachmentsSha256Hash; - } - public function setDate($date) - { - $this->date = $date; - } - public function getDate() - { - return $this->date; - } - public function setMd5HashMessageBody($md5HashMessageBody) - { - $this->md5HashMessageBody = $md5HashMessageBody; - } - public function getMd5HashMessageBody() - { - return $this->md5HashMessageBody; - } - public function setMd5HashSubject($md5HashSubject) - { - $this->md5HashSubject = $md5HashSubject; - } - public function getMd5HashSubject() - { - return $this->md5HashSubject; - } - public function setMessageBodySnippet($messageBodySnippet) - { - $this->messageBodySnippet = $messageBodySnippet; - } - public function getMessageBodySnippet() - { - return $this->messageBodySnippet; - } - public function setMessageId($messageId) - { - $this->messageId = $messageId; - } - public function getMessageId() - { - return $this->messageId; - } - public function setRecipient($recipient) - { - $this->recipient = $recipient; - } - public function getRecipient() - { - return $this->recipient; - } - public function setSubjectText($subjectText) - { - $this->subjectText = $subjectText; - } - public function getSubjectText() - { - return $this->subjectText; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/GoogleOperations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/GoogleOperations.php deleted file mode 100644 index f484b73f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/GoogleOperations.php +++ /dev/null @@ -1,65 +0,0 @@ -affectedUserEmails = $affectedUserEmails; - } - public function getAffectedUserEmails() - { - return $this->affectedUserEmails; - } - /** - * @param Google_Service_AlertCenter_Attachment - */ - public function setAttachmentData(Google_Service_AlertCenter_Attachment $attachmentData) - { - $this->attachmentData = $attachmentData; - } - /** - * @return Google_Service_AlertCenter_Attachment - */ - public function getAttachmentData() - { - return $this->attachmentData; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/ListAlertFeedbackResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/ListAlertFeedbackResponse.php deleted file mode 100644 index c0bb9cdf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/ListAlertFeedbackResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -feedback = $feedback; - } - /** - * @return Google_Service_AlertCenter_AlertFeedback - */ - public function getFeedback() - { - return $this->feedback; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/ListAlertsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/ListAlertsResponse.php deleted file mode 100644 index dac998c5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/ListAlertsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -alerts = $alerts; - } - /** - * @return Google_Service_AlertCenter_Alert - */ - public function getAlerts() - { - return $this->alerts; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/LoginDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/LoginDetails.php deleted file mode 100644 index fd2b2d75..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/LoginDetails.php +++ /dev/null @@ -1,39 +0,0 @@ -ipAddress = $ipAddress; - } - public function getIpAddress() - { - return $this->ipAddress; - } - public function setLoginTime($loginTime) - { - $this->loginTime = $loginTime; - } - public function getLoginTime() - { - return $this->loginTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/MailPhishing.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/MailPhishing.php deleted file mode 100644 index 210d64c8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/MailPhishing.php +++ /dev/null @@ -1,88 +0,0 @@ -domainId = $domainId; - } - /** - * @return Google_Service_AlertCenter_DomainId - */ - public function getDomainId() - { - return $this->domainId; - } - public function setIsInternal($isInternal) - { - $this->isInternal = $isInternal; - } - public function getIsInternal() - { - return $this->isInternal; - } - /** - * @param Google_Service_AlertCenter_MaliciousEntity - */ - public function setMaliciousEntity(Google_Service_AlertCenter_MaliciousEntity $maliciousEntity) - { - $this->maliciousEntity = $maliciousEntity; - } - /** - * @return Google_Service_AlertCenter_MaliciousEntity - */ - public function getMaliciousEntity() - { - return $this->maliciousEntity; - } - /** - * @param Google_Service_AlertCenter_GmailMessageInfo - */ - public function setMessages($messages) - { - $this->messages = $messages; - } - /** - * @return Google_Service_AlertCenter_GmailMessageInfo - */ - public function getMessages() - { - return $this->messages; - } - public function setSystemActionType($systemActionType) - { - $this->systemActionType = $systemActionType; - } - public function getSystemActionType() - { - return $this->systemActionType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/MaliciousEntity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/MaliciousEntity.php deleted file mode 100644 index 32754044..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/MaliciousEntity.php +++ /dev/null @@ -1,55 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - /** - * @param Google_Service_AlertCenter_User - */ - public function setEntity(Google_Service_AlertCenter_User $entity) - { - $this->entity = $entity; - } - /** - * @return Google_Service_AlertCenter_User - */ - public function getEntity() - { - return $this->entity; - } - public function setFromHeader($fromHeader) - { - $this->fromHeader = $fromHeader; - } - public function getFromHeader() - { - return $this->fromHeader; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/MatchInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/MatchInfo.php deleted file mode 100644 index 0a2c42a8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/MatchInfo.php +++ /dev/null @@ -1,53 +0,0 @@ -predefinedDetector = $predefinedDetector; - } - /** - * @return Google_Service_AlertCenter_PredefinedDetectorInfo - */ - public function getPredefinedDetector() - { - return $this->predefinedDetector; - } - /** - * @param Google_Service_AlertCenter_UserDefinedDetectorInfo - */ - public function setUserDefinedDetector(Google_Service_AlertCenter_UserDefinedDetectorInfo $userDefinedDetector) - { - $this->userDefinedDetector = $userDefinedDetector; - } - /** - * @return Google_Service_AlertCenter_UserDefinedDetectorInfo - */ - public function getUserDefinedDetector() - { - return $this->userDefinedDetector; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/Notification.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/Notification.php deleted file mode 100644 index 13bd2931..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/Notification.php +++ /dev/null @@ -1,37 +0,0 @@ -cloudPubsubTopic = $cloudPubsubTopic; - } - /** - * @return Google_Service_AlertCenter_CloudPubsubTopic - */ - public function getCloudPubsubTopic() - { - return $this->cloudPubsubTopic; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/PhishingSpike.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/PhishingSpike.php deleted file mode 100644 index 2d9b960d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/PhishingSpike.php +++ /dev/null @@ -1,79 +0,0 @@ -domainId = $domainId; - } - /** - * @return Google_Service_AlertCenter_DomainId - */ - public function getDomainId() - { - return $this->domainId; - } - public function setIsInternal($isInternal) - { - $this->isInternal = $isInternal; - } - public function getIsInternal() - { - return $this->isInternal; - } - /** - * @param Google_Service_AlertCenter_MaliciousEntity - */ - public function setMaliciousEntity(Google_Service_AlertCenter_MaliciousEntity $maliciousEntity) - { - $this->maliciousEntity = $maliciousEntity; - } - /** - * @return Google_Service_AlertCenter_MaliciousEntity - */ - public function getMaliciousEntity() - { - return $this->maliciousEntity; - } - /** - * @param Google_Service_AlertCenter_GmailMessageInfo - */ - public function setMessages($messages) - { - $this->messages = $messages; - } - /** - * @return Google_Service_AlertCenter_GmailMessageInfo - */ - public function getMessages() - { - return $this->messages; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/PredefinedDetectorInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/PredefinedDetectorInfo.php deleted file mode 100644 index 996eb99e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/PredefinedDetectorInfo.php +++ /dev/null @@ -1,30 +0,0 @@ -detectorName = $detectorName; - } - public function getDetectorName() - { - return $this->detectorName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/RequestInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/RequestInfo.php deleted file mode 100644 index f00b9331..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/RequestInfo.php +++ /dev/null @@ -1,49 +0,0 @@ -appDeveloperEmail = $appDeveloperEmail; - } - public function getAppDeveloperEmail() - { - return $this->appDeveloperEmail; - } - public function setAppKey($appKey) - { - $this->appKey = $appKey; - } - public function getAppKey() - { - return $this->appKey; - } - public function setNumberOfRequests($numberOfRequests) - { - $this->numberOfRequests = $numberOfRequests; - } - public function getNumberOfRequests() - { - return $this->numberOfRequests; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/Resource/Alerts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/Resource/Alerts.php deleted file mode 100644 index 9afd2a56..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/Resource/Alerts.php +++ /dev/null @@ -1,162 +0,0 @@ - - * $alertcenterService = new Google_Service_AlertCenter(...); - * $alerts = $alertcenterService->alerts; - * - */ -class Google_Service_AlertCenter_Resource_Alerts extends Google_Service_Resource -{ - /** - * Performs batch delete operation on alerts. (alerts.batchDelete) - * - * @param Google_Service_AlertCenter_BatchDeleteAlertsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AlertCenter_BatchDeleteAlertsResponse - */ - public function batchDelete(Google_Service_AlertCenter_BatchDeleteAlertsRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('batchDelete', array($params), "Google_Service_AlertCenter_BatchDeleteAlertsResponse"); - } - /** - * Performs batch undelete operation on alerts. (alerts.batchUndelete) - * - * @param Google_Service_AlertCenter_BatchUndeleteAlertsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AlertCenter_BatchUndeleteAlertsResponse - */ - public function batchUndelete(Google_Service_AlertCenter_BatchUndeleteAlertsRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('batchUndelete', array($params), "Google_Service_AlertCenter_BatchUndeleteAlertsResponse"); - } - /** - * Marks the specified alert for deletion. An alert that has been marked for - * deletion is removed from Alert Center after 30 days. Marking an alert for - * deletion has no effect on an alert which has already been marked for - * deletion. Attempting to mark a nonexistent alert for deletion results in a - * `NOT_FOUND` error. (alerts.delete) - * - * @param string $alertId Required. The identifier of the alert to delete. - * @param array $optParams Optional parameters. - * - * @opt_param string customerId Optional. The unique identifier of the G Suite - * organization account of the customer the alert is associated with. Inferred - * from the caller identity if not provided. - * @return Google_Service_AlertCenter_AlertcenterEmpty - */ - public function delete($alertId, $optParams = array()) - { - $params = array('alertId' => $alertId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_AlertCenter_AlertcenterEmpty"); - } - /** - * Gets the specified alert. Attempting to get a nonexistent alert returns - * `NOT_FOUND` error. (alerts.get) - * - * @param string $alertId Required. The identifier of the alert to retrieve. - * @param array $optParams Optional parameters. - * - * @opt_param string customerId Optional. The unique identifier of the G Suite - * organization account of the customer the alert is associated with. Inferred - * from the caller identity if not provided. - * @return Google_Service_AlertCenter_Alert - */ - public function get($alertId, $optParams = array()) - { - $params = array('alertId' => $alertId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AlertCenter_Alert"); - } - /** - * Returns the metadata of an alert. Attempting to get metadata for a non- - * existent alert returns `NOT_FOUND` error. (alerts.getMetadata) - * - * @param string $alertId Required. The identifier of the alert this metadata - * belongs to. - * @param array $optParams Optional parameters. - * - * @opt_param string customerId Optional. The unique identifier of the G Suite - * organization account of the customer the alert metadata is associated with. - * Inferred from the caller identity if not provided. - * @return Google_Service_AlertCenter_AlertMetadata - */ - public function getMetadata($alertId, $optParams = array()) - { - $params = array('alertId' => $alertId); - $params = array_merge($params, $optParams); - return $this->call('getMetadata', array($params), "Google_Service_AlertCenter_AlertMetadata"); - } - /** - * Lists the alerts. (alerts.listAlerts) - * - * @param array $optParams Optional parameters. - * - * @opt_param string filter Optional. A query string for filtering alert - * results. For more details, see [Query filters](/admin-sdk/alertcenter/guides - * /query-filters) and [Supported query filter fields](/admin- - * sdk/alertcenter/reference/filter-fields#alerts.list). - * @opt_param string pageToken Optional. A token identifying a page of results - * the server should return. If empty, a new iteration is started. To continue - * an iteration, pass in the value from the previous ListAlertsResponse's - * next_page_token field. - * @opt_param string orderBy Optional. The sort order of the list results. If - * not specified results may be returned in arbitrary order. You can sort the - * results in descending order based on the creation timestamp using - * `order_by="create_time desc"`. Currently, supported sorting are `create_time - * asc`, `create_time desc`, `update_time desc` - * @opt_param string customerId Optional. The unique identifier of the G Suite - * organization account of the customer the alerts are associated with. Inferred - * from the caller identity if not provided. - * @opt_param int pageSize Optional. The requested page size. Server may return - * fewer items than requested. If unspecified, server picks an appropriate - * default. - * @return Google_Service_AlertCenter_ListAlertsResponse - */ - public function listAlerts($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AlertCenter_ListAlertsResponse"); - } - /** - * Restores, or "undeletes", an alert that was marked for deletion within the - * past 30 days. Attempting to undelete an alert which was marked for deletion - * over 30 days ago (which has been removed from the Alert Center database) or a - * nonexistent alert returns a `NOT_FOUND` error. Attempting to undelete an - * alert which has not been marked for deletion has no effect. (alerts.undelete) - * - * @param string $alertId Required. The identifier of the alert to undelete. - * @param Google_Service_AlertCenter_UndeleteAlertRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AlertCenter_Alert - */ - public function undelete($alertId, Google_Service_AlertCenter_UndeleteAlertRequest $postBody, $optParams = array()) - { - $params = array('alertId' => $alertId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('undelete', array($params), "Google_Service_AlertCenter_Alert"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/Resource/AlertsFeedback.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/Resource/AlertsFeedback.php deleted file mode 100644 index 1677ea43..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/Resource/AlertsFeedback.php +++ /dev/null @@ -1,73 +0,0 @@ - - * $alertcenterService = new Google_Service_AlertCenter(...); - * $feedback = $alertcenterService->feedback; - * - */ -class Google_Service_AlertCenter_Resource_AlertsFeedback extends Google_Service_Resource -{ - /** - * Creates new feedback for an alert. Attempting to create a feedback for a non- - * existent alert returns `NOT_FOUND` error. Attempting to create a feedback for - * an alert that is marked for deletion returns `FAILED_PRECONDITION' error. - * (feedback.create) - * - * @param string $alertId Required. The identifier of the alert this feedback - * belongs to. - * @param Google_Service_AlertCenter_AlertFeedback $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string customerId Optional. The unique identifier of the G Suite - * organization account of the customer the alert is associated with. Inferred - * from the caller identity if not provided. - * @return Google_Service_AlertCenter_AlertFeedback - */ - public function create($alertId, Google_Service_AlertCenter_AlertFeedback $postBody, $optParams = array()) - { - $params = array('alertId' => $alertId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_AlertCenter_AlertFeedback"); - } - /** - * Lists all the feedback for an alert. Attempting to list feedbacks for a non- - * existent alert returns `NOT_FOUND` error. (feedback.listAlertsFeedback) - * - * @param string $alertId Required. The alert identifier. The "-" wildcard could - * be used to represent all alerts. - * @param array $optParams Optional parameters. - * - * @opt_param string customerId Optional. The unique identifier of the G Suite - * organization account of the customer the alert feedback are associated with. - * Inferred from the caller identity if not provided. - * @opt_param string filter Optional. A query string for filtering alert - * feedback results. For more details, see [Query filters](/admin- - * sdk/alertcenter/guides/query-filters) and [Supported query filter fields - * ](/admin-sdk/alertcenter/reference/filter-fields#alerts.feedback.list). - * @return Google_Service_AlertCenter_ListAlertFeedbackResponse - */ - public function listAlertsFeedback($alertId, $optParams = array()) - { - $params = array('alertId' => $alertId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AlertCenter_ListAlertFeedbackResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/Resource/V1beta1.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/Resource/V1beta1.php deleted file mode 100644 index e05b58e4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/Resource/V1beta1.php +++ /dev/null @@ -1,61 +0,0 @@ - - * $alertcenterService = new Google_Service_AlertCenter(...); - * $v1beta1 = $alertcenterService->v1beta1; - * - */ -class Google_Service_AlertCenter_Resource_V1beta1 extends Google_Service_Resource -{ - /** - * Returns customer-level settings. (v1beta1.getSettings) - * - * @param array $optParams Optional parameters. - * - * @opt_param string customerId Optional. The unique identifier of the G Suite - * organization account of the customer the alert settings are associated with. - * Inferred from the caller identity if not provided. - * @return Google_Service_AlertCenter_Settings - */ - public function getSettings($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('getSettings', array($params), "Google_Service_AlertCenter_Settings"); - } - /** - * Updates the customer-level settings. (v1beta1.updateSettings) - * - * @param Google_Service_AlertCenter_Settings $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string customerId Optional. The unique identifier of the G Suite - * organization account of the customer the alert settings are associated with. - * Inferred from the caller identity if not provided. - * @return Google_Service_AlertCenter_Settings - */ - public function updateSettings(Google_Service_AlertCenter_Settings $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updateSettings', array($params), "Google_Service_AlertCenter_Settings"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/ResourceInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/ResourceInfo.php deleted file mode 100644 index 3985cf78..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/ResourceInfo.php +++ /dev/null @@ -1,39 +0,0 @@ -documentId = $documentId; - } - public function getDocumentId() - { - return $this->documentId; - } - public function setResourceTitle($resourceTitle) - { - $this->resourceTitle = $resourceTitle; - } - public function getResourceTitle() - { - return $this->resourceTitle; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/RuleInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/RuleInfo.php deleted file mode 100644 index 73e1c6ba..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/RuleInfo.php +++ /dev/null @@ -1,39 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setResourceName($resourceName) - { - $this->resourceName = $resourceName; - } - public function getResourceName() - { - return $this->resourceName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/RuleViolationInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/RuleViolationInfo.php deleted file mode 100644 index 481c61d8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/RuleViolationInfo.php +++ /dev/null @@ -1,124 +0,0 @@ -dataSource = $dataSource; - } - public function getDataSource() - { - return $this->dataSource; - } - /** - * @param Google_Service_AlertCenter_MatchInfo - */ - public function setMatchInfo($matchInfo) - { - $this->matchInfo = $matchInfo; - } - /** - * @return Google_Service_AlertCenter_MatchInfo - */ - public function getMatchInfo() - { - return $this->matchInfo; - } - public function setRecipients($recipients) - { - $this->recipients = $recipients; - } - public function getRecipients() - { - return $this->recipients; - } - /** - * @param Google_Service_AlertCenter_ResourceInfo - */ - public function setResourceInfo(Google_Service_AlertCenter_ResourceInfo $resourceInfo) - { - $this->resourceInfo = $resourceInfo; - } - /** - * @return Google_Service_AlertCenter_ResourceInfo - */ - public function getResourceInfo() - { - return $this->resourceInfo; - } - /** - * @param Google_Service_AlertCenter_RuleInfo - */ - public function setRuleInfo(Google_Service_AlertCenter_RuleInfo $ruleInfo) - { - $this->ruleInfo = $ruleInfo; - } - /** - * @return Google_Service_AlertCenter_RuleInfo - */ - public function getRuleInfo() - { - return $this->ruleInfo; - } - public function setSuppressedActionTypes($suppressedActionTypes) - { - $this->suppressedActionTypes = $suppressedActionTypes; - } - public function getSuppressedActionTypes() - { - return $this->suppressedActionTypes; - } - public function setTrigger($trigger) - { - $this->trigger = $trigger; - } - public function getTrigger() - { - return $this->trigger; - } - public function setTriggeredActionTypes($triggeredActionTypes) - { - $this->triggeredActionTypes = $triggeredActionTypes; - } - public function getTriggeredActionTypes() - { - return $this->triggeredActionTypes; - } - public function setTriggeringUserEmail($triggeringUserEmail) - { - $this->triggeringUserEmail = $triggeringUserEmail; - } - public function getTriggeringUserEmail() - { - return $this->triggeringUserEmail; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/Settings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/Settings.php deleted file mode 100644 index f5502651..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/Settings.php +++ /dev/null @@ -1,38 +0,0 @@ -notifications = $notifications; - } - /** - * @return Google_Service_AlertCenter_Notification - */ - public function getNotifications() - { - return $this->notifications; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/StateSponsoredAttack.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/StateSponsoredAttack.php deleted file mode 100644 index 234183c5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/StateSponsoredAttack.php +++ /dev/null @@ -1,30 +0,0 @@ -email = $email; - } - public function getEmail() - { - return $this->email; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/Status.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/Status.php deleted file mode 100644 index 07c7fd70..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/Status.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/SuspiciousActivity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/SuspiciousActivity.php deleted file mode 100644 index 3cb519b0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/SuspiciousActivity.php +++ /dev/null @@ -1,47 +0,0 @@ -email = $email; - } - public function getEmail() - { - return $this->email; - } - /** - * @param Google_Service_AlertCenter_SuspiciousActivitySecurityDetail - */ - public function setEvents($events) - { - $this->events = $events; - } - /** - * @return Google_Service_AlertCenter_SuspiciousActivitySecurityDetail - */ - public function getEvents() - { - return $this->events; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/SuspiciousActivitySecurityDetail.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/SuspiciousActivitySecurityDetail.php deleted file mode 100644 index 06f3e3f0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/SuspiciousActivitySecurityDetail.php +++ /dev/null @@ -1,102 +0,0 @@ -deviceId = $deviceId; - } - public function getDeviceId() - { - return $this->deviceId; - } - public function setDeviceModel($deviceModel) - { - $this->deviceModel = $deviceModel; - } - public function getDeviceModel() - { - return $this->deviceModel; - } - public function setDeviceProperty($deviceProperty) - { - $this->deviceProperty = $deviceProperty; - } - public function getDeviceProperty() - { - return $this->deviceProperty; - } - public function setDeviceType($deviceType) - { - $this->deviceType = $deviceType; - } - public function getDeviceType() - { - return $this->deviceType; - } - public function setIosVendorId($iosVendorId) - { - $this->iosVendorId = $iosVendorId; - } - public function getIosVendorId() - { - return $this->iosVendorId; - } - public function setNewValue($newValue) - { - $this->newValue = $newValue; - } - public function getNewValue() - { - return $this->newValue; - } - public function setOldValue($oldValue) - { - $this->oldValue = $oldValue; - } - public function getOldValue() - { - return $this->oldValue; - } - public function setResourceId($resourceId) - { - $this->resourceId = $resourceId; - } - public function getResourceId() - { - return $this->resourceId; - } - public function setSerialNumber($serialNumber) - { - $this->serialNumber = $serialNumber; - } - public function getSerialNumber() - { - return $this->serialNumber; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/UndeleteAlertRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/UndeleteAlertRequest.php deleted file mode 100644 index 1b469d03..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/UndeleteAlertRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -customerId = $customerId; - } - public function getCustomerId() - { - return $this->customerId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/User.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/User.php deleted file mode 100644 index 128c5819..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/User.php +++ /dev/null @@ -1,39 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setEmailAddress($emailAddress) - { - $this->emailAddress = $emailAddress; - } - public function getEmailAddress() - { - return $this->emailAddress; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/UserDefinedDetectorInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/UserDefinedDetectorInfo.php deleted file mode 100644 index 1bfdb4b6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AlertCenter/UserDefinedDetectorInfo.php +++ /dev/null @@ -1,39 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setResourceName($resourceName) - { - $this->resourceName = $resourceName; - } - public function getResourceName() - { - return $this->resourceName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics.php deleted file mode 100644 index 1b3587aa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics.php +++ /dev/null @@ -1,2162 +0,0 @@ - - * Views and manages your Google Analytics data.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Analytics extends Google_Service -{ - /** View and manage your Google Analytics data. */ - const ANALYTICS = - "https://www.googleapis.com/auth/analytics"; - /** Edit Google Analytics management entities. */ - const ANALYTICS_EDIT = - "https://www.googleapis.com/auth/analytics.edit"; - /** Manage Google Analytics Account users by email address. */ - const ANALYTICS_MANAGE_USERS = - "https://www.googleapis.com/auth/analytics.manage.users"; - /** View Google Analytics user permissions. */ - const ANALYTICS_MANAGE_USERS_READONLY = - "https://www.googleapis.com/auth/analytics.manage.users.readonly"; - /** Create a new Google Analytics account along with its default property and view. */ - const ANALYTICS_PROVISION = - "https://www.googleapis.com/auth/analytics.provision"; - /** View your Google Analytics data. */ - const ANALYTICS_READONLY = - "https://www.googleapis.com/auth/analytics.readonly"; - /** Manage Google Analytics user deletion requests. */ - const ANALYTICS_USER_DELETION = - "https://www.googleapis.com/auth/analytics.user.deletion"; - - public $data_ga; - public $data_mcf; - public $data_realtime; - public $management_accountSummaries; - public $management_accountUserLinks; - public $management_accounts; - public $management_clientId; - public $management_customDataSources; - public $management_customDimensions; - public $management_customMetrics; - public $management_experiments; - public $management_filters; - public $management_goals; - public $management_profileFilterLinks; - public $management_profileUserLinks; - public $management_profiles; - public $management_remarketingAudience; - public $management_segments; - public $management_unsampledReports; - public $management_uploads; - public $management_webPropertyAdWordsLinks; - public $management_webproperties; - public $management_webpropertyUserLinks; - public $metadata_columns; - public $provisioning; - public $userDeletion_userDeletionRequest; - - /** - * Constructs the internal representation of the Analytics service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://www.googleapis.com/'; - $this->servicePath = 'analytics/v3/'; - $this->batchPath = 'batch/analytics/v3'; - $this->version = 'v3'; - $this->serviceName = 'analytics'; - - $this->data_ga = new Google_Service_Analytics_Resource_DataGa( - $this, - $this->serviceName, - 'ga', - array( - 'methods' => array( - 'get' => array( - 'path' => 'data/ga', - 'httpMethod' => 'GET', - 'parameters' => array( - 'ids' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'start-date' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'end-date' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'metrics' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'dimensions' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'filters' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'include-empty-rows' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'max-results' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'output' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'samplingLevel' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'segment' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sort' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'start-index' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->data_mcf = new Google_Service_Analytics_Resource_DataMcf( - $this, - $this->serviceName, - 'mcf', - array( - 'methods' => array( - 'get' => array( - 'path' => 'data/mcf', - 'httpMethod' => 'GET', - 'parameters' => array( - 'ids' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'start-date' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'end-date' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'metrics' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'dimensions' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'filters' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'max-results' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'samplingLevel' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sort' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'start-index' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->data_realtime = new Google_Service_Analytics_Resource_DataRealtime( - $this, - $this->serviceName, - 'realtime', - array( - 'methods' => array( - 'get' => array( - 'path' => 'data/realtime', - 'httpMethod' => 'GET', - 'parameters' => array( - 'ids' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'metrics' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'dimensions' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'filters' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'max-results' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'sort' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->management_accountSummaries = new Google_Service_Analytics_Resource_ManagementAccountSummaries( - $this, - $this->serviceName, - 'accountSummaries', - array( - 'methods' => array( - 'list' => array( - 'path' => 'management/accountSummaries', - 'httpMethod' => 'GET', - 'parameters' => array( - 'max-results' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'start-index' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->management_accountUserLinks = new Google_Service_Analytics_Resource_ManagementAccountUserLinks( - $this, - $this->serviceName, - 'accountUserLinks', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'management/accounts/{accountId}/entityUserLinks/{linkId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'linkId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'management/accounts/{accountId}/entityUserLinks', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'management/accounts/{accountId}/entityUserLinks', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'max-results' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'start-index' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'update' => array( - 'path' => 'management/accounts/{accountId}/entityUserLinks/{linkId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'linkId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->management_accounts = new Google_Service_Analytics_Resource_ManagementAccounts( - $this, - $this->serviceName, - 'accounts', - array( - 'methods' => array( - 'list' => array( - 'path' => 'management/accounts', - 'httpMethod' => 'GET', - 'parameters' => array( - 'max-results' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'start-index' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->management_clientId = new Google_Service_Analytics_Resource_ManagementClientId( - $this, - $this->serviceName, - 'clientId', - array( - 'methods' => array( - 'hashClientId' => array( - 'path' => 'management/clientId:hashClientId', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->management_customDataSources = new Google_Service_Analytics_Resource_ManagementCustomDataSources( - $this, - $this->serviceName, - 'customDataSources', - array( - 'methods' => array( - 'list' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDataSources', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'max-results' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'start-index' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->management_customDimensions = new Google_Service_Analytics_Resource_ManagementCustomDimensions( - $this, - $this->serviceName, - 'customDimensions', - array( - 'methods' => array( - 'get' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDimensions/{customDimensionId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'customDimensionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDimensions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDimensions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'max-results' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'start-index' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDimensions/{customDimensionId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'customDimensionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'ignoreCustomDataSourceLinks' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'update' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDimensions/{customDimensionId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'customDimensionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'ignoreCustomDataSourceLinks' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ), - ) - ) - ); - $this->management_customMetrics = new Google_Service_Analytics_Resource_ManagementCustomMetrics( - $this, - $this->serviceName, - 'customMetrics', - array( - 'methods' => array( - 'get' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customMetrics/{customMetricId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'customMetricId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customMetrics', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customMetrics', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'max-results' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'start-index' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customMetrics/{customMetricId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'customMetricId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'ignoreCustomDataSourceLinks' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'update' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customMetrics/{customMetricId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'customMetricId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'ignoreCustomDataSourceLinks' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ), - ) - ) - ); - $this->management_experiments = new Google_Service_Analytics_Resource_ManagementExperiments( - $this, - $this->serviceName, - 'experiments', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/experiments/{experimentId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'experimentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/experiments/{experimentId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'experimentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/experiments', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/experiments', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'max-results' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'start-index' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/experiments/{experimentId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'experimentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/experiments/{experimentId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'experimentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->management_filters = new Google_Service_Analytics_Resource_ManagementFilters( - $this, - $this->serviceName, - 'filters', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'management/accounts/{accountId}/filters/{filterId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'management/accounts/{accountId}/filters/{filterId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'management/accounts/{accountId}/filters', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'management/accounts/{accountId}/filters', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'max-results' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'start-index' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'management/accounts/{accountId}/filters/{filterId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'management/accounts/{accountId}/filters/{filterId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->management_goals = new Google_Service_Analytics_Resource_ManagementGoals( - $this, - $this->serviceName, - 'goals', - array( - 'methods' => array( - 'get' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/goals/{goalId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'goalId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/goals', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/goals', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'max-results' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'start-index' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/goals/{goalId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'goalId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/goals/{goalId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'goalId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->management_profileFilterLinks = new Google_Service_Analytics_Resource_ManagementProfileFilterLinks( - $this, - $this->serviceName, - 'profileFilterLinks', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/profileFilterLinks/{linkId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'linkId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/profileFilterLinks/{linkId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'linkId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/profileFilterLinks', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/profileFilterLinks', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'max-results' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'start-index' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/profileFilterLinks/{linkId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'linkId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/profileFilterLinks/{linkId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'linkId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->management_profileUserLinks = new Google_Service_Analytics_Resource_ManagementProfileUserLinks( - $this, - $this->serviceName, - 'profileUserLinks', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/entityUserLinks/{linkId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'linkId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/entityUserLinks', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/entityUserLinks', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'max-results' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'start-index' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'update' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/entityUserLinks/{linkId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'linkId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->management_profiles = new Google_Service_Analytics_Resource_ManagementProfiles( - $this, - $this->serviceName, - 'profiles', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'max-results' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'start-index' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->management_remarketingAudience = new Google_Service_Analytics_Resource_ManagementRemarketingAudience( - $this, - $this->serviceName, - 'remarketingAudience', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/remarketingAudiences/{remarketingAudienceId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'remarketingAudienceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/remarketingAudiences/{remarketingAudienceId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'remarketingAudienceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/remarketingAudiences', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/remarketingAudiences', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'max-results' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'start-index' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'type' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/remarketingAudiences/{remarketingAudienceId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'remarketingAudienceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/remarketingAudiences/{remarketingAudienceId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'remarketingAudienceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->management_segments = new Google_Service_Analytics_Resource_ManagementSegments( - $this, - $this->serviceName, - 'segments', - array( - 'methods' => array( - 'list' => array( - 'path' => 'management/segments', - 'httpMethod' => 'GET', - 'parameters' => array( - 'max-results' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'start-index' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->management_unsampledReports = new Google_Service_Analytics_Resource_ManagementUnsampledReports( - $this, - $this->serviceName, - 'unsampledReports', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/unsampledReports/{unsampledReportId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'unsampledReportId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/unsampledReports/{unsampledReportId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'unsampledReportId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/unsampledReports', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/unsampledReports', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'max-results' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'start-index' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->management_uploads = new Google_Service_Analytics_Resource_ManagementUploads( - $this, - $this->serviceName, - 'uploads', - array( - 'methods' => array( - 'deleteUploadData' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDataSources/{customDataSourceId}/deleteUploadData', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'customDataSourceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDataSources/{customDataSourceId}/uploads/{uploadId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'customDataSourceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'uploadId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDataSources/{customDataSourceId}/uploads', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'customDataSourceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'max-results' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'start-index' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'uploadData' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDataSources/{customDataSourceId}/uploads', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'customDataSourceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->management_webPropertyAdWordsLinks = new Google_Service_Analytics_Resource_ManagementWebPropertyAdWordsLinks( - $this, - $this->serviceName, - 'webPropertyAdWordsLinks', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityAdWordsLinks/{webPropertyAdWordsLinkId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyAdWordsLinkId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityAdWordsLinks/{webPropertyAdWordsLinkId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyAdWordsLinkId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityAdWordsLinks', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityAdWordsLinks', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'max-results' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'start-index' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityAdWordsLinks/{webPropertyAdWordsLinkId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyAdWordsLinkId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityAdWordsLinks/{webPropertyAdWordsLinkId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyAdWordsLinkId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->management_webproperties = new Google_Service_Analytics_Resource_ManagementWebproperties( - $this, - $this->serviceName, - 'webproperties', - array( - 'methods' => array( - 'get' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'management/accounts/{accountId}/webproperties', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'management/accounts/{accountId}/webproperties', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'max-results' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'start-index' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->management_webpropertyUserLinks = new Google_Service_Analytics_Resource_ManagementWebpropertyUserLinks( - $this, - $this->serviceName, - 'webpropertyUserLinks', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityUserLinks/{linkId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'linkId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityUserLinks', - 'httpMethod' => 'POST', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityUserLinks', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'max-results' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'start-index' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'update' => array( - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityUserLinks/{linkId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webPropertyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'linkId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->metadata_columns = new Google_Service_Analytics_Resource_MetadataColumns( - $this, - $this->serviceName, - 'columns', - array( - 'methods' => array( - 'list' => array( - 'path' => 'metadata/{reportType}/columns', - 'httpMethod' => 'GET', - 'parameters' => array( - 'reportType' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->provisioning = new Google_Service_Analytics_Resource_Provisioning( - $this, - $this->serviceName, - 'provisioning', - array( - 'methods' => array( - 'createAccountTicket' => array( - 'path' => 'provisioning/createAccountTicket', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'createAccountTree' => array( - 'path' => 'provisioning/createAccountTree', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->userDeletion_userDeletionRequest = new Google_Service_Analytics_Resource_UserDeletionUserDeletionRequest( - $this, - $this->serviceName, - 'userDeletionRequest', - array( - 'methods' => array( - 'upsert' => array( - 'path' => 'userDeletion/userDeletionRequests:upsert', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Account.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Account.php deleted file mode 100644 index 959495d2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Account.php +++ /dev/null @@ -1,116 +0,0 @@ -childLink = $childLink; - } - /** - * @return Google_Service_Analytics_AccountChildLink - */ - public function getChildLink() - { - return $this->childLink; - } - public function setCreated($created) - { - $this->created = $created; - } - public function getCreated() - { - return $this->created; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Analytics_AccountPermissions - */ - public function setPermissions(Google_Service_Analytics_AccountPermissions $permissions) - { - $this->permissions = $permissions; - } - /** - * @return Google_Service_Analytics_AccountPermissions - */ - public function getPermissions() - { - return $this->permissions; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setStarred($starred) - { - $this->starred = $starred; - } - public function getStarred() - { - return $this->starred; - } - public function setUpdated($updated) - { - $this->updated = $updated; - } - public function getUpdated() - { - return $this->updated; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/AccountChildLink.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/AccountChildLink.php deleted file mode 100644 index 84a4bf43..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/AccountChildLink.php +++ /dev/null @@ -1,39 +0,0 @@ -href = $href; - } - public function getHref() - { - return $this->href; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/AccountPermissions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/AccountPermissions.php deleted file mode 100644 index e912da97..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/AccountPermissions.php +++ /dev/null @@ -1,31 +0,0 @@ -effective = $effective; - } - public function getEffective() - { - return $this->effective; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/AccountRef.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/AccountRef.php deleted file mode 100644 index 5b61a43f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/AccountRef.php +++ /dev/null @@ -1,57 +0,0 @@ -href = $href; - } - public function getHref() - { - return $this->href; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/AccountSummaries.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/AccountSummaries.php deleted file mode 100644 index a277727e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/AccountSummaries.php +++ /dev/null @@ -1,101 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Analytics_AccountSummary - */ - public function getItems() - { - return $this->items; - } - public function setItemsPerPage($itemsPerPage) - { - $this->itemsPerPage = $itemsPerPage; - } - public function getItemsPerPage() - { - return $this->itemsPerPage; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextLink($nextLink) - { - $this->nextLink = $nextLink; - } - public function getNextLink() - { - return $this->nextLink; - } - public function setPreviousLink($previousLink) - { - $this->previousLink = $previousLink; - } - public function getPreviousLink() - { - return $this->previousLink; - } - public function setStartIndex($startIndex) - { - $this->startIndex = $startIndex; - } - public function getStartIndex() - { - return $this->startIndex; - } - public function setTotalResults($totalResults) - { - $this->totalResults = $totalResults; - } - public function getTotalResults() - { - return $this->totalResults; - } - public function setUsername($username) - { - $this->username = $username; - } - public function getUsername() - { - return $this->username; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/AccountSummary.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/AccountSummary.php deleted file mode 100644 index 439e77be..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/AccountSummary.php +++ /dev/null @@ -1,74 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setStarred($starred) - { - $this->starred = $starred; - } - public function getStarred() - { - return $this->starred; - } - /** - * @param Google_Service_Analytics_WebPropertySummary - */ - public function setWebProperties($webProperties) - { - $this->webProperties = $webProperties; - } - /** - * @return Google_Service_Analytics_WebPropertySummary - */ - public function getWebProperties() - { - return $this->webProperties; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/AccountTicket.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/AccountTicket.php deleted file mode 100644 index b3e5f0fe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/AccountTicket.php +++ /dev/null @@ -1,96 +0,0 @@ -account = $account; - } - /** - * @return Google_Service_Analytics_Account - */ - public function getAccount() - { - return $this->account; - } - 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; - } - /** - * @param Google_Service_Analytics_Profile - */ - public function setProfile(Google_Service_Analytics_Profile $profile) - { - $this->profile = $profile; - } - /** - * @return Google_Service_Analytics_Profile - */ - public function getProfile() - { - return $this->profile; - } - public function setRedirectUri($redirectUri) - { - $this->redirectUri = $redirectUri; - } - public function getRedirectUri() - { - return $this->redirectUri; - } - /** - * @param Google_Service_Analytics_Webproperty - */ - public function setWebproperty(Google_Service_Analytics_Webproperty $webproperty) - { - $this->webproperty = $webproperty; - } - /** - * @return Google_Service_Analytics_Webproperty - */ - public function getWebproperty() - { - return $this->webproperty; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/AccountTreeRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/AccountTreeRequest.php deleted file mode 100644 index 45402a0d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/AccountTreeRequest.php +++ /dev/null @@ -1,75 +0,0 @@ -accountName = $accountName; - } - public function getAccountName() - { - return $this->accountName; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setProfileName($profileName) - { - $this->profileName = $profileName; - } - public function getProfileName() - { - return $this->profileName; - } - public function setTimezone($timezone) - { - $this->timezone = $timezone; - } - public function getTimezone() - { - return $this->timezone; - } - public function setWebpropertyName($webpropertyName) - { - $this->webpropertyName = $webpropertyName; - } - public function getWebpropertyName() - { - return $this->webpropertyName; - } - public function setWebsiteUrl($websiteUrl) - { - $this->websiteUrl = $websiteUrl; - } - public function getWebsiteUrl() - { - return $this->websiteUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/AccountTreeResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/AccountTreeResponse.php deleted file mode 100644 index fa53776e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/AccountTreeResponse.php +++ /dev/null @@ -1,78 +0,0 @@ -account = $account; - } - /** - * @return Google_Service_Analytics_Account - */ - public function getAccount() - { - return $this->account; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Analytics_Profile - */ - public function setProfile(Google_Service_Analytics_Profile $profile) - { - $this->profile = $profile; - } - /** - * @return Google_Service_Analytics_Profile - */ - public function getProfile() - { - return $this->profile; - } - /** - * @param Google_Service_Analytics_Webproperty - */ - public function setWebproperty(Google_Service_Analytics_Webproperty $webproperty) - { - $this->webproperty = $webproperty; - } - /** - * @return Google_Service_Analytics_Webproperty - */ - public function getWebproperty() - { - return $this->webproperty; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Accounts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Accounts.php deleted file mode 100644 index 76908c83..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Accounts.php +++ /dev/null @@ -1,101 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Analytics_Account - */ - public function getItems() - { - return $this->items; - } - public function setItemsPerPage($itemsPerPage) - { - $this->itemsPerPage = $itemsPerPage; - } - public function getItemsPerPage() - { - return $this->itemsPerPage; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextLink($nextLink) - { - $this->nextLink = $nextLink; - } - public function getNextLink() - { - return $this->nextLink; - } - public function setPreviousLink($previousLink) - { - $this->previousLink = $previousLink; - } - public function getPreviousLink() - { - return $this->previousLink; - } - public function setStartIndex($startIndex) - { - $this->startIndex = $startIndex; - } - public function getStartIndex() - { - return $this->startIndex; - } - public function setTotalResults($totalResults) - { - $this->totalResults = $totalResults; - } - public function getTotalResults() - { - return $this->totalResults; - } - public function setUsername($username) - { - $this->username = $username; - } - public function getUsername() - { - return $this->username; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/AdWordsAccount.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/AdWordsAccount.php deleted file mode 100644 index cdb8adcb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/AdWordsAccount.php +++ /dev/null @@ -1,48 +0,0 @@ -autoTaggingEnabled = $autoTaggingEnabled; - } - public function getAutoTaggingEnabled() - { - return $this->autoTaggingEnabled; - } - public function setCustomerId($customerId) - { - $this->customerId = $customerId; - } - public function getCustomerId() - { - return $this->customerId; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/AnalyticsDataimportDeleteUploadDataRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/AnalyticsDataimportDeleteUploadDataRequest.php deleted file mode 100644 index 3c2f43f9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/AnalyticsDataimportDeleteUploadDataRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -customDataImportUids = $customDataImportUids; - } - public function getCustomDataImportUids() - { - return $this->customDataImportUids; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Column.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Column.php deleted file mode 100644 index a655a789..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Column.php +++ /dev/null @@ -1,48 +0,0 @@ -attributes = $attributes; - } - public function getAttributes() - { - return $this->attributes; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Columns.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Columns.php deleted file mode 100644 index b6e9ca3c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Columns.php +++ /dev/null @@ -1,74 +0,0 @@ -attributeNames = $attributeNames; - } - public function getAttributeNames() - { - return $this->attributeNames; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_Analytics_Column - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Analytics_Column - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setTotalResults($totalResults) - { - $this->totalResults = $totalResults; - } - public function getTotalResults() - { - return $this->totalResults; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/CustomDataSource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/CustomDataSource.php deleted file mode 100644 index ee478872..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/CustomDataSource.php +++ /dev/null @@ -1,180 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - /** - * @param Google_Service_Analytics_CustomDataSourceChildLink - */ - public function setChildLink(Google_Service_Analytics_CustomDataSourceChildLink $childLink) - { - $this->childLink = $childLink; - } - /** - * @return Google_Service_Analytics_CustomDataSourceChildLink - */ - public function getChildLink() - { - return $this->childLink; - } - public function setCreated($created) - { - $this->created = $created; - } - public function getCreated() - { - return $this->created; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setImportBehavior($importBehavior) - { - $this->importBehavior = $importBehavior; - } - public function getImportBehavior() - { - return $this->importBehavior; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Analytics_CustomDataSourceParentLink - */ - public function setParentLink(Google_Service_Analytics_CustomDataSourceParentLink $parentLink) - { - $this->parentLink = $parentLink; - } - /** - * @return Google_Service_Analytics_CustomDataSourceParentLink - */ - public function getParentLink() - { - return $this->parentLink; - } - public function setProfilesLinked($profilesLinked) - { - $this->profilesLinked = $profilesLinked; - } - public function getProfilesLinked() - { - return $this->profilesLinked; - } - public function setSchema($schema) - { - $this->schema = $schema; - } - public function getSchema() - { - return $this->schema; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setUpdated($updated) - { - $this->updated = $updated; - } - public function getUpdated() - { - return $this->updated; - } - public function setUploadType($uploadType) - { - $this->uploadType = $uploadType; - } - public function getUploadType() - { - return $this->uploadType; - } - public function setWebPropertyId($webPropertyId) - { - $this->webPropertyId = $webPropertyId; - } - public function getWebPropertyId() - { - return $this->webPropertyId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/CustomDataSourceChildLink.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/CustomDataSourceChildLink.php deleted file mode 100644 index df06300d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/CustomDataSourceChildLink.php +++ /dev/null @@ -1,39 +0,0 @@ -href = $href; - } - public function getHref() - { - return $this->href; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/CustomDataSourceParentLink.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/CustomDataSourceParentLink.php deleted file mode 100644 index 80d1c5bc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/CustomDataSourceParentLink.php +++ /dev/null @@ -1,39 +0,0 @@ -href = $href; - } - public function getHref() - { - return $this->href; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/CustomDataSources.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/CustomDataSources.php deleted file mode 100644 index ae0c33e3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/CustomDataSources.php +++ /dev/null @@ -1,101 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Analytics_CustomDataSource - */ - public function getItems() - { - return $this->items; - } - public function setItemsPerPage($itemsPerPage) - { - $this->itemsPerPage = $itemsPerPage; - } - public function getItemsPerPage() - { - return $this->itemsPerPage; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextLink($nextLink) - { - $this->nextLink = $nextLink; - } - public function getNextLink() - { - return $this->nextLink; - } - public function setPreviousLink($previousLink) - { - $this->previousLink = $previousLink; - } - public function getPreviousLink() - { - return $this->previousLink; - } - public function setStartIndex($startIndex) - { - $this->startIndex = $startIndex; - } - public function getStartIndex() - { - return $this->startIndex; - } - public function setTotalResults($totalResults) - { - $this->totalResults = $totalResults; - } - public function getTotalResults() - { - return $this->totalResults; - } - public function setUsername($username) - { - $this->username = $username; - } - public function getUsername() - { - return $this->username; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/CustomDimension.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/CustomDimension.php deleted file mode 100644 index 4aa43eb0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/CustomDimension.php +++ /dev/null @@ -1,136 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setActive($active) - { - $this->active = $active; - } - public function getActive() - { - return $this->active; - } - public function setCreated($created) - { - $this->created = $created; - } - public function getCreated() - { - return $this->created; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setIndex($index) - { - $this->index = $index; - } - public function getIndex() - { - return $this->index; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Analytics_CustomDimensionParentLink - */ - public function setParentLink(Google_Service_Analytics_CustomDimensionParentLink $parentLink) - { - $this->parentLink = $parentLink; - } - /** - * @return Google_Service_Analytics_CustomDimensionParentLink - */ - public function getParentLink() - { - return $this->parentLink; - } - public function setScope($scope) - { - $this->scope = $scope; - } - public function getScope() - { - return $this->scope; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setUpdated($updated) - { - $this->updated = $updated; - } - public function getUpdated() - { - return $this->updated; - } - public function setWebPropertyId($webPropertyId) - { - $this->webPropertyId = $webPropertyId; - } - public function getWebPropertyId() - { - return $this->webPropertyId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/CustomDimensionParentLink.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/CustomDimensionParentLink.php deleted file mode 100644 index 7e20dcb2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/CustomDimensionParentLink.php +++ /dev/null @@ -1,39 +0,0 @@ -href = $href; - } - public function getHref() - { - return $this->href; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/CustomDimensions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/CustomDimensions.php deleted file mode 100644 index a341a95b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/CustomDimensions.php +++ /dev/null @@ -1,101 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Analytics_CustomDimension - */ - public function getItems() - { - return $this->items; - } - public function setItemsPerPage($itemsPerPage) - { - $this->itemsPerPage = $itemsPerPage; - } - public function getItemsPerPage() - { - return $this->itemsPerPage; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextLink($nextLink) - { - $this->nextLink = $nextLink; - } - public function getNextLink() - { - return $this->nextLink; - } - public function setPreviousLink($previousLink) - { - $this->previousLink = $previousLink; - } - public function getPreviousLink() - { - return $this->previousLink; - } - public function setStartIndex($startIndex) - { - $this->startIndex = $startIndex; - } - public function getStartIndex() - { - return $this->startIndex; - } - public function setTotalResults($totalResults) - { - $this->totalResults = $totalResults; - } - public function getTotalResults() - { - return $this->totalResults; - } - public function setUsername($username) - { - $this->username = $username; - } - public function getUsername() - { - return $this->username; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/CustomMetric.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/CustomMetric.php deleted file mode 100644 index f65c1a7d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/CustomMetric.php +++ /dev/null @@ -1,167 +0,0 @@ - "max_value", - "minValue" => "min_value", - ); - public $accountId; - public $active; - public $created; - public $id; - public $index; - public $kind; - public $maxValue; - public $minValue; - public $name; - protected $parentLinkType = 'Google_Service_Analytics_CustomMetricParentLink'; - protected $parentLinkDataType = ''; - public $scope; - public $selfLink; - public $type; - public $updated; - public $webPropertyId; - - public function setAccountId($accountId) - { - $this->accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setActive($active) - { - $this->active = $active; - } - public function getActive() - { - return $this->active; - } - public function setCreated($created) - { - $this->created = $created; - } - public function getCreated() - { - return $this->created; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setIndex($index) - { - $this->index = $index; - } - public function getIndex() - { - return $this->index; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setMaxValue($maxValue) - { - $this->maxValue = $maxValue; - } - public function getMaxValue() - { - return $this->maxValue; - } - public function setMinValue($minValue) - { - $this->minValue = $minValue; - } - public function getMinValue() - { - return $this->minValue; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Analytics_CustomMetricParentLink - */ - public function setParentLink(Google_Service_Analytics_CustomMetricParentLink $parentLink) - { - $this->parentLink = $parentLink; - } - /** - * @return Google_Service_Analytics_CustomMetricParentLink - */ - public function getParentLink() - { - return $this->parentLink; - } - public function setScope($scope) - { - $this->scope = $scope; - } - public function getScope() - { - return $this->scope; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setUpdated($updated) - { - $this->updated = $updated; - } - public function getUpdated() - { - return $this->updated; - } - public function setWebPropertyId($webPropertyId) - { - $this->webPropertyId = $webPropertyId; - } - public function getWebPropertyId() - { - return $this->webPropertyId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/CustomMetricParentLink.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/CustomMetricParentLink.php deleted file mode 100644 index c3e225da..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/CustomMetricParentLink.php +++ /dev/null @@ -1,39 +0,0 @@ -href = $href; - } - public function getHref() - { - return $this->href; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/CustomMetrics.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/CustomMetrics.php deleted file mode 100644 index 537c27d3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/CustomMetrics.php +++ /dev/null @@ -1,101 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Analytics_CustomMetric - */ - public function getItems() - { - return $this->items; - } - public function setItemsPerPage($itemsPerPage) - { - $this->itemsPerPage = $itemsPerPage; - } - public function getItemsPerPage() - { - return $this->itemsPerPage; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextLink($nextLink) - { - $this->nextLink = $nextLink; - } - public function getNextLink() - { - return $this->nextLink; - } - public function setPreviousLink($previousLink) - { - $this->previousLink = $previousLink; - } - public function getPreviousLink() - { - return $this->previousLink; - } - public function setStartIndex($startIndex) - { - $this->startIndex = $startIndex; - } - public function getStartIndex() - { - return $this->startIndex; - } - public function setTotalResults($totalResults) - { - $this->totalResults = $totalResults; - } - public function getTotalResults() - { - return $this->totalResults; - } - public function setUsername($username) - { - $this->username = $username; - } - public function getUsername() - { - return $this->username; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/EntityAdWordsLink.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/EntityAdWordsLink.php deleted file mode 100644 index 3ea824af..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/EntityAdWordsLink.php +++ /dev/null @@ -1,99 +0,0 @@ -adWordsAccounts = $adWordsAccounts; - } - /** - * @return Google_Service_Analytics_AdWordsAccount - */ - public function getAdWordsAccounts() - { - return $this->adWordsAccounts; - } - /** - * @param Google_Service_Analytics_EntityAdWordsLinkEntity - */ - public function setEntity(Google_Service_Analytics_EntityAdWordsLinkEntity $entity) - { - $this->entity = $entity; - } - /** - * @return Google_Service_Analytics_EntityAdWordsLinkEntity - */ - public function getEntity() - { - return $this->entity; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setProfileIds($profileIds) - { - $this->profileIds = $profileIds; - } - public function getProfileIds() - { - return $this->profileIds; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/EntityAdWordsLinkEntity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/EntityAdWordsLinkEntity.php deleted file mode 100644 index d5a288c5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/EntityAdWordsLinkEntity.php +++ /dev/null @@ -1,37 +0,0 @@ -webPropertyRef = $webPropertyRef; - } - /** - * @return Google_Service_Analytics_WebPropertyRef - */ - public function getWebPropertyRef() - { - return $this->webPropertyRef; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/EntityAdWordsLinks.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/EntityAdWordsLinks.php deleted file mode 100644 index b41a5408..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/EntityAdWordsLinks.php +++ /dev/null @@ -1,92 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Analytics_EntityAdWordsLink - */ - public function getItems() - { - return $this->items; - } - public function setItemsPerPage($itemsPerPage) - { - $this->itemsPerPage = $itemsPerPage; - } - public function getItemsPerPage() - { - return $this->itemsPerPage; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextLink($nextLink) - { - $this->nextLink = $nextLink; - } - public function getNextLink() - { - return $this->nextLink; - } - public function setPreviousLink($previousLink) - { - $this->previousLink = $previousLink; - } - public function getPreviousLink() - { - return $this->previousLink; - } - public function setStartIndex($startIndex) - { - $this->startIndex = $startIndex; - } - public function getStartIndex() - { - return $this->startIndex; - } - public function setTotalResults($totalResults) - { - $this->totalResults = $totalResults; - } - public function getTotalResults() - { - return $this->totalResults; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/EntityUserLink.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/EntityUserLink.php deleted file mode 100644 index f1378dd1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/EntityUserLink.php +++ /dev/null @@ -1,96 +0,0 @@ -entity = $entity; - } - /** - * @return Google_Service_Analytics_EntityUserLinkEntity - */ - public function getEntity() - { - return $this->entity; - } - 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; - } - /** - * @param Google_Service_Analytics_EntityUserLinkPermissions - */ - public function setPermissions(Google_Service_Analytics_EntityUserLinkPermissions $permissions) - { - $this->permissions = $permissions; - } - /** - * @return Google_Service_Analytics_EntityUserLinkPermissions - */ - public function getPermissions() - { - return $this->permissions; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Analytics_UserRef - */ - public function setUserRef(Google_Service_Analytics_UserRef $userRef) - { - $this->userRef = $userRef; - } - /** - * @return Google_Service_Analytics_UserRef - */ - public function getUserRef() - { - return $this->userRef; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/EntityUserLinkEntity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/EntityUserLinkEntity.php deleted file mode 100644 index f6a9a4e9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/EntityUserLinkEntity.php +++ /dev/null @@ -1,69 +0,0 @@ -accountRef = $accountRef; - } - /** - * @return Google_Service_Analytics_AccountRef - */ - public function getAccountRef() - { - return $this->accountRef; - } - /** - * @param Google_Service_Analytics_ProfileRef - */ - public function setProfileRef(Google_Service_Analytics_ProfileRef $profileRef) - { - $this->profileRef = $profileRef; - } - /** - * @return Google_Service_Analytics_ProfileRef - */ - public function getProfileRef() - { - return $this->profileRef; - } - /** - * @param Google_Service_Analytics_WebPropertyRef - */ - public function setWebPropertyRef(Google_Service_Analytics_WebPropertyRef $webPropertyRef) - { - $this->webPropertyRef = $webPropertyRef; - } - /** - * @return Google_Service_Analytics_WebPropertyRef - */ - public function getWebPropertyRef() - { - return $this->webPropertyRef; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/EntityUserLinkPermissions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/EntityUserLinkPermissions.php deleted file mode 100644 index 45ed9975..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/EntityUserLinkPermissions.php +++ /dev/null @@ -1,40 +0,0 @@ -effective = $effective; - } - public function getEffective() - { - return $this->effective; - } - public function setLocal($local) - { - $this->local = $local; - } - public function getLocal() - { - return $this->local; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/EntityUserLinks.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/EntityUserLinks.php deleted file mode 100644 index 03fe5ed1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/EntityUserLinks.php +++ /dev/null @@ -1,92 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Analytics_EntityUserLink - */ - public function getItems() - { - return $this->items; - } - public function setItemsPerPage($itemsPerPage) - { - $this->itemsPerPage = $itemsPerPage; - } - public function getItemsPerPage() - { - return $this->itemsPerPage; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextLink($nextLink) - { - $this->nextLink = $nextLink; - } - public function getNextLink() - { - return $this->nextLink; - } - public function setPreviousLink($previousLink) - { - $this->previousLink = $previousLink; - } - public function getPreviousLink() - { - return $this->previousLink; - } - public function setStartIndex($startIndex) - { - $this->startIndex = $startIndex; - } - public function getStartIndex() - { - return $this->startIndex; - } - public function setTotalResults($totalResults) - { - $this->totalResults = $totalResults; - } - public function getTotalResults() - { - return $this->totalResults; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Experiment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Experiment.php deleted file mode 100644 index e398ebad..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Experiment.php +++ /dev/null @@ -1,288 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setCreated($created) - { - $this->created = $created; - } - public function getCreated() - { - return $this->created; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setEditableInGaUi($editableInGaUi) - { - $this->editableInGaUi = $editableInGaUi; - } - public function getEditableInGaUi() - { - return $this->editableInGaUi; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setEqualWeighting($equalWeighting) - { - $this->equalWeighting = $equalWeighting; - } - public function getEqualWeighting() - { - return $this->equalWeighting; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setInternalWebPropertyId($internalWebPropertyId) - { - $this->internalWebPropertyId = $internalWebPropertyId; - } - public function getInternalWebPropertyId() - { - return $this->internalWebPropertyId; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setMinimumExperimentLengthInDays($minimumExperimentLengthInDays) - { - $this->minimumExperimentLengthInDays = $minimumExperimentLengthInDays; - } - public function getMinimumExperimentLengthInDays() - { - return $this->minimumExperimentLengthInDays; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setObjectiveMetric($objectiveMetric) - { - $this->objectiveMetric = $objectiveMetric; - } - public function getObjectiveMetric() - { - return $this->objectiveMetric; - } - public function setOptimizationType($optimizationType) - { - $this->optimizationType = $optimizationType; - } - public function getOptimizationType() - { - return $this->optimizationType; - } - /** - * @param Google_Service_Analytics_ExperimentParentLink - */ - public function setParentLink(Google_Service_Analytics_ExperimentParentLink $parentLink) - { - $this->parentLink = $parentLink; - } - /** - * @return Google_Service_Analytics_ExperimentParentLink - */ - public function getParentLink() - { - return $this->parentLink; - } - public function setProfileId($profileId) - { - $this->profileId = $profileId; - } - public function getProfileId() - { - return $this->profileId; - } - public function setReasonExperimentEnded($reasonExperimentEnded) - { - $this->reasonExperimentEnded = $reasonExperimentEnded; - } - public function getReasonExperimentEnded() - { - return $this->reasonExperimentEnded; - } - public function setRewriteVariationUrlsAsOriginal($rewriteVariationUrlsAsOriginal) - { - $this->rewriteVariationUrlsAsOriginal = $rewriteVariationUrlsAsOriginal; - } - public function getRewriteVariationUrlsAsOriginal() - { - return $this->rewriteVariationUrlsAsOriginal; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setServingFramework($servingFramework) - { - $this->servingFramework = $servingFramework; - } - public function getServingFramework() - { - return $this->servingFramework; - } - public function setSnippet($snippet) - { - $this->snippet = $snippet; - } - public function getSnippet() - { - return $this->snippet; - } - 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 setTrafficCoverage($trafficCoverage) - { - $this->trafficCoverage = $trafficCoverage; - } - public function getTrafficCoverage() - { - return $this->trafficCoverage; - } - public function setUpdated($updated) - { - $this->updated = $updated; - } - public function getUpdated() - { - return $this->updated; - } - /** - * @param Google_Service_Analytics_ExperimentVariations - */ - public function setVariations($variations) - { - $this->variations = $variations; - } - /** - * @return Google_Service_Analytics_ExperimentVariations - */ - public function getVariations() - { - return $this->variations; - } - public function setWebPropertyId($webPropertyId) - { - $this->webPropertyId = $webPropertyId; - } - public function getWebPropertyId() - { - return $this->webPropertyId; - } - public function setWinnerConfidenceLevel($winnerConfidenceLevel) - { - $this->winnerConfidenceLevel = $winnerConfidenceLevel; - } - public function getWinnerConfidenceLevel() - { - return $this->winnerConfidenceLevel; - } - public function setWinnerFound($winnerFound) - { - $this->winnerFound = $winnerFound; - } - public function getWinnerFound() - { - return $this->winnerFound; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/ExperimentParentLink.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/ExperimentParentLink.php deleted file mode 100644 index fc6b9c5f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/ExperimentParentLink.php +++ /dev/null @@ -1,39 +0,0 @@ -href = $href; - } - public function getHref() - { - return $this->href; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/ExperimentVariations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/ExperimentVariations.php deleted file mode 100644 index 95dd2e05..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/ExperimentVariations.php +++ /dev/null @@ -1,66 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } - public function setWeight($weight) - { - $this->weight = $weight; - } - public function getWeight() - { - return $this->weight; - } - public function setWon($won) - { - $this->won = $won; - } - public function getWon() - { - return $this->won; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Experiments.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Experiments.php deleted file mode 100644 index f1ef56ae..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Experiments.php +++ /dev/null @@ -1,101 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Analytics_Experiment - */ - public function getItems() - { - return $this->items; - } - public function setItemsPerPage($itemsPerPage) - { - $this->itemsPerPage = $itemsPerPage; - } - public function getItemsPerPage() - { - return $this->itemsPerPage; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextLink($nextLink) - { - $this->nextLink = $nextLink; - } - public function getNextLink() - { - return $this->nextLink; - } - public function setPreviousLink($previousLink) - { - $this->previousLink = $previousLink; - } - public function getPreviousLink() - { - return $this->previousLink; - } - public function setStartIndex($startIndex) - { - $this->startIndex = $startIndex; - } - public function getStartIndex() - { - return $this->startIndex; - } - public function setTotalResults($totalResults) - { - $this->totalResults = $totalResults; - } - public function getTotalResults() - { - return $this->totalResults; - } - public function setUsername($username) - { - $this->username = $username; - } - public function getUsername() - { - return $this->username; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Filter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Filter.php deleted file mode 100644 index bd82d87b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Filter.php +++ /dev/null @@ -1,205 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - /** - * @param Google_Service_Analytics_FilterAdvancedDetails - */ - public function setAdvancedDetails(Google_Service_Analytics_FilterAdvancedDetails $advancedDetails) - { - $this->advancedDetails = $advancedDetails; - } - /** - * @return Google_Service_Analytics_FilterAdvancedDetails - */ - public function getAdvancedDetails() - { - return $this->advancedDetails; - } - public function setCreated($created) - { - $this->created = $created; - } - public function getCreated() - { - return $this->created; - } - /** - * @param Google_Service_Analytics_FilterExpression - */ - public function setExcludeDetails(Google_Service_Analytics_FilterExpression $excludeDetails) - { - $this->excludeDetails = $excludeDetails; - } - /** - * @return Google_Service_Analytics_FilterExpression - */ - public function getExcludeDetails() - { - return $this->excludeDetails; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Analytics_FilterExpression - */ - public function setIncludeDetails(Google_Service_Analytics_FilterExpression $includeDetails) - { - $this->includeDetails = $includeDetails; - } - /** - * @return Google_Service_Analytics_FilterExpression - */ - public function getIncludeDetails() - { - return $this->includeDetails; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Analytics_FilterLowercaseDetails - */ - public function setLowercaseDetails(Google_Service_Analytics_FilterLowercaseDetails $lowercaseDetails) - { - $this->lowercaseDetails = $lowercaseDetails; - } - /** - * @return Google_Service_Analytics_FilterLowercaseDetails - */ - public function getLowercaseDetails() - { - return $this->lowercaseDetails; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Analytics_FilterParentLink - */ - public function setParentLink(Google_Service_Analytics_FilterParentLink $parentLink) - { - $this->parentLink = $parentLink; - } - /** - * @return Google_Service_Analytics_FilterParentLink - */ - public function getParentLink() - { - return $this->parentLink; - } - /** - * @param Google_Service_Analytics_FilterSearchAndReplaceDetails - */ - public function setSearchAndReplaceDetails(Google_Service_Analytics_FilterSearchAndReplaceDetails $searchAndReplaceDetails) - { - $this->searchAndReplaceDetails = $searchAndReplaceDetails; - } - /** - * @return Google_Service_Analytics_FilterSearchAndReplaceDetails - */ - public function getSearchAndReplaceDetails() - { - return $this->searchAndReplaceDetails; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setUpdated($updated) - { - $this->updated = $updated; - } - public function getUpdated() - { - return $this->updated; - } - /** - * @param Google_Service_Analytics_FilterUppercaseDetails - */ - public function setUppercaseDetails(Google_Service_Analytics_FilterUppercaseDetails $uppercaseDetails) - { - $this->uppercaseDetails = $uppercaseDetails; - } - /** - * @return Google_Service_Analytics_FilterUppercaseDetails - */ - public function getUppercaseDetails() - { - return $this->uppercaseDetails; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/FilterAdvancedDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/FilterAdvancedDetails.php deleted file mode 100644 index ef782109..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/FilterAdvancedDetails.php +++ /dev/null @@ -1,138 +0,0 @@ -caseSensitive = $caseSensitive; - } - public function getCaseSensitive() - { - return $this->caseSensitive; - } - public function setExtractA($extractA) - { - $this->extractA = $extractA; - } - public function getExtractA() - { - return $this->extractA; - } - public function setExtractB($extractB) - { - $this->extractB = $extractB; - } - public function getExtractB() - { - return $this->extractB; - } - public function setFieldA($fieldA) - { - $this->fieldA = $fieldA; - } - public function getFieldA() - { - return $this->fieldA; - } - public function setFieldAIndex($fieldAIndex) - { - $this->fieldAIndex = $fieldAIndex; - } - public function getFieldAIndex() - { - return $this->fieldAIndex; - } - public function setFieldARequired($fieldARequired) - { - $this->fieldARequired = $fieldARequired; - } - public function getFieldARequired() - { - return $this->fieldARequired; - } - public function setFieldB($fieldB) - { - $this->fieldB = $fieldB; - } - public function getFieldB() - { - return $this->fieldB; - } - public function setFieldBIndex($fieldBIndex) - { - $this->fieldBIndex = $fieldBIndex; - } - public function getFieldBIndex() - { - return $this->fieldBIndex; - } - public function setFieldBRequired($fieldBRequired) - { - $this->fieldBRequired = $fieldBRequired; - } - public function getFieldBRequired() - { - return $this->fieldBRequired; - } - public function setOutputConstructor($outputConstructor) - { - $this->outputConstructor = $outputConstructor; - } - public function getOutputConstructor() - { - return $this->outputConstructor; - } - public function setOutputToField($outputToField) - { - $this->outputToField = $outputToField; - } - public function getOutputToField() - { - return $this->outputToField; - } - public function setOutputToFieldIndex($outputToFieldIndex) - { - $this->outputToFieldIndex = $outputToFieldIndex; - } - public function getOutputToFieldIndex() - { - return $this->outputToFieldIndex; - } - public function setOverrideOutputField($overrideOutputField) - { - $this->overrideOutputField = $overrideOutputField; - } - public function getOverrideOutputField() - { - return $this->overrideOutputField; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/FilterExpression.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/FilterExpression.php deleted file mode 100644 index 0d31503d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/FilterExpression.php +++ /dev/null @@ -1,75 +0,0 @@ -caseSensitive = $caseSensitive; - } - public function getCaseSensitive() - { - return $this->caseSensitive; - } - public function setExpressionValue($expressionValue) - { - $this->expressionValue = $expressionValue; - } - public function getExpressionValue() - { - return $this->expressionValue; - } - public function setField($field) - { - $this->field = $field; - } - public function getField() - { - return $this->field; - } - public function setFieldIndex($fieldIndex) - { - $this->fieldIndex = $fieldIndex; - } - public function getFieldIndex() - { - return $this->fieldIndex; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setMatchType($matchType) - { - $this->matchType = $matchType; - } - public function getMatchType() - { - return $this->matchType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/FilterLowercaseDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/FilterLowercaseDetails.php deleted file mode 100644 index be7cbe4f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/FilterLowercaseDetails.php +++ /dev/null @@ -1,39 +0,0 @@ -field = $field; - } - public function getField() - { - return $this->field; - } - public function setFieldIndex($fieldIndex) - { - $this->fieldIndex = $fieldIndex; - } - public function getFieldIndex() - { - return $this->fieldIndex; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/FilterParentLink.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/FilterParentLink.php deleted file mode 100644 index 6138f8dd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/FilterParentLink.php +++ /dev/null @@ -1,39 +0,0 @@ -href = $href; - } - public function getHref() - { - return $this->href; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/FilterRef.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/FilterRef.php deleted file mode 100644 index 722378ad..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/FilterRef.php +++ /dev/null @@ -1,66 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setHref($href) - { - $this->href = $href; - } - public function getHref() - { - return $this->href; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/FilterSearchAndReplaceDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/FilterSearchAndReplaceDetails.php deleted file mode 100644 index 9efa4c35..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/FilterSearchAndReplaceDetails.php +++ /dev/null @@ -1,66 +0,0 @@ -caseSensitive = $caseSensitive; - } - public function getCaseSensitive() - { - return $this->caseSensitive; - } - public function setField($field) - { - $this->field = $field; - } - public function getField() - { - return $this->field; - } - public function setFieldIndex($fieldIndex) - { - $this->fieldIndex = $fieldIndex; - } - public function getFieldIndex() - { - return $this->fieldIndex; - } - public function setReplaceString($replaceString) - { - $this->replaceString = $replaceString; - } - public function getReplaceString() - { - return $this->replaceString; - } - public function setSearchString($searchString) - { - $this->searchString = $searchString; - } - public function getSearchString() - { - return $this->searchString; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/FilterUppercaseDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/FilterUppercaseDetails.php deleted file mode 100644 index 262370b9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/FilterUppercaseDetails.php +++ /dev/null @@ -1,39 +0,0 @@ -field = $field; - } - public function getField() - { - return $this->field; - } - public function setFieldIndex($fieldIndex) - { - $this->fieldIndex = $fieldIndex; - } - public function getFieldIndex() - { - return $this->fieldIndex; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Filters.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Filters.php deleted file mode 100644 index 6013c065..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Filters.php +++ /dev/null @@ -1,101 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Analytics_Filter - */ - public function getItems() - { - return $this->items; - } - public function setItemsPerPage($itemsPerPage) - { - $this->itemsPerPage = $itemsPerPage; - } - public function getItemsPerPage() - { - return $this->itemsPerPage; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextLink($nextLink) - { - $this->nextLink = $nextLink; - } - public function getNextLink() - { - return $this->nextLink; - } - public function setPreviousLink($previousLink) - { - $this->previousLink = $previousLink; - } - public function getPreviousLink() - { - return $this->previousLink; - } - public function setStartIndex($startIndex) - { - $this->startIndex = $startIndex; - } - public function getStartIndex() - { - return $this->startIndex; - } - public function setTotalResults($totalResults) - { - $this->totalResults = $totalResults; - } - public function getTotalResults() - { - return $this->totalResults; - } - public function setUsername($username) - { - $this->username = $username; - } - public function getUsername() - { - return $this->username; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/GaData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/GaData.php deleted file mode 100644 index 136d8774..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/GaData.php +++ /dev/null @@ -1,203 +0,0 @@ -columnHeaders = $columnHeaders; - } - /** - * @return Google_Service_Analytics_GaDataColumnHeaders - */ - public function getColumnHeaders() - { - return $this->columnHeaders; - } - public function setContainsSampledData($containsSampledData) - { - $this->containsSampledData = $containsSampledData; - } - public function getContainsSampledData() - { - return $this->containsSampledData; - } - public function setDataLastRefreshed($dataLastRefreshed) - { - $this->dataLastRefreshed = $dataLastRefreshed; - } - public function getDataLastRefreshed() - { - return $this->dataLastRefreshed; - } - /** - * @param Google_Service_Analytics_GaDataDataTable - */ - public function setDataTable(Google_Service_Analytics_GaDataDataTable $dataTable) - { - $this->dataTable = $dataTable; - } - /** - * @return Google_Service_Analytics_GaDataDataTable - */ - public function getDataTable() - { - return $this->dataTable; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setItemsPerPage($itemsPerPage) - { - $this->itemsPerPage = $itemsPerPage; - } - public function getItemsPerPage() - { - return $this->itemsPerPage; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextLink($nextLink) - { - $this->nextLink = $nextLink; - } - public function getNextLink() - { - return $this->nextLink; - } - public function setPreviousLink($previousLink) - { - $this->previousLink = $previousLink; - } - public function getPreviousLink() - { - return $this->previousLink; - } - /** - * @param Google_Service_Analytics_GaDataProfileInfo - */ - public function setProfileInfo(Google_Service_Analytics_GaDataProfileInfo $profileInfo) - { - $this->profileInfo = $profileInfo; - } - /** - * @return Google_Service_Analytics_GaDataProfileInfo - */ - public function getProfileInfo() - { - return $this->profileInfo; - } - /** - * @param Google_Service_Analytics_GaDataQuery - */ - public function setQuery(Google_Service_Analytics_GaDataQuery $query) - { - $this->query = $query; - } - /** - * @return Google_Service_Analytics_GaDataQuery - */ - public function getQuery() - { - return $this->query; - } - public function setRows($rows) - { - $this->rows = $rows; - } - public function getRows() - { - return $this->rows; - } - public function setSampleSize($sampleSize) - { - $this->sampleSize = $sampleSize; - } - public function getSampleSize() - { - return $this->sampleSize; - } - public function setSampleSpace($sampleSpace) - { - $this->sampleSpace = $sampleSpace; - } - public function getSampleSpace() - { - return $this->sampleSpace; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setTotalResults($totalResults) - { - $this->totalResults = $totalResults; - } - public function getTotalResults() - { - return $this->totalResults; - } - public function setTotalsForAllResults($totalsForAllResults) - { - $this->totalsForAllResults = $totalsForAllResults; - } - public function getTotalsForAllResults() - { - return $this->totalsForAllResults; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/GaDataColumnHeaders.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/GaDataColumnHeaders.php deleted file mode 100644 index 8ca3a571..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/GaDataColumnHeaders.php +++ /dev/null @@ -1,48 +0,0 @@ -columnType = $columnType; - } - public function getColumnType() - { - return $this->columnType; - } - public function setDataType($dataType) - { - $this->dataType = $dataType; - } - public function getDataType() - { - return $this->dataType; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/GaDataDataTable.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/GaDataDataTable.php deleted file mode 100644 index ef43a875..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/GaDataDataTable.php +++ /dev/null @@ -1,54 +0,0 @@ -cols = $cols; - } - /** - * @return Google_Service_Analytics_GaDataDataTableCols - */ - public function getCols() - { - return $this->cols; - } - /** - * @param Google_Service_Analytics_GaDataDataTableRows - */ - public function setRows($rows) - { - $this->rows = $rows; - } - /** - * @return Google_Service_Analytics_GaDataDataTableRows - */ - public function getRows() - { - return $this->rows; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/GaDataDataTableCols.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/GaDataDataTableCols.php deleted file mode 100644 index 0177adbf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/GaDataDataTableCols.php +++ /dev/null @@ -1,48 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setLabel($label) - { - $this->label = $label; - } - public function getLabel() - { - return $this->label; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/GaDataDataTableRows.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/GaDataDataTableRows.php deleted file mode 100644 index a5c62fe5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/GaDataDataTableRows.php +++ /dev/null @@ -1,38 +0,0 @@ -c = $c; - } - /** - * @return Google_Service_Analytics_GaDataDataTableRowsC - */ - public function getC() - { - return $this->c; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/GaDataDataTableRowsC.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/GaDataDataTableRowsC.php deleted file mode 100644 index 875cbb48..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/GaDataDataTableRowsC.php +++ /dev/null @@ -1,30 +0,0 @@ -v = $v; - } - public function getV() - { - return $this->v; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/GaDataProfileInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/GaDataProfileInfo.php deleted file mode 100644 index d98bddfd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/GaDataProfileInfo.php +++ /dev/null @@ -1,75 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setInternalWebPropertyId($internalWebPropertyId) - { - $this->internalWebPropertyId = $internalWebPropertyId; - } - public function getInternalWebPropertyId() - { - return $this->internalWebPropertyId; - } - public function setProfileId($profileId) - { - $this->profileId = $profileId; - } - public function getProfileId() - { - return $this->profileId; - } - public function setProfileName($profileName) - { - $this->profileName = $profileName; - } - public function getProfileName() - { - return $this->profileName; - } - public function setTableId($tableId) - { - $this->tableId = $tableId; - } - public function getTableId() - { - return $this->tableId; - } - public function setWebPropertyId($webPropertyId) - { - $this->webPropertyId = $webPropertyId; - } - public function getWebPropertyId() - { - return $this->webPropertyId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/GaDataQuery.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/GaDataQuery.php deleted file mode 100644 index 2f58a9f5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/GaDataQuery.php +++ /dev/null @@ -1,127 +0,0 @@ - "end-date", - "maxResults" => "max-results", - "startDate" => "start-date", - "startIndex" => "start-index", - ); - public $dimensions; - public $endDate; - public $filters; - public $ids; - public $maxResults; - public $metrics; - public $samplingLevel; - public $segment; - public $sort; - public $startDate; - public $startIndex; - - public function setDimensions($dimensions) - { - $this->dimensions = $dimensions; - } - public function getDimensions() - { - return $this->dimensions; - } - public function setEndDate($endDate) - { - $this->endDate = $endDate; - } - public function getEndDate() - { - return $this->endDate; - } - public function setFilters($filters) - { - $this->filters = $filters; - } - public function getFilters() - { - return $this->filters; - } - public function setIds($ids) - { - $this->ids = $ids; - } - public function getIds() - { - return $this->ids; - } - public function setMaxResults($maxResults) - { - $this->maxResults = $maxResults; - } - public function getMaxResults() - { - return $this->maxResults; - } - public function setMetrics($metrics) - { - $this->metrics = $metrics; - } - public function getMetrics() - { - return $this->metrics; - } - public function setSamplingLevel($samplingLevel) - { - $this->samplingLevel = $samplingLevel; - } - public function getSamplingLevel() - { - return $this->samplingLevel; - } - public function setSegment($segment) - { - $this->segment = $segment; - } - public function getSegment() - { - return $this->segment; - } - public function setSort($sort) - { - $this->sort = $sort; - } - public function getSort() - { - return $this->sort; - } - public function setStartDate($startDate) - { - $this->startDate = $startDate; - } - public function getStartDate() - { - return $this->startDate; - } - public function setStartIndex($startIndex) - { - $this->startIndex = $startIndex; - } - public function getStartIndex() - { - return $this->startIndex; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Goal.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Goal.php deleted file mode 100644 index bf59008d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Goal.php +++ /dev/null @@ -1,218 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setActive($active) - { - $this->active = $active; - } - public function getActive() - { - return $this->active; - } - public function setCreated($created) - { - $this->created = $created; - } - public function getCreated() - { - return $this->created; - } - /** - * @param Google_Service_Analytics_GoalEventDetails - */ - public function setEventDetails(Google_Service_Analytics_GoalEventDetails $eventDetails) - { - $this->eventDetails = $eventDetails; - } - /** - * @return Google_Service_Analytics_GoalEventDetails - */ - public function getEventDetails() - { - return $this->eventDetails; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setInternalWebPropertyId($internalWebPropertyId) - { - $this->internalWebPropertyId = $internalWebPropertyId; - } - public function getInternalWebPropertyId() - { - return $this->internalWebPropertyId; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Analytics_GoalParentLink - */ - public function setParentLink(Google_Service_Analytics_GoalParentLink $parentLink) - { - $this->parentLink = $parentLink; - } - /** - * @return Google_Service_Analytics_GoalParentLink - */ - public function getParentLink() - { - return $this->parentLink; - } - public function setProfileId($profileId) - { - $this->profileId = $profileId; - } - public function getProfileId() - { - return $this->profileId; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setUpdated($updated) - { - $this->updated = $updated; - } - public function getUpdated() - { - return $this->updated; - } - /** - * @param Google_Service_Analytics_GoalUrlDestinationDetails - */ - public function setUrlDestinationDetails(Google_Service_Analytics_GoalUrlDestinationDetails $urlDestinationDetails) - { - $this->urlDestinationDetails = $urlDestinationDetails; - } - /** - * @return Google_Service_Analytics_GoalUrlDestinationDetails - */ - public function getUrlDestinationDetails() - { - return $this->urlDestinationDetails; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } - /** - * @param Google_Service_Analytics_GoalVisitNumPagesDetails - */ - public function setVisitNumPagesDetails(Google_Service_Analytics_GoalVisitNumPagesDetails $visitNumPagesDetails) - { - $this->visitNumPagesDetails = $visitNumPagesDetails; - } - /** - * @return Google_Service_Analytics_GoalVisitNumPagesDetails - */ - public function getVisitNumPagesDetails() - { - return $this->visitNumPagesDetails; - } - /** - * @param Google_Service_Analytics_GoalVisitTimeOnSiteDetails - */ - public function setVisitTimeOnSiteDetails(Google_Service_Analytics_GoalVisitTimeOnSiteDetails $visitTimeOnSiteDetails) - { - $this->visitTimeOnSiteDetails = $visitTimeOnSiteDetails; - } - /** - * @return Google_Service_Analytics_GoalVisitTimeOnSiteDetails - */ - public function getVisitTimeOnSiteDetails() - { - return $this->visitTimeOnSiteDetails; - } - public function setWebPropertyId($webPropertyId) - { - $this->webPropertyId = $webPropertyId; - } - public function getWebPropertyId() - { - return $this->webPropertyId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/GoalEventDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/GoalEventDetails.php deleted file mode 100644 index a3237702..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/GoalEventDetails.php +++ /dev/null @@ -1,47 +0,0 @@ -eventConditions = $eventConditions; - } - /** - * @return Google_Service_Analytics_GoalEventDetailsEventConditions - */ - public function getEventConditions() - { - return $this->eventConditions; - } - public function setUseEventValue($useEventValue) - { - $this->useEventValue = $useEventValue; - } - public function getUseEventValue() - { - return $this->useEventValue; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/GoalEventDetailsEventConditions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/GoalEventDetailsEventConditions.php deleted file mode 100644 index ed23ca60..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/GoalEventDetailsEventConditions.php +++ /dev/null @@ -1,66 +0,0 @@ -comparisonType = $comparisonType; - } - public function getComparisonType() - { - return $this->comparisonType; - } - public function setComparisonValue($comparisonValue) - { - $this->comparisonValue = $comparisonValue; - } - public function getComparisonValue() - { - return $this->comparisonValue; - } - public function setExpression($expression) - { - $this->expression = $expression; - } - public function getExpression() - { - return $this->expression; - } - public function setMatchType($matchType) - { - $this->matchType = $matchType; - } - public function getMatchType() - { - return $this->matchType; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/GoalParentLink.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/GoalParentLink.php deleted file mode 100644 index 2c671061..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/GoalParentLink.php +++ /dev/null @@ -1,39 +0,0 @@ -href = $href; - } - public function getHref() - { - return $this->href; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/GoalUrlDestinationDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/GoalUrlDestinationDetails.php deleted file mode 100644 index 1e3baef5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/GoalUrlDestinationDetails.php +++ /dev/null @@ -1,74 +0,0 @@ -caseSensitive = $caseSensitive; - } - public function getCaseSensitive() - { - return $this->caseSensitive; - } - public function setFirstStepRequired($firstStepRequired) - { - $this->firstStepRequired = $firstStepRequired; - } - public function getFirstStepRequired() - { - return $this->firstStepRequired; - } - public function setMatchType($matchType) - { - $this->matchType = $matchType; - } - public function getMatchType() - { - return $this->matchType; - } - /** - * @param Google_Service_Analytics_GoalUrlDestinationDetailsSteps - */ - public function setSteps($steps) - { - $this->steps = $steps; - } - /** - * @return Google_Service_Analytics_GoalUrlDestinationDetailsSteps - */ - public function getSteps() - { - return $this->steps; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/GoalUrlDestinationDetailsSteps.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/GoalUrlDestinationDetailsSteps.php deleted file mode 100644 index 43e073d2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/GoalUrlDestinationDetailsSteps.php +++ /dev/null @@ -1,48 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setNumber($number) - { - $this->number = $number; - } - public function getNumber() - { - return $this->number; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/GoalVisitNumPagesDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/GoalVisitNumPagesDetails.php deleted file mode 100644 index 30637d75..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/GoalVisitNumPagesDetails.php +++ /dev/null @@ -1,39 +0,0 @@ -comparisonType = $comparisonType; - } - public function getComparisonType() - { - return $this->comparisonType; - } - public function setComparisonValue($comparisonValue) - { - $this->comparisonValue = $comparisonValue; - } - public function getComparisonValue() - { - return $this->comparisonValue; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/GoalVisitTimeOnSiteDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/GoalVisitTimeOnSiteDetails.php deleted file mode 100644 index 7551f52a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/GoalVisitTimeOnSiteDetails.php +++ /dev/null @@ -1,39 +0,0 @@ -comparisonType = $comparisonType; - } - public function getComparisonType() - { - return $this->comparisonType; - } - public function setComparisonValue($comparisonValue) - { - $this->comparisonValue = $comparisonValue; - } - public function getComparisonValue() - { - return $this->comparisonValue; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Goals.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Goals.php deleted file mode 100644 index 4cc5e383..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Goals.php +++ /dev/null @@ -1,101 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Analytics_Goal - */ - public function getItems() - { - return $this->items; - } - public function setItemsPerPage($itemsPerPage) - { - $this->itemsPerPage = $itemsPerPage; - } - public function getItemsPerPage() - { - return $this->itemsPerPage; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextLink($nextLink) - { - $this->nextLink = $nextLink; - } - public function getNextLink() - { - return $this->nextLink; - } - public function setPreviousLink($previousLink) - { - $this->previousLink = $previousLink; - } - public function getPreviousLink() - { - return $this->previousLink; - } - public function setStartIndex($startIndex) - { - $this->startIndex = $startIndex; - } - public function getStartIndex() - { - return $this->startIndex; - } - public function setTotalResults($totalResults) - { - $this->totalResults = $totalResults; - } - public function getTotalResults() - { - return $this->totalResults; - } - public function setUsername($username) - { - $this->username = $username; - } - public function getUsername() - { - return $this->username; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/HashClientIdRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/HashClientIdRequest.php deleted file mode 100644 index 6a5441dc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/HashClientIdRequest.php +++ /dev/null @@ -1,48 +0,0 @@ -clientId = $clientId; - } - public function getClientId() - { - return $this->clientId; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setWebPropertyId($webPropertyId) - { - $this->webPropertyId = $webPropertyId; - } - public function getWebPropertyId() - { - return $this->webPropertyId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/HashClientIdResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/HashClientIdResponse.php deleted file mode 100644 index 71fac1ae..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/HashClientIdResponse.php +++ /dev/null @@ -1,57 +0,0 @@ -clientId = $clientId; - } - public function getClientId() - { - return $this->clientId; - } - public function setHashedClientId($hashedClientId) - { - $this->hashedClientId = $hashedClientId; - } - public function getHashedClientId() - { - return $this->hashedClientId; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setWebPropertyId($webPropertyId) - { - $this->webPropertyId = $webPropertyId; - } - public function getWebPropertyId() - { - return $this->webPropertyId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/IncludeConditions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/IncludeConditions.php deleted file mode 100644 index 18153747..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/IncludeConditions.php +++ /dev/null @@ -1,66 +0,0 @@ -daysToLookBack = $daysToLookBack; - } - public function getDaysToLookBack() - { - return $this->daysToLookBack; - } - public function setIsSmartList($isSmartList) - { - $this->isSmartList = $isSmartList; - } - public function getIsSmartList() - { - return $this->isSmartList; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setMembershipDurationDays($membershipDurationDays) - { - $this->membershipDurationDays = $membershipDurationDays; - } - public function getMembershipDurationDays() - { - return $this->membershipDurationDays; - } - public function setSegment($segment) - { - $this->segment = $segment; - } - public function getSegment() - { - return $this->segment; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/LinkedForeignAccount.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/LinkedForeignAccount.php deleted file mode 100644 index 34ceed42..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/LinkedForeignAccount.php +++ /dev/null @@ -1,111 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setEligibleForSearch($eligibleForSearch) - { - $this->eligibleForSearch = $eligibleForSearch; - } - public function getEligibleForSearch() - { - return $this->eligibleForSearch; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setInternalWebPropertyId($internalWebPropertyId) - { - $this->internalWebPropertyId = $internalWebPropertyId; - } - public function getInternalWebPropertyId() - { - return $this->internalWebPropertyId; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLinkedAccountId($linkedAccountId) - { - $this->linkedAccountId = $linkedAccountId; - } - public function getLinkedAccountId() - { - return $this->linkedAccountId; - } - public function setRemarketingAudienceId($remarketingAudienceId) - { - $this->remarketingAudienceId = $remarketingAudienceId; - } - public function getRemarketingAudienceId() - { - return $this->remarketingAudienceId; - } - 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 setWebPropertyId($webPropertyId) - { - $this->webPropertyId = $webPropertyId; - } - public function getWebPropertyId() - { - return $this->webPropertyId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/McfData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/McfData.php deleted file mode 100644 index 0b57f18f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/McfData.php +++ /dev/null @@ -1,185 +0,0 @@ -columnHeaders = $columnHeaders; - } - /** - * @return Google_Service_Analytics_McfDataColumnHeaders - */ - public function getColumnHeaders() - { - return $this->columnHeaders; - } - public function setContainsSampledData($containsSampledData) - { - $this->containsSampledData = $containsSampledData; - } - public function getContainsSampledData() - { - return $this->containsSampledData; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setItemsPerPage($itemsPerPage) - { - $this->itemsPerPage = $itemsPerPage; - } - public function getItemsPerPage() - { - return $this->itemsPerPage; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextLink($nextLink) - { - $this->nextLink = $nextLink; - } - public function getNextLink() - { - return $this->nextLink; - } - public function setPreviousLink($previousLink) - { - $this->previousLink = $previousLink; - } - public function getPreviousLink() - { - return $this->previousLink; - } - /** - * @param Google_Service_Analytics_McfDataProfileInfo - */ - public function setProfileInfo(Google_Service_Analytics_McfDataProfileInfo $profileInfo) - { - $this->profileInfo = $profileInfo; - } - /** - * @return Google_Service_Analytics_McfDataProfileInfo - */ - public function getProfileInfo() - { - return $this->profileInfo; - } - /** - * @param Google_Service_Analytics_McfDataQuery - */ - public function setQuery(Google_Service_Analytics_McfDataQuery $query) - { - $this->query = $query; - } - /** - * @return Google_Service_Analytics_McfDataQuery - */ - public function getQuery() - { - return $this->query; - } - /** - * @param Google_Service_Analytics_McfDataRows - */ - public function setRows($rows) - { - $this->rows = $rows; - } - /** - * @return Google_Service_Analytics_McfDataRows - */ - public function getRows() - { - return $this->rows; - } - public function setSampleSize($sampleSize) - { - $this->sampleSize = $sampleSize; - } - public function getSampleSize() - { - return $this->sampleSize; - } - public function setSampleSpace($sampleSpace) - { - $this->sampleSpace = $sampleSpace; - } - public function getSampleSpace() - { - return $this->sampleSpace; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setTotalResults($totalResults) - { - $this->totalResults = $totalResults; - } - public function getTotalResults() - { - return $this->totalResults; - } - public function setTotalsForAllResults($totalsForAllResults) - { - $this->totalsForAllResults = $totalsForAllResults; - } - public function getTotalsForAllResults() - { - return $this->totalsForAllResults; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/McfDataColumnHeaders.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/McfDataColumnHeaders.php deleted file mode 100644 index 5a548b6a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/McfDataColumnHeaders.php +++ /dev/null @@ -1,48 +0,0 @@ -columnType = $columnType; - } - public function getColumnType() - { - return $this->columnType; - } - public function setDataType($dataType) - { - $this->dataType = $dataType; - } - public function getDataType() - { - return $this->dataType; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/McfDataProfileInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/McfDataProfileInfo.php deleted file mode 100644 index 80293c97..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/McfDataProfileInfo.php +++ /dev/null @@ -1,75 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setInternalWebPropertyId($internalWebPropertyId) - { - $this->internalWebPropertyId = $internalWebPropertyId; - } - public function getInternalWebPropertyId() - { - return $this->internalWebPropertyId; - } - public function setProfileId($profileId) - { - $this->profileId = $profileId; - } - public function getProfileId() - { - return $this->profileId; - } - public function setProfileName($profileName) - { - $this->profileName = $profileName; - } - public function getProfileName() - { - return $this->profileName; - } - public function setTableId($tableId) - { - $this->tableId = $tableId; - } - public function getTableId() - { - return $this->tableId; - } - public function setWebPropertyId($webPropertyId) - { - $this->webPropertyId = $webPropertyId; - } - public function getWebPropertyId() - { - return $this->webPropertyId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/McfDataQuery.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/McfDataQuery.php deleted file mode 100644 index b3851a96..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/McfDataQuery.php +++ /dev/null @@ -1,127 +0,0 @@ - "end-date", - "maxResults" => "max-results", - "startDate" => "start-date", - "startIndex" => "start-index", - ); - public $dimensions; - public $endDate; - public $filters; - public $ids; - public $maxResults; - public $metrics; - public $samplingLevel; - public $segment; - public $sort; - public $startDate; - public $startIndex; - - public function setDimensions($dimensions) - { - $this->dimensions = $dimensions; - } - public function getDimensions() - { - return $this->dimensions; - } - public function setEndDate($endDate) - { - $this->endDate = $endDate; - } - public function getEndDate() - { - return $this->endDate; - } - public function setFilters($filters) - { - $this->filters = $filters; - } - public function getFilters() - { - return $this->filters; - } - public function setIds($ids) - { - $this->ids = $ids; - } - public function getIds() - { - return $this->ids; - } - public function setMaxResults($maxResults) - { - $this->maxResults = $maxResults; - } - public function getMaxResults() - { - return $this->maxResults; - } - public function setMetrics($metrics) - { - $this->metrics = $metrics; - } - public function getMetrics() - { - return $this->metrics; - } - public function setSamplingLevel($samplingLevel) - { - $this->samplingLevel = $samplingLevel; - } - public function getSamplingLevel() - { - return $this->samplingLevel; - } - public function setSegment($segment) - { - $this->segment = $segment; - } - public function getSegment() - { - return $this->segment; - } - public function setSort($sort) - { - $this->sort = $sort; - } - public function getSort() - { - return $this->sort; - } - public function setStartDate($startDate) - { - $this->startDate = $startDate; - } - public function getStartDate() - { - return $this->startDate; - } - public function setStartIndex($startIndex) - { - $this->startIndex = $startIndex; - } - public function getStartIndex() - { - return $this->startIndex; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/McfDataRows.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/McfDataRows.php deleted file mode 100644 index a7e45c39..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/McfDataRows.php +++ /dev/null @@ -1,47 +0,0 @@ -conversionPathValue = $conversionPathValue; - } - /** - * @return Google_Service_Analytics_McfDataRowsConversionPathValue - */ - public function getConversionPathValue() - { - return $this->conversionPathValue; - } - public function setPrimitiveValue($primitiveValue) - { - $this->primitiveValue = $primitiveValue; - } - public function getPrimitiveValue() - { - return $this->primitiveValue; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/McfDataRowsConversionPathValue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/McfDataRowsConversionPathValue.php deleted file mode 100644 index e8df71e7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/McfDataRowsConversionPathValue.php +++ /dev/null @@ -1,39 +0,0 @@ -interactionType = $interactionType; - } - public function getInteractionType() - { - return $this->interactionType; - } - public function setNodeValue($nodeValue) - { - $this->nodeValue = $nodeValue; - } - public function getNodeValue() - { - return $this->nodeValue; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Profile.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Profile.php deleted file mode 100644 index 28e9aaf6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Profile.php +++ /dev/null @@ -1,276 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setBotFilteringEnabled($botFilteringEnabled) - { - $this->botFilteringEnabled = $botFilteringEnabled; - } - public function getBotFilteringEnabled() - { - return $this->botFilteringEnabled; - } - /** - * @param Google_Service_Analytics_ProfileChildLink - */ - public function setChildLink(Google_Service_Analytics_ProfileChildLink $childLink) - { - $this->childLink = $childLink; - } - /** - * @return Google_Service_Analytics_ProfileChildLink - */ - public function getChildLink() - { - return $this->childLink; - } - public function setCreated($created) - { - $this->created = $created; - } - public function getCreated() - { - return $this->created; - } - public function setCurrency($currency) - { - $this->currency = $currency; - } - public function getCurrency() - { - return $this->currency; - } - public function setDefaultPage($defaultPage) - { - $this->defaultPage = $defaultPage; - } - public function getDefaultPage() - { - return $this->defaultPage; - } - public function setECommerceTracking($eCommerceTracking) - { - $this->eCommerceTracking = $eCommerceTracking; - } - public function getECommerceTracking() - { - return $this->eCommerceTracking; - } - public function setEnhancedECommerceTracking($enhancedECommerceTracking) - { - $this->enhancedECommerceTracking = $enhancedECommerceTracking; - } - public function getEnhancedECommerceTracking() - { - return $this->enhancedECommerceTracking; - } - public function setExcludeQueryParameters($excludeQueryParameters) - { - $this->excludeQueryParameters = $excludeQueryParameters; - } - public function getExcludeQueryParameters() - { - return $this->excludeQueryParameters; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setInternalWebPropertyId($internalWebPropertyId) - { - $this->internalWebPropertyId = $internalWebPropertyId; - } - public function getInternalWebPropertyId() - { - return $this->internalWebPropertyId; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Analytics_ProfileParentLink - */ - public function setParentLink(Google_Service_Analytics_ProfileParentLink $parentLink) - { - $this->parentLink = $parentLink; - } - /** - * @return Google_Service_Analytics_ProfileParentLink - */ - public function getParentLink() - { - return $this->parentLink; - } - /** - * @param Google_Service_Analytics_ProfilePermissions - */ - public function setPermissions(Google_Service_Analytics_ProfilePermissions $permissions) - { - $this->permissions = $permissions; - } - /** - * @return Google_Service_Analytics_ProfilePermissions - */ - public function getPermissions() - { - return $this->permissions; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setSiteSearchCategoryParameters($siteSearchCategoryParameters) - { - $this->siteSearchCategoryParameters = $siteSearchCategoryParameters; - } - public function getSiteSearchCategoryParameters() - { - return $this->siteSearchCategoryParameters; - } - public function setSiteSearchQueryParameters($siteSearchQueryParameters) - { - $this->siteSearchQueryParameters = $siteSearchQueryParameters; - } - public function getSiteSearchQueryParameters() - { - return $this->siteSearchQueryParameters; - } - public function setStarred($starred) - { - $this->starred = $starred; - } - public function getStarred() - { - return $this->starred; - } - public function setStripSiteSearchCategoryParameters($stripSiteSearchCategoryParameters) - { - $this->stripSiteSearchCategoryParameters = $stripSiteSearchCategoryParameters; - } - public function getStripSiteSearchCategoryParameters() - { - return $this->stripSiteSearchCategoryParameters; - } - public function setStripSiteSearchQueryParameters($stripSiteSearchQueryParameters) - { - $this->stripSiteSearchQueryParameters = $stripSiteSearchQueryParameters; - } - public function getStripSiteSearchQueryParameters() - { - return $this->stripSiteSearchQueryParameters; - } - public function setTimezone($timezone) - { - $this->timezone = $timezone; - } - public function getTimezone() - { - return $this->timezone; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setUpdated($updated) - { - $this->updated = $updated; - } - public function getUpdated() - { - return $this->updated; - } - public function setWebPropertyId($webPropertyId) - { - $this->webPropertyId = $webPropertyId; - } - public function getWebPropertyId() - { - return $this->webPropertyId; - } - public function setWebsiteUrl($websiteUrl) - { - $this->websiteUrl = $websiteUrl; - } - public function getWebsiteUrl() - { - return $this->websiteUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/ProfileChildLink.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/ProfileChildLink.php deleted file mode 100644 index 61c1f37d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/ProfileChildLink.php +++ /dev/null @@ -1,39 +0,0 @@ -href = $href; - } - public function getHref() - { - return $this->href; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/ProfileFilterLink.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/ProfileFilterLink.php deleted file mode 100644 index 305ab38a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/ProfileFilterLink.php +++ /dev/null @@ -1,89 +0,0 @@ -filterRef = $filterRef; - } - /** - * @return Google_Service_Analytics_FilterRef - */ - public function getFilterRef() - { - return $this->filterRef; - } - 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; - } - /** - * @param Google_Service_Analytics_ProfileRef - */ - public function setProfileRef(Google_Service_Analytics_ProfileRef $profileRef) - { - $this->profileRef = $profileRef; - } - /** - * @return Google_Service_Analytics_ProfileRef - */ - public function getProfileRef() - { - return $this->profileRef; - } - public function setRank($rank) - { - $this->rank = $rank; - } - public function getRank() - { - return $this->rank; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/ProfileFilterLinks.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/ProfileFilterLinks.php deleted file mode 100644 index 34a85828..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/ProfileFilterLinks.php +++ /dev/null @@ -1,101 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Analytics_ProfileFilterLink - */ - public function getItems() - { - return $this->items; - } - public function setItemsPerPage($itemsPerPage) - { - $this->itemsPerPage = $itemsPerPage; - } - public function getItemsPerPage() - { - return $this->itemsPerPage; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextLink($nextLink) - { - $this->nextLink = $nextLink; - } - public function getNextLink() - { - return $this->nextLink; - } - public function setPreviousLink($previousLink) - { - $this->previousLink = $previousLink; - } - public function getPreviousLink() - { - return $this->previousLink; - } - public function setStartIndex($startIndex) - { - $this->startIndex = $startIndex; - } - public function getStartIndex() - { - return $this->startIndex; - } - public function setTotalResults($totalResults) - { - $this->totalResults = $totalResults; - } - public function getTotalResults() - { - return $this->totalResults; - } - public function setUsername($username) - { - $this->username = $username; - } - public function getUsername() - { - return $this->username; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/ProfileParentLink.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/ProfileParentLink.php deleted file mode 100644 index c72bc047..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/ProfileParentLink.php +++ /dev/null @@ -1,39 +0,0 @@ -href = $href; - } - public function getHref() - { - return $this->href; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/ProfilePermissions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/ProfilePermissions.php deleted file mode 100644 index adc8a4bf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/ProfilePermissions.php +++ /dev/null @@ -1,31 +0,0 @@ -effective = $effective; - } - public function getEffective() - { - return $this->effective; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/ProfileRef.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/ProfileRef.php deleted file mode 100644 index e516f3cf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/ProfileRef.php +++ /dev/null @@ -1,84 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setHref($href) - { - $this->href = $href; - } - public function getHref() - { - return $this->href; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setInternalWebPropertyId($internalWebPropertyId) - { - $this->internalWebPropertyId = $internalWebPropertyId; - } - public function getInternalWebPropertyId() - { - return $this->internalWebPropertyId; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setWebPropertyId($webPropertyId) - { - $this->webPropertyId = $webPropertyId; - } - public function getWebPropertyId() - { - return $this->webPropertyId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/ProfileSummary.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/ProfileSummary.php deleted file mode 100644 index 0cbe9955..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/ProfileSummary.php +++ /dev/null @@ -1,66 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setStarred($starred) - { - $this->starred = $starred; - } - public function getStarred() - { - return $this->starred; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Profiles.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Profiles.php deleted file mode 100644 index d7c41cd0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Profiles.php +++ /dev/null @@ -1,101 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Analytics_Profile - */ - public function getItems() - { - return $this->items; - } - public function setItemsPerPage($itemsPerPage) - { - $this->itemsPerPage = $itemsPerPage; - } - public function getItemsPerPage() - { - return $this->itemsPerPage; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextLink($nextLink) - { - $this->nextLink = $nextLink; - } - public function getNextLink() - { - return $this->nextLink; - } - public function setPreviousLink($previousLink) - { - $this->previousLink = $previousLink; - } - public function getPreviousLink() - { - return $this->previousLink; - } - public function setStartIndex($startIndex) - { - $this->startIndex = $startIndex; - } - public function getStartIndex() - { - return $this->startIndex; - } - public function setTotalResults($totalResults) - { - $this->totalResults = $totalResults; - } - public function getTotalResults() - { - return $this->totalResults; - } - public function setUsername($username) - { - $this->username = $username; - } - public function getUsername() - { - return $this->username; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/RealtimeData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/RealtimeData.php deleted file mode 100644 index aec29e84..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/RealtimeData.php +++ /dev/null @@ -1,124 +0,0 @@ -columnHeaders = $columnHeaders; - } - /** - * @return Google_Service_Analytics_RealtimeDataColumnHeaders - */ - public function getColumnHeaders() - { - return $this->columnHeaders; - } - 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; - } - /** - * @param Google_Service_Analytics_RealtimeDataProfileInfo - */ - public function setProfileInfo(Google_Service_Analytics_RealtimeDataProfileInfo $profileInfo) - { - $this->profileInfo = $profileInfo; - } - /** - * @return Google_Service_Analytics_RealtimeDataProfileInfo - */ - public function getProfileInfo() - { - return $this->profileInfo; - } - /** - * @param Google_Service_Analytics_RealtimeDataQuery - */ - public function setQuery(Google_Service_Analytics_RealtimeDataQuery $query) - { - $this->query = $query; - } - /** - * @return Google_Service_Analytics_RealtimeDataQuery - */ - public function getQuery() - { - return $this->query; - } - public function setRows($rows) - { - $this->rows = $rows; - } - public function getRows() - { - return $this->rows; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setTotalResults($totalResults) - { - $this->totalResults = $totalResults; - } - public function getTotalResults() - { - return $this->totalResults; - } - public function setTotalsForAllResults($totalsForAllResults) - { - $this->totalsForAllResults = $totalsForAllResults; - } - public function getTotalsForAllResults() - { - return $this->totalsForAllResults; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/RealtimeDataColumnHeaders.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/RealtimeDataColumnHeaders.php deleted file mode 100644 index 5f826a97..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/RealtimeDataColumnHeaders.php +++ /dev/null @@ -1,48 +0,0 @@ -columnType = $columnType; - } - public function getColumnType() - { - return $this->columnType; - } - public function setDataType($dataType) - { - $this->dataType = $dataType; - } - public function getDataType() - { - return $this->dataType; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/RealtimeDataProfileInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/RealtimeDataProfileInfo.php deleted file mode 100644 index cc55db18..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/RealtimeDataProfileInfo.php +++ /dev/null @@ -1,75 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setInternalWebPropertyId($internalWebPropertyId) - { - $this->internalWebPropertyId = $internalWebPropertyId; - } - public function getInternalWebPropertyId() - { - return $this->internalWebPropertyId; - } - public function setProfileId($profileId) - { - $this->profileId = $profileId; - } - public function getProfileId() - { - return $this->profileId; - } - public function setProfileName($profileName) - { - $this->profileName = $profileName; - } - public function getProfileName() - { - return $this->profileName; - } - public function setTableId($tableId) - { - $this->tableId = $tableId; - } - public function getTableId() - { - return $this->tableId; - } - public function setWebPropertyId($webPropertyId) - { - $this->webPropertyId = $webPropertyId; - } - public function getWebPropertyId() - { - return $this->webPropertyId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/RealtimeDataQuery.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/RealtimeDataQuery.php deleted file mode 100644 index 83901882..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/RealtimeDataQuery.php +++ /dev/null @@ -1,79 +0,0 @@ - "max-results", - ); - public $dimensions; - public $filters; - public $ids; - public $maxResults; - public $metrics; - public $sort; - - public function setDimensions($dimensions) - { - $this->dimensions = $dimensions; - } - public function getDimensions() - { - return $this->dimensions; - } - public function setFilters($filters) - { - $this->filters = $filters; - } - public function getFilters() - { - return $this->filters; - } - public function setIds($ids) - { - $this->ids = $ids; - } - public function getIds() - { - return $this->ids; - } - public function setMaxResults($maxResults) - { - $this->maxResults = $maxResults; - } - public function getMaxResults() - { - return $this->maxResults; - } - public function setMetrics($metrics) - { - $this->metrics = $metrics; - } - public function getMetrics() - { - return $this->metrics; - } - public function setSort($sort) - { - $this->sort = $sort; - } - public function getSort() - { - return $this->sort; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/RemarketingAudience.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/RemarketingAudience.php deleted file mode 100644 index 2015d396..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/RemarketingAudience.php +++ /dev/null @@ -1,169 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - /** - * @param Google_Service_Analytics_RemarketingAudienceAudienceDefinition - */ - public function setAudienceDefinition(Google_Service_Analytics_RemarketingAudienceAudienceDefinition $audienceDefinition) - { - $this->audienceDefinition = $audienceDefinition; - } - /** - * @return Google_Service_Analytics_RemarketingAudienceAudienceDefinition - */ - public function getAudienceDefinition() - { - return $this->audienceDefinition; - } - public function setAudienceType($audienceType) - { - $this->audienceType = $audienceType; - } - public function getAudienceType() - { - return $this->audienceType; - } - public function setCreated($created) - { - $this->created = $created; - } - public function getCreated() - { - return $this->created; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setInternalWebPropertyId($internalWebPropertyId) - { - $this->internalWebPropertyId = $internalWebPropertyId; - } - public function getInternalWebPropertyId() - { - return $this->internalWebPropertyId; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Analytics_LinkedForeignAccount - */ - public function setLinkedAdAccounts($linkedAdAccounts) - { - $this->linkedAdAccounts = $linkedAdAccounts; - } - /** - * @return Google_Service_Analytics_LinkedForeignAccount - */ - public function getLinkedAdAccounts() - { - return $this->linkedAdAccounts; - } - public function setLinkedViews($linkedViews) - { - $this->linkedViews = $linkedViews; - } - public function getLinkedViews() - { - return $this->linkedViews; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Analytics_RemarketingAudienceStateBasedAudienceDefinition - */ - public function setStateBasedAudienceDefinition(Google_Service_Analytics_RemarketingAudienceStateBasedAudienceDefinition $stateBasedAudienceDefinition) - { - $this->stateBasedAudienceDefinition = $stateBasedAudienceDefinition; - } - /** - * @return Google_Service_Analytics_RemarketingAudienceStateBasedAudienceDefinition - */ - public function getStateBasedAudienceDefinition() - { - return $this->stateBasedAudienceDefinition; - } - public function setUpdated($updated) - { - $this->updated = $updated; - } - public function getUpdated() - { - return $this->updated; - } - public function setWebPropertyId($webPropertyId) - { - $this->webPropertyId = $webPropertyId; - } - public function getWebPropertyId() - { - return $this->webPropertyId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/RemarketingAudienceAudienceDefinition.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/RemarketingAudienceAudienceDefinition.php deleted file mode 100644 index 8b8341e4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/RemarketingAudienceAudienceDefinition.php +++ /dev/null @@ -1,37 +0,0 @@ -includeConditions = $includeConditions; - } - /** - * @return Google_Service_Analytics_IncludeConditions - */ - public function getIncludeConditions() - { - return $this->includeConditions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/RemarketingAudienceStateBasedAudienceDefinition.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/RemarketingAudienceStateBasedAudienceDefinition.php deleted file mode 100644 index 67102433..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/RemarketingAudienceStateBasedAudienceDefinition.php +++ /dev/null @@ -1,53 +0,0 @@ -excludeConditions = $excludeConditions; - } - /** - * @return Google_Service_Analytics_RemarketingAudienceStateBasedAudienceDefinitionExcludeConditions - */ - public function getExcludeConditions() - { - return $this->excludeConditions; - } - /** - * @param Google_Service_Analytics_IncludeConditions - */ - public function setIncludeConditions(Google_Service_Analytics_IncludeConditions $includeConditions) - { - $this->includeConditions = $includeConditions; - } - /** - * @return Google_Service_Analytics_IncludeConditions - */ - public function getIncludeConditions() - { - return $this->includeConditions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/RemarketingAudienceStateBasedAudienceDefinitionExcludeConditions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/RemarketingAudienceStateBasedAudienceDefinitionExcludeConditions.php deleted file mode 100644 index f3a0b7bc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/RemarketingAudienceStateBasedAudienceDefinitionExcludeConditions.php +++ /dev/null @@ -1,39 +0,0 @@ -exclusionDuration = $exclusionDuration; - } - public function getExclusionDuration() - { - return $this->exclusionDuration; - } - public function setSegment($segment) - { - $this->segment = $segment; - } - public function getSegment() - { - return $this->segment; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/RemarketingAudiences.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/RemarketingAudiences.php deleted file mode 100644 index 9b8232dc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/RemarketingAudiences.php +++ /dev/null @@ -1,101 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Analytics_RemarketingAudience - */ - public function getItems() - { - return $this->items; - } - public function setItemsPerPage($itemsPerPage) - { - $this->itemsPerPage = $itemsPerPage; - } - public function getItemsPerPage() - { - return $this->itemsPerPage; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextLink($nextLink) - { - $this->nextLink = $nextLink; - } - public function getNextLink() - { - return $this->nextLink; - } - public function setPreviousLink($previousLink) - { - $this->previousLink = $previousLink; - } - public function getPreviousLink() - { - return $this->previousLink; - } - public function setStartIndex($startIndex) - { - $this->startIndex = $startIndex; - } - public function getStartIndex() - { - return $this->startIndex; - } - public function setTotalResults($totalResults) - { - $this->totalResults = $totalResults; - } - public function getTotalResults() - { - return $this->totalResults; - } - public function setUsername($username) - { - $this->username = $username; - } - public function getUsername() - { - return $this->username; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/Data.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/Data.php deleted file mode 100644 index adc3a3e3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/Data.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $analyticsService = new Google_Service_Analytics(...); - * $data = $analyticsService->data; - * - */ -class Google_Service_Analytics_Resource_Data extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/DataGa.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/DataGa.php deleted file mode 100644 index 714e11dc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/DataGa.php +++ /dev/null @@ -1,67 +0,0 @@ - - * $analyticsService = new Google_Service_Analytics(...); - * $ga = $analyticsService->ga; - * - */ -class Google_Service_Analytics_Resource_DataGa extends Google_Service_Resource -{ - /** - * Returns Analytics data for a view (profile). (ga.get) - * - * @param string $ids Unique table ID for retrieving Analytics data. Table ID is - * of the form ga:XXXX, where XXXX is the Analytics view (profile) ID. - * @param string $startDate Start date for fetching Analytics data. Requests can - * specify a start date formatted as YYYY-MM-DD, or as a relative date (e.g., - * today, yesterday, or 7daysAgo). The default value is 7daysAgo. - * @param string $endDate End date for fetching Analytics data. Request can - * should specify an end date formatted as YYYY-MM-DD, or as a relative date - * (e.g., today, yesterday, or 7daysAgo). The default value is yesterday. - * @param string $metrics A comma-separated list of Analytics metrics. E.g., - * 'ga:sessions,ga:pageviews'. At least one metric must be specified. - * @param array $optParams Optional parameters. - * - * @opt_param string dimensions A comma-separated list of Analytics dimensions. - * E.g., 'ga:browser,ga:city'. - * @opt_param string filters A comma-separated list of dimension or metric - * filters to be applied to Analytics data. - * @opt_param bool include-empty-rows The response will include empty rows if - * this parameter is set to true, the default is true - * @opt_param int max-results The maximum number of entries to include in this - * feed. - * @opt_param string output The selected format for the response. Default format - * is JSON. - * @opt_param string samplingLevel The desired sampling level. - * @opt_param string segment An Analytics segment to be applied to data. - * @opt_param string sort A comma-separated list of dimensions or metrics that - * determine the sort order for Analytics data. - * @opt_param int start-index An index of the first entity to retrieve. Use this - * parameter as a pagination mechanism along with the max-results parameter. - * @return Google_Service_Analytics_GaData - */ - public function get($ids, $startDate, $endDate, $metrics, $optParams = array()) - { - $params = array('ids' => $ids, 'start-date' => $startDate, 'end-date' => $endDate, 'metrics' => $metrics); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Analytics_GaData"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/DataMcf.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/DataMcf.php deleted file mode 100644 index 15c62ef8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/DataMcf.php +++ /dev/null @@ -1,63 +0,0 @@ - - * $analyticsService = new Google_Service_Analytics(...); - * $mcf = $analyticsService->mcf; - * - */ -class Google_Service_Analytics_Resource_DataMcf extends Google_Service_Resource -{ - /** - * Returns Analytics Multi-Channel Funnels data for a view (profile). (mcf.get) - * - * @param string $ids Unique table ID for retrieving Analytics data. Table ID is - * of the form ga:XXXX, where XXXX is the Analytics view (profile) ID. - * @param string $startDate Start date for fetching Analytics data. Requests can - * specify a start date formatted as YYYY-MM-DD, or as a relative date (e.g., - * today, yesterday, or 7daysAgo). The default value is 7daysAgo. - * @param string $endDate End date for fetching Analytics data. Requests can - * specify a start date formatted as YYYY-MM-DD, or as a relative date (e.g., - * today, yesterday, or 7daysAgo). The default value is 7daysAgo. - * @param string $metrics A comma-separated list of Multi-Channel Funnels - * metrics. E.g., 'mcf:totalConversions,mcf:totalConversionValue'. At least one - * metric must be specified. - * @param array $optParams Optional parameters. - * - * @opt_param string dimensions A comma-separated list of Multi-Channel Funnels - * dimensions. E.g., 'mcf:source,mcf:medium'. - * @opt_param string filters A comma-separated list of dimension or metric - * filters to be applied to the Analytics data. - * @opt_param int max-results The maximum number of entries to include in this - * feed. - * @opt_param string samplingLevel The desired sampling level. - * @opt_param string sort A comma-separated list of dimensions or metrics that - * determine the sort order for the Analytics data. - * @opt_param int start-index An index of the first entity to retrieve. Use this - * parameter as a pagination mechanism along with the max-results parameter. - * @return Google_Service_Analytics_McfData - */ - public function get($ids, $startDate, $endDate, $metrics, $optParams = array()) - { - $params = array('ids' => $ids, 'start-date' => $startDate, 'end-date' => $endDate, 'metrics' => $metrics); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Analytics_McfData"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/DataRealtime.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/DataRealtime.php deleted file mode 100644 index 8b8e1c0a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/DataRealtime.php +++ /dev/null @@ -1,53 +0,0 @@ - - * $analyticsService = new Google_Service_Analytics(...); - * $realtime = $analyticsService->realtime; - * - */ -class Google_Service_Analytics_Resource_DataRealtime extends Google_Service_Resource -{ - /** - * Returns real time data for a view (profile). (realtime.get) - * - * @param string $ids Unique table ID for retrieving real time data. Table ID is - * of the form ga:XXXX, where XXXX is the Analytics view (profile) ID. - * @param string $metrics A comma-separated list of real time metrics. E.g., - * 'rt:activeUsers'. At least one metric must be specified. - * @param array $optParams Optional parameters. - * - * @opt_param string dimensions A comma-separated list of real time dimensions. - * E.g., 'rt:medium,rt:city'. - * @opt_param string filters A comma-separated list of dimension or metric - * filters to be applied to real time data. - * @opt_param int max-results The maximum number of entries to include in this - * feed. - * @opt_param string sort A comma-separated list of dimensions or metrics that - * determine the sort order for real time data. - * @return Google_Service_Analytics_RealtimeData - */ - public function get($ids, $metrics, $optParams = array()) - { - $params = array('ids' => $ids, 'metrics' => $metrics); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Analytics_RealtimeData"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/Management.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/Management.php deleted file mode 100644 index 06d4e785..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/Management.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $analyticsService = new Google_Service_Analytics(...); - * $management = $analyticsService->management; - * - */ -class Google_Service_Analytics_Resource_Management extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementAccountSummaries.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementAccountSummaries.php deleted file mode 100644 index 00f47f61..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementAccountSummaries.php +++ /dev/null @@ -1,47 +0,0 @@ - - * $analyticsService = new Google_Service_Analytics(...); - * $accountSummaries = $analyticsService->accountSummaries; - * - */ -class Google_Service_Analytics_Resource_ManagementAccountSummaries extends Google_Service_Resource -{ - /** - * Lists account summaries (lightweight tree comprised of - * accounts/properties/profiles) to which the user has access. - * (accountSummaries.listManagementAccountSummaries) - * - * @param array $optParams Optional parameters. - * - * @opt_param int max-results The maximum number of account summaries to include - * in this response, where the largest acceptable value is 1000. - * @opt_param int start-index An index of the first entity to retrieve. Use this - * parameter as a pagination mechanism along with the max-results parameter. - * @return Google_Service_Analytics_AccountSummaries - */ - public function listManagementAccountSummaries($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Analytics_AccountSummaries"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementAccountUserLinks.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementAccountUserLinks.php deleted file mode 100644 index 7c7b98c9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementAccountUserLinks.php +++ /dev/null @@ -1,91 +0,0 @@ - - * $analyticsService = new Google_Service_Analytics(...); - * $accountUserLinks = $analyticsService->accountUserLinks; - * - */ -class Google_Service_Analytics_Resource_ManagementAccountUserLinks extends Google_Service_Resource -{ - /** - * Removes a user from the given account. (accountUserLinks.delete) - * - * @param string $accountId Account ID to delete the user link for. - * @param string $linkId Link ID to delete the user link for. - * @param array $optParams Optional parameters. - */ - public function delete($accountId, $linkId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'linkId' => $linkId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Adds a new user to the given account. (accountUserLinks.insert) - * - * @param string $accountId Account ID to create the user link for. - * @param Google_Service_Analytics_EntityUserLink $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Analytics_EntityUserLink - */ - public function insert($accountId, Google_Service_Analytics_EntityUserLink $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Analytics_EntityUserLink"); - } - /** - * Lists account-user links for a given account. - * (accountUserLinks.listManagementAccountUserLinks) - * - * @param string $accountId Account ID to retrieve the user links for. - * @param array $optParams Optional parameters. - * - * @opt_param int max-results The maximum number of account-user links to - * include in this response. - * @opt_param int start-index An index of the first account-user link to - * retrieve. Use this parameter as a pagination mechanism along with the max- - * results parameter. - * @return Google_Service_Analytics_EntityUserLinks - */ - public function listManagementAccountUserLinks($accountId, $optParams = array()) - { - $params = array('accountId' => $accountId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Analytics_EntityUserLinks"); - } - /** - * Updates permissions for an existing user on the given account. - * (accountUserLinks.update) - * - * @param string $accountId Account ID to update the account-user link for. - * @param string $linkId Link ID to update the account-user link for. - * @param Google_Service_Analytics_EntityUserLink $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Analytics_EntityUserLink - */ - public function update($accountId, $linkId, Google_Service_Analytics_EntityUserLink $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'linkId' => $linkId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Analytics_EntityUserLink"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementAccounts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementAccounts.php deleted file mode 100644 index 88e197c2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementAccounts.php +++ /dev/null @@ -1,47 +0,0 @@ - - * $analyticsService = new Google_Service_Analytics(...); - * $accounts = $analyticsService->accounts; - * - */ -class Google_Service_Analytics_Resource_ManagementAccounts extends Google_Service_Resource -{ - /** - * Lists all accounts to which the user has access. - * (accounts.listManagementAccounts) - * - * @param array $optParams Optional parameters. - * - * @opt_param int max-results The maximum number of accounts to include in this - * response. - * @opt_param int start-index An index of the first account to retrieve. Use - * this parameter as a pagination mechanism along with the max-results - * parameter. - * @return Google_Service_Analytics_Accounts - */ - public function listManagementAccounts($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Analytics_Accounts"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementClientId.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementClientId.php deleted file mode 100644 index b73ff4d1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementClientId.php +++ /dev/null @@ -1,41 +0,0 @@ - - * $analyticsService = new Google_Service_Analytics(...); - * $clientId = $analyticsService->clientId; - * - */ -class Google_Service_Analytics_Resource_ManagementClientId extends Google_Service_Resource -{ - /** - * Hashes the given Client ID. (clientId.hashClientId) - * - * @param Google_Service_Analytics_HashClientIdRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Analytics_HashClientIdResponse - */ - public function hashClientId(Google_Service_Analytics_HashClientIdRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('hashClientId', array($params), "Google_Service_Analytics_HashClientIdResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementCustomDataSources.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementCustomDataSources.php deleted file mode 100644 index e0776328..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementCustomDataSources.php +++ /dev/null @@ -1,50 +0,0 @@ - - * $analyticsService = new Google_Service_Analytics(...); - * $customDataSources = $analyticsService->customDataSources; - * - */ -class Google_Service_Analytics_Resource_ManagementCustomDataSources extends Google_Service_Resource -{ - /** - * List custom data sources to which the user has access. - * (customDataSources.listManagementCustomDataSources) - * - * @param string $accountId Account Id for the custom data sources to retrieve. - * @param string $webPropertyId Web property Id for the custom data sources to - * retrieve. - * @param array $optParams Optional parameters. - * - * @opt_param int max-results The maximum number of custom data sources to - * include in this response. - * @opt_param int start-index A 1-based index of the first custom data source to - * retrieve. Use this parameter as a pagination mechanism along with the max- - * results parameter. - * @return Google_Service_Analytics_CustomDataSources - */ - public function listManagementCustomDataSources($accountId, $webPropertyId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Analytics_CustomDataSources"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementCustomDimensions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementCustomDimensions.php deleted file mode 100644 index 133d3a3c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementCustomDimensions.php +++ /dev/null @@ -1,126 +0,0 @@ - - * $analyticsService = new Google_Service_Analytics(...); - * $customDimensions = $analyticsService->customDimensions; - * - */ -class Google_Service_Analytics_Resource_ManagementCustomDimensions extends Google_Service_Resource -{ - /** - * Get a custom dimension to which the user has access. (customDimensions.get) - * - * @param string $accountId Account ID for the custom dimension to retrieve. - * @param string $webPropertyId Web property ID for the custom dimension to - * retrieve. - * @param string $customDimensionId The ID of the custom dimension to retrieve. - * @param array $optParams Optional parameters. - * @return Google_Service_Analytics_CustomDimension - */ - public function get($accountId, $webPropertyId, $customDimensionId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customDimensionId' => $customDimensionId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Analytics_CustomDimension"); - } - /** - * Create a new custom dimension. (customDimensions.insert) - * - * @param string $accountId Account ID for the custom dimension to create. - * @param string $webPropertyId Web property ID for the custom dimension to - * create. - * @param Google_Service_Analytics_CustomDimension $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Analytics_CustomDimension - */ - public function insert($accountId, $webPropertyId, Google_Service_Analytics_CustomDimension $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Analytics_CustomDimension"); - } - /** - * Lists custom dimensions to which the user has access. - * (customDimensions.listManagementCustomDimensions) - * - * @param string $accountId Account ID for the custom dimensions to retrieve. - * @param string $webPropertyId Web property ID for the custom dimensions to - * retrieve. - * @param array $optParams Optional parameters. - * - * @opt_param int max-results The maximum number of custom dimensions to include - * in this response. - * @opt_param int start-index An index of the first entity to retrieve. Use this - * parameter as a pagination mechanism along with the max-results parameter. - * @return Google_Service_Analytics_CustomDimensions - */ - public function listManagementCustomDimensions($accountId, $webPropertyId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Analytics_CustomDimensions"); - } - /** - * Updates an existing custom dimension. This method supports patch semantics. - * (customDimensions.patch) - * - * @param string $accountId Account ID for the custom dimension to update. - * @param string $webPropertyId Web property ID for the custom dimension to - * update. - * @param string $customDimensionId Custom dimension ID for the custom dimension - * to update. - * @param Google_Service_Analytics_CustomDimension $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool ignoreCustomDataSourceLinks Force the update and ignore any - * warnings related to the custom dimension being linked to a custom data source - * / data set. - * @return Google_Service_Analytics_CustomDimension - */ - public function patch($accountId, $webPropertyId, $customDimensionId, Google_Service_Analytics_CustomDimension $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customDimensionId' => $customDimensionId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Analytics_CustomDimension"); - } - /** - * Updates an existing custom dimension. (customDimensions.update) - * - * @param string $accountId Account ID for the custom dimension to update. - * @param string $webPropertyId Web property ID for the custom dimension to - * update. - * @param string $customDimensionId Custom dimension ID for the custom dimension - * to update. - * @param Google_Service_Analytics_CustomDimension $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool ignoreCustomDataSourceLinks Force the update and ignore any - * warnings related to the custom dimension being linked to a custom data source - * / data set. - * @return Google_Service_Analytics_CustomDimension - */ - public function update($accountId, $webPropertyId, $customDimensionId, Google_Service_Analytics_CustomDimension $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customDimensionId' => $customDimensionId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Analytics_CustomDimension"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementCustomMetrics.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementCustomMetrics.php deleted file mode 100644 index e3f9249d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementCustomMetrics.php +++ /dev/null @@ -1,124 +0,0 @@ - - * $analyticsService = new Google_Service_Analytics(...); - * $customMetrics = $analyticsService->customMetrics; - * - */ -class Google_Service_Analytics_Resource_ManagementCustomMetrics extends Google_Service_Resource -{ - /** - * Get a custom metric to which the user has access. (customMetrics.get) - * - * @param string $accountId Account ID for the custom metric to retrieve. - * @param string $webPropertyId Web property ID for the custom metric to - * retrieve. - * @param string $customMetricId The ID of the custom metric to retrieve. - * @param array $optParams Optional parameters. - * @return Google_Service_Analytics_CustomMetric - */ - public function get($accountId, $webPropertyId, $customMetricId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customMetricId' => $customMetricId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Analytics_CustomMetric"); - } - /** - * Create a new custom metric. (customMetrics.insert) - * - * @param string $accountId Account ID for the custom metric to create. - * @param string $webPropertyId Web property ID for the custom dimension to - * create. - * @param Google_Service_Analytics_CustomMetric $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Analytics_CustomMetric - */ - public function insert($accountId, $webPropertyId, Google_Service_Analytics_CustomMetric $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Analytics_CustomMetric"); - } - /** - * Lists custom metrics to which the user has access. - * (customMetrics.listManagementCustomMetrics) - * - * @param string $accountId Account ID for the custom metrics to retrieve. - * @param string $webPropertyId Web property ID for the custom metrics to - * retrieve. - * @param array $optParams Optional parameters. - * - * @opt_param int max-results The maximum number of custom metrics to include in - * this response. - * @opt_param int start-index An index of the first entity to retrieve. Use this - * parameter as a pagination mechanism along with the max-results parameter. - * @return Google_Service_Analytics_CustomMetrics - */ - public function listManagementCustomMetrics($accountId, $webPropertyId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Analytics_CustomMetrics"); - } - /** - * Updates an existing custom metric. This method supports patch semantics. - * (customMetrics.patch) - * - * @param string $accountId Account ID for the custom metric to update. - * @param string $webPropertyId Web property ID for the custom metric to update. - * @param string $customMetricId Custom metric ID for the custom metric to - * update. - * @param Google_Service_Analytics_CustomMetric $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool ignoreCustomDataSourceLinks Force the update and ignore any - * warnings related to the custom metric being linked to a custom data source / - * data set. - * @return Google_Service_Analytics_CustomMetric - */ - public function patch($accountId, $webPropertyId, $customMetricId, Google_Service_Analytics_CustomMetric $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customMetricId' => $customMetricId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Analytics_CustomMetric"); - } - /** - * Updates an existing custom metric. (customMetrics.update) - * - * @param string $accountId Account ID for the custom metric to update. - * @param string $webPropertyId Web property ID for the custom metric to update. - * @param string $customMetricId Custom metric ID for the custom metric to - * update. - * @param Google_Service_Analytics_CustomMetric $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool ignoreCustomDataSourceLinks Force the update and ignore any - * warnings related to the custom metric being linked to a custom data source / - * data set. - * @return Google_Service_Analytics_CustomMetric - */ - public function update($accountId, $webPropertyId, $customMetricId, Google_Service_Analytics_CustomMetric $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customMetricId' => $customMetricId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Analytics_CustomMetric"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementExperiments.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementExperiments.php deleted file mode 100644 index e0e34522..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementExperiments.php +++ /dev/null @@ -1,132 +0,0 @@ - - * $analyticsService = new Google_Service_Analytics(...); - * $experiments = $analyticsService->experiments; - * - */ -class Google_Service_Analytics_Resource_ManagementExperiments extends Google_Service_Resource -{ - /** - * Delete an experiment. (experiments.delete) - * - * @param string $accountId Account ID to which the experiment belongs - * @param string $webPropertyId Web property ID to which the experiment belongs - * @param string $profileId View (Profile) ID to which the experiment belongs - * @param string $experimentId ID of the experiment to delete - * @param array $optParams Optional parameters. - */ - public function delete($accountId, $webPropertyId, $profileId, $experimentId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'experimentId' => $experimentId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Returns an experiment to which the user has access. (experiments.get) - * - * @param string $accountId Account ID to retrieve the experiment for. - * @param string $webPropertyId Web property ID to retrieve the experiment for. - * @param string $profileId View (Profile) ID to retrieve the experiment for. - * @param string $experimentId Experiment ID to retrieve the experiment for. - * @param array $optParams Optional parameters. - * @return Google_Service_Analytics_Experiment - */ - public function get($accountId, $webPropertyId, $profileId, $experimentId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'experimentId' => $experimentId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Analytics_Experiment"); - } - /** - * Create a new experiment. (experiments.insert) - * - * @param string $accountId Account ID to create the experiment for. - * @param string $webPropertyId Web property ID to create the experiment for. - * @param string $profileId View (Profile) ID to create the experiment for. - * @param Google_Service_Analytics_Experiment $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Analytics_Experiment - */ - public function insert($accountId, $webPropertyId, $profileId, Google_Service_Analytics_Experiment $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Analytics_Experiment"); - } - /** - * Lists experiments to which the user has access. - * (experiments.listManagementExperiments) - * - * @param string $accountId Account ID to retrieve experiments for. - * @param string $webPropertyId Web property ID to retrieve experiments for. - * @param string $profileId View (Profile) ID to retrieve experiments for. - * @param array $optParams Optional parameters. - * - * @opt_param int max-results The maximum number of experiments to include in - * this response. - * @opt_param int start-index An index of the first experiment to retrieve. Use - * this parameter as a pagination mechanism along with the max-results - * parameter. - * @return Google_Service_Analytics_Experiments - */ - public function listManagementExperiments($accountId, $webPropertyId, $profileId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Analytics_Experiments"); - } - /** - * Update an existing experiment. This method supports patch semantics. - * (experiments.patch) - * - * @param string $accountId Account ID of the experiment to update. - * @param string $webPropertyId Web property ID of the experiment to update. - * @param string $profileId View (Profile) ID of the experiment to update. - * @param string $experimentId Experiment ID of the experiment to update. - * @param Google_Service_Analytics_Experiment $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Analytics_Experiment - */ - public function patch($accountId, $webPropertyId, $profileId, $experimentId, Google_Service_Analytics_Experiment $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'experimentId' => $experimentId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Analytics_Experiment"); - } - /** - * Update an existing experiment. (experiments.update) - * - * @param string $accountId Account ID of the experiment to update. - * @param string $webPropertyId Web property ID of the experiment to update. - * @param string $profileId View (Profile) ID of the experiment to update. - * @param string $experimentId Experiment ID of the experiment to update. - * @param Google_Service_Analytics_Experiment $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Analytics_Experiment - */ - public function update($accountId, $webPropertyId, $profileId, $experimentId, Google_Service_Analytics_Experiment $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'experimentId' => $experimentId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Analytics_Experiment"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementFilters.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementFilters.php deleted file mode 100644 index 703b99c3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementFilters.php +++ /dev/null @@ -1,119 +0,0 @@ - - * $analyticsService = new Google_Service_Analytics(...); - * $filters = $analyticsService->filters; - * - */ -class Google_Service_Analytics_Resource_ManagementFilters extends Google_Service_Resource -{ - /** - * Delete a filter. (filters.delete) - * - * @param string $accountId Account ID to delete the filter for. - * @param string $filterId ID of the filter to be deleted. - * @param array $optParams Optional parameters. - * @return Google_Service_Analytics_Filter - */ - public function delete($accountId, $filterId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'filterId' => $filterId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Analytics_Filter"); - } - /** - * Returns filters to which the user has access. (filters.get) - * - * @param string $accountId Account ID to retrieve filters for. - * @param string $filterId Filter ID to retrieve filters for. - * @param array $optParams Optional parameters. - * @return Google_Service_Analytics_Filter - */ - public function get($accountId, $filterId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'filterId' => $filterId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Analytics_Filter"); - } - /** - * Create a new filter. (filters.insert) - * - * @param string $accountId Account ID to create filter for. - * @param Google_Service_Analytics_Filter $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Analytics_Filter - */ - public function insert($accountId, Google_Service_Analytics_Filter $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Analytics_Filter"); - } - /** - * Lists all filters for an account (filters.listManagementFilters) - * - * @param string $accountId Account ID to retrieve filters for. - * @param array $optParams Optional parameters. - * - * @opt_param int max-results The maximum number of filters to include in this - * response. - * @opt_param int start-index An index of the first entity to retrieve. Use this - * parameter as a pagination mechanism along with the max-results parameter. - * @return Google_Service_Analytics_Filters - */ - public function listManagementFilters($accountId, $optParams = array()) - { - $params = array('accountId' => $accountId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Analytics_Filters"); - } - /** - * Updates an existing filter. This method supports patch semantics. - * (filters.patch) - * - * @param string $accountId Account ID to which the filter belongs. - * @param string $filterId ID of the filter to be updated. - * @param Google_Service_Analytics_Filter $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Analytics_Filter - */ - public function patch($accountId, $filterId, Google_Service_Analytics_Filter $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'filterId' => $filterId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Analytics_Filter"); - } - /** - * Updates an existing filter. (filters.update) - * - * @param string $accountId Account ID to which the filter belongs. - * @param string $filterId ID of the filter to be updated. - * @param Google_Service_Analytics_Filter $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Analytics_Filter - */ - public function update($accountId, $filterId, Google_Service_Analytics_Filter $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'filterId' => $filterId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Analytics_Filter"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementGoals.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementGoals.php deleted file mode 100644 index 79ae4316..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementGoals.php +++ /dev/null @@ -1,120 +0,0 @@ - - * $analyticsService = new Google_Service_Analytics(...); - * $goals = $analyticsService->goals; - * - */ -class Google_Service_Analytics_Resource_ManagementGoals extends Google_Service_Resource -{ - /** - * Gets a goal to which the user has access. (goals.get) - * - * @param string $accountId Account ID to retrieve the goal for. - * @param string $webPropertyId Web property ID to retrieve the goal for. - * @param string $profileId View (Profile) ID to retrieve the goal for. - * @param string $goalId Goal ID to retrieve the goal for. - * @param array $optParams Optional parameters. - * @return Google_Service_Analytics_Goal - */ - public function get($accountId, $webPropertyId, $profileId, $goalId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'goalId' => $goalId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Analytics_Goal"); - } - /** - * Create a new goal. (goals.insert) - * - * @param string $accountId Account ID to create the goal for. - * @param string $webPropertyId Web property ID to create the goal for. - * @param string $profileId View (Profile) ID to create the goal for. - * @param Google_Service_Analytics_Goal $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Analytics_Goal - */ - public function insert($accountId, $webPropertyId, $profileId, Google_Service_Analytics_Goal $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Analytics_Goal"); - } - /** - * Lists goals to which the user has access. (goals.listManagementGoals) - * - * @param string $accountId Account ID to retrieve goals for. Can either be a - * specific account ID or '~all', which refers to all the accounts that user has - * access to. - * @param string $webPropertyId Web property ID to retrieve goals for. Can - * either be a specific web property ID or '~all', which refers to all the web - * properties that user has access to. - * @param string $profileId View (Profile) ID to retrieve goals for. Can either - * be a specific view (profile) ID or '~all', which refers to all the views - * (profiles) that user has access to. - * @param array $optParams Optional parameters. - * - * @opt_param int max-results The maximum number of goals to include in this - * response. - * @opt_param int start-index An index of the first goal to retrieve. Use this - * parameter as a pagination mechanism along with the max-results parameter. - * @return Google_Service_Analytics_Goals - */ - public function listManagementGoals($accountId, $webPropertyId, $profileId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Analytics_Goals"); - } - /** - * Updates an existing goal. This method supports patch semantics. (goals.patch) - * - * @param string $accountId Account ID to update the goal. - * @param string $webPropertyId Web property ID to update the goal. - * @param string $profileId View (Profile) ID to update the goal. - * @param string $goalId Index of the goal to be updated. - * @param Google_Service_Analytics_Goal $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Analytics_Goal - */ - public function patch($accountId, $webPropertyId, $profileId, $goalId, Google_Service_Analytics_Goal $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'goalId' => $goalId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Analytics_Goal"); - } - /** - * Updates an existing goal. (goals.update) - * - * @param string $accountId Account ID to update the goal. - * @param string $webPropertyId Web property ID to update the goal. - * @param string $profileId View (Profile) ID to update the goal. - * @param string $goalId Index of the goal to be updated. - * @param Google_Service_Analytics_Goal $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Analytics_Goal - */ - public function update($accountId, $webPropertyId, $profileId, $goalId, Google_Service_Analytics_Goal $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'goalId' => $goalId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Analytics_Goal"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementProfileFilterLinks.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementProfileFilterLinks.php deleted file mode 100644 index c2cde6af..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementProfileFilterLinks.php +++ /dev/null @@ -1,140 +0,0 @@ - - * $analyticsService = new Google_Service_Analytics(...); - * $profileFilterLinks = $analyticsService->profileFilterLinks; - * - */ -class Google_Service_Analytics_Resource_ManagementProfileFilterLinks extends Google_Service_Resource -{ - /** - * Delete a profile filter link. (profileFilterLinks.delete) - * - * @param string $accountId Account ID to which the profile filter link belongs. - * @param string $webPropertyId Web property Id to which the profile filter link - * belongs. - * @param string $profileId Profile ID to which the filter link belongs. - * @param string $linkId ID of the profile filter link to delete. - * @param array $optParams Optional parameters. - */ - public function delete($accountId, $webPropertyId, $profileId, $linkId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'linkId' => $linkId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Returns a single profile filter link. (profileFilterLinks.get) - * - * @param string $accountId Account ID to retrieve profile filter link for. - * @param string $webPropertyId Web property Id to retrieve profile filter link - * for. - * @param string $profileId Profile ID to retrieve filter link for. - * @param string $linkId ID of the profile filter link. - * @param array $optParams Optional parameters. - * @return Google_Service_Analytics_ProfileFilterLink - */ - public function get($accountId, $webPropertyId, $profileId, $linkId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'linkId' => $linkId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Analytics_ProfileFilterLink"); - } - /** - * Create a new profile filter link. (profileFilterLinks.insert) - * - * @param string $accountId Account ID to create profile filter link for. - * @param string $webPropertyId Web property Id to create profile filter link - * for. - * @param string $profileId Profile ID to create filter link for. - * @param Google_Service_Analytics_ProfileFilterLink $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Analytics_ProfileFilterLink - */ - public function insert($accountId, $webPropertyId, $profileId, Google_Service_Analytics_ProfileFilterLink $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Analytics_ProfileFilterLink"); - } - /** - * Lists all profile filter links for a profile. - * (profileFilterLinks.listManagementProfileFilterLinks) - * - * @param string $accountId Account ID to retrieve profile filter links for. - * @param string $webPropertyId Web property Id for profile filter links for. - * Can either be a specific web property ID or '~all', which refers to all the - * web properties that user has access to. - * @param string $profileId Profile ID to retrieve filter links for. Can either - * be a specific profile ID or '~all', which refers to all the profiles that - * user has access to. - * @param array $optParams Optional parameters. - * - * @opt_param int max-results The maximum number of profile filter links to - * include in this response. - * @opt_param int start-index An index of the first entity to retrieve. Use this - * parameter as a pagination mechanism along with the max-results parameter. - * @return Google_Service_Analytics_ProfileFilterLinks - */ - public function listManagementProfileFilterLinks($accountId, $webPropertyId, $profileId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Analytics_ProfileFilterLinks"); - } - /** - * Update an existing profile filter link. This method supports patch semantics. - * (profileFilterLinks.patch) - * - * @param string $accountId Account ID to which profile filter link belongs. - * @param string $webPropertyId Web property Id to which profile filter link - * belongs - * @param string $profileId Profile ID to which filter link belongs - * @param string $linkId ID of the profile filter link to be updated. - * @param Google_Service_Analytics_ProfileFilterLink $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Analytics_ProfileFilterLink - */ - public function patch($accountId, $webPropertyId, $profileId, $linkId, Google_Service_Analytics_ProfileFilterLink $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'linkId' => $linkId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Analytics_ProfileFilterLink"); - } - /** - * Update an existing profile filter link. (profileFilterLinks.update) - * - * @param string $accountId Account ID to which profile filter link belongs. - * @param string $webPropertyId Web property Id to which profile filter link - * belongs - * @param string $profileId Profile ID to which filter link belongs - * @param string $linkId ID of the profile filter link to be updated. - * @param Google_Service_Analytics_ProfileFilterLink $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Analytics_ProfileFilterLink - */ - public function update($accountId, $webPropertyId, $profileId, $linkId, Google_Service_Analytics_ProfileFilterLink $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'linkId' => $linkId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Analytics_ProfileFilterLink"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementProfileUserLinks.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementProfileUserLinks.php deleted file mode 100644 index baea9c4e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementProfileUserLinks.php +++ /dev/null @@ -1,104 +0,0 @@ - - * $analyticsService = new Google_Service_Analytics(...); - * $profileUserLinks = $analyticsService->profileUserLinks; - * - */ -class Google_Service_Analytics_Resource_ManagementProfileUserLinks extends Google_Service_Resource -{ - /** - * Removes a user from the given view (profile). (profileUserLinks.delete) - * - * @param string $accountId Account ID to delete the user link for. - * @param string $webPropertyId Web Property ID to delete the user link for. - * @param string $profileId View (Profile) ID to delete the user link for. - * @param string $linkId Link ID to delete the user link for. - * @param array $optParams Optional parameters. - */ - public function delete($accountId, $webPropertyId, $profileId, $linkId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'linkId' => $linkId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Adds a new user to the given view (profile). (profileUserLinks.insert) - * - * @param string $accountId Account ID to create the user link for. - * @param string $webPropertyId Web Property ID to create the user link for. - * @param string $profileId View (Profile) ID to create the user link for. - * @param Google_Service_Analytics_EntityUserLink $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Analytics_EntityUserLink - */ - public function insert($accountId, $webPropertyId, $profileId, Google_Service_Analytics_EntityUserLink $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Analytics_EntityUserLink"); - } - /** - * Lists profile-user links for a given view (profile). - * (profileUserLinks.listManagementProfileUserLinks) - * - * @param string $accountId Account ID which the given view (profile) belongs - * to. - * @param string $webPropertyId Web Property ID which the given view (profile) - * belongs to. Can either be a specific web property ID or '~all', which refers - * to all the web properties that user has access to. - * @param string $profileId View (Profile) ID to retrieve the profile-user links - * for. Can either be a specific profile ID or '~all', which refers to all the - * profiles that user has access to. - * @param array $optParams Optional parameters. - * - * @opt_param int max-results The maximum number of profile-user links to - * include in this response. - * @opt_param int start-index An index of the first profile-user link to - * retrieve. Use this parameter as a pagination mechanism along with the max- - * results parameter. - * @return Google_Service_Analytics_EntityUserLinks - */ - public function listManagementProfileUserLinks($accountId, $webPropertyId, $profileId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Analytics_EntityUserLinks"); - } - /** - * Updates permissions for an existing user on the given view (profile). - * (profileUserLinks.update) - * - * @param string $accountId Account ID to update the user link for. - * @param string $webPropertyId Web Property ID to update the user link for. - * @param string $profileId View (Profile ID) to update the user link for. - * @param string $linkId Link ID to update the user link for. - * @param Google_Service_Analytics_EntityUserLink $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Analytics_EntityUserLink - */ - public function update($accountId, $webPropertyId, $profileId, $linkId, Google_Service_Analytics_EntityUserLink $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'linkId' => $linkId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Analytics_EntityUserLink"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementProfiles.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementProfiles.php deleted file mode 100644 index e6d953e0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementProfiles.php +++ /dev/null @@ -1,135 +0,0 @@ - - * $analyticsService = new Google_Service_Analytics(...); - * $profiles = $analyticsService->profiles; - * - */ -class Google_Service_Analytics_Resource_ManagementProfiles extends Google_Service_Resource -{ - /** - * Deletes a view (profile). (profiles.delete) - * - * @param string $accountId Account ID to delete the view (profile) for. - * @param string $webPropertyId Web property ID to delete the view (profile) - * for. - * @param string $profileId ID of the view (profile) to be deleted. - * @param array $optParams Optional parameters. - */ - public function delete($accountId, $webPropertyId, $profileId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Gets a view (profile) to which the user has access. (profiles.get) - * - * @param string $accountId Account ID to retrieve the view (profile) for. - * @param string $webPropertyId Web property ID to retrieve the view (profile) - * for. - * @param string $profileId View (Profile) ID to retrieve the view (profile) - * for. - * @param array $optParams Optional parameters. - * @return Google_Service_Analytics_Profile - */ - public function get($accountId, $webPropertyId, $profileId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Analytics_Profile"); - } - /** - * Create a new view (profile). (profiles.insert) - * - * @param string $accountId Account ID to create the view (profile) for. - * @param string $webPropertyId Web property ID to create the view (profile) - * for. - * @param Google_Service_Analytics_Profile $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Analytics_Profile - */ - public function insert($accountId, $webPropertyId, Google_Service_Analytics_Profile $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Analytics_Profile"); - } - /** - * Lists views (profiles) to which the user has access. - * (profiles.listManagementProfiles) - * - * @param string $accountId Account ID for the view (profiles) to retrieve. Can - * either be a specific account ID or '~all', which refers to all the accounts - * to which the user has access. - * @param string $webPropertyId Web property ID for the views (profiles) to - * retrieve. Can either be a specific web property ID or '~all', which refers to - * all the web properties to which the user has access. - * @param array $optParams Optional parameters. - * - * @opt_param int max-results The maximum number of views (profiles) to include - * in this response. - * @opt_param int start-index An index of the first entity to retrieve. Use this - * parameter as a pagination mechanism along with the max-results parameter. - * @return Google_Service_Analytics_Profiles - */ - public function listManagementProfiles($accountId, $webPropertyId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Analytics_Profiles"); - } - /** - * Updates an existing view (profile). This method supports patch semantics. - * (profiles.patch) - * - * @param string $accountId Account ID to which the view (profile) belongs - * @param string $webPropertyId Web property ID to which the view (profile) - * belongs - * @param string $profileId ID of the view (profile) to be updated. - * @param Google_Service_Analytics_Profile $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Analytics_Profile - */ - public function patch($accountId, $webPropertyId, $profileId, Google_Service_Analytics_Profile $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Analytics_Profile"); - } - /** - * Updates an existing view (profile). (profiles.update) - * - * @param string $accountId Account ID to which the view (profile) belongs - * @param string $webPropertyId Web property ID to which the view (profile) - * belongs - * @param string $profileId ID of the view (profile) to be updated. - * @param Google_Service_Analytics_Profile $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Analytics_Profile - */ - public function update($accountId, $webPropertyId, $profileId, Google_Service_Analytics_Profile $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Analytics_Profile"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementRemarketingAudience.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementRemarketingAudience.php deleted file mode 100644 index c1fa5925..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementRemarketingAudience.php +++ /dev/null @@ -1,143 +0,0 @@ - - * $analyticsService = new Google_Service_Analytics(...); - * $remarketingAudience = $analyticsService->remarketingAudience; - * - */ -class Google_Service_Analytics_Resource_ManagementRemarketingAudience extends Google_Service_Resource -{ - /** - * Delete a remarketing audience. (remarketingAudience.delete) - * - * @param string $accountId Account ID to which the remarketing audience - * belongs. - * @param string $webPropertyId Web property ID to which the remarketing - * audience belongs. - * @param string $remarketingAudienceId The ID of the remarketing audience to - * delete. - * @param array $optParams Optional parameters. - */ - public function delete($accountId, $webPropertyId, $remarketingAudienceId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'remarketingAudienceId' => $remarketingAudienceId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Gets a remarketing audience to which the user has access. - * (remarketingAudience.get) - * - * @param string $accountId The account ID of the remarketing audience to - * retrieve. - * @param string $webPropertyId The web property ID of the remarketing audience - * to retrieve. - * @param string $remarketingAudienceId The ID of the remarketing audience to - * retrieve. - * @param array $optParams Optional parameters. - * @return Google_Service_Analytics_RemarketingAudience - */ - public function get($accountId, $webPropertyId, $remarketingAudienceId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'remarketingAudienceId' => $remarketingAudienceId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Analytics_RemarketingAudience"); - } - /** - * Creates a new remarketing audience. (remarketingAudience.insert) - * - * @param string $accountId The account ID for which to create the remarketing - * audience. - * @param string $webPropertyId Web property ID for which to create the - * remarketing audience. - * @param Google_Service_Analytics_RemarketingAudience $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Analytics_RemarketingAudience - */ - public function insert($accountId, $webPropertyId, Google_Service_Analytics_RemarketingAudience $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Analytics_RemarketingAudience"); - } - /** - * Lists remarketing audiences to which the user has access. - * (remarketingAudience.listManagementRemarketingAudience) - * - * @param string $accountId The account ID of the remarketing audiences to - * retrieve. - * @param string $webPropertyId The web property ID of the remarketing audiences - * to retrieve. - * @param array $optParams Optional parameters. - * - * @opt_param int max-results The maximum number of remarketing audiences to - * include in this response. - * @opt_param int start-index An index of the first entity to retrieve. Use this - * parameter as a pagination mechanism along with the max-results parameter. - * @opt_param string type - * @return Google_Service_Analytics_RemarketingAudiences - */ - public function listManagementRemarketingAudience($accountId, $webPropertyId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Analytics_RemarketingAudiences"); - } - /** - * Updates an existing remarketing audience. This method supports patch - * semantics. (remarketingAudience.patch) - * - * @param string $accountId The account ID of the remarketing audience to - * update. - * @param string $webPropertyId The web property ID of the remarketing audience - * to update. - * @param string $remarketingAudienceId The ID of the remarketing audience to - * update. - * @param Google_Service_Analytics_RemarketingAudience $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Analytics_RemarketingAudience - */ - public function patch($accountId, $webPropertyId, $remarketingAudienceId, Google_Service_Analytics_RemarketingAudience $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'remarketingAudienceId' => $remarketingAudienceId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Analytics_RemarketingAudience"); - } - /** - * Updates an existing remarketing audience. (remarketingAudience.update) - * - * @param string $accountId The account ID of the remarketing audience to - * update. - * @param string $webPropertyId The web property ID of the remarketing audience - * to update. - * @param string $remarketingAudienceId The ID of the remarketing audience to - * update. - * @param Google_Service_Analytics_RemarketingAudience $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Analytics_RemarketingAudience - */ - public function update($accountId, $webPropertyId, $remarketingAudienceId, Google_Service_Analytics_RemarketingAudience $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'remarketingAudienceId' => $remarketingAudienceId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Analytics_RemarketingAudience"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementSegments.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementSegments.php deleted file mode 100644 index 22ecaec4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementSegments.php +++ /dev/null @@ -1,47 +0,0 @@ - - * $analyticsService = new Google_Service_Analytics(...); - * $segments = $analyticsService->segments; - * - */ -class Google_Service_Analytics_Resource_ManagementSegments extends Google_Service_Resource -{ - /** - * Lists segments to which the user has access. - * (segments.listManagementSegments) - * - * @param array $optParams Optional parameters. - * - * @opt_param int max-results The maximum number of segments to include in this - * response. - * @opt_param int start-index An index of the first segment to retrieve. Use - * this parameter as a pagination mechanism along with the max-results - * parameter. - * @return Google_Service_Analytics_Segments - */ - public function listManagementSegments($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Analytics_Segments"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementUnsampledReports.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementUnsampledReports.php deleted file mode 100644 index e7c52204..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementUnsampledReports.php +++ /dev/null @@ -1,105 +0,0 @@ - - * $analyticsService = new Google_Service_Analytics(...); - * $unsampledReports = $analyticsService->unsampledReports; - * - */ -class Google_Service_Analytics_Resource_ManagementUnsampledReports extends Google_Service_Resource -{ - /** - * Deletes an unsampled report. (unsampledReports.delete) - * - * @param string $accountId Account ID to delete the unsampled report for. - * @param string $webPropertyId Web property ID to delete the unsampled reports - * for. - * @param string $profileId View (Profile) ID to delete the unsampled report - * for. - * @param string $unsampledReportId ID of the unsampled report to be deleted. - * @param array $optParams Optional parameters. - */ - public function delete($accountId, $webPropertyId, $profileId, $unsampledReportId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'unsampledReportId' => $unsampledReportId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Returns a single unsampled report. (unsampledReports.get) - * - * @param string $accountId Account ID to retrieve unsampled report for. - * @param string $webPropertyId Web property ID to retrieve unsampled reports - * for. - * @param string $profileId View (Profile) ID to retrieve unsampled report for. - * @param string $unsampledReportId ID of the unsampled report to retrieve. - * @param array $optParams Optional parameters. - * @return Google_Service_Analytics_UnsampledReport - */ - public function get($accountId, $webPropertyId, $profileId, $unsampledReportId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'unsampledReportId' => $unsampledReportId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Analytics_UnsampledReport"); - } - /** - * Create a new unsampled report. (unsampledReports.insert) - * - * @param string $accountId Account ID to create the unsampled report for. - * @param string $webPropertyId Web property ID to create the unsampled report - * for. - * @param string $profileId View (Profile) ID to create the unsampled report - * for. - * @param Google_Service_Analytics_UnsampledReport $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Analytics_UnsampledReport - */ - public function insert($accountId, $webPropertyId, $profileId, Google_Service_Analytics_UnsampledReport $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Analytics_UnsampledReport"); - } - /** - * Lists unsampled reports to which the user has access. - * (unsampledReports.listManagementUnsampledReports) - * - * @param string $accountId Account ID to retrieve unsampled reports for. Must - * be a specific account ID, ~all is not supported. - * @param string $webPropertyId Web property ID to retrieve unsampled reports - * for. Must be a specific web property ID, ~all is not supported. - * @param string $profileId View (Profile) ID to retrieve unsampled reports for. - * Must be a specific view (profile) ID, ~all is not supported. - * @param array $optParams Optional parameters. - * - * @opt_param int max-results The maximum number of unsampled reports to include - * in this response. - * @opt_param int start-index An index of the first unsampled report to - * retrieve. Use this parameter as a pagination mechanism along with the max- - * results parameter. - * @return Google_Service_Analytics_UnsampledReports - */ - public function listManagementUnsampledReports($accountId, $webPropertyId, $profileId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Analytics_UnsampledReports"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementUploads.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementUploads.php deleted file mode 100644 index 6dd5e67f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementUploads.php +++ /dev/null @@ -1,100 +0,0 @@ - - * $analyticsService = new Google_Service_Analytics(...); - * $uploads = $analyticsService->uploads; - * - */ -class Google_Service_Analytics_Resource_ManagementUploads extends Google_Service_Resource -{ - /** - * Delete data associated with a previous upload. (uploads.deleteUploadData) - * - * @param string $accountId Account Id for the uploads to be deleted. - * @param string $webPropertyId Web property Id for the uploads to be deleted. - * @param string $customDataSourceId Custom data source Id for the uploads to be - * deleted. - * @param Google_Service_Analytics_AnalyticsDataimportDeleteUploadDataRequest $postBody - * @param array $optParams Optional parameters. - */ - public function deleteUploadData($accountId, $webPropertyId, $customDataSourceId, Google_Service_Analytics_AnalyticsDataimportDeleteUploadDataRequest $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customDataSourceId' => $customDataSourceId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('deleteUploadData', array($params)); - } - /** - * List uploads to which the user has access. (uploads.get) - * - * @param string $accountId Account Id for the upload to retrieve. - * @param string $webPropertyId Web property Id for the upload to retrieve. - * @param string $customDataSourceId Custom data source Id for upload to - * retrieve. - * @param string $uploadId Upload Id to retrieve. - * @param array $optParams Optional parameters. - * @return Google_Service_Analytics_Upload - */ - public function get($accountId, $webPropertyId, $customDataSourceId, $uploadId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customDataSourceId' => $customDataSourceId, 'uploadId' => $uploadId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Analytics_Upload"); - } - /** - * List uploads to which the user has access. (uploads.listManagementUploads) - * - * @param string $accountId Account Id for the uploads to retrieve. - * @param string $webPropertyId Web property Id for the uploads to retrieve. - * @param string $customDataSourceId Custom data source Id for uploads to - * retrieve. - * @param array $optParams Optional parameters. - * - * @opt_param int max-results The maximum number of uploads to include in this - * response. - * @opt_param int start-index A 1-based index of the first upload to retrieve. - * Use this parameter as a pagination mechanism along with the max-results - * parameter. - * @return Google_Service_Analytics_Uploads - */ - public function listManagementUploads($accountId, $webPropertyId, $customDataSourceId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customDataSourceId' => $customDataSourceId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Analytics_Uploads"); - } - /** - * Upload data for a custom data source. (uploads.uploadData) - * - * @param string $accountId Account Id associated with the upload. - * @param string $webPropertyId Web property UA-string associated with the - * upload. - * @param string $customDataSourceId Custom data source Id to which the data - * being uploaded belongs. - * @param array $optParams Optional parameters. - * @return Google_Service_Analytics_Upload - */ - public function uploadData($accountId, $webPropertyId, $customDataSourceId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customDataSourceId' => $customDataSourceId); - $params = array_merge($params, $optParams); - return $this->call('uploadData', array($params), "Google_Service_Analytics_Upload"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementWebPropertyAdWordsLinks.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementWebPropertyAdWordsLinks.php deleted file mode 100644 index 55ee1b1d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementWebPropertyAdWordsLinks.php +++ /dev/null @@ -1,139 +0,0 @@ - - * $analyticsService = new Google_Service_Analytics(...); - * $webPropertyAdWordsLinks = $analyticsService->webPropertyAdWordsLinks; - * - */ -class Google_Service_Analytics_Resource_ManagementWebPropertyAdWordsLinks extends Google_Service_Resource -{ - /** - * Deletes a web property-Google Ads link. (webPropertyAdWordsLinks.delete) - * - * @param string $accountId ID of the account which the given web property - * belongs to. - * @param string $webPropertyId Web property ID to delete the Google Ads link - * for. - * @param string $webPropertyAdWordsLinkId Web property Google Ads link ID. - * @param array $optParams Optional parameters. - */ - public function delete($accountId, $webPropertyId, $webPropertyAdWordsLinkId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'webPropertyAdWordsLinkId' => $webPropertyAdWordsLinkId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Returns a web property-Google Ads link to which the user has access. - * (webPropertyAdWordsLinks.get) - * - * @param string $accountId ID of the account which the given web property - * belongs to. - * @param string $webPropertyId Web property ID to retrieve the Google Ads link - * for. - * @param string $webPropertyAdWordsLinkId Web property-Google Ads link ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Analytics_EntityAdWordsLink - */ - public function get($accountId, $webPropertyId, $webPropertyAdWordsLinkId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'webPropertyAdWordsLinkId' => $webPropertyAdWordsLinkId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Analytics_EntityAdWordsLink"); - } - /** - * Creates a webProperty-Google Ads link. (webPropertyAdWordsLinks.insert) - * - * @param string $accountId ID of the Google Analytics account to create the - * link for. - * @param string $webPropertyId Web property ID to create the link for. - * @param Google_Service_Analytics_EntityAdWordsLink $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Analytics_EntityAdWordsLink - */ - public function insert($accountId, $webPropertyId, Google_Service_Analytics_EntityAdWordsLink $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Analytics_EntityAdWordsLink"); - } - /** - * Lists webProperty-Google Ads links for a given web property. - * (webPropertyAdWordsLinks.listManagementWebPropertyAdWordsLinks) - * - * @param string $accountId ID of the account which the given web property - * belongs to. - * @param string $webPropertyId Web property ID to retrieve the Google Ads links - * for. - * @param array $optParams Optional parameters. - * - * @opt_param int max-results The maximum number of webProperty-Google Ads links - * to include in this response. - * @opt_param int start-index An index of the first webProperty-Google Ads link - * to retrieve. Use this parameter as a pagination mechanism along with the max- - * results parameter. - * @return Google_Service_Analytics_EntityAdWordsLinks - */ - public function listManagementWebPropertyAdWordsLinks($accountId, $webPropertyId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Analytics_EntityAdWordsLinks"); - } - /** - * Updates an existing webProperty-Google Ads link. This method supports patch - * semantics. (webPropertyAdWordsLinks.patch) - * - * @param string $accountId ID of the account which the given web property - * belongs to. - * @param string $webPropertyId Web property ID to retrieve the Google Ads link - * for. - * @param string $webPropertyAdWordsLinkId Web property-Google Ads link ID. - * @param Google_Service_Analytics_EntityAdWordsLink $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Analytics_EntityAdWordsLink - */ - public function patch($accountId, $webPropertyId, $webPropertyAdWordsLinkId, Google_Service_Analytics_EntityAdWordsLink $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'webPropertyAdWordsLinkId' => $webPropertyAdWordsLinkId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Analytics_EntityAdWordsLink"); - } - /** - * Updates an existing webProperty-Google Ads link. - * (webPropertyAdWordsLinks.update) - * - * @param string $accountId ID of the account which the given web property - * belongs to. - * @param string $webPropertyId Web property ID to retrieve the Google Ads link - * for. - * @param string $webPropertyAdWordsLinkId Web property-Google Ads link ID. - * @param Google_Service_Analytics_EntityAdWordsLink $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Analytics_EntityAdWordsLink - */ - public function update($accountId, $webPropertyId, $webPropertyAdWordsLinkId, Google_Service_Analytics_EntityAdWordsLink $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'webPropertyAdWordsLinkId' => $webPropertyAdWordsLinkId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Analytics_EntityAdWordsLink"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementWebproperties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementWebproperties.php deleted file mode 100644 index 135bc0b1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementWebproperties.php +++ /dev/null @@ -1,110 +0,0 @@ - - * $analyticsService = new Google_Service_Analytics(...); - * $webproperties = $analyticsService->webproperties; - * - */ -class Google_Service_Analytics_Resource_ManagementWebproperties extends Google_Service_Resource -{ - /** - * Gets a web property to which the user has access. (webproperties.get) - * - * @param string $accountId Account ID to retrieve the web property for. - * @param string $webPropertyId ID to retrieve the web property for. - * @param array $optParams Optional parameters. - * @return Google_Service_Analytics_Webproperty - */ - public function get($accountId, $webPropertyId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Analytics_Webproperty"); - } - /** - * Create a new property if the account has fewer than 20 properties. Web - * properties are visible in the Google Analytics interface only if they have at - * least one profile. (webproperties.insert) - * - * @param string $accountId Account ID to create the web property for. - * @param Google_Service_Analytics_Webproperty $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Analytics_Webproperty - */ - public function insert($accountId, Google_Service_Analytics_Webproperty $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Analytics_Webproperty"); - } - /** - * Lists web properties to which the user has access. - * (webproperties.listManagementWebproperties) - * - * @param string $accountId Account ID to retrieve web properties for. Can - * either be a specific account ID or '~all', which refers to all the accounts - * that user has access to. - * @param array $optParams Optional parameters. - * - * @opt_param int max-results The maximum number of web properties to include in - * this response. - * @opt_param int start-index An index of the first entity to retrieve. Use this - * parameter as a pagination mechanism along with the max-results parameter. - * @return Google_Service_Analytics_Webproperties - */ - public function listManagementWebproperties($accountId, $optParams = array()) - { - $params = array('accountId' => $accountId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Analytics_Webproperties"); - } - /** - * Updates an existing web property. This method supports patch semantics. - * (webproperties.patch) - * - * @param string $accountId Account ID to which the web property belongs - * @param string $webPropertyId Web property ID - * @param Google_Service_Analytics_Webproperty $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Analytics_Webproperty - */ - public function patch($accountId, $webPropertyId, Google_Service_Analytics_Webproperty $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Analytics_Webproperty"); - } - /** - * Updates an existing web property. (webproperties.update) - * - * @param string $accountId Account ID to which the web property belongs - * @param string $webPropertyId Web property ID - * @param Google_Service_Analytics_Webproperty $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Analytics_Webproperty - */ - public function update($accountId, $webPropertyId, Google_Service_Analytics_Webproperty $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Analytics_Webproperty"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementWebpropertyUserLinks.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementWebpropertyUserLinks.php deleted file mode 100644 index 1baa5cd0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/ManagementWebpropertyUserLinks.php +++ /dev/null @@ -1,98 +0,0 @@ - - * $analyticsService = new Google_Service_Analytics(...); - * $webpropertyUserLinks = $analyticsService->webpropertyUserLinks; - * - */ -class Google_Service_Analytics_Resource_ManagementWebpropertyUserLinks extends Google_Service_Resource -{ - /** - * Removes a user from the given web property. (webpropertyUserLinks.delete) - * - * @param string $accountId Account ID to delete the user link for. - * @param string $webPropertyId Web Property ID to delete the user link for. - * @param string $linkId Link ID to delete the user link for. - * @param array $optParams Optional parameters. - */ - public function delete($accountId, $webPropertyId, $linkId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'linkId' => $linkId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Adds a new user to the given web property. (webpropertyUserLinks.insert) - * - * @param string $accountId Account ID to create the user link for. - * @param string $webPropertyId Web Property ID to create the user link for. - * @param Google_Service_Analytics_EntityUserLink $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Analytics_EntityUserLink - */ - public function insert($accountId, $webPropertyId, Google_Service_Analytics_EntityUserLink $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Analytics_EntityUserLink"); - } - /** - * Lists webProperty-user links for a given web property. - * (webpropertyUserLinks.listManagementWebpropertyUserLinks) - * - * @param string $accountId Account ID which the given web property belongs to. - * @param string $webPropertyId Web Property ID for the webProperty-user links - * to retrieve. Can either be a specific web property ID or '~all', which refers - * to all the web properties that user has access to. - * @param array $optParams Optional parameters. - * - * @opt_param int max-results The maximum number of webProperty-user Links to - * include in this response. - * @opt_param int start-index An index of the first webProperty-user link to - * retrieve. Use this parameter as a pagination mechanism along with the max- - * results parameter. - * @return Google_Service_Analytics_EntityUserLinks - */ - public function listManagementWebpropertyUserLinks($accountId, $webPropertyId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Analytics_EntityUserLinks"); - } - /** - * Updates permissions for an existing user on the given web property. - * (webpropertyUserLinks.update) - * - * @param string $accountId Account ID to update the account-user link for. - * @param string $webPropertyId Web property ID to update the account-user link - * for. - * @param string $linkId Link ID to update the account-user link for. - * @param Google_Service_Analytics_EntityUserLink $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Analytics_EntityUserLink - */ - public function update($accountId, $webPropertyId, $linkId, Google_Service_Analytics_EntityUserLink $postBody, $optParams = array()) - { - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'linkId' => $linkId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Analytics_EntityUserLink"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/Metadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/Metadata.php deleted file mode 100644 index a6dc94fd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/Metadata.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $analyticsService = new Google_Service_Analytics(...); - * $metadata = $analyticsService->metadata; - * - */ -class Google_Service_Analytics_Resource_Metadata extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/MetadataColumns.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/MetadataColumns.php deleted file mode 100644 index e32f5b0c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/MetadataColumns.php +++ /dev/null @@ -1,42 +0,0 @@ - - * $analyticsService = new Google_Service_Analytics(...); - * $columns = $analyticsService->columns; - * - */ -class Google_Service_Analytics_Resource_MetadataColumns extends Google_Service_Resource -{ - /** - * Lists all columns for a report type (columns.listMetadataColumns) - * - * @param string $reportType Report type. Allowed Values: 'ga'. Where 'ga' - * corresponds to the Core Reporting API - * @param array $optParams Optional parameters. - * @return Google_Service_Analytics_Columns - */ - public function listMetadataColumns($reportType, $optParams = array()) - { - $params = array('reportType' => $reportType); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Analytics_Columns"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/Provisioning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/Provisioning.php deleted file mode 100644 index acb12244..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/Provisioning.php +++ /dev/null @@ -1,54 +0,0 @@ - - * $analyticsService = new Google_Service_Analytics(...); - * $provisioning = $analyticsService->provisioning; - * - */ -class Google_Service_Analytics_Resource_Provisioning extends Google_Service_Resource -{ - /** - * Creates an account ticket. (provisioning.createAccountTicket) - * - * @param Google_Service_Analytics_AccountTicket $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Analytics_AccountTicket - */ - public function createAccountTicket(Google_Service_Analytics_AccountTicket $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('createAccountTicket', array($params), "Google_Service_Analytics_AccountTicket"); - } - /** - * Provision account. (provisioning.createAccountTree) - * - * @param Google_Service_Analytics_AccountTreeRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Analytics_AccountTreeResponse - */ - public function createAccountTree(Google_Service_Analytics_AccountTreeRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('createAccountTree', array($params), "Google_Service_Analytics_AccountTreeResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/UserDeletion.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/UserDeletion.php deleted file mode 100644 index 372cba67..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/UserDeletion.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $analyticsService = new Google_Service_Analytics(...); - * $userDeletion = $analyticsService->userDeletion; - * - */ -class Google_Service_Analytics_Resource_UserDeletion extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/UserDeletionUserDeletionRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/UserDeletionUserDeletionRequest.php deleted file mode 100644 index bc821236..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Resource/UserDeletionUserDeletionRequest.php +++ /dev/null @@ -1,41 +0,0 @@ - - * $analyticsService = new Google_Service_Analytics(...); - * $userDeletionRequest = $analyticsService->userDeletionRequest; - * - */ -class Google_Service_Analytics_Resource_UserDeletionUserDeletionRequest extends Google_Service_Resource -{ - /** - * Insert or update a user deletion requests. (userDeletionRequest.upsert) - * - * @param Google_Service_Analytics_UserDeletionRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Analytics_UserDeletionRequest - */ - public function upsert(Google_Service_Analytics_UserDeletionRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('upsert', array($params), "Google_Service_Analytics_UserDeletionRequest"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Segment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Segment.php deleted file mode 100644 index a14d9b20..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Segment.php +++ /dev/null @@ -1,102 +0,0 @@ -created = $created; - } - public function getCreated() - { - return $this->created; - } - public function setDefinition($definition) - { - $this->definition = $definition; - } - public function getDefinition() - { - return $this->definition; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setSegmentId($segmentId) - { - $this->segmentId = $segmentId; - } - public function getSegmentId() - { - return $this->segmentId; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setUpdated($updated) - { - $this->updated = $updated; - } - public function getUpdated() - { - return $this->updated; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Segments.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Segments.php deleted file mode 100644 index 1ed0e6a3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Segments.php +++ /dev/null @@ -1,101 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Analytics_Segment - */ - public function getItems() - { - return $this->items; - } - public function setItemsPerPage($itemsPerPage) - { - $this->itemsPerPage = $itemsPerPage; - } - public function getItemsPerPage() - { - return $this->itemsPerPage; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextLink($nextLink) - { - $this->nextLink = $nextLink; - } - public function getNextLink() - { - return $this->nextLink; - } - public function setPreviousLink($previousLink) - { - $this->previousLink = $previousLink; - } - public function getPreviousLink() - { - return $this->previousLink; - } - public function setStartIndex($startIndex) - { - $this->startIndex = $startIndex; - } - public function getStartIndex() - { - return $this->startIndex; - } - public function setTotalResults($totalResults) - { - $this->totalResults = $totalResults; - } - public function getTotalResults() - { - return $this->totalResults; - } - public function setUsername($username) - { - $this->username = $username; - } - public function getUsername() - { - return $this->username; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/UnsampledReport.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/UnsampledReport.php deleted file mode 100644 index 453ae7eb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/UnsampledReport.php +++ /dev/null @@ -1,210 +0,0 @@ - "end-date", - "startDate" => "start-date", - ); - public $accountId; - protected $cloudStorageDownloadDetailsType = 'Google_Service_Analytics_UnsampledReportCloudStorageDownloadDetails'; - protected $cloudStorageDownloadDetailsDataType = ''; - public $created; - public $dimensions; - public $downloadType; - protected $driveDownloadDetailsType = 'Google_Service_Analytics_UnsampledReportDriveDownloadDetails'; - protected $driveDownloadDetailsDataType = ''; - public $endDate; - public $filters; - public $id; - public $kind; - public $metrics; - public $profileId; - public $segment; - public $selfLink; - public $startDate; - public $status; - public $title; - public $updated; - public $webPropertyId; - - public function setAccountId($accountId) - { - $this->accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - /** - * @param Google_Service_Analytics_UnsampledReportCloudStorageDownloadDetails - */ - public function setCloudStorageDownloadDetails(Google_Service_Analytics_UnsampledReportCloudStorageDownloadDetails $cloudStorageDownloadDetails) - { - $this->cloudStorageDownloadDetails = $cloudStorageDownloadDetails; - } - /** - * @return Google_Service_Analytics_UnsampledReportCloudStorageDownloadDetails - */ - public function getCloudStorageDownloadDetails() - { - return $this->cloudStorageDownloadDetails; - } - public function setCreated($created) - { - $this->created = $created; - } - public function getCreated() - { - return $this->created; - } - public function setDimensions($dimensions) - { - $this->dimensions = $dimensions; - } - public function getDimensions() - { - return $this->dimensions; - } - public function setDownloadType($downloadType) - { - $this->downloadType = $downloadType; - } - public function getDownloadType() - { - return $this->downloadType; - } - /** - * @param Google_Service_Analytics_UnsampledReportDriveDownloadDetails - */ - public function setDriveDownloadDetails(Google_Service_Analytics_UnsampledReportDriveDownloadDetails $driveDownloadDetails) - { - $this->driveDownloadDetails = $driveDownloadDetails; - } - /** - * @return Google_Service_Analytics_UnsampledReportDriveDownloadDetails - */ - public function getDriveDownloadDetails() - { - return $this->driveDownloadDetails; - } - public function setEndDate($endDate) - { - $this->endDate = $endDate; - } - public function getEndDate() - { - return $this->endDate; - } - public function setFilters($filters) - { - $this->filters = $filters; - } - public function getFilters() - { - return $this->filters; - } - 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 setMetrics($metrics) - { - $this->metrics = $metrics; - } - public function getMetrics() - { - return $this->metrics; - } - public function setProfileId($profileId) - { - $this->profileId = $profileId; - } - public function getProfileId() - { - return $this->profileId; - } - public function setSegment($segment) - { - $this->segment = $segment; - } - public function getSegment() - { - return $this->segment; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setStartDate($startDate) - { - $this->startDate = $startDate; - } - public function getStartDate() - { - return $this->startDate; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setUpdated($updated) - { - $this->updated = $updated; - } - public function getUpdated() - { - return $this->updated; - } - public function setWebPropertyId($webPropertyId) - { - $this->webPropertyId = $webPropertyId; - } - public function getWebPropertyId() - { - return $this->webPropertyId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/UnsampledReportCloudStorageDownloadDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/UnsampledReportCloudStorageDownloadDetails.php deleted file mode 100644 index e2966fde..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/UnsampledReportCloudStorageDownloadDetails.php +++ /dev/null @@ -1,39 +0,0 @@ -bucketId = $bucketId; - } - public function getBucketId() - { - return $this->bucketId; - } - public function setObjectId($objectId) - { - $this->objectId = $objectId; - } - public function getObjectId() - { - return $this->objectId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/UnsampledReportDriveDownloadDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/UnsampledReportDriveDownloadDetails.php deleted file mode 100644 index 940e56ab..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/UnsampledReportDriveDownloadDetails.php +++ /dev/null @@ -1,30 +0,0 @@ -documentId = $documentId; - } - public function getDocumentId() - { - return $this->documentId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/UnsampledReports.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/UnsampledReports.php deleted file mode 100644 index a173c2cb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/UnsampledReports.php +++ /dev/null @@ -1,101 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Analytics_UnsampledReport - */ - public function getItems() - { - return $this->items; - } - public function setItemsPerPage($itemsPerPage) - { - $this->itemsPerPage = $itemsPerPage; - } - public function getItemsPerPage() - { - return $this->itemsPerPage; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextLink($nextLink) - { - $this->nextLink = $nextLink; - } - public function getNextLink() - { - return $this->nextLink; - } - public function setPreviousLink($previousLink) - { - $this->previousLink = $previousLink; - } - public function getPreviousLink() - { - return $this->previousLink; - } - public function setStartIndex($startIndex) - { - $this->startIndex = $startIndex; - } - public function getStartIndex() - { - return $this->startIndex; - } - public function setTotalResults($totalResults) - { - $this->totalResults = $totalResults; - } - public function getTotalResults() - { - return $this->totalResults; - } - public function setUsername($username) - { - $this->username = $username; - } - public function getUsername() - { - return $this->username; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Upload.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Upload.php deleted file mode 100644 index 0632a4ba..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Upload.php +++ /dev/null @@ -1,85 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setCustomDataSourceId($customDataSourceId) - { - $this->customDataSourceId = $customDataSourceId; - } - public function getCustomDataSourceId() - { - return $this->customDataSourceId; - } - public function setErrors($errors) - { - $this->errors = $errors; - } - public function getErrors() - { - return $this->errors; - } - 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 setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setUploadTime($uploadTime) - { - $this->uploadTime = $uploadTime; - } - public function getUploadTime() - { - return $this->uploadTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Uploads.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Uploads.php deleted file mode 100644 index 7d3c5775..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Uploads.php +++ /dev/null @@ -1,92 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Analytics_Upload - */ - public function getItems() - { - return $this->items; - } - public function setItemsPerPage($itemsPerPage) - { - $this->itemsPerPage = $itemsPerPage; - } - public function getItemsPerPage() - { - return $this->itemsPerPage; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextLink($nextLink) - { - $this->nextLink = $nextLink; - } - public function getNextLink() - { - return $this->nextLink; - } - public function setPreviousLink($previousLink) - { - $this->previousLink = $previousLink; - } - public function getPreviousLink() - { - return $this->previousLink; - } - public function setStartIndex($startIndex) - { - $this->startIndex = $startIndex; - } - public function getStartIndex() - { - return $this->startIndex; - } - public function setTotalResults($totalResults) - { - $this->totalResults = $totalResults; - } - public function getTotalResults() - { - return $this->totalResults; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/UserDeletionRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/UserDeletionRequest.php deleted file mode 100644 index 4beba544..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/UserDeletionRequest.php +++ /dev/null @@ -1,82 +0,0 @@ -deletionRequestTime = $deletionRequestTime; - } - public function getDeletionRequestTime() - { - return $this->deletionRequestTime; - } - public function setFirebaseProjectId($firebaseProjectId) - { - $this->firebaseProjectId = $firebaseProjectId; - } - public function getFirebaseProjectId() - { - return $this->firebaseProjectId; - } - /** - * @param Google_Service_Analytics_UserDeletionRequestId - */ - public function setId(Google_Service_Analytics_UserDeletionRequestId $id) - { - $this->id = $id; - } - /** - * @return Google_Service_Analytics_UserDeletionRequestId - */ - public function getId() - { - return $this->id; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setPropertyId($propertyId) - { - $this->propertyId = $propertyId; - } - public function getPropertyId() - { - return $this->propertyId; - } - public function setWebPropertyId($webPropertyId) - { - $this->webPropertyId = $webPropertyId; - } - public function getWebPropertyId() - { - return $this->webPropertyId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/UserDeletionRequestId.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/UserDeletionRequestId.php deleted file mode 100644 index 940ad429..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/UserDeletionRequestId.php +++ /dev/null @@ -1,39 +0,0 @@ -type = $type; - } - public function getType() - { - return $this->type; - } - public function setUserId($userId) - { - $this->userId = $userId; - } - public function getUserId() - { - return $this->userId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/UserRef.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/UserRef.php deleted file mode 100644 index 75dcd7a5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/UserRef.php +++ /dev/null @@ -1,48 +0,0 @@ -email = $email; - } - public function getEmail() - { - return $this->email; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/WebPropertyRef.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/WebPropertyRef.php deleted file mode 100644 index e858f5df..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/WebPropertyRef.php +++ /dev/null @@ -1,75 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setHref($href) - { - $this->href = $href; - } - public function getHref() - { - return $this->href; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setInternalWebPropertyId($internalWebPropertyId) - { - $this->internalWebPropertyId = $internalWebPropertyId; - } - public function getInternalWebPropertyId() - { - return $this->internalWebPropertyId; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/WebPropertySummary.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/WebPropertySummary.php deleted file mode 100644 index f72dca24..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/WebPropertySummary.php +++ /dev/null @@ -1,101 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setInternalWebPropertyId($internalWebPropertyId) - { - $this->internalWebPropertyId = $internalWebPropertyId; - } - public function getInternalWebPropertyId() - { - return $this->internalWebPropertyId; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLevel($level) - { - $this->level = $level; - } - public function getLevel() - { - return $this->level; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Analytics_ProfileSummary - */ - public function setProfiles($profiles) - { - $this->profiles = $profiles; - } - /** - * @return Google_Service_Analytics_ProfileSummary - */ - public function getProfiles() - { - return $this->profiles; - } - public function setStarred($starred) - { - $this->starred = $starred; - } - public function getStarred() - { - return $this->starred; - } - public function setWebsiteUrl($websiteUrl) - { - $this->websiteUrl = $websiteUrl; - } - public function getWebsiteUrl() - { - return $this->websiteUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Webproperties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Webproperties.php deleted file mode 100644 index 62ffdc7f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Webproperties.php +++ /dev/null @@ -1,101 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Analytics_Webproperty - */ - public function getItems() - { - return $this->items; - } - public function setItemsPerPage($itemsPerPage) - { - $this->itemsPerPage = $itemsPerPage; - } - public function getItemsPerPage() - { - return $this->itemsPerPage; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextLink($nextLink) - { - $this->nextLink = $nextLink; - } - public function getNextLink() - { - return $this->nextLink; - } - public function setPreviousLink($previousLink) - { - $this->previousLink = $previousLink; - } - public function getPreviousLink() - { - return $this->previousLink; - } - public function setStartIndex($startIndex) - { - $this->startIndex = $startIndex; - } - public function getStartIndex() - { - return $this->startIndex; - } - public function setTotalResults($totalResults) - { - $this->totalResults = $totalResults; - } - public function getTotalResults() - { - return $this->totalResults; - } - public function setUsername($username) - { - $this->username = $username; - } - public function getUsername() - { - return $this->username; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Webproperty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Webproperty.php deleted file mode 100644 index b09e0698..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/Webproperty.php +++ /dev/null @@ -1,213 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - /** - * @param Google_Service_Analytics_WebpropertyChildLink - */ - public function setChildLink(Google_Service_Analytics_WebpropertyChildLink $childLink) - { - $this->childLink = $childLink; - } - /** - * @return Google_Service_Analytics_WebpropertyChildLink - */ - public function getChildLink() - { - return $this->childLink; - } - public function setCreated($created) - { - $this->created = $created; - } - public function getCreated() - { - return $this->created; - } - public function setDataRetentionResetOnNewActivity($dataRetentionResetOnNewActivity) - { - $this->dataRetentionResetOnNewActivity = $dataRetentionResetOnNewActivity; - } - public function getDataRetentionResetOnNewActivity() - { - return $this->dataRetentionResetOnNewActivity; - } - public function setDataRetentionTtl($dataRetentionTtl) - { - $this->dataRetentionTtl = $dataRetentionTtl; - } - public function getDataRetentionTtl() - { - return $this->dataRetentionTtl; - } - public function setDefaultProfileId($defaultProfileId) - { - $this->defaultProfileId = $defaultProfileId; - } - public function getDefaultProfileId() - { - return $this->defaultProfileId; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setIndustryVertical($industryVertical) - { - $this->industryVertical = $industryVertical; - } - public function getIndustryVertical() - { - return $this->industryVertical; - } - public function setInternalWebPropertyId($internalWebPropertyId) - { - $this->internalWebPropertyId = $internalWebPropertyId; - } - public function getInternalWebPropertyId() - { - return $this->internalWebPropertyId; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLevel($level) - { - $this->level = $level; - } - public function getLevel() - { - return $this->level; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Analytics_WebpropertyParentLink - */ - public function setParentLink(Google_Service_Analytics_WebpropertyParentLink $parentLink) - { - $this->parentLink = $parentLink; - } - /** - * @return Google_Service_Analytics_WebpropertyParentLink - */ - public function getParentLink() - { - return $this->parentLink; - } - /** - * @param Google_Service_Analytics_WebpropertyPermissions - */ - public function setPermissions(Google_Service_Analytics_WebpropertyPermissions $permissions) - { - $this->permissions = $permissions; - } - /** - * @return Google_Service_Analytics_WebpropertyPermissions - */ - public function getPermissions() - { - return $this->permissions; - } - public function setProfileCount($profileCount) - { - $this->profileCount = $profileCount; - } - public function getProfileCount() - { - return $this->profileCount; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setStarred($starred) - { - $this->starred = $starred; - } - public function getStarred() - { - return $this->starred; - } - public function setUpdated($updated) - { - $this->updated = $updated; - } - public function getUpdated() - { - return $this->updated; - } - public function setWebsiteUrl($websiteUrl) - { - $this->websiteUrl = $websiteUrl; - } - public function getWebsiteUrl() - { - return $this->websiteUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/WebpropertyChildLink.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/WebpropertyChildLink.php deleted file mode 100644 index a9917319..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/WebpropertyChildLink.php +++ /dev/null @@ -1,39 +0,0 @@ -href = $href; - } - public function getHref() - { - return $this->href; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/WebpropertyParentLink.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/WebpropertyParentLink.php deleted file mode 100644 index b858e744..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/WebpropertyParentLink.php +++ /dev/null @@ -1,39 +0,0 @@ -href = $href; - } - public function getHref() - { - return $this->href; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/WebpropertyPermissions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/WebpropertyPermissions.php deleted file mode 100644 index 1a8b2bed..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Analytics/WebpropertyPermissions.php +++ /dev/null @@ -1,31 +0,0 @@ -effective = $effective; - } - public function getEffective() - { - return $this->effective; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting.php deleted file mode 100644 index 79bad680..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting.php +++ /dev/null @@ -1,87 +0,0 @@ - - * Accesses Analytics report data.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_AnalyticsReporting extends Google_Service -{ - /** View and manage your Google Analytics data. */ - const ANALYTICS = - "https://www.googleapis.com/auth/analytics"; - /** View your Google Analytics data. */ - const ANALYTICS_READONLY = - "https://www.googleapis.com/auth/analytics.readonly"; - - public $reports; - public $userActivity; - - /** - * Constructs the internal representation of the AnalyticsReporting service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://analyticsreporting.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v4'; - $this->serviceName = 'analyticsreporting'; - - $this->reports = new Google_Service_AnalyticsReporting_Resource_Reports( - $this, - $this->serviceName, - 'reports', - array( - 'methods' => array( - 'batchGet' => array( - 'path' => 'v4/reports:batchGet', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->userActivity = new Google_Service_AnalyticsReporting_Resource_UserActivity( - $this, - $this->serviceName, - 'userActivity', - array( - 'methods' => array( - 'search' => array( - 'path' => 'v4/userActivity:search', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/Activity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/Activity.php deleted file mode 100644 index 4fbe9204..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/Activity.php +++ /dev/null @@ -1,199 +0,0 @@ -activityTime = $activityTime; - } - public function getActivityTime() - { - return $this->activityTime; - } - public function setActivityType($activityType) - { - $this->activityType = $activityType; - } - public function getActivityType() - { - return $this->activityType; - } - /** - * @param Google_Service_AnalyticsReporting_ScreenviewData - */ - public function setAppview(Google_Service_AnalyticsReporting_ScreenviewData $appview) - { - $this->appview = $appview; - } - /** - * @return Google_Service_AnalyticsReporting_ScreenviewData - */ - public function getAppview() - { - return $this->appview; - } - public function setCampaign($campaign) - { - $this->campaign = $campaign; - } - public function getCampaign() - { - return $this->campaign; - } - public function setChannelGrouping($channelGrouping) - { - $this->channelGrouping = $channelGrouping; - } - public function getChannelGrouping() - { - return $this->channelGrouping; - } - /** - * @param Google_Service_AnalyticsReporting_CustomDimension - */ - public function setCustomDimension($customDimension) - { - $this->customDimension = $customDimension; - } - /** - * @return Google_Service_AnalyticsReporting_CustomDimension - */ - public function getCustomDimension() - { - return $this->customDimension; - } - /** - * @param Google_Service_AnalyticsReporting_EcommerceData - */ - public function setEcommerce(Google_Service_AnalyticsReporting_EcommerceData $ecommerce) - { - $this->ecommerce = $ecommerce; - } - /** - * @return Google_Service_AnalyticsReporting_EcommerceData - */ - public function getEcommerce() - { - return $this->ecommerce; - } - /** - * @param Google_Service_AnalyticsReporting_EventData - */ - public function setEvent(Google_Service_AnalyticsReporting_EventData $event) - { - $this->event = $event; - } - /** - * @return Google_Service_AnalyticsReporting_EventData - */ - public function getEvent() - { - return $this->event; - } - /** - * @param Google_Service_AnalyticsReporting_GoalSetData - */ - public function setGoals(Google_Service_AnalyticsReporting_GoalSetData $goals) - { - $this->goals = $goals; - } - /** - * @return Google_Service_AnalyticsReporting_GoalSetData - */ - public function getGoals() - { - return $this->goals; - } - public function setHostname($hostname) - { - $this->hostname = $hostname; - } - public function getHostname() - { - return $this->hostname; - } - public function setKeyword($keyword) - { - $this->keyword = $keyword; - } - public function getKeyword() - { - return $this->keyword; - } - public function setLandingPagePath($landingPagePath) - { - $this->landingPagePath = $landingPagePath; - } - public function getLandingPagePath() - { - return $this->landingPagePath; - } - public function setMedium($medium) - { - $this->medium = $medium; - } - public function getMedium() - { - return $this->medium; - } - /** - * @param Google_Service_AnalyticsReporting_PageviewData - */ - public function setPageview(Google_Service_AnalyticsReporting_PageviewData $pageview) - { - $this->pageview = $pageview; - } - /** - * @return Google_Service_AnalyticsReporting_PageviewData - */ - public function getPageview() - { - return $this->pageview; - } - public function setSource($source) - { - $this->source = $source; - } - public function getSource() - { - return $this->source; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/Cohort.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/Cohort.php deleted file mode 100644 index 4092c312..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/Cohort.php +++ /dev/null @@ -1,55 +0,0 @@ -dateRange = $dateRange; - } - /** - * @return Google_Service_AnalyticsReporting_DateRange - */ - public function getDateRange() - { - return $this->dateRange; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/CohortGroup.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/CohortGroup.php deleted file mode 100644 index 753fb164..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/CohortGroup.php +++ /dev/null @@ -1,47 +0,0 @@ -cohorts = $cohorts; - } - /** - * @return Google_Service_AnalyticsReporting_Cohort - */ - public function getCohorts() - { - return $this->cohorts; - } - public function setLifetimeValue($lifetimeValue) - { - $this->lifetimeValue = $lifetimeValue; - } - public function getLifetimeValue() - { - return $this->lifetimeValue; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/ColumnHeader.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/ColumnHeader.php deleted file mode 100644 index 94086f28..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/ColumnHeader.php +++ /dev/null @@ -1,47 +0,0 @@ -dimensions = $dimensions; - } - public function getDimensions() - { - return $this->dimensions; - } - /** - * @param Google_Service_AnalyticsReporting_MetricHeader - */ - public function setMetricHeader(Google_Service_AnalyticsReporting_MetricHeader $metricHeader) - { - $this->metricHeader = $metricHeader; - } - /** - * @return Google_Service_AnalyticsReporting_MetricHeader - */ - public function getMetricHeader() - { - return $this->metricHeader; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/CustomDimension.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/CustomDimension.php deleted file mode 100644 index 19c1792c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/CustomDimension.php +++ /dev/null @@ -1,39 +0,0 @@ -index = $index; - } - public function getIndex() - { - return $this->index; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/DateRange.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/DateRange.php deleted file mode 100644 index c4863d94..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/DateRange.php +++ /dev/null @@ -1,39 +0,0 @@ -endDate = $endDate; - } - public function getEndDate() - { - return $this->endDate; - } - public function setStartDate($startDate) - { - $this->startDate = $startDate; - } - public function getStartDate() - { - return $this->startDate; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/DateRangeValues.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/DateRangeValues.php deleted file mode 100644 index 5281572b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/DateRangeValues.php +++ /dev/null @@ -1,47 +0,0 @@ -pivotValueRegions = $pivotValueRegions; - } - /** - * @return Google_Service_AnalyticsReporting_PivotValueRegion - */ - public function getPivotValueRegions() - { - return $this->pivotValueRegions; - } - public function setValues($values) - { - $this->values = $values; - } - public function getValues() - { - return $this->values; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/Dimension.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/Dimension.php deleted file mode 100644 index 4f2c6449..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/Dimension.php +++ /dev/null @@ -1,40 +0,0 @@ -histogramBuckets = $histogramBuckets; - } - public function getHistogramBuckets() - { - return $this->histogramBuckets; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/DimensionFilter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/DimensionFilter.php deleted file mode 100644 index d5c48bf3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/DimensionFilter.php +++ /dev/null @@ -1,67 +0,0 @@ -caseSensitive = $caseSensitive; - } - public function getCaseSensitive() - { - return $this->caseSensitive; - } - public function setDimensionName($dimensionName) - { - $this->dimensionName = $dimensionName; - } - public function getDimensionName() - { - return $this->dimensionName; - } - public function setExpressions($expressions) - { - $this->expressions = $expressions; - } - public function getExpressions() - { - return $this->expressions; - } - public function setNot($not) - { - $this->not = $not; - } - public function getNot() - { - return $this->not; - } - public function setOperator($operator) - { - $this->operator = $operator; - } - public function getOperator() - { - return $this->operator; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/DimensionFilterClause.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/DimensionFilterClause.php deleted file mode 100644 index b5c78451..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/DimensionFilterClause.php +++ /dev/null @@ -1,47 +0,0 @@ -filters = $filters; - } - /** - * @return Google_Service_AnalyticsReporting_DimensionFilter - */ - public function getFilters() - { - return $this->filters; - } - public function setOperator($operator) - { - $this->operator = $operator; - } - public function getOperator() - { - return $this->operator; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/DynamicSegment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/DynamicSegment.php deleted file mode 100644 index 35d93098..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/DynamicSegment.php +++ /dev/null @@ -1,62 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_AnalyticsReporting_SegmentDefinition - */ - public function setSessionSegment(Google_Service_AnalyticsReporting_SegmentDefinition $sessionSegment) - { - $this->sessionSegment = $sessionSegment; - } - /** - * @return Google_Service_AnalyticsReporting_SegmentDefinition - */ - public function getSessionSegment() - { - return $this->sessionSegment; - } - /** - * @param Google_Service_AnalyticsReporting_SegmentDefinition - */ - public function setUserSegment(Google_Service_AnalyticsReporting_SegmentDefinition $userSegment) - { - $this->userSegment = $userSegment; - } - /** - * @return Google_Service_AnalyticsReporting_SegmentDefinition - */ - public function getUserSegment() - { - return $this->userSegment; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/EcommerceData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/EcommerceData.php deleted file mode 100644 index e26a9d06..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/EcommerceData.php +++ /dev/null @@ -1,72 +0,0 @@ -actionType = $actionType; - } - public function getActionType() - { - return $this->actionType; - } - public function setEcommerceType($ecommerceType) - { - $this->ecommerceType = $ecommerceType; - } - public function getEcommerceType() - { - return $this->ecommerceType; - } - /** - * @param Google_Service_AnalyticsReporting_ProductData - */ - public function setProducts($products) - { - $this->products = $products; - } - /** - * @return Google_Service_AnalyticsReporting_ProductData - */ - public function getProducts() - { - return $this->products; - } - /** - * @param Google_Service_AnalyticsReporting_TransactionData - */ - public function setTransaction(Google_Service_AnalyticsReporting_TransactionData $transaction) - { - $this->transaction = $transaction; - } - /** - * @return Google_Service_AnalyticsReporting_TransactionData - */ - public function getTransaction() - { - return $this->transaction; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/EventData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/EventData.php deleted file mode 100644 index 432178a7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/EventData.php +++ /dev/null @@ -1,66 +0,0 @@ -eventAction = $eventAction; - } - public function getEventAction() - { - return $this->eventAction; - } - public function setEventCategory($eventCategory) - { - $this->eventCategory = $eventCategory; - } - public function getEventCategory() - { - return $this->eventCategory; - } - public function setEventCount($eventCount) - { - $this->eventCount = $eventCount; - } - public function getEventCount() - { - return $this->eventCount; - } - public function setEventLabel($eventLabel) - { - $this->eventLabel = $eventLabel; - } - public function getEventLabel() - { - return $this->eventLabel; - } - public function setEventValue($eventValue) - { - $this->eventValue = $eventValue; - } - public function getEventValue() - { - return $this->eventValue; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/GetReportsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/GetReportsRequest.php deleted file mode 100644 index a645cbc3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/GetReportsRequest.php +++ /dev/null @@ -1,47 +0,0 @@ -reportRequests = $reportRequests; - } - /** - * @return Google_Service_AnalyticsReporting_ReportRequest - */ - public function getReportRequests() - { - return $this->reportRequests; - } - public function setUseResourceQuotas($useResourceQuotas) - { - $this->useResourceQuotas = $useResourceQuotas; - } - public function getUseResourceQuotas() - { - return $this->useResourceQuotas; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/GetReportsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/GetReportsResponse.php deleted file mode 100644 index 779337ea..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/GetReportsResponse.php +++ /dev/null @@ -1,63 +0,0 @@ -queryCost = $queryCost; - } - public function getQueryCost() - { - return $this->queryCost; - } - /** - * @param Google_Service_AnalyticsReporting_Report - */ - public function setReports($reports) - { - $this->reports = $reports; - } - /** - * @return Google_Service_AnalyticsReporting_Report - */ - public function getReports() - { - return $this->reports; - } - /** - * @param Google_Service_AnalyticsReporting_ResourceQuotasRemaining - */ - public function setResourceQuotasRemaining(Google_Service_AnalyticsReporting_ResourceQuotasRemaining $resourceQuotasRemaining) - { - $this->resourceQuotasRemaining = $resourceQuotasRemaining; - } - /** - * @return Google_Service_AnalyticsReporting_ResourceQuotasRemaining - */ - public function getResourceQuotasRemaining() - { - return $this->resourceQuotasRemaining; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/GoalData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/GoalData.php deleted file mode 100644 index 4c04a0ca..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/GoalData.php +++ /dev/null @@ -1,93 +0,0 @@ -goalCompletionLocation = $goalCompletionLocation; - } - public function getGoalCompletionLocation() - { - return $this->goalCompletionLocation; - } - public function setGoalCompletions($goalCompletions) - { - $this->goalCompletions = $goalCompletions; - } - public function getGoalCompletions() - { - return $this->goalCompletions; - } - public function setGoalIndex($goalIndex) - { - $this->goalIndex = $goalIndex; - } - public function getGoalIndex() - { - return $this->goalIndex; - } - public function setGoalName($goalName) - { - $this->goalName = $goalName; - } - public function getGoalName() - { - return $this->goalName; - } - public function setGoalPreviousStep1($goalPreviousStep1) - { - $this->goalPreviousStep1 = $goalPreviousStep1; - } - public function getGoalPreviousStep1() - { - return $this->goalPreviousStep1; - } - public function setGoalPreviousStep2($goalPreviousStep2) - { - $this->goalPreviousStep2 = $goalPreviousStep2; - } - public function getGoalPreviousStep2() - { - return $this->goalPreviousStep2; - } - public function setGoalPreviousStep3($goalPreviousStep3) - { - $this->goalPreviousStep3 = $goalPreviousStep3; - } - public function getGoalPreviousStep3() - { - return $this->goalPreviousStep3; - } - public function setGoalValue($goalValue) - { - $this->goalValue = $goalValue; - } - public function getGoalValue() - { - return $this->goalValue; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/GoalSetData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/GoalSetData.php deleted file mode 100644 index c6d08e80..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/GoalSetData.php +++ /dev/null @@ -1,38 +0,0 @@ -goals = $goals; - } - /** - * @return Google_Service_AnalyticsReporting_GoalData - */ - public function getGoals() - { - return $this->goals; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/Metric.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/Metric.php deleted file mode 100644 index 4fbe3791..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/Metric.php +++ /dev/null @@ -1,48 +0,0 @@ -alias = $alias; - } - public function getAlias() - { - return $this->alias; - } - public function setExpression($expression) - { - $this->expression = $expression; - } - public function getExpression() - { - return $this->expression; - } - public function setFormattingType($formattingType) - { - $this->formattingType = $formattingType; - } - public function getFormattingType() - { - return $this->formattingType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/MetricFilter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/MetricFilter.php deleted file mode 100644 index fc5c553e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/MetricFilter.php +++ /dev/null @@ -1,57 +0,0 @@ -comparisonValue = $comparisonValue; - } - public function getComparisonValue() - { - return $this->comparisonValue; - } - public function setMetricName($metricName) - { - $this->metricName = $metricName; - } - public function getMetricName() - { - return $this->metricName; - } - public function setNot($not) - { - $this->not = $not; - } - public function getNot() - { - return $this->not; - } - public function setOperator($operator) - { - $this->operator = $operator; - } - public function getOperator() - { - return $this->operator; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/MetricFilterClause.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/MetricFilterClause.php deleted file mode 100644 index 7ece24ec..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/MetricFilterClause.php +++ /dev/null @@ -1,47 +0,0 @@ -filters = $filters; - } - /** - * @return Google_Service_AnalyticsReporting_MetricFilter - */ - public function getFilters() - { - return $this->filters; - } - public function setOperator($operator) - { - $this->operator = $operator; - } - public function getOperator() - { - return $this->operator; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/MetricHeader.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/MetricHeader.php deleted file mode 100644 index 023bb10d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/MetricHeader.php +++ /dev/null @@ -1,54 +0,0 @@ -metricHeaderEntries = $metricHeaderEntries; - } - /** - * @return Google_Service_AnalyticsReporting_MetricHeaderEntry - */ - public function getMetricHeaderEntries() - { - return $this->metricHeaderEntries; - } - /** - * @param Google_Service_AnalyticsReporting_PivotHeader - */ - public function setPivotHeaders($pivotHeaders) - { - $this->pivotHeaders = $pivotHeaders; - } - /** - * @return Google_Service_AnalyticsReporting_PivotHeader - */ - public function getPivotHeaders() - { - return $this->pivotHeaders; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/MetricHeaderEntry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/MetricHeaderEntry.php deleted file mode 100644 index 90998f0b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/MetricHeaderEntry.php +++ /dev/null @@ -1,39 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/OrFiltersForSegment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/OrFiltersForSegment.php deleted file mode 100644 index 67188e37..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/OrFiltersForSegment.php +++ /dev/null @@ -1,38 +0,0 @@ -segmentFilterClauses = $segmentFilterClauses; - } - /** - * @return Google_Service_AnalyticsReporting_SegmentFilterClause - */ - public function getSegmentFilterClauses() - { - return $this->segmentFilterClauses; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/OrderBy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/OrderBy.php deleted file mode 100644 index 0081da21..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/OrderBy.php +++ /dev/null @@ -1,48 +0,0 @@ -fieldName = $fieldName; - } - public function getFieldName() - { - return $this->fieldName; - } - public function setOrderType($orderType) - { - $this->orderType = $orderType; - } - public function getOrderType() - { - return $this->orderType; - } - public function setSortOrder($sortOrder) - { - $this->sortOrder = $sortOrder; - } - public function getSortOrder() - { - return $this->sortOrder; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/PageviewData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/PageviewData.php deleted file mode 100644 index 0cab76f9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/PageviewData.php +++ /dev/null @@ -1,39 +0,0 @@ -pagePath = $pagePath; - } - public function getPagePath() - { - return $this->pagePath; - } - public function setPageTitle($pageTitle) - { - $this->pageTitle = $pageTitle; - } - public function getPageTitle() - { - return $this->pageTitle; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/Pivot.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/Pivot.php deleted file mode 100644 index 76ffc989..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/Pivot.php +++ /dev/null @@ -1,88 +0,0 @@ -dimensionFilterClauses = $dimensionFilterClauses; - } - /** - * @return Google_Service_AnalyticsReporting_DimensionFilterClause - */ - public function getDimensionFilterClauses() - { - return $this->dimensionFilterClauses; - } - /** - * @param Google_Service_AnalyticsReporting_Dimension - */ - public function setDimensions($dimensions) - { - $this->dimensions = $dimensions; - } - /** - * @return Google_Service_AnalyticsReporting_Dimension - */ - public function getDimensions() - { - return $this->dimensions; - } - public function setMaxGroupCount($maxGroupCount) - { - $this->maxGroupCount = $maxGroupCount; - } - public function getMaxGroupCount() - { - return $this->maxGroupCount; - } - /** - * @param Google_Service_AnalyticsReporting_Metric - */ - public function setMetrics($metrics) - { - $this->metrics = $metrics; - } - /** - * @return Google_Service_AnalyticsReporting_Metric - */ - public function getMetrics() - { - return $this->metrics; - } - public function setStartGroup($startGroup) - { - $this->startGroup = $startGroup; - } - public function getStartGroup() - { - return $this->startGroup; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/PivotHeader.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/PivotHeader.php deleted file mode 100644 index 5c83975c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/PivotHeader.php +++ /dev/null @@ -1,47 +0,0 @@ -pivotHeaderEntries = $pivotHeaderEntries; - } - /** - * @return Google_Service_AnalyticsReporting_PivotHeaderEntry - */ - public function getPivotHeaderEntries() - { - return $this->pivotHeaderEntries; - } - public function setTotalPivotGroupsCount($totalPivotGroupsCount) - { - $this->totalPivotGroupsCount = $totalPivotGroupsCount; - } - public function getTotalPivotGroupsCount() - { - return $this->totalPivotGroupsCount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/PivotHeaderEntry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/PivotHeaderEntry.php deleted file mode 100644 index 962c9ea6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/PivotHeaderEntry.php +++ /dev/null @@ -1,56 +0,0 @@ -dimensionNames = $dimensionNames; - } - public function getDimensionNames() - { - return $this->dimensionNames; - } - public function setDimensionValues($dimensionValues) - { - $this->dimensionValues = $dimensionValues; - } - public function getDimensionValues() - { - return $this->dimensionValues; - } - /** - * @param Google_Service_AnalyticsReporting_MetricHeaderEntry - */ - public function setMetric(Google_Service_AnalyticsReporting_MetricHeaderEntry $metric) - { - $this->metric = $metric; - } - /** - * @return Google_Service_AnalyticsReporting_MetricHeaderEntry - */ - public function getMetric() - { - return $this->metric; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/PivotValueRegion.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/PivotValueRegion.php deleted file mode 100644 index c8823bbc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/PivotValueRegion.php +++ /dev/null @@ -1,31 +0,0 @@ -values = $values; - } - public function getValues() - { - return $this->values; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/ProductData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/ProductData.php deleted file mode 100644 index 60da363b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/ProductData.php +++ /dev/null @@ -1,57 +0,0 @@ -itemRevenue = $itemRevenue; - } - public function getItemRevenue() - { - return $this->itemRevenue; - } - public function setProductName($productName) - { - $this->productName = $productName; - } - public function getProductName() - { - return $this->productName; - } - public function setProductQuantity($productQuantity) - { - $this->productQuantity = $productQuantity; - } - public function getProductQuantity() - { - return $this->productQuantity; - } - public function setProductSku($productSku) - { - $this->productSku = $productSku; - } - public function getProductSku() - { - return $this->productSku; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/Report.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/Report.php deleted file mode 100644 index 4e997bb7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/Report.php +++ /dev/null @@ -1,62 +0,0 @@ -columnHeader = $columnHeader; - } - /** - * @return Google_Service_AnalyticsReporting_ColumnHeader - */ - public function getColumnHeader() - { - return $this->columnHeader; - } - /** - * @param Google_Service_AnalyticsReporting_ReportData - */ - public function setData(Google_Service_AnalyticsReporting_ReportData $data) - { - $this->data = $data; - } - /** - * @return Google_Service_AnalyticsReporting_ReportData - */ - public function getData() - { - return $this->data; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/ReportData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/ReportData.php deleted file mode 100644 index 28ce25da..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/ReportData.php +++ /dev/null @@ -1,131 +0,0 @@ -dataLastRefreshed = $dataLastRefreshed; - } - public function getDataLastRefreshed() - { - return $this->dataLastRefreshed; - } - public function setIsDataGolden($isDataGolden) - { - $this->isDataGolden = $isDataGolden; - } - public function getIsDataGolden() - { - return $this->isDataGolden; - } - /** - * @param Google_Service_AnalyticsReporting_DateRangeValues - */ - public function setMaximums($maximums) - { - $this->maximums = $maximums; - } - /** - * @return Google_Service_AnalyticsReporting_DateRangeValues - */ - public function getMaximums() - { - return $this->maximums; - } - /** - * @param Google_Service_AnalyticsReporting_DateRangeValues - */ - public function setMinimums($minimums) - { - $this->minimums = $minimums; - } - /** - * @return Google_Service_AnalyticsReporting_DateRangeValues - */ - public function getMinimums() - { - return $this->minimums; - } - public function setRowCount($rowCount) - { - $this->rowCount = $rowCount; - } - public function getRowCount() - { - return $this->rowCount; - } - /** - * @param Google_Service_AnalyticsReporting_ReportRow - */ - public function setRows($rows) - { - $this->rows = $rows; - } - /** - * @return Google_Service_AnalyticsReporting_ReportRow - */ - public function getRows() - { - return $this->rows; - } - public function setSamplesReadCounts($samplesReadCounts) - { - $this->samplesReadCounts = $samplesReadCounts; - } - public function getSamplesReadCounts() - { - return $this->samplesReadCounts; - } - public function setSamplingSpaceSizes($samplingSpaceSizes) - { - $this->samplingSpaceSizes = $samplingSpaceSizes; - } - public function getSamplingSpaceSizes() - { - return $this->samplingSpaceSizes; - } - /** - * @param Google_Service_AnalyticsReporting_DateRangeValues - */ - public function setTotals($totals) - { - $this->totals = $totals; - } - /** - * @return Google_Service_AnalyticsReporting_DateRangeValues - */ - public function getTotals() - { - return $this->totals; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/ReportRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/ReportRequest.php deleted file mode 100644 index dc15c998..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/ReportRequest.php +++ /dev/null @@ -1,238 +0,0 @@ -cohortGroup = $cohortGroup; - } - /** - * @return Google_Service_AnalyticsReporting_CohortGroup - */ - public function getCohortGroup() - { - return $this->cohortGroup; - } - /** - * @param Google_Service_AnalyticsReporting_DateRange - */ - public function setDateRanges($dateRanges) - { - $this->dateRanges = $dateRanges; - } - /** - * @return Google_Service_AnalyticsReporting_DateRange - */ - public function getDateRanges() - { - return $this->dateRanges; - } - /** - * @param Google_Service_AnalyticsReporting_DimensionFilterClause - */ - public function setDimensionFilterClauses($dimensionFilterClauses) - { - $this->dimensionFilterClauses = $dimensionFilterClauses; - } - /** - * @return Google_Service_AnalyticsReporting_DimensionFilterClause - */ - public function getDimensionFilterClauses() - { - return $this->dimensionFilterClauses; - } - /** - * @param Google_Service_AnalyticsReporting_Dimension - */ - public function setDimensions($dimensions) - { - $this->dimensions = $dimensions; - } - /** - * @return Google_Service_AnalyticsReporting_Dimension - */ - public function getDimensions() - { - return $this->dimensions; - } - public function setFiltersExpression($filtersExpression) - { - $this->filtersExpression = $filtersExpression; - } - public function getFiltersExpression() - { - return $this->filtersExpression; - } - public function setHideTotals($hideTotals) - { - $this->hideTotals = $hideTotals; - } - public function getHideTotals() - { - return $this->hideTotals; - } - public function setHideValueRanges($hideValueRanges) - { - $this->hideValueRanges = $hideValueRanges; - } - public function getHideValueRanges() - { - return $this->hideValueRanges; - } - public function setIncludeEmptyRows($includeEmptyRows) - { - $this->includeEmptyRows = $includeEmptyRows; - } - public function getIncludeEmptyRows() - { - return $this->includeEmptyRows; - } - /** - * @param Google_Service_AnalyticsReporting_MetricFilterClause - */ - public function setMetricFilterClauses($metricFilterClauses) - { - $this->metricFilterClauses = $metricFilterClauses; - } - /** - * @return Google_Service_AnalyticsReporting_MetricFilterClause - */ - public function getMetricFilterClauses() - { - return $this->metricFilterClauses; - } - /** - * @param Google_Service_AnalyticsReporting_Metric - */ - public function setMetrics($metrics) - { - $this->metrics = $metrics; - } - /** - * @return Google_Service_AnalyticsReporting_Metric - */ - public function getMetrics() - { - return $this->metrics; - } - /** - * @param Google_Service_AnalyticsReporting_OrderBy - */ - public function setOrderBys($orderBys) - { - $this->orderBys = $orderBys; - } - /** - * @return Google_Service_AnalyticsReporting_OrderBy - */ - public function getOrderBys() - { - return $this->orderBys; - } - public function setPageSize($pageSize) - { - $this->pageSize = $pageSize; - } - public function getPageSize() - { - return $this->pageSize; - } - public function setPageToken($pageToken) - { - $this->pageToken = $pageToken; - } - public function getPageToken() - { - return $this->pageToken; - } - /** - * @param Google_Service_AnalyticsReporting_Pivot - */ - public function setPivots($pivots) - { - $this->pivots = $pivots; - } - /** - * @return Google_Service_AnalyticsReporting_Pivot - */ - public function getPivots() - { - return $this->pivots; - } - public function setSamplingLevel($samplingLevel) - { - $this->samplingLevel = $samplingLevel; - } - public function getSamplingLevel() - { - return $this->samplingLevel; - } - /** - * @param Google_Service_AnalyticsReporting_Segment - */ - public function setSegments($segments) - { - $this->segments = $segments; - } - /** - * @return Google_Service_AnalyticsReporting_Segment - */ - public function getSegments() - { - return $this->segments; - } - public function setViewId($viewId) - { - $this->viewId = $viewId; - } - public function getViewId() - { - return $this->viewId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/ReportRow.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/ReportRow.php deleted file mode 100644 index 63710ad8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/ReportRow.php +++ /dev/null @@ -1,47 +0,0 @@ -dimensions = $dimensions; - } - public function getDimensions() - { - return $this->dimensions; - } - /** - * @param Google_Service_AnalyticsReporting_DateRangeValues - */ - public function setMetrics($metrics) - { - $this->metrics = $metrics; - } - /** - * @return Google_Service_AnalyticsReporting_DateRangeValues - */ - public function getMetrics() - { - return $this->metrics; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/Resource/Reports.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/Resource/Reports.php deleted file mode 100644 index ebecdeba..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/Resource/Reports.php +++ /dev/null @@ -1,41 +0,0 @@ - - * $analyticsreportingService = new Google_Service_AnalyticsReporting(...); - * $reports = $analyticsreportingService->reports; - * - */ -class Google_Service_AnalyticsReporting_Resource_Reports extends Google_Service_Resource -{ - /** - * Returns the Analytics data. (reports.batchGet) - * - * @param Google_Service_AnalyticsReporting_GetReportsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AnalyticsReporting_GetReportsResponse - */ - public function batchGet(Google_Service_AnalyticsReporting_GetReportsRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('batchGet', array($params), "Google_Service_AnalyticsReporting_GetReportsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/Resource/UserActivity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/Resource/UserActivity.php deleted file mode 100644 index 834f1252..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/Resource/UserActivity.php +++ /dev/null @@ -1,41 +0,0 @@ - - * $analyticsreportingService = new Google_Service_AnalyticsReporting(...); - * $userActivity = $analyticsreportingService->userActivity; - * - */ -class Google_Service_AnalyticsReporting_Resource_UserActivity extends Google_Service_Resource -{ - /** - * Returns User Activity data. (userActivity.search) - * - * @param Google_Service_AnalyticsReporting_SearchUserActivityRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AnalyticsReporting_SearchUserActivityResponse - */ - public function search(Google_Service_AnalyticsReporting_SearchUserActivityRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('search', array($params), "Google_Service_AnalyticsReporting_SearchUserActivityResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/ResourceQuotasRemaining.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/ResourceQuotasRemaining.php deleted file mode 100644 index 138bb336..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/ResourceQuotasRemaining.php +++ /dev/null @@ -1,39 +0,0 @@ -dailyQuotaTokensRemaining = $dailyQuotaTokensRemaining; - } - public function getDailyQuotaTokensRemaining() - { - return $this->dailyQuotaTokensRemaining; - } - public function setHourlyQuotaTokensRemaining($hourlyQuotaTokensRemaining) - { - $this->hourlyQuotaTokensRemaining = $hourlyQuotaTokensRemaining; - } - public function getHourlyQuotaTokensRemaining() - { - return $this->hourlyQuotaTokensRemaining; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/ScreenviewData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/ScreenviewData.php deleted file mode 100644 index 5eb32b4f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/ScreenviewData.php +++ /dev/null @@ -1,57 +0,0 @@ -appName = $appName; - } - public function getAppName() - { - return $this->appName; - } - public function setMobileDeviceBranding($mobileDeviceBranding) - { - $this->mobileDeviceBranding = $mobileDeviceBranding; - } - public function getMobileDeviceBranding() - { - return $this->mobileDeviceBranding; - } - public function setMobileDeviceModel($mobileDeviceModel) - { - $this->mobileDeviceModel = $mobileDeviceModel; - } - public function getMobileDeviceModel() - { - return $this->mobileDeviceModel; - } - public function setScreenName($screenName) - { - $this->screenName = $screenName; - } - public function getScreenName() - { - return $this->screenName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/SearchUserActivityRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/SearchUserActivityRequest.php deleted file mode 100644 index 52600808..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/SearchUserActivityRequest.php +++ /dev/null @@ -1,90 +0,0 @@ -activityTypes = $activityTypes; - } - public function getActivityTypes() - { - return $this->activityTypes; - } - /** - * @param Google_Service_AnalyticsReporting_DateRange - */ - public function setDateRange(Google_Service_AnalyticsReporting_DateRange $dateRange) - { - $this->dateRange = $dateRange; - } - /** - * @return Google_Service_AnalyticsReporting_DateRange - */ - public function getDateRange() - { - return $this->dateRange; - } - public function setPageSize($pageSize) - { - $this->pageSize = $pageSize; - } - public function getPageSize() - { - return $this->pageSize; - } - public function setPageToken($pageToken) - { - $this->pageToken = $pageToken; - } - public function getPageToken() - { - return $this->pageToken; - } - /** - * @param Google_Service_AnalyticsReporting_User - */ - public function setUser(Google_Service_AnalyticsReporting_User $user) - { - $this->user = $user; - } - /** - * @return Google_Service_AnalyticsReporting_User - */ - public function getUser() - { - return $this->user; - } - public function setViewId($viewId) - { - $this->viewId = $viewId; - } - public function getViewId() - { - return $this->viewId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/SearchUserActivityResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/SearchUserActivityResponse.php deleted file mode 100644 index b6b058db..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/SearchUserActivityResponse.php +++ /dev/null @@ -1,65 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setSampleRate($sampleRate) - { - $this->sampleRate = $sampleRate; - } - public function getSampleRate() - { - return $this->sampleRate; - } - /** - * @param Google_Service_AnalyticsReporting_UserActivitySession - */ - public function setSessions($sessions) - { - $this->sessions = $sessions; - } - /** - * @return Google_Service_AnalyticsReporting_UserActivitySession - */ - public function getSessions() - { - return $this->sessions; - } - public function setTotalRows($totalRows) - { - $this->totalRows = $totalRows; - } - public function getTotalRows() - { - return $this->totalRows; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/Segment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/Segment.php deleted file mode 100644 index a79edf9e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/Segment.php +++ /dev/null @@ -1,46 +0,0 @@ -dynamicSegment = $dynamicSegment; - } - /** - * @return Google_Service_AnalyticsReporting_DynamicSegment - */ - public function getDynamicSegment() - { - return $this->dynamicSegment; - } - public function setSegmentId($segmentId) - { - $this->segmentId = $segmentId; - } - public function getSegmentId() - { - return $this->segmentId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/SegmentDefinition.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/SegmentDefinition.php deleted file mode 100644 index 911e5a43..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/SegmentDefinition.php +++ /dev/null @@ -1,38 +0,0 @@ -segmentFilters = $segmentFilters; - } - /** - * @return Google_Service_AnalyticsReporting_SegmentFilter - */ - public function getSegmentFilters() - { - return $this->segmentFilters; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/SegmentDimensionFilter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/SegmentDimensionFilter.php deleted file mode 100644 index 4cb044dc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/SegmentDimensionFilter.php +++ /dev/null @@ -1,76 +0,0 @@ -caseSensitive = $caseSensitive; - } - public function getCaseSensitive() - { - return $this->caseSensitive; - } - public function setDimensionName($dimensionName) - { - $this->dimensionName = $dimensionName; - } - public function getDimensionName() - { - return $this->dimensionName; - } - public function setExpressions($expressions) - { - $this->expressions = $expressions; - } - public function getExpressions() - { - return $this->expressions; - } - public function setMaxComparisonValue($maxComparisonValue) - { - $this->maxComparisonValue = $maxComparisonValue; - } - public function getMaxComparisonValue() - { - return $this->maxComparisonValue; - } - public function setMinComparisonValue($minComparisonValue) - { - $this->minComparisonValue = $minComparisonValue; - } - public function getMinComparisonValue() - { - return $this->minComparisonValue; - } - public function setOperator($operator) - { - $this->operator = $operator; - } - public function getOperator() - { - return $this->operator; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/SegmentFilter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/SegmentFilter.php deleted file mode 100644 index f0e32d18..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/SegmentFilter.php +++ /dev/null @@ -1,62 +0,0 @@ -not = $not; - } - public function getNot() - { - return $this->not; - } - /** - * @param Google_Service_AnalyticsReporting_SequenceSegment - */ - public function setSequenceSegment(Google_Service_AnalyticsReporting_SequenceSegment $sequenceSegment) - { - $this->sequenceSegment = $sequenceSegment; - } - /** - * @return Google_Service_AnalyticsReporting_SequenceSegment - */ - public function getSequenceSegment() - { - return $this->sequenceSegment; - } - /** - * @param Google_Service_AnalyticsReporting_SimpleSegment - */ - public function setSimpleSegment(Google_Service_AnalyticsReporting_SimpleSegment $simpleSegment) - { - $this->simpleSegment = $simpleSegment; - } - /** - * @return Google_Service_AnalyticsReporting_SimpleSegment - */ - public function getSimpleSegment() - { - return $this->simpleSegment; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/SegmentFilterClause.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/SegmentFilterClause.php deleted file mode 100644 index f2ffb60b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/SegmentFilterClause.php +++ /dev/null @@ -1,62 +0,0 @@ -dimensionFilter = $dimensionFilter; - } - /** - * @return Google_Service_AnalyticsReporting_SegmentDimensionFilter - */ - public function getDimensionFilter() - { - return $this->dimensionFilter; - } - /** - * @param Google_Service_AnalyticsReporting_SegmentMetricFilter - */ - public function setMetricFilter(Google_Service_AnalyticsReporting_SegmentMetricFilter $metricFilter) - { - $this->metricFilter = $metricFilter; - } - /** - * @return Google_Service_AnalyticsReporting_SegmentMetricFilter - */ - public function getMetricFilter() - { - return $this->metricFilter; - } - public function setNot($not) - { - $this->not = $not; - } - public function getNot() - { - return $this->not; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/SegmentMetricFilter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/SegmentMetricFilter.php deleted file mode 100644 index 4e1bfab4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/SegmentMetricFilter.php +++ /dev/null @@ -1,66 +0,0 @@ -comparisonValue = $comparisonValue; - } - public function getComparisonValue() - { - return $this->comparisonValue; - } - public function setMaxComparisonValue($maxComparisonValue) - { - $this->maxComparisonValue = $maxComparisonValue; - } - public function getMaxComparisonValue() - { - return $this->maxComparisonValue; - } - public function setMetricName($metricName) - { - $this->metricName = $metricName; - } - public function getMetricName() - { - return $this->metricName; - } - public function setOperator($operator) - { - $this->operator = $operator; - } - public function getOperator() - { - return $this->operator; - } - public function setScope($scope) - { - $this->scope = $scope; - } - public function getScope() - { - return $this->scope; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/SegmentSequenceStep.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/SegmentSequenceStep.php deleted file mode 100644 index a1668b39..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/SegmentSequenceStep.php +++ /dev/null @@ -1,47 +0,0 @@ -matchType = $matchType; - } - public function getMatchType() - { - return $this->matchType; - } - /** - * @param Google_Service_AnalyticsReporting_OrFiltersForSegment - */ - public function setOrFiltersForSegment($orFiltersForSegment) - { - $this->orFiltersForSegment = $orFiltersForSegment; - } - /** - * @return Google_Service_AnalyticsReporting_OrFiltersForSegment - */ - public function getOrFiltersForSegment() - { - return $this->orFiltersForSegment; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/SequenceSegment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/SequenceSegment.php deleted file mode 100644 index d0fe5303..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/SequenceSegment.php +++ /dev/null @@ -1,47 +0,0 @@ -firstStepShouldMatchFirstHit = $firstStepShouldMatchFirstHit; - } - public function getFirstStepShouldMatchFirstHit() - { - return $this->firstStepShouldMatchFirstHit; - } - /** - * @param Google_Service_AnalyticsReporting_SegmentSequenceStep - */ - public function setSegmentSequenceSteps($segmentSequenceSteps) - { - $this->segmentSequenceSteps = $segmentSequenceSteps; - } - /** - * @return Google_Service_AnalyticsReporting_SegmentSequenceStep - */ - public function getSegmentSequenceSteps() - { - return $this->segmentSequenceSteps; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/SimpleSegment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/SimpleSegment.php deleted file mode 100644 index 5865330d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/SimpleSegment.php +++ /dev/null @@ -1,38 +0,0 @@ -orFiltersForSegment = $orFiltersForSegment; - } - /** - * @return Google_Service_AnalyticsReporting_OrFiltersForSegment - */ - public function getOrFiltersForSegment() - { - return $this->orFiltersForSegment; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/TransactionData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/TransactionData.php deleted file mode 100644 index a9d3c15c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/TransactionData.php +++ /dev/null @@ -1,57 +0,0 @@ -transactionId = $transactionId; - } - public function getTransactionId() - { - return $this->transactionId; - } - public function setTransactionRevenue($transactionRevenue) - { - $this->transactionRevenue = $transactionRevenue; - } - public function getTransactionRevenue() - { - return $this->transactionRevenue; - } - public function setTransactionShipping($transactionShipping) - { - $this->transactionShipping = $transactionShipping; - } - public function getTransactionShipping() - { - return $this->transactionShipping; - } - public function setTransactionTax($transactionTax) - { - $this->transactionTax = $transactionTax; - } - public function getTransactionTax() - { - return $this->transactionTax; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/User.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/User.php deleted file mode 100644 index e095928f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/User.php +++ /dev/null @@ -1,39 +0,0 @@ -type = $type; - } - public function getType() - { - return $this->type; - } - public function setUserId($userId) - { - $this->userId = $userId; - } - public function getUserId() - { - return $this->userId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/UserActivitySession.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/UserActivitySession.php deleted file mode 100644 index 69e4352c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/UserActivitySession.php +++ /dev/null @@ -1,83 +0,0 @@ -activities = $activities; - } - /** - * @return Google_Service_AnalyticsReporting_Activity - */ - public function getActivities() - { - return $this->activities; - } - public function setDataSource($dataSource) - { - $this->dataSource = $dataSource; - } - public function getDataSource() - { - return $this->dataSource; - } - public function setDeviceCategory($deviceCategory) - { - $this->deviceCategory = $deviceCategory; - } - public function getDeviceCategory() - { - return $this->deviceCategory; - } - public function setPlatform($platform) - { - $this->platform = $platform; - } - public function getPlatform() - { - return $this->platform; - } - public function setSessionDate($sessionDate) - { - $this->sessionDate = $sessionDate; - } - public function getSessionDate() - { - return $this->sessionDate; - } - public function setSessionId($sessionId) - { - $this->sessionId = $sessionId; - } - public function getSessionId() - { - return $this->sessionId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise.php deleted file mode 100644 index 5191e7b2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise.php +++ /dev/null @@ -1,1453 +0,0 @@ - - * Manages the deployment of apps to Android for Work users.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_AndroidEnterprise extends Google_Service -{ - /** Manage corporate Android devices. */ - const ANDROIDENTERPRISE = - "https://www.googleapis.com/auth/androidenterprise"; - - public $devices; - public $enterprises; - public $entitlements; - public $grouplicenses; - public $grouplicenseusers; - public $installs; - public $managedconfigurationsfordevice; - public $managedconfigurationsforuser; - public $managedconfigurationssettings; - public $permissions; - public $products; - public $serviceaccountkeys; - public $storelayoutclusters; - public $storelayoutpages; - public $users; - public $webapps; - - /** - * Constructs the internal representation of the AndroidEnterprise service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://www.googleapis.com/'; - $this->servicePath = 'androidenterprise/v1/'; - $this->batchPath = 'batch/androidenterprise/v1'; - $this->version = 'v1'; - $this->serviceName = 'androidenterprise'; - - $this->devices = new Google_Service_AndroidEnterprise_Resource_Devices( - $this, - $this->serviceName, - 'devices', - array( - 'methods' => array( - 'forceReportUpload' => array( - 'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}/forceReportUpload', - 'httpMethod' => 'POST', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'deviceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'deviceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getState' => array( - 'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}/state', - 'httpMethod' => 'GET', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'deviceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'enterprises/{enterpriseId}/users/{userId}/devices', - 'httpMethod' => 'GET', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setState' => array( - 'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}/state', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'deviceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'deviceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->enterprises = new Google_Service_AndroidEnterprise_Resource_Enterprises( - $this, - $this->serviceName, - 'enterprises', - array( - 'methods' => array( - 'acknowledgeNotificationSet' => array( - 'path' => 'enterprises/acknowledgeNotificationSet', - 'httpMethod' => 'POST', - 'parameters' => array( - 'notificationSetId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'completeSignup' => array( - 'path' => 'enterprises/completeSignup', - 'httpMethod' => 'POST', - 'parameters' => array( - 'completionToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'enterpriseToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'createWebToken' => array( - 'path' => 'enterprises/{enterpriseId}/createWebToken', - 'httpMethod' => 'POST', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'enroll' => array( - 'path' => 'enterprises/enroll', - 'httpMethod' => 'POST', - 'parameters' => array( - 'token' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'generateSignupUrl' => array( - 'path' => 'enterprises/signupUrl', - 'httpMethod' => 'POST', - 'parameters' => array( - 'callbackUrl' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'enterprises/{enterpriseId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getServiceAccount' => array( - 'path' => 'enterprises/{enterpriseId}/serviceAccount', - 'httpMethod' => 'GET', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'keyType' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'getStoreLayout' => array( - 'path' => 'enterprises/{enterpriseId}/storeLayout', - 'httpMethod' => 'GET', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'enterprises', - 'httpMethod' => 'GET', - 'parameters' => array( - 'domain' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'pullNotificationSet' => array( - 'path' => 'enterprises/pullNotificationSet', - 'httpMethod' => 'POST', - 'parameters' => array( - 'requestMode' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'sendTestPushNotification' => array( - 'path' => 'enterprises/{enterpriseId}/sendTestPushNotification', - 'httpMethod' => 'POST', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setAccount' => array( - 'path' => 'enterprises/{enterpriseId}/account', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setStoreLayout' => array( - 'path' => 'enterprises/{enterpriseId}/storeLayout', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'unenroll' => array( - 'path' => 'enterprises/{enterpriseId}/unenroll', - 'httpMethod' => 'POST', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->entitlements = new Google_Service_AndroidEnterprise_Resource_Entitlements( - $this, - $this->serviceName, - 'entitlements', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'enterprises/{enterpriseId}/users/{userId}/entitlements/{entitlementId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'entitlementId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'enterprises/{enterpriseId}/users/{userId}/entitlements/{entitlementId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'entitlementId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'enterprises/{enterpriseId}/users/{userId}/entitlements', - 'httpMethod' => 'GET', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'enterprises/{enterpriseId}/users/{userId}/entitlements/{entitlementId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'entitlementId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'install' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ), - ) - ) - ); - $this->grouplicenses = new Google_Service_AndroidEnterprise_Resource_Grouplicenses( - $this, - $this->serviceName, - 'grouplicenses', - array( - 'methods' => array( - 'get' => array( - 'path' => 'enterprises/{enterpriseId}/groupLicenses/{groupLicenseId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'groupLicenseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'enterprises/{enterpriseId}/groupLicenses', - 'httpMethod' => 'GET', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->grouplicenseusers = new Google_Service_AndroidEnterprise_Resource_Grouplicenseusers( - $this, - $this->serviceName, - 'grouplicenseusers', - array( - 'methods' => array( - 'list' => array( - 'path' => 'enterprises/{enterpriseId}/groupLicenses/{groupLicenseId}/users', - 'httpMethod' => 'GET', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'groupLicenseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->installs = new Google_Service_AndroidEnterprise_Resource_Installs( - $this, - $this->serviceName, - 'installs', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}/installs/{installId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'deviceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'installId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}/installs/{installId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'deviceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'installId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}/installs', - 'httpMethod' => 'GET', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'deviceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}/installs/{installId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'deviceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'installId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->managedconfigurationsfordevice = new Google_Service_AndroidEnterprise_Resource_Managedconfigurationsfordevice( - $this, - $this->serviceName, - 'managedconfigurationsfordevice', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}/managedConfigurationsForDevice/{managedConfigurationForDeviceId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'deviceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'managedConfigurationForDeviceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}/managedConfigurationsForDevice/{managedConfigurationForDeviceId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'deviceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'managedConfigurationForDeviceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}/managedConfigurationsForDevice', - 'httpMethod' => 'GET', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'deviceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}/managedConfigurationsForDevice/{managedConfigurationForDeviceId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'deviceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'managedConfigurationForDeviceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->managedconfigurationsforuser = new Google_Service_AndroidEnterprise_Resource_Managedconfigurationsforuser( - $this, - $this->serviceName, - 'managedconfigurationsforuser', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'enterprises/{enterpriseId}/users/{userId}/managedConfigurationsForUser/{managedConfigurationForUserId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'managedConfigurationForUserId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'enterprises/{enterpriseId}/users/{userId}/managedConfigurationsForUser/{managedConfigurationForUserId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'managedConfigurationForUserId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'enterprises/{enterpriseId}/users/{userId}/managedConfigurationsForUser', - 'httpMethod' => 'GET', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'enterprises/{enterpriseId}/users/{userId}/managedConfigurationsForUser/{managedConfigurationForUserId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'managedConfigurationForUserId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->managedconfigurationssettings = new Google_Service_AndroidEnterprise_Resource_Managedconfigurationssettings( - $this, - $this->serviceName, - 'managedconfigurationssettings', - array( - 'methods' => array( - 'list' => array( - 'path' => 'enterprises/{enterpriseId}/products/{productId}/managedConfigurationsSettings', - 'httpMethod' => 'GET', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'productId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->permissions = new Google_Service_AndroidEnterprise_Resource_Permissions( - $this, - $this->serviceName, - 'permissions', - array( - 'methods' => array( - 'get' => array( - 'path' => 'permissions/{permissionId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'permissionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->products = new Google_Service_AndroidEnterprise_Resource_Products( - $this, - $this->serviceName, - 'products', - array( - 'methods' => array( - 'approve' => array( - 'path' => 'enterprises/{enterpriseId}/products/{productId}/approve', - 'httpMethod' => 'POST', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'productId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'generateApprovalUrl' => array( - 'path' => 'enterprises/{enterpriseId}/products/{productId}/generateApprovalUrl', - 'httpMethod' => 'POST', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'productId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'languageCode' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'enterprises/{enterpriseId}/products/{productId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'productId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'getAppRestrictionsSchema' => array( - 'path' => 'enterprises/{enterpriseId}/products/{productId}/appRestrictionsSchema', - 'httpMethod' => 'GET', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'productId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'getPermissions' => array( - 'path' => 'enterprises/{enterpriseId}/products/{productId}/permissions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'productId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'enterprises/{enterpriseId}/products', - 'httpMethod' => 'GET', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'approved' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'query' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'token' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'unapprove' => array( - 'path' => 'enterprises/{enterpriseId}/products/{productId}/unapprove', - 'httpMethod' => 'POST', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'productId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->serviceaccountkeys = new Google_Service_AndroidEnterprise_Resource_Serviceaccountkeys( - $this, - $this->serviceName, - 'serviceaccountkeys', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'enterprises/{enterpriseId}/serviceAccountKeys/{keyId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'keyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'enterprises/{enterpriseId}/serviceAccountKeys', - 'httpMethod' => 'POST', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'enterprises/{enterpriseId}/serviceAccountKeys', - 'httpMethod' => 'GET', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->storelayoutclusters = new Google_Service_AndroidEnterprise_Resource_Storelayoutclusters( - $this, - $this->serviceName, - 'storelayoutclusters', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'enterprises/{enterpriseId}/storeLayout/pages/{pageId}/clusters/{clusterId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clusterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'enterprises/{enterpriseId}/storeLayout/pages/{pageId}/clusters/{clusterId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clusterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'enterprises/{enterpriseId}/storeLayout/pages/{pageId}/clusters', - 'httpMethod' => 'POST', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'enterprises/{enterpriseId}/storeLayout/pages/{pageId}/clusters', - 'httpMethod' => 'GET', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'enterprises/{enterpriseId}/storeLayout/pages/{pageId}/clusters/{clusterId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clusterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->storelayoutpages = new Google_Service_AndroidEnterprise_Resource_Storelayoutpages( - $this, - $this->serviceName, - 'storelayoutpages', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'enterprises/{enterpriseId}/storeLayout/pages/{pageId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'enterprises/{enterpriseId}/storeLayout/pages/{pageId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'enterprises/{enterpriseId}/storeLayout/pages', - 'httpMethod' => 'POST', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'enterprises/{enterpriseId}/storeLayout/pages', - 'httpMethod' => 'GET', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'enterprises/{enterpriseId}/storeLayout/pages/{pageId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->users = new Google_Service_AndroidEnterprise_Resource_Users( - $this, - $this->serviceName, - 'users', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'enterprises/{enterpriseId}/users/{userId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'generateAuthenticationToken' => array( - 'path' => 'enterprises/{enterpriseId}/users/{userId}/authenticationToken', - 'httpMethod' => 'POST', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'generateToken' => array( - 'path' => 'enterprises/{enterpriseId}/users/{userId}/token', - 'httpMethod' => 'POST', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'enterprises/{enterpriseId}/users/{userId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getAvailableProductSet' => array( - 'path' => 'enterprises/{enterpriseId}/users/{userId}/availableProductSet', - 'httpMethod' => 'GET', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'enterprises/{enterpriseId}/users', - 'httpMethod' => 'POST', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'enterprises/{enterpriseId}/users', - 'httpMethod' => 'GET', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'email' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'revokeDeviceAccess' => array( - 'path' => 'enterprises/{enterpriseId}/users/{userId}/deviceAccess', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'revokeToken' => array( - 'path' => 'enterprises/{enterpriseId}/users/{userId}/token', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setAvailableProductSet' => array( - 'path' => 'enterprises/{enterpriseId}/users/{userId}/availableProductSet', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'enterprises/{enterpriseId}/users/{userId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->webapps = new Google_Service_AndroidEnterprise_Resource_Webapps( - $this, - $this->serviceName, - 'webapps', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'enterprises/{enterpriseId}/webApps/{webAppId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webAppId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'enterprises/{enterpriseId}/webApps/{webAppId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webAppId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'enterprises/{enterpriseId}/webApps', - 'httpMethod' => 'POST', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'enterprises/{enterpriseId}/webApps', - 'httpMethod' => 'GET', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'enterprises/{enterpriseId}/webApps/{webAppId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'enterpriseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'webAppId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Administrator.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Administrator.php deleted file mode 100644 index a7d7d301..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Administrator.php +++ /dev/null @@ -1,30 +0,0 @@ -email = $email; - } - public function getEmail() - { - return $this->email; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/AdministratorWebToken.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/AdministratorWebToken.php deleted file mode 100644 index 1d22fbaf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/AdministratorWebToken.php +++ /dev/null @@ -1,39 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setToken($token) - { - $this->token = $token; - } - public function getToken() - { - return $this->token; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/AdministratorWebTokenSpec.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/AdministratorWebTokenSpec.php deleted file mode 100644 index 853555f3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/AdministratorWebTokenSpec.php +++ /dev/null @@ -1,129 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_AndroidEnterprise_AdministratorWebTokenSpecManagedConfigurations - */ - public function setManagedConfigurations(Google_Service_AndroidEnterprise_AdministratorWebTokenSpecManagedConfigurations $managedConfigurations) - { - $this->managedConfigurations = $managedConfigurations; - } - /** - * @return Google_Service_AndroidEnterprise_AdministratorWebTokenSpecManagedConfigurations - */ - public function getManagedConfigurations() - { - return $this->managedConfigurations; - } - public function setParent($parent) - { - $this->parent = $parent; - } - public function getParent() - { - return $this->parent; - } - public function setPermission($permission) - { - $this->permission = $permission; - } - public function getPermission() - { - return $this->permission; - } - /** - * @param Google_Service_AndroidEnterprise_AdministratorWebTokenSpecPlaySearch - */ - public function setPlaySearch(Google_Service_AndroidEnterprise_AdministratorWebTokenSpecPlaySearch $playSearch) - { - $this->playSearch = $playSearch; - } - /** - * @return Google_Service_AndroidEnterprise_AdministratorWebTokenSpecPlaySearch - */ - public function getPlaySearch() - { - return $this->playSearch; - } - /** - * @param Google_Service_AndroidEnterprise_AdministratorWebTokenSpecPrivateApps - */ - public function setPrivateApps(Google_Service_AndroidEnterprise_AdministratorWebTokenSpecPrivateApps $privateApps) - { - $this->privateApps = $privateApps; - } - /** - * @return Google_Service_AndroidEnterprise_AdministratorWebTokenSpecPrivateApps - */ - public function getPrivateApps() - { - return $this->privateApps; - } - /** - * @param Google_Service_AndroidEnterprise_AdministratorWebTokenSpecStoreBuilder - */ - public function setStoreBuilder(Google_Service_AndroidEnterprise_AdministratorWebTokenSpecStoreBuilder $storeBuilder) - { - $this->storeBuilder = $storeBuilder; - } - /** - * @return Google_Service_AndroidEnterprise_AdministratorWebTokenSpecStoreBuilder - */ - public function getStoreBuilder() - { - return $this->storeBuilder; - } - /** - * @param Google_Service_AndroidEnterprise_AdministratorWebTokenSpecWebApps - */ - public function setWebApps(Google_Service_AndroidEnterprise_AdministratorWebTokenSpecWebApps $webApps) - { - $this->webApps = $webApps; - } - /** - * @return Google_Service_AndroidEnterprise_AdministratorWebTokenSpecWebApps - */ - public function getWebApps() - { - return $this->webApps; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/AdministratorWebTokenSpecManagedConfigurations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/AdministratorWebTokenSpecManagedConfigurations.php deleted file mode 100644 index 9b3a2151..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/AdministratorWebTokenSpecManagedConfigurations.php +++ /dev/null @@ -1,30 +0,0 @@ -enabled = $enabled; - } - public function getEnabled() - { - return $this->enabled; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/AdministratorWebTokenSpecPlaySearch.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/AdministratorWebTokenSpecPlaySearch.php deleted file mode 100644 index e9741c52..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/AdministratorWebTokenSpecPlaySearch.php +++ /dev/null @@ -1,39 +0,0 @@ -approveApps = $approveApps; - } - public function getApproveApps() - { - return $this->approveApps; - } - public function setEnabled($enabled) - { - $this->enabled = $enabled; - } - public function getEnabled() - { - return $this->enabled; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/AdministratorWebTokenSpecPrivateApps.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/AdministratorWebTokenSpecPrivateApps.php deleted file mode 100644 index eea4912f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/AdministratorWebTokenSpecPrivateApps.php +++ /dev/null @@ -1,30 +0,0 @@ -enabled = $enabled; - } - public function getEnabled() - { - return $this->enabled; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/AdministratorWebTokenSpecStoreBuilder.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/AdministratorWebTokenSpecStoreBuilder.php deleted file mode 100644 index 1932a18c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/AdministratorWebTokenSpecStoreBuilder.php +++ /dev/null @@ -1,30 +0,0 @@ -enabled = $enabled; - } - public function getEnabled() - { - return $this->enabled; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/AdministratorWebTokenSpecWebApps.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/AdministratorWebTokenSpecWebApps.php deleted file mode 100644 index 5158eb40..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/AdministratorWebTokenSpecWebApps.php +++ /dev/null @@ -1,30 +0,0 @@ -enabled = $enabled; - } - public function getEnabled() - { - return $this->enabled; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/AppRestrictionsSchema.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/AppRestrictionsSchema.php deleted file mode 100644 index 28d55ac3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/AppRestrictionsSchema.php +++ /dev/null @@ -1,47 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_AndroidEnterprise_AppRestrictionsSchemaRestriction - */ - public function setRestrictions($restrictions) - { - $this->restrictions = $restrictions; - } - /** - * @return Google_Service_AndroidEnterprise_AppRestrictionsSchemaRestriction - */ - public function getRestrictions() - { - return $this->restrictions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/AppRestrictionsSchemaChangeEvent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/AppRestrictionsSchemaChangeEvent.php deleted file mode 100644 index 4eabbc19..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/AppRestrictionsSchemaChangeEvent.php +++ /dev/null @@ -1,30 +0,0 @@ -productId = $productId; - } - public function getProductId() - { - return $this->productId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/AppRestrictionsSchemaRestriction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/AppRestrictionsSchemaRestriction.php deleted file mode 100644 index be877ecf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/AppRestrictionsSchemaRestriction.php +++ /dev/null @@ -1,108 +0,0 @@ -defaultValue = $defaultValue; - } - /** - * @return Google_Service_AndroidEnterprise_AppRestrictionsSchemaRestrictionRestrictionValue - */ - public function getDefaultValue() - { - return $this->defaultValue; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setEntry($entry) - { - $this->entry = $entry; - } - public function getEntry() - { - return $this->entry; - } - public function setEntryValue($entryValue) - { - $this->entryValue = $entryValue; - } - public function getEntryValue() - { - return $this->entryValue; - } - public function setKey($key) - { - $this->key = $key; - } - public function getKey() - { - return $this->key; - } - /** - * @param Google_Service_AndroidEnterprise_AppRestrictionsSchemaRestriction - */ - public function setNestedRestriction($nestedRestriction) - { - $this->nestedRestriction = $nestedRestriction; - } - /** - * @return Google_Service_AndroidEnterprise_AppRestrictionsSchemaRestriction - */ - public function getNestedRestriction() - { - return $this->nestedRestriction; - } - public function setRestrictionType($restrictionType) - { - $this->restrictionType = $restrictionType; - } - public function getRestrictionType() - { - return $this->restrictionType; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/AppRestrictionsSchemaRestrictionRestrictionValue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/AppRestrictionsSchemaRestrictionRestrictionValue.php deleted file mode 100644 index a1fa8f37..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/AppRestrictionsSchemaRestrictionRestrictionValue.php +++ /dev/null @@ -1,67 +0,0 @@ -type = $type; - } - public function getType() - { - return $this->type; - } - public function setValueBool($valueBool) - { - $this->valueBool = $valueBool; - } - public function getValueBool() - { - return $this->valueBool; - } - public function setValueInteger($valueInteger) - { - $this->valueInteger = $valueInteger; - } - public function getValueInteger() - { - return $this->valueInteger; - } - public function setValueMultiselect($valueMultiselect) - { - $this->valueMultiselect = $valueMultiselect; - } - public function getValueMultiselect() - { - return $this->valueMultiselect; - } - public function setValueString($valueString) - { - $this->valueString = $valueString; - } - public function getValueString() - { - return $this->valueString; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/AppState.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/AppState.php deleted file mode 100644 index f48c8ed9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/AppState.php +++ /dev/null @@ -1,47 +0,0 @@ -keyedAppState = $keyedAppState; - } - /** - * @return Google_Service_AndroidEnterprise_KeyedAppState - */ - public function getKeyedAppState() - { - return $this->keyedAppState; - } - public function setPackageName($packageName) - { - $this->packageName = $packageName; - } - public function getPackageName() - { - return $this->packageName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/AppUpdateEvent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/AppUpdateEvent.php deleted file mode 100644 index 0c502488..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/AppUpdateEvent.php +++ /dev/null @@ -1,30 +0,0 @@ -productId = $productId; - } - public function getProductId() - { - return $this->productId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/AppVersion.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/AppVersion.php deleted file mode 100644 index 5a87a436..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/AppVersion.php +++ /dev/null @@ -1,67 +0,0 @@ -isProduction = $isProduction; - } - public function getIsProduction() - { - return $this->isProduction; - } - public function setTrack($track) - { - $this->track = $track; - } - public function getTrack() - { - return $this->track; - } - public function setTrackId($trackId) - { - $this->trackId = $trackId; - } - public function getTrackId() - { - return $this->trackId; - } - public function setVersionCode($versionCode) - { - $this->versionCode = $versionCode; - } - public function getVersionCode() - { - return $this->versionCode; - } - public function setVersionString($versionString) - { - $this->versionString = $versionString; - } - public function getVersionString() - { - return $this->versionString; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ApprovalUrlInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ApprovalUrlInfo.php deleted file mode 100644 index a73634ba..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ApprovalUrlInfo.php +++ /dev/null @@ -1,39 +0,0 @@ -approvalUrl = $approvalUrl; - } - public function getApprovalUrl() - { - return $this->approvalUrl; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/AuthenticationToken.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/AuthenticationToken.php deleted file mode 100644 index f916738f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/AuthenticationToken.php +++ /dev/null @@ -1,39 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setToken($token) - { - $this->token = $token; - } - public function getToken() - { - return $this->token; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/AutoInstallConstraint.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/AutoInstallConstraint.php deleted file mode 100644 index 6efc71e9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/AutoInstallConstraint.php +++ /dev/null @@ -1,48 +0,0 @@ -chargingStateConstraint = $chargingStateConstraint; - } - public function getChargingStateConstraint() - { - return $this->chargingStateConstraint; - } - public function setDeviceIdleStateConstraint($deviceIdleStateConstraint) - { - $this->deviceIdleStateConstraint = $deviceIdleStateConstraint; - } - public function getDeviceIdleStateConstraint() - { - return $this->deviceIdleStateConstraint; - } - public function setNetworkTypeConstraint($networkTypeConstraint) - { - $this->networkTypeConstraint = $networkTypeConstraint; - } - public function getNetworkTypeConstraint() - { - return $this->networkTypeConstraint; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/AutoInstallPolicy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/AutoInstallPolicy.php deleted file mode 100644 index 70b3b6e7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/AutoInstallPolicy.php +++ /dev/null @@ -1,65 +0,0 @@ -autoInstallConstraint = $autoInstallConstraint; - } - /** - * @return Google_Service_AndroidEnterprise_AutoInstallConstraint - */ - public function getAutoInstallConstraint() - { - return $this->autoInstallConstraint; - } - public function setAutoInstallMode($autoInstallMode) - { - $this->autoInstallMode = $autoInstallMode; - } - public function getAutoInstallMode() - { - return $this->autoInstallMode; - } - public function setAutoInstallPriority($autoInstallPriority) - { - $this->autoInstallPriority = $autoInstallPriority; - } - public function getAutoInstallPriority() - { - return $this->autoInstallPriority; - } - public function setMinimumVersionCode($minimumVersionCode) - { - $this->minimumVersionCode = $minimumVersionCode; - } - public function getMinimumVersionCode() - { - return $this->minimumVersionCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ConfigurationVariables.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ConfigurationVariables.php deleted file mode 100644 index cdcf964e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ConfigurationVariables.php +++ /dev/null @@ -1,56 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setMcmId($mcmId) - { - $this->mcmId = $mcmId; - } - public function getMcmId() - { - return $this->mcmId; - } - /** - * @param Google_Service_AndroidEnterprise_VariableSet - */ - public function setVariableSet($variableSet) - { - $this->variableSet = $variableSet; - } - /** - * @return Google_Service_AndroidEnterprise_VariableSet - */ - public function getVariableSet() - { - return $this->variableSet; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Device.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Device.php deleted file mode 100644 index 53c90279..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Device.php +++ /dev/null @@ -1,80 +0,0 @@ -androidId = $androidId; - } - public function getAndroidId() - { - return $this->androidId; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setManagementType($managementType) - { - $this->managementType = $managementType; - } - public function getManagementType() - { - return $this->managementType; - } - /** - * @param Google_Service_AndroidEnterprise_Policy - */ - public function setPolicy(Google_Service_AndroidEnterprise_Policy $policy) - { - $this->policy = $policy; - } - /** - * @return Google_Service_AndroidEnterprise_Policy - */ - public function getPolicy() - { - return $this->policy; - } - /** - * @param Google_Service_AndroidEnterprise_DeviceReport - */ - public function setReport(Google_Service_AndroidEnterprise_DeviceReport $report) - { - $this->report = $report; - } - /** - * @return Google_Service_AndroidEnterprise_DeviceReport - */ - public function getReport() - { - return $this->report; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/DeviceReport.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/DeviceReport.php deleted file mode 100644 index 882b64d9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/DeviceReport.php +++ /dev/null @@ -1,47 +0,0 @@ -appState = $appState; - } - /** - * @return Google_Service_AndroidEnterprise_AppState - */ - public function getAppState() - { - return $this->appState; - } - public function setLastUpdatedTimestampMillis($lastUpdatedTimestampMillis) - { - $this->lastUpdatedTimestampMillis = $lastUpdatedTimestampMillis; - } - public function getLastUpdatedTimestampMillis() - { - return $this->lastUpdatedTimestampMillis; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/DeviceReportUpdateEvent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/DeviceReportUpdateEvent.php deleted file mode 100644 index cff9c7fc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/DeviceReportUpdateEvent.php +++ /dev/null @@ -1,55 +0,0 @@ -deviceId = $deviceId; - } - public function getDeviceId() - { - return $this->deviceId; - } - /** - * @param Google_Service_AndroidEnterprise_DeviceReport - */ - public function setReport(Google_Service_AndroidEnterprise_DeviceReport $report) - { - $this->report = $report; - } - /** - * @return Google_Service_AndroidEnterprise_DeviceReport - */ - public function getReport() - { - return $this->report; - } - public function setUserId($userId) - { - $this->userId = $userId; - } - public function getUserId() - { - return $this->userId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/DeviceState.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/DeviceState.php deleted file mode 100644 index 8e243619..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/DeviceState.php +++ /dev/null @@ -1,39 +0,0 @@ -accountState = $accountState; - } - public function getAccountState() - { - return $this->accountState; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/DevicesListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/DevicesListResponse.php deleted file mode 100644 index efa1510a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/DevicesListResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -device = $device; - } - /** - * @return Google_Service_AndroidEnterprise_Device - */ - public function getDevice() - { - return $this->device; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Enterprise.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Enterprise.php deleted file mode 100644 index e8e57a58..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Enterprise.php +++ /dev/null @@ -1,74 +0,0 @@ -administrator = $administrator; - } - /** - * @return Google_Service_AndroidEnterprise_Administrator - */ - public function getAdministrator() - { - return $this->administrator; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPrimaryDomain($primaryDomain) - { - $this->primaryDomain = $primaryDomain; - } - public function getPrimaryDomain() - { - return $this->primaryDomain; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/EnterpriseAccount.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/EnterpriseAccount.php deleted file mode 100644 index bd59bd6a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/EnterpriseAccount.php +++ /dev/null @@ -1,39 +0,0 @@ -accountEmail = $accountEmail; - } - public function getAccountEmail() - { - return $this->accountEmail; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/EnterprisesListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/EnterprisesListResponse.php deleted file mode 100644 index b78c1a69..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/EnterprisesListResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -enterprise = $enterprise; - } - /** - * @return Google_Service_AndroidEnterprise_Enterprise - */ - public function getEnterprise() - { - return $this->enterprise; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/EnterprisesSendTestPushNotificationResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/EnterprisesSendTestPushNotificationResponse.php deleted file mode 100644 index 40679cf3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/EnterprisesSendTestPushNotificationResponse.php +++ /dev/null @@ -1,39 +0,0 @@ -messageId = $messageId; - } - public function getMessageId() - { - return $this->messageId; - } - public function setTopicName($topicName) - { - $this->topicName = $topicName; - } - public function getTopicName() - { - return $this->topicName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Entitlement.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Entitlement.php deleted file mode 100644 index e51181da..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Entitlement.php +++ /dev/null @@ -1,48 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setProductId($productId) - { - $this->productId = $productId; - } - public function getProductId() - { - return $this->productId; - } - public function setReason($reason) - { - $this->reason = $reason; - } - public function getReason() - { - return $this->reason; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/EntitlementsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/EntitlementsListResponse.php deleted file mode 100644 index b6b0863c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/EntitlementsListResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -entitlement = $entitlement; - } - /** - * @return Google_Service_AndroidEnterprise_Entitlement - */ - public function getEntitlement() - { - return $this->entitlement; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/GroupLicense.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/GroupLicense.php deleted file mode 100644 index e3c31ed5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/GroupLicense.php +++ /dev/null @@ -1,84 +0,0 @@ -acquisitionKind = $acquisitionKind; - } - public function getAcquisitionKind() - { - return $this->acquisitionKind; - } - public function setApproval($approval) - { - $this->approval = $approval; - } - public function getApproval() - { - return $this->approval; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNumProvisioned($numProvisioned) - { - $this->numProvisioned = $numProvisioned; - } - public function getNumProvisioned() - { - return $this->numProvisioned; - } - public function setNumPurchased($numPurchased) - { - $this->numPurchased = $numPurchased; - } - public function getNumPurchased() - { - return $this->numPurchased; - } - public function setPermissions($permissions) - { - $this->permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } - public function setProductId($productId) - { - $this->productId = $productId; - } - public function getProductId() - { - return $this->productId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/GroupLicenseUsersListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/GroupLicenseUsersListResponse.php deleted file mode 100644 index 39b89e31..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/GroupLicenseUsersListResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_AndroidEnterprise_User - */ - public function setUser($user) - { - $this->user = $user; - } - /** - * @return Google_Service_AndroidEnterprise_User - */ - public function getUser() - { - return $this->user; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/GroupLicensesListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/GroupLicensesListResponse.php deleted file mode 100644 index fffc3078..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/GroupLicensesListResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -groupLicense = $groupLicense; - } - /** - * @return Google_Service_AndroidEnterprise_GroupLicense - */ - public function getGroupLicense() - { - return $this->groupLicense; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Install.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Install.php deleted file mode 100644 index 3e3ea75c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Install.php +++ /dev/null @@ -1,57 +0,0 @@ -installState = $installState; - } - public function getInstallState() - { - return $this->installState; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setProductId($productId) - { - $this->productId = $productId; - } - public function getProductId() - { - return $this->productId; - } - public function setVersionCode($versionCode) - { - $this->versionCode = $versionCode; - } - public function getVersionCode() - { - return $this->versionCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/InstallFailureEvent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/InstallFailureEvent.php deleted file mode 100644 index b306c9d6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/InstallFailureEvent.php +++ /dev/null @@ -1,66 +0,0 @@ -deviceId = $deviceId; - } - public function getDeviceId() - { - return $this->deviceId; - } - public function setFailureDetails($failureDetails) - { - $this->failureDetails = $failureDetails; - } - public function getFailureDetails() - { - return $this->failureDetails; - } - public function setFailureReason($failureReason) - { - $this->failureReason = $failureReason; - } - public function getFailureReason() - { - return $this->failureReason; - } - public function setProductId($productId) - { - $this->productId = $productId; - } - public function getProductId() - { - return $this->productId; - } - public function setUserId($userId) - { - $this->userId = $userId; - } - public function getUserId() - { - return $this->userId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/InstallsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/InstallsListResponse.php deleted file mode 100644 index 5847e48a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/InstallsListResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -install = $install; - } - /** - * @return Google_Service_AndroidEnterprise_Install - */ - public function getInstall() - { - return $this->install; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/KeyedAppState.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/KeyedAppState.php deleted file mode 100644 index 20f49dfa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/KeyedAppState.php +++ /dev/null @@ -1,66 +0,0 @@ -data = $data; - } - public function getData() - { - return $this->data; - } - public function setKey($key) - { - $this->key = $key; - } - public function getKey() - { - return $this->key; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } - public function setSeverity($severity) - { - $this->severity = $severity; - } - public function getSeverity() - { - return $this->severity; - } - public function setStateTimestampMillis($stateTimestampMillis) - { - $this->stateTimestampMillis = $stateTimestampMillis; - } - public function getStateTimestampMillis() - { - return $this->stateTimestampMillis; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/LocalizedText.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/LocalizedText.php deleted file mode 100644 index 8dcd4eba..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/LocalizedText.php +++ /dev/null @@ -1,39 +0,0 @@ -locale = $locale; - } - public function getLocale() - { - return $this->locale; - } - public function setText($text) - { - $this->text = $text; - } - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/MaintenanceWindow.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/MaintenanceWindow.php deleted file mode 100644 index 9b828862..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/MaintenanceWindow.php +++ /dev/null @@ -1,39 +0,0 @@ -durationMs = $durationMs; - } - public function getDurationMs() - { - return $this->durationMs; - } - public function setStartTimeAfterMidnightMs($startTimeAfterMidnightMs) - { - $this->startTimeAfterMidnightMs = $startTimeAfterMidnightMs; - } - public function getStartTimeAfterMidnightMs() - { - return $this->startTimeAfterMidnightMs; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ManagedConfiguration.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ManagedConfiguration.php deleted file mode 100644 index 38d65601..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ManagedConfiguration.php +++ /dev/null @@ -1,72 +0,0 @@ -configurationVariables = $configurationVariables; - } - /** - * @return Google_Service_AndroidEnterprise_ConfigurationVariables - */ - public function getConfigurationVariables() - { - return $this->configurationVariables; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_AndroidEnterprise_ManagedProperty - */ - public function setManagedProperty($managedProperty) - { - $this->managedProperty = $managedProperty; - } - /** - * @return Google_Service_AndroidEnterprise_ManagedProperty - */ - public function getManagedProperty() - { - return $this->managedProperty; - } - public function setProductId($productId) - { - $this->productId = $productId; - } - public function getProductId() - { - return $this->productId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ManagedConfigurationsForDeviceListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ManagedConfigurationsForDeviceListResponse.php deleted file mode 100644 index f39e02d4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ManagedConfigurationsForDeviceListResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_AndroidEnterprise_ManagedConfiguration - */ - public function setManagedConfigurationForDevice($managedConfigurationForDevice) - { - $this->managedConfigurationForDevice = $managedConfigurationForDevice; - } - /** - * @return Google_Service_AndroidEnterprise_ManagedConfiguration - */ - public function getManagedConfigurationForDevice() - { - return $this->managedConfigurationForDevice; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ManagedConfigurationsForUserListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ManagedConfigurationsForUserListResponse.php deleted file mode 100644 index f6e5e716..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ManagedConfigurationsForUserListResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_AndroidEnterprise_ManagedConfiguration - */ - public function setManagedConfigurationForUser($managedConfigurationForUser) - { - $this->managedConfigurationForUser = $managedConfigurationForUser; - } - /** - * @return Google_Service_AndroidEnterprise_ManagedConfiguration - */ - public function getManagedConfigurationForUser() - { - return $this->managedConfigurationForUser; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ManagedConfigurationsSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ManagedConfigurationsSettings.php deleted file mode 100644 index 55562118..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ManagedConfigurationsSettings.php +++ /dev/null @@ -1,57 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLastUpdatedTimestampMillis($lastUpdatedTimestampMillis) - { - $this->lastUpdatedTimestampMillis = $lastUpdatedTimestampMillis; - } - public function getLastUpdatedTimestampMillis() - { - return $this->lastUpdatedTimestampMillis; - } - public function setMcmId($mcmId) - { - $this->mcmId = $mcmId; - } - public function getMcmId() - { - return $this->mcmId; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ManagedConfigurationsSettingsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ManagedConfigurationsSettingsListResponse.php deleted file mode 100644 index a8882851..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ManagedConfigurationsSettingsListResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_AndroidEnterprise_ManagedConfigurationsSettings - */ - public function setManagedConfigurationsSettings($managedConfigurationsSettings) - { - $this->managedConfigurationsSettings = $managedConfigurationsSettings; - } - /** - * @return Google_Service_AndroidEnterprise_ManagedConfigurationsSettings - */ - public function getManagedConfigurationsSettings() - { - return $this->managedConfigurationsSettings; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ManagedProperty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ManagedProperty.php deleted file mode 100644 index f1bf2e58..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ManagedProperty.php +++ /dev/null @@ -1,99 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValueBool($valueBool) - { - $this->valueBool = $valueBool; - } - public function getValueBool() - { - return $this->valueBool; - } - /** - * @param Google_Service_AndroidEnterprise_ManagedPropertyBundle - */ - public function setValueBundle(Google_Service_AndroidEnterprise_ManagedPropertyBundle $valueBundle) - { - $this->valueBundle = $valueBundle; - } - /** - * @return Google_Service_AndroidEnterprise_ManagedPropertyBundle - */ - public function getValueBundle() - { - return $this->valueBundle; - } - /** - * @param Google_Service_AndroidEnterprise_ManagedPropertyBundle - */ - public function setValueBundleArray($valueBundleArray) - { - $this->valueBundleArray = $valueBundleArray; - } - /** - * @return Google_Service_AndroidEnterprise_ManagedPropertyBundle - */ - public function getValueBundleArray() - { - return $this->valueBundleArray; - } - public function setValueInteger($valueInteger) - { - $this->valueInteger = $valueInteger; - } - public function getValueInteger() - { - return $this->valueInteger; - } - public function setValueString($valueString) - { - $this->valueString = $valueString; - } - public function getValueString() - { - return $this->valueString; - } - public function setValueStringArray($valueStringArray) - { - $this->valueStringArray = $valueStringArray; - } - public function getValueStringArray() - { - return $this->valueStringArray; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ManagedPropertyBundle.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ManagedPropertyBundle.php deleted file mode 100644 index a34990b1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ManagedPropertyBundle.php +++ /dev/null @@ -1,38 +0,0 @@ -managedProperty = $managedProperty; - } - /** - * @return Google_Service_AndroidEnterprise_ManagedProperty - */ - public function getManagedProperty() - { - return $this->managedProperty; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/NewDeviceEvent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/NewDeviceEvent.php deleted file mode 100644 index 4cd39b33..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/NewDeviceEvent.php +++ /dev/null @@ -1,57 +0,0 @@ -deviceId = $deviceId; - } - public function getDeviceId() - { - return $this->deviceId; - } - public function setDpcPackageName($dpcPackageName) - { - $this->dpcPackageName = $dpcPackageName; - } - public function getDpcPackageName() - { - return $this->dpcPackageName; - } - public function setManagementType($managementType) - { - $this->managementType = $managementType; - } - public function getManagementType() - { - return $this->managementType; - } - public function setUserId($userId) - { - $this->userId = $userId; - } - public function getUserId() - { - return $this->userId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/NewPermissionsEvent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/NewPermissionsEvent.php deleted file mode 100644 index ddfd87d4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/NewPermissionsEvent.php +++ /dev/null @@ -1,49 +0,0 @@ -approvedPermissions = $approvedPermissions; - } - public function getApprovedPermissions() - { - return $this->approvedPermissions; - } - public function setProductId($productId) - { - $this->productId = $productId; - } - public function getProductId() - { - return $this->productId; - } - public function setRequestedPermissions($requestedPermissions) - { - $this->requestedPermissions = $requestedPermissions; - } - public function getRequestedPermissions() - { - return $this->requestedPermissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Notification.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Notification.php deleted file mode 100644 index 37570e57..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Notification.php +++ /dev/null @@ -1,176 +0,0 @@ -appRestrictionsSchemaChangeEvent = $appRestrictionsSchemaChangeEvent; - } - /** - * @return Google_Service_AndroidEnterprise_AppRestrictionsSchemaChangeEvent - */ - public function getAppRestrictionsSchemaChangeEvent() - { - return $this->appRestrictionsSchemaChangeEvent; - } - /** - * @param Google_Service_AndroidEnterprise_AppUpdateEvent - */ - public function setAppUpdateEvent(Google_Service_AndroidEnterprise_AppUpdateEvent $appUpdateEvent) - { - $this->appUpdateEvent = $appUpdateEvent; - } - /** - * @return Google_Service_AndroidEnterprise_AppUpdateEvent - */ - public function getAppUpdateEvent() - { - return $this->appUpdateEvent; - } - /** - * @param Google_Service_AndroidEnterprise_DeviceReportUpdateEvent - */ - public function setDeviceReportUpdateEvent(Google_Service_AndroidEnterprise_DeviceReportUpdateEvent $deviceReportUpdateEvent) - { - $this->deviceReportUpdateEvent = $deviceReportUpdateEvent; - } - /** - * @return Google_Service_AndroidEnterprise_DeviceReportUpdateEvent - */ - public function getDeviceReportUpdateEvent() - { - return $this->deviceReportUpdateEvent; - } - public function setEnterpriseId($enterpriseId) - { - $this->enterpriseId = $enterpriseId; - } - public function getEnterpriseId() - { - return $this->enterpriseId; - } - /** - * @param Google_Service_AndroidEnterprise_InstallFailureEvent - */ - public function setInstallFailureEvent(Google_Service_AndroidEnterprise_InstallFailureEvent $installFailureEvent) - { - $this->installFailureEvent = $installFailureEvent; - } - /** - * @return Google_Service_AndroidEnterprise_InstallFailureEvent - */ - public function getInstallFailureEvent() - { - return $this->installFailureEvent; - } - /** - * @param Google_Service_AndroidEnterprise_NewDeviceEvent - */ - public function setNewDeviceEvent(Google_Service_AndroidEnterprise_NewDeviceEvent $newDeviceEvent) - { - $this->newDeviceEvent = $newDeviceEvent; - } - /** - * @return Google_Service_AndroidEnterprise_NewDeviceEvent - */ - public function getNewDeviceEvent() - { - return $this->newDeviceEvent; - } - /** - * @param Google_Service_AndroidEnterprise_NewPermissionsEvent - */ - public function setNewPermissionsEvent(Google_Service_AndroidEnterprise_NewPermissionsEvent $newPermissionsEvent) - { - $this->newPermissionsEvent = $newPermissionsEvent; - } - /** - * @return Google_Service_AndroidEnterprise_NewPermissionsEvent - */ - public function getNewPermissionsEvent() - { - return $this->newPermissionsEvent; - } - public function setNotificationType($notificationType) - { - $this->notificationType = $notificationType; - } - public function getNotificationType() - { - return $this->notificationType; - } - /** - * @param Google_Service_AndroidEnterprise_ProductApprovalEvent - */ - public function setProductApprovalEvent(Google_Service_AndroidEnterprise_ProductApprovalEvent $productApprovalEvent) - { - $this->productApprovalEvent = $productApprovalEvent; - } - /** - * @return Google_Service_AndroidEnterprise_ProductApprovalEvent - */ - public function getProductApprovalEvent() - { - return $this->productApprovalEvent; - } - /** - * @param Google_Service_AndroidEnterprise_ProductAvailabilityChangeEvent - */ - public function setProductAvailabilityChangeEvent(Google_Service_AndroidEnterprise_ProductAvailabilityChangeEvent $productAvailabilityChangeEvent) - { - $this->productAvailabilityChangeEvent = $productAvailabilityChangeEvent; - } - /** - * @return Google_Service_AndroidEnterprise_ProductAvailabilityChangeEvent - */ - public function getProductAvailabilityChangeEvent() - { - return $this->productAvailabilityChangeEvent; - } - public function setTimestampMillis($timestampMillis) - { - $this->timestampMillis = $timestampMillis; - } - public function getTimestampMillis() - { - return $this->timestampMillis; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/NotificationSet.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/NotificationSet.php deleted file mode 100644 index 6de2d896..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/NotificationSet.php +++ /dev/null @@ -1,56 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_AndroidEnterprise_Notification - */ - public function setNotification($notification) - { - $this->notification = $notification; - } - /** - * @return Google_Service_AndroidEnterprise_Notification - */ - public function getNotification() - { - return $this->notification; - } - public function setNotificationSetId($notificationSetId) - { - $this->notificationSetId = $notificationSetId; - } - public function getNotificationSetId() - { - return $this->notificationSetId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/PageInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/PageInfo.php deleted file mode 100644 index 14b686fe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/PageInfo.php +++ /dev/null @@ -1,48 +0,0 @@ -resultPerPage = $resultPerPage; - } - public function getResultPerPage() - { - return $this->resultPerPage; - } - public function setStartIndex($startIndex) - { - $this->startIndex = $startIndex; - } - public function getStartIndex() - { - return $this->startIndex; - } - public function setTotalResults($totalResults) - { - $this->totalResults = $totalResults; - } - public function getTotalResults() - { - return $this->totalResults; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Permission.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Permission.php deleted file mode 100644 index 5ec705c7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Permission.php +++ /dev/null @@ -1,57 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPermissionId($permissionId) - { - $this->permissionId = $permissionId; - } - public function getPermissionId() - { - return $this->permissionId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Policy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Policy.php deleted file mode 100644 index c85b0213..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Policy.php +++ /dev/null @@ -1,81 +0,0 @@ -autoUpdatePolicy = $autoUpdatePolicy; - } - public function getAutoUpdatePolicy() - { - return $this->autoUpdatePolicy; - } - public function setDeviceReportPolicy($deviceReportPolicy) - { - $this->deviceReportPolicy = $deviceReportPolicy; - } - public function getDeviceReportPolicy() - { - return $this->deviceReportPolicy; - } - /** - * @param Google_Service_AndroidEnterprise_MaintenanceWindow - */ - public function setMaintenanceWindow(Google_Service_AndroidEnterprise_MaintenanceWindow $maintenanceWindow) - { - $this->maintenanceWindow = $maintenanceWindow; - } - /** - * @return Google_Service_AndroidEnterprise_MaintenanceWindow - */ - public function getMaintenanceWindow() - { - return $this->maintenanceWindow; - } - public function setProductAvailabilityPolicy($productAvailabilityPolicy) - { - $this->productAvailabilityPolicy = $productAvailabilityPolicy; - } - public function getProductAvailabilityPolicy() - { - return $this->productAvailabilityPolicy; - } - /** - * @param Google_Service_AndroidEnterprise_ProductPolicy - */ - public function setProductPolicy($productPolicy) - { - $this->productPolicy = $productPolicy; - } - /** - * @return Google_Service_AndroidEnterprise_ProductPolicy - */ - public function getProductPolicy() - { - return $this->productPolicy; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Product.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Product.php deleted file mode 100644 index 4765e688..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Product.php +++ /dev/null @@ -1,275 +0,0 @@ -appTracks = $appTracks; - } - /** - * @return Google_Service_AndroidEnterprise_TrackInfo - */ - public function getAppTracks() - { - return $this->appTracks; - } - /** - * @param Google_Service_AndroidEnterprise_AppVersion - */ - public function setAppVersion($appVersion) - { - $this->appVersion = $appVersion; - } - /** - * @return Google_Service_AndroidEnterprise_AppVersion - */ - public function getAppVersion() - { - return $this->appVersion; - } - public function setAuthorName($authorName) - { - $this->authorName = $authorName; - } - public function getAuthorName() - { - return $this->authorName; - } - public function setAvailableCountries($availableCountries) - { - $this->availableCountries = $availableCountries; - } - public function getAvailableCountries() - { - return $this->availableCountries; - } - public function setAvailableTracks($availableTracks) - { - $this->availableTracks = $availableTracks; - } - public function getAvailableTracks() - { - return $this->availableTracks; - } - public function setCategory($category) - { - $this->category = $category; - } - public function getCategory() - { - return $this->category; - } - public function setContentRating($contentRating) - { - $this->contentRating = $contentRating; - } - public function getContentRating() - { - return $this->contentRating; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDetailsUrl($detailsUrl) - { - $this->detailsUrl = $detailsUrl; - } - public function getDetailsUrl() - { - return $this->detailsUrl; - } - public function setDistributionChannel($distributionChannel) - { - $this->distributionChannel = $distributionChannel; - } - public function getDistributionChannel() - { - return $this->distributionChannel; - } - public function setFeatures($features) - { - $this->features = $features; - } - public function getFeatures() - { - return $this->features; - } - public function setIconUrl($iconUrl) - { - $this->iconUrl = $iconUrl; - } - public function getIconUrl() - { - return $this->iconUrl; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLastUpdatedTimestampMillis($lastUpdatedTimestampMillis) - { - $this->lastUpdatedTimestampMillis = $lastUpdatedTimestampMillis; - } - public function getLastUpdatedTimestampMillis() - { - return $this->lastUpdatedTimestampMillis; - } - public function setMinAndroidSdkVersion($minAndroidSdkVersion) - { - $this->minAndroidSdkVersion = $minAndroidSdkVersion; - } - public function getMinAndroidSdkVersion() - { - return $this->minAndroidSdkVersion; - } - /** - * @param Google_Service_AndroidEnterprise_ProductPermission - */ - public function setPermissions($permissions) - { - $this->permissions = $permissions; - } - /** - * @return Google_Service_AndroidEnterprise_ProductPermission - */ - public function getPermissions() - { - return $this->permissions; - } - public function setProductId($productId) - { - $this->productId = $productId; - } - public function getProductId() - { - return $this->productId; - } - public function setProductPricing($productPricing) - { - $this->productPricing = $productPricing; - } - public function getProductPricing() - { - return $this->productPricing; - } - public function setRecentChanges($recentChanges) - { - $this->recentChanges = $recentChanges; - } - public function getRecentChanges() - { - return $this->recentChanges; - } - public function setRequiresContainerApp($requiresContainerApp) - { - $this->requiresContainerApp = $requiresContainerApp; - } - public function getRequiresContainerApp() - { - return $this->requiresContainerApp; - } - public function setScreenshotUrls($screenshotUrls) - { - $this->screenshotUrls = $screenshotUrls; - } - public function getScreenshotUrls() - { - return $this->screenshotUrls; - } - /** - * @param Google_Service_AndroidEnterprise_ProductSigningCertificate - */ - public function setSigningCertificate(Google_Service_AndroidEnterprise_ProductSigningCertificate $signingCertificate) - { - $this->signingCertificate = $signingCertificate; - } - /** - * @return Google_Service_AndroidEnterprise_ProductSigningCertificate - */ - public function getSigningCertificate() - { - return $this->signingCertificate; - } - public function setSmallIconUrl($smallIconUrl) - { - $this->smallIconUrl = $smallIconUrl; - } - public function getSmallIconUrl() - { - return $this->smallIconUrl; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setWorkDetailsUrl($workDetailsUrl) - { - $this->workDetailsUrl = $workDetailsUrl; - } - public function getWorkDetailsUrl() - { - return $this->workDetailsUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ProductApprovalEvent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ProductApprovalEvent.php deleted file mode 100644 index a9977114..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ProductApprovalEvent.php +++ /dev/null @@ -1,39 +0,0 @@ -approved = $approved; - } - public function getApproved() - { - return $this->approved; - } - public function setProductId($productId) - { - $this->productId = $productId; - } - public function getProductId() - { - return $this->productId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ProductAvailabilityChangeEvent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ProductAvailabilityChangeEvent.php deleted file mode 100644 index 03f4ebd1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ProductAvailabilityChangeEvent.php +++ /dev/null @@ -1,39 +0,0 @@ -availabilityStatus = $availabilityStatus; - } - public function getAvailabilityStatus() - { - return $this->availabilityStatus; - } - public function setProductId($productId) - { - $this->productId = $productId; - } - public function getProductId() - { - return $this->productId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ProductPermission.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ProductPermission.php deleted file mode 100644 index 4f480b68..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ProductPermission.php +++ /dev/null @@ -1,39 +0,0 @@ -permissionId = $permissionId; - } - public function getPermissionId() - { - return $this->permissionId; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ProductPermissions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ProductPermissions.php deleted file mode 100644 index 0ef8f070..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ProductPermissions.php +++ /dev/null @@ -1,56 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_AndroidEnterprise_ProductPermission - */ - public function setPermission($permission) - { - $this->permission = $permission; - } - /** - * @return Google_Service_AndroidEnterprise_ProductPermission - */ - public function getPermission() - { - return $this->permission; - } - public function setProductId($productId) - { - $this->productId = $productId; - } - public function getProductId() - { - return $this->productId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ProductPolicy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ProductPolicy.php deleted file mode 100644 index f9010872..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ProductPolicy.php +++ /dev/null @@ -1,81 +0,0 @@ -autoInstallPolicy = $autoInstallPolicy; - } - /** - * @return Google_Service_AndroidEnterprise_AutoInstallPolicy - */ - public function getAutoInstallPolicy() - { - return $this->autoInstallPolicy; - } - /** - * @param Google_Service_AndroidEnterprise_ManagedConfiguration - */ - public function setManagedConfiguration(Google_Service_AndroidEnterprise_ManagedConfiguration $managedConfiguration) - { - $this->managedConfiguration = $managedConfiguration; - } - /** - * @return Google_Service_AndroidEnterprise_ManagedConfiguration - */ - public function getManagedConfiguration() - { - return $this->managedConfiguration; - } - public function setProductId($productId) - { - $this->productId = $productId; - } - public function getProductId() - { - return $this->productId; - } - public function setTrackIds($trackIds) - { - $this->trackIds = $trackIds; - } - public function getTrackIds() - { - return $this->trackIds; - } - public function setTracks($tracks) - { - $this->tracks = $tracks; - } - public function getTracks() - { - return $this->tracks; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ProductSet.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ProductSet.php deleted file mode 100644 index 8ccdfdc6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ProductSet.php +++ /dev/null @@ -1,65 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setProductId($productId) - { - $this->productId = $productId; - } - public function getProductId() - { - return $this->productId; - } - public function setProductSetBehavior($productSetBehavior) - { - $this->productSetBehavior = $productSetBehavior; - } - public function getProductSetBehavior() - { - return $this->productSetBehavior; - } - /** - * @param Google_Service_AndroidEnterprise_ProductVisibility - */ - public function setProductVisibility($productVisibility) - { - $this->productVisibility = $productVisibility; - } - /** - * @return Google_Service_AndroidEnterprise_ProductVisibility - */ - public function getProductVisibility() - { - return $this->productVisibility; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ProductSigningCertificate.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ProductSigningCertificate.php deleted file mode 100644 index 3aa71274..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ProductSigningCertificate.php +++ /dev/null @@ -1,39 +0,0 @@ -certificateHashSha1 = $certificateHashSha1; - } - public function getCertificateHashSha1() - { - return $this->certificateHashSha1; - } - public function setCertificateHashSha256($certificateHashSha256) - { - $this->certificateHashSha256 = $certificateHashSha256; - } - public function getCertificateHashSha256() - { - return $this->certificateHashSha256; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ProductVisibility.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ProductVisibility.php deleted file mode 100644 index 4b4101d1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ProductVisibility.php +++ /dev/null @@ -1,49 +0,0 @@ -productId = $productId; - } - public function getProductId() - { - return $this->productId; - } - public function setTrackIds($trackIds) - { - $this->trackIds = $trackIds; - } - public function getTrackIds() - { - return $this->trackIds; - } - public function setTracks($tracks) - { - $this->tracks = $tracks; - } - public function getTracks() - { - return $this->tracks; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ProductsApproveRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ProductsApproveRequest.php deleted file mode 100644 index d594db21..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ProductsApproveRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -approvalUrlInfo = $approvalUrlInfo; - } - /** - * @return Google_Service_AndroidEnterprise_ApprovalUrlInfo - */ - public function getApprovalUrlInfo() - { - return $this->approvalUrlInfo; - } - public function setApprovedPermissions($approvedPermissions) - { - $this->approvedPermissions = $approvedPermissions; - } - public function getApprovedPermissions() - { - return $this->approvedPermissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ProductsGenerateApprovalUrlResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ProductsGenerateApprovalUrlResponse.php deleted file mode 100644 index b5347057..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ProductsGenerateApprovalUrlResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ProductsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ProductsListResponse.php deleted file mode 100644 index ee85bacf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ProductsListResponse.php +++ /dev/null @@ -1,79 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_AndroidEnterprise_PageInfo - */ - public function setPageInfo(Google_Service_AndroidEnterprise_PageInfo $pageInfo) - { - $this->pageInfo = $pageInfo; - } - /** - * @return Google_Service_AndroidEnterprise_PageInfo - */ - public function getPageInfo() - { - return $this->pageInfo; - } - /** - * @param Google_Service_AndroidEnterprise_Product - */ - public function setProduct($product) - { - $this->product = $product; - } - /** - * @return Google_Service_AndroidEnterprise_Product - */ - public function getProduct() - { - return $this->product; - } - /** - * @param Google_Service_AndroidEnterprise_TokenPagination - */ - public function setTokenPagination(Google_Service_AndroidEnterprise_TokenPagination $tokenPagination) - { - $this->tokenPagination = $tokenPagination; - } - /** - * @return Google_Service_AndroidEnterprise_TokenPagination - */ - public function getTokenPagination() - { - return $this->tokenPagination; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Resource/Devices.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Resource/Devices.php deleted file mode 100644 index 8ab7f1ca..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Resource/Devices.php +++ /dev/null @@ -1,134 +0,0 @@ - - * $androidenterpriseService = new Google_Service_AndroidEnterprise(...); - * $devices = $androidenterpriseService->devices; - * - */ -class Google_Service_AndroidEnterprise_Resource_Devices extends Google_Service_Resource -{ - /** - * Uploads a report containing any changes in app states on the device since the - * last report was generated. You can call this method up to 3 times every 24 - * hours for a given device. (devices.forceReportUpload) - * - * @param string $enterpriseId The ID of the enterprise. - * @param string $userId The ID of the user. - * @param string $deviceId The ID of the device. - * @param array $optParams Optional parameters. - */ - public function forceReportUpload($enterpriseId, $userId, $deviceId, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'deviceId' => $deviceId); - $params = array_merge($params, $optParams); - return $this->call('forceReportUpload', array($params)); - } - /** - * Retrieves the details of a device. (devices.get) - * - * @param string $enterpriseId The ID of the enterprise. - * @param string $userId The ID of the user. - * @param string $deviceId The ID of the device. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidEnterprise_Device - */ - public function get($enterpriseId, $userId, $deviceId, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'deviceId' => $deviceId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AndroidEnterprise_Device"); - } - /** - * Retrieves whether a device's access to Google services is enabled or - * disabled. The device state takes effect only if enforcing EMM policies on - * Android devices is enabled in the Google Admin Console. Otherwise, the device - * state is ignored and all devices are allowed access to Google services. This - * is only supported for Google-managed users. (devices.getState) - * - * @param string $enterpriseId The ID of the enterprise. - * @param string $userId The ID of the user. - * @param string $deviceId The ID of the device. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidEnterprise_DeviceState - */ - public function getState($enterpriseId, $userId, $deviceId, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'deviceId' => $deviceId); - $params = array_merge($params, $optParams); - return $this->call('getState', array($params), "Google_Service_AndroidEnterprise_DeviceState"); - } - /** - * Retrieves the IDs of all of a user's devices. (devices.listDevices) - * - * @param string $enterpriseId The ID of the enterprise. - * @param string $userId The ID of the user. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidEnterprise_DevicesListResponse - */ - public function listDevices($enterpriseId, $userId, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AndroidEnterprise_DevicesListResponse"); - } - /** - * Sets whether a device's access to Google services is enabled or disabled. The - * device state takes effect only if enforcing EMM policies on Android devices - * is enabled in the Google Admin Console. Otherwise, the device state is - * ignored and all devices are allowed access to Google services. This is only - * supported for Google-managed users. (devices.setState) - * - * @param string $enterpriseId The ID of the enterprise. - * @param string $userId The ID of the user. - * @param string $deviceId The ID of the device. - * @param Google_Service_AndroidEnterprise_DeviceState $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidEnterprise_DeviceState - */ - public function setState($enterpriseId, $userId, $deviceId, Google_Service_AndroidEnterprise_DeviceState $postBody, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'deviceId' => $deviceId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setState', array($params), "Google_Service_AndroidEnterprise_DeviceState"); - } - /** - * Updates the device policy (devices.update) - * - * @param string $enterpriseId The ID of the enterprise. - * @param string $userId The ID of the user. - * @param string $deviceId The ID of the device. - * @param Google_Service_AndroidEnterprise_Device $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Mask that identifies which fields to update. If - * not set, all modifiable fields will be modified. - * - * When set in a query parameter, this field should be specified as - * updateMask=,,... - * @return Google_Service_AndroidEnterprise_Device - */ - public function update($enterpriseId, $userId, $deviceId, Google_Service_AndroidEnterprise_Device $postBody, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'deviceId' => $deviceId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_AndroidEnterprise_Device"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Resource/Enterprises.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Resource/Enterprises.php deleted file mode 100644 index c3c57ac8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Resource/Enterprises.php +++ /dev/null @@ -1,286 +0,0 @@ - - * $androidenterpriseService = new Google_Service_AndroidEnterprise(...); - * $enterprises = $androidenterpriseService->enterprises; - * - */ -class Google_Service_AndroidEnterprise_Resource_Enterprises extends Google_Service_Resource -{ - /** - * Acknowledges notifications that were received from - * Enterprises.PullNotificationSet to prevent subsequent calls from returning - * the same notifications. (enterprises.acknowledgeNotificationSet) - * - * @param array $optParams Optional parameters. - * - * @opt_param string notificationSetId The notification set ID as returned by - * Enterprises.PullNotificationSet. This must be provided. - */ - public function acknowledgeNotificationSet($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('acknowledgeNotificationSet', array($params)); - } - /** - * Completes the signup flow, by specifying the Completion token and Enterprise - * token. This request must not be called multiple times for a given Enterprise - * Token. (enterprises.completeSignup) - * - * @param array $optParams Optional parameters. - * - * @opt_param string completionToken The Completion token initially returned by - * GenerateSignupUrl. - * @opt_param string enterpriseToken The Enterprise token appended to the - * Callback URL. - * @return Google_Service_AndroidEnterprise_Enterprise - */ - public function completeSignup($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('completeSignup', array($params), "Google_Service_AndroidEnterprise_Enterprise"); - } - /** - * Returns a unique token to access an embeddable UI. To generate a web UI, pass - * the generated token into the managed Google Play javascript API. Each token - * may only be used to start one UI session. See the javascript API - * documentation for further information. (enterprises.createWebToken) - * - * @param string $enterpriseId The ID of the enterprise. - * @param Google_Service_AndroidEnterprise_AdministratorWebTokenSpec $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidEnterprise_AdministratorWebToken - */ - public function createWebToken($enterpriseId, Google_Service_AndroidEnterprise_AdministratorWebTokenSpec $postBody, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('createWebToken', array($params), "Google_Service_AndroidEnterprise_AdministratorWebToken"); - } - /** - * Enrolls an enterprise with the calling EMM. (enterprises.enroll) - * - * @param string $token The token provided by the enterprise to register the - * EMM. - * @param Google_Service_AndroidEnterprise_Enterprise $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidEnterprise_Enterprise - */ - public function enroll($token, Google_Service_AndroidEnterprise_Enterprise $postBody, $optParams = array()) - { - $params = array('token' => $token, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('enroll', array($params), "Google_Service_AndroidEnterprise_Enterprise"); - } - /** - * Generates a sign-up URL. (enterprises.generateSignupUrl) - * - * @param array $optParams Optional parameters. - * - * @opt_param string callbackUrl The callback URL to which the Admin will be - * redirected after successfully creating an enterprise. Before redirecting - * there the system will add a single query parameter to this URL named - * "enterpriseToken" which will contain an opaque token to be used for the - * CompleteSignup request. Beware that this means that the URL will be parsed, - * the parameter added and then a new URL formatted, i.e. there may be some - * minor formatting changes and, more importantly, the URL must be well-formed - * so that it can be parsed. - * @return Google_Service_AndroidEnterprise_SignupInfo - */ - public function generateSignupUrl($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('generateSignupUrl', array($params), "Google_Service_AndroidEnterprise_SignupInfo"); - } - /** - * Retrieves the name and domain of an enterprise. (enterprises.get) - * - * @param string $enterpriseId The ID of the enterprise. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidEnterprise_Enterprise - */ - public function get($enterpriseId, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AndroidEnterprise_Enterprise"); - } - /** - * Returns a service account and credentials. The service account can be bound - * to the enterprise by calling setAccount. The service account is unique to - * this enterprise and EMM, and will be deleted if the enterprise is unbound. - * The credentials contain private key data and are not stored server-side. - * - * This method can only be called after calling Enterprises.Enroll or - * Enterprises.CompleteSignup, and before Enterprises.SetAccount; at other times - * it will return an error. - * - * Subsequent calls after the first will generate a new, unique set of - * credentials, and invalidate the previously generated credentials. - * - * Once the service account is bound to the enterprise, it can be managed using - * the serviceAccountKeys resource. (enterprises.getServiceAccount) - * - * @param string $enterpriseId The ID of the enterprise. - * @param array $optParams Optional parameters. - * - * @opt_param string keyType The type of credential to return with the service - * account. Required. - * @return Google_Service_AndroidEnterprise_ServiceAccount - */ - public function getServiceAccount($enterpriseId, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId); - $params = array_merge($params, $optParams); - return $this->call('getServiceAccount', array($params), "Google_Service_AndroidEnterprise_ServiceAccount"); - } - /** - * Returns the store layout for the enterprise. If the store layout has not been - * set, returns "basic" as the store layout type and no homepage. - * (enterprises.getStoreLayout) - * - * @param string $enterpriseId The ID of the enterprise. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidEnterprise_StoreLayout - */ - public function getStoreLayout($enterpriseId, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId); - $params = array_merge($params, $optParams); - return $this->call('getStoreLayout', array($params), "Google_Service_AndroidEnterprise_StoreLayout"); - } - /** - * Looks up an enterprise by domain name. This is only supported for enterprises - * created via the Google-initiated creation flow. Lookup of the id is not - * needed for enterprises created via the EMM-initiated flow since the EMM - * learns the enterprise ID in the callback specified in the - * Enterprises.generateSignupUrl call. (enterprises.listEnterprises) - * - * @param string $domain The exact primary domain name of the enterprise to look - * up. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidEnterprise_EnterprisesListResponse - */ - public function listEnterprises($domain, $optParams = array()) - { - $params = array('domain' => $domain); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AndroidEnterprise_EnterprisesListResponse"); - } - /** - * Pulls and returns a notification set for the enterprises associated with the - * service account authenticated for the request. The notification set may be - * empty if no notification are pending. A notification set returned needs to be - * acknowledged within 20 seconds by calling - * Enterprises.AcknowledgeNotificationSet, unless the notification set is empty. - * Notifications that are not acknowledged within the 20 seconds will eventually - * be included again in the response to another PullNotificationSet request, and - * those that are never acknowledged will ultimately be deleted according to the - * Google Cloud Platform Pub/Sub system policy. Multiple requests might be - * performed concurrently to retrieve notifications, in which case the pending - * notifications (if any) will be split among each caller, if any are pending. - * If no notifications are present, an empty notification list is returned. - * Subsequent requests may return more notifications once they become available. - * (enterprises.pullNotificationSet) - * - * @param array $optParams Optional parameters. - * - * @opt_param string requestMode The request mode for pulling notifications. - * Specifying waitForNotifications will cause the request to block and wait - * until one or more notifications are present, or return an empty notification - * list if no notifications are present after some time. Speciying - * returnImmediately will cause the request to immediately return the pending - * notifications, or an empty list if no notifications are present. If omitted, - * defaults to waitForNotifications. - * @return Google_Service_AndroidEnterprise_NotificationSet - */ - public function pullNotificationSet($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('pullNotificationSet', array($params), "Google_Service_AndroidEnterprise_NotificationSet"); - } - /** - * Sends a test notification to validate the EMM integration with the Google - * Cloud Pub/Sub service for this enterprise. - * (enterprises.sendTestPushNotification) - * - * @param string $enterpriseId The ID of the enterprise. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidEnterprise_EnterprisesSendTestPushNotificationResponse - */ - public function sendTestPushNotification($enterpriseId, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId); - $params = array_merge($params, $optParams); - return $this->call('sendTestPushNotification', array($params), "Google_Service_AndroidEnterprise_EnterprisesSendTestPushNotificationResponse"); - } - /** - * Sets the account that will be used to authenticate to the API as the - * enterprise. (enterprises.setAccount) - * - * @param string $enterpriseId The ID of the enterprise. - * @param Google_Service_AndroidEnterprise_EnterpriseAccount $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidEnterprise_EnterpriseAccount - */ - public function setAccount($enterpriseId, Google_Service_AndroidEnterprise_EnterpriseAccount $postBody, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setAccount', array($params), "Google_Service_AndroidEnterprise_EnterpriseAccount"); - } - /** - * Sets the store layout for the enterprise. By default, storeLayoutType is set - * to "basic" and the basic store layout is enabled. The basic layout only - * contains apps approved by the admin, and that have been added to the - * available product set for a user (using the setAvailableProductSet call). - * Apps on the page are sorted in order of their product ID value. If you create - * a custom store layout (by setting storeLayoutType = "custom" and setting a - * homepage), the basic store layout is disabled. (enterprises.setStoreLayout) - * - * @param string $enterpriseId The ID of the enterprise. - * @param Google_Service_AndroidEnterprise_StoreLayout $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidEnterprise_StoreLayout - */ - public function setStoreLayout($enterpriseId, Google_Service_AndroidEnterprise_StoreLayout $postBody, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setStoreLayout', array($params), "Google_Service_AndroidEnterprise_StoreLayout"); - } - /** - * Unenrolls an enterprise from the calling EMM. (enterprises.unenroll) - * - * @param string $enterpriseId The ID of the enterprise. - * @param array $optParams Optional parameters. - */ - public function unenroll($enterpriseId, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId); - $params = array_merge($params, $optParams); - return $this->call('unenroll', array($params)); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Resource/Entitlements.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Resource/Entitlements.php deleted file mode 100644 index abb26910..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Resource/Entitlements.php +++ /dev/null @@ -1,96 +0,0 @@ - - * $androidenterpriseService = new Google_Service_AndroidEnterprise(...); - * $entitlements = $androidenterpriseService->entitlements; - * - */ -class Google_Service_AndroidEnterprise_Resource_Entitlements extends Google_Service_Resource -{ - /** - * Removes an entitlement to an app for a user. (entitlements.delete) - * - * @param string $enterpriseId The ID of the enterprise. - * @param string $userId The ID of the user. - * @param string $entitlementId The ID of the entitlement (a product ID), e.g. - * "app:com.google.android.gm". - * @param array $optParams Optional parameters. - */ - public function delete($enterpriseId, $userId, $entitlementId, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'entitlementId' => $entitlementId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Retrieves details of an entitlement. (entitlements.get) - * - * @param string $enterpriseId The ID of the enterprise. - * @param string $userId The ID of the user. - * @param string $entitlementId The ID of the entitlement (a product ID), e.g. - * "app:com.google.android.gm". - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidEnterprise_Entitlement - */ - public function get($enterpriseId, $userId, $entitlementId, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'entitlementId' => $entitlementId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AndroidEnterprise_Entitlement"); - } - /** - * Lists all entitlements for the specified user. Only the ID is set. - * (entitlements.listEntitlements) - * - * @param string $enterpriseId The ID of the enterprise. - * @param string $userId The ID of the user. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidEnterprise_EntitlementsListResponse - */ - public function listEntitlements($enterpriseId, $userId, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AndroidEnterprise_EntitlementsListResponse"); - } - /** - * Adds or updates an entitlement to an app for a user. (entitlements.update) - * - * @param string $enterpriseId The ID of the enterprise. - * @param string $userId The ID of the user. - * @param string $entitlementId The ID of the entitlement (a product ID), e.g. - * "app:com.google.android.gm". - * @param Google_Service_AndroidEnterprise_Entitlement $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool install Set to true to also install the product on all the - * user's devices where possible. Failure to install on one or more devices will - * not prevent this operation from returning successfully, as long as the - * entitlement was successfully assigned to the user. - * @return Google_Service_AndroidEnterprise_Entitlement - */ - public function update($enterpriseId, $userId, $entitlementId, Google_Service_AndroidEnterprise_Entitlement $postBody, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'entitlementId' => $entitlementId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_AndroidEnterprise_Entitlement"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Resource/Grouplicenses.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Resource/Grouplicenses.php deleted file mode 100644 index 200be619..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Resource/Grouplicenses.php +++ /dev/null @@ -1,58 +0,0 @@ - - * $androidenterpriseService = new Google_Service_AndroidEnterprise(...); - * $grouplicenses = $androidenterpriseService->grouplicenses; - * - */ -class Google_Service_AndroidEnterprise_Resource_Grouplicenses extends Google_Service_Resource -{ - /** - * Retrieves details of an enterprise's group license for a product. - * (grouplicenses.get) - * - * @param string $enterpriseId The ID of the enterprise. - * @param string $groupLicenseId The ID of the product the group license is for, - * e.g. "app:com.google.android.gm". - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidEnterprise_GroupLicense - */ - public function get($enterpriseId, $groupLicenseId, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'groupLicenseId' => $groupLicenseId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AndroidEnterprise_GroupLicense"); - } - /** - * Retrieves IDs of all products for which the enterprise has a group license. - * (grouplicenses.listGrouplicenses) - * - * @param string $enterpriseId The ID of the enterprise. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidEnterprise_GroupLicensesListResponse - */ - public function listGrouplicenses($enterpriseId, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AndroidEnterprise_GroupLicensesListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Resource/Grouplicenseusers.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Resource/Grouplicenseusers.php deleted file mode 100644 index 05de8c1b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Resource/Grouplicenseusers.php +++ /dev/null @@ -1,44 +0,0 @@ - - * $androidenterpriseService = new Google_Service_AndroidEnterprise(...); - * $grouplicenseusers = $androidenterpriseService->grouplicenseusers; - * - */ -class Google_Service_AndroidEnterprise_Resource_Grouplicenseusers extends Google_Service_Resource -{ - /** - * Retrieves the IDs of the users who have been granted entitlements under the - * license. (grouplicenseusers.listGrouplicenseusers) - * - * @param string $enterpriseId The ID of the enterprise. - * @param string $groupLicenseId The ID of the product the group license is for, - * e.g. "app:com.google.android.gm". - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidEnterprise_GroupLicenseUsersListResponse - */ - public function listGrouplicenseusers($enterpriseId, $groupLicenseId, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'groupLicenseId' => $groupLicenseId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AndroidEnterprise_GroupLicenseUsersListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Resource/Installs.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Resource/Installs.php deleted file mode 100644 index ad1158f2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Resource/Installs.php +++ /dev/null @@ -1,99 +0,0 @@ - - * $androidenterpriseService = new Google_Service_AndroidEnterprise(...); - * $installs = $androidenterpriseService->installs; - * - */ -class Google_Service_AndroidEnterprise_Resource_Installs extends Google_Service_Resource -{ - /** - * Requests to remove an app from a device. A call to get or list will still - * show the app as installed on the device until it is actually removed. - * (installs.delete) - * - * @param string $enterpriseId The ID of the enterprise. - * @param string $userId The ID of the user. - * @param string $deviceId The Android ID of the device. - * @param string $installId The ID of the product represented by the install, - * e.g. "app:com.google.android.gm". - * @param array $optParams Optional parameters. - */ - public function delete($enterpriseId, $userId, $deviceId, $installId, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'deviceId' => $deviceId, 'installId' => $installId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Retrieves details of an installation of an app on a device. (installs.get) - * - * @param string $enterpriseId The ID of the enterprise. - * @param string $userId The ID of the user. - * @param string $deviceId The Android ID of the device. - * @param string $installId The ID of the product represented by the install, - * e.g. "app:com.google.android.gm". - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidEnterprise_Install - */ - public function get($enterpriseId, $userId, $deviceId, $installId, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'deviceId' => $deviceId, 'installId' => $installId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AndroidEnterprise_Install"); - } - /** - * Retrieves the details of all apps installed on the specified device. - * (installs.listInstalls) - * - * @param string $enterpriseId The ID of the enterprise. - * @param string $userId The ID of the user. - * @param string $deviceId The Android ID of the device. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidEnterprise_InstallsListResponse - */ - public function listInstalls($enterpriseId, $userId, $deviceId, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'deviceId' => $deviceId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AndroidEnterprise_InstallsListResponse"); - } - /** - * Requests to install the latest version of an app to a device. If the app is - * already installed, then it is updated to the latest version if necessary. - * (installs.update) - * - * @param string $enterpriseId The ID of the enterprise. - * @param string $userId The ID of the user. - * @param string $deviceId The Android ID of the device. - * @param string $installId The ID of the product represented by the install, - * e.g. "app:com.google.android.gm". - * @param Google_Service_AndroidEnterprise_Install $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidEnterprise_Install - */ - public function update($enterpriseId, $userId, $deviceId, $installId, Google_Service_AndroidEnterprise_Install $postBody, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'deviceId' => $deviceId, 'installId' => $installId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_AndroidEnterprise_Install"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Resource/Managedconfigurationsfordevice.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Resource/Managedconfigurationsfordevice.php deleted file mode 100644 index fbea2582..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Resource/Managedconfigurationsfordevice.php +++ /dev/null @@ -1,99 +0,0 @@ - - * $androidenterpriseService = new Google_Service_AndroidEnterprise(...); - * $managedconfigurationsfordevice = $androidenterpriseService->managedconfigurationsfordevice; - * - */ -class Google_Service_AndroidEnterprise_Resource_Managedconfigurationsfordevice extends Google_Service_Resource -{ - /** - * Removes a per-device managed configuration for an app for the specified - * device. (managedconfigurationsfordevice.delete) - * - * @param string $enterpriseId The ID of the enterprise. - * @param string $userId The ID of the user. - * @param string $deviceId The Android ID of the device. - * @param string $managedConfigurationForDeviceId The ID of the managed - * configuration (a product ID), e.g. "app:com.google.android.gm". - * @param array $optParams Optional parameters. - */ - public function delete($enterpriseId, $userId, $deviceId, $managedConfigurationForDeviceId, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'deviceId' => $deviceId, 'managedConfigurationForDeviceId' => $managedConfigurationForDeviceId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Retrieves details of a per-device managed configuration. - * (managedconfigurationsfordevice.get) - * - * @param string $enterpriseId The ID of the enterprise. - * @param string $userId The ID of the user. - * @param string $deviceId The Android ID of the device. - * @param string $managedConfigurationForDeviceId The ID of the managed - * configuration (a product ID), e.g. "app:com.google.android.gm". - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidEnterprise_ManagedConfiguration - */ - public function get($enterpriseId, $userId, $deviceId, $managedConfigurationForDeviceId, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'deviceId' => $deviceId, 'managedConfigurationForDeviceId' => $managedConfigurationForDeviceId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AndroidEnterprise_ManagedConfiguration"); - } - /** - * Lists all the per-device managed configurations for the specified device. - * Only the ID is set. - * (managedconfigurationsfordevice.listManagedconfigurationsfordevice) - * - * @param string $enterpriseId The ID of the enterprise. - * @param string $userId The ID of the user. - * @param string $deviceId The Android ID of the device. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidEnterprise_ManagedConfigurationsForDeviceListResponse - */ - public function listManagedconfigurationsfordevice($enterpriseId, $userId, $deviceId, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'deviceId' => $deviceId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AndroidEnterprise_ManagedConfigurationsForDeviceListResponse"); - } - /** - * Adds or updates a per-device managed configuration for an app for the - * specified device. (managedconfigurationsfordevice.update) - * - * @param string $enterpriseId The ID of the enterprise. - * @param string $userId The ID of the user. - * @param string $deviceId The Android ID of the device. - * @param string $managedConfigurationForDeviceId The ID of the managed - * configuration (a product ID), e.g. "app:com.google.android.gm". - * @param Google_Service_AndroidEnterprise_ManagedConfiguration $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidEnterprise_ManagedConfiguration - */ - public function update($enterpriseId, $userId, $deviceId, $managedConfigurationForDeviceId, Google_Service_AndroidEnterprise_ManagedConfiguration $postBody, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'deviceId' => $deviceId, 'managedConfigurationForDeviceId' => $managedConfigurationForDeviceId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_AndroidEnterprise_ManagedConfiguration"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Resource/Managedconfigurationsforuser.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Resource/Managedconfigurationsforuser.php deleted file mode 100644 index a4dbca2d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Resource/Managedconfigurationsforuser.php +++ /dev/null @@ -1,99 +0,0 @@ - - * $androidenterpriseService = new Google_Service_AndroidEnterprise(...); - * $managedconfigurationsforuser = $androidenterpriseService->managedconfigurationsforuser; - * - */ -class Google_Service_AndroidEnterprise_Resource_Managedconfigurationsforuser extends Google_Service_Resource -{ - /** - * Removes a per-user managed configuration for an app for the specified user. - * (managedconfigurationsforuser.delete) - * - * @param string $enterpriseId The ID of the enterprise. - * @param string $userId The ID of the user. - * @param string $managedConfigurationForUserId The ID of the managed - * configuration (a product ID), e.g. "app:com.google.android.gm". - * @param array $optParams Optional parameters. - */ - public function delete($enterpriseId, $userId, $managedConfigurationForUserId, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'managedConfigurationForUserId' => $managedConfigurationForUserId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Retrieves details of a per-user managed configuration for an app for the - * specified user. (managedconfigurationsforuser.get) - * - * @param string $enterpriseId The ID of the enterprise. - * @param string $userId The ID of the user. - * @param string $managedConfigurationForUserId The ID of the managed - * configuration (a product ID), e.g. "app:com.google.android.gm". - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidEnterprise_ManagedConfiguration - */ - public function get($enterpriseId, $userId, $managedConfigurationForUserId, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'managedConfigurationForUserId' => $managedConfigurationForUserId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AndroidEnterprise_ManagedConfiguration"); - } - /** - * Lists all the per-user managed configurations for the specified user. Only - * the ID is set. - * (managedconfigurationsforuser.listManagedconfigurationsforuser) - * - * @param string $enterpriseId The ID of the enterprise. - * @param string $userId The ID of the user. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidEnterprise_ManagedConfigurationsForUserListResponse - */ - public function listManagedconfigurationsforuser($enterpriseId, $userId, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AndroidEnterprise_ManagedConfigurationsForUserListResponse"); - } - /** - * Adds or updates the managed configuration settings for an app for the - * specified user. If you support the Managed configurations iframe, you can - * apply managed configurations to a user by specifying an mcmId and its - * associated configuration variables (if any) in the request. Alternatively, - * all EMMs can apply managed configurations by passing a list of managed - * properties. (managedconfigurationsforuser.update) - * - * @param string $enterpriseId The ID of the enterprise. - * @param string $userId The ID of the user. - * @param string $managedConfigurationForUserId The ID of the managed - * configuration (a product ID), e.g. "app:com.google.android.gm". - * @param Google_Service_AndroidEnterprise_ManagedConfiguration $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidEnterprise_ManagedConfiguration - */ - public function update($enterpriseId, $userId, $managedConfigurationForUserId, Google_Service_AndroidEnterprise_ManagedConfiguration $postBody, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'managedConfigurationForUserId' => $managedConfigurationForUserId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_AndroidEnterprise_ManagedConfiguration"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Resource/Managedconfigurationssettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Resource/Managedconfigurationssettings.php deleted file mode 100644 index 4bba3911..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Resource/Managedconfigurationssettings.php +++ /dev/null @@ -1,44 +0,0 @@ - - * $androidenterpriseService = new Google_Service_AndroidEnterprise(...); - * $managedconfigurationssettings = $androidenterpriseService->managedconfigurationssettings; - * - */ -class Google_Service_AndroidEnterprise_Resource_Managedconfigurationssettings extends Google_Service_Resource -{ - /** - * Lists all the managed configurations settings for the specified app. - * (managedconfigurationssettings.listManagedconfigurationssettings) - * - * @param string $enterpriseId The ID of the enterprise. - * @param string $productId The ID of the product for which the managed - * configurations settings applies to. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidEnterprise_ManagedConfigurationsSettingsListResponse - */ - public function listManagedconfigurationssettings($enterpriseId, $productId, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'productId' => $productId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AndroidEnterprise_ManagedConfigurationsSettingsListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Resource/Permissions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Resource/Permissions.php deleted file mode 100644 index c755217e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Resource/Permissions.php +++ /dev/null @@ -1,45 +0,0 @@ - - * $androidenterpriseService = new Google_Service_AndroidEnterprise(...); - * $permissions = $androidenterpriseService->permissions; - * - */ -class Google_Service_AndroidEnterprise_Resource_Permissions extends Google_Service_Resource -{ - /** - * Retrieves details of an Android app permission for display to an enterprise - * admin. (permissions.get) - * - * @param string $permissionId The ID of the permission. - * @param array $optParams Optional parameters. - * - * @opt_param string language The BCP47 tag for the user's preferred language - * (e.g. "en-US", "de") - * @return Google_Service_AndroidEnterprise_Permission - */ - public function get($permissionId, $optParams = array()) - { - $params = array('permissionId' => $permissionId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AndroidEnterprise_Permission"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Resource/Products.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Resource/Products.php deleted file mode 100644 index 1a1e9ae6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Resource/Products.php +++ /dev/null @@ -1,175 +0,0 @@ - - * $androidenterpriseService = new Google_Service_AndroidEnterprise(...); - * $products = $androidenterpriseService->products; - * - */ -class Google_Service_AndroidEnterprise_Resource_Products extends Google_Service_Resource -{ - /** - * Approves the specified product and the relevant app permissions, if any. The - * maximum number of products that you can approve per enterprise customer is - * 1,000. - * - * To learn how to use managed Google Play to design and create a store layout - * to display approved products to your users, see Store Layout Design. - * (products.approve) - * - * @param string $enterpriseId The ID of the enterprise. - * @param string $productId The ID of the product. - * @param Google_Service_AndroidEnterprise_ProductsApproveRequest $postBody - * @param array $optParams Optional parameters. - */ - public function approve($enterpriseId, $productId, Google_Service_AndroidEnterprise_ProductsApproveRequest $postBody, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'productId' => $productId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('approve', array($params)); - } - /** - * Generates a URL that can be rendered in an iframe to display the permissions - * (if any) of a product. An enterprise admin must view these permissions and - * accept them on behalf of their organization in order to approve that product. - * - * Admins should accept the displayed permissions by interacting with a separate - * UI element in the EMM console, which in turn should trigger the use of this - * URL as the approvalUrlInfo.approvalUrl property in a Products.approve call to - * approve the product. This URL can only be used to display permissions for up - * to 1 day. (products.generateApprovalUrl) - * - * @param string $enterpriseId The ID of the enterprise. - * @param string $productId The ID of the product. - * @param array $optParams Optional parameters. - * - * @opt_param string languageCode The BCP 47 language code used for permission - * names and descriptions in the returned iframe, for instance "en-US". - * @return Google_Service_AndroidEnterprise_ProductsGenerateApprovalUrlResponse - */ - public function generateApprovalUrl($enterpriseId, $productId, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'productId' => $productId); - $params = array_merge($params, $optParams); - return $this->call('generateApprovalUrl', array($params), "Google_Service_AndroidEnterprise_ProductsGenerateApprovalUrlResponse"); - } - /** - * Retrieves details of a product for display to an enterprise admin. - * (products.get) - * - * @param string $enterpriseId The ID of the enterprise. - * @param string $productId The ID of the product, e.g. - * "app:com.google.android.gm". - * @param array $optParams Optional parameters. - * - * @opt_param string language The BCP47 tag for the user's preferred language - * (e.g. "en-US", "de"). - * @return Google_Service_AndroidEnterprise_Product - */ - public function get($enterpriseId, $productId, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'productId' => $productId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AndroidEnterprise_Product"); - } - /** - * Retrieves the schema that defines the configurable properties for this - * product. All products have a schema, but this schema may be empty if no - * managed configurations have been defined. This schema can be used to populate - * a UI that allows an admin to configure the product. To apply a managed - * configuration based on the schema obtained using this API, see Managed - * Configurations through Play. (products.getAppRestrictionsSchema) - * - * @param string $enterpriseId The ID of the enterprise. - * @param string $productId The ID of the product. - * @param array $optParams Optional parameters. - * - * @opt_param string language The BCP47 tag for the user's preferred language - * (e.g. "en-US", "de"). - * @return Google_Service_AndroidEnterprise_AppRestrictionsSchema - */ - public function getAppRestrictionsSchema($enterpriseId, $productId, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'productId' => $productId); - $params = array_merge($params, $optParams); - return $this->call('getAppRestrictionsSchema', array($params), "Google_Service_AndroidEnterprise_AppRestrictionsSchema"); - } - /** - * Retrieves the Android app permissions required by this app. - * (products.getPermissions) - * - * @param string $enterpriseId The ID of the enterprise. - * @param string $productId The ID of the product. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidEnterprise_ProductPermissions - */ - public function getPermissions($enterpriseId, $productId, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'productId' => $productId); - $params = array_merge($params, $optParams); - return $this->call('getPermissions', array($params), "Google_Service_AndroidEnterprise_ProductPermissions"); - } - /** - * Finds approved products that match a query, or all approved products if there - * is no query. (products.listProducts) - * - * @param string $enterpriseId The ID of the enterprise. - * @param array $optParams Optional parameters. - * - * @opt_param bool approved Specifies whether to search among all products - * (false) or among only products that have been approved (true). Only "true" is - * supported, and should be specified. - * @opt_param string language The BCP47 tag for the user's preferred language - * (e.g. "en-US", "de"). Results are returned in the language best matching the - * preferred language. - * @opt_param string maxResults Specifies the maximum number of products that - * can be returned per request. If not specified, uses a default value of 100, - * which is also the maximum retrievable within a single response. - * @opt_param string query The search query as typed in the Google Play store - * search box. If omitted, all approved apps will be returned (using the - * pagination parameters), including apps that are not available in the store - * (e.g. unpublished apps). - * @opt_param string token A pagination token is contained in a request's - * response when there are more products. The token can be used in a subsequent - * request to obtain more products, and so forth. This parameter cannot be used - * in the initial request. - * @return Google_Service_AndroidEnterprise_ProductsListResponse - */ - public function listProducts($enterpriseId, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AndroidEnterprise_ProductsListResponse"); - } - /** - * Unapproves the specified product (and the relevant app permissions, if any) - * (products.unapprove) - * - * @param string $enterpriseId The ID of the enterprise. - * @param string $productId The ID of the product. - * @param array $optParams Optional parameters. - */ - public function unapprove($enterpriseId, $productId, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'productId' => $productId); - $params = array_merge($params, $optParams); - return $this->call('unapprove', array($params)); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Resource/Serviceaccountkeys.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Resource/Serviceaccountkeys.php deleted file mode 100644 index ff73a9bb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Resource/Serviceaccountkeys.php +++ /dev/null @@ -1,82 +0,0 @@ - - * $androidenterpriseService = new Google_Service_AndroidEnterprise(...); - * $serviceaccountkeys = $androidenterpriseService->serviceaccountkeys; - * - */ -class Google_Service_AndroidEnterprise_Resource_Serviceaccountkeys extends Google_Service_Resource -{ - /** - * Removes and invalidates the specified credentials for the service account - * associated with this enterprise. The calling service account must have been - * retrieved by calling Enterprises.GetServiceAccount and must have been set as - * the enterprise service account by calling Enterprises.SetAccount. - * (serviceaccountkeys.delete) - * - * @param string $enterpriseId The ID of the enterprise. - * @param string $keyId The ID of the key. - * @param array $optParams Optional parameters. - */ - public function delete($enterpriseId, $keyId, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'keyId' => $keyId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Generates new credentials for the service account associated with this - * enterprise. The calling service account must have been retrieved by calling - * Enterprises.GetServiceAccount and must have been set as the enterprise - * service account by calling Enterprises.SetAccount. - * - * Only the type of the key should be populated in the resource to be inserted. - * (serviceaccountkeys.insert) - * - * @param string $enterpriseId The ID of the enterprise. - * @param Google_Service_AndroidEnterprise_ServiceAccountKey $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidEnterprise_ServiceAccountKey - */ - public function insert($enterpriseId, Google_Service_AndroidEnterprise_ServiceAccountKey $postBody, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_AndroidEnterprise_ServiceAccountKey"); - } - /** - * Lists all active credentials for the service account associated with this - * enterprise. Only the ID and key type are returned. The calling service - * account must have been retrieved by calling Enterprises.GetServiceAccount and - * must have been set as the enterprise service account by calling - * Enterprises.SetAccount. (serviceaccountkeys.listServiceaccountkeys) - * - * @param string $enterpriseId The ID of the enterprise. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidEnterprise_ServiceAccountKeysListResponse - */ - public function listServiceaccountkeys($enterpriseId, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AndroidEnterprise_ServiceAccountKeysListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Resource/Storelayoutclusters.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Resource/Storelayoutclusters.php deleted file mode 100644 index 416e75d0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Resource/Storelayoutclusters.php +++ /dev/null @@ -1,103 +0,0 @@ - - * $androidenterpriseService = new Google_Service_AndroidEnterprise(...); - * $storelayoutclusters = $androidenterpriseService->storelayoutclusters; - * - */ -class Google_Service_AndroidEnterprise_Resource_Storelayoutclusters extends Google_Service_Resource -{ - /** - * Deletes a cluster. (storelayoutclusters.delete) - * - * @param string $enterpriseId The ID of the enterprise. - * @param string $pageId The ID of the page. - * @param string $clusterId The ID of the cluster. - * @param array $optParams Optional parameters. - */ - public function delete($enterpriseId, $pageId, $clusterId, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'pageId' => $pageId, 'clusterId' => $clusterId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Retrieves details of a cluster. (storelayoutclusters.get) - * - * @param string $enterpriseId The ID of the enterprise. - * @param string $pageId The ID of the page. - * @param string $clusterId The ID of the cluster. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidEnterprise_StoreCluster - */ - public function get($enterpriseId, $pageId, $clusterId, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'pageId' => $pageId, 'clusterId' => $clusterId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AndroidEnterprise_StoreCluster"); - } - /** - * Inserts a new cluster in a page. (storelayoutclusters.insert) - * - * @param string $enterpriseId The ID of the enterprise. - * @param string $pageId The ID of the page. - * @param Google_Service_AndroidEnterprise_StoreCluster $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidEnterprise_StoreCluster - */ - public function insert($enterpriseId, $pageId, Google_Service_AndroidEnterprise_StoreCluster $postBody, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'pageId' => $pageId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_AndroidEnterprise_StoreCluster"); - } - /** - * Retrieves the details of all clusters on the specified page. - * (storelayoutclusters.listStorelayoutclusters) - * - * @param string $enterpriseId The ID of the enterprise. - * @param string $pageId The ID of the page. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidEnterprise_StoreLayoutClustersListResponse - */ - public function listStorelayoutclusters($enterpriseId, $pageId, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'pageId' => $pageId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AndroidEnterprise_StoreLayoutClustersListResponse"); - } - /** - * Updates a cluster. (storelayoutclusters.update) - * - * @param string $enterpriseId The ID of the enterprise. - * @param string $pageId The ID of the page. - * @param string $clusterId The ID of the cluster. - * @param Google_Service_AndroidEnterprise_StoreCluster $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidEnterprise_StoreCluster - */ - public function update($enterpriseId, $pageId, $clusterId, Google_Service_AndroidEnterprise_StoreCluster $postBody, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'pageId' => $pageId, 'clusterId' => $clusterId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_AndroidEnterprise_StoreCluster"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Resource/Storelayoutpages.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Resource/Storelayoutpages.php deleted file mode 100644 index f5ad5a18..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Resource/Storelayoutpages.php +++ /dev/null @@ -1,98 +0,0 @@ - - * $androidenterpriseService = new Google_Service_AndroidEnterprise(...); - * $storelayoutpages = $androidenterpriseService->storelayoutpages; - * - */ -class Google_Service_AndroidEnterprise_Resource_Storelayoutpages extends Google_Service_Resource -{ - /** - * Deletes a store page. (storelayoutpages.delete) - * - * @param string $enterpriseId The ID of the enterprise. - * @param string $pageId The ID of the page. - * @param array $optParams Optional parameters. - */ - public function delete($enterpriseId, $pageId, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'pageId' => $pageId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Retrieves details of a store page. (storelayoutpages.get) - * - * @param string $enterpriseId The ID of the enterprise. - * @param string $pageId The ID of the page. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidEnterprise_StorePage - */ - public function get($enterpriseId, $pageId, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'pageId' => $pageId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AndroidEnterprise_StorePage"); - } - /** - * Inserts a new store page. (storelayoutpages.insert) - * - * @param string $enterpriseId The ID of the enterprise. - * @param Google_Service_AndroidEnterprise_StorePage $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidEnterprise_StorePage - */ - public function insert($enterpriseId, Google_Service_AndroidEnterprise_StorePage $postBody, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_AndroidEnterprise_StorePage"); - } - /** - * Retrieves the details of all pages in the store. - * (storelayoutpages.listStorelayoutpages) - * - * @param string $enterpriseId The ID of the enterprise. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidEnterprise_StoreLayoutPagesListResponse - */ - public function listStorelayoutpages($enterpriseId, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AndroidEnterprise_StoreLayoutPagesListResponse"); - } - /** - * Updates the content of a store page. (storelayoutpages.update) - * - * @param string $enterpriseId The ID of the enterprise. - * @param string $pageId The ID of the page. - * @param Google_Service_AndroidEnterprise_StorePage $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidEnterprise_StorePage - */ - public function update($enterpriseId, $pageId, Google_Service_AndroidEnterprise_StorePage $postBody, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'pageId' => $pageId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_AndroidEnterprise_StorePage"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Resource/Users.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Resource/Users.php deleted file mode 100644 index 2dc9989f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Resource/Users.php +++ /dev/null @@ -1,214 +0,0 @@ - - * $androidenterpriseService = new Google_Service_AndroidEnterprise(...); - * $users = $androidenterpriseService->users; - * - */ -class Google_Service_AndroidEnterprise_Resource_Users extends Google_Service_Resource -{ - /** - * Deleted an EMM-managed user. (users.delete) - * - * @param string $enterpriseId The ID of the enterprise. - * @param string $userId The ID of the user. - * @param array $optParams Optional parameters. - */ - public function delete($enterpriseId, $userId, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Generates an authentication token which the device policy client can use to - * provision the given EMM-managed user account on a device. The generated token - * is single-use and expires after a few minutes. - * - * You can provision a maximum of 10 devices per user. - * - * This call only works with EMM-managed accounts. - * (users.generateAuthenticationToken) - * - * @param string $enterpriseId The ID of the enterprise. - * @param string $userId The ID of the user. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidEnterprise_AuthenticationToken - */ - public function generateAuthenticationToken($enterpriseId, $userId, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId); - $params = array_merge($params, $optParams); - return $this->call('generateAuthenticationToken', array($params), "Google_Service_AndroidEnterprise_AuthenticationToken"); - } - /** - * Generates a token (activation code) to allow this user to configure their - * managed account in the Android Setup Wizard. Revokes any previously generated - * token. - * - * This call only works with Google managed accounts. (users.generateToken) - * - * @param string $enterpriseId The ID of the enterprise. - * @param string $userId The ID of the user. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidEnterprise_UserToken - */ - public function generateToken($enterpriseId, $userId, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId); - $params = array_merge($params, $optParams); - return $this->call('generateToken', array($params), "Google_Service_AndroidEnterprise_UserToken"); - } - /** - * Retrieves a user's details. (users.get) - * - * @param string $enterpriseId The ID of the enterprise. - * @param string $userId The ID of the user. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidEnterprise_User - */ - public function get($enterpriseId, $userId, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AndroidEnterprise_User"); - } - /** - * Retrieves the set of products a user is entitled to access. - * (users.getAvailableProductSet) - * - * @param string $enterpriseId The ID of the enterprise. - * @param string $userId The ID of the user. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidEnterprise_ProductSet - */ - public function getAvailableProductSet($enterpriseId, $userId, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId); - $params = array_merge($params, $optParams); - return $this->call('getAvailableProductSet', array($params), "Google_Service_AndroidEnterprise_ProductSet"); - } - /** - * Creates a new EMM-managed user. - * - * The Users resource passed in the body of the request should include an - * accountIdentifier and an accountType. If a corresponding user already exists - * with the same account identifier, the user will be updated with the resource. - * In this case only the displayName field can be changed. (users.insert) - * - * @param string $enterpriseId The ID of the enterprise. - * @param Google_Service_AndroidEnterprise_User $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidEnterprise_User - */ - public function insert($enterpriseId, Google_Service_AndroidEnterprise_User $postBody, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_AndroidEnterprise_User"); - } - /** - * Looks up a user by primary email address. This is only supported for Google- - * managed users. Lookup of the id is not needed for EMM-managed users because - * the id is already returned in the result of the Users.insert call. - * (users.listUsers) - * - * @param string $enterpriseId The ID of the enterprise. - * @param string $email The exact primary email address of the user to look up. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidEnterprise_UsersListResponse - */ - public function listUsers($enterpriseId, $email, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'email' => $email); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AndroidEnterprise_UsersListResponse"); - } - /** - * Revokes access to all devices currently provisioned to the user. The user - * will no longer be able to use the managed Play store on any of their managed - * devices. - * - * This call only works with EMM-managed accounts. (users.revokeDeviceAccess) - * - * @param string $enterpriseId The ID of the enterprise. - * @param string $userId The ID of the user. - * @param array $optParams Optional parameters. - */ - public function revokeDeviceAccess($enterpriseId, $userId, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId); - $params = array_merge($params, $optParams); - return $this->call('revokeDeviceAccess', array($params)); - } - /** - * Revokes a previously generated token (activation code) for the user. - * (users.revokeToken) - * - * @param string $enterpriseId The ID of the enterprise. - * @param string $userId The ID of the user. - * @param array $optParams Optional parameters. - */ - public function revokeToken($enterpriseId, $userId, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId); - $params = array_merge($params, $optParams); - return $this->call('revokeToken', array($params)); - } - /** - * Modifies the set of products that a user is entitled to access (referred to - * as whitelisted products). Only products that are approved or products that - * were previously approved (products with revoked approval) can be whitelisted. - * (users.setAvailableProductSet) - * - * @param string $enterpriseId The ID of the enterprise. - * @param string $userId The ID of the user. - * @param Google_Service_AndroidEnterprise_ProductSet $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidEnterprise_ProductSet - */ - public function setAvailableProductSet($enterpriseId, $userId, Google_Service_AndroidEnterprise_ProductSet $postBody, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setAvailableProductSet', array($params), "Google_Service_AndroidEnterprise_ProductSet"); - } - /** - * Updates the details of an EMM-managed user. - * - * Can be used with EMM-managed users only (not Google managed users). Pass the - * new details in the Users resource in the request body. Only the displayName - * field can be changed. Other fields must either be unset or have the currently - * active value. (users.update) - * - * @param string $enterpriseId The ID of the enterprise. - * @param string $userId The ID of the user. - * @param Google_Service_AndroidEnterprise_User $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidEnterprise_User - */ - public function update($enterpriseId, $userId, Google_Service_AndroidEnterprise_User $postBody, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_AndroidEnterprise_User"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Resource/Webapps.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Resource/Webapps.php deleted file mode 100644 index cdeb302a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/Resource/Webapps.php +++ /dev/null @@ -1,98 +0,0 @@ - - * $androidenterpriseService = new Google_Service_AndroidEnterprise(...); - * $webapps = $androidenterpriseService->webapps; - * - */ -class Google_Service_AndroidEnterprise_Resource_Webapps extends Google_Service_Resource -{ - /** - * Deletes an existing web app. (webapps.delete) - * - * @param string $enterpriseId The ID of the enterprise. - * @param string $webAppId The ID of the web app. - * @param array $optParams Optional parameters. - */ - public function delete($enterpriseId, $webAppId, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'webAppId' => $webAppId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Gets an existing web app. (webapps.get) - * - * @param string $enterpriseId The ID of the enterprise. - * @param string $webAppId The ID of the web app. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidEnterprise_WebApp - */ - public function get($enterpriseId, $webAppId, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'webAppId' => $webAppId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AndroidEnterprise_WebApp"); - } - /** - * Creates a new web app for the enterprise. (webapps.insert) - * - * @param string $enterpriseId The ID of the enterprise. - * @param Google_Service_AndroidEnterprise_WebApp $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidEnterprise_WebApp - */ - public function insert($enterpriseId, Google_Service_AndroidEnterprise_WebApp $postBody, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_AndroidEnterprise_WebApp"); - } - /** - * Retrieves the details of all web apps for a given enterprise. - * (webapps.listWebapps) - * - * @param string $enterpriseId The ID of the enterprise. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidEnterprise_WebAppsListResponse - */ - public function listWebapps($enterpriseId, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AndroidEnterprise_WebAppsListResponse"); - } - /** - * Updates an existing web app. (webapps.update) - * - * @param string $enterpriseId The ID of the enterprise. - * @param string $webAppId The ID of the web app. - * @param Google_Service_AndroidEnterprise_WebApp $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidEnterprise_WebApp - */ - public function update($enterpriseId, $webAppId, Google_Service_AndroidEnterprise_WebApp $postBody, $optParams = array()) - { - $params = array('enterpriseId' => $enterpriseId, 'webAppId' => $webAppId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_AndroidEnterprise_WebApp"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ServiceAccount.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ServiceAccount.php deleted file mode 100644 index 77a3adc5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ServiceAccount.php +++ /dev/null @@ -1,55 +0,0 @@ -key = $key; - } - /** - * @return Google_Service_AndroidEnterprise_ServiceAccountKey - */ - public function getKey() - { - return $this->key; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ServiceAccountKey.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ServiceAccountKey.php deleted file mode 100644 index df0c04fc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ServiceAccountKey.php +++ /dev/null @@ -1,66 +0,0 @@ -data = $data; - } - public function getData() - { - return $this->data; - } - 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 setPublicData($publicData) - { - $this->publicData = $publicData; - } - public function getPublicData() - { - return $this->publicData; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ServiceAccountKeysListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ServiceAccountKeysListResponse.php deleted file mode 100644 index a573e2b3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/ServiceAccountKeysListResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -serviceAccountKey = $serviceAccountKey; - } - /** - * @return Google_Service_AndroidEnterprise_ServiceAccountKey - */ - public function getServiceAccountKey() - { - return $this->serviceAccountKey; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/SignupInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/SignupInfo.php deleted file mode 100644 index 77d48b6a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/SignupInfo.php +++ /dev/null @@ -1,48 +0,0 @@ -completionToken = $completionToken; - } - public function getCompletionToken() - { - return $this->completionToken; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/StoreCluster.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/StoreCluster.php deleted file mode 100644 index f30a149f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/StoreCluster.php +++ /dev/null @@ -1,74 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_AndroidEnterprise_LocalizedText - */ - public function setName($name) - { - $this->name = $name; - } - /** - * @return Google_Service_AndroidEnterprise_LocalizedText - */ - public function getName() - { - return $this->name; - } - public function setOrderInPage($orderInPage) - { - $this->orderInPage = $orderInPage; - } - public function getOrderInPage() - { - return $this->orderInPage; - } - public function setProductId($productId) - { - $this->productId = $productId; - } - public function getProductId() - { - return $this->productId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/StoreLayout.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/StoreLayout.php deleted file mode 100644 index b93f0dcc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/StoreLayout.php +++ /dev/null @@ -1,48 +0,0 @@ -homepageId = $homepageId; - } - public function getHomepageId() - { - return $this->homepageId; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setStoreLayoutType($storeLayoutType) - { - $this->storeLayoutType = $storeLayoutType; - } - public function getStoreLayoutType() - { - return $this->storeLayoutType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/StoreLayoutClustersListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/StoreLayoutClustersListResponse.php deleted file mode 100644 index 1908d813..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/StoreLayoutClustersListResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -cluster = $cluster; - } - /** - * @return Google_Service_AndroidEnterprise_StoreCluster - */ - public function getCluster() - { - return $this->cluster; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/StoreLayoutPagesListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/StoreLayoutPagesListResponse.php deleted file mode 100644 index e885ace1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/StoreLayoutPagesListResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_AndroidEnterprise_StorePage - */ - public function setPage($page) - { - $this->page = $page; - } - /** - * @return Google_Service_AndroidEnterprise_StorePage - */ - public function getPage() - { - return $this->page; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/StorePage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/StorePage.php deleted file mode 100644 index dd0351a0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/StorePage.php +++ /dev/null @@ -1,65 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLink($link) - { - $this->link = $link; - } - public function getLink() - { - return $this->link; - } - /** - * @param Google_Service_AndroidEnterprise_LocalizedText - */ - public function setName($name) - { - $this->name = $name; - } - /** - * @return Google_Service_AndroidEnterprise_LocalizedText - */ - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/TokenPagination.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/TokenPagination.php deleted file mode 100644 index 1336d2f5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/TokenPagination.php +++ /dev/null @@ -1,39 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setPreviousPageToken($previousPageToken) - { - $this->previousPageToken = $previousPageToken; - } - public function getPreviousPageToken() - { - return $this->previousPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/TrackInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/TrackInfo.php deleted file mode 100644 index 0cc0c39e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/TrackInfo.php +++ /dev/null @@ -1,39 +0,0 @@ -trackAlias = $trackAlias; - } - public function getTrackAlias() - { - return $this->trackAlias; - } - public function setTrackId($trackId) - { - $this->trackId = $trackId; - } - public function getTrackId() - { - return $this->trackId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/User.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/User.php deleted file mode 100644 index 749313d7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/User.php +++ /dev/null @@ -1,84 +0,0 @@ -accountIdentifier = $accountIdentifier; - } - public function getAccountIdentifier() - { - return $this->accountIdentifier; - } - public function setAccountType($accountType) - { - $this->accountType = $accountType; - } - public function getAccountType() - { - return $this->accountType; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - 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 setManagementType($managementType) - { - $this->managementType = $managementType; - } - public function getManagementType() - { - return $this->managementType; - } - public function setPrimaryEmail($primaryEmail) - { - $this->primaryEmail = $primaryEmail; - } - public function getPrimaryEmail() - { - return $this->primaryEmail; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/UserToken.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/UserToken.php deleted file mode 100644 index 6c81e5ff..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/UserToken.php +++ /dev/null @@ -1,48 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setToken($token) - { - $this->token = $token; - } - public function getToken() - { - return $this->token; - } - public function setUserId($userId) - { - $this->userId = $userId; - } - public function getUserId() - { - return $this->userId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/UsersListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/UsersListResponse.php deleted file mode 100644 index bf8120ad..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/UsersListResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_AndroidEnterprise_User - */ - public function setUser($user) - { - $this->user = $user; - } - /** - * @return Google_Service_AndroidEnterprise_User - */ - public function getUser() - { - return $this->user; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/VariableSet.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/VariableSet.php deleted file mode 100644 index 4b707082..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/VariableSet.php +++ /dev/null @@ -1,48 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setPlaceholder($placeholder) - { - $this->placeholder = $placeholder; - } - public function getPlaceholder() - { - return $this->placeholder; - } - public function setUserValue($userValue) - { - $this->userValue = $userValue; - } - public function getUserValue() - { - return $this->userValue; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/WebApp.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/WebApp.php deleted file mode 100644 index a2c41fc0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/WebApp.php +++ /dev/null @@ -1,92 +0,0 @@ -displayMode = $displayMode; - } - public function getDisplayMode() - { - return $this->displayMode; - } - /** - * @param Google_Service_AndroidEnterprise_WebAppIcon - */ - public function setIcons($icons) - { - $this->icons = $icons; - } - /** - * @return Google_Service_AndroidEnterprise_WebAppIcon - */ - public function getIcons() - { - return $this->icons; - } - public function setIsPublished($isPublished) - { - $this->isPublished = $isPublished; - } - public function getIsPublished() - { - return $this->isPublished; - } - public function setStartUrl($startUrl) - { - $this->startUrl = $startUrl; - } - public function getStartUrl() - { - return $this->startUrl; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setVersionCode($versionCode) - { - $this->versionCode = $versionCode; - } - public function getVersionCode() - { - return $this->versionCode; - } - public function setWebAppId($webAppId) - { - $this->webAppId = $webAppId; - } - public function getWebAppId() - { - return $this->webAppId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/WebAppIcon.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/WebAppIcon.php deleted file mode 100644 index 6ee6578d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/WebAppIcon.php +++ /dev/null @@ -1,30 +0,0 @@ -imageData = $imageData; - } - public function getImageData() - { - return $this->imageData; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/WebAppsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/WebAppsListResponse.php deleted file mode 100644 index 83b5a211..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidEnterprise/WebAppsListResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_AndroidEnterprise_WebApp - */ - public function setWebApp($webApp) - { - $this->webApp = $webApp; - } - /** - * @return Google_Service_AndroidEnterprise_WebApp - */ - public function getWebApp() - { - return $this->webApp; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement.php deleted file mode 100644 index cb0c8b68..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement.php +++ /dev/null @@ -1,489 +0,0 @@ - - * The Android Management API provides remote enterprise management of Android - * devices and apps.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_AndroidManagement extends Google_Service -{ - /** Manage Android devices and apps for your customers. */ - const ANDROIDMANAGEMENT = - "https://www.googleapis.com/auth/androidmanagement"; - - public $enterprises; - public $enterprises_applications; - public $enterprises_devices; - public $enterprises_devices_operations; - public $enterprises_enrollmentTokens; - public $enterprises_policies; - public $enterprises_webApps; - public $enterprises_webTokens; - public $signupUrls; - - /** - * Constructs the internal representation of the AndroidManagement service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://androidmanagement.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'androidmanagement'; - - $this->enterprises = new Google_Service_AndroidManagement_Resource_Enterprises( - $this, - $this->serviceName, - 'enterprises', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/enterprises', - 'httpMethod' => 'POST', - 'parameters' => array( - 'signupUrlName' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'projectId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'enterpriseToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->enterprises_applications = new Google_Service_AndroidManagement_Resource_EnterprisesApplications( - $this, - $this->serviceName, - 'applications', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'languageCode' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->enterprises_devices = new Google_Service_AndroidManagement_Resource_EnterprisesDevices( - $this, - $this->serviceName, - 'devices', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'wipeReasonMessage' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'wipeDataFlags' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'issueCommand' => array( - 'path' => 'v1/{+name}:issueCommand', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/devices', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->enterprises_devices_operations = new Google_Service_AndroidManagement_Resource_EnterprisesDevicesOperations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'cancel' => array( - 'path' => 'v1/{+name}:cancel', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->enterprises_enrollmentTokens = new Google_Service_AndroidManagement_Resource_EnterprisesEnrollmentTokens( - $this, - $this->serviceName, - 'enrollmentTokens', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/enrollmentTokens', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->enterprises_policies = new Google_Service_AndroidManagement_Resource_EnterprisesPolicies( - $this, - $this->serviceName, - 'policies', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/policies', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->enterprises_webApps = new Google_Service_AndroidManagement_Resource_EnterprisesWebApps( - $this, - $this->serviceName, - 'webApps', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/webApps', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/webApps', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->enterprises_webTokens = new Google_Service_AndroidManagement_Resource_EnterprisesWebTokens( - $this, - $this->serviceName, - 'webTokens', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/webTokens', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->signupUrls = new Google_Service_AndroidManagement_Resource_SignupUrls( - $this, - $this->serviceName, - 'signupUrls', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/signupUrls', - 'httpMethod' => 'POST', - 'parameters' => array( - 'callbackUrl' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'projectId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/AdvancedSecurityOverrides.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/AdvancedSecurityOverrides.php deleted file mode 100644 index 04440cb1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/AdvancedSecurityOverrides.php +++ /dev/null @@ -1,30 +0,0 @@ -untrustedAppsPolicy = $untrustedAppsPolicy; - } - public function getUntrustedAppsPolicy() - { - return $this->untrustedAppsPolicy; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/AlwaysOnVpnPackage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/AlwaysOnVpnPackage.php deleted file mode 100644 index a8475473..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/AlwaysOnVpnPackage.php +++ /dev/null @@ -1,39 +0,0 @@ -lockdownEnabled = $lockdownEnabled; - } - public function getLockdownEnabled() - { - return $this->lockdownEnabled; - } - public function setPackageName($packageName) - { - $this->packageName = $packageName; - } - public function getPackageName() - { - return $this->packageName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/AndroidmanagementEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/AndroidmanagementEmpty.php deleted file mode 100644 index 45d9f658..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/AndroidmanagementEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -minApiLevel = $minApiLevel; - } - public function getMinApiLevel() - { - return $this->minApiLevel; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/AppTrackInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/AppTrackInfo.php deleted file mode 100644 index 762c7100..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/AppTrackInfo.php +++ /dev/null @@ -1,39 +0,0 @@ -trackAlias = $trackAlias; - } - public function getTrackAlias() - { - return $this->trackAlias; - } - public function setTrackId($trackId) - { - $this->trackId = $trackId; - } - public function getTrackId() - { - return $this->trackId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/Application.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/Application.php deleted file mode 100644 index 99a60195..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/Application.php +++ /dev/null @@ -1,88 +0,0 @@ -appTracks = $appTracks; - } - /** - * @return Google_Service_AndroidManagement_AppTrackInfo - */ - public function getAppTracks() - { - return $this->appTracks; - } - /** - * @param Google_Service_AndroidManagement_ManagedProperty - */ - public function setManagedProperties($managedProperties) - { - $this->managedProperties = $managedProperties; - } - /** - * @return Google_Service_AndroidManagement_ManagedProperty - */ - public function getManagedProperties() - { - return $this->managedProperties; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_AndroidManagement_ApplicationPermission - */ - public function setPermissions($permissions) - { - $this->permissions = $permissions; - } - /** - * @return Google_Service_AndroidManagement_ApplicationPermission - */ - public function getPermissions() - { - return $this->permissions; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/ApplicationEvent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/ApplicationEvent.php deleted file mode 100644 index 320e580e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/ApplicationEvent.php +++ /dev/null @@ -1,39 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setEventType($eventType) - { - $this->eventType = $eventType; - } - public function getEventType() - { - return $this->eventType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/ApplicationPermission.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/ApplicationPermission.php deleted file mode 100644 index 131c0639..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/ApplicationPermission.php +++ /dev/null @@ -1,48 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPermissionId($permissionId) - { - $this->permissionId = $permissionId; - } - public function getPermissionId() - { - return $this->permissionId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/ApplicationPolicy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/ApplicationPolicy.php deleted file mode 100644 index 04519f21..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/ApplicationPolicy.php +++ /dev/null @@ -1,135 +0,0 @@ -accessibleTrackIds = $accessibleTrackIds; - } - public function getAccessibleTrackIds() - { - return $this->accessibleTrackIds; - } - public function setDefaultPermissionPolicy($defaultPermissionPolicy) - { - $this->defaultPermissionPolicy = $defaultPermissionPolicy; - } - public function getDefaultPermissionPolicy() - { - return $this->defaultPermissionPolicy; - } - public function setDelegatedScopes($delegatedScopes) - { - $this->delegatedScopes = $delegatedScopes; - } - public function getDelegatedScopes() - { - return $this->delegatedScopes; - } - public function setDisabled($disabled) - { - $this->disabled = $disabled; - } - public function getDisabled() - { - return $this->disabled; - } - public function setInstallType($installType) - { - $this->installType = $installType; - } - public function getInstallType() - { - return $this->installType; - } - public function setLockTaskAllowed($lockTaskAllowed) - { - $this->lockTaskAllowed = $lockTaskAllowed; - } - public function getLockTaskAllowed() - { - return $this->lockTaskAllowed; - } - public function setManagedConfiguration($managedConfiguration) - { - $this->managedConfiguration = $managedConfiguration; - } - public function getManagedConfiguration() - { - return $this->managedConfiguration; - } - /** - * @param Google_Service_AndroidManagement_ManagedConfigurationTemplate - */ - public function setManagedConfigurationTemplate(Google_Service_AndroidManagement_ManagedConfigurationTemplate $managedConfigurationTemplate) - { - $this->managedConfigurationTemplate = $managedConfigurationTemplate; - } - /** - * @return Google_Service_AndroidManagement_ManagedConfigurationTemplate - */ - public function getManagedConfigurationTemplate() - { - return $this->managedConfigurationTemplate; - } - public function setMinimumVersionCode($minimumVersionCode) - { - $this->minimumVersionCode = $minimumVersionCode; - } - public function getMinimumVersionCode() - { - return $this->minimumVersionCode; - } - public function setPackageName($packageName) - { - $this->packageName = $packageName; - } - public function getPackageName() - { - return $this->packageName; - } - /** - * @param Google_Service_AndroidManagement_PermissionGrant - */ - public function setPermissionGrants($permissionGrants) - { - $this->permissionGrants = $permissionGrants; - } - /** - * @return Google_Service_AndroidManagement_PermissionGrant - */ - public function getPermissionGrants() - { - return $this->permissionGrants; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/ApplicationReport.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/ApplicationReport.php deleted file mode 100644 index 3c58f572..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/ApplicationReport.php +++ /dev/null @@ -1,135 +0,0 @@ -applicationSource = $applicationSource; - } - public function getApplicationSource() - { - return $this->applicationSource; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - /** - * @param Google_Service_AndroidManagement_ApplicationEvent - */ - public function setEvents($events) - { - $this->events = $events; - } - /** - * @return Google_Service_AndroidManagement_ApplicationEvent - */ - public function getEvents() - { - return $this->events; - } - public function setInstallerPackageName($installerPackageName) - { - $this->installerPackageName = $installerPackageName; - } - public function getInstallerPackageName() - { - return $this->installerPackageName; - } - /** - * @param Google_Service_AndroidManagement_KeyedAppState - */ - public function setKeyedAppStates($keyedAppStates) - { - $this->keyedAppStates = $keyedAppStates; - } - /** - * @return Google_Service_AndroidManagement_KeyedAppState - */ - public function getKeyedAppStates() - { - return $this->keyedAppStates; - } - public function setPackageName($packageName) - { - $this->packageName = $packageName; - } - public function getPackageName() - { - return $this->packageName; - } - public function setPackageSha256Hash($packageSha256Hash) - { - $this->packageSha256Hash = $packageSha256Hash; - } - public function getPackageSha256Hash() - { - return $this->packageSha256Hash; - } - public function setSigningKeyCertFingerprints($signingKeyCertFingerprints) - { - $this->signingKeyCertFingerprints = $signingKeyCertFingerprints; - } - public function getSigningKeyCertFingerprints() - { - return $this->signingKeyCertFingerprints; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setVersionCode($versionCode) - { - $this->versionCode = $versionCode; - } - public function getVersionCode() - { - return $this->versionCode; - } - public function setVersionName($versionName) - { - $this->versionName = $versionName; - } - public function getVersionName() - { - return $this->versionName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/ApplicationReportingSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/ApplicationReportingSettings.php deleted file mode 100644 index b4c30cca..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/ApplicationReportingSettings.php +++ /dev/null @@ -1,30 +0,0 @@ -includeRemovedApps = $includeRemovedApps; - } - public function getIncludeRemovedApps() - { - return $this->includeRemovedApps; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/BlockAction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/BlockAction.php deleted file mode 100644 index 06e3e10b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/BlockAction.php +++ /dev/null @@ -1,30 +0,0 @@ -blockAfterDays = $blockAfterDays; - } - public function getBlockAfterDays() - { - return $this->blockAfterDays; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/ChoosePrivateKeyRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/ChoosePrivateKeyRule.php deleted file mode 100644 index 54ec594d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/ChoosePrivateKeyRule.php +++ /dev/null @@ -1,49 +0,0 @@ -packageNames = $packageNames; - } - public function getPackageNames() - { - return $this->packageNames; - } - public function setPrivateKeyAlias($privateKeyAlias) - { - $this->privateKeyAlias = $privateKeyAlias; - } - public function getPrivateKeyAlias() - { - return $this->privateKeyAlias; - } - public function setUrlPattern($urlPattern) - { - $this->urlPattern = $urlPattern; - } - public function getUrlPattern() - { - return $this->urlPattern; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/Command.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/Command.php deleted file mode 100644 index f650c3f0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/Command.php +++ /dev/null @@ -1,85 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setDuration($duration) - { - $this->duration = $duration; - } - public function getDuration() - { - return $this->duration; - } - public function setErrorCode($errorCode) - { - $this->errorCode = $errorCode; - } - public function getErrorCode() - { - return $this->errorCode; - } - public function setNewPassword($newPassword) - { - $this->newPassword = $newPassword; - } - public function getNewPassword() - { - return $this->newPassword; - } - public function setResetPasswordFlags($resetPasswordFlags) - { - $this->resetPasswordFlags = $resetPasswordFlags; - } - public function getResetPasswordFlags() - { - return $this->resetPasswordFlags; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setUserName($userName) - { - $this->userName = $userName; - } - public function getUserName() - { - return $this->userName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/ComplianceRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/ComplianceRule.php deleted file mode 100644 index e6742065..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/ComplianceRule.php +++ /dev/null @@ -1,72 +0,0 @@ -apiLevelCondition = $apiLevelCondition; - } - /** - * @return Google_Service_AndroidManagement_ApiLevelCondition - */ - public function getApiLevelCondition() - { - return $this->apiLevelCondition; - } - public function setDisableApps($disableApps) - { - $this->disableApps = $disableApps; - } - public function getDisableApps() - { - return $this->disableApps; - } - /** - * @param Google_Service_AndroidManagement_NonComplianceDetailCondition - */ - public function setNonComplianceDetailCondition(Google_Service_AndroidManagement_NonComplianceDetailCondition $nonComplianceDetailCondition) - { - $this->nonComplianceDetailCondition = $nonComplianceDetailCondition; - } - /** - * @return Google_Service_AndroidManagement_NonComplianceDetailCondition - */ - public function getNonComplianceDetailCondition() - { - return $this->nonComplianceDetailCondition; - } - public function setPackageNamesToDisable($packageNamesToDisable) - { - $this->packageNamesToDisable = $packageNamesToDisable; - } - public function getPackageNamesToDisable() - { - return $this->packageNamesToDisable; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/Date.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/Date.php deleted file mode 100644 index 6fe8565e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/Date.php +++ /dev/null @@ -1,48 +0,0 @@ -day = $day; - } - public function getDay() - { - return $this->day; - } - public function setMonth($month) - { - $this->month = $month; - } - public function getMonth() - { - return $this->month; - } - public function setYear($year) - { - $this->year = $year; - } - public function getYear() - { - return $this->year; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/Device.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/Device.php deleted file mode 100644 index 54f981d7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/Device.php +++ /dev/null @@ -1,408 +0,0 @@ -apiLevel = $apiLevel; - } - public function getApiLevel() - { - return $this->apiLevel; - } - /** - * @param Google_Service_AndroidManagement_ApplicationReport - */ - public function setApplicationReports($applicationReports) - { - $this->applicationReports = $applicationReports; - } - /** - * @return Google_Service_AndroidManagement_ApplicationReport - */ - public function getApplicationReports() - { - return $this->applicationReports; - } - public function setAppliedPolicyName($appliedPolicyName) - { - $this->appliedPolicyName = $appliedPolicyName; - } - public function getAppliedPolicyName() - { - return $this->appliedPolicyName; - } - public function setAppliedPolicyVersion($appliedPolicyVersion) - { - $this->appliedPolicyVersion = $appliedPolicyVersion; - } - public function getAppliedPolicyVersion() - { - return $this->appliedPolicyVersion; - } - public function setAppliedState($appliedState) - { - $this->appliedState = $appliedState; - } - public function getAppliedState() - { - return $this->appliedState; - } - /** - * @param Google_Service_AndroidManagement_DeviceSettings - */ - public function setDeviceSettings(Google_Service_AndroidManagement_DeviceSettings $deviceSettings) - { - $this->deviceSettings = $deviceSettings; - } - /** - * @return Google_Service_AndroidManagement_DeviceSettings - */ - public function getDeviceSettings() - { - return $this->deviceSettings; - } - /** - * @param Google_Service_AndroidManagement_UserFacingMessage - */ - public function setDisabledReason(Google_Service_AndroidManagement_UserFacingMessage $disabledReason) - { - $this->disabledReason = $disabledReason; - } - /** - * @return Google_Service_AndroidManagement_UserFacingMessage - */ - public function getDisabledReason() - { - return $this->disabledReason; - } - /** - * @param Google_Service_AndroidManagement_Display - */ - public function setDisplays($displays) - { - $this->displays = $displays; - } - /** - * @return Google_Service_AndroidManagement_Display - */ - public function getDisplays() - { - return $this->displays; - } - public function setEnrollmentTime($enrollmentTime) - { - $this->enrollmentTime = $enrollmentTime; - } - public function getEnrollmentTime() - { - return $this->enrollmentTime; - } - public function setEnrollmentTokenData($enrollmentTokenData) - { - $this->enrollmentTokenData = $enrollmentTokenData; - } - public function getEnrollmentTokenData() - { - return $this->enrollmentTokenData; - } - public function setEnrollmentTokenName($enrollmentTokenName) - { - $this->enrollmentTokenName = $enrollmentTokenName; - } - public function getEnrollmentTokenName() - { - return $this->enrollmentTokenName; - } - /** - * @param Google_Service_AndroidManagement_HardwareInfo - */ - public function setHardwareInfo(Google_Service_AndroidManagement_HardwareInfo $hardwareInfo) - { - $this->hardwareInfo = $hardwareInfo; - } - /** - * @return Google_Service_AndroidManagement_HardwareInfo - */ - public function getHardwareInfo() - { - return $this->hardwareInfo; - } - /** - * @param Google_Service_AndroidManagement_HardwareStatus - */ - public function setHardwareStatusSamples($hardwareStatusSamples) - { - $this->hardwareStatusSamples = $hardwareStatusSamples; - } - /** - * @return Google_Service_AndroidManagement_HardwareStatus - */ - public function getHardwareStatusSamples() - { - return $this->hardwareStatusSamples; - } - public function setLastPolicyComplianceReportTime($lastPolicyComplianceReportTime) - { - $this->lastPolicyComplianceReportTime = $lastPolicyComplianceReportTime; - } - public function getLastPolicyComplianceReportTime() - { - return $this->lastPolicyComplianceReportTime; - } - public function setLastPolicySyncTime($lastPolicySyncTime) - { - $this->lastPolicySyncTime = $lastPolicySyncTime; - } - public function getLastPolicySyncTime() - { - return $this->lastPolicySyncTime; - } - public function setLastStatusReportTime($lastStatusReportTime) - { - $this->lastStatusReportTime = $lastStatusReportTime; - } - public function getLastStatusReportTime() - { - return $this->lastStatusReportTime; - } - public function setManagementMode($managementMode) - { - $this->managementMode = $managementMode; - } - public function getManagementMode() - { - return $this->managementMode; - } - /** - * @param Google_Service_AndroidManagement_MemoryEvent - */ - public function setMemoryEvents($memoryEvents) - { - $this->memoryEvents = $memoryEvents; - } - /** - * @return Google_Service_AndroidManagement_MemoryEvent - */ - public function getMemoryEvents() - { - return $this->memoryEvents; - } - /** - * @param Google_Service_AndroidManagement_MemoryInfo - */ - public function setMemoryInfo(Google_Service_AndroidManagement_MemoryInfo $memoryInfo) - { - $this->memoryInfo = $memoryInfo; - } - /** - * @return Google_Service_AndroidManagement_MemoryInfo - */ - public function getMemoryInfo() - { - return $this->memoryInfo; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_AndroidManagement_NetworkInfo - */ - public function setNetworkInfo(Google_Service_AndroidManagement_NetworkInfo $networkInfo) - { - $this->networkInfo = $networkInfo; - } - /** - * @return Google_Service_AndroidManagement_NetworkInfo - */ - public function getNetworkInfo() - { - return $this->networkInfo; - } - /** - * @param Google_Service_AndroidManagement_NonComplianceDetail - */ - public function setNonComplianceDetails($nonComplianceDetails) - { - $this->nonComplianceDetails = $nonComplianceDetails; - } - /** - * @return Google_Service_AndroidManagement_NonComplianceDetail - */ - public function getNonComplianceDetails() - { - return $this->nonComplianceDetails; - } - public function setPolicyCompliant($policyCompliant) - { - $this->policyCompliant = $policyCompliant; - } - public function getPolicyCompliant() - { - return $this->policyCompliant; - } - public function setPolicyName($policyName) - { - $this->policyName = $policyName; - } - public function getPolicyName() - { - return $this->policyName; - } - /** - * @param Google_Service_AndroidManagement_PowerManagementEvent - */ - public function setPowerManagementEvents($powerManagementEvents) - { - $this->powerManagementEvents = $powerManagementEvents; - } - /** - * @return Google_Service_AndroidManagement_PowerManagementEvent - */ - public function getPowerManagementEvents() - { - return $this->powerManagementEvents; - } - public function setPreviousDeviceNames($previousDeviceNames) - { - $this->previousDeviceNames = $previousDeviceNames; - } - public function getPreviousDeviceNames() - { - return $this->previousDeviceNames; - } - /** - * @param Google_Service_AndroidManagement_SecurityPosture - */ - public function setSecurityPosture(Google_Service_AndroidManagement_SecurityPosture $securityPosture) - { - $this->securityPosture = $securityPosture; - } - /** - * @return Google_Service_AndroidManagement_SecurityPosture - */ - public function getSecurityPosture() - { - return $this->securityPosture; - } - /** - * @param Google_Service_AndroidManagement_SoftwareInfo - */ - public function setSoftwareInfo(Google_Service_AndroidManagement_SoftwareInfo $softwareInfo) - { - $this->softwareInfo = $softwareInfo; - } - /** - * @return Google_Service_AndroidManagement_SoftwareInfo - */ - public function getSoftwareInfo() - { - return $this->softwareInfo; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setSystemProperties($systemProperties) - { - $this->systemProperties = $systemProperties; - } - public function getSystemProperties() - { - return $this->systemProperties; - } - /** - * @param Google_Service_AndroidManagement_User - */ - public function setUser(Google_Service_AndroidManagement_User $user) - { - $this->user = $user; - } - /** - * @return Google_Service_AndroidManagement_User - */ - public function getUser() - { - return $this->user; - } - public function setUserName($userName) - { - $this->userName = $userName; - } - public function getUserName() - { - return $this->userName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/DeviceSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/DeviceSettings.php deleted file mode 100644 index afa96bc1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/DeviceSettings.php +++ /dev/null @@ -1,84 +0,0 @@ -adbEnabled = $adbEnabled; - } - public function getAdbEnabled() - { - return $this->adbEnabled; - } - public function setDevelopmentSettingsEnabled($developmentSettingsEnabled) - { - $this->developmentSettingsEnabled = $developmentSettingsEnabled; - } - public function getDevelopmentSettingsEnabled() - { - return $this->developmentSettingsEnabled; - } - public function setEncryptionStatus($encryptionStatus) - { - $this->encryptionStatus = $encryptionStatus; - } - public function getEncryptionStatus() - { - return $this->encryptionStatus; - } - public function setIsDeviceSecure($isDeviceSecure) - { - $this->isDeviceSecure = $isDeviceSecure; - } - public function getIsDeviceSecure() - { - return $this->isDeviceSecure; - } - public function setIsEncrypted($isEncrypted) - { - $this->isEncrypted = $isEncrypted; - } - public function getIsEncrypted() - { - return $this->isEncrypted; - } - public function setUnknownSourcesEnabled($unknownSourcesEnabled) - { - $this->unknownSourcesEnabled = $unknownSourcesEnabled; - } - public function getUnknownSourcesEnabled() - { - return $this->unknownSourcesEnabled; - } - public function setVerifyAppsEnabled($verifyAppsEnabled) - { - $this->verifyAppsEnabled = $verifyAppsEnabled; - } - public function getVerifyAppsEnabled() - { - return $this->verifyAppsEnabled; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/Display.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/Display.php deleted file mode 100644 index b83b1d5a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/Display.php +++ /dev/null @@ -1,84 +0,0 @@ -density = $density; - } - public function getDensity() - { - return $this->density; - } - public function setDisplayId($displayId) - { - $this->displayId = $displayId; - } - public function getDisplayId() - { - return $this->displayId; - } - public function setHeight($height) - { - $this->height = $height; - } - public function getHeight() - { - return $this->height; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setRefreshRate($refreshRate) - { - $this->refreshRate = $refreshRate; - } - public function getRefreshRate() - { - return $this->refreshRate; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setWidth($width) - { - $this->width = $width; - } - public function getWidth() - { - return $this->width; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/EnrollmentToken.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/EnrollmentToken.php deleted file mode 100644 index b7879d1a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/EnrollmentToken.php +++ /dev/null @@ -1,109 +0,0 @@ -additionalData = $additionalData; - } - public function getAdditionalData() - { - return $this->additionalData; - } - public function setDuration($duration) - { - $this->duration = $duration; - } - public function getDuration() - { - return $this->duration; - } - public function setExpirationTimestamp($expirationTimestamp) - { - $this->expirationTimestamp = $expirationTimestamp; - } - public function getExpirationTimestamp() - { - return $this->expirationTimestamp; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOneTimeOnly($oneTimeOnly) - { - $this->oneTimeOnly = $oneTimeOnly; - } - public function getOneTimeOnly() - { - return $this->oneTimeOnly; - } - public function setPolicyName($policyName) - { - $this->policyName = $policyName; - } - public function getPolicyName() - { - return $this->policyName; - } - public function setQrCode($qrCode) - { - $this->qrCode = $qrCode; - } - public function getQrCode() - { - return $this->qrCode; - } - /** - * @param Google_Service_AndroidManagement_User - */ - public function setUser(Google_Service_AndroidManagement_User $user) - { - $this->user = $user; - } - /** - * @return Google_Service_AndroidManagement_User - */ - public function getUser() - { - return $this->user; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/Enterprise.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/Enterprise.php deleted file mode 100644 index 9fadbd4f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/Enterprise.php +++ /dev/null @@ -1,124 +0,0 @@ -appAutoApprovalEnabled = $appAutoApprovalEnabled; - } - public function getAppAutoApprovalEnabled() - { - return $this->appAutoApprovalEnabled; - } - public function setEnabledNotificationTypes($enabledNotificationTypes) - { - $this->enabledNotificationTypes = $enabledNotificationTypes; - } - public function getEnabledNotificationTypes() - { - return $this->enabledNotificationTypes; - } - public function setEnterpriseDisplayName($enterpriseDisplayName) - { - $this->enterpriseDisplayName = $enterpriseDisplayName; - } - public function getEnterpriseDisplayName() - { - return $this->enterpriseDisplayName; - } - /** - * @param Google_Service_AndroidManagement_ExternalData - */ - public function setLogo(Google_Service_AndroidManagement_ExternalData $logo) - { - $this->logo = $logo; - } - /** - * @return Google_Service_AndroidManagement_ExternalData - */ - public function getLogo() - { - return $this->logo; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPrimaryColor($primaryColor) - { - $this->primaryColor = $primaryColor; - } - public function getPrimaryColor() - { - return $this->primaryColor; - } - public function setPubsubTopic($pubsubTopic) - { - $this->pubsubTopic = $pubsubTopic; - } - public function getPubsubTopic() - { - return $this->pubsubTopic; - } - /** - * @param Google_Service_AndroidManagement_SigninDetail - */ - public function setSigninDetails($signinDetails) - { - $this->signinDetails = $signinDetails; - } - /** - * @return Google_Service_AndroidManagement_SigninDetail - */ - public function getSigninDetails() - { - return $this->signinDetails; - } - /** - * @param Google_Service_AndroidManagement_TermsAndConditions - */ - public function setTermsAndConditions($termsAndConditions) - { - $this->termsAndConditions = $termsAndConditions; - } - /** - * @return Google_Service_AndroidManagement_TermsAndConditions - */ - public function getTermsAndConditions() - { - return $this->termsAndConditions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/ExternalData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/ExternalData.php deleted file mode 100644 index 57730a21..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/ExternalData.php +++ /dev/null @@ -1,39 +0,0 @@ -sha256Hash = $sha256Hash; - } - public function getSha256Hash() - { - return $this->sha256Hash; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/FreezePeriod.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/FreezePeriod.php deleted file mode 100644 index 6377de92..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/FreezePeriod.php +++ /dev/null @@ -1,53 +0,0 @@ -endDate = $endDate; - } - /** - * @return Google_Service_AndroidManagement_Date - */ - public function getEndDate() - { - return $this->endDate; - } - /** - * @param Google_Service_AndroidManagement_Date - */ - public function setStartDate(Google_Service_AndroidManagement_Date $startDate) - { - $this->startDate = $startDate; - } - /** - * @return Google_Service_AndroidManagement_Date - */ - public function getStartDate() - { - return $this->startDate; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/HardwareInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/HardwareInfo.php deleted file mode 100644 index f2ade6e3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/HardwareInfo.php +++ /dev/null @@ -1,148 +0,0 @@ -batteryShutdownTemperatures = $batteryShutdownTemperatures; - } - public function getBatteryShutdownTemperatures() - { - return $this->batteryShutdownTemperatures; - } - public function setBatteryThrottlingTemperatures($batteryThrottlingTemperatures) - { - $this->batteryThrottlingTemperatures = $batteryThrottlingTemperatures; - } - public function getBatteryThrottlingTemperatures() - { - return $this->batteryThrottlingTemperatures; - } - public function setBrand($brand) - { - $this->brand = $brand; - } - public function getBrand() - { - return $this->brand; - } - public function setCpuShutdownTemperatures($cpuShutdownTemperatures) - { - $this->cpuShutdownTemperatures = $cpuShutdownTemperatures; - } - public function getCpuShutdownTemperatures() - { - return $this->cpuShutdownTemperatures; - } - public function setCpuThrottlingTemperatures($cpuThrottlingTemperatures) - { - $this->cpuThrottlingTemperatures = $cpuThrottlingTemperatures; - } - public function getCpuThrottlingTemperatures() - { - return $this->cpuThrottlingTemperatures; - } - public function setDeviceBasebandVersion($deviceBasebandVersion) - { - $this->deviceBasebandVersion = $deviceBasebandVersion; - } - public function getDeviceBasebandVersion() - { - return $this->deviceBasebandVersion; - } - public function setGpuShutdownTemperatures($gpuShutdownTemperatures) - { - $this->gpuShutdownTemperatures = $gpuShutdownTemperatures; - } - public function getGpuShutdownTemperatures() - { - return $this->gpuShutdownTemperatures; - } - public function setGpuThrottlingTemperatures($gpuThrottlingTemperatures) - { - $this->gpuThrottlingTemperatures = $gpuThrottlingTemperatures; - } - public function getGpuThrottlingTemperatures() - { - return $this->gpuThrottlingTemperatures; - } - public function setHardware($hardware) - { - $this->hardware = $hardware; - } - public function getHardware() - { - return $this->hardware; - } - public function setManufacturer($manufacturer) - { - $this->manufacturer = $manufacturer; - } - public function getManufacturer() - { - return $this->manufacturer; - } - public function setModel($model) - { - $this->model = $model; - } - public function getModel() - { - return $this->model; - } - public function setSerialNumber($serialNumber) - { - $this->serialNumber = $serialNumber; - } - public function getSerialNumber() - { - return $this->serialNumber; - } - public function setSkinShutdownTemperatures($skinShutdownTemperatures) - { - $this->skinShutdownTemperatures = $skinShutdownTemperatures; - } - public function getSkinShutdownTemperatures() - { - return $this->skinShutdownTemperatures; - } - public function setSkinThrottlingTemperatures($skinThrottlingTemperatures) - { - $this->skinThrottlingTemperatures = $skinThrottlingTemperatures; - } - public function getSkinThrottlingTemperatures() - { - return $this->skinThrottlingTemperatures; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/HardwareStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/HardwareStatus.php deleted file mode 100644 index ee4d7f25..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/HardwareStatus.php +++ /dev/null @@ -1,85 +0,0 @@ -batteryTemperatures = $batteryTemperatures; - } - public function getBatteryTemperatures() - { - return $this->batteryTemperatures; - } - public function setCpuTemperatures($cpuTemperatures) - { - $this->cpuTemperatures = $cpuTemperatures; - } - public function getCpuTemperatures() - { - return $this->cpuTemperatures; - } - public function setCpuUsages($cpuUsages) - { - $this->cpuUsages = $cpuUsages; - } - public function getCpuUsages() - { - return $this->cpuUsages; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setFanSpeeds($fanSpeeds) - { - $this->fanSpeeds = $fanSpeeds; - } - public function getFanSpeeds() - { - return $this->fanSpeeds; - } - public function setGpuTemperatures($gpuTemperatures) - { - $this->gpuTemperatures = $gpuTemperatures; - } - public function getGpuTemperatures() - { - return $this->gpuTemperatures; - } - public function setSkinTemperatures($skinTemperatures) - { - $this->skinTemperatures = $skinTemperatures; - } - public function getSkinTemperatures() - { - return $this->skinTemperatures; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/KeyedAppState.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/KeyedAppState.php deleted file mode 100644 index 473824ac..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/KeyedAppState.php +++ /dev/null @@ -1,75 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setData($data) - { - $this->data = $data; - } - public function getData() - { - return $this->data; - } - public function setKey($key) - { - $this->key = $key; - } - public function getKey() - { - return $this->key; - } - public function setLastUpdateTime($lastUpdateTime) - { - $this->lastUpdateTime = $lastUpdateTime; - } - public function getLastUpdateTime() - { - return $this->lastUpdateTime; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } - public function setSeverity($severity) - { - $this->severity = $severity; - } - public function getSeverity() - { - return $this->severity; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/KioskCustomization.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/KioskCustomization.php deleted file mode 100644 index 183d3f3f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/KioskCustomization.php +++ /dev/null @@ -1,66 +0,0 @@ -deviceSettings = $deviceSettings; - } - public function getDeviceSettings() - { - return $this->deviceSettings; - } - public function setPowerButtonActions($powerButtonActions) - { - $this->powerButtonActions = $powerButtonActions; - } - public function getPowerButtonActions() - { - return $this->powerButtonActions; - } - public function setStatusBar($statusBar) - { - $this->statusBar = $statusBar; - } - public function getStatusBar() - { - return $this->statusBar; - } - public function setSystemErrorWarnings($systemErrorWarnings) - { - $this->systemErrorWarnings = $systemErrorWarnings; - } - public function getSystemErrorWarnings() - { - return $this->systemErrorWarnings; - } - public function setSystemNavigation($systemNavigation) - { - $this->systemNavigation = $systemNavigation; - } - public function getSystemNavigation() - { - return $this->systemNavigation; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/LaunchAppAction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/LaunchAppAction.php deleted file mode 100644 index 788ff200..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/LaunchAppAction.php +++ /dev/null @@ -1,30 +0,0 @@ -packageName = $packageName; - } - public function getPackageName() - { - return $this->packageName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/ListDevicesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/ListDevicesResponse.php deleted file mode 100644 index a9828f35..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/ListDevicesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -devices = $devices; - } - /** - * @return Google_Service_AndroidManagement_Device - */ - public function getDevices() - { - return $this->devices; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/ListOperationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/ListOperationsResponse.php deleted file mode 100644 index 155f341b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/ListOperationsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_AndroidManagement_Operation - */ - public function setOperations($operations) - { - $this->operations = $operations; - } - /** - * @return Google_Service_AndroidManagement_Operation - */ - public function getOperations() - { - return $this->operations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/ListPoliciesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/ListPoliciesResponse.php deleted file mode 100644 index 6e38b81a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/ListPoliciesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_AndroidManagement_Policy - */ - public function setPolicies($policies) - { - $this->policies = $policies; - } - /** - * @return Google_Service_AndroidManagement_Policy - */ - public function getPolicies() - { - return $this->policies; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/ListWebAppsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/ListWebAppsResponse.php deleted file mode 100644 index 7390c569..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/ListWebAppsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_AndroidManagement_WebApp - */ - public function setWebApps($webApps) - { - $this->webApps = $webApps; - } - /** - * @return Google_Service_AndroidManagement_WebApp - */ - public function getWebApps() - { - return $this->webApps; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/ManagedConfigurationTemplate.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/ManagedConfigurationTemplate.php deleted file mode 100644 index cbd0d37c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/ManagedConfigurationTemplate.php +++ /dev/null @@ -1,39 +0,0 @@ -configurationVariables = $configurationVariables; - } - public function getConfigurationVariables() - { - return $this->configurationVariables; - } - public function setTemplateId($templateId) - { - $this->templateId = $templateId; - } - public function getTemplateId() - { - return $this->templateId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/ManagedProperty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/ManagedProperty.php deleted file mode 100644 index e7cf133c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/ManagedProperty.php +++ /dev/null @@ -1,99 +0,0 @@ -defaultValue = $defaultValue; - } - public function getDefaultValue() - { - return $this->defaultValue; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - /** - * @param Google_Service_AndroidManagement_ManagedPropertyEntry - */ - public function setEntries($entries) - { - $this->entries = $entries; - } - /** - * @return Google_Service_AndroidManagement_ManagedPropertyEntry - */ - public function getEntries() - { - return $this->entries; - } - public function setKey($key) - { - $this->key = $key; - } - public function getKey() - { - return $this->key; - } - /** - * @param Google_Service_AndroidManagement_ManagedProperty - */ - public function setNestedProperties($nestedProperties) - { - $this->nestedProperties = $nestedProperties; - } - /** - * @return Google_Service_AndroidManagement_ManagedProperty - */ - public function getNestedProperties() - { - return $this->nestedProperties; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/ManagedPropertyEntry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/ManagedPropertyEntry.php deleted file mode 100644 index 89f252f9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/ManagedPropertyEntry.php +++ /dev/null @@ -1,39 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/MemoryEvent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/MemoryEvent.php deleted file mode 100644 index 9d85e115..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/MemoryEvent.php +++ /dev/null @@ -1,48 +0,0 @@ -byteCount = $byteCount; - } - public function getByteCount() - { - return $this->byteCount; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setEventType($eventType) - { - $this->eventType = $eventType; - } - public function getEventType() - { - return $this->eventType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/MemoryInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/MemoryInfo.php deleted file mode 100644 index 693e3ff8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/MemoryInfo.php +++ /dev/null @@ -1,39 +0,0 @@ -totalInternalStorage = $totalInternalStorage; - } - public function getTotalInternalStorage() - { - return $this->totalInternalStorage; - } - public function setTotalRam($totalRam) - { - $this->totalRam = $totalRam; - } - public function getTotalRam() - { - return $this->totalRam; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/NetworkInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/NetworkInfo.php deleted file mode 100644 index 9b6d5da3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/NetworkInfo.php +++ /dev/null @@ -1,57 +0,0 @@ -imei = $imei; - } - public function getImei() - { - return $this->imei; - } - public function setMeid($meid) - { - $this->meid = $meid; - } - public function getMeid() - { - return $this->meid; - } - public function setNetworkOperatorName($networkOperatorName) - { - $this->networkOperatorName = $networkOperatorName; - } - public function getNetworkOperatorName() - { - return $this->networkOperatorName; - } - public function setWifiMacAddress($wifiMacAddress) - { - $this->wifiMacAddress = $wifiMacAddress; - } - public function getWifiMacAddress() - { - return $this->wifiMacAddress; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/NonComplianceDetail.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/NonComplianceDetail.php deleted file mode 100644 index 5603a143..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/NonComplianceDetail.php +++ /dev/null @@ -1,75 +0,0 @@ -currentValue = $currentValue; - } - public function getCurrentValue() - { - return $this->currentValue; - } - public function setFieldPath($fieldPath) - { - $this->fieldPath = $fieldPath; - } - public function getFieldPath() - { - return $this->fieldPath; - } - public function setInstallationFailureReason($installationFailureReason) - { - $this->installationFailureReason = $installationFailureReason; - } - public function getInstallationFailureReason() - { - return $this->installationFailureReason; - } - public function setNonComplianceReason($nonComplianceReason) - { - $this->nonComplianceReason = $nonComplianceReason; - } - public function getNonComplianceReason() - { - return $this->nonComplianceReason; - } - public function setPackageName($packageName) - { - $this->packageName = $packageName; - } - public function getPackageName() - { - return $this->packageName; - } - public function setSettingName($settingName) - { - $this->settingName = $settingName; - } - public function getSettingName() - { - return $this->settingName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/NonComplianceDetailCondition.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/NonComplianceDetailCondition.php deleted file mode 100644 index a041bf55..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/NonComplianceDetailCondition.php +++ /dev/null @@ -1,48 +0,0 @@ -nonComplianceReason = $nonComplianceReason; - } - public function getNonComplianceReason() - { - return $this->nonComplianceReason; - } - public function setPackageName($packageName) - { - $this->packageName = $packageName; - } - public function getPackageName() - { - return $this->packageName; - } - public function setSettingName($settingName) - { - $this->settingName = $settingName; - } - public function getSettingName() - { - return $this->settingName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/Operation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/Operation.php deleted file mode 100644 index 27537c5b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/Operation.php +++ /dev/null @@ -1,73 +0,0 @@ -done = $done; - } - public function getDone() - { - return $this->done; - } - /** - * @param Google_Service_AndroidManagement_Status - */ - public function setError(Google_Service_AndroidManagement_Status $error) - { - $this->error = $error; - } - /** - * @return Google_Service_AndroidManagement_Status - */ - public function getError() - { - return $this->error; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/PackageNameList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/PackageNameList.php deleted file mode 100644 index ede51f0c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/PackageNameList.php +++ /dev/null @@ -1,31 +0,0 @@ -packageNames = $packageNames; - } - public function getPackageNames() - { - return $this->packageNames; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/PasswordRequirements.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/PasswordRequirements.php deleted file mode 100644 index 4b74942f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/PasswordRequirements.php +++ /dev/null @@ -1,138 +0,0 @@ -maximumFailedPasswordsForWipe = $maximumFailedPasswordsForWipe; - } - public function getMaximumFailedPasswordsForWipe() - { - return $this->maximumFailedPasswordsForWipe; - } - public function setPasswordExpirationTimeout($passwordExpirationTimeout) - { - $this->passwordExpirationTimeout = $passwordExpirationTimeout; - } - public function getPasswordExpirationTimeout() - { - return $this->passwordExpirationTimeout; - } - public function setPasswordHistoryLength($passwordHistoryLength) - { - $this->passwordHistoryLength = $passwordHistoryLength; - } - public function getPasswordHistoryLength() - { - return $this->passwordHistoryLength; - } - public function setPasswordMinimumLength($passwordMinimumLength) - { - $this->passwordMinimumLength = $passwordMinimumLength; - } - public function getPasswordMinimumLength() - { - return $this->passwordMinimumLength; - } - public function setPasswordMinimumLetters($passwordMinimumLetters) - { - $this->passwordMinimumLetters = $passwordMinimumLetters; - } - public function getPasswordMinimumLetters() - { - return $this->passwordMinimumLetters; - } - public function setPasswordMinimumLowerCase($passwordMinimumLowerCase) - { - $this->passwordMinimumLowerCase = $passwordMinimumLowerCase; - } - public function getPasswordMinimumLowerCase() - { - return $this->passwordMinimumLowerCase; - } - public function setPasswordMinimumNonLetter($passwordMinimumNonLetter) - { - $this->passwordMinimumNonLetter = $passwordMinimumNonLetter; - } - public function getPasswordMinimumNonLetter() - { - return $this->passwordMinimumNonLetter; - } - public function setPasswordMinimumNumeric($passwordMinimumNumeric) - { - $this->passwordMinimumNumeric = $passwordMinimumNumeric; - } - public function getPasswordMinimumNumeric() - { - return $this->passwordMinimumNumeric; - } - public function setPasswordMinimumSymbols($passwordMinimumSymbols) - { - $this->passwordMinimumSymbols = $passwordMinimumSymbols; - } - public function getPasswordMinimumSymbols() - { - return $this->passwordMinimumSymbols; - } - public function setPasswordMinimumUpperCase($passwordMinimumUpperCase) - { - $this->passwordMinimumUpperCase = $passwordMinimumUpperCase; - } - public function getPasswordMinimumUpperCase() - { - return $this->passwordMinimumUpperCase; - } - public function setPasswordQuality($passwordQuality) - { - $this->passwordQuality = $passwordQuality; - } - public function getPasswordQuality() - { - return $this->passwordQuality; - } - public function setPasswordScope($passwordScope) - { - $this->passwordScope = $passwordScope; - } - public function getPasswordScope() - { - return $this->passwordScope; - } - public function setRequirePasswordUnlock($requirePasswordUnlock) - { - $this->requirePasswordUnlock = $requirePasswordUnlock; - } - public function getRequirePasswordUnlock() - { - return $this->requirePasswordUnlock; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/PermissionGrant.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/PermissionGrant.php deleted file mode 100644 index ccf28cd6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/PermissionGrant.php +++ /dev/null @@ -1,39 +0,0 @@ -permission = $permission; - } - public function getPermission() - { - return $this->permission; - } - public function setPolicy($policy) - { - $this->policy = $policy; - } - public function getPolicy() - { - return $this->policy; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/PersistentPreferredActivity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/PersistentPreferredActivity.php deleted file mode 100644 index fabf19a9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/PersistentPreferredActivity.php +++ /dev/null @@ -1,49 +0,0 @@ -actions = $actions; - } - public function getActions() - { - return $this->actions; - } - public function setCategories($categories) - { - $this->categories = $categories; - } - public function getCategories() - { - return $this->categories; - } - public function setReceiverActivity($receiverActivity) - { - $this->receiverActivity = $receiverActivity; - } - public function getReceiverActivity() - { - return $this->receiverActivity; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/Policy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/Policy.php deleted file mode 100644 index 7df9ed77..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/Policy.php +++ /dev/null @@ -1,882 +0,0 @@ -accountTypesWithManagementDisabled = $accountTypesWithManagementDisabled; - } - public function getAccountTypesWithManagementDisabled() - { - return $this->accountTypesWithManagementDisabled; - } - public function setAddUserDisabled($addUserDisabled) - { - $this->addUserDisabled = $addUserDisabled; - } - public function getAddUserDisabled() - { - return $this->addUserDisabled; - } - public function setAdjustVolumeDisabled($adjustVolumeDisabled) - { - $this->adjustVolumeDisabled = $adjustVolumeDisabled; - } - public function getAdjustVolumeDisabled() - { - return $this->adjustVolumeDisabled; - } - /** - * @param Google_Service_AndroidManagement_AdvancedSecurityOverrides - */ - public function setAdvancedSecurityOverrides(Google_Service_AndroidManagement_AdvancedSecurityOverrides $advancedSecurityOverrides) - { - $this->advancedSecurityOverrides = $advancedSecurityOverrides; - } - /** - * @return Google_Service_AndroidManagement_AdvancedSecurityOverrides - */ - public function getAdvancedSecurityOverrides() - { - return $this->advancedSecurityOverrides; - } - /** - * @param Google_Service_AndroidManagement_AlwaysOnVpnPackage - */ - public function setAlwaysOnVpnPackage(Google_Service_AndroidManagement_AlwaysOnVpnPackage $alwaysOnVpnPackage) - { - $this->alwaysOnVpnPackage = $alwaysOnVpnPackage; - } - /** - * @return Google_Service_AndroidManagement_AlwaysOnVpnPackage - */ - public function getAlwaysOnVpnPackage() - { - return $this->alwaysOnVpnPackage; - } - public function setAndroidDevicePolicyTracks($androidDevicePolicyTracks) - { - $this->androidDevicePolicyTracks = $androidDevicePolicyTracks; - } - public function getAndroidDevicePolicyTracks() - { - return $this->androidDevicePolicyTracks; - } - public function setAppAutoUpdatePolicy($appAutoUpdatePolicy) - { - $this->appAutoUpdatePolicy = $appAutoUpdatePolicy; - } - public function getAppAutoUpdatePolicy() - { - return $this->appAutoUpdatePolicy; - } - /** - * @param Google_Service_AndroidManagement_ApplicationPolicy - */ - public function setApplications($applications) - { - $this->applications = $applications; - } - /** - * @return Google_Service_AndroidManagement_ApplicationPolicy - */ - public function getApplications() - { - return $this->applications; - } - public function setAutoTimeRequired($autoTimeRequired) - { - $this->autoTimeRequired = $autoTimeRequired; - } - public function getAutoTimeRequired() - { - return $this->autoTimeRequired; - } - public function setBlockApplicationsEnabled($blockApplicationsEnabled) - { - $this->blockApplicationsEnabled = $blockApplicationsEnabled; - } - public function getBlockApplicationsEnabled() - { - return $this->blockApplicationsEnabled; - } - public function setBluetoothConfigDisabled($bluetoothConfigDisabled) - { - $this->bluetoothConfigDisabled = $bluetoothConfigDisabled; - } - public function getBluetoothConfigDisabled() - { - return $this->bluetoothConfigDisabled; - } - public function setBluetoothContactSharingDisabled($bluetoothContactSharingDisabled) - { - $this->bluetoothContactSharingDisabled = $bluetoothContactSharingDisabled; - } - public function getBluetoothContactSharingDisabled() - { - return $this->bluetoothContactSharingDisabled; - } - public function setBluetoothDisabled($bluetoothDisabled) - { - $this->bluetoothDisabled = $bluetoothDisabled; - } - public function getBluetoothDisabled() - { - return $this->bluetoothDisabled; - } - public function setCameraDisabled($cameraDisabled) - { - $this->cameraDisabled = $cameraDisabled; - } - public function getCameraDisabled() - { - return $this->cameraDisabled; - } - public function setCellBroadcastsConfigDisabled($cellBroadcastsConfigDisabled) - { - $this->cellBroadcastsConfigDisabled = $cellBroadcastsConfigDisabled; - } - public function getCellBroadcastsConfigDisabled() - { - return $this->cellBroadcastsConfigDisabled; - } - /** - * @param Google_Service_AndroidManagement_ChoosePrivateKeyRule - */ - public function setChoosePrivateKeyRules($choosePrivateKeyRules) - { - $this->choosePrivateKeyRules = $choosePrivateKeyRules; - } - /** - * @return Google_Service_AndroidManagement_ChoosePrivateKeyRule - */ - public function getChoosePrivateKeyRules() - { - return $this->choosePrivateKeyRules; - } - /** - * @param Google_Service_AndroidManagement_ComplianceRule - */ - public function setComplianceRules($complianceRules) - { - $this->complianceRules = $complianceRules; - } - /** - * @return Google_Service_AndroidManagement_ComplianceRule - */ - public function getComplianceRules() - { - return $this->complianceRules; - } - public function setCreateWindowsDisabled($createWindowsDisabled) - { - $this->createWindowsDisabled = $createWindowsDisabled; - } - public function getCreateWindowsDisabled() - { - return $this->createWindowsDisabled; - } - public function setCredentialsConfigDisabled($credentialsConfigDisabled) - { - $this->credentialsConfigDisabled = $credentialsConfigDisabled; - } - public function getCredentialsConfigDisabled() - { - return $this->credentialsConfigDisabled; - } - public function setDataRoamingDisabled($dataRoamingDisabled) - { - $this->dataRoamingDisabled = $dataRoamingDisabled; - } - public function getDataRoamingDisabled() - { - return $this->dataRoamingDisabled; - } - public function setDebuggingFeaturesAllowed($debuggingFeaturesAllowed) - { - $this->debuggingFeaturesAllowed = $debuggingFeaturesAllowed; - } - public function getDebuggingFeaturesAllowed() - { - return $this->debuggingFeaturesAllowed; - } - public function setDefaultPermissionPolicy($defaultPermissionPolicy) - { - $this->defaultPermissionPolicy = $defaultPermissionPolicy; - } - public function getDefaultPermissionPolicy() - { - return $this->defaultPermissionPolicy; - } - /** - * @param Google_Service_AndroidManagement_UserFacingMessage - */ - public function setDeviceOwnerLockScreenInfo(Google_Service_AndroidManagement_UserFacingMessage $deviceOwnerLockScreenInfo) - { - $this->deviceOwnerLockScreenInfo = $deviceOwnerLockScreenInfo; - } - /** - * @return Google_Service_AndroidManagement_UserFacingMessage - */ - public function getDeviceOwnerLockScreenInfo() - { - return $this->deviceOwnerLockScreenInfo; - } - public function setEncryptionPolicy($encryptionPolicy) - { - $this->encryptionPolicy = $encryptionPolicy; - } - public function getEncryptionPolicy() - { - return $this->encryptionPolicy; - } - public function setEnsureVerifyAppsEnabled($ensureVerifyAppsEnabled) - { - $this->ensureVerifyAppsEnabled = $ensureVerifyAppsEnabled; - } - public function getEnsureVerifyAppsEnabled() - { - return $this->ensureVerifyAppsEnabled; - } - public function setFactoryResetDisabled($factoryResetDisabled) - { - $this->factoryResetDisabled = $factoryResetDisabled; - } - public function getFactoryResetDisabled() - { - return $this->factoryResetDisabled; - } - public function setFrpAdminEmails($frpAdminEmails) - { - $this->frpAdminEmails = $frpAdminEmails; - } - public function getFrpAdminEmails() - { - return $this->frpAdminEmails; - } - public function setFunDisabled($funDisabled) - { - $this->funDisabled = $funDisabled; - } - public function getFunDisabled() - { - return $this->funDisabled; - } - public function setInstallAppsDisabled($installAppsDisabled) - { - $this->installAppsDisabled = $installAppsDisabled; - } - public function getInstallAppsDisabled() - { - return $this->installAppsDisabled; - } - public function setInstallUnknownSourcesAllowed($installUnknownSourcesAllowed) - { - $this->installUnknownSourcesAllowed = $installUnknownSourcesAllowed; - } - public function getInstallUnknownSourcesAllowed() - { - return $this->installUnknownSourcesAllowed; - } - public function setKeyguardDisabled($keyguardDisabled) - { - $this->keyguardDisabled = $keyguardDisabled; - } - public function getKeyguardDisabled() - { - return $this->keyguardDisabled; - } - public function setKeyguardDisabledFeatures($keyguardDisabledFeatures) - { - $this->keyguardDisabledFeatures = $keyguardDisabledFeatures; - } - public function getKeyguardDisabledFeatures() - { - return $this->keyguardDisabledFeatures; - } - public function setKioskCustomLauncherEnabled($kioskCustomLauncherEnabled) - { - $this->kioskCustomLauncherEnabled = $kioskCustomLauncherEnabled; - } - public function getKioskCustomLauncherEnabled() - { - return $this->kioskCustomLauncherEnabled; - } - /** - * @param Google_Service_AndroidManagement_KioskCustomization - */ - public function setKioskCustomization(Google_Service_AndroidManagement_KioskCustomization $kioskCustomization) - { - $this->kioskCustomization = $kioskCustomization; - } - /** - * @return Google_Service_AndroidManagement_KioskCustomization - */ - public function getKioskCustomization() - { - return $this->kioskCustomization; - } - public function setLocationMode($locationMode) - { - $this->locationMode = $locationMode; - } - public function getLocationMode() - { - return $this->locationMode; - } - /** - * @param Google_Service_AndroidManagement_UserFacingMessage - */ - public function setLongSupportMessage(Google_Service_AndroidManagement_UserFacingMessage $longSupportMessage) - { - $this->longSupportMessage = $longSupportMessage; - } - /** - * @return Google_Service_AndroidManagement_UserFacingMessage - */ - public function getLongSupportMessage() - { - return $this->longSupportMessage; - } - public function setMaximumTimeToLock($maximumTimeToLock) - { - $this->maximumTimeToLock = $maximumTimeToLock; - } - public function getMaximumTimeToLock() - { - return $this->maximumTimeToLock; - } - public function setMinimumApiLevel($minimumApiLevel) - { - $this->minimumApiLevel = $minimumApiLevel; - } - public function getMinimumApiLevel() - { - return $this->minimumApiLevel; - } - public function setMobileNetworksConfigDisabled($mobileNetworksConfigDisabled) - { - $this->mobileNetworksConfigDisabled = $mobileNetworksConfigDisabled; - } - public function getMobileNetworksConfigDisabled() - { - return $this->mobileNetworksConfigDisabled; - } - public function setModifyAccountsDisabled($modifyAccountsDisabled) - { - $this->modifyAccountsDisabled = $modifyAccountsDisabled; - } - public function getModifyAccountsDisabled() - { - return $this->modifyAccountsDisabled; - } - public function setMountPhysicalMediaDisabled($mountPhysicalMediaDisabled) - { - $this->mountPhysicalMediaDisabled = $mountPhysicalMediaDisabled; - } - public function getMountPhysicalMediaDisabled() - { - return $this->mountPhysicalMediaDisabled; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNetworkEscapeHatchEnabled($networkEscapeHatchEnabled) - { - $this->networkEscapeHatchEnabled = $networkEscapeHatchEnabled; - } - public function getNetworkEscapeHatchEnabled() - { - return $this->networkEscapeHatchEnabled; - } - public function setNetworkResetDisabled($networkResetDisabled) - { - $this->networkResetDisabled = $networkResetDisabled; - } - public function getNetworkResetDisabled() - { - return $this->networkResetDisabled; - } - public function setOpenNetworkConfiguration($openNetworkConfiguration) - { - $this->openNetworkConfiguration = $openNetworkConfiguration; - } - public function getOpenNetworkConfiguration() - { - return $this->openNetworkConfiguration; - } - public function setOutgoingBeamDisabled($outgoingBeamDisabled) - { - $this->outgoingBeamDisabled = $outgoingBeamDisabled; - } - public function getOutgoingBeamDisabled() - { - return $this->outgoingBeamDisabled; - } - public function setOutgoingCallsDisabled($outgoingCallsDisabled) - { - $this->outgoingCallsDisabled = $outgoingCallsDisabled; - } - public function getOutgoingCallsDisabled() - { - return $this->outgoingCallsDisabled; - } - /** - * @param Google_Service_AndroidManagement_PasswordRequirements - */ - public function setPasswordPolicies($passwordPolicies) - { - $this->passwordPolicies = $passwordPolicies; - } - /** - * @return Google_Service_AndroidManagement_PasswordRequirements - */ - public function getPasswordPolicies() - { - return $this->passwordPolicies; - } - /** - * @param Google_Service_AndroidManagement_PasswordRequirements - */ - public function setPasswordRequirements(Google_Service_AndroidManagement_PasswordRequirements $passwordRequirements) - { - $this->passwordRequirements = $passwordRequirements; - } - /** - * @return Google_Service_AndroidManagement_PasswordRequirements - */ - public function getPasswordRequirements() - { - return $this->passwordRequirements; - } - /** - * @param Google_Service_AndroidManagement_PermissionGrant - */ - public function setPermissionGrants($permissionGrants) - { - $this->permissionGrants = $permissionGrants; - } - /** - * @return Google_Service_AndroidManagement_PermissionGrant - */ - public function getPermissionGrants() - { - return $this->permissionGrants; - } - /** - * @param Google_Service_AndroidManagement_PackageNameList - */ - public function setPermittedAccessibilityServices(Google_Service_AndroidManagement_PackageNameList $permittedAccessibilityServices) - { - $this->permittedAccessibilityServices = $permittedAccessibilityServices; - } - /** - * @return Google_Service_AndroidManagement_PackageNameList - */ - public function getPermittedAccessibilityServices() - { - return $this->permittedAccessibilityServices; - } - /** - * @param Google_Service_AndroidManagement_PackageNameList - */ - public function setPermittedInputMethods(Google_Service_AndroidManagement_PackageNameList $permittedInputMethods) - { - $this->permittedInputMethods = $permittedInputMethods; - } - /** - * @return Google_Service_AndroidManagement_PackageNameList - */ - public function getPermittedInputMethods() - { - return $this->permittedInputMethods; - } - /** - * @param Google_Service_AndroidManagement_PersistentPreferredActivity - */ - public function setPersistentPreferredActivities($persistentPreferredActivities) - { - $this->persistentPreferredActivities = $persistentPreferredActivities; - } - /** - * @return Google_Service_AndroidManagement_PersistentPreferredActivity - */ - public function getPersistentPreferredActivities() - { - return $this->persistentPreferredActivities; - } - public function setPlayStoreMode($playStoreMode) - { - $this->playStoreMode = $playStoreMode; - } - public function getPlayStoreMode() - { - return $this->playStoreMode; - } - /** - * @param Google_Service_AndroidManagement_PolicyEnforcementRule - */ - public function setPolicyEnforcementRules($policyEnforcementRules) - { - $this->policyEnforcementRules = $policyEnforcementRules; - } - /** - * @return Google_Service_AndroidManagement_PolicyEnforcementRule - */ - public function getPolicyEnforcementRules() - { - return $this->policyEnforcementRules; - } - public function setPrivateKeySelectionEnabled($privateKeySelectionEnabled) - { - $this->privateKeySelectionEnabled = $privateKeySelectionEnabled; - } - public function getPrivateKeySelectionEnabled() - { - return $this->privateKeySelectionEnabled; - } - /** - * @param Google_Service_AndroidManagement_ProxyInfo - */ - public function setRecommendedGlobalProxy(Google_Service_AndroidManagement_ProxyInfo $recommendedGlobalProxy) - { - $this->recommendedGlobalProxy = $recommendedGlobalProxy; - } - /** - * @return Google_Service_AndroidManagement_ProxyInfo - */ - public function getRecommendedGlobalProxy() - { - return $this->recommendedGlobalProxy; - } - public function setRemoveUserDisabled($removeUserDisabled) - { - $this->removeUserDisabled = $removeUserDisabled; - } - public function getRemoveUserDisabled() - { - return $this->removeUserDisabled; - } - public function setSafeBootDisabled($safeBootDisabled) - { - $this->safeBootDisabled = $safeBootDisabled; - } - public function getSafeBootDisabled() - { - return $this->safeBootDisabled; - } - public function setScreenCaptureDisabled($screenCaptureDisabled) - { - $this->screenCaptureDisabled = $screenCaptureDisabled; - } - public function getScreenCaptureDisabled() - { - return $this->screenCaptureDisabled; - } - public function setSetUserIconDisabled($setUserIconDisabled) - { - $this->setUserIconDisabled = $setUserIconDisabled; - } - public function getSetUserIconDisabled() - { - return $this->setUserIconDisabled; - } - public function setSetWallpaperDisabled($setWallpaperDisabled) - { - $this->setWallpaperDisabled = $setWallpaperDisabled; - } - public function getSetWallpaperDisabled() - { - return $this->setWallpaperDisabled; - } - /** - * @param Google_Service_AndroidManagement_SetupAction - */ - public function setSetupActions($setupActions) - { - $this->setupActions = $setupActions; - } - /** - * @return Google_Service_AndroidManagement_SetupAction - */ - public function getSetupActions() - { - return $this->setupActions; - } - public function setShareLocationDisabled($shareLocationDisabled) - { - $this->shareLocationDisabled = $shareLocationDisabled; - } - public function getShareLocationDisabled() - { - return $this->shareLocationDisabled; - } - /** - * @param Google_Service_AndroidManagement_UserFacingMessage - */ - public function setShortSupportMessage(Google_Service_AndroidManagement_UserFacingMessage $shortSupportMessage) - { - $this->shortSupportMessage = $shortSupportMessage; - } - /** - * @return Google_Service_AndroidManagement_UserFacingMessage - */ - public function getShortSupportMessage() - { - return $this->shortSupportMessage; - } - public function setSkipFirstUseHintsEnabled($skipFirstUseHintsEnabled) - { - $this->skipFirstUseHintsEnabled = $skipFirstUseHintsEnabled; - } - public function getSkipFirstUseHintsEnabled() - { - return $this->skipFirstUseHintsEnabled; - } - public function setSmsDisabled($smsDisabled) - { - $this->smsDisabled = $smsDisabled; - } - public function getSmsDisabled() - { - return $this->smsDisabled; - } - public function setStatusBarDisabled($statusBarDisabled) - { - $this->statusBarDisabled = $statusBarDisabled; - } - public function getStatusBarDisabled() - { - return $this->statusBarDisabled; - } - /** - * @param Google_Service_AndroidManagement_StatusReportingSettings - */ - public function setStatusReportingSettings(Google_Service_AndroidManagement_StatusReportingSettings $statusReportingSettings) - { - $this->statusReportingSettings = $statusReportingSettings; - } - /** - * @return Google_Service_AndroidManagement_StatusReportingSettings - */ - public function getStatusReportingSettings() - { - return $this->statusReportingSettings; - } - public function setStayOnPluggedModes($stayOnPluggedModes) - { - $this->stayOnPluggedModes = $stayOnPluggedModes; - } - public function getStayOnPluggedModes() - { - return $this->stayOnPluggedModes; - } - /** - * @param Google_Service_AndroidManagement_SystemUpdate - */ - public function setSystemUpdate(Google_Service_AndroidManagement_SystemUpdate $systemUpdate) - { - $this->systemUpdate = $systemUpdate; - } - /** - * @return Google_Service_AndroidManagement_SystemUpdate - */ - public function getSystemUpdate() - { - return $this->systemUpdate; - } - public function setTetheringConfigDisabled($tetheringConfigDisabled) - { - $this->tetheringConfigDisabled = $tetheringConfigDisabled; - } - public function getTetheringConfigDisabled() - { - return $this->tetheringConfigDisabled; - } - public function setUninstallAppsDisabled($uninstallAppsDisabled) - { - $this->uninstallAppsDisabled = $uninstallAppsDisabled; - } - public function getUninstallAppsDisabled() - { - return $this->uninstallAppsDisabled; - } - public function setUnmuteMicrophoneDisabled($unmuteMicrophoneDisabled) - { - $this->unmuteMicrophoneDisabled = $unmuteMicrophoneDisabled; - } - public function getUnmuteMicrophoneDisabled() - { - return $this->unmuteMicrophoneDisabled; - } - public function setUsbFileTransferDisabled($usbFileTransferDisabled) - { - $this->usbFileTransferDisabled = $usbFileTransferDisabled; - } - public function getUsbFileTransferDisabled() - { - return $this->usbFileTransferDisabled; - } - public function setUsbMassStorageEnabled($usbMassStorageEnabled) - { - $this->usbMassStorageEnabled = $usbMassStorageEnabled; - } - public function getUsbMassStorageEnabled() - { - return $this->usbMassStorageEnabled; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } - public function setVpnConfigDisabled($vpnConfigDisabled) - { - $this->vpnConfigDisabled = $vpnConfigDisabled; - } - public function getVpnConfigDisabled() - { - return $this->vpnConfigDisabled; - } - public function setWifiConfigDisabled($wifiConfigDisabled) - { - $this->wifiConfigDisabled = $wifiConfigDisabled; - } - public function getWifiConfigDisabled() - { - return $this->wifiConfigDisabled; - } - public function setWifiConfigsLockdownEnabled($wifiConfigsLockdownEnabled) - { - $this->wifiConfigsLockdownEnabled = $wifiConfigsLockdownEnabled; - } - public function getWifiConfigsLockdownEnabled() - { - return $this->wifiConfigsLockdownEnabled; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/PolicyEnforcementRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/PolicyEnforcementRule.php deleted file mode 100644 index 0c7f1a33..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/PolicyEnforcementRule.php +++ /dev/null @@ -1,62 +0,0 @@ -blockAction = $blockAction; - } - /** - * @return Google_Service_AndroidManagement_BlockAction - */ - public function getBlockAction() - { - return $this->blockAction; - } - public function setSettingName($settingName) - { - $this->settingName = $settingName; - } - public function getSettingName() - { - return $this->settingName; - } - /** - * @param Google_Service_AndroidManagement_WipeAction - */ - public function setWipeAction(Google_Service_AndroidManagement_WipeAction $wipeAction) - { - $this->wipeAction = $wipeAction; - } - /** - * @return Google_Service_AndroidManagement_WipeAction - */ - public function getWipeAction() - { - return $this->wipeAction; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/PostureDetail.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/PostureDetail.php deleted file mode 100644 index b6d8dfbf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/PostureDetail.php +++ /dev/null @@ -1,47 +0,0 @@ -advice = $advice; - } - /** - * @return Google_Service_AndroidManagement_UserFacingMessage - */ - public function getAdvice() - { - return $this->advice; - } - public function setSecurityRisk($securityRisk) - { - $this->securityRisk = $securityRisk; - } - public function getSecurityRisk() - { - return $this->securityRisk; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/PowerManagementEvent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/PowerManagementEvent.php deleted file mode 100644 index fa20244f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/PowerManagementEvent.php +++ /dev/null @@ -1,48 +0,0 @@ -batteryLevel = $batteryLevel; - } - public function getBatteryLevel() - { - return $this->batteryLevel; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setEventType($eventType) - { - $this->eventType = $eventType; - } - public function getEventType() - { - return $this->eventType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/ProxyInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/ProxyInfo.php deleted file mode 100644 index a631b023..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/ProxyInfo.php +++ /dev/null @@ -1,58 +0,0 @@ -excludedHosts = $excludedHosts; - } - public function getExcludedHosts() - { - return $this->excludedHosts; - } - public function setHost($host) - { - $this->host = $host; - } - public function getHost() - { - return $this->host; - } - public function setPacUri($pacUri) - { - $this->pacUri = $pacUri; - } - public function getPacUri() - { - return $this->pacUri; - } - public function setPort($port) - { - $this->port = $port; - } - public function getPort() - { - return $this->port; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/Resource/Enterprises.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/Resource/Enterprises.php deleted file mode 100644 index a243b5ff..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/Resource/Enterprises.php +++ /dev/null @@ -1,81 +0,0 @@ - - * $androidmanagementService = new Google_Service_AndroidManagement(...); - * $enterprises = $androidmanagementService->enterprises; - * - */ -class Google_Service_AndroidManagement_Resource_Enterprises extends Google_Service_Resource -{ - /** - * Creates an enterprise. This is the last step in the enterprise signup flow. - * (enterprises.create) - * - * @param Google_Service_AndroidManagement_Enterprise $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string signupUrlName The name of the SignupUrl used to sign up for - * the enterprise. - * @opt_param string projectId The ID of the Google Cloud Platform project which - * will own the enterprise. - * @opt_param string enterpriseToken The enterprise token appended to the - * callback URL. - * @return Google_Service_AndroidManagement_Enterprise - */ - public function create(Google_Service_AndroidManagement_Enterprise $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_AndroidManagement_Enterprise"); - } - /** - * Gets an enterprise. (enterprises.get) - * - * @param string $name The name of the enterprise in the form - * enterprises/{enterpriseId}. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidManagement_Enterprise - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AndroidManagement_Enterprise"); - } - /** - * Updates an enterprise. (enterprises.patch) - * - * @param string $name The name of the enterprise in the form - * enterprises/{enterpriseId}. - * @param Google_Service_AndroidManagement_Enterprise $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask The field mask indicating the fields to update. - * If not set, all modifiable fields will be modified. - * @return Google_Service_AndroidManagement_Enterprise - */ - public function patch($name, Google_Service_AndroidManagement_Enterprise $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_AndroidManagement_Enterprise"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/Resource/EnterprisesApplications.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/Resource/EnterprisesApplications.php deleted file mode 100644 index 4b496f91..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/Resource/EnterprisesApplications.php +++ /dev/null @@ -1,46 +0,0 @@ - - * $androidmanagementService = new Google_Service_AndroidManagement(...); - * $applications = $androidmanagementService->applications; - * - */ -class Google_Service_AndroidManagement_Resource_EnterprisesApplications extends Google_Service_Resource -{ - /** - * Gets info about an application. (applications.get) - * - * @param string $name The name of the application in the form - * enterprises/{enterpriseId}/applications/{package_name}. - * @param array $optParams Optional parameters. - * - * @opt_param string languageCode The preferred language for localized - * application info, as a BCP47 tag (e.g. "en-US", "de"). If not specified the - * default language of the application will be used. - * @return Google_Service_AndroidManagement_Application - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AndroidManagement_Application"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/Resource/EnterprisesDevices.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/Resource/EnterprisesDevices.php deleted file mode 100644 index d9200bfd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/Resource/EnterprisesDevices.php +++ /dev/null @@ -1,116 +0,0 @@ - - * $androidmanagementService = new Google_Service_AndroidManagement(...); - * $devices = $androidmanagementService->devices; - * - */ -class Google_Service_AndroidManagement_Resource_EnterprisesDevices extends Google_Service_Resource -{ - /** - * Deletes a device. This operation wipes the device. (devices.delete) - * - * @param string $name The name of the device in the form - * enterprises/{enterpriseId}/devices/{deviceId}. - * @param array $optParams Optional parameters. - * - * @opt_param string wipeReasonMessage Optional short message displayed to the - * user before wiping the work profile on personal devices. This has no effect - * on company owned devices. The maximum message length is 200 characters. - * @opt_param string wipeDataFlags Optional flags that control the device wiping - * behavior. - * @return Google_Service_AndroidManagement_AndroidmanagementEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_AndroidManagement_AndroidmanagementEmpty"); - } - /** - * Gets a device. (devices.get) - * - * @param string $name The name of the device in the form - * enterprises/{enterpriseId}/devices/{deviceId}. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidManagement_Device - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AndroidManagement_Device"); - } - /** - * Issues a command to a device. The Operation resource returned contains a - * Command in its metadata field. Use the get operation method to get the status - * of the command. (devices.issueCommand) - * - * @param string $name The name of the device in the form - * enterprises/{enterpriseId}/devices/{deviceId}. - * @param Google_Service_AndroidManagement_Command $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidManagement_Operation - */ - public function issueCommand($name, Google_Service_AndroidManagement_Command $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('issueCommand', array($params), "Google_Service_AndroidManagement_Operation"); - } - /** - * Lists devices for a given enterprise. (devices.listEnterprisesDevices) - * - * @param string $parent The name of the enterprise in the form - * enterprises/{enterpriseId}. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A token identifying a page of results returned by - * the server. - * @opt_param int pageSize The requested page size. The actual page size may be - * fixed to a min or max value. - * @return Google_Service_AndroidManagement_ListDevicesResponse - */ - public function listEnterprisesDevices($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AndroidManagement_ListDevicesResponse"); - } - /** - * Updates a device. (devices.patch) - * - * @param string $name The name of the device in the form - * enterprises/{enterpriseId}/devices/{deviceId}. - * @param Google_Service_AndroidManagement_Device $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask The field mask indicating the fields to update. - * If not set, all modifiable fields will be modified. - * @return Google_Service_AndroidManagement_Device - */ - public function patch($name, Google_Service_AndroidManagement_Device $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_AndroidManagement_Device"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/Resource/EnterprisesDevicesOperations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/Resource/EnterprisesDevicesOperations.php deleted file mode 100644 index ac298bfd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/Resource/EnterprisesDevicesOperations.php +++ /dev/null @@ -1,105 +0,0 @@ - - * $androidmanagementService = new Google_Service_AndroidManagement(...); - * $operations = $androidmanagementService->operations; - * - */ -class Google_Service_AndroidManagement_Resource_EnterprisesDevicesOperations extends Google_Service_Resource -{ - /** - * Starts asynchronous cancellation on a long-running operation. The server - * makes a best effort to cancel the operation, but success is not guaranteed. - * If the server doesn't support this method, it returns - * google.rpc.Code.UNIMPLEMENTED. Clients can use Operations.GetOperation or - * other methods to check whether the cancellation succeeded or whether the - * operation completed despite cancellation. On successful cancellation, the - * operation is not deleted; instead, it becomes an operation with an - * Operation.error value with a google.rpc.Status.code of 1, corresponding to - * Code.CANCELLED. (operations.cancel) - * - * @param string $name The name of the operation resource to be cancelled. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidManagement_AndroidmanagementEmpty - */ - public function cancel($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('cancel', array($params), "Google_Service_AndroidManagement_AndroidmanagementEmpty"); - } - /** - * Deletes a long-running operation. This method indicates that the client is no - * longer interested in the operation result. It does not cancel the operation. - * If the server doesn't support this method, it returns - * google.rpc.Code.UNIMPLEMENTED. (operations.delete) - * - * @param string $name The name of the operation resource to be deleted. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidManagement_AndroidmanagementEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_AndroidManagement_AndroidmanagementEmpty"); - } - /** - * Gets the latest state of a long-running operation. Clients can use this - * method to poll the operation result at intervals as recommended by the API - * service. (operations.get) - * - * @param string $name The name of the operation resource. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidManagement_Operation - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AndroidManagement_Operation"); - } - /** - * Lists operations that match the specified filter in the request. If the - * server doesn't support this method, it returns UNIMPLEMENTED.NOTE: the name - * binding allows API services to override the binding to use different resource - * name schemes, such as users/operations. To override the binding, API services - * can add a binding such as "/v1/{name=users}/operations" to their service - * configuration. For backwards compatibility, the default name includes the - * operations collection id, however overriding users must ensure the name - * binding is the parent resource, without the operations collection id. - * (operations.listEnterprisesDevicesOperations) - * - * @param string $name The name of the operation's parent resource. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The standard list page token. - * @opt_param int pageSize The standard list page size. - * @opt_param string filter The standard list filter. - * @return Google_Service_AndroidManagement_ListOperationsResponse - */ - public function listEnterprisesDevicesOperations($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AndroidManagement_ListOperationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/Resource/EnterprisesEnrollmentTokens.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/Resource/EnterprisesEnrollmentTokens.php deleted file mode 100644 index 0bd53f94..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/Resource/EnterprisesEnrollmentTokens.php +++ /dev/null @@ -1,58 +0,0 @@ - - * $androidmanagementService = new Google_Service_AndroidManagement(...); - * $enrollmentTokens = $androidmanagementService->enrollmentTokens; - * - */ -class Google_Service_AndroidManagement_Resource_EnterprisesEnrollmentTokens extends Google_Service_Resource -{ - /** - * Creates an enrollment token for a given enterprise. (enrollmentTokens.create) - * - * @param string $parent The name of the enterprise in the form - * enterprises/{enterpriseId}. - * @param Google_Service_AndroidManagement_EnrollmentToken $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidManagement_EnrollmentToken - */ - public function create($parent, Google_Service_AndroidManagement_EnrollmentToken $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_AndroidManagement_EnrollmentToken"); - } - /** - * Deletes an enrollment token. This operation invalidates the token, preventing - * its future use. (enrollmentTokens.delete) - * - * @param string $name The name of the enrollment token in the form - * enterprises/{enterpriseId}/enrollmentTokens/{enrollmentTokenId}. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidManagement_AndroidmanagementEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_AndroidManagement_AndroidmanagementEmpty"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/Resource/EnterprisesPolicies.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/Resource/EnterprisesPolicies.php deleted file mode 100644 index 27945f1f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/Resource/EnterprisesPolicies.php +++ /dev/null @@ -1,94 +0,0 @@ - - * $androidmanagementService = new Google_Service_AndroidManagement(...); - * $policies = $androidmanagementService->policies; - * - */ -class Google_Service_AndroidManagement_Resource_EnterprisesPolicies extends Google_Service_Resource -{ - /** - * Deletes a policy. This operation is only permitted if no devices are - * currently referencing the policy. (policies.delete) - * - * @param string $name The name of the policy in the form - * enterprises/{enterpriseId}/policies/{policyId}. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidManagement_AndroidmanagementEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_AndroidManagement_AndroidmanagementEmpty"); - } - /** - * Gets a policy. (policies.get) - * - * @param string $name The name of the policy in the form - * enterprises/{enterpriseId}/policies/{policyId}. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidManagement_Policy - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AndroidManagement_Policy"); - } - /** - * Lists policies for a given enterprise. (policies.listEnterprisesPolicies) - * - * @param string $parent The name of the enterprise in the form - * enterprises/{enterpriseId}. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A token identifying a page of results returned by - * the server. - * @opt_param int pageSize The requested page size. The actual page size may be - * fixed to a min or max value. - * @return Google_Service_AndroidManagement_ListPoliciesResponse - */ - public function listEnterprisesPolicies($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AndroidManagement_ListPoliciesResponse"); - } - /** - * Updates or creates a policy. (policies.patch) - * - * @param string $name The name of the policy in the form - * enterprises/{enterpriseId}/policies/{policyId}. - * @param Google_Service_AndroidManagement_Policy $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask The field mask indicating the fields to update. - * If not set, all modifiable fields will be modified. - * @return Google_Service_AndroidManagement_Policy - */ - public function patch($name, Google_Service_AndroidManagement_Policy $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_AndroidManagement_Policy"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/Resource/EnterprisesWebApps.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/Resource/EnterprisesWebApps.php deleted file mode 100644 index 5e07919f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/Resource/EnterprisesWebApps.php +++ /dev/null @@ -1,108 +0,0 @@ - - * $androidmanagementService = new Google_Service_AndroidManagement(...); - * $webApps = $androidmanagementService->webApps; - * - */ -class Google_Service_AndroidManagement_Resource_EnterprisesWebApps extends Google_Service_Resource -{ - /** - * Creates a web app. (webApps.create) - * - * @param string $parent The name of the enterprise in the form - * enterprises/{enterpriseId}. - * @param Google_Service_AndroidManagement_WebApp $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidManagement_WebApp - */ - public function create($parent, Google_Service_AndroidManagement_WebApp $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_AndroidManagement_WebApp"); - } - /** - * Deletes a web app. (webApps.delete) - * - * @param string $name The name of the web app in the form - * enterprises/{enterpriseId}/webApps/{packageName}. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidManagement_AndroidmanagementEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_AndroidManagement_AndroidmanagementEmpty"); - } - /** - * Gets a web app. (webApps.get) - * - * @param string $name The name of the web app in the form - * enterprises/{enterpriseId}/webApp/{packageName}. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidManagement_WebApp - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AndroidManagement_WebApp"); - } - /** - * Lists web apps for a given enterprise. (webApps.listEnterprisesWebApps) - * - * @param string $parent The name of the enterprise in the form - * enterprises/{enterpriseId}. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A token identifying a page of results returned by - * the server. - * @opt_param int pageSize The requested page size. The actual page size may be - * fixed to a min or max value. - * @return Google_Service_AndroidManagement_ListWebAppsResponse - */ - public function listEnterprisesWebApps($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AndroidManagement_ListWebAppsResponse"); - } - /** - * Updates a web app. (webApps.patch) - * - * @param string $name The name of the web app in the form - * enterprises/{enterpriseId}/webApps/{packageName}. - * @param Google_Service_AndroidManagement_WebApp $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask The field mask indicating the fields to update. - * If not set, all modifiable fields will be modified. - * @return Google_Service_AndroidManagement_WebApp - */ - public function patch($name, Google_Service_AndroidManagement_WebApp $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_AndroidManagement_WebApp"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/Resource/EnterprisesWebTokens.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/Resource/EnterprisesWebTokens.php deleted file mode 100644 index b22ac0fa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/Resource/EnterprisesWebTokens.php +++ /dev/null @@ -1,44 +0,0 @@ - - * $androidmanagementService = new Google_Service_AndroidManagement(...); - * $webTokens = $androidmanagementService->webTokens; - * - */ -class Google_Service_AndroidManagement_Resource_EnterprisesWebTokens extends Google_Service_Resource -{ - /** - * Creates a web token to access an embeddable managed Google Play web UI for a - * given enterprise. (webTokens.create) - * - * @param string $parent The name of the enterprise in the form - * enterprises/{enterpriseId}. - * @param Google_Service_AndroidManagement_WebToken $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidManagement_WebToken - */ - public function create($parent, Google_Service_AndroidManagement_WebToken $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_AndroidManagement_WebToken"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/Resource/SignupUrls.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/Resource/SignupUrls.php deleted file mode 100644 index 4067c546..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/Resource/SignupUrls.php +++ /dev/null @@ -1,49 +0,0 @@ - - * $androidmanagementService = new Google_Service_AndroidManagement(...); - * $signupUrls = $androidmanagementService->signupUrls; - * - */ -class Google_Service_AndroidManagement_Resource_SignupUrls extends Google_Service_Resource -{ - /** - * Creates an enterprise signup URL. (signupUrls.create) - * - * @param array $optParams Optional parameters. - * - * @opt_param string callbackUrl The callback URL that the admin will be - * redirected to after successfully creating an enterprise. Before redirecting - * there the system will add a query parameter to this URL named enterpriseToken - * which will contain an opaque token to be used for the create enterprise - * request. The URL will be parsed then reformatted in order to add the - * enterpriseToken parameter, so there may be some minor formatting changes. - * @opt_param string projectId The ID of the Google Cloud Platform project which - * will own the enterprise. - * @return Google_Service_AndroidManagement_SignupUrl - */ - public function create($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_AndroidManagement_SignupUrl"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/SecurityPosture.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/SecurityPosture.php deleted file mode 100644 index 6fd45c6a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/SecurityPosture.php +++ /dev/null @@ -1,47 +0,0 @@ -devicePosture = $devicePosture; - } - public function getDevicePosture() - { - return $this->devicePosture; - } - /** - * @param Google_Service_AndroidManagement_PostureDetail - */ - public function setPostureDetails($postureDetails) - { - $this->postureDetails = $postureDetails; - } - /** - * @return Google_Service_AndroidManagement_PostureDetail - */ - public function getPostureDetails() - { - return $this->postureDetails; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/SetupAction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/SetupAction.php deleted file mode 100644 index a437bdd2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/SetupAction.php +++ /dev/null @@ -1,69 +0,0 @@ -description = $description; - } - /** - * @return Google_Service_AndroidManagement_UserFacingMessage - */ - public function getDescription() - { - return $this->description; - } - /** - * @param Google_Service_AndroidManagement_LaunchAppAction - */ - public function setLaunchApp(Google_Service_AndroidManagement_LaunchAppAction $launchApp) - { - $this->launchApp = $launchApp; - } - /** - * @return Google_Service_AndroidManagement_LaunchAppAction - */ - public function getLaunchApp() - { - return $this->launchApp; - } - /** - * @param Google_Service_AndroidManagement_UserFacingMessage - */ - public function setTitle(Google_Service_AndroidManagement_UserFacingMessage $title) - { - $this->title = $title; - } - /** - * @return Google_Service_AndroidManagement_UserFacingMessage - */ - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/SigninDetail.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/SigninDetail.php deleted file mode 100644 index 23312e66..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/SigninDetail.php +++ /dev/null @@ -1,48 +0,0 @@ -qrCode = $qrCode; - } - public function getQrCode() - { - return $this->qrCode; - } - public function setSigninEnrollmentToken($signinEnrollmentToken) - { - $this->signinEnrollmentToken = $signinEnrollmentToken; - } - public function getSigninEnrollmentToken() - { - return $this->signinEnrollmentToken; - } - public function setSigninUrl($signinUrl) - { - $this->signinUrl = $signinUrl; - } - public function getSigninUrl() - { - return $this->signinUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/SignupUrl.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/SignupUrl.php deleted file mode 100644 index e125385a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/SignupUrl.php +++ /dev/null @@ -1,39 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/SoftwareInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/SoftwareInfo.php deleted file mode 100644 index 943c0ca7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/SoftwareInfo.php +++ /dev/null @@ -1,111 +0,0 @@ -androidBuildNumber = $androidBuildNumber; - } - public function getAndroidBuildNumber() - { - return $this->androidBuildNumber; - } - public function setAndroidBuildTime($androidBuildTime) - { - $this->androidBuildTime = $androidBuildTime; - } - public function getAndroidBuildTime() - { - return $this->androidBuildTime; - } - public function setAndroidDevicePolicyVersionCode($androidDevicePolicyVersionCode) - { - $this->androidDevicePolicyVersionCode = $androidDevicePolicyVersionCode; - } - public function getAndroidDevicePolicyVersionCode() - { - return $this->androidDevicePolicyVersionCode; - } - public function setAndroidDevicePolicyVersionName($androidDevicePolicyVersionName) - { - $this->androidDevicePolicyVersionName = $androidDevicePolicyVersionName; - } - public function getAndroidDevicePolicyVersionName() - { - return $this->androidDevicePolicyVersionName; - } - public function setAndroidVersion($androidVersion) - { - $this->androidVersion = $androidVersion; - } - public function getAndroidVersion() - { - return $this->androidVersion; - } - public function setBootloaderVersion($bootloaderVersion) - { - $this->bootloaderVersion = $bootloaderVersion; - } - public function getBootloaderVersion() - { - return $this->bootloaderVersion; - } - public function setDeviceBuildSignature($deviceBuildSignature) - { - $this->deviceBuildSignature = $deviceBuildSignature; - } - public function getDeviceBuildSignature() - { - return $this->deviceBuildSignature; - } - public function setDeviceKernelVersion($deviceKernelVersion) - { - $this->deviceKernelVersion = $deviceKernelVersion; - } - public function getDeviceKernelVersion() - { - return $this->deviceKernelVersion; - } - public function setPrimaryLanguageCode($primaryLanguageCode) - { - $this->primaryLanguageCode = $primaryLanguageCode; - } - public function getPrimaryLanguageCode() - { - return $this->primaryLanguageCode; - } - public function setSecurityPatchLevel($securityPatchLevel) - { - $this->securityPatchLevel = $securityPatchLevel; - } - public function getSecurityPatchLevel() - { - return $this->securityPatchLevel; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/Status.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/Status.php deleted file mode 100644 index 85e8798a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/Status.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/StatusReportingSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/StatusReportingSettings.php deleted file mode 100644 index fac7e94c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/StatusReportingSettings.php +++ /dev/null @@ -1,118 +0,0 @@ -applicationReportingSettings = $applicationReportingSettings; - } - /** - * @return Google_Service_AndroidManagement_ApplicationReportingSettings - */ - public function getApplicationReportingSettings() - { - return $this->applicationReportingSettings; - } - public function setApplicationReportsEnabled($applicationReportsEnabled) - { - $this->applicationReportsEnabled = $applicationReportsEnabled; - } - public function getApplicationReportsEnabled() - { - return $this->applicationReportsEnabled; - } - public function setDeviceSettingsEnabled($deviceSettingsEnabled) - { - $this->deviceSettingsEnabled = $deviceSettingsEnabled; - } - public function getDeviceSettingsEnabled() - { - return $this->deviceSettingsEnabled; - } - public function setDisplayInfoEnabled($displayInfoEnabled) - { - $this->displayInfoEnabled = $displayInfoEnabled; - } - public function getDisplayInfoEnabled() - { - return $this->displayInfoEnabled; - } - public function setHardwareStatusEnabled($hardwareStatusEnabled) - { - $this->hardwareStatusEnabled = $hardwareStatusEnabled; - } - public function getHardwareStatusEnabled() - { - return $this->hardwareStatusEnabled; - } - public function setMemoryInfoEnabled($memoryInfoEnabled) - { - $this->memoryInfoEnabled = $memoryInfoEnabled; - } - public function getMemoryInfoEnabled() - { - return $this->memoryInfoEnabled; - } - public function setNetworkInfoEnabled($networkInfoEnabled) - { - $this->networkInfoEnabled = $networkInfoEnabled; - } - public function getNetworkInfoEnabled() - { - return $this->networkInfoEnabled; - } - public function setPowerManagementEventsEnabled($powerManagementEventsEnabled) - { - $this->powerManagementEventsEnabled = $powerManagementEventsEnabled; - } - public function getPowerManagementEventsEnabled() - { - return $this->powerManagementEventsEnabled; - } - public function setSoftwareInfoEnabled($softwareInfoEnabled) - { - $this->softwareInfoEnabled = $softwareInfoEnabled; - } - public function getSoftwareInfoEnabled() - { - return $this->softwareInfoEnabled; - } - public function setSystemPropertiesEnabled($systemPropertiesEnabled) - { - $this->systemPropertiesEnabled = $systemPropertiesEnabled; - } - public function getSystemPropertiesEnabled() - { - return $this->systemPropertiesEnabled; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/SystemUpdate.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/SystemUpdate.php deleted file mode 100644 index 1ceaabfa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/SystemUpdate.php +++ /dev/null @@ -1,65 +0,0 @@ -endMinutes = $endMinutes; - } - public function getEndMinutes() - { - return $this->endMinutes; - } - /** - * @param Google_Service_AndroidManagement_FreezePeriod - */ - public function setFreezePeriods($freezePeriods) - { - $this->freezePeriods = $freezePeriods; - } - /** - * @return Google_Service_AndroidManagement_FreezePeriod - */ - public function getFreezePeriods() - { - return $this->freezePeriods; - } - public function setStartMinutes($startMinutes) - { - $this->startMinutes = $startMinutes; - } - public function getStartMinutes() - { - return $this->startMinutes; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/TermsAndConditions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/TermsAndConditions.php deleted file mode 100644 index 0eaabf86..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/TermsAndConditions.php +++ /dev/null @@ -1,53 +0,0 @@ -content = $content; - } - /** - * @return Google_Service_AndroidManagement_UserFacingMessage - */ - public function getContent() - { - return $this->content; - } - /** - * @param Google_Service_AndroidManagement_UserFacingMessage - */ - public function setHeader(Google_Service_AndroidManagement_UserFacingMessage $header) - { - $this->header = $header; - } - /** - * @return Google_Service_AndroidManagement_UserFacingMessage - */ - public function getHeader() - { - return $this->header; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/User.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/User.php deleted file mode 100644 index f4c80442..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/User.php +++ /dev/null @@ -1,30 +0,0 @@ -accountIdentifier = $accountIdentifier; - } - public function getAccountIdentifier() - { - return $this->accountIdentifier; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/UserFacingMessage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/UserFacingMessage.php deleted file mode 100644 index 66a75b69..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/UserFacingMessage.php +++ /dev/null @@ -1,39 +0,0 @@ -defaultMessage = $defaultMessage; - } - public function getDefaultMessage() - { - return $this->defaultMessage; - } - public function setLocalizedMessages($localizedMessages) - { - $this->localizedMessages = $localizedMessages; - } - public function getLocalizedMessages() - { - return $this->localizedMessages; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/WebApp.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/WebApp.php deleted file mode 100644 index fd15ecdf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/WebApp.php +++ /dev/null @@ -1,83 +0,0 @@ -displayMode = $displayMode; - } - public function getDisplayMode() - { - return $this->displayMode; - } - /** - * @param Google_Service_AndroidManagement_WebAppIcon - */ - public function setIcons($icons) - { - $this->icons = $icons; - } - /** - * @return Google_Service_AndroidManagement_WebAppIcon - */ - public function getIcons() - { - return $this->icons; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setStartUrl($startUrl) - { - $this->startUrl = $startUrl; - } - public function getStartUrl() - { - return $this->startUrl; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setVersionCode($versionCode) - { - $this->versionCode = $versionCode; - } - public function getVersionCode() - { - return $this->versionCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/WebAppIcon.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/WebAppIcon.php deleted file mode 100644 index 13ed93c6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/WebAppIcon.php +++ /dev/null @@ -1,30 +0,0 @@ -imageData = $imageData; - } - public function getImageData() - { - return $this->imageData; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/WebToken.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/WebToken.php deleted file mode 100644 index fed3b6d3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/WebToken.php +++ /dev/null @@ -1,67 +0,0 @@ -enabledFeatures = $enabledFeatures; - } - public function getEnabledFeatures() - { - return $this->enabledFeatures; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setParentFrameUrl($parentFrameUrl) - { - $this->parentFrameUrl = $parentFrameUrl; - } - public function getParentFrameUrl() - { - return $this->parentFrameUrl; - } - public function setPermissions($permissions) - { - $this->permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/WipeAction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/WipeAction.php deleted file mode 100644 index a4079995..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidManagement/WipeAction.php +++ /dev/null @@ -1,39 +0,0 @@ -preserveFrp = $preserveFrp; - } - public function getPreserveFrp() - { - return $this->preserveFrp; - } - public function setWipeAfterDays($wipeAfterDays) - { - $this->wipeAfterDays = $wipeAfterDays; - } - public function getWipeAfterDays() - { - return $this->wipeAfterDays; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner.php deleted file mode 100644 index 549236ff..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner.php +++ /dev/null @@ -1,457 +0,0 @@ - - * Automates Android zero-touch enrollment for device resellers, customers, and - * EMMs.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_AndroidProvisioningPartner extends Google_Service -{ - - - public $customers; - public $customers_configurations; - public $customers_devices; - public $customers_dpcs; - public $operations; - public $partners_customers; - public $partners_devices; - public $partners_vendors; - public $partners_vendors_customers; - - /** - * Constructs the internal representation of the AndroidProvisioningPartner - * service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://androiddeviceprovisioning.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'androiddeviceprovisioning'; - - $this->customers = new Google_Service_AndroidProvisioningPartner_Resource_Customers( - $this, - $this->serviceName, - 'customers', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1/customers', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->customers_configurations = new Google_Service_AndroidProvisioningPartner_Resource_CustomersConfigurations( - $this, - $this->serviceName, - 'configurations', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/configurations', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/configurations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->customers_devices = new Google_Service_AndroidProvisioningPartner_Resource_CustomersDevices( - $this, - $this->serviceName, - 'devices', - array( - 'methods' => array( - 'applyConfiguration' => array( - 'path' => 'v1/{+parent}/devices:applyConfiguration', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/devices', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'removeConfiguration' => array( - 'path' => 'v1/{+parent}/devices:removeConfiguration', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'unclaim' => array( - 'path' => 'v1/{+parent}/devices:unclaim', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->customers_dpcs = new Google_Service_AndroidProvisioningPartner_Resource_CustomersDpcs( - $this, - $this->serviceName, - 'dpcs', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1/{+parent}/dpcs', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->operations = new Google_Service_AndroidProvisioningPartner_Resource_Operations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->partners_customers = new Google_Service_AndroidProvisioningPartner_Resource_PartnersCustomers( - $this, - $this->serviceName, - 'customers', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/customers', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/partners/{+partnerId}/customers', - 'httpMethod' => 'GET', - 'parameters' => array( - 'partnerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->partners_devices = new Google_Service_AndroidProvisioningPartner_Resource_PartnersDevices( - $this, - $this->serviceName, - 'devices', - array( - 'methods' => array( - 'claim' => array( - 'path' => 'v1/partners/{+partnerId}/devices:claim', - 'httpMethod' => 'POST', - 'parameters' => array( - 'partnerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'claimAsync' => array( - 'path' => 'v1/partners/{+partnerId}/devices:claimAsync', - 'httpMethod' => 'POST', - 'parameters' => array( - 'partnerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'findByIdentifier' => array( - 'path' => 'v1/partners/{+partnerId}/devices:findByIdentifier', - 'httpMethod' => 'POST', - 'parameters' => array( - 'partnerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'findByOwner' => array( - 'path' => 'v1/partners/{+partnerId}/devices:findByOwner', - 'httpMethod' => 'POST', - 'parameters' => array( - 'partnerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'metadata' => array( - 'path' => 'v1/partners/{+metadataOwnerId}/devices/{+deviceId}/metadata', - 'httpMethod' => 'POST', - 'parameters' => array( - 'metadataOwnerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'deviceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'unclaim' => array( - 'path' => 'v1/partners/{+partnerId}/devices:unclaim', - 'httpMethod' => 'POST', - 'parameters' => array( - 'partnerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'unclaimAsync' => array( - 'path' => 'v1/partners/{+partnerId}/devices:unclaimAsync', - 'httpMethod' => 'POST', - 'parameters' => array( - 'partnerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'updateMetadataAsync' => array( - 'path' => 'v1/partners/{+partnerId}/devices:updateMetadataAsync', - 'httpMethod' => 'POST', - 'parameters' => array( - 'partnerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->partners_vendors = new Google_Service_AndroidProvisioningPartner_Resource_PartnersVendors( - $this, - $this->serviceName, - 'vendors', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1/{+parent}/vendors', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->partners_vendors_customers = new Google_Service_AndroidProvisioningPartner_Resource_PartnersVendorsCustomers( - $this, - $this->serviceName, - 'customers', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1/{+parent}/customers', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/AndroiddeviceprovisioningEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/AndroiddeviceprovisioningEmpty.php deleted file mode 100644 index 694e6f13..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/AndroiddeviceprovisioningEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -customerId = $customerId; - } - public function getCustomerId() - { - return $this->customerId; - } - /** - * @param Google_Service_AndroidProvisioningPartner_DeviceIdentifier - */ - public function setDeviceIdentifier(Google_Service_AndroidProvisioningPartner_DeviceIdentifier $deviceIdentifier) - { - $this->deviceIdentifier = $deviceIdentifier; - } - /** - * @return Google_Service_AndroidProvisioningPartner_DeviceIdentifier - */ - public function getDeviceIdentifier() - { - return $this->deviceIdentifier; - } - /** - * @param Google_Service_AndroidProvisioningPartner_DeviceMetadata - */ - public function setDeviceMetadata(Google_Service_AndroidProvisioningPartner_DeviceMetadata $deviceMetadata) - { - $this->deviceMetadata = $deviceMetadata; - } - /** - * @return Google_Service_AndroidProvisioningPartner_DeviceMetadata - */ - public function getDeviceMetadata() - { - return $this->deviceMetadata; - } - public function setSectionType($sectionType) - { - $this->sectionType = $sectionType; - } - public function getSectionType() - { - return $this->sectionType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/ClaimDeviceResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/ClaimDeviceResponse.php deleted file mode 100644 index fb8581f7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/ClaimDeviceResponse.php +++ /dev/null @@ -1,39 +0,0 @@ -deviceId = $deviceId; - } - public function getDeviceId() - { - return $this->deviceId; - } - public function setDeviceName($deviceName) - { - $this->deviceName = $deviceName; - } - public function getDeviceName() - { - return $this->deviceName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/ClaimDevicesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/ClaimDevicesRequest.php deleted file mode 100644 index b7890645..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/ClaimDevicesRequest.php +++ /dev/null @@ -1,38 +0,0 @@ -claims = $claims; - } - /** - * @return Google_Service_AndroidProvisioningPartner_PartnerClaim - */ - public function getClaims() - { - return $this->claims; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/Company.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/Company.php deleted file mode 100644 index a2f04690..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/Company.php +++ /dev/null @@ -1,76 +0,0 @@ -adminEmails = $adminEmails; - } - public function getAdminEmails() - { - return $this->adminEmails; - } - public function setCompanyId($companyId) - { - $this->companyId = $companyId; - } - public function getCompanyId() - { - return $this->companyId; - } - public function setCompanyName($companyName) - { - $this->companyName = $companyName; - } - public function getCompanyName() - { - return $this->companyName; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOwnerEmails($ownerEmails) - { - $this->ownerEmails = $ownerEmails; - } - public function getOwnerEmails() - { - return $this->ownerEmails; - } - public function setTermsStatus($termsStatus) - { - $this->termsStatus = $termsStatus; - } - public function getTermsStatus() - { - return $this->termsStatus; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/Configuration.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/Configuration.php deleted file mode 100644 index 1a79654e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/Configuration.php +++ /dev/null @@ -1,111 +0,0 @@ -companyName = $companyName; - } - public function getCompanyName() - { - return $this->companyName; - } - public function setConfigurationId($configurationId) - { - $this->configurationId = $configurationId; - } - public function getConfigurationId() - { - return $this->configurationId; - } - public function setConfigurationName($configurationName) - { - $this->configurationName = $configurationName; - } - public function getConfigurationName() - { - return $this->configurationName; - } - public function setContactEmail($contactEmail) - { - $this->contactEmail = $contactEmail; - } - public function getContactEmail() - { - return $this->contactEmail; - } - public function setContactPhone($contactPhone) - { - $this->contactPhone = $contactPhone; - } - public function getContactPhone() - { - return $this->contactPhone; - } - public function setCustomMessage($customMessage) - { - $this->customMessage = $customMessage; - } - public function getCustomMessage() - { - return $this->customMessage; - } - public function setDpcExtras($dpcExtras) - { - $this->dpcExtras = $dpcExtras; - } - public function getDpcExtras() - { - return $this->dpcExtras; - } - public function setDpcResourcePath($dpcResourcePath) - { - $this->dpcResourcePath = $dpcResourcePath; - } - public function getDpcResourcePath() - { - return $this->dpcResourcePath; - } - public function setIsDefault($isDefault) - { - $this->isDefault = $isDefault; - } - public function getIsDefault() - { - return $this->isDefault; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/CreateCustomerRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/CreateCustomerRequest.php deleted file mode 100644 index 004c044c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/CreateCustomerRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -customer = $customer; - } - /** - * @return Google_Service_AndroidProvisioningPartner_Company - */ - public function getCustomer() - { - return $this->customer; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/CustomerApplyConfigurationRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/CustomerApplyConfigurationRequest.php deleted file mode 100644 index 3fdf1c77..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/CustomerApplyConfigurationRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -configuration = $configuration; - } - public function getConfiguration() - { - return $this->configuration; - } - /** - * @param Google_Service_AndroidProvisioningPartner_DeviceReference - */ - public function setDevice(Google_Service_AndroidProvisioningPartner_DeviceReference $device) - { - $this->device = $device; - } - /** - * @return Google_Service_AndroidProvisioningPartner_DeviceReference - */ - public function getDevice() - { - return $this->device; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/CustomerListConfigurationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/CustomerListConfigurationsResponse.php deleted file mode 100644 index 5275633c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/CustomerListConfigurationsResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -configurations = $configurations; - } - /** - * @return Google_Service_AndroidProvisioningPartner_Configuration - */ - public function getConfigurations() - { - return $this->configurations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/CustomerListCustomersResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/CustomerListCustomersResponse.php deleted file mode 100644 index 30ce04ba..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/CustomerListCustomersResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -customers = $customers; - } - /** - * @return Google_Service_AndroidProvisioningPartner_Company - */ - public function getCustomers() - { - return $this->customers; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/CustomerListDevicesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/CustomerListDevicesResponse.php deleted file mode 100644 index 0a3b249b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/CustomerListDevicesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -devices = $devices; - } - /** - * @return Google_Service_AndroidProvisioningPartner_Device - */ - public function getDevices() - { - return $this->devices; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/CustomerListDpcsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/CustomerListDpcsResponse.php deleted file mode 100644 index a1515c24..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/CustomerListDpcsResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -dpcs = $dpcs; - } - /** - * @return Google_Service_AndroidProvisioningPartner_Dpc - */ - public function getDpcs() - { - return $this->dpcs; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/CustomerRemoveConfigurationRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/CustomerRemoveConfigurationRequest.php deleted file mode 100644 index 5d967560..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/CustomerRemoveConfigurationRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -device = $device; - } - /** - * @return Google_Service_AndroidProvisioningPartner_DeviceReference - */ - public function getDevice() - { - return $this->device; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/CustomerUnclaimDeviceRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/CustomerUnclaimDeviceRequest.php deleted file mode 100644 index 92728acb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/CustomerUnclaimDeviceRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -device = $device; - } - /** - * @return Google_Service_AndroidProvisioningPartner_DeviceReference - */ - public function getDevice() - { - return $this->device; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/Device.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/Device.php deleted file mode 100644 index f2295ee2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/Device.php +++ /dev/null @@ -1,97 +0,0 @@ -claims = $claims; - } - /** - * @return Google_Service_AndroidProvisioningPartner_DeviceClaim - */ - public function getClaims() - { - return $this->claims; - } - public function setConfiguration($configuration) - { - $this->configuration = $configuration; - } - public function getConfiguration() - { - return $this->configuration; - } - public function setDeviceId($deviceId) - { - $this->deviceId = $deviceId; - } - public function getDeviceId() - { - return $this->deviceId; - } - /** - * @param Google_Service_AndroidProvisioningPartner_DeviceIdentifier - */ - public function setDeviceIdentifier(Google_Service_AndroidProvisioningPartner_DeviceIdentifier $deviceIdentifier) - { - $this->deviceIdentifier = $deviceIdentifier; - } - /** - * @return Google_Service_AndroidProvisioningPartner_DeviceIdentifier - */ - public function getDeviceIdentifier() - { - return $this->deviceIdentifier; - } - /** - * @param Google_Service_AndroidProvisioningPartner_DeviceMetadata - */ - public function setDeviceMetadata(Google_Service_AndroidProvisioningPartner_DeviceMetadata $deviceMetadata) - { - $this->deviceMetadata = $deviceMetadata; - } - /** - * @return Google_Service_AndroidProvisioningPartner_DeviceMetadata - */ - public function getDeviceMetadata() - { - return $this->deviceMetadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/DeviceClaim.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/DeviceClaim.php deleted file mode 100644 index 2f0db805..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/DeviceClaim.php +++ /dev/null @@ -1,66 +0,0 @@ -ownerCompanyId = $ownerCompanyId; - } - public function getOwnerCompanyId() - { - return $this->ownerCompanyId; - } - public function setResellerId($resellerId) - { - $this->resellerId = $resellerId; - } - public function getResellerId() - { - return $this->resellerId; - } - public function setSectionType($sectionType) - { - $this->sectionType = $sectionType; - } - public function getSectionType() - { - return $this->sectionType; - } - public function setVacationModeExpireTime($vacationModeExpireTime) - { - $this->vacationModeExpireTime = $vacationModeExpireTime; - } - public function getVacationModeExpireTime() - { - return $this->vacationModeExpireTime; - } - public function setVacationModeStartTime($vacationModeStartTime) - { - $this->vacationModeStartTime = $vacationModeStartTime; - } - public function getVacationModeStartTime() - { - return $this->vacationModeStartTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/DeviceIdentifier.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/DeviceIdentifier.php deleted file mode 100644 index 5567cc3b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/DeviceIdentifier.php +++ /dev/null @@ -1,66 +0,0 @@ -imei = $imei; - } - public function getImei() - { - return $this->imei; - } - public function setManufacturer($manufacturer) - { - $this->manufacturer = $manufacturer; - } - public function getManufacturer() - { - return $this->manufacturer; - } - public function setMeid($meid) - { - $this->meid = $meid; - } - public function getMeid() - { - return $this->meid; - } - public function setModel($model) - { - $this->model = $model; - } - public function getModel() - { - return $this->model; - } - public function setSerialNumber($serialNumber) - { - $this->serialNumber = $serialNumber; - } - public function getSerialNumber() - { - return $this->serialNumber; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/DeviceMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/DeviceMetadata.php deleted file mode 100644 index fb9d2919..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/DeviceMetadata.php +++ /dev/null @@ -1,30 +0,0 @@ -entries = $entries; - } - public function getEntries() - { - return $this->entries; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/DeviceReference.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/DeviceReference.php deleted file mode 100644 index ec91c0a5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/DeviceReference.php +++ /dev/null @@ -1,46 +0,0 @@ -deviceId = $deviceId; - } - public function getDeviceId() - { - return $this->deviceId; - } - /** - * @param Google_Service_AndroidProvisioningPartner_DeviceIdentifier - */ - public function setDeviceIdentifier(Google_Service_AndroidProvisioningPartner_DeviceIdentifier $deviceIdentifier) - { - $this->deviceIdentifier = $deviceIdentifier; - } - /** - * @return Google_Service_AndroidProvisioningPartner_DeviceIdentifier - */ - public function getDeviceIdentifier() - { - return $this->deviceIdentifier; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/DevicesLongRunningOperationMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/DevicesLongRunningOperationMetadata.php deleted file mode 100644 index 8b1fdf31..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/DevicesLongRunningOperationMetadata.php +++ /dev/null @@ -1,48 +0,0 @@ -devicesCount = $devicesCount; - } - public function getDevicesCount() - { - return $this->devicesCount; - } - public function setProcessingStatus($processingStatus) - { - $this->processingStatus = $processingStatus; - } - public function getProcessingStatus() - { - return $this->processingStatus; - } - public function setProgress($progress) - { - $this->progress = $progress; - } - public function getProgress() - { - return $this->progress; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/DevicesLongRunningOperationResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/DevicesLongRunningOperationResponse.php deleted file mode 100644 index 1b38c317..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/DevicesLongRunningOperationResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -perDeviceStatus = $perDeviceStatus; - } - /** - * @return Google_Service_AndroidProvisioningPartner_OperationPerDevice - */ - public function getPerDeviceStatus() - { - return $this->perDeviceStatus; - } - public function setSuccessCount($successCount) - { - $this->successCount = $successCount; - } - public function getSuccessCount() - { - return $this->successCount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/Dpc.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/Dpc.php deleted file mode 100644 index a4d84686..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/Dpc.php +++ /dev/null @@ -1,48 +0,0 @@ -dpcName = $dpcName; - } - public function getDpcName() - { - return $this->dpcName; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPackageName($packageName) - { - $this->packageName = $packageName; - } - public function getPackageName() - { - return $this->packageName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/FindDevicesByDeviceIdentifierRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/FindDevicesByDeviceIdentifierRequest.php deleted file mode 100644 index a3f17b96..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/FindDevicesByDeviceIdentifierRequest.php +++ /dev/null @@ -1,55 +0,0 @@ -deviceIdentifier = $deviceIdentifier; - } - /** - * @return Google_Service_AndroidProvisioningPartner_DeviceIdentifier - */ - public function getDeviceIdentifier() - { - return $this->deviceIdentifier; - } - public function setLimit($limit) - { - $this->limit = $limit; - } - public function getLimit() - { - return $this->limit; - } - public function setPageToken($pageToken) - { - $this->pageToken = $pageToken; - } - public function getPageToken() - { - return $this->pageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/FindDevicesByDeviceIdentifierResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/FindDevicesByDeviceIdentifierResponse.php deleted file mode 100644 index 5caa42ea..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/FindDevicesByDeviceIdentifierResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -devices = $devices; - } - /** - * @return Google_Service_AndroidProvisioningPartner_Device - */ - public function getDevices() - { - return $this->devices; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setTotalSize($totalSize) - { - $this->totalSize = $totalSize; - } - public function getTotalSize() - { - return $this->totalSize; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/FindDevicesByOwnerRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/FindDevicesByOwnerRequest.php deleted file mode 100644 index ceca4b87..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/FindDevicesByOwnerRequest.php +++ /dev/null @@ -1,58 +0,0 @@ -customerId = $customerId; - } - public function getCustomerId() - { - return $this->customerId; - } - public function setLimit($limit) - { - $this->limit = $limit; - } - public function getLimit() - { - return $this->limit; - } - public function setPageToken($pageToken) - { - $this->pageToken = $pageToken; - } - public function getPageToken() - { - return $this->pageToken; - } - public function setSectionType($sectionType) - { - $this->sectionType = $sectionType; - } - public function getSectionType() - { - return $this->sectionType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/FindDevicesByOwnerResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/FindDevicesByOwnerResponse.php deleted file mode 100644 index 16a3bcf9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/FindDevicesByOwnerResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -devices = $devices; - } - /** - * @return Google_Service_AndroidProvisioningPartner_Device - */ - public function getDevices() - { - return $this->devices; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setTotalSize($totalSize) - { - $this->totalSize = $totalSize; - } - public function getTotalSize() - { - return $this->totalSize; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/ListCustomersResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/ListCustomersResponse.php deleted file mode 100644 index 2ff19d23..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/ListCustomersResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -customers = $customers; - } - /** - * @return Google_Service_AndroidProvisioningPartner_Company - */ - public function getCustomers() - { - return $this->customers; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setTotalSize($totalSize) - { - $this->totalSize = $totalSize; - } - public function getTotalSize() - { - return $this->totalSize; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/ListVendorCustomersResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/ListVendorCustomersResponse.php deleted file mode 100644 index 18f222a3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/ListVendorCustomersResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -customers = $customers; - } - /** - * @return Google_Service_AndroidProvisioningPartner_Company - */ - public function getCustomers() - { - return $this->customers; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setTotalSize($totalSize) - { - $this->totalSize = $totalSize; - } - public function getTotalSize() - { - return $this->totalSize; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/ListVendorsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/ListVendorsResponse.php deleted file mode 100644 index 8a931123..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/ListVendorsResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setTotalSize($totalSize) - { - $this->totalSize = $totalSize; - } - public function getTotalSize() - { - return $this->totalSize; - } - /** - * @param Google_Service_AndroidProvisioningPartner_Company - */ - public function setVendors($vendors) - { - $this->vendors = $vendors; - } - /** - * @return Google_Service_AndroidProvisioningPartner_Company - */ - public function getVendors() - { - return $this->vendors; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/Operation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/Operation.php deleted file mode 100644 index cfb3e841..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/Operation.php +++ /dev/null @@ -1,73 +0,0 @@ -done = $done; - } - public function getDone() - { - return $this->done; - } - /** - * @param Google_Service_AndroidProvisioningPartner_Status - */ - public function setError(Google_Service_AndroidProvisioningPartner_Status $error) - { - $this->error = $error; - } - /** - * @return Google_Service_AndroidProvisioningPartner_Status - */ - public function getError() - { - return $this->error; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/OperationPerDevice.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/OperationPerDevice.php deleted file mode 100644 index ee9ea4c7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/OperationPerDevice.php +++ /dev/null @@ -1,85 +0,0 @@ -claim = $claim; - } - /** - * @return Google_Service_AndroidProvisioningPartner_PartnerClaim - */ - public function getClaim() - { - return $this->claim; - } - /** - * @param Google_Service_AndroidProvisioningPartner_PerDeviceStatusInBatch - */ - public function setResult(Google_Service_AndroidProvisioningPartner_PerDeviceStatusInBatch $result) - { - $this->result = $result; - } - /** - * @return Google_Service_AndroidProvisioningPartner_PerDeviceStatusInBatch - */ - public function getResult() - { - return $this->result; - } - /** - * @param Google_Service_AndroidProvisioningPartner_PartnerUnclaim - */ - public function setUnclaim(Google_Service_AndroidProvisioningPartner_PartnerUnclaim $unclaim) - { - $this->unclaim = $unclaim; - } - /** - * @return Google_Service_AndroidProvisioningPartner_PartnerUnclaim - */ - public function getUnclaim() - { - return $this->unclaim; - } - /** - * @param Google_Service_AndroidProvisioningPartner_UpdateMetadataArguments - */ - public function setUpdateMetadata(Google_Service_AndroidProvisioningPartner_UpdateMetadataArguments $updateMetadata) - { - $this->updateMetadata = $updateMetadata; - } - /** - * @return Google_Service_AndroidProvisioningPartner_UpdateMetadataArguments - */ - public function getUpdateMetadata() - { - return $this->updateMetadata; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/PartnerClaim.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/PartnerClaim.php deleted file mode 100644 index 59bf7cc8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/PartnerClaim.php +++ /dev/null @@ -1,71 +0,0 @@ -customerId = $customerId; - } - public function getCustomerId() - { - return $this->customerId; - } - /** - * @param Google_Service_AndroidProvisioningPartner_DeviceIdentifier - */ - public function setDeviceIdentifier(Google_Service_AndroidProvisioningPartner_DeviceIdentifier $deviceIdentifier) - { - $this->deviceIdentifier = $deviceIdentifier; - } - /** - * @return Google_Service_AndroidProvisioningPartner_DeviceIdentifier - */ - public function getDeviceIdentifier() - { - return $this->deviceIdentifier; - } - /** - * @param Google_Service_AndroidProvisioningPartner_DeviceMetadata - */ - public function setDeviceMetadata(Google_Service_AndroidProvisioningPartner_DeviceMetadata $deviceMetadata) - { - $this->deviceMetadata = $deviceMetadata; - } - /** - * @return Google_Service_AndroidProvisioningPartner_DeviceMetadata - */ - public function getDeviceMetadata() - { - return $this->deviceMetadata; - } - public function setSectionType($sectionType) - { - $this->sectionType = $sectionType; - } - public function getSectionType() - { - return $this->sectionType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/PartnerUnclaim.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/PartnerUnclaim.php deleted file mode 100644 index aa6f2b2f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/PartnerUnclaim.php +++ /dev/null @@ -1,73 +0,0 @@ -deviceId = $deviceId; - } - public function getDeviceId() - { - return $this->deviceId; - } - /** - * @param Google_Service_AndroidProvisioningPartner_DeviceIdentifier - */ - public function setDeviceIdentifier(Google_Service_AndroidProvisioningPartner_DeviceIdentifier $deviceIdentifier) - { - $this->deviceIdentifier = $deviceIdentifier; - } - /** - * @return Google_Service_AndroidProvisioningPartner_DeviceIdentifier - */ - public function getDeviceIdentifier() - { - return $this->deviceIdentifier; - } - public function setSectionType($sectionType) - { - $this->sectionType = $sectionType; - } - public function getSectionType() - { - return $this->sectionType; - } - public function setVacationModeDays($vacationModeDays) - { - $this->vacationModeDays = $vacationModeDays; - } - public function getVacationModeDays() - { - return $this->vacationModeDays; - } - public function setVacationModeExpireTime($vacationModeExpireTime) - { - $this->vacationModeExpireTime = $vacationModeExpireTime; - } - public function getVacationModeExpireTime() - { - return $this->vacationModeExpireTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/PerDeviceStatusInBatch.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/PerDeviceStatusInBatch.php deleted file mode 100644 index 50b3cdbb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/PerDeviceStatusInBatch.php +++ /dev/null @@ -1,57 +0,0 @@ -deviceId = $deviceId; - } - public function getDeviceId() - { - return $this->deviceId; - } - public function setErrorIdentifier($errorIdentifier) - { - $this->errorIdentifier = $errorIdentifier; - } - public function getErrorIdentifier() - { - return $this->errorIdentifier; - } - public function setErrorMessage($errorMessage) - { - $this->errorMessage = $errorMessage; - } - public function getErrorMessage() - { - return $this->errorMessage; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/Resource/Customers.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/Resource/Customers.php deleted file mode 100644 index d3014f8d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/Resource/Customers.php +++ /dev/null @@ -1,44 +0,0 @@ - - * $androiddeviceprovisioningService = new Google_Service_AndroidProvisioningPartner(...); - * $customers = $androiddeviceprovisioningService->customers; - * - */ -class Google_Service_AndroidProvisioningPartner_Resource_Customers extends Google_Service_Resource -{ - /** - * Lists the user's customer accounts. (customers.listCustomers) - * - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A token specifying which result page to return. - * @opt_param int pageSize The maximum number of customers to show in a page of - * results. A number between 1 and 100 (inclusive). - * @return Google_Service_AndroidProvisioningPartner_CustomerListCustomersResponse - */ - public function listCustomers($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AndroidProvisioningPartner_CustomerListCustomersResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/Resource/CustomersConfigurations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/Resource/CustomersConfigurations.php deleted file mode 100644 index dbdbcf18..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/Resource/CustomersConfigurations.php +++ /dev/null @@ -1,112 +0,0 @@ - - * $androiddeviceprovisioningService = new Google_Service_AndroidProvisioningPartner(...); - * $configurations = $androiddeviceprovisioningService->configurations; - * - */ -class Google_Service_AndroidProvisioningPartner_Resource_CustomersConfigurations extends Google_Service_Resource -{ - /** - * Creates a new configuration. Once created, a customer can apply the - * configuration to devices. (configurations.create) - * - * @param string $parent Required. The customer that manages the configuration. - * An API resource name in the format `customers/[CUSTOMER_ID]`. - * @param Google_Service_AndroidProvisioningPartner_Configuration $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidProvisioningPartner_Configuration - */ - public function create($parent, Google_Service_AndroidProvisioningPartner_Configuration $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_AndroidProvisioningPartner_Configuration"); - } - /** - * Deletes an unused configuration. The API call fails if the customer has - * devices with the configuration applied. (configurations.delete) - * - * @param string $name Required. The configuration to delete. An API resource - * name in the format - * `customers/[CUSTOMER_ID]/configurations/[CONFIGURATION_ID]`. If the - * configuration is applied to any devices, the API call fails. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidProvisioningPartner_AndroiddeviceprovisioningEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_AndroidProvisioningPartner_AndroiddeviceprovisioningEmpty"); - } - /** - * Gets the details of a configuration. (configurations.get) - * - * @param string $name Required. The configuration to get. An API resource name - * in the format `customers/[CUSTOMER_ID]/configurations/[CONFIGURATION_ID]`. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidProvisioningPartner_Configuration - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AndroidProvisioningPartner_Configuration"); - } - /** - * Lists a customer's configurations. - * (configurations.listCustomersConfigurations) - * - * @param string $parent Required. The customer that manages the listed - * configurations. An API resource name in the format `customers/[CUSTOMER_ID]`. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidProvisioningPartner_CustomerListConfigurationsResponse - */ - public function listCustomersConfigurations($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AndroidProvisioningPartner_CustomerListConfigurationsResponse"); - } - /** - * Updates a configuration's field values. (configurations.patch) - * - * @param string $name Output only. The API resource name in the format - * `customers/[CUSTOMER_ID]/configurations/[CONFIGURATION_ID]`. Assigned by the - * server. - * @param Google_Service_AndroidProvisioningPartner_Configuration $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Required. The field mask applied to the target - * `Configuration` before updating the fields. To learn more about using field - * masks, read [FieldMask](/protocol- - * buffers/docs/reference/google.protobuf#fieldmask) in the Protocol Buffers - * documentation. - * @return Google_Service_AndroidProvisioningPartner_Configuration - */ - public function patch($name, Google_Service_AndroidProvisioningPartner_Configuration $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_AndroidProvisioningPartner_Configuration"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/Resource/CustomersDevices.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/Resource/CustomersDevices.php deleted file mode 100644 index 3ff60af5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/Resource/CustomersDevices.php +++ /dev/null @@ -1,111 +0,0 @@ - - * $androiddeviceprovisioningService = new Google_Service_AndroidProvisioningPartner(...); - * $devices = $androiddeviceprovisioningService->devices; - * - */ -class Google_Service_AndroidProvisioningPartner_Resource_CustomersDevices extends Google_Service_Resource -{ - /** - * Applies a Configuration to the device to register the device for zero-touch - * enrollment. After applying a configuration to a device, the device - * automatically provisions itself on first boot, or next factory reset. - * (devices.applyConfiguration) - * - * @param string $parent Required. The customer managing the device. An API - * resource name in the format `customers/[CUSTOMER_ID]`. - * @param Google_Service_AndroidProvisioningPartner_CustomerApplyConfigurationRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidProvisioningPartner_AndroiddeviceprovisioningEmpty - */ - public function applyConfiguration($parent, Google_Service_AndroidProvisioningPartner_CustomerApplyConfigurationRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('applyConfiguration', array($params), "Google_Service_AndroidProvisioningPartner_AndroiddeviceprovisioningEmpty"); - } - /** - * Gets the details of a device. (devices.get) - * - * @param string $name Required. The device to get. An API resource name in the - * format `customers/[CUSTOMER_ID]/devices/[DEVICE_ID]`. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidProvisioningPartner_Device - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AndroidProvisioningPartner_Device"); - } - /** - * Lists a customer's devices. (devices.listCustomersDevices) - * - * @param string $parent Required. The customer managing the devices. An API - * resource name in the format `customers/[CUSTOMER_ID]`. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A token specifying which result page to return. - * @opt_param string pageSize The maximum number of devices to show in a page of - * results. Must be between 1 and 100 inclusive. - * @return Google_Service_AndroidProvisioningPartner_CustomerListDevicesResponse - */ - public function listCustomersDevices($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AndroidProvisioningPartner_CustomerListDevicesResponse"); - } - /** - * Removes a configuration from device. (devices.removeConfiguration) - * - * @param string $parent Required. The customer managing the device in the - * format `customers/[CUSTOMER_ID]`. - * @param Google_Service_AndroidProvisioningPartner_CustomerRemoveConfigurationRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidProvisioningPartner_AndroiddeviceprovisioningEmpty - */ - public function removeConfiguration($parent, Google_Service_AndroidProvisioningPartner_CustomerRemoveConfigurationRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('removeConfiguration', array($params), "Google_Service_AndroidProvisioningPartner_AndroiddeviceprovisioningEmpty"); - } - /** - * Unclaims a device from a customer and removes it from zero-touch enrollment. - * - * After removing a device, a customer must contact their reseller to register - * the device into zero-touch enrollment again. (devices.unclaim) - * - * @param string $parent Required. The customer managing the device. An API - * resource name in the format `customers/[CUSTOMER_ID]`. - * @param Google_Service_AndroidProvisioningPartner_CustomerUnclaimDeviceRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidProvisioningPartner_AndroiddeviceprovisioningEmpty - */ - public function unclaim($parent, Google_Service_AndroidProvisioningPartner_CustomerUnclaimDeviceRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('unclaim', array($params), "Google_Service_AndroidProvisioningPartner_AndroiddeviceprovisioningEmpty"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/Resource/CustomersDpcs.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/Resource/CustomersDpcs.php deleted file mode 100644 index b44ea540..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/Resource/CustomersDpcs.php +++ /dev/null @@ -1,43 +0,0 @@ - - * $androiddeviceprovisioningService = new Google_Service_AndroidProvisioningPartner(...); - * $dpcs = $androiddeviceprovisioningService->dpcs; - * - */ -class Google_Service_AndroidProvisioningPartner_Resource_CustomersDpcs extends Google_Service_Resource -{ - /** - * Lists the DPCs (device policy controllers) that support zero-touch - * enrollment. (dpcs.listCustomersDpcs) - * - * @param string $parent Required. The customer that can use the DPCs in - * configurations. An API resource name in the format `customers/[CUSTOMER_ID]`. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidProvisioningPartner_CustomerListDpcsResponse - */ - public function listCustomersDpcs($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AndroidProvisioningPartner_CustomerListDpcsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/Resource/Operations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/Resource/Operations.php deleted file mode 100644 index 0306918a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/Resource/Operations.php +++ /dev/null @@ -1,43 +0,0 @@ - - * $androiddeviceprovisioningService = new Google_Service_AndroidProvisioningPartner(...); - * $operations = $androiddeviceprovisioningService->operations; - * - */ -class Google_Service_AndroidProvisioningPartner_Resource_Operations extends Google_Service_Resource -{ - /** - * Gets the latest state of a long-running operation. Clients can use this - * method to poll the operation result at intervals as recommended by the API - * service. (operations.get) - * - * @param string $name The name of the operation resource. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidProvisioningPartner_Operation - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AndroidProvisioningPartner_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/Resource/Partners.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/Resource/Partners.php deleted file mode 100644 index 04f12e36..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/Resource/Partners.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $androiddeviceprovisioningService = new Google_Service_AndroidProvisioningPartner(...); - * $partners = $androiddeviceprovisioningService->partners; - * - */ -class Google_Service_AndroidProvisioningPartner_Resource_Partners extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/Resource/PartnersCustomers.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/Resource/PartnersCustomers.php deleted file mode 100644 index a9f68248..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/Resource/PartnersCustomers.php +++ /dev/null @@ -1,68 +0,0 @@ - - * $androiddeviceprovisioningService = new Google_Service_AndroidProvisioningPartner(...); - * $customers = $androiddeviceprovisioningService->customers; - * - */ -class Google_Service_AndroidProvisioningPartner_Resource_PartnersCustomers extends Google_Service_Resource -{ - /** - * Creates a customer for zero-touch enrollment. After the method returns - * successfully, admin and owner roles can manage devices and EMM configs by - * calling API methods or using their zero-touch enrollment portal. The customer - * receives an email that welcomes them to zero-touch enrollment and explains - * how to sign into the portal. (customers.create) - * - * @param string $parent Required. The parent resource ID in the format - * `partners/[PARTNER_ID]` that identifies the reseller. - * @param Google_Service_AndroidProvisioningPartner_CreateCustomerRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidProvisioningPartner_Company - */ - public function create($parent, Google_Service_AndroidProvisioningPartner_CreateCustomerRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_AndroidProvisioningPartner_Company"); - } - /** - * Lists the customers that are enrolled to the reseller identified by the - * `partnerId` argument. This list includes customers that the reseller created - * and customers that enrolled themselves using the portal. - * (customers.listPartnersCustomers) - * - * @param string $partnerId Required. The ID of the reseller partner. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A token identifying a page of results returned by - * the server. - * @opt_param int pageSize The maximum number of results to be returned. If not - * specified or 0, all the records are returned. - * @return Google_Service_AndroidProvisioningPartner_ListCustomersResponse - */ - public function listPartnersCustomers($partnerId, $optParams = array()) - { - $params = array('partnerId' => $partnerId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AndroidProvisioningPartner_ListCustomersResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/Resource/PartnersDevices.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/Resource/PartnersDevices.php deleted file mode 100644 index 1103f426..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/Resource/PartnersDevices.php +++ /dev/null @@ -1,171 +0,0 @@ - - * $androiddeviceprovisioningService = new Google_Service_AndroidProvisioningPartner(...); - * $devices = $androiddeviceprovisioningService->devices; - * - */ -class Google_Service_AndroidProvisioningPartner_Resource_PartnersDevices extends Google_Service_Resource -{ - /** - * Claims a device for a customer and adds it to zero-touch enrollment. If the - * device is already claimed by another customer, the call returns an error. - * (devices.claim) - * - * @param string $partnerId Required. The ID of the reseller partner. - * @param Google_Service_AndroidProvisioningPartner_ClaimDeviceRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidProvisioningPartner_ClaimDeviceResponse - */ - public function claim($partnerId, Google_Service_AndroidProvisioningPartner_ClaimDeviceRequest $postBody, $optParams = array()) - { - $params = array('partnerId' => $partnerId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('claim', array($params), "Google_Service_AndroidProvisioningPartner_ClaimDeviceResponse"); - } - /** - * Claims a batch of devices for a customer asynchronously. Adds the devices to - * zero-touch enrollment. To learn more, read [Long‑running batch operations - * ](/zero-touch/guides/how-it-works#operations). (devices.claimAsync) - * - * @param string $partnerId Required. The ID of the reseller partner. - * @param Google_Service_AndroidProvisioningPartner_ClaimDevicesRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidProvisioningPartner_Operation - */ - public function claimAsync($partnerId, Google_Service_AndroidProvisioningPartner_ClaimDevicesRequest $postBody, $optParams = array()) - { - $params = array('partnerId' => $partnerId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('claimAsync', array($params), "Google_Service_AndroidProvisioningPartner_Operation"); - } - /** - * Finds devices by hardware identifiers, such as IMEI. - * (devices.findByIdentifier) - * - * @param string $partnerId Required. The ID of the reseller partner. - * @param Google_Service_AndroidProvisioningPartner_FindDevicesByDeviceIdentifierRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidProvisioningPartner_FindDevicesByDeviceIdentifierResponse - */ - public function findByIdentifier($partnerId, Google_Service_AndroidProvisioningPartner_FindDevicesByDeviceIdentifierRequest $postBody, $optParams = array()) - { - $params = array('partnerId' => $partnerId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('findByIdentifier', array($params), "Google_Service_AndroidProvisioningPartner_FindDevicesByDeviceIdentifierResponse"); - } - /** - * Finds devices claimed for customers. The results only contain devices - * registered to the reseller that's identified by the `partnerId` argument. The - * customer's devices purchased from other resellers don't appear in the - * results. (devices.findByOwner) - * - * @param string $partnerId Required. The ID of the reseller partner. - * @param Google_Service_AndroidProvisioningPartner_FindDevicesByOwnerRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidProvisioningPartner_FindDevicesByOwnerResponse - */ - public function findByOwner($partnerId, Google_Service_AndroidProvisioningPartner_FindDevicesByOwnerRequest $postBody, $optParams = array()) - { - $params = array('partnerId' => $partnerId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('findByOwner', array($params), "Google_Service_AndroidProvisioningPartner_FindDevicesByOwnerResponse"); - } - /** - * Gets a device. (devices.get) - * - * @param string $name Required. The device API resource name in the format - * `partners/[PARTNER_ID]/devices/[DEVICE_ID]`. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidProvisioningPartner_Device - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AndroidProvisioningPartner_Device"); - } - /** - * Updates reseller metadata associated with the device. (devices.metadata) - * - * @param string $metadataOwnerId Required. The owner of the newly set metadata. - * Set this to the partner ID. - * @param string $deviceId Required. The ID of the device. - * @param Google_Service_AndroidProvisioningPartner_UpdateDeviceMetadataRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidProvisioningPartner_DeviceMetadata - */ - public function metadata($metadataOwnerId, $deviceId, Google_Service_AndroidProvisioningPartner_UpdateDeviceMetadataRequest $postBody, $optParams = array()) - { - $params = array('metadataOwnerId' => $metadataOwnerId, 'deviceId' => $deviceId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('metadata', array($params), "Google_Service_AndroidProvisioningPartner_DeviceMetadata"); - } - /** - * Unclaims a device from a customer and removes it from zero-touch enrollment. - * (devices.unclaim) - * - * @param string $partnerId Required. The ID of the reseller partner. - * @param Google_Service_AndroidProvisioningPartner_UnclaimDeviceRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidProvisioningPartner_AndroiddeviceprovisioningEmpty - */ - public function unclaim($partnerId, Google_Service_AndroidProvisioningPartner_UnclaimDeviceRequest $postBody, $optParams = array()) - { - $params = array('partnerId' => $partnerId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('unclaim', array($params), "Google_Service_AndroidProvisioningPartner_AndroiddeviceprovisioningEmpty"); - } - /** - * Unclaims a batch of devices for a customer asynchronously. Removes the - * devices from zero-touch enrollment. To learn more, read [Long‑running batch - * operations](/zero-touch/guides/how-it-works#operations). - * (devices.unclaimAsync) - * - * @param string $partnerId Required. The reseller partner ID. - * @param Google_Service_AndroidProvisioningPartner_UnclaimDevicesRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidProvisioningPartner_Operation - */ - public function unclaimAsync($partnerId, Google_Service_AndroidProvisioningPartner_UnclaimDevicesRequest $postBody, $optParams = array()) - { - $params = array('partnerId' => $partnerId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('unclaimAsync', array($params), "Google_Service_AndroidProvisioningPartner_Operation"); - } - /** - * Updates the reseller metadata attached to a batch of devices. This method - * updates devices asynchronously and returns an `Operation` that can be used to - * track progress. Read [Long‑running batch operations](/zero-touch/guides/how- - * it-works#operations). (devices.updateMetadataAsync) - * - * @param string $partnerId Required. The reseller partner ID. - * @param Google_Service_AndroidProvisioningPartner_UpdateDeviceMetadataInBatchRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidProvisioningPartner_Operation - */ - public function updateMetadataAsync($partnerId, Google_Service_AndroidProvisioningPartner_UpdateDeviceMetadataInBatchRequest $postBody, $optParams = array()) - { - $params = array('partnerId' => $partnerId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updateMetadataAsync', array($params), "Google_Service_AndroidProvisioningPartner_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/Resource/PartnersVendors.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/Resource/PartnersVendors.php deleted file mode 100644 index 8182e5ed..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/Resource/PartnersVendors.php +++ /dev/null @@ -1,46 +0,0 @@ - - * $androiddeviceprovisioningService = new Google_Service_AndroidProvisioningPartner(...); - * $vendors = $androiddeviceprovisioningService->vendors; - * - */ -class Google_Service_AndroidProvisioningPartner_Resource_PartnersVendors extends Google_Service_Resource -{ - /** - * Lists the vendors of the partner. (vendors.listPartnersVendors) - * - * @param string $parent Required. The resource name in the format - * `partners/[PARTNER_ID]`. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A token identifying a page of results returned by - * the server. - * @opt_param int pageSize The maximum number of results to be returned. - * @return Google_Service_AndroidProvisioningPartner_ListVendorsResponse - */ - public function listPartnersVendors($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AndroidProvisioningPartner_ListVendorsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/Resource/PartnersVendorsCustomers.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/Resource/PartnersVendorsCustomers.php deleted file mode 100644 index 0ef834e2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/Resource/PartnersVendorsCustomers.php +++ /dev/null @@ -1,46 +0,0 @@ - - * $androiddeviceprovisioningService = new Google_Service_AndroidProvisioningPartner(...); - * $customers = $androiddeviceprovisioningService->customers; - * - */ -class Google_Service_AndroidProvisioningPartner_Resource_PartnersVendorsCustomers extends Google_Service_Resource -{ - /** - * Lists the customers of the vendor. (customers.listPartnersVendorsCustomers) - * - * @param string $parent Required. The resource name in the format - * `partners/[PARTNER_ID]/vendors/[VENDOR_ID]`. - * @param array $optParams Optional parameters. - * - * @opt_param int pageSize The maximum number of results to be returned. - * @opt_param string pageToken A token identifying a page of results returned by - * the server. - * @return Google_Service_AndroidProvisioningPartner_ListVendorCustomersResponse - */ - public function listPartnersVendorsCustomers($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AndroidProvisioningPartner_ListVendorCustomersResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/Status.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/Status.php deleted file mode 100644 index fdf30e87..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/Status.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/UnclaimDeviceRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/UnclaimDeviceRequest.php deleted file mode 100644 index 1aec2335..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/UnclaimDeviceRequest.php +++ /dev/null @@ -1,73 +0,0 @@ -deviceId = $deviceId; - } - public function getDeviceId() - { - return $this->deviceId; - } - /** - * @param Google_Service_AndroidProvisioningPartner_DeviceIdentifier - */ - public function setDeviceIdentifier(Google_Service_AndroidProvisioningPartner_DeviceIdentifier $deviceIdentifier) - { - $this->deviceIdentifier = $deviceIdentifier; - } - /** - * @return Google_Service_AndroidProvisioningPartner_DeviceIdentifier - */ - public function getDeviceIdentifier() - { - return $this->deviceIdentifier; - } - public function setSectionType($sectionType) - { - $this->sectionType = $sectionType; - } - public function getSectionType() - { - return $this->sectionType; - } - public function setVacationModeDays($vacationModeDays) - { - $this->vacationModeDays = $vacationModeDays; - } - public function getVacationModeDays() - { - return $this->vacationModeDays; - } - public function setVacationModeExpireTime($vacationModeExpireTime) - { - $this->vacationModeExpireTime = $vacationModeExpireTime; - } - public function getVacationModeExpireTime() - { - return $this->vacationModeExpireTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/UnclaimDevicesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/UnclaimDevicesRequest.php deleted file mode 100644 index df2b8a6b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/UnclaimDevicesRequest.php +++ /dev/null @@ -1,38 +0,0 @@ -unclaims = $unclaims; - } - /** - * @return Google_Service_AndroidProvisioningPartner_PartnerUnclaim - */ - public function getUnclaims() - { - return $this->unclaims; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/UpdateDeviceMetadataInBatchRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/UpdateDeviceMetadataInBatchRequest.php deleted file mode 100644 index 44e36ddd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/UpdateDeviceMetadataInBatchRequest.php +++ /dev/null @@ -1,38 +0,0 @@ -updates = $updates; - } - /** - * @return Google_Service_AndroidProvisioningPartner_UpdateMetadataArguments - */ - public function getUpdates() - { - return $this->updates; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/UpdateDeviceMetadataRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/UpdateDeviceMetadataRequest.php deleted file mode 100644 index 0e375803..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/UpdateDeviceMetadataRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -deviceMetadata = $deviceMetadata; - } - /** - * @return Google_Service_AndroidProvisioningPartner_DeviceMetadata - */ - public function getDeviceMetadata() - { - return $this->deviceMetadata; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/UpdateMetadataArguments.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/UpdateMetadataArguments.php deleted file mode 100644 index 94f244c6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidProvisioningPartner/UpdateMetadataArguments.php +++ /dev/null @@ -1,62 +0,0 @@ -deviceId = $deviceId; - } - public function getDeviceId() - { - return $this->deviceId; - } - /** - * @param Google_Service_AndroidProvisioningPartner_DeviceIdentifier - */ - public function setDeviceIdentifier(Google_Service_AndroidProvisioningPartner_DeviceIdentifier $deviceIdentifier) - { - $this->deviceIdentifier = $deviceIdentifier; - } - /** - * @return Google_Service_AndroidProvisioningPartner_DeviceIdentifier - */ - public function getDeviceIdentifier() - { - return $this->deviceIdentifier; - } - /** - * @param Google_Service_AndroidProvisioningPartner_DeviceMetadata - */ - public function setDeviceMetadata(Google_Service_AndroidProvisioningPartner_DeviceMetadata $deviceMetadata) - { - $this->deviceMetadata = $deviceMetadata; - } - /** - * @return Google_Service_AndroidProvisioningPartner_DeviceMetadata - */ - public function getDeviceMetadata() - { - return $this->deviceMetadata; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher.php deleted file mode 100644 index 2902f003..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher.php +++ /dev/null @@ -1,1388 +0,0 @@ - - * Accesses Android application developers' Google Play accounts.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_AndroidPublisher extends Google_Service -{ - /** View and manage your Google Play Developer account. */ - const ANDROIDPUBLISHER = - "https://www.googleapis.com/auth/androidpublisher"; - - public $edits; - public $edits_apks; - public $edits_bundles; - public $edits_deobfuscationfiles; - public $edits_details; - public $edits_expansionfiles; - public $edits_images; - public $edits_listings; - public $edits_testers; - public $edits_tracks; - public $inappproducts; - public $internalappsharingartifacts; - public $orders; - public $purchases_products; - public $purchases_subscriptions; - public $purchases_voidedpurchases; - public $reviews; - public $systemapks_variants; - - /** - * Constructs the internal representation of the AndroidPublisher service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://www.googleapis.com/'; - $this->servicePath = 'androidpublisher/v3/applications/'; - $this->batchPath = 'batch/androidpublisher/v3'; - $this->version = 'v3'; - $this->serviceName = 'androidpublisher'; - - $this->edits = new Google_Service_AndroidPublisher_Resource_Edits( - $this, - $this->serviceName, - 'edits', - array( - 'methods' => array( - 'commit' => array( - 'path' => '{packageName}/edits/{editId}:commit', - 'httpMethod' => 'POST', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => '{packageName}/edits/{editId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{packageName}/edits/{editId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{packageName}/edits', - 'httpMethod' => 'POST', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'validate' => array( - 'path' => '{packageName}/edits/{editId}:validate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->edits_apks = new Google_Service_AndroidPublisher_Resource_EditsApks( - $this, - $this->serviceName, - 'apks', - array( - 'methods' => array( - 'addexternallyhosted' => array( - 'path' => '{packageName}/edits/{editId}/apks/externallyHosted', - 'httpMethod' => 'POST', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{packageName}/edits/{editId}/apks', - 'httpMethod' => 'GET', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'upload' => array( - 'path' => '{packageName}/edits/{editId}/apks', - 'httpMethod' => 'POST', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->edits_bundles = new Google_Service_AndroidPublisher_Resource_EditsBundles( - $this, - $this->serviceName, - 'bundles', - array( - 'methods' => array( - 'list' => array( - 'path' => '{packageName}/edits/{editId}/bundles', - 'httpMethod' => 'GET', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'upload' => array( - 'path' => '{packageName}/edits/{editId}/bundles', - 'httpMethod' => 'POST', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'ackBundleInstallationWarning' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ), - ) - ) - ); - $this->edits_deobfuscationfiles = new Google_Service_AndroidPublisher_Resource_EditsDeobfuscationfiles( - $this, - $this->serviceName, - 'deobfuscationfiles', - array( - 'methods' => array( - 'upload' => array( - 'path' => '{packageName}/edits/{editId}/apks/{apkVersionCode}/deobfuscationFiles/{deobfuscationFileType}', - 'httpMethod' => 'POST', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'apkVersionCode' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - 'deobfuscationFileType' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->edits_details = new Google_Service_AndroidPublisher_Resource_EditsDetails( - $this, - $this->serviceName, - 'details', - array( - 'methods' => array( - 'get' => array( - 'path' => '{packageName}/edits/{editId}/details', - 'httpMethod' => 'GET', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => '{packageName}/edits/{editId}/details', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => '{packageName}/edits/{editId}/details', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->edits_expansionfiles = new Google_Service_AndroidPublisher_Resource_EditsExpansionfiles( - $this, - $this->serviceName, - 'expansionfiles', - array( - 'methods' => array( - 'get' => array( - 'path' => '{packageName}/edits/{editId}/apks/{apkVersionCode}/expansionFiles/{expansionFileType}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'apkVersionCode' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - 'expansionFileType' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => '{packageName}/edits/{editId}/apks/{apkVersionCode}/expansionFiles/{expansionFileType}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'apkVersionCode' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - 'expansionFileType' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => '{packageName}/edits/{editId}/apks/{apkVersionCode}/expansionFiles/{expansionFileType}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'apkVersionCode' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - 'expansionFileType' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'upload' => array( - 'path' => '{packageName}/edits/{editId}/apks/{apkVersionCode}/expansionFiles/{expansionFileType}', - 'httpMethod' => 'POST', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'apkVersionCode' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - 'expansionFileType' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->edits_images = new Google_Service_AndroidPublisher_Resource_EditsImages( - $this, - $this->serviceName, - 'images', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{packageName}/edits/{editId}/listings/{language}/{imageType}/{imageId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'imageType' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'imageId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'deleteall' => array( - 'path' => '{packageName}/edits/{editId}/listings/{language}/{imageType}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'imageType' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{packageName}/edits/{editId}/listings/{language}/{imageType}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'imageType' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'upload' => array( - 'path' => '{packageName}/edits/{editId}/listings/{language}/{imageType}', - 'httpMethod' => 'POST', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'imageType' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->edits_listings = new Google_Service_AndroidPublisher_Resource_EditsListings( - $this, - $this->serviceName, - 'listings', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{packageName}/edits/{editId}/listings/{language}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'deleteall' => array( - 'path' => '{packageName}/edits/{editId}/listings', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{packageName}/edits/{editId}/listings/{language}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{packageName}/edits/{editId}/listings', - 'httpMethod' => 'GET', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => '{packageName}/edits/{editId}/listings/{language}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => '{packageName}/edits/{editId}/listings/{language}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->edits_testers = new Google_Service_AndroidPublisher_Resource_EditsTesters( - $this, - $this->serviceName, - 'testers', - array( - 'methods' => array( - 'get' => array( - 'path' => '{packageName}/edits/{editId}/testers/{track}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'track' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => '{packageName}/edits/{editId}/testers/{track}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'track' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => '{packageName}/edits/{editId}/testers/{track}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'track' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->edits_tracks = new Google_Service_AndroidPublisher_Resource_EditsTracks( - $this, - $this->serviceName, - 'tracks', - array( - 'methods' => array( - 'get' => array( - 'path' => '{packageName}/edits/{editId}/tracks/{track}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'track' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{packageName}/edits/{editId}/tracks', - 'httpMethod' => 'GET', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => '{packageName}/edits/{editId}/tracks/{track}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'track' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => '{packageName}/edits/{editId}/tracks/{track}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'editId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'track' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->inappproducts = new Google_Service_AndroidPublisher_Resource_Inappproducts( - $this, - $this->serviceName, - 'inappproducts', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{packageName}/inappproducts/{sku}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sku' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{packageName}/inappproducts/{sku}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sku' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{packageName}/inappproducts', - 'httpMethod' => 'POST', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'autoConvertMissingPrices' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'list' => array( - 'path' => '{packageName}/inappproducts', - 'httpMethod' => 'GET', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'startIndex' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'token' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => '{packageName}/inappproducts/{sku}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sku' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'autoConvertMissingPrices' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'update' => array( - 'path' => '{packageName}/inappproducts/{sku}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sku' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'autoConvertMissingPrices' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ), - ) - ) - ); - $this->internalappsharingartifacts = new Google_Service_AndroidPublisher_Resource_Internalappsharingartifacts( - $this, - $this->serviceName, - 'internalappsharingartifacts', - array( - 'methods' => array( - 'uploadapk' => array( - 'path' => 'internalappsharing/{packageName}/artifacts/apk', - 'httpMethod' => 'POST', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'uploadbundle' => array( - 'path' => 'internalappsharing/{packageName}/artifacts/bundle', - 'httpMethod' => 'POST', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->orders = new Google_Service_AndroidPublisher_Resource_Orders( - $this, - $this->serviceName, - 'orders', - array( - 'methods' => array( - 'refund' => array( - 'path' => '{packageName}/orders/{orderId}:refund', - 'httpMethod' => 'POST', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'orderId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'revoke' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ), - ) - ) - ); - $this->purchases_products = new Google_Service_AndroidPublisher_Resource_PurchasesProducts( - $this, - $this->serviceName, - 'products', - array( - 'methods' => array( - 'acknowledge' => array( - 'path' => '{packageName}/purchases/products/{productId}/tokens/{token}:acknowledge', - 'httpMethod' => 'POST', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'productId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'token' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{packageName}/purchases/products/{productId}/tokens/{token}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'productId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'token' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->purchases_subscriptions = new Google_Service_AndroidPublisher_Resource_PurchasesSubscriptions( - $this, - $this->serviceName, - 'subscriptions', - array( - 'methods' => array( - 'acknowledge' => array( - 'path' => '{packageName}/purchases/subscriptions/{subscriptionId}/tokens/{token}:acknowledge', - 'httpMethod' => 'POST', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'subscriptionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'token' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'cancel' => array( - 'path' => '{packageName}/purchases/subscriptions/{subscriptionId}/tokens/{token}:cancel', - 'httpMethod' => 'POST', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'subscriptionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'token' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'defer' => array( - 'path' => '{packageName}/purchases/subscriptions/{subscriptionId}/tokens/{token}:defer', - 'httpMethod' => 'POST', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'subscriptionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'token' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{packageName}/purchases/subscriptions/{subscriptionId}/tokens/{token}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'subscriptionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'token' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'refund' => array( - 'path' => '{packageName}/purchases/subscriptions/{subscriptionId}/tokens/{token}:refund', - 'httpMethod' => 'POST', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'subscriptionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'token' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'revoke' => array( - 'path' => '{packageName}/purchases/subscriptions/{subscriptionId}/tokens/{token}:revoke', - 'httpMethod' => 'POST', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'subscriptionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'token' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->purchases_voidedpurchases = new Google_Service_AndroidPublisher_Resource_PurchasesVoidedpurchases( - $this, - $this->serviceName, - 'voidedpurchases', - array( - 'methods' => array( - 'list' => array( - 'path' => '{packageName}/purchases/voidedpurchases', - 'httpMethod' => 'GET', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'endTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'startIndex' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'startTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'token' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'type' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->reviews = new Google_Service_AndroidPublisher_Resource_Reviews( - $this, - $this->serviceName, - 'reviews', - array( - 'methods' => array( - 'get' => array( - 'path' => '{packageName}/reviews/{reviewId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'reviewId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'translationLanguage' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{packageName}/reviews', - 'httpMethod' => 'GET', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'startIndex' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'token' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'translationLanguage' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'reply' => array( - 'path' => '{packageName}/reviews/{reviewId}:reply', - 'httpMethod' => 'POST', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'reviewId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->systemapks_variants = new Google_Service_AndroidPublisher_Resource_SystemapksVariants( - $this, - $this->serviceName, - 'variants', - array( - 'methods' => array( - 'create' => array( - 'path' => '{packageName}/systemApks/{versionCode}/variants', - 'httpMethod' => 'POST', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'versionCode' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'download' => array( - 'path' => '{packageName}/systemApks/{versionCode}/variants/{variantId}:download', - 'httpMethod' => 'GET', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'versionCode' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'variantId' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{packageName}/systemApks/{versionCode}/variants/{variantId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'versionCode' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'variantId' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{packageName}/systemApks/{versionCode}/variants', - 'httpMethod' => 'GET', - 'parameters' => array( - 'packageName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'versionCode' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Apk.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Apk.php deleted file mode 100644 index ad86f054..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Apk.php +++ /dev/null @@ -1,46 +0,0 @@ -binary = $binary; - } - /** - * @return Google_Service_AndroidPublisher_ApkBinary - */ - public function getBinary() - { - return $this->binary; - } - public function setVersionCode($versionCode) - { - $this->versionCode = $versionCode; - } - public function getVersionCode() - { - return $this->versionCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ApkBinary.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ApkBinary.php deleted file mode 100644 index d6d28d48..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ApkBinary.php +++ /dev/null @@ -1,39 +0,0 @@ -sha1 = $sha1; - } - public function getSha1() - { - return $this->sha1; - } - public function setSha256($sha256) - { - $this->sha256 = $sha256; - } - public function getSha256() - { - return $this->sha256; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ApksAddExternallyHostedRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ApksAddExternallyHostedRequest.php deleted file mode 100644 index 47bc9071..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ApksAddExternallyHostedRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -externallyHostedApk = $externallyHostedApk; - } - /** - * @return Google_Service_AndroidPublisher_ExternallyHostedApk - */ - public function getExternallyHostedApk() - { - return $this->externallyHostedApk; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ApksAddExternallyHostedResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ApksAddExternallyHostedResponse.php deleted file mode 100644 index 9b1f8e2a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ApksAddExternallyHostedResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -externallyHostedApk = $externallyHostedApk; - } - /** - * @return Google_Service_AndroidPublisher_ExternallyHostedApk - */ - public function getExternallyHostedApk() - { - return $this->externallyHostedApk; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ApksListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ApksListResponse.php deleted file mode 100644 index 797a5918..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ApksListResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -apks = $apks; - } - /** - * @return Google_Service_AndroidPublisher_Apk - */ - public function getApks() - { - return $this->apks; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/AppDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/AppDetails.php deleted file mode 100644 index a1f3fae7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/AppDetails.php +++ /dev/null @@ -1,57 +0,0 @@ -contactEmail = $contactEmail; - } - public function getContactEmail() - { - return $this->contactEmail; - } - public function setContactPhone($contactPhone) - { - $this->contactPhone = $contactPhone; - } - public function getContactPhone() - { - return $this->contactPhone; - } - public function setContactWebsite($contactWebsite) - { - $this->contactWebsite = $contactWebsite; - } - public function getContactWebsite() - { - return $this->contactWebsite; - } - public function setDefaultLanguage($defaultLanguage) - { - $this->defaultLanguage = $defaultLanguage; - } - public function getDefaultLanguage() - { - return $this->defaultLanguage; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/AppEdit.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/AppEdit.php deleted file mode 100644 index eafc6001..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/AppEdit.php +++ /dev/null @@ -1,39 +0,0 @@ -expiryTimeSeconds = $expiryTimeSeconds; - } - public function getExpiryTimeSeconds() - { - return $this->expiryTimeSeconds; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Bundle.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Bundle.php deleted file mode 100644 index 315c037a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Bundle.php +++ /dev/null @@ -1,48 +0,0 @@ -sha1 = $sha1; - } - public function getSha1() - { - return $this->sha1; - } - public function setSha256($sha256) - { - $this->sha256 = $sha256; - } - public function getSha256() - { - return $this->sha256; - } - public function setVersionCode($versionCode) - { - $this->versionCode = $versionCode; - } - public function getVersionCode() - { - return $this->versionCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/BundlesListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/BundlesListResponse.php deleted file mode 100644 index 2dcf74cc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/BundlesListResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -bundles = $bundles; - } - /** - * @return Google_Service_AndroidPublisher_Bundle - */ - public function getBundles() - { - return $this->bundles; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Comment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Comment.php deleted file mode 100644 index 98fa4bbf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Comment.php +++ /dev/null @@ -1,53 +0,0 @@ -developerComment = $developerComment; - } - /** - * @return Google_Service_AndroidPublisher_DeveloperComment - */ - public function getDeveloperComment() - { - return $this->developerComment; - } - /** - * @param Google_Service_AndroidPublisher_UserComment - */ - public function setUserComment(Google_Service_AndroidPublisher_UserComment $userComment) - { - $this->userComment = $userComment; - } - /** - * @return Google_Service_AndroidPublisher_UserComment - */ - public function getUserComment() - { - return $this->userComment; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Control.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Control.php deleted file mode 100644 index 7b978836..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Control.php +++ /dev/null @@ -1,47 +0,0 @@ -modRanges = $modRanges; - } - /** - * @return Google_Service_AndroidPublisher_ModRange - */ - public function getModRanges() - { - return $this->modRanges; - } - public function setVersionCodes($versionCodes) - { - $this->versionCodes = $versionCodes; - } - public function getVersionCodes() - { - return $this->versionCodes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/CountryTargeting.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/CountryTargeting.php deleted file mode 100644 index d156a331..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/CountryTargeting.php +++ /dev/null @@ -1,40 +0,0 @@ -countries = $countries; - } - public function getCountries() - { - return $this->countries; - } - public function setIncludeRestOfWorld($includeRestOfWorld) - { - $this->includeRestOfWorld = $includeRestOfWorld; - } - public function getIncludeRestOfWorld() - { - return $this->includeRestOfWorld; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/DeobfuscationFile.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/DeobfuscationFile.php deleted file mode 100644 index aa2f5a40..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/DeobfuscationFile.php +++ /dev/null @@ -1,30 +0,0 @@ -symbolType = $symbolType; - } - public function getSymbolType() - { - return $this->symbolType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/DeobfuscationFilesUploadResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/DeobfuscationFilesUploadResponse.php deleted file mode 100644 index 27ca05f0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/DeobfuscationFilesUploadResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -deobfuscationFile = $deobfuscationFile; - } - /** - * @return Google_Service_AndroidPublisher_DeobfuscationFile - */ - public function getDeobfuscationFile() - { - return $this->deobfuscationFile; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/DeveloperComment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/DeveloperComment.php deleted file mode 100644 index 3604414b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/DeveloperComment.php +++ /dev/null @@ -1,46 +0,0 @@ -lastModified = $lastModified; - } - /** - * @return Google_Service_AndroidPublisher_Timestamp - */ - public function getLastModified() - { - return $this->lastModified; - } - public function setText($text) - { - $this->text = $text; - } - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/DeviceMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/DeviceMetadata.php deleted file mode 100644 index 65430d43..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/DeviceMetadata.php +++ /dev/null @@ -1,120 +0,0 @@ -cpuMake = $cpuMake; - } - public function getCpuMake() - { - return $this->cpuMake; - } - public function setCpuModel($cpuModel) - { - $this->cpuModel = $cpuModel; - } - public function getCpuModel() - { - return $this->cpuModel; - } - public function setDeviceClass($deviceClass) - { - $this->deviceClass = $deviceClass; - } - public function getDeviceClass() - { - return $this->deviceClass; - } - public function setGlEsVersion($glEsVersion) - { - $this->glEsVersion = $glEsVersion; - } - public function getGlEsVersion() - { - return $this->glEsVersion; - } - public function setManufacturer($manufacturer) - { - $this->manufacturer = $manufacturer; - } - public function getManufacturer() - { - return $this->manufacturer; - } - public function setNativePlatform($nativePlatform) - { - $this->nativePlatform = $nativePlatform; - } - public function getNativePlatform() - { - return $this->nativePlatform; - } - public function setProductName($productName) - { - $this->productName = $productName; - } - public function getProductName() - { - return $this->productName; - } - public function setRamMb($ramMb) - { - $this->ramMb = $ramMb; - } - public function getRamMb() - { - return $this->ramMb; - } - public function setScreenDensityDpi($screenDensityDpi) - { - $this->screenDensityDpi = $screenDensityDpi; - } - public function getScreenDensityDpi() - { - return $this->screenDensityDpi; - } - public function setScreenHeightPx($screenHeightPx) - { - $this->screenHeightPx = $screenHeightPx; - } - public function getScreenHeightPx() - { - return $this->screenHeightPx; - } - public function setScreenWidthPx($screenWidthPx) - { - $this->screenWidthPx = $screenWidthPx; - } - public function getScreenWidthPx() - { - return $this->screenWidthPx; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/DeviceSpec.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/DeviceSpec.php deleted file mode 100644 index 7fea2388..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/DeviceSpec.php +++ /dev/null @@ -1,49 +0,0 @@ -screenDensity = $screenDensity; - } - public function getScreenDensity() - { - return $this->screenDensity; - } - public function setSupportedAbis($supportedAbis) - { - $this->supportedAbis = $supportedAbis; - } - public function getSupportedAbis() - { - return $this->supportedAbis; - } - public function setSupportedLocales($supportedLocales) - { - $this->supportedLocales = $supportedLocales; - } - public function getSupportedLocales() - { - return $this->supportedLocales; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ExpansionFile.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ExpansionFile.php deleted file mode 100644 index d40d1356..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ExpansionFile.php +++ /dev/null @@ -1,39 +0,0 @@ -fileSize = $fileSize; - } - public function getFileSize() - { - return $this->fileSize; - } - public function setReferencesVersion($referencesVersion) - { - $this->referencesVersion = $referencesVersion; - } - public function getReferencesVersion() - { - return $this->referencesVersion; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ExpansionFilesUploadResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ExpansionFilesUploadResponse.php deleted file mode 100644 index 4bea8b64..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ExpansionFilesUploadResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -expansionFile = $expansionFile; - } - /** - * @return Google_Service_AndroidPublisher_ExpansionFile - */ - public function getExpansionFile() - { - return $this->expansionFile; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ExternallyHostedApk.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ExternallyHostedApk.php deleted file mode 100644 index e1b7a85b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ExternallyHostedApk.php +++ /dev/null @@ -1,164 +0,0 @@ -applicationLabel = $applicationLabel; - } - public function getApplicationLabel() - { - return $this->applicationLabel; - } - public function setCertificateBase64s($certificateBase64s) - { - $this->certificateBase64s = $certificateBase64s; - } - public function getCertificateBase64s() - { - return $this->certificateBase64s; - } - public function setExternallyHostedUrl($externallyHostedUrl) - { - $this->externallyHostedUrl = $externallyHostedUrl; - } - public function getExternallyHostedUrl() - { - return $this->externallyHostedUrl; - } - public function setFileSha1Base64($fileSha1Base64) - { - $this->fileSha1Base64 = $fileSha1Base64; - } - public function getFileSha1Base64() - { - return $this->fileSha1Base64; - } - public function setFileSha256Base64($fileSha256Base64) - { - $this->fileSha256Base64 = $fileSha256Base64; - } - public function getFileSha256Base64() - { - return $this->fileSha256Base64; - } - public function setFileSize($fileSize) - { - $this->fileSize = $fileSize; - } - public function getFileSize() - { - return $this->fileSize; - } - public function setIconBase64($iconBase64) - { - $this->iconBase64 = $iconBase64; - } - public function getIconBase64() - { - return $this->iconBase64; - } - public function setMaximumSdk($maximumSdk) - { - $this->maximumSdk = $maximumSdk; - } - public function getMaximumSdk() - { - return $this->maximumSdk; - } - public function setMinimumSdk($minimumSdk) - { - $this->minimumSdk = $minimumSdk; - } - public function getMinimumSdk() - { - return $this->minimumSdk; - } - public function setNativeCodes($nativeCodes) - { - $this->nativeCodes = $nativeCodes; - } - public function getNativeCodes() - { - return $this->nativeCodes; - } - public function setPackageName($packageName) - { - $this->packageName = $packageName; - } - public function getPackageName() - { - return $this->packageName; - } - public function setUsesFeatures($usesFeatures) - { - $this->usesFeatures = $usesFeatures; - } - public function getUsesFeatures() - { - return $this->usesFeatures; - } - /** - * @param Google_Service_AndroidPublisher_ExternallyHostedApkUsesPermission - */ - public function setUsesPermissions($usesPermissions) - { - $this->usesPermissions = $usesPermissions; - } - /** - * @return Google_Service_AndroidPublisher_ExternallyHostedApkUsesPermission - */ - public function getUsesPermissions() - { - return $this->usesPermissions; - } - public function setVersionCode($versionCode) - { - $this->versionCode = $versionCode; - } - public function getVersionCode() - { - return $this->versionCode; - } - public function setVersionName($versionName) - { - $this->versionName = $versionName; - } - public function getVersionName() - { - return $this->versionName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ExternallyHostedApkUsesPermission.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ExternallyHostedApkUsesPermission.php deleted file mode 100644 index 94a8da2b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ExternallyHostedApkUsesPermission.php +++ /dev/null @@ -1,39 +0,0 @@ -maxSdkVersion = $maxSdkVersion; - } - public function getMaxSdkVersion() - { - return $this->maxSdkVersion; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Image.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Image.php deleted file mode 100644 index 38eeff10..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Image.php +++ /dev/null @@ -1,57 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setSha1($sha1) - { - $this->sha1 = $sha1; - } - public function getSha1() - { - return $this->sha1; - } - public function setSha256($sha256) - { - $this->sha256 = $sha256; - } - public function getSha256() - { - return $this->sha256; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ImagesDeleteAllResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ImagesDeleteAllResponse.php deleted file mode 100644 index 1dc053b6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ImagesDeleteAllResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -deleted = $deleted; - } - /** - * @return Google_Service_AndroidPublisher_Image - */ - public function getDeleted() - { - return $this->deleted; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ImagesListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ImagesListResponse.php deleted file mode 100644 index d468ce01..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ImagesListResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -images = $images; - } - /** - * @return Google_Service_AndroidPublisher_Image - */ - public function getImages() - { - return $this->images; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ImagesUploadResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ImagesUploadResponse.php deleted file mode 100644 index ff8b4344..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ImagesUploadResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -image = $image; - } - /** - * @return Google_Service_AndroidPublisher_Image - */ - public function getImage() - { - return $this->image; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/InAppProduct.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/InAppProduct.php deleted file mode 100644 index a66a7a0e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/InAppProduct.php +++ /dev/null @@ -1,141 +0,0 @@ -defaultLanguage = $defaultLanguage; - } - public function getDefaultLanguage() - { - return $this->defaultLanguage; - } - /** - * @param Google_Service_AndroidPublisher_Price - */ - public function setDefaultPrice(Google_Service_AndroidPublisher_Price $defaultPrice) - { - $this->defaultPrice = $defaultPrice; - } - /** - * @return Google_Service_AndroidPublisher_Price - */ - public function getDefaultPrice() - { - return $this->defaultPrice; - } - public function setGracePeriod($gracePeriod) - { - $this->gracePeriod = $gracePeriod; - } - public function getGracePeriod() - { - return $this->gracePeriod; - } - /** - * @param Google_Service_AndroidPublisher_InAppProductListing - */ - public function setListings($listings) - { - $this->listings = $listings; - } - /** - * @return Google_Service_AndroidPublisher_InAppProductListing - */ - public function getListings() - { - return $this->listings; - } - public function setPackageName($packageName) - { - $this->packageName = $packageName; - } - public function getPackageName() - { - return $this->packageName; - } - /** - * @param Google_Service_AndroidPublisher_Price - */ - public function setPrices($prices) - { - $this->prices = $prices; - } - /** - * @return Google_Service_AndroidPublisher_Price - */ - public function getPrices() - { - return $this->prices; - } - public function setPurchaseType($purchaseType) - { - $this->purchaseType = $purchaseType; - } - public function getPurchaseType() - { - return $this->purchaseType; - } - public function setSku($sku) - { - $this->sku = $sku; - } - public function getSku() - { - return $this->sku; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setSubscriptionPeriod($subscriptionPeriod) - { - $this->subscriptionPeriod = $subscriptionPeriod; - } - public function getSubscriptionPeriod() - { - return $this->subscriptionPeriod; - } - public function setTrialPeriod($trialPeriod) - { - $this->trialPeriod = $trialPeriod; - } - public function getTrialPeriod() - { - return $this->trialPeriod; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/InAppProductListing.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/InAppProductListing.php deleted file mode 100644 index bdf9f89d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/InAppProductListing.php +++ /dev/null @@ -1,39 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/InappproductsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/InappproductsListResponse.php deleted file mode 100644 index 0e721bbe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/InappproductsListResponse.php +++ /dev/null @@ -1,79 +0,0 @@ -inappproduct = $inappproduct; - } - /** - * @return Google_Service_AndroidPublisher_InAppProduct - */ - public function getInappproduct() - { - return $this->inappproduct; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_AndroidPublisher_PageInfo - */ - public function setPageInfo(Google_Service_AndroidPublisher_PageInfo $pageInfo) - { - $this->pageInfo = $pageInfo; - } - /** - * @return Google_Service_AndroidPublisher_PageInfo - */ - public function getPageInfo() - { - return $this->pageInfo; - } - /** - * @param Google_Service_AndroidPublisher_TokenPagination - */ - public function setTokenPagination(Google_Service_AndroidPublisher_TokenPagination $tokenPagination) - { - $this->tokenPagination = $tokenPagination; - } - /** - * @return Google_Service_AndroidPublisher_TokenPagination - */ - public function getTokenPagination() - { - return $this->tokenPagination; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/InternalAppSharingArtifact.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/InternalAppSharingArtifact.php deleted file mode 100644 index 8bcc35f2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/InternalAppSharingArtifact.php +++ /dev/null @@ -1,48 +0,0 @@ -certificateFingerprint = $certificateFingerprint; - } - public function getCertificateFingerprint() - { - return $this->certificateFingerprint; - } - public function setDownloadUrl($downloadUrl) - { - $this->downloadUrl = $downloadUrl; - } - public function getDownloadUrl() - { - return $this->downloadUrl; - } - public function setSha256($sha256) - { - $this->sha256 = $sha256; - } - public function getSha256() - { - return $this->sha256; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/IntroductoryPriceInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/IntroductoryPriceInfo.php deleted file mode 100644 index 35e09508..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/IntroductoryPriceInfo.php +++ /dev/null @@ -1,57 +0,0 @@ -introductoryPriceAmountMicros = $introductoryPriceAmountMicros; - } - public function getIntroductoryPriceAmountMicros() - { - return $this->introductoryPriceAmountMicros; - } - public function setIntroductoryPriceCurrencyCode($introductoryPriceCurrencyCode) - { - $this->introductoryPriceCurrencyCode = $introductoryPriceCurrencyCode; - } - public function getIntroductoryPriceCurrencyCode() - { - return $this->introductoryPriceCurrencyCode; - } - public function setIntroductoryPriceCycles($introductoryPriceCycles) - { - $this->introductoryPriceCycles = $introductoryPriceCycles; - } - public function getIntroductoryPriceCycles() - { - return $this->introductoryPriceCycles; - } - public function setIntroductoryPricePeriod($introductoryPricePeriod) - { - $this->introductoryPricePeriod = $introductoryPricePeriod; - } - public function getIntroductoryPricePeriod() - { - return $this->introductoryPricePeriod; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Listing.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Listing.php deleted file mode 100644 index ab632cc7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Listing.php +++ /dev/null @@ -1,66 +0,0 @@ -fullDescription = $fullDescription; - } - public function getFullDescription() - { - return $this->fullDescription; - } - public function setLanguage($language) - { - $this->language = $language; - } - public function getLanguage() - { - return $this->language; - } - public function setShortDescription($shortDescription) - { - $this->shortDescription = $shortDescription; - } - public function getShortDescription() - { - return $this->shortDescription; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setVideo($video) - { - $this->video = $video; - } - public function getVideo() - { - return $this->video; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ListingsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ListingsListResponse.php deleted file mode 100644 index 38bf98fe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ListingsListResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_AndroidPublisher_Listing - */ - public function setListings($listings) - { - $this->listings = $listings; - } - /** - * @return Google_Service_AndroidPublisher_Listing - */ - public function getListings() - { - return $this->listings; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/LocalizedText.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/LocalizedText.php deleted file mode 100644 index dc2bae6c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/LocalizedText.php +++ /dev/null @@ -1,39 +0,0 @@ -language = $language; - } - public function getLanguage() - { - return $this->language; - } - public function setText($text) - { - $this->text = $text; - } - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ModRange.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ModRange.php deleted file mode 100644 index 84aafd88..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ModRange.php +++ /dev/null @@ -1,39 +0,0 @@ -end = $end; - } - public function getEnd() - { - return $this->end; - } - public function setStart($start) - { - $this->start = $start; - } - public function getStart() - { - return $this->start; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/PageInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/PageInfo.php deleted file mode 100644 index 541f334a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/PageInfo.php +++ /dev/null @@ -1,48 +0,0 @@ -resultPerPage = $resultPerPage; - } - public function getResultPerPage() - { - return $this->resultPerPage; - } - public function setStartIndex($startIndex) - { - $this->startIndex = $startIndex; - } - public function getStartIndex() - { - return $this->startIndex; - } - public function setTotalResults($totalResults) - { - $this->totalResults = $totalResults; - } - public function getTotalResults() - { - return $this->totalResults; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Price.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Price.php deleted file mode 100644 index d992c975..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Price.php +++ /dev/null @@ -1,39 +0,0 @@ -currency = $currency; - } - public function getCurrency() - { - return $this->currency; - } - public function setPriceMicros($priceMicros) - { - $this->priceMicros = $priceMicros; - } - public function getPriceMicros() - { - return $this->priceMicros; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ProductPurchase.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ProductPurchase.php deleted file mode 100644 index 33ff8679..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ProductPurchase.php +++ /dev/null @@ -1,120 +0,0 @@ -acknowledgementState = $acknowledgementState; - } - public function getAcknowledgementState() - { - return $this->acknowledgementState; - } - public function setConsumptionState($consumptionState) - { - $this->consumptionState = $consumptionState; - } - public function getConsumptionState() - { - return $this->consumptionState; - } - public function setDeveloperPayload($developerPayload) - { - $this->developerPayload = $developerPayload; - } - public function getDeveloperPayload() - { - return $this->developerPayload; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setOrderId($orderId) - { - $this->orderId = $orderId; - } - public function getOrderId() - { - return $this->orderId; - } - public function setProductId($productId) - { - $this->productId = $productId; - } - public function getProductId() - { - return $this->productId; - } - public function setPurchaseState($purchaseState) - { - $this->purchaseState = $purchaseState; - } - public function getPurchaseState() - { - return $this->purchaseState; - } - public function setPurchaseTimeMillis($purchaseTimeMillis) - { - $this->purchaseTimeMillis = $purchaseTimeMillis; - } - public function getPurchaseTimeMillis() - { - return $this->purchaseTimeMillis; - } - public function setPurchaseToken($purchaseToken) - { - $this->purchaseToken = $purchaseToken; - } - public function getPurchaseToken() - { - return $this->purchaseToken; - } - public function setPurchaseType($purchaseType) - { - $this->purchaseType = $purchaseType; - } - public function getPurchaseType() - { - return $this->purchaseType; - } - public function setQuantity($quantity) - { - $this->quantity = $quantity; - } - public function getQuantity() - { - return $this->quantity; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ProductPurchasesAcknowledgeRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ProductPurchasesAcknowledgeRequest.php deleted file mode 100644 index 3cccb790..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ProductPurchasesAcknowledgeRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -developerPayload = $developerPayload; - } - public function getDeveloperPayload() - { - return $this->developerPayload; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/Edits.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/Edits.php deleted file mode 100644 index 1058a959..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/Edits.php +++ /dev/null @@ -1,107 +0,0 @@ - - * $androidpublisherService = new Google_Service_AndroidPublisher(...); - * $edits = $androidpublisherService->edits; - * - */ -class Google_Service_AndroidPublisher_Resource_Edits extends Google_Service_Resource -{ - /** - * Commits/applies the changes made in this edit back to the app. (edits.commit) - * - * @param string $packageName Unique identifier for the Android app that is - * being updated; for example, "com.spiffygame". - * @param string $editId Unique identifier for this edit. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidPublisher_AppEdit - */ - public function commit($packageName, $editId, $optParams = array()) - { - $params = array('packageName' => $packageName, 'editId' => $editId); - $params = array_merge($params, $optParams); - return $this->call('commit', array($params), "Google_Service_AndroidPublisher_AppEdit"); - } - /** - * Deletes an edit for an app. Creating a new edit will automatically delete any - * of your previous edits so this method need only be called if you want to - * preemptively abandon an edit. (edits.delete) - * - * @param string $packageName Unique identifier for the Android app that is - * being updated; for example, "com.spiffygame". - * @param string $editId Unique identifier for this edit. - * @param array $optParams Optional parameters. - */ - public function delete($packageName, $editId, $optParams = array()) - { - $params = array('packageName' => $packageName, 'editId' => $editId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Returns information about the edit specified. Calls will fail if the edit is - * no long active (e.g. has been deleted, superseded or expired). (edits.get) - * - * @param string $packageName Unique identifier for the Android app that is - * being updated; for example, "com.spiffygame". - * @param string $editId Unique identifier for this edit. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidPublisher_AppEdit - */ - public function get($packageName, $editId, $optParams = array()) - { - $params = array('packageName' => $packageName, 'editId' => $editId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AndroidPublisher_AppEdit"); - } - /** - * Creates a new edit for an app, populated with the app's current state. - * (edits.insert) - * - * @param string $packageName Unique identifier for the Android app that is - * being updated; for example, "com.spiffygame". - * @param Google_Service_AndroidPublisher_AppEdit $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidPublisher_AppEdit - */ - public function insert($packageName, Google_Service_AndroidPublisher_AppEdit $postBody, $optParams = array()) - { - $params = array('packageName' => $packageName, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_AndroidPublisher_AppEdit"); - } - /** - * Checks that the edit can be successfully committed. The edit's changes are - * not applied to the live app. (edits.validate) - * - * @param string $packageName Unique identifier for the Android app that is - * being updated; for example, "com.spiffygame". - * @param string $editId Unique identifier for this edit. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidPublisher_AppEdit - */ - public function validate($packageName, $editId, $optParams = array()) - { - $params = array('packageName' => $packageName, 'editId' => $editId); - $params = array_merge($params, $optParams); - return $this->call('validate', array($params), "Google_Service_AndroidPublisher_AppEdit"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/EditsApks.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/EditsApks.php deleted file mode 100644 index 69eec34b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/EditsApks.php +++ /dev/null @@ -1,77 +0,0 @@ - - * $androidpublisherService = new Google_Service_AndroidPublisher(...); - * $apks = $androidpublisherService->apks; - * - */ -class Google_Service_AndroidPublisher_Resource_EditsApks extends Google_Service_Resource -{ - /** - * Creates a new APK without uploading the APK itself to Google Play, instead - * hosting the APK at a specified URL. This function is only available to - * enterprises using Google Play for Work whose application is configured to - * restrict distribution to the enterprise domain. (apks.addexternallyhosted) - * - * @param string $packageName Unique identifier for the Android app that is - * being updated; for example, "com.spiffygame". - * @param string $editId Unique identifier for this edit. - * @param Google_Service_AndroidPublisher_ApksAddExternallyHostedRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidPublisher_ApksAddExternallyHostedResponse - */ - public function addexternallyhosted($packageName, $editId, Google_Service_AndroidPublisher_ApksAddExternallyHostedRequest $postBody, $optParams = array()) - { - $params = array('packageName' => $packageName, 'editId' => $editId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('addexternallyhosted', array($params), "Google_Service_AndroidPublisher_ApksAddExternallyHostedResponse"); - } - /** - * (apks.listEditsApks) - * - * @param string $packageName Unique identifier for the Android app that is - * being updated; for example, "com.spiffygame". - * @param string $editId Unique identifier for this edit. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidPublisher_ApksListResponse - */ - public function listEditsApks($packageName, $editId, $optParams = array()) - { - $params = array('packageName' => $packageName, 'editId' => $editId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AndroidPublisher_ApksListResponse"); - } - /** - * (apks.upload) - * - * @param string $packageName Unique identifier for the Android app that is - * being updated; for example, "com.spiffygame". - * @param string $editId Unique identifier for this edit. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidPublisher_Apk - */ - public function upload($packageName, $editId, $optParams = array()) - { - $params = array('packageName' => $packageName, 'editId' => $editId); - $params = array_merge($params, $optParams); - return $this->call('upload', array($params), "Google_Service_AndroidPublisher_Apk"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/EditsBundles.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/EditsBundles.php deleted file mode 100644 index 6db7f6e8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/EditsBundles.php +++ /dev/null @@ -1,66 +0,0 @@ - - * $androidpublisherService = new Google_Service_AndroidPublisher(...); - * $bundles = $androidpublisherService->bundles; - * - */ -class Google_Service_AndroidPublisher_Resource_EditsBundles extends Google_Service_Resource -{ - /** - * (bundles.listEditsBundles) - * - * @param string $packageName Unique identifier for the Android app that is - * being updated; for example, "com.spiffygame". - * @param string $editId Unique identifier for this edit. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidPublisher_BundlesListResponse - */ - public function listEditsBundles($packageName, $editId, $optParams = array()) - { - $params = array('packageName' => $packageName, 'editId' => $editId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AndroidPublisher_BundlesListResponse"); - } - /** - * Uploads a new Android App Bundle to this edit. If you are using the Google - * API client libraries, please increase the timeout of the http request before - * calling this endpoint (a timeout of 2 minutes is recommended). See: - * https://developers.google.com/api-client-library/java/google-api-java- - * client/errors for an example in java. (bundles.upload) - * - * @param string $packageName Unique identifier for the Android app that is - * being updated; for example, "com.spiffygame". - * @param string $editId Unique identifier for this edit. - * @param array $optParams Optional parameters. - * - * @opt_param bool ackBundleInstallationWarning Must be set to true if the - * bundle installation may trigger a warning on user devices (for example, if - * installation size may be over a threshold, typically 100 MB). - * @return Google_Service_AndroidPublisher_Bundle - */ - public function upload($packageName, $editId, $optParams = array()) - { - $params = array('packageName' => $packageName, 'editId' => $editId); - $params = array_merge($params, $optParams); - return $this->call('upload', array($params), "Google_Service_AndroidPublisher_Bundle"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/EditsDeobfuscationfiles.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/EditsDeobfuscationfiles.php deleted file mode 100644 index 61d4a161..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/EditsDeobfuscationfiles.php +++ /dev/null @@ -1,47 +0,0 @@ - - * $androidpublisherService = new Google_Service_AndroidPublisher(...); - * $deobfuscationfiles = $androidpublisherService->deobfuscationfiles; - * - */ -class Google_Service_AndroidPublisher_Resource_EditsDeobfuscationfiles extends Google_Service_Resource -{ - /** - * Uploads the deobfuscation file of the specified APK. If a deobfuscation file - * already exists, it will be replaced. (deobfuscationfiles.upload) - * - * @param string $packageName Unique identifier of the Android app for which the - * deobfuscatiuon files are being uploaded; for example, "com.spiffygame". - * @param string $editId Unique identifier for this edit. - * @param int $apkVersionCode The version code of the APK whose deobfuscation - * file is being uploaded. - * @param string $deobfuscationFileType - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidPublisher_DeobfuscationFilesUploadResponse - */ - public function upload($packageName, $editId, $apkVersionCode, $deobfuscationFileType, $optParams = array()) - { - $params = array('packageName' => $packageName, 'editId' => $editId, 'apkVersionCode' => $apkVersionCode, 'deobfuscationFileType' => $deobfuscationFileType); - $params = array_merge($params, $optParams); - return $this->call('upload', array($params), "Google_Service_AndroidPublisher_DeobfuscationFilesUploadResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/EditsDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/EditsDetails.php deleted file mode 100644 index b71531eb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/EditsDetails.php +++ /dev/null @@ -1,77 +0,0 @@ - - * $androidpublisherService = new Google_Service_AndroidPublisher(...); - * $details = $androidpublisherService->details; - * - */ -class Google_Service_AndroidPublisher_Resource_EditsDetails extends Google_Service_Resource -{ - /** - * Fetches app details for this edit. This includes the default language and - * developer support contact information. (details.get) - * - * @param string $packageName Unique identifier for the Android app that is - * being updated; for example, "com.spiffygame". - * @param string $editId Unique identifier for this edit. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidPublisher_AppDetails - */ - public function get($packageName, $editId, $optParams = array()) - { - $params = array('packageName' => $packageName, 'editId' => $editId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AndroidPublisher_AppDetails"); - } - /** - * Updates app details for this edit. This method supports patch semantics. - * (details.patch) - * - * @param string $packageName Unique identifier for the Android app that is - * being updated; for example, "com.spiffygame". - * @param string $editId Unique identifier for this edit. - * @param Google_Service_AndroidPublisher_AppDetails $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidPublisher_AppDetails - */ - public function patch($packageName, $editId, Google_Service_AndroidPublisher_AppDetails $postBody, $optParams = array()) - { - $params = array('packageName' => $packageName, 'editId' => $editId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_AndroidPublisher_AppDetails"); - } - /** - * Updates app details for this edit. (details.update) - * - * @param string $packageName Unique identifier for the Android app that is - * being updated; for example, "com.spiffygame". - * @param string $editId Unique identifier for this edit. - * @param Google_Service_AndroidPublisher_AppDetails $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidPublisher_AppDetails - */ - public function update($packageName, $editId, Google_Service_AndroidPublisher_AppDetails $postBody, $optParams = array()) - { - $params = array('packageName' => $packageName, 'editId' => $editId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_AndroidPublisher_AppDetails"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/EditsExpansionfiles.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/EditsExpansionfiles.php deleted file mode 100644 index 37a43238..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/EditsExpansionfiles.php +++ /dev/null @@ -1,108 +0,0 @@ - - * $androidpublisherService = new Google_Service_AndroidPublisher(...); - * $expansionfiles = $androidpublisherService->expansionfiles; - * - */ -class Google_Service_AndroidPublisher_Resource_EditsExpansionfiles extends Google_Service_Resource -{ - /** - * Fetches the Expansion File configuration for the APK specified. - * (expansionfiles.get) - * - * @param string $packageName Unique identifier for the Android app that is - * being updated; for example, "com.spiffygame". - * @param string $editId Unique identifier for this edit. - * @param int $apkVersionCode The version code of the APK whose Expansion File - * configuration is being read or modified. - * @param string $expansionFileType - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidPublisher_ExpansionFile - */ - public function get($packageName, $editId, $apkVersionCode, $expansionFileType, $optParams = array()) - { - $params = array('packageName' => $packageName, 'editId' => $editId, 'apkVersionCode' => $apkVersionCode, 'expansionFileType' => $expansionFileType); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AndroidPublisher_ExpansionFile"); - } - /** - * Updates the APK's Expansion File configuration to reference another APK's - * Expansion Files. To add a new Expansion File use the Upload method. This - * method supports patch semantics. (expansionfiles.patch) - * - * @param string $packageName Unique identifier for the Android app that is - * being updated; for example, "com.spiffygame". - * @param string $editId Unique identifier for this edit. - * @param int $apkVersionCode The version code of the APK whose Expansion File - * configuration is being read or modified. - * @param string $expansionFileType - * @param Google_Service_AndroidPublisher_ExpansionFile $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidPublisher_ExpansionFile - */ - public function patch($packageName, $editId, $apkVersionCode, $expansionFileType, Google_Service_AndroidPublisher_ExpansionFile $postBody, $optParams = array()) - { - $params = array('packageName' => $packageName, 'editId' => $editId, 'apkVersionCode' => $apkVersionCode, 'expansionFileType' => $expansionFileType, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_AndroidPublisher_ExpansionFile"); - } - /** - * Updates the APK's Expansion File configuration to reference another APK's - * Expansion Files. To add a new Expansion File use the Upload method. - * (expansionfiles.update) - * - * @param string $packageName Unique identifier for the Android app that is - * being updated; for example, "com.spiffygame". - * @param string $editId Unique identifier for this edit. - * @param int $apkVersionCode The version code of the APK whose Expansion File - * configuration is being read or modified. - * @param string $expansionFileType - * @param Google_Service_AndroidPublisher_ExpansionFile $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidPublisher_ExpansionFile - */ - public function update($packageName, $editId, $apkVersionCode, $expansionFileType, Google_Service_AndroidPublisher_ExpansionFile $postBody, $optParams = array()) - { - $params = array('packageName' => $packageName, 'editId' => $editId, 'apkVersionCode' => $apkVersionCode, 'expansionFileType' => $expansionFileType, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_AndroidPublisher_ExpansionFile"); - } - /** - * Uploads and attaches a new Expansion File to the APK specified. - * (expansionfiles.upload) - * - * @param string $packageName Unique identifier for the Android app that is - * being updated; for example, "com.spiffygame". - * @param string $editId Unique identifier for this edit. - * @param int $apkVersionCode The version code of the APK whose Expansion File - * configuration is being read or modified. - * @param string $expansionFileType - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidPublisher_ExpansionFilesUploadResponse - */ - public function upload($packageName, $editId, $apkVersionCode, $expansionFileType, $optParams = array()) - { - $params = array('packageName' => $packageName, 'editId' => $editId, 'apkVersionCode' => $apkVersionCode, 'expansionFileType' => $expansionFileType); - $params = array_merge($params, $optParams); - return $this->call('upload', array($params), "Google_Service_AndroidPublisher_ExpansionFilesUploadResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/EditsImages.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/EditsImages.php deleted file mode 100644 index 0b8e69c4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/EditsImages.php +++ /dev/null @@ -1,108 +0,0 @@ - - * $androidpublisherService = new Google_Service_AndroidPublisher(...); - * $images = $androidpublisherService->images; - * - */ -class Google_Service_AndroidPublisher_Resource_EditsImages extends Google_Service_Resource -{ - /** - * Deletes the image (specified by id) from the edit. (images.delete) - * - * @param string $packageName Unique identifier for the Android app that is - * being updated; for example, "com.spiffygame". - * @param string $editId Unique identifier for this edit. - * @param string $language The language code (a BCP-47 language tag) of the - * localized listing whose images are to read or modified. For example, to - * select Austrian German, pass "de-AT". - * @param string $imageType - * @param string $imageId Unique identifier an image within the set of images - * attached to this edit. - * @param array $optParams Optional parameters. - */ - public function delete($packageName, $editId, $language, $imageType, $imageId, $optParams = array()) - { - $params = array('packageName' => $packageName, 'editId' => $editId, 'language' => $language, 'imageType' => $imageType, 'imageId' => $imageId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Deletes all images for the specified language and image type. - * (images.deleteall) - * - * @param string $packageName Unique identifier for the Android app that is - * being updated; for example, "com.spiffygame". - * @param string $editId Unique identifier for this edit. - * @param string $language The language code (a BCP-47 language tag) of the - * localized listing whose images are to read or modified. For example, to - * select Austrian German, pass "de-AT". - * @param string $imageType - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidPublisher_ImagesDeleteAllResponse - */ - public function deleteall($packageName, $editId, $language, $imageType, $optParams = array()) - { - $params = array('packageName' => $packageName, 'editId' => $editId, 'language' => $language, 'imageType' => $imageType); - $params = array_merge($params, $optParams); - return $this->call('deleteall', array($params), "Google_Service_AndroidPublisher_ImagesDeleteAllResponse"); - } - /** - * Lists all images for the specified language and image type. - * (images.listEditsImages) - * - * @param string $packageName Unique identifier for the Android app that is - * being updated; for example, "com.spiffygame". - * @param string $editId Unique identifier for this edit. - * @param string $language The language code (a BCP-47 language tag) of the - * localized listing whose images are to read or modified. For example, to - * select Austrian German, pass "de-AT". - * @param string $imageType - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidPublisher_ImagesListResponse - */ - public function listEditsImages($packageName, $editId, $language, $imageType, $optParams = array()) - { - $params = array('packageName' => $packageName, 'editId' => $editId, 'language' => $language, 'imageType' => $imageType); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AndroidPublisher_ImagesListResponse"); - } - /** - * Uploads a new image and adds it to the list of images for the specified - * language and image type. (images.upload) - * - * @param string $packageName Unique identifier for the Android app that is - * being updated; for example, "com.spiffygame". - * @param string $editId Unique identifier for this edit. - * @param string $language The language code (a BCP-47 language tag) of the - * localized listing whose images are to read or modified. For example, to - * select Austrian German, pass "de-AT". - * @param string $imageType - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidPublisher_ImagesUploadResponse - */ - public function upload($packageName, $editId, $language, $imageType, $optParams = array()) - { - $params = array('packageName' => $packageName, 'editId' => $editId, 'language' => $language, 'imageType' => $imageType); - $params = array_merge($params, $optParams); - return $this->call('upload', array($params), "Google_Service_AndroidPublisher_ImagesUploadResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/EditsListings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/EditsListings.php deleted file mode 100644 index 94107148..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/EditsListings.php +++ /dev/null @@ -1,132 +0,0 @@ - - * $androidpublisherService = new Google_Service_AndroidPublisher(...); - * $listings = $androidpublisherService->listings; - * - */ -class Google_Service_AndroidPublisher_Resource_EditsListings extends Google_Service_Resource -{ - /** - * Deletes the specified localized store listing from an edit. (listings.delete) - * - * @param string $packageName Unique identifier for the Android app that is - * being updated; for example, "com.spiffygame". - * @param string $editId Unique identifier for this edit. - * @param string $language The language code (a BCP-47 language tag) of the - * localized listing to read or modify. For example, to select Austrian German, - * pass "de-AT". - * @param array $optParams Optional parameters. - */ - public function delete($packageName, $editId, $language, $optParams = array()) - { - $params = array('packageName' => $packageName, 'editId' => $editId, 'language' => $language); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Deletes all localized listings from an edit. (listings.deleteall) - * - * @param string $packageName Unique identifier for the Android app that is - * being updated; for example, "com.spiffygame". - * @param string $editId Unique identifier for this edit. - * @param array $optParams Optional parameters. - */ - public function deleteall($packageName, $editId, $optParams = array()) - { - $params = array('packageName' => $packageName, 'editId' => $editId); - $params = array_merge($params, $optParams); - return $this->call('deleteall', array($params)); - } - /** - * Fetches information about a localized store listing. (listings.get) - * - * @param string $packageName Unique identifier for the Android app that is - * being updated; for example, "com.spiffygame". - * @param string $editId Unique identifier for this edit. - * @param string $language The language code (a BCP-47 language tag) of the - * localized listing to read or modify. For example, to select Austrian German, - * pass "de-AT". - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidPublisher_Listing - */ - public function get($packageName, $editId, $language, $optParams = array()) - { - $params = array('packageName' => $packageName, 'editId' => $editId, 'language' => $language); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AndroidPublisher_Listing"); - } - /** - * Returns all of the localized store listings attached to this edit. - * (listings.listEditsListings) - * - * @param string $packageName Unique identifier for the Android app that is - * being updated; for example, "com.spiffygame". - * @param string $editId Unique identifier for this edit. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidPublisher_ListingsListResponse - */ - public function listEditsListings($packageName, $editId, $optParams = array()) - { - $params = array('packageName' => $packageName, 'editId' => $editId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AndroidPublisher_ListingsListResponse"); - } - /** - * Creates or updates a localized store listing. This method supports patch - * semantics. (listings.patch) - * - * @param string $packageName Unique identifier for the Android app that is - * being updated; for example, "com.spiffygame". - * @param string $editId Unique identifier for this edit. - * @param string $language The language code (a BCP-47 language tag) of the - * localized listing to read or modify. For example, to select Austrian German, - * pass "de-AT". - * @param Google_Service_AndroidPublisher_Listing $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidPublisher_Listing - */ - public function patch($packageName, $editId, $language, Google_Service_AndroidPublisher_Listing $postBody, $optParams = array()) - { - $params = array('packageName' => $packageName, 'editId' => $editId, 'language' => $language, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_AndroidPublisher_Listing"); - } - /** - * Creates or updates a localized store listing. (listings.update) - * - * @param string $packageName Unique identifier for the Android app that is - * being updated; for example, "com.spiffygame". - * @param string $editId Unique identifier for this edit. - * @param string $language The language code (a BCP-47 language tag) of the - * localized listing to read or modify. For example, to select Austrian German, - * pass "de-AT". - * @param Google_Service_AndroidPublisher_Listing $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidPublisher_Listing - */ - public function update($packageName, $editId, $language, Google_Service_AndroidPublisher_Listing $postBody, $optParams = array()) - { - $params = array('packageName' => $packageName, 'editId' => $editId, 'language' => $language, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_AndroidPublisher_Listing"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/EditsTesters.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/EditsTesters.php deleted file mode 100644 index 08442e6a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/EditsTesters.php +++ /dev/null @@ -1,78 +0,0 @@ - - * $androidpublisherService = new Google_Service_AndroidPublisher(...); - * $testers = $androidpublisherService->testers; - * - */ -class Google_Service_AndroidPublisher_Resource_EditsTesters extends Google_Service_Resource -{ - /** - * (testers.get) - * - * @param string $packageName Unique identifier for the Android app that is - * being updated; for example, "com.spiffygame". - * @param string $editId Unique identifier for this edit. - * @param string $track The track to read or modify. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidPublisher_Testers - */ - public function get($packageName, $editId, $track, $optParams = array()) - { - $params = array('packageName' => $packageName, 'editId' => $editId, 'track' => $track); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AndroidPublisher_Testers"); - } - /** - * (testers.patch) - * - * @param string $packageName Unique identifier for the Android app that is - * being updated; for example, "com.spiffygame". - * @param string $editId Unique identifier for this edit. - * @param string $track The track to read or modify. - * @param Google_Service_AndroidPublisher_Testers $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidPublisher_Testers - */ - public function patch($packageName, $editId, $track, Google_Service_AndroidPublisher_Testers $postBody, $optParams = array()) - { - $params = array('packageName' => $packageName, 'editId' => $editId, 'track' => $track, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_AndroidPublisher_Testers"); - } - /** - * (testers.update) - * - * @param string $packageName Unique identifier for the Android app that is - * being updated; for example, "com.spiffygame". - * @param string $editId Unique identifier for this edit. - * @param string $track The track to read or modify. - * @param Google_Service_AndroidPublisher_Testers $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidPublisher_Testers - */ - public function update($packageName, $editId, $track, Google_Service_AndroidPublisher_Testers $postBody, $optParams = array()) - { - $params = array('packageName' => $packageName, 'editId' => $editId, 'track' => $track, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_AndroidPublisher_Testers"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/EditsTracks.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/EditsTracks.php deleted file mode 100644 index f6e26144..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/EditsTracks.php +++ /dev/null @@ -1,95 +0,0 @@ - - * $androidpublisherService = new Google_Service_AndroidPublisher(...); - * $tracks = $androidpublisherService->tracks; - * - */ -class Google_Service_AndroidPublisher_Resource_EditsTracks extends Google_Service_Resource -{ - /** - * Fetches the track configuration for the specified track type. Includes the - * APK version codes that are in this track. (tracks.get) - * - * @param string $packageName Unique identifier for the Android app that is - * being updated; for example, "com.spiffygame". - * @param string $editId Unique identifier for this edit. - * @param string $track The track to read or modify. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidPublisher_Track - */ - public function get($packageName, $editId, $track, $optParams = array()) - { - $params = array('packageName' => $packageName, 'editId' => $editId, 'track' => $track); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AndroidPublisher_Track"); - } - /** - * Lists all the track configurations for this edit. (tracks.listEditsTracks) - * - * @param string $packageName Unique identifier for the Android app that is - * being updated; for example, "com.spiffygame". - * @param string $editId Unique identifier for this edit. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidPublisher_TracksListResponse - */ - public function listEditsTracks($packageName, $editId, $optParams = array()) - { - $params = array('packageName' => $packageName, 'editId' => $editId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AndroidPublisher_TracksListResponse"); - } - /** - * Updates the track configuration for the specified track type. This method - * supports patch semantics. (tracks.patch) - * - * @param string $packageName Unique identifier for the Android app that is - * being updated; for example, "com.spiffygame". - * @param string $editId Unique identifier for this edit. - * @param string $track The track to read or modify. - * @param Google_Service_AndroidPublisher_Track $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidPublisher_Track - */ - public function patch($packageName, $editId, $track, Google_Service_AndroidPublisher_Track $postBody, $optParams = array()) - { - $params = array('packageName' => $packageName, 'editId' => $editId, 'track' => $track, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_AndroidPublisher_Track"); - } - /** - * Updates the track configuration for the specified track type. (tracks.update) - * - * @param string $packageName Unique identifier for the Android app that is - * being updated; for example, "com.spiffygame". - * @param string $editId Unique identifier for this edit. - * @param string $track The track to read or modify. - * @param Google_Service_AndroidPublisher_Track $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidPublisher_Track - */ - public function update($packageName, $editId, $track, Google_Service_AndroidPublisher_Track $postBody, $optParams = array()) - { - $params = array('packageName' => $packageName, 'editId' => $editId, 'track' => $track, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_AndroidPublisher_Track"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/Inappproducts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/Inappproducts.php deleted file mode 100644 index 9d3f35da..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/Inappproducts.php +++ /dev/null @@ -1,138 +0,0 @@ - - * $androidpublisherService = new Google_Service_AndroidPublisher(...); - * $inappproducts = $androidpublisherService->inappproducts; - * - */ -class Google_Service_AndroidPublisher_Resource_Inappproducts extends Google_Service_Resource -{ - /** - * Delete an in-app product for an app. (inappproducts.delete) - * - * @param string $packageName Unique identifier for the Android app with the in- - * app product; for example, "com.spiffygame". - * @param string $sku Unique identifier for the in-app product. - * @param array $optParams Optional parameters. - */ - public function delete($packageName, $sku, $optParams = array()) - { - $params = array('packageName' => $packageName, 'sku' => $sku); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Returns information about the in-app product specified. (inappproducts.get) - * - * @param string $packageName - * @param string $sku Unique identifier for the in-app product. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidPublisher_InAppProduct - */ - public function get($packageName, $sku, $optParams = array()) - { - $params = array('packageName' => $packageName, 'sku' => $sku); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AndroidPublisher_InAppProduct"); - } - /** - * Creates a new in-app product for an app. (inappproducts.insert) - * - * @param string $packageName Unique identifier for the Android app; for - * example, "com.spiffygame". - * @param Google_Service_AndroidPublisher_InAppProduct $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool autoConvertMissingPrices If true the prices for all regions - * targeted by the parent app that don't have a price specified for this in-app - * product will be auto converted to the target currency based on the default - * price. Defaults to false. - * @return Google_Service_AndroidPublisher_InAppProduct - */ - public function insert($packageName, Google_Service_AndroidPublisher_InAppProduct $postBody, $optParams = array()) - { - $params = array('packageName' => $packageName, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_AndroidPublisher_InAppProduct"); - } - /** - * List all the in-app products for an Android app, both subscriptions and - * managed in-app products.. (inappproducts.listInappproducts) - * - * @param string $packageName Unique identifier for the Android app with in-app - * products; for example, "com.spiffygame". - * @param array $optParams Optional parameters. - * - * @opt_param string maxResults - * @opt_param string startIndex - * @opt_param string token - * @return Google_Service_AndroidPublisher_InappproductsListResponse - */ - public function listInappproducts($packageName, $optParams = array()) - { - $params = array('packageName' => $packageName); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AndroidPublisher_InappproductsListResponse"); - } - /** - * Updates the details of an in-app product. This method supports patch - * semantics. (inappproducts.patch) - * - * @param string $packageName Unique identifier for the Android app with the in- - * app product; for example, "com.spiffygame". - * @param string $sku Unique identifier for the in-app product. - * @param Google_Service_AndroidPublisher_InAppProduct $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool autoConvertMissingPrices If true the prices for all regions - * targeted by the parent app that don't have a price specified for this in-app - * product will be auto converted to the target currency based on the default - * price. Defaults to false. - * @return Google_Service_AndroidPublisher_InAppProduct - */ - public function patch($packageName, $sku, Google_Service_AndroidPublisher_InAppProduct $postBody, $optParams = array()) - { - $params = array('packageName' => $packageName, 'sku' => $sku, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_AndroidPublisher_InAppProduct"); - } - /** - * Updates the details of an in-app product. (inappproducts.update) - * - * @param string $packageName Unique identifier for the Android app with the in- - * app product; for example, "com.spiffygame". - * @param string $sku Unique identifier for the in-app product. - * @param Google_Service_AndroidPublisher_InAppProduct $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool autoConvertMissingPrices If true the prices for all regions - * targeted by the parent app that don't have a price specified for this in-app - * product will be auto converted to the target currency based on the default - * price. Defaults to false. - * @return Google_Service_AndroidPublisher_InAppProduct - */ - public function update($packageName, $sku, Google_Service_AndroidPublisher_InAppProduct $postBody, $optParams = array()) - { - $params = array('packageName' => $packageName, 'sku' => $sku, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_AndroidPublisher_InAppProduct"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/Internalappsharingartifacts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/Internalappsharingartifacts.php deleted file mode 100644 index 67b33138..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/Internalappsharingartifacts.php +++ /dev/null @@ -1,65 +0,0 @@ - - * $androidpublisherService = new Google_Service_AndroidPublisher(...); - * $internalappsharingartifacts = $androidpublisherService->internalappsharingartifacts; - * - */ -class Google_Service_AndroidPublisher_Resource_Internalappsharingartifacts extends Google_Service_Resource -{ - /** - * Uploads an APK to internal app sharing. If you are using the Google API - * client libraries, please increase the timeout of the http request before - * calling this endpoint (a timeout of 2 minutes is recommended). See: - * https://developers.google.com/api-client-library/java/google-api-java- - * client/errors for an example in java. (internalappsharingartifacts.uploadapk) - * - * @param string $packageName Unique identifier for the Android app; for - * example, "com.spiffygame". - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidPublisher_InternalAppSharingArtifact - */ - public function uploadapk($packageName, $optParams = array()) - { - $params = array('packageName' => $packageName); - $params = array_merge($params, $optParams); - return $this->call('uploadapk', array($params), "Google_Service_AndroidPublisher_InternalAppSharingArtifact"); - } - /** - * Uploads an app bundle to internal app sharing. If you are using the Google - * API client libraries, please increase the timeout of the http request before - * calling this endpoint (a timeout of 2 minutes is recommended). See: - * https://developers.google.com/api-client-library/java/google-api-java- - * client/errors for an example in java. - * (internalappsharingartifacts.uploadbundle) - * - * @param string $packageName Unique identifier for the Android app; for - * example, "com.spiffygame". - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidPublisher_InternalAppSharingArtifact - */ - public function uploadbundle($packageName, $optParams = array()) - { - $params = array('packageName' => $packageName); - $params = array_merge($params, $optParams); - return $this->call('uploadbundle', array($params), "Google_Service_AndroidPublisher_InternalAppSharingArtifact"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/Orders.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/Orders.php deleted file mode 100644 index e08a7e98..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/Orders.php +++ /dev/null @@ -1,49 +0,0 @@ - - * $androidpublisherService = new Google_Service_AndroidPublisher(...); - * $orders = $androidpublisherService->orders; - * - */ -class Google_Service_AndroidPublisher_Resource_Orders extends Google_Service_Resource -{ - /** - * Refund a user's subscription or in-app purchase order. (orders.refund) - * - * @param string $packageName The package name of the application for which this - * subscription or in-app item was purchased (for example, 'com.some.thing'). - * @param string $orderId The order ID provided to the user when the - * subscription or in-app order was purchased. - * @param array $optParams Optional parameters. - * - * @opt_param bool revoke Whether to revoke the purchased item. If set to true, - * access to the subscription or in-app item will be terminated immediately. If - * the item is a recurring subscription, all future payments will also be - * terminated. Consumed in-app items need to be handled by developer's app. - * (optional) - */ - public function refund($packageName, $orderId, $optParams = array()) - { - $params = array('packageName' => $packageName, 'orderId' => $orderId); - $params = array_merge($params, $optParams); - return $this->call('refund', array($params)); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/Purchases.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/Purchases.php deleted file mode 100644 index c25bd1a1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/Purchases.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $androidpublisherService = new Google_Service_AndroidPublisher(...); - * $purchases = $androidpublisherService->purchases; - * - */ -class Google_Service_AndroidPublisher_Resource_Purchases extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/PurchasesProducts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/PurchasesProducts.php deleted file mode 100644 index b0b00e06..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/PurchasesProducts.php +++ /dev/null @@ -1,64 +0,0 @@ - - * $androidpublisherService = new Google_Service_AndroidPublisher(...); - * $products = $androidpublisherService->products; - * - */ -class Google_Service_AndroidPublisher_Resource_PurchasesProducts extends Google_Service_Resource -{ - /** - * Acknowledges a purchase of an inapp item. (products.acknowledge) - * - * @param string $packageName The package name of the application the inapp - * product was sold in (for example, 'com.some.thing'). - * @param string $productId The inapp product SKU (for example, - * 'com.some.thing.inapp1'). - * @param string $token The token provided to the user's device when the - * subscription was purchased. - * @param Google_Service_AndroidPublisher_ProductPurchasesAcknowledgeRequest $postBody - * @param array $optParams Optional parameters. - */ - public function acknowledge($packageName, $productId, $token, Google_Service_AndroidPublisher_ProductPurchasesAcknowledgeRequest $postBody, $optParams = array()) - { - $params = array('packageName' => $packageName, 'productId' => $productId, 'token' => $token, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('acknowledge', array($params)); - } - /** - * Checks the purchase and consumption status of an inapp item. (products.get) - * - * @param string $packageName The package name of the application the inapp - * product was sold in (for example, 'com.some.thing'). - * @param string $productId The inapp product SKU (for example, - * 'com.some.thing.inapp1'). - * @param string $token The token provided to the user's device when the inapp - * product was purchased. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidPublisher_ProductPurchase - */ - public function get($packageName, $productId, $token, $optParams = array()) - { - $params = array('packageName' => $packageName, 'productId' => $productId, 'token' => $token); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AndroidPublisher_ProductPurchase"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/PurchasesSubscriptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/PurchasesSubscriptions.php deleted file mode 100644 index f3ec759a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/PurchasesSubscriptions.php +++ /dev/null @@ -1,141 +0,0 @@ - - * $androidpublisherService = new Google_Service_AndroidPublisher(...); - * $subscriptions = $androidpublisherService->subscriptions; - * - */ -class Google_Service_AndroidPublisher_Resource_PurchasesSubscriptions extends Google_Service_Resource -{ - /** - * Acknowledges a subscription purchase. (subscriptions.acknowledge) - * - * @param string $packageName The package name of the application for which this - * subscription was purchased (for example, 'com.some.thing'). - * @param string $subscriptionId The purchased subscription ID (for example, - * 'monthly001'). - * @param string $token The token provided to the user's device when the - * subscription was purchased. - * @param Google_Service_AndroidPublisher_SubscriptionPurchasesAcknowledgeRequest $postBody - * @param array $optParams Optional parameters. - */ - public function acknowledge($packageName, $subscriptionId, $token, Google_Service_AndroidPublisher_SubscriptionPurchasesAcknowledgeRequest $postBody, $optParams = array()) - { - $params = array('packageName' => $packageName, 'subscriptionId' => $subscriptionId, 'token' => $token, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('acknowledge', array($params)); - } - /** - * Cancels a user's subscription purchase. The subscription remains valid until - * its expiration time. (subscriptions.cancel) - * - * @param string $packageName The package name of the application for which this - * subscription was purchased (for example, 'com.some.thing'). - * @param string $subscriptionId The purchased subscription ID (for example, - * 'monthly001'). - * @param string $token The token provided to the user's device when the - * subscription was purchased. - * @param array $optParams Optional parameters. - */ - public function cancel($packageName, $subscriptionId, $token, $optParams = array()) - { - $params = array('packageName' => $packageName, 'subscriptionId' => $subscriptionId, 'token' => $token); - $params = array_merge($params, $optParams); - return $this->call('cancel', array($params)); - } - /** - * Defers a user's subscription purchase until a specified future expiration - * time. (subscriptions.defer) - * - * @param string $packageName The package name of the application for which this - * subscription was purchased (for example, 'com.some.thing'). - * @param string $subscriptionId The purchased subscription ID (for example, - * 'monthly001'). - * @param string $token The token provided to the user's device when the - * subscription was purchased. - * @param Google_Service_AndroidPublisher_SubscriptionPurchasesDeferRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidPublisher_SubscriptionPurchasesDeferResponse - */ - public function defer($packageName, $subscriptionId, $token, Google_Service_AndroidPublisher_SubscriptionPurchasesDeferRequest $postBody, $optParams = array()) - { - $params = array('packageName' => $packageName, 'subscriptionId' => $subscriptionId, 'token' => $token, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('defer', array($params), "Google_Service_AndroidPublisher_SubscriptionPurchasesDeferResponse"); - } - /** - * Checks whether a user's subscription purchase is valid and returns its expiry - * time. (subscriptions.get) - * - * @param string $packageName The package name of the application for which this - * subscription was purchased (for example, 'com.some.thing'). - * @param string $subscriptionId The purchased subscription ID (for example, - * 'monthly001'). - * @param string $token The token provided to the user's device when the - * subscription was purchased. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidPublisher_SubscriptionPurchase - */ - public function get($packageName, $subscriptionId, $token, $optParams = array()) - { - $params = array('packageName' => $packageName, 'subscriptionId' => $subscriptionId, 'token' => $token); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AndroidPublisher_SubscriptionPurchase"); - } - /** - * Refunds a user's subscription purchase, but the subscription remains valid - * until its expiration time and it will continue to recur. - * (subscriptions.refund) - * - * @param string $packageName The package name of the application for which this - * subscription was purchased (for example, 'com.some.thing'). - * @param string $subscriptionId The purchased subscription ID (for example, - * 'monthly001'). - * @param string $token The token provided to the user's device when the - * subscription was purchased. - * @param array $optParams Optional parameters. - */ - public function refund($packageName, $subscriptionId, $token, $optParams = array()) - { - $params = array('packageName' => $packageName, 'subscriptionId' => $subscriptionId, 'token' => $token); - $params = array_merge($params, $optParams); - return $this->call('refund', array($params)); - } - /** - * Refunds and immediately revokes a user's subscription purchase. Access to the - * subscription will be terminated immediately and it will stop recurring. - * (subscriptions.revoke) - * - * @param string $packageName The package name of the application for which this - * subscription was purchased (for example, 'com.some.thing'). - * @param string $subscriptionId The purchased subscription ID (for example, - * 'monthly001'). - * @param string $token The token provided to the user's device when the - * subscription was purchased. - * @param array $optParams Optional parameters. - */ - public function revoke($packageName, $subscriptionId, $token, $optParams = array()) - { - $params = array('packageName' => $packageName, 'subscriptionId' => $subscriptionId, 'token' => $token); - $params = array_merge($params, $optParams); - return $this->call('revoke', array($params)); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/PurchasesVoidedpurchases.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/PurchasesVoidedpurchases.php deleted file mode 100644 index f5ff77d5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/PurchasesVoidedpurchases.php +++ /dev/null @@ -1,68 +0,0 @@ - - * $androidpublisherService = new Google_Service_AndroidPublisher(...); - * $voidedpurchases = $androidpublisherService->voidedpurchases; - * - */ -class Google_Service_AndroidPublisher_Resource_PurchasesVoidedpurchases extends Google_Service_Resource -{ - /** - * Lists the purchases that were canceled, refunded or charged-back. - * (voidedpurchases.listPurchasesVoidedpurchases) - * - * @param string $packageName The package name of the application for which - * voided purchases need to be returned (for example, 'com.some.thing'). - * @param array $optParams Optional parameters. - * - * @opt_param string endTime The time, in milliseconds since the Epoch, of the - * newest voided purchase that you want to see in the response. The value of - * this parameter cannot be greater than the current time and is ignored if a - * pagination token is set. Default value is current time. Note: This filter is - * applied on the time at which the record is seen as voided by our systems and - * not the actual voided time returned in the response. - * @opt_param string maxResults - * @opt_param string startIndex - * @opt_param string startTime The time, in milliseconds since the Epoch, of the - * oldest voided purchase that you want to see in the response. The value of - * this parameter cannot be older than 30 days and is ignored if a pagination - * token is set. Default value is current time minus 30 days. Note: This filter - * is applied on the time at which the record is seen as voided by our systems - * and not the actual voided time returned in the response. - * @opt_param string token - * @opt_param int type The type of voided purchases that you want to see in the - * response. Possible values are: - 0: Only voided in-app product purchases will - * be returned in the response. This is the default value. - 1: Both voided in- - * app purchases and voided subscription purchases will be returned in the - * response. Note: Before requesting to receive voided subscription purchases, - * you must switch to use orderId in the response which uniquely identifies one- - * time purchases and subscriptions. Otherwise, you will receive multiple - * subscription orders with the same PurchaseToken, because subscription renewal - * orders share the same PurchaseToken. - * @return Google_Service_AndroidPublisher_VoidedPurchasesListResponse - */ - public function listPurchasesVoidedpurchases($packageName, $optParams = array()) - { - $params = array('packageName' => $packageName); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AndroidPublisher_VoidedPurchasesListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/Reviews.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/Reviews.php deleted file mode 100644 index 12d2f61b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/Reviews.php +++ /dev/null @@ -1,81 +0,0 @@ - - * $androidpublisherService = new Google_Service_AndroidPublisher(...); - * $reviews = $androidpublisherService->reviews; - * - */ -class Google_Service_AndroidPublisher_Resource_Reviews extends Google_Service_Resource -{ - /** - * Returns a single review. (reviews.get) - * - * @param string $packageName Unique identifier for the Android app for which we - * want reviews; for example, "com.spiffygame". - * @param string $reviewId - * @param array $optParams Optional parameters. - * - * @opt_param string translationLanguage - * @return Google_Service_AndroidPublisher_Review - */ - public function get($packageName, $reviewId, $optParams = array()) - { - $params = array('packageName' => $packageName, 'reviewId' => $reviewId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AndroidPublisher_Review"); - } - /** - * Returns a list of reviews. Only reviews from last week will be returned. - * (reviews.listReviews) - * - * @param string $packageName Unique identifier for the Android app for which we - * want reviews; for example, "com.spiffygame". - * @param array $optParams Optional parameters. - * - * @opt_param string maxResults - * @opt_param string startIndex - * @opt_param string token - * @opt_param string translationLanguage - * @return Google_Service_AndroidPublisher_ReviewsListResponse - */ - public function listReviews($packageName, $optParams = array()) - { - $params = array('packageName' => $packageName); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AndroidPublisher_ReviewsListResponse"); - } - /** - * Reply to a single review, or update an existing reply. (reviews.reply) - * - * @param string $packageName Unique identifier for the Android app for which we - * want reviews; for example, "com.spiffygame". - * @param string $reviewId - * @param Google_Service_AndroidPublisher_ReviewsReplyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidPublisher_ReviewsReplyResponse - */ - public function reply($packageName, $reviewId, Google_Service_AndroidPublisher_ReviewsReplyRequest $postBody, $optParams = array()) - { - $params = array('packageName' => $packageName, 'reviewId' => $reviewId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('reply', array($params), "Google_Service_AndroidPublisher_ReviewsReplyResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/Systemapks.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/Systemapks.php deleted file mode 100644 index 3c42eb5f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/Systemapks.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $androidpublisherService = new Google_Service_AndroidPublisher(...); - * $systemapks = $androidpublisherService->systemapks; - * - */ -class Google_Service_AndroidPublisher_Resource_Systemapks extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/SystemapksVariants.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/SystemapksVariants.php deleted file mode 100644 index 1635e96c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Resource/SystemapksVariants.php +++ /dev/null @@ -1,93 +0,0 @@ - - * $androidpublisherService = new Google_Service_AndroidPublisher(...); - * $variants = $androidpublisherService->variants; - * - */ -class Google_Service_AndroidPublisher_Resource_SystemapksVariants extends Google_Service_Resource -{ - /** - * Creates a new variant of APK which is suitable for inclusion in a system - * image. (variants.create) - * - * @param string $packageName Unique identifier for the Android app; for - * example, "com.spiffygame". - * @param string $versionCode The version code of the App Bundle. - * @param Google_Service_AndroidPublisher_SystemApkVariantsCreateRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidPublisher_Variant - */ - public function create($packageName, $versionCode, Google_Service_AndroidPublisher_SystemApkVariantsCreateRequest $postBody, $optParams = array()) - { - $params = array('packageName' => $packageName, 'versionCode' => $versionCode, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_AndroidPublisher_Variant"); - } - /** - * Download a previously created APK which is suitable for inclusion in a system - * image. (variants.download) - * - * @param string $packageName Unique identifier for the Android app; for - * example, "com.spiffygame". - * @param string $versionCode The version code of the App Bundle. - * @param string $variantId - * @param array $optParams Optional parameters. - */ - public function download($packageName, $versionCode, $variantId, $optParams = array()) - { - $params = array('packageName' => $packageName, 'versionCode' => $versionCode, 'variantId' => $variantId); - $params = array_merge($params, $optParams); - return $this->call('download', array($params)); - } - /** - * Returns a previously created system APK variant. (variants.get) - * - * @param string $packageName Unique identifier for the Android app; for - * example, "com.spiffygame". - * @param string $versionCode The version code of the App Bundle. - * @param string $variantId Unique identifier for this variant. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidPublisher_Variant - */ - public function get($packageName, $versionCode, $variantId, $optParams = array()) - { - $params = array('packageName' => $packageName, 'versionCode' => $versionCode, 'variantId' => $variantId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AndroidPublisher_Variant"); - } - /** - * Returns the list of previously created system APK variants. - * (variants.listSystemapksVariants) - * - * @param string $packageName Unique identifier for the Android app; for - * example, "com.spiffygame". - * @param string $versionCode The version code of the App Bundle. - * @param array $optParams Optional parameters. - * @return Google_Service_AndroidPublisher_SystemApkVariantsListResponse - */ - public function listSystemapksVariants($packageName, $versionCode, $optParams = array()) - { - $params = array('packageName' => $packageName, 'versionCode' => $versionCode); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AndroidPublisher_SystemApkVariantsListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Review.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Review.php deleted file mode 100644 index 1d84e760..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Review.php +++ /dev/null @@ -1,56 +0,0 @@ -authorName = $authorName; - } - public function getAuthorName() - { - return $this->authorName; - } - /** - * @param Google_Service_AndroidPublisher_Comment - */ - public function setComments($comments) - { - $this->comments = $comments; - } - /** - * @return Google_Service_AndroidPublisher_Comment - */ - public function getComments() - { - return $this->comments; - } - public function setReviewId($reviewId) - { - $this->reviewId = $reviewId; - } - public function getReviewId() - { - return $this->reviewId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ReviewReplyResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ReviewReplyResult.php deleted file mode 100644 index a87ec579..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ReviewReplyResult.php +++ /dev/null @@ -1,46 +0,0 @@ -lastEdited = $lastEdited; - } - /** - * @return Google_Service_AndroidPublisher_Timestamp - */ - public function getLastEdited() - { - return $this->lastEdited; - } - public function setReplyText($replyText) - { - $this->replyText = $replyText; - } - public function getReplyText() - { - return $this->replyText; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ReviewsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ReviewsListResponse.php deleted file mode 100644 index e876fab2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ReviewsListResponse.php +++ /dev/null @@ -1,70 +0,0 @@ -pageInfo = $pageInfo; - } - /** - * @return Google_Service_AndroidPublisher_PageInfo - */ - public function getPageInfo() - { - return $this->pageInfo; - } - /** - * @param Google_Service_AndroidPublisher_Review - */ - public function setReviews($reviews) - { - $this->reviews = $reviews; - } - /** - * @return Google_Service_AndroidPublisher_Review - */ - public function getReviews() - { - return $this->reviews; - } - /** - * @param Google_Service_AndroidPublisher_TokenPagination - */ - public function setTokenPagination(Google_Service_AndroidPublisher_TokenPagination $tokenPagination) - { - $this->tokenPagination = $tokenPagination; - } - /** - * @return Google_Service_AndroidPublisher_TokenPagination - */ - public function getTokenPagination() - { - return $this->tokenPagination; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ReviewsReplyRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ReviewsReplyRequest.php deleted file mode 100644 index 53c80791..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ReviewsReplyRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -replyText = $replyText; - } - public function getReplyText() - { - return $this->replyText; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ReviewsReplyResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ReviewsReplyResponse.php deleted file mode 100644 index 14321cd0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/ReviewsReplyResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -result = $result; - } - /** - * @return Google_Service_AndroidPublisher_ReviewReplyResult - */ - public function getResult() - { - return $this->result; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Sampling.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Sampling.php deleted file mode 100644 index dd93aed3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Sampling.php +++ /dev/null @@ -1,56 +0,0 @@ -modRanges = $modRanges; - } - /** - * @return Google_Service_AndroidPublisher_ModRange - */ - public function getModRanges() - { - return $this->modRanges; - } - public function setModulus($modulus) - { - $this->modulus = $modulus; - } - public function getModulus() - { - return $this->modulus; - } - public function setSalt($salt) - { - $this->salt = $salt; - } - public function getSalt() - { - return $this->salt; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/SubscriptionCancelSurveyResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/SubscriptionCancelSurveyResult.php deleted file mode 100644 index 3e9c11e9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/SubscriptionCancelSurveyResult.php +++ /dev/null @@ -1,39 +0,0 @@ -cancelSurveyReason = $cancelSurveyReason; - } - public function getCancelSurveyReason() - { - return $this->cancelSurveyReason; - } - public function setUserInputCancelReason($userInputCancelReason) - { - $this->userInputCancelReason = $userInputCancelReason; - } - public function getUserInputCancelReason() - { - return $this->userInputCancelReason; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/SubscriptionDeferralInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/SubscriptionDeferralInfo.php deleted file mode 100644 index 1a1c9ae1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/SubscriptionDeferralInfo.php +++ /dev/null @@ -1,39 +0,0 @@ -desiredExpiryTimeMillis = $desiredExpiryTimeMillis; - } - public function getDesiredExpiryTimeMillis() - { - return $this->desiredExpiryTimeMillis; - } - public function setExpectedExpiryTimeMillis($expectedExpiryTimeMillis) - { - $this->expectedExpiryTimeMillis = $expectedExpiryTimeMillis; - } - public function getExpectedExpiryTimeMillis() - { - return $this->expectedExpiryTimeMillis; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/SubscriptionPriceChange.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/SubscriptionPriceChange.php deleted file mode 100644 index 90965d6b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/SubscriptionPriceChange.php +++ /dev/null @@ -1,46 +0,0 @@ -newPrice = $newPrice; - } - /** - * @return Google_Service_AndroidPublisher_Price - */ - public function getNewPrice() - { - return $this->newPrice; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/SubscriptionPurchase.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/SubscriptionPurchase.php deleted file mode 100644 index 4405192b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/SubscriptionPurchase.php +++ /dev/null @@ -1,285 +0,0 @@ -acknowledgementState = $acknowledgementState; - } - public function getAcknowledgementState() - { - return $this->acknowledgementState; - } - public function setAutoRenewing($autoRenewing) - { - $this->autoRenewing = $autoRenewing; - } - public function getAutoRenewing() - { - return $this->autoRenewing; - } - public function setAutoResumeTimeMillis($autoResumeTimeMillis) - { - $this->autoResumeTimeMillis = $autoResumeTimeMillis; - } - public function getAutoResumeTimeMillis() - { - return $this->autoResumeTimeMillis; - } - public function setCancelReason($cancelReason) - { - $this->cancelReason = $cancelReason; - } - public function getCancelReason() - { - return $this->cancelReason; - } - /** - * @param Google_Service_AndroidPublisher_SubscriptionCancelSurveyResult - */ - public function setCancelSurveyResult(Google_Service_AndroidPublisher_SubscriptionCancelSurveyResult $cancelSurveyResult) - { - $this->cancelSurveyResult = $cancelSurveyResult; - } - /** - * @return Google_Service_AndroidPublisher_SubscriptionCancelSurveyResult - */ - public function getCancelSurveyResult() - { - return $this->cancelSurveyResult; - } - public function setCountryCode($countryCode) - { - $this->countryCode = $countryCode; - } - public function getCountryCode() - { - return $this->countryCode; - } - public function setDeveloperPayload($developerPayload) - { - $this->developerPayload = $developerPayload; - } - public function getDeveloperPayload() - { - return $this->developerPayload; - } - public function setEmailAddress($emailAddress) - { - $this->emailAddress = $emailAddress; - } - public function getEmailAddress() - { - return $this->emailAddress; - } - public function setExpiryTimeMillis($expiryTimeMillis) - { - $this->expiryTimeMillis = $expiryTimeMillis; - } - public function getExpiryTimeMillis() - { - return $this->expiryTimeMillis; - } - public function setExternalAccountId($externalAccountId) - { - $this->externalAccountId = $externalAccountId; - } - public function getExternalAccountId() - { - return $this->externalAccountId; - } - public function setFamilyName($familyName) - { - $this->familyName = $familyName; - } - public function getFamilyName() - { - return $this->familyName; - } - public function setGivenName($givenName) - { - $this->givenName = $givenName; - } - public function getGivenName() - { - return $this->givenName; - } - /** - * @param Google_Service_AndroidPublisher_IntroductoryPriceInfo - */ - public function setIntroductoryPriceInfo(Google_Service_AndroidPublisher_IntroductoryPriceInfo $introductoryPriceInfo) - { - $this->introductoryPriceInfo = $introductoryPriceInfo; - } - /** - * @return Google_Service_AndroidPublisher_IntroductoryPriceInfo - */ - public function getIntroductoryPriceInfo() - { - return $this->introductoryPriceInfo; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLinkedPurchaseToken($linkedPurchaseToken) - { - $this->linkedPurchaseToken = $linkedPurchaseToken; - } - public function getLinkedPurchaseToken() - { - return $this->linkedPurchaseToken; - } - public function setOrderId($orderId) - { - $this->orderId = $orderId; - } - public function getOrderId() - { - return $this->orderId; - } - public function setPaymentState($paymentState) - { - $this->paymentState = $paymentState; - } - public function getPaymentState() - { - return $this->paymentState; - } - public function setPriceAmountMicros($priceAmountMicros) - { - $this->priceAmountMicros = $priceAmountMicros; - } - public function getPriceAmountMicros() - { - return $this->priceAmountMicros; - } - /** - * @param Google_Service_AndroidPublisher_SubscriptionPriceChange - */ - public function setPriceChange(Google_Service_AndroidPublisher_SubscriptionPriceChange $priceChange) - { - $this->priceChange = $priceChange; - } - /** - * @return Google_Service_AndroidPublisher_SubscriptionPriceChange - */ - public function getPriceChange() - { - return $this->priceChange; - } - public function setPriceCurrencyCode($priceCurrencyCode) - { - $this->priceCurrencyCode = $priceCurrencyCode; - } - public function getPriceCurrencyCode() - { - return $this->priceCurrencyCode; - } - public function setProfileId($profileId) - { - $this->profileId = $profileId; - } - public function getProfileId() - { - return $this->profileId; - } - public function setProfileName($profileName) - { - $this->profileName = $profileName; - } - public function getProfileName() - { - return $this->profileName; - } - public function setPromotionCode($promotionCode) - { - $this->promotionCode = $promotionCode; - } - public function getPromotionCode() - { - return $this->promotionCode; - } - public function setPromotionType($promotionType) - { - $this->promotionType = $promotionType; - } - public function getPromotionType() - { - return $this->promotionType; - } - public function setPurchaseType($purchaseType) - { - $this->purchaseType = $purchaseType; - } - public function getPurchaseType() - { - return $this->purchaseType; - } - public function setStartTimeMillis($startTimeMillis) - { - $this->startTimeMillis = $startTimeMillis; - } - public function getStartTimeMillis() - { - return $this->startTimeMillis; - } - public function setUserCancellationTimeMillis($userCancellationTimeMillis) - { - $this->userCancellationTimeMillis = $userCancellationTimeMillis; - } - public function getUserCancellationTimeMillis() - { - return $this->userCancellationTimeMillis; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/SubscriptionPurchasesAcknowledgeRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/SubscriptionPurchasesAcknowledgeRequest.php deleted file mode 100644 index 9bbc3863..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/SubscriptionPurchasesAcknowledgeRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -developerPayload = $developerPayload; - } - public function getDeveloperPayload() - { - return $this->developerPayload; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/SubscriptionPurchasesDeferRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/SubscriptionPurchasesDeferRequest.php deleted file mode 100644 index 4b7becdb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/SubscriptionPurchasesDeferRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -deferralInfo = $deferralInfo; - } - /** - * @return Google_Service_AndroidPublisher_SubscriptionDeferralInfo - */ - public function getDeferralInfo() - { - return $this->deferralInfo; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/SubscriptionPurchasesDeferResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/SubscriptionPurchasesDeferResponse.php deleted file mode 100644 index 0447d4d5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/SubscriptionPurchasesDeferResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -newExpiryTimeMillis = $newExpiryTimeMillis; - } - public function getNewExpiryTimeMillis() - { - return $this->newExpiryTimeMillis; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/SystemApkVariantsCreateRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/SystemApkVariantsCreateRequest.php deleted file mode 100644 index fccd4193..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/SystemApkVariantsCreateRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -deviceSpec = $deviceSpec; - } - /** - * @return Google_Service_AndroidPublisher_DeviceSpec - */ - public function getDeviceSpec() - { - return $this->deviceSpec; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/SystemApkVariantsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/SystemApkVariantsListResponse.php deleted file mode 100644 index b3bf1f00..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/SystemApkVariantsListResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -variants = $variants; - } - /** - * @return Google_Service_AndroidPublisher_Variant - */ - public function getVariants() - { - return $this->variants; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Testers.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Testers.php deleted file mode 100644 index 4de42c88..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Testers.php +++ /dev/null @@ -1,31 +0,0 @@ -googleGroups = $googleGroups; - } - public function getGoogleGroups() - { - return $this->googleGroups; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Timestamp.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Timestamp.php deleted file mode 100644 index ce389579..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Timestamp.php +++ /dev/null @@ -1,39 +0,0 @@ -nanos = $nanos; - } - public function getNanos() - { - return $this->nanos; - } - public function setSeconds($seconds) - { - $this->seconds = $seconds; - } - public function getSeconds() - { - return $this->seconds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/TokenPagination.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/TokenPagination.php deleted file mode 100644 index 30b0a898..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/TokenPagination.php +++ /dev/null @@ -1,39 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setPreviousPageToken($previousPageToken) - { - $this->previousPageToken = $previousPageToken; - } - public function getPreviousPageToken() - { - return $this->previousPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Track.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Track.php deleted file mode 100644 index 6b70a139..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Track.php +++ /dev/null @@ -1,47 +0,0 @@ -releases = $releases; - } - /** - * @return Google_Service_AndroidPublisher_TrackRelease - */ - public function getReleases() - { - return $this->releases; - } - public function setTrack($track) - { - $this->track = $track; - } - public function getTrack() - { - return $this->track; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/TrackRelease.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/TrackRelease.php deleted file mode 100644 index 680d8c1a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/TrackRelease.php +++ /dev/null @@ -1,131 +0,0 @@ -controls = $controls; - } - /** - * @return Google_Service_AndroidPublisher_Control - */ - public function getControls() - { - return $this->controls; - } - /** - * @param Google_Service_AndroidPublisher_CountryTargeting - */ - public function setCountryTargeting(Google_Service_AndroidPublisher_CountryTargeting $countryTargeting) - { - $this->countryTargeting = $countryTargeting; - } - /** - * @return Google_Service_AndroidPublisher_CountryTargeting - */ - public function getCountryTargeting() - { - return $this->countryTargeting; - } - public function setInAppUpdatePriority($inAppUpdatePriority) - { - $this->inAppUpdatePriority = $inAppUpdatePriority; - } - public function getInAppUpdatePriority() - { - return $this->inAppUpdatePriority; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_AndroidPublisher_LocalizedText - */ - public function setReleaseNotes($releaseNotes) - { - $this->releaseNotes = $releaseNotes; - } - /** - * @return Google_Service_AndroidPublisher_LocalizedText - */ - public function getReleaseNotes() - { - return $this->releaseNotes; - } - /** - * @param Google_Service_AndroidPublisher_Sampling - */ - public function setSampling(Google_Service_AndroidPublisher_Sampling $sampling) - { - $this->sampling = $sampling; - } - /** - * @return Google_Service_AndroidPublisher_Sampling - */ - public function getSampling() - { - return $this->sampling; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setUserFraction($userFraction) - { - $this->userFraction = $userFraction; - } - public function getUserFraction() - { - return $this->userFraction; - } - public function setVersionCodes($versionCodes) - { - $this->versionCodes = $versionCodes; - } - public function getVersionCodes() - { - return $this->versionCodes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/TracksListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/TracksListResponse.php deleted file mode 100644 index cbbe5e7e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/TracksListResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_AndroidPublisher_Track - */ - public function setTracks($tracks) - { - $this->tracks = $tracks; - } - /** - * @return Google_Service_AndroidPublisher_Track - */ - public function getTracks() - { - return $this->tracks; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/UserComment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/UserComment.php deleted file mode 100644 index 08c7d7e0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/UserComment.php +++ /dev/null @@ -1,143 +0,0 @@ -androidOsVersion = $androidOsVersion; - } - public function getAndroidOsVersion() - { - return $this->androidOsVersion; - } - public function setAppVersionCode($appVersionCode) - { - $this->appVersionCode = $appVersionCode; - } - public function getAppVersionCode() - { - return $this->appVersionCode; - } - public function setAppVersionName($appVersionName) - { - $this->appVersionName = $appVersionName; - } - public function getAppVersionName() - { - return $this->appVersionName; - } - public function setDevice($device) - { - $this->device = $device; - } - public function getDevice() - { - return $this->device; - } - /** - * @param Google_Service_AndroidPublisher_DeviceMetadata - */ - public function setDeviceMetadata(Google_Service_AndroidPublisher_DeviceMetadata $deviceMetadata) - { - $this->deviceMetadata = $deviceMetadata; - } - /** - * @return Google_Service_AndroidPublisher_DeviceMetadata - */ - public function getDeviceMetadata() - { - return $this->deviceMetadata; - } - /** - * @param Google_Service_AndroidPublisher_Timestamp - */ - public function setLastModified(Google_Service_AndroidPublisher_Timestamp $lastModified) - { - $this->lastModified = $lastModified; - } - /** - * @return Google_Service_AndroidPublisher_Timestamp - */ - public function getLastModified() - { - return $this->lastModified; - } - public function setOriginalText($originalText) - { - $this->originalText = $originalText; - } - public function getOriginalText() - { - return $this->originalText; - } - public function setReviewerLanguage($reviewerLanguage) - { - $this->reviewerLanguage = $reviewerLanguage; - } - public function getReviewerLanguage() - { - return $this->reviewerLanguage; - } - public function setStarRating($starRating) - { - $this->starRating = $starRating; - } - public function getStarRating() - { - return $this->starRating; - } - public function setText($text) - { - $this->text = $text; - } - public function getText() - { - return $this->text; - } - public function setThumbsDownCount($thumbsDownCount) - { - $this->thumbsDownCount = $thumbsDownCount; - } - public function getThumbsDownCount() - { - return $this->thumbsDownCount; - } - public function setThumbsUpCount($thumbsUpCount) - { - $this->thumbsUpCount = $thumbsUpCount; - } - public function getThumbsUpCount() - { - return $this->thumbsUpCount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Variant.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Variant.php deleted file mode 100644 index 08bc748f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/Variant.php +++ /dev/null @@ -1,46 +0,0 @@ -deviceSpec = $deviceSpec; - } - /** - * @return Google_Service_AndroidPublisher_DeviceSpec - */ - public function getDeviceSpec() - { - return $this->deviceSpec; - } - public function setVariantId($variantId) - { - $this->variantId = $variantId; - } - public function getVariantId() - { - return $this->variantId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/VoidedPurchase.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/VoidedPurchase.php deleted file mode 100644 index 35bc51b1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/VoidedPurchase.php +++ /dev/null @@ -1,84 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setOrderId($orderId) - { - $this->orderId = $orderId; - } - public function getOrderId() - { - return $this->orderId; - } - public function setPurchaseTimeMillis($purchaseTimeMillis) - { - $this->purchaseTimeMillis = $purchaseTimeMillis; - } - public function getPurchaseTimeMillis() - { - return $this->purchaseTimeMillis; - } - public function setPurchaseToken($purchaseToken) - { - $this->purchaseToken = $purchaseToken; - } - public function getPurchaseToken() - { - return $this->purchaseToken; - } - public function setVoidedReason($voidedReason) - { - $this->voidedReason = $voidedReason; - } - public function getVoidedReason() - { - return $this->voidedReason; - } - public function setVoidedSource($voidedSource) - { - $this->voidedSource = $voidedSource; - } - public function getVoidedSource() - { - return $this->voidedSource; - } - public function setVoidedTimeMillis($voidedTimeMillis) - { - $this->voidedTimeMillis = $voidedTimeMillis; - } - public function getVoidedTimeMillis() - { - return $this->voidedTimeMillis; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/VoidedPurchasesListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/VoidedPurchasesListResponse.php deleted file mode 100644 index cd24a18e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AndroidPublisher/VoidedPurchasesListResponse.php +++ /dev/null @@ -1,70 +0,0 @@ -pageInfo = $pageInfo; - } - /** - * @return Google_Service_AndroidPublisher_PageInfo - */ - public function getPageInfo() - { - return $this->pageInfo; - } - /** - * @param Google_Service_AndroidPublisher_TokenPagination - */ - public function setTokenPagination(Google_Service_AndroidPublisher_TokenPagination $tokenPagination) - { - $this->tokenPagination = $tokenPagination; - } - /** - * @return Google_Service_AndroidPublisher_TokenPagination - */ - public function getTokenPagination() - { - return $this->tokenPagination; - } - /** - * @param Google_Service_AndroidPublisher_VoidedPurchase - */ - public function setVoidedPurchases($voidedPurchases) - { - $this->voidedPurchases = $voidedPurchases; - } - /** - * @return Google_Service_AndroidPublisher_VoidedPurchase - */ - public function getVoidedPurchases() - { - return $this->voidedPurchases; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee.php deleted file mode 100644 index ec264b02..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee.php +++ /dev/null @@ -1,2796 +0,0 @@ - - * The Apigee API lets you programmatically manage Apigee Hybrid with a set of - * RESTful operations, including: Create, edit, and delete API proxies Manage - * users Deploy and undeploy proxy revisions Configure environmentsFor - * information on using the APIs described in this section, see Get started - * using the APIs.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Apigee extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - - public $hybrid_issuers; - public $organizations; - public $organizations_apiproducts; - public $organizations_apiproducts_attributes; - public $organizations_apis; - public $organizations_apis_deployments; - public $organizations_apis_keyvaluemaps; - public $organizations_apis_revisions; - public $organizations_apis_revisions_deployments; - public $organizations_apps; - public $organizations_companies; - public $organizations_companies_apps; - public $organizations_companies_apps_keys; - public $organizations_deployments; - public $organizations_developers; - public $organizations_developers_apps; - public $organizations_developers_apps_attributes; - public $organizations_developers_apps_keys; - public $organizations_developers_apps_keys_apiproducts; - public $organizations_developers_apps_keys_create; - public $organizations_developers_attributes; - public $organizations_environments; - public $organizations_environments_analytics_admin; - public $organizations_environments_apis_deployments; - public $organizations_environments_apis_revisions; - public $organizations_environments_apis_revisions_debugsessions; - public $organizations_environments_apis_revisions_debugsessions_data; - public $organizations_environments_caches; - public $organizations_environments_deployments; - public $organizations_environments_flowhooks; - public $organizations_environments_keystores; - public $organizations_environments_keystores_aliases; - public $organizations_environments_keyvaluemaps; - public $organizations_environments_optimizedStats; - public $organizations_environments_queries; - public $organizations_environments_references; - public $organizations_environments_resourcefiles; - public $organizations_environments_sharedflows_deployments; - public $organizations_environments_sharedflows_revisions; - public $organizations_environments_stats; - public $organizations_environments_targetservers; - public $organizations_keyvaluemaps; - public $organizations_operations; - public $organizations_reports; - public $organizations_sharedflows; - public $organizations_sharedflows_deployments; - public $organizations_sharedflows_revisions; - public $organizations_sharedflows_revisions_deployments; - - /** - * Constructs the internal representation of the Apigee service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://apigee.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'apigee'; - - $this->hybrid_issuers = new Google_Service_Apigee_Resource_HybridIssuers( - $this, - $this->serviceName, - 'issuers', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->organizations = new Google_Service_Apigee_Resource_Organizations( - $this, - $this->serviceName, - 'organizations', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/organizations', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getSyncAuthorization' => array( - 'path' => 'v1/{+name}:getSyncAuthorization', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setSyncAuthorization' => array( - 'path' => 'v1/{+name}:setSyncAuthorization', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'updateOrganization' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->organizations_apiproducts = new Google_Service_Apigee_Resource_OrganizationsApiproducts( - $this, - $this->serviceName, - 'apiproducts', - array( - 'methods' => array( - 'attributes' => array( - 'path' => 'v1/{+name}/attributes', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'create' => array( - 'path' => 'v1/{+parent}/apiproducts', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'query' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'entity' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/apiproducts', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'attributename' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'count' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'startKey' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'expand' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'attributevalue' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->organizations_apiproducts_attributes = new Google_Service_Apigee_Resource_OrganizationsApiproductsAttributes( - $this, - $this->serviceName, - 'attributes', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/attributes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'updateApiProductAttribute' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->organizations_apis = new Google_Service_Apigee_Resource_OrganizationsApis( - $this, - $this->serviceName, - 'apis', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/apis', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'name' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'action' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'validate' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/apis', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'includeRevisions' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'includeMetaData' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ), - ) - ) - ); - $this->organizations_apis_deployments = new Google_Service_Apigee_Resource_OrganizationsApisDeployments( - $this, - $this->serviceName, - 'deployments', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1/{+parent}/deployments', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->organizations_apis_keyvaluemaps = new Google_Service_Apigee_Resource_OrganizationsApisKeyvaluemaps( - $this, - $this->serviceName, - 'keyvaluemaps', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/keyvaluemaps', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/keyvaluemaps', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->organizations_apis_revisions = new Google_Service_Apigee_Resource_OrganizationsApisRevisions( - $this, - $this->serviceName, - 'revisions', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'format' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/revisions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'updateApiProxyRevision' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'validate' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ), - ) - ) - ); - $this->organizations_apis_revisions_deployments = new Google_Service_Apigee_Resource_OrganizationsApisRevisionsDeployments( - $this, - $this->serviceName, - 'deployments', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1/{+parent}/deployments', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->organizations_apps = new Google_Service_Apigee_Resource_OrganizationsApps( - $this, - $this->serviceName, - 'apps', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/apps', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'apptype' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'expand' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'keyStatus' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ids' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'includeCred' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'rows' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'apiProduct' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'startKey' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'status' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->organizations_companies = new Google_Service_Apigee_Resource_OrganizationsCompanies( - $this, - $this->serviceName, - 'companies', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/companies', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/companies', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'includeDevelopers' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'startKey' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'count' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'expand' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'update' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'action' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->organizations_companies_apps = new Google_Service_Apigee_Resource_OrganizationsCompaniesApps( - $this, - $this->serviceName, - 'apps', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/apps', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/apps', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'count' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'expand' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'startKey' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->organizations_companies_apps_keys = new Google_Service_Apigee_Resource_OrganizationsCompaniesAppsKeys( - $this, - $this->serviceName, - 'keys', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'updateCompanyAppKey' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'action' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->organizations_deployments = new Google_Service_Apigee_Resource_OrganizationsDeployments( - $this, - $this->serviceName, - 'deployments', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1/{+parent}/deployments', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sharedFlows' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ), - ) - ) - ); - $this->organizations_developers = new Google_Service_Apigee_Resource_OrganizationsDevelopers( - $this, - $this->serviceName, - 'developers', - array( - 'methods' => array( - 'attributes' => array( - 'path' => 'v1/{+parent}/attributes', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'create' => array( - 'path' => 'v1/{+parent}/developers', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'action' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/developers', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'startKey' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'expand' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'ids' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'includeCompany' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'count' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setDeveloperStatus' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'action' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->organizations_developers_apps = new Google_Service_Apigee_Resource_OrganizationsDevelopersApps( - $this, - $this->serviceName, - 'apps', - array( - 'methods' => array( - 'attributes' => array( - 'path' => 'v1/{+name}/attributes', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'create' => array( - 'path' => 'v1/{+parent}/apps', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'generateKeyPairOrUpdateDeveloperAppStatus' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'action' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'query' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'entity' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/apps', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'shallowExpand' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'startKey' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'count' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'expand' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'update' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->organizations_developers_apps_attributes = new Google_Service_Apigee_Resource_OrganizationsDevelopersAppsAttributes( - $this, - $this->serviceName, - 'attributes', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/attributes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'updateDeveloperAppAttribute' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->organizations_developers_apps_keys = new Google_Service_Apigee_Resource_OrganizationsDevelopersAppsKeys( - $this, - $this->serviceName, - 'keys', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/keys', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'replaceDeveloperAppKey' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'updateDeveloperAppKey' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'action' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->organizations_developers_apps_keys_apiproducts = new Google_Service_Apigee_Resource_OrganizationsDevelopersAppsKeysApiproducts( - $this, - $this->serviceName, - 'apiproducts', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'updateDeveloperAppKeyApiProduct' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'action' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->organizations_developers_apps_keys_create = new Google_Service_Apigee_Resource_OrganizationsDevelopersAppsKeysCreate( - $this, - $this->serviceName, - 'create', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/keys/create', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->organizations_developers_attributes = new Google_Service_Apigee_Resource_OrganizationsDevelopersAttributes( - $this, - $this->serviceName, - 'attributes', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/attributes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'updateDeveloperAttribute' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->organizations_environments = new Google_Service_Apigee_Resource_OrganizationsEnvironments( - $this, - $this->serviceName, - 'environments', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/environments', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'name' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getDatalocation' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'repo' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'contentType' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'relativeFilePath' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'dataset' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'getDebugmask' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getDeployedConfig' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getIamPolicy' => array( - 'path' => 'v1/{+resource}:getIamPolicy', - 'httpMethod' => 'GET', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'options.requestedPolicyVersion' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/environments', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setIamPolicy' => array( - 'path' => 'v1/{+resource}:setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'subscribe' => array( - 'path' => 'v1/{+parent}:subscribe', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => 'v1/{+resource}:testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'unsubscribe' => array( - 'path' => 'v1/{+parent}:unsubscribe', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'updateDebugmask' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'replaceRepeatedFields' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'updateEnvironment' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->organizations_environments_analytics_admin = new Google_Service_Apigee_Resource_OrganizationsEnvironmentsAnalyticsAdmin( - $this, - $this->serviceName, - 'admin', - array( - 'methods' => array( - 'getSchemav2' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'type' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->organizations_environments_apis_deployments = new Google_Service_Apigee_Resource_OrganizationsEnvironmentsApisDeployments( - $this, - $this->serviceName, - 'deployments', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1/{+parent}/deployments', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->organizations_environments_apis_revisions = new Google_Service_Apigee_Resource_OrganizationsEnvironmentsApisRevisions( - $this, - $this->serviceName, - 'revisions', - array( - 'methods' => array( - 'deployments' => array( - 'path' => 'v1/{+name}/deployments', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getDeployments' => array( - 'path' => 'v1/{+name}/deployments', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->organizations_environments_apis_revisions_debugsessions = new Google_Service_Apigee_Resource_OrganizationsEnvironmentsApisRevisionsDebugsessions( - $this, - $this->serviceName, - 'debugsessions', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/debugsessions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'timeout' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'deleteData' => array( - 'path' => 'v1/{+name}/data', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/debugsessions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->organizations_environments_apis_revisions_debugsessions_data = new Google_Service_Apigee_Resource_OrganizationsEnvironmentsApisRevisionsDebugsessionsData( - $this, - $this->serviceName, - 'data', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/data', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'limit' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->organizations_environments_caches = new Google_Service_Apigee_Resource_OrganizationsEnvironmentsCaches( - $this, - $this->serviceName, - 'caches', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/caches', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->organizations_environments_deployments = new Google_Service_Apigee_Resource_OrganizationsEnvironmentsDeployments( - $this, - $this->serviceName, - 'deployments', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1/{+parent}/deployments', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sharedFlows' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ), - ) - ) - ); - $this->organizations_environments_flowhooks = new Google_Service_Apigee_Resource_OrganizationsEnvironmentsFlowhooks( - $this, - $this->serviceName, - 'flowhooks', - array( - 'methods' => array( - 'attachSharedFlowToFlowHook' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'detachSharedFlowFromFlowHook' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/flowhooks', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->organizations_environments_keystores = new Google_Service_Apigee_Resource_OrganizationsEnvironmentsKeystores( - $this, - $this->serviceName, - 'keystores', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/keystores', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'name' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/keystores', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->organizations_environments_keystores_aliases = new Google_Service_Apigee_Resource_OrganizationsEnvironmentsKeystoresAliases( - $this, - $this->serviceName, - 'aliases', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/aliases', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'ignoreNewlineValidation' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'ignoreExpiryValidation' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'alias' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'format' => array( - 'location' => 'query', - 'type' => 'string', - ), - '_password' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'csr' => array( - 'path' => 'v1/{+name}/csr', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getCertificate' => array( - 'path' => 'v1/{+name}/certificate', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/aliases', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'ignoreExpiryValidation' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'ignoreNewlineValidation' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ), - ) - ) - ); - $this->organizations_environments_keyvaluemaps = new Google_Service_Apigee_Resource_OrganizationsEnvironmentsKeyvaluemaps( - $this, - $this->serviceName, - 'keyvaluemaps', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/keyvaluemaps', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/keyvaluemaps', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->organizations_environments_optimizedStats = new Google_Service_Apigee_Resource_OrganizationsEnvironmentsOptimizedStats( - $this, - $this->serviceName, - 'optimizedStats', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sort' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'topk' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'tsAscending' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'timeRange' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'select' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'limit' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'offset' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'accuracy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sonar' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'realtime' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'tzo' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortby' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'aggTable' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'timeUnit' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->organizations_environments_queries = new Google_Service_Apigee_Resource_OrganizationsEnvironmentsQueries( - $this, - $this->serviceName, - 'queries', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/queries', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getResult' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getResultView' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/queries', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'to' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'status' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'dataset' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'submittedBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'from' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'inclQueriesWithoutReport' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->organizations_environments_references = new Google_Service_Apigee_Resource_OrganizationsEnvironmentsReferences( - $this, - $this->serviceName, - 'references', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/references', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/references', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->organizations_environments_resourcefiles = new Google_Service_Apigee_Resource_OrganizationsEnvironmentsResourcefiles( - $this, - $this->serviceName, - 'resourcefiles', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/resourcefiles', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'type' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'name' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => 'v1/{+parent}/resourcefiles/{type}/{resourceFileId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'type' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resourceFileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+parent}/resourcefiles/{type}/{resourceFileId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'type' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resourceFileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/resourcefiles', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'type' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'listEnvironmentResources' => array( - 'path' => 'v1/{+parent}/resourcefiles/{type}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'type' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'v1/{+parent}/resourcefiles/{type}/{resourceFileId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'type' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resourceFileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->organizations_environments_sharedflows_deployments = new Google_Service_Apigee_Resource_OrganizationsEnvironmentsSharedflowsDeployments( - $this, - $this->serviceName, - 'deployments', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1/{+parent}/deployments', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->organizations_environments_sharedflows_revisions = new Google_Service_Apigee_Resource_OrganizationsEnvironmentsSharedflowsRevisions( - $this, - $this->serviceName, - 'revisions', - array( - 'methods' => array( - 'deployments' => array( - 'path' => 'v1/{+name}/deployments', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getDeployments' => array( - 'path' => 'v1/{+name}/deployments', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->organizations_environments_stats = new Google_Service_Apigee_Resource_OrganizationsEnvironmentsStats( - $this, - $this->serviceName, - 'stats', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sort' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'topk' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'tsAscending' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'timeRange' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'select' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'limit' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'offset' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'accuracy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sonar' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'realtime' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'tzo' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortby' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'timeUnit' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'aggTable' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->organizations_environments_targetservers = new Google_Service_Apigee_Resource_OrganizationsEnvironmentsTargetservers( - $this, - $this->serviceName, - 'targetservers', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/targetservers', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'name' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/targetservers', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->organizations_keyvaluemaps = new Google_Service_Apigee_Resource_OrganizationsKeyvaluemaps( - $this, - $this->serviceName, - 'keyvaluemaps', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/keyvaluemaps', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/keyvaluemaps', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->organizations_operations = new Google_Service_Apigee_Resource_OrganizationsOperations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'cancel' => array( - 'path' => 'v1/{+name}:cancel', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+name}/operations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->organizations_reports = new Google_Service_Apigee_Resource_OrganizationsReports( - $this, - $this->serviceName, - 'reports', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/reports', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/reports', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'expand' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'update' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->organizations_sharedflows = new Google_Service_Apigee_Resource_OrganizationsSharedflows( - $this, - $this->serviceName, - 'sharedflows', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/sharedflows', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'action' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'name' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/sharedflows', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'includeRevisions' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'includeMetaData' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ), - ) - ) - ); - $this->organizations_sharedflows_deployments = new Google_Service_Apigee_Resource_OrganizationsSharedflowsDeployments( - $this, - $this->serviceName, - 'deployments', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1/{+parent}/deployments', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->organizations_sharedflows_revisions = new Google_Service_Apigee_Resource_OrganizationsSharedflowsRevisions( - $this, - $this->serviceName, - 'revisions', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'format' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/revisions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'updateSharedFlowRevision' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'validate' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ), - ) - ) - ); - $this->organizations_sharedflows_revisions_deployments = new Google_Service_Apigee_Resource_OrganizationsSharedflowsRevisionsDeployments( - $this, - $this->serviceName, - 'deployments', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1/{+parent}/deployments', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleApiHttpBody.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleApiHttpBody.php deleted file mode 100644 index a86a7dc4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleApiHttpBody.php +++ /dev/null @@ -1,49 +0,0 @@ -contentType = $contentType; - } - public function getContentType() - { - return $this->contentType; - } - public function setData($data) - { - $this->data = $data; - } - public function getData() - { - return $this->data; - } - public function setExtensions($extensions) - { - $this->extensions = $extensions; - } - public function getExtensions() - { - return $this->extensions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Access.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Access.php deleted file mode 100644 index 349f791e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Access.php +++ /dev/null @@ -1,74 +0,0 @@ - "Get", - "remove" => "Remove", - "set" => "Set", - ); - protected $getType = 'Google_Service_Apigee_GoogleCloudApigeeV1AccessGet'; - protected $getDataType = ''; - protected $removeType = 'Google_Service_Apigee_GoogleCloudApigeeV1AccessRemove'; - protected $removeDataType = ''; - protected $setType = 'Google_Service_Apigee_GoogleCloudApigeeV1AccessSet'; - protected $setDataType = ''; - - /** - * @param Google_Service_Apigee_GoogleCloudApigeeV1AccessGet - */ - public function setGet(Google_Service_Apigee_GoogleCloudApigeeV1AccessGet $get) - { - $this->get = $get; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1AccessGet - */ - public function getGet() - { - return $this->get; - } - /** - * @param Google_Service_Apigee_GoogleCloudApigeeV1AccessRemove - */ - public function setRemove(Google_Service_Apigee_GoogleCloudApigeeV1AccessRemove $remove) - { - $this->remove = $remove; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1AccessRemove - */ - public function getRemove() - { - return $this->remove; - } - /** - * @param Google_Service_Apigee_GoogleCloudApigeeV1AccessSet - */ - public function setSet(Google_Service_Apigee_GoogleCloudApigeeV1AccessSet $set) - { - $this->set = $set; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1AccessSet - */ - public function getSet() - { - return $this->set; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1AccessGet.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1AccessGet.php deleted file mode 100644 index 29633e2d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1AccessGet.php +++ /dev/null @@ -1,39 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1AccessRemove.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1AccessRemove.php deleted file mode 100644 index 6bdb2888..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1AccessRemove.php +++ /dev/null @@ -1,39 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setSuccess($success) - { - $this->success = $success; - } - public function getSuccess() - { - return $this->success; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1AccessSet.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1AccessSet.php deleted file mode 100644 index 0da2236e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1AccessSet.php +++ /dev/null @@ -1,48 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setSuccess($success) - { - $this->success = $success; - } - public function getSuccess() - { - return $this->success; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Alias.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Alias.php deleted file mode 100644 index fc250b3c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Alias.php +++ /dev/null @@ -1,55 +0,0 @@ -alias = $alias; - } - public function getAlias() - { - return $this->alias; - } - /** - * @param Google_Service_Apigee_GoogleCloudApigeeV1Certificate - */ - public function setCertsInfo(Google_Service_Apigee_GoogleCloudApigeeV1Certificate $certsInfo) - { - $this->certsInfo = $certsInfo; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1Certificate - */ - public function getCertsInfo() - { - return $this->certsInfo; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1AliasRevisionConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1AliasRevisionConfig.php deleted file mode 100644 index eda78494..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1AliasRevisionConfig.php +++ /dev/null @@ -1,48 +0,0 @@ -location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ApiProduct.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ApiProduct.php deleted file mode 100644 index 70acbd43..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ApiProduct.php +++ /dev/null @@ -1,155 +0,0 @@ -apiResources = $apiResources; - } - public function getApiResources() - { - return $this->apiResources; - } - public function setApprovalType($approvalType) - { - $this->approvalType = $approvalType; - } - public function getApprovalType() - { - return $this->approvalType; - } - /** - * @param Google_Service_Apigee_GoogleCloudApigeeV1Attribute - */ - public function setAttributes($attributes) - { - $this->attributes = $attributes; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1Attribute - */ - public function getAttributes() - { - return $this->attributes; - } - public function setCreatedAt($createdAt) - { - $this->createdAt = $createdAt; - } - public function getCreatedAt() - { - return $this->createdAt; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setEnvironments($environments) - { - $this->environments = $environments; - } - public function getEnvironments() - { - return $this->environments; - } - public function setLastModifiedAt($lastModifiedAt) - { - $this->lastModifiedAt = $lastModifiedAt; - } - public function getLastModifiedAt() - { - return $this->lastModifiedAt; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setProxies($proxies) - { - $this->proxies = $proxies; - } - public function getProxies() - { - return $this->proxies; - } - public function setQuota($quota) - { - $this->quota = $quota; - } - public function getQuota() - { - return $this->quota; - } - public function setQuotaInterval($quotaInterval) - { - $this->quotaInterval = $quotaInterval; - } - public function getQuotaInterval() - { - return $this->quotaInterval; - } - public function setQuotaTimeUnit($quotaTimeUnit) - { - $this->quotaTimeUnit = $quotaTimeUnit; - } - public function getQuotaTimeUnit() - { - return $this->quotaTimeUnit; - } - public function setScopes($scopes) - { - $this->scopes = $scopes; - } - public function getScopes() - { - return $this->scopes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ApiProductRef.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ApiProductRef.php deleted file mode 100644 index a3d93c89..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ApiProductRef.php +++ /dev/null @@ -1,39 +0,0 @@ -apiproduct = $apiproduct; - } - public function getApiproduct() - { - return $this->apiproduct; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ApiProxy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ApiProxy.php deleted file mode 100644 index 1a02a6ea..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ApiProxy.php +++ /dev/null @@ -1,65 +0,0 @@ -latestRevisionId = $latestRevisionId; - } - public function getLatestRevisionId() - { - return $this->latestRevisionId; - } - /** - * @param Google_Service_Apigee_GoogleCloudApigeeV1EntityMetadata - */ - public function setMetaData(Google_Service_Apigee_GoogleCloudApigeeV1EntityMetadata $metaData) - { - $this->metaData = $metaData; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1EntityMetadata - */ - public function getMetaData() - { - return $this->metaData; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setRevision($revision) - { - $this->revision = $revision; - } - public function getRevision() - { - return $this->revision; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ApiProxyRevision.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ApiProxyRevision.php deleted file mode 100644 index 7fb1bf71..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ApiProxyRevision.php +++ /dev/null @@ -1,234 +0,0 @@ -basepaths = $basepaths; - } - public function getBasepaths() - { - return $this->basepaths; - } - /** - * @param Google_Service_Apigee_GoogleCloudApigeeV1ConfigVersion - */ - public function setConfigurationVersion(Google_Service_Apigee_GoogleCloudApigeeV1ConfigVersion $configurationVersion) - { - $this->configurationVersion = $configurationVersion; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1ConfigVersion - */ - public function getConfigurationVersion() - { - return $this->configurationVersion; - } - public function setContextInfo($contextInfo) - { - $this->contextInfo = $contextInfo; - } - public function getContextInfo() - { - return $this->contextInfo; - } - public function setCreatedAt($createdAt) - { - $this->createdAt = $createdAt; - } - public function getCreatedAt() - { - return $this->createdAt; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setEntityMetaDataAsProperties($entityMetaDataAsProperties) - { - $this->entityMetaDataAsProperties = $entityMetaDataAsProperties; - } - public function getEntityMetaDataAsProperties() - { - return $this->entityMetaDataAsProperties; - } - public function setLastModifiedAt($lastModifiedAt) - { - $this->lastModifiedAt = $lastModifiedAt; - } - public function getLastModifiedAt() - { - return $this->lastModifiedAt; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPolicies($policies) - { - $this->policies = $policies; - } - public function getPolicies() - { - return $this->policies; - } - public function setProxies($proxies) - { - $this->proxies = $proxies; - } - public function getProxies() - { - return $this->proxies; - } - public function setProxyEndpoints($proxyEndpoints) - { - $this->proxyEndpoints = $proxyEndpoints; - } - public function getProxyEndpoints() - { - return $this->proxyEndpoints; - } - /** - * @param Google_Service_Apigee_GoogleCloudApigeeV1ResourceFiles - */ - public function setResourceFiles(Google_Service_Apigee_GoogleCloudApigeeV1ResourceFiles $resourceFiles) - { - $this->resourceFiles = $resourceFiles; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1ResourceFiles - */ - public function getResourceFiles() - { - return $this->resourceFiles; - } - public function setResources($resources) - { - $this->resources = $resources; - } - public function getResources() - { - return $this->resources; - } - public function setRevision($revision) - { - $this->revision = $revision; - } - public function getRevision() - { - return $this->revision; - } - public function setSharedFlows($sharedFlows) - { - $this->sharedFlows = $sharedFlows; - } - public function getSharedFlows() - { - return $this->sharedFlows; - } - public function setSpec($spec) - { - $this->spec = $spec; - } - public function getSpec() - { - return $this->spec; - } - public function setTargetEndpoints($targetEndpoints) - { - $this->targetEndpoints = $targetEndpoints; - } - public function getTargetEndpoints() - { - return $this->targetEndpoints; - } - public function setTargetServers($targetServers) - { - $this->targetServers = $targetServers; - } - public function getTargetServers() - { - return $this->targetServers; - } - public function setTargets($targets) - { - $this->targets = $targets; - } - public function getTargets() - { - return $this->targets; - } - public function setTeams($teams) - { - $this->teams = $teams; - } - public function getTeams() - { - return $this->teams; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1App.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1App.php deleted file mode 100644 index 20e6afe9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1App.php +++ /dev/null @@ -1,160 +0,0 @@ -apiProducts = $apiProducts; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1ApiProductRef - */ - public function getApiProducts() - { - return $this->apiProducts; - } - public function setAppId($appId) - { - $this->appId = $appId; - } - public function getAppId() - { - return $this->appId; - } - /** - * @param Google_Service_Apigee_GoogleCloudApigeeV1Attribute - */ - public function setAttributes($attributes) - { - $this->attributes = $attributes; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1Attribute - */ - public function getAttributes() - { - return $this->attributes; - } - public function setCallbackUrl($callbackUrl) - { - $this->callbackUrl = $callbackUrl; - } - public function getCallbackUrl() - { - return $this->callbackUrl; - } - public function setCompanyName($companyName) - { - $this->companyName = $companyName; - } - public function getCompanyName() - { - return $this->companyName; - } - public function setCreatedAt($createdAt) - { - $this->createdAt = $createdAt; - } - public function getCreatedAt() - { - return $this->createdAt; - } - /** - * @param Google_Service_Apigee_GoogleCloudApigeeV1Credential - */ - public function setCredentials($credentials) - { - $this->credentials = $credentials; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1Credential - */ - public function getCredentials() - { - return $this->credentials; - } - public function setDeveloperId($developerId) - { - $this->developerId = $developerId; - } - public function getDeveloperId() - { - return $this->developerId; - } - public function setKeyExpiresIn($keyExpiresIn) - { - $this->keyExpiresIn = $keyExpiresIn; - } - public function getKeyExpiresIn() - { - return $this->keyExpiresIn; - } - public function setLastModifiedAt($lastModifiedAt) - { - $this->lastModifiedAt = $lastModifiedAt; - } - public function getLastModifiedAt() - { - return $this->lastModifiedAt; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setScopes($scopes) - { - $this->scopes = $scopes; - } - public function getScopes() - { - return $this->scopes; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1AsyncQuery.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1AsyncQuery.php deleted file mode 100644 index 9c69d86a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1AsyncQuery.php +++ /dev/null @@ -1,143 +0,0 @@ -created = $created; - } - public function getCreated() - { - return $this->created; - } - public function setError($error) - { - $this->error = $error; - } - public function getError() - { - return $this->error; - } - public function setExecutionTime($executionTime) - { - $this->executionTime = $executionTime; - } - public function getExecutionTime() - { - return $this->executionTime; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Apigee_GoogleCloudApigeeV1QueryMetadata - */ - public function setQueryParams(Google_Service_Apigee_GoogleCloudApigeeV1QueryMetadata $queryParams) - { - $this->queryParams = $queryParams; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1QueryMetadata - */ - public function getQueryParams() - { - return $this->queryParams; - } - public function setReportDefinitionId($reportDefinitionId) - { - $this->reportDefinitionId = $reportDefinitionId; - } - public function getReportDefinitionId() - { - return $this->reportDefinitionId; - } - /** - * @param Google_Service_Apigee_GoogleCloudApigeeV1AsyncQueryResult - */ - public function setResult(Google_Service_Apigee_GoogleCloudApigeeV1AsyncQueryResult $result) - { - $this->result = $result; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1AsyncQueryResult - */ - public function getResult() - { - return $this->result; - } - public function setResultFileSize($resultFileSize) - { - $this->resultFileSize = $resultFileSize; - } - public function getResultFileSize() - { - return $this->resultFileSize; - } - public function setResultRows($resultRows) - { - $this->resultRows = $resultRows; - } - public function getResultRows() - { - return $this->resultRows; - } - public function setSelf($self) - { - $this->self = $self; - } - public function getSelf() - { - return $this->self; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setUpdated($updated) - { - $this->updated = $updated; - } - public function getUpdated() - { - return $this->updated; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1AsyncQueryResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1AsyncQueryResult.php deleted file mode 100644 index 9d8238e6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1AsyncQueryResult.php +++ /dev/null @@ -1,39 +0,0 @@ -expires = $expires; - } - public function getExpires() - { - return $this->expires; - } - public function setSelf($self) - { - $this->self = $self; - } - public function getSelf() - { - return $this->self; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1AsyncQueryResultView.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1AsyncQueryResultView.php deleted file mode 100644 index ec8d518d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1AsyncQueryResultView.php +++ /dev/null @@ -1,74 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setError($error) - { - $this->error = $error; - } - public function getError() - { - return $this->error; - } - /** - * @param Google_Service_Apigee_GoogleCloudApigeeV1QueryMetadata - */ - public function setMetadata(Google_Service_Apigee_GoogleCloudApigeeV1QueryMetadata $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1QueryMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - public function setRows($rows) - { - $this->rows = $rows; - } - public function getRows() - { - return $this->rows; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Attribute.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Attribute.php deleted file mode 100644 index 2bdd4b0a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Attribute.php +++ /dev/null @@ -1,39 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Attributes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Attributes.php deleted file mode 100644 index 0296b0d5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Attributes.php +++ /dev/null @@ -1,38 +0,0 @@ -attribute = $attribute; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1Attribute - */ - public function getAttribute() - { - return $this->attribute; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1CertInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1CertInfo.php deleted file mode 100644 index 4fb6a1ad..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1CertInfo.php +++ /dev/null @@ -1,121 +0,0 @@ -basicConstraints = $basicConstraints; - } - public function getBasicConstraints() - { - return $this->basicConstraints; - } - public function setExpiryDate($expiryDate) - { - $this->expiryDate = $expiryDate; - } - public function getExpiryDate() - { - return $this->expiryDate; - } - public function setIsValid($isValid) - { - $this->isValid = $isValid; - } - public function getIsValid() - { - return $this->isValid; - } - public function setIssuer($issuer) - { - $this->issuer = $issuer; - } - public function getIssuer() - { - return $this->issuer; - } - public function setPublicKey($publicKey) - { - $this->publicKey = $publicKey; - } - public function getPublicKey() - { - return $this->publicKey; - } - public function setSerialNumber($serialNumber) - { - $this->serialNumber = $serialNumber; - } - public function getSerialNumber() - { - return $this->serialNumber; - } - public function setSigAlgName($sigAlgName) - { - $this->sigAlgName = $sigAlgName; - } - public function getSigAlgName() - { - return $this->sigAlgName; - } - public function setSubject($subject) - { - $this->subject = $subject; - } - public function getSubject() - { - return $this->subject; - } - public function setSubjectAlternativeNames($subjectAlternativeNames) - { - $this->subjectAlternativeNames = $subjectAlternativeNames; - } - public function getSubjectAlternativeNames() - { - return $this->subjectAlternativeNames; - } - public function setValidFrom($validFrom) - { - $this->validFrom = $validFrom; - } - public function getValidFrom() - { - return $this->validFrom; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Certificate.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Certificate.php deleted file mode 100644 index ff4c8cd1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Certificate.php +++ /dev/null @@ -1,38 +0,0 @@ -certInfo = $certInfo; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1CertInfo - */ - public function getCertInfo() - { - return $this->certInfo; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1CommonNameConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1CommonNameConfig.php deleted file mode 100644 index ed1301b7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1CommonNameConfig.php +++ /dev/null @@ -1,39 +0,0 @@ -matchWildCards = $matchWildCards; - } - public function getMatchWildCards() - { - return $this->matchWildCards; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Company.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Company.php deleted file mode 100644 index b2f4f8b9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Company.php +++ /dev/null @@ -1,101 +0,0 @@ -apps = $apps; - } - public function getApps() - { - return $this->apps; - } - /** - * @param Google_Service_Apigee_GoogleCloudApigeeV1Attribute - */ - public function setAttributes($attributes) - { - $this->attributes = $attributes; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1Attribute - */ - public function getAttributes() - { - return $this->attributes; - } - public function setCreatedAt($createdAt) - { - $this->createdAt = $createdAt; - } - public function getCreatedAt() - { - return $this->createdAt; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setLastModifiedAt($lastModifiedAt) - { - $this->lastModifiedAt = $lastModifiedAt; - } - public function getLastModifiedAt() - { - return $this->lastModifiedAt; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOrganization($organization) - { - $this->organization = $organization; - } - public function getOrganization() - { - return $this->organization; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1CompanyApp.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1CompanyApp.php deleted file mode 100644 index 7fc6f944..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1CompanyApp.php +++ /dev/null @@ -1,153 +0,0 @@ -apiProducts = $apiProducts; - } - public function getApiProducts() - { - return $this->apiProducts; - } - public function setAppFamily($appFamily) - { - $this->appFamily = $appFamily; - } - public function getAppFamily() - { - return $this->appFamily; - } - public function setAppId($appId) - { - $this->appId = $appId; - } - public function getAppId() - { - return $this->appId; - } - /** - * @param Google_Service_Apigee_GoogleCloudApigeeV1Attribute - */ - public function setAttributes($attributes) - { - $this->attributes = $attributes; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1Attribute - */ - public function getAttributes() - { - return $this->attributes; - } - public function setCallbackUrl($callbackUrl) - { - $this->callbackUrl = $callbackUrl; - } - public function getCallbackUrl() - { - return $this->callbackUrl; - } - public function setCompanyName($companyName) - { - $this->companyName = $companyName; - } - public function getCompanyName() - { - return $this->companyName; - } - public function setCreatedAt($createdAt) - { - $this->createdAt = $createdAt; - } - public function getCreatedAt() - { - return $this->createdAt; - } - /** - * @param Google_Service_Apigee_GoogleCloudApigeeV1Credential - */ - public function setCredentials($credentials) - { - $this->credentials = $credentials; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1Credential - */ - public function getCredentials() - { - return $this->credentials; - } - public function setKeyExpiresIn($keyExpiresIn) - { - $this->keyExpiresIn = $keyExpiresIn; - } - public function getKeyExpiresIn() - { - return $this->keyExpiresIn; - } - public function setLastModifiedAt($lastModifiedAt) - { - $this->lastModifiedAt = $lastModifiedAt; - } - public function getLastModifiedAt() - { - return $this->lastModifiedAt; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setScopes($scopes) - { - $this->scopes = $scopes; - } - public function getScopes() - { - return $this->scopes; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1CompanyAppKey.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1CompanyAppKey.php deleted file mode 100644 index 983fa8bf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1CompanyAppKey.php +++ /dev/null @@ -1,101 +0,0 @@ -apiProducts = $apiProducts; - } - public function getApiProducts() - { - return $this->apiProducts; - } - /** - * @param Google_Service_Apigee_GoogleCloudApigeeV1Attribute - */ - public function setAttributes($attributes) - { - $this->attributes = $attributes; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1Attribute - */ - public function getAttributes() - { - return $this->attributes; - } - public function setConsumerKey($consumerKey) - { - $this->consumerKey = $consumerKey; - } - public function getConsumerKey() - { - return $this->consumerKey; - } - public function setConsumerSecret($consumerSecret) - { - $this->consumerSecret = $consumerSecret; - } - public function getConsumerSecret() - { - return $this->consumerSecret; - } - public function setExpiresAt($expiresAt) - { - $this->expiresAt = $expiresAt; - } - public function getExpiresAt() - { - return $this->expiresAt; - } - public function setIssuedAt($issuedAt) - { - $this->issuedAt = $issuedAt; - } - public function getIssuedAt() - { - return $this->issuedAt; - } - public function setScopes($scopes) - { - $this->scopes = $scopes; - } - public function getScopes() - { - return $this->scopes; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ConfigVersion.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ConfigVersion.php deleted file mode 100644 index 79c55cfa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ConfigVersion.php +++ /dev/null @@ -1,39 +0,0 @@ -majorVersion = $majorVersion; - } - public function getMajorVersion() - { - return $this->majorVersion; - } - public function setMinorVersion($minorVersion) - { - $this->minorVersion = $minorVersion; - } - public function getMinorVersion() - { - return $this->minorVersion; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Credential.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Credential.php deleted file mode 100644 index a18f8d06..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Credential.php +++ /dev/null @@ -1,108 +0,0 @@ -apiProducts = $apiProducts; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1ApiProductRef - */ - public function getApiProducts() - { - return $this->apiProducts; - } - /** - * @param Google_Service_Apigee_GoogleCloudApigeeV1Attribute - */ - public function setAttributes($attributes) - { - $this->attributes = $attributes; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1Attribute - */ - public function getAttributes() - { - return $this->attributes; - } - public function setConsumerKey($consumerKey) - { - $this->consumerKey = $consumerKey; - } - public function getConsumerKey() - { - return $this->consumerKey; - } - public function setConsumerSecret($consumerSecret) - { - $this->consumerSecret = $consumerSecret; - } - public function getConsumerSecret() - { - return $this->consumerSecret; - } - public function setExpiresAt($expiresAt) - { - $this->expiresAt = $expiresAt; - } - public function getExpiresAt() - { - return $this->expiresAt; - } - public function setIssuedAt($issuedAt) - { - $this->issuedAt = $issuedAt; - } - public function getIssuedAt() - { - return $this->issuedAt; - } - public function setScopes($scopes) - { - $this->scopes = $scopes; - } - public function getScopes() - { - return $this->scopes; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1CustomReport.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1CustomReport.php deleted file mode 100644 index 2db88107..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1CustomReport.php +++ /dev/null @@ -1,234 +0,0 @@ -chartType = $chartType; - } - public function getChartType() - { - return $this->chartType; - } - public function setComments($comments) - { - $this->comments = $comments; - } - public function getComments() - { - return $this->comments; - } - public function setCreatedAt($createdAt) - { - $this->createdAt = $createdAt; - } - public function getCreatedAt() - { - return $this->createdAt; - } - public function setDimensions($dimensions) - { - $this->dimensions = $dimensions; - } - public function getDimensions() - { - return $this->dimensions; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setEnvironment($environment) - { - $this->environment = $environment; - } - public function getEnvironment() - { - return $this->environment; - } - public function setFilter($filter) - { - $this->filter = $filter; - } - public function getFilter() - { - return $this->filter; - } - public function setFromTime($fromTime) - { - $this->fromTime = $fromTime; - } - public function getFromTime() - { - return $this->fromTime; - } - public function setLastModifiedAt($lastModifiedAt) - { - $this->lastModifiedAt = $lastModifiedAt; - } - public function getLastModifiedAt() - { - return $this->lastModifiedAt; - } - public function setLastViewedAt($lastViewedAt) - { - $this->lastViewedAt = $lastViewedAt; - } - public function getLastViewedAt() - { - return $this->lastViewedAt; - } - public function setLimit($limit) - { - $this->limit = $limit; - } - public function getLimit() - { - return $this->limit; - } - /** - * @param Google_Service_Apigee_GoogleCloudApigeeV1CustomReportMetric - */ - public function setMetrics($metrics) - { - $this->metrics = $metrics; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1CustomReportMetric - */ - public function getMetrics() - { - return $this->metrics; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOffset($offset) - { - $this->offset = $offset; - } - public function getOffset() - { - return $this->offset; - } - public function setOrganization($organization) - { - $this->organization = $organization; - } - public function getOrganization() - { - return $this->organization; - } - /** - * @param Google_Service_Apigee_GoogleCloudApigeeV1ReportProperty - */ - public function setProperties($properties) - { - $this->properties = $properties; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1ReportProperty - */ - public function getProperties() - { - return $this->properties; - } - public function setSortByCols($sortByCols) - { - $this->sortByCols = $sortByCols; - } - public function getSortByCols() - { - return $this->sortByCols; - } - public function setSortOrder($sortOrder) - { - $this->sortOrder = $sortOrder; - } - public function getSortOrder() - { - return $this->sortOrder; - } - public function setTags($tags) - { - $this->tags = $tags; - } - public function getTags() - { - return $this->tags; - } - public function setTimeUnit($timeUnit) - { - $this->timeUnit = $timeUnit; - } - public function getTimeUnit() - { - return $this->timeUnit; - } - public function setToTime($toTime) - { - $this->toTime = $toTime; - } - public function getToTime() - { - return $this->toTime; - } - public function setTopk($topk) - { - $this->topk = $topk; - } - public function getTopk() - { - return $this->topk; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1CustomReportMetric.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1CustomReportMetric.php deleted file mode 100644 index 1b888471..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1CustomReportMetric.php +++ /dev/null @@ -1,39 +0,0 @@ -function = $function; - } - public function getFunction() - { - return $this->function; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1DataLocation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1DataLocation.php deleted file mode 100644 index 912d0050..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1DataLocation.php +++ /dev/null @@ -1,30 +0,0 @@ -url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1DebugMask.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1DebugMask.php deleted file mode 100644 index 8a5b908a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1DebugMask.php +++ /dev/null @@ -1,103 +0,0 @@ -faultJSONPaths = $faultJSONPaths; - } - public function getFaultJSONPaths() - { - return $this->faultJSONPaths; - } - public function setFaultXPaths($faultXPaths) - { - $this->faultXPaths = $faultXPaths; - } - public function getFaultXPaths() - { - return $this->faultXPaths; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNamespaces($namespaces) - { - $this->namespaces = $namespaces; - } - public function getNamespaces() - { - return $this->namespaces; - } - public function setRequestJSONPaths($requestJSONPaths) - { - $this->requestJSONPaths = $requestJSONPaths; - } - public function getRequestJSONPaths() - { - return $this->requestJSONPaths; - } - public function setRequestXPaths($requestXPaths) - { - $this->requestXPaths = $requestXPaths; - } - public function getRequestXPaths() - { - return $this->requestXPaths; - } - public function setResponseJSONPaths($responseJSONPaths) - { - $this->responseJSONPaths = $responseJSONPaths; - } - public function getResponseJSONPaths() - { - return $this->responseJSONPaths; - } - public function setResponseXPaths($responseXPaths) - { - $this->responseXPaths = $responseXPaths; - } - public function getResponseXPaths() - { - return $this->responseXPaths; - } - public function setVariables($variables) - { - $this->variables = $variables; - } - public function getVariables() - { - return $this->variables; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1DebugSession.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1DebugSession.php deleted file mode 100644 index c66dad62..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1DebugSession.php +++ /dev/null @@ -1,75 +0,0 @@ -count = $count; - } - public function getCount() - { - return $this->count; - } - public function setFilter($filter) - { - $this->filter = $filter; - } - public function getFilter() - { - return $this->filter; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setTimeout($timeout) - { - $this->timeout = $timeout; - } - public function getTimeout() - { - return $this->timeout; - } - public function setTracesize($tracesize) - { - $this->tracesize = $tracesize; - } - public function getTracesize() - { - return $this->tracesize; - } - public function setValidity($validity) - { - $this->validity = $validity; - } - public function getValidity() - { - return $this->validity; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1DebugSessionTransaction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1DebugSessionTransaction.php deleted file mode 100644 index acbb6688..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1DebugSessionTransaction.php +++ /dev/null @@ -1,47 +0,0 @@ -completed = $completed; - } - public function getCompleted() - { - return $this->completed; - } - /** - * @param Google_Service_Apigee_GoogleCloudApigeeV1Point - */ - public function setPoint($point) - { - $this->point = $point; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1Point - */ - public function getPoint() - { - return $this->point; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1DeleteCustomReportResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1DeleteCustomReportResponse.php deleted file mode 100644 index 0c2f3792..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1DeleteCustomReportResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Deployment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Deployment.php deleted file mode 100644 index 342e0c2a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Deployment.php +++ /dev/null @@ -1,83 +0,0 @@ -apiProxy = $apiProxy; - } - public function getApiProxy() - { - return $this->apiProxy; - } - public function setBasePath($basePath) - { - $this->basePath = $basePath; - } - public function getBasePath() - { - return $this->basePath; - } - public function setDeployStartTime($deployStartTime) - { - $this->deployStartTime = $deployStartTime; - } - public function getDeployStartTime() - { - return $this->deployStartTime; - } - public function setEnvironment($environment) - { - $this->environment = $environment; - } - public function getEnvironment() - { - return $this->environment; - } - /** - * @param Google_Service_Apigee_GoogleCloudApigeeV1PodStatus - */ - public function setPods($pods) - { - $this->pods = $pods; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1PodStatus - */ - public function getPods() - { - return $this->pods; - } - public function setRevision($revision) - { - $this->revision = $revision; - } - public function getRevision() - { - return $this->revision; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1DeploymentConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1DeploymentConfig.php deleted file mode 100644 index 664f2d8e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1DeploymentConfig.php +++ /dev/null @@ -1,57 +0,0 @@ -attributes = $attributes; - } - public function getAttributes() - { - return $this->attributes; - } - public function setBasePath($basePath) - { - $this->basePath = $basePath; - } - public function getBasePath() - { - return $this->basePath; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Developer.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Developer.php deleted file mode 100644 index 22b0dd2c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Developer.php +++ /dev/null @@ -1,155 +0,0 @@ -accessType = $accessType; - } - public function getAccessType() - { - return $this->accessType; - } - public function setAppFamily($appFamily) - { - $this->appFamily = $appFamily; - } - public function getAppFamily() - { - return $this->appFamily; - } - public function setApps($apps) - { - $this->apps = $apps; - } - public function getApps() - { - return $this->apps; - } - /** - * @param Google_Service_Apigee_GoogleCloudApigeeV1Attribute - */ - public function setAttributes($attributes) - { - $this->attributes = $attributes; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1Attribute - */ - public function getAttributes() - { - return $this->attributes; - } - public function setCompanies($companies) - { - $this->companies = $companies; - } - public function getCompanies() - { - return $this->companies; - } - public function setCreatedAt($createdAt) - { - $this->createdAt = $createdAt; - } - public function getCreatedAt() - { - return $this->createdAt; - } - public function setDeveloperId($developerId) - { - $this->developerId = $developerId; - } - public function getDeveloperId() - { - return $this->developerId; - } - public function setEmail($email) - { - $this->email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setFirstName($firstName) - { - $this->firstName = $firstName; - } - public function getFirstName() - { - return $this->firstName; - } - public function setLastModifiedAt($lastModifiedAt) - { - $this->lastModifiedAt = $lastModifiedAt; - } - public function getLastModifiedAt() - { - return $this->lastModifiedAt; - } - public function setLastName($lastName) - { - $this->lastName = $lastName; - } - public function getLastName() - { - return $this->lastName; - } - public function setOrganizationName($organizationName) - { - $this->organizationName = $organizationName; - } - public function getOrganizationName() - { - return $this->organizationName; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setUserName($userName) - { - $this->userName = $userName; - } - public function getUserName() - { - return $this->userName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1DeveloperApp.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1DeveloperApp.php deleted file mode 100644 index fcf05c25..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1DeveloperApp.php +++ /dev/null @@ -1,153 +0,0 @@ -apiProducts = $apiProducts; - } - public function getApiProducts() - { - return $this->apiProducts; - } - public function setAppFamily($appFamily) - { - $this->appFamily = $appFamily; - } - public function getAppFamily() - { - return $this->appFamily; - } - public function setAppId($appId) - { - $this->appId = $appId; - } - public function getAppId() - { - return $this->appId; - } - /** - * @param Google_Service_Apigee_GoogleCloudApigeeV1Attribute - */ - public function setAttributes($attributes) - { - $this->attributes = $attributes; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1Attribute - */ - public function getAttributes() - { - return $this->attributes; - } - public function setCallbackUrl($callbackUrl) - { - $this->callbackUrl = $callbackUrl; - } - public function getCallbackUrl() - { - return $this->callbackUrl; - } - public function setCreatedAt($createdAt) - { - $this->createdAt = $createdAt; - } - public function getCreatedAt() - { - return $this->createdAt; - } - /** - * @param Google_Service_Apigee_GoogleCloudApigeeV1Credential - */ - public function setCredentials($credentials) - { - $this->credentials = $credentials; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1Credential - */ - public function getCredentials() - { - return $this->credentials; - } - public function setDeveloperId($developerId) - { - $this->developerId = $developerId; - } - public function getDeveloperId() - { - return $this->developerId; - } - public function setKeyExpiresIn($keyExpiresIn) - { - $this->keyExpiresIn = $keyExpiresIn; - } - public function getKeyExpiresIn() - { - return $this->keyExpiresIn; - } - public function setLastModifiedAt($lastModifiedAt) - { - $this->lastModifiedAt = $lastModifiedAt; - } - public function getLastModifiedAt() - { - return $this->lastModifiedAt; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setScopes($scopes) - { - $this->scopes = $scopes; - } - public function getScopes() - { - return $this->scopes; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1DeveloperAppKey.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1DeveloperAppKey.php deleted file mode 100644 index 199fbc5c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1DeveloperAppKey.php +++ /dev/null @@ -1,101 +0,0 @@ -apiProducts = $apiProducts; - } - public function getApiProducts() - { - return $this->apiProducts; - } - /** - * @param Google_Service_Apigee_GoogleCloudApigeeV1Attribute - */ - public function setAttributes($attributes) - { - $this->attributes = $attributes; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1Attribute - */ - public function getAttributes() - { - return $this->attributes; - } - public function setConsumerKey($consumerKey) - { - $this->consumerKey = $consumerKey; - } - public function getConsumerKey() - { - return $this->consumerKey; - } - public function setConsumerSecret($consumerSecret) - { - $this->consumerSecret = $consumerSecret; - } - public function getConsumerSecret() - { - return $this->consumerSecret; - } - public function setExpiresAt($expiresAt) - { - $this->expiresAt = $expiresAt; - } - public function getExpiresAt() - { - return $this->expiresAt; - } - public function setIssuedAt($issuedAt) - { - $this->issuedAt = $issuedAt; - } - public function getIssuedAt() - { - return $this->issuedAt; - } - public function setScopes($scopes) - { - $this->scopes = $scopes; - } - public function getScopes() - { - return $this->scopes; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1DimensionMetric.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1DimensionMetric.php deleted file mode 100644 index 8669d64d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1DimensionMetric.php +++ /dev/null @@ -1,47 +0,0 @@ -metrics = $metrics; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1Metric - */ - public function getMetrics() - { - return $this->metrics; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1EntityMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1EntityMetadata.php deleted file mode 100644 index 26b75c21..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1EntityMetadata.php +++ /dev/null @@ -1,48 +0,0 @@ -createdAt = $createdAt; - } - public function getCreatedAt() - { - return $this->createdAt; - } - public function setLastModifiedAt($lastModifiedAt) - { - $this->lastModifiedAt = $lastModifiedAt; - } - public function getLastModifiedAt() - { - return $this->lastModifiedAt; - } - public function setSubType($subType) - { - $this->subType = $subType; - } - public function getSubType() - { - return $this->subType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Environment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Environment.php deleted file mode 100644 index 61412b61..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Environment.php +++ /dev/null @@ -1,82 +0,0 @@ -createdAt = $createdAt; - } - public function getCreatedAt() - { - return $this->createdAt; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setLastModifiedAt($lastModifiedAt) - { - $this->lastModifiedAt = $lastModifiedAt; - } - public function getLastModifiedAt() - { - return $this->lastModifiedAt; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Apigee_GoogleCloudApigeeV1Properties - */ - public function setProperties(Google_Service_Apigee_GoogleCloudApigeeV1Properties $properties) - { - $this->properties = $properties; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1Properties - */ - public function getProperties() - { - return $this->properties; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1EnvironmentConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1EnvironmentConfig.php deleted file mode 100644 index 2061308b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1EnvironmentConfig.php +++ /dev/null @@ -1,188 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - /** - * @param Google_Service_Apigee_GoogleCloudApigeeV1DebugMask - */ - public function setDebugMask(Google_Service_Apigee_GoogleCloudApigeeV1DebugMask $debugMask) - { - $this->debugMask = $debugMask; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1DebugMask - */ - public function getDebugMask() - { - return $this->debugMask; - } - /** - * @param Google_Service_Apigee_GoogleCloudApigeeV1DeploymentConfig - */ - public function setDeployments($deployments) - { - $this->deployments = $deployments; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1DeploymentConfig - */ - public function getDeployments() - { - return $this->deployments; - } - public function setFeatureFlags($featureFlags) - { - $this->featureFlags = $featureFlags; - } - public function getFeatureFlags() - { - return $this->featureFlags; - } - /** - * @param Google_Service_Apigee_GoogleCloudApigeeV1FlowHookConfig - */ - public function setFlowhooks($flowhooks) - { - $this->flowhooks = $flowhooks; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1FlowHookConfig - */ - public function getFlowhooks() - { - return $this->flowhooks; - } - /** - * @param Google_Service_Apigee_GoogleCloudApigeeV1KeystoreConfig - */ - public function setKeystores($keystores) - { - $this->keystores = $keystores; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1KeystoreConfig - */ - public function getKeystores() - { - return $this->keystores; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setProvider($provider) - { - $this->provider = $provider; - } - public function getProvider() - { - return $this->provider; - } - public function setPubsubTopic($pubsubTopic) - { - $this->pubsubTopic = $pubsubTopic; - } - public function getPubsubTopic() - { - return $this->pubsubTopic; - } - /** - * @param Google_Service_Apigee_GoogleCloudApigeeV1ReferenceConfig - */ - public function setResourceReferences($resourceReferences) - { - $this->resourceReferences = $resourceReferences; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1ReferenceConfig - */ - public function getResourceReferences() - { - return $this->resourceReferences; - } - /** - * @param Google_Service_Apigee_GoogleCloudApigeeV1ResourceConfig - */ - public function setResources($resources) - { - $this->resources = $resources; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1ResourceConfig - */ - public function getResources() - { - return $this->resources; - } - public function setSequenceNumber($sequenceNumber) - { - $this->sequenceNumber = $sequenceNumber; - } - public function getSequenceNumber() - { - return $this->sequenceNumber; - } - /** - * @param Google_Service_Apigee_GoogleCloudApigeeV1TargetServerConfig - */ - public function setTargets($targets) - { - $this->targets = $targets; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1TargetServerConfig - */ - public function getTargets() - { - return $this->targets; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1FlowHook.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1FlowHook.php deleted file mode 100644 index 5407ea54..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1FlowHook.php +++ /dev/null @@ -1,57 +0,0 @@ -continueOnError = $continueOnError; - } - public function getContinueOnError() - { - return $this->continueOnError; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setFlowHookPoint($flowHookPoint) - { - $this->flowHookPoint = $flowHookPoint; - } - public function getFlowHookPoint() - { - return $this->flowHookPoint; - } - public function setSharedFlow($sharedFlow) - { - $this->sharedFlow = $sharedFlow; - } - public function getSharedFlow() - { - return $this->sharedFlow; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1FlowHookConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1FlowHookConfig.php deleted file mode 100644 index 447f6068..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1FlowHookConfig.php +++ /dev/null @@ -1,48 +0,0 @@ -continueOnError = $continueOnError; - } - public function getContinueOnError() - { - return $this->continueOnError; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setSharedFlowName($sharedFlowName) - { - $this->sharedFlowName = $sharedFlowName; - } - public function getSharedFlowName() - { - return $this->sharedFlowName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1GetSyncAuthorizationRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1GetSyncAuthorizationRequest.php deleted file mode 100644 index 066bae28..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1GetSyncAuthorizationRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -aliasId = $aliasId; - } - public function getAliasId() - { - return $this->aliasId; - } - public function setReference($reference) - { - $this->reference = $reference; - } - public function getReference() - { - return $this->reference; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1KeyValueMap.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1KeyValueMap.php deleted file mode 100644 index 7fe371d4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1KeyValueMap.php +++ /dev/null @@ -1,39 +0,0 @@ -encrypted = $encrypted; - } - public function getEncrypted() - { - return $this->encrypted; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Keystore.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Keystore.php deleted file mode 100644 index 2f483af1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Keystore.php +++ /dev/null @@ -1,40 +0,0 @@ -aliases = $aliases; - } - public function getAliases() - { - return $this->aliases; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1KeystoreConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1KeystoreConfig.php deleted file mode 100644 index bdded062..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1KeystoreConfig.php +++ /dev/null @@ -1,47 +0,0 @@ -aliases = $aliases; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1AliasRevisionConfig - */ - public function getAliases() - { - return $this->aliases; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ListApiProductsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ListApiProductsResponse.php deleted file mode 100644 index 4478f20f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ListApiProductsResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -apiProduct = $apiProduct; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1ApiProduct - */ - public function getApiProduct() - { - return $this->apiProduct; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ListApiProxiesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ListApiProxiesResponse.php deleted file mode 100644 index 8c3bbb8f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ListApiProxiesResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -proxies = $proxies; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1ApiProxy - */ - public function getProxies() - { - return $this->proxies; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ListAppsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ListAppsResponse.php deleted file mode 100644 index 9d6ba161..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ListAppsResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -app = $app; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1App - */ - public function getApp() - { - return $this->app; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ListAsyncQueriesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ListAsyncQueriesResponse.php deleted file mode 100644 index a71d5a84..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ListAsyncQueriesResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -queries = $queries; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1AsyncQuery - */ - public function getQueries() - { - return $this->queries; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ListCompaniesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ListCompaniesResponse.php deleted file mode 100644 index 3a29dd0c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ListCompaniesResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -company = $company; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1Company - */ - public function getCompany() - { - return $this->company; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ListCompanyAppsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ListCompanyAppsResponse.php deleted file mode 100644 index 0207b3ca..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ListCompanyAppsResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -app = $app; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1CompanyApp - */ - public function getApp() - { - return $this->app; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ListCustomReportsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ListCustomReportsResponse.php deleted file mode 100644 index 849a1a85..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ListCustomReportsResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -qualifier = $qualifier; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1CustomReport - */ - public function getQualifier() - { - return $this->qualifier; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ListDebugSessionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ListDebugSessionsResponse.php deleted file mode 100644 index 870b29b6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ListDebugSessionsResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -sessions = $sessions; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1Sesssion - */ - public function getSessions() - { - return $this->sessions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ListDeploymentsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ListDeploymentsResponse.php deleted file mode 100644 index a597ea2e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ListDeploymentsResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -deployments = $deployments; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1Deployment - */ - public function getDeployments() - { - return $this->deployments; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ListDeveloperAppsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ListDeveloperAppsResponse.php deleted file mode 100644 index e8601830..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ListDeveloperAppsResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -app = $app; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1DeveloperApp - */ - public function getApp() - { - return $this->app; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ListEnvironmentResourcesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ListEnvironmentResourcesResponse.php deleted file mode 100644 index 55e743c1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ListEnvironmentResourcesResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -resourceFile = $resourceFile; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1ResourceFile - */ - public function getResourceFile() - { - return $this->resourceFile; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ListHybridIssuersResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ListHybridIssuersResponse.php deleted file mode 100644 index 1fdfb7fb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ListHybridIssuersResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -issuers = $issuers; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1ServiceIssuersMapping - */ - public function getIssuers() - { - return $this->issuers; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ListOfDevelopersResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ListOfDevelopersResponse.php deleted file mode 100644 index dfe50321..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ListOfDevelopersResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -developer = $developer; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1Developer - */ - public function getDeveloper() - { - return $this->developer; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ListOrganizationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ListOrganizationsResponse.php deleted file mode 100644 index 5af02b3e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ListOrganizationsResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -organizations = $organizations; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1OrganizationProjectMapping - */ - public function getOrganizations() - { - return $this->organizations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ListSharedFlowsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ListSharedFlowsResponse.php deleted file mode 100644 index ff0bb8a9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ListSharedFlowsResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -sharedFlows = $sharedFlows; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1SharedFlow - */ - public function getSharedFlows() - { - return $this->sharedFlows; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Metadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Metadata.php deleted file mode 100644 index 61b74874..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Metadata.php +++ /dev/null @@ -1,40 +0,0 @@ -errors = $errors; - } - public function getErrors() - { - return $this->errors; - } - public function setNotices($notices) - { - $this->notices = $notices; - } - public function getNotices() - { - return $this->notices; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Metric.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Metric.php deleted file mode 100644 index 246d4002..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Metric.php +++ /dev/null @@ -1,40 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setValues($values) - { - $this->values = $values; - } - public function getValues() - { - return $this->values; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1OperationMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1OperationMetadata.php deleted file mode 100644 index 353667f4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1OperationMetadata.php +++ /dev/null @@ -1,48 +0,0 @@ -operationType = $operationType; - } - public function getOperationType() - { - return $this->operationType; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setTargetResourceName($targetResourceName) - { - $this->targetResourceName = $targetResourceName; - } - public function getTargetResourceName() - { - return $this->targetResourceName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1OptimizedStats.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1OptimizedStats.php deleted file mode 100644 index 306bcf80..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1OptimizedStats.php +++ /dev/null @@ -1,40 +0,0 @@ - "Response", - ); - protected $responseType = 'Google_Service_Apigee_GoogleCloudApigeeV1OptimizedStatsResponse'; - protected $responseDataType = ''; - - /** - * @param Google_Service_Apigee_GoogleCloudApigeeV1OptimizedStatsResponse - */ - public function setResponse(Google_Service_Apigee_GoogleCloudApigeeV1OptimizedStatsResponse $response) - { - $this->response = $response; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1OptimizedStatsResponse - */ - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1OptimizedStatsNode.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1OptimizedStatsNode.php deleted file mode 100644 index 8d0d08a2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1OptimizedStatsNode.php +++ /dev/null @@ -1,31 +0,0 @@ -data = $data; - } - public function getData() - { - return $this->data; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1OptimizedStatsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1OptimizedStatsResponse.php deleted file mode 100644 index cf2a3ce7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1OptimizedStatsResponse.php +++ /dev/null @@ -1,75 +0,0 @@ - "TimeUnit", - ); - public $timeUnit; - protected $metaDataType = 'Google_Service_Apigee_GoogleCloudApigeeV1Metadata'; - protected $metaDataDataType = ''; - public $resultTruncated; - protected $statsType = 'Google_Service_Apigee_GoogleCloudApigeeV1OptimizedStatsNode'; - protected $statsDataType = ''; - - public function setTimeUnit($timeUnit) - { - $this->timeUnit = $timeUnit; - } - public function getTimeUnit() - { - return $this->timeUnit; - } - /** - * @param Google_Service_Apigee_GoogleCloudApigeeV1Metadata - */ - public function setMetaData(Google_Service_Apigee_GoogleCloudApigeeV1Metadata $metaData) - { - $this->metaData = $metaData; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1Metadata - */ - public function getMetaData() - { - return $this->metaData; - } - public function setResultTruncated($resultTruncated) - { - $this->resultTruncated = $resultTruncated; - } - public function getResultTruncated() - { - return $this->resultTruncated; - } - /** - * @param Google_Service_Apigee_GoogleCloudApigeeV1OptimizedStatsNode - */ - public function setStats(Google_Service_Apigee_GoogleCloudApigeeV1OptimizedStatsNode $stats) - { - $this->stats = $stats; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1OptimizedStatsNode - */ - public function getStats() - { - return $this->stats; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Organization.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Organization.php deleted file mode 100644 index 0a8a01a6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Organization.php +++ /dev/null @@ -1,128 +0,0 @@ -analyticsRegion = $analyticsRegion; - } - public function getAnalyticsRegion() - { - return $this->analyticsRegion; - } - public function setAttributes($attributes) - { - $this->attributes = $attributes; - } - public function getAttributes() - { - return $this->attributes; - } - public function setCreatedAt($createdAt) - { - $this->createdAt = $createdAt; - } - public function getCreatedAt() - { - return $this->createdAt; - } - public function setCustomerName($customerName) - { - $this->customerName = $customerName; - } - public function getCustomerName() - { - return $this->customerName; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setEnvironments($environments) - { - $this->environments = $environments; - } - public function getEnvironments() - { - return $this->environments; - } - public function setLastModifiedAt($lastModifiedAt) - { - $this->lastModifiedAt = $lastModifiedAt; - } - public function getLastModifiedAt() - { - return $this->lastModifiedAt; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Apigee_GoogleCloudApigeeV1Properties - */ - public function setProperties(Google_Service_Apigee_GoogleCloudApigeeV1Properties $properties) - { - $this->properties = $properties; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1Properties - */ - public function getProperties() - { - return $this->properties; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1OrganizationProjectMapping.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1OrganizationProjectMapping.php deleted file mode 100644 index 1e78d6dd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1OrganizationProjectMapping.php +++ /dev/null @@ -1,40 +0,0 @@ -organization = $organization; - } - public function getOrganization() - { - return $this->organization; - } - public function setProjectIds($projectIds) - { - $this->projectIds = $projectIds; - } - public function getProjectIds() - { - return $this->projectIds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1PodStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1PodStatus.php deleted file mode 100644 index 3e7560b4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1PodStatus.php +++ /dev/null @@ -1,102 +0,0 @@ -appVersion = $appVersion; - } - public function getAppVersion() - { - return $this->appVersion; - } - public function setDeploymentStatus($deploymentStatus) - { - $this->deploymentStatus = $deploymentStatus; - } - public function getDeploymentStatus() - { - return $this->deploymentStatus; - } - public function setDeploymentStatusTime($deploymentStatusTime) - { - $this->deploymentStatusTime = $deploymentStatusTime; - } - public function getDeploymentStatusTime() - { - return $this->deploymentStatusTime; - } - public function setDeploymentTime($deploymentTime) - { - $this->deploymentTime = $deploymentTime; - } - public function getDeploymentTime() - { - return $this->deploymentTime; - } - public function setPodName($podName) - { - $this->podName = $podName; - } - public function getPodName() - { - return $this->podName; - } - public function setPodStatus($podStatus) - { - $this->podStatus = $podStatus; - } - public function getPodStatus() - { - return $this->podStatus; - } - public function setPodStatusTime($podStatusTime) - { - $this->podStatusTime = $podStatusTime; - } - public function getPodStatusTime() - { - return $this->podStatusTime; - } - public function setStatusCode($statusCode) - { - $this->statusCode = $statusCode; - } - public function getStatusCode() - { - return $this->statusCode; - } - public function setStatusCodeDetails($statusCodeDetails) - { - $this->statusCodeDetails = $statusCodeDetails; - } - public function getStatusCodeDetails() - { - return $this->statusCodeDetails; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Point.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Point.php deleted file mode 100644 index a0c0dce0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Point.php +++ /dev/null @@ -1,47 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Apigee_GoogleCloudApigeeV1Result - */ - public function setResults($results) - { - $this->results = $results; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1Result - */ - public function getResults() - { - return $this->results; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Properties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Properties.php deleted file mode 100644 index eb8e8b75..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Properties.php +++ /dev/null @@ -1,38 +0,0 @@ -property = $property; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1Property - */ - public function getProperty() - { - return $this->property; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Property.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Property.php deleted file mode 100644 index 8fbe90bc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Property.php +++ /dev/null @@ -1,39 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Query.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Query.php deleted file mode 100644 index 4ea742db..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Query.php +++ /dev/null @@ -1,110 +0,0 @@ -csvDelimiter = $csvDelimiter; - } - public function getCsvDelimiter() - { - return $this->csvDelimiter; - } - public function setDimensions($dimensions) - { - $this->dimensions = $dimensions; - } - public function getDimensions() - { - return $this->dimensions; - } - public function setFilter($filter) - { - $this->filter = $filter; - } - public function getFilter() - { - return $this->filter; - } - public function setGroupByTimeUnit($groupByTimeUnit) - { - $this->groupByTimeUnit = $groupByTimeUnit; - } - public function getGroupByTimeUnit() - { - return $this->groupByTimeUnit; - } - public function setLimit($limit) - { - $this->limit = $limit; - } - public function getLimit() - { - return $this->limit; - } - /** - * @param Google_Service_Apigee_GoogleCloudApigeeV1QueryMetric - */ - public function setMetrics($metrics) - { - $this->metrics = $metrics; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1QueryMetric - */ - public function getMetrics() - { - return $this->metrics; - } - public function setOutputFormat($outputFormat) - { - $this->outputFormat = $outputFormat; - } - public function getOutputFormat() - { - return $this->outputFormat; - } - public function setReportDefinitionId($reportDefinitionId) - { - $this->reportDefinitionId = $reportDefinitionId; - } - public function getReportDefinitionId() - { - return $this->reportDefinitionId; - } - public function setTimeRange($timeRange) - { - $this->timeRange = $timeRange; - } - public function getTimeRange() - { - return $this->timeRange; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1QueryMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1QueryMetadata.php deleted file mode 100644 index 2e6d043e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1QueryMetadata.php +++ /dev/null @@ -1,76 +0,0 @@ -dimensions = $dimensions; - } - public function getDimensions() - { - return $this->dimensions; - } - public function setEndTimestamp($endTimestamp) - { - $this->endTimestamp = $endTimestamp; - } - public function getEndTimestamp() - { - return $this->endTimestamp; - } - public function setMetrics($metrics) - { - $this->metrics = $metrics; - } - public function getMetrics() - { - return $this->metrics; - } - public function setOutputFormat($outputFormat) - { - $this->outputFormat = $outputFormat; - } - public function getOutputFormat() - { - return $this->outputFormat; - } - public function setStartTimestamp($startTimestamp) - { - $this->startTimestamp = $startTimestamp; - } - public function getStartTimestamp() - { - return $this->startTimestamp; - } - public function setTimeUnit($timeUnit) - { - $this->timeUnit = $timeUnit; - } - public function getTimeUnit() - { - return $this->timeUnit; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1QueryMetric.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1QueryMetric.php deleted file mode 100644 index 765dc22d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1QueryMetric.php +++ /dev/null @@ -1,66 +0,0 @@ -alias = $alias; - } - public function getAlias() - { - return $this->alias; - } - public function setFunction($function) - { - $this->function = $function; - } - public function getFunction() - { - return $this->function; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOperator($operator) - { - $this->operator = $operator; - } - public function getOperator() - { - return $this->operator; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Reference.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Reference.php deleted file mode 100644 index 8c9e98c1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Reference.php +++ /dev/null @@ -1,57 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setRefers($refers) - { - $this->refers = $refers; - } - public function getRefers() - { - return $this->refers; - } - public function setResourceType($resourceType) - { - $this->resourceType = $resourceType; - } - public function getResourceType() - { - return $this->resourceType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ReferenceConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ReferenceConfig.php deleted file mode 100644 index 668135e6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ReferenceConfig.php +++ /dev/null @@ -1,39 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setResourceName($resourceName) - { - $this->resourceName = $resourceName; - } - public function getResourceName() - { - return $this->resourceName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ReportProperty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ReportProperty.php deleted file mode 100644 index 91ef7930..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ReportProperty.php +++ /dev/null @@ -1,47 +0,0 @@ -property = $property; - } - public function getProperty() - { - return $this->property; - } - /** - * @param Google_Service_Apigee_GoogleCloudApigeeV1Attribute - */ - public function setValue($value) - { - $this->value = $value; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1Attribute - */ - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ResourceConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ResourceConfig.php deleted file mode 100644 index 78e513c8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ResourceConfig.php +++ /dev/null @@ -1,39 +0,0 @@ -location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ResourceFile.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ResourceFile.php deleted file mode 100644 index f44c77ab..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ResourceFile.php +++ /dev/null @@ -1,39 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ResourceFiles.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ResourceFiles.php deleted file mode 100644 index 3f361649..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ResourceFiles.php +++ /dev/null @@ -1,38 +0,0 @@ -resourceFile = $resourceFile; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1ResourceFile - */ - public function getResourceFile() - { - return $this->resourceFile; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Result.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Result.php deleted file mode 100644 index 4fdd9a06..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Result.php +++ /dev/null @@ -1,136 +0,0 @@ - "ActionResult", - ); - public $actionResult; - protected $accessListType = 'Google_Service_Apigee_GoogleCloudApigeeV1Access'; - protected $accessListDataType = 'array'; - public $content; - protected $headersType = 'Google_Service_Apigee_GoogleCloudApigeeV1Property'; - protected $headersDataType = 'array'; - protected $propertiesType = 'Google_Service_Apigee_GoogleCloudApigeeV1Properties'; - protected $propertiesDataType = ''; - public $reasonPhrase; - public $statusCode; - public $timestamp; - public $uRI; - public $verb; - - public function setActionResult($actionResult) - { - $this->actionResult = $actionResult; - } - public function getActionResult() - { - return $this->actionResult; - } - /** - * @param Google_Service_Apigee_GoogleCloudApigeeV1Access - */ - public function setAccessList($accessList) - { - $this->accessList = $accessList; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1Access - */ - public function getAccessList() - { - return $this->accessList; - } - public function setContent($content) - { - $this->content = $content; - } - public function getContent() - { - return $this->content; - } - /** - * @param Google_Service_Apigee_GoogleCloudApigeeV1Property - */ - public function setHeaders($headers) - { - $this->headers = $headers; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1Property - */ - public function getHeaders() - { - return $this->headers; - } - /** - * @param Google_Service_Apigee_GoogleCloudApigeeV1Properties - */ - public function setProperties(Google_Service_Apigee_GoogleCloudApigeeV1Properties $properties) - { - $this->properties = $properties; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1Properties - */ - public function getProperties() - { - return $this->properties; - } - public function setReasonPhrase($reasonPhrase) - { - $this->reasonPhrase = $reasonPhrase; - } - public function getReasonPhrase() - { - return $this->reasonPhrase; - } - public function setStatusCode($statusCode) - { - $this->statusCode = $statusCode; - } - public function getStatusCode() - { - return $this->statusCode; - } - public function setTimestamp($timestamp) - { - $this->timestamp = $timestamp; - } - public function getTimestamp() - { - return $this->timestamp; - } - public function setURI($uRI) - { - $this->uRI = $uRI; - } - public function getURI() - { - return $this->uRI; - } - public function setVerb($verb) - { - $this->verb = $verb; - } - public function getVerb() - { - return $this->verb; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Schema.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Schema.php deleted file mode 100644 index a06e4cf9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Schema.php +++ /dev/null @@ -1,63 +0,0 @@ -dimensions = $dimensions; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1SchemaSchemaElement - */ - public function getDimensions() - { - return $this->dimensions; - } - public function setMeta($meta) - { - $this->meta = $meta; - } - public function getMeta() - { - return $this->meta; - } - /** - * @param Google_Service_Apigee_GoogleCloudApigeeV1SchemaSchemaElement - */ - public function setMetrics($metrics) - { - $this->metrics = $metrics; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1SchemaSchemaElement - */ - public function getMetrics() - { - return $this->metrics; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1SchemaSchemaElement.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1SchemaSchemaElement.php deleted file mode 100644 index f34737e0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1SchemaSchemaElement.php +++ /dev/null @@ -1,46 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Apigee_GoogleCloudApigeeV1SchemaSchemaProperty - */ - public function setProperties(Google_Service_Apigee_GoogleCloudApigeeV1SchemaSchemaProperty $properties) - { - $this->properties = $properties; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1SchemaSchemaProperty - */ - public function getProperties() - { - return $this->properties; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1SchemaSchemaProperty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1SchemaSchemaProperty.php deleted file mode 100644 index 40e38472..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1SchemaSchemaProperty.php +++ /dev/null @@ -1,48 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setCustom($custom) - { - $this->custom = $custom; - } - public function getCustom() - { - return $this->custom; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ServiceIssuersMapping.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ServiceIssuersMapping.php deleted file mode 100644 index 395147ed..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1ServiceIssuersMapping.php +++ /dev/null @@ -1,40 +0,0 @@ -emailIds = $emailIds; - } - public function getEmailIds() - { - return $this->emailIds; - } - public function setService($service) - { - $this->service = $service; - } - public function getService() - { - return $this->service; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Sesssion.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Sesssion.php deleted file mode 100644 index 27f27168..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Sesssion.php +++ /dev/null @@ -1,39 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setTimestampMs($timestampMs) - { - $this->timestampMs = $timestampMs; - } - public function getTimestampMs() - { - return $this->timestampMs; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1SharedFlow.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1SharedFlow.php deleted file mode 100644 index 01e5dc31..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1SharedFlow.php +++ /dev/null @@ -1,65 +0,0 @@ -latestRevisionId = $latestRevisionId; - } - public function getLatestRevisionId() - { - return $this->latestRevisionId; - } - /** - * @param Google_Service_Apigee_GoogleCloudApigeeV1EntityMetadata - */ - public function setMetaData(Google_Service_Apigee_GoogleCloudApigeeV1EntityMetadata $metaData) - { - $this->metaData = $metaData; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1EntityMetadata - */ - public function getMetaData() - { - return $this->metaData; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setRevision($revision) - { - $this->revision = $revision; - } - public function getRevision() - { - return $this->revision; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1SharedFlowRevision.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1SharedFlowRevision.php deleted file mode 100644 index 2d14d09e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1SharedFlowRevision.php +++ /dev/null @@ -1,153 +0,0 @@ -configurationVersion = $configurationVersion; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1ConfigVersion - */ - public function getConfigurationVersion() - { - return $this->configurationVersion; - } - public function setContextInfo($contextInfo) - { - $this->contextInfo = $contextInfo; - } - public function getContextInfo() - { - return $this->contextInfo; - } - public function setCreatedAt($createdAt) - { - $this->createdAt = $createdAt; - } - public function getCreatedAt() - { - return $this->createdAt; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setEntityMetaDataAsProperties($entityMetaDataAsProperties) - { - $this->entityMetaDataAsProperties = $entityMetaDataAsProperties; - } - public function getEntityMetaDataAsProperties() - { - return $this->entityMetaDataAsProperties; - } - public function setLastModifiedAt($lastModifiedAt) - { - $this->lastModifiedAt = $lastModifiedAt; - } - public function getLastModifiedAt() - { - return $this->lastModifiedAt; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPolicies($policies) - { - $this->policies = $policies; - } - public function getPolicies() - { - return $this->policies; - } - /** - * @param Google_Service_Apigee_GoogleCloudApigeeV1ResourceFiles - */ - public function setResourceFiles(Google_Service_Apigee_GoogleCloudApigeeV1ResourceFiles $resourceFiles) - { - $this->resourceFiles = $resourceFiles; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1ResourceFiles - */ - public function getResourceFiles() - { - return $this->resourceFiles; - } - public function setResources($resources) - { - $this->resources = $resources; - } - public function getResources() - { - return $this->resources; - } - public function setRevision($revision) - { - $this->revision = $revision; - } - public function getRevision() - { - return $this->revision; - } - public function setSharedFlows($sharedFlows) - { - $this->sharedFlows = $sharedFlows; - } - public function getSharedFlows() - { - return $this->sharedFlows; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Stats.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Stats.php deleted file mode 100644 index 3640d4d3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Stats.php +++ /dev/null @@ -1,54 +0,0 @@ -environments = $environments; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1StatsEnvironmentStats - */ - public function getEnvironments() - { - return $this->environments; - } - /** - * @param Google_Service_Apigee_GoogleCloudApigeeV1Metadata - */ - public function setMetaData(Google_Service_Apigee_GoogleCloudApigeeV1Metadata $metaData) - { - $this->metaData = $metaData; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1Metadata - */ - public function getMetaData() - { - return $this->metaData; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1StatsEnvironmentStats.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1StatsEnvironmentStats.php deleted file mode 100644 index 3508a41e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1StatsEnvironmentStats.php +++ /dev/null @@ -1,63 +0,0 @@ -dimensions = $dimensions; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1DimensionMetric - */ - public function getDimensions() - { - return $this->dimensions; - } - /** - * @param Google_Service_Apigee_GoogleCloudApigeeV1Metric - */ - public function setMetrics($metrics) - { - $this->metrics = $metrics; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1Metric - */ - public function getMetrics() - { - return $this->metrics; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Subscription.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Subscription.php deleted file mode 100644 index a84b1b99..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1Subscription.php +++ /dev/null @@ -1,30 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1SyncAuthorization.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1SyncAuthorization.php deleted file mode 100644 index b4700421..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1SyncAuthorization.php +++ /dev/null @@ -1,40 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setIdentities($identities) - { - $this->identities = $identities; - } - public function getIdentities() - { - return $this->identities; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1TargetServer.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1TargetServer.php deleted file mode 100644 index 34123cc6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1TargetServer.php +++ /dev/null @@ -1,82 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setHost($host) - { - $this->host = $host; - } - public function getHost() - { - return $this->host; - } - public function setIsEnabled($isEnabled) - { - $this->isEnabled = $isEnabled; - } - public function getIsEnabled() - { - return $this->isEnabled; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPort($port) - { - $this->port = $port; - } - public function getPort() - { - return $this->port; - } - /** - * @param Google_Service_Apigee_GoogleCloudApigeeV1TlsInfo - */ - public function setSSLInfo(Google_Service_Apigee_GoogleCloudApigeeV1TlsInfo $sSLInfo) - { - $this->sSLInfo = $sSLInfo; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1TlsInfo - */ - public function getSSLInfo() - { - return $this->sSLInfo; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1TargetServerConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1TargetServerConfig.php deleted file mode 100644 index 8f1d7f33..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1TargetServerConfig.php +++ /dev/null @@ -1,64 +0,0 @@ -host = $host; - } - public function getHost() - { - return $this->host; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPort($port) - { - $this->port = $port; - } - public function getPort() - { - return $this->port; - } - /** - * @param Google_Service_Apigee_GoogleCloudApigeeV1TlsInfoConfig - */ - public function setTlsInfo(Google_Service_Apigee_GoogleCloudApigeeV1TlsInfoConfig $tlsInfo) - { - $this->tlsInfo = $tlsInfo; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1TlsInfoConfig - */ - public function getTlsInfo() - { - return $this->tlsInfo; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1TlsInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1TlsInfo.php deleted file mode 100644 index 28b81427..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1TlsInfo.php +++ /dev/null @@ -1,110 +0,0 @@ -ciphers = $ciphers; - } - public function getCiphers() - { - return $this->ciphers; - } - public function setClientAuthEnabled($clientAuthEnabled) - { - $this->clientAuthEnabled = $clientAuthEnabled; - } - public function getClientAuthEnabled() - { - return $this->clientAuthEnabled; - } - /** - * @param Google_Service_Apigee_GoogleCloudApigeeV1TlsInfoCommonName - */ - public function setCommonName(Google_Service_Apigee_GoogleCloudApigeeV1TlsInfoCommonName $commonName) - { - $this->commonName = $commonName; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1TlsInfoCommonName - */ - public function getCommonName() - { - return $this->commonName; - } - public function setEnabled($enabled) - { - $this->enabled = $enabled; - } - public function getEnabled() - { - return $this->enabled; - } - public function setIgnoreValidationErrors($ignoreValidationErrors) - { - $this->ignoreValidationErrors = $ignoreValidationErrors; - } - public function getIgnoreValidationErrors() - { - return $this->ignoreValidationErrors; - } - public function setKeyAlias($keyAlias) - { - $this->keyAlias = $keyAlias; - } - public function getKeyAlias() - { - return $this->keyAlias; - } - public function setKeyStore($keyStore) - { - $this->keyStore = $keyStore; - } - public function getKeyStore() - { - return $this->keyStore; - } - public function setProtocols($protocols) - { - $this->protocols = $protocols; - } - public function getProtocols() - { - return $this->protocols; - } - public function setTrustStore($trustStore) - { - $this->trustStore = $trustStore; - } - public function getTrustStore() - { - return $this->trustStore; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1TlsInfoCommonName.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1TlsInfoCommonName.php deleted file mode 100644 index f61bfb2c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1TlsInfoCommonName.php +++ /dev/null @@ -1,39 +0,0 @@ -value = $value; - } - public function getValue() - { - return $this->value; - } - public function setWildcardMatch($wildcardMatch) - { - $this->wildcardMatch = $wildcardMatch; - } - public function getWildcardMatch() - { - return $this->wildcardMatch; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1TlsInfoConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1TlsInfoConfig.php deleted file mode 100644 index 689e7954..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleCloudApigeeV1TlsInfoConfig.php +++ /dev/null @@ -1,117 +0,0 @@ -ciphers = $ciphers; - } - public function getCiphers() - { - return $this->ciphers; - } - public function setClientAuthEnabled($clientAuthEnabled) - { - $this->clientAuthEnabled = $clientAuthEnabled; - } - public function getClientAuthEnabled() - { - return $this->clientAuthEnabled; - } - /** - * @param Google_Service_Apigee_GoogleCloudApigeeV1CommonNameConfig - */ - public function setCommonName(Google_Service_Apigee_GoogleCloudApigeeV1CommonNameConfig $commonName) - { - $this->commonName = $commonName; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1CommonNameConfig - */ - public function getCommonName() - { - return $this->commonName; - } - public function setEnabled($enabled) - { - $this->enabled = $enabled; - } - public function getEnabled() - { - return $this->enabled; - } - public function setIgnoreValidationErrors($ignoreValidationErrors) - { - $this->ignoreValidationErrors = $ignoreValidationErrors; - } - public function getIgnoreValidationErrors() - { - return $this->ignoreValidationErrors; - } - public function setKeyAlias($keyAlias) - { - $this->keyAlias = $keyAlias; - } - public function getKeyAlias() - { - return $this->keyAlias; - } - /** - * @param Google_Service_Apigee_GoogleCloudApigeeV1KeyAliasReference - */ - public function setKeyAliasReference(Google_Service_Apigee_GoogleCloudApigeeV1KeyAliasReference $keyAliasReference) - { - $this->keyAliasReference = $keyAliasReference; - } - /** - * @return Google_Service_Apigee_GoogleCloudApigeeV1KeyAliasReference - */ - public function getKeyAliasReference() - { - return $this->keyAliasReference; - } - public function setProtocols($protocols) - { - $this->protocols = $protocols; - } - public function getProtocols() - { - return $this->protocols; - } - public function setTrustStore($trustStore) - { - $this->trustStore = $trustStore; - } - public function getTrustStore() - { - return $this->trustStore; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleIamV1AuditConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleIamV1AuditConfig.php deleted file mode 100644 index d73799f9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleIamV1AuditConfig.php +++ /dev/null @@ -1,47 +0,0 @@ -auditLogConfigs = $auditLogConfigs; - } - /** - * @return Google_Service_Apigee_GoogleIamV1AuditLogConfig - */ - public function getAuditLogConfigs() - { - return $this->auditLogConfigs; - } - public function setService($service) - { - $this->service = $service; - } - public function getService() - { - return $this->service; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleIamV1AuditLogConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleIamV1AuditLogConfig.php deleted file mode 100644 index 4f1073cc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleIamV1AuditLogConfig.php +++ /dev/null @@ -1,40 +0,0 @@ -exemptedMembers = $exemptedMembers; - } - public function getExemptedMembers() - { - return $this->exemptedMembers; - } - public function setLogType($logType) - { - $this->logType = $logType; - } - public function getLogType() - { - return $this->logType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleIamV1Binding.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleIamV1Binding.php deleted file mode 100644 index 54a27254..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleIamV1Binding.php +++ /dev/null @@ -1,56 +0,0 @@ -condition = $condition; - } - /** - * @return Google_Service_Apigee_GoogleTypeExpr - */ - public function getCondition() - { - return $this->condition; - } - public function setMembers($members) - { - $this->members = $members; - } - public function getMembers() - { - return $this->members; - } - public function setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleIamV1Policy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleIamV1Policy.php deleted file mode 100644 index 2392e648..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleIamV1Policy.php +++ /dev/null @@ -1,72 +0,0 @@ -auditConfigs = $auditConfigs; - } - /** - * @return Google_Service_Apigee_GoogleIamV1AuditConfig - */ - public function getAuditConfigs() - { - return $this->auditConfigs; - } - /** - * @param Google_Service_Apigee_GoogleIamV1Binding - */ - public function setBindings($bindings) - { - $this->bindings = $bindings; - } - /** - * @return Google_Service_Apigee_GoogleIamV1Binding - */ - public function getBindings() - { - return $this->bindings; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleIamV1SetIamPolicyRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleIamV1SetIamPolicyRequest.php deleted file mode 100644 index d5910e65..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleIamV1SetIamPolicyRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -policy = $policy; - } - /** - * @return Google_Service_Apigee_GoogleIamV1Policy - */ - public function getPolicy() - { - return $this->policy; - } - public function setUpdateMask($updateMask) - { - $this->updateMask = $updateMask; - } - public function getUpdateMask() - { - return $this->updateMask; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleIamV1TestIamPermissionsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleIamV1TestIamPermissionsRequest.php deleted file mode 100644 index a3bc0542..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleIamV1TestIamPermissionsRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleIamV1TestIamPermissionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleIamV1TestIamPermissionsResponse.php deleted file mode 100644 index cc698868..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleIamV1TestIamPermissionsResponse.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleLongrunningCancelOperationRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleLongrunningCancelOperationRequest.php deleted file mode 100644 index e145e083..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleLongrunningCancelOperationRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Apigee_GoogleLongrunningOperation - */ - public function setOperations($operations) - { - $this->operations = $operations; - } - /** - * @return Google_Service_Apigee_GoogleLongrunningOperation - */ - public function getOperations() - { - return $this->operations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleLongrunningOperation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleLongrunningOperation.php deleted file mode 100644 index 3fb15b97..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleLongrunningOperation.php +++ /dev/null @@ -1,73 +0,0 @@ -done = $done; - } - public function getDone() - { - return $this->done; - } - /** - * @param Google_Service_Apigee_GoogleRpcStatus - */ - public function setError(Google_Service_Apigee_GoogleRpcStatus $error) - { - $this->error = $error; - } - /** - * @return Google_Service_Apigee_GoogleRpcStatus - */ - public function getError() - { - return $this->error; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleProtobufEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleProtobufEmpty.php deleted file mode 100644 index d97570ca..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleProtobufEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleTypeExpr.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleTypeExpr.php deleted file mode 100644 index 728c6510..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/GoogleTypeExpr.php +++ /dev/null @@ -1,57 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setExpression($expression) - { - $this->expression = $expression; - } - public function getExpression() - { - return $this->expression; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/Hybrid.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/Hybrid.php deleted file mode 100644 index 252f1050..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/Hybrid.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $apigeeService = new Google_Service_Apigee(...); - * $hybrid = $apigeeService->hybrid; - * - */ -class Google_Service_Apigee_Resource_Hybrid extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/HybridIssuers.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/HybridIssuers.php deleted file mode 100644 index 7db99be2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/HybridIssuers.php +++ /dev/null @@ -1,44 +0,0 @@ - - * $apigeeService = new Google_Service_Apigee(...); - * $issuers = $apigeeService->issuers; - * - */ -class Google_Service_Apigee_Resource_HybridIssuers extends Google_Service_Resource -{ - /** - * Lists hybrid services and its trusted issuers service account ids. This api - * is authenticated and unauthorized(allow all the users) and used by runtime - * authn-authz service to query control plane's issuer service account ids. - * (issuers.listHybridIssuers) - * - * @param string $name Required. Must be of the form `hybrid/issuers`. - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1ListHybridIssuersResponse - */ - public function listHybridIssuers($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1ListHybridIssuersResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/Organizations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/Organizations.php deleted file mode 100644 index 4161dd75..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/Organizations.php +++ /dev/null @@ -1,137 +0,0 @@ - - * $apigeeService = new Google_Service_Apigee(...); - * $organizations = $apigeeService->organizations; - * - */ -class Google_Service_Apigee_Resource_Organizations extends Google_Service_Resource -{ - /** - * Creates an Organization. Only Name and Analytics Region will be used from the - * request body. (organizations.create) - * - * @param Google_Service_Apigee_GoogleCloudApigeeV1Organization $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string parent Required. The name of the project in which to - * associate the organization. Values are of the form `projects/`. - * @return Google_Service_Apigee_GoogleLongrunningOperation - */ - public function create(Google_Service_Apigee_GoogleCloudApigeeV1Organization $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Apigee_GoogleLongrunningOperation"); - } - /** - * Gets an Organization. (organizations.get) - * - * @param string $name Required. Organization resource name of the form: - * `organizations/{organization_id}` - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1Organization - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1Organization"); - } - /** - * Gets an Organization's. (organizations.getSyncAuthorization) - * - * @param string $name Required. Organization resource name of the form: - * `organizations/{organization_id}` - * @param Google_Service_Apigee_GoogleCloudApigeeV1GetSyncAuthorizationRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1SyncAuthorization - */ - public function getSyncAuthorization($name, Google_Service_Apigee_GoogleCloudApigeeV1GetSyncAuthorizationRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('getSyncAuthorization', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1SyncAuthorization"); - } - /** - * Lists the Apigee organizations, and the related projects that a user has - * permissions for. This call will be used by the Unified Experience in order to - * populate the list of Apigee organizations in a dropdown that the user has - * access to. (organizations.listOrganizations) - * - * @param string $parent Required. Must be of the form `organizations`. - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1ListOrganizationsResponse - */ - public function listOrganizations($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1ListOrganizationsResponse"); - } - /** - * Updates an Organization's. (organizations.setSyncAuthorization) - * - * @param string $name Required. Organization resource name of the form: - * `organizations/{organization_id}` - * @param Google_Service_Apigee_GoogleCloudApigeeV1SyncAuthorization $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1SyncAuthorization - */ - public function setSyncAuthorization($name, Google_Service_Apigee_GoogleCloudApigeeV1SyncAuthorization $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setSyncAuthorization', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1SyncAuthorization"); - } - /** - * Updates an Organization's properties. No other fields will be updated. - * (organizations.update) - * - * @param string $name Required. Organization resource name of the form: - * `organizations/{organization_id}` - * @param Google_Service_Apigee_GoogleCloudApigeeV1Organization $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1Organization - */ - public function update($name, Google_Service_Apigee_GoogleCloudApigeeV1Organization $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1Organization"); - } - /** - * Updates an Organization's properties. No other fields will be updated. - * (organizations.updateOrganization) - * - * @param string $name Required. Organization resource name of the form: - * `organizations/{organization_id}` - * @param Google_Service_Apigee_GoogleCloudApigeeV1Organization $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1Organization - */ - public function updateOrganization($name, Google_Service_Apigee_GoogleCloudApigeeV1Organization $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updateOrganization', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1Organization"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsApiproducts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsApiproducts.php deleted file mode 100644 index 9179d6b1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsApiproducts.php +++ /dev/null @@ -1,197 +0,0 @@ - - * $apigeeService = new Google_Service_Apigee(...); - * $apiproducts = $apigeeService->apiproducts; - * - */ -class Google_Service_Apigee_Resource_OrganizationsApiproducts extends Google_Service_Resource -{ - /** - * Updates or creates API product attributes. This API **replaces** the current - * list of attributes with the attributes specified in the request body. In this - * way, you can update existing attributes, add new attributes, or delete - * existing attributes by omitting them from the request body. - * - * OAuth access tokens and Key Management Service (KMS) entities (apps, - * developers, and API products) are cached for 180 seconds (current default). - * Any custom attributes associated with entities also get cached for at least - * 180 seconds after entity is accessed during runtime. In this case, the - * `ExpiresIn` element on the OAuthV2 policy won't be able to expire an access - * token in less than 180 seconds. (apiproducts.attributes) - * - * @param string $name **Required.** API product name in the following form: - * organizations/organization_ID/apiproducts/api_product_name - * @param Google_Service_Apigee_GoogleCloudApigeeV1Attributes $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1Attributes - */ - public function attributes($name, Google_Service_Apigee_GoogleCloudApigeeV1Attributes $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('attributes', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1Attributes"); - } - /** - * Creates an API product in an organization. You create API products after you - * have proxied backend services using API proxies. An API product is a - * collection of API resources combined with quota settings and metadata that - * you can use to deliver customized and productized API bundles to your - * developer community. This metadata can include: - * - * - Scope - Environments - API proxies - Extensible profile - * - * API products enable you repackage APIs on-the-fly, without having to do any - * additional coding or configuration. Apigee recommends that you start with a - * simple API product including only required elements. You then provision - * credentials to apps to enable them to start testing your APIs. - * - * After you have authentication and authorization working against a simple API - * product, you can iterate to create finer grained API products, defining - * different sets of API resources for each API product. - * - * WARNING: - * - * - If you don't specify an API proxy in the request body, any app associated - * with the product can make calls to any API in your entire organization. - If - * you don't specify an environment in the request body, the product allows - * access to all environments. - * - * For more information, see {{what_api_product}} (apiproducts.create) - * - * @param string $parent Required. The parent organization name under which the - * API product will be created. Must be in the following form: - * organizations/organization_ID - * @param Google_Service_Apigee_GoogleCloudApigeeV1ApiProduct $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1ApiProduct - */ - public function create($parent, Google_Service_Apigee_GoogleCloudApigeeV1ApiProduct $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1ApiProduct"); - } - /** - * Deletes an API product from an organization. - * - * Deleting an API product causes app requests to the resource URIs defined in - * the API product to fail. - * - * Ensure that you create a new API product to serve existing apps, unless your - * intention is to disable access to the resources defined in the API product. - * - * The API product name required in the request URL is the internal name of the - * product, not the display name. While they may be the same, it depends on - * whether the API product was created via the UI or the API. View the list of - * API products to verify the internal name. (apiproducts.delete) - * - * @param string $name Required. API product name in the following form: - * organizations/organization_ID/apiproducts/api_product_name - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1ApiProduct - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1ApiProduct"); - } - /** - * Gets configuration details for an API product. - * - * The API product name required in the request URL is the internal name of the - * product, not the display name. While they may be the same, it depends on - * whether the API product was created via the UI or the API. View the list of - * API products to verify the internal name. (apiproducts.get) - * - * @param string $name **Required.** API product name in the following form: - * organizations/organization_ID/apiproducts/api_product_name - * @param array $optParams Optional parameters. - * - * @opt_param string query The type of query. Possible values are: - * - * - `count`: Gets an entity count - `list`: Gets a list of entities - * @opt_param string entity The type of entity for which you want to get a - * count. Possible values are: - * - * - `apps` - `companies` - `developers` - `keys` - * @return Google_Service_Apigee_GoogleCloudApigeeV1ApiProduct - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1ApiProduct"); - } - /** - * Lists all API product names for an organization. Filter the list by passing - * an `attributename` and `attibutevalue`. - * - * The limit on the number of API products returned by the API is 1000. You can - * paginate the list of API products returned using the `startKey` and `count` - * query parameters. (apiproducts.listOrganizationsApiproducts) - * - * @param string $parent **Required.** The parent organization name in the - * following form: organizations/organization_ID - * @param array $optParams Optional parameters. - * - * @opt_param string attributename The name of the attribute to search. - * @opt_param string count Enter the number of API products you want returned in - * the API call. The limit is 1000. - * @opt_param string startKey Gets a list of API products starting with a - * specific API product in the list. For example, if you're returning 50 API - * products at a time (using the `count` query parameter), you can view products - * 50-99 by entering the name of the 50th API product in the first API (without - * using `startKey`). Product name is case sensitive. - * @opt_param bool expand Set to `true` to get expanded details about each API. - * @opt_param string attributevalue The value of the attribute. - * @return Google_Service_Apigee_GoogleCloudApigeeV1ListApiProductsResponse - */ - public function listOrganizationsApiproducts($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1ListApiProductsResponse"); - } - /** - * Updates an existing API product. You must include all required values, - * whether or not you are updating them, as well as any optional values that you - * are updating. - * - * The API product name required in the request URL is the internal name of the - * product, not the Display Name. While they may be the same, it depends on - * whether the API product was created via UI or API. View the list of API - * products to identify their internal names. (apiproducts.update) - * - * @param string $name **Required.** API product name in the following form: - * organizations/organization_ID/apiproducts/api_product_name - * @param Google_Service_Apigee_GoogleCloudApigeeV1ApiProduct $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1ApiProduct - */ - public function update($name, Google_Service_Apigee_GoogleCloudApigeeV1ApiProduct $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1ApiProduct"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsApiproductsAttributes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsApiproductsAttributes.php deleted file mode 100644 index 2fc0d9ef..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsApiproductsAttributes.php +++ /dev/null @@ -1,95 +0,0 @@ - - * $apigeeService = new Google_Service_Apigee(...); - * $attributes = $apigeeService->attributes; - * - */ -class Google_Service_Apigee_Resource_OrganizationsApiproductsAttributes extends Google_Service_Resource -{ - /** - * Deletes an API product attribute. (attributes.delete) - * - * @param string $name **Required.** API product name in the following form: org - * anizations/organization_ID/apiproducts/api_product_name/attributes/attribute_ - * name - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1Attribute - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1Attribute"); - } - /** - * Returns the value of an API product attribute. (attributes.get) - * - * @param string $name **Required.** API product name in the following form: org - * anizations/organization_ID/apiproducts/api_product_name/attributes/attribute_ - * name - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1Attribute - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1Attribute"); - } - /** - * Returns a list of all API product attributes. - * (attributes.listOrganizationsApiproductsAttributes) - * - * @param string $parent Required. The parent organization name. Must be in the - * following form: organizations/organization_ID/apiproducts/api_product_name - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1Attributes - */ - public function listOrganizationsApiproductsAttributes($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1Attributes"); - } - /** - * Updates the value of an API product attribute. Limitations are: - * - * OAuth access tokens and Key Management Service (KMS) entities (apps, - * developers, and API products) are cached for 180 seconds (current default). - * Any custom attributes associated with entities also get cached for at least - * 180 seconds after entity is accessed during runtime. In this case, the - * `ExpiresIn` element on the OAuthV2 policy won't be able to expire an access - * token in less than 180 seconds. (attributes.updateApiProductAttribute) - * - * @param string $name **Required.** API product name in the following form: - * organizations/organization_ID/apiproducts/api_product_name - * @param Google_Service_Apigee_GoogleCloudApigeeV1Attribute $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1Attribute - */ - public function updateApiProductAttribute($name, Google_Service_Apigee_GoogleCloudApigeeV1Attribute $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updateApiProductAttribute', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1Attribute"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsApis.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsApis.php deleted file mode 100644 index 5d62a045..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsApis.php +++ /dev/null @@ -1,124 +0,0 @@ - - * $apigeeService = new Google_Service_Apigee(...); - * $apis = $apigeeService->apis; - * - */ -class Google_Service_Apigee_Resource_OrganizationsApis extends Google_Service_Resource -{ - /** - * Creates an API proxy. The API proxy created will not be accessible at runtime - * until it is deployed to an environment. - * - * Create a new API proxy by setting the `name` query parameter to the name of - * the API proxy. - * - * Import an API proxy configuration bundle stored in zip format on your local - * machine to your organization by doing the following: - * - * * Set the `name` query parameter to the name of the API proxy. * Set the - * `action` query parameter to `import`. * Set the `Content-Type` header to - * `multipart/form-data`. * Pass as a file the name of API proxy configuration - * bundle stored in zip format on your local machine. - * - * **Note**: To validate the API proxy configuration bundle only without - * importing it, set the `action` query parameter to `validate`. - * - * When importing an API proxy configuration bundle, if the API proxy does not - * exist, it will be created. If the API proxy exists, then a new revision is - * created. Invalid API proxy configurations are rejected, and a list of - * validation errors is returned to the client. (apis.create) - * - * @param string $parent Required. Name of the organization in the following - * format: `organizations/{organization_id}` - * @param Google_Service_Apigee_GoogleApiHttpBody $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string name Name of the API proxy. Restrict the characters used - * to: A-Za-z0-9._- - * @opt_param string action Action to perform when importing an API proxy - * configuration bundle. Set this parameter to one of the following values: - * - * * `import` to import the API proxy configuration bundle. * `validate` to - * validate the API proxy configuration bundle without importing it. - * @opt_param bool validate Ignored. All uploads are validated regardless of the - * value of this field. Maintained for compatibility with Apigee Edge API. - * @return Google_Service_Apigee_GoogleCloudApigeeV1ApiProxyRevision - */ - public function create($parent, Google_Service_Apigee_GoogleApiHttpBody $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1ApiProxyRevision"); - } - /** - * Deletes an API proxy and all associated endpoints, policies, resources, and - * revisions. The API proxy must be undeployed before you can delete it. - * (apis.delete) - * - * @param string $name Required. Name of the API proxy in the following format: - * `organizations/{organization_id}/apis/{api_id}` - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1ApiProxy - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1ApiProxy"); - } - /** - * Gets an API proxy including a list of existing revisions. (apis.get) - * - * @param string $name Required. Name of the API proxy in the following format: - * `organizations/{organization_id}/apis/{api_id}` - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1ApiProxy - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1ApiProxy"); - } - /** - * Lists the names of all API proxies in an organization. The names returned - * correspond to the names defined in the configuration files for each API - * proxy. (apis.listOrganizationsApis) - * - * @param string $parent Required. Name of the organization in the following - * format: `organizations/{organization_id}` - * @param array $optParams Optional parameters. - * - * @opt_param bool includeRevisions Flag that specifies whether to include a - * list of revisions in the response. - * @opt_param bool includeMetaData Flag that specifies whether to include API - * proxy metadata in the response. - * @return Google_Service_Apigee_GoogleCloudApigeeV1ListApiProxiesResponse - */ - public function listOrganizationsApis($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1ListApiProxiesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsApisDeployments.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsApisDeployments.php deleted file mode 100644 index ff2abd3f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsApisDeployments.php +++ /dev/null @@ -1,44 +0,0 @@ - - * $apigeeService = new Google_Service_Apigee(...); - * $deployments = $apigeeService->deployments; - * - */ -class Google_Service_Apigee_Resource_OrganizationsApisDeployments extends Google_Service_Resource -{ - /** - * Lists all deployments of an API proxy. - * (deployments.listOrganizationsApisDeployments) - * - * @param string $parent Required. Name of the API proxy for which to return - * deployment information in the following format: - * `organizations/{org}/apis/{api}` - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1ListDeploymentsResponse - */ - public function listOrganizationsApisDeployments($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1ListDeploymentsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsApisKeyvaluemaps.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsApisKeyvaluemaps.php deleted file mode 100644 index 5a890398..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsApisKeyvaluemaps.php +++ /dev/null @@ -1,74 +0,0 @@ - - * $apigeeService = new Google_Service_Apigee(...); - * $keyvaluemaps = $apigeeService->keyvaluemaps; - * - */ -class Google_Service_Apigee_Resource_OrganizationsApisKeyvaluemaps extends Google_Service_Resource -{ - /** - * Creates a key value map in an api proxy. (keyvaluemaps.create) - * - * @param string $parent Required. The name of the environment in which to - * create the key value map. Must be of the form - * `organizations/{organization}/apis/{api}`. - * @param Google_Service_Apigee_GoogleCloudApigeeV1KeyValueMap $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1KeyValueMap - */ - public function create($parent, Google_Service_Apigee_GoogleCloudApigeeV1KeyValueMap $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1KeyValueMap"); - } - /** - * Delete a key value map in an api proxy. (keyvaluemaps.delete) - * - * @param string $name Required. The name of the key value map. Must be of the - * form `organizations/{organization}/apis/{api}/keyvaluemaps/{keyvaluemap}`. - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1KeyValueMap - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1KeyValueMap"); - } - /** - * List key value maps in an api proxy. - * (keyvaluemaps.listOrganizationsApisKeyvaluemaps) - * - * @param string $parent Required. The name of the environment in which to list - * key value maps. Must be of the form - * `organizations/{organization}/apis/{api}`. - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_ListResponse - */ - public function listOrganizationsApisKeyvaluemaps($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Apigee_ListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsApisRevisions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsApisRevisions.php deleted file mode 100644 index f6a2a449..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsApisRevisions.php +++ /dev/null @@ -1,116 +0,0 @@ - - * $apigeeService = new Google_Service_Apigee(...); - * $revisions = $apigeeService->revisions; - * - */ -class Google_Service_Apigee_Resource_OrganizationsApisRevisions extends Google_Service_Resource -{ - /** - * Deletes an API proxy revision and all policies, resources, endpoints, and - * revisions associated with it. The API proxy revision must be undeployed - * before you can delete it. (revisions.delete) - * - * @param string $name Required. API proxy revision in the following format: - * `organizations/{organization_id}/apis/{api_id}/revisions/{revision_id}` - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1ApiProxyRevision - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1ApiProxyRevision"); - } - /** - * Gets an API proxy revision. - * - * To download the API proxy configuration bundle for the specified revision as - * a zip file, do the following: - * - * Set the `format` query parameter to `bundle`. Set the `Accept` header to - * `application/zip`. - * - * If you are using curl, specify `-o filename.zip` to save the output to a - * file; otherwise, it displays to `stdout`. Then, develop the API proxy - * configuration locally and upload the updated API proxy configuration - * revision, as described in [updateApiProxyRevision](updateApiProxyRevision). - * (revisions.get) - * - * @param string $name Required. API proxy revision in the following format: - * `organizations/{organization_id}/apis/{api_id}/revisions/{revision_id}` - * @param array $optParams Optional parameters. - * - * @opt_param string format Format used when downloading the API proxy - * configuration revision. Set to `bundle` to download the API proxy - * configuration revision as a zip file. - * @return Google_Service_Apigee_GoogleApiHttpBody - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Apigee_GoogleApiHttpBody"); - } - /** - * Lists all revisions for an API proxy. - * (revisions.listOrganizationsApisRevisions) - * - * @param string $parent Required. Name of the API proxy in the following - * format: `organizations/{organization_id}/apis/{api_id}` - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_ListResponse - */ - public function listOrganizationsApisRevisions($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Apigee_ListResponse"); - } - /** - * Updates an existing API proxy revision by uploading the API proxy - * configuration bundle as a zip file from your local machine. - * - * You can update only API proxy revisions that have never been deployed. After - * deployment, an API proxy revision becomes immutable, even if it is - * undeployed. - * - * Set the `Content-Type` header to either `multipart/form-data` or `application - * /octet-stream`. (revisions.updateApiProxyRevision) - * - * @param string $name Required. API proxy revision to update in the following - * format: - * `organizations/{organization_id}/apis/{api_id}/revisions/{revision_id}` - * @param Google_Service_Apigee_GoogleApiHttpBody $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool validate Ignored. All uploads are validated regardless of the - * value of this field. Maintained for compatibility with Apigee Edge API. - * @return Google_Service_Apigee_GoogleCloudApigeeV1ApiProxyRevision - */ - public function updateApiProxyRevision($name, Google_Service_Apigee_GoogleApiHttpBody $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updateApiProxyRevision', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1ApiProxyRevision"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsApisRevisionsDeployments.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsApisRevisionsDeployments.php deleted file mode 100644 index 1f5c76be..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsApisRevisionsDeployments.php +++ /dev/null @@ -1,44 +0,0 @@ - - * $apigeeService = new Google_Service_Apigee(...); - * $deployments = $apigeeService->deployments; - * - */ -class Google_Service_Apigee_Resource_OrganizationsApisRevisionsDeployments extends Google_Service_Resource -{ - /** - * Lists all deployments of an API proxy revision and actual state reported by - * runtime pods. (deployments.listOrganizationsApisRevisionsDeployments) - * - * @param string $parent Required. Name of the API proxy revision for which to - * return deployment information in the following format: - * `organizations/{org}/apis/{api}/revisions/{rev}`. - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1ListDeploymentsResponse - */ - public function listOrganizationsApisRevisionsDeployments($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1ListDeploymentsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsApps.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsApps.php deleted file mode 100644 index dfea4cee..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsApps.php +++ /dev/null @@ -1,76 +0,0 @@ - - * $apigeeService = new Google_Service_Apigee(...); - * $apps = $apigeeService->apps; - * - */ -class Google_Service_Apigee_Resource_OrganizationsApps extends Google_Service_Resource -{ - /** - * Gets the app profile for the specified app ID. (apps.get) - * - * @param string $name Required. App ID in the following format: - * `organizations/{org}/apps/{app}` - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1App - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1App"); - } - /** - * Lists IDs of apps within an organization that have the specified app status - * (approved or revoked) or are of the specified app type (developer or - * company). (apps.listOrganizationsApps) - * - * @param string $parent Required. Resource path of the parent in the following - * format: `organizations/{org}` - * @param array $optParams Optional parameters. - * - * @opt_param string apptype Optional. Filter by the type of the app. Valid - * values are `company` or `developer`. Defaults to `developer`. - * @opt_param bool expand Optional. Flag that specifies whether to return an - * expanded list of apps for the organization. Defaults to `false`. - * @opt_param string keyStatus Optional. Key status of the app. Valid values - * include `approved` or `revoked`. Defaults to `approved`. - * @opt_param string ids Optional. Comma-separated list of app IDs on which to - * filter. - * @opt_param bool includeCred Optional. Flag that specifies whether to include - * credentials in the response. - * @opt_param string rows Optional. Maximum number of app IDs to return. - * Defaults to 10000. - * @opt_param string apiProduct API product. - * @opt_param string startKey Returns the list of apps starting from the - * specified app ID. - * @opt_param string status Optional. Filter by the status of the app. Valid - * values are `approved` or `revoked`. Defaults to `approved`. - * @return Google_Service_Apigee_GoogleCloudApigeeV1ListAppsResponse - */ - public function listOrganizationsApps($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1ListAppsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsCompanies.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsCompanies.php deleted file mode 100644 index f45311df..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsCompanies.php +++ /dev/null @@ -1,118 +0,0 @@ - - * $apigeeService = new Google_Service_Apigee(...); - * $companies = $apigeeService->companies; - * - */ -class Google_Service_Apigee_Resource_OrganizationsCompanies extends Google_Service_Resource -{ - /** - * Creates an app for a company. Note that you must first create a profile for - * the company in your organization before you can register apps that are - * associated with the company. (companies.create) - * - * @param string $parent Name of org that the company will be created in - * `{parent=organizations}` - * @param Google_Service_Apigee_GoogleCloudApigeeV1Company $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1Company - */ - public function create($parent, Google_Service_Apigee_GoogleCloudApigeeV1Company $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1Company"); - } - /** - * Deletes an existing company. (companies.delete) - * - * @param string $name The company resource name - * `organizations/{org}/companies/{company}` - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1Company - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1Company"); - } - /** - * List details for a company. (companies.get) - * - * @param string $name The company resource name - * `organizations/{org}/companies/{company}` - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1Company - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1Company"); - } - /** - * List all companies in an organization, and optionally returns an expanded - * list of companies, displaying a full profile for each company in the - * organization. (companies.listOrganizationsCompanies) - * - * @param string $parent The parent organization name `organizations/{org}` - * @param array $optParams Optional parameters. - * - * @opt_param bool includeDevelopers Optional. include developers in the - * response. - * @opt_param string startKey To filter the keys that are returned, enter the - * email of a developer that the list will start with. - * @opt_param string count Limits the list to the number you specify. The limit - * is 100. - * @opt_param bool expand Set expand to true to return a full profile for each - * company. - * @return Google_Service_Apigee_GoogleCloudApigeeV1ListCompaniesResponse - */ - public function listOrganizationsCompanies($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1ListCompaniesResponse"); - } - /** - * Updates an existing company. Send the complete company record as a payload - * with any changes you want to make. Note that to change the status of the - * Company you use Set the Status of a Company. The attributes in the sample - * payload below apply to company configuration in monetization. For non- - * monetized companies, you need send only displayName. (companies.update) - * - * @param string $name Name of the company to be updated. - * `{name=organizations/companies}` - * @param Google_Service_Apigee_GoogleCloudApigeeV1Company $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string action Specify the status as active or inactive. - * @return Google_Service_Apigee_GoogleCloudApigeeV1Company - */ - public function update($name, Google_Service_Apigee_GoogleCloudApigeeV1Company $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1Company"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsCompaniesApps.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsCompaniesApps.php deleted file mode 100644 index 8119f30b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsCompaniesApps.php +++ /dev/null @@ -1,107 +0,0 @@ - - * $apigeeService = new Google_Service_Apigee(...); - * $apps = $apigeeService->apps; - * - */ -class Google_Service_Apigee_Resource_OrganizationsCompaniesApps extends Google_Service_Resource -{ - /** - * Creates an app for a company. (apps.create) - * - * @param string $parent Resource path of the parent: - * `organizations/{org}/companies/{company_name}` - * @param Google_Service_Apigee_GoogleCloudApigeeV1CompanyApp $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1CompanyApp - */ - public function create($parent, Google_Service_Apigee_GoogleCloudApigeeV1CompanyApp $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1CompanyApp"); - } - /** - * Deletes a company app. (apps.delete) - * - * @param string $name name of the app resource: - * `organizations/{org}/companies/{company_name}/apps/{app_name}` - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1CompanyApp - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1CompanyApp"); - } - /** - * Gets the profile of a specific company app. (apps.get) - * - * @param string $name name of the app resource: - * `organizations/{org}/companies/{company_name}/apps/{app_name}` - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1CompanyApp - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1CompanyApp"); - } - /** - * List company apps in an organization. You can optionally expand the response - * to include the profile for each app. (apps.listOrganizationsCompaniesApps) - * - * @param string $parent The name of a company resource: - * `organizations/{org}/companies/{company_name}` - * @param array $optParams Optional parameters. - * - * @opt_param string count Limits the list to the number you specify. The limit - * is 100. - * @opt_param bool expand Set expand to true to return a full profile - * @opt_param string startKey Lets you return a list of app starting with a - * specific app name in the list. - * @return Google_Service_Apigee_GoogleCloudApigeeV1ListCompanyAppsResponse - */ - public function listOrganizationsCompaniesApps($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1ListCompanyAppsResponse"); - } - /** - * Updates an existing company app. (apps.update) - * - * @param string $name Resource path of the app: - * `organizations/{org}/companies/{company_name}/apps/{app_name}` - * @param Google_Service_Apigee_GoogleCloudApigeeV1CompanyApp $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1CompanyApp - */ - public function update($name, Google_Service_Apigee_GoogleCloudApigeeV1CompanyApp $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1CompanyApp"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsCompaniesAppsKeys.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsCompaniesAppsKeys.php deleted file mode 100644 index 7e6411ad..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsCompaniesAppsKeys.php +++ /dev/null @@ -1,79 +0,0 @@ - - * $apigeeService = new Google_Service_Apigee(...); - * $keys = $apigeeService->keys; - * - */ -class Google_Service_Apigee_Resource_OrganizationsCompaniesAppsKeys extends Google_Service_Resource -{ - /** - * Deletes a key for a company app and removes all API products associated with - * the app. The key can no longer be used to access any APIs. (keys.delete) - * - * @param string $name Resource name of a company app key - * `organizations/{org}/companies/{company}/apps/{app}/keys/{key}` - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1CompanyAppKey - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1CompanyAppKey"); - } - /** - * Gets information about the consumer key issued to a specific company app. - * (keys.get) - * - * @param string $name Resource name of a company app key - * `organizations/{org}/companies/{company}/apps/{app}/keys/{key}` - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1CompanyAppKey - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1CompanyAppKey"); - } - /** - * Updates an existing company app key to add additional API products or - * attributes. Note that only a single API product can be resolved per app key - * at runtime. API products are resolved by name, in alphabetical order. The - * first API product found in the list will be returned. - * (keys.updateCompanyAppKey) - * - * @param string $name Resource name of a company app key - * `organizations/{org}/companies/{company}/apps/{app}/keys/{key}` - * @param Google_Service_Apigee_GoogleCloudApigeeV1CompanyAppKey $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string action Set action to approve or revoke. - * @return Google_Service_Apigee_GoogleCloudApigeeV1CompanyAppKey - */ - public function updateCompanyAppKey($name, Google_Service_Apigee_GoogleCloudApigeeV1CompanyAppKey $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updateCompanyAppKey', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1CompanyAppKey"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsDeployments.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsDeployments.php deleted file mode 100644 index a5c978e3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsDeployments.php +++ /dev/null @@ -1,48 +0,0 @@ - - * $apigeeService = new Google_Service_Apigee(...); - * $deployments = $apigeeService->deployments; - * - */ -class Google_Service_Apigee_Resource_OrganizationsDeployments extends Google_Service_Resource -{ - /** - * Lists all deployments of API proxies or shared flows. - * (deployments.listOrganizationsDeployments) - * - * @param string $parent Required. Name of the organization for which to return - * deployment information in the following format: `organizations/{org}` - * @param array $optParams Optional parameters. - * - * @opt_param bool sharedFlows Optional. Flag that specifies whether to return - * shared flow or API proxy deployments. Set to `true` to return shared flow - * deployments; set to `false` to return API proxy deployments. Defaults to - * `false`. - * @return Google_Service_Apigee_GoogleCloudApigeeV1ListDeploymentsResponse - */ - public function listOrganizationsDeployments($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1ListDeploymentsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsDevelopers.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsDevelopers.php deleted file mode 100644 index f32300a1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsDevelopers.php +++ /dev/null @@ -1,191 +0,0 @@ - - * $apigeeService = new Google_Service_Apigee(...); - * $developers = $apigeeService->developers; - * - */ -class Google_Service_Apigee_Resource_OrganizationsDevelopers extends Google_Service_Resource -{ - /** - * Updates or creates developer attributes.This API replaces the current list of - * attributes with the attributes specified in the request body. This lets you - * update existing attributes, add new attributes, or delete existing attributes - * by omitting them from the request body. the attribute limit is 18. Core - * Persistence Services caching minimum: OAuth access tokens and Key Management - * Service (KMS) entities (Apps, Developers, API Products) are cached for 180 - * seconds. Any custom attributes associated with entities also get cached for - * at least 180 seconds after entity is accessed during runtime. This also means - * the ExpiresIn element on the OAuthV2 policy won't be able to expire an access - * token in less than 180 seconds. (developers.attributes) - * - * @param string $parent Required. The parent developer for which attributes are - * being updated. Must be of the form - * `organizations/{org}/developers/{developer}` - * @param Google_Service_Apigee_GoogleCloudApigeeV1Attributes $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1Attributes - */ - public function attributes($parent, Google_Service_Apigee_GoogleCloudApigeeV1Attributes $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('attributes', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1Attributes"); - } - /** - * Creates a profile for a developer in an organization. Once created, the - * developer can register an app and receive an API key. The developer is always - * created with a status of active. To set the status explicitly, use - * SetDeveloperStatus (developers.create) - * - * @param string $parent Required. The parent organization name under which the - * Developer will be created. Must be of the form `organizations/{org}`. - * @param Google_Service_Apigee_GoogleCloudApigeeV1Developer $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1Developer - */ - public function create($parent, Google_Service_Apigee_GoogleCloudApigeeV1Developer $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1Developer"); - } - /** - * Deletes a developer from an organization. All apps and API keys associated - * with the developer are also removed from the organization. All times in the - * response are UNIX times. (developers.delete) - * - * @param string $name Required. The name of the Developer to be deleted. Must - * be of the form `organizations/{org}/developers/{developer}` - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1Developer - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1Developer"); - } - /** - * Returns the profile for a developer by email address or ID. All time values - * are UNIX time values. The profile includes the developer's email address, ID, - * name, and other information. Apigee recommends using the developer email in - * the API call. Developer ID is generated internally and is not guaranteed to - * stay the same over time. For example, Apigee could change the format or - * length of this variable. (developers.get) - * - * @param string $name Required. The name of the Developer to be get. Must be of - * the form `organizations/{org}/developers/{developer}` - * @param array $optParams Optional parameters. - * - * @opt_param string action Status to set active/inactive - * @return Google_Service_Apigee_GoogleCloudApigeeV1Developer - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1Developer"); - } - /** - * Lists all developers in an organization by email address. This call does not - * list any company developers who are a part of the designated organization. - * (developers.listOrganizationsDevelopers) - * - * @param string $parent Required. The parent organization name. Must be of the - * form `organizations/{org}`. - * @param array $optParams Optional parameters. - * - * @opt_param string startKey Lets you return a list of developers starting with - * a specific developer in the list. - * @opt_param bool expand For Verbose response - * @opt_param string ids Optional. Filtery by id, accepts list of ids with comma - * seperation. - * @opt_param bool includeCompany Optional. Filter to incude company details in - * the response. - * @opt_param string count Enter the number of developers you want returned in - * the API call. The limit is 1000. - * @return Google_Service_Apigee_GoogleCloudApigeeV1ListOfDevelopersResponse - */ - public function listOrganizationsDevelopers($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1ListOfDevelopersResponse"); - } - /** - * Sets a developer's status to active or inactive for a specific organization - * Run this API for each organization where you want to change the developer's - * status. By default, the status of a developer is set to active. Admins with - * proper permissions (such as Organization Administrator) can change a - * developer's status using this API call. If you set a developer's status to - * inactive, the API keys assigned to the developer's apps are no longer valid - * even though keys continue to show a status of "Approved" (in strikethrough - * text in the management UI). Inactive developers, however, can still log into - * the developer portal and create apps. The new keys that get created just - * won't work.Apigee recommends using the developer email in the API call. - * Developer ID is generated internally and is not guaranteed to stay the same - * over time. For example, Apigee could change the format or length of this - * variable. The HTTP status code for success is: 204 No Content. - * (developers.setDeveloperStatus) - * - * @param string $name Required. The name of the Developer to be deleted. Must - * be of the form `organizations/{org}/developers/{developer}` - * @param array $optParams Optional parameters. - * - * @opt_param string action Status to set active/inactive - * @return Google_Service_Apigee_GoogleProtobufEmpty - */ - public function setDeveloperStatus($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('setDeveloperStatus', array($params), "Google_Service_Apigee_GoogleProtobufEmpty"); - } - /** - * Update an existing developer profile. To add new values or update existing - * values, submit the new or updated portion of the developer profile along with - * the rest of the developer profile, even if no values are changing. To delete - * attributes from a developer profile, submit the entire profile without the - * attributes that you want to delete. Apigee recommends using the developer - * email in the API call. Developer ID is generated internally and is not - * guaranteed to stay the same over time. For example, Apigee could change the - * format or length of this variable. the custom attribute limit is 18. Core - * Persistence Services caching minimum: OAuth access tokens and Key Management - * Service (KMS) entities (Apps, Developers, API Products) are cached for 180 - * seconds (current default). Any custom attributes associated with entities - * also get cached for at least 180 seconds after entity is accessed during - * runtime. This also means the ExpiresIn element on the OAuthV2 policy won't be - * able to expire an access token in less than 180 seconds. (developers.update) - * - * @param string $name Required. The name of the Developer to be updated. Must - * be of the form `organizations/{org}/developers/{developer}` - * @param Google_Service_Apigee_GoogleCloudApigeeV1Developer $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1Developer - */ - public function update($name, Google_Service_Apigee_GoogleCloudApigeeV1Developer $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1Developer"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsDevelopersApps.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsDevelopersApps.php deleted file mode 100644 index 52371824..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsDevelopersApps.php +++ /dev/null @@ -1,179 +0,0 @@ - - * $apigeeService = new Google_Service_Apigee(...); - * $apps = $apigeeService->apps; - * - */ -class Google_Service_Apigee_Resource_OrganizationsDevelopersApps extends Google_Service_Resource -{ - /** - * Updates or creates app attributes. This API replaces the current list of - * attributes with the attributes specified in the request body. This lets you - * update existing attributes, add new attributes, or delete existing attributes - * by omitting them from the request body. (apps.attributes) - * - * @param string $name Required. Developer App Attribute name of the form: - * `organizations/{organization_id}/developers/{developer_id}/apps/{app_name}` - * @param Google_Service_Apigee_GoogleCloudApigeeV1Attributes $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1Attributes - */ - public function attributes($name, Google_Service_Apigee_GoogleCloudApigeeV1Attributes $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('attributes', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1Attributes"); - } - /** - * Creates an app associated with a developer, associates the app with an API - * product, and auto-generates an API key for the app to use in calls to API - * proxies inside the API product. The name is the unique ID of the app that you - * can use in management API calls. The DisplayName (set with an attribute) is - * what appears in the management UI. If you don't provide a DisplayName, the - * name is used. The keyExpiresIn property sets the expiration on the API key. - * If you don't set this, or set the value to -1, they API key never expires. - * (apps.create) - * - * @param string $parent Required. The parent organization name under which the - * Developer App will be created. Must be of the form: - * `organizations/{organization_id}/developers/{developer_id}` - * @param Google_Service_Apigee_GoogleCloudApigeeV1DeveloperApp $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1DeveloperApp - */ - public function create($parent, Google_Service_Apigee_GoogleCloudApigeeV1DeveloperApp $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1DeveloperApp"); - } - /** - * Deletes a developer app. This API returns the developer app that was deleted. - * (apps.delete) - * - * @param string $name Required. Developer App name of the form: - * `organizations/{organization_id}/developers/{developer_id}/apps/{app_name}` - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1DeveloperApp - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1DeveloperApp"); - } - /** - * (2) Create new developer KeyPairs Generates a new consumer key and consumer - * secret for the named developer app. Rather than replacing an existing key, - * this API call generates a new key. For example, if you're using API key - * rotation, you can generate new keys whose expiration overlaps keys that will - * be out of rotation when they expire. You might also generate a new key/secret - * if the security of the original key/secret is compromised. After using this - * API, multiple key pairs will be associated with a single app. Each key pair - * has an independent status (revoked or approved) and an independent expiry - * time. Any non-expired, approved key can be used in an API call. The - * keyExpiresIn value is in milliseconds. A value of -1 means the key/secret - * pair never expire. (apps.generateKeyPairOrUpdateDeveloperAppStatus) - * - * @param string $name Required. Developer App name of the form: - * `organizations/{organization_id}/developers/{developer_id}/apps/{app_name}` - * @param Google_Service_Apigee_GoogleCloudApigeeV1DeveloperApp $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string action Set the action to approve or revoke. - * @return Google_Service_Apigee_GoogleCloudApigeeV1DeveloperApp - */ - public function generateKeyPairOrUpdateDeveloperAppStatus($name, Google_Service_Apigee_GoogleCloudApigeeV1DeveloperApp $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('generateKeyPairOrUpdateDeveloperAppStatus', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1DeveloperApp"); - } - /** - * Get the profile of a specific developer app. All times in the response are - * UNIX times. Note that the response contains a top-level attribute named - * accessType that is no longer used by Apigee. (apps.get) - * - * @param string $name Required. Developer App name of the form: - * `organizations/{organization_id}/developers/{developer_id}/apps/{app_name}` - * @param array $optParams Optional parameters. - * - * @opt_param string query Query. - * @opt_param string entity Entity. - * @return Google_Service_Apigee_GoogleCloudApigeeV1DeveloperApp - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1DeveloperApp"); - } - /** - * Lists all apps created by a developer in an organization, and optionally - * provides an expanded view of the apps. All time values in the response are - * UNIX times. You can specify either the developer's email address or Edge ID. - * (apps.listOrganizationsDevelopersApps) - * - * @param string $parent Required. The parent organization name. Must be of the - * form: `organizations/{organization_id}/developers/{developer_id}` - * @param array $optParams Optional parameters. - * - * @opt_param bool shallowExpand Optional. Set to true to expand the results in - * shallow. - * @opt_param string startKey To filter the keys that are returned, enter the - * name of a company app that the list will start with. - * @opt_param string count Limits the list to the number you specify. - * @opt_param bool expand Optional. Set to true to expand the results. This - * query parameter does not work if you use the count or startKey query - * parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1ListDeveloperAppsResponse - */ - public function listOrganizationsDevelopersApps($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1ListDeveloperAppsResponse"); - } - /** - * Updates a developer app. You can also add an app to an API product with this - * call, which automatically generates an API key for the app to use when - * calling APIs in the product. (If you want to use an existing API key for - * another API product as well, see Add API Product to Key.) Be sure to include - * all existing attributes in the request body. Note that you cannot update the - * scopes associated with the app by using this API. Instead, use "Update the - * Scope of an App". The app name is the primary key used by Edge to identify - * the app. Therefore, you cannot change the app name after creating it. - * (apps.update) - * - * @param string $name Required. Developer App name of the form: - * `organizations/{organization_id}/developers/{developer_id}/apps/{app_name}` - * @param Google_Service_Apigee_GoogleCloudApigeeV1DeveloperApp $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1DeveloperApp - */ - public function update($name, Google_Service_Apigee_GoogleCloudApigeeV1DeveloperApp $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1DeveloperApp"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsDevelopersAppsAttributes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsDevelopersAppsAttributes.php deleted file mode 100644 index dcbab26f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsDevelopersAppsAttributes.php +++ /dev/null @@ -1,90 +0,0 @@ - - * $apigeeService = new Google_Service_Apigee(...); - * $attributes = $apigeeService->attributes; - * - */ -class Google_Service_Apigee_Resource_OrganizationsDevelopersAppsAttributes extends Google_Service_Resource -{ - /** - * Deletes an app attribute. (attributes.delete) - * - * @param string $name Required. Developer App Attribute name of the form: `or - * ganizations/{organization_id}/developers/{developer_id}/apps/{app_name}/attri - * butes/{attribute_name}` - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1Attribute - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1Attribute"); - } - /** - * Returns the value of an app attribute. (attributes.get) - * - * @param string $name Required. Developer App Attribute name of the form: `or - * ganizations/{organization_id}/developers/{developer_id}/apps/{app_name}/attri - * butes/{attribute_name}` - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1Attribute - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1Attribute"); - } - /** - * Returns a list of all app attributes. - * (attributes.listOrganizationsDevelopersAppsAttributes) - * - * @param string $parent Required. The parent organization name. Must be of the - * form: - * `organizations/{organization_id}/developers/{developer_id}/apps/{app_name}` - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1Attributes - */ - public function listOrganizationsDevelopersAppsAttributes($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1Attributes"); - } - /** - * Updates an app attribute (attributes.updateDeveloperAppAttribute) - * - * @param string $name Required. Developer App Attribute name of the form: `or - * ganizations/{organization_id}/developers/{developer_id}/apps/{app_name}/attri - * butes/{attribute_name}` - * @param Google_Service_Apigee_GoogleCloudApigeeV1Attribute $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1Attribute - */ - public function updateDeveloperAppAttribute($name, Google_Service_Apigee_GoogleCloudApigeeV1Attribute $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updateDeveloperAppAttribute', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1Attribute"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsDevelopersAppsKeys.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsDevelopersAppsKeys.php deleted file mode 100644 index 47bc36fa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsDevelopersAppsKeys.php +++ /dev/null @@ -1,127 +0,0 @@ - - * $apigeeService = new Google_Service_Apigee(...); - * $keys = $apigeeService->keys; - * - */ -class Google_Service_Apigee_Resource_OrganizationsDevelopersAppsKeys extends Google_Service_Resource -{ - /** - * Creates a custom consumer key and secret for a developer app. This is - * particularly useful if you want to migrate existing consumer keys/secrets to - * Edge from another system. Be aware of the following size limits on API keys. - * By staying within these limits, you help avoid service disruptions (2KB each - * for Consumer Key and Secret). After creating the consumer key and secret, - * associate the key with an API product using the API UpdateDeveloperAppKey If - * a consumer key and secret already exist, you can either keep them or delete - * them with this API DeleteKeyFromDeveloperApp Consumer keys and secrets can - * contain letters, numbers, underscores, and hyphens. No other special - * characters are allowed. (keys.create) - * - * @param string $parent Parent of a developer app key in the form - * `organizations/{org}/developers/{developer}/apps` - * @param Google_Service_Apigee_GoogleCloudApigeeV1DeveloperAppKey $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1DeveloperAppKey - */ - public function create($parent, Google_Service_Apigee_GoogleCloudApigeeV1DeveloperAppKey $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1DeveloperAppKey"); - } - /** - * Deletes a consumer key that belongs to an app, and removes all API products - * associated with the app. Once deleted, the consumer key cannot be used to - * access any APIs. Note: After you delete a consumer key, you may want to: 1. - * Create a new consumer key and secret for the developer app, and subsequently - * add an API product to the key. 2. Delete the developer app, if it is no - * longer required. (keys.delete) - * - * @param string $name Resource name of a developer app key - * `organizations/{org}/developers/{developer}/apps/{app}/keys/{key}` - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1DeveloperAppKey - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1DeveloperAppKey"); - } - /** - * Returns details for a consumer key for a developer app, including the key and - * secret value, associated API products, and other information. All times are - * displayed as UNIX times. (keys.get) - * - * @param string $name Resource name of a developer app key - * `organizations/{org}/developers/{developer}/apps/{app}/keys/{key}` - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1DeveloperAppKey - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1DeveloperAppKey"); - } - /** - * Updates the scope of an app. Note that this API sets the scopes element under - * the apiProducts element in the attributes of the app. - * (keys.replaceDeveloperAppKey) - * - * @param string $name Resource name of a company app key - * `organizations/{org}/developers/{developer}/apps/{app}/keys/{key}` - * @param Google_Service_Apigee_GoogleCloudApigeeV1DeveloperAppKey $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1DeveloperAppKey - */ - public function replaceDeveloperAppKey($name, Google_Service_Apigee_GoogleCloudApigeeV1DeveloperAppKey $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('replaceDeveloperAppKey', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1DeveloperAppKey"); - } - /** - * Adds an API product to a developer app key, enabling the app that holds the - * key to access the API resources bundled in the API product. You can also use - * this API to add attributes to the key. Use this API to add a new API product - * to an existing app. After adding the API product, you can use the same key to - * access all API products associated with the app. You must include all - * existing attributes, whether or not you are updating them, as well as any new - * attributes that you are adding. (keys.updateDeveloperAppKey) - * - * @param string $name Resource name of a company app key - * `organizations/{org}/developers/{developer}/apps/{app}/keys/{key}` - * @param Google_Service_Apigee_GoogleCloudApigeeV1DeveloperAppKey $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string action Set the action to approve or revoke. - * @return Google_Service_Apigee_GoogleCloudApigeeV1DeveloperAppKey - */ - public function updateDeveloperAppKey($name, Google_Service_Apigee_GoogleCloudApigeeV1DeveloperAppKey $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updateDeveloperAppKey', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1DeveloperAppKey"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsDevelopersAppsKeysApiproducts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsDevelopersAppsKeysApiproducts.php deleted file mode 100644 index ed5b4d94..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsDevelopersAppsKeysApiproducts.php +++ /dev/null @@ -1,64 +0,0 @@ - - * $apigeeService = new Google_Service_Apigee(...); - * $apiproducts = $apigeeService->apiproducts; - * - */ -class Google_Service_Apigee_Resource_OrganizationsDevelopersAppsKeysApiproducts extends Google_Service_Resource -{ - /** - * Removes an API product from an app's consumer key, and thereby renders the - * app unable to access the API resources defined in that API product. Note : - * The consumer key itself still exists after this call. Only the association of - * the key with the API product is removed. (apiproducts.delete) - * - * @param string $name Resource name of a api product in a developer app key `or - * ganizations/{org}/developers/{developer}/apps/{app}/keys/{key}/apiproducts/{a - * piproduct}` - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1DeveloperAppKey - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1DeveloperAppKey"); - } - /** - * Approve or Revoke the key for a given api product. - * (apiproducts.updateDeveloperAppKeyApiProduct) - * - * @param string $name Resource name of a api product in a developer app key `or - * ganizations/{org}/developers/{developer}/apps/{app}/keys/{key}/apiproducts/{a - * piproduct}` - * @param array $optParams Optional parameters. - * - * @opt_param string action Set the action to approve or revoke. - * @return Google_Service_Apigee_GoogleProtobufEmpty - */ - public function updateDeveloperAppKeyApiProduct($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('updateDeveloperAppKeyApiProduct', array($params), "Google_Service_Apigee_GoogleProtobufEmpty"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsDevelopersAppsKeysCreate.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsDevelopersAppsKeysCreate.php deleted file mode 100644 index 093c6427..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsDevelopersAppsKeysCreate.php +++ /dev/null @@ -1,52 +0,0 @@ - - * $apigeeService = new Google_Service_Apigee(...); - * $create = $apigeeService->create; - * - */ -class Google_Service_Apigee_Resource_OrganizationsDevelopersAppsKeysCreate extends Google_Service_Resource -{ - /** - * Creates a custom consumer key and secret for a developer app. This is - * particularly useful if you want to migrate existing consumer keys/secrets to - * Edge from another system. Be aware of the following size limits on API keys. - * By staying within these limits, you help avoid service disruptions (2KB each - * for Consumer Key and Secret). After creating the consumer key and secret, - * associate the key with an API product using the API UpdateDeveloperAppKey If - * a consumer key and secret already exist, you can either keep them or delete - * them with this API DeleteKeyFromDeveloperApp Consumer keys and secrets can - * contain letters, numbers, underscores, and hyphens. No other special - * characters are allowed. (create.create) - * - * @param string $parent Parent of a developer app key in the form - * `organizations/{org}/developers/{developer}/apps` - * @param Google_Service_Apigee_GoogleCloudApigeeV1DeveloperAppKey $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1DeveloperAppKey - */ - public function create($parent, Google_Service_Apigee_GoogleCloudApigeeV1DeveloperAppKey $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1DeveloperAppKey"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsDevelopersAttributes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsDevelopersAttributes.php deleted file mode 100644 index dcbbd7a5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsDevelopersAttributes.php +++ /dev/null @@ -1,107 +0,0 @@ - - * $apigeeService = new Google_Service_Apigee(...); - * $attributes = $apigeeService->attributes; - * - */ -class Google_Service_Apigee_Resource_OrganizationsDevelopersAttributes extends Google_Service_Resource -{ - /** - * Deletes an attribute of a Developer resource Apigee recommends using the - * developer email in the API call. Developer ID is generated internally and is - * not guaranteed to stay the same over time. For example, Apigee could change - * the format or length of this variable. (attributes.delete) - * - * @param string $name Required. The name of the attribute for a developer. Must - * be of the form - * `organizations/{org}/developers/{developer}/attributes/{attribute}` - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1Attribute - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1Attribute"); - } - /** - * Get developer attributes. Apigee recommends using the developer email in the - * API call. Developer ID is generated internally and is not guaranteed to stay - * the same over time. For example, Apigee could change the format or length of - * this variable. (attributes.get) - * - * @param string $name Required. The name of the attribute for a developer. Must - * be of the form - * `organizations/{org}/developers/{developer}/attributes/{attribute}` - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1Attribute - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1Attribute"); - } - /** - * Returns a list of all developer attributes. Apigee recommends using the - * developer email in the API call. Developer ID is generated internally and is - * not guaranteed to stay the same over time. For example, Apigee could change - * the format or length of this variable. - * (attributes.listOrganizationsDevelopersAttributes) - * - * @param string $parent Required. The parent developer for which attributes are - * being listed. Must be of the form - * `organizations/{org}/developers/{developer}` - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1Attributes - */ - public function listOrganizationsDevelopersAttributes($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1Attributes"); - } - /** - * Update developer attribute. OAuth access tokens and Key Management Service - * (KMS) entities (Apps, Developers, API Products) are cached for 180 seconds - * (current default). Any custom attributes associated with entities also get - * cached for at least 180 seconds after entity is accessed during runtime. This - * also means the ExpiresIn element on the OAuthV2 policy won't be able to - * expire an access token in less than 180 seconds. Apigee recommends using the - * developer email in the API call. Developer ID is generated internally and is - * not guaranteed to stay the same over time. For example, Apigee could change - * the format or length of this variable. (attributes.updateDeveloperAttribute) - * - * @param string $name Required. The name of the attribute for a developer. Must - * be of the form - * `organizations/{org}/developers/{developer}/attributes/{attribute}` - * @param Google_Service_Apigee_GoogleCloudApigeeV1Attribute $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1Attribute - */ - public function updateDeveloperAttribute($name, Google_Service_Apigee_GoogleCloudApigeeV1Attribute $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updateDeveloperAttribute', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1Attribute"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironments.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironments.php deleted file mode 100644 index 65f72390..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironments.php +++ /dev/null @@ -1,295 +0,0 @@ - - * $apigeeService = new Google_Service_Apigee(...); - * $environments = $apigeeService->environments; - * - */ -class Google_Service_Apigee_Resource_OrganizationsEnvironments extends Google_Service_Resource -{ - /** - * Creates an Environment in the specified organization. (environments.create) - * - * @param string $parent Required. The parent organization name under which the - * Environment will be created. Must be of the form `organizations/{org}`. - * @param Google_Service_Apigee_GoogleCloudApigeeV1Environment $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string name Optional. The ID to give the new Environment. The - * Environment ID may alternatively be specified in the request body in the - * environment_id field. - * @return Google_Service_Apigee_GoogleLongrunningOperation - */ - public function create($parent, Google_Service_Apigee_GoogleCloudApigeeV1Environment $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Apigee_GoogleLongrunningOperation"); - } - /** - * Deletes an Environment from an organization. Returns the deleted Environment - * resource. (environments.delete) - * - * @param string $name Required. The name of the Environment to delete. Must be - * of the form `organizations/{org}/environments/{env}`. - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleLongrunningOperation - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Apigee_GoogleLongrunningOperation"); - } - /** - * Gets an Environment. (environments.get) - * - * @param string $name Required. The name of the Environment to get. Must be of - * the form `organizations/{org}/environments/{env}`. - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1Environment - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1Environment"); - } - /** - * Get Google Cloud Storage (GCS) signed url for specific organization and - * environment. Collection agent uses this signed url to upload data to GCS - * bucket. (environments.getDatalocation) - * - * @param string $name Required. The parent organization and environment names. - * Must be of the form `organizations/{org}/environments/{env}/datalocation`. - * @param array $optParams Optional parameters. - * - * @opt_param string repo Required. Repository name - * @opt_param string contentType Content-Type for uploaded file. - * @opt_param string relativeFilePath Required. Relative path to the GCS bucket - * @opt_param string dataset Required. Dataset could be one of `api`, `mint`, - * `trace` and `event` - * @return Google_Service_Apigee_GoogleCloudApigeeV1DataLocation - */ - public function getDatalocation($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('getDatalocation', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1DataLocation"); - } - /** - * Gets the debug mask singleton resource for an Environment. - * (environments.getDebugmask) - * - * @param string $name Required. The name of the Environment debug mask to get. - * Must be of the form `organizations/{org}/environments/{env}/debugmask`. - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1DebugMask - */ - public function getDebugmask($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('getDebugmask', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1DebugMask"); - } - /** - * Gets the deployed config (aka env.json) for an Environment. - * (environments.getDeployedConfig) - * - * @param string $name Required. The name of the Environment deployed config - * resource. Must be of the form - * `organizations/{org}/environments/{env}/deployedConfig`. - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1EnvironmentConfig - */ - public function getDeployedConfig($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('getDeployedConfig', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1EnvironmentConfig"); - } - /** - * Gets the IAM policy on an Environment. Callers must have the permission - * apigee.environments.getIamPolicy. (environments.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. - * @return Google_Service_Apigee_GoogleIamV1Policy - */ - public function getIamPolicy($resource, $optParams = array()) - { - $params = array('resource' => $resource); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_Apigee_GoogleIamV1Policy"); - } - /** - * Lists all Environments in an organization. - * (environments.listOrganizationsEnvironments) - * - * @param string $parent Required. The parent organization name. Must be of the - * form `organizations/{org}`. - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_ListResponse - */ - public function listOrganizationsEnvironments($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Apigee_ListResponse"); - } - /** - * Sets the IAM policy on an Environment, if the policy already exists it will - * be replaced. Callers must have the permission - * apigee.environments.setIamPolicy. (environments.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_Apigee_GoogleIamV1SetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleIamV1Policy - */ - public function setIamPolicy($resource, Google_Service_Apigee_GoogleIamV1SetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_Apigee_GoogleIamV1Policy"); - } - /** - * Creates a subscription for the environment's pubsub topic. The server will - * assign a random name for this subscription. The "name" and "push_config" must - * *not* be specified. (environments.subscribe) - * - * @param string $parent Required. The name of the environment to subscribe. - * Must be of the form `organizations/{org}/environments/{env}`. - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1Subscription - */ - public function subscribe($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('subscribe', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1Subscription"); - } - /** - * Tests the permissions of a user on an Environment, and returns a subset of - * permissions that the user has on the Environment If the environment does not - * exist an empty permission set is returned (a NOT_FOUND error is not - * returned). (environments.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_Apigee_GoogleIamV1TestIamPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleIamV1TestIamPermissionsResponse - */ - public function testIamPermissions($resource, Google_Service_Apigee_GoogleIamV1TestIamPermissionsRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_Apigee_GoogleIamV1TestIamPermissionsResponse"); - } - /** - * Deletes a subscription for the environment's pubsub topic. - * (environments.unsubscribe) - * - * @param string $parent Required. The name of the environment to subscribe. - * Must be of the form `organizations/{org}/environments/{env}`. - * @param Google_Service_Apigee_GoogleCloudApigeeV1Subscription $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleProtobufEmpty - */ - public function unsubscribe($parent, Google_Service_Apigee_GoogleCloudApigeeV1Subscription $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('unsubscribe', array($params), "Google_Service_Apigee_GoogleProtobufEmpty"); - } - /** - * Updates an existing Environment. Note that this operation has PUT semantics - * despite using POST; it will replace the entirety of the existing Environment - * with the resource in the request body. A PUT mapping for the same operation - * at the same URI is also defined. (environments.update) - * - * @param string $name Required. The name of the Environment to replace. Must be - * of the form `organizations/{org}/environments/{env}`. - * @param Google_Service_Apigee_GoogleCloudApigeeV1Environment $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1Environment - */ - public function update($name, Google_Service_Apigee_GoogleCloudApigeeV1Environment $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1Environment"); - } - /** - * Updates the debug mask singleton resource for an environment. - * (environments.updateDebugmask) - * - * @param string $name The DebugMask resource name. - * @param Google_Service_Apigee_GoogleCloudApigeeV1DebugMask $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Field mask to support partial updates. - * @opt_param bool replaceRepeatedFields If true, repeated fields covered by the - * update_mask will replace the existing values. The default behavior is to - * append. - * @return Google_Service_Apigee_GoogleCloudApigeeV1DebugMask - */ - public function updateDebugmask($name, Google_Service_Apigee_GoogleCloudApigeeV1DebugMask $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updateDebugmask', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1DebugMask"); - } - /** - * Updates an existing Environment. Note that this operation has PUT semantics - * despite using POST; it will replace the entirety of the existing Environment - * with the resource in the request body. A PUT mapping for the same operation - * at the same URI is also defined. (environments.updateEnvironment) - * - * @param string $name Required. The name of the Environment to replace. Must be - * of the form `organizations/{org}/environments/{env}`. - * @param Google_Service_Apigee_GoogleCloudApigeeV1Environment $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1Environment - */ - public function updateEnvironment($name, Google_Service_Apigee_GoogleCloudApigeeV1Environment $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updateEnvironment', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1Environment"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsAnalytics.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsAnalytics.php deleted file mode 100644 index dff5195c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsAnalytics.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $apigeeService = new Google_Service_Apigee(...); - * $analytics = $apigeeService->analytics; - * - */ -class Google_Service_Apigee_Resource_OrganizationsEnvironmentsAnalytics extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsAnalyticsAdmin.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsAnalyticsAdmin.php deleted file mode 100644 index 60beaba8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsAnalyticsAdmin.php +++ /dev/null @@ -1,49 +0,0 @@ - - * $apigeeService = new Google_Service_Apigee(...); - * $admin = $apigeeService->admin; - * - */ -class Google_Service_Apigee_Resource_OrganizationsEnvironmentsAnalyticsAdmin extends Google_Service_Resource -{ - /** - * Get a list of metrics and dimensions which can be used for creating analytics - * queries and reports. Each schema element contains the name of the field with - * its associated type and if it is either custom field or standard field. - * (admin.getSchemav2) - * - * @param string $name Required. The parent organization and environment names. - * Must be of the form - * `organizations/{org}/environments/{env}/analytics/admin/schemav2`. - * @param array $optParams Optional parameters. - * - * @opt_param string type Required. Type refers to the dataset name whose schema - * needs to be retrieved E.g. type=fact or type=agg_cus1 - * @return Google_Service_Apigee_GoogleCloudApigeeV1Schema - */ - public function getSchemav2($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('getSchemav2', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1Schema"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsApis.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsApis.php deleted file mode 100644 index 5b90fd81..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsApis.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $apigeeService = new Google_Service_Apigee(...); - * $apis = $apigeeService->apis; - * - */ -class Google_Service_Apigee_Resource_OrganizationsEnvironmentsApis extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsApisDeployments.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsApisDeployments.php deleted file mode 100644 index d89d4cf5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsApisDeployments.php +++ /dev/null @@ -1,44 +0,0 @@ - - * $apigeeService = new Google_Service_Apigee(...); - * $deployments = $apigeeService->deployments; - * - */ -class Google_Service_Apigee_Resource_OrganizationsEnvironmentsApisDeployments extends Google_Service_Resource -{ - /** - * Lists all deployments of an API proxy in an environment. - * (deployments.listOrganizationsEnvironmentsApisDeployments) - * - * @param string $parent Required. Name representing an API proxy in an - * environment in the following format: - * `organizations/{org}/environments/{env}/apis/{api}` - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1ListDeploymentsResponse - */ - public function listOrganizationsEnvironmentsApisDeployments($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1ListDeploymentsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsApisRevisions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsApisRevisions.php deleted file mode 100644 index 6fdf2192..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsApisRevisions.php +++ /dev/null @@ -1,63 +0,0 @@ - - * $apigeeService = new Google_Service_Apigee(...); - * $revisions = $apigeeService->revisions; - * - */ -class Google_Service_Apigee_Resource_OrganizationsEnvironmentsApisRevisions extends Google_Service_Resource -{ - /** - * Undeploys an API proxy revision from an environment. - * - * Because multiple revisions of the same API proxy can be deployed in the same - * environment if the base paths are different, you must specify the revision - * number of the API proxy. (revisions.deployments) - * - * @param string $name Required. Name of the API proxy revision deployment in - * the following format: - * `organizations/{org}/environments/{env}/apis/{api}/revisions/{rev}` - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleProtobufEmpty - */ - public function deployments($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('deployments', array($params), "Google_Service_Apigee_GoogleProtobufEmpty"); - } - /** - * Gets the deployment of an API proxy revision and actual state reported by - * runtime pods. (revisions.getDeployments) - * - * @param string $name Required. Name representing an API proxy revision in an - * environment in the following format: - * `organizations/{org}/environments/{env}/apis/{api}/revisions/{rev}` - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1Deployment - */ - public function getDeployments($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('getDeployments', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1Deployment"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsApisRevisionsDebugsessions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsApisRevisionsDebugsessions.php deleted file mode 100644 index 890da08c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsApisRevisionsDebugsessions.php +++ /dev/null @@ -1,84 +0,0 @@ - - * $apigeeService = new Google_Service_Apigee(...); - * $debugsessions = $apigeeService->debugsessions; - * - */ -class Google_Service_Apigee_Resource_OrganizationsEnvironmentsApisRevisionsDebugsessions extends Google_Service_Resource -{ - /** - * Creates a debug session for a deployed API Proxy revision. - * (debugsessions.create) - * - * @param string $parent Required. The resource name of the API Proxy revision - * deployment for which to create the DebugSession. Must be of the form `organi - * zations/{organization}/environments/{environment}/apis/{api}/revisions/{revis - * ion}`. - * @param Google_Service_Apigee_GoogleCloudApigeeV1DebugSession $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string timeout Optional. The time in seconds after which this - * DebugSession should end. A timeout specified in DebugSession will overwrite - * this value. - * @return Google_Service_Apigee_GoogleCloudApigeeV1DebugSession - */ - public function create($parent, Google_Service_Apigee_GoogleCloudApigeeV1DebugSession $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1DebugSession"); - } - /** - * Deletes the data from a debug session. This does not cancel the debug session - * or prevent further data from being collected if the session is still active - * in runtime pods. (debugsessions.deleteData) - * - * @param string $name Required. The name of the debug session to delete. Must - * be of the form: `organizations/{organization}/environments/{environment}/api - * s/{api}/revisions/{revision}/debugsessions/{debugsession}`. - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleProtobufEmpty - */ - public function deleteData($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('deleteData', array($params), "Google_Service_Apigee_GoogleProtobufEmpty"); - } - /** - * Lists debug sessions that are currently active in the given API Proxy - * revision. - * (debugsessions.listOrganizationsEnvironmentsApisRevisionsDebugsessions) - * - * @param string $parent Required. The name of the API Proxy revision deployment - * for which to list debug sessions. Must be of the form: `organizations/{organ - * ization}/environments/{environment}/apis/{api}/revisions/{revision}`. - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1ListDebugSessionsResponse - */ - public function listOrganizationsEnvironmentsApisRevisionsDebugsessions($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1ListDebugSessionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsApisRevisionsDebugsessionsData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsApisRevisionsDebugsessionsData.php deleted file mode 100644 index 68a3148d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsApisRevisionsDebugsessionsData.php +++ /dev/null @@ -1,63 +0,0 @@ - - * $apigeeService = new Google_Service_Apigee(...); - * $data = $apigeeService->data; - * - */ -class Google_Service_Apigee_Resource_OrganizationsEnvironmentsApisRevisionsDebugsessionsData extends Google_Service_Resource -{ - /** - * Gets the debug data from a transaction. (data.get) - * - * @param string $name Required. The name of the debug session transaction. Must - * be of the form: `organizations/{organization}/environments/{environment}/api - * s/{api}/revisions/{revision}/debugsessions/{session}/data/{transaction}`. - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1DebugSessionTransaction - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1DebugSessionTransaction"); - } - /** - * Lists the transaction IDs from a debug session. - * (data.listOrganizationsEnvironmentsApisRevisionsDebugsessionsData) - * - * @param string $parent Required. The name of the debug sessions for which to - * list transactions. Must be of the form: `organizations/{organization}/enviro - * nments/{environment}/apis/{api}/revisions/{revision}/debugsessions/{session}` - * . - * @param array $optParams Optional parameters. - * - * @opt_param int limit Optional. A http query parameter that can control the - * maximum number of debug session transactions that can be returned by UAP. - * @return Google_Service_Apigee_ListResponse - */ - public function listOrganizationsEnvironmentsApisRevisionsDebugsessionsData($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Apigee_ListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsCaches.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsCaches.php deleted file mode 100644 index 3c142a88..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsCaches.php +++ /dev/null @@ -1,58 +0,0 @@ - - * $apigeeService = new Google_Service_Apigee(...); - * $caches = $apigeeService->caches; - * - */ -class Google_Service_Apigee_Resource_OrganizationsEnvironmentsCaches extends Google_Service_Resource -{ - /** - * Deletes a cache. (caches.delete) - * - * @param string $name Required. Cache resource name of the form: `organizat - * ions/{organization_id}/environments/{environment_id}/caches/{cache_id}` - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleProtobufEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Apigee_GoogleProtobufEmpty"); - } - /** - * Lists all caches in an environment. - * (caches.listOrganizationsEnvironmentsCaches) - * - * @param string $parent Required. The name of the parent environment under - * which to get caches. Must be of the form: - * `organizations/{organization_id}/environments/{environment_id}` - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_ListResponse - */ - public function listOrganizationsEnvironmentsCaches($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Apigee_ListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsDeployments.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsDeployments.php deleted file mode 100644 index 5a94415b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsDeployments.php +++ /dev/null @@ -1,49 +0,0 @@ - - * $apigeeService = new Google_Service_Apigee(...); - * $deployments = $apigeeService->deployments; - * - */ -class Google_Service_Apigee_Resource_OrganizationsEnvironmentsDeployments extends Google_Service_Resource -{ - /** - * Lists all deployments of API proxies or shared flows in an environment. - * (deployments.listOrganizationsEnvironmentsDeployments) - * - * @param string $parent Required. Name of the environment for which to return - * deployment information in the following format: - * `organizations/{org}/environments/{env}` - * @param array $optParams Optional parameters. - * - * @opt_param bool sharedFlows Optional. Flag that specifies whether to return - * shared flow or API proxy deployments. Set to `true` to return shared flow - * deployments; set to `false` to return API proxy deployments. Defaults to - * `false`. - * @return Google_Service_Apigee_GoogleCloudApigeeV1ListDeploymentsResponse - */ - public function listOrganizationsEnvironmentsDeployments($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1ListDeploymentsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsFlowhooks.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsFlowhooks.php deleted file mode 100644 index a0c9c2c4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsFlowhooks.php +++ /dev/null @@ -1,93 +0,0 @@ - - * $apigeeService = new Google_Service_Apigee(...); - * $flowhooks = $apigeeService->flowhooks; - * - */ -class Google_Service_Apigee_Resource_OrganizationsEnvironmentsFlowhooks extends Google_Service_Resource -{ - /** - * Attaches a shared flow to a flow hook. (flowhooks.attachSharedFlowToFlowHook) - * - * @param string $name Required. Name of the flow hook to which the shared flow - * should be attached in the following format: - * `organizations/{org}/environments/{env}/flowhooks/{flowhook}` - * @param Google_Service_Apigee_GoogleCloudApigeeV1FlowHook $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1FlowHook - */ - public function attachSharedFlowToFlowHook($name, Google_Service_Apigee_GoogleCloudApigeeV1FlowHook $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('attachSharedFlowToFlowHook', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1FlowHook"); - } - /** - * Detaches a shared flow from a flow hook. - * (flowhooks.detachSharedFlowFromFlowHook) - * - * @param string $name Required. Name of the flow hook to detach in the - * following format: - * `organizations/{org}/environments/{env}/flowhooks/{flowhook}` - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1FlowHook - */ - public function detachSharedFlowFromFlowHook($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('detachSharedFlowFromFlowHook', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1FlowHook"); - } - /** - * Returns the name of the shared flow attached to the specified flow hook. If - * there's no shared flow attached to the flow hook, the API does not return an - * error; it simply does not return a name in the response. (flowhooks.get) - * - * @param string $name Required. Name of the flow hook in the following format: - * `organizations/{org}/environments/{env}/flowhooks/{flowhook}` - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1FlowHook - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1FlowHook"); - } - /** - * Lists the flow hooks attached to an environment. This API always returns: - * `["PreProxyFlowHook", "PostProxyFlowHook", "PreTargetFlowHook", - * "PostTargetFlowHook"]` (flowhooks.listOrganizationsEnvironmentsFlowhooks) - * - * @param string $parent Required. Name of the environment for which to display - * flow hooks in the following format: - * `organizations/{org}/environments/{env}` - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_ListResponse - */ - public function listOrganizationsEnvironmentsFlowhooks($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Apigee_ListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsKeystores.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsKeystores.php deleted file mode 100644 index b2a78c75..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsKeystores.php +++ /dev/null @@ -1,95 +0,0 @@ - - * $apigeeService = new Google_Service_Apigee(...); - * $keystores = $apigeeService->keystores; - * - */ -class Google_Service_Apigee_Resource_OrganizationsEnvironmentsKeystores extends Google_Service_Resource -{ - /** - * Creates a keystore or truststore: Keystore: Contains certificates and their - * associated keys. Truststore: Contains trusted certificates used to validate a - * server's certificate. These certificates are typically self-signed - * certificates or certificates that are not signed by a trusted CA. - * (keystores.create) - * - * @param string $parent Required. The name of the environment in which to - * create the keystore. Must be of the form - * `organizations/{organization}/environments/{environment}`. - * @param Google_Service_Apigee_GoogleCloudApigeeV1Keystore $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string name Optional. Overrides the value in Keystore. - * @return Google_Service_Apigee_GoogleCloudApigeeV1Keystore - */ - public function create($parent, Google_Service_Apigee_GoogleCloudApigeeV1Keystore $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1Keystore"); - } - /** - * Deletes a keystore or truststore. (keystores.delete) - * - * @param string $name Required. The name of keystore to delete. Must be of the - * form `organizations/{organization}/environments/{environment}/keystores/{keys - * tore}`. - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1Keystore - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1Keystore"); - } - /** - * Gets a keystore or truststore. (keystores.get) - * - * @param string $name Required. The name of keystore. Must be of the form `orga - * nizations/{organization}/environments/{environment}/keystores/{keystore}`. - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1Keystore - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1Keystore"); - } - /** - * Lists all keystores and truststores. - * (keystores.listOrganizationsEnvironmentsKeystores) - * - * @param string $parent Required. The name of the environment in which list - * keystores. Must be of the form - * `organizations/{organization}/environments/{environment}`. - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_ListResponse - */ - public function listOrganizationsEnvironmentsKeystores($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Apigee_ListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsKeystoresAliases.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsKeystoresAliases.php deleted file mode 100644 index 8fa1b78d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsKeystoresAliases.php +++ /dev/null @@ -1,166 +0,0 @@ - - * $apigeeService = new Google_Service_Apigee(...); - * $aliases = $apigeeService->aliases; - * - */ -class Google_Service_Apigee_Resource_OrganizationsEnvironmentsKeystoresAliases extends Google_Service_Resource -{ - /** - * Creates an alias from a key, certificate pair. The structure of the request - * is controlled by the `format` query parameter: `keycertfile` - Separate PEM- - * encoded key and certificate files are uploaded. The request must have - * `Content-Type: multipart/form-data` and include fields `keyFile` and - * `certFile`. If uploading to a truststore, omit `keyFile`. * `pkcs12` - A - * PKCS12 file is uploaded. The request must have `Content-Type: multipart/form- - * data` with the file provided in the only field. * `selfsignedcert` - A new - * private key and certificate are generated. The request must have `Content- - * Type: application/json` and a body of CertificateGenerationSpec. - * (aliases.create) - * - * @param string $parent Required. The name of the keystore. Must be of the form - * `organizations/{organization}/environments/{environment}/keystores/{keystore} - * `. - * @param Google_Service_Apigee_GoogleApiHttpBody $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool ignoreNewlineValidation If `true`, do not throw an error when - * the file contains a chain with no newline between each certificate. By - * default, a newline is needed between each certificate in a chain. - * @opt_param bool ignoreExpiryValidation If `true`, no expiry validation will - * be performed. - * @opt_param string alias The alias for the key, certificate pair. Values must - * match regular expression `[\w\s-.]{1,255}`. This must be provided for all - * formats except 'selfsignedcert'; self-signed certs may specify the alias in - * either this parameter or the JSON body. - * @opt_param string format Required. The format of the data. Must be either - * `selfsignedcert`, `keycertfile`, or `pkcs12`. - * @opt_param string _password The password for the private key file, if it - * exists. - * @return Google_Service_Apigee_GoogleCloudApigeeV1Alias - */ - public function create($parent, Google_Service_Apigee_GoogleApiHttpBody $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1Alias"); - } - /** - * Generates a PKCS #10 Certificate Signing Request for the private key in an - * alias. (aliases.csr) - * - * @param string $name Required. The name of the alias. Must be of the form `org - * anizations/{organization}/environments/{environment}/keystores/{keystore}/ali - * ases/{alias}`. - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleApiHttpBody - */ - public function csr($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('csr', array($params), "Google_Service_Apigee_GoogleApiHttpBody"); - } - /** - * Deletes an alias. (aliases.delete) - * - * @param string $name Required. The name of the alias. Must be of the form `org - * anizations/{organization}/environments/{environment}/keystores/{keystore}/ali - * ases/{alias}`. - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1Alias - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1Alias"); - } - /** - * Gets an alias. (aliases.get) - * - * @param string $name Required. The name of the alias. Must be of the form `org - * anizations/{organization}/environments/{environment}/keystores/{keystore}/ali - * ases/{alias}`. - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1Alias - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1Alias"); - } - /** - * Gets the certificate from an alias in PEM-encoded form. - * (aliases.getCertificate) - * - * @param string $name Required. The name of the alias. Must be of the form `org - * anizations/{organization}/environments/{environment}/keystores/{keystore}/ali - * ases/{alias}`. - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleApiHttpBody - */ - public function getCertificate($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('getCertificate', array($params), "Google_Service_Apigee_GoogleApiHttpBody"); - } - /** - * Lists all aliases. (aliases.listOrganizationsEnvironmentsKeystoresAliases) - * - * @param string $parent Required. The name of the keystore. Must be of the form - * `organizations/{organization}/environments/{environment}/keystores/{keystore} - * `. - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_ListResponse - */ - public function listOrganizationsEnvironmentsKeystoresAliases($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Apigee_ListResponse"); - } - /** - * Updates the certificate in an alias. (aliases.update) - * - * @param string $name Required. The name of the alias. Must be of the form `org - * anizations/{organization}/environments/{environment}/keystores/{keystore}/ali - * ases/{alias}`. - * @param Google_Service_Apigee_GoogleApiHttpBody $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool ignoreExpiryValidation Required. If `true`, no expiry - * validation will be performed. - * @opt_param bool ignoreNewlineValidation If `true`, do not throw an error when - * the file contains a chain with no newline between each certificate. By - * default, a newline is needed between each certificate in a chain. - * @return Google_Service_Apigee_GoogleCloudApigeeV1Alias - */ - public function update($name, Google_Service_Apigee_GoogleApiHttpBody $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1Alias"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsKeyvaluemaps.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsKeyvaluemaps.php deleted file mode 100644 index 423fafe1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsKeyvaluemaps.php +++ /dev/null @@ -1,75 +0,0 @@ - - * $apigeeService = new Google_Service_Apigee(...); - * $keyvaluemaps = $apigeeService->keyvaluemaps; - * - */ -class Google_Service_Apigee_Resource_OrganizationsEnvironmentsKeyvaluemaps extends Google_Service_Resource -{ - /** - * Creates a key value map in an environment. (keyvaluemaps.create) - * - * @param string $parent Required. The name of the environment in which to - * create the key value map. Must be of the form - * `organizations/{organization}/environments/{environment}`. - * @param Google_Service_Apigee_GoogleCloudApigeeV1KeyValueMap $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1KeyValueMap - */ - public function create($parent, Google_Service_Apigee_GoogleCloudApigeeV1KeyValueMap $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1KeyValueMap"); - } - /** - * Delete a key value map in an environment. (keyvaluemaps.delete) - * - * @param string $name Required. The name of the key value map. Must be of the - * form `organizations/{organization}/environments/{environment}/keyvaluemaps/{k - * eyvaluemap}`. - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1KeyValueMap - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1KeyValueMap"); - } - /** - * List key value maps in an environment. - * (keyvaluemaps.listOrganizationsEnvironmentsKeyvaluemaps) - * - * @param string $parent Required. The name of the environment in which to list - * key value maps. Must be of the form - * `organizations/{organization}/environments/{environment}`. - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_ListResponse - */ - public function listOrganizationsEnvironmentsKeyvaluemaps($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Apigee_ListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsOptimizedStats.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsOptimizedStats.php deleted file mode 100644 index 03d14f44..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsOptimizedStats.php +++ /dev/null @@ -1,82 +0,0 @@ - - * $apigeeService = new Google_Service_Apigee(...); - * $optimizedStats = $apigeeService->optimizedStats; - * - */ -class Google_Service_Apigee_Resource_OrganizationsEnvironmentsOptimizedStats extends Google_Service_Resource -{ - /** - * This api is similar to GetStats except that the response is less verbose. In - * the current scheme, a query parameter _optimized instructs Edge Analytics to - * change the response but since this behavior is not possible with protocol - * buffer and since this parameter is predominantly used by Edge UI, we are - * introducing a separate api. (optimizedStats.get) - * - * @param string $name Required. The organization and environment name for which - * the interactive query will be executed. Must be of the form `organizations/ - * {organization_id}/environments/{environment_id/stats/{dimensions}` Dimensions - * let you view metrics in meaningful groupings. E.g. apiproxy, target_host. The - * value of dimensions should be comma separated list as shown below - * `organizations/{org}/environments/{env}/stats/apiproxy,request_verb` - * @param array $optParams Optional parameters. - * - * @opt_param string sort This parameter specifies if the sort order should be - * ascending or descending Supported values are DESC and ASC. - * @opt_param string topk Take 'top k' results from results, for example, to - * return the top 5 results 'topk=5'. - * @opt_param bool tsAscending Lists timestamps in ascending order if set to - * true. Recommend setting this value to true if you are using sortby with - * sort=DESC. - * @opt_param string timeRange Required. Time interval for the interactive - * query. Time range is specified as start~end E.g. 04/15/2017 00:00~05/15/2017 - * 23:59 - * @opt_param string select Required. The select parameter contains a comma - * separated list of metrics E.g. sum(message_count),sum(error_count) - * @opt_param string limit This parameter is used to limit the number of result - * items. Default and the max value is 14400 - * @opt_param string offset Use offset with limit to enable pagination of - * results. For example, to display results 11-20, set limit to '10' and offset - * to '10'. - * @opt_param string accuracy Legacy field. not used anymore - * @opt_param bool sonar This parameter routes the query to api monitoring - * service for last hour - * @opt_param bool realtime Legacy field: not used anymore - * @opt_param string tzo This parameters contains the timezone offset value - * @opt_param string sortby Comma separated list of columns to sort the final - * result. - * @opt_param string filter Enables drill-down on specific dimension values - * @opt_param string aggTable If customers want to query custom aggregate - * tables, then this parameter can be used to specify the table name. If this - * parameter is skipped, then Edge Query will try to retrieve the data from fact - * tables which will be expensive. - * @opt_param string timeUnit A value of second, minute, hour, day, week, month. - * Time Unit specifies the granularity of metrics returned. - * @return Google_Service_Apigee_GoogleCloudApigeeV1OptimizedStats - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1OptimizedStats"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsQueries.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsQueries.php deleted file mode 100644 index 72fd35f4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsQueries.php +++ /dev/null @@ -1,128 +0,0 @@ - - * $apigeeService = new Google_Service_Apigee(...); - * $queries = $apigeeService->queries; - * - */ -class Google_Service_Apigee_Resource_OrganizationsEnvironmentsQueries extends Google_Service_Resource -{ - /** - * Submit a query to be processed in the background. If the submission of the - * query succeeds, the API returns a 201 status and an ID that refer to the - * query. In addition to the HTTP status 201, the `state` of "enqueued" means - * that the request succeeded. (queries.create) - * - * @param string $parent Required. The parent organization and environment - * names. Must be of the form `organizations/{org}/environments/{env}`. - * @param Google_Service_Apigee_GoogleCloudApigeeV1Query $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1AsyncQuery - */ - public function create($parent, Google_Service_Apigee_GoogleCloudApigeeV1Query $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1AsyncQuery"); - } - /** - * Get query status If the query is still in progress, the `state` is set to - * "running" After the query has completed successfully, `state` is set to - * "completed" (queries.get) - * - * @param string $name Required. Name of the asynchronous query to get. Must be - * of the form `organizations/{org}/environments/{env}/queries/{queryId}`. - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1AsyncQuery - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1AsyncQuery"); - } - /** - * After the query is completed, use this API to retrieve the results. If the - * request succeeds, and there is a non-zero result set, the result is - * downloaded to the client as a zipped JSON file. The name of the downloaded - * file will be: OfflineQueryResult-.zip - * - * Example: `OfflineQueryResult-9cfc0d85-0f30-46d6-ae6f-318d0cb961bd.zip` - * (queries.getResult) - * - * @param string $name Required. Name of the asynchronous query result to get. - * Must be of the form - * `organizations/{org}/environments/{env}/queries/{queryId}/result`. - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleApiHttpBody - */ - public function getResult($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('getResult', array($params), "Google_Service_Apigee_GoogleApiHttpBody"); - } - /** - * (queries.getResultView) - * - * @param string $name Required. Name of the asynchronous query result view to - * get. Must be of the form - * `organizations/{org}/environments/{env}/queries/{queryId}/resultView`. - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1AsyncQueryResultView - */ - public function getResultView($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('getResultView', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1AsyncQueryResultView"); - } - /** - * Return a list of Asynchronous Queries - * (queries.listOrganizationsEnvironmentsQueries) - * - * @param string $parent Required. The parent organization and environment - * names. Must be of the form `organizations/{org}/environments/{env}`. - * @param array $optParams Optional parameters. - * - * @opt_param string to Filter response list by returning asynchronous queries - * that created before this date time. Time must be in ISO date-time format like - * '2011-12-03T10:16:30Z'. - * @opt_param string status Filter response list by asynchronous query status - * @opt_param string dataset Filter response list by dataset. - * - * Example: `api`, `mint` - * @opt_param string submittedBy Filter response list by user who submitted - * queries - * @opt_param string from Filter response list by returning asynchronous queries - * that created after this date time. Time must be in ISO date-time format like - * '2011-12-03T10:15:30Z'. - * @opt_param string inclQueriesWithoutReport Flag to include asynchronous - * queries that don't have a report denifition. - * @return Google_Service_Apigee_GoogleCloudApigeeV1ListAsyncQueriesResponse - */ - public function listOrganizationsEnvironmentsQueries($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1ListAsyncQueriesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsReferences.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsReferences.php deleted file mode 100644 index 902a9abd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsReferences.php +++ /dev/null @@ -1,105 +0,0 @@ - - * $apigeeService = new Google_Service_Apigee(...); - * $references = $apigeeService->references; - * - */ -class Google_Service_Apigee_Resource_OrganizationsEnvironmentsReferences extends Google_Service_Resource -{ - /** - * Creates a Reference in the specified environment. (references.create) - * - * @param string $parent Required. The parent environment name under which the - * Reference will be created. Must be of the form - * `organizations/{org}/environments/{env}`. - * @param Google_Service_Apigee_GoogleCloudApigeeV1Reference $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1Reference - */ - public function create($parent, Google_Service_Apigee_GoogleCloudApigeeV1Reference $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1Reference"); - } - /** - * Deletes a Reference from an environment. Returns the deleted Reference - * resource. (references.delete) - * - * @param string $name Required. The name of the Reference to delete. Must be of - * the form `organizations/{org}/environments/{env}/references/{ref}`. - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1Reference - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1Reference"); - } - /** - * Gets a Reference resource. (references.get) - * - * @param string $name Required. The name of the Reference to get. Must be of - * the form `organizations/{org}/environments/{env}/references/{ref}`. - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1Reference - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1Reference"); - } - /** - * Lists all References in an environment as a JSON array. - * (references.listOrganizationsEnvironmentsReferences) - * - * @param string $parent Required. The parent environment name. Must be of the - * form `organizations/{org}/environments/{env}`. - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_ListResponse - */ - public function listOrganizationsEnvironmentsReferences($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Apigee_ListResponse"); - } - /** - * Updates an existing Reference. Note that this operation has PUT semantics; it - * will replace the entirety of the existing Reference with the resource in the - * request body. (references.update) - * - * @param string $name Required. The name of the Reference to update. Must be of - * the form `organizations/{org}/environments/{env}/references/{ref}`. - * @param Google_Service_Apigee_GoogleCloudApigeeV1Reference $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1Reference - */ - public function update($name, Google_Service_Apigee_GoogleCloudApigeeV1Reference $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1Reference"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsResourcefiles.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsResourcefiles.php deleted file mode 100644 index ec258357..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsResourcefiles.php +++ /dev/null @@ -1,148 +0,0 @@ - - * $apigeeService = new Google_Service_Apigee(...); - * $resourcefiles = $apigeeService->resourcefiles; - * - */ -class Google_Service_Apigee_Resource_OrganizationsEnvironmentsResourcefiles extends Google_Service_Resource -{ - /** - * Creates a resource file in an environment. `Content-Type` must be either - * `multipart/form-data` with the resource file provided in the only field, or - * 'application/octet-stream'. (resourcefiles.create) - * - * @param string $parent Required. The name of the environment in which to - * create the resource file. Must be of the form - * `organizations/{organization}/environments/{environment}`. - * @param Google_Service_Apigee_GoogleApiHttpBody $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string type Required. The resource file type, must be `js`, `jsc`, - * `java`, `properties`, `py`, `xsl`, `wsdl`, or `xsd`. - * @opt_param string name Required. The id of the resource file. Must match the - * regular expression [a-zA-Z0-9:/\\!@#$%^&{}\[\]()+\-=,.~'` ]{1,255} - * @return Google_Service_Apigee_GoogleCloudApigeeV1ResourceFile - */ - public function create($parent, Google_Service_Apigee_GoogleApiHttpBody $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1ResourceFile"); - } - /** - * Deletes a resource file in an environment. (resourcefiles.delete) - * - * @param string $parent Required. The name of the parent environment. Must be - * of the form `organizations/{organization}/environments/{environment}`. - * @param string $type Required. The resource file type, must be `js`, `jsc`, - * `java`, `properties`, `py`, `xsl`, `wsdl`, or `xsd`. - * @param string $resourceFileId Required. The id of the resource file to - * delete. Must match the regular expression - * [a-zA-Z0-9:/\\!@#$%^&{}\[\]()+\-=,.~'` ]{1,255} - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1ResourceFile - */ - public function delete($parent, $type, $resourceFileId, $optParams = array()) - { - $params = array('parent' => $parent, 'type' => $type, 'resourceFileId' => $resourceFileId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1ResourceFile"); - } - /** - * Gets a resource file in an environment. (resourcefiles.get) - * - * @param string $parent Required. The name of the parent environment. Must be - * of the form `organizations/{organization}/environments/{environment}`. - * @param string $type Required. The resource file type, must be `js`, `jsc`, - * `java`, `properties`, `py`, `xsl`, `wsdl`, or `xsd`. - * @param string $resourceFileId Required. The id of the resource file to get. - * Must match the regular expression [a-zA-Z0-9:/\\!@#$%^&{}\[\]()+\-=,.~'` - * ]{1,255} - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleApiHttpBody - */ - public function get($parent, $type, $resourceFileId, $optParams = array()) - { - $params = array('parent' => $parent, 'type' => $type, 'resourceFileId' => $resourceFileId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Apigee_GoogleApiHttpBody"); - } - /** - * Lists all resource files in an environment. - * (resourcefiles.listOrganizationsEnvironmentsResourcefiles) - * - * @param string $parent Required. The name of the environment in which to list - * resource files. Must be of the form - * `organizations/{organization}/environments/{environment}`. - * @param array $optParams Optional parameters. - * - * @opt_param string type Optional. Restricts the response to resources of the - * given type. - * @return Google_Service_Apigee_GoogleCloudApigeeV1ListEnvironmentResourcesResponse - */ - public function listOrganizationsEnvironmentsResourcefiles($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1ListEnvironmentResourcesResponse"); - } - /** - * Lists all resource files in an environment. - * (resourcefiles.listEnvironmentResources) - * - * @param string $parent Required. The name of the environment in which to list - * resource files. Must be of the form - * `organizations/{organization}/environments/{environment}`. - * @param string $type Optional. Restricts the response to resources of the - * given type. - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1ListEnvironmentResourcesResponse - */ - public function listEnvironmentResources($parent, $type, $optParams = array()) - { - $params = array('parent' => $parent, 'type' => $type); - $params = array_merge($params, $optParams); - return $this->call('listEnvironmentResources', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1ListEnvironmentResourcesResponse"); - } - /** - * Updates a resource file in an environment. `Content-Type` must be either - * `multipart/form-data` with the resource file provided in the only field, or - * 'application/octet-stream'. (resourcefiles.update) - * - * @param string $parent Required. The name of the parent environment. Must be - * of the form `organizations/{organization}/environments/{environment}`. - * @param string $type Required. The resource file type, must be `js`, `jsc`, - * `java`, `properties`, `py`, `xsl`, `wsdl`, or `xsd`. - * @param string $resourceFileId Required. The id of the resource file to - * update. Must match the regular expression - * [a-zA-Z0-9:/\\!@#$%^&{}\[\]()+\-=,.~'` ]{1,255} - * @param Google_Service_Apigee_GoogleApiHttpBody $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1ResourceFile - */ - public function update($parent, $type, $resourceFileId, Google_Service_Apigee_GoogleApiHttpBody $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'type' => $type, 'resourceFileId' => $resourceFileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1ResourceFile"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsSharedflows.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsSharedflows.php deleted file mode 100644 index a3c30afe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsSharedflows.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $apigeeService = new Google_Service_Apigee(...); - * $sharedflows = $apigeeService->sharedflows; - * - */ -class Google_Service_Apigee_Resource_OrganizationsEnvironmentsSharedflows extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsSharedflowsDeployments.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsSharedflowsDeployments.php deleted file mode 100644 index fc83d9b0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsSharedflowsDeployments.php +++ /dev/null @@ -1,44 +0,0 @@ - - * $apigeeService = new Google_Service_Apigee(...); - * $deployments = $apigeeService->deployments; - * - */ -class Google_Service_Apigee_Resource_OrganizationsEnvironmentsSharedflowsDeployments extends Google_Service_Resource -{ - /** - * Lists all deployments of a shared flow in an environment. - * (deployments.listOrganizationsEnvironmentsSharedflowsDeployments) - * - * @param string $parent Required. Name representing a shared flow in an - * environment in the following format: - * `organizations/{org}/environments/{env}/sharedflows/{sharedflow}` - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1ListDeploymentsResponse - */ - public function listOrganizationsEnvironmentsSharedflowsDeployments($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1ListDeploymentsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsSharedflowsRevisions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsSharedflowsRevisions.php deleted file mode 100644 index 556f480f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsSharedflowsRevisions.php +++ /dev/null @@ -1,59 +0,0 @@ - - * $apigeeService = new Google_Service_Apigee(...); - * $revisions = $apigeeService->revisions; - * - */ -class Google_Service_Apigee_Resource_OrganizationsEnvironmentsSharedflowsRevisions extends Google_Service_Resource -{ - /** - * Undeploys a shared flow revision from an environment. (revisions.deployments) - * - * @param string $name Required. Name of the shared flow revision to undeploy in - * the following format: `organizations/{org}/environments/{env}/sharedflows/{ - * sharedflow}/revisions/{rev}` - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleProtobufEmpty - */ - public function deployments($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('deployments', array($params), "Google_Service_Apigee_GoogleProtobufEmpty"); - } - /** - * Gets the deployment of a shared flow revision and actual state reported by - * runtime pods. (revisions.getDeployments) - * - * @param string $name Required. Name representing a shared flow in an - * environment in the following format: `organizations/{org}/environments/{env - * }/sharedflows/{sharedflow}/revisions/{rev}` - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1Deployment - */ - public function getDeployments($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('getDeployments', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1Deployment"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsStats.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsStats.php deleted file mode 100644 index 03556e6e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsStats.php +++ /dev/null @@ -1,83 +0,0 @@ - - * $apigeeService = new Google_Service_Apigee(...); - * $stats = $apigeeService->stats; - * - */ -class Google_Service_Apigee_Resource_OrganizationsEnvironmentsStats extends Google_Service_Resource -{ - /** - * Retrieve metrics grouped by dimensions. The types of metrics you can retrieve - * include traffic, message counts, API call latency, response size, and cache - * hits and counts. Dimensions let you view metrics in meaningful groups. The - * stats api does accept dimensions as path params. The dimensions are optional - * in which case the metrics are computed on the entire data for the given - * timerange. (stats.get) - * - * @param string $name Required. The organization and environment name for which - * the interactive query will be executed. Must be of the form `organizations/ - * {organization_id}/environments/{environment_id/stats/{dimensions}` Dimensions - * let you view metrics in meaningful groupings. E.g. apiproxy, target_host. The - * value of dimensions should be comma separated list as shown below - * `organizations/{org}/environments/{env}/stats/apiproxy,request_verb` - * @param array $optParams Optional parameters. - * - * @opt_param string sort This parameter specifies if the sort order should be - * ascending or descending Supported values are DESC and ASC. - * @opt_param string topk Take 'top k' results from results, for example, to - * return the top 5 results 'topk=5'. - * @opt_param bool tsAscending Lists timestamps in ascending order if set to - * true. Recommend setting this value to true if you are using sortby with - * sort=DESC. - * @opt_param string timeRange Time interval for the interactive query. Time - * range is specified as start~end E.g. 04/15/2017 00:00~05/15/2017 23:59 - * @opt_param string select The select parameter contains a comma separated list - * of metrics E.g. sum(message_count),sum(error_count) - * @opt_param string limit This parameter is used to limit the number of result - * items. Default and the max value is 14400 - * @opt_param string offset Use offset with limit to enable pagination of - * results. For example, to display results 11-20, set limit to '10' and offset - * to '10'. - * @opt_param string accuracy Legacy field. not used anymore This field is - * present to support UI calls which still use this parameter - * @opt_param bool sonar This parameter routes the query to api monitoring - * service for last hour - * @opt_param bool realtime Legacy field: not used anymore - * @opt_param string tzo This parameters contains the timezone offset value - * @opt_param string sortby Comma separated list of columns to sort the final - * result. - * @opt_param string filter Enables drill-down on specific dimension values - * @opt_param string timeUnit A value of second, minute, hour, day, week, month. - * Time Unit specifies the granularity of metrics returned. - * @opt_param string aggTable If customers want to query custom aggregate - * tables, then this parameter can be used to specify the table name. If this - * parameter is skipped, then Edge Query will try to retrieve the data from fact - * tables which will be expensive. - * @return Google_Service_Apigee_GoogleCloudApigeeV1Stats - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1Stats"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsTargetservers.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsTargetservers.php deleted file mode 100644 index 64c10b4d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsEnvironmentsTargetservers.php +++ /dev/null @@ -1,111 +0,0 @@ - - * $apigeeService = new Google_Service_Apigee(...); - * $targetservers = $apigeeService->targetservers; - * - */ -class Google_Service_Apigee_Resource_OrganizationsEnvironmentsTargetservers extends Google_Service_Resource -{ - /** - * Creates a TargetServer in the specified environment. (targetservers.create) - * - * @param string $parent Required. The parent environment name under which the - * TargetServer will be created. Must be of the form - * `organizations/{org}/environments/{env}`. - * @param Google_Service_Apigee_GoogleCloudApigeeV1TargetServer $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string name Optional. The ID to give the TargetServer. This will - * overwrite the value in TargetServer. - * @return Google_Service_Apigee_GoogleCloudApigeeV1TargetServer - */ - public function create($parent, Google_Service_Apigee_GoogleCloudApigeeV1TargetServer $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1TargetServer"); - } - /** - * Deletes a TargetServer from an environment. Returns the deleted TargetServer - * resource. (targetservers.delete) - * - * @param string $name Required. The name of the TargetServer to delete. Must be - * of the form - * `organizations/{org}/environments/{env}/targetservers/{target_server_id}`. - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1TargetServer - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1TargetServer"); - } - /** - * Gets a TargetServer resource. (targetservers.get) - * - * @param string $name Required. The name of the TargetServer to get. Must be of - * the form - * `organizations/{org}/environments/{env}/targetservers/{target_server_id}`. - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1TargetServer - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1TargetServer"); - } - /** - * Lists all TargetServers in an environment as a JSON array. - * (targetservers.listOrganizationsEnvironmentsTargetservers) - * - * @param string $parent Required. The parent environment name. Must be of the - * form `organizations/{org}/environments/{env}`. - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_ListResponse - */ - public function listOrganizationsEnvironmentsTargetservers($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Apigee_ListResponse"); - } - /** - * Updates an existing TargetServer. Note that this operation has PUT semantics; - * it will replace the entirety of the existing TargetServer with the resource - * in the request body. (targetservers.update) - * - * @param string $name Required. The name of the TargetServer to replace. Must - * be of the form - * `organizations/{org}/environments/{env}/targetservers/{target_server_id}`. - * @param Google_Service_Apigee_GoogleCloudApigeeV1TargetServer $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1TargetServer - */ - public function update($name, Google_Service_Apigee_GoogleCloudApigeeV1TargetServer $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1TargetServer"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsKeyvaluemaps.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsKeyvaluemaps.php deleted file mode 100644 index 61b6558a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsKeyvaluemaps.php +++ /dev/null @@ -1,73 +0,0 @@ - - * $apigeeService = new Google_Service_Apigee(...); - * $keyvaluemaps = $apigeeService->keyvaluemaps; - * - */ -class Google_Service_Apigee_Resource_OrganizationsKeyvaluemaps extends Google_Service_Resource -{ - /** - * Creates a key value map in an organization. (keyvaluemaps.create) - * - * @param string $parent Required. The name of the organization in which to - * create the key value map file. Must be of the form - * `organizations/{organization}`. - * @param Google_Service_Apigee_GoogleCloudApigeeV1KeyValueMap $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1KeyValueMap - */ - public function create($parent, Google_Service_Apigee_GoogleCloudApigeeV1KeyValueMap $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1KeyValueMap"); - } - /** - * Delete a key value map in an organization. (keyvaluemaps.delete) - * - * @param string $name Required. The name of the key value map. Must be of the - * form `organizations/{organization}/keyvaluemaps/{keyvaluemap}`. - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1KeyValueMap - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1KeyValueMap"); - } - /** - * List key value maps in an organization. - * (keyvaluemaps.listOrganizationsKeyvaluemaps) - * - * @param string $parent Required. The name of the organization in which to list - * key value maps. Must be of the form `organizations/{organization}`. - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_ListResponse - */ - public function listOrganizationsKeyvaluemaps($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Apigee_ListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsOperations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsOperations.php deleted file mode 100644 index 87067909..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsOperations.php +++ /dev/null @@ -1,108 +0,0 @@ - - * $apigeeService = new Google_Service_Apigee(...); - * $operations = $apigeeService->operations; - * - */ -class Google_Service_Apigee_Resource_OrganizationsOperations extends Google_Service_Resource -{ - /** - * Starts asynchronous cancellation on a long-running operation. The server - * makes a best effort to cancel the operation, but success is not guaranteed. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or - * other methods to check whether the cancellation succeeded or whether the - * operation completed despite cancellation. On successful cancellation, the - * operation is not deleted; instead, it becomes an operation with an - * Operation.error value with a google.rpc.Status.code of 1, corresponding to - * `Code.CANCELLED`. (operations.cancel) - * - * @param string $name The name of the operation resource to be cancelled. - * @param Google_Service_Apigee_GoogleLongrunningCancelOperationRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleProtobufEmpty - */ - public function cancel($name, Google_Service_Apigee_GoogleLongrunningCancelOperationRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('cancel', array($params), "Google_Service_Apigee_GoogleProtobufEmpty"); - } - /** - * Deletes a long-running operation. This method indicates that the client is no - * longer interested in the operation result. It does not cancel the operation. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. (operations.delete) - * - * @param string $name The name of the operation resource to be deleted. - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleProtobufEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Apigee_GoogleProtobufEmpty"); - } - /** - * Gets the latest state of a long-running operation. Clients can use this - * method to poll the operation result at intervals as recommended by the API - * service. (operations.get) - * - * @param string $name The name of the operation resource. - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleLongrunningOperation - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Apigee_GoogleLongrunningOperation"); - } - /** - * Lists operations that match the specified filter in the request. If the - * server doesn't support this method, it returns `UNIMPLEMENTED`. - * - * NOTE: the `name` binding allows API services to override the binding to use - * different resource name schemes, such as `users/operations`. To override the - * binding, API services can add a binding such as - * `"/v1/{name=users}/operations"` to their service configuration. For backwards - * compatibility, the default name includes the operations collection id, - * however overriding users must ensure the name binding is the parent resource, - * without the operations collection id. - * (operations.listOrganizationsOperations) - * - * @param string $name The name of the operation's parent resource. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The standard list page token. - * @opt_param int pageSize The standard list page size. - * @opt_param string filter The standard list filter. - * @return Google_Service_Apigee_GoogleLongrunningListOperationsResponse - */ - public function listOrganizationsOperations($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Apigee_GoogleLongrunningListOperationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsReports.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsReports.php deleted file mode 100644 index 1b0f1c8a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsReports.php +++ /dev/null @@ -1,110 +0,0 @@ - - * $apigeeService = new Google_Service_Apigee(...); - * $reports = $apigeeService->reports; - * - */ -class Google_Service_Apigee_Resource_OrganizationsReports extends Google_Service_Resource -{ - /** - * Creates a Custom Report for an Organization. A Custom Report provides Apigee - * Customers to create custom dashboards in addition to the standard dashboards - * which are provided. The Custom Report in its simplest form contains - * specifications about metrics, dimensions and filters. It is important to note - * that the custom report by itself does not provide an executable entity. The - * Edge UI converts the custom report definition into an analytics query and - * displays the result in a chart. (reports.create) - * - * @param string $parent Required. The parent organization name under which the - * Custom Report will be created. Must be of the form: - * `organizations/{organization_id}/reports` - * @param Google_Service_Apigee_GoogleCloudApigeeV1CustomReport $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1CustomReport - */ - public function create($parent, Google_Service_Apigee_GoogleCloudApigeeV1CustomReport $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1CustomReport"); - } - /** - * Deletes an existing custom report definition (reports.delete) - * - * @param string $name Required. Custom Report name of the form: - * `organizations/{organization_id}/reports/{report_name}` - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1DeleteCustomReportResponse - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1DeleteCustomReportResponse"); - } - /** - * Retrieve a custom report definition. (reports.get) - * - * @param string $name Required. Custom Report name of the form: - * `organizations/{organization_id}/reports/{report_name}` - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1CustomReport - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1CustomReport"); - } - /** - * Return a list of Custom Reports (reports.listOrganizationsReports) - * - * @param string $parent Required. The parent organization name under which the - * API product will be listed `organizations/{organization_id}/reports` - * @param array $optParams Optional parameters. - * - * @opt_param bool expand Set to 'true' to get expanded details about each - * custom report. - * @return Google_Service_Apigee_GoogleCloudApigeeV1ListCustomReportsResponse - */ - public function listOrganizationsReports($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1ListCustomReportsResponse"); - } - /** - * Update an existing custom report definition (reports.update) - * - * @param string $name Required. Custom Report name of the form: - * `organizations/{organization_id}/reports/{report_name}` - * @param Google_Service_Apigee_GoogleCloudApigeeV1CustomReport $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1CustomReport - */ - public function update($name, Google_Service_Apigee_GoogleCloudApigeeV1CustomReport $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1CustomReport"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsSharedflows.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsSharedflows.php deleted file mode 100644 index b9b965a7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsSharedflows.php +++ /dev/null @@ -1,106 +0,0 @@ - - * $apigeeService = new Google_Service_Apigee(...); - * $sharedflows = $apigeeService->sharedflows; - * - */ -class Google_Service_Apigee_Resource_OrganizationsSharedflows extends Google_Service_Resource -{ - /** - * Uploads a ZIP-formatted shared flow configuration bundle to an organization. - * If the shared flow already exists, this creates a new revision of it. If the - * shared flow does not exist, this creates it. - * - * Once imported, the shared flow revision must be deployed before it can be - * accessed at runtime. - * - * The size limit of a shared flow bundle is 15 MB. (sharedflows.create) - * - * @param string $parent Required. The name of the parent organization under - * which to create the shared flow. Must be of the form: - * `organizations/{organization_id}` - * @param Google_Service_Apigee_GoogleApiHttpBody $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string action Required. Must be set to either `import` or - * `validate`. - * @opt_param string name Required. The name to give the shared flow - * @return Google_Service_Apigee_GoogleCloudApigeeV1SharedFlowRevision - */ - public function create($parent, Google_Service_Apigee_GoogleApiHttpBody $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1SharedFlowRevision"); - } - /** - * Deletes a shared flow and all it's revisions. The shared flow must be - * undeployed before you can delete it. (sharedflows.delete) - * - * @param string $name Required. shared flow name of the form: - * `organizations/{organization_id}/sharedflows/{shared_flow_id}` - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1SharedFlow - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1SharedFlow"); - } - /** - * Gets a shared flow by name, including a list of its revisions. - * (sharedflows.get) - * - * @param string $name Required. The name of the shared flow to get. Must be of - * the form: `organizations/{organization_id}/sharedflows/{shared_flow_id}` - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1SharedFlow - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1SharedFlow"); - } - /** - * Lists all shared flows in the organization. - * (sharedflows.listOrganizationsSharedflows) - * - * @param string $parent Required. The name of the parent organization under - * which to get shared flows. Must be of the form: - * `organizations/{organization_id}` - * @param array $optParams Optional parameters. - * - * @opt_param bool includeRevisions Indicates whether to include a list of - * revisions in the response. - * @opt_param bool includeMetaData Indicates whether to include shared flow - * metadata in the response. - * @return Google_Service_Apigee_GoogleCloudApigeeV1ListSharedFlowsResponse - */ - public function listOrganizationsSharedflows($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1ListSharedFlowsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsSharedflowsDeployments.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsSharedflowsDeployments.php deleted file mode 100644 index 2546eebb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsSharedflowsDeployments.php +++ /dev/null @@ -1,44 +0,0 @@ - - * $apigeeService = new Google_Service_Apigee(...); - * $deployments = $apigeeService->deployments; - * - */ -class Google_Service_Apigee_Resource_OrganizationsSharedflowsDeployments extends Google_Service_Resource -{ - /** - * Lists all deployments of a shared flow. - * (deployments.listOrganizationsSharedflowsDeployments) - * - * @param string $parent Required. Name of the shared flow for which to return - * deployment information in the following format: - * `organizations/{org}/sharedflows/{sharedflow}` - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1ListDeploymentsResponse - */ - public function listOrganizationsSharedflowsDeployments($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1ListDeploymentsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsSharedflowsRevisions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsSharedflowsRevisions.php deleted file mode 100644 index 76f892ec..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsSharedflowsRevisions.php +++ /dev/null @@ -1,107 +0,0 @@ - - * $apigeeService = new Google_Service_Apigee(...); - * $revisions = $apigeeService->revisions; - * - */ -class Google_Service_Apigee_Resource_OrganizationsSharedflowsRevisions extends Google_Service_Resource -{ - /** - * Deletes a shared flow and all associated policies, resources, and revisions. - * You must undeploy the shared flow before deleting it. (revisions.delete) - * - * @param string $name Required. The name of the shared flow revision to delete. - * Must be of the form: `organizations/{organization_id}/sharedflows/{shared_f - * low_id}/revisions/{revision_id}` - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1SharedFlowRevision - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1SharedFlowRevision"); - } - /** - * Gets a revision of a shared flow. - * - * If `format=bundle` is passed, it instead outputs a shared flow revision as a - * ZIP-formatted bundle of code and config files. (revisions.get) - * - * @param string $name Required. The name of the shared flow revision to get. - * Must be of the form: `organizations/{organization_id}/sharedflows/{shared_f - * low_id}/revisions/{revision_id}` - * @param array $optParams Optional parameters. - * - * @opt_param string format Specify `bundle` to export the contents of the - * shared flow bundle. Otherwise, the bundle metadata is returned. - * @return Google_Service_Apigee_GoogleApiHttpBody - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Apigee_GoogleApiHttpBody"); - } - /** - * Lists all revisions for a shared flow. - * (revisions.listOrganizationsSharedflowsRevisions) - * - * @param string $parent Required. The name of the parent API proxy under which - * to get API proxy revisions. Must be of the form: - * `organizations/{organization_id}/sharedflows/{shared_flow_id}` - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_ListResponse - */ - public function listOrganizationsSharedflowsRevisions($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Apigee_ListResponse"); - } - /** - * Updates a shared flow revision. This operation is only allowed on revisions - * which have never been deployed. After deployment a revision becomes - * immutable, even if it becomes undeployed. - * - * The payload is a ZIP-formatted shared flow. Content type must be either - * multipart/form-data or application/octet-stream. - * (revisions.updateSharedFlowRevision) - * - * @param string $name Required. The name of the shared flow revision to update. - * Must be of the form: `organizations/{organization_id}/sharedflows/{shared_f - * low_id}/revisions/{revision_id}` - * @param Google_Service_Apigee_GoogleApiHttpBody $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool validate Ignored. All uploads are validated regardless of the - * value of this field. It is kept for compatibility with existing APIs. Must be - * `true` or `false` if provided. - * @return Google_Service_Apigee_GoogleCloudApigeeV1SharedFlowRevision - */ - public function updateSharedFlowRevision($name, Google_Service_Apigee_GoogleApiHttpBody $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updateSharedFlowRevision', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1SharedFlowRevision"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsSharedflowsRevisionsDeployments.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsSharedflowsRevisionsDeployments.php deleted file mode 100644 index 525ffc5e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Apigee/Resource/OrganizationsSharedflowsRevisionsDeployments.php +++ /dev/null @@ -1,44 +0,0 @@ - - * $apigeeService = new Google_Service_Apigee(...); - * $deployments = $apigeeService->deployments; - * - */ -class Google_Service_Apigee_Resource_OrganizationsSharedflowsRevisionsDeployments extends Google_Service_Resource -{ - /** - * Lists all deployments of a shared flow and actual state reported by runtime - * pods. (deployments.listOrganizationsSharedflowsRevisionsDeployments) - * - * @param string $parent Required. Name of the API proxy revision for which to - * return deployment information in the following format: - * `organizations/{org}/sharedflows/{sharedflow}/revisions/{rev}`. - * @param array $optParams Optional parameters. - * @return Google_Service_Apigee_GoogleCloudApigeeV1ListDeploymentsResponse - */ - public function listOrganizationsSharedflowsRevisionsDeployments($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1ListDeploymentsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AppState.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AppState.php deleted file mode 100644 index f59a0840..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AppState.php +++ /dev/null @@ -1,122 +0,0 @@ - - * The Google App State API.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_AppState extends Google_Service -{ - /** View and manage your data for this application. */ - const APPSTATE = - "https://www.googleapis.com/auth/appstate"; - - public $states; - - /** - * Constructs the internal representation of the AppState service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://www.googleapis.com/'; - $this->servicePath = 'appstate/v1/'; - $this->batchPath = 'batch/appstate/v1'; - $this->version = 'v1'; - $this->serviceName = 'appstate'; - - $this->states = new Google_Service_AppState_Resource_States( - $this, - $this->serviceName, - 'states', - array( - 'methods' => array( - 'clear' => array( - 'path' => 'states/{stateKey}/clear', - 'httpMethod' => 'POST', - 'parameters' => array( - 'stateKey' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - 'currentDataVersion' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => 'states/{stateKey}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'stateKey' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'states/{stateKey}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'stateKey' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'states', - 'httpMethod' => 'GET', - 'parameters' => array( - 'includeData' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'update' => array( - 'path' => 'states/{stateKey}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'stateKey' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - 'currentStateVersion' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AppState/GetResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AppState/GetResponse.php deleted file mode 100644 index e50b9f36..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AppState/GetResponse.php +++ /dev/null @@ -1,57 +0,0 @@ -currentStateVersion = $currentStateVersion; - } - public function getCurrentStateVersion() - { - return $this->currentStateVersion; - } - public function setData($data) - { - $this->data = $data; - } - public function getData() - { - return $this->data; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setStateKey($stateKey) - { - $this->stateKey = $stateKey; - } - public function getStateKey() - { - return $this->stateKey; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AppState/ListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AppState/ListResponse.php deleted file mode 100644 index 9cd249e1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AppState/ListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_AppState_GetResponse - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setMaximumKeyCount($maximumKeyCount) - { - $this->maximumKeyCount = $maximumKeyCount; - } - public function getMaximumKeyCount() - { - return $this->maximumKeyCount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AppState/Resource/States.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AppState/Resource/States.php deleted file mode 100644 index e5fea67c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AppState/Resource/States.php +++ /dev/null @@ -1,113 +0,0 @@ - - * $appstateService = new Google_Service_AppState(...); - * $states = $appstateService->states; - * - */ -class Google_Service_AppState_Resource_States extends Google_Service_Resource -{ - /** - * Clears (sets to empty) the data for the passed key if and only if the passed - * version matches the currently stored version. This method results in a - * conflict error on version mismatch. (states.clear) - * - * @param int $stateKey The key for the data to be retrieved. - * @param array $optParams Optional parameters. - * - * @opt_param string currentDataVersion The version of the data to be cleared. - * Version strings are returned by the server. - * @return Google_Service_AppState_WriteResult - */ - public function clear($stateKey, $optParams = array()) - { - $params = array('stateKey' => $stateKey); - $params = array_merge($params, $optParams); - return $this->call('clear', array($params), "Google_Service_AppState_WriteResult"); - } - /** - * Deletes a key and the data associated with it. The key is removed and no - * longer counts against the key quota. Note that since this method is not safe - * in the face of concurrent modifications, it should only be used for - * development and testing purposes. Invoking this method in shipping code can - * result in data loss and data corruption. (states.delete) - * - * @param int $stateKey The key for the data to be retrieved. - * @param array $optParams Optional parameters. - */ - public function delete($stateKey, $optParams = array()) - { - $params = array('stateKey' => $stateKey); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Retrieves the data corresponding to the passed key. If the key does not exist - * on the server, an HTTP 404 will be returned. (states.get) - * - * @param int $stateKey The key for the data to be retrieved. - * @param array $optParams Optional parameters. - * @return Google_Service_AppState_GetResponse - */ - public function get($stateKey, $optParams = array()) - { - $params = array('stateKey' => $stateKey); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_AppState_GetResponse"); - } - /** - * Lists all the states keys, and optionally the state data. (states.listStates) - * - * @param array $optParams Optional parameters. - * - * @opt_param bool includeData Whether to include the full data in addition to - * the version number - * @return Google_Service_AppState_ListResponse - */ - public function listStates($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_AppState_ListResponse"); - } - /** - * Update the data associated with the input key if and only if the passed - * version matches the currently stored version. This method is safe in the face - * of concurrent writes. Maximum per-key size is 128KB. (states.update) - * - * @param int $stateKey The key for the data to be retrieved. - * @param Google_Service_AppState_UpdateRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string currentStateVersion The version of the app state your - * application is attempting to update. If this does not match the current - * version, this method will return a conflict error. If there is no data stored - * on the server for this key, the update will succeed irrespective of the value - * of this parameter. - * @return Google_Service_AppState_WriteResult - */ - public function update($stateKey, Google_Service_AppState_UpdateRequest $postBody, $optParams = array()) - { - $params = array('stateKey' => $stateKey, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_AppState_WriteResult"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AppState/UpdateRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AppState/UpdateRequest.php deleted file mode 100644 index 345149c5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AppState/UpdateRequest.php +++ /dev/null @@ -1,39 +0,0 @@ -data = $data; - } - public function getData() - { - return $this->data; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AppState/WriteResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AppState/WriteResult.php deleted file mode 100644 index 259391c4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/AppState/WriteResult.php +++ /dev/null @@ -1,48 +0,0 @@ -currentStateVersion = $currentStateVersion; - } - public function getCurrentStateVersion() - { - return $this->currentStateVersion; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setStateKey($stateKey) - { - $this->stateKey = $stateKey; - } - public function getStateKey() - { - return $this->stateKey; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine.php deleted file mode 100644 index a731c3de..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine.php +++ /dev/null @@ -1,841 +0,0 @@ - - * Provisions and manages developers' App Engine applications.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Appengine extends Google_Service -{ - /** View and manage your applications deployed on Google App Engine. */ - const APPENGINE_ADMIN = - "https://www.googleapis.com/auth/appengine.admin"; - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** View your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM_READ_ONLY = - "https://www.googleapis.com/auth/cloud-platform.read-only"; - - public $apps; - public $apps_authorizedCertificates; - public $apps_authorizedDomains; - public $apps_domainMappings; - public $apps_firewall_ingressRules; - public $apps_locations; - public $apps_operations; - public $apps_services; - public $apps_services_versions; - public $apps_services_versions_instances; - - /** - * Constructs the internal representation of the Appengine service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://appengine.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'appengine'; - - $this->apps = new Google_Service_Appengine_Resource_Apps( - $this, - $this->serviceName, - 'apps', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/apps', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'get' => array( - 'path' => 'v1/apps/{appsId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'appsId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => 'v1/apps/{appsId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'appsId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'repair' => array( - 'path' => 'v1/apps/{appsId}:repair', - 'httpMethod' => 'POST', - 'parameters' => array( - 'appsId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->apps_authorizedCertificates = new Google_Service_Appengine_Resource_AppsAuthorizedCertificates( - $this, - $this->serviceName, - 'authorizedCertificates', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/apps/{appsId}/authorizedCertificates', - 'httpMethod' => 'POST', - 'parameters' => array( - 'appsId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/apps/{appsId}/authorizedCertificates/{authorizedCertificatesId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'appsId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'authorizedCertificatesId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/apps/{appsId}/authorizedCertificates/{authorizedCertificatesId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'appsId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'authorizedCertificatesId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'v1/apps/{appsId}/authorizedCertificates', - 'httpMethod' => 'GET', - 'parameters' => array( - 'appsId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'v1/apps/{appsId}/authorizedCertificates/{authorizedCertificatesId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'appsId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'authorizedCertificatesId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->apps_authorizedDomains = new Google_Service_Appengine_Resource_AppsAuthorizedDomains( - $this, - $this->serviceName, - 'authorizedDomains', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1/apps/{appsId}/authorizedDomains', - 'httpMethod' => 'GET', - 'parameters' => array( - 'appsId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->apps_domainMappings = new Google_Service_Appengine_Resource_AppsDomainMappings( - $this, - $this->serviceName, - 'domainMappings', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/apps/{appsId}/domainMappings', - 'httpMethod' => 'POST', - 'parameters' => array( - 'appsId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'overrideStrategy' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => 'v1/apps/{appsId}/domainMappings/{domainMappingsId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'appsId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'domainMappingsId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/apps/{appsId}/domainMappings/{domainMappingsId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'appsId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'domainMappingsId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/apps/{appsId}/domainMappings', - 'httpMethod' => 'GET', - 'parameters' => array( - 'appsId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v1/apps/{appsId}/domainMappings/{domainMappingsId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'appsId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'domainMappingsId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->apps_firewall_ingressRules = new Google_Service_Appengine_Resource_AppsFirewallIngressRules( - $this, - $this->serviceName, - 'ingressRules', - array( - 'methods' => array( - 'batchUpdate' => array( - 'path' => 'v1/apps/{appsId}/firewall/ingressRules:batchUpdate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'appsId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'create' => array( - 'path' => 'v1/apps/{appsId}/firewall/ingressRules', - 'httpMethod' => 'POST', - 'parameters' => array( - 'appsId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/apps/{appsId}/firewall/ingressRules/{ingressRulesId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'appsId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'ingressRulesId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/apps/{appsId}/firewall/ingressRules/{ingressRulesId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'appsId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'ingressRulesId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/apps/{appsId}/firewall/ingressRules', - 'httpMethod' => 'GET', - 'parameters' => array( - 'appsId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'matchingAddress' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'v1/apps/{appsId}/firewall/ingressRules/{ingressRulesId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'appsId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'ingressRulesId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->apps_locations = new Google_Service_Appengine_Resource_AppsLocations( - $this, - $this->serviceName, - 'locations', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/apps/{appsId}/locations/{locationsId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'appsId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'locationsId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/apps/{appsId}/locations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'appsId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->apps_operations = new Google_Service_Appengine_Resource_AppsOperations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/apps/{appsId}/operations/{operationsId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'appsId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'operationsId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/apps/{appsId}/operations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'appsId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->apps_services = new Google_Service_Appengine_Resource_AppsServices( - $this, - $this->serviceName, - 'services', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'v1/apps/{appsId}/services/{servicesId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'appsId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'servicesId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/apps/{appsId}/services/{servicesId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'appsId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'servicesId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/apps/{appsId}/services', - 'httpMethod' => 'GET', - 'parameters' => array( - 'appsId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v1/apps/{appsId}/services/{servicesId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'appsId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'servicesId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'migrateTraffic' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ), - ) - ) - ); - $this->apps_services_versions = new Google_Service_Appengine_Resource_AppsServicesVersions( - $this, - $this->serviceName, - 'versions', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/apps/{appsId}/services/{servicesId}/versions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'appsId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'servicesId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/apps/{appsId}/services/{servicesId}/versions/{versionsId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'appsId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'servicesId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'versionsId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/apps/{appsId}/services/{servicesId}/versions/{versionsId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'appsId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'servicesId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'versionsId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'v1/apps/{appsId}/services/{servicesId}/versions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'appsId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'servicesId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v1/apps/{appsId}/services/{servicesId}/versions/{versionsId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'appsId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'servicesId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'versionsId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->apps_services_versions_instances = new Google_Service_Appengine_Resource_AppsServicesVersionsInstances( - $this, - $this->serviceName, - 'instances', - array( - 'methods' => array( - 'debug' => array( - 'path' => 'v1/apps/{appsId}/services/{servicesId}/versions/{versionsId}/instances/{instancesId}:debug', - 'httpMethod' => 'POST', - 'parameters' => array( - 'appsId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'servicesId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'versionsId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instancesId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/apps/{appsId}/services/{servicesId}/versions/{versionsId}/instances/{instancesId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'appsId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'servicesId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'versionsId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instancesId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/apps/{appsId}/services/{servicesId}/versions/{versionsId}/instances/{instancesId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'appsId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'servicesId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'versionsId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instancesId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/apps/{appsId}/services/{servicesId}/versions/{versionsId}/instances', - 'httpMethod' => 'GET', - 'parameters' => array( - 'appsId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'servicesId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'versionsId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ApiConfigHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ApiConfigHandler.php deleted file mode 100644 index f28df53c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ApiConfigHandler.php +++ /dev/null @@ -1,66 +0,0 @@ -authFailAction = $authFailAction; - } - public function getAuthFailAction() - { - return $this->authFailAction; - } - public function setLogin($login) - { - $this->login = $login; - } - public function getLogin() - { - return $this->login; - } - public function setScript($script) - { - $this->script = $script; - } - public function getScript() - { - return $this->script; - } - public function setSecurityLevel($securityLevel) - { - $this->securityLevel = $securityLevel; - } - public function getSecurityLevel() - { - return $this->securityLevel; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ApiEndpointHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ApiEndpointHandler.php deleted file mode 100644 index 8f56c894..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ApiEndpointHandler.php +++ /dev/null @@ -1,30 +0,0 @@ -scriptPath = $scriptPath; - } - public function getScriptPath() - { - return $this->scriptPath; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/AppengineEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/AppengineEmpty.php deleted file mode 100644 index fb9b028c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/AppengineEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -authDomain = $authDomain; - } - public function getAuthDomain() - { - return $this->authDomain; - } - public function setCodeBucket($codeBucket) - { - $this->codeBucket = $codeBucket; - } - public function getCodeBucket() - { - return $this->codeBucket; - } - public function setDefaultBucket($defaultBucket) - { - $this->defaultBucket = $defaultBucket; - } - public function getDefaultBucket() - { - return $this->defaultBucket; - } - public function setDefaultCookieExpiration($defaultCookieExpiration) - { - $this->defaultCookieExpiration = $defaultCookieExpiration; - } - public function getDefaultCookieExpiration() - { - return $this->defaultCookieExpiration; - } - public function setDefaultHostname($defaultHostname) - { - $this->defaultHostname = $defaultHostname; - } - public function getDefaultHostname() - { - return $this->defaultHostname; - } - /** - * @param Google_Service_Appengine_UrlDispatchRule - */ - public function setDispatchRules($dispatchRules) - { - $this->dispatchRules = $dispatchRules; - } - /** - * @return Google_Service_Appengine_UrlDispatchRule - */ - public function getDispatchRules() - { - return $this->dispatchRules; - } - /** - * @param Google_Service_Appengine_FeatureSettings - */ - public function setFeatureSettings(Google_Service_Appengine_FeatureSettings $featureSettings) - { - $this->featureSettings = $featureSettings; - } - /** - * @return Google_Service_Appengine_FeatureSettings - */ - public function getFeatureSettings() - { - return $this->featureSettings; - } - public function setGcrDomain($gcrDomain) - { - $this->gcrDomain = $gcrDomain; - } - public function getGcrDomain() - { - return $this->gcrDomain; - } - /** - * @param Google_Service_Appengine_IdentityAwareProxy - */ - public function setIap(Google_Service_Appengine_IdentityAwareProxy $iap) - { - $this->iap = $iap; - } - /** - * @return Google_Service_Appengine_IdentityAwareProxy - */ - public function getIap() - { - return $this->iap; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setLocationId($locationId) - { - $this->locationId = $locationId; - } - public function getLocationId() - { - return $this->locationId; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setServingStatus($servingStatus) - { - $this->servingStatus = $servingStatus; - } - public function getServingStatus() - { - return $this->servingStatus; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/AuthorizedCertificate.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/AuthorizedCertificate.php deleted file mode 100644 index 25343ec3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/AuthorizedCertificate.php +++ /dev/null @@ -1,117 +0,0 @@ -certificateRawData = $certificateRawData; - } - /** - * @return Google_Service_Appengine_CertificateRawData - */ - public function getCertificateRawData() - { - return $this->certificateRawData; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setDomainMappingsCount($domainMappingsCount) - { - $this->domainMappingsCount = $domainMappingsCount; - } - public function getDomainMappingsCount() - { - return $this->domainMappingsCount; - } - public function setDomainNames($domainNames) - { - $this->domainNames = $domainNames; - } - public function getDomainNames() - { - return $this->domainNames; - } - public function setExpireTime($expireTime) - { - $this->expireTime = $expireTime; - } - public function getExpireTime() - { - return $this->expireTime; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Appengine_ManagedCertificate - */ - public function setManagedCertificate(Google_Service_Appengine_ManagedCertificate $managedCertificate) - { - $this->managedCertificate = $managedCertificate; - } - /** - * @return Google_Service_Appengine_ManagedCertificate - */ - public function getManagedCertificate() - { - return $this->managedCertificate; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setVisibleDomainMappings($visibleDomainMappings) - { - $this->visibleDomainMappings = $visibleDomainMappings; - } - public function getVisibleDomainMappings() - { - return $this->visibleDomainMappings; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/AuthorizedDomain.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/AuthorizedDomain.php deleted file mode 100644 index 432daa2d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/AuthorizedDomain.php +++ /dev/null @@ -1,39 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/AutomaticScaling.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/AutomaticScaling.php deleted file mode 100644 index a86e86ae..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/AutomaticScaling.php +++ /dev/null @@ -1,173 +0,0 @@ -coolDownPeriod = $coolDownPeriod; - } - public function getCoolDownPeriod() - { - return $this->coolDownPeriod; - } - /** - * @param Google_Service_Appengine_CpuUtilization - */ - public function setCpuUtilization(Google_Service_Appengine_CpuUtilization $cpuUtilization) - { - $this->cpuUtilization = $cpuUtilization; - } - /** - * @return Google_Service_Appengine_CpuUtilization - */ - public function getCpuUtilization() - { - return $this->cpuUtilization; - } - /** - * @param Google_Service_Appengine_DiskUtilization - */ - public function setDiskUtilization(Google_Service_Appengine_DiskUtilization $diskUtilization) - { - $this->diskUtilization = $diskUtilization; - } - /** - * @return Google_Service_Appengine_DiskUtilization - */ - public function getDiskUtilization() - { - return $this->diskUtilization; - } - public function setMaxConcurrentRequests($maxConcurrentRequests) - { - $this->maxConcurrentRequests = $maxConcurrentRequests; - } - public function getMaxConcurrentRequests() - { - return $this->maxConcurrentRequests; - } - public function setMaxIdleInstances($maxIdleInstances) - { - $this->maxIdleInstances = $maxIdleInstances; - } - public function getMaxIdleInstances() - { - return $this->maxIdleInstances; - } - public function setMaxPendingLatency($maxPendingLatency) - { - $this->maxPendingLatency = $maxPendingLatency; - } - public function getMaxPendingLatency() - { - return $this->maxPendingLatency; - } - public function setMaxTotalInstances($maxTotalInstances) - { - $this->maxTotalInstances = $maxTotalInstances; - } - public function getMaxTotalInstances() - { - return $this->maxTotalInstances; - } - public function setMinIdleInstances($minIdleInstances) - { - $this->minIdleInstances = $minIdleInstances; - } - public function getMinIdleInstances() - { - return $this->minIdleInstances; - } - public function setMinPendingLatency($minPendingLatency) - { - $this->minPendingLatency = $minPendingLatency; - } - public function getMinPendingLatency() - { - return $this->minPendingLatency; - } - public function setMinTotalInstances($minTotalInstances) - { - $this->minTotalInstances = $minTotalInstances; - } - public function getMinTotalInstances() - { - return $this->minTotalInstances; - } - /** - * @param Google_Service_Appengine_NetworkUtilization - */ - public function setNetworkUtilization(Google_Service_Appengine_NetworkUtilization $networkUtilization) - { - $this->networkUtilization = $networkUtilization; - } - /** - * @return Google_Service_Appengine_NetworkUtilization - */ - public function getNetworkUtilization() - { - return $this->networkUtilization; - } - /** - * @param Google_Service_Appengine_RequestUtilization - */ - public function setRequestUtilization(Google_Service_Appengine_RequestUtilization $requestUtilization) - { - $this->requestUtilization = $requestUtilization; - } - /** - * @return Google_Service_Appengine_RequestUtilization - */ - public function getRequestUtilization() - { - return $this->requestUtilization; - } - /** - * @param Google_Service_Appengine_StandardSchedulerSettings - */ - public function setStandardSchedulerSettings(Google_Service_Appengine_StandardSchedulerSettings $standardSchedulerSettings) - { - $this->standardSchedulerSettings = $standardSchedulerSettings; - } - /** - * @return Google_Service_Appengine_StandardSchedulerSettings - */ - public function getStandardSchedulerSettings() - { - return $this->standardSchedulerSettings; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/BasicScaling.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/BasicScaling.php deleted file mode 100644 index 27052507..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/BasicScaling.php +++ /dev/null @@ -1,39 +0,0 @@ -idleTimeout = $idleTimeout; - } - public function getIdleTimeout() - { - return $this->idleTimeout; - } - public function setMaxInstances($maxInstances) - { - $this->maxInstances = $maxInstances; - } - public function getMaxInstances() - { - return $this->maxInstances; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/BatchUpdateIngressRulesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/BatchUpdateIngressRulesRequest.php deleted file mode 100644 index c72bfd26..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/BatchUpdateIngressRulesRequest.php +++ /dev/null @@ -1,38 +0,0 @@ -ingressRules = $ingressRules; - } - /** - * @return Google_Service_Appengine_FirewallRule - */ - public function getIngressRules() - { - return $this->ingressRules; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/BatchUpdateIngressRulesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/BatchUpdateIngressRulesResponse.php deleted file mode 100644 index de06833a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/BatchUpdateIngressRulesResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -ingressRules = $ingressRules; - } - /** - * @return Google_Service_Appengine_FirewallRule - */ - public function getIngressRules() - { - return $this->ingressRules; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/CertificateRawData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/CertificateRawData.php deleted file mode 100644 index ec01d978..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/CertificateRawData.php +++ /dev/null @@ -1,39 +0,0 @@ -privateKey = $privateKey; - } - public function getPrivateKey() - { - return $this->privateKey; - } - public function setPublicCertificate($publicCertificate) - { - $this->publicCertificate = $publicCertificate; - } - public function getPublicCertificate() - { - return $this->publicCertificate; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/CloudBuildOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/CloudBuildOptions.php deleted file mode 100644 index 00393b12..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/CloudBuildOptions.php +++ /dev/null @@ -1,39 +0,0 @@ -appYamlPath = $appYamlPath; - } - public function getAppYamlPath() - { - return $this->appYamlPath; - } - public function setCloudBuildTimeout($cloudBuildTimeout) - { - $this->cloudBuildTimeout = $cloudBuildTimeout; - } - public function getCloudBuildTimeout() - { - return $this->cloudBuildTimeout; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ContainerInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ContainerInfo.php deleted file mode 100644 index 6ce85d73..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ContainerInfo.php +++ /dev/null @@ -1,30 +0,0 @@ -image = $image; - } - public function getImage() - { - return $this->image; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/CpuUtilization.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/CpuUtilization.php deleted file mode 100644 index 96ba8f0a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/CpuUtilization.php +++ /dev/null @@ -1,39 +0,0 @@ -aggregationWindowLength = $aggregationWindowLength; - } - public function getAggregationWindowLength() - { - return $this->aggregationWindowLength; - } - public function setTargetUtilization($targetUtilization) - { - $this->targetUtilization = $targetUtilization; - } - public function getTargetUtilization() - { - return $this->targetUtilization; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/CreateVersionMetadataV1.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/CreateVersionMetadataV1.php deleted file mode 100644 index 198bbb1a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/CreateVersionMetadataV1.php +++ /dev/null @@ -1,30 +0,0 @@ -cloudBuildId = $cloudBuildId; - } - public function getCloudBuildId() - { - return $this->cloudBuildId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/CreateVersionMetadataV1Alpha.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/CreateVersionMetadataV1Alpha.php deleted file mode 100644 index 2864d2f7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/CreateVersionMetadataV1Alpha.php +++ /dev/null @@ -1,30 +0,0 @@ -cloudBuildId = $cloudBuildId; - } - public function getCloudBuildId() - { - return $this->cloudBuildId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/CreateVersionMetadataV1Beta.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/CreateVersionMetadataV1Beta.php deleted file mode 100644 index ca911c99..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/CreateVersionMetadataV1Beta.php +++ /dev/null @@ -1,30 +0,0 @@ -cloudBuildId = $cloudBuildId; - } - public function getCloudBuildId() - { - return $this->cloudBuildId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/DebugInstanceRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/DebugInstanceRequest.php deleted file mode 100644 index 6b183c2c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/DebugInstanceRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -sshKey = $sshKey; - } - public function getSshKey() - { - return $this->sshKey; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Deployment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Deployment.php deleted file mode 100644 index 0d42e7e7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Deployment.php +++ /dev/null @@ -1,85 +0,0 @@ -cloudBuildOptions = $cloudBuildOptions; - } - /** - * @return Google_Service_Appengine_CloudBuildOptions - */ - public function getCloudBuildOptions() - { - return $this->cloudBuildOptions; - } - /** - * @param Google_Service_Appengine_ContainerInfo - */ - public function setContainer(Google_Service_Appengine_ContainerInfo $container) - { - $this->container = $container; - } - /** - * @return Google_Service_Appengine_ContainerInfo - */ - public function getContainer() - { - return $this->container; - } - /** - * @param Google_Service_Appengine_FileInfo - */ - public function setFiles($files) - { - $this->files = $files; - } - /** - * @return Google_Service_Appengine_FileInfo - */ - public function getFiles() - { - return $this->files; - } - /** - * @param Google_Service_Appengine_ZipInfo - */ - public function setZip(Google_Service_Appengine_ZipInfo $zip) - { - $this->zip = $zip; - } - /** - * @return Google_Service_Appengine_ZipInfo - */ - public function getZip() - { - return $this->zip; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/DiskUtilization.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/DiskUtilization.php deleted file mode 100644 index 1f73f94a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/DiskUtilization.php +++ /dev/null @@ -1,57 +0,0 @@ -targetReadBytesPerSecond = $targetReadBytesPerSecond; - } - public function getTargetReadBytesPerSecond() - { - return $this->targetReadBytesPerSecond; - } - public function setTargetReadOpsPerSecond($targetReadOpsPerSecond) - { - $this->targetReadOpsPerSecond = $targetReadOpsPerSecond; - } - public function getTargetReadOpsPerSecond() - { - return $this->targetReadOpsPerSecond; - } - public function setTargetWriteBytesPerSecond($targetWriteBytesPerSecond) - { - $this->targetWriteBytesPerSecond = $targetWriteBytesPerSecond; - } - public function getTargetWriteBytesPerSecond() - { - return $this->targetWriteBytesPerSecond; - } - public function setTargetWriteOpsPerSecond($targetWriteOpsPerSecond) - { - $this->targetWriteOpsPerSecond = $targetWriteOpsPerSecond; - } - public function getTargetWriteOpsPerSecond() - { - return $this->targetWriteOpsPerSecond; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/DomainMapping.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/DomainMapping.php deleted file mode 100644 index abed46f3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/DomainMapping.php +++ /dev/null @@ -1,72 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Appengine_ResourceRecord - */ - public function setResourceRecords($resourceRecords) - { - $this->resourceRecords = $resourceRecords; - } - /** - * @return Google_Service_Appengine_ResourceRecord - */ - public function getResourceRecords() - { - return $this->resourceRecords; - } - /** - * @param Google_Service_Appengine_SslSettings - */ - public function setSslSettings(Google_Service_Appengine_SslSettings $sslSettings) - { - $this->sslSettings = $sslSettings; - } - /** - * @return Google_Service_Appengine_SslSettings - */ - public function getSslSettings() - { - return $this->sslSettings; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/EndpointsApiService.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/EndpointsApiService.php deleted file mode 100644 index 42f1294b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/EndpointsApiService.php +++ /dev/null @@ -1,57 +0,0 @@ -configId = $configId; - } - public function getConfigId() - { - return $this->configId; - } - public function setDisableTraceSampling($disableTraceSampling) - { - $this->disableTraceSampling = $disableTraceSampling; - } - public function getDisableTraceSampling() - { - return $this->disableTraceSampling; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setRolloutStrategy($rolloutStrategy) - { - $this->rolloutStrategy = $rolloutStrategy; - } - public function getRolloutStrategy() - { - return $this->rolloutStrategy; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Entrypoint.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Entrypoint.php deleted file mode 100644 index 2f2947da..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Entrypoint.php +++ /dev/null @@ -1,30 +0,0 @@ -shell = $shell; - } - public function getShell() - { - return $this->shell; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ErrorHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ErrorHandler.php deleted file mode 100644 index 3d0b50ef..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ErrorHandler.php +++ /dev/null @@ -1,48 +0,0 @@ -errorCode = $errorCode; - } - public function getErrorCode() - { - return $this->errorCode; - } - public function setMimeType($mimeType) - { - $this->mimeType = $mimeType; - } - public function getMimeType() - { - return $this->mimeType; - } - public function setStaticFile($staticFile) - { - $this->staticFile = $staticFile; - } - public function getStaticFile() - { - return $this->staticFile; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/FeatureSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/FeatureSettings.php deleted file mode 100644 index a48cefbf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/FeatureSettings.php +++ /dev/null @@ -1,39 +0,0 @@ -splitHealthChecks = $splitHealthChecks; - } - public function getSplitHealthChecks() - { - return $this->splitHealthChecks; - } - public function setUseContainerOptimizedOs($useContainerOptimizedOs) - { - $this->useContainerOptimizedOs = $useContainerOptimizedOs; - } - public function getUseContainerOptimizedOs() - { - return $this->useContainerOptimizedOs; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/FileInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/FileInfo.php deleted file mode 100644 index e6b10dda..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/FileInfo.php +++ /dev/null @@ -1,48 +0,0 @@ -mimeType = $mimeType; - } - public function getMimeType() - { - return $this->mimeType; - } - public function setSha1Sum($sha1Sum) - { - $this->sha1Sum = $sha1Sum; - } - public function getSha1Sum() - { - return $this->sha1Sum; - } - public function setSourceUrl($sourceUrl) - { - $this->sourceUrl = $sourceUrl; - } - public function getSourceUrl() - { - return $this->sourceUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/FirewallRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/FirewallRule.php deleted file mode 100644 index 8533870b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/FirewallRule.php +++ /dev/null @@ -1,57 +0,0 @@ -action = $action; - } - public function getAction() - { - return $this->action; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setPriority($priority) - { - $this->priority = $priority; - } - public function getPriority() - { - return $this->priority; - } - public function setSourceRange($sourceRange) - { - $this->sourceRange = $sourceRange; - } - public function getSourceRange() - { - return $this->sourceRange; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/HealthCheck.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/HealthCheck.php deleted file mode 100644 index 6c6f24d2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/HealthCheck.php +++ /dev/null @@ -1,84 +0,0 @@ -checkInterval = $checkInterval; - } - public function getCheckInterval() - { - return $this->checkInterval; - } - public function setDisableHealthCheck($disableHealthCheck) - { - $this->disableHealthCheck = $disableHealthCheck; - } - public function getDisableHealthCheck() - { - return $this->disableHealthCheck; - } - public function setHealthyThreshold($healthyThreshold) - { - $this->healthyThreshold = $healthyThreshold; - } - public function getHealthyThreshold() - { - return $this->healthyThreshold; - } - public function setHost($host) - { - $this->host = $host; - } - public function getHost() - { - return $this->host; - } - public function setRestartThreshold($restartThreshold) - { - $this->restartThreshold = $restartThreshold; - } - public function getRestartThreshold() - { - return $this->restartThreshold; - } - public function setTimeout($timeout) - { - $this->timeout = $timeout; - } - public function getTimeout() - { - return $this->timeout; - } - public function setUnhealthyThreshold($unhealthyThreshold) - { - $this->unhealthyThreshold = $unhealthyThreshold; - } - public function getUnhealthyThreshold() - { - return $this->unhealthyThreshold; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/IdentityAwareProxy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/IdentityAwareProxy.php deleted file mode 100644 index 7b52ef88..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/IdentityAwareProxy.php +++ /dev/null @@ -1,57 +0,0 @@ -enabled = $enabled; - } - public function getEnabled() - { - return $this->enabled; - } - public function setOauth2ClientId($oauth2ClientId) - { - $this->oauth2ClientId = $oauth2ClientId; - } - public function getOauth2ClientId() - { - return $this->oauth2ClientId; - } - public function setOauth2ClientSecret($oauth2ClientSecret) - { - $this->oauth2ClientSecret = $oauth2ClientSecret; - } - public function getOauth2ClientSecret() - { - return $this->oauth2ClientSecret; - } - public function setOauth2ClientSecretSha256($oauth2ClientSecretSha256) - { - $this->oauth2ClientSecretSha256 = $oauth2ClientSecretSha256; - } - public function getOauth2ClientSecretSha256() - { - return $this->oauth2ClientSecretSha256; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Instance.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Instance.php deleted file mode 100644 index 3ad64bb1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Instance.php +++ /dev/null @@ -1,165 +0,0 @@ -appEngineRelease = $appEngineRelease; - } - public function getAppEngineRelease() - { - return $this->appEngineRelease; - } - public function setAvailability($availability) - { - $this->availability = $availability; - } - public function getAvailability() - { - return $this->availability; - } - public function setAverageLatency($averageLatency) - { - $this->averageLatency = $averageLatency; - } - public function getAverageLatency() - { - return $this->averageLatency; - } - public function setErrors($errors) - { - $this->errors = $errors; - } - public function getErrors() - { - return $this->errors; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setMemoryUsage($memoryUsage) - { - $this->memoryUsage = $memoryUsage; - } - public function getMemoryUsage() - { - return $this->memoryUsage; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setQps($qps) - { - $this->qps = $qps; - } - public function getQps() - { - return $this->qps; - } - public function setRequests($requests) - { - $this->requests = $requests; - } - public function getRequests() - { - return $this->requests; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } - public function setVmDebugEnabled($vmDebugEnabled) - { - $this->vmDebugEnabled = $vmDebugEnabled; - } - public function getVmDebugEnabled() - { - return $this->vmDebugEnabled; - } - public function setVmId($vmId) - { - $this->vmId = $vmId; - } - public function getVmId() - { - return $this->vmId; - } - public function setVmIp($vmIp) - { - $this->vmIp = $vmIp; - } - public function getVmIp() - { - return $this->vmIp; - } - public function setVmName($vmName) - { - $this->vmName = $vmName; - } - public function getVmName() - { - return $this->vmName; - } - public function setVmStatus($vmStatus) - { - $this->vmStatus = $vmStatus; - } - public function getVmStatus() - { - return $this->vmStatus; - } - public function setVmZoneName($vmZoneName) - { - $this->vmZoneName = $vmZoneName; - } - public function getVmZoneName() - { - return $this->vmZoneName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Library.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Library.php deleted file mode 100644 index 19c379ec..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Library.php +++ /dev/null @@ -1,39 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ListAuthorizedCertificatesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ListAuthorizedCertificatesResponse.php deleted file mode 100644 index b924b9d0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ListAuthorizedCertificatesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -certificates = $certificates; - } - /** - * @return Google_Service_Appengine_AuthorizedCertificate - */ - public function getCertificates() - { - return $this->certificates; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ListAuthorizedDomainsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ListAuthorizedDomainsResponse.php deleted file mode 100644 index 9e44a88d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ListAuthorizedDomainsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -domains = $domains; - } - /** - * @return Google_Service_Appengine_AuthorizedDomain - */ - public function getDomains() - { - return $this->domains; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ListDomainMappingsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ListDomainMappingsResponse.php deleted file mode 100644 index 581d7354..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ListDomainMappingsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -domainMappings = $domainMappings; - } - /** - * @return Google_Service_Appengine_DomainMapping - */ - public function getDomainMappings() - { - return $this->domainMappings; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ListIngressRulesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ListIngressRulesResponse.php deleted file mode 100644 index b1a51923..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ListIngressRulesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -ingressRules = $ingressRules; - } - /** - * @return Google_Service_Appengine_FirewallRule - */ - public function getIngressRules() - { - return $this->ingressRules; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ListInstancesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ListInstancesResponse.php deleted file mode 100644 index 5e7ad985..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ListInstancesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -instances = $instances; - } - /** - * @return Google_Service_Appengine_Instance - */ - public function getInstances() - { - return $this->instances; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ListLocationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ListLocationsResponse.php deleted file mode 100644 index eb96f0c8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ListLocationsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -locations = $locations; - } - /** - * @return Google_Service_Appengine_Location - */ - public function getLocations() - { - return $this->locations; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ListOperationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ListOperationsResponse.php deleted file mode 100644 index 4772a581..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ListOperationsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Appengine_Operation - */ - public function setOperations($operations) - { - $this->operations = $operations; - } - /** - * @return Google_Service_Appengine_Operation - */ - public function getOperations() - { - return $this->operations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ListServicesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ListServicesResponse.php deleted file mode 100644 index 40711438..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ListServicesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Appengine_Service - */ - public function setServices($services) - { - $this->services = $services; - } - /** - * @return Google_Service_Appengine_Service - */ - public function getServices() - { - return $this->services; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ListVersionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ListVersionsResponse.php deleted file mode 100644 index 0dc80b93..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ListVersionsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Appengine_Version - */ - public function setVersions($versions) - { - $this->versions = $versions; - } - /** - * @return Google_Service_Appengine_Version - */ - public function getVersions() - { - return $this->versions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/LivenessCheck.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/LivenessCheck.php deleted file mode 100644 index 24250256..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/LivenessCheck.php +++ /dev/null @@ -1,84 +0,0 @@ -checkInterval = $checkInterval; - } - public function getCheckInterval() - { - return $this->checkInterval; - } - public function setFailureThreshold($failureThreshold) - { - $this->failureThreshold = $failureThreshold; - } - public function getFailureThreshold() - { - return $this->failureThreshold; - } - public function setHost($host) - { - $this->host = $host; - } - public function getHost() - { - return $this->host; - } - public function setInitialDelay($initialDelay) - { - $this->initialDelay = $initialDelay; - } - public function getInitialDelay() - { - return $this->initialDelay; - } - public function setPath($path) - { - $this->path = $path; - } - public function getPath() - { - return $this->path; - } - public function setSuccessThreshold($successThreshold) - { - $this->successThreshold = $successThreshold; - } - public function getSuccessThreshold() - { - return $this->successThreshold; - } - public function setTimeout($timeout) - { - $this->timeout = $timeout; - } - public function getTimeout() - { - return $this->timeout; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Location.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Location.php deleted file mode 100644 index 60ed2824..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Location.php +++ /dev/null @@ -1,66 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setLocationId($locationId) - { - $this->locationId = $locationId; - } - public function getLocationId() - { - return $this->locationId; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/LocationMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/LocationMetadata.php deleted file mode 100644 index 59099983..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/LocationMetadata.php +++ /dev/null @@ -1,39 +0,0 @@ -flexibleEnvironmentAvailable = $flexibleEnvironmentAvailable; - } - public function getFlexibleEnvironmentAvailable() - { - return $this->flexibleEnvironmentAvailable; - } - public function setStandardEnvironmentAvailable($standardEnvironmentAvailable) - { - $this->standardEnvironmentAvailable = $standardEnvironmentAvailable; - } - public function getStandardEnvironmentAvailable() - { - return $this->standardEnvironmentAvailable; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ManagedCertificate.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ManagedCertificate.php deleted file mode 100644 index aa9f823f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ManagedCertificate.php +++ /dev/null @@ -1,39 +0,0 @@ -lastRenewalTime = $lastRenewalTime; - } - public function getLastRenewalTime() - { - return $this->lastRenewalTime; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ManualScaling.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ManualScaling.php deleted file mode 100644 index 1359a5cc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ManualScaling.php +++ /dev/null @@ -1,30 +0,0 @@ -instances = $instances; - } - public function getInstances() - { - return $this->instances; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Network.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Network.php deleted file mode 100644 index 5c168659..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Network.php +++ /dev/null @@ -1,67 +0,0 @@ -forwardedPorts = $forwardedPorts; - } - public function getForwardedPorts() - { - return $this->forwardedPorts; - } - public function setInstanceTag($instanceTag) - { - $this->instanceTag = $instanceTag; - } - public function getInstanceTag() - { - return $this->instanceTag; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setSessionAffinity($sessionAffinity) - { - $this->sessionAffinity = $sessionAffinity; - } - public function getSessionAffinity() - { - return $this->sessionAffinity; - } - public function setSubnetworkName($subnetworkName) - { - $this->subnetworkName = $subnetworkName; - } - public function getSubnetworkName() - { - return $this->subnetworkName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/NetworkUtilization.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/NetworkUtilization.php deleted file mode 100644 index 630ff9ea..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/NetworkUtilization.php +++ /dev/null @@ -1,57 +0,0 @@ -targetReceivedBytesPerSecond = $targetReceivedBytesPerSecond; - } - public function getTargetReceivedBytesPerSecond() - { - return $this->targetReceivedBytesPerSecond; - } - public function setTargetReceivedPacketsPerSecond($targetReceivedPacketsPerSecond) - { - $this->targetReceivedPacketsPerSecond = $targetReceivedPacketsPerSecond; - } - public function getTargetReceivedPacketsPerSecond() - { - return $this->targetReceivedPacketsPerSecond; - } - public function setTargetSentBytesPerSecond($targetSentBytesPerSecond) - { - $this->targetSentBytesPerSecond = $targetSentBytesPerSecond; - } - public function getTargetSentBytesPerSecond() - { - return $this->targetSentBytesPerSecond; - } - public function setTargetSentPacketsPerSecond($targetSentPacketsPerSecond) - { - $this->targetSentPacketsPerSecond = $targetSentPacketsPerSecond; - } - public function getTargetSentPacketsPerSecond() - { - return $this->targetSentPacketsPerSecond; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Operation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Operation.php deleted file mode 100644 index 31803ddf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Operation.php +++ /dev/null @@ -1,73 +0,0 @@ -done = $done; - } - public function getDone() - { - return $this->done; - } - /** - * @param Google_Service_Appengine_Status - */ - public function setError(Google_Service_Appengine_Status $error) - { - $this->error = $error; - } - /** - * @return Google_Service_Appengine_Status - */ - public function getError() - { - return $this->error; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/OperationMetadataV1.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/OperationMetadataV1.php deleted file mode 100644 index 56e2894e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/OperationMetadataV1.php +++ /dev/null @@ -1,101 +0,0 @@ -createVersionMetadata = $createVersionMetadata; - } - /** - * @return Google_Service_Appengine_CreateVersionMetadataV1 - */ - public function getCreateVersionMetadata() - { - return $this->createVersionMetadata; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setEphemeralMessage($ephemeralMessage) - { - $this->ephemeralMessage = $ephemeralMessage; - } - public function getEphemeralMessage() - { - return $this->ephemeralMessage; - } - public function setInsertTime($insertTime) - { - $this->insertTime = $insertTime; - } - public function getInsertTime() - { - return $this->insertTime; - } - public function setMethod($method) - { - $this->method = $method; - } - public function getMethod() - { - return $this->method; - } - public function setTarget($target) - { - $this->target = $target; - } - public function getTarget() - { - return $this->target; - } - public function setUser($user) - { - $this->user = $user; - } - public function getUser() - { - return $this->user; - } - public function setWarning($warning) - { - $this->warning = $warning; - } - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/OperationMetadataV1Alpha.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/OperationMetadataV1Alpha.php deleted file mode 100644 index 9faa526c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/OperationMetadataV1Alpha.php +++ /dev/null @@ -1,101 +0,0 @@ -createVersionMetadata = $createVersionMetadata; - } - /** - * @return Google_Service_Appengine_CreateVersionMetadataV1Alpha - */ - public function getCreateVersionMetadata() - { - return $this->createVersionMetadata; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setEphemeralMessage($ephemeralMessage) - { - $this->ephemeralMessage = $ephemeralMessage; - } - public function getEphemeralMessage() - { - return $this->ephemeralMessage; - } - public function setInsertTime($insertTime) - { - $this->insertTime = $insertTime; - } - public function getInsertTime() - { - return $this->insertTime; - } - public function setMethod($method) - { - $this->method = $method; - } - public function getMethod() - { - return $this->method; - } - public function setTarget($target) - { - $this->target = $target; - } - public function getTarget() - { - return $this->target; - } - public function setUser($user) - { - $this->user = $user; - } - public function getUser() - { - return $this->user; - } - public function setWarning($warning) - { - $this->warning = $warning; - } - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/OperationMetadataV1Beta.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/OperationMetadataV1Beta.php deleted file mode 100644 index 997ff8f4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/OperationMetadataV1Beta.php +++ /dev/null @@ -1,101 +0,0 @@ -createVersionMetadata = $createVersionMetadata; - } - /** - * @return Google_Service_Appengine_CreateVersionMetadataV1Beta - */ - public function getCreateVersionMetadata() - { - return $this->createVersionMetadata; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setEphemeralMessage($ephemeralMessage) - { - $this->ephemeralMessage = $ephemeralMessage; - } - public function getEphemeralMessage() - { - return $this->ephemeralMessage; - } - public function setInsertTime($insertTime) - { - $this->insertTime = $insertTime; - } - public function getInsertTime() - { - return $this->insertTime; - } - public function setMethod($method) - { - $this->method = $method; - } - public function getMethod() - { - return $this->method; - } - public function setTarget($target) - { - $this->target = $target; - } - public function getTarget() - { - return $this->target; - } - public function setUser($user) - { - $this->user = $user; - } - public function getUser() - { - return $this->user; - } - public function setWarning($warning) - { - $this->warning = $warning; - } - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ReadinessCheck.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ReadinessCheck.php deleted file mode 100644 index d0112d7d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ReadinessCheck.php +++ /dev/null @@ -1,84 +0,0 @@ -appStartTimeout = $appStartTimeout; - } - public function getAppStartTimeout() - { - return $this->appStartTimeout; - } - public function setCheckInterval($checkInterval) - { - $this->checkInterval = $checkInterval; - } - public function getCheckInterval() - { - return $this->checkInterval; - } - public function setFailureThreshold($failureThreshold) - { - $this->failureThreshold = $failureThreshold; - } - public function getFailureThreshold() - { - return $this->failureThreshold; - } - public function setHost($host) - { - $this->host = $host; - } - public function getHost() - { - return $this->host; - } - public function setPath($path) - { - $this->path = $path; - } - public function getPath() - { - return $this->path; - } - public function setSuccessThreshold($successThreshold) - { - $this->successThreshold = $successThreshold; - } - public function getSuccessThreshold() - { - return $this->successThreshold; - } - public function setTimeout($timeout) - { - $this->timeout = $timeout; - } - public function getTimeout() - { - return $this->timeout; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/RepairApplicationRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/RepairApplicationRequest.php deleted file mode 100644 index f752d8d4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/RepairApplicationRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -targetConcurrentRequests = $targetConcurrentRequests; - } - public function getTargetConcurrentRequests() - { - return $this->targetConcurrentRequests; - } - public function setTargetRequestCountPerSecond($targetRequestCountPerSecond) - { - $this->targetRequestCountPerSecond = $targetRequestCountPerSecond; - } - public function getTargetRequestCountPerSecond() - { - return $this->targetRequestCountPerSecond; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Resource/Apps.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Resource/Apps.php deleted file mode 100644 index 6913fadf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Resource/Apps.php +++ /dev/null @@ -1,106 +0,0 @@ - - * $appengineService = new Google_Service_Appengine(...); - * $apps = $appengineService->apps; - * - */ -class Google_Service_Appengine_Resource_Apps extends Google_Service_Resource -{ - /** - * Creates an App Engine application for a Google Cloud Platform project. - * Required fields: id - The ID of the target Cloud Platform project. location - - * The region (https://cloud.google.com/appengine/docs/locations) where you want - * the App Engine application located.For more information about App Engine - * applications, see Managing Projects, Applications, and Billing - * (https://cloud.google.com/appengine/docs/standard/python/console/). - * (apps.create) - * - * @param Google_Service_Appengine_Application $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Appengine_Operation - */ - public function create(Google_Service_Appengine_Application $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Appengine_Operation"); - } - /** - * Gets information about an application. (apps.get) - * - * @param string $appsId Part of `name`. Name of the Application resource to - * get. Example: apps/myapp. - * @param array $optParams Optional parameters. - * @return Google_Service_Appengine_Application - */ - public function get($appsId, $optParams = array()) - { - $params = array('appsId' => $appsId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Appengine_Application"); - } - /** - * Updates the specified Application resource. You can update the following - * fields: auth_domain - Google authentication domain for controlling user - * access to the application. default_cookie_expiration - Cookie expiration - * policy for the application. (apps.patch) - * - * @param string $appsId Part of `name`. Name of the Application resource to - * update. Example: apps/myapp. - * @param Google_Service_Appengine_Application $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Standard field mask for the set of fields to be - * updated. - * @return Google_Service_Appengine_Operation - */ - public function patch($appsId, Google_Service_Appengine_Application $postBody, $optParams = array()) - { - $params = array('appsId' => $appsId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Appengine_Operation"); - } - /** - * Recreates the required App Engine features for the specified App Engine - * application, for example a Cloud Storage bucket or App Engine service - * account. Use this method if you receive an error message about a missing - * feature, for example, Error retrieving the App Engine service account. If you - * have deleted your App Engine service account, this will not be able to - * recreate it. Instead, you should attempt to use the IAM undelete API if - * possible at https://cloud.google.com/iam/reference/rest/v1/projects.serviceAc - * counts/undelete?apix_params=%7B"name"%3A"projects%2F-%2FserviceAccounts%2Funi - * que_id"%2C"resource"%3A%7B%7D%7D . If the deletion was recent, the numeric ID - * can be found in the Cloud Console Activity Log. (apps.repair) - * - * @param string $appsId Part of `name`. Name of the application to repair. - * Example: apps/myapp - * @param Google_Service_Appengine_RepairApplicationRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Appengine_Operation - */ - public function repair($appsId, Google_Service_Appengine_RepairApplicationRequest $postBody, $optParams = array()) - { - $params = array('appsId' => $appsId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('repair', array($params), "Google_Service_Appengine_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Resource/AppsAuthorizedCertificates.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Resource/AppsAuthorizedCertificates.php deleted file mode 100644 index 41bca622..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Resource/AppsAuthorizedCertificates.php +++ /dev/null @@ -1,124 +0,0 @@ - - * $appengineService = new Google_Service_Appengine(...); - * $authorizedCertificates = $appengineService->authorizedCertificates; - * - */ -class Google_Service_Appengine_Resource_AppsAuthorizedCertificates extends Google_Service_Resource -{ - /** - * Uploads the specified SSL certificate. (authorizedCertificates.create) - * - * @param string $appsId Part of `parent`. Name of the parent Application - * resource. Example: apps/myapp. - * @param Google_Service_Appengine_AuthorizedCertificate $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Appengine_AuthorizedCertificate - */ - public function create($appsId, Google_Service_Appengine_AuthorizedCertificate $postBody, $optParams = array()) - { - $params = array('appsId' => $appsId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Appengine_AuthorizedCertificate"); - } - /** - * Deletes the specified SSL certificate. (authorizedCertificates.delete) - * - * @param string $appsId Part of `name`. Name of the resource to delete. - * Example: apps/myapp/authorizedCertificates/12345. - * @param string $authorizedCertificatesId Part of `name`. See documentation of - * `appsId`. - * @param array $optParams Optional parameters. - * @return Google_Service_Appengine_AppengineEmpty - */ - public function delete($appsId, $authorizedCertificatesId, $optParams = array()) - { - $params = array('appsId' => $appsId, 'authorizedCertificatesId' => $authorizedCertificatesId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Appengine_AppengineEmpty"); - } - /** - * Gets the specified SSL certificate. (authorizedCertificates.get) - * - * @param string $appsId Part of `name`. Name of the resource requested. - * Example: apps/myapp/authorizedCertificates/12345. - * @param string $authorizedCertificatesId Part of `name`. See documentation of - * `appsId`. - * @param array $optParams Optional parameters. - * - * @opt_param string view Controls the set of fields returned in the GET - * response. - * @return Google_Service_Appengine_AuthorizedCertificate - */ - public function get($appsId, $authorizedCertificatesId, $optParams = array()) - { - $params = array('appsId' => $appsId, 'authorizedCertificatesId' => $authorizedCertificatesId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Appengine_AuthorizedCertificate"); - } - /** - * Lists all SSL certificates the user is authorized to administer. - * (authorizedCertificates.listAppsAuthorizedCertificates) - * - * @param string $appsId Part of `parent`. Name of the parent Application - * resource. Example: apps/myapp. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Continuation token for fetching the next page of - * results. - * @opt_param int pageSize Maximum results to return per page. - * @opt_param string view Controls the set of fields returned in the LIST - * response. - * @return Google_Service_Appengine_ListAuthorizedCertificatesResponse - */ - public function listAppsAuthorizedCertificates($appsId, $optParams = array()) - { - $params = array('appsId' => $appsId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Appengine_ListAuthorizedCertificatesResponse"); - } - /** - * Updates the specified SSL certificate. To renew a certificate and maintain - * its existing domain mappings, update certificate_data with a new certificate. - * The new certificate must be applicable to the same domains as the original - * certificate. The certificate display_name may also be updated. - * (authorizedCertificates.patch) - * - * @param string $appsId Part of `name`. Name of the resource to update. - * Example: apps/myapp/authorizedCertificates/12345. - * @param string $authorizedCertificatesId Part of `name`. See documentation of - * `appsId`. - * @param Google_Service_Appengine_AuthorizedCertificate $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Standard field mask for the set of fields to be - * updated. Updates are only supported on the certificate_raw_data and - * display_name fields. - * @return Google_Service_Appengine_AuthorizedCertificate - */ - public function patch($appsId, $authorizedCertificatesId, Google_Service_Appengine_AuthorizedCertificate $postBody, $optParams = array()) - { - $params = array('appsId' => $appsId, 'authorizedCertificatesId' => $authorizedCertificatesId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Appengine_AuthorizedCertificate"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Resource/AppsAuthorizedDomains.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Resource/AppsAuthorizedDomains.php deleted file mode 100644 index 63149803..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Resource/AppsAuthorizedDomains.php +++ /dev/null @@ -1,47 +0,0 @@ - - * $appengineService = new Google_Service_Appengine(...); - * $authorizedDomains = $appengineService->authorizedDomains; - * - */ -class Google_Service_Appengine_Resource_AppsAuthorizedDomains extends Google_Service_Resource -{ - /** - * Lists all domains the user is authorized to administer. - * (authorizedDomains.listAppsAuthorizedDomains) - * - * @param string $appsId Part of `parent`. Name of the parent Application - * resource. Example: apps/myapp. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Continuation token for fetching the next page of - * results. - * @opt_param int pageSize Maximum results to return per page. - * @return Google_Service_Appengine_ListAuthorizedDomainsResponse - */ - public function listAppsAuthorizedDomains($appsId, $optParams = array()) - { - $params = array('appsId' => $appsId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Appengine_ListAuthorizedDomainsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Resource/AppsDomainMappings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Resource/AppsDomainMappings.php deleted file mode 100644 index 11bde13c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Resource/AppsDomainMappings.php +++ /dev/null @@ -1,126 +0,0 @@ - - * $appengineService = new Google_Service_Appengine(...); - * $domainMappings = $appengineService->domainMappings; - * - */ -class Google_Service_Appengine_Resource_AppsDomainMappings extends Google_Service_Resource -{ - /** - * Maps a domain to an application. A user must be authorized to administer a - * domain in order to map it to an application. For a list of available - * authorized domains, see AuthorizedDomains.ListAuthorizedDomains. - * (domainMappings.create) - * - * @param string $appsId Part of `parent`. Name of the parent Application - * resource. Example: apps/myapp. - * @param Google_Service_Appengine_DomainMapping $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string overrideStrategy Whether the domain creation should - * override any existing mappings for this domain. By default, overrides are - * rejected. - * @return Google_Service_Appengine_Operation - */ - public function create($appsId, Google_Service_Appengine_DomainMapping $postBody, $optParams = array()) - { - $params = array('appsId' => $appsId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Appengine_Operation"); - } - /** - * Deletes the specified domain mapping. A user must be authorized to administer - * the associated domain in order to delete a DomainMapping resource. - * (domainMappings.delete) - * - * @param string $appsId Part of `name`. Name of the resource to delete. - * Example: apps/myapp/domainMappings/example.com. - * @param string $domainMappingsId Part of `name`. See documentation of - * `appsId`. - * @param array $optParams Optional parameters. - * @return Google_Service_Appengine_Operation - */ - public function delete($appsId, $domainMappingsId, $optParams = array()) - { - $params = array('appsId' => $appsId, 'domainMappingsId' => $domainMappingsId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Appengine_Operation"); - } - /** - * Gets the specified domain mapping. (domainMappings.get) - * - * @param string $appsId Part of `name`. Name of the resource requested. - * Example: apps/myapp/domainMappings/example.com. - * @param string $domainMappingsId Part of `name`. See documentation of - * `appsId`. - * @param array $optParams Optional parameters. - * @return Google_Service_Appengine_DomainMapping - */ - public function get($appsId, $domainMappingsId, $optParams = array()) - { - $params = array('appsId' => $appsId, 'domainMappingsId' => $domainMappingsId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Appengine_DomainMapping"); - } - /** - * Lists the domain mappings on an application. - * (domainMappings.listAppsDomainMappings) - * - * @param string $appsId Part of `parent`. Name of the parent Application - * resource. Example: apps/myapp. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Continuation token for fetching the next page of - * results. - * @opt_param int pageSize Maximum results to return per page. - * @return Google_Service_Appengine_ListDomainMappingsResponse - */ - public function listAppsDomainMappings($appsId, $optParams = array()) - { - $params = array('appsId' => $appsId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Appengine_ListDomainMappingsResponse"); - } - /** - * Updates the specified domain mapping. To map an SSL certificate to a domain - * mapping, update certificate_id to point to an AuthorizedCertificate resource. - * A user must be authorized to administer the associated domain in order to - * update a DomainMapping resource. (domainMappings.patch) - * - * @param string $appsId Part of `name`. Name of the resource to update. - * Example: apps/myapp/domainMappings/example.com. - * @param string $domainMappingsId Part of `name`. See documentation of - * `appsId`. - * @param Google_Service_Appengine_DomainMapping $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Standard field mask for the set of fields to be - * updated. - * @return Google_Service_Appengine_Operation - */ - public function patch($appsId, $domainMappingsId, Google_Service_Appengine_DomainMapping $postBody, $optParams = array()) - { - $params = array('appsId' => $appsId, 'domainMappingsId' => $domainMappingsId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Appengine_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Resource/AppsFirewall.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Resource/AppsFirewall.php deleted file mode 100644 index ed43c4d1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Resource/AppsFirewall.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $appengineService = new Google_Service_Appengine(...); - * $firewall = $appengineService->firewall; - * - */ -class Google_Service_Appengine_Resource_AppsFirewall extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Resource/AppsFirewallIngressRules.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Resource/AppsFirewallIngressRules.php deleted file mode 100644 index 4ab5823f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Resource/AppsFirewallIngressRules.php +++ /dev/null @@ -1,134 +0,0 @@ - - * $appengineService = new Google_Service_Appengine(...); - * $ingressRules = $appengineService->ingressRules; - * - */ -class Google_Service_Appengine_Resource_AppsFirewallIngressRules extends Google_Service_Resource -{ - /** - * Replaces the entire firewall ruleset in one bulk operation. This overrides - * and replaces the rules of an existing firewall with the new rules.If the - * final rule does not match traffic with the '*' wildcard IP range, then an - * "allow all" rule is explicitly added to the end of the list. - * (ingressRules.batchUpdate) - * - * @param string $appsId Part of `name`. Name of the Firewall collection to set. - * Example: apps/myapp/firewall/ingressRules. - * @param Google_Service_Appengine_BatchUpdateIngressRulesRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Appengine_BatchUpdateIngressRulesResponse - */ - public function batchUpdate($appsId, Google_Service_Appengine_BatchUpdateIngressRulesRequest $postBody, $optParams = array()) - { - $params = array('appsId' => $appsId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('batchUpdate', array($params), "Google_Service_Appengine_BatchUpdateIngressRulesResponse"); - } - /** - * Creates a firewall rule for the application. (ingressRules.create) - * - * @param string $appsId Part of `parent`. Name of the parent Firewall - * collection in which to create a new rule. Example: - * apps/myapp/firewall/ingressRules. - * @param Google_Service_Appengine_FirewallRule $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Appengine_FirewallRule - */ - public function create($appsId, Google_Service_Appengine_FirewallRule $postBody, $optParams = array()) - { - $params = array('appsId' => $appsId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Appengine_FirewallRule"); - } - /** - * Deletes the specified firewall rule. (ingressRules.delete) - * - * @param string $appsId Part of `name`. Name of the Firewall resource to - * delete. Example: apps/myapp/firewall/ingressRules/100. - * @param string $ingressRulesId Part of `name`. See documentation of `appsId`. - * @param array $optParams Optional parameters. - * @return Google_Service_Appengine_AppengineEmpty - */ - public function delete($appsId, $ingressRulesId, $optParams = array()) - { - $params = array('appsId' => $appsId, 'ingressRulesId' => $ingressRulesId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Appengine_AppengineEmpty"); - } - /** - * Gets the specified firewall rule. (ingressRules.get) - * - * @param string $appsId Part of `name`. Name of the Firewall resource to - * retrieve. Example: apps/myapp/firewall/ingressRules/100. - * @param string $ingressRulesId Part of `name`. See documentation of `appsId`. - * @param array $optParams Optional parameters. - * @return Google_Service_Appengine_FirewallRule - */ - public function get($appsId, $ingressRulesId, $optParams = array()) - { - $params = array('appsId' => $appsId, 'ingressRulesId' => $ingressRulesId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Appengine_FirewallRule"); - } - /** - * Lists the firewall rules of an application. - * (ingressRules.listAppsFirewallIngressRules) - * - * @param string $appsId Part of `parent`. Name of the Firewall collection to - * retrieve. Example: apps/myapp/firewall/ingressRules. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Continuation token for fetching the next page of - * results. - * @opt_param int pageSize Maximum results to return per page. - * @opt_param string matchingAddress A valid IP Address. If set, only rules - * matching this address will be returned. The first returned rule will be the - * rule that fires on requests from this IP. - * @return Google_Service_Appengine_ListIngressRulesResponse - */ - public function listAppsFirewallIngressRules($appsId, $optParams = array()) - { - $params = array('appsId' => $appsId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Appengine_ListIngressRulesResponse"); - } - /** - * Updates the specified firewall rule. (ingressRules.patch) - * - * @param string $appsId Part of `name`. Name of the Firewall resource to - * update. Example: apps/myapp/firewall/ingressRules/100. - * @param string $ingressRulesId Part of `name`. See documentation of `appsId`. - * @param Google_Service_Appengine_FirewallRule $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Standard field mask for the set of fields to be - * updated. - * @return Google_Service_Appengine_FirewallRule - */ - public function patch($appsId, $ingressRulesId, Google_Service_Appengine_FirewallRule $postBody, $optParams = array()) - { - $params = array('appsId' => $appsId, 'ingressRulesId' => $ingressRulesId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Appengine_FirewallRule"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Resource/AppsLocations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Resource/AppsLocations.php deleted file mode 100644 index a94d9124..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Resource/AppsLocations.php +++ /dev/null @@ -1,61 +0,0 @@ - - * $appengineService = new Google_Service_Appengine(...); - * $locations = $appengineService->locations; - * - */ -class Google_Service_Appengine_Resource_AppsLocations extends Google_Service_Resource -{ - /** - * Gets information about a location. (locations.get) - * - * @param string $appsId Part of `name`. Resource name for the location. - * @param string $locationsId Part of `name`. See documentation of `appsId`. - * @param array $optParams Optional parameters. - * @return Google_Service_Appengine_Location - */ - public function get($appsId, $locationsId, $optParams = array()) - { - $params = array('appsId' => $appsId, 'locationsId' => $locationsId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Appengine_Location"); - } - /** - * Lists information about the supported locations for this service. - * (locations.listAppsLocations) - * - * @param string $appsId Part of `name`. The resource that owns the locations - * collection, if applicable. - * @param array $optParams Optional parameters. - * - * @opt_param string filter The standard list filter. - * @opt_param string pageToken The standard list page token. - * @opt_param int pageSize The standard list page size. - * @return Google_Service_Appengine_ListLocationsResponse - */ - public function listAppsLocations($appsId, $optParams = array()) - { - $params = array('appsId' => $appsId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Appengine_ListLocationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Resource/AppsOperations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Resource/AppsOperations.php deleted file mode 100644 index 25f19a4b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Resource/AppsOperations.php +++ /dev/null @@ -1,70 +0,0 @@ - - * $appengineService = new Google_Service_Appengine(...); - * $operations = $appengineService->operations; - * - */ -class Google_Service_Appengine_Resource_AppsOperations extends Google_Service_Resource -{ - /** - * Gets the latest state of a long-running operation. Clients can use this - * method to poll the operation result at intervals as recommended by the API - * service. (operations.get) - * - * @param string $appsId Part of `name`. The name of the operation resource. - * @param string $operationsId Part of `name`. See documentation of `appsId`. - * @param array $optParams Optional parameters. - * @return Google_Service_Appengine_Operation - */ - public function get($appsId, $operationsId, $optParams = array()) - { - $params = array('appsId' => $appsId, 'operationsId' => $operationsId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Appengine_Operation"); - } - /** - * Lists operations that match the specified filter in the request. If the - * server doesn't support this method, it returns UNIMPLEMENTED.NOTE: the name - * binding allows API services to override the binding to use different resource - * name schemes, such as users/operations. To override the binding, API services - * can add a binding such as "/v1/{name=users}/operations" to their service - * configuration. For backwards compatibility, the default name includes the - * operations collection id, however overriding users must ensure the name - * binding is the parent resource, without the operations collection id. - * (operations.listAppsOperations) - * - * @param string $appsId Part of `name`. The name of the operation's parent - * resource. - * @param array $optParams Optional parameters. - * - * @opt_param string filter The standard list filter. - * @opt_param string pageToken The standard list page token. - * @opt_param int pageSize The standard list page size. - * @return Google_Service_Appengine_ListOperationsResponse - */ - public function listAppsOperations($appsId, $optParams = array()) - { - $params = array('appsId' => $appsId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Appengine_ListOperationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Resource/AppsServices.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Resource/AppsServices.php deleted file mode 100644 index 8758ca67..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Resource/AppsServices.php +++ /dev/null @@ -1,109 +0,0 @@ - - * $appengineService = new Google_Service_Appengine(...); - * $services = $appengineService->services; - * - */ -class Google_Service_Appengine_Resource_AppsServices extends Google_Service_Resource -{ - /** - * Deletes the specified service and all enclosed versions. (services.delete) - * - * @param string $appsId Part of `name`. Name of the resource requested. - * Example: apps/myapp/services/default. - * @param string $servicesId Part of `name`. See documentation of `appsId`. - * @param array $optParams Optional parameters. - * @return Google_Service_Appengine_Operation - */ - public function delete($appsId, $servicesId, $optParams = array()) - { - $params = array('appsId' => $appsId, 'servicesId' => $servicesId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Appengine_Operation"); - } - /** - * Gets the current configuration of the specified service. (services.get) - * - * @param string $appsId Part of `name`. Name of the resource requested. - * Example: apps/myapp/services/default. - * @param string $servicesId Part of `name`. See documentation of `appsId`. - * @param array $optParams Optional parameters. - * @return Google_Service_Appengine_Service - */ - public function get($appsId, $servicesId, $optParams = array()) - { - $params = array('appsId' => $appsId, 'servicesId' => $servicesId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Appengine_Service"); - } - /** - * Lists all the services in the application. (services.listAppsServices) - * - * @param string $appsId Part of `parent`. Name of the parent Application - * resource. Example: apps/myapp. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Continuation token for fetching the next page of - * results. - * @opt_param int pageSize Maximum results to return per page. - * @return Google_Service_Appengine_ListServicesResponse - */ - public function listAppsServices($appsId, $optParams = array()) - { - $params = array('appsId' => $appsId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Appengine_ListServicesResponse"); - } - /** - * Updates the configuration of the specified service. (services.patch) - * - * @param string $appsId Part of `name`. Name of the resource to update. - * Example: apps/myapp/services/default. - * @param string $servicesId Part of `name`. See documentation of `appsId`. - * @param Google_Service_Appengine_Service $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Standard field mask for the set of fields to be - * updated. - * @opt_param bool migrateTraffic Set to true to gradually shift traffic to one - * or more versions that you specify. By default, traffic is shifted - * immediately. For gradual traffic migration, the target versions must be - * located within instances that are configured for both warmup requests - * (https://cloud.google.com/appengine/docs/admin- - * api/reference/rest/v1/apps.services.versions#InboundServiceType) and - * automatic scaling (https://cloud.google.com/appengine/docs/admin- - * api/reference/rest/v1/apps.services.versions#AutomaticScaling). You must - * specify the shardBy (https://cloud.google.com/appengine/docs/admin- - * api/reference/rest/v1/apps.services#ShardBy) field in the Service resource. - * Gradual traffic migration is not supported in the App Engine flexible - * environment. For examples, see Migrating and Splitting Traffic - * (https://cloud.google.com/appengine/docs/admin-api/migrating-splitting- - * traffic). - * @return Google_Service_Appengine_Operation - */ - public function patch($appsId, $servicesId, Google_Service_Appengine_Service $postBody, $optParams = array()) - { - $params = array('appsId' => $appsId, 'servicesId' => $servicesId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Appengine_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Resource/AppsServicesVersions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Resource/AppsServicesVersions.php deleted file mode 100644 index 0b5ea380..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Resource/AppsServicesVersions.php +++ /dev/null @@ -1,160 +0,0 @@ - - * $appengineService = new Google_Service_Appengine(...); - * $versions = $appengineService->versions; - * - */ -class Google_Service_Appengine_Resource_AppsServicesVersions extends Google_Service_Resource -{ - /** - * Deploys code and resource files to a new version. (versions.create) - * - * @param string $appsId Part of `parent`. Name of the parent resource to create - * this version under. Example: apps/myapp/services/default. - * @param string $servicesId Part of `parent`. See documentation of `appsId`. - * @param Google_Service_Appengine_Version $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Appengine_Operation - */ - public function create($appsId, $servicesId, Google_Service_Appengine_Version $postBody, $optParams = array()) - { - $params = array('appsId' => $appsId, 'servicesId' => $servicesId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Appengine_Operation"); - } - /** - * Deletes an existing Version resource. (versions.delete) - * - * @param string $appsId Part of `name`. Name of the resource requested. - * Example: apps/myapp/services/default/versions/v1. - * @param string $servicesId Part of `name`. See documentation of `appsId`. - * @param string $versionsId Part of `name`. See documentation of `appsId`. - * @param array $optParams Optional parameters. - * @return Google_Service_Appengine_Operation - */ - public function delete($appsId, $servicesId, $versionsId, $optParams = array()) - { - $params = array('appsId' => $appsId, 'servicesId' => $servicesId, 'versionsId' => $versionsId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Appengine_Operation"); - } - /** - * Gets the specified Version resource. By default, only a BASIC_VIEW will be - * returned. Specify the FULL_VIEW parameter to get the full resource. - * (versions.get) - * - * @param string $appsId Part of `name`. Name of the resource requested. - * Example: apps/myapp/services/default/versions/v1. - * @param string $servicesId Part of `name`. See documentation of `appsId`. - * @param string $versionsId Part of `name`. See documentation of `appsId`. - * @param array $optParams Optional parameters. - * - * @opt_param string view Controls the set of fields returned in the Get - * response. - * @return Google_Service_Appengine_Version - */ - public function get($appsId, $servicesId, $versionsId, $optParams = array()) - { - $params = array('appsId' => $appsId, 'servicesId' => $servicesId, 'versionsId' => $versionsId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Appengine_Version"); - } - /** - * Lists the versions of a service. (versions.listAppsServicesVersions) - * - * @param string $appsId Part of `parent`. Name of the parent Service resource. - * Example: apps/myapp/services/default. - * @param string $servicesId Part of `parent`. See documentation of `appsId`. - * @param array $optParams Optional parameters. - * - * @opt_param string view Controls the set of fields returned in the List - * response. - * @opt_param string pageToken Continuation token for fetching the next page of - * results. - * @opt_param int pageSize Maximum results to return per page. - * @return Google_Service_Appengine_ListVersionsResponse - */ - public function listAppsServicesVersions($appsId, $servicesId, $optParams = array()) - { - $params = array('appsId' => $appsId, 'servicesId' => $servicesId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Appengine_ListVersionsResponse"); - } - /** - * Updates the specified Version resource. You can specify the following fields - * depending on the App Engine environment and type of scaling that the version - * resource uses:Standard environment instance_class - * (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.ser - * vices.versions#Version.FIELDS.instance_class)automatic scaling in the - * standard environment: automatic_scaling.min_idle_instances - * (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.ser - * vices.versions#Version.FIELDS.automatic_scaling) - * automatic_scaling.max_idle_instances (https://cloud.google.com/appengine/docs - * /admin-api/reference/rest/v1/apps.services.versions#Version.FIELDS.automatic_ - * scaling) automaticScaling.standard_scheduler_settings.max_instances - * (https://cloud.google.com/appengine/docs/admin- - * api/reference/rest/v1/apps.services.versions#StandardSchedulerSettings) - * automaticScaling.standard_scheduler_settings.min_instances - * (https://cloud.google.com/appengine/docs/admin- - * api/reference/rest/v1/apps.services.versions#StandardSchedulerSettings) - * automaticScaling.standard_scheduler_settings.target_cpu_utilization - * (https://cloud.google.com/appengine/docs/admin- - * api/reference/rest/v1/apps.services.versions#StandardSchedulerSettings) - * automaticScaling.standard_scheduler_settings.target_throughput_utilization - * (https://cloud.google.com/appengine/docs/admin- - * api/reference/rest/v1/apps.services.versions#StandardSchedulerSettings)basic - * scaling or manual scaling in the standard environment: serving_status - * (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.ser - * vices.versions#Version.FIELDS.serving_status)Flexible environment - * serving_status (https://cloud.google.com/appengine/docs/admin-api/reference/r - * est/v1/apps.services.versions#Version.FIELDS.serving_status)automatic scaling - * in the flexible environment: automatic_scaling.min_total_instances - * (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.ser - * vices.versions#Version.FIELDS.automatic_scaling) - * automatic_scaling.max_total_instances - * (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.ser - * vices.versions#Version.FIELDS.automatic_scaling) - * automatic_scaling.cool_down_period_sec - * (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.ser - * vices.versions#Version.FIELDS.automatic_scaling) - * automatic_scaling.cpu_utilization.target_utilization - * (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.ser - * vices.versions#Version.FIELDS.automatic_scaling) (versions.patch) - * - * @param string $appsId Part of `name`. Name of the resource to update. - * Example: apps/myapp/services/default/versions/1. - * @param string $servicesId Part of `name`. See documentation of `appsId`. - * @param string $versionsId Part of `name`. See documentation of `appsId`. - * @param Google_Service_Appengine_Version $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Standard field mask for the set of fields to be - * updated. - * @return Google_Service_Appengine_Operation - */ - public function patch($appsId, $servicesId, $versionsId, Google_Service_Appengine_Version $postBody, $optParams = array()) - { - $params = array('appsId' => $appsId, 'servicesId' => $servicesId, 'versionsId' => $versionsId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Appengine_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Resource/AppsServicesVersionsInstances.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Resource/AppsServicesVersionsInstances.php deleted file mode 100644 index 20a25b59..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Resource/AppsServicesVersionsInstances.php +++ /dev/null @@ -1,119 +0,0 @@ - - * $appengineService = new Google_Service_Appengine(...); - * $instances = $appengineService->instances; - * - */ -class Google_Service_Appengine_Resource_AppsServicesVersionsInstances extends Google_Service_Resource -{ - /** - * Enables debugging on a VM instance. This allows you to use the SSH command to - * connect to the virtual machine where the instance lives. While in "debug - * mode", the instance continues to serve live traffic. You should delete the - * instance when you are done debugging and then allow the system to take over - * and determine if another instance should be started.Only applicable for - * instances in App Engine flexible environment. (instances.debug) - * - * @param string $appsId Part of `name`. Name of the resource requested. - * Example: apps/myapp/services/default/versions/v1/instances/instance-1. - * @param string $servicesId Part of `name`. See documentation of `appsId`. - * @param string $versionsId Part of `name`. See documentation of `appsId`. - * @param string $instancesId Part of `name`. See documentation of `appsId`. - * @param Google_Service_Appengine_DebugInstanceRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Appengine_Operation - */ - public function debug($appsId, $servicesId, $versionsId, $instancesId, Google_Service_Appengine_DebugInstanceRequest $postBody, $optParams = array()) - { - $params = array('appsId' => $appsId, 'servicesId' => $servicesId, 'versionsId' => $versionsId, 'instancesId' => $instancesId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('debug', array($params), "Google_Service_Appengine_Operation"); - } - /** - * Stops a running instance.The instance might be automatically recreated based - * on the scaling settings of the version. For more information, see "How - * Instances are Managed" (standard environment - * (https://cloud.google.com/appengine/docs/standard/python/how-instances-are- - * managed) | flexible environment - * (https://cloud.google.com/appengine/docs/flexible/python/how-instances-are- - * managed)).To ensure that instances are not re-created and avoid getting - * billed, you can stop all instances within the target version by changing the - * serving status of the version to STOPPED with the - * apps.services.versions.patch (https://cloud.google.com/appengine/docs/admin- - * api/reference/rest/v1/apps.services.versions/patch) method. - * (instances.delete) - * - * @param string $appsId Part of `name`. Name of the resource requested. - * Example: apps/myapp/services/default/versions/v1/instances/instance-1. - * @param string $servicesId Part of `name`. See documentation of `appsId`. - * @param string $versionsId Part of `name`. See documentation of `appsId`. - * @param string $instancesId Part of `name`. See documentation of `appsId`. - * @param array $optParams Optional parameters. - * @return Google_Service_Appengine_Operation - */ - public function delete($appsId, $servicesId, $versionsId, $instancesId, $optParams = array()) - { - $params = array('appsId' => $appsId, 'servicesId' => $servicesId, 'versionsId' => $versionsId, 'instancesId' => $instancesId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Appengine_Operation"); - } - /** - * Gets instance information. (instances.get) - * - * @param string $appsId Part of `name`. Name of the resource requested. - * Example: apps/myapp/services/default/versions/v1/instances/instance-1. - * @param string $servicesId Part of `name`. See documentation of `appsId`. - * @param string $versionsId Part of `name`. See documentation of `appsId`. - * @param string $instancesId Part of `name`. See documentation of `appsId`. - * @param array $optParams Optional parameters. - * @return Google_Service_Appengine_Instance - */ - public function get($appsId, $servicesId, $versionsId, $instancesId, $optParams = array()) - { - $params = array('appsId' => $appsId, 'servicesId' => $servicesId, 'versionsId' => $versionsId, 'instancesId' => $instancesId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Appengine_Instance"); - } - /** - * Lists the instances of a version.Tip: To aggregate details about instances - * over time, see the Stackdriver Monitoring API (https://cloud.google.com/monit - * oring/api/ref_v3/rest/v3/projects.timeSeries/list). - * (instances.listAppsServicesVersionsInstances) - * - * @param string $appsId Part of `parent`. Name of the parent Version resource. - * Example: apps/myapp/services/default/versions/v1. - * @param string $servicesId Part of `parent`. See documentation of `appsId`. - * @param string $versionsId Part of `parent`. See documentation of `appsId`. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Continuation token for fetching the next page of - * results. - * @opt_param int pageSize Maximum results to return per page. - * @return Google_Service_Appengine_ListInstancesResponse - */ - public function listAppsServicesVersionsInstances($appsId, $servicesId, $versionsId, $optParams = array()) - { - $params = array('appsId' => $appsId, 'servicesId' => $servicesId, 'versionsId' => $versionsId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Appengine_ListInstancesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ResourceRecord.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ResourceRecord.php deleted file mode 100644 index 197d7b64..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ResourceRecord.php +++ /dev/null @@ -1,48 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setRrdata($rrdata) - { - $this->rrdata = $rrdata; - } - public function getRrdata() - { - return $this->rrdata; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Resources.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Resources.php deleted file mode 100644 index 7a817ea9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Resources.php +++ /dev/null @@ -1,65 +0,0 @@ -cpu = $cpu; - } - public function getCpu() - { - return $this->cpu; - } - public function setDiskGb($diskGb) - { - $this->diskGb = $diskGb; - } - public function getDiskGb() - { - return $this->diskGb; - } - public function setMemoryGb($memoryGb) - { - $this->memoryGb = $memoryGb; - } - public function getMemoryGb() - { - return $this->memoryGb; - } - /** - * @param Google_Service_Appengine_Volume - */ - public function setVolumes($volumes) - { - $this->volumes = $volumes; - } - /** - * @return Google_Service_Appengine_Volume - */ - public function getVolumes() - { - return $this->volumes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ScriptHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ScriptHandler.php deleted file mode 100644 index 71e7e4fa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ScriptHandler.php +++ /dev/null @@ -1,30 +0,0 @@ -scriptPath = $scriptPath; - } - public function getScriptPath() - { - return $this->scriptPath; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Service.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Service.php deleted file mode 100644 index ee2320a5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Service.php +++ /dev/null @@ -1,55 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Appengine_TrafficSplit - */ - public function setSplit(Google_Service_Appengine_TrafficSplit $split) - { - $this->split = $split; - } - /** - * @return Google_Service_Appengine_TrafficSplit - */ - public function getSplit() - { - return $this->split; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/SslSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/SslSettings.php deleted file mode 100644 index cd510690..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/SslSettings.php +++ /dev/null @@ -1,48 +0,0 @@ -certificateId = $certificateId; - } - public function getCertificateId() - { - return $this->certificateId; - } - public function setPendingManagedCertificateId($pendingManagedCertificateId) - { - $this->pendingManagedCertificateId = $pendingManagedCertificateId; - } - public function getPendingManagedCertificateId() - { - return $this->pendingManagedCertificateId; - } - public function setSslManagementType($sslManagementType) - { - $this->sslManagementType = $sslManagementType; - } - public function getSslManagementType() - { - return $this->sslManagementType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/StandardSchedulerSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/StandardSchedulerSettings.php deleted file mode 100644 index c601c0f2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/StandardSchedulerSettings.php +++ /dev/null @@ -1,57 +0,0 @@ -maxInstances = $maxInstances; - } - public function getMaxInstances() - { - return $this->maxInstances; - } - public function setMinInstances($minInstances) - { - $this->minInstances = $minInstances; - } - public function getMinInstances() - { - return $this->minInstances; - } - public function setTargetCpuUtilization($targetCpuUtilization) - { - $this->targetCpuUtilization = $targetCpuUtilization; - } - public function getTargetCpuUtilization() - { - return $this->targetCpuUtilization; - } - public function setTargetThroughputUtilization($targetThroughputUtilization) - { - $this->targetThroughputUtilization = $targetThroughputUtilization; - } - public function getTargetThroughputUtilization() - { - return $this->targetThroughputUtilization; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/StaticFilesHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/StaticFilesHandler.php deleted file mode 100644 index 3c8c41ac..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/StaticFilesHandler.php +++ /dev/null @@ -1,84 +0,0 @@ -applicationReadable = $applicationReadable; - } - public function getApplicationReadable() - { - return $this->applicationReadable; - } - public function setExpiration($expiration) - { - $this->expiration = $expiration; - } - public function getExpiration() - { - return $this->expiration; - } - public function setHttpHeaders($httpHeaders) - { - $this->httpHeaders = $httpHeaders; - } - public function getHttpHeaders() - { - return $this->httpHeaders; - } - public function setMimeType($mimeType) - { - $this->mimeType = $mimeType; - } - public function getMimeType() - { - return $this->mimeType; - } - public function setPath($path) - { - $this->path = $path; - } - public function getPath() - { - return $this->path; - } - public function setRequireMatchingFile($requireMatchingFile) - { - $this->requireMatchingFile = $requireMatchingFile; - } - public function getRequireMatchingFile() - { - return $this->requireMatchingFile; - } - public function setUploadPathRegex($uploadPathRegex) - { - $this->uploadPathRegex = $uploadPathRegex; - } - public function getUploadPathRegex() - { - return $this->uploadPathRegex; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Status.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Status.php deleted file mode 100644 index e18879e3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Status.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/TrafficSplit.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/TrafficSplit.php deleted file mode 100644 index 25740865..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/TrafficSplit.php +++ /dev/null @@ -1,39 +0,0 @@ -allocations = $allocations; - } - public function getAllocations() - { - return $this->allocations; - } - public function setShardBy($shardBy) - { - $this->shardBy = $shardBy; - } - public function getShardBy() - { - return $this->shardBy; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/UrlDispatchRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/UrlDispatchRule.php deleted file mode 100644 index c8fb0512..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/UrlDispatchRule.php +++ /dev/null @@ -1,48 +0,0 @@ -domain = $domain; - } - public function getDomain() - { - return $this->domain; - } - public function setPath($path) - { - $this->path = $path; - } - public function getPath() - { - return $this->path; - } - public function setService($service) - { - $this->service = $service; - } - public function getService() - { - return $this->service; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/UrlMap.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/UrlMap.php deleted file mode 100644 index be465232..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/UrlMap.php +++ /dev/null @@ -1,114 +0,0 @@ -apiEndpoint = $apiEndpoint; - } - /** - * @return Google_Service_Appengine_ApiEndpointHandler - */ - public function getApiEndpoint() - { - return $this->apiEndpoint; - } - public function setAuthFailAction($authFailAction) - { - $this->authFailAction = $authFailAction; - } - public function getAuthFailAction() - { - return $this->authFailAction; - } - public function setLogin($login) - { - $this->login = $login; - } - public function getLogin() - { - return $this->login; - } - public function setRedirectHttpResponseCode($redirectHttpResponseCode) - { - $this->redirectHttpResponseCode = $redirectHttpResponseCode; - } - public function getRedirectHttpResponseCode() - { - return $this->redirectHttpResponseCode; - } - /** - * @param Google_Service_Appengine_ScriptHandler - */ - public function setScript(Google_Service_Appengine_ScriptHandler $script) - { - $this->script = $script; - } - /** - * @return Google_Service_Appengine_ScriptHandler - */ - public function getScript() - { - return $this->script; - } - public function setSecurityLevel($securityLevel) - { - $this->securityLevel = $securityLevel; - } - public function getSecurityLevel() - { - return $this->securityLevel; - } - /** - * @param Google_Service_Appengine_StaticFilesHandler - */ - public function setStaticFiles(Google_Service_Appengine_StaticFilesHandler $staticFiles) - { - $this->staticFiles = $staticFiles; - } - /** - * @return Google_Service_Appengine_StaticFilesHandler - */ - public function getStaticFiles() - { - return $this->staticFiles; - } - public function setUrlRegex($urlRegex) - { - $this->urlRegex = $urlRegex; - } - public function getUrlRegex() - { - return $this->urlRegex; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Version.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Version.php deleted file mode 100644 index 464e6ce8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Version.php +++ /dev/null @@ -1,467 +0,0 @@ -apiConfig = $apiConfig; - } - /** - * @return Google_Service_Appengine_ApiConfigHandler - */ - public function getApiConfig() - { - return $this->apiConfig; - } - /** - * @param Google_Service_Appengine_AutomaticScaling - */ - public function setAutomaticScaling(Google_Service_Appengine_AutomaticScaling $automaticScaling) - { - $this->automaticScaling = $automaticScaling; - } - /** - * @return Google_Service_Appengine_AutomaticScaling - */ - public function getAutomaticScaling() - { - return $this->automaticScaling; - } - /** - * @param Google_Service_Appengine_BasicScaling - */ - public function setBasicScaling(Google_Service_Appengine_BasicScaling $basicScaling) - { - $this->basicScaling = $basicScaling; - } - /** - * @return Google_Service_Appengine_BasicScaling - */ - public function getBasicScaling() - { - return $this->basicScaling; - } - public function setBetaSettings($betaSettings) - { - $this->betaSettings = $betaSettings; - } - public function getBetaSettings() - { - return $this->betaSettings; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setCreatedBy($createdBy) - { - $this->createdBy = $createdBy; - } - public function getCreatedBy() - { - return $this->createdBy; - } - public function setDefaultExpiration($defaultExpiration) - { - $this->defaultExpiration = $defaultExpiration; - } - public function getDefaultExpiration() - { - return $this->defaultExpiration; - } - /** - * @param Google_Service_Appengine_Deployment - */ - public function setDeployment(Google_Service_Appengine_Deployment $deployment) - { - $this->deployment = $deployment; - } - /** - * @return Google_Service_Appengine_Deployment - */ - public function getDeployment() - { - return $this->deployment; - } - public function setDiskUsageBytes($diskUsageBytes) - { - $this->diskUsageBytes = $diskUsageBytes; - } - public function getDiskUsageBytes() - { - return $this->diskUsageBytes; - } - /** - * @param Google_Service_Appengine_EndpointsApiService - */ - public function setEndpointsApiService(Google_Service_Appengine_EndpointsApiService $endpointsApiService) - { - $this->endpointsApiService = $endpointsApiService; - } - /** - * @return Google_Service_Appengine_EndpointsApiService - */ - public function getEndpointsApiService() - { - return $this->endpointsApiService; - } - /** - * @param Google_Service_Appengine_Entrypoint - */ - public function setEntrypoint(Google_Service_Appengine_Entrypoint $entrypoint) - { - $this->entrypoint = $entrypoint; - } - /** - * @return Google_Service_Appengine_Entrypoint - */ - public function getEntrypoint() - { - return $this->entrypoint; - } - public function setEnv($env) - { - $this->env = $env; - } - public function getEnv() - { - return $this->env; - } - public function setEnvVariables($envVariables) - { - $this->envVariables = $envVariables; - } - public function getEnvVariables() - { - return $this->envVariables; - } - /** - * @param Google_Service_Appengine_ErrorHandler - */ - public function setErrorHandlers($errorHandlers) - { - $this->errorHandlers = $errorHandlers; - } - /** - * @return Google_Service_Appengine_ErrorHandler - */ - public function getErrorHandlers() - { - return $this->errorHandlers; - } - /** - * @param Google_Service_Appengine_UrlMap - */ - public function setHandlers($handlers) - { - $this->handlers = $handlers; - } - /** - * @return Google_Service_Appengine_UrlMap - */ - public function getHandlers() - { - return $this->handlers; - } - /** - * @param Google_Service_Appengine_HealthCheck - */ - public function setHealthCheck(Google_Service_Appengine_HealthCheck $healthCheck) - { - $this->healthCheck = $healthCheck; - } - /** - * @return Google_Service_Appengine_HealthCheck - */ - public function getHealthCheck() - { - return $this->healthCheck; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setInboundServices($inboundServices) - { - $this->inboundServices = $inboundServices; - } - public function getInboundServices() - { - return $this->inboundServices; - } - public function setInstanceClass($instanceClass) - { - $this->instanceClass = $instanceClass; - } - public function getInstanceClass() - { - return $this->instanceClass; - } - /** - * @param Google_Service_Appengine_Library - */ - public function setLibraries($libraries) - { - $this->libraries = $libraries; - } - /** - * @return Google_Service_Appengine_Library - */ - public function getLibraries() - { - return $this->libraries; - } - /** - * @param Google_Service_Appengine_LivenessCheck - */ - public function setLivenessCheck(Google_Service_Appengine_LivenessCheck $livenessCheck) - { - $this->livenessCheck = $livenessCheck; - } - /** - * @return Google_Service_Appengine_LivenessCheck - */ - public function getLivenessCheck() - { - return $this->livenessCheck; - } - /** - * @param Google_Service_Appengine_ManualScaling - */ - public function setManualScaling(Google_Service_Appengine_ManualScaling $manualScaling) - { - $this->manualScaling = $manualScaling; - } - /** - * @return Google_Service_Appengine_ManualScaling - */ - public function getManualScaling() - { - return $this->manualScaling; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Appengine_Network - */ - public function setNetwork(Google_Service_Appengine_Network $network) - { - $this->network = $network; - } - /** - * @return Google_Service_Appengine_Network - */ - public function getNetwork() - { - return $this->network; - } - public function setNobuildFilesRegex($nobuildFilesRegex) - { - $this->nobuildFilesRegex = $nobuildFilesRegex; - } - public function getNobuildFilesRegex() - { - return $this->nobuildFilesRegex; - } - /** - * @param Google_Service_Appengine_ReadinessCheck - */ - public function setReadinessCheck(Google_Service_Appengine_ReadinessCheck $readinessCheck) - { - $this->readinessCheck = $readinessCheck; - } - /** - * @return Google_Service_Appengine_ReadinessCheck - */ - public function getReadinessCheck() - { - return $this->readinessCheck; - } - /** - * @param Google_Service_Appengine_Resources - */ - public function setResources(Google_Service_Appengine_Resources $resources) - { - $this->resources = $resources; - } - /** - * @return Google_Service_Appengine_Resources - */ - public function getResources() - { - return $this->resources; - } - public function setRuntime($runtime) - { - $this->runtime = $runtime; - } - public function getRuntime() - { - return $this->runtime; - } - public function setRuntimeApiVersion($runtimeApiVersion) - { - $this->runtimeApiVersion = $runtimeApiVersion; - } - public function getRuntimeApiVersion() - { - return $this->runtimeApiVersion; - } - public function setRuntimeChannel($runtimeChannel) - { - $this->runtimeChannel = $runtimeChannel; - } - public function getRuntimeChannel() - { - return $this->runtimeChannel; - } - public function setRuntimeMainExecutablePath($runtimeMainExecutablePath) - { - $this->runtimeMainExecutablePath = $runtimeMainExecutablePath; - } - public function getRuntimeMainExecutablePath() - { - return $this->runtimeMainExecutablePath; - } - public function setServingStatus($servingStatus) - { - $this->servingStatus = $servingStatus; - } - public function getServingStatus() - { - return $this->servingStatus; - } - public function setThreadsafe($threadsafe) - { - $this->threadsafe = $threadsafe; - } - public function getThreadsafe() - { - return $this->threadsafe; - } - public function setVersionUrl($versionUrl) - { - $this->versionUrl = $versionUrl; - } - public function getVersionUrl() - { - return $this->versionUrl; - } - public function setVm($vm) - { - $this->vm = $vm; - } - public function getVm() - { - return $this->vm; - } - /** - * @param Google_Service_Appengine_VpcAccessConnector - */ - public function setVpcAccessConnector(Google_Service_Appengine_VpcAccessConnector $vpcAccessConnector) - { - $this->vpcAccessConnector = $vpcAccessConnector; - } - /** - * @return Google_Service_Appengine_VpcAccessConnector - */ - public function getVpcAccessConnector() - { - return $this->vpcAccessConnector; - } - public function setZones($zones) - { - $this->zones = $zones; - } - public function getZones() - { - return $this->zones; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Volume.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Volume.php deleted file mode 100644 index b718fc08..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/Volume.php +++ /dev/null @@ -1,48 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setSizeGb($sizeGb) - { - $this->sizeGb = $sizeGb; - } - public function getSizeGb() - { - return $this->sizeGb; - } - public function setVolumeType($volumeType) - { - $this->volumeType = $volumeType; - } - public function getVolumeType() - { - return $this->volumeType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/VpcAccessConnector.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/VpcAccessConnector.php deleted file mode 100644 index d1c1d51e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/VpcAccessConnector.php +++ /dev/null @@ -1,30 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ZipInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ZipInfo.php deleted file mode 100644 index 8119c4f7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appengine/ZipInfo.php +++ /dev/null @@ -1,39 +0,0 @@ -filesCount = $filesCount; - } - public function getFilesCount() - { - return $this->filesCount; - } - public function setSourceUrl($sourceUrl) - { - $this->sourceUrl = $sourceUrl; - } - public function getSourceUrl() - { - return $this->sourceUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appsactivity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appsactivity.php deleted file mode 100644 index 5f5fb0f9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appsactivity.php +++ /dev/null @@ -1,98 +0,0 @@ - - * Provides a historical view of activity.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Appsactivity extends Google_Service -{ - /** View the activity history of your Google apps. */ - const ACTIVITY = - "https://www.googleapis.com/auth/activity"; - - public $activities; - - /** - * Constructs the internal representation of the Appsactivity service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://www.googleapis.com/'; - $this->servicePath = 'appsactivity/v1/'; - $this->batchPath = 'batch/appsactivity/v1'; - $this->version = 'v1'; - $this->serviceName = 'appsactivity'; - - $this->activities = new Google_Service_Appsactivity_Resource_Activities( - $this, - $this->serviceName, - 'activities', - array( - 'methods' => array( - 'list' => array( - 'path' => 'activities', - 'httpMethod' => 'GET', - 'parameters' => array( - 'drive.ancestorId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'drive.fileId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'groupingStrategy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appsactivity/Activity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appsactivity/Activity.php deleted file mode 100644 index e59a324e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appsactivity/Activity.php +++ /dev/null @@ -1,54 +0,0 @@ -combinedEvent = $combinedEvent; - } - /** - * @return Google_Service_Appsactivity_Event - */ - public function getCombinedEvent() - { - return $this->combinedEvent; - } - /** - * @param Google_Service_Appsactivity_Event - */ - public function setSingleEvents($singleEvents) - { - $this->singleEvents = $singleEvents; - } - /** - * @return Google_Service_Appsactivity_Event - */ - public function getSingleEvents() - { - return $this->singleEvents; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appsactivity/AppsactivityParent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appsactivity/AppsactivityParent.php deleted file mode 100644 index 22960469..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appsactivity/AppsactivityParent.php +++ /dev/null @@ -1,48 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setIsRoot($isRoot) - { - $this->isRoot = $isRoot; - } - public function getIsRoot() - { - return $this->isRoot; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appsactivity/Event.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appsactivity/Event.php deleted file mode 100644 index 7f8e15e9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appsactivity/Event.php +++ /dev/null @@ -1,138 +0,0 @@ -additionalEventTypes = $additionalEventTypes; - } - public function getAdditionalEventTypes() - { - return $this->additionalEventTypes; - } - public function setEventTimeMillis($eventTimeMillis) - { - $this->eventTimeMillis = $eventTimeMillis; - } - public function getEventTimeMillis() - { - return $this->eventTimeMillis; - } - public function setFromUserDeletion($fromUserDeletion) - { - $this->fromUserDeletion = $fromUserDeletion; - } - public function getFromUserDeletion() - { - return $this->fromUserDeletion; - } - /** - * @param Google_Service_Appsactivity_Move - */ - public function setMove(Google_Service_Appsactivity_Move $move) - { - $this->move = $move; - } - /** - * @return Google_Service_Appsactivity_Move - */ - public function getMove() - { - return $this->move; - } - /** - * @param Google_Service_Appsactivity_PermissionChange - */ - public function setPermissionChanges($permissionChanges) - { - $this->permissionChanges = $permissionChanges; - } - /** - * @return Google_Service_Appsactivity_PermissionChange - */ - public function getPermissionChanges() - { - return $this->permissionChanges; - } - public function setPrimaryEventType($primaryEventType) - { - $this->primaryEventType = $primaryEventType; - } - public function getPrimaryEventType() - { - return $this->primaryEventType; - } - /** - * @param Google_Service_Appsactivity_Rename - */ - public function setRename(Google_Service_Appsactivity_Rename $rename) - { - $this->rename = $rename; - } - /** - * @return Google_Service_Appsactivity_Rename - */ - public function getRename() - { - return $this->rename; - } - /** - * @param Google_Service_Appsactivity_Target - */ - public function setTarget(Google_Service_Appsactivity_Target $target) - { - $this->target = $target; - } - /** - * @return Google_Service_Appsactivity_Target - */ - public function getTarget() - { - return $this->target; - } - /** - * @param Google_Service_Appsactivity_User - */ - public function setUser(Google_Service_Appsactivity_User $user) - { - $this->user = $user; - } - /** - * @return Google_Service_Appsactivity_User - */ - public function getUser() - { - return $this->user; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appsactivity/ListActivitiesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appsactivity/ListActivitiesResponse.php deleted file mode 100644 index 1b4a7ea8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appsactivity/ListActivitiesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -activities = $activities; - } - /** - * @return Google_Service_Appsactivity_Activity - */ - public function getActivities() - { - return $this->activities; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appsactivity/Move.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appsactivity/Move.php deleted file mode 100644 index e60417c0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appsactivity/Move.php +++ /dev/null @@ -1,54 +0,0 @@ -addedParents = $addedParents; - } - /** - * @return Google_Service_Appsactivity_AppsactivityParent - */ - public function getAddedParents() - { - return $this->addedParents; - } - /** - * @param Google_Service_Appsactivity_AppsactivityParent - */ - public function setRemovedParents($removedParents) - { - $this->removedParents = $removedParents; - } - /** - * @return Google_Service_Appsactivity_AppsactivityParent - */ - public function getRemovedParents() - { - return $this->removedParents; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appsactivity/Permission.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appsactivity/Permission.php deleted file mode 100644 index 4f808d2f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appsactivity/Permission.php +++ /dev/null @@ -1,82 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setPermissionId($permissionId) - { - $this->permissionId = $permissionId; - } - public function getPermissionId() - { - return $this->permissionId; - } - public function setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - /** - * @param Google_Service_Appsactivity_User - */ - public function setUser(Google_Service_Appsactivity_User $user) - { - $this->user = $user; - } - /** - * @return Google_Service_Appsactivity_User - */ - public function getUser() - { - return $this->user; - } - public function setWithLink($withLink) - { - $this->withLink = $withLink; - } - public function getWithLink() - { - return $this->withLink; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appsactivity/PermissionChange.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appsactivity/PermissionChange.php deleted file mode 100644 index de195d9c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appsactivity/PermissionChange.php +++ /dev/null @@ -1,54 +0,0 @@ -addedPermissions = $addedPermissions; - } - /** - * @return Google_Service_Appsactivity_Permission - */ - public function getAddedPermissions() - { - return $this->addedPermissions; - } - /** - * @param Google_Service_Appsactivity_Permission - */ - public function setRemovedPermissions($removedPermissions) - { - $this->removedPermissions = $removedPermissions; - } - /** - * @return Google_Service_Appsactivity_Permission - */ - public function getRemovedPermissions() - { - return $this->removedPermissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appsactivity/Photo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appsactivity/Photo.php deleted file mode 100644 index 65d3efe6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appsactivity/Photo.php +++ /dev/null @@ -1,30 +0,0 @@ -url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appsactivity/Rename.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appsactivity/Rename.php deleted file mode 100644 index 6355c143..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appsactivity/Rename.php +++ /dev/null @@ -1,39 +0,0 @@ -newTitle = $newTitle; - } - public function getNewTitle() - { - return $this->newTitle; - } - public function setOldTitle($oldTitle) - { - $this->oldTitle = $oldTitle; - } - public function getOldTitle() - { - return $this->oldTitle; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appsactivity/Resource/Activities.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appsactivity/Resource/Activities.php deleted file mode 100644 index 36e00822..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appsactivity/Resource/Activities.php +++ /dev/null @@ -1,60 +0,0 @@ - - * $appsactivityService = new Google_Service_Appsactivity(...); - * $activities = $appsactivityService->activities; - * - */ -class Google_Service_Appsactivity_Resource_Activities extends Google_Service_Resource -{ - /** - * Returns a list of activities visible to the current logged in user. Visible - * activities are determined by the visibility settings of the object that was - * acted on, e.g. Drive files a user can see. An activity is a record of past - * events. Multiple events may be merged if they are similar. A request is - * scoped to activities from a given Google service using the source parameter. - * (activities.listActivities) - * - * @param array $optParams Optional parameters. - * - * @opt_param string drive.ancestorId Identifies the Drive folder containing the - * items for which to return activities. - * @opt_param string drive.fileId Identifies the Drive item to return activities - * for. - * @opt_param string groupingStrategy Indicates the strategy to use when - * grouping singleEvents items in the associated combinedEvent object. - * @opt_param int pageSize The maximum number of events to return on a page. The - * response includes a continuation token if there are more events. - * @opt_param string pageToken A token to retrieve a specific page of results. - * @opt_param string source The Google service from which to return activities. - * Possible values of source are: - drive.google.com - * @opt_param string userId The ID used for ACL checks (does not filter the - * resulting event list by the assigned value). Use the special value me to - * indicate the currently authenticated user. - * @return Google_Service_Appsactivity_ListActivitiesResponse - */ - public function listActivities($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Appsactivity_ListActivitiesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appsactivity/Target.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appsactivity/Target.php deleted file mode 100644 index af06e632..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appsactivity/Target.php +++ /dev/null @@ -1,48 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setMimeType($mimeType) - { - $this->mimeType = $mimeType; - } - public function getMimeType() - { - return $this->mimeType; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appsactivity/User.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appsactivity/User.php deleted file mode 100644 index f77a7aca..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Appsactivity/User.php +++ /dev/null @@ -1,73 +0,0 @@ -isDeleted = $isDeleted; - } - public function getIsDeleted() - { - return $this->isDeleted; - } - public function setIsMe($isMe) - { - $this->isMe = $isMe; - } - public function getIsMe() - { - return $this->isMe; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPermissionId($permissionId) - { - $this->permissionId = $permissionId; - } - public function getPermissionId() - { - return $this->permissionId; - } - /** - * @param Google_Service_Appsactivity_Photo - */ - public function setPhoto(Google_Service_Appsactivity_Photo $photo) - { - $this->photo = $photo; - } - /** - * @return Google_Service_Appsactivity_Photo - */ - public function getPhoto() - { - return $this->photo; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler.php deleted file mode 100644 index d512665f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler.php +++ /dev/null @@ -1,299 +0,0 @@ - - * The Google Compute Engine Autoscaler API provides autoscaling for groups of - * Cloud VMs.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Autoscaler extends Google_Service -{ - /** View and manage your Google Compute Engine resources. */ - const COMPUTE = - "https://www.googleapis.com/auth/compute"; - /** View your Google Compute Engine resources. */ - const COMPUTE_READONLY = - "https://www.googleapis.com/auth/compute.readonly"; - - public $autoscalers; - public $zoneOperations; - public $zones; - - /** - * Constructs the internal representation of the Autoscaler service. - * - * @param Google_Client $client - */ - public function __construct(Google_Client $client) - { - parent::__construct($client); - $this->rootUrl = 'https://www.googleapis.com/'; - $this->servicePath = 'autoscaler/v1beta2/'; - $this->version = 'v1beta2'; - $this->serviceName = 'autoscaler'; - - $this->autoscalers = new Google_Service_Autoscaler_Resource_Autoscalers( - $this, - $this->serviceName, - 'autoscalers', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'projects/{project}/zones/{zone}/autoscalers/{autoscaler}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'autoscaler' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'projects/{project}/zones/{zone}/autoscalers/{autoscaler}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'autoscaler' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'projects/{project}/zones/{zone}/autoscalers', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'projects/{project}/zones/{zone}/autoscalers', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'projects/{project}/zones/{zone}/autoscalers/{autoscaler}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'autoscaler' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'projects/{project}/zones/{zone}/autoscalers/{autoscaler}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'autoscaler' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->zoneOperations = new Google_Service_Autoscaler_Resource_ZoneOperations( - $this, - $this->serviceName, - 'zoneOperations', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{project}/zones/{zone}/operations/{operation}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'operation' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{project}/zones/{zone}/operations/{operation}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'operation' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/zones/{zone}/operations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->zones = new Google_Service_Autoscaler_Resource_Zones( - $this, - $this->serviceName, - 'zones', - array( - 'methods' => array( - 'list' => array( - 'path' => 'zones', - 'httpMethod' => 'GET', - 'parameters' => array( - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'project' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler/Autoscaler.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler/Autoscaler.php deleted file mode 100644 index a27d3bc7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler/Autoscaler.php +++ /dev/null @@ -1,94 +0,0 @@ -autoscalingPolicy = $autoscalingPolicy; - } - public function getAutoscalingPolicy() - { - return $this->autoscalingPolicy; - } - public function setCreationTimestamp($creationTimestamp) - { - $this->creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setTarget($target) - { - $this->target = $target; - } - public function getTarget() - { - return $this->target; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler/AutoscalerListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler/AutoscalerListResponse.php deleted file mode 100644 index 83866a55..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler/AutoscalerListResponse.php +++ /dev/null @@ -1,50 +0,0 @@ -items = $items; - } - public function getItems() - { - return $this->items; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler/AutoscalingPolicy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler/AutoscalingPolicy.php deleted file mode 100644 index 5f130bdc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler/AutoscalingPolicy.php +++ /dev/null @@ -1,79 +0,0 @@ -coolDownPeriodSec = $coolDownPeriodSec; - } - public function getCoolDownPeriodSec() - { - return $this->coolDownPeriodSec; - } - public function setCpuUtilization(Google_Service_Autoscaler_AutoscalingPolicyCpuUtilization $cpuUtilization) - { - $this->cpuUtilization = $cpuUtilization; - } - public function getCpuUtilization() - { - return $this->cpuUtilization; - } - public function setCustomMetricUtilizations($customMetricUtilizations) - { - $this->customMetricUtilizations = $customMetricUtilizations; - } - public function getCustomMetricUtilizations() - { - return $this->customMetricUtilizations; - } - public function setLoadBalancingUtilization(Google_Service_Autoscaler_AutoscalingPolicyLoadBalancingUtilization $loadBalancingUtilization) - { - $this->loadBalancingUtilization = $loadBalancingUtilization; - } - public function getLoadBalancingUtilization() - { - return $this->loadBalancingUtilization; - } - public function setMaxNumReplicas($maxNumReplicas) - { - $this->maxNumReplicas = $maxNumReplicas; - } - public function getMaxNumReplicas() - { - return $this->maxNumReplicas; - } - public function setMinNumReplicas($minNumReplicas) - { - $this->minNumReplicas = $minNumReplicas; - } - public function getMinNumReplicas() - { - return $this->minNumReplicas; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler/AutoscalingPolicyCpuUtilization.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler/AutoscalingPolicyCpuUtilization.php deleted file mode 100644 index c242c4b3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler/AutoscalingPolicyCpuUtilization.php +++ /dev/null @@ -1,30 +0,0 @@ -utilizationTarget = $utilizationTarget; - } - public function getUtilizationTarget() - { - return $this->utilizationTarget; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler/AutoscalingPolicyCustomMetricUtilization.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler/AutoscalingPolicyCustomMetricUtilization.php deleted file mode 100644 index f1db2ffb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler/AutoscalingPolicyCustomMetricUtilization.php +++ /dev/null @@ -1,48 +0,0 @@ -metric = $metric; - } - public function getMetric() - { - return $this->metric; - } - public function setUtilizationTarget($utilizationTarget) - { - $this->utilizationTarget = $utilizationTarget; - } - public function getUtilizationTarget() - { - return $this->utilizationTarget; - } - public function setUtilizationTargetType($utilizationTargetType) - { - $this->utilizationTargetType = $utilizationTargetType; - } - public function getUtilizationTargetType() - { - return $this->utilizationTargetType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler/AutoscalingPolicyLoadBalancingUtilization.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler/AutoscalingPolicyLoadBalancingUtilization.php deleted file mode 100644 index d8605588..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler/AutoscalingPolicyLoadBalancingUtilization.php +++ /dev/null @@ -1,30 +0,0 @@ -utilizationTarget = $utilizationTarget; - } - public function getUtilizationTarget() - { - return $this->utilizationTarget; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler/DeprecationStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler/DeprecationStatus.php deleted file mode 100644 index b3b52274..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler/DeprecationStatus.php +++ /dev/null @@ -1,66 +0,0 @@ -deleted = $deleted; - } - public function getDeleted() - { - return $this->deleted; - } - public function setDeprecated($deprecated) - { - $this->deprecated = $deprecated; - } - public function getDeprecated() - { - return $this->deprecated; - } - public function setObsolete($obsolete) - { - $this->obsolete = $obsolete; - } - public function getObsolete() - { - return $this->obsolete; - } - public function setReplacement($replacement) - { - $this->replacement = $replacement; - } - public function getReplacement() - { - return $this->replacement; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler/Operation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler/Operation.php deleted file mode 100644 index e20c3e26..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler/Operation.php +++ /dev/null @@ -1,231 +0,0 @@ -clientOperationId = $clientOperationId; - } - public function getClientOperationId() - { - return $this->clientOperationId; - } - public function setCreationTimestamp($creationTimestamp) - { - $this->creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setError(Google_Service_Autoscaler_OperationError $error) - { - $this->error = $error; - } - public function getError() - { - return $this->error; - } - public function setHttpErrorMessage($httpErrorMessage) - { - $this->httpErrorMessage = $httpErrorMessage; - } - public function getHttpErrorMessage() - { - return $this->httpErrorMessage; - } - public function setHttpErrorStatusCode($httpErrorStatusCode) - { - $this->httpErrorStatusCode = $httpErrorStatusCode; - } - public function getHttpErrorStatusCode() - { - return $this->httpErrorStatusCode; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setInsertTime($insertTime) - { - $this->insertTime = $insertTime; - } - public function getInsertTime() - { - return $this->insertTime; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOperationType($operationType) - { - $this->operationType = $operationType; - } - public function getOperationType() - { - return $this->operationType; - } - public function setProgress($progress) - { - $this->progress = $progress; - } - public function getProgress() - { - return $this->progress; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - 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 setStatusMessage($statusMessage) - { - $this->statusMessage = $statusMessage; - } - public function getStatusMessage() - { - return $this->statusMessage; - } - public function setTargetId($targetId) - { - $this->targetId = $targetId; - } - public function getTargetId() - { - return $this->targetId; - } - public function setTargetLink($targetLink) - { - $this->targetLink = $targetLink; - } - public function getTargetLink() - { - return $this->targetLink; - } - public function setUser($user) - { - $this->user = $user; - } - public function getUser() - { - return $this->user; - } - public function setWarnings($warnings) - { - $this->warnings = $warnings; - } - public function getWarnings() - { - return $this->warnings; - } - public function setZone($zone) - { - $this->zone = $zone; - } - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler/OperationError.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler/OperationError.php deleted file mode 100644 index c3a13ab4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler/OperationError.php +++ /dev/null @@ -1,32 +0,0 @@ -errors = $errors; - } - public function getErrors() - { - return $this->errors; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler/OperationErrorErrors.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler/OperationErrorErrors.php deleted file mode 100644 index 8d6ab9c4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler/OperationErrorErrors.php +++ /dev/null @@ -1,48 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler/OperationList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler/OperationList.php deleted file mode 100644 index 3496cd98..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler/OperationList.php +++ /dev/null @@ -1,68 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setItems($items) - { - $this->items = $items; - } - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler/OperationWarnings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler/OperationWarnings.php deleted file mode 100644 index 95c32439..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler/OperationWarnings.php +++ /dev/null @@ -1,50 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setData($data) - { - $this->data = $data; - } - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler/OperationWarningsData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler/OperationWarningsData.php deleted file mode 100644 index 6ffad137..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler/OperationWarningsData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler/Resource/Autoscalers.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler/Resource/Autoscalers.php deleted file mode 100644 index 5f11f629..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler/Resource/Autoscalers.php +++ /dev/null @@ -1,124 +0,0 @@ - - * $autoscalerService = new Google_Service_Autoscaler(...); - * $autoscalers = $autoscalerService->autoscalers; - * - */ -class Google_Service_Autoscaler_Resource_Autoscalers extends Google_Service_Resource -{ - /** - * Deletes the specified Autoscaler resource. (autoscalers.delete) - * - * @param string $project Project ID of Autoscaler resource. - * @param string $zone Zone name of Autoscaler resource. - * @param string $autoscaler Name of the Autoscaler resource. - * @param array $optParams Optional parameters. - * @return Google_Service_Autoscaler_Operation - */ - public function delete($project, $zone, $autoscaler, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'autoscaler' => $autoscaler); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Autoscaler_Operation"); - } - /** - * Gets the specified Autoscaler resource. (autoscalers.get) - * - * @param string $project Project ID of Autoscaler resource. - * @param string $zone Zone name of Autoscaler resource. - * @param string $autoscaler Name of the Autoscaler resource. - * @param array $optParams Optional parameters. - * @return Google_Service_Autoscaler_Autoscaler - */ - public function get($project, $zone, $autoscaler, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'autoscaler' => $autoscaler); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Autoscaler_Autoscaler"); - } - /** - * Adds new Autoscaler resource. (autoscalers.insert) - * - * @param string $project Project ID of Autoscaler resource. - * @param string $zone Zone name of Autoscaler resource. - * @param Google_Service_Autoscaler_Autoscaler $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Autoscaler_Operation - */ - public function insert($project, $zone, Google_Service_Autoscaler_Autoscaler $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Autoscaler_Operation"); - } - /** - * Lists all Autoscaler resources in this zone. (autoscalers.listAutoscalers) - * - * @param string $project Project ID of Autoscaler resource. - * @param string $zone Zone name of Autoscaler resource. - * @param array $optParams Optional parameters. - * - * @opt_param string filter - * @opt_param string maxResults - * @opt_param string pageToken - * @return Google_Service_Autoscaler_AutoscalerListResponse - */ - public function listAutoscalers($project, $zone, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Autoscaler_AutoscalerListResponse"); - } - /** - * Update the entire content of the Autoscaler resource. This method supports - * patch semantics. (autoscalers.patch) - * - * @param string $project Project ID of Autoscaler resource. - * @param string $zone Zone name of Autoscaler resource. - * @param string $autoscaler Name of the Autoscaler resource. - * @param Google_Service_Autoscaler_Autoscaler $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Autoscaler_Operation - */ - public function patch($project, $zone, $autoscaler, Google_Service_Autoscaler_Autoscaler $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'autoscaler' => $autoscaler, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Autoscaler_Operation"); - } - /** - * Update the entire content of the Autoscaler resource. (autoscalers.update) - * - * @param string $project Project ID of Autoscaler resource. - * @param string $zone Zone name of Autoscaler resource. - * @param string $autoscaler Name of the Autoscaler resource. - * @param Google_Service_Autoscaler_Autoscaler $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Autoscaler_Operation - */ - public function update($project, $zone, $autoscaler, Google_Service_Autoscaler_Autoscaler $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'autoscaler' => $autoscaler, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Autoscaler_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler/Resource/ZoneOperations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler/Resource/ZoneOperations.php deleted file mode 100644 index 282fe2e6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler/Resource/ZoneOperations.php +++ /dev/null @@ -1,78 +0,0 @@ - - * $autoscalerService = new Google_Service_Autoscaler(...); - * $zoneOperations = $autoscalerService->zoneOperations; - * - */ -class Google_Service_Autoscaler_Resource_ZoneOperations extends Google_Service_Resource -{ - /** - * Deletes the specified zone-specific operation resource. - * (zoneOperations.delete) - * - * @param string $project - * @param string $zone - * @param string $operation - * @param array $optParams Optional parameters. - */ - public function delete($project, $zone, $operation, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'operation' => $operation); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Retrieves the specified zone-specific operation resource. - * (zoneOperations.get) - * - * @param string $project - * @param string $zone - * @param string $operation - * @param array $optParams Optional parameters. - * @return Google_Service_Autoscaler_Operation - */ - public function get($project, $zone, $operation, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'operation' => $operation); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Autoscaler_Operation"); - } - /** - * Retrieves the list of operation resources contained within the specified - * zone. (zoneOperations.listZoneOperations) - * - * @param string $project - * @param string $zone - * @param array $optParams Optional parameters. - * - * @opt_param string filter - * @opt_param string maxResults - * @opt_param string pageToken - * @return Google_Service_Autoscaler_OperationList - */ - public function listZoneOperations($project, $zone, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Autoscaler_OperationList"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler/Resource/Zones.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler/Resource/Zones.php deleted file mode 100644 index 9f8e9bc6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler/Resource/Zones.php +++ /dev/null @@ -1,45 +0,0 @@ - - * $autoscalerService = new Google_Service_Autoscaler(...); - * $zones = $autoscalerService->zones; - * - */ -class Google_Service_Autoscaler_Resource_Zones extends Google_Service_Resource -{ - /** - * (zones.listZones) - * - * @param array $optParams Optional parameters. - * - * @opt_param string filter - * @opt_param string maxResults - * @opt_param string pageToken - * @opt_param string project - * @return Google_Service_Autoscaler_ZoneList - */ - public function listZones($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Autoscaler_ZoneList"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler/Zone.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler/Zone.php deleted file mode 100644 index d5457d12..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler/Zone.php +++ /dev/null @@ -1,103 +0,0 @@ -creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setDeprecated(Google_Service_Autoscaler_DeprecationStatus $deprecated) - { - $this->deprecated = $deprecated; - } - public function getDeprecated() - { - return $this->deprecated; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler/ZoneList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler/ZoneList.php deleted file mode 100644 index b73d404a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Autoscaler/ZoneList.php +++ /dev/null @@ -1,68 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setItems($items) - { - $this->items = $items; - } - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService.php deleted file mode 100644 index 685d990e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService.php +++ /dev/null @@ -1,175 +0,0 @@ - - * Allows users to manage BigQuery connections to external data sources.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_BigQueryConnectionService extends Google_Service -{ - /** View and manage your data in Google BigQuery. */ - const BIGQUERY = - "https://www.googleapis.com/auth/bigquery"; - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - - public $projects_locations_connections; - - /** - * Constructs the internal representation of the BigQueryConnectionService - * service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://bigqueryconnection.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1beta1'; - $this->serviceName = 'bigqueryconnection'; - - $this->projects_locations_connections = new Google_Service_BigQueryConnectionService_Resource_ProjectsLocationsConnections( - $this, - $this->serviceName, - 'connections', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1beta1/{+parent}/connections', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'connectionId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getIamPolicy' => array( - 'path' => 'v1beta1/{+resource}:getIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1beta1/{+parent}/connections', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setIamPolicy' => array( - 'path' => 'v1beta1/{+resource}:setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => 'v1beta1/{+resource}:testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'updateCredential' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService/AuditConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService/AuditConfig.php deleted file mode 100644 index 5bc2c157..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService/AuditConfig.php +++ /dev/null @@ -1,47 +0,0 @@ -auditLogConfigs = $auditLogConfigs; - } - /** - * @return Google_Service_BigQueryConnectionService_AuditLogConfig - */ - public function getAuditLogConfigs() - { - return $this->auditLogConfigs; - } - public function setService($service) - { - $this->service = $service; - } - public function getService() - { - return $this->service; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService/AuditLogConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService/AuditLogConfig.php deleted file mode 100644 index b4aa8f78..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService/AuditLogConfig.php +++ /dev/null @@ -1,40 +0,0 @@ -exemptedMembers = $exemptedMembers; - } - public function getExemptedMembers() - { - return $this->exemptedMembers; - } - public function setLogType($logType) - { - $this->logType = $logType; - } - public function getLogType() - { - return $this->logType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService/BigqueryconnectionEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService/BigqueryconnectionEmpty.php deleted file mode 100644 index f7ec6d52..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService/BigqueryconnectionEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -condition = $condition; - } - /** - * @return Google_Service_BigQueryConnectionService_Expr - */ - public function getCondition() - { - return $this->condition; - } - public function setMembers($members) - { - $this->members = $members; - } - public function getMembers() - { - return $this->members; - } - public function setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService/CloudSqlCredential.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService/CloudSqlCredential.php deleted file mode 100644 index 595f6720..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService/CloudSqlCredential.php +++ /dev/null @@ -1,39 +0,0 @@ -password = $password; - } - public function getPassword() - { - return $this->password; - } - public function setUsername($username) - { - $this->username = $username; - } - public function getUsername() - { - return $this->username; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService/CloudSqlProperties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService/CloudSqlProperties.php deleted file mode 100644 index 12933c21..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService/CloudSqlProperties.php +++ /dev/null @@ -1,64 +0,0 @@ -credential = $credential; - } - /** - * @return Google_Service_BigQueryConnectionService_CloudSqlCredential - */ - public function getCredential() - { - return $this->credential; - } - public function setDatabase($database) - { - $this->database = $database; - } - public function getDatabase() - { - return $this->database; - } - public function setInstanceId($instanceId) - { - $this->instanceId = $instanceId; - } - public function getInstanceId() - { - return $this->instanceId; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService/Connection.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService/Connection.php deleted file mode 100644 index b6db6e59..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService/Connection.php +++ /dev/null @@ -1,91 +0,0 @@ -cloudSql = $cloudSql; - } - /** - * @return Google_Service_BigQueryConnectionService_CloudSqlProperties - */ - public function getCloudSql() - { - return $this->cloudSql; - } - 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; - } - public function setFriendlyName($friendlyName) - { - $this->friendlyName = $friendlyName; - } - public function getFriendlyName() - { - return $this->friendlyName; - } - public function setHasCredential($hasCredential) - { - $this->hasCredential = $hasCredential; - } - public function getHasCredential() - { - return $this->hasCredential; - } - public function setLastModifiedTime($lastModifiedTime) - { - $this->lastModifiedTime = $lastModifiedTime; - } - public function getLastModifiedTime() - { - return $this->lastModifiedTime; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService/ConnectionCredential.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService/ConnectionCredential.php deleted file mode 100644 index c57b5743..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService/ConnectionCredential.php +++ /dev/null @@ -1,37 +0,0 @@ -cloudSql = $cloudSql; - } - /** - * @return Google_Service_BigQueryConnectionService_CloudSqlCredential - */ - public function getCloudSql() - { - return $this->cloudSql; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService/Expr.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService/Expr.php deleted file mode 100644 index 550bbc6a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService/Expr.php +++ /dev/null @@ -1,57 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setExpression($expression) - { - $this->expression = $expression; - } - public function getExpression() - { - return $this->expression; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService/GetIamPolicyRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService/GetIamPolicyRequest.php deleted file mode 100644 index 93a4f1ae..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService/GetIamPolicyRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -options = $options; - } - /** - * @return Google_Service_BigQueryConnectionService_GetPolicyOptions - */ - public function getOptions() - { - return $this->options; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService/GetPolicyOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService/GetPolicyOptions.php deleted file mode 100644 index fd9be841..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService/GetPolicyOptions.php +++ /dev/null @@ -1,30 +0,0 @@ -requestedPolicyVersion = $requestedPolicyVersion; - } - public function getRequestedPolicyVersion() - { - return $this->requestedPolicyVersion; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService/ListConnectionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService/ListConnectionsResponse.php deleted file mode 100644 index 5810a017..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService/ListConnectionsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -connections = $connections; - } - /** - * @return Google_Service_BigQueryConnectionService_Connection - */ - public function getConnections() - { - return $this->connections; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService/Policy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService/Policy.php deleted file mode 100644 index 3fe2cf48..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService/Policy.php +++ /dev/null @@ -1,72 +0,0 @@ -auditConfigs = $auditConfigs; - } - /** - * @return Google_Service_BigQueryConnectionService_AuditConfig - */ - public function getAuditConfigs() - { - return $this->auditConfigs; - } - /** - * @param Google_Service_BigQueryConnectionService_Binding - */ - public function setBindings($bindings) - { - $this->bindings = $bindings; - } - /** - * @return Google_Service_BigQueryConnectionService_Binding - */ - public function getBindings() - { - return $this->bindings; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService/Resource/Projects.php deleted file mode 100644 index 1c19297e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService/Resource/Projects.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $bigqueryconnectionService = new Google_Service_BigQueryConnectionService(...); - * $projects = $bigqueryconnectionService->projects; - * - */ -class Google_Service_BigQueryConnectionService_Resource_Projects extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService/Resource/ProjectsLocations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService/Resource/ProjectsLocations.php deleted file mode 100644 index e23972cf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService/Resource/ProjectsLocations.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $bigqueryconnectionService = new Google_Service_BigQueryConnectionService(...); - * $locations = $bigqueryconnectionService->locations; - * - */ -class Google_Service_BigQueryConnectionService_Resource_ProjectsLocations extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService/Resource/ProjectsLocationsConnections.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService/Resource/ProjectsLocationsConnections.php deleted file mode 100644 index 20e750d9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService/Resource/ProjectsLocationsConnections.php +++ /dev/null @@ -1,187 +0,0 @@ - - * $bigqueryconnectionService = new Google_Service_BigQueryConnectionService(...); - * $connections = $bigqueryconnectionService->connections; - * - */ -class Google_Service_BigQueryConnectionService_Resource_ProjectsLocationsConnections extends Google_Service_Resource -{ - /** - * Creates a new connection. (connections.create) - * - * @param string $parent Required. Parent resource name. Must be in the format - * `projects/{project_id}/locations/{location_id}` - * @param Google_Service_BigQueryConnectionService_Connection $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string connectionId Optional. Connection id that should be - * assigned to the created connection. - * @return Google_Service_BigQueryConnectionService_Connection - */ - public function create($parent, Google_Service_BigQueryConnectionService_Connection $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_BigQueryConnectionService_Connection"); - } - /** - * Deletes connection and associated credential. (connections.delete) - * - * @param string $name Required. Name of the deleted connection, for example: - * `projects/{project_id}/locations/{location_id}/connections/{connection_id}` - * @param array $optParams Optional parameters. - * @return Google_Service_BigQueryConnectionService_BigqueryconnectionEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_BigQueryConnectionService_BigqueryconnectionEmpty"); - } - /** - * Returns specified connection. (connections.get) - * - * @param string $name Required. Name of the requested connection, for example: - * `projects/{project_id}/locations/{location_id}/connections/{connection_id}` - * @param array $optParams Optional parameters. - * @return Google_Service_BigQueryConnectionService_Connection - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_BigQueryConnectionService_Connection"); - } - /** - * Gets the access control policy for a resource. Returns an empty policy if the - * resource exists and does not have a policy set. (connections.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 Google_Service_BigQueryConnectionService_GetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_BigQueryConnectionService_Policy - */ - public function getIamPolicy($resource, Google_Service_BigQueryConnectionService_GetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_BigQueryConnectionService_Policy"); - } - /** - * Returns a list of connections in the given project. - * (connections.listProjectsLocationsConnections) - * - * @param string $parent Required. Parent resource name. Must be in the form: - * `projects/{project_id}/locations/{location_id}` - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Page token. - * @opt_param string maxResults Required. Maximum number of results per page. - * @return Google_Service_BigQueryConnectionService_ListConnectionsResponse - */ - public function listProjectsLocationsConnections($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_BigQueryConnectionService_ListConnectionsResponse"); - } - /** - * Updates the specified connection. For security reasons, also resets - * credential if connection properties are in the update field mask. - * (connections.patch) - * - * @param string $name Required. Name of the connection to update, for example: - * `projects/{project_id}/locations/{location_id}/connections/{connection_id}` - * @param Google_Service_BigQueryConnectionService_Connection $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Required. Update mask for the connection fields - * to be updated. - * @return Google_Service_BigQueryConnectionService_Connection - */ - public function patch($name, Google_Service_BigQueryConnectionService_Connection $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_BigQueryConnectionService_Connection"); - } - /** - * Sets the access control policy on the specified resource. Replaces any - * existing policy. - * - * Can return Public Errors: NOT_FOUND, INVALID_ARGUMENT and PERMISSION_DENIED - * (connections.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_BigQueryConnectionService_SetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_BigQueryConnectionService_Policy - */ - public function setIamPolicy($resource, Google_Service_BigQueryConnectionService_SetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_BigQueryConnectionService_Policy"); - } - /** - * 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. (connections.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_BigQueryConnectionService_TestIamPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_BigQueryConnectionService_TestIamPermissionsResponse - */ - public function testIamPermissions($resource, Google_Service_BigQueryConnectionService_TestIamPermissionsRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_BigQueryConnectionService_TestIamPermissionsResponse"); - } - /** - * Sets the credential for the specified connection. - * (connections.updateCredential) - * - * @param string $name Required. Name of the connection, for example: `projects/ - * {project_id}/locations/{location_id}/connections/{connection_id}/credential` - * @param Google_Service_BigQueryConnectionService_ConnectionCredential $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_BigQueryConnectionService_BigqueryconnectionEmpty - */ - public function updateCredential($name, Google_Service_BigQueryConnectionService_ConnectionCredential $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updateCredential', array($params), "Google_Service_BigQueryConnectionService_BigqueryconnectionEmpty"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService/SetIamPolicyRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService/SetIamPolicyRequest.php deleted file mode 100644 index 7bb6b6f5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService/SetIamPolicyRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -policy = $policy; - } - /** - * @return Google_Service_BigQueryConnectionService_Policy - */ - public function getPolicy() - { - return $this->policy; - } - public function setUpdateMask($updateMask) - { - $this->updateMask = $updateMask; - } - public function getUpdateMask() - { - return $this->updateMask; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService/TestIamPermissionsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService/TestIamPermissionsRequest.php deleted file mode 100644 index 838d18f4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService/TestIamPermissionsRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService/TestIamPermissionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService/TestIamPermissionsResponse.php deleted file mode 100644 index ec4eb5ca..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryConnectionService/TestIamPermissionsResponse.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer.php deleted file mode 100644 index 12709e1f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer.php +++ /dev/null @@ -1,633 +0,0 @@ - - * Schedule queries or transfer external data from SaaS applications to Google - * BigQuery on a regular basis.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_BigQueryDataTransfer extends Google_Service -{ - /** View and manage your data in Google BigQuery. */ - const BIGQUERY = - "https://www.googleapis.com/auth/bigquery"; - /** View your data in Google BigQuery. */ - const BIGQUERY_READONLY = - "https://www.googleapis.com/auth/bigquery.readonly"; - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** View your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM_READ_ONLY = - "https://www.googleapis.com/auth/cloud-platform.read-only"; - - public $projects_dataSources; - public $projects_locations; - public $projects_locations_dataSources; - public $projects_locations_transferConfigs; - public $projects_locations_transferConfigs_runs; - public $projects_locations_transferConfigs_runs_transferLogs; - public $projects_transferConfigs; - public $projects_transferConfigs_runs; - public $projects_transferConfigs_runs_transferLogs; - - /** - * Constructs the internal representation of the BigQueryDataTransfer service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://bigquerydatatransfer.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'bigquerydatatransfer'; - - $this->projects_dataSources = new Google_Service_BigQueryDataTransfer_Resource_ProjectsDataSources( - $this, - $this->serviceName, - 'dataSources', - array( - 'methods' => array( - 'checkValidCreds' => array( - 'path' => 'v1/{+name}:checkValidCreds', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/dataSources', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->projects_locations = new Google_Service_BigQueryDataTransfer_Resource_ProjectsLocations( - $this, - $this->serviceName, - 'locations', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+name}/locations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->projects_locations_dataSources = new Google_Service_BigQueryDataTransfer_Resource_ProjectsLocationsDataSources( - $this, - $this->serviceName, - 'dataSources', - array( - 'methods' => array( - 'checkValidCreds' => array( - 'path' => 'v1/{+name}:checkValidCreds', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/dataSources', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->projects_locations_transferConfigs = new Google_Service_BigQueryDataTransfer_Resource_ProjectsLocationsTransferConfigs( - $this, - $this->serviceName, - 'transferConfigs', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/transferConfigs', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'serviceAccountName' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'versionInfo' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'authorizationCode' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/transferConfigs', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'dataSourceIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'serviceAccountName' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'versionInfo' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'authorizationCode' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'scheduleRuns' => array( - 'path' => 'v1/{+parent}:scheduleRuns', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'startManualRuns' => array( - 'path' => 'v1/{+parent}:startManualRuns', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_locations_transferConfigs_runs = new Google_Service_BigQueryDataTransfer_Resource_ProjectsLocationsTransferConfigsRuns( - $this, - $this->serviceName, - 'runs', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/runs', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'states' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'runAttempt' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_locations_transferConfigs_runs_transferLogs = new Google_Service_BigQueryDataTransfer_Resource_ProjectsLocationsTransferConfigsRunsTransferLogs( - $this, - $this->serviceName, - 'transferLogs', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1/{+parent}/transferLogs', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'messageTypes' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ), - ) - ) - ); - $this->projects_transferConfigs = new Google_Service_BigQueryDataTransfer_Resource_ProjectsTransferConfigs( - $this, - $this->serviceName, - 'transferConfigs', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/transferConfigs', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'versionInfo' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'authorizationCode' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'serviceAccountName' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/transferConfigs', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'dataSourceIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'serviceAccountName' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'versionInfo' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'authorizationCode' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'scheduleRuns' => array( - 'path' => 'v1/{+parent}:scheduleRuns', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'startManualRuns' => array( - 'path' => 'v1/{+parent}:startManualRuns', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_transferConfigs_runs = new Google_Service_BigQueryDataTransfer_Resource_ProjectsTransferConfigsRuns( - $this, - $this->serviceName, - 'runs', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/runs', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'runAttempt' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'states' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->projects_transferConfigs_runs_transferLogs = new Google_Service_BigQueryDataTransfer_Resource_ProjectsTransferConfigsRunsTransferLogs( - $this, - $this->serviceName, - 'transferLogs', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1/{+parent}/transferLogs', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'messageTypes' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/BigquerydatatransferEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/BigquerydatatransferEmpty.php deleted file mode 100644 index 964572df..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/BigquerydatatransferEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -hasValidCreds = $hasValidCreds; - } - public function getHasValidCreds() - { - return $this->hasValidCreds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/DataSource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/DataSource.php deleted file mode 100644 index 3b2affe9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/DataSource.php +++ /dev/null @@ -1,191 +0,0 @@ -authorizationType = $authorizationType; - } - public function getAuthorizationType() - { - return $this->authorizationType; - } - public function setClientId($clientId) - { - $this->clientId = $clientId; - } - public function getClientId() - { - return $this->clientId; - } - public function setDataRefreshType($dataRefreshType) - { - $this->dataRefreshType = $dataRefreshType; - } - public function getDataRefreshType() - { - return $this->dataRefreshType; - } - public function setDataSourceId($dataSourceId) - { - $this->dataSourceId = $dataSourceId; - } - public function getDataSourceId() - { - return $this->dataSourceId; - } - public function setDefaultDataRefreshWindowDays($defaultDataRefreshWindowDays) - { - $this->defaultDataRefreshWindowDays = $defaultDataRefreshWindowDays; - } - public function getDefaultDataRefreshWindowDays() - { - return $this->defaultDataRefreshWindowDays; - } - public function setDefaultSchedule($defaultSchedule) - { - $this->defaultSchedule = $defaultSchedule; - } - public function getDefaultSchedule() - { - return $this->defaultSchedule; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setHelpUrl($helpUrl) - { - $this->helpUrl = $helpUrl; - } - public function getHelpUrl() - { - return $this->helpUrl; - } - public function setManualRunsDisabled($manualRunsDisabled) - { - $this->manualRunsDisabled = $manualRunsDisabled; - } - public function getManualRunsDisabled() - { - return $this->manualRunsDisabled; - } - public function setMinimumScheduleInterval($minimumScheduleInterval) - { - $this->minimumScheduleInterval = $minimumScheduleInterval; - } - public function getMinimumScheduleInterval() - { - return $this->minimumScheduleInterval; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_BigQueryDataTransfer_DataSourceParameter - */ - public function setParameters($parameters) - { - $this->parameters = $parameters; - } - /** - * @return Google_Service_BigQueryDataTransfer_DataSourceParameter - */ - public function getParameters() - { - return $this->parameters; - } - public function setScopes($scopes) - { - $this->scopes = $scopes; - } - public function getScopes() - { - return $this->scopes; - } - public function setSupportsCustomSchedule($supportsCustomSchedule) - { - $this->supportsCustomSchedule = $supportsCustomSchedule; - } - public function getSupportsCustomSchedule() - { - return $this->supportsCustomSchedule; - } - public function setSupportsMultipleTransfers($supportsMultipleTransfers) - { - $this->supportsMultipleTransfers = $supportsMultipleTransfers; - } - public function getSupportsMultipleTransfers() - { - return $this->supportsMultipleTransfers; - } - public function setTransferType($transferType) - { - $this->transferType = $transferType; - } - public function getTransferType() - { - return $this->transferType; - } - public function setUpdateDeadlineSeconds($updateDeadlineSeconds) - { - $this->updateDeadlineSeconds = $updateDeadlineSeconds; - } - public function getUpdateDeadlineSeconds() - { - return $this->updateDeadlineSeconds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/DataSourceParameter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/DataSourceParameter.php deleted file mode 100644 index 86026c12..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/DataSourceParameter.php +++ /dev/null @@ -1,173 +0,0 @@ -allowedValues = $allowedValues; - } - public function getAllowedValues() - { - return $this->allowedValues; - } - public function setDeprecated($deprecated) - { - $this->deprecated = $deprecated; - } - public function getDeprecated() - { - return $this->deprecated; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - /** - * @param Google_Service_BigQueryDataTransfer_DataSourceParameter - */ - public function setFields($fields) - { - $this->fields = $fields; - } - /** - * @return Google_Service_BigQueryDataTransfer_DataSourceParameter - */ - public function getFields() - { - return $this->fields; - } - public function setImmutable($immutable) - { - $this->immutable = $immutable; - } - public function getImmutable() - { - return $this->immutable; - } - public function setMaxValue($maxValue) - { - $this->maxValue = $maxValue; - } - public function getMaxValue() - { - return $this->maxValue; - } - public function setMinValue($minValue) - { - $this->minValue = $minValue; - } - public function getMinValue() - { - return $this->minValue; - } - public function setParamId($paramId) - { - $this->paramId = $paramId; - } - public function getParamId() - { - return $this->paramId; - } - public function setRecurse($recurse) - { - $this->recurse = $recurse; - } - public function getRecurse() - { - return $this->recurse; - } - public function setRepeated($repeated) - { - $this->repeated = $repeated; - } - public function getRepeated() - { - return $this->repeated; - } - public function setRequired($required) - { - $this->required = $required; - } - public function getRequired() - { - return $this->required; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setValidationDescription($validationDescription) - { - $this->validationDescription = $validationDescription; - } - public function getValidationDescription() - { - return $this->validationDescription; - } - public function setValidationHelpUrl($validationHelpUrl) - { - $this->validationHelpUrl = $validationHelpUrl; - } - public function getValidationHelpUrl() - { - return $this->validationHelpUrl; - } - public function setValidationRegex($validationRegex) - { - $this->validationRegex = $validationRegex; - } - public function getValidationRegex() - { - return $this->validationRegex; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/EmailPreferences.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/EmailPreferences.php deleted file mode 100644 index 266334b0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/EmailPreferences.php +++ /dev/null @@ -1,30 +0,0 @@ -enableFailureEmail = $enableFailureEmail; - } - public function getEnableFailureEmail() - { - return $this->enableFailureEmail; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/ListDataSourcesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/ListDataSourcesResponse.php deleted file mode 100644 index e685ad9f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/ListDataSourcesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -dataSources = $dataSources; - } - /** - * @return Google_Service_BigQueryDataTransfer_DataSource - */ - public function getDataSources() - { - return $this->dataSources; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/ListLocationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/ListLocationsResponse.php deleted file mode 100644 index 8b4878f7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/ListLocationsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -locations = $locations; - } - /** - * @return Google_Service_BigQueryDataTransfer_Location - */ - public function getLocations() - { - return $this->locations; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/ListTransferConfigsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/ListTransferConfigsResponse.php deleted file mode 100644 index 2c1083e6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/ListTransferConfigsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_BigQueryDataTransfer_TransferConfig - */ - public function setTransferConfigs($transferConfigs) - { - $this->transferConfigs = $transferConfigs; - } - /** - * @return Google_Service_BigQueryDataTransfer_TransferConfig - */ - public function getTransferConfigs() - { - return $this->transferConfigs; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/ListTransferLogsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/ListTransferLogsResponse.php deleted file mode 100644 index e2e69295..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/ListTransferLogsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_BigQueryDataTransfer_TransferMessage - */ - public function setTransferMessages($transferMessages) - { - $this->transferMessages = $transferMessages; - } - /** - * @return Google_Service_BigQueryDataTransfer_TransferMessage - */ - public function getTransferMessages() - { - return $this->transferMessages; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/ListTransferRunsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/ListTransferRunsResponse.php deleted file mode 100644 index 32577d82..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/ListTransferRunsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_BigQueryDataTransfer_TransferRun - */ - public function setTransferRuns($transferRuns) - { - $this->transferRuns = $transferRuns; - } - /** - * @return Google_Service_BigQueryDataTransfer_TransferRun - */ - public function getTransferRuns() - { - return $this->transferRuns; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/Location.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/Location.php deleted file mode 100644 index 9488fa72..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/Location.php +++ /dev/null @@ -1,66 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setLocationId($locationId) - { - $this->locationId = $locationId; - } - public function getLocationId() - { - return $this->locationId; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/Resource/Projects.php deleted file mode 100644 index bb98e088..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/Resource/Projects.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $bigquerydatatransferService = new Google_Service_BigQueryDataTransfer(...); - * $projects = $bigquerydatatransferService->projects; - * - */ -class Google_Service_BigQueryDataTransfer_Resource_Projects extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/Resource/ProjectsDataSources.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/Resource/ProjectsDataSources.php deleted file mode 100644 index bc939355..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/Resource/ProjectsDataSources.php +++ /dev/null @@ -1,88 +0,0 @@ - - * $bigquerydatatransferService = new Google_Service_BigQueryDataTransfer(...); - * $dataSources = $bigquerydatatransferService->dataSources; - * - */ -class Google_Service_BigQueryDataTransfer_Resource_ProjectsDataSources extends Google_Service_Resource -{ - /** - * Returns true if valid credentials exist for the given data source and - * requesting user. Some data sources doesn't support service account, so we - * need to talk to them on behalf of the end user. This API just checks whether - * we have OAuth token for the particular user, which is a pre-requisite before - * user can create a transfer config. (dataSources.checkValidCreds) - * - * @param string $name Required. The data source in the form: - * `projects/{project_id}/dataSources/{data_source_id}` or - * `projects/{project_id}/locations/{location_id}/dataSources/{data_source_id}`. - * @param Google_Service_BigQueryDataTransfer_CheckValidCredsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_BigQueryDataTransfer_CheckValidCredsResponse - */ - public function checkValidCreds($name, Google_Service_BigQueryDataTransfer_CheckValidCredsRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('checkValidCreds', array($params), "Google_Service_BigQueryDataTransfer_CheckValidCredsResponse"); - } - /** - * Retrieves a supported data source and returns its settings, which can be used - * for UI rendering. (dataSources.get) - * - * @param string $name Required. The field will contain name of the resource - * requested, for example: `projects/{project_id}/dataSources/{data_source_id}` - * or - * `projects/{project_id}/locations/{location_id}/dataSources/{data_source_id}` - * @param array $optParams Optional parameters. - * @return Google_Service_BigQueryDataTransfer_DataSource - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_BigQueryDataTransfer_DataSource"); - } - /** - * Lists supported data sources and returns their settings, which can be used - * for UI rendering. (dataSources.listProjectsDataSources) - * - * @param string $parent Required. The BigQuery project id for which data - * sources should be returned. Must be in the form: `projects/{project_id}` or - * `projects/{project_id}/locations/{location_id} - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Pagination token, which can be used to request a - * specific page of `ListDataSourcesRequest` list results. For multiple-page - * results, `ListDataSourcesResponse` outputs a `next_page` token, which can be - * used as the `page_token` value to request the next page of list results. - * @opt_param int pageSize Page size. The default page size is the maximum value - * of 1000 results. - * @return Google_Service_BigQueryDataTransfer_ListDataSourcesResponse - */ - public function listProjectsDataSources($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_BigQueryDataTransfer_ListDataSourcesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/Resource/ProjectsLocations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/Resource/ProjectsLocations.php deleted file mode 100644 index d6f1b861..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/Resource/ProjectsLocations.php +++ /dev/null @@ -1,60 +0,0 @@ - - * $bigquerydatatransferService = new Google_Service_BigQueryDataTransfer(...); - * $locations = $bigquerydatatransferService->locations; - * - */ -class Google_Service_BigQueryDataTransfer_Resource_ProjectsLocations extends Google_Service_Resource -{ - /** - * Gets information about a location. (locations.get) - * - * @param string $name Resource name for the location. - * @param array $optParams Optional parameters. - * @return Google_Service_BigQueryDataTransfer_Location - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_BigQueryDataTransfer_Location"); - } - /** - * Lists information about the supported locations for this service. - * (locations.listProjectsLocations) - * - * @param string $name The resource that owns the locations collection, if - * applicable. - * @param array $optParams Optional parameters. - * - * @opt_param string filter The standard list filter. - * @opt_param string pageToken The standard list page token. - * @opt_param int pageSize The standard list page size. - * @return Google_Service_BigQueryDataTransfer_ListLocationsResponse - */ - public function listProjectsLocations($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_BigQueryDataTransfer_ListLocationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/Resource/ProjectsLocationsDataSources.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/Resource/ProjectsLocationsDataSources.php deleted file mode 100644 index 4b4fbb9e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/Resource/ProjectsLocationsDataSources.php +++ /dev/null @@ -1,88 +0,0 @@ - - * $bigquerydatatransferService = new Google_Service_BigQueryDataTransfer(...); - * $dataSources = $bigquerydatatransferService->dataSources; - * - */ -class Google_Service_BigQueryDataTransfer_Resource_ProjectsLocationsDataSources extends Google_Service_Resource -{ - /** - * Returns true if valid credentials exist for the given data source and - * requesting user. Some data sources doesn't support service account, so we - * need to talk to them on behalf of the end user. This API just checks whether - * we have OAuth token for the particular user, which is a pre-requisite before - * user can create a transfer config. (dataSources.checkValidCreds) - * - * @param string $name Required. The data source in the form: - * `projects/{project_id}/dataSources/{data_source_id}` or - * `projects/{project_id}/locations/{location_id}/dataSources/{data_source_id}`. - * @param Google_Service_BigQueryDataTransfer_CheckValidCredsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_BigQueryDataTransfer_CheckValidCredsResponse - */ - public function checkValidCreds($name, Google_Service_BigQueryDataTransfer_CheckValidCredsRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('checkValidCreds', array($params), "Google_Service_BigQueryDataTransfer_CheckValidCredsResponse"); - } - /** - * Retrieves a supported data source and returns its settings, which can be used - * for UI rendering. (dataSources.get) - * - * @param string $name Required. The field will contain name of the resource - * requested, for example: `projects/{project_id}/dataSources/{data_source_id}` - * or - * `projects/{project_id}/locations/{location_id}/dataSources/{data_source_id}` - * @param array $optParams Optional parameters. - * @return Google_Service_BigQueryDataTransfer_DataSource - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_BigQueryDataTransfer_DataSource"); - } - /** - * Lists supported data sources and returns their settings, which can be used - * for UI rendering. (dataSources.listProjectsLocationsDataSources) - * - * @param string $parent Required. The BigQuery project id for which data - * sources should be returned. Must be in the form: `projects/{project_id}` or - * `projects/{project_id}/locations/{location_id} - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Pagination token, which can be used to request a - * specific page of `ListDataSourcesRequest` list results. For multiple-page - * results, `ListDataSourcesResponse` outputs a `next_page` token, which can be - * used as the `page_token` value to request the next page of list results. - * @opt_param int pageSize Page size. The default page size is the maximum value - * of 1000 results. - * @return Google_Service_BigQueryDataTransfer_ListDataSourcesResponse - */ - public function listProjectsLocationsDataSources($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_BigQueryDataTransfer_ListDataSourcesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/Resource/ProjectsLocationsTransferConfigs.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/Resource/ProjectsLocationsTransferConfigs.php deleted file mode 100644 index c94b19bc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/Resource/ProjectsLocationsTransferConfigs.php +++ /dev/null @@ -1,219 +0,0 @@ - - * $bigquerydatatransferService = new Google_Service_BigQueryDataTransfer(...); - * $transferConfigs = $bigquerydatatransferService->transferConfigs; - * - */ -class Google_Service_BigQueryDataTransfer_Resource_ProjectsLocationsTransferConfigs extends Google_Service_Resource -{ - /** - * Creates a new data transfer configuration. (transferConfigs.create) - * - * @param string $parent Required. The BigQuery project id where the transfer - * configuration should be created. Must be in the format - * projects/{project_id}/locations/{location_id} or projects/{project_id}. If - * specified location and location of the destination bigquery dataset do not - * match - the request will fail. - * @param Google_Service_BigQueryDataTransfer_TransferConfig $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string serviceAccountName Optional service account name. If this - * field is set, transfer config will be created with this service account - * credentials. It requires that requesting user calling this API has - * permissions to act as this service account. - * @opt_param string versionInfo Optional version info. If users want to find a - * very recent access token, that is, immediately after approving access, users - * have to set the version_info claim in the token request. To obtain the - * version_info, users must use the "none+gsession" response type. which be - * return a version_info back in the authorization response which be be put in a - * JWT claim in the token request. - * @opt_param string authorizationCode Optional OAuth2 authorization code to use - * with this transfer configuration. This is required if new credentials are - * needed, as indicated by `CheckValidCreds`. In order to obtain - * authorization_code, please make a request to - * https://www.gstatic.com/bigquerydatatransfer/oauthz/auth?client_id==_uri= - * - * * client_id should be OAuth client_id of BigQuery DTS API for the given - * data source returned by ListDataSources method. * data_source_scopes are the - * scopes returned by ListDataSources method. * redirect_uri is an optional - * parameter. If not specified, then authorization code is posted to the - * opener of authorization flow window. Otherwise it will be sent to the - * redirect uri. A special value of urn:ietf:wg:oauth:2.0:oob means that - * authorization code should be returned in the title bar of the browser, with - * the page text prompting the user to copy the code and paste it in the - * application. - * @return Google_Service_BigQueryDataTransfer_TransferConfig - */ - public function create($parent, Google_Service_BigQueryDataTransfer_TransferConfig $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_BigQueryDataTransfer_TransferConfig"); - } - /** - * Deletes a data transfer configuration, including any associated transfer runs - * and logs. (transferConfigs.delete) - * - * @param string $name Required. The field will contain name of the resource - * requested, for example: `projects/{project_id}/transferConfigs/{config_id}` - * or - * `projects/{project_id}/locations/{location_id}/transferConfigs/{config_id}` - * @param array $optParams Optional parameters. - * @return Google_Service_BigQueryDataTransfer_BigquerydatatransferEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_BigQueryDataTransfer_BigquerydatatransferEmpty"); - } - /** - * Returns information about a data transfer config. (transferConfigs.get) - * - * @param string $name Required. The field will contain name of the resource - * requested, for example: `projects/{project_id}/transferConfigs/{config_id}` - * or - * `projects/{project_id}/locations/{location_id}/transferConfigs/{config_id}` - * @param array $optParams Optional parameters. - * @return Google_Service_BigQueryDataTransfer_TransferConfig - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_BigQueryDataTransfer_TransferConfig"); - } - /** - * Returns information about all data transfers in the project. - * (transferConfigs.listProjectsLocationsTransferConfigs) - * - * @param string $parent Required. The BigQuery project id for which data - * sources should be returned: `projects/{project_id}` or - * `projects/{project_id}/locations/{location_id}` - * @param array $optParams Optional parameters. - * - * @opt_param int pageSize Page size. The default page size is the maximum value - * of 1000 results. - * @opt_param string dataSourceIds When specified, only configurations of - * requested data sources are returned. - * @opt_param string pageToken Pagination token, which can be used to request a - * specific page of `ListTransfersRequest` list results. For multiple-page - * results, `ListTransfersResponse` outputs a `next_page` token, which can be - * used as the `page_token` value to request the next page of list results. - * @return Google_Service_BigQueryDataTransfer_ListTransferConfigsResponse - */ - public function listProjectsLocationsTransferConfigs($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_BigQueryDataTransfer_ListTransferConfigsResponse"); - } - /** - * Updates a data transfer configuration. All fields must be set, even if they - * are not updated. (transferConfigs.patch) - * - * @param string $name The resource name of the transfer config. Transfer config - * names have the form of - * `projects/{project_id}/locations/{region}/transferConfigs/{config_id}`. The - * name is automatically generated based on the config_id specified in - * CreateTransferConfigRequest along with project_id and region. If config_id is - * not provided, usually a uuid, even though it is not guaranteed or required, - * will be generated for config_id. - * @param Google_Service_BigQueryDataTransfer_TransferConfig $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string serviceAccountName Optional service account name. If this - * field is set and "service_account_name" is set in update_mask, transfer - * config will be updated to use this service account credentials. It requires - * that requesting user calling this API has permissions to act as this service - * account. - * @opt_param string versionInfo Optional version info. If users want to find a - * very recent access token, that is, immediately after approving access, users - * have to set the version_info claim in the token request. To obtain the - * version_info, users must use the "none+gsession" response type. which be - * return a version_info back in the authorization response which be be put in a - * JWT claim in the token request. - * @opt_param string authorizationCode Optional OAuth2 authorization code to use - * with this transfer configuration. If it is provided, the transfer - * configuration will be associated with the authorizing user. In order to - * obtain authorization_code, please make a request to - * https://www.gstatic.com/bigquerydatatransfer/oauthz/auth?client_id==_uri= - * - * * client_id should be OAuth client_id of BigQuery DTS API for the given - * data source returned by ListDataSources method. * data_source_scopes are the - * scopes returned by ListDataSources method. * redirect_uri is an optional - * parameter. If not specified, then authorization code is posted to the - * opener of authorization flow window. Otherwise it will be sent to the - * redirect uri. A special value of urn:ietf:wg:oauth:2.0:oob means that - * authorization code should be returned in the title bar of the browser, with - * the page text prompting the user to copy the code and paste it in the - * application. - * @opt_param string updateMask Required. Required list of fields to be updated - * in this request. - * @return Google_Service_BigQueryDataTransfer_TransferConfig - */ - public function patch($name, Google_Service_BigQueryDataTransfer_TransferConfig $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_BigQueryDataTransfer_TransferConfig"); - } - /** - * Creates transfer runs for a time range [start_time, end_time]. For each date - * - or whatever granularity the data source supports - in the range, one - * transfer run is created. Note that runs are created per UTC time in the time - * range. DEPRECATED: use StartManualTransferRuns instead. - * (transferConfigs.scheduleRuns) - * - * @param string $parent Required. Transfer configuration name in the form: - * `projects/{project_id}/transferConfigs/{config_id}` or - * `projects/{project_id}/locations/{location_id}/transferConfigs/{config_id}`. - * @param Google_Service_BigQueryDataTransfer_ScheduleTransferRunsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_BigQueryDataTransfer_ScheduleTransferRunsResponse - */ - public function scheduleRuns($parent, Google_Service_BigQueryDataTransfer_ScheduleTransferRunsRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('scheduleRuns', array($params), "Google_Service_BigQueryDataTransfer_ScheduleTransferRunsResponse"); - } - /** - * Start manual transfer runs to be executed now with schedule_time equal to - * current time. The transfer runs can be created for a time range where the - * run_time is between start_time (inclusive) and end_time (exclusive), or for a - * specific run_time. (transferConfigs.startManualRuns) - * - * @param string $parent Transfer configuration name in the form: - * `projects/{project_id}/transferConfigs/{config_id}` or - * `projects/{project_id}/locations/{location_id}/transferConfigs/{config_id}`. - * @param Google_Service_BigQueryDataTransfer_StartManualTransferRunsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_BigQueryDataTransfer_StartManualTransferRunsResponse - */ - public function startManualRuns($parent, Google_Service_BigQueryDataTransfer_StartManualTransferRunsRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('startManualRuns', array($params), "Google_Service_BigQueryDataTransfer_StartManualTransferRunsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/Resource/ProjectsLocationsTransferConfigsRuns.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/Resource/ProjectsLocationsTransferConfigsRuns.php deleted file mode 100644 index 8e09b76e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/Resource/ProjectsLocationsTransferConfigsRuns.php +++ /dev/null @@ -1,89 +0,0 @@ - - * $bigquerydatatransferService = new Google_Service_BigQueryDataTransfer(...); - * $runs = $bigquerydatatransferService->runs; - * - */ -class Google_Service_BigQueryDataTransfer_Resource_ProjectsLocationsTransferConfigsRuns extends Google_Service_Resource -{ - /** - * Deletes the specified transfer run. (runs.delete) - * - * @param string $name Required. The field will contain name of the resource - * requested, for example: - * `projects/{project_id}/transferConfigs/{config_id}/runs/{run_id}` or `project - * s/{project_id}/locations/{location_id}/transferConfigs/{config_id}/runs/{run_ - * id}` - * @param array $optParams Optional parameters. - * @return Google_Service_BigQueryDataTransfer_BigquerydatatransferEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_BigQueryDataTransfer_BigquerydatatransferEmpty"); - } - /** - * Returns information about the particular transfer run. (runs.get) - * - * @param string $name Required. The field will contain name of the resource - * requested, for example: - * `projects/{project_id}/transferConfigs/{config_id}/runs/{run_id}` or `project - * s/{project_id}/locations/{location_id}/transferConfigs/{config_id}/runs/{run_ - * id}` - * @param array $optParams Optional parameters. - * @return Google_Service_BigQueryDataTransfer_TransferRun - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_BigQueryDataTransfer_TransferRun"); - } - /** - * Returns information about running and completed jobs. - * (runs.listProjectsLocationsTransferConfigsRuns) - * - * @param string $parent Required. Name of transfer configuration for which - * transfer runs should be retrieved. Format of transfer configuration resource - * name is: `projects/{project_id}/transferConfigs/{config_id}` or - * `projects/{project_id}/locations/{location_id}/transferConfigs/{config_id}`. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Pagination token, which can be used to request a - * specific page of `ListTransferRunsRequest` list results. For multiple-page - * results, `ListTransferRunsResponse` outputs a `next_page` token, which can be - * used as the `page_token` value to request the next page of list results. - * @opt_param string states When specified, only transfer runs with requested - * states are returned. - * @opt_param int pageSize Page size. The default page size is the maximum value - * of 1000 results. - * @opt_param string runAttempt Indicates how run attempts are to be pulled. - * @return Google_Service_BigQueryDataTransfer_ListTransferRunsResponse - */ - public function listProjectsLocationsTransferConfigsRuns($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_BigQueryDataTransfer_ListTransferRunsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/Resource/ProjectsLocationsTransferConfigsRunsTransferLogs.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/Resource/ProjectsLocationsTransferConfigsRunsTransferLogs.php deleted file mode 100644 index 11e44317..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/Resource/ProjectsLocationsTransferConfigsRunsTransferLogs.php +++ /dev/null @@ -1,54 +0,0 @@ - - * $bigquerydatatransferService = new Google_Service_BigQueryDataTransfer(...); - * $transferLogs = $bigquerydatatransferService->transferLogs; - * - */ -class Google_Service_BigQueryDataTransfer_Resource_ProjectsLocationsTransferConfigsRunsTransferLogs extends Google_Service_Resource -{ - /** - * Returns user facing log messages for the data transfer run. - * (transferLogs.listProjectsLocationsTransferConfigsRunsTransferLogs) - * - * @param string $parent Required. Transfer run name in the form: - * `projects/{project_id}/transferConfigs/{config_id}/runs/{run_id}` or `project - * s/{project_id}/locations/{location_id}/transferConfigs/{config_id}/runs/{run_ - * id}` - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Pagination token, which can be used to request a - * specific page of `ListTransferLogsRequest` list results. For multiple-page - * results, `ListTransferLogsResponse` outputs a `next_page` token, which can be - * used as the `page_token` value to request the next page of list results. - * @opt_param int pageSize Page size. The default page size is the maximum value - * of 1000 results. - * @opt_param string messageTypes Message types to return. If not populated - - * INFO, WARNING and ERROR messages are returned. - * @return Google_Service_BigQueryDataTransfer_ListTransferLogsResponse - */ - public function listProjectsLocationsTransferConfigsRunsTransferLogs($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_BigQueryDataTransfer_ListTransferLogsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/Resource/ProjectsTransferConfigs.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/Resource/ProjectsTransferConfigs.php deleted file mode 100644 index 2a66ad0e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/Resource/ProjectsTransferConfigs.php +++ /dev/null @@ -1,219 +0,0 @@ - - * $bigquerydatatransferService = new Google_Service_BigQueryDataTransfer(...); - * $transferConfigs = $bigquerydatatransferService->transferConfigs; - * - */ -class Google_Service_BigQueryDataTransfer_Resource_ProjectsTransferConfigs extends Google_Service_Resource -{ - /** - * Creates a new data transfer configuration. (transferConfigs.create) - * - * @param string $parent Required. The BigQuery project id where the transfer - * configuration should be created. Must be in the format - * projects/{project_id}/locations/{location_id} or projects/{project_id}. If - * specified location and location of the destination bigquery dataset do not - * match - the request will fail. - * @param Google_Service_BigQueryDataTransfer_TransferConfig $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string versionInfo Optional version info. If users want to find a - * very recent access token, that is, immediately after approving access, users - * have to set the version_info claim in the token request. To obtain the - * version_info, users must use the "none+gsession" response type. which be - * return a version_info back in the authorization response which be be put in a - * JWT claim in the token request. - * @opt_param string authorizationCode Optional OAuth2 authorization code to use - * with this transfer configuration. This is required if new credentials are - * needed, as indicated by `CheckValidCreds`. In order to obtain - * authorization_code, please make a request to - * https://www.gstatic.com/bigquerydatatransfer/oauthz/auth?client_id==_uri= - * - * * client_id should be OAuth client_id of BigQuery DTS API for the given - * data source returned by ListDataSources method. * data_source_scopes are the - * scopes returned by ListDataSources method. * redirect_uri is an optional - * parameter. If not specified, then authorization code is posted to the - * opener of authorization flow window. Otherwise it will be sent to the - * redirect uri. A special value of urn:ietf:wg:oauth:2.0:oob means that - * authorization code should be returned in the title bar of the browser, with - * the page text prompting the user to copy the code and paste it in the - * application. - * @opt_param string serviceAccountName Optional service account name. If this - * field is set, transfer config will be created with this service account - * credentials. It requires that requesting user calling this API has - * permissions to act as this service account. - * @return Google_Service_BigQueryDataTransfer_TransferConfig - */ - public function create($parent, Google_Service_BigQueryDataTransfer_TransferConfig $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_BigQueryDataTransfer_TransferConfig"); - } - /** - * Deletes a data transfer configuration, including any associated transfer runs - * and logs. (transferConfigs.delete) - * - * @param string $name Required. The field will contain name of the resource - * requested, for example: `projects/{project_id}/transferConfigs/{config_id}` - * or - * `projects/{project_id}/locations/{location_id}/transferConfigs/{config_id}` - * @param array $optParams Optional parameters. - * @return Google_Service_BigQueryDataTransfer_BigquerydatatransferEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_BigQueryDataTransfer_BigquerydatatransferEmpty"); - } - /** - * Returns information about a data transfer config. (transferConfigs.get) - * - * @param string $name Required. The field will contain name of the resource - * requested, for example: `projects/{project_id}/transferConfigs/{config_id}` - * or - * `projects/{project_id}/locations/{location_id}/transferConfigs/{config_id}` - * @param array $optParams Optional parameters. - * @return Google_Service_BigQueryDataTransfer_TransferConfig - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_BigQueryDataTransfer_TransferConfig"); - } - /** - * Returns information about all data transfers in the project. - * (transferConfigs.listProjectsTransferConfigs) - * - * @param string $parent Required. The BigQuery project id for which data - * sources should be returned: `projects/{project_id}` or - * `projects/{project_id}/locations/{location_id}` - * @param array $optParams Optional parameters. - * - * @opt_param string dataSourceIds When specified, only configurations of - * requested data sources are returned. - * @opt_param string pageToken Pagination token, which can be used to request a - * specific page of `ListTransfersRequest` list results. For multiple-page - * results, `ListTransfersResponse` outputs a `next_page` token, which can be - * used as the `page_token` value to request the next page of list results. - * @opt_param int pageSize Page size. The default page size is the maximum value - * of 1000 results. - * @return Google_Service_BigQueryDataTransfer_ListTransferConfigsResponse - */ - public function listProjectsTransferConfigs($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_BigQueryDataTransfer_ListTransferConfigsResponse"); - } - /** - * Updates a data transfer configuration. All fields must be set, even if they - * are not updated. (transferConfigs.patch) - * - * @param string $name The resource name of the transfer config. Transfer config - * names have the form of - * `projects/{project_id}/locations/{region}/transferConfigs/{config_id}`. The - * name is automatically generated based on the config_id specified in - * CreateTransferConfigRequest along with project_id and region. If config_id is - * not provided, usually a uuid, even though it is not guaranteed or required, - * will be generated for config_id. - * @param Google_Service_BigQueryDataTransfer_TransferConfig $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string serviceAccountName Optional service account name. If this - * field is set and "service_account_name" is set in update_mask, transfer - * config will be updated to use this service account credentials. It requires - * that requesting user calling this API has permissions to act as this service - * account. - * @opt_param string versionInfo Optional version info. If users want to find a - * very recent access token, that is, immediately after approving access, users - * have to set the version_info claim in the token request. To obtain the - * version_info, users must use the "none+gsession" response type. which be - * return a version_info back in the authorization response which be be put in a - * JWT claim in the token request. - * @opt_param string authorizationCode Optional OAuth2 authorization code to use - * with this transfer configuration. If it is provided, the transfer - * configuration will be associated with the authorizing user. In order to - * obtain authorization_code, please make a request to - * https://www.gstatic.com/bigquerydatatransfer/oauthz/auth?client_id==_uri= - * - * * client_id should be OAuth client_id of BigQuery DTS API for the given - * data source returned by ListDataSources method. * data_source_scopes are the - * scopes returned by ListDataSources method. * redirect_uri is an optional - * parameter. If not specified, then authorization code is posted to the - * opener of authorization flow window. Otherwise it will be sent to the - * redirect uri. A special value of urn:ietf:wg:oauth:2.0:oob means that - * authorization code should be returned in the title bar of the browser, with - * the page text prompting the user to copy the code and paste it in the - * application. - * @opt_param string updateMask Required. Required list of fields to be updated - * in this request. - * @return Google_Service_BigQueryDataTransfer_TransferConfig - */ - public function patch($name, Google_Service_BigQueryDataTransfer_TransferConfig $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_BigQueryDataTransfer_TransferConfig"); - } - /** - * Creates transfer runs for a time range [start_time, end_time]. For each date - * - or whatever granularity the data source supports - in the range, one - * transfer run is created. Note that runs are created per UTC time in the time - * range. DEPRECATED: use StartManualTransferRuns instead. - * (transferConfigs.scheduleRuns) - * - * @param string $parent Required. Transfer configuration name in the form: - * `projects/{project_id}/transferConfigs/{config_id}` or - * `projects/{project_id}/locations/{location_id}/transferConfigs/{config_id}`. - * @param Google_Service_BigQueryDataTransfer_ScheduleTransferRunsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_BigQueryDataTransfer_ScheduleTransferRunsResponse - */ - public function scheduleRuns($parent, Google_Service_BigQueryDataTransfer_ScheduleTransferRunsRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('scheduleRuns', array($params), "Google_Service_BigQueryDataTransfer_ScheduleTransferRunsResponse"); - } - /** - * Start manual transfer runs to be executed now with schedule_time equal to - * current time. The transfer runs can be created for a time range where the - * run_time is between start_time (inclusive) and end_time (exclusive), or for a - * specific run_time. (transferConfigs.startManualRuns) - * - * @param string $parent Transfer configuration name in the form: - * `projects/{project_id}/transferConfigs/{config_id}` or - * `projects/{project_id}/locations/{location_id}/transferConfigs/{config_id}`. - * @param Google_Service_BigQueryDataTransfer_StartManualTransferRunsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_BigQueryDataTransfer_StartManualTransferRunsResponse - */ - public function startManualRuns($parent, Google_Service_BigQueryDataTransfer_StartManualTransferRunsRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('startManualRuns', array($params), "Google_Service_BigQueryDataTransfer_StartManualTransferRunsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/Resource/ProjectsTransferConfigsRuns.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/Resource/ProjectsTransferConfigsRuns.php deleted file mode 100644 index c08a7bd5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/Resource/ProjectsTransferConfigsRuns.php +++ /dev/null @@ -1,89 +0,0 @@ - - * $bigquerydatatransferService = new Google_Service_BigQueryDataTransfer(...); - * $runs = $bigquerydatatransferService->runs; - * - */ -class Google_Service_BigQueryDataTransfer_Resource_ProjectsTransferConfigsRuns extends Google_Service_Resource -{ - /** - * Deletes the specified transfer run. (runs.delete) - * - * @param string $name Required. The field will contain name of the resource - * requested, for example: - * `projects/{project_id}/transferConfigs/{config_id}/runs/{run_id}` or `project - * s/{project_id}/locations/{location_id}/transferConfigs/{config_id}/runs/{run_ - * id}` - * @param array $optParams Optional parameters. - * @return Google_Service_BigQueryDataTransfer_BigquerydatatransferEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_BigQueryDataTransfer_BigquerydatatransferEmpty"); - } - /** - * Returns information about the particular transfer run. (runs.get) - * - * @param string $name Required. The field will contain name of the resource - * requested, for example: - * `projects/{project_id}/transferConfigs/{config_id}/runs/{run_id}` or `project - * s/{project_id}/locations/{location_id}/transferConfigs/{config_id}/runs/{run_ - * id}` - * @param array $optParams Optional parameters. - * @return Google_Service_BigQueryDataTransfer_TransferRun - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_BigQueryDataTransfer_TransferRun"); - } - /** - * Returns information about running and completed jobs. - * (runs.listProjectsTransferConfigsRuns) - * - * @param string $parent Required. Name of transfer configuration for which - * transfer runs should be retrieved. Format of transfer configuration resource - * name is: `projects/{project_id}/transferConfigs/{config_id}` or - * `projects/{project_id}/locations/{location_id}/transferConfigs/{config_id}`. - * @param array $optParams Optional parameters. - * - * @opt_param string runAttempt Indicates how run attempts are to be pulled. - * @opt_param string pageToken Pagination token, which can be used to request a - * specific page of `ListTransferRunsRequest` list results. For multiple-page - * results, `ListTransferRunsResponse` outputs a `next_page` token, which can be - * used as the `page_token` value to request the next page of list results. - * @opt_param string states When specified, only transfer runs with requested - * states are returned. - * @opt_param int pageSize Page size. The default page size is the maximum value - * of 1000 results. - * @return Google_Service_BigQueryDataTransfer_ListTransferRunsResponse - */ - public function listProjectsTransferConfigsRuns($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_BigQueryDataTransfer_ListTransferRunsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/Resource/ProjectsTransferConfigsRunsTransferLogs.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/Resource/ProjectsTransferConfigsRunsTransferLogs.php deleted file mode 100644 index cf41e30c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/Resource/ProjectsTransferConfigsRunsTransferLogs.php +++ /dev/null @@ -1,54 +0,0 @@ - - * $bigquerydatatransferService = new Google_Service_BigQueryDataTransfer(...); - * $transferLogs = $bigquerydatatransferService->transferLogs; - * - */ -class Google_Service_BigQueryDataTransfer_Resource_ProjectsTransferConfigsRunsTransferLogs extends Google_Service_Resource -{ - /** - * Returns user facing log messages for the data transfer run. - * (transferLogs.listProjectsTransferConfigsRunsTransferLogs) - * - * @param string $parent Required. Transfer run name in the form: - * `projects/{project_id}/transferConfigs/{config_id}/runs/{run_id}` or `project - * s/{project_id}/locations/{location_id}/transferConfigs/{config_id}/runs/{run_ - * id}` - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Pagination token, which can be used to request a - * specific page of `ListTransferLogsRequest` list results. For multiple-page - * results, `ListTransferLogsResponse` outputs a `next_page` token, which can be - * used as the `page_token` value to request the next page of list results. - * @opt_param int pageSize Page size. The default page size is the maximum value - * of 1000 results. - * @opt_param string messageTypes Message types to return. If not populated - - * INFO, WARNING and ERROR messages are returned. - * @return Google_Service_BigQueryDataTransfer_ListTransferLogsResponse - */ - public function listProjectsTransferConfigsRunsTransferLogs($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_BigQueryDataTransfer_ListTransferLogsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/ScheduleOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/ScheduleOptions.php deleted file mode 100644 index 3c655782..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/ScheduleOptions.php +++ /dev/null @@ -1,48 +0,0 @@ -disableAutoScheduling = $disableAutoScheduling; - } - public function getDisableAutoScheduling() - { - return $this->disableAutoScheduling; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/ScheduleTransferRunsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/ScheduleTransferRunsRequest.php deleted file mode 100644 index 9adc4337..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/ScheduleTransferRunsRequest.php +++ /dev/null @@ -1,39 +0,0 @@ -endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/ScheduleTransferRunsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/ScheduleTransferRunsResponse.php deleted file mode 100644 index 38bc9273..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/ScheduleTransferRunsResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -runs = $runs; - } - /** - * @return Google_Service_BigQueryDataTransfer_TransferRun - */ - public function getRuns() - { - return $this->runs; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/StartManualTransferRunsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/StartManualTransferRunsRequest.php deleted file mode 100644 index fc2c4aec..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/StartManualTransferRunsRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -requestedRunTime = $requestedRunTime; - } - public function getRequestedRunTime() - { - return $this->requestedRunTime; - } - /** - * @param Google_Service_BigQueryDataTransfer_TimeRange - */ - public function setRequestedTimeRange(Google_Service_BigQueryDataTransfer_TimeRange $requestedTimeRange) - { - $this->requestedTimeRange = $requestedTimeRange; - } - /** - * @return Google_Service_BigQueryDataTransfer_TimeRange - */ - public function getRequestedTimeRange() - { - return $this->requestedTimeRange; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/StartManualTransferRunsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/StartManualTransferRunsResponse.php deleted file mode 100644 index 6e00133b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/StartManualTransferRunsResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -runs = $runs; - } - /** - * @return Google_Service_BigQueryDataTransfer_TransferRun - */ - public function getRuns() - { - return $this->runs; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/Status.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/Status.php deleted file mode 100644 index ef6ddccd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/Status.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/TimeRange.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/TimeRange.php deleted file mode 100644 index 7848e474..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/TimeRange.php +++ /dev/null @@ -1,39 +0,0 @@ -endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/TransferConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/TransferConfig.php deleted file mode 100644 index 7d759041..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/TransferConfig.php +++ /dev/null @@ -1,179 +0,0 @@ -dataRefreshWindowDays = $dataRefreshWindowDays; - } - public function getDataRefreshWindowDays() - { - return $this->dataRefreshWindowDays; - } - public function setDataSourceId($dataSourceId) - { - $this->dataSourceId = $dataSourceId; - } - public function getDataSourceId() - { - return $this->dataSourceId; - } - public function setDatasetRegion($datasetRegion) - { - $this->datasetRegion = $datasetRegion; - } - public function getDatasetRegion() - { - return $this->datasetRegion; - } - public function setDestinationDatasetId($destinationDatasetId) - { - $this->destinationDatasetId = $destinationDatasetId; - } - public function getDestinationDatasetId() - { - return $this->destinationDatasetId; - } - public function setDisabled($disabled) - { - $this->disabled = $disabled; - } - public function getDisabled() - { - return $this->disabled; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - /** - * @param Google_Service_BigQueryDataTransfer_EmailPreferences - */ - public function setEmailPreferences(Google_Service_BigQueryDataTransfer_EmailPreferences $emailPreferences) - { - $this->emailPreferences = $emailPreferences; - } - /** - * @return Google_Service_BigQueryDataTransfer_EmailPreferences - */ - public function getEmailPreferences() - { - return $this->emailPreferences; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNextRunTime($nextRunTime) - { - $this->nextRunTime = $nextRunTime; - } - public function getNextRunTime() - { - return $this->nextRunTime; - } - public function setNotificationPubsubTopic($notificationPubsubTopic) - { - $this->notificationPubsubTopic = $notificationPubsubTopic; - } - public function getNotificationPubsubTopic() - { - return $this->notificationPubsubTopic; - } - public function setParams($params) - { - $this->params = $params; - } - public function getParams() - { - return $this->params; - } - public function setSchedule($schedule) - { - $this->schedule = $schedule; - } - public function getSchedule() - { - return $this->schedule; - } - /** - * @param Google_Service_BigQueryDataTransfer_ScheduleOptions - */ - public function setScheduleOptions(Google_Service_BigQueryDataTransfer_ScheduleOptions $scheduleOptions) - { - $this->scheduleOptions = $scheduleOptions; - } - /** - * @return Google_Service_BigQueryDataTransfer_ScheduleOptions - */ - public function getScheduleOptions() - { - return $this->scheduleOptions; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } - public function setUserId($userId) - { - $this->userId = $userId; - } - public function getUserId() - { - return $this->userId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/TransferMessage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/TransferMessage.php deleted file mode 100644 index 4f1fc0b3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/TransferMessage.php +++ /dev/null @@ -1,48 +0,0 @@ -messageText = $messageText; - } - public function getMessageText() - { - return $this->messageText; - } - public function setMessageTime($messageTime) - { - $this->messageTime = $messageTime; - } - public function getMessageTime() - { - return $this->messageTime; - } - public function setSeverity($severity) - { - $this->severity = $severity; - } - public function getSeverity() - { - return $this->severity; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/TransferRun.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/TransferRun.php deleted file mode 100644 index 9af17e8c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryDataTransfer/TransferRun.php +++ /dev/null @@ -1,170 +0,0 @@ -dataSourceId = $dataSourceId; - } - public function getDataSourceId() - { - return $this->dataSourceId; - } - public function setDestinationDatasetId($destinationDatasetId) - { - $this->destinationDatasetId = $destinationDatasetId; - } - public function getDestinationDatasetId() - { - return $this->destinationDatasetId; - } - /** - * @param Google_Service_BigQueryDataTransfer_EmailPreferences - */ - public function setEmailPreferences(Google_Service_BigQueryDataTransfer_EmailPreferences $emailPreferences) - { - $this->emailPreferences = $emailPreferences; - } - /** - * @return Google_Service_BigQueryDataTransfer_EmailPreferences - */ - public function getEmailPreferences() - { - return $this->emailPreferences; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - /** - * @param Google_Service_BigQueryDataTransfer_Status - */ - public function setErrorStatus(Google_Service_BigQueryDataTransfer_Status $errorStatus) - { - $this->errorStatus = $errorStatus; - } - /** - * @return Google_Service_BigQueryDataTransfer_Status - */ - public function getErrorStatus() - { - return $this->errorStatus; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNotificationPubsubTopic($notificationPubsubTopic) - { - $this->notificationPubsubTopic = $notificationPubsubTopic; - } - public function getNotificationPubsubTopic() - { - return $this->notificationPubsubTopic; - } - public function setParams($params) - { - $this->params = $params; - } - public function getParams() - { - return $this->params; - } - public function setRunTime($runTime) - { - $this->runTime = $runTime; - } - public function getRunTime() - { - return $this->runTime; - } - public function setSchedule($schedule) - { - $this->schedule = $schedule; - } - public function getSchedule() - { - return $this->schedule; - } - public function setScheduleTime($scheduleTime) - { - $this->scheduleTime = $scheduleTime; - } - public function getScheduleTime() - { - return $this->scheduleTime; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } - public function setUserId($userId) - { - $this->userId = $userId; - } - public function getUserId() - { - return $this->userId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryReservation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryReservation.php deleted file mode 100644 index 96a4642a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryReservation.php +++ /dev/null @@ -1,100 +0,0 @@ - - * A service to modify your BigQuery flat-rate reservations.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_BigQueryReservation extends Google_Service -{ - /** View and manage your data in Google BigQuery. */ - const BIGQUERY = - "https://www.googleapis.com/auth/bigquery"; - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - - public $operations; - - /** - * Constructs the internal representation of the BigQueryReservation service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://bigqueryreservation.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'bigqueryreservation'; - - $this->operations = new Google_Service_BigQueryReservation_Resource_Operations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryReservation/BigqueryreservationEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryReservation/BigqueryreservationEmpty.php deleted file mode 100644 index f94d5e53..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryReservation/BigqueryreservationEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_BigQueryReservation_Operation - */ - public function setOperations($operations) - { - $this->operations = $operations; - } - /** - * @return Google_Service_BigQueryReservation_Operation - */ - public function getOperations() - { - return $this->operations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryReservation/Operation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryReservation/Operation.php deleted file mode 100644 index 5dc32457..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryReservation/Operation.php +++ /dev/null @@ -1,73 +0,0 @@ -done = $done; - } - public function getDone() - { - return $this->done; - } - /** - * @param Google_Service_BigQueryReservation_Status - */ - public function setError(Google_Service_BigQueryReservation_Status $error) - { - $this->error = $error; - } - /** - * @return Google_Service_BigQueryReservation_Status - */ - public function getError() - { - return $this->error; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryReservation/Resource/Operations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryReservation/Resource/Operations.php deleted file mode 100644 index 6c0c7cf1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryReservation/Resource/Operations.php +++ /dev/null @@ -1,70 +0,0 @@ - - * $bigqueryreservationService = new Google_Service_BigQueryReservation(...); - * $operations = $bigqueryreservationService->operations; - * - */ -class Google_Service_BigQueryReservation_Resource_Operations extends Google_Service_Resource -{ - /** - * Deletes a long-running operation. This method indicates that the client is no - * longer interested in the operation result. It does not cancel the operation. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. (operations.delete) - * - * @param string $name The name of the operation resource to be deleted. - * @param array $optParams Optional parameters. - * @return Google_Service_BigQueryReservation_BigqueryreservationEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_BigQueryReservation_BigqueryreservationEmpty"); - } - /** - * Lists operations that match the specified filter in the request. If the - * server doesn't support this method, it returns `UNIMPLEMENTED`. - * - * NOTE: the `name` binding allows API services to override the binding to use - * different resource name schemes, such as `users/operations`. To override the - * binding, API services can add a binding such as - * `"/v1/{name=users}/operations"` to their service configuration. For backwards - * compatibility, the default name includes the operations collection id, - * however overriding users must ensure the name binding is the parent resource, - * without the operations collection id. (operations.listOperations) - * - * @param string $name The name of the operation's parent resource. - * @param array $optParams Optional parameters. - * - * @opt_param string filter The standard list filter. - * @opt_param string pageToken The standard list page token. - * @opt_param int pageSize The standard list page size. - * @return Google_Service_BigQueryReservation_ListOperationsResponse - */ - public function listOperations($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_BigQueryReservation_ListOperationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryReservation/Status.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryReservation/Status.php deleted file mode 100644 index e354ca3b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigQueryReservation/Status.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery.php deleted file mode 100644 index 2a6263f7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery.php +++ /dev/null @@ -1,782 +0,0 @@ - - * A data platform for customers to create, manage, share and query data.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Bigquery extends Google_Service -{ - /** View and manage your data in Google BigQuery. */ - const BIGQUERY = - "https://www.googleapis.com/auth/bigquery"; - /** Insert data into Google BigQuery. */ - const BIGQUERY_INSERTDATA = - "https://www.googleapis.com/auth/bigquery.insertdata"; - /** View your data in Google BigQuery. */ - const BIGQUERY_READONLY = - "https://www.googleapis.com/auth/bigquery.readonly"; - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** View your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM_READ_ONLY = - "https://www.googleapis.com/auth/cloud-platform.read-only"; - /** Manage your data and permissions in Google Cloud Storage. */ - const DEVSTORAGE_FULL_CONTROL = - "https://www.googleapis.com/auth/devstorage.full_control"; - /** View your data in Google Cloud Storage. */ - const DEVSTORAGE_READ_ONLY = - "https://www.googleapis.com/auth/devstorage.read_only"; - /** Manage your data in Google Cloud Storage. */ - const DEVSTORAGE_READ_WRITE = - "https://www.googleapis.com/auth/devstorage.read_write"; - - public $datasets; - public $jobs; - public $models; - public $projects; - public $routines; - public $tabledata; - public $tables; - - /** - * Constructs the internal representation of the Bigquery service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://bigquery.googleapis.com/'; - $this->servicePath = 'bigquery/v2/'; - $this->batchPath = 'batch/bigquery/v2'; - $this->version = 'v2'; - $this->serviceName = 'bigquery'; - - $this->datasets = new Google_Service_Bigquery_Resource_Datasets( - $this, - $this->serviceName, - 'datasets', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'projects/{projectId}/datasets/{datasetId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'datasetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'deleteContents' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'get' => array( - 'path' => 'projects/{projectId}/datasets/{datasetId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'datasetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'projects/{projectId}/datasets', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'projects/{projectId}/datasets', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'all' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'projects/{projectId}/datasets/{datasetId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'datasetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'projects/{projectId}/datasets/{datasetId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'datasetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->jobs = new Google_Service_Bigquery_Resource_Jobs( - $this, - $this->serviceName, - 'jobs', - array( - 'methods' => array( - 'cancel' => array( - 'path' => 'projects/{projectId}/jobs/{jobId}/cancel', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'jobId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'location' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'projects/{projectId}/jobs/{jobId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'jobId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'location' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'getQueryResults' => array( - 'path' => 'projects/{projectId}/queries/{jobId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'jobId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'startIndex' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'location' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'timeoutMs' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'insert' => array( - 'path' => 'projects/{projectId}/jobs', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'projects/{projectId}/jobs', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'allUsers' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'maxCreationTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'stateFilter' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'parentJobId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'minCreationTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'query' => array( - 'path' => 'projects/{projectId}/queries', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->models = new Google_Service_Bigquery_Resource_Models( - $this, - $this->serviceName, - 'models', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'projects/{+projectId}/datasets/{+datasetId}/models/{+modelId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'datasetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'modelId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'projects/{+projectId}/datasets/{+datasetId}/models/{+modelId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'datasetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'modelId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'projects/{+projectId}/datasets/{+datasetId}/models', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'datasetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'projects/{+projectId}/datasets/{+datasetId}/models/{+modelId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'datasetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'modelId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects = new Google_Service_Bigquery_Resource_Projects( - $this, - $this->serviceName, - 'projects', - array( - 'methods' => array( - 'getServiceAccount' => array( - 'path' => 'projects/{projectId}/serviceAccount', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'projects', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->routines = new Google_Service_Bigquery_Resource_Routines( - $this, - $this->serviceName, - 'routines', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'projects/{+projectId}/datasets/{+datasetId}/routines/{+routineId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'datasetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'routineId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'projects/{+projectId}/datasets/{+datasetId}/routines/{+routineId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'datasetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'routineId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'readMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'insert' => array( - 'path' => 'projects/{+projectId}/datasets/{+datasetId}/routines', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'datasetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'projects/{+projectId}/datasets/{+datasetId}/routines', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'datasetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'readMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'projects/{+projectId}/datasets/{+datasetId}/routines/{+routineId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'datasetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'routineId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->tabledata = new Google_Service_Bigquery_Resource_Tabledata( - $this, - $this->serviceName, - 'tabledata', - array( - 'methods' => array( - 'insertAll' => array( - 'path' => 'projects/{projectId}/datasets/{datasetId}/tables/{tableId}/insertAll', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'datasetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'projects/{projectId}/datasets/{datasetId}/tables/{tableId}/data', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'datasetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'startIndex' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'selectedFields' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->tables = new Google_Service_Bigquery_Resource_Tables( - $this, - $this->serviceName, - 'tables', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'projects/{projectId}/datasets/{datasetId}/tables/{tableId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'datasetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'projects/{projectId}/datasets/{datasetId}/tables/{tableId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'datasetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'selectedFields' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'insert' => array( - 'path' => 'projects/{projectId}/datasets/{datasetId}/tables', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'datasetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'projects/{projectId}/datasets/{datasetId}/tables', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'datasetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'projects/{projectId}/datasets/{datasetId}/tables/{tableId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'datasetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'projects/{projectId}/datasets/{datasetId}/tables/{tableId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'datasetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/AggregateClassificationMetrics.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/AggregateClassificationMetrics.php deleted file mode 100644 index e803cf11..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/AggregateClassificationMetrics.php +++ /dev/null @@ -1,84 +0,0 @@ -accuracy = $accuracy; - } - public function getAccuracy() - { - return $this->accuracy; - } - public function setF1Score($f1Score) - { - $this->f1Score = $f1Score; - } - public function getF1Score() - { - return $this->f1Score; - } - public function setLogLoss($logLoss) - { - $this->logLoss = $logLoss; - } - public function getLogLoss() - { - return $this->logLoss; - } - public function setPrecision($precision) - { - $this->precision = $precision; - } - public function getPrecision() - { - return $this->precision; - } - public function setRecall($recall) - { - $this->recall = $recall; - } - public function getRecall() - { - return $this->recall; - } - public function setRocAuc($rocAuc) - { - $this->rocAuc = $rocAuc; - } - public function getRocAuc() - { - return $this->rocAuc; - } - public function setThreshold($threshold) - { - $this->threshold = $threshold; - } - public function getThreshold() - { - return $this->threshold; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/Argument.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/Argument.php deleted file mode 100644 index 55b0f76c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/Argument.php +++ /dev/null @@ -1,64 +0,0 @@ -argumentKind = $argumentKind; - } - public function getArgumentKind() - { - return $this->argumentKind; - } - /** - * @param Google_Service_Bigquery_StandardSqlDataType - */ - public function setDataType(Google_Service_Bigquery_StandardSqlDataType $dataType) - { - $this->dataType = $dataType; - } - /** - * @return Google_Service_Bigquery_StandardSqlDataType - */ - public function getDataType() - { - return $this->dataType; - } - public function setMode($mode) - { - $this->mode = $mode; - } - public function getMode() - { - return $this->mode; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ArimaCoefficients.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ArimaCoefficients.php deleted file mode 100644 index 0b141ff8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ArimaCoefficients.php +++ /dev/null @@ -1,49 +0,0 @@ -autoRegressiveCoefficients = $autoRegressiveCoefficients; - } - public function getAutoRegressiveCoefficients() - { - return $this->autoRegressiveCoefficients; - } - public function setInterceptCoefficient($interceptCoefficient) - { - $this->interceptCoefficient = $interceptCoefficient; - } - public function getInterceptCoefficient() - { - return $this->interceptCoefficient; - } - public function setMovingAverageCoefficients($movingAverageCoefficients) - { - $this->movingAverageCoefficients = $movingAverageCoefficients; - } - public function getMovingAverageCoefficients() - { - return $this->movingAverageCoefficients; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ArimaFittingMetrics.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ArimaFittingMetrics.php deleted file mode 100644 index 2cd9dd21..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ArimaFittingMetrics.php +++ /dev/null @@ -1,48 +0,0 @@ -aic = $aic; - } - public function getAic() - { - return $this->aic; - } - public function setLogLikelihood($logLikelihood) - { - $this->logLikelihood = $logLikelihood; - } - public function getLogLikelihood() - { - return $this->logLikelihood; - } - public function setVariance($variance) - { - $this->variance = $variance; - } - public function getVariance() - { - return $this->variance; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ArimaModelInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ArimaModelInfo.php deleted file mode 100644 index 8c906481..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ArimaModelInfo.php +++ /dev/null @@ -1,69 +0,0 @@ -arimaCoefficients = $arimaCoefficients; - } - /** - * @return Google_Service_Bigquery_ArimaCoefficients - */ - public function getArimaCoefficients() - { - return $this->arimaCoefficients; - } - /** - * @param Google_Service_Bigquery_ArimaFittingMetrics - */ - public function setArimaFittingMetrics(Google_Service_Bigquery_ArimaFittingMetrics $arimaFittingMetrics) - { - $this->arimaFittingMetrics = $arimaFittingMetrics; - } - /** - * @return Google_Service_Bigquery_ArimaFittingMetrics - */ - public function getArimaFittingMetrics() - { - return $this->arimaFittingMetrics; - } - /** - * @param Google_Service_Bigquery_ArimaOrder - */ - public function setNonSeasonalOrder(Google_Service_Bigquery_ArimaOrder $nonSeasonalOrder) - { - $this->nonSeasonalOrder = $nonSeasonalOrder; - } - /** - * @return Google_Service_Bigquery_ArimaOrder - */ - public function getNonSeasonalOrder() - { - return $this->nonSeasonalOrder; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ArimaOrder.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ArimaOrder.php deleted file mode 100644 index 16239d4d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ArimaOrder.php +++ /dev/null @@ -1,48 +0,0 @@ -d = $d; - } - public function getD() - { - return $this->d; - } - public function setP($p) - { - $this->p = $p; - } - public function getP() - { - return $this->p; - } - public function setQ($q) - { - $this->q = $q; - } - public function getQ() - { - return $this->q; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ArimaResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ArimaResult.php deleted file mode 100644 index 4e72ddc2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ArimaResult.php +++ /dev/null @@ -1,47 +0,0 @@ -arimaModelInfo = $arimaModelInfo; - } - /** - * @return Google_Service_Bigquery_ArimaModelInfo - */ - public function getArimaModelInfo() - { - return $this->arimaModelInfo; - } - public function setSeasonalPeriods($seasonalPeriods) - { - $this->seasonalPeriods = $seasonalPeriods; - } - public function getSeasonalPeriods() - { - return $this->seasonalPeriods; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/BigQueryModelTraining.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/BigQueryModelTraining.php deleted file mode 100644 index 8a0b8bf7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/BigQueryModelTraining.php +++ /dev/null @@ -1,39 +0,0 @@ -currentIteration = $currentIteration; - } - public function getCurrentIteration() - { - return $this->currentIteration; - } - public function setExpectedTotalIterations($expectedTotalIterations) - { - $this->expectedTotalIterations = $expectedTotalIterations; - } - public function getExpectedTotalIterations() - { - return $this->expectedTotalIterations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/BigtableColumn.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/BigtableColumn.php deleted file mode 100644 index 5ad48940..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/BigtableColumn.php +++ /dev/null @@ -1,75 +0,0 @@ -encoding = $encoding; - } - public function getEncoding() - { - return $this->encoding; - } - public function setFieldName($fieldName) - { - $this->fieldName = $fieldName; - } - public function getFieldName() - { - return $this->fieldName; - } - public function setOnlyReadLatest($onlyReadLatest) - { - $this->onlyReadLatest = $onlyReadLatest; - } - public function getOnlyReadLatest() - { - return $this->onlyReadLatest; - } - public function setQualifierEncoded($qualifierEncoded) - { - $this->qualifierEncoded = $qualifierEncoded; - } - public function getQualifierEncoded() - { - return $this->qualifierEncoded; - } - public function setQualifierString($qualifierString) - { - $this->qualifierString = $qualifierString; - } - public function getQualifierString() - { - return $this->qualifierString; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/BigtableColumnFamily.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/BigtableColumnFamily.php deleted file mode 100644 index 56ac6bba..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/BigtableColumnFamily.php +++ /dev/null @@ -1,74 +0,0 @@ -columns = $columns; - } - /** - * @return Google_Service_Bigquery_BigtableColumn - */ - public function getColumns() - { - return $this->columns; - } - public function setEncoding($encoding) - { - $this->encoding = $encoding; - } - public function getEncoding() - { - return $this->encoding; - } - public function setFamilyId($familyId) - { - $this->familyId = $familyId; - } - public function getFamilyId() - { - return $this->familyId; - } - public function setOnlyReadLatest($onlyReadLatest) - { - $this->onlyReadLatest = $onlyReadLatest; - } - public function getOnlyReadLatest() - { - return $this->onlyReadLatest; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/BigtableOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/BigtableOptions.php deleted file mode 100644 index 6a1eade3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/BigtableOptions.php +++ /dev/null @@ -1,56 +0,0 @@ -columnFamilies = $columnFamilies; - } - /** - * @return Google_Service_Bigquery_BigtableColumnFamily - */ - public function getColumnFamilies() - { - return $this->columnFamilies; - } - public function setIgnoreUnspecifiedColumnFamilies($ignoreUnspecifiedColumnFamilies) - { - $this->ignoreUnspecifiedColumnFamilies = $ignoreUnspecifiedColumnFamilies; - } - public function getIgnoreUnspecifiedColumnFamilies() - { - return $this->ignoreUnspecifiedColumnFamilies; - } - public function setReadRowkeyAsString($readRowkeyAsString) - { - $this->readRowkeyAsString = $readRowkeyAsString; - } - public function getReadRowkeyAsString() - { - return $this->readRowkeyAsString; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/BinaryClassificationMetrics.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/BinaryClassificationMetrics.php deleted file mode 100644 index be00e2ff..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/BinaryClassificationMetrics.php +++ /dev/null @@ -1,72 +0,0 @@ -aggregateClassificationMetrics = $aggregateClassificationMetrics; - } - /** - * @return Google_Service_Bigquery_AggregateClassificationMetrics - */ - public function getAggregateClassificationMetrics() - { - return $this->aggregateClassificationMetrics; - } - /** - * @param Google_Service_Bigquery_BinaryConfusionMatrix - */ - public function setBinaryConfusionMatrixList($binaryConfusionMatrixList) - { - $this->binaryConfusionMatrixList = $binaryConfusionMatrixList; - } - /** - * @return Google_Service_Bigquery_BinaryConfusionMatrix - */ - public function getBinaryConfusionMatrixList() - { - return $this->binaryConfusionMatrixList; - } - public function setNegativeLabel($negativeLabel) - { - $this->negativeLabel = $negativeLabel; - } - public function getNegativeLabel() - { - return $this->negativeLabel; - } - public function setPositiveLabel($positiveLabel) - { - $this->positiveLabel = $positiveLabel; - } - public function getPositiveLabel() - { - return $this->positiveLabel; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/BinaryConfusionMatrix.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/BinaryConfusionMatrix.php deleted file mode 100644 index 1e8e9005..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/BinaryConfusionMatrix.php +++ /dev/null @@ -1,102 +0,0 @@ -accuracy = $accuracy; - } - public function getAccuracy() - { - return $this->accuracy; - } - public function setF1Score($f1Score) - { - $this->f1Score = $f1Score; - } - public function getF1Score() - { - return $this->f1Score; - } - public function setFalseNegatives($falseNegatives) - { - $this->falseNegatives = $falseNegatives; - } - public function getFalseNegatives() - { - return $this->falseNegatives; - } - public function setFalsePositives($falsePositives) - { - $this->falsePositives = $falsePositives; - } - public function getFalsePositives() - { - return $this->falsePositives; - } - public function setPositiveClassThreshold($positiveClassThreshold) - { - $this->positiveClassThreshold = $positiveClassThreshold; - } - public function getPositiveClassThreshold() - { - return $this->positiveClassThreshold; - } - public function setPrecision($precision) - { - $this->precision = $precision; - } - public function getPrecision() - { - return $this->precision; - } - public function setRecall($recall) - { - $this->recall = $recall; - } - public function getRecall() - { - return $this->recall; - } - public function setTrueNegatives($trueNegatives) - { - $this->trueNegatives = $trueNegatives; - } - public function getTrueNegatives() - { - return $this->trueNegatives; - } - public function setTruePositives($truePositives) - { - $this->truePositives = $truePositives; - } - public function getTruePositives() - { - return $this->truePositives; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/BqmlIterationResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/BqmlIterationResult.php deleted file mode 100644 index 21a06ed0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/BqmlIterationResult.php +++ /dev/null @@ -1,66 +0,0 @@ -durationMs = $durationMs; - } - public function getDurationMs() - { - return $this->durationMs; - } - public function setEvalLoss($evalLoss) - { - $this->evalLoss = $evalLoss; - } - public function getEvalLoss() - { - return $this->evalLoss; - } - public function setIndex($index) - { - $this->index = $index; - } - public function getIndex() - { - return $this->index; - } - public function setLearnRate($learnRate) - { - $this->learnRate = $learnRate; - } - public function getLearnRate() - { - return $this->learnRate; - } - public function setTrainingLoss($trainingLoss) - { - $this->trainingLoss = $trainingLoss; - } - public function getTrainingLoss() - { - return $this->trainingLoss; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/BqmlTrainingRun.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/BqmlTrainingRun.php deleted file mode 100644 index aec174c6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/BqmlTrainingRun.php +++ /dev/null @@ -1,72 +0,0 @@ -iterationResults = $iterationResults; - } - /** - * @return Google_Service_Bigquery_BqmlIterationResult - */ - public function getIterationResults() - { - return $this->iterationResults; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - /** - * @param Google_Service_Bigquery_BqmlTrainingRunTrainingOptions - */ - public function setTrainingOptions(Google_Service_Bigquery_BqmlTrainingRunTrainingOptions $trainingOptions) - { - $this->trainingOptions = $trainingOptions; - } - /** - * @return Google_Service_Bigquery_BqmlTrainingRunTrainingOptions - */ - public function getTrainingOptions() - { - return $this->trainingOptions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/BqmlTrainingRunTrainingOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/BqmlTrainingRunTrainingOptions.php deleted file mode 100644 index 1308bda4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/BqmlTrainingRunTrainingOptions.php +++ /dev/null @@ -1,102 +0,0 @@ -earlyStop = $earlyStop; - } - public function getEarlyStop() - { - return $this->earlyStop; - } - public function setL1Reg($l1Reg) - { - $this->l1Reg = $l1Reg; - } - public function getL1Reg() - { - return $this->l1Reg; - } - public function setL2Reg($l2Reg) - { - $this->l2Reg = $l2Reg; - } - public function getL2Reg() - { - return $this->l2Reg; - } - public function setLearnRate($learnRate) - { - $this->learnRate = $learnRate; - } - public function getLearnRate() - { - return $this->learnRate; - } - public function setLearnRateStrategy($learnRateStrategy) - { - $this->learnRateStrategy = $learnRateStrategy; - } - public function getLearnRateStrategy() - { - return $this->learnRateStrategy; - } - public function setLineSearchInitLearnRate($lineSearchInitLearnRate) - { - $this->lineSearchInitLearnRate = $lineSearchInitLearnRate; - } - public function getLineSearchInitLearnRate() - { - return $this->lineSearchInitLearnRate; - } - public function setMaxIteration($maxIteration) - { - $this->maxIteration = $maxIteration; - } - public function getMaxIteration() - { - return $this->maxIteration; - } - public function setMinRelProgress($minRelProgress) - { - $this->minRelProgress = $minRelProgress; - } - public function getMinRelProgress() - { - return $this->minRelProgress; - } - public function setWarmStart($warmStart) - { - $this->warmStart = $warmStart; - } - public function getWarmStart() - { - return $this->warmStart; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/CategoricalValue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/CategoricalValue.php deleted file mode 100644 index 834b4598..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/CategoricalValue.php +++ /dev/null @@ -1,38 +0,0 @@ -categoryCounts = $categoryCounts; - } - /** - * @return Google_Service_Bigquery_CategoryCount - */ - public function getCategoryCounts() - { - return $this->categoryCounts; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/CategoryCount.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/CategoryCount.php deleted file mode 100644 index 05df3955..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/CategoryCount.php +++ /dev/null @@ -1,39 +0,0 @@ -category = $category; - } - public function getCategory() - { - return $this->category; - } - public function setCount($count) - { - $this->count = $count; - } - public function getCount() - { - return $this->count; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/Cluster.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/Cluster.php deleted file mode 100644 index feb76b38..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/Cluster.php +++ /dev/null @@ -1,56 +0,0 @@ -centroidId = $centroidId; - } - public function getCentroidId() - { - return $this->centroidId; - } - public function setCount($count) - { - $this->count = $count; - } - public function getCount() - { - return $this->count; - } - /** - * @param Google_Service_Bigquery_FeatureValue - */ - public function setFeatureValues($featureValues) - { - $this->featureValues = $featureValues; - } - /** - * @return Google_Service_Bigquery_FeatureValue - */ - public function getFeatureValues() - { - return $this->featureValues; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ClusterInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ClusterInfo.php deleted file mode 100644 index 05349df7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ClusterInfo.php +++ /dev/null @@ -1,48 +0,0 @@ -centroidId = $centroidId; - } - public function getCentroidId() - { - return $this->centroidId; - } - public function setClusterRadius($clusterRadius) - { - $this->clusterRadius = $clusterRadius; - } - public function getClusterRadius() - { - return $this->clusterRadius; - } - public function setClusterSize($clusterSize) - { - $this->clusterSize = $clusterSize; - } - public function getClusterSize() - { - return $this->clusterSize; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/Clustering.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/Clustering.php deleted file mode 100644 index f9e9c522..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/Clustering.php +++ /dev/null @@ -1,31 +0,0 @@ -fields = $fields; - } - public function getFields() - { - return $this->fields; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ClusteringMetrics.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ClusteringMetrics.php deleted file mode 100644 index 75de0ef6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ClusteringMetrics.php +++ /dev/null @@ -1,56 +0,0 @@ -clusters = $clusters; - } - /** - * @return Google_Service_Bigquery_Cluster - */ - public function getClusters() - { - return $this->clusters; - } - public function setDaviesBouldinIndex($daviesBouldinIndex) - { - $this->daviesBouldinIndex = $daviesBouldinIndex; - } - public function getDaviesBouldinIndex() - { - return $this->daviesBouldinIndex; - } - public function setMeanSquaredDistance($meanSquaredDistance) - { - $this->meanSquaredDistance = $meanSquaredDistance; - } - public function getMeanSquaredDistance() - { - return $this->meanSquaredDistance; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ConfusionMatrix.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ConfusionMatrix.php deleted file mode 100644 index 110ce8f2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ConfusionMatrix.php +++ /dev/null @@ -1,47 +0,0 @@ -confidenceThreshold = $confidenceThreshold; - } - public function getConfidenceThreshold() - { - return $this->confidenceThreshold; - } - /** - * @param Google_Service_Bigquery_Row - */ - public function setRows($rows) - { - $this->rows = $rows; - } - /** - * @return Google_Service_Bigquery_Row - */ - public function getRows() - { - return $this->rows; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/CsvOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/CsvOptions.php deleted file mode 100644 index 6889b6ae..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/CsvOptions.php +++ /dev/null @@ -1,75 +0,0 @@ -allowJaggedRows = $allowJaggedRows; - } - public function getAllowJaggedRows() - { - return $this->allowJaggedRows; - } - public function setAllowQuotedNewlines($allowQuotedNewlines) - { - $this->allowQuotedNewlines = $allowQuotedNewlines; - } - public function getAllowQuotedNewlines() - { - return $this->allowQuotedNewlines; - } - public function setEncoding($encoding) - { - $this->encoding = $encoding; - } - public function getEncoding() - { - return $this->encoding; - } - public function setFieldDelimiter($fieldDelimiter) - { - $this->fieldDelimiter = $fieldDelimiter; - } - public function getFieldDelimiter() - { - return $this->fieldDelimiter; - } - public function setQuote($quote) - { - $this->quote = $quote; - } - public function getQuote() - { - return $this->quote; - } - public function setSkipLeadingRows($skipLeadingRows) - { - $this->skipLeadingRows = $skipLeadingRows; - } - public function getSkipLeadingRows() - { - return $this->skipLeadingRows; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/DataSplitResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/DataSplitResult.php deleted file mode 100644 index 1c1f93c4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/DataSplitResult.php +++ /dev/null @@ -1,53 +0,0 @@ -evaluationTable = $evaluationTable; - } - /** - * @return Google_Service_Bigquery_TableReference - */ - public function getEvaluationTable() - { - return $this->evaluationTable; - } - /** - * @param Google_Service_Bigquery_TableReference - */ - public function setTrainingTable(Google_Service_Bigquery_TableReference $trainingTable) - { - $this->trainingTable = $trainingTable; - } - /** - * @return Google_Service_Bigquery_TableReference - */ - public function getTrainingTable() - { - return $this->trainingTable; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/Dataset.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/Dataset.php deleted file mode 100644 index e511e570..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/Dataset.php +++ /dev/null @@ -1,178 +0,0 @@ -access = $access; - } - /** - * @return Google_Service_Bigquery_DatasetAccess - */ - public function getAccess() - { - return $this->access; - } - public function setCreationTime($creationTime) - { - $this->creationTime = $creationTime; - } - public function getCreationTime() - { - return $this->creationTime; - } - /** - * @param Google_Service_Bigquery_DatasetReference - */ - public function setDatasetReference(Google_Service_Bigquery_DatasetReference $datasetReference) - { - $this->datasetReference = $datasetReference; - } - /** - * @return Google_Service_Bigquery_DatasetReference - */ - public function getDatasetReference() - { - return $this->datasetReference; - } - /** - * @param Google_Service_Bigquery_EncryptionConfiguration - */ - public function setDefaultEncryptionConfiguration(Google_Service_Bigquery_EncryptionConfiguration $defaultEncryptionConfiguration) - { - $this->defaultEncryptionConfiguration = $defaultEncryptionConfiguration; - } - /** - * @return Google_Service_Bigquery_EncryptionConfiguration - */ - public function getDefaultEncryptionConfiguration() - { - return $this->defaultEncryptionConfiguration; - } - public function setDefaultPartitionExpirationMs($defaultPartitionExpirationMs) - { - $this->defaultPartitionExpirationMs = $defaultPartitionExpirationMs; - } - public function getDefaultPartitionExpirationMs() - { - return $this->defaultPartitionExpirationMs; - } - public function setDefaultTableExpirationMs($defaultTableExpirationMs) - { - $this->defaultTableExpirationMs = $defaultTableExpirationMs; - } - public function getDefaultTableExpirationMs() - { - return $this->defaultTableExpirationMs; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setFriendlyName($friendlyName) - { - $this->friendlyName = $friendlyName; - } - public function getFriendlyName() - { - return $this->friendlyName; - } - 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 setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setLastModifiedTime($lastModifiedTime) - { - $this->lastModifiedTime = $lastModifiedTime; - } - public function getLastModifiedTime() - { - return $this->lastModifiedTime; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/DatasetAccess.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/DatasetAccess.php deleted file mode 100644 index 7b3e428b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/DatasetAccess.php +++ /dev/null @@ -1,91 +0,0 @@ -domain = $domain; - } - public function getDomain() - { - return $this->domain; - } - public function setGroupByEmail($groupByEmail) - { - $this->groupByEmail = $groupByEmail; - } - public function getGroupByEmail() - { - return $this->groupByEmail; - } - public function setIamMember($iamMember) - { - $this->iamMember = $iamMember; - } - public function getIamMember() - { - return $this->iamMember; - } - public function setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } - public function setSpecialGroup($specialGroup) - { - $this->specialGroup = $specialGroup; - } - public function getSpecialGroup() - { - return $this->specialGroup; - } - public function setUserByEmail($userByEmail) - { - $this->userByEmail = $userByEmail; - } - public function getUserByEmail() - { - return $this->userByEmail; - } - /** - * @param Google_Service_Bigquery_TableReference - */ - public function setView(Google_Service_Bigquery_TableReference $view) - { - $this->view = $view; - } - /** - * @return Google_Service_Bigquery_TableReference - */ - public function getView() - { - return $this->view; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/DatasetList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/DatasetList.php deleted file mode 100644 index 0d05e79d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/DatasetList.php +++ /dev/null @@ -1,65 +0,0 @@ -datasets = $datasets; - } - /** - * @return Google_Service_Bigquery_DatasetListDatasets - */ - public function getDatasets() - { - return $this->datasets; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/DatasetListDatasets.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/DatasetListDatasets.php deleted file mode 100644 index d751fa64..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/DatasetListDatasets.php +++ /dev/null @@ -1,82 +0,0 @@ -datasetReference = $datasetReference; - } - /** - * @return Google_Service_Bigquery_DatasetReference - */ - public function getDatasetReference() - { - return $this->datasetReference; - } - public function setFriendlyName($friendlyName) - { - $this->friendlyName = $friendlyName; - } - public function getFriendlyName() - { - return $this->friendlyName; - } - 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 setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/DatasetReference.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/DatasetReference.php deleted file mode 100644 index 48e10bdd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/DatasetReference.php +++ /dev/null @@ -1,39 +0,0 @@ -datasetId = $datasetId; - } - public function getDatasetId() - { - return $this->datasetId; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/DestinationTableProperties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/DestinationTableProperties.php deleted file mode 100644 index aafc0ece..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/DestinationTableProperties.php +++ /dev/null @@ -1,48 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setFriendlyName($friendlyName) - { - $this->friendlyName = $friendlyName; - } - public function getFriendlyName() - { - return $this->friendlyName; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/EncryptionConfiguration.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/EncryptionConfiguration.php deleted file mode 100644 index 5d266d7b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/EncryptionConfiguration.php +++ /dev/null @@ -1,30 +0,0 @@ -kmsKeyName = $kmsKeyName; - } - public function getKmsKeyName() - { - return $this->kmsKeyName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/Entry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/Entry.php deleted file mode 100644 index 6f213b75..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/Entry.php +++ /dev/null @@ -1,39 +0,0 @@ -itemCount = $itemCount; - } - public function getItemCount() - { - return $this->itemCount; - } - public function setPredictedLabel($predictedLabel) - { - $this->predictedLabel = $predictedLabel; - } - public function getPredictedLabel() - { - return $this->predictedLabel; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ErrorProto.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ErrorProto.php deleted file mode 100644 index 8d9a35e4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ErrorProto.php +++ /dev/null @@ -1,57 +0,0 @@ -debugInfo = $debugInfo; - } - public function getDebugInfo() - { - return $this->debugInfo; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } - public function setReason($reason) - { - $this->reason = $reason; - } - public function getReason() - { - return $this->reason; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/EvaluationMetrics.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/EvaluationMetrics.php deleted file mode 100644 index 48751aa7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/EvaluationMetrics.php +++ /dev/null @@ -1,85 +0,0 @@ -binaryClassificationMetrics = $binaryClassificationMetrics; - } - /** - * @return Google_Service_Bigquery_BinaryClassificationMetrics - */ - public function getBinaryClassificationMetrics() - { - return $this->binaryClassificationMetrics; - } - /** - * @param Google_Service_Bigquery_ClusteringMetrics - */ - public function setClusteringMetrics(Google_Service_Bigquery_ClusteringMetrics $clusteringMetrics) - { - $this->clusteringMetrics = $clusteringMetrics; - } - /** - * @return Google_Service_Bigquery_ClusteringMetrics - */ - public function getClusteringMetrics() - { - return $this->clusteringMetrics; - } - /** - * @param Google_Service_Bigquery_MultiClassClassificationMetrics - */ - public function setMultiClassClassificationMetrics(Google_Service_Bigquery_MultiClassClassificationMetrics $multiClassClassificationMetrics) - { - $this->multiClassClassificationMetrics = $multiClassClassificationMetrics; - } - /** - * @return Google_Service_Bigquery_MultiClassClassificationMetrics - */ - public function getMultiClassClassificationMetrics() - { - return $this->multiClassClassificationMetrics; - } - /** - * @param Google_Service_Bigquery_RegressionMetrics - */ - public function setRegressionMetrics(Google_Service_Bigquery_RegressionMetrics $regressionMetrics) - { - $this->regressionMetrics = $regressionMetrics; - } - /** - * @return Google_Service_Bigquery_RegressionMetrics - */ - public function getRegressionMetrics() - { - return $this->regressionMetrics; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ExplainQueryStage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ExplainQueryStage.php deleted file mode 100644 index df9ff869..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ExplainQueryStage.php +++ /dev/null @@ -1,299 +0,0 @@ -completedParallelInputs = $completedParallelInputs; - } - public function getCompletedParallelInputs() - { - return $this->completedParallelInputs; - } - public function setComputeMsAvg($computeMsAvg) - { - $this->computeMsAvg = $computeMsAvg; - } - public function getComputeMsAvg() - { - return $this->computeMsAvg; - } - public function setComputeMsMax($computeMsMax) - { - $this->computeMsMax = $computeMsMax; - } - public function getComputeMsMax() - { - return $this->computeMsMax; - } - public function setComputeRatioAvg($computeRatioAvg) - { - $this->computeRatioAvg = $computeRatioAvg; - } - public function getComputeRatioAvg() - { - return $this->computeRatioAvg; - } - public function setComputeRatioMax($computeRatioMax) - { - $this->computeRatioMax = $computeRatioMax; - } - public function getComputeRatioMax() - { - return $this->computeRatioMax; - } - public function setEndMs($endMs) - { - $this->endMs = $endMs; - } - public function getEndMs() - { - return $this->endMs; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setInputStages($inputStages) - { - $this->inputStages = $inputStages; - } - public function getInputStages() - { - return $this->inputStages; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setParallelInputs($parallelInputs) - { - $this->parallelInputs = $parallelInputs; - } - public function getParallelInputs() - { - return $this->parallelInputs; - } - public function setReadMsAvg($readMsAvg) - { - $this->readMsAvg = $readMsAvg; - } - public function getReadMsAvg() - { - return $this->readMsAvg; - } - public function setReadMsMax($readMsMax) - { - $this->readMsMax = $readMsMax; - } - public function getReadMsMax() - { - return $this->readMsMax; - } - public function setReadRatioAvg($readRatioAvg) - { - $this->readRatioAvg = $readRatioAvg; - } - public function getReadRatioAvg() - { - return $this->readRatioAvg; - } - public function setReadRatioMax($readRatioMax) - { - $this->readRatioMax = $readRatioMax; - } - public function getReadRatioMax() - { - return $this->readRatioMax; - } - public function setRecordsRead($recordsRead) - { - $this->recordsRead = $recordsRead; - } - public function getRecordsRead() - { - return $this->recordsRead; - } - public function setRecordsWritten($recordsWritten) - { - $this->recordsWritten = $recordsWritten; - } - public function getRecordsWritten() - { - return $this->recordsWritten; - } - public function setShuffleOutputBytes($shuffleOutputBytes) - { - $this->shuffleOutputBytes = $shuffleOutputBytes; - } - public function getShuffleOutputBytes() - { - return $this->shuffleOutputBytes; - } - public function setShuffleOutputBytesSpilled($shuffleOutputBytesSpilled) - { - $this->shuffleOutputBytesSpilled = $shuffleOutputBytesSpilled; - } - public function getShuffleOutputBytesSpilled() - { - return $this->shuffleOutputBytesSpilled; - } - public function setSlotMs($slotMs) - { - $this->slotMs = $slotMs; - } - public function getSlotMs() - { - return $this->slotMs; - } - public function setStartMs($startMs) - { - $this->startMs = $startMs; - } - public function getStartMs() - { - return $this->startMs; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - /** - * @param Google_Service_Bigquery_ExplainQueryStep - */ - public function setSteps($steps) - { - $this->steps = $steps; - } - /** - * @return Google_Service_Bigquery_ExplainQueryStep - */ - public function getSteps() - { - return $this->steps; - } - public function setWaitMsAvg($waitMsAvg) - { - $this->waitMsAvg = $waitMsAvg; - } - public function getWaitMsAvg() - { - return $this->waitMsAvg; - } - public function setWaitMsMax($waitMsMax) - { - $this->waitMsMax = $waitMsMax; - } - public function getWaitMsMax() - { - return $this->waitMsMax; - } - public function setWaitRatioAvg($waitRatioAvg) - { - $this->waitRatioAvg = $waitRatioAvg; - } - public function getWaitRatioAvg() - { - return $this->waitRatioAvg; - } - public function setWaitRatioMax($waitRatioMax) - { - $this->waitRatioMax = $waitRatioMax; - } - public function getWaitRatioMax() - { - return $this->waitRatioMax; - } - public function setWriteMsAvg($writeMsAvg) - { - $this->writeMsAvg = $writeMsAvg; - } - public function getWriteMsAvg() - { - return $this->writeMsAvg; - } - public function setWriteMsMax($writeMsMax) - { - $this->writeMsMax = $writeMsMax; - } - public function getWriteMsMax() - { - return $this->writeMsMax; - } - public function setWriteRatioAvg($writeRatioAvg) - { - $this->writeRatioAvg = $writeRatioAvg; - } - public function getWriteRatioAvg() - { - return $this->writeRatioAvg; - } - public function setWriteRatioMax($writeRatioMax) - { - $this->writeRatioMax = $writeRatioMax; - } - public function getWriteRatioMax() - { - return $this->writeRatioMax; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ExplainQueryStep.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ExplainQueryStep.php deleted file mode 100644 index e453de05..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ExplainQueryStep.php +++ /dev/null @@ -1,40 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setSubsteps($substeps) - { - $this->substeps = $substeps; - } - public function getSubsteps() - { - return $this->substeps; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ExternalDataConfiguration.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ExternalDataConfiguration.php deleted file mode 100644 index 075a3b49..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ExternalDataConfiguration.php +++ /dev/null @@ -1,165 +0,0 @@ -autodetect = $autodetect; - } - public function getAutodetect() - { - return $this->autodetect; - } - /** - * @param Google_Service_Bigquery_BigtableOptions - */ - public function setBigtableOptions(Google_Service_Bigquery_BigtableOptions $bigtableOptions) - { - $this->bigtableOptions = $bigtableOptions; - } - /** - * @return Google_Service_Bigquery_BigtableOptions - */ - public function getBigtableOptions() - { - return $this->bigtableOptions; - } - public function setCompression($compression) - { - $this->compression = $compression; - } - public function getCompression() - { - return $this->compression; - } - /** - * @param Google_Service_Bigquery_CsvOptions - */ - public function setCsvOptions(Google_Service_Bigquery_CsvOptions $csvOptions) - { - $this->csvOptions = $csvOptions; - } - /** - * @return Google_Service_Bigquery_CsvOptions - */ - public function getCsvOptions() - { - return $this->csvOptions; - } - /** - * @param Google_Service_Bigquery_GoogleSheetsOptions - */ - public function setGoogleSheetsOptions(Google_Service_Bigquery_GoogleSheetsOptions $googleSheetsOptions) - { - $this->googleSheetsOptions = $googleSheetsOptions; - } - /** - * @return Google_Service_Bigquery_GoogleSheetsOptions - */ - public function getGoogleSheetsOptions() - { - return $this->googleSheetsOptions; - } - public function setHivePartitioningMode($hivePartitioningMode) - { - $this->hivePartitioningMode = $hivePartitioningMode; - } - public function getHivePartitioningMode() - { - return $this->hivePartitioningMode; - } - /** - * @param Google_Service_Bigquery_HivePartitioningOptions - */ - public function setHivePartitioningOptions(Google_Service_Bigquery_HivePartitioningOptions $hivePartitioningOptions) - { - $this->hivePartitioningOptions = $hivePartitioningOptions; - } - /** - * @return Google_Service_Bigquery_HivePartitioningOptions - */ - public function getHivePartitioningOptions() - { - return $this->hivePartitioningOptions; - } - public function setIgnoreUnknownValues($ignoreUnknownValues) - { - $this->ignoreUnknownValues = $ignoreUnknownValues; - } - public function getIgnoreUnknownValues() - { - return $this->ignoreUnknownValues; - } - public function setMaxBadRecords($maxBadRecords) - { - $this->maxBadRecords = $maxBadRecords; - } - public function getMaxBadRecords() - { - return $this->maxBadRecords; - } - /** - * @param Google_Service_Bigquery_TableSchema - */ - public function setSchema(Google_Service_Bigquery_TableSchema $schema) - { - $this->schema = $schema; - } - /** - * @return Google_Service_Bigquery_TableSchema - */ - public function getSchema() - { - return $this->schema; - } - public function setSourceFormat($sourceFormat) - { - $this->sourceFormat = $sourceFormat; - } - public function getSourceFormat() - { - return $this->sourceFormat; - } - public function setSourceUris($sourceUris) - { - $this->sourceUris = $sourceUris; - } - public function getSourceUris() - { - return $this->sourceUris; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/FeatureValue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/FeatureValue.php deleted file mode 100644 index 1f2b3dfd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/FeatureValue.php +++ /dev/null @@ -1,55 +0,0 @@ -categoricalValue = $categoricalValue; - } - /** - * @return Google_Service_Bigquery_CategoricalValue - */ - public function getCategoricalValue() - { - return $this->categoricalValue; - } - public function setFeatureColumn($featureColumn) - { - $this->featureColumn = $featureColumn; - } - public function getFeatureColumn() - { - return $this->featureColumn; - } - public function setNumericalValue($numericalValue) - { - $this->numericalValue = $numericalValue; - } - public function getNumericalValue() - { - return $this->numericalValue; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/GetQueryResultsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/GetQueryResultsResponse.php deleted file mode 100644 index c623a34b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/GetQueryResultsResponse.php +++ /dev/null @@ -1,158 +0,0 @@ -cacheHit = $cacheHit; - } - public function getCacheHit() - { - return $this->cacheHit; - } - /** - * @param Google_Service_Bigquery_ErrorProto - */ - public function setErrors($errors) - { - $this->errors = $errors; - } - /** - * @return Google_Service_Bigquery_ErrorProto - */ - public function getErrors() - { - return $this->errors; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setJobComplete($jobComplete) - { - $this->jobComplete = $jobComplete; - } - public function getJobComplete() - { - return $this->jobComplete; - } - /** - * @param Google_Service_Bigquery_JobReference - */ - public function setJobReference(Google_Service_Bigquery_JobReference $jobReference) - { - $this->jobReference = $jobReference; - } - /** - * @return Google_Service_Bigquery_JobReference - */ - public function getJobReference() - { - return $this->jobReference; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNumDmlAffectedRows($numDmlAffectedRows) - { - $this->numDmlAffectedRows = $numDmlAffectedRows; - } - public function getNumDmlAffectedRows() - { - return $this->numDmlAffectedRows; - } - public function setPageToken($pageToken) - { - $this->pageToken = $pageToken; - } - public function getPageToken() - { - return $this->pageToken; - } - /** - * @param Google_Service_Bigquery_TableRow - */ - public function setRows($rows) - { - $this->rows = $rows; - } - /** - * @return Google_Service_Bigquery_TableRow - */ - public function getRows() - { - return $this->rows; - } - /** - * @param Google_Service_Bigquery_TableSchema - */ - public function setSchema(Google_Service_Bigquery_TableSchema $schema) - { - $this->schema = $schema; - } - /** - * @return Google_Service_Bigquery_TableSchema - */ - public function getSchema() - { - return $this->schema; - } - public function setTotalBytesProcessed($totalBytesProcessed) - { - $this->totalBytesProcessed = $totalBytesProcessed; - } - public function getTotalBytesProcessed() - { - return $this->totalBytesProcessed; - } - public function setTotalRows($totalRows) - { - $this->totalRows = $totalRows; - } - public function getTotalRows() - { - return $this->totalRows; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/GetServiceAccountResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/GetServiceAccountResponse.php deleted file mode 100644 index 69d64598..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/GetServiceAccountResponse.php +++ /dev/null @@ -1,39 +0,0 @@ -email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/GoogleSheetsOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/GoogleSheetsOptions.php deleted file mode 100644 index 3da1a49b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/GoogleSheetsOptions.php +++ /dev/null @@ -1,39 +0,0 @@ -range = $range; - } - public function getRange() - { - return $this->range; - } - public function setSkipLeadingRows($skipLeadingRows) - { - $this->skipLeadingRows = $skipLeadingRows; - } - public function getSkipLeadingRows() - { - return $this->skipLeadingRows; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/HivePartitioningOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/HivePartitioningOptions.php deleted file mode 100644 index 28e88925..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/HivePartitioningOptions.php +++ /dev/null @@ -1,39 +0,0 @@ -mode = $mode; - } - public function getMode() - { - return $this->mode; - } - public function setSourceUriPrefix($sourceUriPrefix) - { - $this->sourceUriPrefix = $sourceUriPrefix; - } - public function getSourceUriPrefix() - { - return $this->sourceUriPrefix; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/IterationResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/IterationResult.php deleted file mode 100644 index 4b4e1b73..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/IterationResult.php +++ /dev/null @@ -1,99 +0,0 @@ -arimaResult = $arimaResult; - } - /** - * @return Google_Service_Bigquery_ArimaResult - */ - public function getArimaResult() - { - return $this->arimaResult; - } - /** - * @param Google_Service_Bigquery_ClusterInfo - */ - public function setClusterInfos($clusterInfos) - { - $this->clusterInfos = $clusterInfos; - } - /** - * @return Google_Service_Bigquery_ClusterInfo - */ - public function getClusterInfos() - { - return $this->clusterInfos; - } - public function setDurationMs($durationMs) - { - $this->durationMs = $durationMs; - } - public function getDurationMs() - { - return $this->durationMs; - } - public function setEvalLoss($evalLoss) - { - $this->evalLoss = $evalLoss; - } - public function getEvalLoss() - { - return $this->evalLoss; - } - public function setIndex($index) - { - $this->index = $index; - } - public function getIndex() - { - return $this->index; - } - public function setLearnRate($learnRate) - { - $this->learnRate = $learnRate; - } - public function getLearnRate() - { - return $this->learnRate; - } - public function setTrainingLoss($trainingLoss) - { - $this->trainingLoss = $trainingLoss; - } - public function getTrainingLoss() - { - return $this->trainingLoss; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/Job.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/Job.php deleted file mode 100644 index dc3f2789..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/Job.php +++ /dev/null @@ -1,133 +0,0 @@ - "user_email", - ); - protected $configurationType = 'Google_Service_Bigquery_JobConfiguration'; - protected $configurationDataType = ''; - public $etag; - public $id; - protected $jobReferenceType = 'Google_Service_Bigquery_JobReference'; - protected $jobReferenceDataType = ''; - public $kind; - public $selfLink; - protected $statisticsType = 'Google_Service_Bigquery_JobStatistics'; - protected $statisticsDataType = ''; - protected $statusType = 'Google_Service_Bigquery_JobStatus'; - protected $statusDataType = ''; - public $userEmail; - - /** - * @param Google_Service_Bigquery_JobConfiguration - */ - public function setConfiguration(Google_Service_Bigquery_JobConfiguration $configuration) - { - $this->configuration = $configuration; - } - /** - * @return Google_Service_Bigquery_JobConfiguration - */ - public function getConfiguration() - { - return $this->configuration; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Bigquery_JobReference - */ - public function setJobReference(Google_Service_Bigquery_JobReference $jobReference) - { - $this->jobReference = $jobReference; - } - /** - * @return Google_Service_Bigquery_JobReference - */ - public function getJobReference() - { - return $this->jobReference; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Bigquery_JobStatistics - */ - public function setStatistics(Google_Service_Bigquery_JobStatistics $statistics) - { - $this->statistics = $statistics; - } - /** - * @return Google_Service_Bigquery_JobStatistics - */ - public function getStatistics() - { - return $this->statistics; - } - /** - * @param Google_Service_Bigquery_JobStatus - */ - public function setStatus(Google_Service_Bigquery_JobStatus $status) - { - $this->status = $status; - } - /** - * @return Google_Service_Bigquery_JobStatus - */ - public function getStatus() - { - return $this->status; - } - public function setUserEmail($userEmail) - { - $this->userEmail = $userEmail; - } - public function getUserEmail() - { - return $this->userEmail; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/JobCancelResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/JobCancelResponse.php deleted file mode 100644 index 524b95d5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/JobCancelResponse.php +++ /dev/null @@ -1,46 +0,0 @@ -job = $job; - } - /** - * @return Google_Service_Bigquery_Job - */ - public function getJob() - { - return $this->job; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/JobConfiguration.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/JobConfiguration.php deleted file mode 100644 index 3d625b3e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/JobConfiguration.php +++ /dev/null @@ -1,121 +0,0 @@ -copy = $copy; - } - /** - * @return Google_Service_Bigquery_JobConfigurationTableCopy - */ - public function getCopy() - { - return $this->copy; - } - public function setDryRun($dryRun) - { - $this->dryRun = $dryRun; - } - public function getDryRun() - { - return $this->dryRun; - } - /** - * @param Google_Service_Bigquery_JobConfigurationExtract - */ - public function setExtract(Google_Service_Bigquery_JobConfigurationExtract $extract) - { - $this->extract = $extract; - } - /** - * @return Google_Service_Bigquery_JobConfigurationExtract - */ - public function getExtract() - { - return $this->extract; - } - public function setJobTimeoutMs($jobTimeoutMs) - { - $this->jobTimeoutMs = $jobTimeoutMs; - } - public function getJobTimeoutMs() - { - return $this->jobTimeoutMs; - } - public function setJobType($jobType) - { - $this->jobType = $jobType; - } - public function getJobType() - { - return $this->jobType; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - /** - * @param Google_Service_Bigquery_JobConfigurationLoad - */ - public function setLoad(Google_Service_Bigquery_JobConfigurationLoad $load) - { - $this->load = $load; - } - /** - * @return Google_Service_Bigquery_JobConfigurationLoad - */ - public function getLoad() - { - return $this->load; - } - /** - * @param Google_Service_Bigquery_JobConfigurationQuery - */ - public function setQuery(Google_Service_Bigquery_JobConfigurationQuery $query) - { - $this->query = $query; - } - /** - * @return Google_Service_Bigquery_JobConfigurationQuery - */ - public function getQuery() - { - return $this->query; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/JobConfigurationExtract.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/JobConfigurationExtract.php deleted file mode 100644 index 4e7df8a5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/JobConfigurationExtract.php +++ /dev/null @@ -1,117 +0,0 @@ -compression = $compression; - } - public function getCompression() - { - return $this->compression; - } - public function setDestinationFormat($destinationFormat) - { - $this->destinationFormat = $destinationFormat; - } - public function getDestinationFormat() - { - return $this->destinationFormat; - } - public function setDestinationUri($destinationUri) - { - $this->destinationUri = $destinationUri; - } - public function getDestinationUri() - { - return $this->destinationUri; - } - public function setDestinationUris($destinationUris) - { - $this->destinationUris = $destinationUris; - } - public function getDestinationUris() - { - return $this->destinationUris; - } - public function setFieldDelimiter($fieldDelimiter) - { - $this->fieldDelimiter = $fieldDelimiter; - } - public function getFieldDelimiter() - { - return $this->fieldDelimiter; - } - public function setPrintHeader($printHeader) - { - $this->printHeader = $printHeader; - } - public function getPrintHeader() - { - return $this->printHeader; - } - /** - * @param Google_Service_Bigquery_ModelReference - */ - public function setSourceModel(Google_Service_Bigquery_ModelReference $sourceModel) - { - $this->sourceModel = $sourceModel; - } - /** - * @return Google_Service_Bigquery_ModelReference - */ - public function getSourceModel() - { - return $this->sourceModel; - } - /** - * @param Google_Service_Bigquery_TableReference - */ - public function setSourceTable(Google_Service_Bigquery_TableReference $sourceTable) - { - $this->sourceTable = $sourceTable; - } - /** - * @return Google_Service_Bigquery_TableReference - */ - public function getSourceTable() - { - return $this->sourceTable; - } - public function setUseAvroLogicalTypes($useAvroLogicalTypes) - { - $this->useAvroLogicalTypes = $useAvroLogicalTypes; - } - public function getUseAvroLogicalTypes() - { - return $this->useAvroLogicalTypes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/JobConfigurationLoad.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/JobConfigurationLoad.php deleted file mode 100644 index f6fa1bf5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/JobConfigurationLoad.php +++ /dev/null @@ -1,330 +0,0 @@ -allowJaggedRows = $allowJaggedRows; - } - public function getAllowJaggedRows() - { - return $this->allowJaggedRows; - } - public function setAllowQuotedNewlines($allowQuotedNewlines) - { - $this->allowQuotedNewlines = $allowQuotedNewlines; - } - public function getAllowQuotedNewlines() - { - return $this->allowQuotedNewlines; - } - public function setAutodetect($autodetect) - { - $this->autodetect = $autodetect; - } - public function getAutodetect() - { - return $this->autodetect; - } - /** - * @param Google_Service_Bigquery_Clustering - */ - public function setClustering(Google_Service_Bigquery_Clustering $clustering) - { - $this->clustering = $clustering; - } - /** - * @return Google_Service_Bigquery_Clustering - */ - public function getClustering() - { - return $this->clustering; - } - public function setCreateDisposition($createDisposition) - { - $this->createDisposition = $createDisposition; - } - public function getCreateDisposition() - { - return $this->createDisposition; - } - /** - * @param Google_Service_Bigquery_EncryptionConfiguration - */ - public function setDestinationEncryptionConfiguration(Google_Service_Bigquery_EncryptionConfiguration $destinationEncryptionConfiguration) - { - $this->destinationEncryptionConfiguration = $destinationEncryptionConfiguration; - } - /** - * @return Google_Service_Bigquery_EncryptionConfiguration - */ - public function getDestinationEncryptionConfiguration() - { - return $this->destinationEncryptionConfiguration; - } - /** - * @param Google_Service_Bigquery_TableReference - */ - public function setDestinationTable(Google_Service_Bigquery_TableReference $destinationTable) - { - $this->destinationTable = $destinationTable; - } - /** - * @return Google_Service_Bigquery_TableReference - */ - public function getDestinationTable() - { - return $this->destinationTable; - } - /** - * @param Google_Service_Bigquery_DestinationTableProperties - */ - public function setDestinationTableProperties(Google_Service_Bigquery_DestinationTableProperties $destinationTableProperties) - { - $this->destinationTableProperties = $destinationTableProperties; - } - /** - * @return Google_Service_Bigquery_DestinationTableProperties - */ - public function getDestinationTableProperties() - { - return $this->destinationTableProperties; - } - public function setEncoding($encoding) - { - $this->encoding = $encoding; - } - public function getEncoding() - { - return $this->encoding; - } - public function setFieldDelimiter($fieldDelimiter) - { - $this->fieldDelimiter = $fieldDelimiter; - } - public function getFieldDelimiter() - { - return $this->fieldDelimiter; - } - public function setHivePartitioningMode($hivePartitioningMode) - { - $this->hivePartitioningMode = $hivePartitioningMode; - } - public function getHivePartitioningMode() - { - return $this->hivePartitioningMode; - } - /** - * @param Google_Service_Bigquery_HivePartitioningOptions - */ - public function setHivePartitioningOptions(Google_Service_Bigquery_HivePartitioningOptions $hivePartitioningOptions) - { - $this->hivePartitioningOptions = $hivePartitioningOptions; - } - /** - * @return Google_Service_Bigquery_HivePartitioningOptions - */ - public function getHivePartitioningOptions() - { - return $this->hivePartitioningOptions; - } - public function setIgnoreUnknownValues($ignoreUnknownValues) - { - $this->ignoreUnknownValues = $ignoreUnknownValues; - } - public function getIgnoreUnknownValues() - { - return $this->ignoreUnknownValues; - } - public function setMaxBadRecords($maxBadRecords) - { - $this->maxBadRecords = $maxBadRecords; - } - public function getMaxBadRecords() - { - return $this->maxBadRecords; - } - public function setNullMarker($nullMarker) - { - $this->nullMarker = $nullMarker; - } - public function getNullMarker() - { - return $this->nullMarker; - } - public function setProjectionFields($projectionFields) - { - $this->projectionFields = $projectionFields; - } - public function getProjectionFields() - { - return $this->projectionFields; - } - public function setQuote($quote) - { - $this->quote = $quote; - } - public function getQuote() - { - return $this->quote; - } - /** - * @param Google_Service_Bigquery_RangePartitioning - */ - public function setRangePartitioning(Google_Service_Bigquery_RangePartitioning $rangePartitioning) - { - $this->rangePartitioning = $rangePartitioning; - } - /** - * @return Google_Service_Bigquery_RangePartitioning - */ - public function getRangePartitioning() - { - return $this->rangePartitioning; - } - /** - * @param Google_Service_Bigquery_TableSchema - */ - public function setSchema(Google_Service_Bigquery_TableSchema $schema) - { - $this->schema = $schema; - } - /** - * @return Google_Service_Bigquery_TableSchema - */ - public function getSchema() - { - return $this->schema; - } - public function setSchemaInline($schemaInline) - { - $this->schemaInline = $schemaInline; - } - public function getSchemaInline() - { - return $this->schemaInline; - } - public function setSchemaInlineFormat($schemaInlineFormat) - { - $this->schemaInlineFormat = $schemaInlineFormat; - } - public function getSchemaInlineFormat() - { - return $this->schemaInlineFormat; - } - public function setSchemaUpdateOptions($schemaUpdateOptions) - { - $this->schemaUpdateOptions = $schemaUpdateOptions; - } - public function getSchemaUpdateOptions() - { - return $this->schemaUpdateOptions; - } - public function setSkipLeadingRows($skipLeadingRows) - { - $this->skipLeadingRows = $skipLeadingRows; - } - public function getSkipLeadingRows() - { - return $this->skipLeadingRows; - } - public function setSourceFormat($sourceFormat) - { - $this->sourceFormat = $sourceFormat; - } - public function getSourceFormat() - { - return $this->sourceFormat; - } - public function setSourceUris($sourceUris) - { - $this->sourceUris = $sourceUris; - } - public function getSourceUris() - { - return $this->sourceUris; - } - /** - * @param Google_Service_Bigquery_TimePartitioning - */ - public function setTimePartitioning(Google_Service_Bigquery_TimePartitioning $timePartitioning) - { - $this->timePartitioning = $timePartitioning; - } - /** - * @return Google_Service_Bigquery_TimePartitioning - */ - public function getTimePartitioning() - { - return $this->timePartitioning; - } - public function setUseAvroLogicalTypes($useAvroLogicalTypes) - { - $this->useAvroLogicalTypes = $useAvroLogicalTypes; - } - public function getUseAvroLogicalTypes() - { - return $this->useAvroLogicalTypes; - } - public function setWriteDisposition($writeDisposition) - { - $this->writeDisposition = $writeDisposition; - } - public function getWriteDisposition() - { - return $this->writeDisposition; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/JobConfigurationQuery.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/JobConfigurationQuery.php deleted file mode 100644 index 9d26ac8f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/JobConfigurationQuery.php +++ /dev/null @@ -1,283 +0,0 @@ -allowLargeResults = $allowLargeResults; - } - public function getAllowLargeResults() - { - return $this->allowLargeResults; - } - /** - * @param Google_Service_Bigquery_Clustering - */ - public function setClustering(Google_Service_Bigquery_Clustering $clustering) - { - $this->clustering = $clustering; - } - /** - * @return Google_Service_Bigquery_Clustering - */ - public function getClustering() - { - return $this->clustering; - } - public function setCreateDisposition($createDisposition) - { - $this->createDisposition = $createDisposition; - } - public function getCreateDisposition() - { - return $this->createDisposition; - } - /** - * @param Google_Service_Bigquery_DatasetReference - */ - public function setDefaultDataset(Google_Service_Bigquery_DatasetReference $defaultDataset) - { - $this->defaultDataset = $defaultDataset; - } - /** - * @return Google_Service_Bigquery_DatasetReference - */ - public function getDefaultDataset() - { - return $this->defaultDataset; - } - /** - * @param Google_Service_Bigquery_EncryptionConfiguration - */ - public function setDestinationEncryptionConfiguration(Google_Service_Bigquery_EncryptionConfiguration $destinationEncryptionConfiguration) - { - $this->destinationEncryptionConfiguration = $destinationEncryptionConfiguration; - } - /** - * @return Google_Service_Bigquery_EncryptionConfiguration - */ - public function getDestinationEncryptionConfiguration() - { - return $this->destinationEncryptionConfiguration; - } - /** - * @param Google_Service_Bigquery_TableReference - */ - public function setDestinationTable(Google_Service_Bigquery_TableReference $destinationTable) - { - $this->destinationTable = $destinationTable; - } - /** - * @return Google_Service_Bigquery_TableReference - */ - public function getDestinationTable() - { - return $this->destinationTable; - } - public function setFlattenResults($flattenResults) - { - $this->flattenResults = $flattenResults; - } - public function getFlattenResults() - { - return $this->flattenResults; - } - public function setMaximumBillingTier($maximumBillingTier) - { - $this->maximumBillingTier = $maximumBillingTier; - } - public function getMaximumBillingTier() - { - return $this->maximumBillingTier; - } - public function setMaximumBytesBilled($maximumBytesBilled) - { - $this->maximumBytesBilled = $maximumBytesBilled; - } - public function getMaximumBytesBilled() - { - return $this->maximumBytesBilled; - } - public function setParameterMode($parameterMode) - { - $this->parameterMode = $parameterMode; - } - public function getParameterMode() - { - return $this->parameterMode; - } - public function setPreserveNulls($preserveNulls) - { - $this->preserveNulls = $preserveNulls; - } - public function getPreserveNulls() - { - return $this->preserveNulls; - } - public function setPriority($priority) - { - $this->priority = $priority; - } - public function getPriority() - { - return $this->priority; - } - public function setQuery($query) - { - $this->query = $query; - } - public function getQuery() - { - return $this->query; - } - /** - * @param Google_Service_Bigquery_QueryParameter - */ - public function setQueryParameters($queryParameters) - { - $this->queryParameters = $queryParameters; - } - /** - * @return Google_Service_Bigquery_QueryParameter - */ - public function getQueryParameters() - { - return $this->queryParameters; - } - /** - * @param Google_Service_Bigquery_RangePartitioning - */ - public function setRangePartitioning(Google_Service_Bigquery_RangePartitioning $rangePartitioning) - { - $this->rangePartitioning = $rangePartitioning; - } - /** - * @return Google_Service_Bigquery_RangePartitioning - */ - public function getRangePartitioning() - { - return $this->rangePartitioning; - } - public function setSchemaUpdateOptions($schemaUpdateOptions) - { - $this->schemaUpdateOptions = $schemaUpdateOptions; - } - public function getSchemaUpdateOptions() - { - return $this->schemaUpdateOptions; - } - /** - * @param Google_Service_Bigquery_ExternalDataConfiguration - */ - public function setTableDefinitions($tableDefinitions) - { - $this->tableDefinitions = $tableDefinitions; - } - /** - * @return Google_Service_Bigquery_ExternalDataConfiguration - */ - public function getTableDefinitions() - { - return $this->tableDefinitions; - } - /** - * @param Google_Service_Bigquery_TimePartitioning - */ - public function setTimePartitioning(Google_Service_Bigquery_TimePartitioning $timePartitioning) - { - $this->timePartitioning = $timePartitioning; - } - /** - * @return Google_Service_Bigquery_TimePartitioning - */ - public function getTimePartitioning() - { - return $this->timePartitioning; - } - public function setUseLegacySql($useLegacySql) - { - $this->useLegacySql = $useLegacySql; - } - public function getUseLegacySql() - { - return $this->useLegacySql; - } - public function setUseQueryCache($useQueryCache) - { - $this->useQueryCache = $useQueryCache; - } - public function getUseQueryCache() - { - return $this->useQueryCache; - } - /** - * @param Google_Service_Bigquery_UserDefinedFunctionResource - */ - public function setUserDefinedFunctionResources($userDefinedFunctionResources) - { - $this->userDefinedFunctionResources = $userDefinedFunctionResources; - } - /** - * @return Google_Service_Bigquery_UserDefinedFunctionResource - */ - public function getUserDefinedFunctionResources() - { - return $this->userDefinedFunctionResources; - } - public function setWriteDisposition($writeDisposition) - { - $this->writeDisposition = $writeDisposition; - } - public function getWriteDisposition() - { - return $this->writeDisposition; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/JobConfigurationTableCopy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/JobConfigurationTableCopy.php deleted file mode 100644 index 721f5be0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/JobConfigurationTableCopy.php +++ /dev/null @@ -1,104 +0,0 @@ -createDisposition = $createDisposition; - } - public function getCreateDisposition() - { - return $this->createDisposition; - } - /** - * @param Google_Service_Bigquery_EncryptionConfiguration - */ - public function setDestinationEncryptionConfiguration(Google_Service_Bigquery_EncryptionConfiguration $destinationEncryptionConfiguration) - { - $this->destinationEncryptionConfiguration = $destinationEncryptionConfiguration; - } - /** - * @return Google_Service_Bigquery_EncryptionConfiguration - */ - public function getDestinationEncryptionConfiguration() - { - return $this->destinationEncryptionConfiguration; - } - /** - * @param Google_Service_Bigquery_TableReference - */ - public function setDestinationTable(Google_Service_Bigquery_TableReference $destinationTable) - { - $this->destinationTable = $destinationTable; - } - /** - * @return Google_Service_Bigquery_TableReference - */ - public function getDestinationTable() - { - return $this->destinationTable; - } - /** - * @param Google_Service_Bigquery_TableReference - */ - public function setSourceTable(Google_Service_Bigquery_TableReference $sourceTable) - { - $this->sourceTable = $sourceTable; - } - /** - * @return Google_Service_Bigquery_TableReference - */ - public function getSourceTable() - { - return $this->sourceTable; - } - /** - * @param Google_Service_Bigquery_TableReference - */ - public function setSourceTables($sourceTables) - { - $this->sourceTables = $sourceTables; - } - /** - * @return Google_Service_Bigquery_TableReference - */ - public function getSourceTables() - { - return $this->sourceTables; - } - public function setWriteDisposition($writeDisposition) - { - $this->writeDisposition = $writeDisposition; - } - public function getWriteDisposition() - { - return $this->writeDisposition; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/JobList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/JobList.php deleted file mode 100644 index 22a28ad6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/JobList.php +++ /dev/null @@ -1,65 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_Bigquery_JobListJobs - */ - public function setJobs($jobs) - { - $this->jobs = $jobs; - } - /** - * @return Google_Service_Bigquery_JobListJobs - */ - public function getJobs() - { - return $this->jobs; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/JobListJobs.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/JobListJobs.php deleted file mode 100644 index be435381..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/JobListJobs.php +++ /dev/null @@ -1,140 +0,0 @@ - "user_email", - ); - protected $configurationType = 'Google_Service_Bigquery_JobConfiguration'; - protected $configurationDataType = ''; - protected $errorResultType = 'Google_Service_Bigquery_ErrorProto'; - protected $errorResultDataType = ''; - public $id; - protected $jobReferenceType = 'Google_Service_Bigquery_JobReference'; - protected $jobReferenceDataType = ''; - public $kind; - public $state; - protected $statisticsType = 'Google_Service_Bigquery_JobStatistics'; - protected $statisticsDataType = ''; - protected $statusType = 'Google_Service_Bigquery_JobStatus'; - protected $statusDataType = ''; - public $userEmail; - - /** - * @param Google_Service_Bigquery_JobConfiguration - */ - public function setConfiguration(Google_Service_Bigquery_JobConfiguration $configuration) - { - $this->configuration = $configuration; - } - /** - * @return Google_Service_Bigquery_JobConfiguration - */ - public function getConfiguration() - { - return $this->configuration; - } - /** - * @param Google_Service_Bigquery_ErrorProto - */ - public function setErrorResult(Google_Service_Bigquery_ErrorProto $errorResult) - { - $this->errorResult = $errorResult; - } - /** - * @return Google_Service_Bigquery_ErrorProto - */ - public function getErrorResult() - { - return $this->errorResult; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Bigquery_JobReference - */ - public function setJobReference(Google_Service_Bigquery_JobReference $jobReference) - { - $this->jobReference = $jobReference; - } - /** - * @return Google_Service_Bigquery_JobReference - */ - public function getJobReference() - { - return $this->jobReference; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - /** - * @param Google_Service_Bigquery_JobStatistics - */ - public function setStatistics(Google_Service_Bigquery_JobStatistics $statistics) - { - $this->statistics = $statistics; - } - /** - * @return Google_Service_Bigquery_JobStatistics - */ - public function getStatistics() - { - return $this->statistics; - } - /** - * @param Google_Service_Bigquery_JobStatus - */ - public function setStatus(Google_Service_Bigquery_JobStatus $status) - { - $this->status = $status; - } - /** - * @return Google_Service_Bigquery_JobStatus - */ - public function getStatus() - { - return $this->status; - } - public function setUserEmail($userEmail) - { - $this->userEmail = $userEmail; - } - public function getUserEmail() - { - return $this->userEmail; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/JobReference.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/JobReference.php deleted file mode 100644 index f5bbc9f4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/JobReference.php +++ /dev/null @@ -1,48 +0,0 @@ -jobId = $jobId; - } - public function getJobId() - { - return $this->jobId; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/JobStatistics.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/JobStatistics.php deleted file mode 100644 index ca61f510..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/JobStatistics.php +++ /dev/null @@ -1,195 +0,0 @@ - "reservation_id", - ); - public $completionRatio; - public $creationTime; - public $endTime; - protected $extractType = 'Google_Service_Bigquery_JobStatistics4'; - protected $extractDataType = ''; - protected $loadType = 'Google_Service_Bigquery_JobStatistics3'; - protected $loadDataType = ''; - public $numChildJobs; - public $parentJobId; - protected $queryType = 'Google_Service_Bigquery_JobStatistics2'; - protected $queryDataType = ''; - public $quotaDeferments; - protected $reservationUsageType = 'Google_Service_Bigquery_JobStatisticsReservationUsage'; - protected $reservationUsageDataType = 'array'; - public $reservationId; - protected $scriptStatisticsType = 'Google_Service_Bigquery_ScriptStatistics'; - protected $scriptStatisticsDataType = ''; - public $startTime; - public $totalBytesProcessed; - public $totalSlotMs; - - public function setCompletionRatio($completionRatio) - { - $this->completionRatio = $completionRatio; - } - public function getCompletionRatio() - { - return $this->completionRatio; - } - public function setCreationTime($creationTime) - { - $this->creationTime = $creationTime; - } - public function getCreationTime() - { - return $this->creationTime; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - /** - * @param Google_Service_Bigquery_JobStatistics4 - */ - public function setExtract(Google_Service_Bigquery_JobStatistics4 $extract) - { - $this->extract = $extract; - } - /** - * @return Google_Service_Bigquery_JobStatistics4 - */ - public function getExtract() - { - return $this->extract; - } - /** - * @param Google_Service_Bigquery_JobStatistics3 - */ - public function setLoad(Google_Service_Bigquery_JobStatistics3 $load) - { - $this->load = $load; - } - /** - * @return Google_Service_Bigquery_JobStatistics3 - */ - public function getLoad() - { - return $this->load; - } - public function setNumChildJobs($numChildJobs) - { - $this->numChildJobs = $numChildJobs; - } - public function getNumChildJobs() - { - return $this->numChildJobs; - } - public function setParentJobId($parentJobId) - { - $this->parentJobId = $parentJobId; - } - public function getParentJobId() - { - return $this->parentJobId; - } - /** - * @param Google_Service_Bigquery_JobStatistics2 - */ - public function setQuery(Google_Service_Bigquery_JobStatistics2 $query) - { - $this->query = $query; - } - /** - * @return Google_Service_Bigquery_JobStatistics2 - */ - public function getQuery() - { - return $this->query; - } - public function setQuotaDeferments($quotaDeferments) - { - $this->quotaDeferments = $quotaDeferments; - } - public function getQuotaDeferments() - { - return $this->quotaDeferments; - } - /** - * @param Google_Service_Bigquery_JobStatisticsReservationUsage - */ - public function setReservationUsage($reservationUsage) - { - $this->reservationUsage = $reservationUsage; - } - /** - * @return Google_Service_Bigquery_JobStatisticsReservationUsage - */ - public function getReservationUsage() - { - return $this->reservationUsage; - } - public function setReservationId($reservationId) - { - $this->reservationId = $reservationId; - } - public function getReservationId() - { - return $this->reservationId; - } - /** - * @param Google_Service_Bigquery_ScriptStatistics - */ - public function setScriptStatistics(Google_Service_Bigquery_ScriptStatistics $scriptStatistics) - { - $this->scriptStatistics = $scriptStatistics; - } - /** - * @return Google_Service_Bigquery_ScriptStatistics - */ - public function getScriptStatistics() - { - return $this->scriptStatistics; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } - public function setTotalBytesProcessed($totalBytesProcessed) - { - $this->totalBytesProcessed = $totalBytesProcessed; - } - public function getTotalBytesProcessed() - { - return $this->totalBytesProcessed; - } - public function setTotalSlotMs($totalSlotMs) - { - $this->totalSlotMs = $totalSlotMs; - } - public function getTotalSlotMs() - { - return $this->totalSlotMs; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/JobStatistics2.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/JobStatistics2.php deleted file mode 100644 index 8f9daf04..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/JobStatistics2.php +++ /dev/null @@ -1,299 +0,0 @@ -billingTier = $billingTier; - } - public function getBillingTier() - { - return $this->billingTier; - } - public function setCacheHit($cacheHit) - { - $this->cacheHit = $cacheHit; - } - public function getCacheHit() - { - return $this->cacheHit; - } - public function setDdlOperationPerformed($ddlOperationPerformed) - { - $this->ddlOperationPerformed = $ddlOperationPerformed; - } - public function getDdlOperationPerformed() - { - return $this->ddlOperationPerformed; - } - /** - * @param Google_Service_Bigquery_RoutineReference - */ - public function setDdlTargetRoutine(Google_Service_Bigquery_RoutineReference $ddlTargetRoutine) - { - $this->ddlTargetRoutine = $ddlTargetRoutine; - } - /** - * @return Google_Service_Bigquery_RoutineReference - */ - public function getDdlTargetRoutine() - { - return $this->ddlTargetRoutine; - } - /** - * @param Google_Service_Bigquery_TableReference - */ - public function setDdlTargetTable(Google_Service_Bigquery_TableReference $ddlTargetTable) - { - $this->ddlTargetTable = $ddlTargetTable; - } - /** - * @return Google_Service_Bigquery_TableReference - */ - public function getDdlTargetTable() - { - return $this->ddlTargetTable; - } - public function setEstimatedBytesProcessed($estimatedBytesProcessed) - { - $this->estimatedBytesProcessed = $estimatedBytesProcessed; - } - public function getEstimatedBytesProcessed() - { - return $this->estimatedBytesProcessed; - } - /** - * @param Google_Service_Bigquery_BigQueryModelTraining - */ - public function setModelTraining(Google_Service_Bigquery_BigQueryModelTraining $modelTraining) - { - $this->modelTraining = $modelTraining; - } - /** - * @return Google_Service_Bigquery_BigQueryModelTraining - */ - public function getModelTraining() - { - return $this->modelTraining; - } - public function setModelTrainingCurrentIteration($modelTrainingCurrentIteration) - { - $this->modelTrainingCurrentIteration = $modelTrainingCurrentIteration; - } - public function getModelTrainingCurrentIteration() - { - return $this->modelTrainingCurrentIteration; - } - public function setModelTrainingExpectedTotalIteration($modelTrainingExpectedTotalIteration) - { - $this->modelTrainingExpectedTotalIteration = $modelTrainingExpectedTotalIteration; - } - public function getModelTrainingExpectedTotalIteration() - { - return $this->modelTrainingExpectedTotalIteration; - } - public function setNumDmlAffectedRows($numDmlAffectedRows) - { - $this->numDmlAffectedRows = $numDmlAffectedRows; - } - public function getNumDmlAffectedRows() - { - return $this->numDmlAffectedRows; - } - /** - * @param Google_Service_Bigquery_ExplainQueryStage - */ - public function setQueryPlan($queryPlan) - { - $this->queryPlan = $queryPlan; - } - /** - * @return Google_Service_Bigquery_ExplainQueryStage - */ - public function getQueryPlan() - { - return $this->queryPlan; - } - /** - * @param Google_Service_Bigquery_RoutineReference - */ - public function setReferencedRoutines($referencedRoutines) - { - $this->referencedRoutines = $referencedRoutines; - } - /** - * @return Google_Service_Bigquery_RoutineReference - */ - public function getReferencedRoutines() - { - return $this->referencedRoutines; - } - /** - * @param Google_Service_Bigquery_TableReference - */ - public function setReferencedTables($referencedTables) - { - $this->referencedTables = $referencedTables; - } - /** - * @return Google_Service_Bigquery_TableReference - */ - public function getReferencedTables() - { - return $this->referencedTables; - } - /** - * @param Google_Service_Bigquery_JobStatistics2ReservationUsage - */ - public function setReservationUsage($reservationUsage) - { - $this->reservationUsage = $reservationUsage; - } - /** - * @return Google_Service_Bigquery_JobStatistics2ReservationUsage - */ - public function getReservationUsage() - { - return $this->reservationUsage; - } - /** - * @param Google_Service_Bigquery_TableSchema - */ - public function setSchema(Google_Service_Bigquery_TableSchema $schema) - { - $this->schema = $schema; - } - /** - * @return Google_Service_Bigquery_TableSchema - */ - public function getSchema() - { - return $this->schema; - } - public function setStatementType($statementType) - { - $this->statementType = $statementType; - } - public function getStatementType() - { - return $this->statementType; - } - /** - * @param Google_Service_Bigquery_QueryTimelineSample - */ - public function setTimeline($timeline) - { - $this->timeline = $timeline; - } - /** - * @return Google_Service_Bigquery_QueryTimelineSample - */ - public function getTimeline() - { - return $this->timeline; - } - public function setTotalBytesBilled($totalBytesBilled) - { - $this->totalBytesBilled = $totalBytesBilled; - } - public function getTotalBytesBilled() - { - return $this->totalBytesBilled; - } - public function setTotalBytesProcessed($totalBytesProcessed) - { - $this->totalBytesProcessed = $totalBytesProcessed; - } - public function getTotalBytesProcessed() - { - return $this->totalBytesProcessed; - } - public function setTotalBytesProcessedAccuracy($totalBytesProcessedAccuracy) - { - $this->totalBytesProcessedAccuracy = $totalBytesProcessedAccuracy; - } - public function getTotalBytesProcessedAccuracy() - { - return $this->totalBytesProcessedAccuracy; - } - public function setTotalPartitionsProcessed($totalPartitionsProcessed) - { - $this->totalPartitionsProcessed = $totalPartitionsProcessed; - } - public function getTotalPartitionsProcessed() - { - return $this->totalPartitionsProcessed; - } - public function setTotalSlotMs($totalSlotMs) - { - $this->totalSlotMs = $totalSlotMs; - } - public function getTotalSlotMs() - { - return $this->totalSlotMs; - } - /** - * @param Google_Service_Bigquery_QueryParameter - */ - public function setUndeclaredQueryParameters($undeclaredQueryParameters) - { - $this->undeclaredQueryParameters = $undeclaredQueryParameters; - } - /** - * @return Google_Service_Bigquery_QueryParameter - */ - public function getUndeclaredQueryParameters() - { - return $this->undeclaredQueryParameters; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/JobStatistics2ReservationUsage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/JobStatistics2ReservationUsage.php deleted file mode 100644 index 7f380550..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/JobStatistics2ReservationUsage.php +++ /dev/null @@ -1,39 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setSlotMs($slotMs) - { - $this->slotMs = $slotMs; - } - public function getSlotMs() - { - return $this->slotMs; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/JobStatistics3.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/JobStatistics3.php deleted file mode 100644 index 47c1263c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/JobStatistics3.php +++ /dev/null @@ -1,66 +0,0 @@ -badRecords = $badRecords; - } - public function getBadRecords() - { - return $this->badRecords; - } - public function setInputFileBytes($inputFileBytes) - { - $this->inputFileBytes = $inputFileBytes; - } - public function getInputFileBytes() - { - return $this->inputFileBytes; - } - public function setInputFiles($inputFiles) - { - $this->inputFiles = $inputFiles; - } - public function getInputFiles() - { - return $this->inputFiles; - } - public function setOutputBytes($outputBytes) - { - $this->outputBytes = $outputBytes; - } - public function getOutputBytes() - { - return $this->outputBytes; - } - public function setOutputRows($outputRows) - { - $this->outputRows = $outputRows; - } - public function getOutputRows() - { - return $this->outputRows; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/JobStatistics4.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/JobStatistics4.php deleted file mode 100644 index af62737c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/JobStatistics4.php +++ /dev/null @@ -1,40 +0,0 @@ -destinationUriFileCounts = $destinationUriFileCounts; - } - public function getDestinationUriFileCounts() - { - return $this->destinationUriFileCounts; - } - public function setInputBytes($inputBytes) - { - $this->inputBytes = $inputBytes; - } - public function getInputBytes() - { - return $this->inputBytes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/JobStatisticsReservationUsage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/JobStatisticsReservationUsage.php deleted file mode 100644 index c6cb8661..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/JobStatisticsReservationUsage.php +++ /dev/null @@ -1,39 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setSlotMs($slotMs) - { - $this->slotMs = $slotMs; - } - public function getSlotMs() - { - return $this->slotMs; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/JobStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/JobStatus.php deleted file mode 100644 index d118b531..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/JobStatus.php +++ /dev/null @@ -1,63 +0,0 @@ -errorResult = $errorResult; - } - /** - * @return Google_Service_Bigquery_ErrorProto - */ - public function getErrorResult() - { - return $this->errorResult; - } - /** - * @param Google_Service_Bigquery_ErrorProto - */ - public function setErrors($errors) - { - $this->errors = $errors; - } - /** - * @return Google_Service_Bigquery_ErrorProto - */ - public function getErrors() - { - return $this->errors; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ListModelsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ListModelsResponse.php deleted file mode 100644 index 9aac51fa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ListModelsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -models = $models; - } - /** - * @return Google_Service_Bigquery_Model - */ - public function getModels() - { - return $this->models; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ListRoutinesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ListRoutinesResponse.php deleted file mode 100644 index e00f3c04..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ListRoutinesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Bigquery_Routine - */ - public function setRoutines($routines) - { - $this->routines = $routines; - } - /** - * @return Google_Service_Bigquery_Routine - */ - public function getRoutines() - { - return $this->routines; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/LocationMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/LocationMetadata.php deleted file mode 100644 index 868371f5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/LocationMetadata.php +++ /dev/null @@ -1,30 +0,0 @@ -legacyLocationId = $legacyLocationId; - } - public function getLegacyLocationId() - { - return $this->legacyLocationId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/MaterializedViewDefinition.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/MaterializedViewDefinition.php deleted file mode 100644 index 28155f43..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/MaterializedViewDefinition.php +++ /dev/null @@ -1,57 +0,0 @@ -enableRefresh = $enableRefresh; - } - public function getEnableRefresh() - { - return $this->enableRefresh; - } - public function setLastRefreshTime($lastRefreshTime) - { - $this->lastRefreshTime = $lastRefreshTime; - } - public function getLastRefreshTime() - { - return $this->lastRefreshTime; - } - public function setQuery($query) - { - $this->query = $query; - } - public function getQuery() - { - return $this->query; - } - public function setRefreshIntervalMs($refreshIntervalMs) - { - $this->refreshIntervalMs = $refreshIntervalMs; - } - public function getRefreshIntervalMs() - { - return $this->refreshIntervalMs; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/Model.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/Model.php deleted file mode 100644 index ea3951a5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/Model.php +++ /dev/null @@ -1,183 +0,0 @@ -creationTime = $creationTime; - } - public function getCreationTime() - { - return $this->creationTime; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - /** - * @param Google_Service_Bigquery_EncryptionConfiguration - */ - public function setEncryptionConfiguration(Google_Service_Bigquery_EncryptionConfiguration $encryptionConfiguration) - { - $this->encryptionConfiguration = $encryptionConfiguration; - } - /** - * @return Google_Service_Bigquery_EncryptionConfiguration - */ - public function getEncryptionConfiguration() - { - return $this->encryptionConfiguration; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setExpirationTime($expirationTime) - { - $this->expirationTime = $expirationTime; - } - public function getExpirationTime() - { - return $this->expirationTime; - } - /** - * @param Google_Service_Bigquery_StandardSqlField - */ - public function setFeatureColumns($featureColumns) - { - $this->featureColumns = $featureColumns; - } - /** - * @return Google_Service_Bigquery_StandardSqlField - */ - public function getFeatureColumns() - { - return $this->featureColumns; - } - public function setFriendlyName($friendlyName) - { - $this->friendlyName = $friendlyName; - } - public function getFriendlyName() - { - return $this->friendlyName; - } - /** - * @param Google_Service_Bigquery_StandardSqlField - */ - public function setLabelColumns($labelColumns) - { - $this->labelColumns = $labelColumns; - } - /** - * @return Google_Service_Bigquery_StandardSqlField - */ - public function getLabelColumns() - { - return $this->labelColumns; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setLastModifiedTime($lastModifiedTime) - { - $this->lastModifiedTime = $lastModifiedTime; - } - public function getLastModifiedTime() - { - return $this->lastModifiedTime; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - /** - * @param Google_Service_Bigquery_ModelReference - */ - public function setModelReference(Google_Service_Bigquery_ModelReference $modelReference) - { - $this->modelReference = $modelReference; - } - /** - * @return Google_Service_Bigquery_ModelReference - */ - public function getModelReference() - { - return $this->modelReference; - } - public function setModelType($modelType) - { - $this->modelType = $modelType; - } - public function getModelType() - { - return $this->modelType; - } - /** - * @param Google_Service_Bigquery_TrainingRun - */ - public function setTrainingRuns($trainingRuns) - { - $this->trainingRuns = $trainingRuns; - } - /** - * @return Google_Service_Bigquery_TrainingRun - */ - public function getTrainingRuns() - { - return $this->trainingRuns; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ModelDefinition.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ModelDefinition.php deleted file mode 100644 index a547a380..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ModelDefinition.php +++ /dev/null @@ -1,54 +0,0 @@ -modelOptions = $modelOptions; - } - /** - * @return Google_Service_Bigquery_ModelDefinitionModelOptions - */ - public function getModelOptions() - { - return $this->modelOptions; - } - /** - * @param Google_Service_Bigquery_BqmlTrainingRun - */ - public function setTrainingRuns($trainingRuns) - { - $this->trainingRuns = $trainingRuns; - } - /** - * @return Google_Service_Bigquery_BqmlTrainingRun - */ - public function getTrainingRuns() - { - return $this->trainingRuns; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ModelDefinitionModelOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ModelDefinitionModelOptions.php deleted file mode 100644 index beb408ca..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ModelDefinitionModelOptions.php +++ /dev/null @@ -1,49 +0,0 @@ -labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setLossType($lossType) - { - $this->lossType = $lossType; - } - public function getLossType() - { - return $this->lossType; - } - public function setModelType($modelType) - { - $this->modelType = $modelType; - } - public function getModelType() - { - return $this->modelType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ModelReference.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ModelReference.php deleted file mode 100644 index 6908d7d8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ModelReference.php +++ /dev/null @@ -1,48 +0,0 @@ -datasetId = $datasetId; - } - public function getDatasetId() - { - return $this->datasetId; - } - public function setModelId($modelId) - { - $this->modelId = $modelId; - } - public function getModelId() - { - return $this->modelId; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/MultiClassClassificationMetrics.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/MultiClassClassificationMetrics.php deleted file mode 100644 index 8016c5aa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/MultiClassClassificationMetrics.php +++ /dev/null @@ -1,54 +0,0 @@ -aggregateClassificationMetrics = $aggregateClassificationMetrics; - } - /** - * @return Google_Service_Bigquery_AggregateClassificationMetrics - */ - public function getAggregateClassificationMetrics() - { - return $this->aggregateClassificationMetrics; - } - /** - * @param Google_Service_Bigquery_ConfusionMatrix - */ - public function setConfusionMatrixList($confusionMatrixList) - { - $this->confusionMatrixList = $confusionMatrixList; - } - /** - * @return Google_Service_Bigquery_ConfusionMatrix - */ - public function getConfusionMatrixList() - { - return $this->confusionMatrixList; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ProjectList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ProjectList.php deleted file mode 100644 index 00fe3f06..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ProjectList.php +++ /dev/null @@ -1,74 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - 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_Bigquery_ProjectListProjects - */ - public function setProjects($projects) - { - $this->projects = $projects; - } - /** - * @return Google_Service_Bigquery_ProjectListProjects - */ - public function getProjects() - { - return $this->projects; - } - public function setTotalItems($totalItems) - { - $this->totalItems = $totalItems; - } - public function getTotalItems() - { - return $this->totalItems; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ProjectListProjects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ProjectListProjects.php deleted file mode 100644 index 414d24f7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ProjectListProjects.php +++ /dev/null @@ -1,73 +0,0 @@ -friendlyName = $friendlyName; - } - public function getFriendlyName() - { - return $this->friendlyName; - } - 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 setNumericId($numericId) - { - $this->numericId = $numericId; - } - public function getNumericId() - { - return $this->numericId; - } - /** - * @param Google_Service_Bigquery_ProjectReference - */ - public function setProjectReference(Google_Service_Bigquery_ProjectReference $projectReference) - { - $this->projectReference = $projectReference; - } - /** - * @return Google_Service_Bigquery_ProjectReference - */ - public function getProjectReference() - { - return $this->projectReference; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ProjectReference.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ProjectReference.php deleted file mode 100644 index 63d1a1d4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ProjectReference.php +++ /dev/null @@ -1,30 +0,0 @@ -projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/QueryParameter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/QueryParameter.php deleted file mode 100644 index 180d3b16..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/QueryParameter.php +++ /dev/null @@ -1,62 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Bigquery_QueryParameterType - */ - public function setParameterType(Google_Service_Bigquery_QueryParameterType $parameterType) - { - $this->parameterType = $parameterType; - } - /** - * @return Google_Service_Bigquery_QueryParameterType - */ - public function getParameterType() - { - return $this->parameterType; - } - /** - * @param Google_Service_Bigquery_QueryParameterValue - */ - public function setParameterValue(Google_Service_Bigquery_QueryParameterValue $parameterValue) - { - $this->parameterValue = $parameterValue; - } - /** - * @return Google_Service_Bigquery_QueryParameterValue - */ - public function getParameterValue() - { - return $this->parameterValue; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/QueryParameterType.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/QueryParameterType.php deleted file mode 100644 index 94d22ec6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/QueryParameterType.php +++ /dev/null @@ -1,63 +0,0 @@ -arrayType = $arrayType; - } - /** - * @return Google_Service_Bigquery_QueryParameterType - */ - public function getArrayType() - { - return $this->arrayType; - } - /** - * @param Google_Service_Bigquery_QueryParameterTypeStructTypes - */ - public function setStructTypes($structTypes) - { - $this->structTypes = $structTypes; - } - /** - * @return Google_Service_Bigquery_QueryParameterTypeStructTypes - */ - public function getStructTypes() - { - return $this->structTypes; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/QueryParameterTypeStructTypes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/QueryParameterTypeStructTypes.php deleted file mode 100644 index d2ca3eb8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/QueryParameterTypeStructTypes.php +++ /dev/null @@ -1,55 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Bigquery_QueryParameterType - */ - public function setType(Google_Service_Bigquery_QueryParameterType $type) - { - $this->type = $type; - } - /** - * @return Google_Service_Bigquery_QueryParameterType - */ - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/QueryParameterValue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/QueryParameterValue.php deleted file mode 100644 index 0feb5fb0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/QueryParameterValue.php +++ /dev/null @@ -1,63 +0,0 @@ -arrayValues = $arrayValues; - } - /** - * @return Google_Service_Bigquery_QueryParameterValue - */ - public function getArrayValues() - { - return $this->arrayValues; - } - /** - * @param Google_Service_Bigquery_QueryParameterValue - */ - public function setStructValues($structValues) - { - $this->structValues = $structValues; - } - /** - * @return Google_Service_Bigquery_QueryParameterValue - */ - public function getStructValues() - { - return $this->structValues; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/QueryRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/QueryRequest.php deleted file mode 100644 index 261b5057..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/QueryRequest.php +++ /dev/null @@ -1,144 +0,0 @@ -defaultDataset = $defaultDataset; - } - /** - * @return Google_Service_Bigquery_DatasetReference - */ - public function getDefaultDataset() - { - return $this->defaultDataset; - } - public function setDryRun($dryRun) - { - $this->dryRun = $dryRun; - } - public function getDryRun() - { - return $this->dryRun; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setMaxResults($maxResults) - { - $this->maxResults = $maxResults; - } - public function getMaxResults() - { - return $this->maxResults; - } - public function setParameterMode($parameterMode) - { - $this->parameterMode = $parameterMode; - } - public function getParameterMode() - { - return $this->parameterMode; - } - public function setPreserveNulls($preserveNulls) - { - $this->preserveNulls = $preserveNulls; - } - public function getPreserveNulls() - { - return $this->preserveNulls; - } - public function setQuery($query) - { - $this->query = $query; - } - public function getQuery() - { - return $this->query; - } - /** - * @param Google_Service_Bigquery_QueryParameter - */ - public function setQueryParameters($queryParameters) - { - $this->queryParameters = $queryParameters; - } - /** - * @return Google_Service_Bigquery_QueryParameter - */ - public function getQueryParameters() - { - return $this->queryParameters; - } - public function setTimeoutMs($timeoutMs) - { - $this->timeoutMs = $timeoutMs; - } - public function getTimeoutMs() - { - return $this->timeoutMs; - } - public function setUseLegacySql($useLegacySql) - { - $this->useLegacySql = $useLegacySql; - } - public function getUseLegacySql() - { - return $this->useLegacySql; - } - public function setUseQueryCache($useQueryCache) - { - $this->useQueryCache = $useQueryCache; - } - public function getUseQueryCache() - { - return $this->useQueryCache; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/QueryResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/QueryResponse.php deleted file mode 100644 index c5f9b1a8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/QueryResponse.php +++ /dev/null @@ -1,149 +0,0 @@ -cacheHit = $cacheHit; - } - public function getCacheHit() - { - return $this->cacheHit; - } - /** - * @param Google_Service_Bigquery_ErrorProto - */ - public function setErrors($errors) - { - $this->errors = $errors; - } - /** - * @return Google_Service_Bigquery_ErrorProto - */ - public function getErrors() - { - return $this->errors; - } - public function setJobComplete($jobComplete) - { - $this->jobComplete = $jobComplete; - } - public function getJobComplete() - { - return $this->jobComplete; - } - /** - * @param Google_Service_Bigquery_JobReference - */ - public function setJobReference(Google_Service_Bigquery_JobReference $jobReference) - { - $this->jobReference = $jobReference; - } - /** - * @return Google_Service_Bigquery_JobReference - */ - public function getJobReference() - { - return $this->jobReference; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNumDmlAffectedRows($numDmlAffectedRows) - { - $this->numDmlAffectedRows = $numDmlAffectedRows; - } - public function getNumDmlAffectedRows() - { - return $this->numDmlAffectedRows; - } - public function setPageToken($pageToken) - { - $this->pageToken = $pageToken; - } - public function getPageToken() - { - return $this->pageToken; - } - /** - * @param Google_Service_Bigquery_TableRow - */ - public function setRows($rows) - { - $this->rows = $rows; - } - /** - * @return Google_Service_Bigquery_TableRow - */ - public function getRows() - { - return $this->rows; - } - /** - * @param Google_Service_Bigquery_TableSchema - */ - public function setSchema(Google_Service_Bigquery_TableSchema $schema) - { - $this->schema = $schema; - } - /** - * @return Google_Service_Bigquery_TableSchema - */ - public function getSchema() - { - return $this->schema; - } - public function setTotalBytesProcessed($totalBytesProcessed) - { - $this->totalBytesProcessed = $totalBytesProcessed; - } - public function getTotalBytesProcessed() - { - return $this->totalBytesProcessed; - } - public function setTotalRows($totalRows) - { - $this->totalRows = $totalRows; - } - public function getTotalRows() - { - return $this->totalRows; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/QueryTimelineSample.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/QueryTimelineSample.php deleted file mode 100644 index 0fd042f1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/QueryTimelineSample.php +++ /dev/null @@ -1,66 +0,0 @@ -activeUnits = $activeUnits; - } - public function getActiveUnits() - { - return $this->activeUnits; - } - public function setCompletedUnits($completedUnits) - { - $this->completedUnits = $completedUnits; - } - public function getCompletedUnits() - { - return $this->completedUnits; - } - public function setElapsedMs($elapsedMs) - { - $this->elapsedMs = $elapsedMs; - } - public function getElapsedMs() - { - return $this->elapsedMs; - } - public function setPendingUnits($pendingUnits) - { - $this->pendingUnits = $pendingUnits; - } - public function getPendingUnits() - { - return $this->pendingUnits; - } - public function setTotalSlotMs($totalSlotMs) - { - $this->totalSlotMs = $totalSlotMs; - } - public function getTotalSlotMs() - { - return $this->totalSlotMs; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/RangePartitioning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/RangePartitioning.php deleted file mode 100644 index 99944817..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/RangePartitioning.php +++ /dev/null @@ -1,46 +0,0 @@ -field = $field; - } - public function getField() - { - return $this->field; - } - /** - * @param Google_Service_Bigquery_RangePartitioningRange - */ - public function setRange(Google_Service_Bigquery_RangePartitioningRange $range) - { - $this->range = $range; - } - /** - * @return Google_Service_Bigquery_RangePartitioningRange - */ - public function getRange() - { - return $this->range; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/RangePartitioningRange.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/RangePartitioningRange.php deleted file mode 100644 index 5097df52..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/RangePartitioningRange.php +++ /dev/null @@ -1,48 +0,0 @@ -end = $end; - } - public function getEnd() - { - return $this->end; - } - public function setInterval($interval) - { - $this->interval = $interval; - } - public function getInterval() - { - return $this->interval; - } - public function setStart($start) - { - $this->start = $start; - } - public function getStart() - { - return $this->start; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/RegressionMetrics.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/RegressionMetrics.php deleted file mode 100644 index 4d78b5f6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/RegressionMetrics.php +++ /dev/null @@ -1,66 +0,0 @@ -meanAbsoluteError = $meanAbsoluteError; - } - public function getMeanAbsoluteError() - { - return $this->meanAbsoluteError; - } - public function setMeanSquaredError($meanSquaredError) - { - $this->meanSquaredError = $meanSquaredError; - } - public function getMeanSquaredError() - { - return $this->meanSquaredError; - } - public function setMeanSquaredLogError($meanSquaredLogError) - { - $this->meanSquaredLogError = $meanSquaredLogError; - } - public function getMeanSquaredLogError() - { - return $this->meanSquaredLogError; - } - public function setMedianAbsoluteError($medianAbsoluteError) - { - $this->medianAbsoluteError = $medianAbsoluteError; - } - public function getMedianAbsoluteError() - { - return $this->medianAbsoluteError; - } - public function setRSquared($rSquared) - { - $this->rSquared = $rSquared; - } - public function getRSquared() - { - return $this->rSquared; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/Resource/Datasets.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/Resource/Datasets.php deleted file mode 100644 index 3a7dcbc5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/Resource/Datasets.php +++ /dev/null @@ -1,134 +0,0 @@ - - * $bigqueryService = new Google_Service_Bigquery(...); - * $datasets = $bigqueryService->datasets; - * - */ -class Google_Service_Bigquery_Resource_Datasets extends Google_Service_Resource -{ - /** - * Deletes the dataset specified by the datasetId value. Before you can delete a - * dataset, you must delete all its tables, either manually or by specifying - * deleteContents. Immediately after deletion, you can create another dataset - * with the same name. (datasets.delete) - * - * @param string $projectId Project ID of the dataset being deleted - * @param string $datasetId Dataset ID of dataset being deleted - * @param array $optParams Optional parameters. - * - * @opt_param bool deleteContents If True, delete all the tables in the dataset. - * If False and the dataset contains tables, the request will fail. Default is - * False - */ - public function delete($projectId, $datasetId, $optParams = array()) - { - $params = array('projectId' => $projectId, 'datasetId' => $datasetId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Returns the dataset specified by datasetID. (datasets.get) - * - * @param string $projectId Project ID of the requested dataset - * @param string $datasetId Dataset ID of the requested dataset - * @param array $optParams Optional parameters. - * @return Google_Service_Bigquery_Dataset - */ - public function get($projectId, $datasetId, $optParams = array()) - { - $params = array('projectId' => $projectId, 'datasetId' => $datasetId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Bigquery_Dataset"); - } - /** - * Creates a new empty dataset. (datasets.insert) - * - * @param string $projectId Project ID of the new dataset - * @param Google_Service_Bigquery_Dataset $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Bigquery_Dataset - */ - public function insert($projectId, Google_Service_Bigquery_Dataset $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Bigquery_Dataset"); - } - /** - * Lists all datasets in the specified project to which you have been granted - * the READER dataset role. (datasets.listDatasets) - * - * @param string $projectId Project ID of the datasets to be listed - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Page token, returned by a previous call, to - * request the next page of results - * @opt_param string maxResults The maximum number of results to return - * @opt_param bool all Whether to list all datasets, including hidden ones - * @opt_param string filter An expression for filtering the results of the - * request by label. The syntax is "labels.[:]". Multiple filters can be ANDed - * together by connecting with a space. Example: "labels.department:receiving - * labels.active". See Filtering datasets using labels for details. - * @return Google_Service_Bigquery_DatasetList - */ - public function listDatasets($projectId, $optParams = array()) - { - $params = array('projectId' => $projectId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Bigquery_DatasetList"); - } - /** - * Updates information in an existing dataset. The update method replaces the - * entire dataset resource, whereas the patch method only replaces fields that - * are provided in the submitted dataset resource. This method supports patch - * semantics. (datasets.patch) - * - * @param string $projectId Project ID of the dataset being updated - * @param string $datasetId Dataset ID of the dataset being updated - * @param Google_Service_Bigquery_Dataset $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Bigquery_Dataset - */ - public function patch($projectId, $datasetId, Google_Service_Bigquery_Dataset $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'datasetId' => $datasetId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Bigquery_Dataset"); - } - /** - * Updates information in an existing dataset. The update method replaces the - * entire dataset resource, whereas the patch method only replaces fields that - * are provided in the submitted dataset resource. (datasets.update) - * - * @param string $projectId Project ID of the dataset being updated - * @param string $datasetId Dataset ID of the dataset being updated - * @param Google_Service_Bigquery_Dataset $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Bigquery_Dataset - */ - public function update($projectId, $datasetId, Google_Service_Bigquery_Dataset $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'datasetId' => $datasetId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Bigquery_Dataset"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/Resource/Jobs.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/Resource/Jobs.php deleted file mode 100644 index 502854e6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/Resource/Jobs.php +++ /dev/null @@ -1,159 +0,0 @@ - - * $bigqueryService = new Google_Service_Bigquery(...); - * $jobs = $bigqueryService->jobs; - * - */ -class Google_Service_Bigquery_Resource_Jobs extends Google_Service_Resource -{ - /** - * Requests that a job be cancelled. This call will return immediately, and the - * client will need to poll for the job status to see if the cancel completed - * successfully. Cancelled jobs may still incur costs. (jobs.cancel) - * - * @param string $projectId [Required] Project ID of the job to cancel - * @param string $jobId [Required] Job ID of the job to cancel - * @param array $optParams Optional parameters. - * - * @opt_param string location The geographic location of the job. Required - * except for US and EU. See details at - * https://cloud.google.com/bigquery/docs/locations#specifying_your_location. - * @return Google_Service_Bigquery_JobCancelResponse - */ - public function cancel($projectId, $jobId, $optParams = array()) - { - $params = array('projectId' => $projectId, 'jobId' => $jobId); - $params = array_merge($params, $optParams); - return $this->call('cancel', array($params), "Google_Service_Bigquery_JobCancelResponse"); - } - /** - * Returns information about a specific job. Job information is available for a - * six month period after creation. Requires that you're the person who ran the - * job, or have the Is Owner project role. (jobs.get) - * - * @param string $projectId [Required] Project ID of the requested job - * @param string $jobId [Required] Job ID of the requested job - * @param array $optParams Optional parameters. - * - * @opt_param string location The geographic location of the job. Required - * except for US and EU. See details at - * https://cloud.google.com/bigquery/docs/locations#specifying_your_location. - * @return Google_Service_Bigquery_Job - */ - public function get($projectId, $jobId, $optParams = array()) - { - $params = array('projectId' => $projectId, 'jobId' => $jobId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Bigquery_Job"); - } - /** - * Retrieves the results of a query job. (jobs.getQueryResults) - * - * @param string $projectId [Required] Project ID of the query job - * @param string $jobId [Required] Job ID of the query job - * @param array $optParams Optional parameters. - * - * @opt_param string startIndex Zero-based index of the starting row - * @opt_param string location The geographic location where the job should run. - * Required except for US and EU. See details at - * https://cloud.google.com/bigquery/docs/locations#specifying_your_location. - * @opt_param string pageToken Page token, returned by a previous call, to - * request the next page of results - * @opt_param string timeoutMs How long to wait for the query to complete, in - * milliseconds, before returning. Default is 10 seconds. If the timeout passes - * before the job completes, the 'jobComplete' field in the response will be - * false - * @opt_param string maxResults Maximum number of results to read - * @return Google_Service_Bigquery_GetQueryResultsResponse - */ - public function getQueryResults($projectId, $jobId, $optParams = array()) - { - $params = array('projectId' => $projectId, 'jobId' => $jobId); - $params = array_merge($params, $optParams); - return $this->call('getQueryResults', array($params), "Google_Service_Bigquery_GetQueryResultsResponse"); - } - /** - * Starts a new asynchronous job. Requires the Can View project role. - * (jobs.insert) - * - * @param string $projectId Project ID of the project that will be billed for - * the job - * @param Google_Service_Bigquery_Job $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Bigquery_Job - */ - public function insert($projectId, Google_Service_Bigquery_Job $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Bigquery_Job"); - } - /** - * Lists all jobs that you started in the specified project. Job information is - * available for a six month period after creation. The job list is sorted in - * reverse chronological order, by job creation time. Requires the Can View - * project role, or the Is Owner project role if you set the allUsers property. - * (jobs.listJobs) - * - * @param string $projectId Project ID of the jobs to list - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Page token, returned by a previous call, to - * request the next page of results - * @opt_param bool allUsers Whether to display jobs owned by all users in the - * project. Default false - * @opt_param string maxResults Maximum number of results to return - * @opt_param string maxCreationTime Max value for job creation time, in - * milliseconds since the POSIX epoch. If set, only jobs created before or at - * this timestamp are returned - * @opt_param string stateFilter Filter for job state - * @opt_param string projection Restrict information returned to a set of - * selected fields - * @opt_param string parentJobId If set, retrieves only jobs whose parent is - * this job. Otherwise, retrieves only jobs which have no parent - * @opt_param string minCreationTime Min value for job creation time, in - * milliseconds since the POSIX epoch. If set, only jobs created after or at - * this timestamp are returned - * @return Google_Service_Bigquery_JobList - */ - public function listJobs($projectId, $optParams = array()) - { - $params = array('projectId' => $projectId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Bigquery_JobList"); - } - /** - * Runs a BigQuery SQL query synchronously and returns query results if the - * query completes within a specified timeout. (jobs.query) - * - * @param string $projectId Project ID of the project billed for the query - * @param Google_Service_Bigquery_QueryRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Bigquery_QueryResponse - */ - public function query($projectId, Google_Service_Bigquery_QueryRequest $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('query', array($params), "Google_Service_Bigquery_QueryResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/Resource/Models.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/Resource/Models.php deleted file mode 100644 index 08ee10a7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/Resource/Models.php +++ /dev/null @@ -1,94 +0,0 @@ - - * $bigqueryService = new Google_Service_Bigquery(...); - * $models = $bigqueryService->models; - * - */ -class Google_Service_Bigquery_Resource_Models extends Google_Service_Resource -{ - /** - * Deletes the model specified by modelId from the dataset. (models.delete) - * - * @param string $projectId Required. Project ID of the model to delete. - * @param string $datasetId Required. Dataset ID of the model to delete. - * @param string $modelId Required. Model ID of the model to delete. - * @param array $optParams Optional parameters. - */ - public function delete($projectId, $datasetId, $modelId, $optParams = array()) - { - $params = array('projectId' => $projectId, 'datasetId' => $datasetId, 'modelId' => $modelId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Gets the specified model resource by model ID. (models.get) - * - * @param string $projectId Required. Project ID of the requested model. - * @param string $datasetId Required. Dataset ID of the requested model. - * @param string $modelId Required. Model ID of the requested model. - * @param array $optParams Optional parameters. - * @return Google_Service_Bigquery_Model - */ - public function get($projectId, $datasetId, $modelId, $optParams = array()) - { - $params = array('projectId' => $projectId, 'datasetId' => $datasetId, 'modelId' => $modelId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Bigquery_Model"); - } - /** - * Lists all models in the specified dataset. Requires the READER dataset role. - * (models.listModels) - * - * @param string $projectId Required. Project ID of the models to list. - * @param string $datasetId Required. Dataset ID of the models to list. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Page token, returned by a previous call to - * request the next page of results - * @opt_param string maxResults The maximum number of results to return in a - * single response page. Leverage the page tokens to iterate through the entire - * collection. - * @return Google_Service_Bigquery_ListModelsResponse - */ - public function listModels($projectId, $datasetId, $optParams = array()) - { - $params = array('projectId' => $projectId, 'datasetId' => $datasetId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Bigquery_ListModelsResponse"); - } - /** - * Patch specific fields in the specified model. (models.patch) - * - * @param string $projectId Required. Project ID of the model to patch. - * @param string $datasetId Required. Dataset ID of the model to patch. - * @param string $modelId Required. Model ID of the model to patch. - * @param Google_Service_Bigquery_Model $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Bigquery_Model - */ - public function patch($projectId, $datasetId, $modelId, Google_Service_Bigquery_Model $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'datasetId' => $datasetId, 'modelId' => $modelId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Bigquery_Model"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/Resource/Projects.php deleted file mode 100644 index ecf45ec8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/Resource/Projects.php +++ /dev/null @@ -1,60 +0,0 @@ - - * $bigqueryService = new Google_Service_Bigquery(...); - * $projects = $bigqueryService->projects; - * - */ -class Google_Service_Bigquery_Resource_Projects extends Google_Service_Resource -{ - /** - * Returns the email address of the service account for your project used for - * interactions with Google Cloud KMS. (projects.getServiceAccount) - * - * @param string $projectId Project ID for which the service account is - * requested. - * @param array $optParams Optional parameters. - * @return Google_Service_Bigquery_GetServiceAccountResponse - */ - public function getServiceAccount($projectId, $optParams = array()) - { - $params = array('projectId' => $projectId); - $params = array_merge($params, $optParams); - return $this->call('getServiceAccount', array($params), "Google_Service_Bigquery_GetServiceAccountResponse"); - } - /** - * Lists all projects to which you have been granted any project role. - * (projects.listProjects) - * - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Page token, returned by a previous call, to - * request the next page of results - * @opt_param string maxResults Maximum number of results to return - * @return Google_Service_Bigquery_ProjectList - */ - public function listProjects($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Bigquery_ProjectList"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/Resource/Routines.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/Resource/Routines.php deleted file mode 100644 index a1680d15..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/Resource/Routines.php +++ /dev/null @@ -1,123 +0,0 @@ - - * $bigqueryService = new Google_Service_Bigquery(...); - * $routines = $bigqueryService->routines; - * - */ -class Google_Service_Bigquery_Resource_Routines extends Google_Service_Resource -{ - /** - * Deletes the routine specified by routineId from the dataset. - * (routines.delete) - * - * @param string $projectId Required. Project ID of the routine to delete - * @param string $datasetId Required. Dataset ID of the routine to delete - * @param string $routineId Required. Routine ID of the routine to delete - * @param array $optParams Optional parameters. - */ - public function delete($projectId, $datasetId, $routineId, $optParams = array()) - { - $params = array('projectId' => $projectId, 'datasetId' => $datasetId, 'routineId' => $routineId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Gets the specified routine resource by routine ID. (routines.get) - * - * @param string $projectId Required. Project ID of the requested routine - * @param string $datasetId Required. Dataset ID of the requested routine - * @param string $routineId Required. Routine ID of the requested routine - * @param array $optParams Optional parameters. - * - * @opt_param string readMask If set, only the Routine fields in the field mask - * are returned in the response. If unset, all Routine fields are returned. - * @return Google_Service_Bigquery_Routine - */ - public function get($projectId, $datasetId, $routineId, $optParams = array()) - { - $params = array('projectId' => $projectId, 'datasetId' => $datasetId, 'routineId' => $routineId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Bigquery_Routine"); - } - /** - * Creates a new routine in the dataset. (routines.insert) - * - * @param string $projectId Required. Project ID of the new routine - * @param string $datasetId Required. Dataset ID of the new routine - * @param Google_Service_Bigquery_Routine $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Bigquery_Routine - */ - public function insert($projectId, $datasetId, Google_Service_Bigquery_Routine $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'datasetId' => $datasetId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Bigquery_Routine"); - } - /** - * Lists all routines in the specified dataset. Requires the READER dataset - * role. (routines.listRoutines) - * - * @param string $projectId Required. Project ID of the routines to list - * @param string $datasetId Required. Dataset ID of the routines to list - * @param array $optParams Optional parameters. - * - * @opt_param string filter If set, then only the Routines matching this filter - * are returned. The current supported form is either "routine_type:" or - * "routineType:", where is a RoutineType enum. Example: - * "routineType:SCALAR_FUNCTION". - * @opt_param string pageToken Page token, returned by a previous call, to - * request the next page of results - * @opt_param string maxResults The maximum number of results to return in a - * single response page. Leverage the page tokens to iterate through the entire - * collection. - * @opt_param string readMask If set, then only the Routine fields in the field - * mask, as well as project_id, dataset_id and routine_id, are returned in the - * response. If unset, then the following Routine fields are returned: etag, - * project_id, dataset_id, routine_id, routine_type, creation_time, - * last_modified_time, and language. - * @return Google_Service_Bigquery_ListRoutinesResponse - */ - public function listRoutines($projectId, $datasetId, $optParams = array()) - { - $params = array('projectId' => $projectId, 'datasetId' => $datasetId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Bigquery_ListRoutinesResponse"); - } - /** - * Updates information in an existing routine. The update method replaces the - * entire Routine resource. (routines.update) - * - * @param string $projectId Required. Project ID of the routine to update - * @param string $datasetId Required. Dataset ID of the routine to update - * @param string $routineId Required. Routine ID of the routine to update - * @param Google_Service_Bigquery_Routine $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Bigquery_Routine - */ - public function update($projectId, $datasetId, $routineId, Google_Service_Bigquery_Routine $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'datasetId' => $datasetId, 'routineId' => $routineId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Bigquery_Routine"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/Resource/Tabledata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/Resource/Tabledata.php deleted file mode 100644 index dbaadc02..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/Resource/Tabledata.php +++ /dev/null @@ -1,68 +0,0 @@ - - * $bigqueryService = new Google_Service_Bigquery(...); - * $tabledata = $bigqueryService->tabledata; - * - */ -class Google_Service_Bigquery_Resource_Tabledata extends Google_Service_Resource -{ - /** - * Streams data into BigQuery one record at a time without needing to run a load - * job. Requires the WRITER dataset role. (tabledata.insertAll) - * - * @param string $projectId Project ID of the destination table. - * @param string $datasetId Dataset ID of the destination table. - * @param string $tableId Table ID of the destination table. - * @param Google_Service_Bigquery_TableDataInsertAllRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Bigquery_TableDataInsertAllResponse - */ - public function insertAll($projectId, $datasetId, $tableId, Google_Service_Bigquery_TableDataInsertAllRequest $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'datasetId' => $datasetId, 'tableId' => $tableId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insertAll', array($params), "Google_Service_Bigquery_TableDataInsertAllResponse"); - } - /** - * Retrieves table data from a specified set of rows. Requires the READER - * dataset role. (tabledata.listTabledata) - * - * @param string $projectId Project ID of the table to read - * @param string $datasetId Dataset ID of the table to read - * @param string $tableId Table ID of the table to read - * @param array $optParams Optional parameters. - * - * @opt_param string startIndex Zero-based index of the starting row to read - * @opt_param string pageToken Page token, returned by a previous call, - * identifying the result set - * @opt_param string maxResults Maximum number of results to return - * @opt_param string selectedFields List of fields to return (comma-separated). - * If unspecified, all fields are returned - * @return Google_Service_Bigquery_TableDataList - */ - public function listTabledata($projectId, $datasetId, $tableId, $optParams = array()) - { - $params = array('projectId' => $projectId, 'datasetId' => $datasetId, 'tableId' => $tableId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Bigquery_TableDataList"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/Resource/Tables.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/Resource/Tables.php deleted file mode 100644 index 9dd99055..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/Resource/Tables.php +++ /dev/null @@ -1,134 +0,0 @@ - - * $bigqueryService = new Google_Service_Bigquery(...); - * $tables = $bigqueryService->tables; - * - */ -class Google_Service_Bigquery_Resource_Tables extends Google_Service_Resource -{ - /** - * Deletes the table specified by tableId from the dataset. If the table - * contains data, all the data will be deleted. (tables.delete) - * - * @param string $projectId Project ID of the table to delete - * @param string $datasetId Dataset ID of the table to delete - * @param string $tableId Table ID of the table to delete - * @param array $optParams Optional parameters. - */ - public function delete($projectId, $datasetId, $tableId, $optParams = array()) - { - $params = array('projectId' => $projectId, 'datasetId' => $datasetId, 'tableId' => $tableId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Gets the specified table resource by table ID. This method does not return - * the data in the table, it only returns the table resource, which describes - * the structure of this table. (tables.get) - * - * @param string $projectId Project ID of the requested table - * @param string $datasetId Dataset ID of the requested table - * @param string $tableId Table ID of the requested table - * @param array $optParams Optional parameters. - * - * @opt_param string selectedFields List of fields to return (comma-separated). - * If unspecified, all fields are returned - * @return Google_Service_Bigquery_Table - */ - public function get($projectId, $datasetId, $tableId, $optParams = array()) - { - $params = array('projectId' => $projectId, 'datasetId' => $datasetId, 'tableId' => $tableId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Bigquery_Table"); - } - /** - * Creates a new, empty table in the dataset. (tables.insert) - * - * @param string $projectId Project ID of the new table - * @param string $datasetId Dataset ID of the new table - * @param Google_Service_Bigquery_Table $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Bigquery_Table - */ - public function insert($projectId, $datasetId, Google_Service_Bigquery_Table $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'datasetId' => $datasetId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Bigquery_Table"); - } - /** - * Lists all tables in the specified dataset. Requires the READER dataset role. - * (tables.listTables) - * - * @param string $projectId Project ID of the tables to list - * @param string $datasetId Dataset ID of the tables to list - * @param array $optParams Optional parameters. - * - * @opt_param string maxResults Maximum number of results to return - * @opt_param string pageToken Page token, returned by a previous call, to - * request the next page of results - * @return Google_Service_Bigquery_TableList - */ - public function listTables($projectId, $datasetId, $optParams = array()) - { - $params = array('projectId' => $projectId, 'datasetId' => $datasetId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Bigquery_TableList"); - } - /** - * Updates information in an existing table. The update method replaces the - * entire table resource, whereas the patch method only replaces fields that are - * provided in the submitted table resource. This method supports patch - * semantics. (tables.patch) - * - * @param string $projectId Project ID of the table to update - * @param string $datasetId Dataset ID of the table to update - * @param string $tableId Table ID of the table to update - * @param Google_Service_Bigquery_Table $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Bigquery_Table - */ - public function patch($projectId, $datasetId, $tableId, Google_Service_Bigquery_Table $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'datasetId' => $datasetId, 'tableId' => $tableId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Bigquery_Table"); - } - /** - * Updates information in an existing table. The update method replaces the - * entire table resource, whereas the patch method only replaces fields that are - * provided in the submitted table resource. (tables.update) - * - * @param string $projectId Project ID of the table to update - * @param string $datasetId Dataset ID of the table to update - * @param string $tableId Table ID of the table to update - * @param Google_Service_Bigquery_Table $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Bigquery_Table - */ - public function update($projectId, $datasetId, $tableId, Google_Service_Bigquery_Table $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'datasetId' => $datasetId, 'tableId' => $tableId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Bigquery_Table"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/Routine.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/Routine.php deleted file mode 100644 index 7054043c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/Routine.php +++ /dev/null @@ -1,142 +0,0 @@ -arguments = $arguments; - } - /** - * @return Google_Service_Bigquery_Argument - */ - public function getArguments() - { - return $this->arguments; - } - public function setCreationTime($creationTime) - { - $this->creationTime = $creationTime; - } - public function getCreationTime() - { - return $this->creationTime; - } - public function setDefinitionBody($definitionBody) - { - $this->definitionBody = $definitionBody; - } - public function getDefinitionBody() - { - return $this->definitionBody; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setImportedLibraries($importedLibraries) - { - $this->importedLibraries = $importedLibraries; - } - public function getImportedLibraries() - { - return $this->importedLibraries; - } - public function setLanguage($language) - { - $this->language = $language; - } - public function getLanguage() - { - return $this->language; - } - public function setLastModifiedTime($lastModifiedTime) - { - $this->lastModifiedTime = $lastModifiedTime; - } - public function getLastModifiedTime() - { - return $this->lastModifiedTime; - } - /** - * @param Google_Service_Bigquery_StandardSqlDataType - */ - public function setReturnType(Google_Service_Bigquery_StandardSqlDataType $returnType) - { - $this->returnType = $returnType; - } - /** - * @return Google_Service_Bigquery_StandardSqlDataType - */ - public function getReturnType() - { - return $this->returnType; - } - /** - * @param Google_Service_Bigquery_RoutineReference - */ - public function setRoutineReference(Google_Service_Bigquery_RoutineReference $routineReference) - { - $this->routineReference = $routineReference; - } - /** - * @return Google_Service_Bigquery_RoutineReference - */ - public function getRoutineReference() - { - return $this->routineReference; - } - public function setRoutineType($routineType) - { - $this->routineType = $routineType; - } - public function getRoutineType() - { - return $this->routineType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/RoutineReference.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/RoutineReference.php deleted file mode 100644 index 4a31ad44..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/RoutineReference.php +++ /dev/null @@ -1,48 +0,0 @@ -datasetId = $datasetId; - } - public function getDatasetId() - { - return $this->datasetId; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } - public function setRoutineId($routineId) - { - $this->routineId = $routineId; - } - public function getRoutineId() - { - return $this->routineId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/Row.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/Row.php deleted file mode 100644 index 2006335b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/Row.php +++ /dev/null @@ -1,47 +0,0 @@ -actualLabel = $actualLabel; - } - public function getActualLabel() - { - return $this->actualLabel; - } - /** - * @param Google_Service_Bigquery_Entry - */ - public function setEntries($entries) - { - $this->entries = $entries; - } - /** - * @return Google_Service_Bigquery_Entry - */ - public function getEntries() - { - return $this->entries; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ScriptStackFrame.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ScriptStackFrame.php deleted file mode 100644 index 2cd4780c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ScriptStackFrame.php +++ /dev/null @@ -1,75 +0,0 @@ -endColumn = $endColumn; - } - public function getEndColumn() - { - return $this->endColumn; - } - public function setEndLine($endLine) - { - $this->endLine = $endLine; - } - public function getEndLine() - { - return $this->endLine; - } - public function setProcedureId($procedureId) - { - $this->procedureId = $procedureId; - } - public function getProcedureId() - { - return $this->procedureId; - } - public function setStartColumn($startColumn) - { - $this->startColumn = $startColumn; - } - public function getStartColumn() - { - return $this->startColumn; - } - public function setStartLine($startLine) - { - $this->startLine = $startLine; - } - public function getStartLine() - { - return $this->startLine; - } - public function setText($text) - { - $this->text = $text; - } - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ScriptStatistics.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ScriptStatistics.php deleted file mode 100644 index 74d425f1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ScriptStatistics.php +++ /dev/null @@ -1,47 +0,0 @@ -evaluationKind = $evaluationKind; - } - public function getEvaluationKind() - { - return $this->evaluationKind; - } - /** - * @param Google_Service_Bigquery_ScriptStackFrame - */ - public function setStackFrames($stackFrames) - { - $this->stackFrames = $stackFrames; - } - /** - * @return Google_Service_Bigquery_ScriptStackFrame - */ - public function getStackFrames() - { - return $this->stackFrames; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/StandardSqlDataType.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/StandardSqlDataType.php deleted file mode 100644 index f21e2c96..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/StandardSqlDataType.php +++ /dev/null @@ -1,62 +0,0 @@ -arrayElementType = $arrayElementType; - } - /** - * @return Google_Service_Bigquery_StandardSqlDataType - */ - public function getArrayElementType() - { - return $this->arrayElementType; - } - /** - * @param Google_Service_Bigquery_StandardSqlStructType - */ - public function setStructType(Google_Service_Bigquery_StandardSqlStructType $structType) - { - $this->structType = $structType; - } - /** - * @return Google_Service_Bigquery_StandardSqlStructType - */ - public function getStructType() - { - return $this->structType; - } - public function setTypeKind($typeKind) - { - $this->typeKind = $typeKind; - } - public function getTypeKind() - { - return $this->typeKind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/StandardSqlField.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/StandardSqlField.php deleted file mode 100644 index 78b5f8ca..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/StandardSqlField.php +++ /dev/null @@ -1,46 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Bigquery_StandardSqlDataType - */ - public function setType(Google_Service_Bigquery_StandardSqlDataType $type) - { - $this->type = $type; - } - /** - * @return Google_Service_Bigquery_StandardSqlDataType - */ - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/StandardSqlStructType.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/StandardSqlStructType.php deleted file mode 100644 index fb208110..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/StandardSqlStructType.php +++ /dev/null @@ -1,38 +0,0 @@ -fields = $fields; - } - /** - * @return Google_Service_Bigquery_StandardSqlField - */ - public function getFields() - { - return $this->fields; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/Streamingbuffer.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/Streamingbuffer.php deleted file mode 100644 index 14825b9b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/Streamingbuffer.php +++ /dev/null @@ -1,48 +0,0 @@ -estimatedBytes = $estimatedBytes; - } - public function getEstimatedBytes() - { - return $this->estimatedBytes; - } - public function setEstimatedRows($estimatedRows) - { - $this->estimatedRows = $estimatedRows; - } - public function getEstimatedRows() - { - return $this->estimatedRows; - } - public function setOldestEntryTime($oldestEntryTime) - { - $this->oldestEntryTime = $oldestEntryTime; - } - public function getOldestEntryTime() - { - return $this->oldestEntryTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/Table.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/Table.php deleted file mode 100644 index 23a86882..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/Table.php +++ /dev/null @@ -1,350 +0,0 @@ -clustering = $clustering; - } - /** - * @return Google_Service_Bigquery_Clustering - */ - public function getClustering() - { - return $this->clustering; - } - 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_Bigquery_EncryptionConfiguration - */ - public function setEncryptionConfiguration(Google_Service_Bigquery_EncryptionConfiguration $encryptionConfiguration) - { - $this->encryptionConfiguration = $encryptionConfiguration; - } - /** - * @return Google_Service_Bigquery_EncryptionConfiguration - */ - public function getEncryptionConfiguration() - { - return $this->encryptionConfiguration; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setExpirationTime($expirationTime) - { - $this->expirationTime = $expirationTime; - } - public function getExpirationTime() - { - return $this->expirationTime; - } - /** - * @param Google_Service_Bigquery_ExternalDataConfiguration - */ - public function setExternalDataConfiguration(Google_Service_Bigquery_ExternalDataConfiguration $externalDataConfiguration) - { - $this->externalDataConfiguration = $externalDataConfiguration; - } - /** - * @return Google_Service_Bigquery_ExternalDataConfiguration - */ - public function getExternalDataConfiguration() - { - return $this->externalDataConfiguration; - } - public function setFriendlyName($friendlyName) - { - $this->friendlyName = $friendlyName; - } - public function getFriendlyName() - { - return $this->friendlyName; - } - 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 setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setLastModifiedTime($lastModifiedTime) - { - $this->lastModifiedTime = $lastModifiedTime; - } - public function getLastModifiedTime() - { - return $this->lastModifiedTime; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - /** - * @param Google_Service_Bigquery_MaterializedViewDefinition - */ - public function setMaterializedView(Google_Service_Bigquery_MaterializedViewDefinition $materializedView) - { - $this->materializedView = $materializedView; - } - /** - * @return Google_Service_Bigquery_MaterializedViewDefinition - */ - public function getMaterializedView() - { - return $this->materializedView; - } - /** - * @param Google_Service_Bigquery_ModelDefinition - */ - public function setModel(Google_Service_Bigquery_ModelDefinition $model) - { - $this->model = $model; - } - /** - * @return Google_Service_Bigquery_ModelDefinition - */ - public function getModel() - { - return $this->model; - } - public function setNumBytes($numBytes) - { - $this->numBytes = $numBytes; - } - public function getNumBytes() - { - return $this->numBytes; - } - public function setNumLongTermBytes($numLongTermBytes) - { - $this->numLongTermBytes = $numLongTermBytes; - } - public function getNumLongTermBytes() - { - return $this->numLongTermBytes; - } - public function setNumPhysicalBytes($numPhysicalBytes) - { - $this->numPhysicalBytes = $numPhysicalBytes; - } - public function getNumPhysicalBytes() - { - return $this->numPhysicalBytes; - } - public function setNumRows($numRows) - { - $this->numRows = $numRows; - } - public function getNumRows() - { - return $this->numRows; - } - /** - * @param Google_Service_Bigquery_RangePartitioning - */ - public function setRangePartitioning(Google_Service_Bigquery_RangePartitioning $rangePartitioning) - { - $this->rangePartitioning = $rangePartitioning; - } - /** - * @return Google_Service_Bigquery_RangePartitioning - */ - public function getRangePartitioning() - { - return $this->rangePartitioning; - } - public function setRequirePartitionFilter($requirePartitionFilter) - { - $this->requirePartitionFilter = $requirePartitionFilter; - } - public function getRequirePartitionFilter() - { - return $this->requirePartitionFilter; - } - /** - * @param Google_Service_Bigquery_TableSchema - */ - public function setSchema(Google_Service_Bigquery_TableSchema $schema) - { - $this->schema = $schema; - } - /** - * @return Google_Service_Bigquery_TableSchema - */ - public function getSchema() - { - return $this->schema; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Bigquery_Streamingbuffer - */ - public function setStreamingBuffer(Google_Service_Bigquery_Streamingbuffer $streamingBuffer) - { - $this->streamingBuffer = $streamingBuffer; - } - /** - * @return Google_Service_Bigquery_Streamingbuffer - */ - public function getStreamingBuffer() - { - return $this->streamingBuffer; - } - /** - * @param Google_Service_Bigquery_TableReference - */ - public function setTableReference(Google_Service_Bigquery_TableReference $tableReference) - { - $this->tableReference = $tableReference; - } - /** - * @return Google_Service_Bigquery_TableReference - */ - public function getTableReference() - { - return $this->tableReference; - } - /** - * @param Google_Service_Bigquery_TimePartitioning - */ - public function setTimePartitioning(Google_Service_Bigquery_TimePartitioning $timePartitioning) - { - $this->timePartitioning = $timePartitioning; - } - /** - * @return Google_Service_Bigquery_TimePartitioning - */ - public function getTimePartitioning() - { - return $this->timePartitioning; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - /** - * @param Google_Service_Bigquery_ViewDefinition - */ - public function setView(Google_Service_Bigquery_ViewDefinition $view) - { - $this->view = $view; - } - /** - * @return Google_Service_Bigquery_ViewDefinition - */ - public function getView() - { - return $this->view; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/TableCell.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/TableCell.php deleted file mode 100644 index d63f3046..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/TableCell.php +++ /dev/null @@ -1,30 +0,0 @@ -v = $v; - } - public function getV() - { - return $this->v; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/TableDataInsertAllRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/TableDataInsertAllRequest.php deleted file mode 100644 index ee3fa5f8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/TableDataInsertAllRequest.php +++ /dev/null @@ -1,74 +0,0 @@ -ignoreUnknownValues = $ignoreUnknownValues; - } - public function getIgnoreUnknownValues() - { - return $this->ignoreUnknownValues; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Bigquery_TableDataInsertAllRequestRows - */ - public function setRows($rows) - { - $this->rows = $rows; - } - /** - * @return Google_Service_Bigquery_TableDataInsertAllRequestRows - */ - public function getRows() - { - return $this->rows; - } - public function setSkipInvalidRows($skipInvalidRows) - { - $this->skipInvalidRows = $skipInvalidRows; - } - public function getSkipInvalidRows() - { - return $this->skipInvalidRows; - } - public function setTemplateSuffix($templateSuffix) - { - $this->templateSuffix = $templateSuffix; - } - public function getTemplateSuffix() - { - return $this->templateSuffix; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/TableDataInsertAllRequestRows.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/TableDataInsertAllRequestRows.php deleted file mode 100644 index c13d79cc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/TableDataInsertAllRequestRows.php +++ /dev/null @@ -1,39 +0,0 @@ -insertId = $insertId; - } - public function getInsertId() - { - return $this->insertId; - } - public function setJson($json) - { - $this->json = $json; - } - public function getJson() - { - return $this->json; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/TableDataInsertAllResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/TableDataInsertAllResponse.php deleted file mode 100644 index f1ae4c22..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/TableDataInsertAllResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -insertErrors = $insertErrors; - } - /** - * @return Google_Service_Bigquery_TableDataInsertAllResponseInsertErrors - */ - public function getInsertErrors() - { - return $this->insertErrors; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/TableDataInsertAllResponseInsertErrors.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/TableDataInsertAllResponseInsertErrors.php deleted file mode 100644 index e408647b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/TableDataInsertAllResponseInsertErrors.php +++ /dev/null @@ -1,47 +0,0 @@ -errors = $errors; - } - /** - * @return Google_Service_Bigquery_ErrorProto - */ - public function getErrors() - { - return $this->errors; - } - public function setIndex($index) - { - $this->index = $index; - } - public function getIndex() - { - return $this->index; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/TableDataList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/TableDataList.php deleted file mode 100644 index 8db533d1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/TableDataList.php +++ /dev/null @@ -1,74 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setPageToken($pageToken) - { - $this->pageToken = $pageToken; - } - public function getPageToken() - { - return $this->pageToken; - } - /** - * @param Google_Service_Bigquery_TableRow - */ - public function setRows($rows) - { - $this->rows = $rows; - } - /** - * @return Google_Service_Bigquery_TableRow - */ - public function getRows() - { - return $this->rows; - } - public function setTotalRows($totalRows) - { - $this->totalRows = $totalRows; - } - public function getTotalRows() - { - return $this->totalRows; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/TableFieldSchema.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/TableFieldSchema.php deleted file mode 100644 index b83e6b66..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/TableFieldSchema.php +++ /dev/null @@ -1,106 +0,0 @@ -categories = $categories; - } - /** - * @return Google_Service_Bigquery_TableFieldSchemaCategories - */ - public function getCategories() - { - return $this->categories; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - /** - * @param Google_Service_Bigquery_TableFieldSchema - */ - public function setFields($fields) - { - $this->fields = $fields; - } - /** - * @return Google_Service_Bigquery_TableFieldSchema - */ - public function getFields() - { - return $this->fields; - } - public function setMode($mode) - { - $this->mode = $mode; - } - public function getMode() - { - return $this->mode; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Bigquery_TableFieldSchemaPolicyTags - */ - public function setPolicyTags(Google_Service_Bigquery_TableFieldSchemaPolicyTags $policyTags) - { - $this->policyTags = $policyTags; - } - /** - * @return Google_Service_Bigquery_TableFieldSchemaPolicyTags - */ - public function getPolicyTags() - { - return $this->policyTags; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/TableFieldSchemaCategories.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/TableFieldSchemaCategories.php deleted file mode 100644 index 82521061..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/TableFieldSchemaCategories.php +++ /dev/null @@ -1,31 +0,0 @@ -names = $names; - } - public function getNames() - { - return $this->names; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/TableFieldSchemaPolicyTags.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/TableFieldSchemaPolicyTags.php deleted file mode 100644 index 0e6d28cd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/TableFieldSchemaPolicyTags.php +++ /dev/null @@ -1,31 +0,0 @@ -names = $names; - } - public function getNames() - { - return $this->names; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/TableList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/TableList.php deleted file mode 100644 index 727d9f75..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/TableList.php +++ /dev/null @@ -1,74 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - 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_Bigquery_TableListTables - */ - public function setTables($tables) - { - $this->tables = $tables; - } - /** - * @return Google_Service_Bigquery_TableListTables - */ - public function getTables() - { - return $this->tables; - } - public function setTotalItems($totalItems) - { - $this->totalItems = $totalItems; - } - public function getTotalItems() - { - return $this->totalItems; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/TableListTables.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/TableListTables.php deleted file mode 100644 index af4f2499..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/TableListTables.php +++ /dev/null @@ -1,164 +0,0 @@ -clustering = $clustering; - } - /** - * @return Google_Service_Bigquery_Clustering - */ - public function getClustering() - { - return $this->clustering; - } - public function setCreationTime($creationTime) - { - $this->creationTime = $creationTime; - } - public function getCreationTime() - { - return $this->creationTime; - } - public function setExpirationTime($expirationTime) - { - $this->expirationTime = $expirationTime; - } - public function getExpirationTime() - { - return $this->expirationTime; - } - public function setFriendlyName($friendlyName) - { - $this->friendlyName = $friendlyName; - } - public function getFriendlyName() - { - return $this->friendlyName; - } - 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 setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - /** - * @param Google_Service_Bigquery_RangePartitioning - */ - public function setRangePartitioning(Google_Service_Bigquery_RangePartitioning $rangePartitioning) - { - $this->rangePartitioning = $rangePartitioning; - } - /** - * @return Google_Service_Bigquery_RangePartitioning - */ - public function getRangePartitioning() - { - return $this->rangePartitioning; - } - /** - * @param Google_Service_Bigquery_TableReference - */ - public function setTableReference(Google_Service_Bigquery_TableReference $tableReference) - { - $this->tableReference = $tableReference; - } - /** - * @return Google_Service_Bigquery_TableReference - */ - public function getTableReference() - { - return $this->tableReference; - } - /** - * @param Google_Service_Bigquery_TimePartitioning - */ - public function setTimePartitioning(Google_Service_Bigquery_TimePartitioning $timePartitioning) - { - $this->timePartitioning = $timePartitioning; - } - /** - * @return Google_Service_Bigquery_TimePartitioning - */ - public function getTimePartitioning() - { - return $this->timePartitioning; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - /** - * @param Google_Service_Bigquery_TableListTablesView - */ - public function setView(Google_Service_Bigquery_TableListTablesView $view) - { - $this->view = $view; - } - /** - * @return Google_Service_Bigquery_TableListTablesView - */ - public function getView() - { - return $this->view; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/TableListTablesView.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/TableListTablesView.php deleted file mode 100644 index 297b8b48..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/TableListTablesView.php +++ /dev/null @@ -1,30 +0,0 @@ -useLegacySql = $useLegacySql; - } - public function getUseLegacySql() - { - return $this->useLegacySql; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/TableReference.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/TableReference.php deleted file mode 100644 index 05231fdd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/TableReference.php +++ /dev/null @@ -1,48 +0,0 @@ -datasetId = $datasetId; - } - public function getDatasetId() - { - return $this->datasetId; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } - public function setTableId($tableId) - { - $this->tableId = $tableId; - } - public function getTableId() - { - return $this->tableId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/TableRow.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/TableRow.php deleted file mode 100644 index d8ec04df..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/TableRow.php +++ /dev/null @@ -1,38 +0,0 @@ -f = $f; - } - /** - * @return Google_Service_Bigquery_TableCell - */ - public function getF() - { - return $this->f; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/TableSchema.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/TableSchema.php deleted file mode 100644 index 55e78359..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/TableSchema.php +++ /dev/null @@ -1,38 +0,0 @@ -fields = $fields; - } - /** - * @return Google_Service_Bigquery_TableFieldSchema - */ - public function getFields() - { - return $this->fields; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/TimePartitioning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/TimePartitioning.php deleted file mode 100644 index 14ed1216..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/TimePartitioning.php +++ /dev/null @@ -1,57 +0,0 @@ -expirationMs = $expirationMs; - } - public function getExpirationMs() - { - return $this->expirationMs; - } - public function setField($field) - { - $this->field = $field; - } - public function getField() - { - return $this->field; - } - public function setRequirePartitionFilter($requirePartitionFilter) - { - $this->requirePartitionFilter = $requirePartitionFilter; - } - public function getRequirePartitionFilter() - { - return $this->requirePartitionFilter; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/TrainingOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/TrainingOptions.php deleted file mode 100644 index c00ba70e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/TrainingOptions.php +++ /dev/null @@ -1,211 +0,0 @@ -dataSplitColumn = $dataSplitColumn; - } - public function getDataSplitColumn() - { - return $this->dataSplitColumn; - } - public function setDataSplitEvalFraction($dataSplitEvalFraction) - { - $this->dataSplitEvalFraction = $dataSplitEvalFraction; - } - public function getDataSplitEvalFraction() - { - return $this->dataSplitEvalFraction; - } - public function setDataSplitMethod($dataSplitMethod) - { - $this->dataSplitMethod = $dataSplitMethod; - } - public function getDataSplitMethod() - { - return $this->dataSplitMethod; - } - public function setDistanceType($distanceType) - { - $this->distanceType = $distanceType; - } - public function getDistanceType() - { - return $this->distanceType; - } - public function setEarlyStop($earlyStop) - { - $this->earlyStop = $earlyStop; - } - public function getEarlyStop() - { - return $this->earlyStop; - } - public function setInitialLearnRate($initialLearnRate) - { - $this->initialLearnRate = $initialLearnRate; - } - public function getInitialLearnRate() - { - return $this->initialLearnRate; - } - public function setInputLabelColumns($inputLabelColumns) - { - $this->inputLabelColumns = $inputLabelColumns; - } - public function getInputLabelColumns() - { - return $this->inputLabelColumns; - } - public function setKmeansInitializationColumn($kmeansInitializationColumn) - { - $this->kmeansInitializationColumn = $kmeansInitializationColumn; - } - public function getKmeansInitializationColumn() - { - return $this->kmeansInitializationColumn; - } - public function setKmeansInitializationMethod($kmeansInitializationMethod) - { - $this->kmeansInitializationMethod = $kmeansInitializationMethod; - } - public function getKmeansInitializationMethod() - { - return $this->kmeansInitializationMethod; - } - public function setL1Regularization($l1Regularization) - { - $this->l1Regularization = $l1Regularization; - } - public function getL1Regularization() - { - return $this->l1Regularization; - } - public function setL2Regularization($l2Regularization) - { - $this->l2Regularization = $l2Regularization; - } - public function getL2Regularization() - { - return $this->l2Regularization; - } - public function setLabelClassWeights($labelClassWeights) - { - $this->labelClassWeights = $labelClassWeights; - } - public function getLabelClassWeights() - { - return $this->labelClassWeights; - } - public function setLearnRate($learnRate) - { - $this->learnRate = $learnRate; - } - public function getLearnRate() - { - return $this->learnRate; - } - public function setLearnRateStrategy($learnRateStrategy) - { - $this->learnRateStrategy = $learnRateStrategy; - } - public function getLearnRateStrategy() - { - return $this->learnRateStrategy; - } - public function setLossType($lossType) - { - $this->lossType = $lossType; - } - public function getLossType() - { - return $this->lossType; - } - public function setMaxIterations($maxIterations) - { - $this->maxIterations = $maxIterations; - } - public function getMaxIterations() - { - return $this->maxIterations; - } - public function setMinRelativeProgress($minRelativeProgress) - { - $this->minRelativeProgress = $minRelativeProgress; - } - public function getMinRelativeProgress() - { - return $this->minRelativeProgress; - } - public function setModelUri($modelUri) - { - $this->modelUri = $modelUri; - } - public function getModelUri() - { - return $this->modelUri; - } - public function setNumClusters($numClusters) - { - $this->numClusters = $numClusters; - } - public function getNumClusters() - { - return $this->numClusters; - } - public function setOptimizationStrategy($optimizationStrategy) - { - $this->optimizationStrategy = $optimizationStrategy; - } - public function getOptimizationStrategy() - { - return $this->optimizationStrategy; - } - public function setWarmStart($warmStart) - { - $this->warmStart = $warmStart; - } - public function getWarmStart() - { - return $this->warmStart; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/TrainingRun.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/TrainingRun.php deleted file mode 100644 index 617d1a02..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/TrainingRun.php +++ /dev/null @@ -1,95 +0,0 @@ -dataSplitResult = $dataSplitResult; - } - /** - * @return Google_Service_Bigquery_DataSplitResult - */ - public function getDataSplitResult() - { - return $this->dataSplitResult; - } - /** - * @param Google_Service_Bigquery_EvaluationMetrics - */ - public function setEvaluationMetrics(Google_Service_Bigquery_EvaluationMetrics $evaluationMetrics) - { - $this->evaluationMetrics = $evaluationMetrics; - } - /** - * @return Google_Service_Bigquery_EvaluationMetrics - */ - public function getEvaluationMetrics() - { - return $this->evaluationMetrics; - } - /** - * @param Google_Service_Bigquery_IterationResult - */ - public function setResults($results) - { - $this->results = $results; - } - /** - * @return Google_Service_Bigquery_IterationResult - */ - public function getResults() - { - return $this->results; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } - /** - * @param Google_Service_Bigquery_TrainingOptions - */ - public function setTrainingOptions(Google_Service_Bigquery_TrainingOptions $trainingOptions) - { - $this->trainingOptions = $trainingOptions; - } - /** - * @return Google_Service_Bigquery_TrainingOptions - */ - public function getTrainingOptions() - { - return $this->trainingOptions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/UserDefinedFunctionResource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/UserDefinedFunctionResource.php deleted file mode 100644 index 8b8f0aed..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/UserDefinedFunctionResource.php +++ /dev/null @@ -1,39 +0,0 @@ -inlineCode = $inlineCode; - } - public function getInlineCode() - { - return $this->inlineCode; - } - public function setResourceUri($resourceUri) - { - $this->resourceUri = $resourceUri; - } - public function getResourceUri() - { - return $this->resourceUri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ViewDefinition.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ViewDefinition.php deleted file mode 100644 index 4932a4c6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Bigquery/ViewDefinition.php +++ /dev/null @@ -1,56 +0,0 @@ -query = $query; - } - public function getQuery() - { - return $this->query; - } - public function setUseLegacySql($useLegacySql) - { - $this->useLegacySql = $useLegacySql; - } - public function getUseLegacySql() - { - return $this->useLegacySql; - } - /** - * @param Google_Service_Bigquery_UserDefinedFunctionResource - */ - public function setUserDefinedFunctionResources($userDefinedFunctionResources) - { - $this->userDefinedFunctionResources = $userDefinedFunctionResources; - } - /** - * @return Google_Service_Bigquery_UserDefinedFunctionResource - */ - public function getUserDefinedFunctionResources() - { - return $this->userDefinedFunctionResources; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin.php deleted file mode 100644 index 78867e31..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin.php +++ /dev/null @@ -1,630 +0,0 @@ - - * Administer your Cloud Bigtable tables and instances.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_BigtableAdmin extends Google_Service -{ - /** Administer your Cloud Bigtable tables and clusters. */ - const BIGTABLE_ADMIN = - "https://www.googleapis.com/auth/bigtable.admin"; - /** Administer your Cloud Bigtable clusters. */ - const BIGTABLE_ADMIN_CLUSTER = - "https://www.googleapis.com/auth/bigtable.admin.cluster"; - /** Administer your Cloud Bigtable clusters. */ - const BIGTABLE_ADMIN_INSTANCE = - "https://www.googleapis.com/auth/bigtable.admin.instance"; - /** Administer your Cloud Bigtable tables. */ - const BIGTABLE_ADMIN_TABLE = - "https://www.googleapis.com/auth/bigtable.admin.table"; - /** Administer your Cloud Bigtable tables and clusters. */ - const CLOUD_BIGTABLE_ADMIN = - "https://www.googleapis.com/auth/cloud-bigtable.admin"; - /** Administer your Cloud Bigtable clusters. */ - const CLOUD_BIGTABLE_ADMIN_CLUSTER = - "https://www.googleapis.com/auth/cloud-bigtable.admin.cluster"; - /** Administer your Cloud Bigtable tables. */ - const CLOUD_BIGTABLE_ADMIN_TABLE = - "https://www.googleapis.com/auth/cloud-bigtable.admin.table"; - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** View your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM_READ_ONLY = - "https://www.googleapis.com/auth/cloud-platform.read-only"; - - public $operations; - public $operations_projects_operations; - public $projects_instances; - public $projects_instances_appProfiles; - public $projects_instances_clusters; - public $projects_instances_clusters_backups; - public $projects_instances_tables; - public $projects_locations; - - /** - * Constructs the internal representation of the BigtableAdmin service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://bigtableadmin.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v2'; - $this->serviceName = 'bigtableadmin'; - - $this->operations = new Google_Service_BigtableAdmin_Resource_Operations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'cancel' => array( - 'path' => 'v2/{+name}:cancel', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->operations_projects_operations = new Google_Service_BigtableAdmin_Resource_OperationsProjectsOperations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v2/{+name}/operations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->projects_instances = new Google_Service_BigtableAdmin_Resource_ProjectsInstances( - $this, - $this->serviceName, - 'instances', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v2/{+parent}/instances', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getIamPolicy' => array( - 'path' => 'v2/{+resource}:getIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2/{+parent}/instances', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'partialUpdateInstance' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setIamPolicy' => array( - 'path' => 'v2/{+resource}:setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => 'v2/{+resource}:testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_instances_appProfiles = new Google_Service_BigtableAdmin_Resource_ProjectsInstancesAppProfiles( - $this, - $this->serviceName, - 'appProfiles', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v2/{+parent}/appProfiles', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'appProfileId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ignoreWarnings' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'delete' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'ignoreWarnings' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'get' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2/{+parent}/appProfiles', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'ignoreWarnings' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_instances_clusters = new Google_Service_BigtableAdmin_Resource_ProjectsInstancesClusters( - $this, - $this->serviceName, - 'clusters', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v2/{+parent}/clusters', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clusterId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2/{+parent}/clusters', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_instances_clusters_backups = new Google_Service_BigtableAdmin_Resource_ProjectsInstancesClustersBackups( - $this, - $this->serviceName, - 'backups', - array( - 'methods' => array( - 'getIamPolicy' => array( - 'path' => 'v2/{+resource}:getIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setIamPolicy' => array( - 'path' => 'v2/{+resource}:setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_instances_tables = new Google_Service_BigtableAdmin_Resource_ProjectsInstancesTables( - $this, - $this->serviceName, - 'tables', - array( - 'methods' => array( - 'checkConsistency' => array( - 'path' => 'v2/{+name}:checkConsistency', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'create' => array( - 'path' => 'v2/{+parent}/tables', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'dropRowRange' => array( - 'path' => 'v2/{+name}:dropRowRange', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'generateConsistencyToken' => array( - 'path' => 'v2/{+name}:generateConsistencyToken', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'getIamPolicy' => array( - 'path' => 'v2/{+resource}:getIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2/{+parent}/tables', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'modifyColumnFamilies' => array( - 'path' => 'v2/{+name}:modifyColumnFamilies', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setIamPolicy' => array( - 'path' => 'v2/{+resource}:setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => 'v2/{+resource}:testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_locations = new Google_Service_BigtableAdmin_Resource_ProjectsLocations( - $this, - $this->serviceName, - 'locations', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2/{+name}/locations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/AppProfile.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/AppProfile.php deleted file mode 100644 index a0171d32..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/AppProfile.php +++ /dev/null @@ -1,80 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_BigtableAdmin_MultiClusterRoutingUseAny - */ - public function setMultiClusterRoutingUseAny(Google_Service_BigtableAdmin_MultiClusterRoutingUseAny $multiClusterRoutingUseAny) - { - $this->multiClusterRoutingUseAny = $multiClusterRoutingUseAny; - } - /** - * @return Google_Service_BigtableAdmin_MultiClusterRoutingUseAny - */ - public function getMultiClusterRoutingUseAny() - { - return $this->multiClusterRoutingUseAny; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_BigtableAdmin_SingleClusterRouting - */ - public function setSingleClusterRouting(Google_Service_BigtableAdmin_SingleClusterRouting $singleClusterRouting) - { - $this->singleClusterRouting = $singleClusterRouting; - } - /** - * @return Google_Service_BigtableAdmin_SingleClusterRouting - */ - public function getSingleClusterRouting() - { - return $this->singleClusterRouting; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/AuditConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/AuditConfig.php deleted file mode 100644 index 42660f58..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/AuditConfig.php +++ /dev/null @@ -1,47 +0,0 @@ -auditLogConfigs = $auditLogConfigs; - } - /** - * @return Google_Service_BigtableAdmin_AuditLogConfig - */ - public function getAuditLogConfigs() - { - return $this->auditLogConfigs; - } - public function setService($service) - { - $this->service = $service; - } - public function getService() - { - return $this->service; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/AuditLogConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/AuditLogConfig.php deleted file mode 100644 index fc12ae90..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/AuditLogConfig.php +++ /dev/null @@ -1,40 +0,0 @@ -exemptedMembers = $exemptedMembers; - } - public function getExemptedMembers() - { - return $this->exemptedMembers; - } - public function setLogType($logType) - { - $this->logType = $logType; - } - public function getLogType() - { - return $this->logType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/BigtableadminEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/BigtableadminEmpty.php deleted file mode 100644 index 442fe136..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/BigtableadminEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -condition = $condition; - } - /** - * @return Google_Service_BigtableAdmin_Expr - */ - public function getCondition() - { - return $this->condition; - } - public function setMembers($members) - { - $this->members = $members; - } - public function getMembers() - { - return $this->members; - } - public function setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/CheckConsistencyRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/CheckConsistencyRequest.php deleted file mode 100644 index 5383aad6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/CheckConsistencyRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -consistencyToken = $consistencyToken; - } - public function getConsistencyToken() - { - return $this->consistencyToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/CheckConsistencyResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/CheckConsistencyResponse.php deleted file mode 100644 index b7dfdc34..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/CheckConsistencyResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -consistent = $consistent; - } - public function getConsistent() - { - return $this->consistent; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Cluster.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Cluster.php deleted file mode 100644 index 536f7f1a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Cluster.php +++ /dev/null @@ -1,66 +0,0 @@ -defaultStorageType = $defaultStorageType; - } - public function getDefaultStorageType() - { - return $this->defaultStorageType; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setServeNodes($serveNodes) - { - $this->serveNodes = $serveNodes; - } - public function getServeNodes() - { - return $this->serveNodes; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/ClusterState.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/ClusterState.php deleted file mode 100644 index c85474d4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/ClusterState.php +++ /dev/null @@ -1,30 +0,0 @@ -replicationState = $replicationState; - } - public function getReplicationState() - { - return $this->replicationState; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/ColumnFamily.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/ColumnFamily.php deleted file mode 100644 index cbb6a55a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/ColumnFamily.php +++ /dev/null @@ -1,37 +0,0 @@ -gcRule = $gcRule; - } - /** - * @return Google_Service_BigtableAdmin_GcRule - */ - public function getGcRule() - { - return $this->gcRule; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/CreateClusterMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/CreateClusterMetadata.php deleted file mode 100644 index ce5b1afd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/CreateClusterMetadata.php +++ /dev/null @@ -1,71 +0,0 @@ -finishTime = $finishTime; - } - public function getFinishTime() - { - return $this->finishTime; - } - /** - * @param Google_Service_BigtableAdmin_CreateClusterRequest - */ - public function setOriginalRequest(Google_Service_BigtableAdmin_CreateClusterRequest $originalRequest) - { - $this->originalRequest = $originalRequest; - } - /** - * @return Google_Service_BigtableAdmin_CreateClusterRequest - */ - public function getOriginalRequest() - { - return $this->originalRequest; - } - public function setRequestTime($requestTime) - { - $this->requestTime = $requestTime; - } - public function getRequestTime() - { - return $this->requestTime; - } - /** - * @param Google_Service_BigtableAdmin_TableProgress - */ - public function setTables($tables) - { - $this->tables = $tables; - } - /** - * @return Google_Service_BigtableAdmin_TableProgress - */ - public function getTables() - { - return $this->tables; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/CreateClusterRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/CreateClusterRequest.php deleted file mode 100644 index 5e44e7d7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/CreateClusterRequest.php +++ /dev/null @@ -1,55 +0,0 @@ -cluster = $cluster; - } - /** - * @return Google_Service_BigtableAdmin_Cluster - */ - public function getCluster() - { - return $this->cluster; - } - public function setClusterId($clusterId) - { - $this->clusterId = $clusterId; - } - public function getClusterId() - { - return $this->clusterId; - } - public function setParent($parent) - { - $this->parent = $parent; - } - public function getParent() - { - return $this->parent; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/CreateInstanceMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/CreateInstanceMetadata.php deleted file mode 100644 index caf8823a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/CreateInstanceMetadata.php +++ /dev/null @@ -1,55 +0,0 @@ -finishTime = $finishTime; - } - public function getFinishTime() - { - return $this->finishTime; - } - /** - * @param Google_Service_BigtableAdmin_CreateInstanceRequest - */ - public function setOriginalRequest(Google_Service_BigtableAdmin_CreateInstanceRequest $originalRequest) - { - $this->originalRequest = $originalRequest; - } - /** - * @return Google_Service_BigtableAdmin_CreateInstanceRequest - */ - public function getOriginalRequest() - { - return $this->originalRequest; - } - public function setRequestTime($requestTime) - { - $this->requestTime = $requestTime; - } - public function getRequestTime() - { - return $this->requestTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/CreateInstanceRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/CreateInstanceRequest.php deleted file mode 100644 index 98aabb4f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/CreateInstanceRequest.php +++ /dev/null @@ -1,71 +0,0 @@ -clusters = $clusters; - } - /** - * @return Google_Service_BigtableAdmin_Cluster - */ - public function getClusters() - { - return $this->clusters; - } - /** - * @param Google_Service_BigtableAdmin_Instance - */ - public function setInstance(Google_Service_BigtableAdmin_Instance $instance) - { - $this->instance = $instance; - } - /** - * @return Google_Service_BigtableAdmin_Instance - */ - public function getInstance() - { - return $this->instance; - } - public function setInstanceId($instanceId) - { - $this->instanceId = $instanceId; - } - public function getInstanceId() - { - return $this->instanceId; - } - public function setParent($parent) - { - $this->parent = $parent; - } - public function getParent() - { - return $this->parent; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/CreateTableRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/CreateTableRequest.php deleted file mode 100644 index 980f440e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/CreateTableRequest.php +++ /dev/null @@ -1,63 +0,0 @@ -initialSplits = $initialSplits; - } - /** - * @return Google_Service_BigtableAdmin_Split - */ - public function getInitialSplits() - { - return $this->initialSplits; - } - /** - * @param Google_Service_BigtableAdmin_Table - */ - public function setTable(Google_Service_BigtableAdmin_Table $table) - { - $this->table = $table; - } - /** - * @return Google_Service_BigtableAdmin_Table - */ - public function getTable() - { - return $this->table; - } - public function setTableId($tableId) - { - $this->tableId = $tableId; - } - public function getTableId() - { - return $this->tableId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/DropRowRangeRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/DropRowRangeRequest.php deleted file mode 100644 index 87b8b5e5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/DropRowRangeRequest.php +++ /dev/null @@ -1,39 +0,0 @@ -deleteAllDataFromTable = $deleteAllDataFromTable; - } - public function getDeleteAllDataFromTable() - { - return $this->deleteAllDataFromTable; - } - public function setRowKeyPrefix($rowKeyPrefix) - { - $this->rowKeyPrefix = $rowKeyPrefix; - } - public function getRowKeyPrefix() - { - return $this->rowKeyPrefix; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Expr.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Expr.php deleted file mode 100644 index 994a25f4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Expr.php +++ /dev/null @@ -1,57 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setExpression($expression) - { - $this->expression = $expression; - } - public function getExpression() - { - return $this->expression; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/GcRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/GcRule.php deleted file mode 100644 index 21b76859..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/GcRule.php +++ /dev/null @@ -1,71 +0,0 @@ -intersection = $intersection; - } - /** - * @return Google_Service_BigtableAdmin_Intersection - */ - public function getIntersection() - { - return $this->intersection; - } - public function setMaxAge($maxAge) - { - $this->maxAge = $maxAge; - } - public function getMaxAge() - { - return $this->maxAge; - } - public function setMaxNumVersions($maxNumVersions) - { - $this->maxNumVersions = $maxNumVersions; - } - public function getMaxNumVersions() - { - return $this->maxNumVersions; - } - /** - * @param Google_Service_BigtableAdmin_Union - */ - public function setUnion(Google_Service_BigtableAdmin_Union $union) - { - $this->union = $union; - } - /** - * @return Google_Service_BigtableAdmin_Union - */ - public function getUnion() - { - return $this->union; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/GenerateConsistencyTokenRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/GenerateConsistencyTokenRequest.php deleted file mode 100644 index 8310914a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/GenerateConsistencyTokenRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -consistencyToken = $consistencyToken; - } - public function getConsistencyToken() - { - return $this->consistencyToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/GetIamPolicyRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/GetIamPolicyRequest.php deleted file mode 100644 index 55de3be4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/GetIamPolicyRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -options = $options; - } - /** - * @return Google_Service_BigtableAdmin_GetPolicyOptions - */ - public function getOptions() - { - return $this->options; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/GetPolicyOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/GetPolicyOptions.php deleted file mode 100644 index 5823feff..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/GetPolicyOptions.php +++ /dev/null @@ -1,30 +0,0 @@ -requestedPolicyVersion = $requestedPolicyVersion; - } - public function getRequestedPolicyVersion() - { - return $this->requestedPolicyVersion; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Instance.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Instance.php deleted file mode 100644 index c7abaa48..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Instance.php +++ /dev/null @@ -1,66 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Intersection.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Intersection.php deleted file mode 100644 index 7e1c94a8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Intersection.php +++ /dev/null @@ -1,38 +0,0 @@ -rules = $rules; - } - /** - * @return Google_Service_BigtableAdmin_GcRule - */ - public function getRules() - { - return $this->rules; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/ListAppProfilesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/ListAppProfilesResponse.php deleted file mode 100644 index 7d9508c7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/ListAppProfilesResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -appProfiles = $appProfiles; - } - /** - * @return Google_Service_BigtableAdmin_AppProfile - */ - public function getAppProfiles() - { - return $this->appProfiles; - } - public function setFailedLocations($failedLocations) - { - $this->failedLocations = $failedLocations; - } - public function getFailedLocations() - { - return $this->failedLocations; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/ListClustersResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/ListClustersResponse.php deleted file mode 100644 index 034e6bf7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/ListClustersResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -clusters = $clusters; - } - /** - * @return Google_Service_BigtableAdmin_Cluster - */ - public function getClusters() - { - return $this->clusters; - } - public function setFailedLocations($failedLocations) - { - $this->failedLocations = $failedLocations; - } - public function getFailedLocations() - { - return $this->failedLocations; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/ListInstancesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/ListInstancesResponse.php deleted file mode 100644 index 13947af5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/ListInstancesResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -failedLocations = $failedLocations; - } - public function getFailedLocations() - { - return $this->failedLocations; - } - /** - * @param Google_Service_BigtableAdmin_Instance - */ - public function setInstances($instances) - { - $this->instances = $instances; - } - /** - * @return Google_Service_BigtableAdmin_Instance - */ - public function getInstances() - { - return $this->instances; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/ListLocationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/ListLocationsResponse.php deleted file mode 100644 index 73920886..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/ListLocationsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -locations = $locations; - } - /** - * @return Google_Service_BigtableAdmin_Location - */ - public function getLocations() - { - return $this->locations; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/ListOperationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/ListOperationsResponse.php deleted file mode 100644 index ded2ab25..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/ListOperationsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_BigtableAdmin_Operation - */ - public function setOperations($operations) - { - $this->operations = $operations; - } - /** - * @return Google_Service_BigtableAdmin_Operation - */ - public function getOperations() - { - return $this->operations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/ListTablesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/ListTablesResponse.php deleted file mode 100644 index 1aad5dac..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/ListTablesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_BigtableAdmin_Table - */ - public function setTables($tables) - { - $this->tables = $tables; - } - /** - * @return Google_Service_BigtableAdmin_Table - */ - public function getTables() - { - return $this->tables; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Location.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Location.php deleted file mode 100644 index fc1aec82..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Location.php +++ /dev/null @@ -1,66 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setLocationId($locationId) - { - $this->locationId = $locationId; - } - public function getLocationId() - { - return $this->locationId; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Modification.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Modification.php deleted file mode 100644 index e41e31b3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Modification.php +++ /dev/null @@ -1,71 +0,0 @@ -create = $create; - } - /** - * @return Google_Service_BigtableAdmin_ColumnFamily - */ - public function getCreate() - { - return $this->create; - } - public function setDrop($drop) - { - $this->drop = $drop; - } - public function getDrop() - { - return $this->drop; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_BigtableAdmin_ColumnFamily - */ - public function setUpdate(Google_Service_BigtableAdmin_ColumnFamily $update) - { - $this->update = $update; - } - /** - * @return Google_Service_BigtableAdmin_ColumnFamily - */ - public function getUpdate() - { - return $this->update; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/ModifyColumnFamiliesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/ModifyColumnFamiliesRequest.php deleted file mode 100644 index b2f989fe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/ModifyColumnFamiliesRequest.php +++ /dev/null @@ -1,38 +0,0 @@ -modifications = $modifications; - } - /** - * @return Google_Service_BigtableAdmin_Modification - */ - public function getModifications() - { - return $this->modifications; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/MultiClusterRoutingUseAny.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/MultiClusterRoutingUseAny.php deleted file mode 100644 index 8be9464e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/MultiClusterRoutingUseAny.php +++ /dev/null @@ -1,20 +0,0 @@ -done = $done; - } - public function getDone() - { - return $this->done; - } - /** - * @param Google_Service_BigtableAdmin_Status - */ - public function setError(Google_Service_BigtableAdmin_Status $error) - { - $this->error = $error; - } - /** - * @return Google_Service_BigtableAdmin_Status - */ - public function getError() - { - return $this->error; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/PartialUpdateInstanceRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/PartialUpdateInstanceRequest.php deleted file mode 100644 index 08efe7fc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/PartialUpdateInstanceRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -instance = $instance; - } - /** - * @return Google_Service_BigtableAdmin_Instance - */ - public function getInstance() - { - return $this->instance; - } - public function setUpdateMask($updateMask) - { - $this->updateMask = $updateMask; - } - public function getUpdateMask() - { - return $this->updateMask; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Policy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Policy.php deleted file mode 100644 index 0472d162..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Policy.php +++ /dev/null @@ -1,72 +0,0 @@ -auditConfigs = $auditConfigs; - } - /** - * @return Google_Service_BigtableAdmin_AuditConfig - */ - public function getAuditConfigs() - { - return $this->auditConfigs; - } - /** - * @param Google_Service_BigtableAdmin_Binding - */ - public function setBindings($bindings) - { - $this->bindings = $bindings; - } - /** - * @return Google_Service_BigtableAdmin_Binding - */ - public function getBindings() - { - return $this->bindings; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Resource/Operations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Resource/Operations.php deleted file mode 100644 index 34eae9d4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Resource/Operations.php +++ /dev/null @@ -1,80 +0,0 @@ - - * $bigtableadminService = new Google_Service_BigtableAdmin(...); - * $operations = $bigtableadminService->operations; - * - */ -class Google_Service_BigtableAdmin_Resource_Operations extends Google_Service_Resource -{ - /** - * Starts asynchronous cancellation on a long-running operation. The server - * makes a best effort to cancel the operation, but success is not guaranteed. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or - * other methods to check whether the cancellation succeeded or whether the - * operation completed despite cancellation. On successful cancellation, the - * operation is not deleted; instead, it becomes an operation with an - * Operation.error value with a google.rpc.Status.code of 1, corresponding to - * `Code.CANCELLED`. (operations.cancel) - * - * @param string $name The name of the operation resource to be cancelled. - * @param array $optParams Optional parameters. - * @return Google_Service_BigtableAdmin_BigtableadminEmpty - */ - public function cancel($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('cancel', array($params), "Google_Service_BigtableAdmin_BigtableadminEmpty"); - } - /** - * Deletes a long-running operation. This method indicates that the client is no - * longer interested in the operation result. It does not cancel the operation. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. (operations.delete) - * - * @param string $name The name of the operation resource to be deleted. - * @param array $optParams Optional parameters. - * @return Google_Service_BigtableAdmin_BigtableadminEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_BigtableAdmin_BigtableadminEmpty"); - } - /** - * Gets the latest state of a long-running operation. Clients can use this - * method to poll the operation result at intervals as recommended by the API - * service. (operations.get) - * - * @param string $name The name of the operation resource. - * @param array $optParams Optional parameters. - * @return Google_Service_BigtableAdmin_Operation - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_BigtableAdmin_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Resource/OperationsProjects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Resource/OperationsProjects.php deleted file mode 100644 index ec53117b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Resource/OperationsProjects.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $bigtableadminService = new Google_Service_BigtableAdmin(...); - * $projects = $bigtableadminService->projects; - * - */ -class Google_Service_BigtableAdmin_Resource_OperationsProjects extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Resource/OperationsProjectsOperations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Resource/OperationsProjectsOperations.php deleted file mode 100644 index ec9edbad..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Resource/OperationsProjectsOperations.php +++ /dev/null @@ -1,55 +0,0 @@ - - * $bigtableadminService = new Google_Service_BigtableAdmin(...); - * $operations = $bigtableadminService->operations; - * - */ -class Google_Service_BigtableAdmin_Resource_OperationsProjectsOperations extends Google_Service_Resource -{ - /** - * Lists operations that match the specified filter in the request. If the - * server doesn't support this method, it returns `UNIMPLEMENTED`. - * - * NOTE: the `name` binding allows API services to override the binding to use - * different resource name schemes, such as `users/operations`. To override the - * binding, API services can add a binding such as - * `"/v1/{name=users}/operations"` to their service configuration. For backwards - * compatibility, the default name includes the operations collection id, - * however overriding users must ensure the name binding is the parent resource, - * without the operations collection id. - * (operations.listOperationsProjectsOperations) - * - * @param string $name The name of the operation's parent resource. - * @param array $optParams Optional parameters. - * - * @opt_param string filter The standard list filter. - * @opt_param string pageToken The standard list page token. - * @opt_param int pageSize The standard list page size. - * @return Google_Service_BigtableAdmin_ListOperationsResponse - */ - public function listOperationsProjectsOperations($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_BigtableAdmin_ListOperationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Resource/Projects.php deleted file mode 100644 index 5292c7b9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Resource/Projects.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $bigtableadminService = new Google_Service_BigtableAdmin(...); - * $projects = $bigtableadminService->projects; - * - */ -class Google_Service_BigtableAdmin_Resource_Projects extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Resource/ProjectsInstances.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Resource/ProjectsInstances.php deleted file mode 100644 index d7aaba46..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Resource/ProjectsInstances.php +++ /dev/null @@ -1,177 +0,0 @@ - - * $bigtableadminService = new Google_Service_BigtableAdmin(...); - * $instances = $bigtableadminService->instances; - * - */ -class Google_Service_BigtableAdmin_Resource_ProjectsInstances extends Google_Service_Resource -{ - /** - * Create an instance within a project. (instances.create) - * - * @param string $parent The unique name of the project in which to create the - * new instance. Values are of the form `projects/`. - * @param Google_Service_BigtableAdmin_CreateInstanceRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_BigtableAdmin_Operation - */ - public function create($parent, Google_Service_BigtableAdmin_CreateInstanceRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_BigtableAdmin_Operation"); - } - /** - * Delete an instance from a project. (instances.delete) - * - * @param string $name The unique name of the instance to be deleted. Values are - * of the form `projects//instances/`. - * @param array $optParams Optional parameters. - * @return Google_Service_BigtableAdmin_BigtableadminEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_BigtableAdmin_BigtableadminEmpty"); - } - /** - * Gets information about an instance. (instances.get) - * - * @param string $name The unique name of the requested instance. Values are of - * the form `projects//instances/`. - * @param array $optParams Optional parameters. - * @return Google_Service_BigtableAdmin_Instance - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_BigtableAdmin_Instance"); - } - /** - * Gets the access control policy for an instance resource. Returns an empty - * policy if an instance exists but does not have a policy set. - * (instances.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 Google_Service_BigtableAdmin_GetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_BigtableAdmin_Policy - */ - public function getIamPolicy($resource, Google_Service_BigtableAdmin_GetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_BigtableAdmin_Policy"); - } - /** - * Lists information about instances in a project. - * (instances.listProjectsInstances) - * - * @param string $parent The unique name of the project for which a list of - * instances is requested. Values are of the form `projects/`. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken DEPRECATED: This field is unused and ignored. - * @return Google_Service_BigtableAdmin_ListInstancesResponse - */ - public function listProjectsInstances($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_BigtableAdmin_ListInstancesResponse"); - } - /** - * Partially updates an instance within a project. This method can modify all - * fields of an Instance and is the preferred way to update an Instance. - * (instances.partialUpdateInstance) - * - * @param string $name (`OutputOnly`) The unique name of the instance. Values - * are of the form `projects//instances/a-z+[a-z0-9]`. - * @param Google_Service_BigtableAdmin_Instance $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask The subset of Instance fields which should be - * replaced. Must be explicitly set. - * @return Google_Service_BigtableAdmin_Operation - */ - public function partialUpdateInstance($name, Google_Service_BigtableAdmin_Instance $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('partialUpdateInstance', array($params), "Google_Service_BigtableAdmin_Operation"); - } - /** - * Sets the access control policy on an instance resource. Replaces any existing - * policy. (instances.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_BigtableAdmin_SetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_BigtableAdmin_Policy - */ - public function setIamPolicy($resource, Google_Service_BigtableAdmin_SetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_BigtableAdmin_Policy"); - } - /** - * Returns permissions that the caller has on the specified instance resource. - * (instances.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_BigtableAdmin_TestIamPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_BigtableAdmin_TestIamPermissionsResponse - */ - public function testIamPermissions($resource, Google_Service_BigtableAdmin_TestIamPermissionsRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_BigtableAdmin_TestIamPermissionsResponse"); - } - /** - * Updates an instance within a project. This method updates only the display - * name and type for an Instance. To update other Instance properties, such as - * labels, use PartialUpdateInstance. (instances.update) - * - * @param string $name (`OutputOnly`) The unique name of the instance. Values - * are of the form `projects//instances/a-z+[a-z0-9]`. - * @param Google_Service_BigtableAdmin_Instance $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_BigtableAdmin_Instance - */ - public function update($name, Google_Service_BigtableAdmin_Instance $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_BigtableAdmin_Instance"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Resource/ProjectsInstancesAppProfiles.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Resource/ProjectsInstancesAppProfiles.php deleted file mode 100644 index 2ac3a28f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Resource/ProjectsInstancesAppProfiles.php +++ /dev/null @@ -1,129 +0,0 @@ - - * $bigtableadminService = new Google_Service_BigtableAdmin(...); - * $appProfiles = $bigtableadminService->appProfiles; - * - */ -class Google_Service_BigtableAdmin_Resource_ProjectsInstancesAppProfiles extends Google_Service_Resource -{ - /** - * Creates an app profile within an instance. (appProfiles.create) - * - * @param string $parent The unique name of the instance in which to create the - * new app profile. Values are of the form `projects//instances/`. - * @param Google_Service_BigtableAdmin_AppProfile $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string appProfileId The ID to be used when referring to the new - * app profile within its instance, e.g., just `myprofile` rather than - * `projects/myproject/instances/myinstance/appProfiles/myprofile`. - * @opt_param bool ignoreWarnings If true, ignore safety checks when creating - * the app profile. - * @return Google_Service_BigtableAdmin_AppProfile - */ - public function create($parent, Google_Service_BigtableAdmin_AppProfile $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_BigtableAdmin_AppProfile"); - } - /** - * Deletes an app profile from an instance. (appProfiles.delete) - * - * @param string $name The unique name of the app profile to be deleted. Values - * are of the form `projects//instances//appProfiles/`. - * @param array $optParams Optional parameters. - * - * @opt_param bool ignoreWarnings If true, ignore safety checks when deleting - * the app profile. - * @return Google_Service_BigtableAdmin_BigtableadminEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_BigtableAdmin_BigtableadminEmpty"); - } - /** - * Gets information about an app profile. (appProfiles.get) - * - * @param string $name The unique name of the requested app profile. Values are - * of the form `projects//instances//appProfiles/`. - * @param array $optParams Optional parameters. - * @return Google_Service_BigtableAdmin_AppProfile - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_BigtableAdmin_AppProfile"); - } - /** - * Lists information about app profiles in an instance. - * (appProfiles.listProjectsInstancesAppProfiles) - * - * @param string $parent The unique name of the instance for which a list of app - * profiles is requested. Values are of the form `projects//instances/`. Use ` = - * '-'` to list AppProfiles for all Instances in a project, e.g., - * `projects/myproject/instances/-`. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The value of `next_page_token` returned by a - * previous call. - * @opt_param int pageSize Maximum number of results per page. - * - * A page_size of zero lets the server choose the number of items to return. A - * page_size which is strictly positive will return at most that many items. A - * negative page_size will cause an error. - * - * Following the first request, subsequent paginated calls are not required to - * pass a page_size. If a page_size is set in subsequent calls, it must match - * the page_size given in the first request. - * @return Google_Service_BigtableAdmin_ListAppProfilesResponse - */ - public function listProjectsInstancesAppProfiles($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_BigtableAdmin_ListAppProfilesResponse"); - } - /** - * Updates an app profile within an instance. (appProfiles.patch) - * - * @param string $name (`OutputOnly`) The unique name of the app profile. Values - * are of the form `projects//instances//appProfiles/_a-zA-Z0-9*`. - * @param Google_Service_BigtableAdmin_AppProfile $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool ignoreWarnings If true, ignore safety checks when updating - * the app profile. - * @opt_param string updateMask The subset of app profile fields which should be - * replaced. If unset, all fields will be replaced. - * @return Google_Service_BigtableAdmin_Operation - */ - public function patch($name, Google_Service_BigtableAdmin_AppProfile $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_BigtableAdmin_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Resource/ProjectsInstancesClusters.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Resource/ProjectsInstancesClusters.php deleted file mode 100644 index 47e4ae41..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Resource/ProjectsInstancesClusters.php +++ /dev/null @@ -1,109 +0,0 @@ - - * $bigtableadminService = new Google_Service_BigtableAdmin(...); - * $clusters = $bigtableadminService->clusters; - * - */ -class Google_Service_BigtableAdmin_Resource_ProjectsInstancesClusters extends Google_Service_Resource -{ - /** - * Creates a cluster within an instance. (clusters.create) - * - * @param string $parent The unique name of the instance in which to create the - * new cluster. Values are of the form `projects//instances/`. - * @param Google_Service_BigtableAdmin_Cluster $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string clusterId The ID to be used when referring to the new - * cluster within its instance, e.g., just `mycluster` rather than - * `projects/myproject/instances/myinstance/clusters/mycluster`. - * @return Google_Service_BigtableAdmin_Operation - */ - public function create($parent, Google_Service_BigtableAdmin_Cluster $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_BigtableAdmin_Operation"); - } - /** - * Deletes a cluster from an instance. (clusters.delete) - * - * @param string $name The unique name of the cluster to be deleted. Values are - * of the form `projects//instances//clusters/`. - * @param array $optParams Optional parameters. - * @return Google_Service_BigtableAdmin_BigtableadminEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_BigtableAdmin_BigtableadminEmpty"); - } - /** - * Gets information about a cluster. (clusters.get) - * - * @param string $name The unique name of the requested cluster. Values are of - * the form `projects//instances//clusters/`. - * @param array $optParams Optional parameters. - * @return Google_Service_BigtableAdmin_Cluster - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_BigtableAdmin_Cluster"); - } - /** - * Lists information about clusters in an instance. - * (clusters.listProjectsInstancesClusters) - * - * @param string $parent The unique name of the instance for which a list of - * clusters is requested. Values are of the form `projects//instances/`. Use ` = - * '-'` to list Clusters for all Instances in a project, e.g., - * `projects/myproject/instances/-`. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken DEPRECATED: This field is unused and ignored. - * @return Google_Service_BigtableAdmin_ListClustersResponse - */ - public function listProjectsInstancesClusters($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_BigtableAdmin_ListClustersResponse"); - } - /** - * Updates a cluster within an instance. (clusters.update) - * - * @param string $name (`OutputOnly`) The unique name of the cluster. Values are - * of the form `projects//instances//clusters/a-z*`. - * @param Google_Service_BigtableAdmin_Cluster $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_BigtableAdmin_Operation - */ - public function update($name, Google_Service_BigtableAdmin_Cluster $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_BigtableAdmin_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Resource/ProjectsInstancesClustersBackups.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Resource/ProjectsInstancesClustersBackups.php deleted file mode 100644 index 242b0080..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Resource/ProjectsInstancesClustersBackups.php +++ /dev/null @@ -1,63 +0,0 @@ - - * $bigtableadminService = new Google_Service_BigtableAdmin(...); - * $backups = $bigtableadminService->backups; - * - */ -class Google_Service_BigtableAdmin_Resource_ProjectsInstancesClustersBackups extends Google_Service_Resource -{ - /** - * Gets the access control policy for a Table or Backup resource. Returns an - * empty policy if the resource exists but does not have a policy set. - * (backups.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 Google_Service_BigtableAdmin_GetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_BigtableAdmin_Policy - */ - public function getIamPolicy($resource, Google_Service_BigtableAdmin_GetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_BigtableAdmin_Policy"); - } - /** - * Sets the access control policy on a Table or Backup resource. Replaces any - * existing policy. (backups.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_BigtableAdmin_SetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_BigtableAdmin_Policy - */ - public function setIamPolicy($resource, Google_Service_BigtableAdmin_SetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_BigtableAdmin_Policy"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Resource/ProjectsInstancesTables.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Resource/ProjectsInstancesTables.php deleted file mode 100644 index aacc7bd6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Resource/ProjectsInstancesTables.php +++ /dev/null @@ -1,228 +0,0 @@ - - * $bigtableadminService = new Google_Service_BigtableAdmin(...); - * $tables = $bigtableadminService->tables; - * - */ -class Google_Service_BigtableAdmin_Resource_ProjectsInstancesTables extends Google_Service_Resource -{ - /** - * Checks replication consistency based on a consistency token, that is, if - * replication has caught up based on the conditions specified in the token and - * the check request. (tables.checkConsistency) - * - * @param string $name The unique name of the Table for which to check - * replication consistency. Values are of the form - * `projects//instances//tables/`. - * @param Google_Service_BigtableAdmin_CheckConsistencyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_BigtableAdmin_CheckConsistencyResponse - */ - public function checkConsistency($name, Google_Service_BigtableAdmin_CheckConsistencyRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('checkConsistency', array($params), "Google_Service_BigtableAdmin_CheckConsistencyResponse"); - } - /** - * Creates a new table in the specified instance. The table can be created with - * a full set of initial column families, specified in the request. - * (tables.create) - * - * @param string $parent The unique name of the instance in which to create the - * table. Values are of the form `projects//instances/`. - * @param Google_Service_BigtableAdmin_CreateTableRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_BigtableAdmin_Table - */ - public function create($parent, Google_Service_BigtableAdmin_CreateTableRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_BigtableAdmin_Table"); - } - /** - * Permanently deletes a specified table and all of its data. (tables.delete) - * - * @param string $name The unique name of the table to be deleted. Values are of - * the form `projects//instances//tables/`. - * @param array $optParams Optional parameters. - * @return Google_Service_BigtableAdmin_BigtableadminEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_BigtableAdmin_BigtableadminEmpty"); - } - /** - * Permanently drop/delete a row range from a specified table. The request can - * specify whether to delete all rows in a table, or only those that match a - * particular prefix. (tables.dropRowRange) - * - * @param string $name The unique name of the table on which to drop a range of - * rows. Values are of the form `projects//instances//tables/`. - * @param Google_Service_BigtableAdmin_DropRowRangeRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_BigtableAdmin_BigtableadminEmpty - */ - public function dropRowRange($name, Google_Service_BigtableAdmin_DropRowRangeRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('dropRowRange', array($params), "Google_Service_BigtableAdmin_BigtableadminEmpty"); - } - /** - * Generates a consistency token for a Table, which can be used in - * CheckConsistency to check whether mutations to the table that finished before - * this call started have been replicated. The tokens will be available for 90 - * days. (tables.generateConsistencyToken) - * - * @param string $name The unique name of the Table for which to create a - * consistency token. Values are of the form `projects//instances//tables/`. - * @param Google_Service_BigtableAdmin_GenerateConsistencyTokenRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_BigtableAdmin_GenerateConsistencyTokenResponse - */ - public function generateConsistencyToken($name, Google_Service_BigtableAdmin_GenerateConsistencyTokenRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('generateConsistencyToken', array($params), "Google_Service_BigtableAdmin_GenerateConsistencyTokenResponse"); - } - /** - * Gets metadata information about the specified table. (tables.get) - * - * @param string $name The unique name of the requested table. Values are of the - * form `projects//instances//tables/`. - * @param array $optParams Optional parameters. - * - * @opt_param string view The view to be applied to the returned table's fields. - * Defaults to `SCHEMA_VIEW` if unspecified. - * @return Google_Service_BigtableAdmin_Table - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_BigtableAdmin_Table"); - } - /** - * Gets the access control policy for a Table or Backup resource. Returns an - * empty policy if the resource exists but does not have a policy set. - * (tables.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 Google_Service_BigtableAdmin_GetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_BigtableAdmin_Policy - */ - public function getIamPolicy($resource, Google_Service_BigtableAdmin_GetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_BigtableAdmin_Policy"); - } - /** - * Lists all tables served from a specified instance. - * (tables.listProjectsInstancesTables) - * - * @param string $parent The unique name of the instance for which tables should - * be listed. Values are of the form `projects//instances/`. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The value of `next_page_token` returned by a - * previous call. - * @opt_param int pageSize Maximum number of results per page. - * - * A page_size of zero lets the server choose the number of items to return. A - * page_size which is strictly positive will return at most that many items. A - * negative page_size will cause an error. - * - * Following the first request, subsequent paginated calls are not required to - * pass a page_size. If a page_size is set in subsequent calls, it must match - * the page_size given in the first request. - * @opt_param string view The view to be applied to the returned tables' fields. - * Only NAME_ONLY view (default) and REPLICATION_VIEW are supported. - * @return Google_Service_BigtableAdmin_ListTablesResponse - */ - public function listProjectsInstancesTables($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_BigtableAdmin_ListTablesResponse"); - } - /** - * Performs a series of column family modifications on the specified table. - * Either all or none of the modifications will occur before this method - * returns, but data requests received prior to that point may see a table where - * only some modifications have taken effect. (tables.modifyColumnFamilies) - * - * @param string $name The unique name of the table whose families should be - * modified. Values are of the form `projects//instances//tables/`. - * @param Google_Service_BigtableAdmin_ModifyColumnFamiliesRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_BigtableAdmin_Table - */ - public function modifyColumnFamilies($name, Google_Service_BigtableAdmin_ModifyColumnFamiliesRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('modifyColumnFamilies', array($params), "Google_Service_BigtableAdmin_Table"); - } - /** - * Sets the access control policy on a Table or Backup resource. Replaces any - * existing policy. (tables.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_BigtableAdmin_SetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_BigtableAdmin_Policy - */ - public function setIamPolicy($resource, Google_Service_BigtableAdmin_SetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_BigtableAdmin_Policy"); - } - /** - * Returns permissions that the caller has on the specified table resource. - * (tables.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_BigtableAdmin_TestIamPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_BigtableAdmin_TestIamPermissionsResponse - */ - public function testIamPermissions($resource, Google_Service_BigtableAdmin_TestIamPermissionsRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_BigtableAdmin_TestIamPermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Resource/ProjectsLocations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Resource/ProjectsLocations.php deleted file mode 100644 index f091e474..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Resource/ProjectsLocations.php +++ /dev/null @@ -1,60 +0,0 @@ - - * $bigtableadminService = new Google_Service_BigtableAdmin(...); - * $locations = $bigtableadminService->locations; - * - */ -class Google_Service_BigtableAdmin_Resource_ProjectsLocations extends Google_Service_Resource -{ - /** - * Gets information about a location. (locations.get) - * - * @param string $name Resource name for the location. - * @param array $optParams Optional parameters. - * @return Google_Service_BigtableAdmin_Location - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_BigtableAdmin_Location"); - } - /** - * Lists information about the supported locations for this service. - * (locations.listProjectsLocations) - * - * @param string $name The resource that owns the locations collection, if - * applicable. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The standard list page token. - * @opt_param int pageSize The standard list page size. - * @opt_param string filter The standard list filter. - * @return Google_Service_BigtableAdmin_ListLocationsResponse - */ - public function listProjectsLocations($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_BigtableAdmin_ListLocationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/SetIamPolicyRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/SetIamPolicyRequest.php deleted file mode 100644 index 70d57c50..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/SetIamPolicyRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -policy = $policy; - } - /** - * @return Google_Service_BigtableAdmin_Policy - */ - public function getPolicy() - { - return $this->policy; - } - public function setUpdateMask($updateMask) - { - $this->updateMask = $updateMask; - } - public function getUpdateMask() - { - return $this->updateMask; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/SingleClusterRouting.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/SingleClusterRouting.php deleted file mode 100644 index a0d4af1e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/SingleClusterRouting.php +++ /dev/null @@ -1,39 +0,0 @@ -allowTransactionalWrites = $allowTransactionalWrites; - } - public function getAllowTransactionalWrites() - { - return $this->allowTransactionalWrites; - } - public function setClusterId($clusterId) - { - $this->clusterId = $clusterId; - } - public function getClusterId() - { - return $this->clusterId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Split.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Split.php deleted file mode 100644 index e6b78ac4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Split.php +++ /dev/null @@ -1,30 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Status.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Status.php deleted file mode 100644 index fed6c8d3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Status.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Table.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Table.php deleted file mode 100644 index 182ea5e8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Table.php +++ /dev/null @@ -1,71 +0,0 @@ -clusterStates = $clusterStates; - } - /** - * @return Google_Service_BigtableAdmin_ClusterState - */ - public function getClusterStates() - { - return $this->clusterStates; - } - /** - * @param Google_Service_BigtableAdmin_ColumnFamily - */ - public function setColumnFamilies($columnFamilies) - { - $this->columnFamilies = $columnFamilies; - } - /** - * @return Google_Service_BigtableAdmin_ColumnFamily - */ - public function getColumnFamilies() - { - return $this->columnFamilies; - } - public function setGranularity($granularity) - { - $this->granularity = $granularity; - } - public function getGranularity() - { - return $this->granularity; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/TableProgress.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/TableProgress.php deleted file mode 100644 index 787e74be..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/TableProgress.php +++ /dev/null @@ -1,48 +0,0 @@ -estimatedCopiedBytes = $estimatedCopiedBytes; - } - public function getEstimatedCopiedBytes() - { - return $this->estimatedCopiedBytes; - } - public function setEstimatedSizeBytes($estimatedSizeBytes) - { - $this->estimatedSizeBytes = $estimatedSizeBytes; - } - public function getEstimatedSizeBytes() - { - return $this->estimatedSizeBytes; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/TestIamPermissionsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/TestIamPermissionsRequest.php deleted file mode 100644 index a0da67d8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/TestIamPermissionsRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/TestIamPermissionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/TestIamPermissionsResponse.php deleted file mode 100644 index a25fd781..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/TestIamPermissionsResponse.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Union.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Union.php deleted file mode 100644 index 09fa07df..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/Union.php +++ /dev/null @@ -1,38 +0,0 @@ -rules = $rules; - } - /** - * @return Google_Service_BigtableAdmin_GcRule - */ - public function getRules() - { - return $this->rules; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/UpdateAppProfileMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/UpdateAppProfileMetadata.php deleted file mode 100644 index 2d5fdbc9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/UpdateAppProfileMetadata.php +++ /dev/null @@ -1,20 +0,0 @@ -finishTime = $finishTime; - } - public function getFinishTime() - { - return $this->finishTime; - } - /** - * @param Google_Service_BigtableAdmin_Cluster - */ - public function setOriginalRequest(Google_Service_BigtableAdmin_Cluster $originalRequest) - { - $this->originalRequest = $originalRequest; - } - /** - * @return Google_Service_BigtableAdmin_Cluster - */ - public function getOriginalRequest() - { - return $this->originalRequest; - } - public function setRequestTime($requestTime) - { - $this->requestTime = $requestTime; - } - public function getRequestTime() - { - return $this->requestTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/UpdateInstanceMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/UpdateInstanceMetadata.php deleted file mode 100644 index f68b61a0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BigtableAdmin/UpdateInstanceMetadata.php +++ /dev/null @@ -1,55 +0,0 @@ -finishTime = $finishTime; - } - public function getFinishTime() - { - return $this->finishTime; - } - /** - * @param Google_Service_BigtableAdmin_PartialUpdateInstanceRequest - */ - public function setOriginalRequest(Google_Service_BigtableAdmin_PartialUpdateInstanceRequest $originalRequest) - { - $this->originalRequest = $originalRequest; - } - /** - * @return Google_Service_BigtableAdmin_PartialUpdateInstanceRequest - */ - public function getOriginalRequest() - { - return $this->originalRequest; - } - public function setRequestTime($requestTime) - { - $this->requestTime = $requestTime; - } - public function getRequestTime() - { - return $this->requestTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BinaryAuthorization.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BinaryAuthorization.php deleted file mode 100644 index 9fb6275c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BinaryAuthorization.php +++ /dev/null @@ -1,238 +0,0 @@ - - * The management interface for Binary Authorization, a system providing policy - * control for images deployed to Kubernetes Engine clusters.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_BinaryAuthorization extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - - public $projects; - public $projects_attestors; - public $projects_policy; - - /** - * Constructs the internal representation of the BinaryAuthorization service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://binaryauthorization.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'binaryauthorization'; - - $this->projects = new Google_Service_BinaryAuthorization_Resource_Projects( - $this, - $this->serviceName, - 'projects', - array( - 'methods' => array( - 'getPolicy' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'updatePolicy' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_attestors = new Google_Service_BinaryAuthorization_Resource_ProjectsAttestors( - $this, - $this->serviceName, - 'attestors', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/attestors', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'attestorId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getIamPolicy' => array( - 'path' => 'v1/{+resource}:getIamPolicy', - 'httpMethod' => 'GET', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'options.requestedPolicyVersion' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/attestors', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'setIamPolicy' => array( - 'path' => 'v1/{+resource}:setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => 'v1/{+resource}:testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_policy = new Google_Service_BinaryAuthorization_Resource_ProjectsPolicy( - $this, - $this->serviceName, - 'policy', - array( - 'methods' => array( - 'getIamPolicy' => array( - 'path' => 'v1/{+resource}:getIamPolicy', - 'httpMethod' => 'GET', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'options.requestedPolicyVersion' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'setIamPolicy' => array( - 'path' => 'v1/{+resource}:setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => 'v1/{+resource}:testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BinaryAuthorization/AdmissionRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BinaryAuthorization/AdmissionRule.php deleted file mode 100644 index 61e85b3b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BinaryAuthorization/AdmissionRule.php +++ /dev/null @@ -1,49 +0,0 @@ -enforcementMode = $enforcementMode; - } - public function getEnforcementMode() - { - return $this->enforcementMode; - } - public function setEvaluationMode($evaluationMode) - { - $this->evaluationMode = $evaluationMode; - } - public function getEvaluationMode() - { - return $this->evaluationMode; - } - public function setRequireAttestationsBy($requireAttestationsBy) - { - $this->requireAttestationsBy = $requireAttestationsBy; - } - public function getRequireAttestationsBy() - { - return $this->requireAttestationsBy; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BinaryAuthorization/AdmissionWhitelistPattern.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BinaryAuthorization/AdmissionWhitelistPattern.php deleted file mode 100644 index 431dc0ac..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BinaryAuthorization/AdmissionWhitelistPattern.php +++ /dev/null @@ -1,30 +0,0 @@ -namePattern = $namePattern; - } - public function getNamePattern() - { - return $this->namePattern; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BinaryAuthorization/Attestor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BinaryAuthorization/Attestor.php deleted file mode 100644 index 1289ab5c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BinaryAuthorization/Attestor.php +++ /dev/null @@ -1,64 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } - /** - * @param Google_Service_BinaryAuthorization_UserOwnedGrafeasNote - */ - public function setUserOwnedGrafeasNote(Google_Service_BinaryAuthorization_UserOwnedGrafeasNote $userOwnedGrafeasNote) - { - $this->userOwnedGrafeasNote = $userOwnedGrafeasNote; - } - /** - * @return Google_Service_BinaryAuthorization_UserOwnedGrafeasNote - */ - public function getUserOwnedGrafeasNote() - { - return $this->userOwnedGrafeasNote; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BinaryAuthorization/AttestorPublicKey.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BinaryAuthorization/AttestorPublicKey.php deleted file mode 100644 index 75503196..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BinaryAuthorization/AttestorPublicKey.php +++ /dev/null @@ -1,64 +0,0 @@ -asciiArmoredPgpPublicKey = $asciiArmoredPgpPublicKey; - } - public function getAsciiArmoredPgpPublicKey() - { - return $this->asciiArmoredPgpPublicKey; - } - public function setComment($comment) - { - $this->comment = $comment; - } - public function getComment() - { - return $this->comment; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_BinaryAuthorization_PkixPublicKey - */ - public function setPkixPublicKey(Google_Service_BinaryAuthorization_PkixPublicKey $pkixPublicKey) - { - $this->pkixPublicKey = $pkixPublicKey; - } - /** - * @return Google_Service_BinaryAuthorization_PkixPublicKey - */ - public function getPkixPublicKey() - { - return $this->pkixPublicKey; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BinaryAuthorization/BinaryauthorizationEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BinaryAuthorization/BinaryauthorizationEmpty.php deleted file mode 100644 index 84d321e8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BinaryAuthorization/BinaryauthorizationEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -condition = $condition; - } - /** - * @return Google_Service_BinaryAuthorization_Expr - */ - public function getCondition() - { - return $this->condition; - } - public function setMembers($members) - { - $this->members = $members; - } - public function getMembers() - { - return $this->members; - } - public function setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BinaryAuthorization/Expr.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BinaryAuthorization/Expr.php deleted file mode 100644 index 4d71d1d0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BinaryAuthorization/Expr.php +++ /dev/null @@ -1,57 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setExpression($expression) - { - $this->expression = $expression; - } - public function getExpression() - { - return $this->expression; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BinaryAuthorization/IamPolicy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BinaryAuthorization/IamPolicy.php deleted file mode 100644 index 2228cff9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BinaryAuthorization/IamPolicy.php +++ /dev/null @@ -1,56 +0,0 @@ -bindings = $bindings; - } - /** - * @return Google_Service_BinaryAuthorization_Binding - */ - public function getBindings() - { - return $this->bindings; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BinaryAuthorization/ListAttestorsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BinaryAuthorization/ListAttestorsResponse.php deleted file mode 100644 index 54a5a23d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BinaryAuthorization/ListAttestorsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -attestors = $attestors; - } - /** - * @return Google_Service_BinaryAuthorization_Attestor - */ - public function getAttestors() - { - return $this->attestors; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BinaryAuthorization/PkixPublicKey.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BinaryAuthorization/PkixPublicKey.php deleted file mode 100644 index 1c29c81a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BinaryAuthorization/PkixPublicKey.php +++ /dev/null @@ -1,39 +0,0 @@ -publicKeyPem = $publicKeyPem; - } - public function getPublicKeyPem() - { - return $this->publicKeyPem; - } - public function setSignatureAlgorithm($signatureAlgorithm) - { - $this->signatureAlgorithm = $signatureAlgorithm; - } - public function getSignatureAlgorithm() - { - return $this->signatureAlgorithm; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BinaryAuthorization/Policy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BinaryAuthorization/Policy.php deleted file mode 100644 index 82a7ecc6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BinaryAuthorization/Policy.php +++ /dev/null @@ -1,106 +0,0 @@ -admissionWhitelistPatterns = $admissionWhitelistPatterns; - } - /** - * @return Google_Service_BinaryAuthorization_AdmissionWhitelistPattern - */ - public function getAdmissionWhitelistPatterns() - { - return $this->admissionWhitelistPatterns; - } - /** - * @param Google_Service_BinaryAuthorization_AdmissionRule - */ - public function setClusterAdmissionRules($clusterAdmissionRules) - { - $this->clusterAdmissionRules = $clusterAdmissionRules; - } - /** - * @return Google_Service_BinaryAuthorization_AdmissionRule - */ - public function getClusterAdmissionRules() - { - return $this->clusterAdmissionRules; - } - /** - * @param Google_Service_BinaryAuthorization_AdmissionRule - */ - public function setDefaultAdmissionRule(Google_Service_BinaryAuthorization_AdmissionRule $defaultAdmissionRule) - { - $this->defaultAdmissionRule = $defaultAdmissionRule; - } - /** - * @return Google_Service_BinaryAuthorization_AdmissionRule - */ - public function getDefaultAdmissionRule() - { - return $this->defaultAdmissionRule; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setGlobalPolicyEvaluationMode($globalPolicyEvaluationMode) - { - $this->globalPolicyEvaluationMode = $globalPolicyEvaluationMode; - } - public function getGlobalPolicyEvaluationMode() - { - return $this->globalPolicyEvaluationMode; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BinaryAuthorization/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BinaryAuthorization/Resource/Projects.php deleted file mode 100644 index bdab2083..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BinaryAuthorization/Resource/Projects.php +++ /dev/null @@ -1,67 +0,0 @@ - - * $binaryauthorizationService = new Google_Service_BinaryAuthorization(...); - * $projects = $binaryauthorizationService->projects; - * - */ -class Google_Service_BinaryAuthorization_Resource_Projects extends Google_Service_Resource -{ - /** - * A policy specifies the attestors that must attest to a container image, - * before the project is allowed to deploy that image. There is at most one - * policy per project. All image admission requests are permitted if a project - * has no policy. - * - * Gets the policy for this project. Returns a default policy if the project - * does not have one. (projects.getPolicy) - * - * @param string $name Required. The resource name of the policy to retrieve, in - * the format `projects/policy`. - * @param array $optParams Optional parameters. - * @return Google_Service_BinaryAuthorization_Policy - */ - public function getPolicy($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('getPolicy', array($params), "Google_Service_BinaryAuthorization_Policy"); - } - /** - * Creates or updates a project's policy, and returns a copy of the new policy. - * A policy is always updated as a whole, to avoid race conditions with - * concurrent policy enforcement (or management!) requests. Returns NOT_FOUND if - * the project does not exist, INVALID_ARGUMENT if the request is malformed. - * (projects.updatePolicy) - * - * @param string $name Output only. The resource name, in the format - * `projects/policy`. There is at most one policy per project. - * @param Google_Service_BinaryAuthorization_Policy $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_BinaryAuthorization_Policy - */ - public function updatePolicy($name, Google_Service_BinaryAuthorization_Policy $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updatePolicy', array($params), "Google_Service_BinaryAuthorization_Policy"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BinaryAuthorization/Resource/ProjectsAttestors.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BinaryAuthorization/Resource/ProjectsAttestors.php deleted file mode 100644 index 38ee58e5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BinaryAuthorization/Resource/ProjectsAttestors.php +++ /dev/null @@ -1,183 +0,0 @@ - - * $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. - * @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 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. - * @opt_param int pageSize Requested page size. The server may return fewer - * results than requested. If unspecified, the server will pick an appropriate - * default. - * @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 Public Errors: NOT_FOUND, INVALID_ARGUMENT and PERMISSION_DENIED - * (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"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BinaryAuthorization/Resource/ProjectsPolicy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BinaryAuthorization/Resource/ProjectsPolicy.php deleted file mode 100644 index 4e7e0c8f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BinaryAuthorization/Resource/ProjectsPolicy.php +++ /dev/null @@ -1,96 +0,0 @@ - - * $binaryauthorizationService = new Google_Service_BinaryAuthorization(...); - * $policy = $binaryauthorizationService->policy; - * - */ -class Google_Service_BinaryAuthorization_Resource_ProjectsPolicy extends Google_Service_Resource -{ - /** - * Gets the access control policy for a resource. Returns an empty policy if the - * resource exists and does not have a policy set. (policy.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. - * @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"); - } - /** - * Sets the access control policy on the specified resource. Replaces any - * existing policy. - * - * Can return Public Errors: NOT_FOUND, INVALID_ARGUMENT and PERMISSION_DENIED - * (policy.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. (policy.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"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BinaryAuthorization/SetIamPolicyRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BinaryAuthorization/SetIamPolicyRequest.php deleted file mode 100644 index 5b6a2ee4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BinaryAuthorization/SetIamPolicyRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -policy = $policy; - } - /** - * @return Google_Service_BinaryAuthorization_IamPolicy - */ - public function getPolicy() - { - return $this->policy; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BinaryAuthorization/TestIamPermissionsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BinaryAuthorization/TestIamPermissionsRequest.php deleted file mode 100644 index 7c6aba51..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BinaryAuthorization/TestIamPermissionsRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BinaryAuthorization/TestIamPermissionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BinaryAuthorization/TestIamPermissionsResponse.php deleted file mode 100644 index cc24621f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BinaryAuthorization/TestIamPermissionsResponse.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BinaryAuthorization/UserOwnedGrafeasNote.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BinaryAuthorization/UserOwnedGrafeasNote.php deleted file mode 100644 index cd1de29e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/BinaryAuthorization/UserOwnedGrafeasNote.php +++ /dev/null @@ -1,56 +0,0 @@ -delegationServiceAccountEmail = $delegationServiceAccountEmail; - } - public function getDelegationServiceAccountEmail() - { - return $this->delegationServiceAccountEmail; - } - public function setNoteReference($noteReference) - { - $this->noteReference = $noteReference; - } - public function getNoteReference() - { - return $this->noteReference; - } - /** - * @param Google_Service_BinaryAuthorization_AttestorPublicKey - */ - public function setPublicKeys($publicKeys) - { - $this->publicKeys = $publicKeys; - } - /** - * @return Google_Service_BinaryAuthorization_AttestorPublicKey - */ - public function getPublicKeys() - { - return $this->publicKeys; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger.php deleted file mode 100644 index 05d3e5ac..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger.php +++ /dev/null @@ -1,932 +0,0 @@ - - * API for access to the data within Blogger.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Blogger extends Google_Service -{ - /** Manage your Blogger account. */ - const BLOGGER = - "https://www.googleapis.com/auth/blogger"; - /** View your Blogger account. */ - const BLOGGER_READONLY = - "https://www.googleapis.com/auth/blogger.readonly"; - - public $blogUserInfos; - public $blogs; - public $comments; - public $pageViews; - public $pages; - public $postUserInfos; - public $posts; - public $users; - - /** - * Constructs the internal representation of the Blogger service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://www.googleapis.com/'; - $this->servicePath = 'blogger/v3/'; - $this->batchPath = 'batch/blogger/v3'; - $this->version = 'v3'; - $this->serviceName = 'blogger'; - - $this->blogUserInfos = new Google_Service_Blogger_Resource_BlogUserInfos( - $this, - $this->serviceName, - 'blogUserInfos', - array( - 'methods' => array( - 'get' => array( - 'path' => 'users/{userId}/blogs/{blogId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxPosts' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->blogs = new Google_Service_Blogger_Resource_Blogs( - $this, - $this->serviceName, - 'blogs', - array( - 'methods' => array( - 'get' => array( - 'path' => 'blogs/{blogId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxPosts' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'getByUrl' => array( - 'path' => 'blogs/byurl', - 'httpMethod' => 'GET', - 'parameters' => array( - 'url' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'listByUser' => array( - 'path' => 'users/{userId}/blogs', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'fetchUserInfo' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'role' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'status' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->comments = new Google_Service_Blogger_Resource_Comments( - $this, - $this->serviceName, - 'comments', - array( - 'methods' => array( - 'approve' => array( - 'path' => 'blogs/{blogId}/posts/{postId}/comments/{commentId}/approve', - 'httpMethod' => 'POST', - 'parameters' => array( - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'postId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'commentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'blogs/{blogId}/posts/{postId}/comments/{commentId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'postId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'commentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'blogs/{blogId}/posts/{postId}/comments/{commentId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'postId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'commentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'blogs/{blogId}/posts/{postId}/comments', - 'httpMethod' => 'GET', - 'parameters' => array( - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'postId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'endDate' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'fetchBodies' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'startDate' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'status' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'listByBlog' => array( - 'path' => 'blogs/{blogId}/comments', - 'httpMethod' => 'GET', - 'parameters' => array( - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'endDate' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'fetchBodies' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'startDate' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'status' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ),'markAsSpam' => array( - 'path' => 'blogs/{blogId}/posts/{postId}/comments/{commentId}/spam', - 'httpMethod' => 'POST', - 'parameters' => array( - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'postId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'commentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'removeContent' => array( - 'path' => 'blogs/{blogId}/posts/{postId}/comments/{commentId}/removecontent', - 'httpMethod' => 'POST', - 'parameters' => array( - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'postId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'commentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->pageViews = new Google_Service_Blogger_Resource_PageViews( - $this, - $this->serviceName, - 'pageViews', - array( - 'methods' => array( - 'get' => array( - 'path' => 'blogs/{blogId}/pageviews', - 'httpMethod' => 'GET', - 'parameters' => array( - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'range' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ), - ) - ) - ); - $this->pages = new Google_Service_Blogger_Resource_Pages( - $this, - $this->serviceName, - 'pages', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'blogs/{blogId}/pages/{pageId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'blogs/{blogId}/pages/{pageId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'insert' => array( - 'path' => 'blogs/{blogId}/pages', - 'httpMethod' => 'POST', - 'parameters' => array( - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'isDraft' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'list' => array( - 'path' => 'blogs/{blogId}/pages', - 'httpMethod' => 'GET', - 'parameters' => array( - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'fetchBodies' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'status' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'blogs/{blogId}/pages/{pageId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'publish' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'revert' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'publish' => array( - 'path' => 'blogs/{blogId}/pages/{pageId}/publish', - 'httpMethod' => 'POST', - 'parameters' => array( - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'revert' => array( - 'path' => 'blogs/{blogId}/pages/{pageId}/revert', - 'httpMethod' => 'POST', - 'parameters' => array( - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'blogs/{blogId}/pages/{pageId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'publish' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'revert' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ), - ) - ) - ); - $this->postUserInfos = new Google_Service_Blogger_Resource_PostUserInfos( - $this, - $this->serviceName, - 'postUserInfos', - array( - 'methods' => array( - 'get' => array( - 'path' => 'users/{userId}/blogs/{blogId}/posts/{postId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'postId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxComments' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'list' => array( - 'path' => 'users/{userId}/blogs/{blogId}/posts', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'endDate' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'fetchBodies' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'labels' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'startDate' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'status' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->posts = new Google_Service_Blogger_Resource_Posts( - $this, - $this->serviceName, - 'posts', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'blogs/{blogId}/posts/{postId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'postId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'blogs/{blogId}/posts/{postId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'postId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'fetchBody' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'fetchImages' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'maxComments' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'getByPath' => array( - 'path' => 'blogs/{blogId}/posts/bypath', - 'httpMethod' => 'GET', - 'parameters' => array( - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'path' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'maxComments' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'insert' => array( - 'path' => 'blogs/{blogId}/posts', - 'httpMethod' => 'POST', - 'parameters' => array( - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'fetchBody' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'fetchImages' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'isDraft' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'list' => array( - 'path' => 'blogs/{blogId}/posts', - 'httpMethod' => 'GET', - 'parameters' => array( - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'endDate' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'fetchBodies' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'fetchImages' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'labels' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'startDate' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'status' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'blogs/{blogId}/posts/{postId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'postId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'fetchBody' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'fetchImages' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'maxComments' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'publish' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'revert' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'publish' => array( - 'path' => 'blogs/{blogId}/posts/{postId}/publish', - 'httpMethod' => 'POST', - 'parameters' => array( - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'postId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'publishDate' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'revert' => array( - 'path' => 'blogs/{blogId}/posts/{postId}/revert', - 'httpMethod' => 'POST', - 'parameters' => array( - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'postId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'search' => array( - 'path' => 'blogs/{blogId}/posts/search', - 'httpMethod' => 'GET', - 'parameters' => array( - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'q' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'fetchBodies' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'blogs/{blogId}/posts/{postId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'blogId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'postId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'fetchBody' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'fetchImages' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'maxComments' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'publish' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'revert' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ), - ) - ) - ); - $this->users = new Google_Service_Blogger_Resource_Users( - $this, - $this->serviceName, - 'users', - array( - 'methods' => array( - 'get' => array( - 'path' => 'users/{userId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/Blog.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/Blog.php deleted file mode 100644 index a0a02c8e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/Blog.php +++ /dev/null @@ -1,159 +0,0 @@ -customMetaData = $customMetaData; - } - public function getCustomMetaData() - { - return $this->customMetaData; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - 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; - } - /** - * @param Google_Service_Blogger_BlogLocale - */ - public function setLocale(Google_Service_Blogger_BlogLocale $locale) - { - $this->locale = $locale; - } - /** - * @return Google_Service_Blogger_BlogLocale - */ - public function getLocale() - { - return $this->locale; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Blogger_BlogPages - */ - public function setPages(Google_Service_Blogger_BlogPages $pages) - { - $this->pages = $pages; - } - /** - * @return Google_Service_Blogger_BlogPages - */ - public function getPages() - { - return $this->pages; - } - /** - * @param Google_Service_Blogger_BlogPosts - */ - public function setPosts(Google_Service_Blogger_BlogPosts $posts) - { - $this->posts = $posts; - } - /** - * @return Google_Service_Blogger_BlogPosts - */ - public function getPosts() - { - return $this->posts; - } - public function setPublished($published) - { - $this->published = $published; - } - public function getPublished() - { - return $this->published; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setUpdated($updated) - { - $this->updated = $updated; - } - public function getUpdated() - { - return $this->updated; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/BlogList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/BlogList.php deleted file mode 100644 index 242e87d6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/BlogList.php +++ /dev/null @@ -1,63 +0,0 @@ -blogUserInfos = $blogUserInfos; - } - /** - * @return Google_Service_Blogger_BlogUserInfo - */ - public function getBlogUserInfos() - { - return $this->blogUserInfos; - } - /** - * @param Google_Service_Blogger_Blog - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Blogger_Blog - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/BlogLocale.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/BlogLocale.php deleted file mode 100644 index cb68ac27..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/BlogLocale.php +++ /dev/null @@ -1,48 +0,0 @@ -country = $country; - } - public function getCountry() - { - return $this->country; - } - public function setLanguage($language) - { - $this->language = $language; - } - public function getLanguage() - { - return $this->language; - } - public function setVariant($variant) - { - $this->variant = $variant; - } - public function getVariant() - { - return $this->variant; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/BlogPages.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/BlogPages.php deleted file mode 100644 index d7c60145..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/BlogPages.php +++ /dev/null @@ -1,39 +0,0 @@ -selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setTotalItems($totalItems) - { - $this->totalItems = $totalItems; - } - public function getTotalItems() - { - return $this->totalItems; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/BlogPerUserInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/BlogPerUserInfo.php deleted file mode 100644 index 47e0c38a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/BlogPerUserInfo.php +++ /dev/null @@ -1,75 +0,0 @@ -blogId = $blogId; - } - public function getBlogId() - { - return $this->blogId; - } - public function setHasAdminAccess($hasAdminAccess) - { - $this->hasAdminAccess = $hasAdminAccess; - } - public function getHasAdminAccess() - { - return $this->hasAdminAccess; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setPhotosAlbumKey($photosAlbumKey) - { - $this->photosAlbumKey = $photosAlbumKey; - } - public function getPhotosAlbumKey() - { - return $this->photosAlbumKey; - } - public function setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } - public function setUserId($userId) - { - $this->userId = $userId; - } - public function getUserId() - { - return $this->userId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/BlogPosts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/BlogPosts.php deleted file mode 100644 index ed68995c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/BlogPosts.php +++ /dev/null @@ -1,56 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Blogger_Post - */ - public function getItems() - { - return $this->items; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setTotalItems($totalItems) - { - $this->totalItems = $totalItems; - } - public function getTotalItems() - { - return $this->totalItems; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/BlogUserInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/BlogUserInfo.php deleted file mode 100644 index d2e6e19f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/BlogUserInfo.php +++ /dev/null @@ -1,65 +0,0 @@ - "blog_user_info", - ); - protected $blogType = 'Google_Service_Blogger_Blog'; - protected $blogDataType = ''; - protected $blogUserInfoType = 'Google_Service_Blogger_BlogPerUserInfo'; - protected $blogUserInfoDataType = ''; - public $kind; - - /** - * @param Google_Service_Blogger_Blog - */ - public function setBlog(Google_Service_Blogger_Blog $blog) - { - $this->blog = $blog; - } - /** - * @return Google_Service_Blogger_Blog - */ - public function getBlog() - { - return $this->blog; - } - /** - * @param Google_Service_Blogger_BlogPerUserInfo - */ - public function setBlogUserInfo(Google_Service_Blogger_BlogPerUserInfo $blogUserInfo) - { - $this->blogUserInfo = $blogUserInfo; - } - /** - * @return Google_Service_Blogger_BlogPerUserInfo - */ - public function getBlogUserInfo() - { - return $this->blogUserInfo; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/Comment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/Comment.php deleted file mode 100644 index 295ed081..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/Comment.php +++ /dev/null @@ -1,148 +0,0 @@ -author = $author; - } - /** - * @return Google_Service_Blogger_CommentAuthor - */ - public function getAuthor() - { - return $this->author; - } - /** - * @param Google_Service_Blogger_CommentBlog - */ - public function setBlog(Google_Service_Blogger_CommentBlog $blog) - { - $this->blog = $blog; - } - /** - * @return Google_Service_Blogger_CommentBlog - */ - public function getBlog() - { - return $this->blog; - } - public function setContent($content) - { - $this->content = $content; - } - public function getContent() - { - return $this->content; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Blogger_CommentInReplyTo - */ - public function setInReplyTo(Google_Service_Blogger_CommentInReplyTo $inReplyTo) - { - $this->inReplyTo = $inReplyTo; - } - /** - * @return Google_Service_Blogger_CommentInReplyTo - */ - public function getInReplyTo() - { - return $this->inReplyTo; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Blogger_CommentPost - */ - public function setPost(Google_Service_Blogger_CommentPost $post) - { - $this->post = $post; - } - /** - * @return Google_Service_Blogger_CommentPost - */ - public function getPost() - { - return $this->post; - } - public function setPublished($published) - { - $this->published = $published; - } - public function getPublished() - { - return $this->published; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setUpdated($updated) - { - $this->updated = $updated; - } - public function getUpdated() - { - return $this->updated; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/CommentAuthor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/CommentAuthor.php deleted file mode 100644 index 51f641de..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/CommentAuthor.php +++ /dev/null @@ -1,64 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Blogger_CommentAuthorImage - */ - public function setImage(Google_Service_Blogger_CommentAuthorImage $image) - { - $this->image = $image; - } - /** - * @return Google_Service_Blogger_CommentAuthorImage - */ - public function getImage() - { - return $this->image; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/CommentAuthorImage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/CommentAuthorImage.php deleted file mode 100644 index 4642cb63..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/CommentAuthorImage.php +++ /dev/null @@ -1,30 +0,0 @@ -url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/CommentBlog.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/CommentBlog.php deleted file mode 100644 index 79e75359..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/CommentBlog.php +++ /dev/null @@ -1,30 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/CommentInReplyTo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/CommentInReplyTo.php deleted file mode 100644 index 0f2a6fb7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/CommentInReplyTo.php +++ /dev/null @@ -1,30 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/CommentList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/CommentList.php deleted file mode 100644 index b689ae72..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/CommentList.php +++ /dev/null @@ -1,74 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_Blogger_Comment - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Blogger_Comment - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setPrevPageToken($prevPageToken) - { - $this->prevPageToken = $prevPageToken; - } - public function getPrevPageToken() - { - return $this->prevPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/CommentPost.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/CommentPost.php deleted file mode 100644 index a0a9fc68..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/CommentPost.php +++ /dev/null @@ -1,30 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/Page.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/Page.php deleted file mode 100644 index 19ceed96..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/Page.php +++ /dev/null @@ -1,143 +0,0 @@ -author = $author; - } - /** - * @return Google_Service_Blogger_PageAuthor - */ - public function getAuthor() - { - return $this->author; - } - /** - * @param Google_Service_Blogger_PageBlog - */ - public function setBlog(Google_Service_Blogger_PageBlog $blog) - { - $this->blog = $blog; - } - /** - * @return Google_Service_Blogger_PageBlog - */ - public function getBlog() - { - return $this->blog; - } - public function setContent($content) - { - $this->content = $content; - } - public function getContent() - { - return $this->content; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - 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 setPublished($published) - { - $this->published = $published; - } - public function getPublished() - { - return $this->published; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setUpdated($updated) - { - $this->updated = $updated; - } - public function getUpdated() - { - return $this->updated; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/PageAuthor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/PageAuthor.php deleted file mode 100644 index 2a6f55df..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/PageAuthor.php +++ /dev/null @@ -1,64 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Blogger_PageAuthorImage - */ - public function setImage(Google_Service_Blogger_PageAuthorImage $image) - { - $this->image = $image; - } - /** - * @return Google_Service_Blogger_PageAuthorImage - */ - public function getImage() - { - return $this->image; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/PageAuthorImage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/PageAuthorImage.php deleted file mode 100644 index 55e239d3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/PageAuthorImage.php +++ /dev/null @@ -1,30 +0,0 @@ -url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/PageBlog.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/PageBlog.php deleted file mode 100644 index 45bf338a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/PageBlog.php +++ /dev/null @@ -1,30 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/PageList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/PageList.php deleted file mode 100644 index 9cb91c1d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/PageList.php +++ /dev/null @@ -1,65 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_Blogger_Page - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Blogger_Page - */ - public function getItems() - { - return $this->items; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/Pageviews.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/Pageviews.php deleted file mode 100644 index ce7d44fd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/Pageviews.php +++ /dev/null @@ -1,56 +0,0 @@ -blogId = $blogId; - } - public function getBlogId() - { - return $this->blogId; - } - /** - * @param Google_Service_Blogger_PageviewsCounts - */ - public function setCounts($counts) - { - $this->counts = $counts; - } - /** - * @return Google_Service_Blogger_PageviewsCounts - */ - public function getCounts() - { - return $this->counts; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/PageviewsCounts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/PageviewsCounts.php deleted file mode 100644 index 0827c09b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/PageviewsCounts.php +++ /dev/null @@ -1,39 +0,0 @@ -count = $count; - } - public function getCount() - { - return $this->count; - } - public function setTimeRange($timeRange) - { - $this->timeRange = $timeRange; - } - public function getTimeRange() - { - return $this->timeRange; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/Post.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/Post.php deleted file mode 100644 index e0183f5a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/Post.php +++ /dev/null @@ -1,228 +0,0 @@ -author = $author; - } - /** - * @return Google_Service_Blogger_PostAuthor - */ - public function getAuthor() - { - return $this->author; - } - /** - * @param Google_Service_Blogger_PostBlog - */ - public function setBlog(Google_Service_Blogger_PostBlog $blog) - { - $this->blog = $blog; - } - /** - * @return Google_Service_Blogger_PostBlog - */ - public function getBlog() - { - return $this->blog; - } - public function setContent($content) - { - $this->content = $content; - } - public function getContent() - { - return $this->content; - } - public function setCustomMetaData($customMetaData) - { - $this->customMetaData = $customMetaData; - } - public function getCustomMetaData() - { - return $this->customMetaData; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Blogger_PostImages - */ - public function setImages($images) - { - $this->images = $images; - } - /** - * @return Google_Service_Blogger_PostImages - */ - public function getImages() - { - return $this->images; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - /** - * @param Google_Service_Blogger_PostLocation - */ - public function setLocation(Google_Service_Blogger_PostLocation $location) - { - $this->location = $location; - } - /** - * @return Google_Service_Blogger_PostLocation - */ - public function getLocation() - { - return $this->location; - } - public function setPublished($published) - { - $this->published = $published; - } - public function getPublished() - { - return $this->published; - } - public function setReaderComments($readerComments) - { - $this->readerComments = $readerComments; - } - public function getReaderComments() - { - return $this->readerComments; - } - /** - * @param Google_Service_Blogger_PostReplies - */ - public function setReplies(Google_Service_Blogger_PostReplies $replies) - { - $this->replies = $replies; - } - /** - * @return Google_Service_Blogger_PostReplies - */ - public function getReplies() - { - return $this->replies; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setTitleLink($titleLink) - { - $this->titleLink = $titleLink; - } - public function getTitleLink() - { - return $this->titleLink; - } - public function setUpdated($updated) - { - $this->updated = $updated; - } - public function getUpdated() - { - return $this->updated; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/PostAuthor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/PostAuthor.php deleted file mode 100644 index 14dfc777..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/PostAuthor.php +++ /dev/null @@ -1,64 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Blogger_PostAuthorImage - */ - public function setImage(Google_Service_Blogger_PostAuthorImage $image) - { - $this->image = $image; - } - /** - * @return Google_Service_Blogger_PostAuthorImage - */ - public function getImage() - { - return $this->image; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/PostAuthorImage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/PostAuthorImage.php deleted file mode 100644 index 0fdf94f2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/PostAuthorImage.php +++ /dev/null @@ -1,30 +0,0 @@ -url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/PostBlog.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/PostBlog.php deleted file mode 100644 index 2959577b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/PostBlog.php +++ /dev/null @@ -1,30 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/PostImages.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/PostImages.php deleted file mode 100644 index 7d3d0532..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/PostImages.php +++ /dev/null @@ -1,30 +0,0 @@ -url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/PostList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/PostList.php deleted file mode 100644 index da931645..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/PostList.php +++ /dev/null @@ -1,65 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_Blogger_Post - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Blogger_Post - */ - public function getItems() - { - return $this->items; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/PostLocation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/PostLocation.php deleted file mode 100644 index 61228dff..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/PostLocation.php +++ /dev/null @@ -1,57 +0,0 @@ -lat = $lat; - } - public function getLat() - { - return $this->lat; - } - public function setLng($lng) - { - $this->lng = $lng; - } - public function getLng() - { - return $this->lng; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setSpan($span) - { - $this->span = $span; - } - public function getSpan() - { - return $this->span; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/PostPerUserInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/PostPerUserInfo.php deleted file mode 100644 index 06feba76..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/PostPerUserInfo.php +++ /dev/null @@ -1,66 +0,0 @@ -blogId = $blogId; - } - public function getBlogId() - { - return $this->blogId; - } - public function setHasEditAccess($hasEditAccess) - { - $this->hasEditAccess = $hasEditAccess; - } - public function getHasEditAccess() - { - return $this->hasEditAccess; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setPostId($postId) - { - $this->postId = $postId; - } - public function getPostId() - { - return $this->postId; - } - public function setUserId($userId) - { - $this->userId = $userId; - } - public function getUserId() - { - return $this->userId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/PostReplies.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/PostReplies.php deleted file mode 100644 index e38dfe36..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/PostReplies.php +++ /dev/null @@ -1,56 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Blogger_Comment - */ - public function getItems() - { - return $this->items; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setTotalItems($totalItems) - { - $this->totalItems = $totalItems; - } - public function getTotalItems() - { - return $this->totalItems; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/PostUserInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/PostUserInfo.php deleted file mode 100644 index 31359adf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/PostUserInfo.php +++ /dev/null @@ -1,65 +0,0 @@ - "post_user_info", - ); - public $kind; - protected $postType = 'Google_Service_Blogger_Post'; - protected $postDataType = ''; - protected $postUserInfoType = 'Google_Service_Blogger_PostPerUserInfo'; - protected $postUserInfoDataType = ''; - - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Blogger_Post - */ - public function setPost(Google_Service_Blogger_Post $post) - { - $this->post = $post; - } - /** - * @return Google_Service_Blogger_Post - */ - public function getPost() - { - return $this->post; - } - /** - * @param Google_Service_Blogger_PostPerUserInfo - */ - public function setPostUserInfo(Google_Service_Blogger_PostPerUserInfo $postUserInfo) - { - $this->postUserInfo = $postUserInfo; - } - /** - * @return Google_Service_Blogger_PostPerUserInfo - */ - public function getPostUserInfo() - { - return $this->postUserInfo; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/PostUserInfosList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/PostUserInfosList.php deleted file mode 100644 index 6ffc3965..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/PostUserInfosList.php +++ /dev/null @@ -1,56 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Blogger_PostUserInfo - */ - public function getItems() - { - return $this->items; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/Resource/BlogUserInfos.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/Resource/BlogUserInfos.php deleted file mode 100644 index 25973268..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/Resource/BlogUserInfos.php +++ /dev/null @@ -1,46 +0,0 @@ - - * $bloggerService = new Google_Service_Blogger(...); - * $blogUserInfos = $bloggerService->blogUserInfos; - * - */ -class Google_Service_Blogger_Resource_BlogUserInfos extends Google_Service_Resource -{ - /** - * Gets one blog and user info pair by blogId and userId. (blogUserInfos.get) - * - * @param string $userId ID of the user whose blogs are to be fetched. Either - * the word 'self' or the user's profile identifier. - * @param string $blogId The ID of the blog to get. - * @param array $optParams Optional parameters. - * - * @opt_param string maxPosts Maximum number of posts to pull back with the - * blog. - * @return Google_Service_Blogger_BlogUserInfo - */ - public function get($userId, $blogId, $optParams = array()) - { - $params = array('userId' => $userId, 'blogId' => $blogId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Blogger_BlogUserInfo"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/Resource/Blogs.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/Resource/Blogs.php deleted file mode 100644 index b823834f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/Resource/Blogs.php +++ /dev/null @@ -1,86 +0,0 @@ - - * $bloggerService = new Google_Service_Blogger(...); - * $blogs = $bloggerService->blogs; - * - */ -class Google_Service_Blogger_Resource_Blogs extends Google_Service_Resource -{ - /** - * Gets one blog by ID. (blogs.get) - * - * @param string $blogId The ID of the blog to get. - * @param array $optParams Optional parameters. - * - * @opt_param string maxPosts Maximum number of posts to pull back with the - * blog. - * @opt_param string view Access level with which to view the blog. Note that - * some fields require elevated access. - * @return Google_Service_Blogger_Blog - */ - public function get($blogId, $optParams = array()) - { - $params = array('blogId' => $blogId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Blogger_Blog"); - } - /** - * Retrieve a Blog by URL. (blogs.getByUrl) - * - * @param string $url The URL of the blog to retrieve. - * @param array $optParams Optional parameters. - * - * @opt_param string view Access level with which to view the blog. Note that - * some fields require elevated access. - * @return Google_Service_Blogger_Blog - */ - public function getByUrl($url, $optParams = array()) - { - $params = array('url' => $url); - $params = array_merge($params, $optParams); - return $this->call('getByUrl', array($params), "Google_Service_Blogger_Blog"); - } - /** - * Retrieves a list of blogs, possibly filtered. (blogs.listByUser) - * - * @param string $userId ID of the user whose blogs are to be fetched. Either - * the word 'self' or the user's profile identifier. - * @param array $optParams Optional parameters. - * - * @opt_param bool fetchUserInfo Whether the response is a list of blogs with - * per-user information instead of just blogs. - * @opt_param string role User access types for blogs to include in the results, - * e.g. AUTHOR will return blogs where the user has author level access. If no - * roles are specified, defaults to ADMIN and AUTHOR roles. - * @opt_param string status Blog statuses to include in the result (default: - * Live blogs only). Note that ADMIN access is required to view deleted blogs. - * @opt_param string view Access level with which to view the blogs. Note that - * some fields require elevated access. - * @return Google_Service_Blogger_BlogList - */ - public function listByUser($userId, $optParams = array()) - { - $params = array('userId' => $userId); - $params = array_merge($params, $optParams); - return $this->call('listByUser', array($params), "Google_Service_Blogger_BlogList"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/Resource/Comments.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/Resource/Comments.php deleted file mode 100644 index 5cc77538..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/Resource/Comments.php +++ /dev/null @@ -1,159 +0,0 @@ - - * $bloggerService = new Google_Service_Blogger(...); - * $comments = $bloggerService->comments; - * - */ -class Google_Service_Blogger_Resource_Comments extends Google_Service_Resource -{ - /** - * Marks a comment as not spam. (comments.approve) - * - * @param string $blogId The ID of the Blog. - * @param string $postId The ID of the Post. - * @param string $commentId The ID of the comment to mark as not spam. - * @param array $optParams Optional parameters. - * @return Google_Service_Blogger_Comment - */ - public function approve($blogId, $postId, $commentId, $optParams = array()) - { - $params = array('blogId' => $blogId, 'postId' => $postId, 'commentId' => $commentId); - $params = array_merge($params, $optParams); - return $this->call('approve', array($params), "Google_Service_Blogger_Comment"); - } - /** - * Delete a comment by ID. (comments.delete) - * - * @param string $blogId The ID of the Blog. - * @param string $postId The ID of the Post. - * @param string $commentId The ID of the comment to delete. - * @param array $optParams Optional parameters. - */ - public function delete($blogId, $postId, $commentId, $optParams = array()) - { - $params = array('blogId' => $blogId, 'postId' => $postId, 'commentId' => $commentId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Gets one comment by ID. (comments.get) - * - * @param string $blogId ID of the blog to containing the comment. - * @param string $postId ID of the post to fetch posts from. - * @param string $commentId The ID of the comment to get. - * @param array $optParams Optional parameters. - * - * @opt_param string view Access level for the requested comment (default: - * READER). Note that some comments will require elevated permissions, for - * example comments where the parent posts which is in a draft state, or - * comments that are pending moderation. - * @return Google_Service_Blogger_Comment - */ - public function get($blogId, $postId, $commentId, $optParams = array()) - { - $params = array('blogId' => $blogId, 'postId' => $postId, 'commentId' => $commentId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Blogger_Comment"); - } - /** - * Retrieves the comments for a post, possibly filtered. (comments.listComments) - * - * @param string $blogId ID of the blog to fetch comments from. - * @param string $postId ID of the post to fetch posts from. - * @param array $optParams Optional parameters. - * - * @opt_param string endDate Latest date of comment to fetch, a date-time with - * RFC 3339 formatting. - * @opt_param bool fetchBodies Whether the body content of the comments is - * included. - * @opt_param string maxResults Maximum number of comments to include in the - * result. - * @opt_param string pageToken Continuation token if request is paged. - * @opt_param string startDate Earliest date of comment to fetch, a date-time - * with RFC 3339 formatting. - * @opt_param string status - * @opt_param string view Access level with which to view the returned result. - * Note that some fields require elevated access. - * @return Google_Service_Blogger_CommentList - */ - public function listComments($blogId, $postId, $optParams = array()) - { - $params = array('blogId' => $blogId, 'postId' => $postId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Blogger_CommentList"); - } - /** - * Retrieves the comments for a blog, across all posts, possibly filtered. - * (comments.listByBlog) - * - * @param string $blogId ID of the blog to fetch comments from. - * @param array $optParams Optional parameters. - * - * @opt_param string endDate Latest date of comment to fetch, a date-time with - * RFC 3339 formatting. - * @opt_param bool fetchBodies Whether the body content of the comments is - * included. - * @opt_param string maxResults Maximum number of comments to include in the - * result. - * @opt_param string pageToken Continuation token if request is paged. - * @opt_param string startDate Earliest date of comment to fetch, a date-time - * with RFC 3339 formatting. - * @opt_param string status - * @return Google_Service_Blogger_CommentList - */ - public function listByBlog($blogId, $optParams = array()) - { - $params = array('blogId' => $blogId); - $params = array_merge($params, $optParams); - return $this->call('listByBlog', array($params), "Google_Service_Blogger_CommentList"); - } - /** - * Marks a comment as spam. (comments.markAsSpam) - * - * @param string $blogId The ID of the Blog. - * @param string $postId The ID of the Post. - * @param string $commentId The ID of the comment to mark as spam. - * @param array $optParams Optional parameters. - * @return Google_Service_Blogger_Comment - */ - public function markAsSpam($blogId, $postId, $commentId, $optParams = array()) - { - $params = array('blogId' => $blogId, 'postId' => $postId, 'commentId' => $commentId); - $params = array_merge($params, $optParams); - return $this->call('markAsSpam', array($params), "Google_Service_Blogger_Comment"); - } - /** - * Removes the content of a comment. (comments.removeContent) - * - * @param string $blogId The ID of the Blog. - * @param string $postId The ID of the Post. - * @param string $commentId The ID of the comment to delete content from. - * @param array $optParams Optional parameters. - * @return Google_Service_Blogger_Comment - */ - public function removeContent($blogId, $postId, $commentId, $optParams = array()) - { - $params = array('blogId' => $blogId, 'postId' => $postId, 'commentId' => $commentId); - $params = array_merge($params, $optParams); - return $this->call('removeContent', array($params), "Google_Service_Blogger_Comment"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/Resource/PageViews.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/Resource/PageViews.php deleted file mode 100644 index d56aaaae..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/Resource/PageViews.php +++ /dev/null @@ -1,43 +0,0 @@ - - * $bloggerService = new Google_Service_Blogger(...); - * $pageViews = $bloggerService->pageViews; - * - */ -class Google_Service_Blogger_Resource_PageViews extends Google_Service_Resource -{ - /** - * Retrieve pageview stats for a Blog. (pageViews.get) - * - * @param string $blogId The ID of the blog to get. - * @param array $optParams Optional parameters. - * - * @opt_param string range - * @return Google_Service_Blogger_Pageviews - */ - public function get($blogId, $optParams = array()) - { - $params = array('blogId' => $blogId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Blogger_Pageviews"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/Resource/Pages.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/Resource/Pages.php deleted file mode 100644 index 33c83597..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/Resource/Pages.php +++ /dev/null @@ -1,163 +0,0 @@ - - * $bloggerService = new Google_Service_Blogger(...); - * $pages = $bloggerService->pages; - * - */ -class Google_Service_Blogger_Resource_Pages extends Google_Service_Resource -{ - /** - * Delete a page by ID. (pages.delete) - * - * @param string $blogId The ID of the Blog. - * @param string $pageId The ID of the Page. - * @param array $optParams Optional parameters. - */ - public function delete($blogId, $pageId, $optParams = array()) - { - $params = array('blogId' => $blogId, 'pageId' => $pageId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Gets one blog page by ID. (pages.get) - * - * @param string $blogId ID of the blog containing the page. - * @param string $pageId The ID of the page to get. - * @param array $optParams Optional parameters. - * - * @opt_param string view - * @return Google_Service_Blogger_Page - */ - public function get($blogId, $pageId, $optParams = array()) - { - $params = array('blogId' => $blogId, 'pageId' => $pageId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Blogger_Page"); - } - /** - * Add a page. (pages.insert) - * - * @param string $blogId ID of the blog to add the page to. - * @param Google_Service_Blogger_Page $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool isDraft Whether to create the page as a draft (default: - * false). - * @return Google_Service_Blogger_Page - */ - public function insert($blogId, Google_Service_Blogger_Page $postBody, $optParams = array()) - { - $params = array('blogId' => $blogId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Blogger_Page"); - } - /** - * Retrieves the pages for a blog, optionally including non-LIVE statuses. - * (pages.listPages) - * - * @param string $blogId ID of the blog to fetch Pages from. - * @param array $optParams Optional parameters. - * - * @opt_param bool fetchBodies Whether to retrieve the Page bodies. - * @opt_param string maxResults Maximum number of Pages to fetch. - * @opt_param string pageToken Continuation token if the request is paged. - * @opt_param string status - * @opt_param string view Access level with which to view the returned result. - * Note that some fields require elevated access. - * @return Google_Service_Blogger_PageList - */ - public function listPages($blogId, $optParams = array()) - { - $params = array('blogId' => $blogId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Blogger_PageList"); - } - /** - * Update a page. This method supports patch semantics. (pages.patch) - * - * @param string $blogId The ID of the Blog. - * @param string $pageId The ID of the Page. - * @param Google_Service_Blogger_Page $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool publish Whether a publish action should be performed when the - * page is updated (default: false). - * @opt_param bool revert Whether a revert action should be performed when the - * page is updated (default: false). - * @return Google_Service_Blogger_Page - */ - public function patch($blogId, $pageId, Google_Service_Blogger_Page $postBody, $optParams = array()) - { - $params = array('blogId' => $blogId, 'pageId' => $pageId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Blogger_Page"); - } - /** - * Publishes a draft page. (pages.publish) - * - * @param string $blogId The ID of the blog. - * @param string $pageId The ID of the page. - * @param array $optParams Optional parameters. - * @return Google_Service_Blogger_Page - */ - public function publish($blogId, $pageId, $optParams = array()) - { - $params = array('blogId' => $blogId, 'pageId' => $pageId); - $params = array_merge($params, $optParams); - return $this->call('publish', array($params), "Google_Service_Blogger_Page"); - } - /** - * Revert a published or scheduled page to draft state. (pages.revert) - * - * @param string $blogId The ID of the blog. - * @param string $pageId The ID of the page. - * @param array $optParams Optional parameters. - * @return Google_Service_Blogger_Page - */ - public function revert($blogId, $pageId, $optParams = array()) - { - $params = array('blogId' => $blogId, 'pageId' => $pageId); - $params = array_merge($params, $optParams); - return $this->call('revert', array($params), "Google_Service_Blogger_Page"); - } - /** - * Update a page. (pages.update) - * - * @param string $blogId The ID of the Blog. - * @param string $pageId The ID of the Page. - * @param Google_Service_Blogger_Page $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool publish Whether a publish action should be performed when the - * page is updated (default: false). - * @opt_param bool revert Whether a revert action should be performed when the - * page is updated (default: false). - * @return Google_Service_Blogger_Page - */ - public function update($blogId, $pageId, Google_Service_Blogger_Page $postBody, $optParams = array()) - { - $params = array('blogId' => $blogId, 'pageId' => $pageId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Blogger_Page"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/Resource/PostUserInfos.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/Resource/PostUserInfos.php deleted file mode 100644 index 836af158..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/Resource/PostUserInfos.php +++ /dev/null @@ -1,81 +0,0 @@ - - * $bloggerService = new Google_Service_Blogger(...); - * $postUserInfos = $bloggerService->postUserInfos; - * - */ -class Google_Service_Blogger_Resource_PostUserInfos extends Google_Service_Resource -{ - /** - * Gets one post and user info pair, by post ID and user ID. The post user info - * contains per-user information about the post, such as access rights, specific - * to the user. (postUserInfos.get) - * - * @param string $userId ID of the user for the per-user information to be - * fetched. Either the word 'self' or the user's profile identifier. - * @param string $blogId The ID of the blog. - * @param string $postId The ID of the post to get. - * @param array $optParams Optional parameters. - * - * @opt_param string maxComments Maximum number of comments to pull back on a - * post. - * @return Google_Service_Blogger_PostUserInfo - */ - public function get($userId, $blogId, $postId, $optParams = array()) - { - $params = array('userId' => $userId, 'blogId' => $blogId, 'postId' => $postId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Blogger_PostUserInfo"); - } - /** - * Retrieves a list of post and post user info pairs, possibly filtered. The - * post user info contains per-user information about the post, such as access - * rights, specific to the user. (postUserInfos.listPostUserInfos) - * - * @param string $userId ID of the user for the per-user information to be - * fetched. Either the word 'self' or the user's profile identifier. - * @param string $blogId ID of the blog to fetch posts from. - * @param array $optParams Optional parameters. - * - * @opt_param string endDate Latest post date to fetch, a date-time with RFC - * 3339 formatting. - * @opt_param bool fetchBodies Whether the body content of posts is included. - * Default is false. - * @opt_param string labels Comma-separated list of labels to search for. - * @opt_param string maxResults Maximum number of posts to fetch. - * @opt_param string orderBy Sort order applied to search results. Default is - * published. - * @opt_param string pageToken Continuation token if the request is paged. - * @opt_param string startDate Earliest post date to fetch, a date-time with RFC - * 3339 formatting. - * @opt_param string status - * @opt_param string view Access level with which to view the returned result. - * Note that some fields require elevated access. - * @return Google_Service_Blogger_PostUserInfosList - */ - public function listPostUserInfos($userId, $blogId, $optParams = array()) - { - $params = array('userId' => $userId, 'blogId' => $blogId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Blogger_PostUserInfosList"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/Resource/Posts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/Resource/Posts.php deleted file mode 100644 index 641301b4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/Resource/Posts.php +++ /dev/null @@ -1,241 +0,0 @@ - - * $bloggerService = new Google_Service_Blogger(...); - * $posts = $bloggerService->posts; - * - */ -class Google_Service_Blogger_Resource_Posts extends Google_Service_Resource -{ - /** - * Delete a post by ID. (posts.delete) - * - * @param string $blogId The ID of the Blog. - * @param string $postId The ID of the Post. - * @param array $optParams Optional parameters. - */ - public function delete($blogId, $postId, $optParams = array()) - { - $params = array('blogId' => $blogId, 'postId' => $postId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Get a post by ID. (posts.get) - * - * @param string $blogId ID of the blog to fetch the post from. - * @param string $postId The ID of the post - * @param array $optParams Optional parameters. - * - * @opt_param bool fetchBody Whether the body content of the post is included - * (default: true). This should be set to false when the post bodies are not - * required, to help minimize traffic. - * @opt_param bool fetchImages Whether image URL metadata for each post is - * included (default: false). - * @opt_param string maxComments Maximum number of comments to pull back on a - * post. - * @opt_param string view Access level with which to view the returned result. - * Note that some fields require elevated access. - * @return Google_Service_Blogger_Post - */ - public function get($blogId, $postId, $optParams = array()) - { - $params = array('blogId' => $blogId, 'postId' => $postId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Blogger_Post"); - } - /** - * Retrieve a Post by Path. (posts.getByPath) - * - * @param string $blogId ID of the blog to fetch the post from. - * @param string $path Path of the Post to retrieve. - * @param array $optParams Optional parameters. - * - * @opt_param string maxComments Maximum number of comments to pull back on a - * post. - * @opt_param string view Access level with which to view the returned result. - * Note that some fields require elevated access. - * @return Google_Service_Blogger_Post - */ - public function getByPath($blogId, $path, $optParams = array()) - { - $params = array('blogId' => $blogId, 'path' => $path); - $params = array_merge($params, $optParams); - return $this->call('getByPath', array($params), "Google_Service_Blogger_Post"); - } - /** - * Add a post. (posts.insert) - * - * @param string $blogId ID of the blog to add the post to. - * @param Google_Service_Blogger_Post $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool fetchBody Whether the body content of the post is included - * with the result (default: true). - * @opt_param bool fetchImages Whether image URL metadata for each post is - * included in the returned result (default: false). - * @opt_param bool isDraft Whether to create the post as a draft (default: - * false). - * @return Google_Service_Blogger_Post - */ - public function insert($blogId, Google_Service_Blogger_Post $postBody, $optParams = array()) - { - $params = array('blogId' => $blogId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Blogger_Post"); - } - /** - * Retrieves a list of posts, possibly filtered. (posts.listPosts) - * - * @param string $blogId ID of the blog to fetch posts from. - * @param array $optParams Optional parameters. - * - * @opt_param string endDate Latest post date to fetch, a date-time with RFC - * 3339 formatting. - * @opt_param bool fetchBodies Whether the body content of posts is included - * (default: true). This should be set to false when the post bodies are not - * required, to help minimize traffic. - * @opt_param bool fetchImages Whether image URL metadata for each post is - * included. - * @opt_param string labels Comma-separated list of labels to search for. - * @opt_param string maxResults Maximum number of posts to fetch. - * @opt_param string orderBy Sort search results - * @opt_param string pageToken Continuation token if the request is paged. - * @opt_param string startDate Earliest post date to fetch, a date-time with RFC - * 3339 formatting. - * @opt_param string status Statuses to include in the results. - * @opt_param string view Access level with which to view the returned result. - * Note that some fields require escalated access. - * @return Google_Service_Blogger_PostList - */ - public function listPosts($blogId, $optParams = array()) - { - $params = array('blogId' => $blogId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Blogger_PostList"); - } - /** - * Update a post. This method supports patch semantics. (posts.patch) - * - * @param string $blogId The ID of the Blog. - * @param string $postId The ID of the Post. - * @param Google_Service_Blogger_Post $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool fetchBody Whether the body content of the post is included - * with the result (default: true). - * @opt_param bool fetchImages Whether image URL metadata for each post is - * included in the returned result (default: false). - * @opt_param string maxComments Maximum number of comments to retrieve with the - * returned post. - * @opt_param bool publish Whether a publish action should be performed when the - * post is updated (default: false). - * @opt_param bool revert Whether a revert action should be performed when the - * post is updated (default: false). - * @return Google_Service_Blogger_Post - */ - public function patch($blogId, $postId, Google_Service_Blogger_Post $postBody, $optParams = array()) - { - $params = array('blogId' => $blogId, 'postId' => $postId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Blogger_Post"); - } - /** - * Publishes a draft post, optionally at the specific time of the given - * publishDate parameter. (posts.publish) - * - * @param string $blogId The ID of the Blog. - * @param string $postId The ID of the Post. - * @param array $optParams Optional parameters. - * - * @opt_param string publishDate Optional date and time to schedule the - * publishing of the Blog. If no publishDate parameter is given, the post is - * either published at the a previously saved schedule date (if present), or the - * current time. If a future date is given, the post will be scheduled to be - * published. - * @return Google_Service_Blogger_Post - */ - public function publish($blogId, $postId, $optParams = array()) - { - $params = array('blogId' => $blogId, 'postId' => $postId); - $params = array_merge($params, $optParams); - return $this->call('publish', array($params), "Google_Service_Blogger_Post"); - } - /** - * Revert a published or scheduled post to draft state. (posts.revert) - * - * @param string $blogId The ID of the Blog. - * @param string $postId The ID of the Post. - * @param array $optParams Optional parameters. - * @return Google_Service_Blogger_Post - */ - public function revert($blogId, $postId, $optParams = array()) - { - $params = array('blogId' => $blogId, 'postId' => $postId); - $params = array_merge($params, $optParams); - return $this->call('revert', array($params), "Google_Service_Blogger_Post"); - } - /** - * Search for a post. (posts.search) - * - * @param string $blogId ID of the blog to fetch the post from. - * @param string $q Query terms to search this blog for matching posts. - * @param array $optParams Optional parameters. - * - * @opt_param bool fetchBodies Whether the body content of posts is included - * (default: true). This should be set to false when the post bodies are not - * required, to help minimize traffic. - * @opt_param string orderBy Sort search results - * @return Google_Service_Blogger_PostList - */ - public function search($blogId, $q, $optParams = array()) - { - $params = array('blogId' => $blogId, 'q' => $q); - $params = array_merge($params, $optParams); - return $this->call('search', array($params), "Google_Service_Blogger_PostList"); - } - /** - * Update a post. (posts.update) - * - * @param string $blogId The ID of the Blog. - * @param string $postId The ID of the Post. - * @param Google_Service_Blogger_Post $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool fetchBody Whether the body content of the post is included - * with the result (default: true). - * @opt_param bool fetchImages Whether image URL metadata for each post is - * included in the returned result (default: false). - * @opt_param string maxComments Maximum number of comments to retrieve with the - * returned post. - * @opt_param bool publish Whether a publish action should be performed when the - * post is updated (default: false). - * @opt_param bool revert Whether a revert action should be performed when the - * post is updated (default: false). - * @return Google_Service_Blogger_Post - */ - public function update($blogId, $postId, Google_Service_Blogger_Post $postBody, $optParams = array()) - { - $params = array('blogId' => $blogId, 'postId' => $postId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Blogger_Post"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/Resource/Users.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/Resource/Users.php deleted file mode 100644 index ef028aac..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/Resource/Users.php +++ /dev/null @@ -1,41 +0,0 @@ - - * $bloggerService = new Google_Service_Blogger(...); - * $users = $bloggerService->users; - * - */ -class Google_Service_Blogger_Resource_Users extends Google_Service_Resource -{ - /** - * Gets one user by ID. (users.get) - * - * @param string $userId The ID of the user to get. - * @param array $optParams Optional parameters. - * @return Google_Service_Blogger_User - */ - public function get($userId, $optParams = array()) - { - $params = array('userId' => $userId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Blogger_User"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/User.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/User.php deleted file mode 100644 index fca5251c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/User.php +++ /dev/null @@ -1,116 +0,0 @@ -about = $about; - } - public function getAbout() - { - return $this->about; - } - /** - * @param Google_Service_Blogger_UserBlogs - */ - public function setBlogs(Google_Service_Blogger_UserBlogs $blogs) - { - $this->blogs = $blogs; - } - /** - * @return Google_Service_Blogger_UserBlogs - */ - public function getBlogs() - { - return $this->blogs; - } - public function setCreated($created) - { - $this->created = $created; - } - public function getCreated() - { - return $this->created; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - 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; - } - /** - * @param Google_Service_Blogger_UserLocale - */ - public function setLocale(Google_Service_Blogger_UserLocale $locale) - { - $this->locale = $locale; - } - /** - * @return Google_Service_Blogger_UserLocale - */ - public function getLocale() - { - return $this->locale; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/UserBlogs.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/UserBlogs.php deleted file mode 100644 index 59cc429b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/UserBlogs.php +++ /dev/null @@ -1,30 +0,0 @@ -selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/UserLocale.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/UserLocale.php deleted file mode 100644 index 1b5d3022..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Blogger/UserLocale.php +++ /dev/null @@ -1,48 +0,0 @@ -country = $country; - } - public function getCountry() - { - return $this->country; - } - public function setLanguage($language) - { - $this->language = $language; - } - public function getLanguage() - { - return $this->language; - } - public function setVariant($variant) - { - $this->variant = $variant; - } - public function getVariant() - { - return $this->variant; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books.php deleted file mode 100644 index 2621a97c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books.php +++ /dev/null @@ -1,1568 +0,0 @@ - - * Searches for books and manages your Google Books library.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Books extends Google_Service -{ - /** Manage your books. */ - const BOOKS = - "https://www.googleapis.com/auth/books"; - - public $bookshelves; - public $bookshelves_volumes; - public $cloudloading; - public $dictionary; - public $familysharing; - public $layers; - public $layers_annotationData; - public $layers_volumeAnnotations; - public $myconfig; - public $mylibrary_annotations; - public $mylibrary_bookshelves; - public $mylibrary_bookshelves_volumes; - public $mylibrary_readingpositions; - public $notification; - public $onboarding; - public $personalizedstream; - public $promooffer; - public $series; - public $series_membership; - public $volumes; - public $volumes_associated; - public $volumes_mybooks; - public $volumes_recommended; - public $volumes_useruploaded; - - /** - * Constructs the internal representation of the Books service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://www.googleapis.com/'; - $this->servicePath = 'books/v1/'; - $this->batchPath = 'batch/books/v1'; - $this->version = 'v1'; - $this->serviceName = 'books'; - - $this->bookshelves = new Google_Service_Books_Resource_Bookshelves( - $this, - $this->serviceName, - 'bookshelves', - array( - 'methods' => array( - 'get' => array( - 'path' => 'users/{userId}/bookshelves/{shelf}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'shelf' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'users/{userId}/bookshelves', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->bookshelves_volumes = new Google_Service_Books_Resource_BookshelvesVolumes( - $this, - $this->serviceName, - 'volumes', - array( - 'methods' => array( - 'list' => array( - 'path' => 'users/{userId}/bookshelves/{shelf}/volumes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'shelf' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'showPreorders' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'startIndex' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->cloudloading = new Google_Service_Books_Resource_Cloudloading( - $this, - $this->serviceName, - 'cloudloading', - array( - 'methods' => array( - 'addBook' => array( - 'path' => 'cloudloading/addBook', - 'httpMethod' => 'POST', - 'parameters' => array( - 'drive_document_id' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'mime_type' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'name' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'upload_client_token' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'deleteBook' => array( - 'path' => 'cloudloading/deleteBook', - 'httpMethod' => 'POST', - 'parameters' => array( - 'volumeId' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'updateBook' => array( - 'path' => 'cloudloading/updateBook', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->dictionary = new Google_Service_Books_Resource_Dictionary( - $this, - $this->serviceName, - 'dictionary', - array( - 'methods' => array( - 'listOfflineMetadata' => array( - 'path' => 'dictionary/listOfflineMetadata', - 'httpMethod' => 'GET', - 'parameters' => array( - 'cpksver' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->familysharing = new Google_Service_Books_Resource_Familysharing( - $this, - $this->serviceName, - 'familysharing', - array( - 'methods' => array( - 'getFamilyInfo' => array( - 'path' => 'familysharing/getFamilyInfo', - 'httpMethod' => 'GET', - 'parameters' => array( - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'share' => array( - 'path' => 'familysharing/share', - 'httpMethod' => 'POST', - 'parameters' => array( - 'docId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'volumeId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'unshare' => array( - 'path' => 'familysharing/unshare', - 'httpMethod' => 'POST', - 'parameters' => array( - 'docId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'volumeId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->layers = new Google_Service_Books_Resource_Layers( - $this, - $this->serviceName, - 'layers', - array( - 'methods' => array( - 'get' => array( - 'path' => 'volumes/{volumeId}/layersummary/{summaryId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'volumeId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'summaryId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'contentVersion' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'volumes/{volumeId}/layersummary', - 'httpMethod' => 'GET', - 'parameters' => array( - 'volumeId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'contentVersion' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->layers_annotationData = new Google_Service_Books_Resource_LayersAnnotationData( - $this, - $this->serviceName, - 'annotationData', - array( - 'methods' => array( - 'get' => array( - 'path' => 'volumes/{volumeId}/layers/{layerId}/data/{annotationDataId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'volumeId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'layerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'annotationDataId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'contentVersion' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'allowWebDefinitions' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'h' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'scale' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'w' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'list' => array( - 'path' => 'volumes/{volumeId}/layers/{layerId}/data', - 'httpMethod' => 'GET', - 'parameters' => array( - 'volumeId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'layerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'contentVersion' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'annotationDataId' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'h' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'scale' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'updatedMax' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'updatedMin' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'w' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->layers_volumeAnnotations = new Google_Service_Books_Resource_LayersVolumeAnnotations( - $this, - $this->serviceName, - 'volumeAnnotations', - array( - 'methods' => array( - 'get' => array( - 'path' => 'volumes/{volumeId}/layers/{layerId}/annotations/{annotationId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'volumeId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'layerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'annotationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'volumes/{volumeId}/layers/{layerId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'volumeId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'layerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'contentVersion' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'endOffset' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'endPosition' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'showDeleted' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'startOffset' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'startPosition' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'updatedMax' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'updatedMin' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'volumeAnnotationsVersion' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->myconfig = new Google_Service_Books_Resource_Myconfig( - $this, - $this->serviceName, - 'myconfig', - array( - 'methods' => array( - 'getUserSettings' => array( - 'path' => 'myconfig/getUserSettings', - 'httpMethod' => 'GET', - 'parameters' => array(), - ),'releaseDownloadAccess' => array( - 'path' => 'myconfig/releaseDownloadAccess', - 'httpMethod' => 'POST', - 'parameters' => array( - 'volumeIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - 'required' => true, - ), - 'cpksver' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'requestAccess' => array( - 'path' => 'myconfig/requestAccess', - 'httpMethod' => 'POST', - 'parameters' => array( - 'source' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'volumeId' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'nonce' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'cpksver' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'licenseTypes' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'syncVolumeLicenses' => array( - 'path' => 'myconfig/syncVolumeLicenses', - 'httpMethod' => 'POST', - 'parameters' => array( - 'source' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'nonce' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'cpksver' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'features' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'includeNonComicsSeries' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'showPreorders' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'volumeIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ),'updateUserSettings' => array( - 'path' => 'myconfig/updateUserSettings', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->mylibrary_annotations = new Google_Service_Books_Resource_MylibraryAnnotations( - $this, - $this->serviceName, - 'annotations', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'mylibrary/annotations/{annotationId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'annotationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'insert' => array( - 'path' => 'mylibrary/annotations', - 'httpMethod' => 'POST', - 'parameters' => array( - 'annotationId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'country' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'showOnlySummaryInResponse' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'mylibrary/annotations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'contentVersion' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'layerId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'layerIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'showDeleted' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'updatedMax' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'updatedMin' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'volumeId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'summary' => array( - 'path' => 'mylibrary/annotations/summary', - 'httpMethod' => 'POST', - 'parameters' => array( - 'layerIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - 'required' => true, - ), - 'volumeId' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'mylibrary/annotations/{annotationId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'annotationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->mylibrary_bookshelves = new Google_Service_Books_Resource_MylibraryBookshelves( - $this, - $this->serviceName, - 'bookshelves', - array( - 'methods' => array( - 'addVolume' => array( - 'path' => 'mylibrary/bookshelves/{shelf}/addVolume', - 'httpMethod' => 'POST', - 'parameters' => array( - 'shelf' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'volumeId' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'reason' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'clearVolumes' => array( - 'path' => 'mylibrary/bookshelves/{shelf}/clearVolumes', - 'httpMethod' => 'POST', - 'parameters' => array( - 'shelf' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'mylibrary/bookshelves/{shelf}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'shelf' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'mylibrary/bookshelves', - 'httpMethod' => 'GET', - 'parameters' => array( - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'moveVolume' => array( - 'path' => 'mylibrary/bookshelves/{shelf}/moveVolume', - 'httpMethod' => 'POST', - 'parameters' => array( - 'shelf' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'volumeId' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'volumePosition' => array( - 'location' => 'query', - 'type' => 'integer', - 'required' => true, - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'removeVolume' => array( - 'path' => 'mylibrary/bookshelves/{shelf}/removeVolume', - 'httpMethod' => 'POST', - 'parameters' => array( - 'shelf' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'volumeId' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'reason' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->mylibrary_bookshelves_volumes = new Google_Service_Books_Resource_MylibraryBookshelvesVolumes( - $this, - $this->serviceName, - 'volumes', - array( - 'methods' => array( - 'list' => array( - 'path' => 'mylibrary/bookshelves/{shelf}/volumes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'shelf' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'country' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'q' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'showPreorders' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'startIndex' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->mylibrary_readingpositions = new Google_Service_Books_Resource_MylibraryReadingpositions( - $this, - $this->serviceName, - 'readingpositions', - array( - 'methods' => array( - 'get' => array( - 'path' => 'mylibrary/readingpositions/{volumeId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'volumeId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'contentVersion' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setPosition' => array( - 'path' => 'mylibrary/readingpositions/{volumeId}/setPosition', - 'httpMethod' => 'POST', - 'parameters' => array( - 'volumeId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'timestamp' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'position' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'action' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'contentVersion' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'deviceCookie' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->notification = new Google_Service_Books_Resource_Notification( - $this, - $this->serviceName, - 'notification', - array( - 'methods' => array( - 'get' => array( - 'path' => 'notification/get', - 'httpMethod' => 'GET', - 'parameters' => array( - 'notification_id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->onboarding = new Google_Service_Books_Resource_Onboarding( - $this, - $this->serviceName, - 'onboarding', - array( - 'methods' => array( - 'listCategories' => array( - 'path' => 'onboarding/listCategories', - 'httpMethod' => 'GET', - 'parameters' => array( - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'listCategoryVolumes' => array( - 'path' => 'onboarding/listCategoryVolumes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'categoryId' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxAllowedMaturityRating' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->personalizedstream = new Google_Service_Books_Resource_Personalizedstream( - $this, - $this->serviceName, - 'personalizedstream', - array( - 'methods' => array( - 'get' => array( - 'path' => 'personalizedstream/get', - 'httpMethod' => 'GET', - 'parameters' => array( - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxAllowedMaturityRating' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->promooffer = new Google_Service_Books_Resource_Promooffer( - $this, - $this->serviceName, - 'promooffer', - array( - 'methods' => array( - 'accept' => array( - 'path' => 'promooffer/accept', - 'httpMethod' => 'POST', - 'parameters' => array( - 'androidId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'device' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'manufacturer' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'model' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'offerId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'product' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'serial' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'volumeId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'dismiss' => array( - 'path' => 'promooffer/dismiss', - 'httpMethod' => 'POST', - 'parameters' => array( - 'androidId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'device' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'manufacturer' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'model' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'offerId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'product' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'serial' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'promooffer/get', - 'httpMethod' => 'GET', - 'parameters' => array( - 'androidId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'device' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'manufacturer' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'model' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'product' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'serial' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->series = new Google_Service_Books_Resource_Series( - $this, - $this->serviceName, - 'series', - array( - 'methods' => array( - 'get' => array( - 'path' => 'series/get', - 'httpMethod' => 'GET', - 'parameters' => array( - 'series_id' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->series_membership = new Google_Service_Books_Resource_SeriesMembership( - $this, - $this->serviceName, - 'membership', - array( - 'methods' => array( - 'get' => array( - 'path' => 'series/membership/get', - 'httpMethod' => 'GET', - 'parameters' => array( - 'series_id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'page_size' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'page_token' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->volumes = new Google_Service_Books_Resource_Volumes( - $this, - $this->serviceName, - 'volumes', - array( - 'methods' => array( - 'get' => array( - 'path' => 'volumes/{volumeId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'volumeId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'country' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'includeNonComicsSeries' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'partner' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'user_library_consistent_read' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'list' => array( - 'path' => 'volumes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'q' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'download' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'langRestrict' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'libraryRestrict' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxAllowedMaturityRating' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'partner' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'printType' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'showPreorders' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'startIndex' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->volumes_associated = new Google_Service_Books_Resource_VolumesAssociated( - $this, - $this->serviceName, - 'associated', - array( - 'methods' => array( - 'list' => array( - 'path' => 'volumes/{volumeId}/associated', - 'httpMethod' => 'GET', - 'parameters' => array( - 'volumeId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'association' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxAllowedMaturityRating' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->volumes_mybooks = new Google_Service_Books_Resource_VolumesMybooks( - $this, - $this->serviceName, - 'mybooks', - array( - 'methods' => array( - 'list' => array( - 'path' => 'volumes/mybooks', - 'httpMethod' => 'GET', - 'parameters' => array( - 'acquireMethod' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'country' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'processingState' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'startIndex' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->volumes_recommended = new Google_Service_Books_Resource_VolumesRecommended( - $this, - $this->serviceName, - 'recommended', - array( - 'methods' => array( - 'list' => array( - 'path' => 'volumes/recommended', - 'httpMethod' => 'GET', - 'parameters' => array( - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxAllowedMaturityRating' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'rate' => array( - 'path' => 'volumes/recommended/rate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'rating' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'volumeId' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->volumes_useruploaded = new Google_Service_Books_Resource_VolumesUseruploaded( - $this, - $this->serviceName, - 'useruploaded', - array( - 'methods' => array( - 'list' => array( - 'path' => 'volumes/useruploaded', - 'httpMethod' => 'GET', - 'parameters' => array( - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'processingState' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'source' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'startIndex' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'volumeId' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Annotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Annotation.php deleted file mode 100644 index 6e11d7c0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Annotation.php +++ /dev/null @@ -1,196 +0,0 @@ -afterSelectedText = $afterSelectedText; - } - public function getAfterSelectedText() - { - return $this->afterSelectedText; - } - public function setBeforeSelectedText($beforeSelectedText) - { - $this->beforeSelectedText = $beforeSelectedText; - } - public function getBeforeSelectedText() - { - return $this->beforeSelectedText; - } - /** - * @param Google_Service_Books_AnnotationClientVersionRanges - */ - public function setClientVersionRanges(Google_Service_Books_AnnotationClientVersionRanges $clientVersionRanges) - { - $this->clientVersionRanges = $clientVersionRanges; - } - /** - * @return Google_Service_Books_AnnotationClientVersionRanges - */ - public function getClientVersionRanges() - { - return $this->clientVersionRanges; - } - public function setCreated($created) - { - $this->created = $created; - } - public function getCreated() - { - return $this->created; - } - /** - * @param Google_Service_Books_AnnotationCurrentVersionRanges - */ - public function setCurrentVersionRanges(Google_Service_Books_AnnotationCurrentVersionRanges $currentVersionRanges) - { - $this->currentVersionRanges = $currentVersionRanges; - } - /** - * @return Google_Service_Books_AnnotationCurrentVersionRanges - */ - public function getCurrentVersionRanges() - { - return $this->currentVersionRanges; - } - public function setData($data) - { - $this->data = $data; - } - public function getData() - { - return $this->data; - } - public function setDeleted($deleted) - { - $this->deleted = $deleted; - } - public function getDeleted() - { - return $this->deleted; - } - public function setHighlightStyle($highlightStyle) - { - $this->highlightStyle = $highlightStyle; - } - public function getHighlightStyle() - { - return $this->highlightStyle; - } - 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 setLayerId($layerId) - { - $this->layerId = $layerId; - } - public function getLayerId() - { - return $this->layerId; - } - /** - * @param Google_Service_Books_AnnotationLayerSummary - */ - public function setLayerSummary(Google_Service_Books_AnnotationLayerSummary $layerSummary) - { - $this->layerSummary = $layerSummary; - } - /** - * @return Google_Service_Books_AnnotationLayerSummary - */ - public function getLayerSummary() - { - return $this->layerSummary; - } - public function setPageIds($pageIds) - { - $this->pageIds = $pageIds; - } - public function getPageIds() - { - return $this->pageIds; - } - public function setSelectedText($selectedText) - { - $this->selectedText = $selectedText; - } - public function getSelectedText() - { - return $this->selectedText; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setUpdated($updated) - { - $this->updated = $updated; - } - public function getUpdated() - { - return $this->updated; - } - public function setVolumeId($volumeId) - { - $this->volumeId = $volumeId; - } - public function getVolumeId() - { - return $this->volumeId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/AnnotationClientVersionRanges.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/AnnotationClientVersionRanges.php deleted file mode 100644 index 8db98443..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/AnnotationClientVersionRanges.php +++ /dev/null @@ -1,94 +0,0 @@ -cfiRange = $cfiRange; - } - /** - * @return Google_Service_Books_BooksAnnotationsRange - */ - public function getCfiRange() - { - return $this->cfiRange; - } - public function setContentVersion($contentVersion) - { - $this->contentVersion = $contentVersion; - } - public function getContentVersion() - { - return $this->contentVersion; - } - /** - * @param Google_Service_Books_BooksAnnotationsRange - */ - public function setGbImageRange(Google_Service_Books_BooksAnnotationsRange $gbImageRange) - { - $this->gbImageRange = $gbImageRange; - } - /** - * @return Google_Service_Books_BooksAnnotationsRange - */ - public function getGbImageRange() - { - return $this->gbImageRange; - } - /** - * @param Google_Service_Books_BooksAnnotationsRange - */ - public function setGbTextRange(Google_Service_Books_BooksAnnotationsRange $gbTextRange) - { - $this->gbTextRange = $gbTextRange; - } - /** - * @return Google_Service_Books_BooksAnnotationsRange - */ - public function getGbTextRange() - { - return $this->gbTextRange; - } - /** - * @param Google_Service_Books_BooksAnnotationsRange - */ - public function setImageCfiRange(Google_Service_Books_BooksAnnotationsRange $imageCfiRange) - { - $this->imageCfiRange = $imageCfiRange; - } - /** - * @return Google_Service_Books_BooksAnnotationsRange - */ - public function getImageCfiRange() - { - return $this->imageCfiRange; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/AnnotationCurrentVersionRanges.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/AnnotationCurrentVersionRanges.php deleted file mode 100644 index 8c581283..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/AnnotationCurrentVersionRanges.php +++ /dev/null @@ -1,94 +0,0 @@ -cfiRange = $cfiRange; - } - /** - * @return Google_Service_Books_BooksAnnotationsRange - */ - public function getCfiRange() - { - return $this->cfiRange; - } - public function setContentVersion($contentVersion) - { - $this->contentVersion = $contentVersion; - } - public function getContentVersion() - { - return $this->contentVersion; - } - /** - * @param Google_Service_Books_BooksAnnotationsRange - */ - public function setGbImageRange(Google_Service_Books_BooksAnnotationsRange $gbImageRange) - { - $this->gbImageRange = $gbImageRange; - } - /** - * @return Google_Service_Books_BooksAnnotationsRange - */ - public function getGbImageRange() - { - return $this->gbImageRange; - } - /** - * @param Google_Service_Books_BooksAnnotationsRange - */ - public function setGbTextRange(Google_Service_Books_BooksAnnotationsRange $gbTextRange) - { - $this->gbTextRange = $gbTextRange; - } - /** - * @return Google_Service_Books_BooksAnnotationsRange - */ - public function getGbTextRange() - { - return $this->gbTextRange; - } - /** - * @param Google_Service_Books_BooksAnnotationsRange - */ - public function setImageCfiRange(Google_Service_Books_BooksAnnotationsRange $imageCfiRange) - { - $this->imageCfiRange = $imageCfiRange; - } - /** - * @return Google_Service_Books_BooksAnnotationsRange - */ - public function getImageCfiRange() - { - return $this->imageCfiRange; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/AnnotationLayerSummary.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/AnnotationLayerSummary.php deleted file mode 100644 index 17d77ce9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/AnnotationLayerSummary.php +++ /dev/null @@ -1,48 +0,0 @@ -allowedCharacterCount = $allowedCharacterCount; - } - public function getAllowedCharacterCount() - { - return $this->allowedCharacterCount; - } - public function setLimitType($limitType) - { - $this->limitType = $limitType; - } - public function getLimitType() - { - return $this->limitType; - } - public function setRemainingCharacterCount($remainingCharacterCount) - { - $this->remainingCharacterCount = $remainingCharacterCount; - } - public function getRemainingCharacterCount() - { - return $this->remainingCharacterCount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Annotationdata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Annotationdata.php deleted file mode 100644 index 865d39f0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Annotationdata.php +++ /dev/null @@ -1,105 +0,0 @@ - "encoded_data", - ); - public $annotationType; - public $data; - public $encodedData; - public $id; - public $kind; - public $layerId; - public $selfLink; - public $updated; - public $volumeId; - - public function setAnnotationType($annotationType) - { - $this->annotationType = $annotationType; - } - public function getAnnotationType() - { - return $this->annotationType; - } - public function setData($data) - { - $this->data = $data; - } - public function getData() - { - return $this->data; - } - public function setEncodedData($encodedData) - { - $this->encodedData = $encodedData; - } - public function getEncodedData() - { - return $this->encodedData; - } - 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 setLayerId($layerId) - { - $this->layerId = $layerId; - } - public function getLayerId() - { - return $this->layerId; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setUpdated($updated) - { - $this->updated = $updated; - } - public function getUpdated() - { - return $this->updated; - } - public function setVolumeId($volumeId) - { - $this->volumeId = $volumeId; - } - public function getVolumeId() - { - return $this->volumeId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Annotations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Annotations.php deleted file mode 100644 index f6f954d9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Annotations.php +++ /dev/null @@ -1,65 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Books_Annotation - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setTotalItems($totalItems) - { - $this->totalItems = $totalItems; - } - public function getTotalItems() - { - return $this->totalItems; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/AnnotationsSummary.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/AnnotationsSummary.php deleted file mode 100644 index efd90a78..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/AnnotationsSummary.php +++ /dev/null @@ -1,47 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Books_AnnotationsSummaryLayers - */ - public function setLayers($layers) - { - $this->layers = $layers; - } - /** - * @return Google_Service_Books_AnnotationsSummaryLayers - */ - public function getLayers() - { - return $this->layers; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/AnnotationsSummaryLayers.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/AnnotationsSummaryLayers.php deleted file mode 100644 index 5ec1586e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/AnnotationsSummaryLayers.php +++ /dev/null @@ -1,66 +0,0 @@ -allowedCharacterCount = $allowedCharacterCount; - } - public function getAllowedCharacterCount() - { - return $this->allowedCharacterCount; - } - public function setLayerId($layerId) - { - $this->layerId = $layerId; - } - public function getLayerId() - { - return $this->layerId; - } - public function setLimitType($limitType) - { - $this->limitType = $limitType; - } - public function getLimitType() - { - return $this->limitType; - } - public function setRemainingCharacterCount($remainingCharacterCount) - { - $this->remainingCharacterCount = $remainingCharacterCount; - } - public function getRemainingCharacterCount() - { - return $this->remainingCharacterCount; - } - public function setUpdated($updated) - { - $this->updated = $updated; - } - public function getUpdated() - { - return $this->updated; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Annotationsdata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Annotationsdata.php deleted file mode 100644 index 55907d26..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Annotationsdata.php +++ /dev/null @@ -1,65 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Books_Annotationdata - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setTotalItems($totalItems) - { - $this->totalItems = $totalItems; - } - public function getTotalItems() - { - return $this->totalItems; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/BooksAnnotationsRange.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/BooksAnnotationsRange.php deleted file mode 100644 index 6d02f869..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/BooksAnnotationsRange.php +++ /dev/null @@ -1,57 +0,0 @@ -endOffset = $endOffset; - } - public function getEndOffset() - { - return $this->endOffset; - } - public function setEndPosition($endPosition) - { - $this->endPosition = $endPosition; - } - public function getEndPosition() - { - return $this->endPosition; - } - public function setStartOffset($startOffset) - { - $this->startOffset = $startOffset; - } - public function getStartOffset() - { - return $this->startOffset; - } - public function setStartPosition($startPosition) - { - $this->startPosition = $startPosition; - } - public function getStartPosition() - { - return $this->startPosition; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/BooksCloudloadingResource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/BooksCloudloadingResource.php deleted file mode 100644 index 07aef514..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/BooksCloudloadingResource.php +++ /dev/null @@ -1,57 +0,0 @@ -author = $author; - } - public function getAuthor() - { - return $this->author; - } - public function setProcessingState($processingState) - { - $this->processingState = $processingState; - } - public function getProcessingState() - { - return $this->processingState; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setVolumeId($volumeId) - { - $this->volumeId = $volumeId; - } - public function getVolumeId() - { - return $this->volumeId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/BooksVolumesRecommendedRateResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/BooksVolumesRecommendedRateResponse.php deleted file mode 100644 index a40b0b8b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/BooksVolumesRecommendedRateResponse.php +++ /dev/null @@ -1,33 +0,0 @@ - "consistency_token", - ); - public $consistencyToken; - - public function setConsistencyToken($consistencyToken) - { - $this->consistencyToken = $consistencyToken; - } - public function getConsistencyToken() - { - return $this->consistencyToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Bookshelf.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Bookshelf.php deleted file mode 100644 index 101d6b9b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Bookshelf.php +++ /dev/null @@ -1,111 +0,0 @@ -access = $access; - } - public function getAccess() - { - return $this->access; - } - public function setCreated($created) - { - $this->created = $created; - } - public function getCreated() - { - return $this->created; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - 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 setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setUpdated($updated) - { - $this->updated = $updated; - } - public function getUpdated() - { - return $this->updated; - } - public function setVolumeCount($volumeCount) - { - $this->volumeCount = $volumeCount; - } - public function getVolumeCount() - { - return $this->volumeCount; - } - public function setVolumesLastUpdated($volumesLastUpdated) - { - $this->volumesLastUpdated = $volumesLastUpdated; - } - public function getVolumesLastUpdated() - { - return $this->volumesLastUpdated; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Bookshelves.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Bookshelves.php deleted file mode 100644 index e8b5eabb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Bookshelves.php +++ /dev/null @@ -1,47 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Books_Bookshelf - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Category.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Category.php deleted file mode 100644 index b024afc1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Category.php +++ /dev/null @@ -1,47 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Books_CategoryItems - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/CategoryItems.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/CategoryItems.php deleted file mode 100644 index eddd941f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/CategoryItems.php +++ /dev/null @@ -1,48 +0,0 @@ -badgeUrl = $badgeUrl; - } - public function getBadgeUrl() - { - return $this->badgeUrl; - } - public function setCategoryId($categoryId) - { - $this->categoryId = $categoryId; - } - public function getCategoryId() - { - return $this->categoryId; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/ConcurrentAccessRestriction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/ConcurrentAccessRestriction.php deleted file mode 100644 index 26e7a09f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/ConcurrentAccessRestriction.php +++ /dev/null @@ -1,120 +0,0 @@ -deviceAllowed = $deviceAllowed; - } - public function getDeviceAllowed() - { - return $this->deviceAllowed; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setMaxConcurrentDevices($maxConcurrentDevices) - { - $this->maxConcurrentDevices = $maxConcurrentDevices; - } - public function getMaxConcurrentDevices() - { - return $this->maxConcurrentDevices; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } - public function setNonce($nonce) - { - $this->nonce = $nonce; - } - public function getNonce() - { - return $this->nonce; - } - public function setReasonCode($reasonCode) - { - $this->reasonCode = $reasonCode; - } - public function getReasonCode() - { - return $this->reasonCode; - } - public function setRestricted($restricted) - { - $this->restricted = $restricted; - } - public function getRestricted() - { - return $this->restricted; - } - public function setSignature($signature) - { - $this->signature = $signature; - } - public function getSignature() - { - return $this->signature; - } - public function setSource($source) - { - $this->source = $source; - } - public function getSource() - { - return $this->source; - } - public function setTimeWindowSeconds($timeWindowSeconds) - { - $this->timeWindowSeconds = $timeWindowSeconds; - } - public function getTimeWindowSeconds() - { - return $this->timeWindowSeconds; - } - public function setVolumeId($volumeId) - { - $this->volumeId = $volumeId; - } - public function getVolumeId() - { - return $this->volumeId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Dictlayerdata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Dictlayerdata.php deleted file mode 100644 index 494a5113..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Dictlayerdata.php +++ /dev/null @@ -1,62 +0,0 @@ -common = $common; - } - /** - * @return Google_Service_Books_DictlayerdataCommon - */ - public function getCommon() - { - return $this->common; - } - /** - * @param Google_Service_Books_DictlayerdataDict - */ - public function setDict(Google_Service_Books_DictlayerdataDict $dict) - { - $this->dict = $dict; - } - /** - * @return Google_Service_Books_DictlayerdataDict - */ - public function getDict() - { - return $this->dict; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DictlayerdataCommon.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DictlayerdataCommon.php deleted file mode 100644 index 4451ab32..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DictlayerdataCommon.php +++ /dev/null @@ -1,30 +0,0 @@ -title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DictlayerdataDict.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DictlayerdataDict.php deleted file mode 100644 index 7fa5dcf9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DictlayerdataDict.php +++ /dev/null @@ -1,54 +0,0 @@ -source = $source; - } - /** - * @return Google_Service_Books_DictlayerdataDictSource - */ - public function getSource() - { - return $this->source; - } - /** - * @param Google_Service_Books_DictlayerdataDictWords - */ - public function setWords($words) - { - $this->words = $words; - } - /** - * @return Google_Service_Books_DictlayerdataDictWords - */ - public function getWords() - { - return $this->words; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DictlayerdataDictSource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DictlayerdataDictSource.php deleted file mode 100644 index 4f3bc702..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DictlayerdataDictSource.php +++ /dev/null @@ -1,39 +0,0 @@ -attribution = $attribution; - } - public function getAttribution() - { - return $this->attribution; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DictlayerdataDictWords.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DictlayerdataDictWords.php deleted file mode 100644 index 581044f6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DictlayerdataDictWords.php +++ /dev/null @@ -1,86 +0,0 @@ -derivatives = $derivatives; - } - /** - * @return Google_Service_Books_DictlayerdataDictWordsDerivatives - */ - public function getDerivatives() - { - return $this->derivatives; - } - /** - * @param Google_Service_Books_DictlayerdataDictWordsExamples - */ - public function setExamples($examples) - { - $this->examples = $examples; - } - /** - * @return Google_Service_Books_DictlayerdataDictWordsExamples - */ - public function getExamples() - { - return $this->examples; - } - /** - * @param Google_Service_Books_DictlayerdataDictWordsSenses - */ - public function setSenses($senses) - { - $this->senses = $senses; - } - /** - * @return Google_Service_Books_DictlayerdataDictWordsSenses - */ - public function getSenses() - { - return $this->senses; - } - /** - * @param Google_Service_Books_DictlayerdataDictWordsSource - */ - public function setSource(Google_Service_Books_DictlayerdataDictWordsSource $source) - { - $this->source = $source; - } - /** - * @return Google_Service_Books_DictlayerdataDictWordsSource - */ - public function getSource() - { - return $this->source; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DictlayerdataDictWordsDerivatives.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DictlayerdataDictWordsDerivatives.php deleted file mode 100644 index 5210eb18..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DictlayerdataDictWordsDerivatives.php +++ /dev/null @@ -1,46 +0,0 @@ -source = $source; - } - /** - * @return Google_Service_Books_DictlayerdataDictWordsDerivativesSource - */ - public function getSource() - { - return $this->source; - } - public function setText($text) - { - $this->text = $text; - } - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DictlayerdataDictWordsDerivativesSource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DictlayerdataDictWordsDerivativesSource.php deleted file mode 100644 index 0a56bb1e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DictlayerdataDictWordsDerivativesSource.php +++ /dev/null @@ -1,39 +0,0 @@ -attribution = $attribution; - } - public function getAttribution() - { - return $this->attribution; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DictlayerdataDictWordsExamples.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DictlayerdataDictWordsExamples.php deleted file mode 100644 index 5f5e82b0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DictlayerdataDictWordsExamples.php +++ /dev/null @@ -1,46 +0,0 @@ -source = $source; - } - /** - * @return Google_Service_Books_DictlayerdataDictWordsExamplesSource - */ - public function getSource() - { - return $this->source; - } - public function setText($text) - { - $this->text = $text; - } - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DictlayerdataDictWordsExamplesSource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DictlayerdataDictWordsExamplesSource.php deleted file mode 100644 index 3d86f6d1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DictlayerdataDictWordsExamplesSource.php +++ /dev/null @@ -1,39 +0,0 @@ -attribution = $attribution; - } - public function getAttribution() - { - return $this->attribution; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DictlayerdataDictWordsSenses.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DictlayerdataDictWordsSenses.php deleted file mode 100644 index 097169d4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DictlayerdataDictWordsSenses.php +++ /dev/null @@ -1,122 +0,0 @@ -conjugations = $conjugations; - } - /** - * @return Google_Service_Books_DictlayerdataDictWordsSensesConjugations - */ - public function getConjugations() - { - return $this->conjugations; - } - /** - * @param Google_Service_Books_DictlayerdataDictWordsSensesDefinitions - */ - public function setDefinitions($definitions) - { - $this->definitions = $definitions; - } - /** - * @return Google_Service_Books_DictlayerdataDictWordsSensesDefinitions - */ - public function getDefinitions() - { - return $this->definitions; - } - public function setPartOfSpeech($partOfSpeech) - { - $this->partOfSpeech = $partOfSpeech; - } - public function getPartOfSpeech() - { - return $this->partOfSpeech; - } - public function setPronunciation($pronunciation) - { - $this->pronunciation = $pronunciation; - } - public function getPronunciation() - { - return $this->pronunciation; - } - public function setPronunciationUrl($pronunciationUrl) - { - $this->pronunciationUrl = $pronunciationUrl; - } - public function getPronunciationUrl() - { - return $this->pronunciationUrl; - } - /** - * @param Google_Service_Books_DictlayerdataDictWordsSensesSource - */ - public function setSource(Google_Service_Books_DictlayerdataDictWordsSensesSource $source) - { - $this->source = $source; - } - /** - * @return Google_Service_Books_DictlayerdataDictWordsSensesSource - */ - public function getSource() - { - return $this->source; - } - public function setSyllabification($syllabification) - { - $this->syllabification = $syllabification; - } - public function getSyllabification() - { - return $this->syllabification; - } - /** - * @param Google_Service_Books_DictlayerdataDictWordsSensesSynonyms - */ - public function setSynonyms($synonyms) - { - $this->synonyms = $synonyms; - } - /** - * @return Google_Service_Books_DictlayerdataDictWordsSensesSynonyms - */ - public function getSynonyms() - { - return $this->synonyms; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DictlayerdataDictWordsSensesConjugations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DictlayerdataDictWordsSensesConjugations.php deleted file mode 100644 index 11d6e385..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DictlayerdataDictWordsSensesConjugations.php +++ /dev/null @@ -1,39 +0,0 @@ -type = $type; - } - public function getType() - { - return $this->type; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DictlayerdataDictWordsSensesDefinitions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DictlayerdataDictWordsSensesDefinitions.php deleted file mode 100644 index 9c1a0af0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DictlayerdataDictWordsSensesDefinitions.php +++ /dev/null @@ -1,47 +0,0 @@ -definition = $definition; - } - public function getDefinition() - { - return $this->definition; - } - /** - * @param Google_Service_Books_DictlayerdataDictWordsSensesDefinitionsExamples - */ - public function setExamples($examples) - { - $this->examples = $examples; - } - /** - * @return Google_Service_Books_DictlayerdataDictWordsSensesDefinitionsExamples - */ - public function getExamples() - { - return $this->examples; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DictlayerdataDictWordsSensesDefinitionsExamples.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DictlayerdataDictWordsSensesDefinitionsExamples.php deleted file mode 100644 index 281400ab..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DictlayerdataDictWordsSensesDefinitionsExamples.php +++ /dev/null @@ -1,46 +0,0 @@ -source = $source; - } - /** - * @return Google_Service_Books_DictlayerdataDictWordsSensesDefinitionsExamplesSource - */ - public function getSource() - { - return $this->source; - } - public function setText($text) - { - $this->text = $text; - } - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DictlayerdataDictWordsSensesDefinitionsExamplesSource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DictlayerdataDictWordsSensesDefinitionsExamplesSource.php deleted file mode 100644 index 19aa7f0a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DictlayerdataDictWordsSensesDefinitionsExamplesSource.php +++ /dev/null @@ -1,39 +0,0 @@ -attribution = $attribution; - } - public function getAttribution() - { - return $this->attribution; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DictlayerdataDictWordsSensesSource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DictlayerdataDictWordsSensesSource.php deleted file mode 100644 index 76d33ddd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DictlayerdataDictWordsSensesSource.php +++ /dev/null @@ -1,39 +0,0 @@ -attribution = $attribution; - } - public function getAttribution() - { - return $this->attribution; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DictlayerdataDictWordsSensesSynonyms.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DictlayerdataDictWordsSensesSynonyms.php deleted file mode 100644 index ee2ae9f9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DictlayerdataDictWordsSensesSynonyms.php +++ /dev/null @@ -1,46 +0,0 @@ -source = $source; - } - /** - * @return Google_Service_Books_DictlayerdataDictWordsSensesSynonymsSource - */ - public function getSource() - { - return $this->source; - } - public function setText($text) - { - $this->text = $text; - } - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DictlayerdataDictWordsSensesSynonymsSource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DictlayerdataDictWordsSensesSynonymsSource.php deleted file mode 100644 index 58f049ab..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DictlayerdataDictWordsSensesSynonymsSource.php +++ /dev/null @@ -1,39 +0,0 @@ -attribution = $attribution; - } - public function getAttribution() - { - return $this->attribution; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DictlayerdataDictWordsSource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DictlayerdataDictWordsSource.php deleted file mode 100644 index 349bb94f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DictlayerdataDictWordsSource.php +++ /dev/null @@ -1,39 +0,0 @@ -attribution = $attribution; - } - public function getAttribution() - { - return $this->attribution; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Discoveryclusters.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Discoveryclusters.php deleted file mode 100644 index 854a4708..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Discoveryclusters.php +++ /dev/null @@ -1,56 +0,0 @@ -clusters = $clusters; - } - /** - * @return Google_Service_Books_DiscoveryclustersClusters - */ - public function getClusters() - { - return $this->clusters; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setTotalClusters($totalClusters) - { - $this->totalClusters = $totalClusters; - } - public function getTotalClusters() - { - return $this->totalClusters; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DiscoveryclustersClusters.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DiscoveryclustersClusters.php deleted file mode 100644 index 04669c19..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DiscoveryclustersClusters.php +++ /dev/null @@ -1,93 +0,0 @@ - "banner_with_content_container", - ); - protected $bannerWithContentContainerType = 'Google_Service_Books_DiscoveryclustersClustersBannerWithContentContainer'; - protected $bannerWithContentContainerDataType = ''; - public $subTitle; - public $title; - public $totalVolumes; - public $uid; - protected $volumesType = 'Google_Service_Books_Volume'; - protected $volumesDataType = 'array'; - - /** - * @param Google_Service_Books_DiscoveryclustersClustersBannerWithContentContainer - */ - public function setBannerWithContentContainer(Google_Service_Books_DiscoveryclustersClustersBannerWithContentContainer $bannerWithContentContainer) - { - $this->bannerWithContentContainer = $bannerWithContentContainer; - } - /** - * @return Google_Service_Books_DiscoveryclustersClustersBannerWithContentContainer - */ - public function getBannerWithContentContainer() - { - return $this->bannerWithContentContainer; - } - public function setSubTitle($subTitle) - { - $this->subTitle = $subTitle; - } - public function getSubTitle() - { - return $this->subTitle; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setTotalVolumes($totalVolumes) - { - $this->totalVolumes = $totalVolumes; - } - public function getTotalVolumes() - { - return $this->totalVolumes; - } - public function setUid($uid) - { - $this->uid = $uid; - } - public function getUid() - { - return $this->uid; - } - /** - * @param Google_Service_Books_Volume - */ - public function setVolumes($volumes) - { - $this->volumes = $volumes; - } - /** - * @return Google_Service_Books_Volume - */ - public function getVolumes() - { - return $this->volumes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DiscoveryclustersClustersBannerWithContentContainer.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DiscoveryclustersClustersBannerWithContentContainer.php deleted file mode 100644 index 7a0d70c4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DiscoveryclustersClustersBannerWithContentContainer.php +++ /dev/null @@ -1,75 +0,0 @@ -fillColorArgb = $fillColorArgb; - } - public function getFillColorArgb() - { - return $this->fillColorArgb; - } - public function setImageUrl($imageUrl) - { - $this->imageUrl = $imageUrl; - } - public function getImageUrl() - { - return $this->imageUrl; - } - public function setMaskColorArgb($maskColorArgb) - { - $this->maskColorArgb = $maskColorArgb; - } - public function getMaskColorArgb() - { - return $this->maskColorArgb; - } - public function setMoreButtonText($moreButtonText) - { - $this->moreButtonText = $moreButtonText; - } - public function getMoreButtonText() - { - return $this->moreButtonText; - } - public function setMoreButtonUrl($moreButtonUrl) - { - $this->moreButtonUrl = $moreButtonUrl; - } - public function getMoreButtonUrl() - { - return $this->moreButtonUrl; - } - public function setTextColorArgb($textColorArgb) - { - $this->textColorArgb = $textColorArgb; - } - public function getTextColorArgb() - { - return $this->textColorArgb; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DownloadAccessRestriction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DownloadAccessRestriction.php deleted file mode 100644 index 7658f495..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DownloadAccessRestriction.php +++ /dev/null @@ -1,129 +0,0 @@ -deviceAllowed = $deviceAllowed; - } - public function getDeviceAllowed() - { - return $this->deviceAllowed; - } - public function setDownloadsAcquired($downloadsAcquired) - { - $this->downloadsAcquired = $downloadsAcquired; - } - public function getDownloadsAcquired() - { - return $this->downloadsAcquired; - } - public function setJustAcquired($justAcquired) - { - $this->justAcquired = $justAcquired; - } - public function getJustAcquired() - { - return $this->justAcquired; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setMaxDownloadDevices($maxDownloadDevices) - { - $this->maxDownloadDevices = $maxDownloadDevices; - } - public function getMaxDownloadDevices() - { - return $this->maxDownloadDevices; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } - public function setNonce($nonce) - { - $this->nonce = $nonce; - } - public function getNonce() - { - return $this->nonce; - } - public function setReasonCode($reasonCode) - { - $this->reasonCode = $reasonCode; - } - public function getReasonCode() - { - return $this->reasonCode; - } - public function setRestricted($restricted) - { - $this->restricted = $restricted; - } - public function getRestricted() - { - return $this->restricted; - } - public function setSignature($signature) - { - $this->signature = $signature; - } - public function getSignature() - { - return $this->signature; - } - public function setSource($source) - { - $this->source = $source; - } - public function getSource() - { - return $this->source; - } - public function setVolumeId($volumeId) - { - $this->volumeId = $volumeId; - } - public function getVolumeId() - { - return $this->volumeId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DownloadAccesses.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DownloadAccesses.php deleted file mode 100644 index dbbd4a99..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/DownloadAccesses.php +++ /dev/null @@ -1,47 +0,0 @@ -downloadAccessList = $downloadAccessList; - } - /** - * @return Google_Service_Books_DownloadAccessRestriction - */ - public function getDownloadAccessList() - { - return $this->downloadAccessList; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/FamilyInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/FamilyInfo.php deleted file mode 100644 index 54eb55d3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/FamilyInfo.php +++ /dev/null @@ -1,46 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Books_FamilyInfoMembership - */ - public function setMembership(Google_Service_Books_FamilyInfoMembership $membership) - { - $this->membership = $membership; - } - /** - * @return Google_Service_Books_FamilyInfoMembership - */ - public function getMembership() - { - return $this->membership; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/FamilyInfoMembership.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/FamilyInfoMembership.php deleted file mode 100644 index e45eb5c8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/FamilyInfoMembership.php +++ /dev/null @@ -1,66 +0,0 @@ -acquirePermission = $acquirePermission; - } - public function getAcquirePermission() - { - return $this->acquirePermission; - } - public function setAgeGroup($ageGroup) - { - $this->ageGroup = $ageGroup; - } - public function getAgeGroup() - { - return $this->ageGroup; - } - public function setAllowedMaturityRating($allowedMaturityRating) - { - $this->allowedMaturityRating = $allowedMaturityRating; - } - public function getAllowedMaturityRating() - { - return $this->allowedMaturityRating; - } - public function setIsInFamily($isInFamily) - { - $this->isInFamily = $isInFamily; - } - public function getIsInFamily() - { - return $this->isInFamily; - } - public function setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Geolayerdata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Geolayerdata.php deleted file mode 100644 index 016b1d51..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Geolayerdata.php +++ /dev/null @@ -1,62 +0,0 @@ -common = $common; - } - /** - * @return Google_Service_Books_GeolayerdataCommon - */ - public function getCommon() - { - return $this->common; - } - /** - * @param Google_Service_Books_GeolayerdataGeo - */ - public function setGeo(Google_Service_Books_GeolayerdataGeo $geo) - { - $this->geo = $geo; - } - /** - * @return Google_Service_Books_GeolayerdataGeo - */ - public function getGeo() - { - return $this->geo; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/GeolayerdataCommon.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/GeolayerdataCommon.php deleted file mode 100644 index 39b800b8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/GeolayerdataCommon.php +++ /dev/null @@ -1,66 +0,0 @@ -lang = $lang; - } - public function getLang() - { - return $this->lang; - } - public function setPreviewImageUrl($previewImageUrl) - { - $this->previewImageUrl = $previewImageUrl; - } - public function getPreviewImageUrl() - { - return $this->previewImageUrl; - } - public function setSnippet($snippet) - { - $this->snippet = $snippet; - } - public function getSnippet() - { - return $this->snippet; - } - public function setSnippetUrl($snippetUrl) - { - $this->snippetUrl = $snippetUrl; - } - public function getSnippetUrl() - { - return $this->snippetUrl; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/GeolayerdataGeo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/GeolayerdataGeo.php deleted file mode 100644 index fc9776b5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/GeolayerdataGeo.php +++ /dev/null @@ -1,108 +0,0 @@ -boundary = $boundary; - } - /** - * @return Google_Service_Books_GeolayerdataGeoBoundary - */ - public function getBoundary() - { - return $this->boundary; - } - public function setCachePolicy($cachePolicy) - { - $this->cachePolicy = $cachePolicy; - } - public function getCachePolicy() - { - return $this->cachePolicy; - } - public function setCountryCode($countryCode) - { - $this->countryCode = $countryCode; - } - public function getCountryCode() - { - return $this->countryCode; - } - public function setLatitude($latitude) - { - $this->latitude = $latitude; - } - public function getLatitude() - { - return $this->latitude; - } - public function setLongitude($longitude) - { - $this->longitude = $longitude; - } - public function getLongitude() - { - return $this->longitude; - } - public function setMapType($mapType) - { - $this->mapType = $mapType; - } - public function getMapType() - { - return $this->mapType; - } - /** - * @param Google_Service_Books_GeolayerdataGeoViewport - */ - public function setViewport(Google_Service_Books_GeolayerdataGeoViewport $viewport) - { - $this->viewport = $viewport; - } - /** - * @return Google_Service_Books_GeolayerdataGeoViewport - */ - public function getViewport() - { - return $this->viewport; - } - public function setZoom($zoom) - { - $this->zoom = $zoom; - } - public function getZoom() - { - return $this->zoom; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/GeolayerdataGeoBoundary.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/GeolayerdataGeoBoundary.php deleted file mode 100644 index 28d82bfc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/GeolayerdataGeoBoundary.php +++ /dev/null @@ -1,39 +0,0 @@ -latitude = $latitude; - } - public function getLatitude() - { - return $this->latitude; - } - public function setLongitude($longitude) - { - $this->longitude = $longitude; - } - public function getLongitude() - { - return $this->longitude; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/GeolayerdataGeoViewport.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/GeolayerdataGeoViewport.php deleted file mode 100644 index de3be144..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/GeolayerdataGeoViewport.php +++ /dev/null @@ -1,53 +0,0 @@ -hi = $hi; - } - /** - * @return Google_Service_Books_GeolayerdataGeoViewportHi - */ - public function getHi() - { - return $this->hi; - } - /** - * @param Google_Service_Books_GeolayerdataGeoViewportLo - */ - public function setLo(Google_Service_Books_GeolayerdataGeoViewportLo $lo) - { - $this->lo = $lo; - } - /** - * @return Google_Service_Books_GeolayerdataGeoViewportLo - */ - public function getLo() - { - return $this->lo; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/GeolayerdataGeoViewportHi.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/GeolayerdataGeoViewportHi.php deleted file mode 100644 index 72727cb3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/GeolayerdataGeoViewportHi.php +++ /dev/null @@ -1,39 +0,0 @@ -latitude = $latitude; - } - public function getLatitude() - { - return $this->latitude; - } - public function setLongitude($longitude) - { - $this->longitude = $longitude; - } - public function getLongitude() - { - return $this->longitude; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/GeolayerdataGeoViewportLo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/GeolayerdataGeoViewportLo.php deleted file mode 100644 index f8cde0fd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/GeolayerdataGeoViewportLo.php +++ /dev/null @@ -1,39 +0,0 @@ -latitude = $latitude; - } - public function getLatitude() - { - return $this->latitude; - } - public function setLongitude($longitude) - { - $this->longitude = $longitude; - } - public function getLongitude() - { - return $this->longitude; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Layersummaries.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Layersummaries.php deleted file mode 100644 index fd36bfbf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Layersummaries.php +++ /dev/null @@ -1,56 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Books_Layersummary - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setTotalItems($totalItems) - { - $this->totalItems = $totalItems; - } - public function getTotalItems() - { - return $this->totalItems; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Layersummary.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Layersummary.php deleted file mode 100644 index 8314b079..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Layersummary.php +++ /dev/null @@ -1,139 +0,0 @@ -annotationCount = $annotationCount; - } - public function getAnnotationCount() - { - return $this->annotationCount; - } - public function setAnnotationTypes($annotationTypes) - { - $this->annotationTypes = $annotationTypes; - } - public function getAnnotationTypes() - { - return $this->annotationTypes; - } - public function setAnnotationsDataLink($annotationsDataLink) - { - $this->annotationsDataLink = $annotationsDataLink; - } - public function getAnnotationsDataLink() - { - return $this->annotationsDataLink; - } - public function setAnnotationsLink($annotationsLink) - { - $this->annotationsLink = $annotationsLink; - } - public function getAnnotationsLink() - { - return $this->annotationsLink; - } - public function setContentVersion($contentVersion) - { - $this->contentVersion = $contentVersion; - } - public function getContentVersion() - { - return $this->contentVersion; - } - public function setDataCount($dataCount) - { - $this->dataCount = $dataCount; - } - public function getDataCount() - { - return $this->dataCount; - } - 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 setLayerId($layerId) - { - $this->layerId = $layerId; - } - public function getLayerId() - { - return $this->layerId; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setUpdated($updated) - { - $this->updated = $updated; - } - public function getUpdated() - { - return $this->updated; - } - public function setVolumeAnnotationsVersion($volumeAnnotationsVersion) - { - $this->volumeAnnotationsVersion = $volumeAnnotationsVersion; - } - public function getVolumeAnnotationsVersion() - { - return $this->volumeAnnotationsVersion; - } - public function setVolumeId($volumeId) - { - $this->volumeId = $volumeId; - } - public function getVolumeId() - { - return $this->volumeId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Metadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Metadata.php deleted file mode 100644 index 87ad5f89..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Metadata.php +++ /dev/null @@ -1,47 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Books_MetadataItems - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/MetadataItems.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/MetadataItems.php deleted file mode 100644 index 4fc5c675..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/MetadataItems.php +++ /dev/null @@ -1,70 +0,0 @@ - "download_url", - "encryptedKey" => "encrypted_key", - ); - public $downloadUrl; - public $encryptedKey; - public $language; - public $size; - public $version; - - public function setDownloadUrl($downloadUrl) - { - $this->downloadUrl = $downloadUrl; - } - public function getDownloadUrl() - { - return $this->downloadUrl; - } - public function setEncryptedKey($encryptedKey) - { - $this->encryptedKey = $encryptedKey; - } - public function getEncryptedKey() - { - return $this->encryptedKey; - } - public function setLanguage($language) - { - $this->language = $language; - } - public function getLanguage() - { - return $this->language; - } - public function setSize($size) - { - $this->size = $size; - } - public function getSize() - { - return $this->size; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Notification.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Notification.php deleted file mode 100644 index ec409702..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Notification.php +++ /dev/null @@ -1,175 +0,0 @@ - "doc_id", - "docType" => "doc_type", - "dontShowNotification" => "dont_show_notification", - "isDocumentMature" => "is_document_mature", - "notificationType" => "notification_type", - "pcampaignId" => "pcampaign_id", - "showNotificationSettingsAction" => "show_notification_settings_action", - ); - public $body; - public $crmExperimentIds; - public $docId; - public $docType; - public $dontShowNotification; - public $iconUrl; - public $isDocumentMature; - public $kind; - public $notificationGroup; - public $notificationType; - public $pcampaignId; - public $reason; - public $showNotificationSettingsAction; - public $targetUrl; - public $timeToExpireMs; - public $title; - - public function setBody($body) - { - $this->body = $body; - } - public function getBody() - { - return $this->body; - } - public function setCrmExperimentIds($crmExperimentIds) - { - $this->crmExperimentIds = $crmExperimentIds; - } - public function getCrmExperimentIds() - { - return $this->crmExperimentIds; - } - public function setDocId($docId) - { - $this->docId = $docId; - } - public function getDocId() - { - return $this->docId; - } - public function setDocType($docType) - { - $this->docType = $docType; - } - public function getDocType() - { - return $this->docType; - } - public function setDontShowNotification($dontShowNotification) - { - $this->dontShowNotification = $dontShowNotification; - } - public function getDontShowNotification() - { - return $this->dontShowNotification; - } - public function setIconUrl($iconUrl) - { - $this->iconUrl = $iconUrl; - } - public function getIconUrl() - { - return $this->iconUrl; - } - public function setIsDocumentMature($isDocumentMature) - { - $this->isDocumentMature = $isDocumentMature; - } - public function getIsDocumentMature() - { - return $this->isDocumentMature; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNotificationGroup($notificationGroup) - { - $this->notificationGroup = $notificationGroup; - } - public function getNotificationGroup() - { - return $this->notificationGroup; - } - public function setNotificationType($notificationType) - { - $this->notificationType = $notificationType; - } - public function getNotificationType() - { - return $this->notificationType; - } - public function setPcampaignId($pcampaignId) - { - $this->pcampaignId = $pcampaignId; - } - public function getPcampaignId() - { - return $this->pcampaignId; - } - public function setReason($reason) - { - $this->reason = $reason; - } - public function getReason() - { - return $this->reason; - } - public function setShowNotificationSettingsAction($showNotificationSettingsAction) - { - $this->showNotificationSettingsAction = $showNotificationSettingsAction; - } - public function getShowNotificationSettingsAction() - { - return $this->showNotificationSettingsAction; - } - public function setTargetUrl($targetUrl) - { - $this->targetUrl = $targetUrl; - } - public function getTargetUrl() - { - return $this->targetUrl; - } - public function setTimeToExpireMs($timeToExpireMs) - { - $this->timeToExpireMs = $timeToExpireMs; - } - public function getTimeToExpireMs() - { - return $this->timeToExpireMs; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Offers.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Offers.php deleted file mode 100644 index 1b80d6ea..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Offers.php +++ /dev/null @@ -1,47 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Books_OffersItems - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/OffersItems.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/OffersItems.php deleted file mode 100644 index 4de01afb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/OffersItems.php +++ /dev/null @@ -1,65 +0,0 @@ -artUrl = $artUrl; - } - public function getArtUrl() - { - return $this->artUrl; - } - public function setGservicesKey($gservicesKey) - { - $this->gservicesKey = $gservicesKey; - } - public function getGservicesKey() - { - return $this->gservicesKey; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Books_OffersItemsItems - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Books_OffersItemsItems - */ - public function getItems() - { - return $this->items; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/OffersItemsItems.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/OffersItemsItems.php deleted file mode 100644 index 60ad2f18..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/OffersItemsItems.php +++ /dev/null @@ -1,75 +0,0 @@ -author = $author; - } - public function getAuthor() - { - return $this->author; - } - public function setCanonicalVolumeLink($canonicalVolumeLink) - { - $this->canonicalVolumeLink = $canonicalVolumeLink; - } - public function getCanonicalVolumeLink() - { - return $this->canonicalVolumeLink; - } - public function setCoverUrl($coverUrl) - { - $this->coverUrl = $coverUrl; - } - public function getCoverUrl() - { - return $this->coverUrl; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setVolumeId($volumeId) - { - $this->volumeId = $volumeId; - } - public function getVolumeId() - { - return $this->volumeId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/ReadingPosition.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/ReadingPosition.php deleted file mode 100644 index 7d8b38af..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/ReadingPosition.php +++ /dev/null @@ -1,84 +0,0 @@ -epubCfiPosition = $epubCfiPosition; - } - public function getEpubCfiPosition() - { - return $this->epubCfiPosition; - } - public function setGbImagePosition($gbImagePosition) - { - $this->gbImagePosition = $gbImagePosition; - } - public function getGbImagePosition() - { - return $this->gbImagePosition; - } - public function setGbTextPosition($gbTextPosition) - { - $this->gbTextPosition = $gbTextPosition; - } - public function getGbTextPosition() - { - return $this->gbTextPosition; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setPdfPosition($pdfPosition) - { - $this->pdfPosition = $pdfPosition; - } - public function getPdfPosition() - { - return $this->pdfPosition; - } - public function setUpdated($updated) - { - $this->updated = $updated; - } - public function getUpdated() - { - return $this->updated; - } - public function setVolumeId($volumeId) - { - $this->volumeId = $volumeId; - } - public function getVolumeId() - { - return $this->volumeId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/RequestAccess.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/RequestAccess.php deleted file mode 100644 index 1af6a44c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/RequestAccess.php +++ /dev/null @@ -1,62 +0,0 @@ -concurrentAccess = $concurrentAccess; - } - /** - * @return Google_Service_Books_ConcurrentAccessRestriction - */ - public function getConcurrentAccess() - { - return $this->concurrentAccess; - } - /** - * @param Google_Service_Books_DownloadAccessRestriction - */ - public function setDownloadAccess(Google_Service_Books_DownloadAccessRestriction $downloadAccess) - { - $this->downloadAccess = $downloadAccess; - } - /** - * @return Google_Service_Books_DownloadAccessRestriction - */ - public function getDownloadAccess() - { - return $this->downloadAccess; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/Bookshelves.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/Bookshelves.php deleted file mode 100644 index 6eed9c2f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/Bookshelves.php +++ /dev/null @@ -1,61 +0,0 @@ - - * $booksService = new Google_Service_Books(...); - * $bookshelves = $booksService->bookshelves; - * - */ -class Google_Service_Books_Resource_Bookshelves extends Google_Service_Resource -{ - /** - * Retrieves metadata for a specific bookshelf for the specified user. - * (bookshelves.get) - * - * @param string $userId ID of user for whom to retrieve bookshelves. - * @param string $shelf ID of bookshelf to retrieve. - * @param array $optParams Optional parameters. - * - * @opt_param string source String to identify the originator of this request. - * @return Google_Service_Books_Bookshelf - */ - public function get($userId, $shelf, $optParams = array()) - { - $params = array('userId' => $userId, 'shelf' => $shelf); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Books_Bookshelf"); - } - /** - * Retrieves a list of public bookshelves for the specified user. - * (bookshelves.listBookshelves) - * - * @param string $userId ID of user for whom to retrieve bookshelves. - * @param array $optParams Optional parameters. - * - * @opt_param string source String to identify the originator of this request. - * @return Google_Service_Books_Bookshelves - */ - public function listBookshelves($userId, $optParams = array()) - { - $params = array('userId' => $userId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Books_Bookshelves"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/BookshelvesVolumes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/BookshelvesVolumes.php deleted file mode 100644 index 00c4de15..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/BookshelvesVolumes.php +++ /dev/null @@ -1,50 +0,0 @@ - - * $booksService = new Google_Service_Books(...); - * $volumes = $booksService->volumes; - * - */ -class Google_Service_Books_Resource_BookshelvesVolumes extends Google_Service_Resource -{ - /** - * Retrieves volumes in a specific bookshelf for the specified user. - * (volumes.listBookshelvesVolumes) - * - * @param string $userId ID of user for whom to retrieve bookshelf volumes. - * @param string $shelf ID of bookshelf to retrieve volumes. - * @param array $optParams Optional parameters. - * - * @opt_param string maxResults Maximum number of results to return - * @opt_param bool showPreorders Set to true to show pre-ordered books. Defaults - * to false. - * @opt_param string source String to identify the originator of this request. - * @opt_param string startIndex Index of the first element to return (starts at - * 0) - * @return Google_Service_Books_Volumes - */ - public function listBookshelvesVolumes($userId, $shelf, $optParams = array()) - { - $params = array('userId' => $userId, 'shelf' => $shelf); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Books_Volumes"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/Cloudloading.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/Cloudloading.php deleted file mode 100644 index e0b6db3d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/Cloudloading.php +++ /dev/null @@ -1,73 +0,0 @@ - - * $booksService = new Google_Service_Books(...); - * $cloudloading = $booksService->cloudloading; - * - */ -class Google_Service_Books_Resource_Cloudloading extends Google_Service_Resource -{ - /** - * (cloudloading.addBook) - * - * @param array $optParams Optional parameters. - * - * @opt_param string drive_document_id A drive document id. The - * upload_client_token must not be set. - * @opt_param string mime_type The document MIME type. It can be set only if the - * drive_document_id is set. - * @opt_param string name The document name. It can be set only if the - * drive_document_id is set. - * @opt_param string upload_client_token - * @return Google_Service_Books_BooksCloudloadingResource - */ - public function addBook($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('addBook', array($params), "Google_Service_Books_BooksCloudloadingResource"); - } - /** - * Remove the book and its contents (cloudloading.deleteBook) - * - * @param string $volumeId The id of the book to be removed. - * @param array $optParams Optional parameters. - */ - public function deleteBook($volumeId, $optParams = array()) - { - $params = array('volumeId' => $volumeId); - $params = array_merge($params, $optParams); - return $this->call('deleteBook', array($params)); - } - /** - * (cloudloading.updateBook) - * - * @param Google_Service_Books_BooksCloudloadingResource $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Books_BooksCloudloadingResource - */ - public function updateBook(Google_Service_Books_BooksCloudloadingResource $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updateBook', array($params), "Google_Service_Books_BooksCloudloadingResource"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/Dictionary.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/Dictionary.php deleted file mode 100644 index 8521c4ef..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/Dictionary.php +++ /dev/null @@ -1,42 +0,0 @@ - - * $booksService = new Google_Service_Books(...); - * $dictionary = $booksService->dictionary; - * - */ -class Google_Service_Books_Resource_Dictionary extends Google_Service_Resource -{ - /** - * Returns a list of offline dictionary metadata available - * (dictionary.listOfflineMetadata) - * - * @param string $cpksver The device/version ID from which to request the data. - * @param array $optParams Optional parameters. - * @return Google_Service_Books_Metadata - */ - public function listOfflineMetadata($cpksver, $optParams = array()) - { - $params = array('cpksver' => $cpksver); - $params = array_merge($params, $optParams); - return $this->call('listOfflineMetadata', array($params), "Google_Service_Books_Metadata"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/Familysharing.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/Familysharing.php deleted file mode 100644 index c0cfb6ca..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/Familysharing.php +++ /dev/null @@ -1,75 +0,0 @@ - - * $booksService = new Google_Service_Books(...); - * $familysharing = $booksService->familysharing; - * - */ -class Google_Service_Books_Resource_Familysharing extends Google_Service_Resource -{ - /** - * Gets information regarding the family that the user is part of. - * (familysharing.getFamilyInfo) - * - * @param array $optParams Optional parameters. - * - * @opt_param string source String to identify the originator of this request. - * @return Google_Service_Books_FamilyInfo - */ - public function getFamilyInfo($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('getFamilyInfo', array($params), "Google_Service_Books_FamilyInfo"); - } - /** - * Initiates sharing of the content with the user's family. Empty response - * indicates success. (familysharing.share) - * - * @param array $optParams Optional parameters. - * - * @opt_param string docId The docid to share. - * @opt_param string source String to identify the originator of this request. - * @opt_param string volumeId The volume to share. - */ - public function share($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('share', array($params)); - } - /** - * Initiates revoking content that has already been shared with the user's - * family. Empty response indicates success. (familysharing.unshare) - * - * @param array $optParams Optional parameters. - * - * @opt_param string docId The docid to unshare. - * @opt_param string source String to identify the originator of this request. - * @opt_param string volumeId The volume to unshare. - */ - public function unshare($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('unshare', array($params)); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/Layers.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/Layers.php deleted file mode 100644 index 4fafc120..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/Layers.php +++ /dev/null @@ -1,66 +0,0 @@ - - * $booksService = new Google_Service_Books(...); - * $layers = $booksService->layers; - * - */ -class Google_Service_Books_Resource_Layers extends Google_Service_Resource -{ - /** - * Gets the layer summary for a volume. (layers.get) - * - * @param string $volumeId The volume to retrieve layers for. - * @param string $summaryId The ID for the layer to get the summary for. - * @param array $optParams Optional parameters. - * - * @opt_param string contentVersion The content version for the requested - * volume. - * @opt_param string source String to identify the originator of this request. - * @return Google_Service_Books_Layersummary - */ - public function get($volumeId, $summaryId, $optParams = array()) - { - $params = array('volumeId' => $volumeId, 'summaryId' => $summaryId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Books_Layersummary"); - } - /** - * List the layer summaries for a volume. (layers.listLayers) - * - * @param string $volumeId The volume to retrieve layers for. - * @param array $optParams Optional parameters. - * - * @opt_param string contentVersion The content version for the requested - * volume. - * @opt_param string maxResults Maximum number of results to return - * @opt_param string pageToken The value of the nextToken from the previous - * page. - * @opt_param string source String to identify the originator of this request. - * @return Google_Service_Books_Layersummaries - */ - public function listLayers($volumeId, $optParams = array()) - { - $params = array('volumeId' => $volumeId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Books_Layersummaries"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/LayersAnnotationData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/LayersAnnotationData.php deleted file mode 100644 index 12070007..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/LayersAnnotationData.php +++ /dev/null @@ -1,90 +0,0 @@ - - * $booksService = new Google_Service_Books(...); - * $annotationData = $booksService->annotationData; - * - */ -class Google_Service_Books_Resource_LayersAnnotationData extends Google_Service_Resource -{ - /** - * Gets the annotation data. (annotationData.get) - * - * @param string $volumeId The volume to retrieve annotations for. - * @param string $layerId The ID for the layer to get the annotations. - * @param string $annotationDataId The ID of the annotation data to retrieve. - * @param string $contentVersion The content version for the volume you are - * trying to retrieve. - * @param array $optParams Optional parameters. - * - * @opt_param bool allowWebDefinitions For the dictionary layer. Whether or not - * to allow web definitions. - * @opt_param int h The requested pixel height for any images. If height is - * provided width must also be provided. - * @opt_param string locale The locale information for the data. ISO-639-1 - * language and ISO-3166-1 country code. Ex: 'en_US'. - * @opt_param int scale The requested scale for the image. - * @opt_param string source String to identify the originator of this request. - * @opt_param int w The requested pixel width for any images. If width is - * provided height must also be provided. - * @return Google_Service_Books_Annotationdata - */ - public function get($volumeId, $layerId, $annotationDataId, $contentVersion, $optParams = array()) - { - $params = array('volumeId' => $volumeId, 'layerId' => $layerId, 'annotationDataId' => $annotationDataId, 'contentVersion' => $contentVersion); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Books_Annotationdata"); - } - /** - * Gets the annotation data for a volume and layer. - * (annotationData.listLayersAnnotationData) - * - * @param string $volumeId The volume to retrieve annotation data for. - * @param string $layerId The ID for the layer to get the annotation data. - * @param string $contentVersion The content version for the requested volume. - * @param array $optParams Optional parameters. - * - * @opt_param string annotationDataId The list of Annotation Data Ids to - * retrieve. Pagination is ignored if this is set. - * @opt_param int h The requested pixel height for any images. If height is - * provided width must also be provided. - * @opt_param string locale The locale information for the data. ISO-639-1 - * language and ISO-3166-1 country code. Ex: 'en_US'. - * @opt_param string maxResults Maximum number of results to return - * @opt_param string pageToken The value of the nextToken from the previous - * page. - * @opt_param int scale The requested scale for the image. - * @opt_param string source String to identify the originator of this request. - * @opt_param string updatedMax RFC 3339 timestamp to restrict to items updated - * prior to this timestamp (exclusive). - * @opt_param string updatedMin RFC 3339 timestamp to restrict to items updated - * since this timestamp (inclusive). - * @opt_param int w The requested pixel width for any images. If width is - * provided height must also be provided. - * @return Google_Service_Books_Annotationsdata - */ - public function listLayersAnnotationData($volumeId, $layerId, $contentVersion, $optParams = array()) - { - $params = array('volumeId' => $volumeId, 'layerId' => $layerId, 'contentVersion' => $contentVersion); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Books_Annotationsdata"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/LayersVolumeAnnotations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/LayersVolumeAnnotations.php deleted file mode 100644 index dabda4d3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/LayersVolumeAnnotations.php +++ /dev/null @@ -1,83 +0,0 @@ - - * $booksService = new Google_Service_Books(...); - * $volumeAnnotations = $booksService->volumeAnnotations; - * - */ -class Google_Service_Books_Resource_LayersVolumeAnnotations extends Google_Service_Resource -{ - /** - * Gets the volume annotation. (volumeAnnotations.get) - * - * @param string $volumeId The volume to retrieve annotations for. - * @param string $layerId The ID for the layer to get the annotations. - * @param string $annotationId The ID of the volume annotation to retrieve. - * @param array $optParams Optional parameters. - * - * @opt_param string locale The locale information for the data. ISO-639-1 - * language and ISO-3166-1 country code. Ex: 'en_US'. - * @opt_param string source String to identify the originator of this request. - * @return Google_Service_Books_Volumeannotation - */ - public function get($volumeId, $layerId, $annotationId, $optParams = array()) - { - $params = array('volumeId' => $volumeId, 'layerId' => $layerId, 'annotationId' => $annotationId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Books_Volumeannotation"); - } - /** - * Gets the volume annotations for a volume and layer. - * (volumeAnnotations.listLayersVolumeAnnotations) - * - * @param string $volumeId The volume to retrieve annotations for. - * @param string $layerId The ID for the layer to get the annotations. - * @param string $contentVersion The content version for the requested volume. - * @param array $optParams Optional parameters. - * - * @opt_param string endOffset The end offset to end retrieving data from. - * @opt_param string endPosition The end position to end retrieving data from. - * @opt_param string locale The locale information for the data. ISO-639-1 - * language and ISO-3166-1 country code. Ex: 'en_US'. - * @opt_param string maxResults Maximum number of results to return - * @opt_param string pageToken The value of the nextToken from the previous - * page. - * @opt_param bool showDeleted Set to true to return deleted annotations. - * updatedMin must be in the request to use this. Defaults to false. - * @opt_param string source String to identify the originator of this request. - * @opt_param string startOffset The start offset to start retrieving data from. - * @opt_param string startPosition The start position to start retrieving data - * from. - * @opt_param string updatedMax RFC 3339 timestamp to restrict to items updated - * prior to this timestamp (exclusive). - * @opt_param string updatedMin RFC 3339 timestamp to restrict to items updated - * since this timestamp (inclusive). - * @opt_param string volumeAnnotationsVersion The version of the volume - * annotations that you are requesting. - * @return Google_Service_Books_Volumeannotations - */ - public function listLayersVolumeAnnotations($volumeId, $layerId, $contentVersion, $optParams = array()) - { - $params = array('volumeId' => $volumeId, 'layerId' => $layerId, 'contentVersion' => $contentVersion); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Books_Volumeannotations"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/Myconfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/Myconfig.php deleted file mode 100644 index f551e643..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/Myconfig.php +++ /dev/null @@ -1,126 +0,0 @@ - - * $booksService = new Google_Service_Books(...); - * $myconfig = $booksService->myconfig; - * - */ -class Google_Service_Books_Resource_Myconfig extends Google_Service_Resource -{ - /** - * Gets the current settings for the user. (myconfig.getUserSettings) - * - * @param array $optParams Optional parameters. - * @return Google_Service_Books_Usersettings - */ - public function getUserSettings($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('getUserSettings', array($params), "Google_Service_Books_Usersettings"); - } - /** - * Release downloaded content access restriction. - * (myconfig.releaseDownloadAccess) - * - * @param string|array $volumeIds The volume(s) to release restrictions for. - * @param string $cpksver The device/version ID from which to release the - * restriction. - * @param array $optParams Optional parameters. - * - * @opt_param string locale ISO-639-1, ISO-3166-1 codes for message - * localization, i.e. en_US. - * @opt_param string source String to identify the originator of this request. - * @return Google_Service_Books_DownloadAccesses - */ - public function releaseDownloadAccess($volumeIds, $cpksver, $optParams = array()) - { - $params = array('volumeIds' => $volumeIds, 'cpksver' => $cpksver); - $params = array_merge($params, $optParams); - return $this->call('releaseDownloadAccess', array($params), "Google_Service_Books_DownloadAccesses"); - } - /** - * Request concurrent and download access restrictions. (myconfig.requestAccess) - * - * @param string $source String to identify the originator of this request. - * @param string $volumeId The volume to request concurrent/download - * restrictions for. - * @param string $nonce The client nonce value. - * @param string $cpksver The device/version ID from which to request the - * restrictions. - * @param array $optParams Optional parameters. - * - * @opt_param string licenseTypes The type of access license to request. If not - * specified, the default is BOTH. - * @opt_param string locale ISO-639-1, ISO-3166-1 codes for message - * localization, i.e. en_US. - * @return Google_Service_Books_RequestAccess - */ - public function requestAccess($source, $volumeId, $nonce, $cpksver, $optParams = array()) - { - $params = array('source' => $source, 'volumeId' => $volumeId, 'nonce' => $nonce, 'cpksver' => $cpksver); - $params = array_merge($params, $optParams); - return $this->call('requestAccess', array($params), "Google_Service_Books_RequestAccess"); - } - /** - * Request downloaded content access for specified volumes on the My eBooks - * shelf. (myconfig.syncVolumeLicenses) - * - * @param string $source String to identify the originator of this request. - * @param string $nonce The client nonce value. - * @param string $cpksver The device/version ID from which to release the - * restriction. - * @param array $optParams Optional parameters. - * - * @opt_param string features List of features supported by the client, i.e., - * 'RENTALS' - * @opt_param bool includeNonComicsSeries Set to true to include non-comics - * series. Defaults to false. - * @opt_param string locale ISO-639-1, ISO-3166-1 codes for message - * localization, i.e. en_US. - * @opt_param bool showPreorders Set to true to show pre-ordered books. Defaults - * to false. - * @opt_param string volumeIds The volume(s) to request download restrictions - * for. - * @return Google_Service_Books_Volumes - */ - public function syncVolumeLicenses($source, $nonce, $cpksver, $optParams = array()) - { - $params = array('source' => $source, 'nonce' => $nonce, 'cpksver' => $cpksver); - $params = array_merge($params, $optParams); - return $this->call('syncVolumeLicenses', array($params), "Google_Service_Books_Volumes"); - } - /** - * Sets the settings for the user. If a sub-object is specified, it will - * overwrite the existing sub-object stored in the server. Unspecified sub- - * objects will retain the existing value. (myconfig.updateUserSettings) - * - * @param Google_Service_Books_Usersettings $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Books_Usersettings - */ - public function updateUserSettings(Google_Service_Books_Usersettings $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updateUserSettings', array($params), "Google_Service_Books_Usersettings"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/Mylibrary.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/Mylibrary.php deleted file mode 100644 index 1032e669..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/Mylibrary.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $booksService = new Google_Service_Books(...); - * $mylibrary = $booksService->mylibrary; - * - */ -class Google_Service_Books_Resource_Mylibrary extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/MylibraryAnnotations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/MylibraryAnnotations.php deleted file mode 100644 index fc9263d7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/MylibraryAnnotations.php +++ /dev/null @@ -1,120 +0,0 @@ - - * $booksService = new Google_Service_Books(...); - * $annotations = $booksService->annotations; - * - */ -class Google_Service_Books_Resource_MylibraryAnnotations extends Google_Service_Resource -{ - /** - * Deletes an annotation. (annotations.delete) - * - * @param string $annotationId The ID for the annotation to delete. - * @param array $optParams Optional parameters. - * - * @opt_param string source String to identify the originator of this request. - */ - public function delete($annotationId, $optParams = array()) - { - $params = array('annotationId' => $annotationId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Inserts a new annotation. (annotations.insert) - * - * @param Google_Service_Books_Annotation $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string annotationId The ID for the annotation to insert. - * @opt_param string country ISO-3166-1 code to override the IP-based location. - * @opt_param bool showOnlySummaryInResponse Requests that only the summary of - * the specified layer be provided in the response. - * @opt_param string source String to identify the originator of this request. - * @return Google_Service_Books_Annotation - */ - public function insert(Google_Service_Books_Annotation $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Books_Annotation"); - } - /** - * Retrieves a list of annotations, possibly filtered. - * (annotations.listMylibraryAnnotations) - * - * @param array $optParams Optional parameters. - * - * @opt_param string contentVersion The content version for the requested - * volume. - * @opt_param string layerId The layer ID to limit annotation by. - * @opt_param string layerIds The layer ID(s) to limit annotation by. - * @opt_param string maxResults Maximum number of results to return - * @opt_param string pageToken The value of the nextToken from the previous - * page. - * @opt_param bool showDeleted Set to true to return deleted annotations. - * updatedMin must be in the request to use this. Defaults to false. - * @opt_param string source String to identify the originator of this request. - * @opt_param string updatedMax RFC 3339 timestamp to restrict to items updated - * prior to this timestamp (exclusive). - * @opt_param string updatedMin RFC 3339 timestamp to restrict to items updated - * since this timestamp (inclusive). - * @opt_param string volumeId The volume to restrict annotations to. - * @return Google_Service_Books_Annotations - */ - public function listMylibraryAnnotations($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Books_Annotations"); - } - /** - * Gets the summary of specified layers. (annotations.summary) - * - * @param string|array $layerIds Array of layer IDs to get the summary for. - * @param string $volumeId Volume id to get the summary for. - * @param array $optParams Optional parameters. - * @return Google_Service_Books_AnnotationsSummary - */ - public function summary($layerIds, $volumeId, $optParams = array()) - { - $params = array('layerIds' => $layerIds, 'volumeId' => $volumeId); - $params = array_merge($params, $optParams); - return $this->call('summary', array($params), "Google_Service_Books_AnnotationsSummary"); - } - /** - * Updates an existing annotation. (annotations.update) - * - * @param string $annotationId The ID for the annotation to update. - * @param Google_Service_Books_Annotation $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string source String to identify the originator of this request. - * @return Google_Service_Books_Annotation - */ - public function update($annotationId, Google_Service_Books_Annotation $postBody, $optParams = array()) - { - $params = array('annotationId' => $annotationId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Books_Annotation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/MylibraryBookshelves.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/MylibraryBookshelves.php deleted file mode 100644 index cfa18b20..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/MylibraryBookshelves.php +++ /dev/null @@ -1,125 +0,0 @@ - - * $booksService = new Google_Service_Books(...); - * $bookshelves = $booksService->bookshelves; - * - */ -class Google_Service_Books_Resource_MylibraryBookshelves extends Google_Service_Resource -{ - /** - * Adds a volume to a bookshelf. (bookshelves.addVolume) - * - * @param string $shelf ID of bookshelf to which to add a volume. - * @param string $volumeId ID of volume to add. - * @param array $optParams Optional parameters. - * - * @opt_param string reason The reason for which the book is added to the - * library. - * @opt_param string source String to identify the originator of this request. - */ - public function addVolume($shelf, $volumeId, $optParams = array()) - { - $params = array('shelf' => $shelf, 'volumeId' => $volumeId); - $params = array_merge($params, $optParams); - return $this->call('addVolume', array($params)); - } - /** - * Clears all volumes from a bookshelf. (bookshelves.clearVolumes) - * - * @param string $shelf ID of bookshelf from which to remove a volume. - * @param array $optParams Optional parameters. - * - * @opt_param string source String to identify the originator of this request. - */ - public function clearVolumes($shelf, $optParams = array()) - { - $params = array('shelf' => $shelf); - $params = array_merge($params, $optParams); - return $this->call('clearVolumes', array($params)); - } - /** - * Retrieves metadata for a specific bookshelf belonging to the authenticated - * user. (bookshelves.get) - * - * @param string $shelf ID of bookshelf to retrieve. - * @param array $optParams Optional parameters. - * - * @opt_param string source String to identify the originator of this request. - * @return Google_Service_Books_Bookshelf - */ - public function get($shelf, $optParams = array()) - { - $params = array('shelf' => $shelf); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Books_Bookshelf"); - } - /** - * Retrieves a list of bookshelves belonging to the authenticated user. - * (bookshelves.listMylibraryBookshelves) - * - * @param array $optParams Optional parameters. - * - * @opt_param string source String to identify the originator of this request. - * @return Google_Service_Books_Bookshelves - */ - public function listMylibraryBookshelves($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Books_Bookshelves"); - } - /** - * Moves a volume within a bookshelf. (bookshelves.moveVolume) - * - * @param string $shelf ID of bookshelf with the volume. - * @param string $volumeId ID of volume to move. - * @param int $volumePosition Position on shelf to move the item (0 puts the - * item before the current first item, 1 puts it between the first and the - * second and so on.) - * @param array $optParams Optional parameters. - * - * @opt_param string source String to identify the originator of this request. - */ - public function moveVolume($shelf, $volumeId, $volumePosition, $optParams = array()) - { - $params = array('shelf' => $shelf, 'volumeId' => $volumeId, 'volumePosition' => $volumePosition); - $params = array_merge($params, $optParams); - return $this->call('moveVolume', array($params)); - } - /** - * Removes a volume from a bookshelf. (bookshelves.removeVolume) - * - * @param string $shelf ID of bookshelf from which to remove a volume. - * @param string $volumeId ID of volume to remove. - * @param array $optParams Optional parameters. - * - * @opt_param string reason The reason for which the book is removed from the - * library. - * @opt_param string source String to identify the originator of this request. - */ - public function removeVolume($shelf, $volumeId, $optParams = array()) - { - $params = array('shelf' => $shelf, 'volumeId' => $volumeId); - $params = array_merge($params, $optParams); - return $this->call('removeVolume', array($params)); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/MylibraryBookshelvesVolumes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/MylibraryBookshelvesVolumes.php deleted file mode 100644 index 1419ef83..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/MylibraryBookshelvesVolumes.php +++ /dev/null @@ -1,53 +0,0 @@ - - * $booksService = new Google_Service_Books(...); - * $volumes = $booksService->volumes; - * - */ -class Google_Service_Books_Resource_MylibraryBookshelvesVolumes extends Google_Service_Resource -{ - /** - * Gets volume information for volumes on a bookshelf. - * (volumes.listMylibraryBookshelvesVolumes) - * - * @param string $shelf The bookshelf ID or name retrieve volumes for. - * @param array $optParams Optional parameters. - * - * @opt_param string country ISO-3166-1 code to override the IP-based location. - * @opt_param string maxResults Maximum number of results to return - * @opt_param string projection Restrict information returned to a set of - * selected fields. - * @opt_param string q Full-text search query string in this bookshelf. - * @opt_param bool showPreorders Set to true to show pre-ordered books. Defaults - * to false. - * @opt_param string source String to identify the originator of this request. - * @opt_param string startIndex Index of the first element to return (starts at - * 0) - * @return Google_Service_Books_Volumes - */ - public function listMylibraryBookshelvesVolumes($shelf, $optParams = array()) - { - $params = array('shelf' => $shelf); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Books_Volumes"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/MylibraryReadingpositions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/MylibraryReadingpositions.php deleted file mode 100644 index 8f3b222f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/MylibraryReadingpositions.php +++ /dev/null @@ -1,71 +0,0 @@ - - * $booksService = new Google_Service_Books(...); - * $readingpositions = $booksService->readingpositions; - * - */ -class Google_Service_Books_Resource_MylibraryReadingpositions extends Google_Service_Resource -{ - /** - * Retrieves my reading position information for a volume. - * (readingpositions.get) - * - * @param string $volumeId ID of volume for which to retrieve a reading - * position. - * @param array $optParams Optional parameters. - * - * @opt_param string contentVersion Volume content version for which this - * reading position is requested. - * @opt_param string source String to identify the originator of this request. - * @return Google_Service_Books_ReadingPosition - */ - public function get($volumeId, $optParams = array()) - { - $params = array('volumeId' => $volumeId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Books_ReadingPosition"); - } - /** - * Sets my reading position information for a volume. - * (readingpositions.setPosition) - * - * @param string $volumeId ID of volume for which to update the reading - * position. - * @param string $timestamp RFC 3339 UTC format timestamp associated with this - * reading position. - * @param string $position Position string for the new volume reading position. - * @param array $optParams Optional parameters. - * - * @opt_param string action Action that caused this reading position to be set. - * @opt_param string contentVersion Volume content version for which this - * reading position applies. - * @opt_param string deviceCookie Random persistent device cookie optional on - * set position. - * @opt_param string source String to identify the originator of this request. - */ - public function setPosition($volumeId, $timestamp, $position, $optParams = array()) - { - $params = array('volumeId' => $volumeId, 'timestamp' => $timestamp, 'position' => $position); - $params = array_merge($params, $optParams); - return $this->call('setPosition', array($params)); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/Notification.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/Notification.php deleted file mode 100644 index f07aac63..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/Notification.php +++ /dev/null @@ -1,45 +0,0 @@ - - * $booksService = new Google_Service_Books(...); - * $notification = $booksService->notification; - * - */ -class Google_Service_Books_Resource_Notification extends Google_Service_Resource -{ - /** - * Returns notification details for a given notification id. (notification.get) - * - * @param string $notificationId String to identify the notification. - * @param array $optParams Optional parameters. - * - * @opt_param string locale ISO-639-1 language and ISO-3166-1 country code. Ex: - * 'en_US'. Used for generating notification title and body. - * @opt_param string source String to identify the originator of this request. - * @return Google_Service_Books_Notification - */ - public function get($notificationId, $optParams = array()) - { - $params = array('notification_id' => $notificationId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Books_Notification"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/Onboarding.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/Onboarding.php deleted file mode 100644 index 4c10071f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/Onboarding.php +++ /dev/null @@ -1,67 +0,0 @@ - - * $booksService = new Google_Service_Books(...); - * $onboarding = $booksService->onboarding; - * - */ -class Google_Service_Books_Resource_Onboarding extends Google_Service_Resource -{ - /** - * List categories for onboarding experience. (onboarding.listCategories) - * - * @param array $optParams Optional parameters. - * - * @opt_param string locale ISO-639-1 language and ISO-3166-1 country code. - * Default is en-US if unset. - * @return Google_Service_Books_Category - */ - public function listCategories($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('listCategories', array($params), "Google_Service_Books_Category"); - } - /** - * List available volumes under categories for onboarding experience. - * (onboarding.listCategoryVolumes) - * - * @param array $optParams Optional parameters. - * - * @opt_param string categoryId List of category ids requested. - * @opt_param string locale ISO-639-1 language and ISO-3166-1 country code. - * Default is en-US if unset. - * @opt_param string maxAllowedMaturityRating The maximum allowed maturity - * rating of returned volumes. Books with a higher maturity rating are filtered - * out. - * @opt_param string pageSize Number of maximum results per page to be included - * in the response. - * @opt_param string pageToken The value of the nextToken from the previous - * page. - * @return Google_Service_Books_Volume2 - */ - public function listCategoryVolumes($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('listCategoryVolumes', array($params), "Google_Service_Books_Volume2"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/Personalizedstream.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/Personalizedstream.php deleted file mode 100644 index b8e4a002..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/Personalizedstream.php +++ /dev/null @@ -1,47 +0,0 @@ - - * $booksService = new Google_Service_Books(...); - * $personalizedstream = $booksService->personalizedstream; - * - */ -class Google_Service_Books_Resource_Personalizedstream extends Google_Service_Resource -{ - /** - * Returns a stream of personalized book clusters (personalizedstream.get) - * - * @param array $optParams Optional parameters. - * - * @opt_param string locale ISO-639-1 language and ISO-3166-1 country code. Ex: - * 'en_US'. Used for generating recommendations. - * @opt_param string maxAllowedMaturityRating The maximum allowed maturity - * rating of returned recommendations. Books with a higher maturity rating are - * filtered out. - * @opt_param string source String to identify the originator of this request. - * @return Google_Service_Books_Discoveryclusters - */ - public function get($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Books_Discoveryclusters"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/Promooffer.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/Promooffer.php deleted file mode 100644 index 70b9a1e9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/Promooffer.php +++ /dev/null @@ -1,86 +0,0 @@ - - * $booksService = new Google_Service_Books(...); - * $promooffer = $booksService->promooffer; - * - */ -class Google_Service_Books_Resource_Promooffer extends Google_Service_Resource -{ - /** - * (promooffer.accept) - * - * @param array $optParams Optional parameters. - * - * @opt_param string androidId device android_id - * @opt_param string device device device - * @opt_param string manufacturer device manufacturer - * @opt_param string model device model - * @opt_param string offerId - * @opt_param string product device product - * @opt_param string serial device serial - * @opt_param string volumeId Volume id to exercise the offer - */ - public function accept($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('accept', array($params)); - } - /** - * (promooffer.dismiss) - * - * @param array $optParams Optional parameters. - * - * @opt_param string androidId device android_id - * @opt_param string device device device - * @opt_param string manufacturer device manufacturer - * @opt_param string model device model - * @opt_param string offerId Offer to dimiss - * @opt_param string product device product - * @opt_param string serial device serial - */ - public function dismiss($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('dismiss', array($params)); - } - /** - * Returns a list of promo offers available to the user (promooffer.get) - * - * @param array $optParams Optional parameters. - * - * @opt_param string androidId device android_id - * @opt_param string device device device - * @opt_param string manufacturer device manufacturer - * @opt_param string model device model - * @opt_param string product device product - * @opt_param string serial device serial - * @return Google_Service_Books_Offers - */ - public function get($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Books_Offers"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/Series.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/Series.php deleted file mode 100644 index 63b5938e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/Series.php +++ /dev/null @@ -1,41 +0,0 @@ - - * $booksService = new Google_Service_Books(...); - * $series = $booksService->series; - * - */ -class Google_Service_Books_Resource_Series extends Google_Service_Resource -{ - /** - * Returns Series metadata for the given series ids. (series.get) - * - * @param string|array $seriesId String that identifies the series - * @param array $optParams Optional parameters. - * @return Google_Service_Books_Series - */ - public function get($seriesId, $optParams = array()) - { - $params = array('series_id' => $seriesId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Books_Series"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/SeriesMembership.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/SeriesMembership.php deleted file mode 100644 index 4221f008..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/SeriesMembership.php +++ /dev/null @@ -1,46 +0,0 @@ - - * $booksService = new Google_Service_Books(...); - * $membership = $booksService->membership; - * - */ -class Google_Service_Books_Resource_SeriesMembership extends Google_Service_Resource -{ - /** - * Returns Series membership data given the series id. (membership.get) - * - * @param string $seriesId String that identifies the series - * @param array $optParams Optional parameters. - * - * @opt_param string page_size Number of maximum results per page to be included - * in the response. - * @opt_param string page_token The value of the nextToken from the previous - * page. - * @return Google_Service_Books_Seriesmembership - */ - public function get($seriesId, $optParams = array()) - { - $params = array('series_id' => $seriesId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Books_Seriesmembership"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/Volumes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/Volumes.php deleted file mode 100644 index 10078b10..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/Volumes.php +++ /dev/null @@ -1,83 +0,0 @@ - - * $booksService = new Google_Service_Books(...); - * $volumes = $booksService->volumes; - * - */ -class Google_Service_Books_Resource_Volumes extends Google_Service_Resource -{ - /** - * Gets volume information for a single volume. (volumes.get) - * - * @param string $volumeId ID of volume to retrieve. - * @param array $optParams Optional parameters. - * - * @opt_param string country ISO-3166-1 code to override the IP-based location. - * @opt_param bool includeNonComicsSeries Set to true to include non-comics - * series. Defaults to false. - * @opt_param string partner Brand results for partner ID. - * @opt_param string projection Restrict information returned to a set of - * selected fields. - * @opt_param string source String to identify the originator of this request. - * @opt_param bool user_library_consistent_read - * @return Google_Service_Books_Volume - */ - public function get($volumeId, $optParams = array()) - { - $params = array('volumeId' => $volumeId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Books_Volume"); - } - /** - * Performs a book search. (volumes.listVolumes) - * - * @param string $q Full-text search query string. - * @param array $optParams Optional parameters. - * - * @opt_param string download Restrict to volumes by download availability. - * @opt_param string filter Filter search results. - * @opt_param string langRestrict Restrict results to books with this language - * code. - * @opt_param string libraryRestrict Restrict search to this user's library. - * @opt_param string maxAllowedMaturityRating The maximum allowed maturity - * rating of returned recommendations. Books with a higher maturity rating are - * filtered out. - * @opt_param string maxResults Maximum number of results to return. - * @opt_param string orderBy Sort search results. - * @opt_param string partner Restrict and brand results for partner ID. - * @opt_param string printType Restrict to books or magazines. - * @opt_param string projection Restrict information returned to a set of - * selected fields. - * @opt_param bool showPreorders Set to true to show books available for - * preorder. Defaults to false. - * @opt_param string source String to identify the originator of this request. - * @opt_param string startIndex Index of the first result to return (starts at - * 0) - * @return Google_Service_Books_Volumes - */ - public function listVolumes($q, $optParams = array()) - { - $params = array('q' => $q); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Books_Volumes"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/VolumesAssociated.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/VolumesAssociated.php deleted file mode 100644 index 26ebd73c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/VolumesAssociated.php +++ /dev/null @@ -1,49 +0,0 @@ - - * $booksService = new Google_Service_Books(...); - * $associated = $booksService->associated; - * - */ -class Google_Service_Books_Resource_VolumesAssociated extends Google_Service_Resource -{ - /** - * Return a list of associated books. (associated.listVolumesAssociated) - * - * @param string $volumeId ID of the source volume. - * @param array $optParams Optional parameters. - * - * @opt_param string association Association type. - * @opt_param string locale ISO-639-1 language and ISO-3166-1 country code. Ex: - * 'en_US'. Used for generating recommendations. - * @opt_param string maxAllowedMaturityRating The maximum allowed maturity - * rating of returned recommendations. Books with a higher maturity rating are - * filtered out. - * @opt_param string source String to identify the originator of this request. - * @return Google_Service_Books_Volumes - */ - public function listVolumesAssociated($volumeId, $optParams = array()) - { - $params = array('volumeId' => $volumeId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Books_Volumes"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/VolumesMybooks.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/VolumesMybooks.php deleted file mode 100644 index 176cb855..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/VolumesMybooks.php +++ /dev/null @@ -1,52 +0,0 @@ - - * $booksService = new Google_Service_Books(...); - * $mybooks = $booksService->mybooks; - * - */ -class Google_Service_Books_Resource_VolumesMybooks extends Google_Service_Resource -{ - /** - * Return a list of books in My Library. (mybooks.listVolumesMybooks) - * - * @param array $optParams Optional parameters. - * - * @opt_param string acquireMethod How the book was acquired - * @opt_param string country ISO-3166-1 code to override the IP-based location. - * @opt_param string locale ISO-639-1 language and ISO-3166-1 country code. - * Ex:'en_US'. Used for generating recommendations. - * @opt_param string maxResults Maximum number of results to return. - * @opt_param string processingState The processing state of the user uploaded - * volumes to be returned. Applicable only if the UPLOADED is specified in the - * acquireMethod. - * @opt_param string source String to identify the originator of this request. - * @opt_param string startIndex Index of the first result to return (starts at - * 0) - * @return Google_Service_Books_Volumes - */ - public function listVolumesMybooks($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Books_Volumes"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/VolumesRecommended.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/VolumesRecommended.php deleted file mode 100644 index f3016a5f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/VolumesRecommended.php +++ /dev/null @@ -1,66 +0,0 @@ - - * $booksService = new Google_Service_Books(...); - * $recommended = $booksService->recommended; - * - */ -class Google_Service_Books_Resource_VolumesRecommended extends Google_Service_Resource -{ - /** - * Return a list of recommended books for the current user. - * (recommended.listVolumesRecommended) - * - * @param array $optParams Optional parameters. - * - * @opt_param string locale ISO-639-1 language and ISO-3166-1 country code. Ex: - * 'en_US'. Used for generating recommendations. - * @opt_param string maxAllowedMaturityRating The maximum allowed maturity - * rating of returned recommendations. Books with a higher maturity rating are - * filtered out. - * @opt_param string source String to identify the originator of this request. - * @return Google_Service_Books_Volumes - */ - public function listVolumesRecommended($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Books_Volumes"); - } - /** - * Rate a recommended book for the current user. (recommended.rate) - * - * @param string $rating Rating to be given to the volume. - * @param string $volumeId ID of the source volume. - * @param array $optParams Optional parameters. - * - * @opt_param string locale ISO-639-1 language and ISO-3166-1 country code. Ex: - * 'en_US'. Used for generating recommendations. - * @opt_param string source String to identify the originator of this request. - * @return Google_Service_Books_BooksVolumesRecommendedRateResponse - */ - public function rate($rating, $volumeId, $optParams = array()) - { - $params = array('rating' => $rating, 'volumeId' => $volumeId); - $params = array_merge($params, $optParams); - return $this->call('rate', array($params), "Google_Service_Books_BooksVolumesRecommendedRateResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/VolumesUseruploaded.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/VolumesUseruploaded.php deleted file mode 100644 index 3466e33a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Resource/VolumesUseruploaded.php +++ /dev/null @@ -1,52 +0,0 @@ - - * $booksService = new Google_Service_Books(...); - * $useruploaded = $booksService->useruploaded; - * - */ -class Google_Service_Books_Resource_VolumesUseruploaded extends Google_Service_Resource -{ - /** - * Return a list of books uploaded by the current user. - * (useruploaded.listVolumesUseruploaded) - * - * @param array $optParams Optional parameters. - * - * @opt_param string locale ISO-639-1 language and ISO-3166-1 country code. Ex: - * 'en_US'. Used for generating recommendations. - * @opt_param string maxResults Maximum number of results to return. - * @opt_param string processingState The processing state of the user uploaded - * volumes to be returned. - * @opt_param string source String to identify the originator of this request. - * @opt_param string startIndex Index of the first result to return (starts at - * 0) - * @opt_param string volumeId The ids of the volumes to be returned. If not - * specified all that match the processingState are returned. - * @return Google_Service_Books_Volumes - */ - public function listVolumesUseruploaded($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Books_Volumes"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Review.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Review.php deleted file mode 100644 index 16406289..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Review.php +++ /dev/null @@ -1,125 +0,0 @@ -author = $author; - } - /** - * @return Google_Service_Books_ReviewAuthor - */ - public function getAuthor() - { - return $this->author; - } - public function setContent($content) - { - $this->content = $content; - } - public function getContent() - { - return $this->content; - } - public function setDate($date) - { - $this->date = $date; - } - public function getDate() - { - return $this->date; - } - public function setFullTextUrl($fullTextUrl) - { - $this->fullTextUrl = $fullTextUrl; - } - public function getFullTextUrl() - { - return $this->fullTextUrl; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setRating($rating) - { - $this->rating = $rating; - } - public function getRating() - { - return $this->rating; - } - /** - * @param Google_Service_Books_ReviewSource - */ - public function setSource(Google_Service_Books_ReviewSource $source) - { - $this->source = $source; - } - /** - * @return Google_Service_Books_ReviewSource - */ - public function getSource() - { - return $this->source; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setVolumeId($volumeId) - { - $this->volumeId = $volumeId; - } - public function getVolumeId() - { - return $this->volumeId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/ReviewAuthor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/ReviewAuthor.php deleted file mode 100644 index d3751d81..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/ReviewAuthor.php +++ /dev/null @@ -1,30 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/ReviewSource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/ReviewSource.php deleted file mode 100644 index 24fb63c1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/ReviewSource.php +++ /dev/null @@ -1,48 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setExtraDescription($extraDescription) - { - $this->extraDescription = $extraDescription; - } - public function getExtraDescription() - { - return $this->extraDescription; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Series.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Series.php deleted file mode 100644 index 1ad938fe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Series.php +++ /dev/null @@ -1,47 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Books_SeriesSeries - */ - public function setSeries($series) - { - $this->series = $series; - } - /** - * @return Google_Service_Books_SeriesSeries - */ - public function getSeries() - { - return $this->series; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/SeriesSeries.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/SeriesSeries.php deleted file mode 100644 index 4c07c241..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/SeriesSeries.php +++ /dev/null @@ -1,93 +0,0 @@ -bannerImageUrl = $bannerImageUrl; - } - public function getBannerImageUrl() - { - return $this->bannerImageUrl; - } - public function setEligibleForSubscription($eligibleForSubscription) - { - $this->eligibleForSubscription = $eligibleForSubscription; - } - public function getEligibleForSubscription() - { - return $this->eligibleForSubscription; - } - public function setImageUrl($imageUrl) - { - $this->imageUrl = $imageUrl; - } - public function getImageUrl() - { - return $this->imageUrl; - } - public function setIsComplete($isComplete) - { - $this->isComplete = $isComplete; - } - public function getIsComplete() - { - return $this->isComplete; - } - public function setSeriesId($seriesId) - { - $this->seriesId = $seriesId; - } - public function getSeriesId() - { - return $this->seriesId; - } - public function setSeriesType($seriesType) - { - $this->seriesType = $seriesType; - } - public function getSeriesType() - { - return $this->seriesType; - } - public function setSubscriptionId($subscriptionId) - { - $this->subscriptionId = $subscriptionId; - } - public function getSubscriptionId() - { - return $this->subscriptionId; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Seriesmembership.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Seriesmembership.php deleted file mode 100644 index 15a397b1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Seriesmembership.php +++ /dev/null @@ -1,56 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Books_Volume - */ - public function setMember($member) - { - $this->member = $member; - } - /** - * @return Google_Service_Books_Volume - */ - public function getMember() - { - return $this->member; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Usersettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Usersettings.php deleted file mode 100644 index 7698c880..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Usersettings.php +++ /dev/null @@ -1,62 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Books_UsersettingsNotesExport - */ - public function setNotesExport(Google_Service_Books_UsersettingsNotesExport $notesExport) - { - $this->notesExport = $notesExport; - } - /** - * @return Google_Service_Books_UsersettingsNotesExport - */ - public function getNotesExport() - { - return $this->notesExport; - } - /** - * @param Google_Service_Books_UsersettingsNotification - */ - public function setNotification(Google_Service_Books_UsersettingsNotification $notification) - { - $this->notification = $notification; - } - /** - * @return Google_Service_Books_UsersettingsNotification - */ - public function getNotification() - { - return $this->notification; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/UsersettingsNotesExport.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/UsersettingsNotesExport.php deleted file mode 100644 index bb71b1c3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/UsersettingsNotesExport.php +++ /dev/null @@ -1,39 +0,0 @@ -folderName = $folderName; - } - public function getFolderName() - { - return $this->folderName; - } - public function setIsEnabled($isEnabled) - { - $this->isEnabled = $isEnabled; - } - public function getIsEnabled() - { - return $this->isEnabled; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/UsersettingsNotification.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/UsersettingsNotification.php deleted file mode 100644 index 9c87f188..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/UsersettingsNotification.php +++ /dev/null @@ -1,101 +0,0 @@ -matchMyInterests = $matchMyInterests; - } - /** - * @return Google_Service_Books_UsersettingsNotificationMatchMyInterests - */ - public function getMatchMyInterests() - { - return $this->matchMyInterests; - } - /** - * @param Google_Service_Books_UsersettingsNotificationMoreFromAuthors - */ - public function setMoreFromAuthors(Google_Service_Books_UsersettingsNotificationMoreFromAuthors $moreFromAuthors) - { - $this->moreFromAuthors = $moreFromAuthors; - } - /** - * @return Google_Service_Books_UsersettingsNotificationMoreFromAuthors - */ - public function getMoreFromAuthors() - { - return $this->moreFromAuthors; - } - /** - * @param Google_Service_Books_UsersettingsNotificationMoreFromSeries - */ - public function setMoreFromSeries(Google_Service_Books_UsersettingsNotificationMoreFromSeries $moreFromSeries) - { - $this->moreFromSeries = $moreFromSeries; - } - /** - * @return Google_Service_Books_UsersettingsNotificationMoreFromSeries - */ - public function getMoreFromSeries() - { - return $this->moreFromSeries; - } - /** - * @param Google_Service_Books_UsersettingsNotificationPriceDrop - */ - public function setPriceDrop(Google_Service_Books_UsersettingsNotificationPriceDrop $priceDrop) - { - $this->priceDrop = $priceDrop; - } - /** - * @return Google_Service_Books_UsersettingsNotificationPriceDrop - */ - public function getPriceDrop() - { - return $this->priceDrop; - } - /** - * @param Google_Service_Books_UsersettingsNotificationRewardExpirations - */ - public function setRewardExpirations(Google_Service_Books_UsersettingsNotificationRewardExpirations $rewardExpirations) - { - $this->rewardExpirations = $rewardExpirations; - } - /** - * @return Google_Service_Books_UsersettingsNotificationRewardExpirations - */ - public function getRewardExpirations() - { - return $this->rewardExpirations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/UsersettingsNotificationMatchMyInterests.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/UsersettingsNotificationMatchMyInterests.php deleted file mode 100644 index bd86bb3e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/UsersettingsNotificationMatchMyInterests.php +++ /dev/null @@ -1,33 +0,0 @@ - "opted_state", - ); - public $optedState; - - public function setOptedState($optedState) - { - $this->optedState = $optedState; - } - public function getOptedState() - { - return $this->optedState; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/UsersettingsNotificationMoreFromAuthors.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/UsersettingsNotificationMoreFromAuthors.php deleted file mode 100644 index 3f58caa6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/UsersettingsNotificationMoreFromAuthors.php +++ /dev/null @@ -1,33 +0,0 @@ - "opted_state", - ); - public $optedState; - - public function setOptedState($optedState) - { - $this->optedState = $optedState; - } - public function getOptedState() - { - return $this->optedState; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/UsersettingsNotificationMoreFromSeries.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/UsersettingsNotificationMoreFromSeries.php deleted file mode 100644 index 5fbc3dc5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/UsersettingsNotificationMoreFromSeries.php +++ /dev/null @@ -1,33 +0,0 @@ - "opted_state", - ); - public $optedState; - - public function setOptedState($optedState) - { - $this->optedState = $optedState; - } - public function getOptedState() - { - return $this->optedState; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/UsersettingsNotificationPriceDrop.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/UsersettingsNotificationPriceDrop.php deleted file mode 100644 index ddb21714..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/UsersettingsNotificationPriceDrop.php +++ /dev/null @@ -1,33 +0,0 @@ - "opted_state", - ); - public $optedState; - - public function setOptedState($optedState) - { - $this->optedState = $optedState; - } - public function getOptedState() - { - return $this->optedState; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/UsersettingsNotificationRewardExpirations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/UsersettingsNotificationRewardExpirations.php deleted file mode 100644 index 6db779b7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/UsersettingsNotificationRewardExpirations.php +++ /dev/null @@ -1,33 +0,0 @@ - "opted_state", - ); - public $optedState; - - public function setOptedState($optedState) - { - $this->optedState = $optedState; - } - public function getOptedState() - { - return $this->optedState; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Volume.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Volume.php deleted file mode 100644 index cd30909b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Volume.php +++ /dev/null @@ -1,169 +0,0 @@ -accessInfo = $accessInfo; - } - /** - * @return Google_Service_Books_VolumeAccessInfo - */ - public function getAccessInfo() - { - return $this->accessInfo; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - 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; - } - /** - * @param Google_Service_Books_VolumeLayerInfo - */ - public function setLayerInfo(Google_Service_Books_VolumeLayerInfo $layerInfo) - { - $this->layerInfo = $layerInfo; - } - /** - * @return Google_Service_Books_VolumeLayerInfo - */ - public function getLayerInfo() - { - return $this->layerInfo; - } - /** - * @param Google_Service_Books_VolumeRecommendedInfo - */ - public function setRecommendedInfo(Google_Service_Books_VolumeRecommendedInfo $recommendedInfo) - { - $this->recommendedInfo = $recommendedInfo; - } - /** - * @return Google_Service_Books_VolumeRecommendedInfo - */ - public function getRecommendedInfo() - { - return $this->recommendedInfo; - } - /** - * @param Google_Service_Books_VolumeSaleInfo - */ - public function setSaleInfo(Google_Service_Books_VolumeSaleInfo $saleInfo) - { - $this->saleInfo = $saleInfo; - } - /** - * @return Google_Service_Books_VolumeSaleInfo - */ - public function getSaleInfo() - { - return $this->saleInfo; - } - /** - * @param Google_Service_Books_VolumeSearchInfo - */ - public function setSearchInfo(Google_Service_Books_VolumeSearchInfo $searchInfo) - { - $this->searchInfo = $searchInfo; - } - /** - * @return Google_Service_Books_VolumeSearchInfo - */ - public function getSearchInfo() - { - return $this->searchInfo; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Books_VolumeUserInfo - */ - public function setUserInfo(Google_Service_Books_VolumeUserInfo $userInfo) - { - $this->userInfo = $userInfo; - } - /** - * @return Google_Service_Books_VolumeUserInfo - */ - public function getUserInfo() - { - return $this->userInfo; - } - /** - * @param Google_Service_Books_VolumeVolumeInfo - */ - public function setVolumeInfo(Google_Service_Books_VolumeVolumeInfo $volumeInfo) - { - $this->volumeInfo = $volumeInfo; - } - /** - * @return Google_Service_Books_VolumeVolumeInfo - */ - public function getVolumeInfo() - { - return $this->volumeInfo; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Volume2.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Volume2.php deleted file mode 100644 index d225e50e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Volume2.php +++ /dev/null @@ -1,56 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Books_Volume - */ - public function getItems() - { - return $this->items; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeAccessInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeAccessInfo.php deleted file mode 100644 index 2d1191d7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeAccessInfo.php +++ /dev/null @@ -1,168 +0,0 @@ -accessViewStatus = $accessViewStatus; - } - public function getAccessViewStatus() - { - return $this->accessViewStatus; - } - public function setCountry($country) - { - $this->country = $country; - } - public function getCountry() - { - return $this->country; - } - /** - * @param Google_Service_Books_DownloadAccessRestriction - */ - public function setDownloadAccess(Google_Service_Books_DownloadAccessRestriction $downloadAccess) - { - $this->downloadAccess = $downloadAccess; - } - /** - * @return Google_Service_Books_DownloadAccessRestriction - */ - public function getDownloadAccess() - { - return $this->downloadAccess; - } - public function setDriveImportedContentLink($driveImportedContentLink) - { - $this->driveImportedContentLink = $driveImportedContentLink; - } - public function getDriveImportedContentLink() - { - return $this->driveImportedContentLink; - } - public function setEmbeddable($embeddable) - { - $this->embeddable = $embeddable; - } - public function getEmbeddable() - { - return $this->embeddable; - } - /** - * @param Google_Service_Books_VolumeAccessInfoEpub - */ - public function setEpub(Google_Service_Books_VolumeAccessInfoEpub $epub) - { - $this->epub = $epub; - } - /** - * @return Google_Service_Books_VolumeAccessInfoEpub - */ - public function getEpub() - { - return $this->epub; - } - public function setExplicitOfflineLicenseManagement($explicitOfflineLicenseManagement) - { - $this->explicitOfflineLicenseManagement = $explicitOfflineLicenseManagement; - } - public function getExplicitOfflineLicenseManagement() - { - return $this->explicitOfflineLicenseManagement; - } - /** - * @param Google_Service_Books_VolumeAccessInfoPdf - */ - public function setPdf(Google_Service_Books_VolumeAccessInfoPdf $pdf) - { - $this->pdf = $pdf; - } - /** - * @return Google_Service_Books_VolumeAccessInfoPdf - */ - public function getPdf() - { - return $this->pdf; - } - public function setPublicDomain($publicDomain) - { - $this->publicDomain = $publicDomain; - } - public function getPublicDomain() - { - return $this->publicDomain; - } - public function setQuoteSharingAllowed($quoteSharingAllowed) - { - $this->quoteSharingAllowed = $quoteSharingAllowed; - } - public function getQuoteSharingAllowed() - { - return $this->quoteSharingAllowed; - } - public function setTextToSpeechPermission($textToSpeechPermission) - { - $this->textToSpeechPermission = $textToSpeechPermission; - } - public function getTextToSpeechPermission() - { - return $this->textToSpeechPermission; - } - public function setViewOrderUrl($viewOrderUrl) - { - $this->viewOrderUrl = $viewOrderUrl; - } - public function getViewOrderUrl() - { - return $this->viewOrderUrl; - } - public function setViewability($viewability) - { - $this->viewability = $viewability; - } - public function getViewability() - { - return $this->viewability; - } - public function setWebReaderLink($webReaderLink) - { - $this->webReaderLink = $webReaderLink; - } - public function getWebReaderLink() - { - return $this->webReaderLink; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeAccessInfoEpub.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeAccessInfoEpub.php deleted file mode 100644 index 91834c06..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeAccessInfoEpub.php +++ /dev/null @@ -1,48 +0,0 @@ -acsTokenLink = $acsTokenLink; - } - public function getAcsTokenLink() - { - return $this->acsTokenLink; - } - public function setDownloadLink($downloadLink) - { - $this->downloadLink = $downloadLink; - } - public function getDownloadLink() - { - return $this->downloadLink; - } - public function setIsAvailable($isAvailable) - { - $this->isAvailable = $isAvailable; - } - public function getIsAvailable() - { - return $this->isAvailable; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeAccessInfoPdf.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeAccessInfoPdf.php deleted file mode 100644 index 36fe704c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeAccessInfoPdf.php +++ /dev/null @@ -1,48 +0,0 @@ -acsTokenLink = $acsTokenLink; - } - public function getAcsTokenLink() - { - return $this->acsTokenLink; - } - public function setDownloadLink($downloadLink) - { - $this->downloadLink = $downloadLink; - } - public function getDownloadLink() - { - return $this->downloadLink; - } - public function setIsAvailable($isAvailable) - { - $this->isAvailable = $isAvailable; - } - public function getIsAvailable() - { - return $this->isAvailable; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeLayerInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeLayerInfo.php deleted file mode 100644 index 89b82211..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeLayerInfo.php +++ /dev/null @@ -1,38 +0,0 @@ -layers = $layers; - } - /** - * @return Google_Service_Books_VolumeLayerInfoLayers - */ - public function getLayers() - { - return $this->layers; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeLayerInfoLayers.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeLayerInfoLayers.php deleted file mode 100644 index 59a36e8d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeLayerInfoLayers.php +++ /dev/null @@ -1,39 +0,0 @@ -layerId = $layerId; - } - public function getLayerId() - { - return $this->layerId; - } - public function setVolumeAnnotationsVersion($volumeAnnotationsVersion) - { - $this->volumeAnnotationsVersion = $volumeAnnotationsVersion; - } - public function getVolumeAnnotationsVersion() - { - return $this->volumeAnnotationsVersion; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeRecommendedInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeRecommendedInfo.php deleted file mode 100644 index 6e58326a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeRecommendedInfo.php +++ /dev/null @@ -1,30 +0,0 @@ -explanation = $explanation; - } - public function getExplanation() - { - return $this->explanation; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeSaleInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeSaleInfo.php deleted file mode 100644 index 72d3e995..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeSaleInfo.php +++ /dev/null @@ -1,115 +0,0 @@ -buyLink = $buyLink; - } - public function getBuyLink() - { - return $this->buyLink; - } - public function setCountry($country) - { - $this->country = $country; - } - public function getCountry() - { - return $this->country; - } - public function setIsEbook($isEbook) - { - $this->isEbook = $isEbook; - } - public function getIsEbook() - { - return $this->isEbook; - } - /** - * @param Google_Service_Books_VolumeSaleInfoListPrice - */ - public function setListPrice(Google_Service_Books_VolumeSaleInfoListPrice $listPrice) - { - $this->listPrice = $listPrice; - } - /** - * @return Google_Service_Books_VolumeSaleInfoListPrice - */ - public function getListPrice() - { - return $this->listPrice; - } - /** - * @param Google_Service_Books_VolumeSaleInfoOffers - */ - public function setOffers($offers) - { - $this->offers = $offers; - } - /** - * @return Google_Service_Books_VolumeSaleInfoOffers - */ - public function getOffers() - { - return $this->offers; - } - public function setOnSaleDate($onSaleDate) - { - $this->onSaleDate = $onSaleDate; - } - public function getOnSaleDate() - { - return $this->onSaleDate; - } - /** - * @param Google_Service_Books_VolumeSaleInfoRetailPrice - */ - public function setRetailPrice(Google_Service_Books_VolumeSaleInfoRetailPrice $retailPrice) - { - $this->retailPrice = $retailPrice; - } - /** - * @return Google_Service_Books_VolumeSaleInfoRetailPrice - */ - public function getRetailPrice() - { - return $this->retailPrice; - } - public function setSaleability($saleability) - { - $this->saleability = $saleability; - } - public function getSaleability() - { - return $this->saleability; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeSaleInfoListPrice.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeSaleInfoListPrice.php deleted file mode 100644 index e001624d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeSaleInfoListPrice.php +++ /dev/null @@ -1,39 +0,0 @@ -amount = $amount; - } - public function getAmount() - { - return $this->amount; - } - public function setCurrencyCode($currencyCode) - { - $this->currencyCode = $currencyCode; - } - public function getCurrencyCode() - { - return $this->currencyCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeSaleInfoOffers.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeSaleInfoOffers.php deleted file mode 100644 index 77098bb4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeSaleInfoOffers.php +++ /dev/null @@ -1,87 +0,0 @@ -finskyOfferType = $finskyOfferType; - } - public function getFinskyOfferType() - { - return $this->finskyOfferType; - } - public function setGiftable($giftable) - { - $this->giftable = $giftable; - } - public function getGiftable() - { - return $this->giftable; - } - /** - * @param Google_Service_Books_VolumeSaleInfoOffersListPrice - */ - public function setListPrice(Google_Service_Books_VolumeSaleInfoOffersListPrice $listPrice) - { - $this->listPrice = $listPrice; - } - /** - * @return Google_Service_Books_VolumeSaleInfoOffersListPrice - */ - public function getListPrice() - { - return $this->listPrice; - } - /** - * @param Google_Service_Books_VolumeSaleInfoOffersRentalDuration - */ - public function setRentalDuration(Google_Service_Books_VolumeSaleInfoOffersRentalDuration $rentalDuration) - { - $this->rentalDuration = $rentalDuration; - } - /** - * @return Google_Service_Books_VolumeSaleInfoOffersRentalDuration - */ - public function getRentalDuration() - { - return $this->rentalDuration; - } - /** - * @param Google_Service_Books_VolumeSaleInfoOffersRetailPrice - */ - public function setRetailPrice(Google_Service_Books_VolumeSaleInfoOffersRetailPrice $retailPrice) - { - $this->retailPrice = $retailPrice; - } - /** - * @return Google_Service_Books_VolumeSaleInfoOffersRetailPrice - */ - public function getRetailPrice() - { - return $this->retailPrice; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeSaleInfoOffersListPrice.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeSaleInfoOffersListPrice.php deleted file mode 100644 index b456a05f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeSaleInfoOffersListPrice.php +++ /dev/null @@ -1,39 +0,0 @@ -amountInMicros = $amountInMicros; - } - public function getAmountInMicros() - { - return $this->amountInMicros; - } - public function setCurrencyCode($currencyCode) - { - $this->currencyCode = $currencyCode; - } - public function getCurrencyCode() - { - return $this->currencyCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeSaleInfoOffersRentalDuration.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeSaleInfoOffersRentalDuration.php deleted file mode 100644 index 331827fe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeSaleInfoOffersRentalDuration.php +++ /dev/null @@ -1,39 +0,0 @@ -count = $count; - } - public function getCount() - { - return $this->count; - } - public function setUnit($unit) - { - $this->unit = $unit; - } - public function getUnit() - { - return $this->unit; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeSaleInfoOffersRetailPrice.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeSaleInfoOffersRetailPrice.php deleted file mode 100644 index 7d2284d9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeSaleInfoOffersRetailPrice.php +++ /dev/null @@ -1,39 +0,0 @@ -amountInMicros = $amountInMicros; - } - public function getAmountInMicros() - { - return $this->amountInMicros; - } - public function setCurrencyCode($currencyCode) - { - $this->currencyCode = $currencyCode; - } - public function getCurrencyCode() - { - return $this->currencyCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeSaleInfoRetailPrice.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeSaleInfoRetailPrice.php deleted file mode 100644 index b6a34aca..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeSaleInfoRetailPrice.php +++ /dev/null @@ -1,39 +0,0 @@ -amount = $amount; - } - public function getAmount() - { - return $this->amount; - } - public function setCurrencyCode($currencyCode) - { - $this->currencyCode = $currencyCode; - } - public function getCurrencyCode() - { - return $this->currencyCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeSearchInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeSearchInfo.php deleted file mode 100644 index 69785112..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeSearchInfo.php +++ /dev/null @@ -1,30 +0,0 @@ -textSnippet = $textSnippet; - } - public function getTextSnippet() - { - return $this->textSnippet; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeUserInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeUserInfo.php deleted file mode 100644 index b81513a1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeUserInfo.php +++ /dev/null @@ -1,234 +0,0 @@ -acquiredTime = $acquiredTime; - } - public function getAcquiredTime() - { - return $this->acquiredTime; - } - public function setAcquisitionType($acquisitionType) - { - $this->acquisitionType = $acquisitionType; - } - public function getAcquisitionType() - { - return $this->acquisitionType; - } - /** - * @param Google_Service_Books_VolumeUserInfoCopy - */ - public function setCopy(Google_Service_Books_VolumeUserInfoCopy $copy) - { - $this->copy = $copy; - } - /** - * @return Google_Service_Books_VolumeUserInfoCopy - */ - public function getCopy() - { - return $this->copy; - } - public function setEntitlementType($entitlementType) - { - $this->entitlementType = $entitlementType; - } - public function getEntitlementType() - { - return $this->entitlementType; - } - /** - * @param Google_Service_Books_VolumeUserInfoFamilySharing - */ - public function setFamilySharing(Google_Service_Books_VolumeUserInfoFamilySharing $familySharing) - { - $this->familySharing = $familySharing; - } - /** - * @return Google_Service_Books_VolumeUserInfoFamilySharing - */ - public function getFamilySharing() - { - return $this->familySharing; - } - public function setIsFamilySharedFromUser($isFamilySharedFromUser) - { - $this->isFamilySharedFromUser = $isFamilySharedFromUser; - } - public function getIsFamilySharedFromUser() - { - return $this->isFamilySharedFromUser; - } - public function setIsFamilySharedToUser($isFamilySharedToUser) - { - $this->isFamilySharedToUser = $isFamilySharedToUser; - } - public function getIsFamilySharedToUser() - { - return $this->isFamilySharedToUser; - } - public function setIsFamilySharingAllowed($isFamilySharingAllowed) - { - $this->isFamilySharingAllowed = $isFamilySharingAllowed; - } - public function getIsFamilySharingAllowed() - { - return $this->isFamilySharingAllowed; - } - public function setIsFamilySharingDisabledByFop($isFamilySharingDisabledByFop) - { - $this->isFamilySharingDisabledByFop = $isFamilySharingDisabledByFop; - } - public function getIsFamilySharingDisabledByFop() - { - return $this->isFamilySharingDisabledByFop; - } - public function setIsInMyBooks($isInMyBooks) - { - $this->isInMyBooks = $isInMyBooks; - } - public function getIsInMyBooks() - { - return $this->isInMyBooks; - } - public function setIsPreordered($isPreordered) - { - $this->isPreordered = $isPreordered; - } - public function getIsPreordered() - { - return $this->isPreordered; - } - public function setIsPurchased($isPurchased) - { - $this->isPurchased = $isPurchased; - } - public function getIsPurchased() - { - return $this->isPurchased; - } - public function setIsUploaded($isUploaded) - { - $this->isUploaded = $isUploaded; - } - public function getIsUploaded() - { - return $this->isUploaded; - } - /** - * @param Google_Service_Books_ReadingPosition - */ - public function setReadingPosition(Google_Service_Books_ReadingPosition $readingPosition) - { - $this->readingPosition = $readingPosition; - } - /** - * @return Google_Service_Books_ReadingPosition - */ - public function getReadingPosition() - { - return $this->readingPosition; - } - /** - * @param Google_Service_Books_VolumeUserInfoRentalPeriod - */ - public function setRentalPeriod(Google_Service_Books_VolumeUserInfoRentalPeriod $rentalPeriod) - { - $this->rentalPeriod = $rentalPeriod; - } - /** - * @return Google_Service_Books_VolumeUserInfoRentalPeriod - */ - public function getRentalPeriod() - { - return $this->rentalPeriod; - } - public function setRentalState($rentalState) - { - $this->rentalState = $rentalState; - } - public function getRentalState() - { - return $this->rentalState; - } - /** - * @param Google_Service_Books_Review - */ - public function setReview(Google_Service_Books_Review $review) - { - $this->review = $review; - } - /** - * @return Google_Service_Books_Review - */ - public function getReview() - { - return $this->review; - } - public function setUpdated($updated) - { - $this->updated = $updated; - } - public function getUpdated() - { - return $this->updated; - } - /** - * @param Google_Service_Books_VolumeUserInfoUserUploadedVolumeInfo - */ - public function setUserUploadedVolumeInfo(Google_Service_Books_VolumeUserInfoUserUploadedVolumeInfo $userUploadedVolumeInfo) - { - $this->userUploadedVolumeInfo = $userUploadedVolumeInfo; - } - /** - * @return Google_Service_Books_VolumeUserInfoUserUploadedVolumeInfo - */ - public function getUserUploadedVolumeInfo() - { - return $this->userUploadedVolumeInfo; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeUserInfoCopy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeUserInfoCopy.php deleted file mode 100644 index 30424add..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeUserInfoCopy.php +++ /dev/null @@ -1,57 +0,0 @@ -allowedCharacterCount = $allowedCharacterCount; - } - public function getAllowedCharacterCount() - { - return $this->allowedCharacterCount; - } - public function setLimitType($limitType) - { - $this->limitType = $limitType; - } - public function getLimitType() - { - return $this->limitType; - } - public function setRemainingCharacterCount($remainingCharacterCount) - { - $this->remainingCharacterCount = $remainingCharacterCount; - } - public function getRemainingCharacterCount() - { - return $this->remainingCharacterCount; - } - public function setUpdated($updated) - { - $this->updated = $updated; - } - public function getUpdated() - { - return $this->updated; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeUserInfoFamilySharing.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeUserInfoFamilySharing.php deleted file mode 100644 index 9e8a83e5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeUserInfoFamilySharing.php +++ /dev/null @@ -1,48 +0,0 @@ -familyRole = $familyRole; - } - public function getFamilyRole() - { - return $this->familyRole; - } - public function setIsSharingAllowed($isSharingAllowed) - { - $this->isSharingAllowed = $isSharingAllowed; - } - public function getIsSharingAllowed() - { - return $this->isSharingAllowed; - } - public function setIsSharingDisabledByFop($isSharingDisabledByFop) - { - $this->isSharingDisabledByFop = $isSharingDisabledByFop; - } - public function getIsSharingDisabledByFop() - { - return $this->isSharingDisabledByFop; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeUserInfoRentalPeriod.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeUserInfoRentalPeriod.php deleted file mode 100644 index 043beb73..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeUserInfoRentalPeriod.php +++ /dev/null @@ -1,39 +0,0 @@ -endUtcSec = $endUtcSec; - } - public function getEndUtcSec() - { - return $this->endUtcSec; - } - public function setStartUtcSec($startUtcSec) - { - $this->startUtcSec = $startUtcSec; - } - public function getStartUtcSec() - { - return $this->startUtcSec; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeUserInfoUserUploadedVolumeInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeUserInfoUserUploadedVolumeInfo.php deleted file mode 100644 index 7e692842..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeUserInfoUserUploadedVolumeInfo.php +++ /dev/null @@ -1,30 +0,0 @@ -processingState = $processingState; - } - public function getProcessingState() - { - return $this->processingState; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeVolumeInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeVolumeInfo.php deleted file mode 100644 index c889e678..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeVolumeInfo.php +++ /dev/null @@ -1,309 +0,0 @@ -allowAnonLogging = $allowAnonLogging; - } - public function getAllowAnonLogging() - { - return $this->allowAnonLogging; - } - public function setAuthors($authors) - { - $this->authors = $authors; - } - public function getAuthors() - { - return $this->authors; - } - public function setAverageRating($averageRating) - { - $this->averageRating = $averageRating; - } - public function getAverageRating() - { - return $this->averageRating; - } - public function setCanonicalVolumeLink($canonicalVolumeLink) - { - $this->canonicalVolumeLink = $canonicalVolumeLink; - } - public function getCanonicalVolumeLink() - { - return $this->canonicalVolumeLink; - } - public function setCategories($categories) - { - $this->categories = $categories; - } - public function getCategories() - { - return $this->categories; - } - public function setComicsContent($comicsContent) - { - $this->comicsContent = $comicsContent; - } - public function getComicsContent() - { - return $this->comicsContent; - } - public function setContentVersion($contentVersion) - { - $this->contentVersion = $contentVersion; - } - public function getContentVersion() - { - return $this->contentVersion; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - /** - * @param Google_Service_Books_VolumeVolumeInfoDimensions - */ - public function setDimensions(Google_Service_Books_VolumeVolumeInfoDimensions $dimensions) - { - $this->dimensions = $dimensions; - } - /** - * @return Google_Service_Books_VolumeVolumeInfoDimensions - */ - public function getDimensions() - { - return $this->dimensions; - } - /** - * @param Google_Service_Books_VolumeVolumeInfoImageLinks - */ - public function setImageLinks(Google_Service_Books_VolumeVolumeInfoImageLinks $imageLinks) - { - $this->imageLinks = $imageLinks; - } - /** - * @return Google_Service_Books_VolumeVolumeInfoImageLinks - */ - public function getImageLinks() - { - return $this->imageLinks; - } - /** - * @param Google_Service_Books_VolumeVolumeInfoIndustryIdentifiers - */ - public function setIndustryIdentifiers($industryIdentifiers) - { - $this->industryIdentifiers = $industryIdentifiers; - } - /** - * @return Google_Service_Books_VolumeVolumeInfoIndustryIdentifiers - */ - public function getIndustryIdentifiers() - { - return $this->industryIdentifiers; - } - public function setInfoLink($infoLink) - { - $this->infoLink = $infoLink; - } - public function getInfoLink() - { - return $this->infoLink; - } - public function setLanguage($language) - { - $this->language = $language; - } - public function getLanguage() - { - return $this->language; - } - public function setMainCategory($mainCategory) - { - $this->mainCategory = $mainCategory; - } - public function getMainCategory() - { - return $this->mainCategory; - } - public function setMaturityRating($maturityRating) - { - $this->maturityRating = $maturityRating; - } - public function getMaturityRating() - { - return $this->maturityRating; - } - public function setPageCount($pageCount) - { - $this->pageCount = $pageCount; - } - public function getPageCount() - { - return $this->pageCount; - } - /** - * @param Google_Service_Books_VolumeVolumeInfoPanelizationSummary - */ - public function setPanelizationSummary(Google_Service_Books_VolumeVolumeInfoPanelizationSummary $panelizationSummary) - { - $this->panelizationSummary = $panelizationSummary; - } - /** - * @return Google_Service_Books_VolumeVolumeInfoPanelizationSummary - */ - public function getPanelizationSummary() - { - return $this->panelizationSummary; - } - public function setPreviewLink($previewLink) - { - $this->previewLink = $previewLink; - } - public function getPreviewLink() - { - return $this->previewLink; - } - public function setPrintType($printType) - { - $this->printType = $printType; - } - public function getPrintType() - { - return $this->printType; - } - public function setPrintedPageCount($printedPageCount) - { - $this->printedPageCount = $printedPageCount; - } - public function getPrintedPageCount() - { - return $this->printedPageCount; - } - public function setPublishedDate($publishedDate) - { - $this->publishedDate = $publishedDate; - } - public function getPublishedDate() - { - return $this->publishedDate; - } - public function setPublisher($publisher) - { - $this->publisher = $publisher; - } - public function getPublisher() - { - return $this->publisher; - } - public function setRatingsCount($ratingsCount) - { - $this->ratingsCount = $ratingsCount; - } - public function getRatingsCount() - { - return $this->ratingsCount; - } - public function setReadingModes($readingModes) - { - $this->readingModes = $readingModes; - } - public function getReadingModes() - { - return $this->readingModes; - } - public function setSamplePageCount($samplePageCount) - { - $this->samplePageCount = $samplePageCount; - } - public function getSamplePageCount() - { - return $this->samplePageCount; - } - /** - * @param Google_Service_Books_Volumeseriesinfo - */ - public function setSeriesInfo(Google_Service_Books_Volumeseriesinfo $seriesInfo) - { - $this->seriesInfo = $seriesInfo; - } - /** - * @return Google_Service_Books_Volumeseriesinfo - */ - public function getSeriesInfo() - { - return $this->seriesInfo; - } - public function setSubtitle($subtitle) - { - $this->subtitle = $subtitle; - } - public function getSubtitle() - { - return $this->subtitle; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeVolumeInfoDimensions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeVolumeInfoDimensions.php deleted file mode 100644 index 158fa6c9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeVolumeInfoDimensions.php +++ /dev/null @@ -1,48 +0,0 @@ -height = $height; - } - public function getHeight() - { - return $this->height; - } - public function setThickness($thickness) - { - $this->thickness = $thickness; - } - public function getThickness() - { - return $this->thickness; - } - public function setWidth($width) - { - $this->width = $width; - } - public function getWidth() - { - return $this->width; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeVolumeInfoImageLinks.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeVolumeInfoImageLinks.php deleted file mode 100644 index cd91fad0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeVolumeInfoImageLinks.php +++ /dev/null @@ -1,75 +0,0 @@ -extraLarge = $extraLarge; - } - public function getExtraLarge() - { - return $this->extraLarge; - } - public function setLarge($large) - { - $this->large = $large; - } - public function getLarge() - { - return $this->large; - } - public function setMedium($medium) - { - $this->medium = $medium; - } - public function getMedium() - { - return $this->medium; - } - public function setSmall($small) - { - $this->small = $small; - } - public function getSmall() - { - return $this->small; - } - public function setSmallThumbnail($smallThumbnail) - { - $this->smallThumbnail = $smallThumbnail; - } - public function getSmallThumbnail() - { - return $this->smallThumbnail; - } - public function setThumbnail($thumbnail) - { - $this->thumbnail = $thumbnail; - } - public function getThumbnail() - { - return $this->thumbnail; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeVolumeInfoIndustryIdentifiers.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeVolumeInfoIndustryIdentifiers.php deleted file mode 100644 index e24ba8a9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeVolumeInfoIndustryIdentifiers.php +++ /dev/null @@ -1,39 +0,0 @@ -identifier = $identifier; - } - public function getIdentifier() - { - return $this->identifier; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeVolumeInfoPanelizationSummary.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeVolumeInfoPanelizationSummary.php deleted file mode 100644 index 5a491fa5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeVolumeInfoPanelizationSummary.php +++ /dev/null @@ -1,57 +0,0 @@ -containsEpubBubbles = $containsEpubBubbles; - } - public function getContainsEpubBubbles() - { - return $this->containsEpubBubbles; - } - public function setContainsImageBubbles($containsImageBubbles) - { - $this->containsImageBubbles = $containsImageBubbles; - } - public function getContainsImageBubbles() - { - return $this->containsImageBubbles; - } - public function setEpubBubbleVersion($epubBubbleVersion) - { - $this->epubBubbleVersion = $epubBubbleVersion; - } - public function getEpubBubbleVersion() - { - return $this->epubBubbleVersion; - } - public function setImageBubbleVersion($imageBubbleVersion) - { - $this->imageBubbleVersion = $imageBubbleVersion; - } - public function getImageBubbleVersion() - { - return $this->imageBubbleVersion; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Volumeannotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Volumeannotation.php deleted file mode 100644 index 37bf9e02..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Volumeannotation.php +++ /dev/null @@ -1,155 +0,0 @@ -annotationDataId = $annotationDataId; - } - public function getAnnotationDataId() - { - return $this->annotationDataId; - } - public function setAnnotationDataLink($annotationDataLink) - { - $this->annotationDataLink = $annotationDataLink; - } - public function getAnnotationDataLink() - { - return $this->annotationDataLink; - } - public function setAnnotationType($annotationType) - { - $this->annotationType = $annotationType; - } - public function getAnnotationType() - { - return $this->annotationType; - } - /** - * @param Google_Service_Books_VolumeannotationContentRanges - */ - public function setContentRanges(Google_Service_Books_VolumeannotationContentRanges $contentRanges) - { - $this->contentRanges = $contentRanges; - } - /** - * @return Google_Service_Books_VolumeannotationContentRanges - */ - public function getContentRanges() - { - return $this->contentRanges; - } - public function setData($data) - { - $this->data = $data; - } - public function getData() - { - return $this->data; - } - public function setDeleted($deleted) - { - $this->deleted = $deleted; - } - public function getDeleted() - { - return $this->deleted; - } - 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 setLayerId($layerId) - { - $this->layerId = $layerId; - } - public function getLayerId() - { - return $this->layerId; - } - public function setPageIds($pageIds) - { - $this->pageIds = $pageIds; - } - public function getPageIds() - { - return $this->pageIds; - } - public function setSelectedText($selectedText) - { - $this->selectedText = $selectedText; - } - public function getSelectedText() - { - return $this->selectedText; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setUpdated($updated) - { - $this->updated = $updated; - } - public function getUpdated() - { - return $this->updated; - } - public function setVolumeId($volumeId) - { - $this->volumeId = $volumeId; - } - public function getVolumeId() - { - return $this->volumeId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeannotationContentRanges.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeannotationContentRanges.php deleted file mode 100644 index cdce7666..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeannotationContentRanges.php +++ /dev/null @@ -1,78 +0,0 @@ -cfiRange = $cfiRange; - } - /** - * @return Google_Service_Books_BooksAnnotationsRange - */ - public function getCfiRange() - { - return $this->cfiRange; - } - public function setContentVersion($contentVersion) - { - $this->contentVersion = $contentVersion; - } - public function getContentVersion() - { - return $this->contentVersion; - } - /** - * @param Google_Service_Books_BooksAnnotationsRange - */ - public function setGbImageRange(Google_Service_Books_BooksAnnotationsRange $gbImageRange) - { - $this->gbImageRange = $gbImageRange; - } - /** - * @return Google_Service_Books_BooksAnnotationsRange - */ - public function getGbImageRange() - { - return $this->gbImageRange; - } - /** - * @param Google_Service_Books_BooksAnnotationsRange - */ - public function setGbTextRange(Google_Service_Books_BooksAnnotationsRange $gbTextRange) - { - $this->gbTextRange = $gbTextRange; - } - /** - * @return Google_Service_Books_BooksAnnotationsRange - */ - public function getGbTextRange() - { - return $this->gbTextRange; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Volumeannotations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Volumeannotations.php deleted file mode 100644 index 027d6d4e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Volumeannotations.php +++ /dev/null @@ -1,74 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Books_Volumeannotation - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setTotalItems($totalItems) - { - $this->totalItems = $totalItems; - } - public function getTotalItems() - { - return $this->totalItems; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Volumes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Volumes.php deleted file mode 100644 index 4c1ccc72..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Volumes.php +++ /dev/null @@ -1,56 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Books_Volume - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setTotalItems($totalItems) - { - $this->totalItems = $totalItems; - } - public function getTotalItems() - { - return $this->totalItems; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Volumeseriesinfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Volumeseriesinfo.php deleted file mode 100644 index 9020b58a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/Volumeseriesinfo.php +++ /dev/null @@ -1,65 +0,0 @@ -bookDisplayNumber = $bookDisplayNumber; - } - public function getBookDisplayNumber() - { - return $this->bookDisplayNumber; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setShortSeriesBookTitle($shortSeriesBookTitle) - { - $this->shortSeriesBookTitle = $shortSeriesBookTitle; - } - public function getShortSeriesBookTitle() - { - return $this->shortSeriesBookTitle; - } - /** - * @param Google_Service_Books_VolumeseriesinfoVolumeSeries - */ - public function setVolumeSeries($volumeSeries) - { - $this->volumeSeries = $volumeSeries; - } - /** - * @return Google_Service_Books_VolumeseriesinfoVolumeSeries - */ - public function getVolumeSeries() - { - return $this->volumeSeries; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeseriesinfoVolumeSeries.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeseriesinfoVolumeSeries.php deleted file mode 100644 index 1fe57d99..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeseriesinfoVolumeSeries.php +++ /dev/null @@ -1,65 +0,0 @@ -issue = $issue; - } - /** - * @return Google_Service_Books_VolumeseriesinfoVolumeSeriesIssue - */ - public function getIssue() - { - return $this->issue; - } - public function setOrderNumber($orderNumber) - { - $this->orderNumber = $orderNumber; - } - public function getOrderNumber() - { - return $this->orderNumber; - } - public function setSeriesBookType($seriesBookType) - { - $this->seriesBookType = $seriesBookType; - } - public function getSeriesBookType() - { - return $this->seriesBookType; - } - public function setSeriesId($seriesId) - { - $this->seriesId = $seriesId; - } - public function getSeriesId() - { - return $this->seriesId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeseriesinfoVolumeSeriesIssue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeseriesinfoVolumeSeriesIssue.php deleted file mode 100644 index 4767be36..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Books/VolumeseriesinfoVolumeSeriesIssue.php +++ /dev/null @@ -1,39 +0,0 @@ -issueDisplayNumber = $issueDisplayNumber; - } - public function getIssueDisplayNumber() - { - return $this->issueDisplayNumber; - } - public function setIssueOrderNumber($issueOrderNumber) - { - $this->issueOrderNumber = $issueOrderNumber; - } - public function getIssueOrderNumber() - { - return $this->issueOrderNumber; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar.php deleted file mode 100644 index f2ceb726..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar.php +++ /dev/null @@ -1,951 +0,0 @@ - - * Manipulates events and other calendar data.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Calendar extends Google_Service -{ - /** See, edit, share, and permanently delete all the calendars you can access using Google Calendar. */ - const CALENDAR = - "https://www.googleapis.com/auth/calendar"; - /** View and edit events on all your calendars. */ - const CALENDAR_EVENTS = - "https://www.googleapis.com/auth/calendar.events"; - /** View events on all your calendars. */ - const CALENDAR_EVENTS_READONLY = - "https://www.googleapis.com/auth/calendar.events.readonly"; - /** View your calendars. */ - const CALENDAR_READONLY = - "https://www.googleapis.com/auth/calendar.readonly"; - /** View your Calendar settings. */ - const CALENDAR_SETTINGS_READONLY = - "https://www.googleapis.com/auth/calendar.settings.readonly"; - - public $acl; - public $calendarList; - public $calendars; - public $channels; - public $colors; - public $events; - public $freebusy; - public $settings; - - /** - * Constructs the internal representation of the Calendar service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://www.googleapis.com/'; - $this->servicePath = 'calendar/v3/'; - $this->batchPath = 'batch/calendar/v3'; - $this->version = 'v3'; - $this->serviceName = 'calendar'; - - $this->acl = new Google_Service_Calendar_Resource_Acl( - $this, - $this->serviceName, - 'acl', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'calendars/{calendarId}/acl/{ruleId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'calendarId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'ruleId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'calendars/{calendarId}/acl/{ruleId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'calendarId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'ruleId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'calendars/{calendarId}/acl', - 'httpMethod' => 'POST', - 'parameters' => array( - 'calendarId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sendNotifications' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'list' => array( - 'path' => 'calendars/{calendarId}/acl', - 'httpMethod' => 'GET', - 'parameters' => array( - 'calendarId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'showDeleted' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'syncToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'calendars/{calendarId}/acl/{ruleId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'calendarId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'ruleId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sendNotifications' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'update' => array( - 'path' => 'calendars/{calendarId}/acl/{ruleId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'calendarId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'ruleId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sendNotifications' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'watch' => array( - 'path' => 'calendars/{calendarId}/acl/watch', - 'httpMethod' => 'POST', - 'parameters' => array( - 'calendarId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'showDeleted' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'syncToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->calendarList = new Google_Service_Calendar_Resource_CalendarList( - $this, - $this->serviceName, - 'calendarList', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'users/me/calendarList/{calendarId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'calendarId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'users/me/calendarList/{calendarId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'calendarId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'users/me/calendarList', - 'httpMethod' => 'POST', - 'parameters' => array( - 'colorRgbFormat' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'list' => array( - 'path' => 'users/me/calendarList', - 'httpMethod' => 'GET', - 'parameters' => array( - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'minAccessRole' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'showDeleted' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'showHidden' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'syncToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'users/me/calendarList/{calendarId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'calendarId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'colorRgbFormat' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'update' => array( - 'path' => 'users/me/calendarList/{calendarId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'calendarId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'colorRgbFormat' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'watch' => array( - 'path' => 'users/me/calendarList/watch', - 'httpMethod' => 'POST', - 'parameters' => array( - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'minAccessRole' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'showDeleted' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'showHidden' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'syncToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->calendars = new Google_Service_Calendar_Resource_Calendars( - $this, - $this->serviceName, - 'calendars', - array( - 'methods' => array( - 'clear' => array( - 'path' => 'calendars/{calendarId}/clear', - 'httpMethod' => 'POST', - 'parameters' => array( - 'calendarId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'calendars/{calendarId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'calendarId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'calendars/{calendarId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'calendarId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'calendars', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'patch' => array( - 'path' => 'calendars/{calendarId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'calendarId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'calendars/{calendarId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'calendarId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->channels = new Google_Service_Calendar_Resource_Channels( - $this, - $this->serviceName, - 'channels', - array( - 'methods' => array( - 'stop' => array( - 'path' => 'channels/stop', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->colors = new Google_Service_Calendar_Resource_Colors( - $this, - $this->serviceName, - 'colors', - array( - 'methods' => array( - 'get' => array( - 'path' => 'colors', - 'httpMethod' => 'GET', - 'parameters' => array(), - ), - ) - ) - ); - $this->events = new Google_Service_Calendar_Resource_Events( - $this, - $this->serviceName, - 'events', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'calendars/{calendarId}/events/{eventId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'calendarId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'eventId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sendNotifications' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'sendUpdates' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'calendars/{calendarId}/events/{eventId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'calendarId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'eventId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'alwaysIncludeEmail' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'maxAttendees' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'timeZone' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'import' => array( - 'path' => 'calendars/{calendarId}/events/import', - 'httpMethod' => 'POST', - 'parameters' => array( - 'calendarId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'conferenceDataVersion' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'supportsAttachments' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'insert' => array( - 'path' => 'calendars/{calendarId}/events', - 'httpMethod' => 'POST', - 'parameters' => array( - 'calendarId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'conferenceDataVersion' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'maxAttendees' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'sendNotifications' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'sendUpdates' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'supportsAttachments' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'instances' => array( - 'path' => 'calendars/{calendarId}/events/{eventId}/instances', - 'httpMethod' => 'GET', - 'parameters' => array( - 'calendarId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'eventId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'alwaysIncludeEmail' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'maxAttendees' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'originalStart' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'showDeleted' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'timeMax' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'timeMin' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'timeZone' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'calendars/{calendarId}/events', - 'httpMethod' => 'GET', - 'parameters' => array( - 'calendarId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'alwaysIncludeEmail' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'iCalUID' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxAttendees' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'privateExtendedProperty' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'q' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sharedExtendedProperty' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'showDeleted' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'showHiddenInvitations' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'singleEvents' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'syncToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'timeMax' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'timeMin' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'timeZone' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'updatedMin' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'move' => array( - 'path' => 'calendars/{calendarId}/events/{eventId}/move', - 'httpMethod' => 'POST', - 'parameters' => array( - 'calendarId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'eventId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'destination' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'sendNotifications' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'sendUpdates' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'calendars/{calendarId}/events/{eventId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'calendarId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'eventId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'alwaysIncludeEmail' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'conferenceDataVersion' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'maxAttendees' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'sendNotifications' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'sendUpdates' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'supportsAttachments' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'quickAdd' => array( - 'path' => 'calendars/{calendarId}/events/quickAdd', - 'httpMethod' => 'POST', - 'parameters' => array( - 'calendarId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'text' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'sendNotifications' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'sendUpdates' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'calendars/{calendarId}/events/{eventId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'calendarId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'eventId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'alwaysIncludeEmail' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'conferenceDataVersion' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'maxAttendees' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'sendNotifications' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'sendUpdates' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'supportsAttachments' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'watch' => array( - 'path' => 'calendars/{calendarId}/events/watch', - 'httpMethod' => 'POST', - 'parameters' => array( - 'calendarId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'alwaysIncludeEmail' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'iCalUID' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxAttendees' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'privateExtendedProperty' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'q' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sharedExtendedProperty' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'showDeleted' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'showHiddenInvitations' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'singleEvents' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'syncToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'timeMax' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'timeMin' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'timeZone' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'updatedMin' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->freebusy = new Google_Service_Calendar_Resource_Freebusy( - $this, - $this->serviceName, - 'freebusy', - array( - 'methods' => array( - 'query' => array( - 'path' => 'freeBusy', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->settings = new Google_Service_Calendar_Resource_Settings( - $this, - $this->serviceName, - 'settings', - array( - 'methods' => array( - 'get' => array( - 'path' => 'users/me/settings/{setting}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'setting' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'users/me/settings', - 'httpMethod' => 'GET', - 'parameters' => array( - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'syncToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'watch' => array( - 'path' => 'users/me/settings/watch', - 'httpMethod' => 'POST', - 'parameters' => array( - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'syncToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/Acl.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/Acl.php deleted file mode 100644 index a08b8d45..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/Acl.php +++ /dev/null @@ -1,74 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_Calendar_AclRule - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Calendar_AclRule - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setNextSyncToken($nextSyncToken) - { - $this->nextSyncToken = $nextSyncToken; - } - public function getNextSyncToken() - { - return $this->nextSyncToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/AclRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/AclRule.php deleted file mode 100644 index 89cdda71..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/AclRule.php +++ /dev/null @@ -1,73 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - 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 setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } - /** - * @param Google_Service_Calendar_AclRuleScope - */ - public function setScope(Google_Service_Calendar_AclRuleScope $scope) - { - $this->scope = $scope; - } - /** - * @return Google_Service_Calendar_AclRuleScope - */ - public function getScope() - { - return $this->scope; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/AclRuleScope.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/AclRuleScope.php deleted file mode 100644 index 1c49bd6a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/AclRuleScope.php +++ /dev/null @@ -1,39 +0,0 @@ -type = $type; - } - public function getType() - { - return $this->type; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/Calendar.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/Calendar.php deleted file mode 100644 index 6ef2b745..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/Calendar.php +++ /dev/null @@ -1,100 +0,0 @@ -conferenceProperties = $conferenceProperties; - } - /** - * @return Google_Service_Calendar_ConferenceProperties - */ - public function getConferenceProperties() - { - return $this->conferenceProperties; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - 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 setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setSummary($summary) - { - $this->summary = $summary; - } - public function getSummary() - { - return $this->summary; - } - public function setTimeZone($timeZone) - { - $this->timeZone = $timeZone; - } - public function getTimeZone() - { - return $this->timeZone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/CalendarList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/CalendarList.php deleted file mode 100644 index d9fb7465..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/CalendarList.php +++ /dev/null @@ -1,74 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_Calendar_CalendarListEntry - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Calendar_CalendarListEntry - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setNextSyncToken($nextSyncToken) - { - $this->nextSyncToken = $nextSyncToken; - } - public function getNextSyncToken() - { - return $this->nextSyncToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/CalendarListEntry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/CalendarListEntry.php deleted file mode 100644 index a49bcd3a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/CalendarListEntry.php +++ /dev/null @@ -1,214 +0,0 @@ -accessRole = $accessRole; - } - public function getAccessRole() - { - return $this->accessRole; - } - public function setBackgroundColor($backgroundColor) - { - $this->backgroundColor = $backgroundColor; - } - public function getBackgroundColor() - { - return $this->backgroundColor; - } - public function setColorId($colorId) - { - $this->colorId = $colorId; - } - public function getColorId() - { - return $this->colorId; - } - /** - * @param Google_Service_Calendar_ConferenceProperties - */ - public function setConferenceProperties(Google_Service_Calendar_ConferenceProperties $conferenceProperties) - { - $this->conferenceProperties = $conferenceProperties; - } - /** - * @return Google_Service_Calendar_ConferenceProperties - */ - public function getConferenceProperties() - { - return $this->conferenceProperties; - } - /** - * @param Google_Service_Calendar_EventReminder - */ - public function setDefaultReminders($defaultReminders) - { - $this->defaultReminders = $defaultReminders; - } - /** - * @return Google_Service_Calendar_EventReminder - */ - public function getDefaultReminders() - { - return $this->defaultReminders; - } - public function setDeleted($deleted) - { - $this->deleted = $deleted; - } - public function getDeleted() - { - return $this->deleted; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setForegroundColor($foregroundColor) - { - $this->foregroundColor = $foregroundColor; - } - public function getForegroundColor() - { - return $this->foregroundColor; - } - public function setHidden($hidden) - { - $this->hidden = $hidden; - } - public function getHidden() - { - return $this->hidden; - } - 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 setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - /** - * @param Google_Service_Calendar_CalendarListEntryNotificationSettings - */ - public function setNotificationSettings(Google_Service_Calendar_CalendarListEntryNotificationSettings $notificationSettings) - { - $this->notificationSettings = $notificationSettings; - } - /** - * @return Google_Service_Calendar_CalendarListEntryNotificationSettings - */ - public function getNotificationSettings() - { - return $this->notificationSettings; - } - public function setPrimary($primary) - { - $this->primary = $primary; - } - public function getPrimary() - { - return $this->primary; - } - public function setSelected($selected) - { - $this->selected = $selected; - } - public function getSelected() - { - return $this->selected; - } - public function setSummary($summary) - { - $this->summary = $summary; - } - public function getSummary() - { - return $this->summary; - } - public function setSummaryOverride($summaryOverride) - { - $this->summaryOverride = $summaryOverride; - } - public function getSummaryOverride() - { - return $this->summaryOverride; - } - public function setTimeZone($timeZone) - { - $this->timeZone = $timeZone; - } - public function getTimeZone() - { - return $this->timeZone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/CalendarListEntryNotificationSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/CalendarListEntryNotificationSettings.php deleted file mode 100644 index 43cae3f0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/CalendarListEntryNotificationSettings.php +++ /dev/null @@ -1,38 +0,0 @@ -notifications = $notifications; - } - /** - * @return Google_Service_Calendar_CalendarNotification - */ - public function getNotifications() - { - return $this->notifications; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/CalendarNotification.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/CalendarNotification.php deleted file mode 100644 index a492b550..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/CalendarNotification.php +++ /dev/null @@ -1,39 +0,0 @@ -method = $method; - } - public function getMethod() - { - return $this->method; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/Channel.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/Channel.php deleted file mode 100644 index a1d4f1da..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/Channel.php +++ /dev/null @@ -1,111 +0,0 @@ -address = $address; - } - public function getAddress() - { - return $this->address; - } - public function setExpiration($expiration) - { - $this->expiration = $expiration; - } - public function getExpiration() - { - return $this->expiration; - } - 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 setParams($params) - { - $this->params = $params; - } - public function getParams() - { - return $this->params; - } - public function setPayload($payload) - { - $this->payload = $payload; - } - public function getPayload() - { - return $this->payload; - } - public function setResourceId($resourceId) - { - $this->resourceId = $resourceId; - } - public function getResourceId() - { - return $this->resourceId; - } - public function setResourceUri($resourceUri) - { - $this->resourceUri = $resourceUri; - } - public function getResourceUri() - { - return $this->resourceUri; - } - public function setToken($token) - { - $this->token = $token; - } - public function getToken() - { - return $this->token; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/ColorDefinition.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/ColorDefinition.php deleted file mode 100644 index a98441c6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/ColorDefinition.php +++ /dev/null @@ -1,39 +0,0 @@ -background = $background; - } - public function getBackground() - { - return $this->background; - } - public function setForeground($foreground) - { - $this->foreground = $foreground; - } - public function getForeground() - { - return $this->foreground; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/Colors.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/Colors.php deleted file mode 100644 index 5235a7a7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/Colors.php +++ /dev/null @@ -1,71 +0,0 @@ -calendar = $calendar; - } - /** - * @return Google_Service_Calendar_ColorDefinition - */ - public function getCalendar() - { - return $this->calendar; - } - /** - * @param Google_Service_Calendar_ColorDefinition - */ - public function setEvent($event) - { - $this->event = $event; - } - /** - * @return Google_Service_Calendar_ColorDefinition - */ - public function getEvent() - { - return $this->event; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setUpdated($updated) - { - $this->updated = $updated; - } - public function getUpdated() - { - return $this->updated; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/ConferenceData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/ConferenceData.php deleted file mode 100644 index 56362cfb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/ConferenceData.php +++ /dev/null @@ -1,113 +0,0 @@ -conferenceId = $conferenceId; - } - public function getConferenceId() - { - return $this->conferenceId; - } - /** - * @param Google_Service_Calendar_ConferenceSolution - */ - public function setConferenceSolution(Google_Service_Calendar_ConferenceSolution $conferenceSolution) - { - $this->conferenceSolution = $conferenceSolution; - } - /** - * @return Google_Service_Calendar_ConferenceSolution - */ - public function getConferenceSolution() - { - return $this->conferenceSolution; - } - /** - * @param Google_Service_Calendar_CreateConferenceRequest - */ - public function setCreateRequest(Google_Service_Calendar_CreateConferenceRequest $createRequest) - { - $this->createRequest = $createRequest; - } - /** - * @return Google_Service_Calendar_CreateConferenceRequest - */ - public function getCreateRequest() - { - return $this->createRequest; - } - /** - * @param Google_Service_Calendar_EntryPoint - */ - public function setEntryPoints($entryPoints) - { - $this->entryPoints = $entryPoints; - } - /** - * @return Google_Service_Calendar_EntryPoint - */ - public function getEntryPoints() - { - return $this->entryPoints; - } - public function setNotes($notes) - { - $this->notes = $notes; - } - public function getNotes() - { - return $this->notes; - } - /** - * @param Google_Service_Calendar_ConferenceParameters - */ - public function setParameters(Google_Service_Calendar_ConferenceParameters $parameters) - { - $this->parameters = $parameters; - } - /** - * @return Google_Service_Calendar_ConferenceParameters - */ - public function getParameters() - { - return $this->parameters; - } - public function setSignature($signature) - { - $this->signature = $signature; - } - public function getSignature() - { - return $this->signature; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/ConferenceParameters.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/ConferenceParameters.php deleted file mode 100644 index a8393f25..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/ConferenceParameters.php +++ /dev/null @@ -1,37 +0,0 @@ -addOnParameters = $addOnParameters; - } - /** - * @return Google_Service_Calendar_ConferenceParametersAddOnParameters - */ - public function getAddOnParameters() - { - return $this->addOnParameters; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/ConferenceParametersAddOnParameters.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/ConferenceParametersAddOnParameters.php deleted file mode 100644 index 9cdd0e6f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/ConferenceParametersAddOnParameters.php +++ /dev/null @@ -1,30 +0,0 @@ -parameters = $parameters; - } - public function getParameters() - { - return $this->parameters; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/ConferenceProperties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/ConferenceProperties.php deleted file mode 100644 index 6a4fdf59..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/ConferenceProperties.php +++ /dev/null @@ -1,31 +0,0 @@ -allowedConferenceSolutionTypes = $allowedConferenceSolutionTypes; - } - public function getAllowedConferenceSolutionTypes() - { - return $this->allowedConferenceSolutionTypes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/ConferenceRequestStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/ConferenceRequestStatus.php deleted file mode 100644 index 3ec681de..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/ConferenceRequestStatus.php +++ /dev/null @@ -1,30 +0,0 @@ -statusCode = $statusCode; - } - public function getStatusCode() - { - return $this->statusCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/ConferenceSolution.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/ConferenceSolution.php deleted file mode 100644 index aff3f685..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/ConferenceSolution.php +++ /dev/null @@ -1,55 +0,0 @@ -iconUri = $iconUri; - } - public function getIconUri() - { - return $this->iconUri; - } - /** - * @param Google_Service_Calendar_ConferenceSolutionKey - */ - public function setKey(Google_Service_Calendar_ConferenceSolutionKey $key) - { - $this->key = $key; - } - /** - * @return Google_Service_Calendar_ConferenceSolutionKey - */ - public function getKey() - { - return $this->key; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/ConferenceSolutionKey.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/ConferenceSolutionKey.php deleted file mode 100644 index ac888ff6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/ConferenceSolutionKey.php +++ /dev/null @@ -1,30 +0,0 @@ -type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/CreateConferenceRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/CreateConferenceRequest.php deleted file mode 100644 index dd155c93..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/CreateConferenceRequest.php +++ /dev/null @@ -1,62 +0,0 @@ -conferenceSolutionKey = $conferenceSolutionKey; - } - /** - * @return Google_Service_Calendar_ConferenceSolutionKey - */ - public function getConferenceSolutionKey() - { - return $this->conferenceSolutionKey; - } - public function setRequestId($requestId) - { - $this->requestId = $requestId; - } - public function getRequestId() - { - return $this->requestId; - } - /** - * @param Google_Service_Calendar_ConferenceRequestStatus - */ - public function setStatus(Google_Service_Calendar_ConferenceRequestStatus $status) - { - $this->status = $status; - } - /** - * @return Google_Service_Calendar_ConferenceRequestStatus - */ - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/EntryPoint.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/EntryPoint.php deleted file mode 100644 index de50f24e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/EntryPoint.php +++ /dev/null @@ -1,112 +0,0 @@ -accessCode = $accessCode; - } - public function getAccessCode() - { - return $this->accessCode; - } - public function setEntryPointFeatures($entryPointFeatures) - { - $this->entryPointFeatures = $entryPointFeatures; - } - public function getEntryPointFeatures() - { - return $this->entryPointFeatures; - } - public function setEntryPointType($entryPointType) - { - $this->entryPointType = $entryPointType; - } - public function getEntryPointType() - { - return $this->entryPointType; - } - public function setLabel($label) - { - $this->label = $label; - } - public function getLabel() - { - return $this->label; - } - public function setMeetingCode($meetingCode) - { - $this->meetingCode = $meetingCode; - } - public function getMeetingCode() - { - return $this->meetingCode; - } - public function setPasscode($passcode) - { - $this->passcode = $passcode; - } - public function getPasscode() - { - return $this->passcode; - } - public function setPassword($password) - { - $this->password = $password; - } - public function getPassword() - { - return $this->password; - } - public function setPin($pin) - { - $this->pin = $pin; - } - public function getPin() - { - return $this->pin; - } - public function setRegionCode($regionCode) - { - $this->regionCode = $regionCode; - } - public function getRegionCode() - { - return $this->regionCode; - } - public function setUri($uri) - { - $this->uri = $uri; - } - public function getUri() - { - return $this->uri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/Error.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/Error.php deleted file mode 100644 index 676612da..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/Error.php +++ /dev/null @@ -1,39 +0,0 @@ -domain = $domain; - } - public function getDomain() - { - return $this->domain; - } - public function setReason($reason) - { - $this->reason = $reason; - } - public function getReason() - { - return $this->reason; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/Event.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/Event.php deleted file mode 100644 index 5d329b55..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/Event.php +++ /dev/null @@ -1,448 +0,0 @@ -anyoneCanAddSelf = $anyoneCanAddSelf; - } - public function getAnyoneCanAddSelf() - { - return $this->anyoneCanAddSelf; - } - /** - * @param Google_Service_Calendar_EventAttachment - */ - public function setAttachments($attachments) - { - $this->attachments = $attachments; - } - /** - * @return Google_Service_Calendar_EventAttachment - */ - public function getAttachments() - { - return $this->attachments; - } - /** - * @param Google_Service_Calendar_EventAttendee - */ - public function setAttendees($attendees) - { - $this->attendees = $attendees; - } - /** - * @return Google_Service_Calendar_EventAttendee - */ - public function getAttendees() - { - return $this->attendees; - } - public function setAttendeesOmitted($attendeesOmitted) - { - $this->attendeesOmitted = $attendeesOmitted; - } - public function getAttendeesOmitted() - { - return $this->attendeesOmitted; - } - public function setColorId($colorId) - { - $this->colorId = $colorId; - } - public function getColorId() - { - return $this->colorId; - } - /** - * @param Google_Service_Calendar_ConferenceData - */ - public function setConferenceData(Google_Service_Calendar_ConferenceData $conferenceData) - { - $this->conferenceData = $conferenceData; - } - /** - * @return Google_Service_Calendar_ConferenceData - */ - public function getConferenceData() - { - return $this->conferenceData; - } - public function setCreated($created) - { - $this->created = $created; - } - public function getCreated() - { - return $this->created; - } - /** - * @param Google_Service_Calendar_EventCreator - */ - public function setCreator(Google_Service_Calendar_EventCreator $creator) - { - $this->creator = $creator; - } - /** - * @return Google_Service_Calendar_EventCreator - */ - public function getCreator() - { - return $this->creator; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - /** - * @param Google_Service_Calendar_EventDateTime - */ - public function setEnd(Google_Service_Calendar_EventDateTime $end) - { - $this->end = $end; - } - /** - * @return Google_Service_Calendar_EventDateTime - */ - public function getEnd() - { - return $this->end; - } - public function setEndTimeUnspecified($endTimeUnspecified) - { - $this->endTimeUnspecified = $endTimeUnspecified; - } - public function getEndTimeUnspecified() - { - return $this->endTimeUnspecified; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_Calendar_EventExtendedProperties - */ - public function setExtendedProperties(Google_Service_Calendar_EventExtendedProperties $extendedProperties) - { - $this->extendedProperties = $extendedProperties; - } - /** - * @return Google_Service_Calendar_EventExtendedProperties - */ - public function getExtendedProperties() - { - return $this->extendedProperties; - } - /** - * @param Google_Service_Calendar_EventGadget - */ - public function setGadget(Google_Service_Calendar_EventGadget $gadget) - { - $this->gadget = $gadget; - } - /** - * @return Google_Service_Calendar_EventGadget - */ - public function getGadget() - { - return $this->gadget; - } - public function setGuestsCanInviteOthers($guestsCanInviteOthers) - { - $this->guestsCanInviteOthers = $guestsCanInviteOthers; - } - public function getGuestsCanInviteOthers() - { - return $this->guestsCanInviteOthers; - } - public function setGuestsCanModify($guestsCanModify) - { - $this->guestsCanModify = $guestsCanModify; - } - public function getGuestsCanModify() - { - return $this->guestsCanModify; - } - public function setGuestsCanSeeOtherGuests($guestsCanSeeOtherGuests) - { - $this->guestsCanSeeOtherGuests = $guestsCanSeeOtherGuests; - } - public function getGuestsCanSeeOtherGuests() - { - return $this->guestsCanSeeOtherGuests; - } - public function setHangoutLink($hangoutLink) - { - $this->hangoutLink = $hangoutLink; - } - public function getHangoutLink() - { - return $this->hangoutLink; - } - public function setHtmlLink($htmlLink) - { - $this->htmlLink = $htmlLink; - } - public function getHtmlLink() - { - return $this->htmlLink; - } - public function setICalUID($iCalUID) - { - $this->iCalUID = $iCalUID; - } - public function getICalUID() - { - return $this->iCalUID; - } - 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 setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setLocked($locked) - { - $this->locked = $locked; - } - public function getLocked() - { - return $this->locked; - } - /** - * @param Google_Service_Calendar_EventOrganizer - */ - public function setOrganizer(Google_Service_Calendar_EventOrganizer $organizer) - { - $this->organizer = $organizer; - } - /** - * @return Google_Service_Calendar_EventOrganizer - */ - public function getOrganizer() - { - return $this->organizer; - } - /** - * @param Google_Service_Calendar_EventDateTime - */ - public function setOriginalStartTime(Google_Service_Calendar_EventDateTime $originalStartTime) - { - $this->originalStartTime = $originalStartTime; - } - /** - * @return Google_Service_Calendar_EventDateTime - */ - public function getOriginalStartTime() - { - return $this->originalStartTime; - } - public function setPrivateCopy($privateCopy) - { - $this->privateCopy = $privateCopy; - } - public function getPrivateCopy() - { - return $this->privateCopy; - } - public function setRecurrence($recurrence) - { - $this->recurrence = $recurrence; - } - public function getRecurrence() - { - return $this->recurrence; - } - public function setRecurringEventId($recurringEventId) - { - $this->recurringEventId = $recurringEventId; - } - public function getRecurringEventId() - { - return $this->recurringEventId; - } - /** - * @param Google_Service_Calendar_EventReminders - */ - public function setReminders(Google_Service_Calendar_EventReminders $reminders) - { - $this->reminders = $reminders; - } - /** - * @return Google_Service_Calendar_EventReminders - */ - public function getReminders() - { - return $this->reminders; - } - public function setSequence($sequence) - { - $this->sequence = $sequence; - } - public function getSequence() - { - return $this->sequence; - } - /** - * @param Google_Service_Calendar_EventSource - */ - public function setSource(Google_Service_Calendar_EventSource $source) - { - $this->source = $source; - } - /** - * @return Google_Service_Calendar_EventSource - */ - public function getSource() - { - return $this->source; - } - /** - * @param Google_Service_Calendar_EventDateTime - */ - public function setStart(Google_Service_Calendar_EventDateTime $start) - { - $this->start = $start; - } - /** - * @return Google_Service_Calendar_EventDateTime - */ - public function getStart() - { - return $this->start; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setSummary($summary) - { - $this->summary = $summary; - } - public function getSummary() - { - return $this->summary; - } - public function setTransparency($transparency) - { - $this->transparency = $transparency; - } - public function getTransparency() - { - return $this->transparency; - } - public function setUpdated($updated) - { - $this->updated = $updated; - } - public function getUpdated() - { - return $this->updated; - } - public function setVisibility($visibility) - { - $this->visibility = $visibility; - } - public function getVisibility() - { - return $this->visibility; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/EventAttachment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/EventAttachment.php deleted file mode 100644 index f571e394..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/EventAttachment.php +++ /dev/null @@ -1,66 +0,0 @@ -fileId = $fileId; - } - public function getFileId() - { - return $this->fileId; - } - public function setFileUrl($fileUrl) - { - $this->fileUrl = $fileUrl; - } - public function getFileUrl() - { - return $this->fileUrl; - } - public function setIconLink($iconLink) - { - $this->iconLink = $iconLink; - } - public function getIconLink() - { - return $this->iconLink; - } - public function setMimeType($mimeType) - { - $this->mimeType = $mimeType; - } - public function getMimeType() - { - return $this->mimeType; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/EventAttendee.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/EventAttendee.php deleted file mode 100644 index b9cfc16d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/EventAttendee.php +++ /dev/null @@ -1,111 +0,0 @@ -additionalGuests = $additionalGuests; - } - public function getAdditionalGuests() - { - return $this->additionalGuests; - } - public function setComment($comment) - { - $this->comment = $comment; - } - public function getComment() - { - return $this->comment; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setEmail($email) - { - $this->email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setOptional($optional) - { - $this->optional = $optional; - } - public function getOptional() - { - return $this->optional; - } - public function setOrganizer($organizer) - { - $this->organizer = $organizer; - } - public function getOrganizer() - { - return $this->organizer; - } - public function setResource($resource) - { - $this->resource = $resource; - } - public function getResource() - { - return $this->resource; - } - public function setResponseStatus($responseStatus) - { - $this->responseStatus = $responseStatus; - } - public function getResponseStatus() - { - return $this->responseStatus; - } - public function setSelf($self) - { - $this->self = $self; - } - public function getSelf() - { - return $this->self; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/EventCreator.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/EventCreator.php deleted file mode 100644 index dbe18332..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/EventCreator.php +++ /dev/null @@ -1,57 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setEmail($email) - { - $this->email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setSelf($self) - { - $this->self = $self; - } - public function getSelf() - { - return $this->self; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/EventDateTime.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/EventDateTime.php deleted file mode 100644 index 6458c763..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/EventDateTime.php +++ /dev/null @@ -1,48 +0,0 @@ -date = $date; - } - public function getDate() - { - return $this->date; - } - public function setDateTime($dateTime) - { - $this->dateTime = $dateTime; - } - public function getDateTime() - { - return $this->dateTime; - } - public function setTimeZone($timeZone) - { - $this->timeZone = $timeZone; - } - public function getTimeZone() - { - return $this->timeZone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/EventExtendedProperties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/EventExtendedProperties.php deleted file mode 100644 index fb7e7bfe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/EventExtendedProperties.php +++ /dev/null @@ -1,39 +0,0 @@ -private = $private; - } - public function getPrivate() - { - return $this->private; - } - public function setShared($shared) - { - $this->shared = $shared; - } - public function getShared() - { - return $this->shared; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/EventGadget.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/EventGadget.php deleted file mode 100644 index d2374185..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/EventGadget.php +++ /dev/null @@ -1,93 +0,0 @@ -display = $display; - } - public function getDisplay() - { - return $this->display; - } - public function setHeight($height) - { - $this->height = $height; - } - public function getHeight() - { - return $this->height; - } - public function setIconLink($iconLink) - { - $this->iconLink = $iconLink; - } - public function getIconLink() - { - return $this->iconLink; - } - public function setLink($link) - { - $this->link = $link; - } - public function getLink() - { - return $this->link; - } - public function setPreferences($preferences) - { - $this->preferences = $preferences; - } - public function getPreferences() - { - return $this->preferences; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setWidth($width) - { - $this->width = $width; - } - public function getWidth() - { - return $this->width; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/EventOrganizer.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/EventOrganizer.php deleted file mode 100644 index a3143861..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/EventOrganizer.php +++ /dev/null @@ -1,57 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setEmail($email) - { - $this->email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setSelf($self) - { - $this->self = $self; - } - public function getSelf() - { - return $this->self; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/EventReminder.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/EventReminder.php deleted file mode 100644 index 9206ba69..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/EventReminder.php +++ /dev/null @@ -1,39 +0,0 @@ -method = $method; - } - public function getMethod() - { - return $this->method; - } - public function setMinutes($minutes) - { - $this->minutes = $minutes; - } - public function getMinutes() - { - return $this->minutes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/EventReminders.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/EventReminders.php deleted file mode 100644 index 4bfc9320..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/EventReminders.php +++ /dev/null @@ -1,47 +0,0 @@ -overrides = $overrides; - } - /** - * @return Google_Service_Calendar_EventReminder - */ - public function getOverrides() - { - return $this->overrides; - } - public function setUseDefault($useDefault) - { - $this->useDefault = $useDefault; - } - public function getUseDefault() - { - return $this->useDefault; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/EventSource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/EventSource.php deleted file mode 100644 index 3055636f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/EventSource.php +++ /dev/null @@ -1,39 +0,0 @@ -title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/Events.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/Events.php deleted file mode 100644 index d55c522c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/Events.php +++ /dev/null @@ -1,135 +0,0 @@ -accessRole = $accessRole; - } - public function getAccessRole() - { - return $this->accessRole; - } - /** - * @param Google_Service_Calendar_EventReminder - */ - public function setDefaultReminders($defaultReminders) - { - $this->defaultReminders = $defaultReminders; - } - /** - * @return Google_Service_Calendar_EventReminder - */ - public function getDefaultReminders() - { - return $this->defaultReminders; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_Calendar_Event - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Calendar_Event - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setNextSyncToken($nextSyncToken) - { - $this->nextSyncToken = $nextSyncToken; - } - public function getNextSyncToken() - { - return $this->nextSyncToken; - } - public function setSummary($summary) - { - $this->summary = $summary; - } - public function getSummary() - { - return $this->summary; - } - public function setTimeZone($timeZone) - { - $this->timeZone = $timeZone; - } - public function getTimeZone() - { - return $this->timeZone; - } - public function setUpdated($updated) - { - $this->updated = $updated; - } - public function getUpdated() - { - return $this->updated; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/FreeBusyCalendar.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/FreeBusyCalendar.php deleted file mode 100644 index 51317182..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/FreeBusyCalendar.php +++ /dev/null @@ -1,54 +0,0 @@ -busy = $busy; - } - /** - * @return Google_Service_Calendar_TimePeriod - */ - public function getBusy() - { - return $this->busy; - } - /** - * @param Google_Service_Calendar_Error - */ - public function setErrors($errors) - { - $this->errors = $errors; - } - /** - * @return Google_Service_Calendar_Error - */ - public function getErrors() - { - return $this->errors; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/FreeBusyGroup.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/FreeBusyGroup.php deleted file mode 100644 index 2aa5da9d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/FreeBusyGroup.php +++ /dev/null @@ -1,47 +0,0 @@ -calendars = $calendars; - } - public function getCalendars() - { - return $this->calendars; - } - /** - * @param Google_Service_Calendar_Error - */ - public function setErrors($errors) - { - $this->errors = $errors; - } - /** - * @return Google_Service_Calendar_Error - */ - public function getErrors() - { - return $this->errors; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/FreeBusyRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/FreeBusyRequest.php deleted file mode 100644 index 666de6ea..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/FreeBusyRequest.php +++ /dev/null @@ -1,83 +0,0 @@ -calendarExpansionMax = $calendarExpansionMax; - } - public function getCalendarExpansionMax() - { - return $this->calendarExpansionMax; - } - public function setGroupExpansionMax($groupExpansionMax) - { - $this->groupExpansionMax = $groupExpansionMax; - } - public function getGroupExpansionMax() - { - return $this->groupExpansionMax; - } - /** - * @param Google_Service_Calendar_FreeBusyRequestItem - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Calendar_FreeBusyRequestItem - */ - public function getItems() - { - return $this->items; - } - public function setTimeMax($timeMax) - { - $this->timeMax = $timeMax; - } - public function getTimeMax() - { - return $this->timeMax; - } - public function setTimeMin($timeMin) - { - $this->timeMin = $timeMin; - } - public function getTimeMin() - { - return $this->timeMin; - } - public function setTimeZone($timeZone) - { - $this->timeZone = $timeZone; - } - public function getTimeZone() - { - return $this->timeZone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/FreeBusyRequestItem.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/FreeBusyRequestItem.php deleted file mode 100644 index 85a71d14..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/FreeBusyRequestItem.php +++ /dev/null @@ -1,30 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/FreeBusyResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/FreeBusyResponse.php deleted file mode 100644 index 906bf4e9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/FreeBusyResponse.php +++ /dev/null @@ -1,80 +0,0 @@ -calendars = $calendars; - } - /** - * @return Google_Service_Calendar_FreeBusyCalendar - */ - public function getCalendars() - { - return $this->calendars; - } - /** - * @param Google_Service_Calendar_FreeBusyGroup - */ - public function setGroups($groups) - { - $this->groups = $groups; - } - /** - * @return Google_Service_Calendar_FreeBusyGroup - */ - public function getGroups() - { - return $this->groups; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setTimeMax($timeMax) - { - $this->timeMax = $timeMax; - } - public function getTimeMax() - { - return $this->timeMax; - } - public function setTimeMin($timeMin) - { - $this->timeMin = $timeMin; - } - public function getTimeMin() - { - return $this->timeMin; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/Resource/Acl.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/Resource/Acl.php deleted file mode 100644 index 8d403ba4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/Resource/Acl.php +++ /dev/null @@ -1,188 +0,0 @@ - - * $calendarService = new Google_Service_Calendar(...); - * $acl = $calendarService->acl; - * - */ -class Google_Service_Calendar_Resource_Acl extends Google_Service_Resource -{ - /** - * Deletes an access control rule. (acl.delete) - * - * @param string $calendarId Calendar identifier. To retrieve calendar IDs call - * the calendarList.list method. If you want to access the primary calendar of - * the currently logged in user, use the "primary" keyword. - * @param string $ruleId ACL rule identifier. - * @param array $optParams Optional parameters. - */ - public function delete($calendarId, $ruleId, $optParams = array()) - { - $params = array('calendarId' => $calendarId, 'ruleId' => $ruleId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Returns an access control rule. (acl.get) - * - * @param string $calendarId Calendar identifier. To retrieve calendar IDs call - * the calendarList.list method. If you want to access the primary calendar of - * the currently logged in user, use the "primary" keyword. - * @param string $ruleId ACL rule identifier. - * @param array $optParams Optional parameters. - * @return Google_Service_Calendar_AclRule - */ - public function get($calendarId, $ruleId, $optParams = array()) - { - $params = array('calendarId' => $calendarId, 'ruleId' => $ruleId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Calendar_AclRule"); - } - /** - * Creates an access control rule. (acl.insert) - * - * @param string $calendarId Calendar identifier. To retrieve calendar IDs call - * the calendarList.list method. If you want to access the primary calendar of - * the currently logged in user, use the "primary" keyword. - * @param Google_Service_Calendar_AclRule $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool sendNotifications Whether to send notifications about the - * calendar sharing change. Optional. The default is True. - * @return Google_Service_Calendar_AclRule - */ - public function insert($calendarId, Google_Service_Calendar_AclRule $postBody, $optParams = array()) - { - $params = array('calendarId' => $calendarId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Calendar_AclRule"); - } - /** - * Returns the rules in the access control list for the calendar. (acl.listAcl) - * - * @param string $calendarId Calendar identifier. To retrieve calendar IDs call - * the calendarList.list method. If you want to access the primary calendar of - * the currently logged in user, use the "primary" keyword. - * @param array $optParams Optional parameters. - * - * @opt_param int maxResults Maximum number of entries returned on one result - * page. By default the value is 100 entries. The page size can never be larger - * than 250 entries. Optional. - * @opt_param string pageToken Token specifying which result page to return. - * Optional. - * @opt_param bool showDeleted Whether to include deleted ACLs in the result. - * Deleted ACLs are represented by role equal to "none". Deleted ACLs will - * always be included if syncToken is provided. Optional. The default is False. - * @opt_param string syncToken Token obtained from the nextSyncToken field - * returned on the last page of results from the previous list request. It makes - * the result of this list request contain only entries that have changed since - * then. All entries deleted since the previous list request will always be in - * the result set and it is not allowed to set showDeleted to False. If the - * syncToken expires, the server will respond with a 410 GONE response code and - * the client should clear its storage and perform a full synchronization - * without any syncToken. Learn more about incremental synchronization. - * Optional. The default is to return all entries. - * @return Google_Service_Calendar_Acl - */ - public function listAcl($calendarId, $optParams = array()) - { - $params = array('calendarId' => $calendarId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Calendar_Acl"); - } - /** - * Updates an access control rule. This method supports patch semantics. - * (acl.patch) - * - * @param string $calendarId Calendar identifier. To retrieve calendar IDs call - * the calendarList.list method. If you want to access the primary calendar of - * the currently logged in user, use the "primary" keyword. - * @param string $ruleId ACL rule identifier. - * @param Google_Service_Calendar_AclRule $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool sendNotifications Whether to send notifications about the - * calendar sharing change. Note that there are no notifications on access - * removal. Optional. The default is True. - * @return Google_Service_Calendar_AclRule - */ - public function patch($calendarId, $ruleId, Google_Service_Calendar_AclRule $postBody, $optParams = array()) - { - $params = array('calendarId' => $calendarId, 'ruleId' => $ruleId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Calendar_AclRule"); - } - /** - * Updates an access control rule. (acl.update) - * - * @param string $calendarId Calendar identifier. To retrieve calendar IDs call - * the calendarList.list method. If you want to access the primary calendar of - * the currently logged in user, use the "primary" keyword. - * @param string $ruleId ACL rule identifier. - * @param Google_Service_Calendar_AclRule $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool sendNotifications Whether to send notifications about the - * calendar sharing change. Note that there are no notifications on access - * removal. Optional. The default is True. - * @return Google_Service_Calendar_AclRule - */ - public function update($calendarId, $ruleId, Google_Service_Calendar_AclRule $postBody, $optParams = array()) - { - $params = array('calendarId' => $calendarId, 'ruleId' => $ruleId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Calendar_AclRule"); - } - /** - * Watch for changes to ACL resources. (acl.watch) - * - * @param string $calendarId Calendar identifier. To retrieve calendar IDs call - * the calendarList.list method. If you want to access the primary calendar of - * the currently logged in user, use the "primary" keyword. - * @param Google_Service_Calendar_Channel $postBody - * @param array $optParams Optional parameters. - * - * @opt_param int maxResults Maximum number of entries returned on one result - * page. By default the value is 100 entries. The page size can never be larger - * than 250 entries. Optional. - * @opt_param string pageToken Token specifying which result page to return. - * Optional. - * @opt_param bool showDeleted Whether to include deleted ACLs in the result. - * Deleted ACLs are represented by role equal to "none". Deleted ACLs will - * always be included if syncToken is provided. Optional. The default is False. - * @opt_param string syncToken Token obtained from the nextSyncToken field - * returned on the last page of results from the previous list request. It makes - * the result of this list request contain only entries that have changed since - * then. All entries deleted since the previous list request will always be in - * the result set and it is not allowed to set showDeleted to False. If the - * syncToken expires, the server will respond with a 410 GONE response code and - * the client should clear its storage and perform a full synchronization - * without any syncToken. Learn more about incremental synchronization. - * Optional. The default is to return all entries. - * @return Google_Service_Calendar_Channel - */ - public function watch($calendarId, Google_Service_Calendar_Channel $postBody, $optParams = array()) - { - $params = array('calendarId' => $calendarId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('watch', array($params), "Google_Service_Calendar_Channel"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/Resource/CalendarList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/Resource/CalendarList.php deleted file mode 100644 index 4b0fafcb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/Resource/CalendarList.php +++ /dev/null @@ -1,194 +0,0 @@ - - * $calendarService = new Google_Service_Calendar(...); - * $calendarList = $calendarService->calendarList; - * - */ -class Google_Service_Calendar_Resource_CalendarList extends Google_Service_Resource -{ - /** - * Removes a calendar from the user's calendar list. (calendarList.delete) - * - * @param string $calendarId Calendar identifier. To retrieve calendar IDs call - * the calendarList.list method. If you want to access the primary calendar of - * the currently logged in user, use the "primary" keyword. - * @param array $optParams Optional parameters. - */ - public function delete($calendarId, $optParams = array()) - { - $params = array('calendarId' => $calendarId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Returns a calendar from the user's calendar list. (calendarList.get) - * - * @param string $calendarId Calendar identifier. To retrieve calendar IDs call - * the calendarList.list method. If you want to access the primary calendar of - * the currently logged in user, use the "primary" keyword. - * @param array $optParams Optional parameters. - * @return Google_Service_Calendar_CalendarListEntry - */ - public function get($calendarId, $optParams = array()) - { - $params = array('calendarId' => $calendarId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Calendar_CalendarListEntry"); - } - /** - * Inserts an existing calendar into the user's calendar list. - * (calendarList.insert) - * - * @param Google_Service_Calendar_CalendarListEntry $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool colorRgbFormat Whether to use the foregroundColor and - * backgroundColor fields to write the calendar colors (RGB). If this feature is - * used, the index-based colorId field will be set to the best matching option - * automatically. Optional. The default is False. - * @return Google_Service_Calendar_CalendarListEntry - */ - public function insert(Google_Service_Calendar_CalendarListEntry $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Calendar_CalendarListEntry"); - } - /** - * Returns the calendars on the user's calendar list. - * (calendarList.listCalendarList) - * - * @param array $optParams Optional parameters. - * - * @opt_param int maxResults Maximum number of entries returned on one result - * page. By default the value is 100 entries. The page size can never be larger - * than 250 entries. Optional. - * @opt_param string minAccessRole The minimum access role for the user in the - * returned entries. Optional. The default is no restriction. - * @opt_param string pageToken Token specifying which result page to return. - * Optional. - * @opt_param bool showDeleted Whether to include deleted calendar list entries - * in the result. Optional. The default is False. - * @opt_param bool showHidden Whether to show hidden entries. Optional. The - * default is False. - * @opt_param string syncToken Token obtained from the nextSyncToken field - * returned on the last page of results from the previous list request. It makes - * the result of this list request contain only entries that have changed since - * then. If only read-only fields such as calendar properties or ACLs have - * changed, the entry won't be returned. All entries deleted and hidden since - * the previous list request will always be in the result set and it is not - * allowed to set showDeleted neither showHidden to False. To ensure client - * state consistency minAccessRole query parameter cannot be specified together - * with nextSyncToken. If the syncToken expires, the server will respond with a - * 410 GONE response code and the client should clear its storage and perform a - * full synchronization without any syncToken. Learn more about incremental - * synchronization. Optional. The default is to return all entries. - * @return Google_Service_Calendar_CalendarList - */ - public function listCalendarList($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Calendar_CalendarList"); - } - /** - * Updates an existing calendar on the user's calendar list. This method - * supports patch semantics. (calendarList.patch) - * - * @param string $calendarId Calendar identifier. To retrieve calendar IDs call - * the calendarList.list method. If you want to access the primary calendar of - * the currently logged in user, use the "primary" keyword. - * @param Google_Service_Calendar_CalendarListEntry $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool colorRgbFormat Whether to use the foregroundColor and - * backgroundColor fields to write the calendar colors (RGB). If this feature is - * used, the index-based colorId field will be set to the best matching option - * automatically. Optional. The default is False. - * @return Google_Service_Calendar_CalendarListEntry - */ - public function patch($calendarId, Google_Service_Calendar_CalendarListEntry $postBody, $optParams = array()) - { - $params = array('calendarId' => $calendarId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Calendar_CalendarListEntry"); - } - /** - * Updates an existing calendar on the user's calendar list. - * (calendarList.update) - * - * @param string $calendarId Calendar identifier. To retrieve calendar IDs call - * the calendarList.list method. If you want to access the primary calendar of - * the currently logged in user, use the "primary" keyword. - * @param Google_Service_Calendar_CalendarListEntry $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool colorRgbFormat Whether to use the foregroundColor and - * backgroundColor fields to write the calendar colors (RGB). If this feature is - * used, the index-based colorId field will be set to the best matching option - * automatically. Optional. The default is False. - * @return Google_Service_Calendar_CalendarListEntry - */ - public function update($calendarId, Google_Service_Calendar_CalendarListEntry $postBody, $optParams = array()) - { - $params = array('calendarId' => $calendarId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Calendar_CalendarListEntry"); - } - /** - * Watch for changes to CalendarList resources. (calendarList.watch) - * - * @param Google_Service_Calendar_Channel $postBody - * @param array $optParams Optional parameters. - * - * @opt_param int maxResults Maximum number of entries returned on one result - * page. By default the value is 100 entries. The page size can never be larger - * than 250 entries. Optional. - * @opt_param string minAccessRole The minimum access role for the user in the - * returned entries. Optional. The default is no restriction. - * @opt_param string pageToken Token specifying which result page to return. - * Optional. - * @opt_param bool showDeleted Whether to include deleted calendar list entries - * in the result. Optional. The default is False. - * @opt_param bool showHidden Whether to show hidden entries. Optional. The - * default is False. - * @opt_param string syncToken Token obtained from the nextSyncToken field - * returned on the last page of results from the previous list request. It makes - * the result of this list request contain only entries that have changed since - * then. If only read-only fields such as calendar properties or ACLs have - * changed, the entry won't be returned. All entries deleted and hidden since - * the previous list request will always be in the result set and it is not - * allowed to set showDeleted neither showHidden to False. To ensure client - * state consistency minAccessRole query parameter cannot be specified together - * with nextSyncToken. If the syncToken expires, the server will respond with a - * 410 GONE response code and the client should clear its storage and perform a - * full synchronization without any syncToken. Learn more about incremental - * synchronization. Optional. The default is to return all entries. - * @return Google_Service_Calendar_Channel - */ - public function watch(Google_Service_Calendar_Channel $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('watch', array($params), "Google_Service_Calendar_Channel"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/Resource/Calendars.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/Resource/Calendars.php deleted file mode 100644 index e38c6ee2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/Resource/Calendars.php +++ /dev/null @@ -1,119 +0,0 @@ - - * $calendarService = new Google_Service_Calendar(...); - * $calendars = $calendarService->calendars; - * - */ -class Google_Service_Calendar_Resource_Calendars extends Google_Service_Resource -{ - /** - * Clears a primary calendar. This operation deletes all events associated with - * the primary calendar of an account. (calendars.clear) - * - * @param string $calendarId Calendar identifier. To retrieve calendar IDs call - * the calendarList.list method. If you want to access the primary calendar of - * the currently logged in user, use the "primary" keyword. - * @param array $optParams Optional parameters. - */ - public function clear($calendarId, $optParams = array()) - { - $params = array('calendarId' => $calendarId); - $params = array_merge($params, $optParams); - return $this->call('clear', array($params)); - } - /** - * Deletes a secondary calendar. Use calendars.clear for clearing all events on - * primary calendars. (calendars.delete) - * - * @param string $calendarId Calendar identifier. To retrieve calendar IDs call - * the calendarList.list method. If you want to access the primary calendar of - * the currently logged in user, use the "primary" keyword. - * @param array $optParams Optional parameters. - */ - public function delete($calendarId, $optParams = array()) - { - $params = array('calendarId' => $calendarId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Returns metadata for a calendar. (calendars.get) - * - * @param string $calendarId Calendar identifier. To retrieve calendar IDs call - * the calendarList.list method. If you want to access the primary calendar of - * the currently logged in user, use the "primary" keyword. - * @param array $optParams Optional parameters. - * @return Google_Service_Calendar_Calendar - */ - public function get($calendarId, $optParams = array()) - { - $params = array('calendarId' => $calendarId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Calendar_Calendar"); - } - /** - * Creates a secondary calendar. (calendars.insert) - * - * @param Google_Service_Calendar_Calendar $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Calendar_Calendar - */ - public function insert(Google_Service_Calendar_Calendar $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Calendar_Calendar"); - } - /** - * Updates metadata for a calendar. This method supports patch semantics. - * (calendars.patch) - * - * @param string $calendarId Calendar identifier. To retrieve calendar IDs call - * the calendarList.list method. If you want to access the primary calendar of - * the currently logged in user, use the "primary" keyword. - * @param Google_Service_Calendar_Calendar $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Calendar_Calendar - */ - public function patch($calendarId, Google_Service_Calendar_Calendar $postBody, $optParams = array()) - { - $params = array('calendarId' => $calendarId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Calendar_Calendar"); - } - /** - * Updates metadata for a calendar. (calendars.update) - * - * @param string $calendarId Calendar identifier. To retrieve calendar IDs call - * the calendarList.list method. If you want to access the primary calendar of - * the currently logged in user, use the "primary" keyword. - * @param Google_Service_Calendar_Calendar $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Calendar_Calendar - */ - public function update($calendarId, Google_Service_Calendar_Calendar $postBody, $optParams = array()) - { - $params = array('calendarId' => $calendarId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Calendar_Calendar"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/Resource/Channels.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/Resource/Channels.php deleted file mode 100644 index 10edfe8e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/Resource/Channels.php +++ /dev/null @@ -1,40 +0,0 @@ - - * $calendarService = new Google_Service_Calendar(...); - * $channels = $calendarService->channels; - * - */ -class Google_Service_Calendar_Resource_Channels extends Google_Service_Resource -{ - /** - * Stop watching resources through this channel (channels.stop) - * - * @param Google_Service_Calendar_Channel $postBody - * @param array $optParams Optional parameters. - */ - public function stop(Google_Service_Calendar_Channel $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('stop', array($params)); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/Resource/Colors.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/Resource/Colors.php deleted file mode 100644 index 1c31eb88..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/Resource/Colors.php +++ /dev/null @@ -1,40 +0,0 @@ - - * $calendarService = new Google_Service_Calendar(...); - * $colors = $calendarService->colors; - * - */ -class Google_Service_Calendar_Resource_Colors extends Google_Service_Resource -{ - /** - * Returns the color definitions for calendars and events. (colors.get) - * - * @param array $optParams Optional parameters. - * @return Google_Service_Calendar_Colors - */ - public function get($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Calendar_Colors"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/Resource/Events.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/Resource/Events.php deleted file mode 100644 index 0fb4b1e9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/Resource/Events.php +++ /dev/null @@ -1,483 +0,0 @@ - - * $calendarService = new Google_Service_Calendar(...); - * $events = $calendarService->events; - * - */ -class Google_Service_Calendar_Resource_Events extends Google_Service_Resource -{ - /** - * Deletes an event. (events.delete) - * - * @param string $calendarId Calendar identifier. To retrieve calendar IDs call - * the calendarList.list method. If you want to access the primary calendar of - * the currently logged in user, use the "primary" keyword. - * @param string $eventId Event identifier. - * @param array $optParams Optional parameters. - * - * @opt_param bool sendNotifications Deprecated. Please use sendUpdates instead. - * - * Whether to send notifications about the deletion of the event. Note that some - * emails might still be sent even if you set the value to false. The default is - * false. - * @opt_param string sendUpdates Guests who should receive notifications about - * the deletion of the event. - */ - public function delete($calendarId, $eventId, $optParams = array()) - { - $params = array('calendarId' => $calendarId, 'eventId' => $eventId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Returns an event. (events.get) - * - * @param string $calendarId Calendar identifier. To retrieve calendar IDs call - * the calendarList.list method. If you want to access the primary calendar of - * the currently logged in user, use the "primary" keyword. - * @param string $eventId Event identifier. - * @param array $optParams Optional parameters. - * - * @opt_param bool alwaysIncludeEmail Deprecated and ignored. A value will - * always be returned in the email field for the organizer, creator and - * attendees, even if no real email address is available (i.e. a generated, non- - * working value will be provided). - * @opt_param int maxAttendees The maximum number of attendees to include in the - * response. If there are more than the specified number of attendees, only the - * participant is returned. Optional. - * @opt_param string timeZone Time zone used in the response. Optional. The - * default is the time zone of the calendar. - * @return Google_Service_Calendar_Event - */ - public function get($calendarId, $eventId, $optParams = array()) - { - $params = array('calendarId' => $calendarId, 'eventId' => $eventId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Calendar_Event"); - } - /** - * Imports an event. This operation is used to add a private copy of an existing - * event to a calendar. (events.import) - * - * @param string $calendarId Calendar identifier. To retrieve calendar IDs call - * the calendarList.list method. If you want to access the primary calendar of - * the currently logged in user, use the "primary" keyword. - * @param Google_Service_Calendar_Event $postBody - * @param array $optParams Optional parameters. - * - * @opt_param int conferenceDataVersion Version number of conference data - * supported by the API client. Version 0 assumes no conference data support and - * ignores conference data in the event's body. Version 1 enables support for - * copying of ConferenceData as well as for creating new conferences using the - * createRequest field of conferenceData. The default is 0. - * @opt_param bool supportsAttachments Whether API client performing operation - * supports event attachments. Optional. The default is False. - * @return Google_Service_Calendar_Event - */ - public function import($calendarId, Google_Service_Calendar_Event $postBody, $optParams = array()) - { - $params = array('calendarId' => $calendarId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('import', array($params), "Google_Service_Calendar_Event"); - } - /** - * Creates an event. (events.insert) - * - * @param string $calendarId Calendar identifier. To retrieve calendar IDs call - * the calendarList.list method. If you want to access the primary calendar of - * the currently logged in user, use the "primary" keyword. - * @param Google_Service_Calendar_Event $postBody - * @param array $optParams Optional parameters. - * - * @opt_param int conferenceDataVersion Version number of conference data - * supported by the API client. Version 0 assumes no conference data support and - * ignores conference data in the event's body. Version 1 enables support for - * copying of ConferenceData as well as for creating new conferences using the - * createRequest field of conferenceData. The default is 0. - * @opt_param int maxAttendees The maximum number of attendees to include in the - * response. If there are more than the specified number of attendees, only the - * participant is returned. Optional. - * @opt_param bool sendNotifications Deprecated. Please use sendUpdates instead. - * - * Whether to send notifications about the creation of the new event. Note that - * some emails might still be sent even if you set the value to false. The - * default is false. - * @opt_param string sendUpdates Whether to send notifications about the - * creation of the new event. Note that some emails might still be sent. The - * default is false. - * @opt_param bool supportsAttachments Whether API client performing operation - * supports event attachments. Optional. The default is False. - * @return Google_Service_Calendar_Event - */ - public function insert($calendarId, Google_Service_Calendar_Event $postBody, $optParams = array()) - { - $params = array('calendarId' => $calendarId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Calendar_Event"); - } - /** - * Returns instances of the specified recurring event. (events.instances) - * - * @param string $calendarId Calendar identifier. To retrieve calendar IDs call - * the calendarList.list method. If you want to access the primary calendar of - * the currently logged in user, use the "primary" keyword. - * @param string $eventId Recurring event identifier. - * @param array $optParams Optional parameters. - * - * @opt_param bool alwaysIncludeEmail Deprecated and ignored. A value will - * always be returned in the email field for the organizer, creator and - * attendees, even if no real email address is available (i.e. a generated, non- - * working value will be provided). - * @opt_param int maxAttendees The maximum number of attendees to include in the - * response. If there are more than the specified number of attendees, only the - * participant is returned. Optional. - * @opt_param int maxResults Maximum number of events returned on one result - * page. By default the value is 250 events. The page size can never be larger - * than 2500 events. Optional. - * @opt_param string originalStart The original start time of the instance in - * the result. Optional. - * @opt_param string pageToken Token specifying which result page to return. - * Optional. - * @opt_param bool showDeleted Whether to include deleted events (with status - * equals "cancelled") in the result. Cancelled instances of recurring events - * will still be included if singleEvents is False. Optional. The default is - * False. - * @opt_param string timeMax Upper bound (exclusive) for an event's start time - * to filter by. Optional. The default is not to filter by start time. Must be - * an RFC3339 timestamp with mandatory time zone offset. - * @opt_param string timeMin Lower bound (inclusive) for an event's end time to - * filter by. Optional. The default is not to filter by end time. Must be an - * RFC3339 timestamp with mandatory time zone offset. - * @opt_param string timeZone Time zone used in the response. Optional. The - * default is the time zone of the calendar. - * @return Google_Service_Calendar_Events - */ - public function instances($calendarId, $eventId, $optParams = array()) - { - $params = array('calendarId' => $calendarId, 'eventId' => $eventId); - $params = array_merge($params, $optParams); - return $this->call('instances', array($params), "Google_Service_Calendar_Events"); - } - /** - * Returns events on the specified calendar. (events.listEvents) - * - * @param string $calendarId Calendar identifier. To retrieve calendar IDs call - * the calendarList.list method. If you want to access the primary calendar of - * the currently logged in user, use the "primary" keyword. - * @param array $optParams Optional parameters. - * - * @opt_param bool alwaysIncludeEmail Deprecated and ignored. A value will - * always be returned in the email field for the organizer, creator and - * attendees, even if no real email address is available (i.e. a generated, non- - * working value will be provided). - * @opt_param string iCalUID Specifies event ID in the iCalendar format to be - * included in the response. Optional. - * @opt_param int maxAttendees The maximum number of attendees to include in the - * response. If there are more than the specified number of attendees, only the - * participant is returned. Optional. - * @opt_param int maxResults Maximum number of events returned on one result - * page. The number of events in the resulting page may be less than this value, - * or none at all, even if there are more events matching the query. Incomplete - * pages can be detected by a non-empty nextPageToken field in the response. By - * default the value is 250 events. The page size can never be larger than 2500 - * events. Optional. - * @opt_param string orderBy The order of the events returned in the result. - * Optional. The default is an unspecified, stable order. - * @opt_param string pageToken Token specifying which result page to return. - * Optional. - * @opt_param string privateExtendedProperty Extended properties constraint - * specified as propertyName=value. Matches only private properties. This - * parameter might be repeated multiple times to return events that match all - * given constraints. - * @opt_param string q Free text search terms to find events that match these - * terms in any field, except for extended properties. Optional. - * @opt_param string sharedExtendedProperty Extended properties constraint - * specified as propertyName=value. Matches only shared properties. This - * parameter might be repeated multiple times to return events that match all - * given constraints. - * @opt_param bool showDeleted Whether to include deleted events (with status - * equals "cancelled") in the result. Cancelled instances of recurring events - * (but not the underlying recurring event) will still be included if - * showDeleted and singleEvents are both False. If showDeleted and singleEvents - * are both True, only single instances of deleted events (but not the - * underlying recurring events) are returned. Optional. The default is False. - * @opt_param bool showHiddenInvitations Whether to include hidden invitations - * in the result. Optional. The default is False. - * @opt_param bool singleEvents Whether to expand recurring events into - * instances and only return single one-off events and instances of recurring - * events, but not the underlying recurring events themselves. Optional. The - * default is False. - * @opt_param string syncToken Token obtained from the nextSyncToken field - * returned on the last page of results from the previous list request. It makes - * the result of this list request contain only entries that have changed since - * then. All events deleted since the previous list request will always be in - * the result set and it is not allowed to set showDeleted to False. There are - * several query parameters that cannot be specified together with nextSyncToken - * to ensure consistency of the client state. - * - * These are: - iCalUID - orderBy - privateExtendedProperty - q - - * sharedExtendedProperty - timeMin - timeMax - updatedMin If the syncToken - * expires, the server will respond with a 410 GONE response code and the client - * should clear its storage and perform a full synchronization without any - * syncToken. Learn more about incremental synchronization. Optional. The - * default is to return all entries. - * @opt_param string timeMax Upper bound (exclusive) for an event's start time - * to filter by. Optional. The default is not to filter by start time. Must be - * an RFC3339 timestamp with mandatory time zone offset, for example, - * 2011-06-03T10:00:00-07:00, 2011-06-03T10:00:00Z. Milliseconds may be provided - * but are ignored. If timeMin is set, timeMax must be greater than timeMin. - * @opt_param string timeMin Lower bound (exclusive) for an event's end time to - * filter by. Optional. The default is not to filter by end time. Must be an - * RFC3339 timestamp with mandatory time zone offset, for example, - * 2011-06-03T10:00:00-07:00, 2011-06-03T10:00:00Z. Milliseconds may be provided - * but are ignored. If timeMax is set, timeMin must be smaller than timeMax. - * @opt_param string timeZone Time zone used in the response. Optional. The - * default is the time zone of the calendar. - * @opt_param string updatedMin Lower bound for an event's last modification - * time (as a RFC3339 timestamp) to filter by. When specified, entries deleted - * since this time will always be included regardless of showDeleted. Optional. - * The default is not to filter by last modification time. - * @return Google_Service_Calendar_Events - */ - public function listEvents($calendarId, $optParams = array()) - { - $params = array('calendarId' => $calendarId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Calendar_Events"); - } - /** - * Moves an event to another calendar, i.e. changes an event's organizer. - * (events.move) - * - * @param string $calendarId Calendar identifier of the source calendar where - * the event currently is on. - * @param string $eventId Event identifier. - * @param string $destination Calendar identifier of the target calendar where - * the event is to be moved to. - * @param array $optParams Optional parameters. - * - * @opt_param bool sendNotifications Deprecated. Please use sendUpdates instead. - * - * Whether to send notifications about the change of the event's organizer. Note - * that some emails might still be sent even if you set the value to false. The - * default is false. - * @opt_param string sendUpdates Guests who should receive notifications about - * the change of the event's organizer. - * @return Google_Service_Calendar_Event - */ - public function move($calendarId, $eventId, $destination, $optParams = array()) - { - $params = array('calendarId' => $calendarId, 'eventId' => $eventId, 'destination' => $destination); - $params = array_merge($params, $optParams); - return $this->call('move', array($params), "Google_Service_Calendar_Event"); - } - /** - * Updates an event. This method supports patch semantics. (events.patch) - * - * @param string $calendarId Calendar identifier. To retrieve calendar IDs call - * the calendarList.list method. If you want to access the primary calendar of - * the currently logged in user, use the "primary" keyword. - * @param string $eventId Event identifier. - * @param Google_Service_Calendar_Event $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool alwaysIncludeEmail Deprecated and ignored. A value will - * always be returned in the email field for the organizer, creator and - * attendees, even if no real email address is available (i.e. a generated, non- - * working value will be provided). - * @opt_param int conferenceDataVersion Version number of conference data - * supported by the API client. Version 0 assumes no conference data support and - * ignores conference data in the event's body. Version 1 enables support for - * copying of ConferenceData as well as for creating new conferences using the - * createRequest field of conferenceData. The default is 0. - * @opt_param int maxAttendees The maximum number of attendees to include in the - * response. If there are more than the specified number of attendees, only the - * participant is returned. Optional. - * @opt_param bool sendNotifications Deprecated. Please use sendUpdates instead. - * - * Whether to send notifications about the event update (for example, - * description changes, etc.). Note that some emails might still be sent even if - * you set the value to false. The default is false. - * @opt_param string sendUpdates Guests who should receive notifications about - * the event update (for example, title changes, etc.). - * @opt_param bool supportsAttachments Whether API client performing operation - * supports event attachments. Optional. The default is False. - * @return Google_Service_Calendar_Event - */ - public function patch($calendarId, $eventId, Google_Service_Calendar_Event $postBody, $optParams = array()) - { - $params = array('calendarId' => $calendarId, 'eventId' => $eventId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Calendar_Event"); - } - /** - * Creates an event based on a simple text string. (events.quickAdd) - * - * @param string $calendarId Calendar identifier. To retrieve calendar IDs call - * the calendarList.list method. If you want to access the primary calendar of - * the currently logged in user, use the "primary" keyword. - * @param string $text The text describing the event to be created. - * @param array $optParams Optional parameters. - * - * @opt_param bool sendNotifications Deprecated. Please use sendUpdates instead. - * - * Whether to send notifications about the creation of the event. Note that some - * emails might still be sent even if you set the value to false. The default is - * false. - * @opt_param string sendUpdates Guests who should receive notifications about - * the creation of the new event. - * @return Google_Service_Calendar_Event - */ - public function quickAdd($calendarId, $text, $optParams = array()) - { - $params = array('calendarId' => $calendarId, 'text' => $text); - $params = array_merge($params, $optParams); - return $this->call('quickAdd', array($params), "Google_Service_Calendar_Event"); - } - /** - * Updates an event. (events.update) - * - * @param string $calendarId Calendar identifier. To retrieve calendar IDs call - * the calendarList.list method. If you want to access the primary calendar of - * the currently logged in user, use the "primary" keyword. - * @param string $eventId Event identifier. - * @param Google_Service_Calendar_Event $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool alwaysIncludeEmail Deprecated and ignored. A value will - * always be returned in the email field for the organizer, creator and - * attendees, even if no real email address is available (i.e. a generated, non- - * working value will be provided). - * @opt_param int conferenceDataVersion Version number of conference data - * supported by the API client. Version 0 assumes no conference data support and - * ignores conference data in the event's body. Version 1 enables support for - * copying of ConferenceData as well as for creating new conferences using the - * createRequest field of conferenceData. The default is 0. - * @opt_param int maxAttendees The maximum number of attendees to include in the - * response. If there are more than the specified number of attendees, only the - * participant is returned. Optional. - * @opt_param bool sendNotifications Deprecated. Please use sendUpdates instead. - * - * Whether to send notifications about the event update (for example, - * description changes, etc.). Note that some emails might still be sent even if - * you set the value to false. The default is false. - * @opt_param string sendUpdates Guests who should receive notifications about - * the event update (for example, title changes, etc.). - * @opt_param bool supportsAttachments Whether API client performing operation - * supports event attachments. Optional. The default is False. - * @return Google_Service_Calendar_Event - */ - public function update($calendarId, $eventId, Google_Service_Calendar_Event $postBody, $optParams = array()) - { - $params = array('calendarId' => $calendarId, 'eventId' => $eventId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Calendar_Event"); - } - /** - * Watch for changes to Events resources. (events.watch) - * - * @param string $calendarId Calendar identifier. To retrieve calendar IDs call - * the calendarList.list method. If you want to access the primary calendar of - * the currently logged in user, use the "primary" keyword. - * @param Google_Service_Calendar_Channel $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool alwaysIncludeEmail Deprecated and ignored. A value will - * always be returned in the email field for the organizer, creator and - * attendees, even if no real email address is available (i.e. a generated, non- - * working value will be provided). - * @opt_param string iCalUID Specifies event ID in the iCalendar format to be - * included in the response. Optional. - * @opt_param int maxAttendees The maximum number of attendees to include in the - * response. If there are more than the specified number of attendees, only the - * participant is returned. Optional. - * @opt_param int maxResults Maximum number of events returned on one result - * page. The number of events in the resulting page may be less than this value, - * or none at all, even if there are more events matching the query. Incomplete - * pages can be detected by a non-empty nextPageToken field in the response. By - * default the value is 250 events. The page size can never be larger than 2500 - * events. Optional. - * @opt_param string orderBy The order of the events returned in the result. - * Optional. The default is an unspecified, stable order. - * @opt_param string pageToken Token specifying which result page to return. - * Optional. - * @opt_param string privateExtendedProperty Extended properties constraint - * specified as propertyName=value. Matches only private properties. This - * parameter might be repeated multiple times to return events that match all - * given constraints. - * @opt_param string q Free text search terms to find events that match these - * terms in any field, except for extended properties. Optional. - * @opt_param string sharedExtendedProperty Extended properties constraint - * specified as propertyName=value. Matches only shared properties. This - * parameter might be repeated multiple times to return events that match all - * given constraints. - * @opt_param bool showDeleted Whether to include deleted events (with status - * equals "cancelled") in the result. Cancelled instances of recurring events - * (but not the underlying recurring event) will still be included if - * showDeleted and singleEvents are both False. If showDeleted and singleEvents - * are both True, only single instances of deleted events (but not the - * underlying recurring events) are returned. Optional. The default is False. - * @opt_param bool showHiddenInvitations Whether to include hidden invitations - * in the result. Optional. The default is False. - * @opt_param bool singleEvents Whether to expand recurring events into - * instances and only return single one-off events and instances of recurring - * events, but not the underlying recurring events themselves. Optional. The - * default is False. - * @opt_param string syncToken Token obtained from the nextSyncToken field - * returned on the last page of results from the previous list request. It makes - * the result of this list request contain only entries that have changed since - * then. All events deleted since the previous list request will always be in - * the result set and it is not allowed to set showDeleted to False. There are - * several query parameters that cannot be specified together with nextSyncToken - * to ensure consistency of the client state. - * - * These are: - iCalUID - orderBy - privateExtendedProperty - q - - * sharedExtendedProperty - timeMin - timeMax - updatedMin If the syncToken - * expires, the server will respond with a 410 GONE response code and the client - * should clear its storage and perform a full synchronization without any - * syncToken. Learn more about incremental synchronization. Optional. The - * default is to return all entries. - * @opt_param string timeMax Upper bound (exclusive) for an event's start time - * to filter by. Optional. The default is not to filter by start time. Must be - * an RFC3339 timestamp with mandatory time zone offset, for example, - * 2011-06-03T10:00:00-07:00, 2011-06-03T10:00:00Z. Milliseconds may be provided - * but are ignored. If timeMin is set, timeMax must be greater than timeMin. - * @opt_param string timeMin Lower bound (exclusive) for an event's end time to - * filter by. Optional. The default is not to filter by end time. Must be an - * RFC3339 timestamp with mandatory time zone offset, for example, - * 2011-06-03T10:00:00-07:00, 2011-06-03T10:00:00Z. Milliseconds may be provided - * but are ignored. If timeMax is set, timeMin must be smaller than timeMax. - * @opt_param string timeZone Time zone used in the response. Optional. The - * default is the time zone of the calendar. - * @opt_param string updatedMin Lower bound for an event's last modification - * time (as a RFC3339 timestamp) to filter by. When specified, entries deleted - * since this time will always be included regardless of showDeleted. Optional. - * The default is not to filter by last modification time. - * @return Google_Service_Calendar_Channel - */ - public function watch($calendarId, Google_Service_Calendar_Channel $postBody, $optParams = array()) - { - $params = array('calendarId' => $calendarId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('watch', array($params), "Google_Service_Calendar_Channel"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/Resource/Freebusy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/Resource/Freebusy.php deleted file mode 100644 index 196b7e37..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/Resource/Freebusy.php +++ /dev/null @@ -1,41 +0,0 @@ - - * $calendarService = new Google_Service_Calendar(...); - * $freebusy = $calendarService->freebusy; - * - */ -class Google_Service_Calendar_Resource_Freebusy extends Google_Service_Resource -{ - /** - * Returns free/busy information for a set of calendars. (freebusy.query) - * - * @param Google_Service_Calendar_FreeBusyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Calendar_FreeBusyResponse - */ - public function query(Google_Service_Calendar_FreeBusyRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('query', array($params), "Google_Service_Calendar_FreeBusyResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/Resource/Settings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/Resource/Settings.php deleted file mode 100644 index ff94e856..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/Resource/Settings.php +++ /dev/null @@ -1,92 +0,0 @@ - - * $calendarService = new Google_Service_Calendar(...); - * $settings = $calendarService->settings; - * - */ -class Google_Service_Calendar_Resource_Settings extends Google_Service_Resource -{ - /** - * Returns a single user setting. (settings.get) - * - * @param string $setting The id of the user setting. - * @param array $optParams Optional parameters. - * @return Google_Service_Calendar_Setting - */ - public function get($setting, $optParams = array()) - { - $params = array('setting' => $setting); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Calendar_Setting"); - } - /** - * Returns all user settings for the authenticated user. (settings.listSettings) - * - * @param array $optParams Optional parameters. - * - * @opt_param int maxResults Maximum number of entries returned on one result - * page. By default the value is 100 entries. The page size can never be larger - * than 250 entries. Optional. - * @opt_param string pageToken Token specifying which result page to return. - * Optional. - * @opt_param string syncToken Token obtained from the nextSyncToken field - * returned on the last page of results from the previous list request. It makes - * the result of this list request contain only entries that have changed since - * then. If the syncToken expires, the server will respond with a 410 GONE - * response code and the client should clear its storage and perform a full - * synchronization without any syncToken. Learn more about incremental - * synchronization. Optional. The default is to return all entries. - * @return Google_Service_Calendar_Settings - */ - public function listSettings($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Calendar_Settings"); - } - /** - * Watch for changes to Settings resources. (settings.watch) - * - * @param Google_Service_Calendar_Channel $postBody - * @param array $optParams Optional parameters. - * - * @opt_param int maxResults Maximum number of entries returned on one result - * page. By default the value is 100 entries. The page size can never be larger - * than 250 entries. Optional. - * @opt_param string pageToken Token specifying which result page to return. - * Optional. - * @opt_param string syncToken Token obtained from the nextSyncToken field - * returned on the last page of results from the previous list request. It makes - * the result of this list request contain only entries that have changed since - * then. If the syncToken expires, the server will respond with a 410 GONE - * response code and the client should clear its storage and perform a full - * synchronization without any syncToken. Learn more about incremental - * synchronization. Optional. The default is to return all entries. - * @return Google_Service_Calendar_Channel - */ - public function watch(Google_Service_Calendar_Channel $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('watch', array($params), "Google_Service_Calendar_Channel"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/Setting.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/Setting.php deleted file mode 100644 index 1c666f14..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/Setting.php +++ /dev/null @@ -1,57 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - 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 setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/Settings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/Settings.php deleted file mode 100644 index 96185d6a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/Settings.php +++ /dev/null @@ -1,74 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_Calendar_Setting - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Calendar_Setting - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setNextSyncToken($nextSyncToken) - { - $this->nextSyncToken = $nextSyncToken; - } - public function getNextSyncToken() - { - return $this->nextSyncToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/TimePeriod.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/TimePeriod.php deleted file mode 100644 index d7dc8125..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Calendar/TimePeriod.php +++ /dev/null @@ -1,39 +0,0 @@ -end = $end; - } - public function getEnd() - { - return $this->end; - } - public function setStart($start) - { - $this->start = $start; - } - public function getStart() - { - return $this->start; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Chromewebstore.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Chromewebstore.php deleted file mode 100644 index 48a8a0d5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Chromewebstore.php +++ /dev/null @@ -1,247 +0,0 @@ - - * Lets you access to data about apps and extensions, as well as manage them.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Chromewebstore extends Google_Service -{ - /** View your Chrome Web Store apps and extensions. */ - const CHROMEWEBSTORE_READONLY = - "https://www.googleapis.com/auth/chromewebstore.readonly"; - - public $inAppProducts; - public $items; - public $licenses; - public $payments; - - /** - * Constructs the internal representation of the Chromewebstore service. - * - * @param Google_Client $client - */ - public function __construct(Google_Client $client) - { - parent::__construct($client); - $this->rootUrl = 'https://www.googleapis.com/'; - $this->servicePath = 'chromewebstore/v1.1/'; - $this->version = 'v1.1'; - $this->serviceName = 'chromewebstore'; - - $this->inAppProducts = new Google_Service_Chromewebstore_Resource_InAppProducts( - $this, - $this->serviceName, - 'inAppProducts', - array( - 'methods' => array( - 'get' => array( - 'path' => 'items/{itemId}/skus/{sku}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'itemId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sku' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'gl' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'hl' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'items/{itemId}/skus', - 'httpMethod' => 'GET', - 'parameters' => array( - 'itemId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'gl' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'hl' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->items = new Google_Service_Chromewebstore_Resource_Items( - $this, - $this->serviceName, - 'items', - array( - 'methods' => array( - 'get' => array( - 'path' => 'items/{itemId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'itemId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'insert' => array( - 'path' => 'items', - 'httpMethod' => 'POST', - 'parameters' => array( - 'publisherEmail' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'items/{itemId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'itemId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'publish' => array( - 'path' => 'items/{itemId}/publish', - 'httpMethod' => 'POST', - 'parameters' => array( - 'itemId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'deployPercentage' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'publishTarget' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'items/{itemId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'itemId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->licenses = new Google_Service_Chromewebstore_Resource_Licenses( - $this, - $this->serviceName, - 'licenses', - array( - 'methods' => array( - 'get' => array( - 'path' => 'licenses/{appId}/{userId}', - 'httpMethod' => 'GET', - 'parameters' => array(), - ),'getUserLicense' => array( - 'path' => 'userlicenses/{appId}', - 'httpMethod' => 'GET', - 'parameters' => array(), - ), - ) - ) - ); - $this->payments = new Google_Service_Chromewebstore_Resource_Payments( - $this, - $this->serviceName, - 'payments', - array( - 'methods' => array( - 'buy' => array( - 'path' => 'payments/buy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => 'items/{itemId}/skus/{sku}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'itemId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sku' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'items/{itemId}/payments', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Chromewebstore/InAppProduct.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Chromewebstore/InAppProduct.php deleted file mode 100644 index 288317f6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Chromewebstore/InAppProduct.php +++ /dev/null @@ -1,90 +0,0 @@ - "item_id", - ); - public $itemId; - public $kind; - protected $localeDataType = 'Google_Service_Chromewebstore_InAppProductLocaleData'; - protected $localeDataDataType = 'array'; - protected $pricesType = 'Google_Service_Chromewebstore_InAppProductPrices'; - protected $pricesDataType = 'array'; - public $sku; - public $state; - public $type; - - public function setItemId($itemId) - { - $this->itemId = $itemId; - } - public function getItemId() - { - return $this->itemId; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLocaleData($localeData) - { - $this->localeData = $localeData; - } - public function getLocaleData() - { - return $this->localeData; - } - public function setPrices($prices) - { - $this->prices = $prices; - } - public function getPrices() - { - return $this->prices; - } - public function setSku($sku) - { - $this->sku = $sku; - } - public function getSku() - { - return $this->sku; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Chromewebstore/InAppProductList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Chromewebstore/InAppProductList.php deleted file mode 100644 index 5423e50c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Chromewebstore/InAppProductList.php +++ /dev/null @@ -1,41 +0,0 @@ -inAppProducts = $inAppProducts; - } - public function getInAppProducts() - { - return $this->inAppProducts; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Chromewebstore/InAppProductLocaleData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Chromewebstore/InAppProductLocaleData.php deleted file mode 100644 index c7fe4e82..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Chromewebstore/InAppProductLocaleData.php +++ /dev/null @@ -1,48 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setLanguageCode($languageCode) - { - $this->languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Chromewebstore/InAppProductPrices.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Chromewebstore/InAppProductPrices.php deleted file mode 100644 index 92195631..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Chromewebstore/InAppProductPrices.php +++ /dev/null @@ -1,48 +0,0 @@ -currencyCode = $currencyCode; - } - public function getCurrencyCode() - { - return $this->currencyCode; - } - public function setRegionCode($regionCode) - { - $this->regionCode = $regionCode; - } - public function getRegionCode() - { - return $this->regionCode; - } - public function setValueMicros($valueMicros) - { - $this->valueMicros = $valueMicros; - } - public function getValueMicros() - { - return $this->valueMicros; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Chromewebstore/Item.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Chromewebstore/Item.php deleted file mode 100644 index d6db59c9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Chromewebstore/Item.php +++ /dev/null @@ -1,106 +0,0 @@ - "item_id", - ); - public $crxVersion; - public $id; - public $itemError; - public $itemId; - public $kind; - public $publicKey; - public $status; - public $statusDetail; - public $uploadState; - - public function setCrxVersion($crxVersion) - { - $this->crxVersion = $crxVersion; - } - public function getCrxVersion() - { - return $this->crxVersion; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setItemError($itemError) - { - $this->itemError = $itemError; - } - public function getItemError() - { - return $this->itemError; - } - public function setItemId($itemId) - { - $this->itemId = $itemId; - } - public function getItemId() - { - return $this->itemId; - } - 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 setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setStatusDetail($statusDetail) - { - $this->statusDetail = $statusDetail; - } - public function getStatusDetail() - { - return $this->statusDetail; - } - public function setUploadState($uploadState) - { - $this->uploadState = $uploadState; - } - public function getUploadState() - { - return $this->uploadState; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Chromewebstore/Jwt.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Chromewebstore/Jwt.php deleted file mode 100644 index 75fe3c9f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Chromewebstore/Jwt.php +++ /dev/null @@ -1,57 +0,0 @@ -jwt = $jwt; - } - public function getJwt() - { - return $this->jwt; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setPaymentData($paymentData) - { - $this->paymentData = $paymentData; - } - public function getPaymentData() - { - return $this->paymentData; - } - public function setSignature($signature) - { - $this->signature = $signature; - } - public function getSignature() - { - return $this->signature; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Chromewebstore/License.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Chromewebstore/License.php deleted file mode 100644 index 7954d44f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Chromewebstore/License.php +++ /dev/null @@ -1,84 +0,0 @@ -accessLevel = $accessLevel; - } - public function getAccessLevel() - { - return $this->accessLevel; - } - public function setAppId($appId) - { - $this->appId = $appId; - } - public function getAppId() - { - return $this->appId; - } - 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 setMaxAgeSecs($maxAgeSecs) - { - $this->maxAgeSecs = $maxAgeSecs; - } - public function getMaxAgeSecs() - { - return $this->maxAgeSecs; - } - public function setResult($result) - { - $this->result = $result; - } - public function getResult() - { - return $this->result; - } - public function setUserId($userId) - { - $this->userId = $userId; - } - public function getUserId() - { - return $this->userId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Chromewebstore/PaymentsBuyRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Chromewebstore/PaymentsBuyRequest.php deleted file mode 100644 index f15c1bb7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Chromewebstore/PaymentsBuyRequest.php +++ /dev/null @@ -1,66 +0,0 @@ -gl = $gl; - } - public function getGl() - { - return $this->gl; - } - public function setHl($hl) - { - $this->hl = $hl; - } - public function getHl() - { - return $this->hl; - } - public function setItemId($itemId) - { - $this->itemId = $itemId; - } - public function getItemId() - { - return $this->itemId; - } - public function setPaymentVersion($paymentVersion) - { - $this->paymentVersion = $paymentVersion; - } - public function getPaymentVersion() - { - return $this->paymentVersion; - } - public function setSku($sku) - { - $this->sku = $sku; - } - public function getSku() - { - return $this->sku; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Chromewebstore/PaymentsDeleteResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Chromewebstore/PaymentsDeleteResponse.php deleted file mode 100644 index bff40373..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Chromewebstore/PaymentsDeleteResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -status = $status; - } - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Chromewebstore/PaymentsListResponseItems.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Chromewebstore/PaymentsListResponseItems.php deleted file mode 100644 index 21f9ebfa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Chromewebstore/PaymentsListResponseItems.php +++ /dev/null @@ -1,84 +0,0 @@ -createdTime = $createdTime; - } - public function getCreatedTime() - { - return $this->createdTime; - } - public function setItemId($itemId) - { - $this->itemId = $itemId; - } - public function getItemId() - { - return $this->itemId; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setPaymentData($paymentData) - { - $this->paymentData = $paymentData; - } - public function getPaymentData() - { - return $this->paymentData; - } - public function setSignature($signature) - { - $this->signature = $signature; - } - public function getSignature() - { - return $this->signature; - } - public function setSku($sku) - { - $this->sku = $sku; - } - public function getSku() - { - return $this->sku; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Chromewebstore/PublishRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Chromewebstore/PublishRequest.php deleted file mode 100644 index 33605802..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Chromewebstore/PublishRequest.php +++ /dev/null @@ -1,39 +0,0 @@ -deployPercentage = $deployPercentage; - } - public function getDeployPercentage() - { - return $this->deployPercentage; - } - public function setTarget($target) - { - $this->target = $target; - } - public function getTarget() - { - return $this->target; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Chromewebstore/Resource/InAppProducts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Chromewebstore/Resource/InAppProducts.php deleted file mode 100644 index 008df903..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Chromewebstore/Resource/InAppProducts.php +++ /dev/null @@ -1,68 +0,0 @@ - - * $chromewebstoreService = new Google_Service_Chromewebstore(...); - * $inAppProducts = $chromewebstoreService->inAppProducts; - * - */ -class Google_Service_Chromewebstore_Resource_InAppProducts extends Google_Service_Resource -{ - /** - * Gets the in-app product information of an item. (inAppProducts.get) - * - * @param string $itemId The ID of the item to query for in-app products. - * @param string $sku The in-app product ID. - * @param array $optParams Optional parameters. - * - * @opt_param string gl Specifies the region code of the in-app product when - * projection is THIN. - * @opt_param string hl Specifies the language code of the in-app product when - * projection is THIN. - * @opt_param string projection Whether to return a subset of the result - * @return Google_Service_Chromewebstore_InAppProduct - */ - public function get($itemId, $sku, $optParams = array()) - { - $params = array('itemId' => $itemId, 'sku' => $sku); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Chromewebstore_InAppProduct"); - } - /** - * Lists the in-app product information of an item. - * (inAppProducts.listInAppProducts) - * - * @param string $itemId The ID of the item to query for in-app products. - * @param array $optParams Optional parameters. - * - * @opt_param string gl Specifies the region code of the in-app product when - * projection is THIN. - * @opt_param string hl Specifies the language code of the in-app product when - * projection is THIN. - * @opt_param string projection Whether to return a subset of the result - * @return Google_Service_Chromewebstore_InAppProductList - */ - public function listInAppProducts($itemId, $optParams = array()) - { - $params = array('itemId' => $itemId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Chromewebstore_InAppProductList"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Chromewebstore/Resource/Items.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Chromewebstore/Resource/Items.php deleted file mode 100644 index c9f69e4d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Chromewebstore/Resource/Items.php +++ /dev/null @@ -1,109 +0,0 @@ - - * $chromewebstoreService = new Google_Service_Chromewebstore(...); - * $items = $chromewebstoreService->items; - * - */ -class Google_Service_Chromewebstore_Resource_Items extends Google_Service_Resource -{ - /** - * Gets your own Chrome Web Store item. (items.get) - * - * @param string $itemId Unique identifier representing the Chrome App, Chrome - * Extension, or the Chrome Theme. - * @param array $optParams Optional parameters. - * - * @opt_param string projection Determines which subset of the item information - * to return. - * @return Google_Service_Chromewebstore_Item - */ - public function get($itemId, $optParams = array()) - { - $params = array('itemId' => $itemId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Chromewebstore_Item"); - } - /** - * Inserts a new item. (items.insert) - * - * @param array $optParams Optional parameters. - * - * @opt_param string publisherEmail The email of the publisher who owns the - * items. Defaults to the caller's email address. - * @return Google_Service_Chromewebstore_Item - */ - public function insert($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Chromewebstore_Item"); - } - /** - * Updates an existing item. This method supports patch semantics. (items.patch) - * - * @param string $itemId The ID of the item to upload. - * @param Google_Service_Chromewebstore_Item $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Chromewebstore_Item - */ - public function patch($itemId, Google_Service_Chromewebstore_Item $postBody, $optParams = array()) - { - $params = array('itemId' => $itemId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Chromewebstore_Item"); - } - /** - * Publishes an item. (items.publish) - * - * @param string $itemId The ID of the item to publish. - * @param Google_Service_Chromewebstore_PublishRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param int deployPercentage The deploy percentage you want to set for - * your item. Valid values are [0, 100]. If set to any number less than 100, - * only that many percentage of users will be allowed to get the update. - * @opt_param string publishTarget Provide defined publishTarget in URL (case - * sensitive): publishTarget="trustedTesters" or publishTarget="default". - * Defaults to publishTarget="default". - * @return Google_Service_Chromewebstore_Item - */ - public function publish($itemId, Google_Service_Chromewebstore_PublishRequest $postBody, $optParams = array()) - { - $params = array('itemId' => $itemId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('publish', array($params), "Google_Service_Chromewebstore_Item"); - } - /** - * Updates an existing item. (items.update) - * - * @param string $itemId The ID of the item to upload. - * @param Google_Service_Chromewebstore_Item $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Chromewebstore_Item - */ - public function update($itemId, Google_Service_Chromewebstore_Item $postBody, $optParams = array()) - { - $params = array('itemId' => $itemId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Chromewebstore_Item"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Chromewebstore/Resource/Licenses.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Chromewebstore/Resource/Licenses.php deleted file mode 100644 index 46b00e35..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Chromewebstore/Resource/Licenses.php +++ /dev/null @@ -1,52 +0,0 @@ - - * $chromewebstoreService = new Google_Service_Chromewebstore(...); - * $licenses = $chromewebstoreService->licenses; - * - */ -class Google_Service_Chromewebstore_Resource_Licenses extends Google_Service_Resource -{ - /** - * Gets the licenses for Chrome hosted apps. (licenses.get) - * - * @param array $optParams Optional parameters. - * @return Google_Service_Chromewebstore_License - */ - public function get($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Chromewebstore_License"); - } - /** - * Gets the licenses for Chrome packaged apps. (licenses.getUserLicense) - * - * @param array $optParams Optional parameters. - * @return Google_Service_Chromewebstore_UserLicense - */ - public function getUserLicense($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('getUserLicense', array($params), "Google_Service_Chromewebstore_UserLicense"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Chromewebstore/Resource/Payments.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Chromewebstore/Resource/Payments.php deleted file mode 100644 index b07131a1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Chromewebstore/Resource/Payments.php +++ /dev/null @@ -1,73 +0,0 @@ - - * $chromewebstoreService = new Google_Service_Chromewebstore(...); - * $payments = $chromewebstoreService->payments; - * - */ -class Google_Service_Chromewebstore_Resource_Payments extends Google_Service_Resource -{ - /** - * Inserts a cart and returns the JWT. (payments.buy) - * - * @param Google_Service_Chromewebstore_PaymentsBuyRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string projection Whether to return Play Store fields or just the - * JWT. - * @return Google_Service_Chromewebstore_Jwt - */ - public function buy(Google_Service_Chromewebstore_PaymentsBuyRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('buy', array($params), "Google_Service_Chromewebstore_Jwt"); - } - /** - * Consumes the in-app product for the user. (payments.delete) - * - * @param string $itemId The ID of the item to consume the in-app product. - * @param string $sku The in-app product ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Chromewebstore_PaymentsDeleteResponse - */ - public function delete($itemId, $sku, $optParams = array()) - { - $params = array('itemId' => $itemId, 'sku' => $sku); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Chromewebstore_PaymentsDeleteResponse"); - } - /** - * Lists the in-app products that the user has purchased. - * (payments.listPayments) - * - * @param array $optParams Optional parameters. - * - * @opt_param string projection Whether to return all fields or a subset. - * @return Google_Service_Chromewebstore_PaymentsListResponse - */ - public function listPayments($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Chromewebstore_PaymentsListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Chromewebstore/UserLicense.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Chromewebstore/UserLicense.php deleted file mode 100644 index a1fce5ca..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Chromewebstore/UserLicense.php +++ /dev/null @@ -1,75 +0,0 @@ -accessLevel = $accessLevel; - } - public function getAccessLevel() - { - return $this->accessLevel; - } - public function setCreatedTime($createdTime) - { - $this->createdTime = $createdTime; - } - public function getCreatedTime() - { - return $this->createdTime; - } - public function setItemId($itemId) - { - $this->itemId = $itemId; - } - public function getItemId() - { - return $this->itemId; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setMaxAgeSecs($maxAgeSecs) - { - $this->maxAgeSecs = $maxAgeSecs; - } - public function getMaxAgeSecs() - { - return $this->maxAgeSecs; - } - public function setResult($result) - { - $this->result = $result; - } - public function getResult() - { - return $this->result; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih.php deleted file mode 100644 index bcd16cba..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih.php +++ /dev/null @@ -1,207 +0,0 @@ - - * Retrieving customer interactions API.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Cih extends Google_Service -{ - - - public $associatedEmails; - public $userInteractions; - - /** - * Constructs the internal representation of the Cih service. - * - * @param Google_Client $client - */ - public function __construct(Google_Client $client) - { - parent::__construct($client); - $this->rootUrl = 'https://www.googleapis.com/'; - $this->servicePath = 'cih/v3/'; - $this->version = 'v3'; - $this->serviceName = 'cih'; - - $this->associatedEmails = new Google_Service_Cih_Resource_AssociatedEmails( - $this, - $this->serviceName, - 'associatedEmails', - array( - 'methods' => array( - 'create' => array( - 'path' => 'associatedEmails/insert/{customerId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'associatedEmails/delete/{customerId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'emailAddress' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'operator' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->userInteractions = new Google_Service_Cih_Resource_UserInteractions( - $this, - $this->serviceName, - 'userInteractions', - array( - 'methods' => array( - 'get' => array( - 'path' => 'userInteractions/{entityType}/{entityId}/{timestamp}/{interactionType}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'entityType' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'entityId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'timestamp' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'interactionType' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'userInteractions/insert', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'list' => array( - 'path' => 'userInteractions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'entity' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - 'required' => true, - ), - 'entityFilter' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'excludePassedInteractionOrigin' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'excludePassedInteractionType' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'includeRelatedInteractions' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'interactionOrigin' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'interactionType' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'lookup_participant_info' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'maxInteractionsPerPage' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'metaTypeFilter' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'minMainEntityInteractions' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'phoneMatcher' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'timestampEnd' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'timestampStart' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/AdoptionInteraction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/AdoptionInteraction.php deleted file mode 100644 index 22ea185e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/AdoptionInteraction.php +++ /dev/null @@ -1,30 +0,0 @@ -latestTreatmentInstanceTimestamp = $latestTreatmentInstanceTimestamp; - } - public function getLatestTreatmentInstanceTimestamp() - { - return $this->latestTreatmentInstanceTimestamp; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/AdvertiserExperienceData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/AdvertiserExperienceData.php deleted file mode 100644 index fc3da1cd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/AdvertiserExperienceData.php +++ /dev/null @@ -1,31 +0,0 @@ -treatmentInstanceId = $treatmentInstanceId; - } - public function getTreatmentInstanceId() - { - return $this->treatmentInstanceId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/AssociatedEmail.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/AssociatedEmail.php deleted file mode 100644 index 04eed2dd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/AssociatedEmail.php +++ /dev/null @@ -1,48 +0,0 @@ -emailAddress = $emailAddress; - } - public function getEmailAddress() - { - return $this->emailAddress; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setOperator($operator) - { - $this->operator = $operator; - } - public function getOperator() - { - return $this->operator; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/CasesData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/CasesData.php deleted file mode 100644 index 7770fe01..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/CasesData.php +++ /dev/null @@ -1,77 +0,0 @@ -agent = $agent; - } - public function getAgent() - { - return $this->agent; - } - public function setAssignedGaia($assignedGaia) - { - $this->assignedGaia = $assignedGaia; - } - public function getAssignedGaia() - { - return $this->assignedGaia; - } - public function setEmailType($emailType) - { - $this->emailType = $emailType; - } - public function getEmailType() - { - return $this->emailType; - } - public function setMessageId($messageId) - { - $this->messageId = $messageId; - } - public function getMessageId() - { - return $this->messageId; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setUserId(Google_Service_Cih_UserId $userId) - { - $this->userId = $userId; - } - public function getUserId() - { - return $this->userId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/CasesInteractionSource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/CasesInteractionSource.php deleted file mode 100644 index 61cdfbe8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/CasesInteractionSource.php +++ /dev/null @@ -1,40 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/ChatInteraction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/ChatInteraction.php deleted file mode 100644 index 41da0f98..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/ChatInteraction.php +++ /dev/null @@ -1,20 +0,0 @@ -childEntity = $childEntity; - } - public function getChildEntity() - { - return $this->childEntity; - } - public function setDeprecated($deprecated) - { - $this->deprecated = $deprecated; - } - public function getDeprecated() - { - return $this->deprecated; - } - public function setEntityId($entityId) - { - $this->entityId = $entityId; - } - public function getEntityId() - { - return $this->entityId; - } - public function setEntityType($entityType) - { - $this->entityType = $entityType; - } - public function getEntityType() - { - return $this->entityType; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLinkedByAdsdb($linkedByAdsdb) - { - $this->linkedByAdsdb = $linkedByAdsdb; - } - public function getLinkedByAdsdb() - { - return $this->linkedByAdsdb; - } - public function setParentEntity($parentEntity) - { - $this->parentEntity = $parentEntity; - } - public function getParentEntity() - { - return $this->parentEntity; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/GammaData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/GammaData.php deleted file mode 100644 index 389b4a00..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/GammaData.php +++ /dev/null @@ -1,76 +0,0 @@ -campaignId = $campaignId; - } - public function getCampaignId() - { - return $this->campaignId; - } - public function setDispatchId($dispatchId) - { - $this->dispatchId = $dispatchId; - } - public function getDispatchId() - { - return $this->dispatchId; - } - public function setExperimentId($experimentId) - { - $this->experimentId = $experimentId; - } - public function getExperimentId() - { - return $this->experimentId; - } - public function setGammaProductId($gammaProductId) - { - $this->gammaProductId = $gammaProductId; - } - public function getGammaProductId() - { - return $this->gammaProductId; - } - public function setNodeId($nodeId) - { - $this->nodeId = $nodeId; - } - public function getNodeId() - { - return $this->nodeId; - } - public function setUaid(Google_Service_Cih_Uaid $uaid) - { - $this->uaid = $uaid; - } - public function getUaid() - { - return $this->uaid; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/GenieData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/GenieData.php deleted file mode 100644 index 3d51661d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/GenieData.php +++ /dev/null @@ -1,66 +0,0 @@ -enteredText = $enteredText; - } - public function getEnteredText() - { - return $this->enteredText; - } - public function setSessionId($sessionId) - { - $this->sessionId = $sessionId; - } - public function getSessionId() - { - return $this->sessionId; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setUserAgent($userAgent) - { - $this->userAgent = $userAgent; - } - public function getUserAgent() - { - return $this->userAgent; - } - public function setUserIp($userIp) - { - $this->userIp = $userIp; - } - public function getUserIp() - { - return $this->userIp; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/GoalInteraction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/GoalInteraction.php deleted file mode 100644 index ca84ee19..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/GoalInteraction.php +++ /dev/null @@ -1,30 +0,0 @@ -status = $status; - } - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/GreenTeaData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/GreenTeaData.php deleted file mode 100644 index b5c7faa9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/GreenTeaData.php +++ /dev/null @@ -1,40 +0,0 @@ -meetingMethodDetail = $meetingMethodDetail; - } - public function getMeetingMethodDetail() - { - return $this->meetingMethodDetail; - } - public function setOpportunityId($opportunityId) - { - $this->opportunityId = $opportunityId; - } - public function getOpportunityId() - { - return $this->opportunityId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/GrmData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/GrmData.php deleted file mode 100644 index 29cb2d39..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/GrmData.php +++ /dev/null @@ -1,49 +0,0 @@ -agencyId = $agencyId; - } - public function getAgencyId() - { - return $this->agencyId; - } - public function setContactLdap($contactLdap) - { - $this->contactLdap = $contactLdap; - } - public function getContactLdap() - { - return $this->contactLdap; - } - public function setIntentId($intentId) - { - $this->intentId = $intentId; - } - public function getIntentId() - { - return $this->intentId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/HangoutInteraction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/HangoutInteraction.php deleted file mode 100644 index e73f95e7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/HangoutInteraction.php +++ /dev/null @@ -1,20 +0,0 @@ -internalHelpCenterName = $internalHelpCenterName; - } - public function getInternalHelpCenterName() - { - return $this->internalHelpCenterName; - } - public function setIsApiClient($isApiClient) - { - $this->isApiClient = $isApiClient; - } - public function getIsApiClient() - { - return $this->isApiClient; - } - public function setReferer($referer) - { - $this->referer = $referer; - } - public function getReferer() - { - return $this->referer; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/IncentiveInteraction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/IncentiveInteraction.php deleted file mode 100644 index 3d2f22a2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/IncentiveInteraction.php +++ /dev/null @@ -1,40 +0,0 @@ -monetaryReward = $monetaryReward; - } - public function getMonetaryReward() - { - return $this->monetaryReward; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/IncentiveInteractionMonetaryReward.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/IncentiveInteractionMonetaryReward.php deleted file mode 100644 index d957cf67..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/IncentiveInteractionMonetaryReward.php +++ /dev/null @@ -1,39 +0,0 @@ -amountMicros = $amountMicros; - } - public function getAmountMicros() - { - return $this->amountMicros; - } - public function setCurrencyCode($currencyCode) - { - $this->currencyCode = $currencyCode; - } - public function getCurrencyCode() - { - return $this->currencyCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/IncentivesData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/IncentivesData.php deleted file mode 100644 index f4c15c01..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/IncentivesData.php +++ /dev/null @@ -1,57 +0,0 @@ -campaignId = $campaignId; - } - public function getCampaignId() - { - return $this->campaignId; - } - public function setCouponId($couponId) - { - $this->couponId = $couponId; - } - public function getCouponId() - { - return $this->couponId; - } - public function setIncentiveBatchId($incentiveBatchId) - { - $this->incentiveBatchId = $incentiveBatchId; - } - public function getIncentiveBatchId() - { - return $this->incentiveBatchId; - } - public function setIncentiveId($incentiveId) - { - $this->incentiveId = $incentiveId; - } - public function getIncentiveId() - { - return $this->incentiveId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/MarketingEmailInteraction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/MarketingEmailInteraction.php deleted file mode 100644 index ecdf6447..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/MarketingEmailInteraction.php +++ /dev/null @@ -1,84 +0,0 @@ -bounced = $bounced; - } - public function getBounced() - { - return $this->bounced; - } - public function setClicked($clicked) - { - $this->clicked = $clicked; - } - public function getClicked() - { - return $this->clicked; - } - public function setEmailAddressDigest($emailAddressDigest) - { - $this->emailAddressDigest = $emailAddressDigest; - } - public function getEmailAddressDigest() - { - return $this->emailAddressDigest; - } - public function setFromAddress($fromAddress) - { - $this->fromAddress = $fromAddress; - } - public function getFromAddress() - { - return $this->fromAddress; - } - public function setOpened($opened) - { - $this->opened = $opened; - } - public function getOpened() - { - return $this->opened; - } - public function setOptoutClicked($optoutClicked) - { - $this->optoutClicked = $optoutClicked; - } - public function getOptoutClicked() - { - return $this->optoutClicked; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/MeetingInteraction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/MeetingInteraction.php deleted file mode 100644 index 5b883329..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/MeetingInteraction.php +++ /dev/null @@ -1,30 +0,0 @@ -status = $status; - } - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/NoteInteraction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/NoteInteraction.php deleted file mode 100644 index 67d91cf9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/NoteInteraction.php +++ /dev/null @@ -1,30 +0,0 @@ -status = $status; - } - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/Participant.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/Participant.php deleted file mode 100644 index 1d5e1c22..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/Participant.php +++ /dev/null @@ -1,75 +0,0 @@ -contactId = $contactId; - } - public function getContactId() - { - return $this->contactId; - } - public function setEmail($email) - { - $this->email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setFamilyName($familyName) - { - $this->familyName = $familyName; - } - public function getFamilyName() - { - return $this->familyName; - } - public function setGaiaId($gaiaId) - { - $this->gaiaId = $gaiaId; - } - public function getGaiaId() - { - return $this->gaiaId; - } - public function setGivenName($givenName) - { - $this->givenName = $givenName; - } - public function getGivenName() - { - return $this->givenName; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/PartnerSearchData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/PartnerSearchData.php deleted file mode 100644 index be06cbc2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/PartnerSearchData.php +++ /dev/null @@ -1,20 +0,0 @@ - - * $cihService = new Google_Service_Cih(...); - * $associatedEmails = $cihService->associatedEmails; - * - */ -class Google_Service_Cih_Resource_AssociatedEmails extends Google_Service_Resource -{ - /** - * Associates an AdWords customer id to an email address. - * (associatedEmails.create) - * - * @param string $customerId The AdWords customer Id the email will be - * associated to. - * @param Google_Service_Cih_AssociatedEmail $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Cih_AssociatedEmail - */ - public function create($customerId, Google_Service_Cih_AssociatedEmail $postBody, $optParams = array()) - { - $params = array('customerId' => $customerId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Cih_AssociatedEmail"); - } - /** - * Dissociates an AdWords customer id from an email address. - * (associatedEmails.delete) - * - * @param string $customerId The AdWords customer Id the email will be - * dissociated from. - * @param string $emailAddress The email address. - * @param string $operator The program or person who initiated the operation. - * @param array $optParams Optional parameters. - */ - public function delete($customerId, $emailAddress, $operator, $optParams = array()) - { - $params = array('customerId' => $customerId, 'emailAddress' => $emailAddress, 'operator' => $operator); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/Resource/UserInteractions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/Resource/UserInteractions.php deleted file mode 100644 index 9af3cc11..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/Resource/UserInteractions.php +++ /dev/null @@ -1,132 +0,0 @@ - - * $cihService = new Google_Service_Cih(...); - * $userInteractions = $cihService->userInteractions; - * - */ -class Google_Service_Cih_Resource_UserInteractions extends Google_Service_Resource -{ - /** - * Gets an interaction. (userInteractions.get) - * - * @param string $entityType Represents the Type of the entity whose interaction - * will be returned. Possible Values: COMPANY, ADWORDS_CID, EMAIL, - * ADDRESS_DIGEST, GAIA_ID. - * @param string $entityId Represents the Id of the Entity whose interaction - * will be returned. - * @param string $timestamp the timestamp of the interaction to be returned. It - * is measured as the number of microseconds since the Epoch. - * @param string $interactionType The type of the interaction to be returned. - * @param array $optParams Optional parameters. - * @return Google_Service_Cih_UserInteraction - */ - public function get($entityType, $entityId, $timestamp, $interactionType, $optParams = array()) - { - $params = array('entityType' => $entityType, 'entityId' => $entityId, 'timestamp' => $timestamp, 'interactionType' => $interactionType); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Cih_UserInteraction"); - } - /** - * Inserts a new interaction to CIH. (userInteractions.insert) - * - * @param Google_Service_Cih_UserInteraction $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Cih_UserInteraction - */ - public function insert(Google_Service_Cih_UserInteraction $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Cih_UserInteraction"); - } - /** - * Get a list of interactions for the given entity and its relatives if - * requested. The returned list is sorted by timestamp in descending order. - * (userInteractions.listUserInteractions) - * - * @param string|array $entity List of entities to retrieve. At least one item - * must be present. Each item must be in 'ENTITY_TYPE:ENTITY_ID' format which - * ENTITY_TYPE is COMPANY, ADWORDS_CID, EMAIL, ADDRESS_DIGEST or GAIA_ID. - * @param array $optParams Optional parameters. - * - * @opt_param string entityFilter Primary or secondary entities, if available - * only interactions whose primary or secondary entities are given are returned. - * For info about the format of this field see the comments of - * UserInteractionsApiaryFilter proto. - * @opt_param bool excludePassedInteractionOrigin Indicates the inclusive or - * exclusive behavior of interactionOrigin field. See the description of - * interactionOrigin. - * @opt_param bool excludePassedInteractionType Indicates the inclusive or - * exclusive behavior of interactionType field. See the description of - * interactionType. - * @opt_param bool includeRelatedInteractions By default, all interactions which - * apply to any member of the entity structure which contains the provided - * entity are returned. If include_related_interactions is false, then only the - * interactions which are associated directly with this entity are returned, and - * neither parent_entity nor child_entities in the Entity object returned by - * this operation are populated. - * @opt_param string interactionOrigin This limit is ignored if absent and all - * interactions regardless of their origin will be returned. Otherwise the - * meaning of this field depends on the include_interaction_origin field. 1. - * exclude_passed_interaction_origin is true: Only interactions whose Origin is - * contained in interaction_origin will be returned. 2. - * exclude_passed_interaction_origin is false: Only interactions whose Origin - * isn't contained in interaction_origin will be returned. - * @opt_param string interactionType This limit is ignored if absent and all - * interactions regardless of their type will be returned. Otherwise the meaning - * of this field depends on the exclude_passed_interaction_type field. 1. - * exclude_passed_interaction_type is true: Only interactions whose Type is - * contained in interaction_type will be returned. 2. - * exclude_passed_interaction_type is false: Only interactions whose Type isn't - * contained in interaction_type will be returned. - * @opt_param bool lookup_participant_info Request to get additional information - * about interaction participants, such as names, email addresses. May increase - * latency of this call. - * @opt_param int maxInteractionsPerPage The limit on the number of returned - * interactions. This is the maximum number of interactions which will be - * returned, starting with the most recent. Thie default value is 100. If it is - * equal to zero then only the entity structure is returned. - * @opt_param string maxResults The maximum number of results per page. - * @opt_param string metaTypeFilter Represents the interaction's classification. - * Possible values: SALES, SUPPORT, MARKETING. For more info see http://go/cih- - * gt-api - * @opt_param int minMainEntityInteractions Attempt to read at least this many - * main entity interactions. The default value is set to 0. Pagination is - * disabled if a positive value is set. - * @opt_param string pageToken The pagination token. - * @opt_param string phoneMatcher If available only interactions whose phone - * number is given are returned. For info about the format of this field see the - * comments of UserInteractionsApiaryFilter proto. - * @opt_param string timestampEnd Upper limit on the timestamp for the returned - * interactions. It is measured as the number of microseconds since the Epoch. - * @opt_param string timestampStart Lower limit on the timestamp for the - * returned interactions. It is measured as the number of microseconds since the - * Epoch. - * @return Google_Service_Cih_UserInteractionsListResponse - */ - public function listUserInteractions($entity, $optParams = array()) - { - $params = array('entity' => $entity); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Cih_UserInteractionsListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/TaskInteraction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/TaskInteraction.php deleted file mode 100644 index c5a42b17..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/TaskInteraction.php +++ /dev/null @@ -1,30 +0,0 @@ -status = $status; - } - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/TraxAgent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/TraxAgent.php deleted file mode 100644 index 3849ad1f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/TraxAgent.php +++ /dev/null @@ -1,48 +0,0 @@ -email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setGaiaId($gaiaId) - { - $this->gaiaId = $gaiaId; - } - public function getGaiaId() - { - return $this->gaiaId; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/TraxData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/TraxData.php deleted file mode 100644 index ac3febcd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/TraxData.php +++ /dev/null @@ -1,78 +0,0 @@ -actionType = $actionType; - } - public function getActionType() - { - return $this->actionType; - } - public function setAgent(Google_Service_Cih_TraxAgent $agent) - { - $this->agent = $agent; - } - public function getAgent() - { - return $this->agent; - } - public function setAssignedAgent(Google_Service_Cih_TraxAgent $assignedAgent) - { - $this->assignedAgent = $assignedAgent; - } - public function getAssignedAgent() - { - return $this->assignedAgent; - } - public function setMessageId($messageId) - { - $this->messageId = $messageId; - } - public function getMessageId() - { - return $this->messageId; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setUserId(Google_Service_Cih_UserId $userId) - { - $this->userId = $userId; - } - public function getUserId() - { - return $this->userId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/TraxInteraction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/TraxInteraction.php deleted file mode 100644 index e42c4fb6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/TraxInteraction.php +++ /dev/null @@ -1,30 +0,0 @@ -type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/Uaid.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/Uaid.php deleted file mode 100644 index 5b376207..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/Uaid.php +++ /dev/null @@ -1,42 +0,0 @@ - "account_id", - ); - public $accountId; - public $product; - - public function setAccountId($accountId) - { - $this->accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setProduct($product) - { - $this->product = $product; - } - public function getProduct() - { - return $this->product; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/UserCommData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/UserCommData.php deleted file mode 100644 index 10dfffb7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/UserCommData.php +++ /dev/null @@ -1,20 +0,0 @@ -customerId = $customerId; - } - public function getCustomerId() - { - return $this->customerId; - } - public function setEmail($email) - { - $this->email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setGaiaId($gaiaId) - { - $this->gaiaId = $gaiaId; - } - public function getGaiaId() - { - return $this->gaiaId; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/UserInteraction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/UserInteraction.php deleted file mode 100644 index 96214750..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/UserInteraction.php +++ /dev/null @@ -1,410 +0,0 @@ -adoptionInteraction = $adoptionInteraction; - } - public function getAdoptionInteraction() - { - return $this->adoptionInteraction; - } - public function setAdvertiserExperienceData(Google_Service_Cih_AdvertiserExperienceData $advertiserExperienceData) - { - $this->advertiserExperienceData = $advertiserExperienceData; - } - public function getAdvertiserExperienceData() - { - return $this->advertiserExperienceData; - } - public function setCasesData(Google_Service_Cih_CasesData $casesData) - { - $this->casesData = $casesData; - } - public function getCasesData() - { - return $this->casesData; - } - public function setChatInteraction(Google_Service_Cih_ChatInteraction $chatInteraction) - { - $this->chatInteraction = $chatInteraction; - } - public function getChatInteraction() - { - return $this->chatInteraction; - } - public function setContactGaiaId($contactGaiaId) - { - $this->contactGaiaId = $contactGaiaId; - } - public function getContactGaiaId() - { - return $this->contactGaiaId; - } - public function setCustomer($customer) - { - $this->customer = $customer; - } - public function getCustomer() - { - return $this->customer; - } - public function setDetailedDescription($detailedDescription) - { - $this->detailedDescription = $detailedDescription; - } - public function getDetailedDescription() - { - return $this->detailedDescription; - } - public function setDetailedDescriptionTruncated($detailedDescriptionTruncated) - { - $this->detailedDescriptionTruncated = $detailedDescriptionTruncated; - } - public function getDetailedDescriptionTruncated() - { - return $this->detailedDescriptionTruncated; - } - public function setEmailInteraction(Google_Service_Cih_EmailInteraction $emailInteraction) - { - $this->emailInteraction = $emailInteraction; - } - public function getEmailInteraction() - { - return $this->emailInteraction; - } - public function setEntity(Google_Service_Cih_Entity $entity) - { - $this->entity = $entity; - } - public function getEntity() - { - return $this->entity; - } - public function setGammaData(Google_Service_Cih_GammaData $gammaData) - { - $this->gammaData = $gammaData; - } - public function getGammaData() - { - return $this->gammaData; - } - public function setGenieData(Google_Service_Cih_GenieData $genieData) - { - $this->genieData = $genieData; - } - public function getGenieData() - { - return $this->genieData; - } - public function setGoalInteraction(Google_Service_Cih_GoalInteraction $goalInteraction) - { - $this->goalInteraction = $goalInteraction; - } - public function getGoalInteraction() - { - return $this->goalInteraction; - } - public function setGoogler($googler) - { - $this->googler = $googler; - } - public function getGoogler() - { - return $this->googler; - } - public function setGreenTeaData(Google_Service_Cih_GreenTeaData $greenTeaData) - { - $this->greenTeaData = $greenTeaData; - } - public function getGreenTeaData() - { - return $this->greenTeaData; - } - public function setGrmData(Google_Service_Cih_GrmData $grmData) - { - $this->grmData = $grmData; - } - public function getGrmData() - { - return $this->grmData; - } - public function setHangoutInteraction(Google_Service_Cih_HangoutInteraction $hangoutInteraction) - { - $this->hangoutInteraction = $hangoutInteraction; - } - public function getHangoutInteraction() - { - return $this->hangoutInteraction; - } - public function setHelpcenterData(Google_Service_Cih_HelpcenterData $helpcenterData) - { - $this->helpcenterData = $helpcenterData; - } - public function getHelpcenterData() - { - return $this->helpcenterData; - } - public function setIncentiveInteraction(Google_Service_Cih_IncentiveInteraction $incentiveInteraction) - { - $this->incentiveInteraction = $incentiveInteraction; - } - public function getIncentiveInteraction() - { - return $this->incentiveInteraction; - } - public function setIncentivesData(Google_Service_Cih_IncentivesData $incentivesData) - { - $this->incentivesData = $incentivesData; - } - public function getIncentivesData() - { - return $this->incentivesData; - } - public function setInitiator(Google_Service_Cih_Participant $initiator) - { - $this->initiator = $initiator; - } - public function getInitiator() - { - return $this->initiator; - } - public function setInteractionOrigin($interactionOrigin) - { - $this->interactionOrigin = $interactionOrigin; - } - public function getInteractionOrigin() - { - return $this->interactionOrigin; - } - public function setInteractionType($interactionType) - { - $this->interactionType = $interactionType; - } - public function getInteractionType() - { - return $this->interactionType; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLanguage($language) - { - $this->language = $language; - } - public function getLanguage() - { - return $this->language; - } - public function setMarketingEmailInteraction(Google_Service_Cih_MarketingEmailInteraction $marketingEmailInteraction) - { - $this->marketingEmailInteraction = $marketingEmailInteraction; - } - public function getMarketingEmailInteraction() - { - return $this->marketingEmailInteraction; - } - public function setMeetingInteraction(Google_Service_Cih_MeetingInteraction $meetingInteraction) - { - $this->meetingInteraction = $meetingInteraction; - } - public function getMeetingInteraction() - { - return $this->meetingInteraction; - } - public function setMetaType($metaType) - { - $this->metaType = $metaType; - } - public function getMetaType() - { - return $this->metaType; - } - public function setNoteInteraction(Google_Service_Cih_NoteInteraction $noteInteraction) - { - $this->noteInteraction = $noteInteraction; - } - public function getNoteInteraction() - { - return $this->noteInteraction; - } - public function setOtherParticipant($otherParticipant) - { - $this->otherParticipant = $otherParticipant; - } - public function getOtherParticipant() - { - return $this->otherParticipant; - } - public function setPartnerSearchData(Google_Service_Cih_PartnerSearchData $partnerSearchData) - { - $this->partnerSearchData = $partnerSearchData; - } - public function getPartnerSearchData() - { - return $this->partnerSearchData; - } - public function setPhoneInteraction(Google_Service_Cih_PhoneInteraction $phoneInteraction) - { - $this->phoneInteraction = $phoneInteraction; - } - public function getPhoneInteraction() - { - return $this->phoneInteraction; - } - public function setSourceSystemPrimaryKey($sourceSystemPrimaryKey) - { - $this->sourceSystemPrimaryKey = $sourceSystemPrimaryKey; - } - public function getSourceSystemPrimaryKey() - { - return $this->sourceSystemPrimaryKey; - } - public function setSummary($summary) - { - $this->summary = $summary; - } - public function getSummary() - { - return $this->summary; - } - public function setSummaryTruncated($summaryTruncated) - { - $this->summaryTruncated = $summaryTruncated; - } - public function getSummaryTruncated() - { - return $this->summaryTruncated; - } - public function setTaskInteraction(Google_Service_Cih_TaskInteraction $taskInteraction) - { - $this->taskInteraction = $taskInteraction; - } - public function getTaskInteraction() - { - return $this->taskInteraction; - } - public function setTimestamp($timestamp) - { - $this->timestamp = $timestamp; - } - public function getTimestamp() - { - return $this->timestamp; - } - public function setTraxData(Google_Service_Cih_TraxData $traxData) - { - $this->traxData = $traxData; - } - public function getTraxData() - { - return $this->traxData; - } - public function setTraxInteraction(Google_Service_Cih_TraxInteraction $traxInteraction) - { - $this->traxInteraction = $traxInteraction; - } - public function getTraxInteraction() - { - return $this->traxInteraction; - } - public function setUserCommData(Google_Service_Cih_UserCommData $userCommData) - { - $this->userCommData = $userCommData; - } - public function getUserCommData() - { - return $this->userCommData; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/UserInteractionsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/UserInteractionsListResponse.php deleted file mode 100644 index c78ee4e8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cih/UserInteractionsListResponse.php +++ /dev/null @@ -1,60 +0,0 @@ -entity = $entity; - } - public function getEntity() - { - return $this->entity; - } - public function setItems($items) - { - $this->items = $items; - } - public function getItems() - { - return $this->items; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo.php deleted file mode 100644 index e5487bdb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo.php +++ /dev/null @@ -1,168 +0,0 @@ - - * Provides polling places, early vote locations, contest data, election - * officials, and government representatives for U.S. residential addresses.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_CivicInfo extends Google_Service -{ - - - public $divisions; - public $elections; - public $representatives; - - /** - * Constructs the internal representation of the CivicInfo service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://www.googleapis.com/'; - $this->servicePath = 'civicinfo/v2/'; - $this->batchPath = 'batch/civicinfo/v2'; - $this->version = 'v2'; - $this->serviceName = 'civicinfo'; - - $this->divisions = new Google_Service_CivicInfo_Resource_Divisions( - $this, - $this->serviceName, - 'divisions', - array( - 'methods' => array( - 'search' => array( - 'path' => 'divisions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'query' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->elections = new Google_Service_CivicInfo_Resource_Elections( - $this, - $this->serviceName, - 'elections', - array( - 'methods' => array( - 'electionQuery' => array( - 'path' => 'elections', - 'httpMethod' => 'GET', - 'parameters' => array(), - ),'voterInfoQuery' => array( - 'path' => 'voterinfo', - 'httpMethod' => 'GET', - 'parameters' => array( - 'address' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'electionId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'officialOnly' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'returnAllAvailableData' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ), - ) - ) - ); - $this->representatives = new Google_Service_CivicInfo_Resource_Representatives( - $this, - $this->serviceName, - 'representatives', - array( - 'methods' => array( - 'representativeInfoByAddress' => array( - 'path' => 'representatives', - 'httpMethod' => 'GET', - 'parameters' => array( - 'address' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'includeOffices' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'levels' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'roles' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ),'representativeInfoByDivision' => array( - 'path' => 'representatives/{ocdId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'ocdId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'levels' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'recursive' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'roles' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/AdministrationRegion.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/AdministrationRegion.php deleted file mode 100644 index 245a9c28..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/AdministrationRegion.php +++ /dev/null @@ -1,91 +0,0 @@ - "local_jurisdiction", - ); - protected $electionAdministrationBodyType = 'Google_Service_CivicInfo_AdministrativeBody'; - protected $electionAdministrationBodyDataType = ''; - public $id; - protected $localJurisdictionType = 'Google_Service_CivicInfo_AdministrationRegion'; - protected $localJurisdictionDataType = ''; - public $name; - protected $sourcesType = 'Google_Service_CivicInfo_Source'; - protected $sourcesDataType = 'array'; - - /** - * @param Google_Service_CivicInfo_AdministrativeBody - */ - public function setElectionAdministrationBody(Google_Service_CivicInfo_AdministrativeBody $electionAdministrationBody) - { - $this->electionAdministrationBody = $electionAdministrationBody; - } - /** - * @return Google_Service_CivicInfo_AdministrativeBody - */ - public function getElectionAdministrationBody() - { - return $this->electionAdministrationBody; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_CivicInfo_AdministrationRegion - */ - public function setLocalJurisdiction(Google_Service_CivicInfo_AdministrationRegion $localJurisdiction) - { - $this->localJurisdiction = $localJurisdiction; - } - /** - * @return Google_Service_CivicInfo_AdministrationRegion - */ - public function getLocalJurisdiction() - { - return $this->localJurisdiction; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_CivicInfo_Source - */ - public function setSources($sources) - { - $this->sources = $sources; - } - /** - * @return Google_Service_CivicInfo_Source - */ - public function getSources() - { - return $this->sources; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/AdministrativeBody.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/AdministrativeBody.php deleted file mode 100644 index 743597ed..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/AdministrativeBody.php +++ /dev/null @@ -1,172 +0,0 @@ - "voter_services", - ); - public $absenteeVotingInfoUrl; - public $addressLines; - public $ballotInfoUrl; - protected $correspondenceAddressType = 'Google_Service_CivicInfo_SimpleAddressType'; - protected $correspondenceAddressDataType = ''; - public $electionInfoUrl; - protected $electionOfficialsType = 'Google_Service_CivicInfo_ElectionOfficial'; - protected $electionOfficialsDataType = 'array'; - public $electionRegistrationConfirmationUrl; - public $electionRegistrationUrl; - public $electionRulesUrl; - public $hoursOfOperation; - public $name; - protected $physicalAddressType = 'Google_Service_CivicInfo_SimpleAddressType'; - protected $physicalAddressDataType = ''; - public $voterServices; - public $votingLocationFinderUrl; - - public function setAbsenteeVotingInfoUrl($absenteeVotingInfoUrl) - { - $this->absenteeVotingInfoUrl = $absenteeVotingInfoUrl; - } - public function getAbsenteeVotingInfoUrl() - { - return $this->absenteeVotingInfoUrl; - } - public function setAddressLines($addressLines) - { - $this->addressLines = $addressLines; - } - public function getAddressLines() - { - return $this->addressLines; - } - public function setBallotInfoUrl($ballotInfoUrl) - { - $this->ballotInfoUrl = $ballotInfoUrl; - } - public function getBallotInfoUrl() - { - return $this->ballotInfoUrl; - } - /** - * @param Google_Service_CivicInfo_SimpleAddressType - */ - public function setCorrespondenceAddress(Google_Service_CivicInfo_SimpleAddressType $correspondenceAddress) - { - $this->correspondenceAddress = $correspondenceAddress; - } - /** - * @return Google_Service_CivicInfo_SimpleAddressType - */ - public function getCorrespondenceAddress() - { - return $this->correspondenceAddress; - } - public function setElectionInfoUrl($electionInfoUrl) - { - $this->electionInfoUrl = $electionInfoUrl; - } - public function getElectionInfoUrl() - { - return $this->electionInfoUrl; - } - /** - * @param Google_Service_CivicInfo_ElectionOfficial - */ - public function setElectionOfficials($electionOfficials) - { - $this->electionOfficials = $electionOfficials; - } - /** - * @return Google_Service_CivicInfo_ElectionOfficial - */ - public function getElectionOfficials() - { - return $this->electionOfficials; - } - public function setElectionRegistrationConfirmationUrl($electionRegistrationConfirmationUrl) - { - $this->electionRegistrationConfirmationUrl = $electionRegistrationConfirmationUrl; - } - public function getElectionRegistrationConfirmationUrl() - { - return $this->electionRegistrationConfirmationUrl; - } - public function setElectionRegistrationUrl($electionRegistrationUrl) - { - $this->electionRegistrationUrl = $electionRegistrationUrl; - } - public function getElectionRegistrationUrl() - { - return $this->electionRegistrationUrl; - } - public function setElectionRulesUrl($electionRulesUrl) - { - $this->electionRulesUrl = $electionRulesUrl; - } - public function getElectionRulesUrl() - { - return $this->electionRulesUrl; - } - public function setHoursOfOperation($hoursOfOperation) - { - $this->hoursOfOperation = $hoursOfOperation; - } - public function getHoursOfOperation() - { - return $this->hoursOfOperation; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_CivicInfo_SimpleAddressType - */ - public function setPhysicalAddress(Google_Service_CivicInfo_SimpleAddressType $physicalAddress) - { - $this->physicalAddress = $physicalAddress; - } - /** - * @return Google_Service_CivicInfo_SimpleAddressType - */ - public function getPhysicalAddress() - { - return $this->physicalAddress; - } - public function setVoterServices($voterServices) - { - $this->voterServices = $voterServices; - } - public function getVoterServices() - { - return $this->voterServices; - } - public function setVotingLocationFinderUrl($votingLocationFinderUrl) - { - $this->votingLocationFinderUrl = $votingLocationFinderUrl; - } - public function getVotingLocationFinderUrl() - { - return $this->votingLocationFinderUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/Candidate.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/Candidate.php deleted file mode 100644 index d35c60d1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/Candidate.php +++ /dev/null @@ -1,101 +0,0 @@ -candidateUrl = $candidateUrl; - } - public function getCandidateUrl() - { - return $this->candidateUrl; - } - /** - * @param Google_Service_CivicInfo_Channel - */ - public function setChannels($channels) - { - $this->channels = $channels; - } - /** - * @return Google_Service_CivicInfo_Channel - */ - public function getChannels() - { - return $this->channels; - } - public function setEmail($email) - { - $this->email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOrderOnBallot($orderOnBallot) - { - $this->orderOnBallot = $orderOnBallot; - } - public function getOrderOnBallot() - { - return $this->orderOnBallot; - } - public function setParty($party) - { - $this->party = $party; - } - public function getParty() - { - return $this->party; - } - public function setPhone($phone) - { - $this->phone = $phone; - } - public function getPhone() - { - return $this->phone; - } - public function setPhotoUrl($photoUrl) - { - $this->photoUrl = $photoUrl; - } - public function getPhotoUrl() - { - return $this->photoUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/Channel.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/Channel.php deleted file mode 100644 index 8c094a88..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/Channel.php +++ /dev/null @@ -1,39 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/Contest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/Contest.php deleted file mode 100644 index ec5dd65c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/Contest.php +++ /dev/null @@ -1,268 +0,0 @@ -ballotPlacement = $ballotPlacement; - } - public function getBallotPlacement() - { - return $this->ballotPlacement; - } - public function setBallotTitle($ballotTitle) - { - $this->ballotTitle = $ballotTitle; - } - public function getBallotTitle() - { - return $this->ballotTitle; - } - /** - * @param Google_Service_CivicInfo_Candidate - */ - public function setCandidates($candidates) - { - $this->candidates = $candidates; - } - /** - * @return Google_Service_CivicInfo_Candidate - */ - public function getCandidates() - { - return $this->candidates; - } - /** - * @param Google_Service_CivicInfo_ElectoralDistrict - */ - public function setDistrict(Google_Service_CivicInfo_ElectoralDistrict $district) - { - $this->district = $district; - } - /** - * @return Google_Service_CivicInfo_ElectoralDistrict - */ - public function getDistrict() - { - return $this->district; - } - public function setElectorateSpecifications($electorateSpecifications) - { - $this->electorateSpecifications = $electorateSpecifications; - } - public function getElectorateSpecifications() - { - return $this->electorateSpecifications; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setLevel($level) - { - $this->level = $level; - } - public function getLevel() - { - return $this->level; - } - public function setNumberElected($numberElected) - { - $this->numberElected = $numberElected; - } - public function getNumberElected() - { - return $this->numberElected; - } - public function setNumberVotingFor($numberVotingFor) - { - $this->numberVotingFor = $numberVotingFor; - } - public function getNumberVotingFor() - { - return $this->numberVotingFor; - } - public function setOffice($office) - { - $this->office = $office; - } - public function getOffice() - { - return $this->office; - } - public function setPrimaryParty($primaryParty) - { - $this->primaryParty = $primaryParty; - } - public function getPrimaryParty() - { - return $this->primaryParty; - } - public function setReferendumBallotResponses($referendumBallotResponses) - { - $this->referendumBallotResponses = $referendumBallotResponses; - } - public function getReferendumBallotResponses() - { - return $this->referendumBallotResponses; - } - public function setReferendumBrief($referendumBrief) - { - $this->referendumBrief = $referendumBrief; - } - public function getReferendumBrief() - { - return $this->referendumBrief; - } - public function setReferendumConStatement($referendumConStatement) - { - $this->referendumConStatement = $referendumConStatement; - } - public function getReferendumConStatement() - { - return $this->referendumConStatement; - } - public function setReferendumEffectOfAbstain($referendumEffectOfAbstain) - { - $this->referendumEffectOfAbstain = $referendumEffectOfAbstain; - } - public function getReferendumEffectOfAbstain() - { - return $this->referendumEffectOfAbstain; - } - public function setReferendumPassageThreshold($referendumPassageThreshold) - { - $this->referendumPassageThreshold = $referendumPassageThreshold; - } - public function getReferendumPassageThreshold() - { - return $this->referendumPassageThreshold; - } - public function setReferendumProStatement($referendumProStatement) - { - $this->referendumProStatement = $referendumProStatement; - } - public function getReferendumProStatement() - { - return $this->referendumProStatement; - } - public function setReferendumSubtitle($referendumSubtitle) - { - $this->referendumSubtitle = $referendumSubtitle; - } - public function getReferendumSubtitle() - { - return $this->referendumSubtitle; - } - public function setReferendumText($referendumText) - { - $this->referendumText = $referendumText; - } - public function getReferendumText() - { - return $this->referendumText; - } - public function setReferendumTitle($referendumTitle) - { - $this->referendumTitle = $referendumTitle; - } - public function getReferendumTitle() - { - return $this->referendumTitle; - } - public function setReferendumUrl($referendumUrl) - { - $this->referendumUrl = $referendumUrl; - } - public function getReferendumUrl() - { - return $this->referendumUrl; - } - public function setRoles($roles) - { - $this->roles = $roles; - } - public function getRoles() - { - return $this->roles; - } - /** - * @param Google_Service_CivicInfo_Source - */ - public function setSources($sources) - { - $this->sources = $sources; - } - /** - * @return Google_Service_CivicInfo_Source - */ - public function getSources() - { - return $this->sources; - } - public function setSpecial($special) - { - $this->special = $special; - } - public function getSpecial() - { - return $this->special; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/ContextParams.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/ContextParams.php deleted file mode 100644 index 837f7766..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/ContextParams.php +++ /dev/null @@ -1,30 +0,0 @@ -clientProfile = $clientProfile; - } - public function getClientProfile() - { - return $this->clientProfile; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/DivisionRepresentativeInfoRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/DivisionRepresentativeInfoRequest.php deleted file mode 100644 index 7f4f51bd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/DivisionRepresentativeInfoRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -contextParams = $contextParams; - } - /** - * @return Google_Service_CivicInfo_ContextParams - */ - public function getContextParams() - { - return $this->contextParams; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/DivisionSearchRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/DivisionSearchRequest.php deleted file mode 100644 index bc226c3b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/DivisionSearchRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -contextParams = $contextParams; - } - /** - * @return Google_Service_CivicInfo_ContextParams - */ - public function getContextParams() - { - return $this->contextParams; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/DivisionSearchResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/DivisionSearchResponse.php deleted file mode 100644 index f90e3704..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/DivisionSearchResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_CivicInfo_DivisionSearchResult - */ - public function setResults($results) - { - $this->results = $results; - } - /** - * @return Google_Service_CivicInfo_DivisionSearchResult - */ - public function getResults() - { - return $this->results; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/DivisionSearchResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/DivisionSearchResult.php deleted file mode 100644 index 3acce584..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/DivisionSearchResult.php +++ /dev/null @@ -1,49 +0,0 @@ -aliases = $aliases; - } - public function getAliases() - { - return $this->aliases; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOcdId($ocdId) - { - $this->ocdId = $ocdId; - } - public function getOcdId() - { - return $this->ocdId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/Election.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/Election.php deleted file mode 100644 index a7191859..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/Election.php +++ /dev/null @@ -1,57 +0,0 @@ -electionDay = $electionDay; - } - public function getElectionDay() - { - return $this->electionDay; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOcdDivisionId($ocdDivisionId) - { - $this->ocdDivisionId = $ocdDivisionId; - } - public function getOcdDivisionId() - { - return $this->ocdDivisionId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/ElectionOfficial.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/ElectionOfficial.php deleted file mode 100644 index de18f3f0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/ElectionOfficial.php +++ /dev/null @@ -1,66 +0,0 @@ -emailAddress = $emailAddress; - } - public function getEmailAddress() - { - return $this->emailAddress; - } - public function setFaxNumber($faxNumber) - { - $this->faxNumber = $faxNumber; - } - public function getFaxNumber() - { - return $this->faxNumber; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOfficePhoneNumber($officePhoneNumber) - { - $this->officePhoneNumber = $officePhoneNumber; - } - public function getOfficePhoneNumber() - { - return $this->officePhoneNumber; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/ElectionsQueryRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/ElectionsQueryRequest.php deleted file mode 100644 index a73ed77c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/ElectionsQueryRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -contextParams = $contextParams; - } - /** - * @return Google_Service_CivicInfo_ContextParams - */ - public function getContextParams() - { - return $this->contextParams; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/ElectionsQueryResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/ElectionsQueryResponse.php deleted file mode 100644 index 1073badd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/ElectionsQueryResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -elections = $elections; - } - /** - * @return Google_Service_CivicInfo_Election - */ - public function getElections() - { - return $this->elections; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/ElectoralDistrict.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/ElectoralDistrict.php deleted file mode 100644 index bd1ccef5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/ElectoralDistrict.php +++ /dev/null @@ -1,57 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setKgForeignKey($kgForeignKey) - { - $this->kgForeignKey = $kgForeignKey; - } - public function getKgForeignKey() - { - return $this->kgForeignKey; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setScope($scope) - { - $this->scope = $scope; - } - public function getScope() - { - return $this->scope; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/FieldMetadataProto.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/FieldMetadataProto.php deleted file mode 100644 index f0dd0285..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/FieldMetadataProto.php +++ /dev/null @@ -1,37 +0,0 @@ -internal = $internal; - } - /** - * @return Google_Service_CivicInfo_InternalFieldMetadataProto - */ - public function getInternal() - { - return $this->internal; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/GeographicDivision.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/GeographicDivision.php deleted file mode 100644 index 9995d79b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/GeographicDivision.php +++ /dev/null @@ -1,49 +0,0 @@ -alsoKnownAs = $alsoKnownAs; - } - public function getAlsoKnownAs() - { - return $this->alsoKnownAs; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOfficeIndices($officeIndices) - { - $this->officeIndices = $officeIndices; - } - public function getOfficeIndices() - { - return $this->officeIndices; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/InternalFieldMetadataProto.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/InternalFieldMetadataProto.php deleted file mode 100644 index 43d32fcc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/InternalFieldMetadataProto.php +++ /dev/null @@ -1,46 +0,0 @@ -isAuto = $isAuto; - } - public function getIsAuto() - { - return $this->isAuto; - } - /** - * @param Google_Service_CivicInfo_InternalSourceSummaryProto - */ - public function setSourceSummary(Google_Service_CivicInfo_InternalSourceSummaryProto $sourceSummary) - { - $this->sourceSummary = $sourceSummary; - } - /** - * @return Google_Service_CivicInfo_InternalSourceSummaryProto - */ - public function getSourceSummary() - { - return $this->sourceSummary; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/InternalSourceSummaryProto.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/InternalSourceSummaryProto.php deleted file mode 100644 index 450a60f0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/InternalSourceSummaryProto.php +++ /dev/null @@ -1,39 +0,0 @@ -dataset = $dataset; - } - public function getDataset() - { - return $this->dataset; - } - public function setProvider($provider) - { - $this->provider = $provider; - } - public function getProvider() - { - return $this->provider; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/Office.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/Office.php deleted file mode 100644 index 8c9b0b6d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/Office.php +++ /dev/null @@ -1,83 +0,0 @@ -divisionId = $divisionId; - } - public function getDivisionId() - { - return $this->divisionId; - } - public function setLevels($levels) - { - $this->levels = $levels; - } - public function getLevels() - { - return $this->levels; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOfficialIndices($officialIndices) - { - $this->officialIndices = $officialIndices; - } - public function getOfficialIndices() - { - return $this->officialIndices; - } - public function setRoles($roles) - { - $this->roles = $roles; - } - public function getRoles() - { - return $this->roles; - } - /** - * @param Google_Service_CivicInfo_Source - */ - public function setSources($sources) - { - $this->sources = $sources; - } - /** - * @return Google_Service_CivicInfo_Source - */ - public function getSources() - { - return $this->sources; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/Official.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/Official.php deleted file mode 100644 index b1021411..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/Official.php +++ /dev/null @@ -1,108 +0,0 @@ -address = $address; - } - /** - * @return Google_Service_CivicInfo_SimpleAddressType - */ - public function getAddress() - { - return $this->address; - } - /** - * @param Google_Service_CivicInfo_Channel - */ - public function setChannels($channels) - { - $this->channels = $channels; - } - /** - * @return Google_Service_CivicInfo_Channel - */ - public function getChannels() - { - return $this->channels; - } - public function setEmails($emails) - { - $this->emails = $emails; - } - public function getEmails() - { - return $this->emails; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setParty($party) - { - $this->party = $party; - } - public function getParty() - { - return $this->party; - } - public function setPhones($phones) - { - $this->phones = $phones; - } - public function getPhones() - { - return $this->phones; - } - public function setPhotoUrl($photoUrl) - { - $this->photoUrl = $photoUrl; - } - public function getPhotoUrl() - { - return $this->photoUrl; - } - public function setUrls($urls) - { - $this->urls = $urls; - } - public function getUrls() - { - return $this->urls; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/PointProto.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/PointProto.php deleted file mode 100644 index 78fd4e47..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/PointProto.php +++ /dev/null @@ -1,55 +0,0 @@ -latE7 = $latE7; - } - public function getLatE7() - { - return $this->latE7; - } - public function setLngE7($lngE7) - { - $this->lngE7 = $lngE7; - } - public function getLngE7() - { - return $this->lngE7; - } - /** - * @param Google_Service_CivicInfo_FieldMetadataProto - */ - public function setMetadata(Google_Service_CivicInfo_FieldMetadataProto $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_CivicInfo_FieldMetadataProto - */ - public function getMetadata() - { - return $this->metadata; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/PollingLocation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/PollingLocation.php deleted file mode 100644 index b4f4930f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/PollingLocation.php +++ /dev/null @@ -1,135 +0,0 @@ -address = $address; - } - /** - * @return Google_Service_CivicInfo_SimpleAddressType - */ - public function getAddress() - { - return $this->address; - } - public function setEndDate($endDate) - { - $this->endDate = $endDate; - } - public function getEndDate() - { - return $this->endDate; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setLatitude($latitude) - { - $this->latitude = $latitude; - } - public function getLatitude() - { - return $this->latitude; - } - public function setLongitude($longitude) - { - $this->longitude = $longitude; - } - public function getLongitude() - { - return $this->longitude; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNotes($notes) - { - $this->notes = $notes; - } - public function getNotes() - { - return $this->notes; - } - public function setPollingHours($pollingHours) - { - $this->pollingHours = $pollingHours; - } - public function getPollingHours() - { - return $this->pollingHours; - } - /** - * @param Google_Service_CivicInfo_Source - */ - public function setSources($sources) - { - $this->sources = $sources; - } - /** - * @return Google_Service_CivicInfo_Source - */ - public function getSources() - { - return $this->sources; - } - public function setStartDate($startDate) - { - $this->startDate = $startDate; - } - public function getStartDate() - { - return $this->startDate; - } - public function setVoterServices($voterServices) - { - $this->voterServices = $voterServices; - } - public function getVoterServices() - { - return $this->voterServices; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/PostalAddress.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/PostalAddress.php deleted file mode 100644 index 5457d489..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/PostalAddress.php +++ /dev/null @@ -1,202 +0,0 @@ -addressLines = $addressLines; - } - public function getAddressLines() - { - return $this->addressLines; - } - public function setAdministrativeAreaName($administrativeAreaName) - { - $this->administrativeAreaName = $administrativeAreaName; - } - public function getAdministrativeAreaName() - { - return $this->administrativeAreaName; - } - public function setCountryName($countryName) - { - $this->countryName = $countryName; - } - public function getCountryName() - { - return $this->countryName; - } - public function setCountryNameCode($countryNameCode) - { - $this->countryNameCode = $countryNameCode; - } - public function getCountryNameCode() - { - return $this->countryNameCode; - } - public function setDependentLocalityName($dependentLocalityName) - { - $this->dependentLocalityName = $dependentLocalityName; - } - public function getDependentLocalityName() - { - return $this->dependentLocalityName; - } - public function setDependentThoroughfareName($dependentThoroughfareName) - { - $this->dependentThoroughfareName = $dependentThoroughfareName; - } - public function getDependentThoroughfareName() - { - return $this->dependentThoroughfareName; - } - public function setFirmName($firmName) - { - $this->firmName = $firmName; - } - public function getFirmName() - { - return $this->firmName; - } - public function setIsDisputed($isDisputed) - { - $this->isDisputed = $isDisputed; - } - public function getIsDisputed() - { - return $this->isDisputed; - } - public function setLanguageCode($languageCode) - { - $this->languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } - public function setLocalityName($localityName) - { - $this->localityName = $localityName; - } - public function getLocalityName() - { - return $this->localityName; - } - public function setPostBoxNumber($postBoxNumber) - { - $this->postBoxNumber = $postBoxNumber; - } - public function getPostBoxNumber() - { - return $this->postBoxNumber; - } - public function setPostalCodeNumber($postalCodeNumber) - { - $this->postalCodeNumber = $postalCodeNumber; - } - public function getPostalCodeNumber() - { - return $this->postalCodeNumber; - } - public function setPostalCodeNumberExtension($postalCodeNumberExtension) - { - $this->postalCodeNumberExtension = $postalCodeNumberExtension; - } - public function getPostalCodeNumberExtension() - { - return $this->postalCodeNumberExtension; - } - public function setPremiseName($premiseName) - { - $this->premiseName = $premiseName; - } - public function getPremiseName() - { - return $this->premiseName; - } - public function setRecipientName($recipientName) - { - $this->recipientName = $recipientName; - } - public function getRecipientName() - { - return $this->recipientName; - } - public function setSortingCode($sortingCode) - { - $this->sortingCode = $sortingCode; - } - public function getSortingCode() - { - return $this->sortingCode; - } - public function setSubAdministrativeAreaName($subAdministrativeAreaName) - { - $this->subAdministrativeAreaName = $subAdministrativeAreaName; - } - public function getSubAdministrativeAreaName() - { - return $this->subAdministrativeAreaName; - } - public function setSubPremiseName($subPremiseName) - { - $this->subPremiseName = $subPremiseName; - } - public function getSubPremiseName() - { - return $this->subPremiseName; - } - public function setThoroughfareName($thoroughfareName) - { - $this->thoroughfareName = $thoroughfareName; - } - public function getThoroughfareName() - { - return $this->thoroughfareName; - } - public function setThoroughfareNumber($thoroughfareNumber) - { - $this->thoroughfareNumber = $thoroughfareNumber; - } - public function getThoroughfareNumber() - { - return $this->thoroughfareNumber; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/Provenance.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/Provenance.php deleted file mode 100644 index 6c123b7a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/Provenance.php +++ /dev/null @@ -1,118 +0,0 @@ -collidedSegmentSource = $collidedSegmentSource; - } - /** - * @return Google_Service_CivicInfo_StreetSegmentList - */ - public function getCollidedSegmentSource() - { - return $this->collidedSegmentSource; - } - public function setCtclContestUuid($ctclContestUuid) - { - $this->ctclContestUuid = $ctclContestUuid; - } - public function getCtclContestUuid() - { - return $this->ctclContestUuid; - } - public function setCtclOfficeUuid($ctclOfficeUuid) - { - $this->ctclOfficeUuid = $ctclOfficeUuid; - } - public function getCtclOfficeUuid() - { - return $this->ctclOfficeUuid; - } - public function setDatasetId($datasetId) - { - $this->datasetId = $datasetId; - } - public function getDatasetId() - { - return $this->datasetId; - } - public function setPrecinctId($precinctId) - { - $this->precinctId = $precinctId; - } - public function getPrecinctId() - { - return $this->precinctId; - } - public function setPrecinctSplitId($precinctSplitId) - { - $this->precinctSplitId = $precinctSplitId; - } - public function getPrecinctSplitId() - { - return $this->precinctSplitId; - } - public function setTsStreetSegmentId($tsStreetSegmentId) - { - $this->tsStreetSegmentId = $tsStreetSegmentId; - } - public function getTsStreetSegmentId() - { - return $this->tsStreetSegmentId; - } - public function setVip5PrecinctId($vip5PrecinctId) - { - $this->vip5PrecinctId = $vip5PrecinctId; - } - public function getVip5PrecinctId() - { - return $this->vip5PrecinctId; - } - public function setVip5StreetSegmentId($vip5StreetSegmentId) - { - $this->vip5StreetSegmentId = $vip5StreetSegmentId; - } - public function getVip5StreetSegmentId() - { - return $this->vip5StreetSegmentId; - } - public function setVipStreetSegmentId($vipStreetSegmentId) - { - $this->vipStreetSegmentId = $vipStreetSegmentId; - } - public function getVipStreetSegmentId() - { - return $this->vipStreetSegmentId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/RepresentativeInfoData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/RepresentativeInfoData.php deleted file mode 100644 index 07384882..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/RepresentativeInfoData.php +++ /dev/null @@ -1,70 +0,0 @@ -divisions = $divisions; - } - /** - * @return Google_Service_CivicInfo_GeographicDivision - */ - public function getDivisions() - { - return $this->divisions; - } - /** - * @param Google_Service_CivicInfo_Office - */ - public function setOffices($offices) - { - $this->offices = $offices; - } - /** - * @return Google_Service_CivicInfo_Office - */ - public function getOffices() - { - return $this->offices; - } - /** - * @param Google_Service_CivicInfo_Official - */ - public function setOfficials($officials) - { - $this->officials = $officials; - } - /** - * @return Google_Service_CivicInfo_Official - */ - public function getOfficials() - { - return $this->officials; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/RepresentativeInfoRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/RepresentativeInfoRequest.php deleted file mode 100644 index b9a9a91c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/RepresentativeInfoRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -contextParams = $contextParams; - } - /** - * @return Google_Service_CivicInfo_ContextParams - */ - public function getContextParams() - { - return $this->contextParams; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/RepresentativeInfoResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/RepresentativeInfoResponse.php deleted file mode 100644 index a8395126..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/RepresentativeInfoResponse.php +++ /dev/null @@ -1,95 +0,0 @@ -divisions = $divisions; - } - /** - * @return Google_Service_CivicInfo_GeographicDivision - */ - public function getDivisions() - { - return $this->divisions; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_CivicInfo_SimpleAddressType - */ - public function setNormalizedInput(Google_Service_CivicInfo_SimpleAddressType $normalizedInput) - { - $this->normalizedInput = $normalizedInput; - } - /** - * @return Google_Service_CivicInfo_SimpleAddressType - */ - public function getNormalizedInput() - { - return $this->normalizedInput; - } - /** - * @param Google_Service_CivicInfo_Office - */ - public function setOffices($offices) - { - $this->offices = $offices; - } - /** - * @return Google_Service_CivicInfo_Office - */ - public function getOffices() - { - return $this->offices; - } - /** - * @param Google_Service_CivicInfo_Official - */ - public function setOfficials($officials) - { - $this->officials = $officials; - } - /** - * @return Google_Service_CivicInfo_Official - */ - public function getOfficials() - { - return $this->officials; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/Resource/Divisions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/Resource/Divisions.php deleted file mode 100644 index e0540b29..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/Resource/Divisions.php +++ /dev/null @@ -1,47 +0,0 @@ - - * $civicinfoService = new Google_Service_CivicInfo(...); - * $divisions = $civicinfoService->divisions; - * - */ -class Google_Service_CivicInfo_Resource_Divisions extends Google_Service_Resource -{ - /** - * Searches for political divisions by their natural name or OCD ID. - * (divisions.search) - * - * @param array $optParams Optional parameters. - * - * @opt_param string query The search query. Queries can cover any parts of a - * OCD ID or a human readable division name. All words given in the query are - * treated as required patterns. In addition to that, most query operators of - * the Apache Lucene library are supported. See - * http://lucene.apache.org/core/2_9_4/queryparsersyntax.html - * @return Google_Service_CivicInfo_DivisionSearchResponse - */ - public function search($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('search', array($params), "Google_Service_CivicInfo_DivisionSearchResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/Resource/Elections.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/Resource/Elections.php deleted file mode 100644 index 11bff3cb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/Resource/Elections.php +++ /dev/null @@ -1,67 +0,0 @@ - - * $civicinfoService = new Google_Service_CivicInfo(...); - * $elections = $civicinfoService->elections; - * - */ -class Google_Service_CivicInfo_Resource_Elections extends Google_Service_Resource -{ - /** - * List of available elections to query. (elections.electionQuery) - * - * @param array $optParams Optional parameters. - * @return Google_Service_CivicInfo_ElectionsQueryResponse - */ - public function electionQuery($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('electionQuery', array($params), "Google_Service_CivicInfo_ElectionsQueryResponse"); - } - /** - * Looks up information relevant to a voter based on the voter's registered - * address. (elections.voterInfoQuery) - * - * @param string $address The registered address of the voter to look up. - * @param array $optParams Optional parameters. - * - * @opt_param string electionId The unique ID of the election to look up. A list - * of election IDs can be obtained at - * https://www.googleapis.com/civicinfo/{version}/electionsIf no election ID is - * specified in the query and there is more than one election with data for the - * given voter, the additional elections are provided in the otherElections - * response field. - * @opt_param bool officialOnly If set to true, only data from official state - * sources will be returned. - * @opt_param bool returnAllAvailableData If set to true, the query will return - * the success codeand include any partial information when it is unable to - * determine a matching address or unable to determine the election for - * electionId=0 queries. - * @return Google_Service_CivicInfo_VoterInfoResponse - */ - public function voterInfoQuery($address, $optParams = array()) - { - $params = array('address' => $address); - $params = array_merge($params, $optParams); - return $this->call('voterInfoQuery', array($params), "Google_Service_CivicInfo_VoterInfoResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/Resource/Representatives.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/Resource/Representatives.php deleted file mode 100644 index 92c050dd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/Resource/Representatives.php +++ /dev/null @@ -1,79 +0,0 @@ - - * $civicinfoService = new Google_Service_CivicInfo(...); - * $representatives = $civicinfoService->representatives; - * - */ -class Google_Service_CivicInfo_Resource_Representatives extends Google_Service_Resource -{ - /** - * Looks up political geography and representative information for a single - * address. (representatives.representativeInfoByAddress) - * - * @param array $optParams Optional parameters. - * - * @opt_param string address The address to look up. May only be specified if - * the field ocdId is not given in the URL. - * @opt_param bool includeOffices Whether to return information about offices - * and officials. If false, only the top-level district information will be - * returned. - * @opt_param string levels A list of office levels to filter by. Only offices - * that serve at least one of these levels will be returned. Divisions that - * don't contain a matching office will not be returned. - * @opt_param string roles A list of office roles to filter by. Only offices - * fulfilling one of these roles will be returned. Divisions that don't contain - * a matching office will not be returned. - * @return Google_Service_CivicInfo_RepresentativeInfoResponse - */ - public function representativeInfoByAddress($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('representativeInfoByAddress', array($params), "Google_Service_CivicInfo_RepresentativeInfoResponse"); - } - /** - * Looks up representative information for a single geographic division. - * (representatives.representativeInfoByDivision) - * - * @param string $ocdId The Open Civic Data division identifier of the division - * to look up. - * @param array $optParams Optional parameters. - * - * @opt_param string levels A list of office levels to filter by. Only offices - * that serve at least one of these levels will be returned. Divisions that - * don't contain a matching office will not be returned. - * @opt_param bool recursive If true, information about all divisions contained - * in the division requested will be included as well. For example, if querying - * ocd-division/country:us/district:dc, this would also return all DC's wards - * and ANCs. - * @opt_param string roles A list of office roles to filter by. Only offices - * fulfilling one of these roles will be returned. Divisions that don't contain - * a matching office will not be returned. - * @return Google_Service_CivicInfo_RepresentativeInfoData - */ - public function representativeInfoByDivision($ocdId, $optParams = array()) - { - $params = array('ocdId' => $ocdId); - $params = array_merge($params, $optParams); - return $this->call('representativeInfoByDivision', array($params), "Google_Service_CivicInfo_RepresentativeInfoData"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/SimpleAddressType.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/SimpleAddressType.php deleted file mode 100644 index cb3a708b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/SimpleAddressType.php +++ /dev/null @@ -1,84 +0,0 @@ -city = $city; - } - public function getCity() - { - return $this->city; - } - public function setLine1($line1) - { - $this->line1 = $line1; - } - public function getLine1() - { - return $this->line1; - } - public function setLine2($line2) - { - $this->line2 = $line2; - } - public function getLine2() - { - return $this->line2; - } - public function setLine3($line3) - { - $this->line3 = $line3; - } - public function getLine3() - { - return $this->line3; - } - public function setLocationName($locationName) - { - $this->locationName = $locationName; - } - public function getLocationName() - { - return $this->locationName; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setZip($zip) - { - $this->zip = $zip; - } - public function getZip() - { - return $this->zip; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/Source.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/Source.php deleted file mode 100644 index 66392a78..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/Source.php +++ /dev/null @@ -1,39 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setOfficial($official) - { - $this->official = $official; - } - public function getOfficial() - { - return $this->official; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/StreetSegment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/StreetSegment.php deleted file mode 100644 index 0e25c89a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/StreetSegment.php +++ /dev/null @@ -1,441 +0,0 @@ -administrationRegionIds = $administrationRegionIds; - } - public function getAdministrationRegionIds() - { - return $this->administrationRegionIds; - } - public function setBeforeGeocodeId($beforeGeocodeId) - { - $this->beforeGeocodeId = $beforeGeocodeId; - } - public function getBeforeGeocodeId() - { - return $this->beforeGeocodeId; - } - public function setCatalistUniquePrecinctCode($catalistUniquePrecinctCode) - { - $this->catalistUniquePrecinctCode = $catalistUniquePrecinctCode; - } - public function getCatalistUniquePrecinctCode() - { - return $this->catalistUniquePrecinctCode; - } - public function setCity($city) - { - $this->city = $city; - } - public function getCity() - { - return $this->city; - } - public function setCityCouncilDistrict($cityCouncilDistrict) - { - $this->cityCouncilDistrict = $cityCouncilDistrict; - } - public function getCityCouncilDistrict() - { - return $this->cityCouncilDistrict; - } - public function setCongressionalDistrict($congressionalDistrict) - { - $this->congressionalDistrict = $congressionalDistrict; - } - public function getCongressionalDistrict() - { - return $this->congressionalDistrict; - } - public function setContestIds($contestIds) - { - $this->contestIds = $contestIds; - } - public function getContestIds() - { - return $this->contestIds; - } - public function setCountyCouncilDistrict($countyCouncilDistrict) - { - $this->countyCouncilDistrict = $countyCouncilDistrict; - } - public function getCountyCouncilDistrict() - { - return $this->countyCouncilDistrict; - } - public function setCountyFips($countyFips) - { - $this->countyFips = $countyFips; - } - public function getCountyFips() - { - return $this->countyFips; - } - public function setDatasetId($datasetId) - { - $this->datasetId = $datasetId; - } - public function getDatasetId() - { - return $this->datasetId; - } - public function setEarlyVoteSiteByIds($earlyVoteSiteByIds) - { - $this->earlyVoteSiteByIds = $earlyVoteSiteByIds; - } - public function getEarlyVoteSiteByIds() - { - return $this->earlyVoteSiteByIds; - } - public function setEndHouseNumber($endHouseNumber) - { - $this->endHouseNumber = $endHouseNumber; - } - public function getEndHouseNumber() - { - return $this->endHouseNumber; - } - /** - * @param Google_Service_CivicInfo_PointProto - */ - public function setGeocodedPoint(Google_Service_CivicInfo_PointProto $geocodedPoint) - { - $this->geocodedPoint = $geocodedPoint; - } - /** - * @return Google_Service_CivicInfo_PointProto - */ - public function getGeocodedPoint() - { - return $this->geocodedPoint; - } - public function setGeographicDivisionOcdIds($geographicDivisionOcdIds) - { - $this->geographicDivisionOcdIds = $geographicDivisionOcdIds; - } - public function getGeographicDivisionOcdIds() - { - return $this->geographicDivisionOcdIds; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setJudicialDistrict($judicialDistrict) - { - $this->judicialDistrict = $judicialDistrict; - } - public function getJudicialDistrict() - { - return $this->judicialDistrict; - } - public function setMailOnly($mailOnly) - { - $this->mailOnly = $mailOnly; - } - public function getMailOnly() - { - return $this->mailOnly; - } - public function setMunicipalDistrict($municipalDistrict) - { - $this->municipalDistrict = $municipalDistrict; - } - public function getMunicipalDistrict() - { - return $this->municipalDistrict; - } - public function setNcoaAddress($ncoaAddress) - { - $this->ncoaAddress = $ncoaAddress; - } - public function getNcoaAddress() - { - return $this->ncoaAddress; - } - public function setOddOrEvens($oddOrEvens) - { - $this->oddOrEvens = $oddOrEvens; - } - public function getOddOrEvens() - { - return $this->oddOrEvens; - } - public function setOriginalId($originalId) - { - $this->originalId = $originalId; - } - public function getOriginalId() - { - return $this->originalId; - } - public function setPollinglocationByIds($pollinglocationByIds) - { - $this->pollinglocationByIds = $pollinglocationByIds; - } - public function getPollinglocationByIds() - { - return $this->pollinglocationByIds; - } - public function setPrecinctName($precinctName) - { - $this->precinctName = $precinctName; - } - public function getPrecinctName() - { - return $this->precinctName; - } - public function setPrecinctOcdId($precinctOcdId) - { - $this->precinctOcdId = $precinctOcdId; - } - public function getPrecinctOcdId() - { - return $this->precinctOcdId; - } - /** - * @param Google_Service_CivicInfo_Provenance - */ - public function setProvenances($provenances) - { - $this->provenances = $provenances; - } - /** - * @return Google_Service_CivicInfo_Provenance - */ - public function getProvenances() - { - return $this->provenances; - } - public function setPublished($published) - { - $this->published = $published; - } - public function getPublished() - { - return $this->published; - } - public function setSchoolDistrict($schoolDistrict) - { - $this->schoolDistrict = $schoolDistrict; - } - public function getSchoolDistrict() - { - return $this->schoolDistrict; - } - public function setStartHouseNumber($startHouseNumber) - { - $this->startHouseNumber = $startHouseNumber; - } - public function getStartHouseNumber() - { - return $this->startHouseNumber; - } - public function setStartLatE7($startLatE7) - { - $this->startLatE7 = $startLatE7; - } - public function getStartLatE7() - { - return $this->startLatE7; - } - public function setStartLngE7($startLngE7) - { - $this->startLngE7 = $startLngE7; - } - public function getStartLngE7() - { - return $this->startLngE7; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setStateHouseDistrict($stateHouseDistrict) - { - $this->stateHouseDistrict = $stateHouseDistrict; - } - public function getStateHouseDistrict() - { - return $this->stateHouseDistrict; - } - public function setStateSenateDistrict($stateSenateDistrict) - { - $this->stateSenateDistrict = $stateSenateDistrict; - } - public function getStateSenateDistrict() - { - return $this->stateSenateDistrict; - } - public function setStreetName($streetName) - { - $this->streetName = $streetName; - } - public function getStreetName() - { - return $this->streetName; - } - public function setSubAdministrativeAreaName($subAdministrativeAreaName) - { - $this->subAdministrativeAreaName = $subAdministrativeAreaName; - } - public function getSubAdministrativeAreaName() - { - return $this->subAdministrativeAreaName; - } - public function setSurrogateId($surrogateId) - { - $this->surrogateId = $surrogateId; - } - public function getSurrogateId() - { - return $this->surrogateId; - } - public function setTargetsmartUniquePrecinctCode($targetsmartUniquePrecinctCode) - { - $this->targetsmartUniquePrecinctCode = $targetsmartUniquePrecinctCode; - } - public function getTargetsmartUniquePrecinctCode() - { - return $this->targetsmartUniquePrecinctCode; - } - public function setTownshipDistrict($townshipDistrict) - { - $this->townshipDistrict = $townshipDistrict; - } - public function getTownshipDistrict() - { - return $this->townshipDistrict; - } - public function setUnitNumber($unitNumber) - { - $this->unitNumber = $unitNumber; - } - public function getUnitNumber() - { - return $this->unitNumber; - } - public function setUnitType($unitType) - { - $this->unitType = $unitType; - } - public function getUnitType() - { - return $this->unitType; - } - public function setVanPrecinctCode($vanPrecinctCode) - { - $this->vanPrecinctCode = $vanPrecinctCode; - } - public function getVanPrecinctCode() - { - return $this->vanPrecinctCode; - } - public function setVoterGeographicDivisionOcdIds($voterGeographicDivisionOcdIds) - { - $this->voterGeographicDivisionOcdIds = $voterGeographicDivisionOcdIds; - } - public function getVoterGeographicDivisionOcdIds() - { - return $this->voterGeographicDivisionOcdIds; - } - public function setWardDistrict($wardDistrict) - { - $this->wardDistrict = $wardDistrict; - } - public function getWardDistrict() - { - return $this->wardDistrict; - } - public function setWildcard($wildcard) - { - $this->wildcard = $wildcard; - } - public function getWildcard() - { - return $this->wildcard; - } - public function setZip($zip) - { - $this->zip = $zip; - } - public function getZip() - { - return $this->zip; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/StreetSegmentList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/StreetSegmentList.php deleted file mode 100644 index c5c64fd6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/StreetSegmentList.php +++ /dev/null @@ -1,38 +0,0 @@ -segments = $segments; - } - /** - * @return Google_Service_CivicInfo_StreetSegment - */ - public function getSegments() - { - return $this->segments; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/VoterInfoRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/VoterInfoRequest.php deleted file mode 100644 index b3482acb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/VoterInfoRequest.php +++ /dev/null @@ -1,53 +0,0 @@ -contextParams = $contextParams; - } - /** - * @return Google_Service_CivicInfo_ContextParams - */ - public function getContextParams() - { - return $this->contextParams; - } - /** - * @param Google_Service_CivicInfo_VoterInfoSegmentResult - */ - public function setVoterInfoSegmentResult(Google_Service_CivicInfo_VoterInfoSegmentResult $voterInfoSegmentResult) - { - $this->voterInfoSegmentResult = $voterInfoSegmentResult; - } - /** - * @return Google_Service_CivicInfo_VoterInfoSegmentResult - */ - public function getVoterInfoSegmentResult() - { - return $this->voterInfoSegmentResult; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/VoterInfoResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/VoterInfoResponse.php deleted file mode 100644 index e34e6725..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/VoterInfoResponse.php +++ /dev/null @@ -1,193 +0,0 @@ -contests = $contests; - } - /** - * @return Google_Service_CivicInfo_Contest - */ - public function getContests() - { - return $this->contests; - } - /** - * @param Google_Service_CivicInfo_PollingLocation - */ - public function setDropOffLocations($dropOffLocations) - { - $this->dropOffLocations = $dropOffLocations; - } - /** - * @return Google_Service_CivicInfo_PollingLocation - */ - public function getDropOffLocations() - { - return $this->dropOffLocations; - } - /** - * @param Google_Service_CivicInfo_PollingLocation - */ - public function setEarlyVoteSites($earlyVoteSites) - { - $this->earlyVoteSites = $earlyVoteSites; - } - /** - * @return Google_Service_CivicInfo_PollingLocation - */ - public function getEarlyVoteSites() - { - return $this->earlyVoteSites; - } - /** - * @param Google_Service_CivicInfo_Election - */ - public function setElection(Google_Service_CivicInfo_Election $election) - { - $this->election = $election; - } - /** - * @return Google_Service_CivicInfo_Election - */ - public function getElection() - { - return $this->election; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setMailOnly($mailOnly) - { - $this->mailOnly = $mailOnly; - } - public function getMailOnly() - { - return $this->mailOnly; - } - /** - * @param Google_Service_CivicInfo_SimpleAddressType - */ - public function setNormalizedInput(Google_Service_CivicInfo_SimpleAddressType $normalizedInput) - { - $this->normalizedInput = $normalizedInput; - } - /** - * @return Google_Service_CivicInfo_SimpleAddressType - */ - public function getNormalizedInput() - { - return $this->normalizedInput; - } - /** - * @param Google_Service_CivicInfo_Election - */ - public function setOtherElections($otherElections) - { - $this->otherElections = $otherElections; - } - /** - * @return Google_Service_CivicInfo_Election - */ - public function getOtherElections() - { - return $this->otherElections; - } - /** - * @param Google_Service_CivicInfo_PollingLocation - */ - public function setPollingLocations($pollingLocations) - { - $this->pollingLocations = $pollingLocations; - } - /** - * @return Google_Service_CivicInfo_PollingLocation - */ - public function getPollingLocations() - { - return $this->pollingLocations; - } - public function setPrecinctId($precinctId) - { - $this->precinctId = $precinctId; - } - public function getPrecinctId() - { - return $this->precinctId; - } - /** - * @param Google_Service_CivicInfo_StreetSegment - */ - public function setSegments($segments) - { - $this->segments = $segments; - } - /** - * @return Google_Service_CivicInfo_StreetSegment - */ - public function getSegments() - { - return $this->segments; - } - /** - * @param Google_Service_CivicInfo_AdministrationRegion - */ - public function setState($state) - { - $this->state = $state; - } - /** - * @return Google_Service_CivicInfo_AdministrationRegion - */ - public function getState() - { - return $this->state; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/VoterInfoSegmentResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/VoterInfoSegmentResult.php deleted file mode 100644 index c3ba5c36..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CivicInfo/VoterInfoSegmentResult.php +++ /dev/null @@ -1,78 +0,0 @@ -generatedMillis = $generatedMillis; - } - public function getGeneratedMillis() - { - return $this->generatedMillis; - } - /** - * @param Google_Service_CivicInfo_PostalAddress - */ - public function setPostalAddress(Google_Service_CivicInfo_PostalAddress $postalAddress) - { - $this->postalAddress = $postalAddress; - } - /** - * @return Google_Service_CivicInfo_PostalAddress - */ - public function getPostalAddress() - { - return $this->postalAddress; - } - /** - * @param Google_Service_CivicInfo_VoterInfoRequest - */ - public function setRequest(Google_Service_CivicInfo_VoterInfoRequest $request) - { - $this->request = $request; - } - /** - * @return Google_Service_CivicInfo_VoterInfoRequest - */ - public function getRequest() - { - return $this->request; - } - /** - * @param Google_Service_CivicInfo_VoterInfoResponse - */ - public function setResponse(Google_Service_CivicInfo_VoterInfoResponse $response) - { - $this->response = $response; - } - /** - * @return Google_Service_CivicInfo_VoterInfoResponse - */ - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom.php deleted file mode 100644 index 2071c917..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom.php +++ /dev/null @@ -1,1132 +0,0 @@ - - * Manages classes, rosters, and invitations in Google Classroom.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Classroom extends Google_Service -{ - /** View and manage announcements in Google Classroom. */ - const CLASSROOM_ANNOUNCEMENTS = - "https://www.googleapis.com/auth/classroom.announcements"; - /** View announcements in Google Classroom. */ - const CLASSROOM_ANNOUNCEMENTS_READONLY = - "https://www.googleapis.com/auth/classroom.announcements.readonly"; - /** Manage your Google Classroom classes. */ - const CLASSROOM_COURSES = - "https://www.googleapis.com/auth/classroom.courses"; - /** View your Google Classroom classes. */ - const CLASSROOM_COURSES_READONLY = - "https://www.googleapis.com/auth/classroom.courses.readonly"; - /** Manage your course work and view your grades in Google Classroom. */ - const CLASSROOM_COURSEWORK_ME = - "https://www.googleapis.com/auth/classroom.coursework.me"; - /** View your course work and grades in Google Classroom. */ - const CLASSROOM_COURSEWORK_ME_READONLY = - "https://www.googleapis.com/auth/classroom.coursework.me.readonly"; - /** Manage course work and grades for students in the Google Classroom classes you teach and view the course work and grades for classes you administer. */ - const CLASSROOM_COURSEWORK_STUDENTS = - "https://www.googleapis.com/auth/classroom.coursework.students"; - /** View course work and grades for students in the Google Classroom classes you teach or administer. */ - const CLASSROOM_COURSEWORK_STUDENTS_READONLY = - "https://www.googleapis.com/auth/classroom.coursework.students.readonly"; - /** View your Google Classroom guardians. */ - const CLASSROOM_GUARDIANLINKS_ME_READONLY = - "https://www.googleapis.com/auth/classroom.guardianlinks.me.readonly"; - /** View and manage guardians for students in your Google Classroom classes. */ - const CLASSROOM_GUARDIANLINKS_STUDENTS = - "https://www.googleapis.com/auth/classroom.guardianlinks.students"; - /** View guardians for students in your Google Classroom classes. */ - const CLASSROOM_GUARDIANLINKS_STUDENTS_READONLY = - "https://www.googleapis.com/auth/classroom.guardianlinks.students.readonly"; - /** View the email addresses of people in your classes. */ - const CLASSROOM_PROFILE_EMAILS = - "https://www.googleapis.com/auth/classroom.profile.emails"; - /** View the profile photos of people in your classes. */ - const CLASSROOM_PROFILE_PHOTOS = - "https://www.googleapis.com/auth/classroom.profile.photos"; - /** Receive notifications about your Google Classroom data. */ - const CLASSROOM_PUSH_NOTIFICATIONS = - "https://www.googleapis.com/auth/classroom.push-notifications"; - /** Manage your Google Classroom class rosters. */ - const CLASSROOM_ROSTERS = - "https://www.googleapis.com/auth/classroom.rosters"; - /** View your Google Classroom class rosters. */ - const CLASSROOM_ROSTERS_READONLY = - "https://www.googleapis.com/auth/classroom.rosters.readonly"; - /** View your course work and grades in Google Classroom. */ - const CLASSROOM_STUDENT_SUBMISSIONS_ME_READONLY = - "https://www.googleapis.com/auth/classroom.student-submissions.me.readonly"; - /** View course work and grades for students in the Google Classroom classes you teach or administer. */ - const CLASSROOM_STUDENT_SUBMISSIONS_STUDENTS_READONLY = - "https://www.googleapis.com/auth/classroom.student-submissions.students.readonly"; - /** See, create, and edit topics in Google Classroom. */ - const CLASSROOM_TOPICS = - "https://www.googleapis.com/auth/classroom.topics"; - /** View topics in Google Classroom. */ - const CLASSROOM_TOPICS_READONLY = - "https://www.googleapis.com/auth/classroom.topics.readonly"; - - public $courses; - public $courses_aliases; - public $courses_announcements; - public $courses_courseWork; - public $courses_courseWork_studentSubmissions; - public $courses_students; - public $courses_teachers; - public $courses_topics; - public $invitations; - public $registrations; - public $userProfiles; - public $userProfiles_guardianInvitations; - public $userProfiles_guardians; - - /** - * Constructs the internal representation of the Classroom service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://classroom.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'classroom'; - - $this->courses = new Google_Service_Classroom_Resource_Courses( - $this, - $this->serviceName, - 'courses', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/courses', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'delete' => array( - 'path' => 'v1/courses/{id}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/courses/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/courses', - 'httpMethod' => 'GET', - 'parameters' => array( - 'teacherId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'courseStates' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'studentId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v1/courses/{id}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'v1/courses/{id}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->courses_aliases = new Google_Service_Classroom_Resource_CoursesAliases( - $this, - $this->serviceName, - 'aliases', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/courses/{courseId}/aliases', - 'httpMethod' => 'POST', - 'parameters' => array( - 'courseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/courses/{courseId}/aliases/{alias}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'courseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'alias' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/courses/{courseId}/aliases', - 'httpMethod' => 'GET', - 'parameters' => array( - 'courseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->courses_announcements = new Google_Service_Classroom_Resource_CoursesAnnouncements( - $this, - $this->serviceName, - 'announcements', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/courses/{courseId}/announcements', - 'httpMethod' => 'POST', - 'parameters' => array( - 'courseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/courses/{courseId}/announcements/{id}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'courseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/courses/{courseId}/announcements/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'courseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/courses/{courseId}/announcements', - 'httpMethod' => 'GET', - 'parameters' => array( - 'courseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'announcementStates' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'modifyAssignees' => array( - 'path' => 'v1/courses/{courseId}/announcements/{id}:modifyAssignees', - 'httpMethod' => 'POST', - 'parameters' => array( - 'courseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => 'v1/courses/{courseId}/announcements/{id}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'courseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->courses_courseWork = new Google_Service_Classroom_Resource_CoursesCourseWork( - $this, - $this->serviceName, - 'courseWork', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/courses/{courseId}/courseWork', - 'httpMethod' => 'POST', - 'parameters' => array( - 'courseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/courses/{courseId}/courseWork/{id}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'courseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/courses/{courseId}/courseWork/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'courseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/courses/{courseId}/courseWork', - 'httpMethod' => 'GET', - 'parameters' => array( - 'courseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'courseWorkStates' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ),'modifyAssignees' => array( - 'path' => 'v1/courses/{courseId}/courseWork/{id}:modifyAssignees', - 'httpMethod' => 'POST', - 'parameters' => array( - 'courseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => 'v1/courses/{courseId}/courseWork/{id}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'courseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->courses_courseWork_studentSubmissions = new Google_Service_Classroom_Resource_CoursesCourseWorkStudentSubmissions( - $this, - $this->serviceName, - 'studentSubmissions', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/courses/{courseId}/courseWork/{courseWorkId}/studentSubmissions/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'courseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'courseWorkId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/courses/{courseId}/courseWork/{courseWorkId}/studentSubmissions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'courseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'courseWorkId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'states' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'userId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'late' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'modifyAttachments' => array( - 'path' => 'v1/courses/{courseId}/courseWork/{courseWorkId}/studentSubmissions/{id}:modifyAttachments', - 'httpMethod' => 'POST', - 'parameters' => array( - 'courseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'courseWorkId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => 'v1/courses/{courseId}/courseWork/{courseWorkId}/studentSubmissions/{id}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'courseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'courseWorkId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'reclaim' => array( - 'path' => 'v1/courses/{courseId}/courseWork/{courseWorkId}/studentSubmissions/{id}:reclaim', - 'httpMethod' => 'POST', - 'parameters' => array( - 'courseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'courseWorkId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'return' => array( - 'path' => 'v1/courses/{courseId}/courseWork/{courseWorkId}/studentSubmissions/{id}:return', - 'httpMethod' => 'POST', - 'parameters' => array( - 'courseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'courseWorkId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'turnIn' => array( - 'path' => 'v1/courses/{courseId}/courseWork/{courseWorkId}/studentSubmissions/{id}:turnIn', - 'httpMethod' => 'POST', - 'parameters' => array( - 'courseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'courseWorkId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->courses_students = new Google_Service_Classroom_Resource_CoursesStudents( - $this, - $this->serviceName, - 'students', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/courses/{courseId}/students', - 'httpMethod' => 'POST', - 'parameters' => array( - 'courseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'enrollmentCode' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => 'v1/courses/{courseId}/students/{userId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'courseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/courses/{courseId}/students/{userId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'courseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/courses/{courseId}/students', - 'httpMethod' => 'GET', - 'parameters' => array( - 'courseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->courses_teachers = new Google_Service_Classroom_Resource_CoursesTeachers( - $this, - $this->serviceName, - 'teachers', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/courses/{courseId}/teachers', - 'httpMethod' => 'POST', - 'parameters' => array( - 'courseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/courses/{courseId}/teachers/{userId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'courseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/courses/{courseId}/teachers/{userId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'courseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/courses/{courseId}/teachers', - 'httpMethod' => 'GET', - 'parameters' => array( - 'courseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->courses_topics = new Google_Service_Classroom_Resource_CoursesTopics( - $this, - $this->serviceName, - 'topics', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/courses/{courseId}/topics', - 'httpMethod' => 'POST', - 'parameters' => array( - 'courseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/courses/{courseId}/topics/{id}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'courseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/courses/{courseId}/topics/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'courseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/courses/{courseId}/topics', - 'httpMethod' => 'GET', - 'parameters' => array( - 'courseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v1/courses/{courseId}/topics/{id}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'courseId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->invitations = new Google_Service_Classroom_Resource_Invitations( - $this, - $this->serviceName, - 'invitations', - array( - 'methods' => array( - 'accept' => array( - 'path' => 'v1/invitations/{id}:accept', - 'httpMethod' => 'POST', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'create' => array( - 'path' => 'v1/invitations', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'delete' => array( - 'path' => 'v1/invitations/{id}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/invitations/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/invitations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'courseId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->registrations = new Google_Service_Classroom_Resource_Registrations( - $this, - $this->serviceName, - 'registrations', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/registrations', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'delete' => array( - 'path' => 'v1/registrations/{registrationId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'registrationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->userProfiles = new Google_Service_Classroom_Resource_UserProfiles( - $this, - $this->serviceName, - 'userProfiles', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/userProfiles/{userId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->userProfiles_guardianInvitations = new Google_Service_Classroom_Resource_UserProfilesGuardianInvitations( - $this, - $this->serviceName, - 'guardianInvitations', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/userProfiles/{studentId}/guardianInvitations', - 'httpMethod' => 'POST', - 'parameters' => array( - 'studentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/userProfiles/{studentId}/guardianInvitations/{invitationId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'studentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'invitationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/userProfiles/{studentId}/guardianInvitations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'studentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'invitedEmailAddress' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'states' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v1/userProfiles/{studentId}/guardianInvitations/{invitationId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'studentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'invitationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->userProfiles_guardians = new Google_Service_Classroom_Resource_UserProfilesGuardians( - $this, - $this->serviceName, - 'guardians', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'v1/userProfiles/{studentId}/guardians/{guardianId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'studentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'guardianId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/userProfiles/{studentId}/guardians/{guardianId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'studentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'guardianId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/userProfiles/{studentId}/guardians', - 'httpMethod' => 'GET', - 'parameters' => array( - 'studentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'invitedEmailAddress' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Announcement.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Announcement.php deleted file mode 100644 index e0d3d474..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Announcement.php +++ /dev/null @@ -1,144 +0,0 @@ -alternateLink = $alternateLink; - } - public function getAlternateLink() - { - return $this->alternateLink; - } - public function setAssigneeMode($assigneeMode) - { - $this->assigneeMode = $assigneeMode; - } - public function getAssigneeMode() - { - return $this->assigneeMode; - } - public function setCourseId($courseId) - { - $this->courseId = $courseId; - } - public function getCourseId() - { - return $this->courseId; - } - public function setCreationTime($creationTime) - { - $this->creationTime = $creationTime; - } - public function getCreationTime() - { - return $this->creationTime; - } - public function setCreatorUserId($creatorUserId) - { - $this->creatorUserId = $creatorUserId; - } - public function getCreatorUserId() - { - return $this->creatorUserId; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Classroom_IndividualStudentsOptions - */ - public function setIndividualStudentsOptions(Google_Service_Classroom_IndividualStudentsOptions $individualStudentsOptions) - { - $this->individualStudentsOptions = $individualStudentsOptions; - } - /** - * @return Google_Service_Classroom_IndividualStudentsOptions - */ - public function getIndividualStudentsOptions() - { - return $this->individualStudentsOptions; - } - /** - * @param Google_Service_Classroom_Material - */ - public function setMaterials($materials) - { - $this->materials = $materials; - } - /** - * @return Google_Service_Classroom_Material - */ - public function getMaterials() - { - return $this->materials; - } - public function setScheduledTime($scheduledTime) - { - $this->scheduledTime = $scheduledTime; - } - public function getScheduledTime() - { - return $this->scheduledTime; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setText($text) - { - $this->text = $text; - } - public function getText() - { - return $this->text; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Assignment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Assignment.php deleted file mode 100644 index 4310207e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Assignment.php +++ /dev/null @@ -1,37 +0,0 @@ -studentWorkFolder = $studentWorkFolder; - } - /** - * @return Google_Service_Classroom_DriveFolder - */ - public function getStudentWorkFolder() - { - return $this->studentWorkFolder; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/AssignmentSubmission.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/AssignmentSubmission.php deleted file mode 100644 index 86f59a31..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/AssignmentSubmission.php +++ /dev/null @@ -1,38 +0,0 @@ -attachments = $attachments; - } - /** - * @return Google_Service_Classroom_Attachment - */ - public function getAttachments() - { - return $this->attachments; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Attachment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Attachment.php deleted file mode 100644 index 47490b16..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Attachment.php +++ /dev/null @@ -1,85 +0,0 @@ -driveFile = $driveFile; - } - /** - * @return Google_Service_Classroom_DriveFile - */ - public function getDriveFile() - { - return $this->driveFile; - } - /** - * @param Google_Service_Classroom_Form - */ - public function setForm(Google_Service_Classroom_Form $form) - { - $this->form = $form; - } - /** - * @return Google_Service_Classroom_Form - */ - public function getForm() - { - return $this->form; - } - /** - * @param Google_Service_Classroom_Link - */ - public function setLink(Google_Service_Classroom_Link $link) - { - $this->link = $link; - } - /** - * @return Google_Service_Classroom_Link - */ - public function getLink() - { - return $this->link; - } - /** - * @param Google_Service_Classroom_YouTubeVideo - */ - public function setYouTubeVideo(Google_Service_Classroom_YouTubeVideo $youTubeVideo) - { - $this->youTubeVideo = $youTubeVideo; - } - /** - * @return Google_Service_Classroom_YouTubeVideo - */ - public function getYouTubeVideo() - { - return $this->youTubeVideo; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ClassroomEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ClassroomEmpty.php deleted file mode 100644 index 210892d8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ClassroomEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -topicName = $topicName; - } - public function getTopicName() - { - return $this->topicName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Course.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Course.php deleted file mode 100644 index 0b7873d9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Course.php +++ /dev/null @@ -1,198 +0,0 @@ -alternateLink = $alternateLink; - } - public function getAlternateLink() - { - return $this->alternateLink; - } - public function setCalendarId($calendarId) - { - $this->calendarId = $calendarId; - } - public function getCalendarId() - { - return $this->calendarId; - } - public function setCourseGroupEmail($courseGroupEmail) - { - $this->courseGroupEmail = $courseGroupEmail; - } - public function getCourseGroupEmail() - { - return $this->courseGroupEmail; - } - /** - * @param Google_Service_Classroom_CourseMaterialSet - */ - public function setCourseMaterialSets($courseMaterialSets) - { - $this->courseMaterialSets = $courseMaterialSets; - } - /** - * @return Google_Service_Classroom_CourseMaterialSet - */ - public function getCourseMaterialSets() - { - return $this->courseMaterialSets; - } - public function setCourseState($courseState) - { - $this->courseState = $courseState; - } - public function getCourseState() - { - return $this->courseState; - } - 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; - } - public function setDescriptionHeading($descriptionHeading) - { - $this->descriptionHeading = $descriptionHeading; - } - public function getDescriptionHeading() - { - return $this->descriptionHeading; - } - public function setEnrollmentCode($enrollmentCode) - { - $this->enrollmentCode = $enrollmentCode; - } - public function getEnrollmentCode() - { - return $this->enrollmentCode; - } - public function setGuardiansEnabled($guardiansEnabled) - { - $this->guardiansEnabled = $guardiansEnabled; - } - public function getGuardiansEnabled() - { - return $this->guardiansEnabled; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOwnerId($ownerId) - { - $this->ownerId = $ownerId; - } - public function getOwnerId() - { - return $this->ownerId; - } - public function setRoom($room) - { - $this->room = $room; - } - public function getRoom() - { - return $this->room; - } - public function setSection($section) - { - $this->section = $section; - } - public function getSection() - { - return $this->section; - } - /** - * @param Google_Service_Classroom_DriveFolder - */ - public function setTeacherFolder(Google_Service_Classroom_DriveFolder $teacherFolder) - { - $this->teacherFolder = $teacherFolder; - } - /** - * @return Google_Service_Classroom_DriveFolder - */ - public function getTeacherFolder() - { - return $this->teacherFolder; - } - public function setTeacherGroupEmail($teacherGroupEmail) - { - $this->teacherGroupEmail = $teacherGroupEmail; - } - public function getTeacherGroupEmail() - { - return $this->teacherGroupEmail; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/CourseAlias.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/CourseAlias.php deleted file mode 100644 index 857843fd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/CourseAlias.php +++ /dev/null @@ -1,30 +0,0 @@ -alias = $alias; - } - public function getAlias() - { - return $this->alias; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/CourseMaterial.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/CourseMaterial.php deleted file mode 100644 index 6ae28bfc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/CourseMaterial.php +++ /dev/null @@ -1,85 +0,0 @@ -driveFile = $driveFile; - } - /** - * @return Google_Service_Classroom_DriveFile - */ - public function getDriveFile() - { - return $this->driveFile; - } - /** - * @param Google_Service_Classroom_Form - */ - public function setForm(Google_Service_Classroom_Form $form) - { - $this->form = $form; - } - /** - * @return Google_Service_Classroom_Form - */ - public function getForm() - { - return $this->form; - } - /** - * @param Google_Service_Classroom_Link - */ - public function setLink(Google_Service_Classroom_Link $link) - { - $this->link = $link; - } - /** - * @return Google_Service_Classroom_Link - */ - public function getLink() - { - return $this->link; - } - /** - * @param Google_Service_Classroom_YouTubeVideo - */ - public function setYouTubeVideo(Google_Service_Classroom_YouTubeVideo $youTubeVideo) - { - $this->youTubeVideo = $youTubeVideo; - } - /** - * @return Google_Service_Classroom_YouTubeVideo - */ - public function getYouTubeVideo() - { - return $this->youTubeVideo; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/CourseMaterialSet.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/CourseMaterialSet.php deleted file mode 100644 index c9f1ce0e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/CourseMaterialSet.php +++ /dev/null @@ -1,47 +0,0 @@ -materials = $materials; - } - /** - * @return Google_Service_Classroom_CourseMaterial - */ - public function getMaterials() - { - return $this->materials; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/CourseRosterChangesInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/CourseRosterChangesInfo.php deleted file mode 100644 index d89fc20d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/CourseRosterChangesInfo.php +++ /dev/null @@ -1,30 +0,0 @@ -courseId = $courseId; - } - public function getCourseId() - { - return $this->courseId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/CourseWork.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/CourseWork.php deleted file mode 100644 index cfb26d91..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/CourseWork.php +++ /dev/null @@ -1,262 +0,0 @@ -alternateLink = $alternateLink; - } - public function getAlternateLink() - { - return $this->alternateLink; - } - public function setAssigneeMode($assigneeMode) - { - $this->assigneeMode = $assigneeMode; - } - public function getAssigneeMode() - { - return $this->assigneeMode; - } - /** - * @param Google_Service_Classroom_Assignment - */ - public function setAssignment(Google_Service_Classroom_Assignment $assignment) - { - $this->assignment = $assignment; - } - /** - * @return Google_Service_Classroom_Assignment - */ - public function getAssignment() - { - return $this->assignment; - } - public function setAssociatedWithDeveloper($associatedWithDeveloper) - { - $this->associatedWithDeveloper = $associatedWithDeveloper; - } - public function getAssociatedWithDeveloper() - { - return $this->associatedWithDeveloper; - } - public function setCourseId($courseId) - { - $this->courseId = $courseId; - } - public function getCourseId() - { - return $this->courseId; - } - public function setCreationTime($creationTime) - { - $this->creationTime = $creationTime; - } - public function getCreationTime() - { - return $this->creationTime; - } - public function setCreatorUserId($creatorUserId) - { - $this->creatorUserId = $creatorUserId; - } - public function getCreatorUserId() - { - return $this->creatorUserId; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - /** - * @param Google_Service_Classroom_Date - */ - public function setDueDate(Google_Service_Classroom_Date $dueDate) - { - $this->dueDate = $dueDate; - } - /** - * @return Google_Service_Classroom_Date - */ - public function getDueDate() - { - return $this->dueDate; - } - /** - * @param Google_Service_Classroom_TimeOfDay - */ - public function setDueTime(Google_Service_Classroom_TimeOfDay $dueTime) - { - $this->dueTime = $dueTime; - } - /** - * @return Google_Service_Classroom_TimeOfDay - */ - public function getDueTime() - { - return $this->dueTime; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Classroom_IndividualStudentsOptions - */ - public function setIndividualStudentsOptions(Google_Service_Classroom_IndividualStudentsOptions $individualStudentsOptions) - { - $this->individualStudentsOptions = $individualStudentsOptions; - } - /** - * @return Google_Service_Classroom_IndividualStudentsOptions - */ - public function getIndividualStudentsOptions() - { - return $this->individualStudentsOptions; - } - /** - * @param Google_Service_Classroom_Material - */ - public function setMaterials($materials) - { - $this->materials = $materials; - } - /** - * @return Google_Service_Classroom_Material - */ - public function getMaterials() - { - return $this->materials; - } - public function setMaxPoints($maxPoints) - { - $this->maxPoints = $maxPoints; - } - public function getMaxPoints() - { - return $this->maxPoints; - } - /** - * @param Google_Service_Classroom_MultipleChoiceQuestion - */ - public function setMultipleChoiceQuestion(Google_Service_Classroom_MultipleChoiceQuestion $multipleChoiceQuestion) - { - $this->multipleChoiceQuestion = $multipleChoiceQuestion; - } - /** - * @return Google_Service_Classroom_MultipleChoiceQuestion - */ - public function getMultipleChoiceQuestion() - { - return $this->multipleChoiceQuestion; - } - public function setScheduledTime($scheduledTime) - { - $this->scheduledTime = $scheduledTime; - } - public function getScheduledTime() - { - return $this->scheduledTime; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setSubmissionModificationMode($submissionModificationMode) - { - $this->submissionModificationMode = $submissionModificationMode; - } - public function getSubmissionModificationMode() - { - return $this->submissionModificationMode; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setTopicId($topicId) - { - $this->topicId = $topicId; - } - public function getTopicId() - { - return $this->topicId; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } - public function setWorkType($workType) - { - $this->workType = $workType; - } - public function getWorkType() - { - return $this->workType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/CourseWorkChangesInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/CourseWorkChangesInfo.php deleted file mode 100644 index 742703da..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/CourseWorkChangesInfo.php +++ /dev/null @@ -1,30 +0,0 @@ -courseId = $courseId; - } - public function getCourseId() - { - return $this->courseId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Date.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Date.php deleted file mode 100644 index 017add24..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Date.php +++ /dev/null @@ -1,48 +0,0 @@ -day = $day; - } - public function getDay() - { - return $this->day; - } - public function setMonth($month) - { - $this->month = $month; - } - public function getMonth() - { - return $this->month; - } - public function setYear($year) - { - $this->year = $year; - } - public function getYear() - { - return $this->year; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/DriveFile.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/DriveFile.php deleted file mode 100644 index 94e195b3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/DriveFile.php +++ /dev/null @@ -1,57 +0,0 @@ -alternateLink = $alternateLink; - } - public function getAlternateLink() - { - return $this->alternateLink; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setThumbnailUrl($thumbnailUrl) - { - $this->thumbnailUrl = $thumbnailUrl; - } - public function getThumbnailUrl() - { - return $this->thumbnailUrl; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/DriveFolder.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/DriveFolder.php deleted file mode 100644 index d819e327..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/DriveFolder.php +++ /dev/null @@ -1,48 +0,0 @@ -alternateLink = $alternateLink; - } - public function getAlternateLink() - { - return $this->alternateLink; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Feed.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Feed.php deleted file mode 100644 index dea7441b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Feed.php +++ /dev/null @@ -1,62 +0,0 @@ -courseRosterChangesInfo = $courseRosterChangesInfo; - } - /** - * @return Google_Service_Classroom_CourseRosterChangesInfo - */ - public function getCourseRosterChangesInfo() - { - return $this->courseRosterChangesInfo; - } - /** - * @param Google_Service_Classroom_CourseWorkChangesInfo - */ - public function setCourseWorkChangesInfo(Google_Service_Classroom_CourseWorkChangesInfo $courseWorkChangesInfo) - { - $this->courseWorkChangesInfo = $courseWorkChangesInfo; - } - /** - * @return Google_Service_Classroom_CourseWorkChangesInfo - */ - public function getCourseWorkChangesInfo() - { - return $this->courseWorkChangesInfo; - } - public function setFeedType($feedType) - { - $this->feedType = $feedType; - } - public function getFeedType() - { - return $this->feedType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Form.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Form.php deleted file mode 100644 index ec83045c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Form.php +++ /dev/null @@ -1,57 +0,0 @@ -formUrl = $formUrl; - } - public function getFormUrl() - { - return $this->formUrl; - } - public function setResponseUrl($responseUrl) - { - $this->responseUrl = $responseUrl; - } - public function getResponseUrl() - { - return $this->responseUrl; - } - public function setThumbnailUrl($thumbnailUrl) - { - $this->thumbnailUrl = $thumbnailUrl; - } - public function getThumbnailUrl() - { - return $this->thumbnailUrl; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/GlobalPermission.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/GlobalPermission.php deleted file mode 100644 index cfb47e3b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/GlobalPermission.php +++ /dev/null @@ -1,30 +0,0 @@ -permission = $permission; - } - public function getPermission() - { - return $this->permission; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/GradeHistory.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/GradeHistory.php deleted file mode 100644 index f359df8f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/GradeHistory.php +++ /dev/null @@ -1,66 +0,0 @@ -actorUserId = $actorUserId; - } - public function getActorUserId() - { - return $this->actorUserId; - } - public function setGradeChangeType($gradeChangeType) - { - $this->gradeChangeType = $gradeChangeType; - } - public function getGradeChangeType() - { - return $this->gradeChangeType; - } - public function setGradeTimestamp($gradeTimestamp) - { - $this->gradeTimestamp = $gradeTimestamp; - } - public function getGradeTimestamp() - { - return $this->gradeTimestamp; - } - public function setMaxPoints($maxPoints) - { - $this->maxPoints = $maxPoints; - } - public function getMaxPoints() - { - return $this->maxPoints; - } - public function setPointsEarned($pointsEarned) - { - $this->pointsEarned = $pointsEarned; - } - public function getPointsEarned() - { - return $this->pointsEarned; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Guardian.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Guardian.php deleted file mode 100644 index 936984b0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Guardian.php +++ /dev/null @@ -1,64 +0,0 @@ -guardianId = $guardianId; - } - public function getGuardianId() - { - return $this->guardianId; - } - /** - * @param Google_Service_Classroom_UserProfile - */ - public function setGuardianProfile(Google_Service_Classroom_UserProfile $guardianProfile) - { - $this->guardianProfile = $guardianProfile; - } - /** - * @return Google_Service_Classroom_UserProfile - */ - public function getGuardianProfile() - { - return $this->guardianProfile; - } - public function setInvitedEmailAddress($invitedEmailAddress) - { - $this->invitedEmailAddress = $invitedEmailAddress; - } - public function getInvitedEmailAddress() - { - return $this->invitedEmailAddress; - } - public function setStudentId($studentId) - { - $this->studentId = $studentId; - } - public function getStudentId() - { - return $this->studentId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/GuardianInvitation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/GuardianInvitation.php deleted file mode 100644 index f055cc7c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/GuardianInvitation.php +++ /dev/null @@ -1,66 +0,0 @@ -creationTime = $creationTime; - } - public function getCreationTime() - { - return $this->creationTime; - } - public function setInvitationId($invitationId) - { - $this->invitationId = $invitationId; - } - public function getInvitationId() - { - return $this->invitationId; - } - public function setInvitedEmailAddress($invitedEmailAddress) - { - $this->invitedEmailAddress = $invitedEmailAddress; - } - public function getInvitedEmailAddress() - { - return $this->invitedEmailAddress; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setStudentId($studentId) - { - $this->studentId = $studentId; - } - public function getStudentId() - { - return $this->studentId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/IndividualStudentsOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/IndividualStudentsOptions.php deleted file mode 100644 index 6ba95b63..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/IndividualStudentsOptions.php +++ /dev/null @@ -1,31 +0,0 @@ -studentIds = $studentIds; - } - public function getStudentIds() - { - return $this->studentIds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Invitation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Invitation.php deleted file mode 100644 index 4101bd38..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Invitation.php +++ /dev/null @@ -1,57 +0,0 @@ -courseId = $courseId; - } - public function getCourseId() - { - return $this->courseId; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } - public function setUserId($userId) - { - $this->userId = $userId; - } - public function getUserId() - { - return $this->userId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Link.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Link.php deleted file mode 100644 index 14691704..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Link.php +++ /dev/null @@ -1,48 +0,0 @@ -thumbnailUrl = $thumbnailUrl; - } - public function getThumbnailUrl() - { - return $this->thumbnailUrl; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ListAnnouncementsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ListAnnouncementsResponse.php deleted file mode 100644 index cc99343d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ListAnnouncementsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -announcements = $announcements; - } - /** - * @return Google_Service_Classroom_Announcement - */ - public function getAnnouncements() - { - return $this->announcements; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ListCourseAliasesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ListCourseAliasesResponse.php deleted file mode 100644 index 685de6c8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ListCourseAliasesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -aliases = $aliases; - } - /** - * @return Google_Service_Classroom_CourseAlias - */ - public function getAliases() - { - return $this->aliases; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ListCourseWorkResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ListCourseWorkResponse.php deleted file mode 100644 index e10cb70f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ListCourseWorkResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -courseWork = $courseWork; - } - /** - * @return Google_Service_Classroom_CourseWork - */ - public function getCourseWork() - { - return $this->courseWork; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ListCoursesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ListCoursesResponse.php deleted file mode 100644 index 187bb74c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ListCoursesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -courses = $courses; - } - /** - * @return Google_Service_Classroom_Course - */ - public function getCourses() - { - return $this->courses; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ListGuardianInvitationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ListGuardianInvitationsResponse.php deleted file mode 100644 index f373b67b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ListGuardianInvitationsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -guardianInvitations = $guardianInvitations; - } - /** - * @return Google_Service_Classroom_GuardianInvitation - */ - public function getGuardianInvitations() - { - return $this->guardianInvitations; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ListGuardiansResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ListGuardiansResponse.php deleted file mode 100644 index 7cee9fa9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ListGuardiansResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -guardians = $guardians; - } - /** - * @return Google_Service_Classroom_Guardian - */ - public function getGuardians() - { - return $this->guardians; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ListInvitationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ListInvitationsResponse.php deleted file mode 100644 index f23cb199..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ListInvitationsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -invitations = $invitations; - } - /** - * @return Google_Service_Classroom_Invitation - */ - public function getInvitations() - { - return $this->invitations; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ListStudentSubmissionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ListStudentSubmissionsResponse.php deleted file mode 100644 index 7dcdd6de..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ListStudentSubmissionsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Classroom_StudentSubmission - */ - public function setStudentSubmissions($studentSubmissions) - { - $this->studentSubmissions = $studentSubmissions; - } - /** - * @return Google_Service_Classroom_StudentSubmission - */ - public function getStudentSubmissions() - { - return $this->studentSubmissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ListStudentsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ListStudentsResponse.php deleted file mode 100644 index 198b4b86..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ListStudentsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Classroom_Student - */ - public function setStudents($students) - { - $this->students = $students; - } - /** - * @return Google_Service_Classroom_Student - */ - public function getStudents() - { - return $this->students; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ListTeachersResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ListTeachersResponse.php deleted file mode 100644 index 41fcda47..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ListTeachersResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Classroom_Teacher - */ - public function setTeachers($teachers) - { - $this->teachers = $teachers; - } - /** - * @return Google_Service_Classroom_Teacher - */ - public function getTeachers() - { - return $this->teachers; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ListTopicResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ListTopicResponse.php deleted file mode 100644 index 17a1d7a5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ListTopicResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Classroom_Topic - */ - public function setTopic($topic) - { - $this->topic = $topic; - } - /** - * @return Google_Service_Classroom_Topic - */ - public function getTopic() - { - return $this->topic; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Material.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Material.php deleted file mode 100644 index d1391005..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Material.php +++ /dev/null @@ -1,85 +0,0 @@ -driveFile = $driveFile; - } - /** - * @return Google_Service_Classroom_SharedDriveFile - */ - public function getDriveFile() - { - return $this->driveFile; - } - /** - * @param Google_Service_Classroom_Form - */ - public function setForm(Google_Service_Classroom_Form $form) - { - $this->form = $form; - } - /** - * @return Google_Service_Classroom_Form - */ - public function getForm() - { - return $this->form; - } - /** - * @param Google_Service_Classroom_Link - */ - public function setLink(Google_Service_Classroom_Link $link) - { - $this->link = $link; - } - /** - * @return Google_Service_Classroom_Link - */ - public function getLink() - { - return $this->link; - } - /** - * @param Google_Service_Classroom_YouTubeVideo - */ - public function setYoutubeVideo(Google_Service_Classroom_YouTubeVideo $youtubeVideo) - { - $this->youtubeVideo = $youtubeVideo; - } - /** - * @return Google_Service_Classroom_YouTubeVideo - */ - public function getYoutubeVideo() - { - return $this->youtubeVideo; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ModifyAnnouncementAssigneesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ModifyAnnouncementAssigneesRequest.php deleted file mode 100644 index 47b9ba60..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ModifyAnnouncementAssigneesRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -assigneeMode = $assigneeMode; - } - public function getAssigneeMode() - { - return $this->assigneeMode; - } - /** - * @param Google_Service_Classroom_ModifyIndividualStudentsOptions - */ - public function setModifyIndividualStudentsOptions(Google_Service_Classroom_ModifyIndividualStudentsOptions $modifyIndividualStudentsOptions) - { - $this->modifyIndividualStudentsOptions = $modifyIndividualStudentsOptions; - } - /** - * @return Google_Service_Classroom_ModifyIndividualStudentsOptions - */ - public function getModifyIndividualStudentsOptions() - { - return $this->modifyIndividualStudentsOptions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ModifyAttachmentsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ModifyAttachmentsRequest.php deleted file mode 100644 index 7935d1a4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ModifyAttachmentsRequest.php +++ /dev/null @@ -1,38 +0,0 @@ -addAttachments = $addAttachments; - } - /** - * @return Google_Service_Classroom_Attachment - */ - public function getAddAttachments() - { - return $this->addAttachments; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ModifyCourseWorkAssigneesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ModifyCourseWorkAssigneesRequest.php deleted file mode 100644 index 72413c83..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ModifyCourseWorkAssigneesRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -assigneeMode = $assigneeMode; - } - public function getAssigneeMode() - { - return $this->assigneeMode; - } - /** - * @param Google_Service_Classroom_ModifyIndividualStudentsOptions - */ - public function setModifyIndividualStudentsOptions(Google_Service_Classroom_ModifyIndividualStudentsOptions $modifyIndividualStudentsOptions) - { - $this->modifyIndividualStudentsOptions = $modifyIndividualStudentsOptions; - } - /** - * @return Google_Service_Classroom_ModifyIndividualStudentsOptions - */ - public function getModifyIndividualStudentsOptions() - { - return $this->modifyIndividualStudentsOptions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ModifyIndividualStudentsOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ModifyIndividualStudentsOptions.php deleted file mode 100644 index fe197ee9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ModifyIndividualStudentsOptions.php +++ /dev/null @@ -1,40 +0,0 @@ -addStudentIds = $addStudentIds; - } - public function getAddStudentIds() - { - return $this->addStudentIds; - } - public function setRemoveStudentIds($removeStudentIds) - { - $this->removeStudentIds = $removeStudentIds; - } - public function getRemoveStudentIds() - { - return $this->removeStudentIds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/MultipleChoiceQuestion.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/MultipleChoiceQuestion.php deleted file mode 100644 index 4ec8dff8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/MultipleChoiceQuestion.php +++ /dev/null @@ -1,31 +0,0 @@ -choices = $choices; - } - public function getChoices() - { - return $this->choices; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/MultipleChoiceSubmission.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/MultipleChoiceSubmission.php deleted file mode 100644 index bc5a3f4e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/MultipleChoiceSubmission.php +++ /dev/null @@ -1,30 +0,0 @@ -answer = $answer; - } - public function getAnswer() - { - return $this->answer; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Name.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Name.php deleted file mode 100644 index f0fe92aa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Name.php +++ /dev/null @@ -1,48 +0,0 @@ -familyName = $familyName; - } - public function getFamilyName() - { - return $this->familyName; - } - public function setFullName($fullName) - { - $this->fullName = $fullName; - } - public function getFullName() - { - return $this->fullName; - } - public function setGivenName($givenName) - { - $this->givenName = $givenName; - } - public function getGivenName() - { - return $this->givenName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ReclaimStudentSubmissionRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ReclaimStudentSubmissionRequest.php deleted file mode 100644 index dc581846..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ReclaimStudentSubmissionRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -cloudPubsubTopic = $cloudPubsubTopic; - } - /** - * @return Google_Service_Classroom_CloudPubsubTopic - */ - public function getCloudPubsubTopic() - { - return $this->cloudPubsubTopic; - } - public function setExpiryTime($expiryTime) - { - $this->expiryTime = $expiryTime; - } - public function getExpiryTime() - { - return $this->expiryTime; - } - /** - * @param Google_Service_Classroom_Feed - */ - public function setFeed(Google_Service_Classroom_Feed $feed) - { - $this->feed = $feed; - } - /** - * @return Google_Service_Classroom_Feed - */ - public function getFeed() - { - return $this->feed; - } - public function setRegistrationId($registrationId) - { - $this->registrationId = $registrationId; - } - public function getRegistrationId() - { - return $this->registrationId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Resource/Courses.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Resource/Courses.php deleted file mode 100644 index b05d3906..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Resource/Courses.php +++ /dev/null @@ -1,198 +0,0 @@ - - * $classroomService = new Google_Service_Classroom(...); - * $courses = $classroomService->courses; - * - */ -class Google_Service_Classroom_Resource_Courses extends Google_Service_Resource -{ - /** - * Creates a course. - * - * The user specified in `ownerId` is the owner of the created course and added - * as a teacher. - * - * This method returns the following error codes: - * - * * `PERMISSION_DENIED` if the requesting user is not permitted to create - * courses or for access errors. * `NOT_FOUND` if the primary teacher is not a - * valid user. * `FAILED_PRECONDITION` if the course owner's account is disabled - * or for the following request errors: * UserGroupsMembershipLimitReached * - * `ALREADY_EXISTS` if an alias was specified in the `id` and already exists. - * (courses.create) - * - * @param Google_Service_Classroom_Course $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Classroom_Course - */ - public function create(Google_Service_Classroom_Course $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Classroom_Course"); - } - /** - * Deletes a course. - * - * This method returns the following error codes: - * - * * `PERMISSION_DENIED` if the requesting user is not permitted to delete the - * requested course or for access errors. * `NOT_FOUND` if no course exists with - * the requested ID. (courses.delete) - * - * @param string $id Identifier of the course to delete. This identifier can be - * either the Classroom-assigned identifier or an alias. - * @param array $optParams Optional parameters. - * @return Google_Service_Classroom_ClassroomEmpty - */ - public function delete($id, $optParams = array()) - { - $params = array('id' => $id); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Classroom_ClassroomEmpty"); - } - /** - * Returns a course. - * - * This method returns the following error codes: - * - * * `PERMISSION_DENIED` if the requesting user is not permitted to access the - * requested course or for access errors. * `NOT_FOUND` if no course exists with - * the requested ID. (courses.get) - * - * @param string $id Identifier of the course to return. This identifier can be - * either the Classroom-assigned identifier or an alias. - * @param array $optParams Optional parameters. - * @return Google_Service_Classroom_Course - */ - public function get($id, $optParams = array()) - { - $params = array('id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Classroom_Course"); - } - /** - * Returns a list of courses that the requesting user is permitted to view, - * restricted to those that match the request. Returned courses are ordered by - * creation time, with the most recently created coming first. - * - * This method returns the following error codes: - * - * * `PERMISSION_DENIED` for access errors. * `INVALID_ARGUMENT` if the query - * argument is malformed. * `NOT_FOUND` if any users specified in the query - * arguments do not exist. (courses.listCourses) - * - * @param array $optParams Optional parameters. - * - * @opt_param string teacherId Restricts returned courses to those having a - * teacher with the specified identifier. The identifier can be one of the - * following: - * - * * the numeric identifier for the user * the email address of the user * the - * string literal `"me"`, indicating the requesting user - * @opt_param string courseStates Restricts returned courses to those in one of - * the specified states The default value is ACTIVE, ARCHIVED, PROVISIONED, - * DECLINED. - * @opt_param string studentId Restricts returned courses to those having a - * student with the specified identifier. The identifier can be one of the - * following: - * - * * the numeric identifier for the user * the email address of the user * the - * string literal `"me"`, indicating the requesting user - * @opt_param string pageToken nextPageToken value returned from a previous list - * call, indicating that the subsequent page of results should be returned. - * - * The list request must be otherwise identical to the one that resulted in this - * token. - * @opt_param int pageSize Maximum number of items to return. Zero or - * unspecified indicates that the server may assign a maximum. - * - * The server may return fewer than the specified number of results. - * @return Google_Service_Classroom_ListCoursesResponse - */ - public function listCourses($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Classroom_ListCoursesResponse"); - } - /** - * Updates one or more fields in a course. - * - * This method returns the following error codes: - * - * * `PERMISSION_DENIED` if the requesting user is not permitted to modify the - * requested course or for access errors. * `NOT_FOUND` if no course exists with - * the requested ID. * `INVALID_ARGUMENT` if invalid fields are specified in the - * update mask or if no update mask is supplied. * `FAILED_PRECONDITION` for the - * following request errors: * CourseNotModifiable (courses.patch) - * - * @param string $id Identifier of the course to update. This identifier can be - * either the Classroom-assigned identifier or an alias. - * @param Google_Service_Classroom_Course $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Mask that identifies which fields on the course - * to update. This field is required to do an update. The update will fail if - * invalid fields are specified. The following fields are valid: - * - * * `name` * `section` * `descriptionHeading` * `description` * `room` * - * `courseState` * `ownerId` - * - * Note: patches to ownerId are treated as being effective immediately, but in - * practice it may take some time for the ownership transfer of all affected - * resources to complete. - * - * When set in a query parameter, this field should be specified as - * - * `updateMask=,,...` - * @return Google_Service_Classroom_Course - */ - public function patch($id, Google_Service_Classroom_Course $postBody, $optParams = array()) - { - $params = array('id' => $id, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Classroom_Course"); - } - /** - * Updates a course. - * - * This method returns the following error codes: - * - * * `PERMISSION_DENIED` if the requesting user is not permitted to modify the - * requested course or for access errors. * `NOT_FOUND` if no course exists with - * the requested ID. * `FAILED_PRECONDITION` for the following request errors: - * * CourseNotModifiable (courses.update) - * - * @param string $id Identifier of the course to update. This identifier can be - * either the Classroom-assigned identifier or an alias. - * @param Google_Service_Classroom_Course $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Classroom_Course - */ - public function update($id, Google_Service_Classroom_Course $postBody, $optParams = array()) - { - $params = array('id' => $id, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Classroom_Course"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Resource/CoursesAliases.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Resource/CoursesAliases.php deleted file mode 100644 index e1aea95f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Resource/CoursesAliases.php +++ /dev/null @@ -1,107 +0,0 @@ - - * $classroomService = new Google_Service_Classroom(...); - * $aliases = $classroomService->aliases; - * - */ -class Google_Service_Classroom_Resource_CoursesAliases extends Google_Service_Resource -{ - /** - * Creates an alias for a course. - * - * This method returns the following error codes: - * - * * `PERMISSION_DENIED` if the requesting user is not permitted to create the - * alias or for access errors. * `NOT_FOUND` if the course does not exist. * - * `ALREADY_EXISTS` if the alias already exists. * `FAILED_PRECONDITION` if the - * alias requested does not make sense for the requesting user or course (for - * example, if a user not in a domain attempts to access a domain-scoped - * alias). (aliases.create) - * - * @param string $courseId Identifier of the course to alias. This identifier - * can be either the Classroom-assigned identifier or an alias. - * @param Google_Service_Classroom_CourseAlias $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Classroom_CourseAlias - */ - public function create($courseId, Google_Service_Classroom_CourseAlias $postBody, $optParams = array()) - { - $params = array('courseId' => $courseId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Classroom_CourseAlias"); - } - /** - * Deletes an alias of a course. - * - * This method returns the following error codes: - * - * * `PERMISSION_DENIED` if the requesting user is not permitted to remove the - * alias or for access errors. * `NOT_FOUND` if the alias does not exist. * - * `FAILED_PRECONDITION` if the alias requested does not make sense for the - * requesting user or course (for example, if a user not in a domain attempts - * to delete a domain-scoped alias). (aliases.delete) - * - * @param string $courseId Identifier of the course whose alias should be - * deleted. This identifier can be either the Classroom-assigned identifier or - * an alias. - * @param string $alias Alias to delete. This may not be the Classroom-assigned - * identifier. - * @param array $optParams Optional parameters. - * @return Google_Service_Classroom_ClassroomEmpty - */ - public function delete($courseId, $alias, $optParams = array()) - { - $params = array('courseId' => $courseId, 'alias' => $alias); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Classroom_ClassroomEmpty"); - } - /** - * Returns a list of aliases for a course. - * - * This method returns the following error codes: - * - * * `PERMISSION_DENIED` if the requesting user is not permitted to access the - * course or for access errors. * `NOT_FOUND` if the course does not exist. - * (aliases.listCoursesAliases) - * - * @param string $courseId The identifier of the course. This identifier can be - * either the Classroom-assigned identifier or an alias. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken nextPageToken value returned from a previous list - * call, indicating that the subsequent page of results should be returned. - * - * The list request must be otherwise identical to the one that resulted in this - * token. - * @opt_param int pageSize Maximum number of items to return. Zero or - * unspecified indicates that the server may assign a maximum. - * - * The server may return fewer than the specified number of results. - * @return Google_Service_Classroom_ListCourseAliasesResponse - */ - public function listCoursesAliases($courseId, $optParams = array()) - { - $params = array('courseId' => $courseId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Classroom_ListCourseAliasesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Resource/CoursesAnnouncements.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Resource/CoursesAnnouncements.php deleted file mode 100644 index fe6c04d2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Resource/CoursesAnnouncements.php +++ /dev/null @@ -1,206 +0,0 @@ - - * $classroomService = new Google_Service_Classroom(...); - * $announcements = $classroomService->announcements; - * - */ -class Google_Service_Classroom_Resource_CoursesAnnouncements extends Google_Service_Resource -{ - /** - * Creates an announcement. - * - * This method returns the following error codes: - * - * * `PERMISSION_DENIED` if the requesting user is not permitted to access the - * requested course, create announcements in the requested course, share a Drive - * attachment, or for access errors. * `INVALID_ARGUMENT` if the request is - * malformed. * `NOT_FOUND` if the requested course does not exist. * - * `FAILED_PRECONDITION` for the following request error: * - * AttachmentNotVisible (announcements.create) - * - * @param string $courseId Identifier of the course. This identifier can be - * either the Classroom-assigned identifier or an alias. - * @param Google_Service_Classroom_Announcement $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Classroom_Announcement - */ - public function create($courseId, Google_Service_Classroom_Announcement $postBody, $optParams = array()) - { - $params = array('courseId' => $courseId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Classroom_Announcement"); - } - /** - * Deletes an announcement. - * - * This request must be made by the Developer Console project of the [OAuth - * client ID](https://support.google.com/cloud/answer/6158849) used to create - * the corresponding announcement item. - * - * This method returns the following error codes: - * - * * `PERMISSION_DENIED` if the requesting developer project did not create the - * corresponding announcement, if the requesting user is not permitted to delete - * the requested course or for access errors. * `FAILED_PRECONDITION` if the - * requested announcement has already been deleted. * `NOT_FOUND` if no course - * exists with the requested ID. (announcements.delete) - * - * @param string $courseId Identifier of the course. This identifier can be - * either the Classroom-assigned identifier or an alias. - * @param string $id Identifier of the announcement to delete. This identifier - * is a Classroom-assigned identifier. - * @param array $optParams Optional parameters. - * @return Google_Service_Classroom_ClassroomEmpty - */ - public function delete($courseId, $id, $optParams = array()) - { - $params = array('courseId' => $courseId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Classroom_ClassroomEmpty"); - } - /** - * Returns an announcement. - * - * This method returns the following error codes: - * - * * `PERMISSION_DENIED` if the requesting user is not permitted to access the - * requested course or announcement, or for access errors. * `INVALID_ARGUMENT` - * if the request is malformed. * `NOT_FOUND` if the requested course or - * announcement does not exist. (announcements.get) - * - * @param string $courseId Identifier of the course. This identifier can be - * either the Classroom-assigned identifier or an alias. - * @param string $id Identifier of the announcement. - * @param array $optParams Optional parameters. - * @return Google_Service_Classroom_Announcement - */ - public function get($courseId, $id, $optParams = array()) - { - $params = array('courseId' => $courseId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Classroom_Announcement"); - } - /** - * Returns a list of announcements that the requester is permitted to view. - * - * Course students may only view `PUBLISHED` announcements. Course teachers and - * domain administrators may view all announcements. - * - * This method returns the following error codes: - * - * * `PERMISSION_DENIED` if the requesting user is not permitted to access the - * requested course or for access errors. * `INVALID_ARGUMENT` if the request is - * malformed. * `NOT_FOUND` if the requested course does not exist. - * (announcements.listCoursesAnnouncements) - * - * @param string $courseId Identifier of the course. This identifier can be - * either the Classroom-assigned identifier or an alias. - * @param array $optParams Optional parameters. - * - * @opt_param string announcementStates Restriction on the `state` of - * announcements returned. If this argument is left unspecified, the default - * value is `PUBLISHED`. - * @opt_param string orderBy Optional sort ordering for results. A comma- - * separated list of fields with an optional sort direction keyword. Supported - * field is `updateTime`. Supported direction keywords are `asc` and `desc`. If - * not specified, `updateTime desc` is the default behavior. Examples: - * `updateTime asc`, `updateTime` - * @opt_param string pageToken nextPageToken value returned from a previous list - * call, indicating that the subsequent page of results should be returned. - * - * The list request must be otherwise identical to the one that resulted in this - * token. - * @opt_param int pageSize Maximum number of items to return. Zero or - * unspecified indicates that the server may assign a maximum. - * - * The server may return fewer than the specified number of results. - * @return Google_Service_Classroom_ListAnnouncementsResponse - */ - public function listCoursesAnnouncements($courseId, $optParams = array()) - { - $params = array('courseId' => $courseId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Classroom_ListAnnouncementsResponse"); - } - /** - * Modifies assignee mode and options of an announcement. - * - * Only a teacher of the course that contains the announcement may call this - * method. - * - * This method returns the following error codes: - * - * * `PERMISSION_DENIED` if the requesting user is not permitted to access the - * requested course or course work or for access errors. * `INVALID_ARGUMENT` if - * the request is malformed. * `NOT_FOUND` if the requested course or course - * work does not exist. (announcements.modifyAssignees) - * - * @param string $courseId Identifier of the course. This identifier can be - * either the Classroom-assigned identifier or an alias. - * @param string $id Identifier of the announcement. - * @param Google_Service_Classroom_ModifyAnnouncementAssigneesRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Classroom_Announcement - */ - public function modifyAssignees($courseId, $id, Google_Service_Classroom_ModifyAnnouncementAssigneesRequest $postBody, $optParams = array()) - { - $params = array('courseId' => $courseId, 'id' => $id, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('modifyAssignees', array($params), "Google_Service_Classroom_Announcement"); - } - /** - * Updates one or more fields of an announcement. - * - * This method returns the following error codes: - * - * * `PERMISSION_DENIED` if the requesting developer project did not create the - * corresponding announcement or for access errors. * `INVALID_ARGUMENT` if the - * request is malformed. * `FAILED_PRECONDITION` if the requested announcement - * has already been deleted. * `NOT_FOUND` if the requested course or - * announcement does not exist (announcements.patch) - * - * @param string $courseId Identifier of the course. This identifier can be - * either the Classroom-assigned identifier or an alias. - * @param string $id Identifier of the announcement. - * @param Google_Service_Classroom_Announcement $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Mask that identifies which fields on the - * announcement to update. This field is required to do an update. The update - * fails if invalid fields are specified. If a field supports empty values, it - * can be cleared by specifying it in the update mask and not in the - * Announcement object. If a field that does not support empty values is - * included in the update mask and not set in the Announcement object, an - * `INVALID_ARGUMENT` error will be returned. - * - * The following fields may be specified by teachers: - * - * * `text` * `state` * `scheduled_time` - * @return Google_Service_Classroom_Announcement - */ - public function patch($courseId, $id, Google_Service_Classroom_Announcement $postBody, $optParams = array()) - { - $params = array('courseId' => $courseId, 'id' => $id, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Classroom_Announcement"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Resource/CoursesCourseWork.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Resource/CoursesCourseWork.php deleted file mode 100644 index 208957de..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Resource/CoursesCourseWork.php +++ /dev/null @@ -1,223 +0,0 @@ - - * $classroomService = new Google_Service_Classroom(...); - * $courseWork = $classroomService->courseWork; - * - */ -class Google_Service_Classroom_Resource_CoursesCourseWork extends Google_Service_Resource -{ - /** - * Creates course work. - * - * The resulting course work (and corresponding student submissions) are - * associated with the Developer Console project of the [OAuth client - * ID](https://support.google.com/cloud/answer/6158849) used to make the - * request. Classroom API requests to modify course work and student submissions - * must be made with an OAuth client ID from the associated Developer Console - * project. - * - * This method returns the following error codes: - * - * * `PERMISSION_DENIED` if the requesting user is not permitted to access the - * requested course, create course work in the requested course, share a Drive - * attachment, or for access errors. * `INVALID_ARGUMENT` if the request is - * malformed. * `NOT_FOUND` if the requested course does not exist. * - * `FAILED_PRECONDITION` for the following request error: * - * AttachmentNotVisible (courseWork.create) - * - * @param string $courseId Identifier of the course. This identifier can be - * either the Classroom-assigned identifier or an alias. - * @param Google_Service_Classroom_CourseWork $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Classroom_CourseWork - */ - public function create($courseId, Google_Service_Classroom_CourseWork $postBody, $optParams = array()) - { - $params = array('courseId' => $courseId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Classroom_CourseWork"); - } - /** - * Deletes a course work. - * - * This request must be made by the Developer Console project of the [OAuth - * client ID](https://support.google.com/cloud/answer/6158849) used to create - * the corresponding course work item. - * - * This method returns the following error codes: - * - * * `PERMISSION_DENIED` if the requesting developer project did not create the - * corresponding course work, if the requesting user is not permitted to delete - * the requested course or for access errors. * `FAILED_PRECONDITION` if the - * requested course work has already been deleted. * `NOT_FOUND` if no course - * exists with the requested ID. (courseWork.delete) - * - * @param string $courseId Identifier of the course. This identifier can be - * either the Classroom-assigned identifier or an alias. - * @param string $id Identifier of the course work to delete. This identifier is - * a Classroom-assigned identifier. - * @param array $optParams Optional parameters. - * @return Google_Service_Classroom_ClassroomEmpty - */ - public function delete($courseId, $id, $optParams = array()) - { - $params = array('courseId' => $courseId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Classroom_ClassroomEmpty"); - } - /** - * Returns course work. - * - * This method returns the following error codes: - * - * * `PERMISSION_DENIED` if the requesting user is not permitted to access the - * requested course or course work, or for access errors. * `INVALID_ARGUMENT` - * if the request is malformed. * `NOT_FOUND` if the requested course or course - * work does not exist. (courseWork.get) - * - * @param string $courseId Identifier of the course. This identifier can be - * either the Classroom-assigned identifier or an alias. - * @param string $id Identifier of the course work. - * @param array $optParams Optional parameters. - * @return Google_Service_Classroom_CourseWork - */ - public function get($courseId, $id, $optParams = array()) - { - $params = array('courseId' => $courseId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Classroom_CourseWork"); - } - /** - * Returns a list of course work that the requester is permitted to view. - * - * Course students may only view `PUBLISHED` course work. Course teachers and - * domain administrators may view all course work. - * - * This method returns the following error codes: - * - * * `PERMISSION_DENIED` if the requesting user is not permitted to access the - * requested course or for access errors. * `INVALID_ARGUMENT` if the request is - * malformed. * `NOT_FOUND` if the requested course does not exist. - * (courseWork.listCoursesCourseWork) - * - * @param string $courseId Identifier of the course. This identifier can be - * either the Classroom-assigned identifier or an alias. - * @param array $optParams Optional parameters. - * - * @opt_param string orderBy Optional sort ordering for results. A comma- - * separated list of fields with an optional sort direction keyword. Supported - * fields are `updateTime` and `dueDate`. Supported direction keywords are `asc` - * and `desc`. If not specified, `updateTime desc` is the default behavior. - * Examples: `dueDate asc,updateTime desc`, `updateTime,dueDate desc` - * @opt_param string pageToken nextPageToken value returned from a previous list - * call, indicating that the subsequent page of results should be returned. - * - * The list request must be otherwise identical to the one that resulted in this - * token. - * @opt_param int pageSize Maximum number of items to return. Zero or - * unspecified indicates that the server may assign a maximum. - * - * The server may return fewer than the specified number of results. - * @opt_param string courseWorkStates Restriction on the work status to return. - * Only courseWork that matches is returned. If unspecified, items with a work - * status of `PUBLISHED` is returned. - * @return Google_Service_Classroom_ListCourseWorkResponse - */ - public function listCoursesCourseWork($courseId, $optParams = array()) - { - $params = array('courseId' => $courseId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Classroom_ListCourseWorkResponse"); - } - /** - * Modifies assignee mode and options of a coursework. - * - * Only a teacher of the course that contains the coursework may call this - * method. - * - * This method returns the following error codes: - * - * * `PERMISSION_DENIED` if the requesting user is not permitted to access the - * requested course or course work or for access errors. * `INVALID_ARGUMENT` if - * the request is malformed. * `NOT_FOUND` if the requested course or course - * work does not exist. (courseWork.modifyAssignees) - * - * @param string $courseId Identifier of the course. This identifier can be - * either the Classroom-assigned identifier or an alias. - * @param string $id Identifier of the coursework. - * @param Google_Service_Classroom_ModifyCourseWorkAssigneesRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Classroom_CourseWork - */ - public function modifyAssignees($courseId, $id, Google_Service_Classroom_ModifyCourseWorkAssigneesRequest $postBody, $optParams = array()) - { - $params = array('courseId' => $courseId, 'id' => $id, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('modifyAssignees', array($params), "Google_Service_Classroom_CourseWork"); - } - /** - * Updates one or more fields of a course work. - * - * See google.classroom.v1.CourseWork for details of which fields may be updated - * and who may change them. - * - * This request must be made by the Developer Console project of the [OAuth - * client ID](https://support.google.com/cloud/answer/6158849) used to create - * the corresponding course work item. - * - * This method returns the following error codes: - * - * * `PERMISSION_DENIED` if the requesting developer project did not create the - * corresponding course work, if the user is not permitted to make the requested - * modification to the student submission, or for access errors. * - * `INVALID_ARGUMENT` if the request is malformed. * `FAILED_PRECONDITION` if - * the requested course work has already been deleted. * `NOT_FOUND` if the - * requested course, course work, or student submission does not exist. - * (courseWork.patch) - * - * @param string $courseId Identifier of the course. This identifier can be - * either the Classroom-assigned identifier or an alias. - * @param string $id Identifier of the course work. - * @param Google_Service_Classroom_CourseWork $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Mask that identifies which fields on the course - * work to update. This field is required to do an update. The update fails if - * invalid fields are specified. If a field supports empty values, it can be - * cleared by specifying it in the update mask and not in the CourseWork object. - * If a field that does not support empty values is included in the update mask - * and not set in the CourseWork object, an `INVALID_ARGUMENT` error will be - * returned. - * - * The following fields may be specified by teachers: - * - * * `title` * `description` * `state` * `due_date` * `due_time` * `max_points` - * * `scheduled_time` * `submission_modification_mode` * `topic_id` - * @return Google_Service_Classroom_CourseWork - */ - public function patch($courseId, $id, Google_Service_Classroom_CourseWork $postBody, $optParams = array()) - { - $params = array('courseId' => $courseId, 'id' => $id, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Classroom_CourseWork"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Resource/CoursesCourseWorkStudentSubmissions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Resource/CoursesCourseWorkStudentSubmissions.php deleted file mode 100644 index 2b02f363..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Resource/CoursesCourseWorkStudentSubmissions.php +++ /dev/null @@ -1,283 +0,0 @@ - - * $classroomService = new Google_Service_Classroom(...); - * $studentSubmissions = $classroomService->studentSubmissions; - * - */ -class Google_Service_Classroom_Resource_CoursesCourseWorkStudentSubmissions extends Google_Service_Resource -{ - /** - * Returns a student submission. - * - * * `PERMISSION_DENIED` if the requesting user is not permitted to access the - * requested course, course work, or student submission or for access errors. * - * `INVALID_ARGUMENT` if the request is malformed. * `NOT_FOUND` if the - * requested course, course work, or student submission does not exist. - * (studentSubmissions.get) - * - * @param string $courseId Identifier of the course. This identifier can be - * either the Classroom-assigned identifier or an alias. - * @param string $courseWorkId Identifier of the course work. - * @param string $id Identifier of the student submission. - * @param array $optParams Optional parameters. - * @return Google_Service_Classroom_StudentSubmission - */ - public function get($courseId, $courseWorkId, $id, $optParams = array()) - { - $params = array('courseId' => $courseId, 'courseWorkId' => $courseWorkId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Classroom_StudentSubmission"); - } - /** - * Returns a list of student submissions that the requester is permitted to - * view, factoring in the OAuth scopes of the request. `-` may be specified as - * the `course_work_id` to include student submissions for multiple course work - * items. - * - * Course students may only view their own work. Course teachers and domain - * administrators may view all student submissions. - * - * This method returns the following error codes: - * - * * `PERMISSION_DENIED` if the requesting user is not permitted to access the - * requested course or course work, or for access errors. * `INVALID_ARGUMENT` - * if the request is malformed. * `NOT_FOUND` if the requested course does not - * exist. (studentSubmissions.listCoursesCourseWorkStudentSubmissions) - * - * @param string $courseId Identifier of the course. This identifier can be - * either the Classroom-assigned identifier or an alias. - * @param string $courseWorkId Identifier of the student work to request. This - * may be set to the string literal `"-"` to request student work for all course - * work in the specified course. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken nextPageToken value returned from a previous list - * call, indicating that the subsequent page of results should be returned. - * - * The list request must be otherwise identical to the one that resulted in this - * token. - * @opt_param int pageSize Maximum number of items to return. Zero or - * unspecified indicates that the server may assign a maximum. - * - * The server may return fewer than the specified number of results. - * @opt_param string states Requested submission states. If specified, returned - * student submissions match one of the specified submission states. - * @opt_param string userId Optional argument to restrict returned student work - * to those owned by the student with the specified identifier. The identifier - * can be one of the following: - * - * * the numeric identifier for the user * the email address of the user * the - * string literal `"me"`, indicating the requesting user - * @opt_param string late Requested lateness value. If specified, returned - * student submissions are restricted by the requested value. If unspecified, - * submissions are returned regardless of `late` value. - * @return Google_Service_Classroom_ListStudentSubmissionsResponse - */ - public function listCoursesCourseWorkStudentSubmissions($courseId, $courseWorkId, $optParams = array()) - { - $params = array('courseId' => $courseId, 'courseWorkId' => $courseWorkId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Classroom_ListStudentSubmissionsResponse"); - } - /** - * Modifies attachments of student submission. - * - * Attachments may only be added to student submissions belonging to course work - * objects with a `workType` of `ASSIGNMENT`. - * - * This request must be made by the Developer Console project of the [OAuth - * client ID](https://support.google.com/cloud/answer/6158849) used to create - * the corresponding course work item. - * - * This method returns the following error codes: - * - * * `PERMISSION_DENIED` if the requesting user is not permitted to access the - * requested course or course work, if the user is not permitted to modify - * attachments on the requested student submission, or for access errors. * - * `INVALID_ARGUMENT` if the request is malformed. * `NOT_FOUND` if the - * requested course, course work, or student submission does not exist. - * (studentSubmissions.modifyAttachments) - * - * @param string $courseId Identifier of the course. This identifier can be - * either the Classroom-assigned identifier or an alias. - * @param string $courseWorkId Identifier of the course work. - * @param string $id Identifier of the student submission. - * @param Google_Service_Classroom_ModifyAttachmentsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Classroom_StudentSubmission - */ - public function modifyAttachments($courseId, $courseWorkId, $id, Google_Service_Classroom_ModifyAttachmentsRequest $postBody, $optParams = array()) - { - $params = array('courseId' => $courseId, 'courseWorkId' => $courseWorkId, 'id' => $id, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('modifyAttachments', array($params), "Google_Service_Classroom_StudentSubmission"); - } - /** - * Updates one or more fields of a student submission. - * - * See google.classroom.v1.StudentSubmission for details of which fields may be - * updated and who may change them. - * - * This request must be made by the Developer Console project of the [OAuth - * client ID](https://support.google.com/cloud/answer/6158849) used to create - * the corresponding course work item. - * - * This method returns the following error codes: - * - * * `PERMISSION_DENIED` if the requesting developer project did not create the - * corresponding course work, if the user is not permitted to make the requested - * modification to the student submission, or for access errors. * - * `INVALID_ARGUMENT` if the request is malformed. * `NOT_FOUND` if the - * requested course, course work, or student submission does not exist. - * (studentSubmissions.patch) - * - * @param string $courseId Identifier of the course. This identifier can be - * either the Classroom-assigned identifier or an alias. - * @param string $courseWorkId Identifier of the course work. - * @param string $id Identifier of the student submission. - * @param Google_Service_Classroom_StudentSubmission $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Mask that identifies which fields on the student - * submission to update. This field is required to do an update. The update - * fails if invalid fields are specified. - * - * The following fields may be specified by teachers: - * - * * `draft_grade` * `assigned_grade` - * @return Google_Service_Classroom_StudentSubmission - */ - public function patch($courseId, $courseWorkId, $id, Google_Service_Classroom_StudentSubmission $postBody, $optParams = array()) - { - $params = array('courseId' => $courseId, 'courseWorkId' => $courseWorkId, 'id' => $id, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Classroom_StudentSubmission"); - } - /** - * Reclaims a student submission on behalf of the student that owns it. - * - * Reclaiming a student submission transfers ownership of attached Drive files - * to the student and updates the submission state. - * - * Only the student that owns the requested student submission may call this - * method, and only for a student submission that has been turned in. - * - * This request must be made by the Developer Console project of the [OAuth - * client ID](https://support.google.com/cloud/answer/6158849) used to create - * the corresponding course work item. - * - * This method returns the following error codes: - * - * * `PERMISSION_DENIED` if the requesting user is not permitted to access the - * requested course or course work, unsubmit the requested student submission, - * or for access errors. * `FAILED_PRECONDITION` if the student submission has - * not been turned in. * `INVALID_ARGUMENT` if the request is malformed. * - * `NOT_FOUND` if the requested course, course work, or student submission does - * not exist. (studentSubmissions.reclaim) - * - * @param string $courseId Identifier of the course. This identifier can be - * either the Classroom-assigned identifier or an alias. - * @param string $courseWorkId Identifier of the course work. - * @param string $id Identifier of the student submission. - * @param Google_Service_Classroom_ReclaimStudentSubmissionRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Classroom_ClassroomEmpty - */ - public function reclaim($courseId, $courseWorkId, $id, Google_Service_Classroom_ReclaimStudentSubmissionRequest $postBody, $optParams = array()) - { - $params = array('courseId' => $courseId, 'courseWorkId' => $courseWorkId, 'id' => $id, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('reclaim', array($params), "Google_Service_Classroom_ClassroomEmpty"); - } - /** - * Returns a student submission. - * - * Returning a student submission transfers ownership of attached Drive files to - * the student and may also update the submission state. Unlike the Classroom - * application, returning a student submission does not set assignedGrade to the - * draftGrade value. - * - * Only a teacher of the course that contains the requested student submission - * may call this method. - * - * This request must be made by the Developer Console project of the [OAuth - * client ID](https://support.google.com/cloud/answer/6158849) used to create - * the corresponding course work item. - * - * This method returns the following error codes: - * - * * `PERMISSION_DENIED` if the requesting user is not permitted to access the - * requested course or course work, return the requested student submission, or - * for access errors. * `INVALID_ARGUMENT` if the request is malformed. * - * `NOT_FOUND` if the requested course, course work, or student submission does - * not exist. (studentSubmissions.returnCoursesCourseWorkStudentSubmissions) - * - * @param string $courseId Identifier of the course. This identifier can be - * either the Classroom-assigned identifier or an alias. - * @param string $courseWorkId Identifier of the course work. - * @param string $id Identifier of the student submission. - * @param Google_Service_Classroom_ReturnStudentSubmissionRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Classroom_ClassroomEmpty - */ - public function returnCoursesCourseWorkStudentSubmissions($courseId, $courseWorkId, $id, Google_Service_Classroom_ReturnStudentSubmissionRequest $postBody, $optParams = array()) - { - $params = array('courseId' => $courseId, 'courseWorkId' => $courseWorkId, 'id' => $id, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('return', array($params), "Google_Service_Classroom_ClassroomEmpty"); - } - /** - * Turns in a student submission. - * - * Turning in a student submission transfers ownership of attached Drive files - * to the teacher and may also update the submission state. - * - * This may only be called by the student that owns the specified student - * submission. - * - * This request must be made by the Developer Console project of the [OAuth - * client ID](https://support.google.com/cloud/answer/6158849) used to create - * the corresponding course work item. - * - * This method returns the following error codes: - * - * * `PERMISSION_DENIED` if the requesting user is not permitted to access the - * requested course or course work, turn in the requested student submission, or - * for access errors. * `INVALID_ARGUMENT` if the request is malformed. * - * `NOT_FOUND` if the requested course, course work, or student submission does - * not exist. (studentSubmissions.turnIn) - * - * @param string $courseId Identifier of the course. This identifier can be - * either the Classroom-assigned identifier or an alias. - * @param string $courseWorkId Identifier of the course work. - * @param string $id Identifier of the student submission. - * @param Google_Service_Classroom_TurnInStudentSubmissionRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Classroom_ClassroomEmpty - */ - public function turnIn($courseId, $courseWorkId, $id, Google_Service_Classroom_TurnInStudentSubmissionRequest $postBody, $optParams = array()) - { - $params = array('courseId' => $courseId, 'courseWorkId' => $courseWorkId, 'id' => $id, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('turnIn', array($params), "Google_Service_Classroom_ClassroomEmpty"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Resource/CoursesStudents.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Resource/CoursesStudents.php deleted file mode 100644 index b90441e9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Resource/CoursesStudents.php +++ /dev/null @@ -1,140 +0,0 @@ - - * $classroomService = new Google_Service_Classroom(...); - * $students = $classroomService->students; - * - */ -class Google_Service_Classroom_Resource_CoursesStudents extends Google_Service_Resource -{ - /** - * Adds a user as a student of a course. - * - * This method returns the following error codes: - * - * * `PERMISSION_DENIED` if the requesting user is not permitted to create - * students in this course or for access errors. * `NOT_FOUND` if the requested - * course ID does not exist. * `FAILED_PRECONDITION` if the requested user's - * account is disabled, for the following request errors: * - * CourseMemberLimitReached * CourseNotModifiable * - * UserGroupsMembershipLimitReached * `ALREADY_EXISTS` if the user is already a - * student or teacher in the course. (students.create) - * - * @param string $courseId Identifier of the course to create the student in. - * This identifier can be either the Classroom-assigned identifier or an alias. - * @param Google_Service_Classroom_Student $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string enrollmentCode Enrollment code of the course to create the - * student in. This code is required if userId corresponds to the requesting - * user; it may be omitted if the requesting user has administrative permissions - * to create students for any user. - * @return Google_Service_Classroom_Student - */ - public function create($courseId, Google_Service_Classroom_Student $postBody, $optParams = array()) - { - $params = array('courseId' => $courseId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Classroom_Student"); - } - /** - * Deletes a student of a course. - * - * This method returns the following error codes: - * - * * `PERMISSION_DENIED` if the requesting user is not permitted to delete - * students of this course or for access errors. * `NOT_FOUND` if no student of - * this course has the requested ID or if the course does not exist. - * (students.delete) - * - * @param string $courseId Identifier of the course. This identifier can be - * either the Classroom-assigned identifier or an alias. - * @param string $userId Identifier of the student to delete. The identifier can - * be one of the following: - * - * * the numeric identifier for the user * the email address of the user * the - * string literal `"me"`, indicating the requesting user - * @param array $optParams Optional parameters. - * @return Google_Service_Classroom_ClassroomEmpty - */ - public function delete($courseId, $userId, $optParams = array()) - { - $params = array('courseId' => $courseId, 'userId' => $userId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Classroom_ClassroomEmpty"); - } - /** - * Returns a student of a course. - * - * This method returns the following error codes: - * - * * `PERMISSION_DENIED` if the requesting user is not permitted to view - * students of this course or for access errors. * `NOT_FOUND` if no student of - * this course has the requested ID or if the course does not exist. - * (students.get) - * - * @param string $courseId Identifier of the course. This identifier can be - * either the Classroom-assigned identifier or an alias. - * @param string $userId Identifier of the student to return. The identifier can - * be one of the following: - * - * * the numeric identifier for the user * the email address of the user * the - * string literal `"me"`, indicating the requesting user - * @param array $optParams Optional parameters. - * @return Google_Service_Classroom_Student - */ - public function get($courseId, $userId, $optParams = array()) - { - $params = array('courseId' => $courseId, 'userId' => $userId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Classroom_Student"); - } - /** - * Returns a list of students of this course that the requester is permitted to - * view. - * - * This method returns the following error codes: - * - * * `NOT_FOUND` if the course does not exist. * `PERMISSION_DENIED` for access - * errors. (students.listCoursesStudents) - * - * @param string $courseId Identifier of the course. This identifier can be - * either the Classroom-assigned identifier or an alias. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken nextPageToken value returned from a previous list - * call, indicating that the subsequent page of results should be returned. - * - * The list request must be otherwise identical to the one that resulted in this - * token. - * @opt_param int pageSize Maximum number of items to return. Zero means no - * maximum. - * - * The server may return fewer than the specified number of results. - * @return Google_Service_Classroom_ListStudentsResponse - */ - public function listCoursesStudents($courseId, $optParams = array()) - { - $params = array('courseId' => $courseId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Classroom_ListStudentsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Resource/CoursesTeachers.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Resource/CoursesTeachers.php deleted file mode 100644 index 0be30a53..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Resource/CoursesTeachers.php +++ /dev/null @@ -1,137 +0,0 @@ - - * $classroomService = new Google_Service_Classroom(...); - * $teachers = $classroomService->teachers; - * - */ -class Google_Service_Classroom_Resource_CoursesTeachers extends Google_Service_Resource -{ - /** - * Creates a teacher of a course. - * - * This method returns the following error codes: - * - * * `PERMISSION_DENIED` if the requesting user is not permitted to create - * teachers in this course or for access errors. * `NOT_FOUND` if the requested - * course ID does not exist. * `FAILED_PRECONDITION` if the requested user's - * account is disabled, for the following request errors: * - * CourseMemberLimitReached * CourseNotModifiable * - * CourseTeacherLimitReached * UserGroupsMembershipLimitReached * - * `ALREADY_EXISTS` if the user is already a teacher or student in the course. - * (teachers.create) - * - * @param string $courseId Identifier of the course. This identifier can be - * either the Classroom-assigned identifier or an alias. - * @param Google_Service_Classroom_Teacher $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Classroom_Teacher - */ - public function create($courseId, Google_Service_Classroom_Teacher $postBody, $optParams = array()) - { - $params = array('courseId' => $courseId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Classroom_Teacher"); - } - /** - * Deletes a teacher of a course. - * - * This method returns the following error codes: - * - * * `PERMISSION_DENIED` if the requesting user is not permitted to delete - * teachers of this course or for access errors. * `NOT_FOUND` if no teacher of - * this course has the requested ID or if the course does not exist. * - * `FAILED_PRECONDITION` if the requested ID belongs to the primary teacher of - * this course. (teachers.delete) - * - * @param string $courseId Identifier of the course. This identifier can be - * either the Classroom-assigned identifier or an alias. - * @param string $userId Identifier of the teacher to delete. The identifier can - * be one of the following: - * - * * the numeric identifier for the user * the email address of the user * the - * string literal `"me"`, indicating the requesting user - * @param array $optParams Optional parameters. - * @return Google_Service_Classroom_ClassroomEmpty - */ - public function delete($courseId, $userId, $optParams = array()) - { - $params = array('courseId' => $courseId, 'userId' => $userId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Classroom_ClassroomEmpty"); - } - /** - * Returns a teacher of a course. - * - * This method returns the following error codes: - * - * * `PERMISSION_DENIED` if the requesting user is not permitted to view - * teachers of this course or for access errors. * `NOT_FOUND` if no teacher of - * this course has the requested ID or if the course does not exist. - * (teachers.get) - * - * @param string $courseId Identifier of the course. This identifier can be - * either the Classroom-assigned identifier or an alias. - * @param string $userId Identifier of the teacher to return. The identifier can - * be one of the following: - * - * * the numeric identifier for the user * the email address of the user * the - * string literal `"me"`, indicating the requesting user - * @param array $optParams Optional parameters. - * @return Google_Service_Classroom_Teacher - */ - public function get($courseId, $userId, $optParams = array()) - { - $params = array('courseId' => $courseId, 'userId' => $userId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Classroom_Teacher"); - } - /** - * Returns a list of teachers of this course that the requester is permitted to - * view. - * - * This method returns the following error codes: - * - * * `NOT_FOUND` if the course does not exist. * `PERMISSION_DENIED` for access - * errors. (teachers.listCoursesTeachers) - * - * @param string $courseId Identifier of the course. This identifier can be - * either the Classroom-assigned identifier or an alias. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken nextPageToken value returned from a previous list - * call, indicating that the subsequent page of results should be returned. - * - * The list request must be otherwise identical to the one that resulted in this - * token. - * @opt_param int pageSize Maximum number of items to return. Zero means no - * maximum. - * - * The server may return fewer than the specified number of results. - * @return Google_Service_Classroom_ListTeachersResponse - */ - public function listCoursesTeachers($courseId, $optParams = array()) - { - $params = array('courseId' => $courseId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Classroom_ListTeachersResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Resource/CoursesTopics.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Resource/CoursesTopics.php deleted file mode 100644 index 5114a417..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Resource/CoursesTopics.php +++ /dev/null @@ -1,158 +0,0 @@ - - * $classroomService = new Google_Service_Classroom(...); - * $topics = $classroomService->topics; - * - */ -class Google_Service_Classroom_Resource_CoursesTopics extends Google_Service_Resource -{ - /** - * Creates a topic. - * - * This method returns the following error codes: - * - * * `PERMISSION_DENIED` if the requesting user is not permitted to access the - * requested course, create a topic in the requested course, or for access - * errors. * `INVALID_ARGUMENT` if the request is malformed. * `NOT_FOUND` if - * the requested course does not exist. (topics.create) - * - * @param string $courseId Identifier of the course. This identifier can be - * either the Classroom-assigned identifier or an alias. - * @param Google_Service_Classroom_Topic $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Classroom_Topic - */ - public function create($courseId, Google_Service_Classroom_Topic $postBody, $optParams = array()) - { - $params = array('courseId' => $courseId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Classroom_Topic"); - } - /** - * Deletes a topic. - * - * This method returns the following error codes: - * - * * `PERMISSION_DENIED` if the requesting user is not allowed to delete the - * requested topic or for access errors. * `FAILED_PRECONDITION` if the - * requested topic has already been deleted. * `NOT_FOUND` if no course or topic - * exists with the requested ID. (topics.delete) - * - * @param string $courseId Identifier of the course. This identifier can be - * either the Classroom-assigned identifier or an alias. - * @param string $id Identifier of the topic to delete. - * @param array $optParams Optional parameters. - * @return Google_Service_Classroom_ClassroomEmpty - */ - public function delete($courseId, $id, $optParams = array()) - { - $params = array('courseId' => $courseId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Classroom_ClassroomEmpty"); - } - /** - * Returns a topic. - * - * This method returns the following error codes: - * - * * `PERMISSION_DENIED` if the requesting user is not permitted to access the - * requested course or topic, or for access errors. * `INVALID_ARGUMENT` if the - * request is malformed. * `NOT_FOUND` if the requested course or topic does not - * exist. (topics.get) - * - * @param string $courseId Identifier of the course. - * @param string $id Identifier of the topic. - * @param array $optParams Optional parameters. - * @return Google_Service_Classroom_Topic - */ - public function get($courseId, $id, $optParams = array()) - { - $params = array('courseId' => $courseId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Classroom_Topic"); - } - /** - * Returns the list of topics that the requester is permitted to view. - * - * This method returns the following error codes: - * - * * `PERMISSION_DENIED` if the requesting user is not permitted to access the - * requested course or for access errors. * `INVALID_ARGUMENT` if the request is - * malformed. * `NOT_FOUND` if the requested course does not exist. - * (topics.listCoursesTopics) - * - * @param string $courseId Identifier of the course. This identifier can be - * either the Classroom-assigned identifier or an alias. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken nextPageToken value returned from a previous list - * call, indicating that the subsequent page of results should be returned. - * - * The list request must be otherwise identical to the one that resulted in this - * token. - * @opt_param int pageSize Maximum number of items to return. Zero or - * unspecified indicates that the server may assign a maximum. - * - * The server may return fewer than the specified number of results. - * @return Google_Service_Classroom_ListTopicResponse - */ - public function listCoursesTopics($courseId, $optParams = array()) - { - $params = array('courseId' => $courseId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Classroom_ListTopicResponse"); - } - /** - * Updates one or more fields of a topic. - * - * This method returns the following error codes: - * - * * `PERMISSION_DENIED` if the requesting developer project did not create the - * corresponding topic or for access errors. * `INVALID_ARGUMENT` if the request - * is malformed. * `NOT_FOUND` if the requested course or topic does not exist - * (topics.patch) - * - * @param string $courseId Identifier of the course. This identifier can be - * either the Classroom-assigned identifier or an alias. - * @param string $id Identifier of the topic. - * @param Google_Service_Classroom_Topic $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Mask that identifies which fields on the topic - * to update. This field is required to do an update. The update fails if - * invalid fields are specified. If a field supports empty values, it can be - * cleared by specifying it in the update mask and not in the Topic object. If a - * field that does not support empty values is included in the update mask and - * not set in the Topic object, an `INVALID_ARGUMENT` error will be returned. - * - * The following fields may be specified: - * - * * `name` - * @return Google_Service_Classroom_Topic - */ - public function patch($courseId, $id, Google_Service_Classroom_Topic $postBody, $optParams = array()) - { - $params = array('courseId' => $courseId, 'id' => $id, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Classroom_Topic"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Resource/Invitations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Resource/Invitations.php deleted file mode 100644 index c329f1dc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Resource/Invitations.php +++ /dev/null @@ -1,150 +0,0 @@ - - * $classroomService = new Google_Service_Classroom(...); - * $invitations = $classroomService->invitations; - * - */ -class Google_Service_Classroom_Resource_Invitations extends Google_Service_Resource -{ - /** - * Accepts an invitation, removing it and adding the invited user to the - * teachers or students (as appropriate) of the specified course. Only the - * invited user may accept an invitation. - * - * This method returns the following error codes: - * - * * `PERMISSION_DENIED` if the requesting user is not permitted to accept the - * requested invitation or for access errors. * `FAILED_PRECONDITION` for the - * following request errors: * CourseMemberLimitReached * - * CourseNotModifiable * CourseTeacherLimitReached * - * UserGroupsMembershipLimitReached * `NOT_FOUND` if no invitation exists with - * the requested ID. (invitations.accept) - * - * @param string $id Identifier of the invitation to accept. - * @param array $optParams Optional parameters. - * @return Google_Service_Classroom_ClassroomEmpty - */ - public function accept($id, $optParams = array()) - { - $params = array('id' => $id); - $params = array_merge($params, $optParams); - return $this->call('accept', array($params), "Google_Service_Classroom_ClassroomEmpty"); - } - /** - * Creates an invitation. Only one invitation for a user and course may exist at - * a time. Delete and re-create an invitation to make changes. - * - * This method returns the following error codes: - * - * * `PERMISSION_DENIED` if the requesting user is not permitted to create - * invitations for this course or for access errors. * `NOT_FOUND` if the course - * or the user does not exist. * `FAILED_PRECONDITION` if the requested user's - * account is disabled or if the user already has this role or a role with - * greater permissions. * `ALREADY_EXISTS` if an invitation for the specified - * user and course already exists. (invitations.create) - * - * @param Google_Service_Classroom_Invitation $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Classroom_Invitation - */ - public function create(Google_Service_Classroom_Invitation $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Classroom_Invitation"); - } - /** - * Deletes an invitation. - * - * This method returns the following error codes: - * - * * `PERMISSION_DENIED` if the requesting user is not permitted to delete the - * requested invitation or for access errors. * `NOT_FOUND` if no invitation - * exists with the requested ID. (invitations.delete) - * - * @param string $id Identifier of the invitation to delete. - * @param array $optParams Optional parameters. - * @return Google_Service_Classroom_ClassroomEmpty - */ - public function delete($id, $optParams = array()) - { - $params = array('id' => $id); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Classroom_ClassroomEmpty"); - } - /** - * Returns an invitation. - * - * This method returns the following error codes: - * - * * `PERMISSION_DENIED` if the requesting user is not permitted to view the - * requested invitation or for access errors. * `NOT_FOUND` if no invitation - * exists with the requested ID. (invitations.get) - * - * @param string $id Identifier of the invitation to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Classroom_Invitation - */ - public function get($id, $optParams = array()) - { - $params = array('id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Classroom_Invitation"); - } - /** - * Returns a list of invitations that the requesting user is permitted to view, - * restricted to those that match the list request. - * - * *Note:* At least one of `user_id` or `course_id` must be supplied. Both - * fields can be supplied. - * - * This method returns the following error codes: - * - * * `PERMISSION_DENIED` for access errors. (invitations.listInvitations) - * - * @param array $optParams Optional parameters. - * - * @opt_param string userId Restricts returned invitations to those for a - * specific user. The identifier can be one of the following: - * - * * the numeric identifier for the user * the email address of the user * the - * string literal `"me"`, indicating the requesting user - * @opt_param string pageToken nextPageToken value returned from a previous list - * call, indicating that the subsequent page of results should be returned. - * - * The list request must be otherwise identical to the one that resulted in this - * token. - * @opt_param int pageSize Maximum number of items to return. Zero means no - * maximum. - * - * The server may return fewer than the specified number of results. - * @opt_param string courseId Restricts returned invitations to those for a - * course with the specified identifier. - * @return Google_Service_Classroom_ListInvitationsResponse - */ - public function listInvitations($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Classroom_ListInvitationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Resource/Registrations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Resource/Registrations.php deleted file mode 100644 index 7ab3d993..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Resource/Registrations.php +++ /dev/null @@ -1,82 +0,0 @@ - - * $classroomService = new Google_Service_Classroom(...); - * $registrations = $classroomService->registrations; - * - */ -class Google_Service_Classroom_Resource_Registrations extends Google_Service_Resource -{ - /** - * Creates a `Registration`, causing Classroom to start sending notifications - * from the provided `feed` to the destination provided in `cloudPubSubTopic`. - * - * Returns the created `Registration`. Currently, this will be the same as the - * argument, but with server-assigned fields such as `expiry_time` and `id` - * filled in. - * - * Note that any value specified for the `expiry_time` or `id` fields will be - * ignored. - * - * While Classroom may validate the `cloudPubSubTopic` and return errors on a - * best effort basis, it is the caller's responsibility to ensure that it exists - * and that Classroom has permission to publish to it. - * - * This method may return the following error codes: - * - * * `PERMISSION_DENIED` if: * the authenticated user does not have - * permission to receive notifications from the requested field; or * - * the credential provided does not include the appropriate scope for the - * requested feed. * another access error is encountered. * - * `INVALID_ARGUMENT` if: * no `cloudPubsubTopic` is specified, or the - * specified `cloudPubsubTopic` is not valid; or * no `feed` is - * specified, or the specified `feed` is not valid. * `NOT_FOUND` if: * the - * specified `feed` cannot be located, or the requesting user does not - * have permission to determine whether or not it exists; or * the specified - * `cloudPubsubTopic` cannot be located, or Classroom has not been granted - * permission to publish to it. (registrations.create) - * - * @param Google_Service_Classroom_Registration $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Classroom_Registration - */ - public function create(Google_Service_Classroom_Registration $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Classroom_Registration"); - } - /** - * Deletes a `Registration`, causing Classroom to stop sending notifications for - * that `Registration`. (registrations.delete) - * - * @param string $registrationId The `registration_id` of the `Registration` to - * be deleted. - * @param array $optParams Optional parameters. - * @return Google_Service_Classroom_ClassroomEmpty - */ - public function delete($registrationId, $optParams = array()) - { - $params = array('registrationId' => $registrationId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Classroom_ClassroomEmpty"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Resource/UserProfiles.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Resource/UserProfiles.php deleted file mode 100644 index 6077cb0d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Resource/UserProfiles.php +++ /dev/null @@ -1,51 +0,0 @@ - - * $classroomService = new Google_Service_Classroom(...); - * $userProfiles = $classroomService->userProfiles; - * - */ -class Google_Service_Classroom_Resource_UserProfiles extends Google_Service_Resource -{ - /** - * Returns a user profile. - * - * This method returns the following error codes: - * - * * `PERMISSION_DENIED` if the requesting user is not permitted to access this - * user profile, if no profile exists with the requested ID, or for access - * errors. (userProfiles.get) - * - * @param string $userId Identifier of the profile to return. The identifier can - * be one of the following: - * - * * the numeric identifier for the user * the email address of the user * the - * string literal `"me"`, indicating the requesting user - * @param array $optParams Optional parameters. - * @return Google_Service_Classroom_UserProfile - */ - public function get($userId, $optParams = array()) - { - $params = array('userId' => $userId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Classroom_UserProfile"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Resource/UserProfilesGuardianInvitations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Resource/UserProfilesGuardianInvitations.php deleted file mode 100644 index 7c3d103c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Resource/UserProfilesGuardianInvitations.php +++ /dev/null @@ -1,190 +0,0 @@ - - * $classroomService = new Google_Service_Classroom(...); - * $guardianInvitations = $classroomService->guardianInvitations; - * - */ -class Google_Service_Classroom_Resource_UserProfilesGuardianInvitations extends Google_Service_Resource -{ - /** - * Creates a guardian invitation, and sends an email to the guardian asking them - * to confirm that they are the student's guardian. - * - * Once the guardian accepts the invitation, their `state` will change to - * `COMPLETED` and they will start receiving guardian notifications. A - * `Guardian` resource will also be created to represent the active guardian. - * - * The request object must have the `student_id` and `invited_email_address` - * fields set. Failing to set these fields, or setting any other fields in the - * request, will result in an error. - * - * This method returns the following error codes: - * - * * `PERMISSION_DENIED` if the current user does not have permission to - * manage guardians, if the guardian in question has already rejected too many - * requests for that student, if guardians are not enabled for the domain in - * question, or for other access errors. * `RESOURCE_EXHAUSTED` if the student - * or guardian has exceeded the guardian link limit. * `INVALID_ARGUMENT` if - * the guardian email address is not valid (for example, if it is too long), - * or if the format of the student ID provided cannot be recognized (it is not - * an email address, nor a `user_id` from this API). This error will also be - * returned if read-only fields are set, or if the `state` field is set to to - * a value other than `PENDING`. * `NOT_FOUND` if the student ID provided is a - * valid student ID, but Classroom has no record of that student. * - * `ALREADY_EXISTS` if there is already a pending guardian invitation for the - * student and `invited_email_address` provided, or if the provided - * `invited_email_address` matches the Google account of an existing - * `Guardian` for this user. (guardianInvitations.create) - * - * @param string $studentId ID of the student (in standard format) - * @param Google_Service_Classroom_GuardianInvitation $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Classroom_GuardianInvitation - */ - public function create($studentId, Google_Service_Classroom_GuardianInvitation $postBody, $optParams = array()) - { - $params = array('studentId' => $studentId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Classroom_GuardianInvitation"); - } - /** - * Returns a specific guardian invitation. - * - * This method returns the following error codes: - * - * * `PERMISSION_DENIED` if the requesting user is not permitted to view - * guardian invitations for the student identified by the `student_id`, if - * guardians are not enabled for the domain in question, or for other access - * errors. * `INVALID_ARGUMENT` if a `student_id` is specified, but its format - * cannot be recognized (it is not an email address, nor a `student_id` from - * the API, nor the literal string `me`). * `NOT_FOUND` if Classroom cannot - * find any record of the given student or `invitation_id`. May also be - * returned if the student exists, but the requesting user does not have - * access to see that student. (guardianInvitations.get) - * - * @param string $studentId The ID of the student whose guardian invitation is - * being requested. - * @param string $invitationId The `id` field of the `GuardianInvitation` being - * requested. - * @param array $optParams Optional parameters. - * @return Google_Service_Classroom_GuardianInvitation - */ - public function get($studentId, $invitationId, $optParams = array()) - { - $params = array('studentId' => $studentId, 'invitationId' => $invitationId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Classroom_GuardianInvitation"); - } - /** - * Returns a list of guardian invitations that the requesting user is permitted - * to view, filtered by the parameters provided. - * - * This method returns the following error codes: - * - * * `PERMISSION_DENIED` if a `student_id` is specified, and the requesting - * user is not permitted to view guardian invitations for that student, if - * `"-"` is specified as the `student_id` and the user is not a domain - * administrator, if guardians are not enabled for the domain in question, or - * for other access errors. * `INVALID_ARGUMENT` if a `student_id` is specified, - * but its format cannot be recognized (it is not an email address, nor a - * `student_id` from the API, nor the literal string `me`). May also be - * returned if an invalid `page_token` or `state` is provided. * `NOT_FOUND` - * if a `student_id` is specified, and its format can be recognized, but - * Classroom has no record of that student. - * (guardianInvitations.listUserProfilesGuardianInvitations) - * - * @param string $studentId The ID of the student whose guardian invitations are - * to be returned. The identifier can be one of the following: - * - * * the numeric identifier for the user * the email address of the user * the - * string literal `"me"`, indicating the requesting user * the string literal - * `"-"`, indicating that results should be returned for all students that the - * requesting user is permitted to view guardian invitations. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken nextPageToken value returned from a previous list - * call, indicating that the subsequent page of results should be returned. - * - * The list request must be otherwise identical to the one that resulted in this - * token. - * @opt_param string invitedEmailAddress If specified, only results with the - * specified `invited_email_address` will be returned. - * @opt_param string states If specified, only results with the specified - * `state` values will be returned. Otherwise, results with a `state` of - * `PENDING` will be returned. - * @opt_param int pageSize Maximum number of items to return. Zero or - * unspecified indicates that the server may assign a maximum. - * - * The server may return fewer than the specified number of results. - * @return Google_Service_Classroom_ListGuardianInvitationsResponse - */ - public function listUserProfilesGuardianInvitations($studentId, $optParams = array()) - { - $params = array('studentId' => $studentId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Classroom_ListGuardianInvitationsResponse"); - } - /** - * Modifies a guardian invitation. - * - * Currently, the only valid modification is to change the `state` from - * `PENDING` to `COMPLETE`. This has the effect of withdrawing the invitation. - * - * This method returns the following error codes: - * - * * `PERMISSION_DENIED` if the current user does not have permission to - * manage guardians, if guardians are not enabled for the domain in question - * or for other access errors. * `FAILED_PRECONDITION` if the guardian link is - * not in the `PENDING` state. * `INVALID_ARGUMENT` if the format of the student - * ID provided cannot be recognized (it is not an email address, nor a - * `user_id` from this API), or if the passed `GuardianInvitation` has a - * `state` other than `COMPLETE`, or if it modifies fields other than `state`. - * * `NOT_FOUND` if the student ID provided is a valid student ID, but - * Classroom has no record of that student, or if the `id` field does not - * refer to a guardian invitation known to Classroom. - * (guardianInvitations.patch) - * - * @param string $studentId The ID of the student whose guardian invitation is - * to be modified. - * @param string $invitationId The `id` field of the `GuardianInvitation` to be - * modified. - * @param Google_Service_Classroom_GuardianInvitation $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Mask that identifies which fields on the course - * to update. This field is required to do an update. The update will fail if - * invalid fields are specified. The following fields are valid: - * - * * `state` - * - * When set in a query parameter, this field should be specified as - * - * `updateMask=,,...` - * @return Google_Service_Classroom_GuardianInvitation - */ - public function patch($studentId, $invitationId, Google_Service_Classroom_GuardianInvitation $postBody, $optParams = array()) - { - $params = array('studentId' => $studentId, 'invitationId' => $invitationId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Classroom_GuardianInvitation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Resource/UserProfilesGuardians.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Resource/UserProfilesGuardians.php deleted file mode 100644 index 1090712a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Resource/UserProfilesGuardians.php +++ /dev/null @@ -1,143 +0,0 @@ - - * $classroomService = new Google_Service_Classroom(...); - * $guardians = $classroomService->guardians; - * - */ -class Google_Service_Classroom_Resource_UserProfilesGuardians extends Google_Service_Resource -{ - /** - * Deletes a guardian. - * - * The guardian will no longer receive guardian notifications and the guardian - * will no longer be accessible via the API. - * - * This method returns the following error codes: - * - * * `PERMISSION_DENIED` if no user that matches the provided `student_id` is - * visible to the requesting user, if the requesting user is not permitted to - * manage guardians for the student identified by the `student_id`, if - * guardians are not enabled for the domain in question, or for other access - * errors. * `INVALID_ARGUMENT` if a `student_id` is specified, but its format - * cannot be recognized (it is not an email address, nor a `student_id` from - * the API). * `NOT_FOUND` if the requesting user is permitted to modify - * guardians for the requested `student_id`, but no `Guardian` record exists - * for that student with the provided `guardian_id`. (guardians.delete) - * - * @param string $studentId The student whose guardian is to be deleted. One of - * the following: - * - * * the numeric identifier for the user * the email address of the user * the - * string literal `"me"`, indicating the requesting user - * @param string $guardianId The `id` field from a `Guardian`. - * @param array $optParams Optional parameters. - * @return Google_Service_Classroom_ClassroomEmpty - */ - public function delete($studentId, $guardianId, $optParams = array()) - { - $params = array('studentId' => $studentId, 'guardianId' => $guardianId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Classroom_ClassroomEmpty"); - } - /** - * Returns a specific guardian. - * - * This method returns the following error codes: - * - * * `PERMISSION_DENIED` if no user that matches the provided `student_id` is - * visible to the requesting user, if the requesting user is not permitted to - * view guardian information for the student identified by the `student_id`, - * if guardians are not enabled for the domain in question, or for other - * access errors. * `INVALID_ARGUMENT` if a `student_id` is specified, but its - * format cannot be recognized (it is not an email address, nor a `student_id` - * from the API, nor the literal string `me`). * `NOT_FOUND` if the requesting - * user is permitted to view guardians for the requested `student_id`, but no - * `Guardian` record exists for that student that matches the provided - * `guardian_id`. (guardians.get) - * - * @param string $studentId The student whose guardian is being requested. One - * of the following: - * - * * the numeric identifier for the user * the email address of the user * the - * string literal `"me"`, indicating the requesting user - * @param string $guardianId The `id` field from a `Guardian`. - * @param array $optParams Optional parameters. - * @return Google_Service_Classroom_Guardian - */ - public function get($studentId, $guardianId, $optParams = array()) - { - $params = array('studentId' => $studentId, 'guardianId' => $guardianId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Classroom_Guardian"); - } - /** - * Returns a list of guardians that the requesting user is permitted to view, - * restricted to those that match the request. - * - * To list guardians for any student that the requesting user may view guardians - * for, use the literal character `-` for the student ID. - * - * This method returns the following error codes: - * - * * `PERMISSION_DENIED` if a `student_id` is specified, and the requesting - * user is not permitted to view guardian information for that student, if - * `"-"` is specified as the `student_id` and the user is not a domain - * administrator, if guardians are not enabled for the domain in question, if - * the `invited_email_address` filter is set by a user who is not a domain - * administrator, or for other access errors. * `INVALID_ARGUMENT` if a - * `student_id` is specified, but its format cannot be recognized (it is not - * an email address, nor a `student_id` from the API, nor the literal string - * `me`). May also be returned if an invalid `page_token` is provided. * - * `NOT_FOUND` if a `student_id` is specified, and its format can be - * recognized, but Classroom has no record of that student. - * (guardians.listUserProfilesGuardians) - * - * @param string $studentId Filter results by the student who the guardian is - * linked to. The identifier can be one of the following: - * - * * the numeric identifier for the user * the email address of the user * the - * string literal `"me"`, indicating the requesting user * the string literal - * `"-"`, indicating that results should be returned for all students that the - * requesting user has access to view. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken nextPageToken value returned from a previous list - * call, indicating that the subsequent page of results should be returned. - * - * The list request must be otherwise identical to the one that resulted in this - * token. - * @opt_param string invitedEmailAddress Filter results by the email address - * that the original invitation was sent to, resulting in this guardian link. - * This filter can only be used by domain administrators. - * @opt_param int pageSize Maximum number of items to return. Zero or - * unspecified indicates that the server may assign a maximum. - * - * The server may return fewer than the specified number of results. - * @return Google_Service_Classroom_ListGuardiansResponse - */ - public function listUserProfilesGuardians($studentId, $optParams = array()) - { - $params = array('studentId' => $studentId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Classroom_ListGuardiansResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ReturnStudentSubmissionRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ReturnStudentSubmissionRequest.php deleted file mode 100644 index b2a045ad..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ReturnStudentSubmissionRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -driveFile = $driveFile; - } - /** - * @return Google_Service_Classroom_DriveFile - */ - public function getDriveFile() - { - return $this->driveFile; - } - public function setShareMode($shareMode) - { - $this->shareMode = $shareMode; - } - public function getShareMode() - { - return $this->shareMode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ShortAnswerSubmission.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ShortAnswerSubmission.php deleted file mode 100644 index 1e59d45a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/ShortAnswerSubmission.php +++ /dev/null @@ -1,30 +0,0 @@ -answer = $answer; - } - public function getAnswer() - { - return $this->answer; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/StateHistory.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/StateHistory.php deleted file mode 100644 index d53bf442..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/StateHistory.php +++ /dev/null @@ -1,48 +0,0 @@ -actorUserId = $actorUserId; - } - public function getActorUserId() - { - return $this->actorUserId; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setStateTimestamp($stateTimestamp) - { - $this->stateTimestamp = $stateTimestamp; - } - public function getStateTimestamp() - { - return $this->stateTimestamp; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Student.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Student.php deleted file mode 100644 index 21337a16..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Student.php +++ /dev/null @@ -1,71 +0,0 @@ -courseId = $courseId; - } - public function getCourseId() - { - return $this->courseId; - } - /** - * @param Google_Service_Classroom_UserProfile - */ - public function setProfile(Google_Service_Classroom_UserProfile $profile) - { - $this->profile = $profile; - } - /** - * @return Google_Service_Classroom_UserProfile - */ - public function getProfile() - { - return $this->profile; - } - /** - * @param Google_Service_Classroom_DriveFolder - */ - public function setStudentWorkFolder(Google_Service_Classroom_DriveFolder $studentWorkFolder) - { - $this->studentWorkFolder = $studentWorkFolder; - } - /** - * @return Google_Service_Classroom_DriveFolder - */ - public function getStudentWorkFolder() - { - return $this->studentWorkFolder; - } - public function setUserId($userId) - { - $this->userId = $userId; - } - public function getUserId() - { - return $this->userId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/StudentSubmission.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/StudentSubmission.php deleted file mode 100644 index 8b027309..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/StudentSubmission.php +++ /dev/null @@ -1,203 +0,0 @@ -alternateLink = $alternateLink; - } - public function getAlternateLink() - { - return $this->alternateLink; - } - public function setAssignedGrade($assignedGrade) - { - $this->assignedGrade = $assignedGrade; - } - public function getAssignedGrade() - { - return $this->assignedGrade; - } - /** - * @param Google_Service_Classroom_AssignmentSubmission - */ - public function setAssignmentSubmission(Google_Service_Classroom_AssignmentSubmission $assignmentSubmission) - { - $this->assignmentSubmission = $assignmentSubmission; - } - /** - * @return Google_Service_Classroom_AssignmentSubmission - */ - public function getAssignmentSubmission() - { - return $this->assignmentSubmission; - } - public function setAssociatedWithDeveloper($associatedWithDeveloper) - { - $this->associatedWithDeveloper = $associatedWithDeveloper; - } - public function getAssociatedWithDeveloper() - { - return $this->associatedWithDeveloper; - } - public function setCourseId($courseId) - { - $this->courseId = $courseId; - } - public function getCourseId() - { - return $this->courseId; - } - public function setCourseWorkId($courseWorkId) - { - $this->courseWorkId = $courseWorkId; - } - public function getCourseWorkId() - { - return $this->courseWorkId; - } - public function setCourseWorkType($courseWorkType) - { - $this->courseWorkType = $courseWorkType; - } - public function getCourseWorkType() - { - return $this->courseWorkType; - } - public function setCreationTime($creationTime) - { - $this->creationTime = $creationTime; - } - public function getCreationTime() - { - return $this->creationTime; - } - public function setDraftGrade($draftGrade) - { - $this->draftGrade = $draftGrade; - } - public function getDraftGrade() - { - return $this->draftGrade; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setLate($late) - { - $this->late = $late; - } - public function getLate() - { - return $this->late; - } - /** - * @param Google_Service_Classroom_MultipleChoiceSubmission - */ - public function setMultipleChoiceSubmission(Google_Service_Classroom_MultipleChoiceSubmission $multipleChoiceSubmission) - { - $this->multipleChoiceSubmission = $multipleChoiceSubmission; - } - /** - * @return Google_Service_Classroom_MultipleChoiceSubmission - */ - public function getMultipleChoiceSubmission() - { - return $this->multipleChoiceSubmission; - } - /** - * @param Google_Service_Classroom_ShortAnswerSubmission - */ - public function setShortAnswerSubmission(Google_Service_Classroom_ShortAnswerSubmission $shortAnswerSubmission) - { - $this->shortAnswerSubmission = $shortAnswerSubmission; - } - /** - * @return Google_Service_Classroom_ShortAnswerSubmission - */ - public function getShortAnswerSubmission() - { - return $this->shortAnswerSubmission; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - /** - * @param Google_Service_Classroom_SubmissionHistory - */ - public function setSubmissionHistory($submissionHistory) - { - $this->submissionHistory = $submissionHistory; - } - /** - * @return Google_Service_Classroom_SubmissionHistory - */ - public function getSubmissionHistory() - { - return $this->submissionHistory; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } - public function setUserId($userId) - { - $this->userId = $userId; - } - public function getUserId() - { - return $this->userId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/SubmissionHistory.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/SubmissionHistory.php deleted file mode 100644 index 0517f677..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/SubmissionHistory.php +++ /dev/null @@ -1,53 +0,0 @@ -gradeHistory = $gradeHistory; - } - /** - * @return Google_Service_Classroom_GradeHistory - */ - public function getGradeHistory() - { - return $this->gradeHistory; - } - /** - * @param Google_Service_Classroom_StateHistory - */ - public function setStateHistory(Google_Service_Classroom_StateHistory $stateHistory) - { - $this->stateHistory = $stateHistory; - } - /** - * @return Google_Service_Classroom_StateHistory - */ - public function getStateHistory() - { - return $this->stateHistory; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Teacher.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Teacher.php deleted file mode 100644 index c64df75f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Teacher.php +++ /dev/null @@ -1,55 +0,0 @@ -courseId = $courseId; - } - public function getCourseId() - { - return $this->courseId; - } - /** - * @param Google_Service_Classroom_UserProfile - */ - public function setProfile(Google_Service_Classroom_UserProfile $profile) - { - $this->profile = $profile; - } - /** - * @return Google_Service_Classroom_UserProfile - */ - public function getProfile() - { - return $this->profile; - } - public function setUserId($userId) - { - $this->userId = $userId; - } - public function getUserId() - { - return $this->userId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/TimeOfDay.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/TimeOfDay.php deleted file mode 100644 index dea8f482..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/TimeOfDay.php +++ /dev/null @@ -1,57 +0,0 @@ -hours = $hours; - } - public function getHours() - { - return $this->hours; - } - public function setMinutes($minutes) - { - $this->minutes = $minutes; - } - public function getMinutes() - { - return $this->minutes; - } - public function setNanos($nanos) - { - $this->nanos = $nanos; - } - public function getNanos() - { - return $this->nanos; - } - public function setSeconds($seconds) - { - $this->seconds = $seconds; - } - public function getSeconds() - { - return $this->seconds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Topic.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Topic.php deleted file mode 100644 index d229fc59..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/Topic.php +++ /dev/null @@ -1,57 +0,0 @@ -courseId = $courseId; - } - public function getCourseId() - { - return $this->courseId; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setTopicId($topicId) - { - $this->topicId = $topicId; - } - public function getTopicId() - { - return $this->topicId; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/TurnInStudentSubmissionRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/TurnInStudentSubmissionRequest.php deleted file mode 100644 index e361de36..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/TurnInStudentSubmissionRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -emailAddress = $emailAddress; - } - public function getEmailAddress() - { - return $this->emailAddress; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Classroom_Name - */ - public function setName(Google_Service_Classroom_Name $name) - { - $this->name = $name; - } - /** - * @return Google_Service_Classroom_Name - */ - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Classroom_GlobalPermission - */ - public function setPermissions($permissions) - { - $this->permissions = $permissions; - } - /** - * @return Google_Service_Classroom_GlobalPermission - */ - public function getPermissions() - { - return $this->permissions; - } - public function setPhotoUrl($photoUrl) - { - $this->photoUrl = $photoUrl; - } - public function getPhotoUrl() - { - return $this->photoUrl; - } - public function setVerifiedTeacher($verifiedTeacher) - { - $this->verifiedTeacher = $verifiedTeacher; - } - public function getVerifiedTeacher() - { - return $this->verifiedTeacher; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/YouTubeVideo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/YouTubeVideo.php deleted file mode 100644 index 14c828ed..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Classroom/YouTubeVideo.php +++ /dev/null @@ -1,57 +0,0 @@ -alternateLink = $alternateLink; - } - public function getAlternateLink() - { - return $this->alternateLink; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setThumbnailUrl($thumbnailUrl) - { - $this->thumbnailUrl = $thumbnailUrl; - } - public function getThumbnailUrl() - { - return $this->thumbnailUrl; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset.php deleted file mode 100644 index 5680b9d6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset.php +++ /dev/null @@ -1,184 +0,0 @@ - - * The cloud asset API manages the history and inventory of cloud resources.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_CloudAsset extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - - public $feeds; - public $operations; - public $v1; - - /** - * Constructs the internal representation of the CloudAsset service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://cloudasset.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'cloudasset'; - - $this->feeds = new Google_Service_CloudAsset_Resource_Feeds( - $this, - $this->serviceName, - 'feeds', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/feeds', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/feeds', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->operations = new Google_Service_CloudAsset_Resource_Operations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->v1 = new Google_Service_CloudAsset_Resource_V1( - $this, - $this->serviceName, - 'v1', - array( - 'methods' => array( - 'batchGetAssetsHistory' => array( - 'path' => 'v1/{+parent}:batchGetAssetsHistory', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'readTimeWindow.startTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'assetNames' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'contentType' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'readTimeWindow.endTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'exportAssets' => array( - 'path' => 'v1/{+parent}:exportAssets', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/Asset.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/Asset.php deleted file mode 100644 index b3a3a1ab..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/Asset.php +++ /dev/null @@ -1,145 +0,0 @@ -accessLevel = $accessLevel; - } - /** - * @return Google_Service_CloudAsset_GoogleIdentityAccesscontextmanagerV1AccessLevel - */ - public function getAccessLevel() - { - return $this->accessLevel; - } - /** - * @param Google_Service_CloudAsset_GoogleIdentityAccesscontextmanagerV1AccessPolicy - */ - public function setAccessPolicy(Google_Service_CloudAsset_GoogleIdentityAccesscontextmanagerV1AccessPolicy $accessPolicy) - { - $this->accessPolicy = $accessPolicy; - } - /** - * @return Google_Service_CloudAsset_GoogleIdentityAccesscontextmanagerV1AccessPolicy - */ - public function getAccessPolicy() - { - return $this->accessPolicy; - } - public function setAncestors($ancestors) - { - $this->ancestors = $ancestors; - } - public function getAncestors() - { - return $this->ancestors; - } - public function setAssetType($assetType) - { - $this->assetType = $assetType; - } - public function getAssetType() - { - return $this->assetType; - } - /** - * @param Google_Service_CloudAsset_Policy - */ - public function setIamPolicy(Google_Service_CloudAsset_Policy $iamPolicy) - { - $this->iamPolicy = $iamPolicy; - } - /** - * @return Google_Service_CloudAsset_Policy - */ - public function getIamPolicy() - { - return $this->iamPolicy; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_CloudAsset_GoogleCloudOrgpolicyV1Policy - */ - public function setOrgPolicy($orgPolicy) - { - $this->orgPolicy = $orgPolicy; - } - /** - * @return Google_Service_CloudAsset_GoogleCloudOrgpolicyV1Policy - */ - public function getOrgPolicy() - { - return $this->orgPolicy; - } - /** - * @param Google_Service_CloudAsset_CloudassetResource - */ - public function setResource(Google_Service_CloudAsset_CloudassetResource $resource) - { - $this->resource = $resource; - } - /** - * @return Google_Service_CloudAsset_CloudassetResource - */ - public function getResource() - { - return $this->resource; - } - /** - * @param Google_Service_CloudAsset_GoogleIdentityAccesscontextmanagerV1ServicePerimeter - */ - public function setServicePerimeter(Google_Service_CloudAsset_GoogleIdentityAccesscontextmanagerV1ServicePerimeter $servicePerimeter) - { - $this->servicePerimeter = $servicePerimeter; - } - /** - * @return Google_Service_CloudAsset_GoogleIdentityAccesscontextmanagerV1ServicePerimeter - */ - public function getServicePerimeter() - { - return $this->servicePerimeter; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/AuditConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/AuditConfig.php deleted file mode 100644 index ee515f4b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/AuditConfig.php +++ /dev/null @@ -1,47 +0,0 @@ -auditLogConfigs = $auditLogConfigs; - } - /** - * @return Google_Service_CloudAsset_AuditLogConfig - */ - public function getAuditLogConfigs() - { - return $this->auditLogConfigs; - } - public function setService($service) - { - $this->service = $service; - } - public function getService() - { - return $this->service; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/AuditLogConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/AuditLogConfig.php deleted file mode 100644 index 01ec5308..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/AuditLogConfig.php +++ /dev/null @@ -1,40 +0,0 @@ -exemptedMembers = $exemptedMembers; - } - public function getExemptedMembers() - { - return $this->exemptedMembers; - } - public function setLogType($logType) - { - $this->logType = $logType; - } - public function getLogType() - { - return $this->logType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/BatchGetAssetsHistoryResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/BatchGetAssetsHistoryResponse.php deleted file mode 100644 index 2d48ea90..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/BatchGetAssetsHistoryResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -assets = $assets; - } - /** - * @return Google_Service_CloudAsset_TemporalAsset - */ - public function getAssets() - { - return $this->assets; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/BigQueryDestination.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/BigQueryDestination.php deleted file mode 100644 index 4ae014b8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/BigQueryDestination.php +++ /dev/null @@ -1,48 +0,0 @@ -dataset = $dataset; - } - public function getDataset() - { - return $this->dataset; - } - public function setForce($force) - { - $this->force = $force; - } - public function getForce() - { - return $this->force; - } - public function setTable($table) - { - $this->table = $table; - } - public function getTable() - { - return $this->table; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/Binding.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/Binding.php deleted file mode 100644 index 3cde78bf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/Binding.php +++ /dev/null @@ -1,56 +0,0 @@ -condition = $condition; - } - /** - * @return Google_Service_CloudAsset_Expr - */ - public function getCondition() - { - return $this->condition; - } - public function setMembers($members) - { - $this->members = $members; - } - public function getMembers() - { - return $this->members; - } - public function setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/CloudassetEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/CloudassetEmpty.php deleted file mode 100644 index 71c3536c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/CloudassetEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -data = $data; - } - public function getData() - { - return $this->data; - } - public function setDiscoveryDocumentUri($discoveryDocumentUri) - { - $this->discoveryDocumentUri = $discoveryDocumentUri; - } - public function getDiscoveryDocumentUri() - { - return $this->discoveryDocumentUri; - } - public function setDiscoveryName($discoveryName) - { - $this->discoveryName = $discoveryName; - } - public function getDiscoveryName() - { - return $this->discoveryName; - } - public function setParent($parent) - { - $this->parent = $parent; - } - public function getParent() - { - return $this->parent; - } - public function setResourceUrl($resourceUrl) - { - $this->resourceUrl = $resourceUrl; - } - public function getResourceUrl() - { - return $this->resourceUrl; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/CreateFeedRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/CreateFeedRequest.php deleted file mode 100644 index a4c74a8a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/CreateFeedRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -feed = $feed; - } - /** - * @return Google_Service_CloudAsset_Feed - */ - public function getFeed() - { - return $this->feed; - } - public function setFeedId($feedId) - { - $this->feedId = $feedId; - } - public function getFeedId() - { - return $this->feedId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/ExportAssetsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/ExportAssetsRequest.php deleted file mode 100644 index d702bac6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/ExportAssetsRequest.php +++ /dev/null @@ -1,65 +0,0 @@ -assetTypes = $assetTypes; - } - public function getAssetTypes() - { - return $this->assetTypes; - } - public function setContentType($contentType) - { - $this->contentType = $contentType; - } - public function getContentType() - { - return $this->contentType; - } - /** - * @param Google_Service_CloudAsset_OutputConfig - */ - public function setOutputConfig(Google_Service_CloudAsset_OutputConfig $outputConfig) - { - $this->outputConfig = $outputConfig; - } - /** - * @return Google_Service_CloudAsset_OutputConfig - */ - public function getOutputConfig() - { - return $this->outputConfig; - } - public function setReadTime($readTime) - { - $this->readTime = $readTime; - } - public function getReadTime() - { - return $this->readTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/Expr.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/Expr.php deleted file mode 100644 index 995c3703..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/Expr.php +++ /dev/null @@ -1,57 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setExpression($expression) - { - $this->expression = $expression; - } - public function getExpression() - { - return $this->expression; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/Feed.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/Feed.php deleted file mode 100644 index 57889aed..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/Feed.php +++ /dev/null @@ -1,74 +0,0 @@ -assetNames = $assetNames; - } - public function getAssetNames() - { - return $this->assetNames; - } - public function setAssetTypes($assetTypes) - { - $this->assetTypes = $assetTypes; - } - public function getAssetTypes() - { - return $this->assetTypes; - } - public function setContentType($contentType) - { - $this->contentType = $contentType; - } - public function getContentType() - { - return $this->contentType; - } - /** - * @param Google_Service_CloudAsset_FeedOutputConfig - */ - public function setFeedOutputConfig(Google_Service_CloudAsset_FeedOutputConfig $feedOutputConfig) - { - $this->feedOutputConfig = $feedOutputConfig; - } - /** - * @return Google_Service_CloudAsset_FeedOutputConfig - */ - public function getFeedOutputConfig() - { - return $this->feedOutputConfig; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/FeedOutputConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/FeedOutputConfig.php deleted file mode 100644 index 5057f40b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/FeedOutputConfig.php +++ /dev/null @@ -1,37 +0,0 @@ -pubsubDestination = $pubsubDestination; - } - /** - * @return Google_Service_CloudAsset_PubsubDestination - */ - public function getPubsubDestination() - { - return $this->pubsubDestination; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/GcsDestination.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/GcsDestination.php deleted file mode 100644 index feb5a9ad..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/GcsDestination.php +++ /dev/null @@ -1,39 +0,0 @@ -uri = $uri; - } - public function getUri() - { - return $this->uri; - } - public function setUriPrefix($uriPrefix) - { - $this->uriPrefix = $uriPrefix; - } - public function getUriPrefix() - { - return $this->uriPrefix; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/GoogleCloudOrgpolicyV1BooleanPolicy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/GoogleCloudOrgpolicyV1BooleanPolicy.php deleted file mode 100644 index cb841a96..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/GoogleCloudOrgpolicyV1BooleanPolicy.php +++ /dev/null @@ -1,30 +0,0 @@ -enforced = $enforced; - } - public function getEnforced() - { - return $this->enforced; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/GoogleCloudOrgpolicyV1ListPolicy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/GoogleCloudOrgpolicyV1ListPolicy.php deleted file mode 100644 index 7e6494f6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/GoogleCloudOrgpolicyV1ListPolicy.php +++ /dev/null @@ -1,67 +0,0 @@ -allValues = $allValues; - } - public function getAllValues() - { - return $this->allValues; - } - public function setAllowedValues($allowedValues) - { - $this->allowedValues = $allowedValues; - } - public function getAllowedValues() - { - return $this->allowedValues; - } - public function setDeniedValues($deniedValues) - { - $this->deniedValues = $deniedValues; - } - public function getDeniedValues() - { - return $this->deniedValues; - } - public function setInheritFromParent($inheritFromParent) - { - $this->inheritFromParent = $inheritFromParent; - } - public function getInheritFromParent() - { - return $this->inheritFromParent; - } - public function setSuggestedValue($suggestedValue) - { - $this->suggestedValue = $suggestedValue; - } - public function getSuggestedValue() - { - return $this->suggestedValue; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/GoogleCloudOrgpolicyV1Policy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/GoogleCloudOrgpolicyV1Policy.php deleted file mode 100644 index fd7c649e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/GoogleCloudOrgpolicyV1Policy.php +++ /dev/null @@ -1,105 +0,0 @@ -booleanPolicy = $booleanPolicy; - } - /** - * @return Google_Service_CloudAsset_GoogleCloudOrgpolicyV1BooleanPolicy - */ - public function getBooleanPolicy() - { - return $this->booleanPolicy; - } - public function setConstraint($constraint) - { - $this->constraint = $constraint; - } - public function getConstraint() - { - return $this->constraint; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_CloudAsset_GoogleCloudOrgpolicyV1ListPolicy - */ - public function setListPolicy(Google_Service_CloudAsset_GoogleCloudOrgpolicyV1ListPolicy $listPolicy) - { - $this->listPolicy = $listPolicy; - } - /** - * @return Google_Service_CloudAsset_GoogleCloudOrgpolicyV1ListPolicy - */ - public function getListPolicy() - { - return $this->listPolicy; - } - /** - * @param Google_Service_CloudAsset_GoogleCloudOrgpolicyV1RestoreDefault - */ - public function setRestoreDefault(Google_Service_CloudAsset_GoogleCloudOrgpolicyV1RestoreDefault $restoreDefault) - { - $this->restoreDefault = $restoreDefault; - } - /** - * @return Google_Service_CloudAsset_GoogleCloudOrgpolicyV1RestoreDefault - */ - public function getRestoreDefault() - { - return $this->restoreDefault; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/GoogleCloudOrgpolicyV1RestoreDefault.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/GoogleCloudOrgpolicyV1RestoreDefault.php deleted file mode 100644 index 71780cb8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/GoogleCloudOrgpolicyV1RestoreDefault.php +++ /dev/null @@ -1,20 +0,0 @@ -basic = $basic; - } - /** - * @return Google_Service_CloudAsset_GoogleIdentityAccesscontextmanagerV1BasicLevel - */ - public function getBasic() - { - return $this->basic; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - /** - * @param Google_Service_CloudAsset_GoogleIdentityAccesscontextmanagerV1CustomLevel - */ - public function setCustom(Google_Service_CloudAsset_GoogleIdentityAccesscontextmanagerV1CustomLevel $custom) - { - $this->custom = $custom; - } - /** - * @return Google_Service_CloudAsset_GoogleIdentityAccesscontextmanagerV1CustomLevel - */ - public function getCustom() - { - return $this->custom; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/GoogleIdentityAccesscontextmanagerV1AccessPolicy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/GoogleIdentityAccesscontextmanagerV1AccessPolicy.php deleted file mode 100644 index aeb4c077..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/GoogleIdentityAccesscontextmanagerV1AccessPolicy.php +++ /dev/null @@ -1,66 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setParent($parent) - { - $this->parent = $parent; - } - public function getParent() - { - return $this->parent; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/GoogleIdentityAccesscontextmanagerV1BasicLevel.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/GoogleIdentityAccesscontextmanagerV1BasicLevel.php deleted file mode 100644 index 8ccf20c5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/GoogleIdentityAccesscontextmanagerV1BasicLevel.php +++ /dev/null @@ -1,47 +0,0 @@ -combiningFunction = $combiningFunction; - } - public function getCombiningFunction() - { - return $this->combiningFunction; - } - /** - * @param Google_Service_CloudAsset_GoogleIdentityAccesscontextmanagerV1Condition - */ - public function setConditions($conditions) - { - $this->conditions = $conditions; - } - /** - * @return Google_Service_CloudAsset_GoogleIdentityAccesscontextmanagerV1Condition - */ - public function getConditions() - { - return $this->conditions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/GoogleIdentityAccesscontextmanagerV1Condition.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/GoogleIdentityAccesscontextmanagerV1Condition.php deleted file mode 100644 index 0b9b4b33..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/GoogleIdentityAccesscontextmanagerV1Condition.php +++ /dev/null @@ -1,83 +0,0 @@ -devicePolicy = $devicePolicy; - } - /** - * @return Google_Service_CloudAsset_GoogleIdentityAccesscontextmanagerV1DevicePolicy - */ - public function getDevicePolicy() - { - return $this->devicePolicy; - } - public function setIpSubnetworks($ipSubnetworks) - { - $this->ipSubnetworks = $ipSubnetworks; - } - public function getIpSubnetworks() - { - return $this->ipSubnetworks; - } - public function setMembers($members) - { - $this->members = $members; - } - public function getMembers() - { - return $this->members; - } - public function setNegate($negate) - { - $this->negate = $negate; - } - public function getNegate() - { - return $this->negate; - } - public function setRegions($regions) - { - $this->regions = $regions; - } - public function getRegions() - { - return $this->regions; - } - public function setRequiredAccessLevels($requiredAccessLevels) - { - $this->requiredAccessLevels = $requiredAccessLevels; - } - public function getRequiredAccessLevels() - { - return $this->requiredAccessLevels; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/GoogleIdentityAccesscontextmanagerV1CustomLevel.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/GoogleIdentityAccesscontextmanagerV1CustomLevel.php deleted file mode 100644 index 9e8de672..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/GoogleIdentityAccesscontextmanagerV1CustomLevel.php +++ /dev/null @@ -1,37 +0,0 @@ -expr = $expr; - } - /** - * @return Google_Service_CloudAsset_Expr - */ - public function getExpr() - { - return $this->expr; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/GoogleIdentityAccesscontextmanagerV1DevicePolicy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/GoogleIdentityAccesscontextmanagerV1DevicePolicy.php deleted file mode 100644 index 7121d2cd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/GoogleIdentityAccesscontextmanagerV1DevicePolicy.php +++ /dev/null @@ -1,83 +0,0 @@ -allowedDeviceManagementLevels = $allowedDeviceManagementLevels; - } - public function getAllowedDeviceManagementLevels() - { - return $this->allowedDeviceManagementLevels; - } - public function setAllowedEncryptionStatuses($allowedEncryptionStatuses) - { - $this->allowedEncryptionStatuses = $allowedEncryptionStatuses; - } - public function getAllowedEncryptionStatuses() - { - return $this->allowedEncryptionStatuses; - } - /** - * @param Google_Service_CloudAsset_GoogleIdentityAccesscontextmanagerV1OsConstraint - */ - public function setOsConstraints($osConstraints) - { - $this->osConstraints = $osConstraints; - } - /** - * @return Google_Service_CloudAsset_GoogleIdentityAccesscontextmanagerV1OsConstraint - */ - public function getOsConstraints() - { - return $this->osConstraints; - } - public function setRequireAdminApproval($requireAdminApproval) - { - $this->requireAdminApproval = $requireAdminApproval; - } - public function getRequireAdminApproval() - { - return $this->requireAdminApproval; - } - public function setRequireCorpOwned($requireCorpOwned) - { - $this->requireCorpOwned = $requireCorpOwned; - } - public function getRequireCorpOwned() - { - return $this->requireCorpOwned; - } - public function setRequireScreenlock($requireScreenlock) - { - $this->requireScreenlock = $requireScreenlock; - } - public function getRequireScreenlock() - { - return $this->requireScreenlock; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/GoogleIdentityAccesscontextmanagerV1OsConstraint.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/GoogleIdentityAccesscontextmanagerV1OsConstraint.php deleted file mode 100644 index 5c1351fe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/GoogleIdentityAccesscontextmanagerV1OsConstraint.php +++ /dev/null @@ -1,48 +0,0 @@ -minimumVersion = $minimumVersion; - } - public function getMinimumVersion() - { - return $this->minimumVersion; - } - public function setOsType($osType) - { - $this->osType = $osType; - } - public function getOsType() - { - return $this->osType; - } - public function setRequireVerifiedChromeOs($requireVerifiedChromeOs) - { - $this->requireVerifiedChromeOs = $requireVerifiedChromeOs; - } - public function getRequireVerifiedChromeOs() - { - return $this->requireVerifiedChromeOs; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/GoogleIdentityAccesscontextmanagerV1ServicePerimeter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/GoogleIdentityAccesscontextmanagerV1ServicePerimeter.php deleted file mode 100644 index 49b6de45..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/GoogleIdentityAccesscontextmanagerV1ServicePerimeter.php +++ /dev/null @@ -1,91 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPerimeterType($perimeterType) - { - $this->perimeterType = $perimeterType; - } - public function getPerimeterType() - { - return $this->perimeterType; - } - /** - * @param Google_Service_CloudAsset_GoogleIdentityAccesscontextmanagerV1ServicePerimeterConfig - */ - public function setStatus(Google_Service_CloudAsset_GoogleIdentityAccesscontextmanagerV1ServicePerimeterConfig $status) - { - $this->status = $status; - } - /** - * @return Google_Service_CloudAsset_GoogleIdentityAccesscontextmanagerV1ServicePerimeterConfig - */ - public function getStatus() - { - return $this->status; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/GoogleIdentityAccesscontextmanagerV1ServicePerimeterConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/GoogleIdentityAccesscontextmanagerV1ServicePerimeterConfig.php deleted file mode 100644 index 017e666d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/GoogleIdentityAccesscontextmanagerV1ServicePerimeterConfig.php +++ /dev/null @@ -1,49 +0,0 @@ -accessLevels = $accessLevels; - } - public function getAccessLevels() - { - return $this->accessLevels; - } - public function setResources($resources) - { - $this->resources = $resources; - } - public function getResources() - { - return $this->resources; - } - public function setRestrictedServices($restrictedServices) - { - $this->restrictedServices = $restrictedServices; - } - public function getRestrictedServices() - { - return $this->restrictedServices; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/ListFeedsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/ListFeedsResponse.php deleted file mode 100644 index 38a97669..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/ListFeedsResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -feeds = $feeds; - } - /** - * @return Google_Service_CloudAsset_Feed - */ - public function getFeeds() - { - return $this->feeds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/Operation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/Operation.php deleted file mode 100644 index a6c19403..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/Operation.php +++ /dev/null @@ -1,73 +0,0 @@ -done = $done; - } - public function getDone() - { - return $this->done; - } - /** - * @param Google_Service_CloudAsset_Status - */ - public function setError(Google_Service_CloudAsset_Status $error) - { - $this->error = $error; - } - /** - * @return Google_Service_CloudAsset_Status - */ - public function getError() - { - return $this->error; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/OutputConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/OutputConfig.php deleted file mode 100644 index 97aa4265..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/OutputConfig.php +++ /dev/null @@ -1,53 +0,0 @@ -bigqueryDestination = $bigqueryDestination; - } - /** - * @return Google_Service_CloudAsset_BigQueryDestination - */ - public function getBigqueryDestination() - { - return $this->bigqueryDestination; - } - /** - * @param Google_Service_CloudAsset_GcsDestination - */ - public function setGcsDestination(Google_Service_CloudAsset_GcsDestination $gcsDestination) - { - $this->gcsDestination = $gcsDestination; - } - /** - * @return Google_Service_CloudAsset_GcsDestination - */ - public function getGcsDestination() - { - return $this->gcsDestination; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/Policy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/Policy.php deleted file mode 100644 index fa4c35b9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/Policy.php +++ /dev/null @@ -1,72 +0,0 @@ -auditConfigs = $auditConfigs; - } - /** - * @return Google_Service_CloudAsset_AuditConfig - */ - public function getAuditConfigs() - { - return $this->auditConfigs; - } - /** - * @param Google_Service_CloudAsset_Binding - */ - public function setBindings($bindings) - { - $this->bindings = $bindings; - } - /** - * @return Google_Service_CloudAsset_Binding - */ - public function getBindings() - { - return $this->bindings; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/PubsubDestination.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/PubsubDestination.php deleted file mode 100644 index 048f9218..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/PubsubDestination.php +++ /dev/null @@ -1,30 +0,0 @@ -topic = $topic; - } - public function getTopic() - { - return $this->topic; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/Resource/Feeds.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/Resource/Feeds.php deleted file mode 100644 index 5edf695e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/Resource/Feeds.php +++ /dev/null @@ -1,116 +0,0 @@ - - * $cloudassetService = new Google_Service_CloudAsset(...); - * $feeds = $cloudassetService->feeds; - * - */ -class Google_Service_CloudAsset_Resource_Feeds extends Google_Service_Resource -{ - /** - * Creates a feed in a parent project/folder/organization to listen to its asset - * updates. (feeds.create) - * - * @param string $parent Required. The name of the project/folder/organization - * where this feed should be created in. It can only be an organization number - * (such as "organizations/123"), a folder number (such as "folders/123"), a - * project ID (such as "projects/my-project-id")", or a project number (such as - * "projects/12345"). - * @param Google_Service_CloudAsset_CreateFeedRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudAsset_Feed - */ - public function create($parent, Google_Service_CloudAsset_CreateFeedRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_CloudAsset_Feed"); - } - /** - * Deletes an asset feed. (feeds.delete) - * - * @param string $name Required. The name of the feed and it must be in the - * format of: projects/project_number/feeds/feed_id - * folders/folder_number/feeds/feed_id - * organizations/organization_number/feeds/feed_id - * @param array $optParams Optional parameters. - * @return Google_Service_CloudAsset_CloudassetEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudAsset_CloudassetEmpty"); - } - /** - * Gets details about an asset feed. (feeds.get) - * - * @param string $name Required. The name of the Feed and it must be in the - * format of: projects/project_number/feeds/feed_id - * folders/folder_number/feeds/feed_id - * organizations/organization_number/feeds/feed_id - * @param array $optParams Optional parameters. - * @return Google_Service_CloudAsset_Feed - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudAsset_Feed"); - } - /** - * Lists all asset feeds in a parent project/folder/organization. - * (feeds.listFeeds) - * - * @param string $parent Required. The parent project/folder/organization whose - * feeds are to be listed. It can only be using project/folder/organization - * number (such as "folders/12345")", or a project ID (such as "projects/my- - * project-id"). - * @param array $optParams Optional parameters. - * @return Google_Service_CloudAsset_ListFeedsResponse - */ - public function listFeeds($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudAsset_ListFeedsResponse"); - } - /** - * Updates an asset feed configuration. (feeds.patch) - * - * @param string $name Required. The format will be - * projects/{project_number}/feeds/{client-assigned_feed_identifier} or - * folders/{folder_number}/feeds/{client-assigned_feed_identifier} or - * organizations/{organization_number}/feeds/{client-assigned_feed_identifier} - * - * The client-assigned feed identifier must be unique within the parent - * project/folder/organization. - * @param Google_Service_CloudAsset_UpdateFeedRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudAsset_Feed - */ - public function patch($name, Google_Service_CloudAsset_UpdateFeedRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_CloudAsset_Feed"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/Resource/Operations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/Resource/Operations.php deleted file mode 100644 index 0c9a719e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/Resource/Operations.php +++ /dev/null @@ -1,43 +0,0 @@ - - * $cloudassetService = new Google_Service_CloudAsset(...); - * $operations = $cloudassetService->operations; - * - */ -class Google_Service_CloudAsset_Resource_Operations extends Google_Service_Resource -{ - /** - * Gets the latest state of a long-running operation. Clients can use this - * method to poll the operation result at intervals as recommended by the API - * service. (operations.get) - * - * @param string $name The name of the operation resource. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudAsset_Operation - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudAsset_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/Resource/V1.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/Resource/V1.php deleted file mode 100644 index 532c2264..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/Resource/V1.php +++ /dev/null @@ -1,84 +0,0 @@ - - * $cloudassetService = new Google_Service_CloudAsset(...); - * $v1 = $cloudassetService->v1; - * - */ -class Google_Service_CloudAsset_Resource_V1 extends Google_Service_Resource -{ - /** - * Batch gets the update history of assets that overlap a time window. For - * RESOURCE content, this API outputs history with asset in both non-delete or - * deleted status. For IAM_POLICY content, this API outputs history when the - * asset and its attached IAM POLICY both exist. This can create gaps in the - * output history. If a specified asset does not exist, this API returns an - * INVALID_ARGUMENT error. (v1.batchGetAssetsHistory) - * - * @param string $parent Required. The relative name of the root asset. It can - * only be an organization number (such as "organizations/123"), a project ID - * (such as "projects/my-project-id")", or a project number (such as - * "projects/12345"). - * @param array $optParams Optional parameters. - * - * @opt_param string readTimeWindow.startTime Start time of the time window - * (exclusive). - * @opt_param string assetNames A list of the full names of the assets. For - * example: `//compute.googleapis.com/projects/my_project_123/zones/zone1/instan - * ces/instance1`. See [Resource Names](https://cloud.google.com/apis/design/res - * ource_names#full_resource_name) and [Resource Name - * Format](https://cloud.google.com/asset-inventory/docs/resource-name-format) - * for more info. - * - * The request becomes a no-op if the asset name list is empty, and the max size - * of the asset name list is 100 in one request. - * @opt_param string contentType Optional. The content type. - * @opt_param string readTimeWindow.endTime End time of the time window - * (inclusive). Current timestamp if not specified. - * @return Google_Service_CloudAsset_BatchGetAssetsHistoryResponse - */ - public function batchGetAssetsHistory($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('batchGetAssetsHistory', array($params), "Google_Service_CloudAsset_BatchGetAssetsHistoryResponse"); - } - /** - * Exports assets with time and resource types to a given Cloud Storage - * location. The output format is newline-delimited JSON. This API implements - * the google.longrunning.Operation API allowing you to keep track of the - * export. (v1.exportAssets) - * - * @param string $parent Required. The relative name of the root asset. This can - * only be an organization number (such as "organizations/123"), a project ID - * (such as "projects/my-project-id"), or a project number (such as - * "projects/12345"), or a folder number (such as "folders/123"). - * @param Google_Service_CloudAsset_ExportAssetsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudAsset_Operation - */ - public function exportAssets($parent, Google_Service_CloudAsset_ExportAssetsRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('exportAssets', array($params), "Google_Service_CloudAsset_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/Status.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/Status.php deleted file mode 100644 index a5f4b15d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/Status.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/TemporalAsset.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/TemporalAsset.php deleted file mode 100644 index 27d26fff..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/TemporalAsset.php +++ /dev/null @@ -1,62 +0,0 @@ -asset = $asset; - } - /** - * @return Google_Service_CloudAsset_Asset - */ - public function getAsset() - { - return $this->asset; - } - public function setDeleted($deleted) - { - $this->deleted = $deleted; - } - public function getDeleted() - { - return $this->deleted; - } - /** - * @param Google_Service_CloudAsset_TimeWindow - */ - public function setWindow(Google_Service_CloudAsset_TimeWindow $window) - { - $this->window = $window; - } - /** - * @return Google_Service_CloudAsset_TimeWindow - */ - public function getWindow() - { - return $this->window; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/TimeWindow.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/TimeWindow.php deleted file mode 100644 index 5c117ee4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/TimeWindow.php +++ /dev/null @@ -1,39 +0,0 @@ -endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/UpdateFeedRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/UpdateFeedRequest.php deleted file mode 100644 index b1898758..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudAsset/UpdateFeedRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -feed = $feed; - } - /** - * @return Google_Service_CloudAsset_Feed - */ - public function getFeed() - { - return $this->feed; - } - public function setUpdateMask($updateMask) - { - $this->updateMask = $updateMask; - } - public function getUpdateMask() - { - return $this->updateMask; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBillingBudget.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBillingBudget.php deleted file mode 100644 index b98e9b8d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBillingBudget.php +++ /dev/null @@ -1,124 +0,0 @@ - - * The Cloud Billing Budget API stores Cloud Billing budgets, which define a - * budget plan and the rules to execute as spend is tracked against that plan.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_CloudBillingBudget extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - - public $billingAccounts_budgets; - - /** - * Constructs the internal representation of the CloudBillingBudget service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://billingbudgets.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1beta1'; - $this->serviceName = 'billingbudgets'; - - $this->billingAccounts_budgets = new Google_Service_CloudBillingBudget_Resource_BillingAccountsBudgets( - $this, - $this->serviceName, - 'budgets', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1beta1/{+parent}/budgets', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1beta1/{+parent}/budgets', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBillingBudget/GoogleCloudBillingBudgetsV1beta1AllUpdatesRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBillingBudget/GoogleCloudBillingBudgetsV1beta1AllUpdatesRule.php deleted file mode 100644 index 2b8467bc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBillingBudget/GoogleCloudBillingBudgetsV1beta1AllUpdatesRule.php +++ /dev/null @@ -1,39 +0,0 @@ -pubsubTopic = $pubsubTopic; - } - public function getPubsubTopic() - { - return $this->pubsubTopic; - } - public function setSchemaVersion($schemaVersion) - { - $this->schemaVersion = $schemaVersion; - } - public function getSchemaVersion() - { - return $this->schemaVersion; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBillingBudget/GoogleCloudBillingBudgetsV1beta1Budget.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBillingBudget/GoogleCloudBillingBudgetsV1beta1Budget.php deleted file mode 100644 index 49d768d8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBillingBudget/GoogleCloudBillingBudgetsV1beta1Budget.php +++ /dev/null @@ -1,113 +0,0 @@ -allUpdatesRule = $allUpdatesRule; - } - /** - * @return Google_Service_CloudBillingBudget_GoogleCloudBillingBudgetsV1beta1AllUpdatesRule - */ - public function getAllUpdatesRule() - { - return $this->allUpdatesRule; - } - /** - * @param Google_Service_CloudBillingBudget_GoogleCloudBillingBudgetsV1beta1BudgetAmount - */ - public function setAmount(Google_Service_CloudBillingBudget_GoogleCloudBillingBudgetsV1beta1BudgetAmount $amount) - { - $this->amount = $amount; - } - /** - * @return Google_Service_CloudBillingBudget_GoogleCloudBillingBudgetsV1beta1BudgetAmount - */ - public function getAmount() - { - return $this->amount; - } - /** - * @param Google_Service_CloudBillingBudget_GoogleCloudBillingBudgetsV1beta1Filter - */ - public function setBudgetFilter(Google_Service_CloudBillingBudget_GoogleCloudBillingBudgetsV1beta1Filter $budgetFilter) - { - $this->budgetFilter = $budgetFilter; - } - /** - * @return Google_Service_CloudBillingBudget_GoogleCloudBillingBudgetsV1beta1Filter - */ - public function getBudgetFilter() - { - return $this->budgetFilter; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_CloudBillingBudget_GoogleCloudBillingBudgetsV1beta1ThresholdRule - */ - public function setThresholdRules($thresholdRules) - { - $this->thresholdRules = $thresholdRules; - } - /** - * @return Google_Service_CloudBillingBudget_GoogleCloudBillingBudgetsV1beta1ThresholdRule - */ - public function getThresholdRules() - { - return $this->thresholdRules; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBillingBudget/GoogleCloudBillingBudgetsV1beta1BudgetAmount.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBillingBudget/GoogleCloudBillingBudgetsV1beta1BudgetAmount.php deleted file mode 100644 index d80eb15f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBillingBudget/GoogleCloudBillingBudgetsV1beta1BudgetAmount.php +++ /dev/null @@ -1,53 +0,0 @@ -lastPeriodAmount = $lastPeriodAmount; - } - /** - * @return Google_Service_CloudBillingBudget_GoogleCloudBillingBudgetsV1beta1LastPeriodAmount - */ - public function getLastPeriodAmount() - { - return $this->lastPeriodAmount; - } - /** - * @param Google_Service_CloudBillingBudget_GoogleTypeMoney - */ - public function setSpecifiedAmount(Google_Service_CloudBillingBudget_GoogleTypeMoney $specifiedAmount) - { - $this->specifiedAmount = $specifiedAmount; - } - /** - * @return Google_Service_CloudBillingBudget_GoogleTypeMoney - */ - public function getSpecifiedAmount() - { - return $this->specifiedAmount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBillingBudget/GoogleCloudBillingBudgetsV1beta1CreateBudgetRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBillingBudget/GoogleCloudBillingBudgetsV1beta1CreateBudgetRequest.php deleted file mode 100644 index 33f60e39..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBillingBudget/GoogleCloudBillingBudgetsV1beta1CreateBudgetRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -budget = $budget; - } - /** - * @return Google_Service_CloudBillingBudget_GoogleCloudBillingBudgetsV1beta1Budget - */ - public function getBudget() - { - return $this->budget; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBillingBudget/GoogleCloudBillingBudgetsV1beta1Filter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBillingBudget/GoogleCloudBillingBudgetsV1beta1Filter.php deleted file mode 100644 index b76f9fd0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBillingBudget/GoogleCloudBillingBudgetsV1beta1Filter.php +++ /dev/null @@ -1,49 +0,0 @@ -creditTypesTreatment = $creditTypesTreatment; - } - public function getCreditTypesTreatment() - { - return $this->creditTypesTreatment; - } - public function setProjects($projects) - { - $this->projects = $projects; - } - public function getProjects() - { - return $this->projects; - } - public function setServices($services) - { - $this->services = $services; - } - public function getServices() - { - return $this->services; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBillingBudget/GoogleCloudBillingBudgetsV1beta1LastPeriodAmount.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBillingBudget/GoogleCloudBillingBudgetsV1beta1LastPeriodAmount.php deleted file mode 100644 index 492168c2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBillingBudget/GoogleCloudBillingBudgetsV1beta1LastPeriodAmount.php +++ /dev/null @@ -1,20 +0,0 @@ -budgets = $budgets; - } - /** - * @return Google_Service_CloudBillingBudget_GoogleCloudBillingBudgetsV1beta1Budget - */ - public function getBudgets() - { - return $this->budgets; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBillingBudget/GoogleCloudBillingBudgetsV1beta1ThresholdRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBillingBudget/GoogleCloudBillingBudgetsV1beta1ThresholdRule.php deleted file mode 100644 index da7f3244..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBillingBudget/GoogleCloudBillingBudgetsV1beta1ThresholdRule.php +++ /dev/null @@ -1,39 +0,0 @@ -spendBasis = $spendBasis; - } - public function getSpendBasis() - { - return $this->spendBasis; - } - public function setThresholdPercent($thresholdPercent) - { - $this->thresholdPercent = $thresholdPercent; - } - public function getThresholdPercent() - { - return $this->thresholdPercent; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBillingBudget/GoogleCloudBillingBudgetsV1beta1UpdateBudgetRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBillingBudget/GoogleCloudBillingBudgetsV1beta1UpdateBudgetRequest.php deleted file mode 100644 index 4606b490..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBillingBudget/GoogleCloudBillingBudgetsV1beta1UpdateBudgetRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -budget = $budget; - } - /** - * @return Google_Service_CloudBillingBudget_GoogleCloudBillingBudgetsV1beta1Budget - */ - public function getBudget() - { - return $this->budget; - } - public function setUpdateMask($updateMask) - { - $this->updateMask = $updateMask; - } - public function getUpdateMask() - { - return $this->updateMask; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBillingBudget/GoogleProtobufEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBillingBudget/GoogleProtobufEmpty.php deleted file mode 100644 index cd41391c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBillingBudget/GoogleProtobufEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -currencyCode = $currencyCode; - } - public function getCurrencyCode() - { - return $this->currencyCode; - } - public function setNanos($nanos) - { - $this->nanos = $nanos; - } - public function getNanos() - { - return $this->nanos; - } - public function setUnits($units) - { - $this->units = $units; - } - public function getUnits() - { - return $this->units; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBillingBudget/Resource/BillingAccounts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBillingBudget/Resource/BillingAccounts.php deleted file mode 100644 index 5e1d3680..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBillingBudget/Resource/BillingAccounts.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $billingbudgetsService = new Google_Service_CloudBillingBudget(...); - * $billingAccounts = $billingbudgetsService->billingAccounts; - * - */ -class Google_Service_CloudBillingBudget_Resource_BillingAccounts extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBillingBudget/Resource/BillingAccountsBudgets.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBillingBudget/Resource/BillingAccountsBudgets.php deleted file mode 100644 index 7d6eec00..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBillingBudget/Resource/BillingAccountsBudgets.php +++ /dev/null @@ -1,109 +0,0 @@ - - * $billingbudgetsService = new Google_Service_CloudBillingBudget(...); - * $budgets = $billingbudgetsService->budgets; - * - */ -class Google_Service_CloudBillingBudget_Resource_BillingAccountsBudgets extends Google_Service_Resource -{ - /** - * Creates a new budget. See Quotas and limits for more information on the - * limits of the number of budgets you can create. (budgets.create) - * - * @param string $parent Required. The name of the billing account to create the - * budget in. Values are of the form `billingAccounts/{billingAccountId}`. - * @param Google_Service_CloudBillingBudget_GoogleCloudBillingBudgetsV1beta1CreateBudgetRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudBillingBudget_GoogleCloudBillingBudgetsV1beta1Budget - */ - public function create($parent, Google_Service_CloudBillingBudget_GoogleCloudBillingBudgetsV1beta1CreateBudgetRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_CloudBillingBudget_GoogleCloudBillingBudgetsV1beta1Budget"); - } - /** - * Deletes a budget. Returns successfully if already deleted. (budgets.delete) - * - * @param string $name Required. Name of the budget to delete. Values are of the - * form `billingAccounts/{billingAccountId}/budgets/{budgetId}`. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudBillingBudget_GoogleProtobufEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudBillingBudget_GoogleProtobufEmpty"); - } - /** - * Returns a budget. (budgets.get) - * - * @param string $name Required. Name of budget to get. Values are of the form - * `billingAccounts/{billingAccountId}/budgets/{budgetId}`. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudBillingBudget_GoogleCloudBillingBudgetsV1beta1Budget - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudBillingBudget_GoogleCloudBillingBudgetsV1beta1Budget"); - } - /** - * Returns a list of budgets for a billing account. - * (budgets.listBillingAccountsBudgets) - * - * @param string $parent Required. Name of billing account to list budgets - * under. Values are of the form `billingAccounts/{billingAccountId}`. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Optional. The value returned by the last - * `ListBudgetsResponse` which indicates that this is a continuation of a prior - * `ListBudgets` call, and that the system should return the next page of data. - * @opt_param int pageSize Optional. The maximum number of budgets to return per - * page. The default and maximum value are 100. - * @return Google_Service_CloudBillingBudget_GoogleCloudBillingBudgetsV1beta1ListBudgetsResponse - */ - public function listBillingAccountsBudgets($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudBillingBudget_GoogleCloudBillingBudgetsV1beta1ListBudgetsResponse"); - } - /** - * Updates a budget and returns the updated budget. (budgets.patch) - * - * @param string $name Output only. Resource name of the budget. The resource - * name implies the scope of a budget. Values are of the form - * `billingAccounts/{billingAccountId}/budgets/{budgetId}`. - * @param Google_Service_CloudBillingBudget_GoogleCloudBillingBudgetsV1beta1UpdateBudgetRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudBillingBudget_GoogleCloudBillingBudgetsV1beta1Budget - */ - public function patch($name, Google_Service_CloudBillingBudget_GoogleCloudBillingBudgetsV1beta1UpdateBudgetRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_CloudBillingBudget_GoogleCloudBillingBudgetsV1beta1Budget"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild.php deleted file mode 100644 index b0219ca4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild.php +++ /dev/null @@ -1,294 +0,0 @@ - - * Creates and manages builds on Google Cloud Platform.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_CloudBuild extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - - public $operations; - public $projects_builds; - public $projects_triggers; - - /** - * Constructs the internal representation of the CloudBuild service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://cloudbuild.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'cloudbuild'; - - $this->operations = new Google_Service_CloudBuild_Resource_Operations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'cancel' => array( - 'path' => 'v1/{+name}:cancel', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->projects_builds = new Google_Service_CloudBuild_Resource_ProjectsBuilds( - $this, - $this->serviceName, - 'builds', - array( - 'methods' => array( - 'cancel' => array( - 'path' => 'v1/projects/{projectId}/builds/{id}:cancel', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'create' => array( - 'path' => 'v1/projects/{projectId}/builds', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/projects/{projectId}/builds/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/projects/{projectId}/builds', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'retry' => array( - 'path' => 'v1/projects/{projectId}/builds/{id}:retry', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_triggers = new Google_Service_CloudBuild_Resource_ProjectsTriggers( - $this, - $this->serviceName, - 'triggers', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/projects/{projectId}/triggers', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/projects/{projectId}/triggers/{triggerId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'triggerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/projects/{projectId}/triggers/{triggerId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'triggerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/projects/{projectId}/triggers', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v1/projects/{projectId}/triggers/{triggerId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'triggerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'run' => array( - 'path' => 'v1/projects/{projectId}/triggers/{triggerId}:run', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'triggerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/ArtifactObjects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/ArtifactObjects.php deleted file mode 100644 index f3aedc78..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/ArtifactObjects.php +++ /dev/null @@ -1,56 +0,0 @@ -location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setPaths($paths) - { - $this->paths = $paths; - } - public function getPaths() - { - return $this->paths; - } - /** - * @param Google_Service_CloudBuild_TimeSpan - */ - public function setTiming(Google_Service_CloudBuild_TimeSpan $timing) - { - $this->timing = $timing; - } - /** - * @return Google_Service_CloudBuild_TimeSpan - */ - public function getTiming() - { - return $this->timing; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/ArtifactResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/ArtifactResult.php deleted file mode 100644 index bcc83ea1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/ArtifactResult.php +++ /dev/null @@ -1,47 +0,0 @@ -fileHash = $fileHash; - } - /** - * @return Google_Service_CloudBuild_FileHashes - */ - public function getFileHash() - { - return $this->fileHash; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/Artifacts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/Artifacts.php deleted file mode 100644 index 7c83c099..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/Artifacts.php +++ /dev/null @@ -1,47 +0,0 @@ -images = $images; - } - public function getImages() - { - return $this->images; - } - /** - * @param Google_Service_CloudBuild_ArtifactObjects - */ - public function setObjects(Google_Service_CloudBuild_ArtifactObjects $objects) - { - $this->objects = $objects; - } - /** - * @return Google_Service_CloudBuild_ArtifactObjects - */ - public function getObjects() - { - return $this->objects; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/Build.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/Build.php deleted file mode 100644 index 3b55ab69..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/Build.php +++ /dev/null @@ -1,276 +0,0 @@ -artifacts = $artifacts; - } - /** - * @return Google_Service_CloudBuild_Artifacts - */ - public function getArtifacts() - { - return $this->artifacts; - } - public function setBuildTriggerId($buildTriggerId) - { - $this->buildTriggerId = $buildTriggerId; - } - public function getBuildTriggerId() - { - return $this->buildTriggerId; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setFinishTime($finishTime) - { - $this->finishTime = $finishTime; - } - public function getFinishTime() - { - return $this->finishTime; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setImages($images) - { - $this->images = $images; - } - public function getImages() - { - return $this->images; - } - public function setLogUrl($logUrl) - { - $this->logUrl = $logUrl; - } - public function getLogUrl() - { - return $this->logUrl; - } - public function setLogsBucket($logsBucket) - { - $this->logsBucket = $logsBucket; - } - public function getLogsBucket() - { - return $this->logsBucket; - } - /** - * @param Google_Service_CloudBuild_BuildOptions - */ - public function setOptions(Google_Service_CloudBuild_BuildOptions $options) - { - $this->options = $options; - } - /** - * @return Google_Service_CloudBuild_BuildOptions - */ - public function getOptions() - { - return $this->options; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } - /** - * @param Google_Service_CloudBuild_Results - */ - public function setResults(Google_Service_CloudBuild_Results $results) - { - $this->results = $results; - } - /** - * @return Google_Service_CloudBuild_Results - */ - public function getResults() - { - return $this->results; - } - /** - * @param Google_Service_CloudBuild_Secret - */ - public function setSecrets($secrets) - { - $this->secrets = $secrets; - } - /** - * @return Google_Service_CloudBuild_Secret - */ - public function getSecrets() - { - return $this->secrets; - } - /** - * @param Google_Service_CloudBuild_Source - */ - public function setSource(Google_Service_CloudBuild_Source $source) - { - $this->source = $source; - } - /** - * @return Google_Service_CloudBuild_Source - */ - public function getSource() - { - return $this->source; - } - /** - * @param Google_Service_CloudBuild_SourceProvenance - */ - public function setSourceProvenance(Google_Service_CloudBuild_SourceProvenance $sourceProvenance) - { - $this->sourceProvenance = $sourceProvenance; - } - /** - * @return Google_Service_CloudBuild_SourceProvenance - */ - public function getSourceProvenance() - { - return $this->sourceProvenance; - } - 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 setStatusDetail($statusDetail) - { - $this->statusDetail = $statusDetail; - } - public function getStatusDetail() - { - return $this->statusDetail; - } - /** - * @param Google_Service_CloudBuild_BuildStep - */ - public function setSteps($steps) - { - $this->steps = $steps; - } - /** - * @return Google_Service_CloudBuild_BuildStep - */ - public function getSteps() - { - return $this->steps; - } - public function setSubstitutions($substitutions) - { - $this->substitutions = $substitutions; - } - public function getSubstitutions() - { - return $this->substitutions; - } - public function setTags($tags) - { - $this->tags = $tags; - } - public function getTags() - { - return $this->tags; - } - public function setTimeout($timeout) - { - $this->timeout = $timeout; - } - public function getTimeout() - { - return $this->timeout; - } - /** - * @param Google_Service_CloudBuild_TimeSpan - */ - public function setTiming($timing) - { - $this->timing = $timing; - } - /** - * @return Google_Service_CloudBuild_TimeSpan - */ - public function getTiming() - { - return $this->timing; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/BuildOperationMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/BuildOperationMetadata.php deleted file mode 100644 index 1dfd7853..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/BuildOperationMetadata.php +++ /dev/null @@ -1,37 +0,0 @@ -build = $build; - } - /** - * @return Google_Service_CloudBuild_Build - */ - public function getBuild() - { - return $this->build; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/BuildOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/BuildOptions.php deleted file mode 100644 index bdda98c1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/BuildOptions.php +++ /dev/null @@ -1,128 +0,0 @@ -diskSizeGb = $diskSizeGb; - } - public function getDiskSizeGb() - { - return $this->diskSizeGb; - } - public function setEnv($env) - { - $this->env = $env; - } - public function getEnv() - { - return $this->env; - } - public function setLogStreamingOption($logStreamingOption) - { - $this->logStreamingOption = $logStreamingOption; - } - public function getLogStreamingOption() - { - return $this->logStreamingOption; - } - public function setLogging($logging) - { - $this->logging = $logging; - } - public function getLogging() - { - return $this->logging; - } - public function setMachineType($machineType) - { - $this->machineType = $machineType; - } - public function getMachineType() - { - return $this->machineType; - } - public function setRequestedVerifyOption($requestedVerifyOption) - { - $this->requestedVerifyOption = $requestedVerifyOption; - } - public function getRequestedVerifyOption() - { - return $this->requestedVerifyOption; - } - public function setSecretEnv($secretEnv) - { - $this->secretEnv = $secretEnv; - } - public function getSecretEnv() - { - return $this->secretEnv; - } - public function setSourceProvenanceHash($sourceProvenanceHash) - { - $this->sourceProvenanceHash = $sourceProvenanceHash; - } - public function getSourceProvenanceHash() - { - return $this->sourceProvenanceHash; - } - public function setSubstitutionOption($substitutionOption) - { - $this->substitutionOption = $substitutionOption; - } - public function getSubstitutionOption() - { - return $this->substitutionOption; - } - /** - * @param Google_Service_CloudBuild_Volume - */ - public function setVolumes($volumes) - { - $this->volumes = $volumes; - } - /** - * @return Google_Service_CloudBuild_Volume - */ - public function getVolumes() - { - return $this->volumes; - } - public function setWorkerPool($workerPool) - { - $this->workerPool = $workerPool; - } - public function getWorkerPool() - { - return $this->workerPool; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/BuildStep.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/BuildStep.php deleted file mode 100644 index c298ea49..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/BuildStep.php +++ /dev/null @@ -1,160 +0,0 @@ -args = $args; - } - public function getArgs() - { - return $this->args; - } - public function setDir($dir) - { - $this->dir = $dir; - } - public function getDir() - { - return $this->dir; - } - public function setEntrypoint($entrypoint) - { - $this->entrypoint = $entrypoint; - } - public function getEntrypoint() - { - return $this->entrypoint; - } - public function setEnv($env) - { - $this->env = $env; - } - public function getEnv() - { - return $this->env; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_CloudBuild_TimeSpan - */ - public function setPullTiming(Google_Service_CloudBuild_TimeSpan $pullTiming) - { - $this->pullTiming = $pullTiming; - } - /** - * @return Google_Service_CloudBuild_TimeSpan - */ - public function getPullTiming() - { - return $this->pullTiming; - } - public function setSecretEnv($secretEnv) - { - $this->secretEnv = $secretEnv; - } - public function getSecretEnv() - { - return $this->secretEnv; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setTimeout($timeout) - { - $this->timeout = $timeout; - } - public function getTimeout() - { - return $this->timeout; - } - /** - * @param Google_Service_CloudBuild_TimeSpan - */ - public function setTiming(Google_Service_CloudBuild_TimeSpan $timing) - { - $this->timing = $timing; - } - /** - * @return Google_Service_CloudBuild_TimeSpan - */ - public function getTiming() - { - return $this->timing; - } - /** - * @param Google_Service_CloudBuild_Volume - */ - public function setVolumes($volumes) - { - $this->volumes = $volumes; - } - /** - * @return Google_Service_CloudBuild_Volume - */ - public function getVolumes() - { - return $this->volumes; - } - public function setWaitFor($waitFor) - { - $this->waitFor = $waitFor; - } - public function getWaitFor() - { - return $this->waitFor; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/BuildTrigger.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/BuildTrigger.php deleted file mode 100644 index 4f0f3324..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/BuildTrigger.php +++ /dev/null @@ -1,160 +0,0 @@ -build = $build; - } - /** - * @return Google_Service_CloudBuild_Build - */ - public function getBuild() - { - return $this->build; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisabled($disabled) - { - $this->disabled = $disabled; - } - public function getDisabled() - { - return $this->disabled; - } - public function setFilename($filename) - { - $this->filename = $filename; - } - public function getFilename() - { - return $this->filename; - } - /** - * @param Google_Service_CloudBuild_GitHubEventsConfig - */ - public function setGithub(Google_Service_CloudBuild_GitHubEventsConfig $github) - { - $this->github = $github; - } - /** - * @return Google_Service_CloudBuild_GitHubEventsConfig - */ - public function getGithub() - { - return $this->github; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setIgnoredFiles($ignoredFiles) - { - $this->ignoredFiles = $ignoredFiles; - } - public function getIgnoredFiles() - { - return $this->ignoredFiles; - } - public function setIncludedFiles($includedFiles) - { - $this->includedFiles = $includedFiles; - } - public function getIncludedFiles() - { - return $this->includedFiles; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setSubstitutions($substitutions) - { - $this->substitutions = $substitutions; - } - public function getSubstitutions() - { - return $this->substitutions; - } - public function setTags($tags) - { - $this->tags = $tags; - } - public function getTags() - { - return $this->tags; - } - /** - * @param Google_Service_CloudBuild_RepoSource - */ - public function setTriggerTemplate(Google_Service_CloudBuild_RepoSource $triggerTemplate) - { - $this->triggerTemplate = $triggerTemplate; - } - /** - * @return Google_Service_CloudBuild_RepoSource - */ - public function getTriggerTemplate() - { - return $this->triggerTemplate; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/BuiltImage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/BuiltImage.php deleted file mode 100644 index 74fc8e3c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/BuiltImage.php +++ /dev/null @@ -1,55 +0,0 @@ -digest = $digest; - } - public function getDigest() - { - return $this->digest; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_CloudBuild_TimeSpan - */ - public function setPushTiming(Google_Service_CloudBuild_TimeSpan $pushTiming) - { - $this->pushTiming = $pushTiming; - } - /** - * @return Google_Service_CloudBuild_TimeSpan - */ - public function getPushTiming() - { - return $this->pushTiming; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/CancelBuildRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/CancelBuildRequest.php deleted file mode 100644 index 229f6835..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/CancelBuildRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -fileHash = $fileHash; - } - /** - * @return Google_Service_CloudBuild_Hash - */ - public function getFileHash() - { - return $this->fileHash; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/GitHubEventsConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/GitHubEventsConfig.php deleted file mode 100644 index d639c283..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/GitHubEventsConfig.php +++ /dev/null @@ -1,80 +0,0 @@ -installationId = $installationId; - } - public function getInstallationId() - { - return $this->installationId; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOwner($owner) - { - $this->owner = $owner; - } - public function getOwner() - { - return $this->owner; - } - /** - * @param Google_Service_CloudBuild_PullRequestFilter - */ - public function setPullRequest(Google_Service_CloudBuild_PullRequestFilter $pullRequest) - { - $this->pullRequest = $pullRequest; - } - /** - * @return Google_Service_CloudBuild_PullRequestFilter - */ - public function getPullRequest() - { - return $this->pullRequest; - } - /** - * @param Google_Service_CloudBuild_PushFilter - */ - public function setPush(Google_Service_CloudBuild_PushFilter $push) - { - $this->push = $push; - } - /** - * @return Google_Service_CloudBuild_PushFilter - */ - public function getPush() - { - return $this->push; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/Hash.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/Hash.php deleted file mode 100644 index 4436820a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/Hash.php +++ /dev/null @@ -1,39 +0,0 @@ -type = $type; - } - public function getType() - { - return $this->type; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/ListBuildTriggersResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/ListBuildTriggersResponse.php deleted file mode 100644 index 7db1f0ef..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/ListBuildTriggersResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_CloudBuild_BuildTrigger - */ - public function setTriggers($triggers) - { - $this->triggers = $triggers; - } - /** - * @return Google_Service_CloudBuild_BuildTrigger - */ - public function getTriggers() - { - return $this->triggers; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/ListBuildsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/ListBuildsResponse.php deleted file mode 100644 index ef137830..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/ListBuildsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -builds = $builds; - } - /** - * @return Google_Service_CloudBuild_Build - */ - public function getBuilds() - { - return $this->builds; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/ListOperationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/ListOperationsResponse.php deleted file mode 100644 index b26f8b6a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/ListOperationsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_CloudBuild_Operation - */ - public function setOperations($operations) - { - $this->operations = $operations; - } - /** - * @return Google_Service_CloudBuild_Operation - */ - public function getOperations() - { - return $this->operations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/Operation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/Operation.php deleted file mode 100644 index d0bf7559..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/Operation.php +++ /dev/null @@ -1,73 +0,0 @@ -done = $done; - } - public function getDone() - { - return $this->done; - } - /** - * @param Google_Service_CloudBuild_Status - */ - public function setError(Google_Service_CloudBuild_Status $error) - { - $this->error = $error; - } - /** - * @return Google_Service_CloudBuild_Status - */ - public function getError() - { - return $this->error; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/PullRequestFilter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/PullRequestFilter.php deleted file mode 100644 index 29d6cc3c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/PullRequestFilter.php +++ /dev/null @@ -1,39 +0,0 @@ -branch = $branch; - } - public function getBranch() - { - return $this->branch; - } - public function setCommentControl($commentControl) - { - $this->commentControl = $commentControl; - } - public function getCommentControl() - { - return $this->commentControl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/PushFilter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/PushFilter.php deleted file mode 100644 index 104b7df8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/PushFilter.php +++ /dev/null @@ -1,39 +0,0 @@ -branch = $branch; - } - public function getBranch() - { - return $this->branch; - } - public function setTag($tag) - { - $this->tag = $tag; - } - public function getTag() - { - return $this->tag; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/RepoSource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/RepoSource.php deleted file mode 100644 index 584b37c2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/RepoSource.php +++ /dev/null @@ -1,84 +0,0 @@ -branchName = $branchName; - } - public function getBranchName() - { - return $this->branchName; - } - public function setCommitSha($commitSha) - { - $this->commitSha = $commitSha; - } - public function getCommitSha() - { - return $this->commitSha; - } - public function setDir($dir) - { - $this->dir = $dir; - } - public function getDir() - { - return $this->dir; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } - public function setRepoName($repoName) - { - $this->repoName = $repoName; - } - public function getRepoName() - { - return $this->repoName; - } - public function setSubstitutions($substitutions) - { - $this->substitutions = $substitutions; - } - public function getSubstitutions() - { - return $this->substitutions; - } - public function setTagName($tagName) - { - $this->tagName = $tagName; - } - public function getTagName() - { - return $this->tagName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/Resource/Operations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/Resource/Operations.php deleted file mode 100644 index 9b6eb65b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/Resource/Operations.php +++ /dev/null @@ -1,91 +0,0 @@ - - * $cloudbuildService = new Google_Service_CloudBuild(...); - * $operations = $cloudbuildService->operations; - * - */ -class Google_Service_CloudBuild_Resource_Operations extends Google_Service_Resource -{ - /** - * Starts asynchronous cancellation on a long-running operation. The server - * makes a best effort to cancel the operation, but success is not guaranteed. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or - * other methods to check whether the cancellation succeeded or whether the - * operation completed despite cancellation. On successful cancellation, the - * operation is not deleted; instead, it becomes an operation with an - * Operation.error value with a google.rpc.Status.code of 1, corresponding to - * `Code.CANCELLED`. (operations.cancel) - * - * @param string $name The name of the operation resource to be cancelled. - * @param Google_Service_CloudBuild_CancelOperationRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudBuild_CloudbuildEmpty - */ - public function cancel($name, Google_Service_CloudBuild_CancelOperationRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('cancel', array($params), "Google_Service_CloudBuild_CloudbuildEmpty"); - } - /** - * Gets the latest state of a long-running operation. Clients can use this - * method to poll the operation result at intervals as recommended by the API - * service. (operations.get) - * - * @param string $name The name of the operation resource. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudBuild_Operation - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudBuild_Operation"); - } - /** - * Lists operations that match the specified filter in the request. If the - * server doesn't support this method, it returns `UNIMPLEMENTED`. - * - * NOTE: the `name` binding allows API services to override the binding to use - * different resource name schemes, such as `users/operations`. To override the - * binding, API services can add a binding such as - * `"/v1/{name=users}/operations"` to their service configuration. For backwards - * compatibility, the default name includes the operations collection id, - * however overriding users must ensure the name binding is the parent resource, - * without the operations collection id. (operations.listOperations) - * - * @param string $name The name of the operation's parent resource. - * @param array $optParams Optional parameters. - * - * @opt_param string filter The standard list filter. - * @opt_param string pageToken The standard list page token. - * @opt_param int pageSize The standard list page size. - * @return Google_Service_CloudBuild_ListOperationsResponse - */ - public function listOperations($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudBuild_ListOperationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/Resource/Projects.php deleted file mode 100644 index b7a46c34..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/Resource/Projects.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $cloudbuildService = new Google_Service_CloudBuild(...); - * $projects = $cloudbuildService->projects; - * - */ -class Google_Service_CloudBuild_Resource_Projects extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/Resource/ProjectsBuilds.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/Resource/ProjectsBuilds.php deleted file mode 100644 index 6c343c40..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/Resource/ProjectsBuilds.php +++ /dev/null @@ -1,139 +0,0 @@ - - * $cloudbuildService = new Google_Service_CloudBuild(...); - * $builds = $cloudbuildService->builds; - * - */ -class Google_Service_CloudBuild_Resource_ProjectsBuilds extends Google_Service_Resource -{ - /** - * Cancels a build in progress. (builds.cancel) - * - * @param string $projectId Required. ID of the project. - * @param string $id Required. ID of the build. - * @param Google_Service_CloudBuild_CancelBuildRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudBuild_Build - */ - public function cancel($projectId, $id, Google_Service_CloudBuild_CancelBuildRequest $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'id' => $id, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('cancel', array($params), "Google_Service_CloudBuild_Build"); - } - /** - * Starts a build with the specified configuration. - * - * This method returns a long-running `Operation`, which includes the build ID. - * Pass the build ID to `GetBuild` to determine the build status (such as - * `SUCCESS` or `FAILURE`). (builds.create) - * - * @param string $projectId Required. ID of the project. - * @param Google_Service_CloudBuild_Build $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudBuild_Operation - */ - public function create($projectId, Google_Service_CloudBuild_Build $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_CloudBuild_Operation"); - } - /** - * Returns information about a previously requested build. - * - * The `Build` that is returned includes its status (such as `SUCCESS`, - * `FAILURE`, or `WORKING`), and timing information. (builds.get) - * - * @param string $projectId Required. ID of the project. - * @param string $id Required. ID of the build. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudBuild_Build - */ - public function get($projectId, $id, $optParams = array()) - { - $params = array('projectId' => $projectId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudBuild_Build"); - } - /** - * Lists previously requested builds. - * - * Previously requested builds may still be in-progress, or may have finished - * successfully or unsuccessfully. (builds.listProjectsBuilds) - * - * @param string $projectId Required. ID of the project. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Token to provide to skip to a particular spot in - * the list. - * @opt_param int pageSize Number of results to return in the list. - * @opt_param string filter The raw filter text to constrain the results. - * @return Google_Service_CloudBuild_ListBuildsResponse - */ - public function listProjectsBuilds($projectId, $optParams = array()) - { - $params = array('projectId' => $projectId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudBuild_ListBuildsResponse"); - } - /** - * Creates a new build based on the specified build. - * - * This method creates a new build using the original build request, which may - * or may not result in an identical build. - * - * For triggered builds: - * - * * Triggered builds resolve to a precise revision; therefore a retry of a - * triggered build will result in a build that uses the same revision. - * - * For non-triggered builds that specify `RepoSource`: - * - * * If the original build built from the tip of a branch, the retried build - * will build from the tip of that branch, which may not be the same revision as - * the original build. * If the original build specified a commit sha or - * revision ID, the retried build will use the identical source. - * - * For builds that specify `StorageSource`: - * - * * If the original build pulled source from Google Cloud Storage without - * specifying the generation of the object, the new build will use the current - * object, which may be different from the original build source. * If the - * original build pulled source from Cloud Storage and specified the generation - * of the object, the new build will attempt to use the same object, which may - * or may not be available depending on the bucket's lifecycle management - * settings. (builds.retry) - * - * @param string $projectId Required. ID of the project. - * @param string $id Required. Build ID of the original build. - * @param Google_Service_CloudBuild_RetryBuildRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudBuild_Operation - */ - public function retry($projectId, $id, Google_Service_CloudBuild_RetryBuildRequest $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'id' => $id, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('retry', array($params), "Google_Service_CloudBuild_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/Resource/ProjectsTriggers.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/Resource/ProjectsTriggers.php deleted file mode 100644 index 34490cdc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/Resource/ProjectsTriggers.php +++ /dev/null @@ -1,130 +0,0 @@ - - * $cloudbuildService = new Google_Service_CloudBuild(...); - * $triggers = $cloudbuildService->triggers; - * - */ -class Google_Service_CloudBuild_Resource_ProjectsTriggers extends Google_Service_Resource -{ - /** - * Creates a new `BuildTrigger`. - * - * This API is experimental. (triggers.create) - * - * @param string $projectId Required. ID of the project for which to configure - * automatic builds. - * @param Google_Service_CloudBuild_BuildTrigger $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudBuild_BuildTrigger - */ - public function create($projectId, Google_Service_CloudBuild_BuildTrigger $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_CloudBuild_BuildTrigger"); - } - /** - * Deletes a `BuildTrigger` by its project ID and trigger ID. - * - * This API is experimental. (triggers.delete) - * - * @param string $projectId Required. ID of the project that owns the trigger. - * @param string $triggerId Required. ID of the `BuildTrigger` to delete. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudBuild_CloudbuildEmpty - */ - public function delete($projectId, $triggerId, $optParams = array()) - { - $params = array('projectId' => $projectId, 'triggerId' => $triggerId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudBuild_CloudbuildEmpty"); - } - /** - * Returns information about a `BuildTrigger`. - * - * This API is experimental. (triggers.get) - * - * @param string $projectId Required. ID of the project that owns the trigger. - * @param string $triggerId Required. Identifier (`id` or `name`) of the - * `BuildTrigger` to get. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudBuild_BuildTrigger - */ - public function get($projectId, $triggerId, $optParams = array()) - { - $params = array('projectId' => $projectId, 'triggerId' => $triggerId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudBuild_BuildTrigger"); - } - /** - * Lists existing `BuildTrigger`s. - * - * This API is experimental. (triggers.listProjectsTriggers) - * - * @param string $projectId Required. ID of the project for which to list - * BuildTriggers. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Token to provide to skip to a particular spot in - * the list. - * @opt_param int pageSize Number of results to return in the list. - * @return Google_Service_CloudBuild_ListBuildTriggersResponse - */ - public function listProjectsTriggers($projectId, $optParams = array()) - { - $params = array('projectId' => $projectId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudBuild_ListBuildTriggersResponse"); - } - /** - * Updates a `BuildTrigger` by its project ID and trigger ID. - * - * This API is experimental. (triggers.patch) - * - * @param string $projectId Required. ID of the project that owns the trigger. - * @param string $triggerId Required. ID of the `BuildTrigger` to update. - * @param Google_Service_CloudBuild_BuildTrigger $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudBuild_BuildTrigger - */ - public function patch($projectId, $triggerId, Google_Service_CloudBuild_BuildTrigger $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'triggerId' => $triggerId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_CloudBuild_BuildTrigger"); - } - /** - * Runs a `BuildTrigger` at a particular source revision. (triggers.run) - * - * @param string $projectId Required. ID of the project. - * @param string $triggerId Required. ID of the trigger. - * @param Google_Service_CloudBuild_RepoSource $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudBuild_Operation - */ - public function run($projectId, $triggerId, Google_Service_CloudBuild_RepoSource $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'triggerId' => $triggerId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('run', array($params), "Google_Service_CloudBuild_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/Results.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/Results.php deleted file mode 100644 index c51cb398..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/Results.php +++ /dev/null @@ -1,90 +0,0 @@ -artifactManifest = $artifactManifest; - } - public function getArtifactManifest() - { - return $this->artifactManifest; - } - /** - * @param Google_Service_CloudBuild_TimeSpan - */ - public function setArtifactTiming(Google_Service_CloudBuild_TimeSpan $artifactTiming) - { - $this->artifactTiming = $artifactTiming; - } - /** - * @return Google_Service_CloudBuild_TimeSpan - */ - public function getArtifactTiming() - { - return $this->artifactTiming; - } - public function setBuildStepImages($buildStepImages) - { - $this->buildStepImages = $buildStepImages; - } - public function getBuildStepImages() - { - return $this->buildStepImages; - } - public function setBuildStepOutputs($buildStepOutputs) - { - $this->buildStepOutputs = $buildStepOutputs; - } - public function getBuildStepOutputs() - { - return $this->buildStepOutputs; - } - /** - * @param Google_Service_CloudBuild_BuiltImage - */ - public function setImages($images) - { - $this->images = $images; - } - /** - * @return Google_Service_CloudBuild_BuiltImage - */ - public function getImages() - { - return $this->images; - } - public function setNumArtifacts($numArtifacts) - { - $this->numArtifacts = $numArtifacts; - } - public function getNumArtifacts() - { - return $this->numArtifacts; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/RetryBuildRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/RetryBuildRequest.php deleted file mode 100644 index fa56fc26..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/RetryBuildRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -kmsKeyName = $kmsKeyName; - } - public function getKmsKeyName() - { - return $this->kmsKeyName; - } - public function setSecretEnv($secretEnv) - { - $this->secretEnv = $secretEnv; - } - public function getSecretEnv() - { - return $this->secretEnv; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/Source.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/Source.php deleted file mode 100644 index df51530e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/Source.php +++ /dev/null @@ -1,53 +0,0 @@ -repoSource = $repoSource; - } - /** - * @return Google_Service_CloudBuild_RepoSource - */ - public function getRepoSource() - { - return $this->repoSource; - } - /** - * @param Google_Service_CloudBuild_StorageSource - */ - public function setStorageSource(Google_Service_CloudBuild_StorageSource $storageSource) - { - $this->storageSource = $storageSource; - } - /** - * @return Google_Service_CloudBuild_StorageSource - */ - public function getStorageSource() - { - return $this->storageSource; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/SourceProvenance.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/SourceProvenance.php deleted file mode 100644 index d078eace..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/SourceProvenance.php +++ /dev/null @@ -1,69 +0,0 @@ -fileHashes = $fileHashes; - } - /** - * @return Google_Service_CloudBuild_FileHashes - */ - public function getFileHashes() - { - return $this->fileHashes; - } - /** - * @param Google_Service_CloudBuild_RepoSource - */ - public function setResolvedRepoSource(Google_Service_CloudBuild_RepoSource $resolvedRepoSource) - { - $this->resolvedRepoSource = $resolvedRepoSource; - } - /** - * @return Google_Service_CloudBuild_RepoSource - */ - public function getResolvedRepoSource() - { - return $this->resolvedRepoSource; - } - /** - * @param Google_Service_CloudBuild_StorageSource - */ - public function setResolvedStorageSource(Google_Service_CloudBuild_StorageSource $resolvedStorageSource) - { - $this->resolvedStorageSource = $resolvedStorageSource; - } - /** - * @return Google_Service_CloudBuild_StorageSource - */ - public function getResolvedStorageSource() - { - return $this->resolvedStorageSource; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/Status.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/Status.php deleted file mode 100644 index f8589c0f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/Status.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/StorageSource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/StorageSource.php deleted file mode 100644 index 2303afba..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/StorageSource.php +++ /dev/null @@ -1,48 +0,0 @@ -bucket = $bucket; - } - public function getBucket() - { - return $this->bucket; - } - public function setGeneration($generation) - { - $this->generation = $generation; - } - public function getGeneration() - { - return $this->generation; - } - public function setObject($object) - { - $this->object = $object; - } - public function getObject() - { - return $this->object; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/TimeSpan.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/TimeSpan.php deleted file mode 100644 index 2264bcf6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/TimeSpan.php +++ /dev/null @@ -1,39 +0,0 @@ -endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/Volume.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/Volume.php deleted file mode 100644 index 1686b408..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudBuild/Volume.php +++ /dev/null @@ -1,39 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setPath($path) - { - $this->path = $path; - } - public function getPath() - { - return $this->path; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudComposer.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudComposer.php deleted file mode 100644 index 8b2a0b80..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudComposer.php +++ /dev/null @@ -1,209 +0,0 @@ - - * Manages Apache Airflow environments on Google Cloud Platform.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_CloudComposer extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - - public $projects_locations_environments; - public $projects_locations_imageVersions; - public $projects_locations_operations; - - /** - * Constructs the internal representation of the CloudComposer service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://composer.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'composer'; - - $this->projects_locations_environments = new Google_Service_CloudComposer_Resource_ProjectsLocationsEnvironments( - $this, - $this->serviceName, - 'environments', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/environments', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/environments', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_locations_imageVersions = new Google_Service_CloudComposer_Resource_ProjectsLocationsImageVersions( - $this, - $this->serviceName, - 'imageVersions', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1/{+parent}/imageVersions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->projects_locations_operations = new Google_Service_CloudComposer_Resource_ProjectsLocationsOperations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+name}/operations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudComposer/ComposerEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudComposer/ComposerEmpty.php deleted file mode 100644 index 299caebc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudComposer/ComposerEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -config = $config; - } - /** - * @return Google_Service_CloudComposer_EnvironmentConfig - */ - public function getConfig() - { - return $this->config; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } - public function setUuid($uuid) - { - $this->uuid = $uuid; - } - public function getUuid() - { - return $this->uuid; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudComposer/EnvironmentConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudComposer/EnvironmentConfig.php deleted file mode 100644 index a3e9a3a7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudComposer/EnvironmentConfig.php +++ /dev/null @@ -1,89 +0,0 @@ -airflowUri = $airflowUri; - } - public function getAirflowUri() - { - return $this->airflowUri; - } - public function setDagGcsPrefix($dagGcsPrefix) - { - $this->dagGcsPrefix = $dagGcsPrefix; - } - public function getDagGcsPrefix() - { - return $this->dagGcsPrefix; - } - public function setGkeCluster($gkeCluster) - { - $this->gkeCluster = $gkeCluster; - } - public function getGkeCluster() - { - return $this->gkeCluster; - } - /** - * @param Google_Service_CloudComposer_NodeConfig - */ - public function setNodeConfig(Google_Service_CloudComposer_NodeConfig $nodeConfig) - { - $this->nodeConfig = $nodeConfig; - } - /** - * @return Google_Service_CloudComposer_NodeConfig - */ - public function getNodeConfig() - { - return $this->nodeConfig; - } - public function setNodeCount($nodeCount) - { - $this->nodeCount = $nodeCount; - } - public function getNodeCount() - { - return $this->nodeCount; - } - /** - * @param Google_Service_CloudComposer_SoftwareConfig - */ - public function setSoftwareConfig(Google_Service_CloudComposer_SoftwareConfig $softwareConfig) - { - $this->softwareConfig = $softwareConfig; - } - /** - * @return Google_Service_CloudComposer_SoftwareConfig - */ - public function getSoftwareConfig() - { - return $this->softwareConfig; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudComposer/ImageVersion.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudComposer/ImageVersion.php deleted file mode 100644 index ac7958da..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudComposer/ImageVersion.php +++ /dev/null @@ -1,49 +0,0 @@ -imageVersionId = $imageVersionId; - } - public function getImageVersionId() - { - return $this->imageVersionId; - } - public function setIsDefault($isDefault) - { - $this->isDefault = $isDefault; - } - public function getIsDefault() - { - return $this->isDefault; - } - public function setSupportedPythonVersions($supportedPythonVersions) - { - $this->supportedPythonVersions = $supportedPythonVersions; - } - public function getSupportedPythonVersions() - { - return $this->supportedPythonVersions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudComposer/ListEnvironmentsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudComposer/ListEnvironmentsResponse.php deleted file mode 100644 index d48c2edc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudComposer/ListEnvironmentsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -environments = $environments; - } - /** - * @return Google_Service_CloudComposer_Environment - */ - public function getEnvironments() - { - return $this->environments; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudComposer/ListImageVersionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudComposer/ListImageVersionsResponse.php deleted file mode 100644 index a35b64ef..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudComposer/ListImageVersionsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -imageVersions = $imageVersions; - } - /** - * @return Google_Service_CloudComposer_ImageVersion - */ - public function getImageVersions() - { - return $this->imageVersions; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudComposer/ListOperationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudComposer/ListOperationsResponse.php deleted file mode 100644 index f9057d0a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudComposer/ListOperationsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_CloudComposer_Operation - */ - public function setOperations($operations) - { - $this->operations = $operations; - } - /** - * @return Google_Service_CloudComposer_Operation - */ - public function getOperations() - { - return $this->operations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudComposer/NodeConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudComposer/NodeConfig.php deleted file mode 100644 index 33cfd2d0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudComposer/NodeConfig.php +++ /dev/null @@ -1,94 +0,0 @@ -diskSizeGb = $diskSizeGb; - } - public function getDiskSizeGb() - { - return $this->diskSizeGb; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setMachineType($machineType) - { - $this->machineType = $machineType; - } - public function getMachineType() - { - return $this->machineType; - } - public function setNetwork($network) - { - $this->network = $network; - } - public function getNetwork() - { - return $this->network; - } - public function setOauthScopes($oauthScopes) - { - $this->oauthScopes = $oauthScopes; - } - public function getOauthScopes() - { - return $this->oauthScopes; - } - public function setServiceAccount($serviceAccount) - { - $this->serviceAccount = $serviceAccount; - } - public function getServiceAccount() - { - return $this->serviceAccount; - } - public function setSubnetwork($subnetwork) - { - $this->subnetwork = $subnetwork; - } - public function getSubnetwork() - { - return $this->subnetwork; - } - public function setTags($tags) - { - $this->tags = $tags; - } - public function getTags() - { - return $this->tags; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudComposer/Operation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudComposer/Operation.php deleted file mode 100644 index 2f775a62..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudComposer/Operation.php +++ /dev/null @@ -1,73 +0,0 @@ -done = $done; - } - public function getDone() - { - return $this->done; - } - /** - * @param Google_Service_CloudComposer_Status - */ - public function setError(Google_Service_CloudComposer_Status $error) - { - $this->error = $error; - } - /** - * @return Google_Service_CloudComposer_Status - */ - public function getError() - { - return $this->error; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudComposer/OperationMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudComposer/OperationMetadata.php deleted file mode 100644 index 383debb6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudComposer/OperationMetadata.php +++ /dev/null @@ -1,75 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setOperationType($operationType) - { - $this->operationType = $operationType; - } - public function getOperationType() - { - return $this->operationType; - } - public function setResource($resource) - { - $this->resource = $resource; - } - public function getResource() - { - return $this->resource; - } - public function setResourceUuid($resourceUuid) - { - $this->resourceUuid = $resourceUuid; - } - public function getResourceUuid() - { - return $this->resourceUuid; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudComposer/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudComposer/Resource/Projects.php deleted file mode 100644 index 69f8f628..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudComposer/Resource/Projects.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $composerService = new Google_Service_CloudComposer(...); - * $projects = $composerService->projects; - * - */ -class Google_Service_CloudComposer_Resource_Projects extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudComposer/Resource/ProjectsLocations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudComposer/Resource/ProjectsLocations.php deleted file mode 100644 index 5175663f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudComposer/Resource/ProjectsLocations.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $composerService = new Google_Service_CloudComposer(...); - * $locations = $composerService->locations; - * - */ -class Google_Service_CloudComposer_Resource_ProjectsLocations extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudComposer/Resource/ProjectsLocationsEnvironments.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudComposer/Resource/ProjectsLocationsEnvironments.php deleted file mode 100644 index 5afc2a1c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudComposer/Resource/ProjectsLocationsEnvironments.php +++ /dev/null @@ -1,180 +0,0 @@ - - * $composerService = new Google_Service_CloudComposer(...); - * $environments = $composerService->environments; - * - */ -class Google_Service_CloudComposer_Resource_ProjectsLocationsEnvironments extends Google_Service_Resource -{ - /** - * Create a new environment. (environments.create) - * - * @param string $parent The parent must be of the form - * "projects/{projectId}/locations/{locationId}". - * @param Google_Service_CloudComposer_Environment $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudComposer_Operation - */ - public function create($parent, Google_Service_CloudComposer_Environment $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_CloudComposer_Operation"); - } - /** - * Delete an environment. (environments.delete) - * - * @param string $name The environment to delete, in the form: - * "projects/{projectId}/locations/{locationId}/environments/{environmentId}" - * @param array $optParams Optional parameters. - * @return Google_Service_CloudComposer_Operation - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudComposer_Operation"); - } - /** - * Get an existing environment. (environments.get) - * - * @param string $name The resource name of the environment to get, in the form: - * "projects/{projectId}/locations/{locationId}/environments/{environmentId}" - * @param array $optParams Optional parameters. - * @return Google_Service_CloudComposer_Environment - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudComposer_Environment"); - } - /** - * List environments. (environments.listProjectsLocationsEnvironments) - * - * @param string $parent List environments in the given project and location, in - * the form: "projects/{projectId}/locations/{locationId}" - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The next_page_token value returned from a - * previous List request, if any. - * @opt_param int pageSize The maximum number of environments to return. - * @return Google_Service_CloudComposer_ListEnvironmentsResponse - */ - public function listProjectsLocationsEnvironments($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudComposer_ListEnvironmentsResponse"); - } - /** - * Update an environment. (environments.patch) - * - * @param string $name The relative resource name of the environment to update, - * in the form: - * "projects/{projectId}/locations/{locationId}/environments/{environmentId}" - * @param Google_Service_CloudComposer_Environment $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Required. A comma-separated list of paths, - * relative to `Environment`, of fields to update. For example, to set the - * version of scikit-learn to install in the environment to 0.19.0 and to remove - * an existing installation of numpy, the `updateMask` parameter would include - * the following two `paths` values: "config.softwareConfig.pypiPackages.scikit- - * learn" and "config.softwareConfig.pypiPackages.numpy". The included patch - * environment would specify the scikit-learn version as follows: - * - * { "config":{ "softwareConfig":{ "pypiPackages":{ - * "scikit-learn":"==0.19.0" } } } } - * - * Note that in the above example, any existing PyPI packages other than scikit- - * learn and numpy will be unaffected. - * - * Only one update type may be included in a single request's `updateMask`. For - * example, one cannot update both the PyPI packages and labels in the same - * request. However, it is possible to update multiple members of a map field - * simultaneously in the same request. For example, to set the labels "label1" - * and "label2" while clearing "label3" (assuming it already exists), one can - * provide the paths "labels.label1", "labels.label2", and "labels.label3" and - * populate the patch environment as follows: - * - * { "labels":{ "label1":"new-label1-value" "label2 - * ":"new-label2-value" } } - * - * Note that in the above example, any existing labels that are not included in - * the `updateMask` will be unaffected. - * - * It is also possible to replace an entire map field by providing the map - * field's path in the `updateMask`. The new value of the field will be that - * which is provided in the patch environment. For example, to delete all pre- - * existing user-specified PyPI packages and install botocore at version 1.7.14, - * the `updateMask` would contain the path "config.softwareConfig.pypiPackages", - * and the patch environment would be the following: - * - * { "config":{ "softwareConfig":{ "pypiPackages":{ - * "botocore":"==1.7.14" } } } } - * - * **Note:** Only the following fields can be updated: - * - * Mask Purpose config.softwareConfig.pypiPackages Replace all - * custom custom PyPI packages. If a replacement package map is not included in - * `environment`, all custom PyPI packages are cleared. It is an error to - * provide both this mask and a mask specifying an individual package. - * config.softwareConfig.pypiPackages.packagename Update the custom PyPI - * package packagename, preserving other packages. To delete the package, - * include it in `updateMask`, and omit the mapping for it in - * `environment.config.softwareConfig.pypiPackages`. It is an error to provide - * both a mask of this form and the "config.softwareConfig.pypiPackages" mask. - * labels Replace all environment labels. If a replacement labels map is not - * included in `environment`, all labels are cleared. It is an error to provide - * both this mask and a mask specifying one or more individual labels. - * labels.labelName Set the label named labelName, while preserving other - * labels. To delete the label, include it in `updateMask` and omit its mapping - * in `environment.labels`. It is an error to provide both a mask of this form - * and the "labels" mask. config.nodeCount Horizontally scale the number - * of nodes in the environment. An integer greater than or equal to 3 must be - * provided in the `config.nodeCount` field. - * config.softwareConfig.airflowConfigOverrides Replace all Apache Airflow - * config overrides. If a replacement config overrides map is not included in - * `environment`, all config overrides are cleared. It is an error to provide - * both this mask and a mask specifying one or more individual config - * overrides. config.softwareConfig.airflowConfigOverrides.section-name - * Override the Apache Airflow config property name in the section named - * section, preserving other properties. To delete the property override, - * include it in `updateMask` and omit its mapping in - * `environment.config.softwareConfig.airflowConfigOverrides`. It is an error - * to provide both a mask of this form and the - * "config.softwareConfig.airflowConfigOverrides" mask. - * config.softwareConfig.envVariables Replace all environment variables. If a - * replacement environment variable map is not included in `environment`, all - * custom environment variables are cleared. It is an error to provide both - * this mask and a mask specifying one or more individual environment - * variables. - * @return Google_Service_CloudComposer_Operation - */ - public function patch($name, Google_Service_CloudComposer_Environment $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_CloudComposer_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudComposer/Resource/ProjectsLocationsImageVersions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudComposer/Resource/ProjectsLocationsImageVersions.php deleted file mode 100644 index 5eed1d01..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudComposer/Resource/ProjectsLocationsImageVersions.php +++ /dev/null @@ -1,47 +0,0 @@ - - * $composerService = new Google_Service_CloudComposer(...); - * $imageVersions = $composerService->imageVersions; - * - */ -class Google_Service_CloudComposer_Resource_ProjectsLocationsImageVersions extends Google_Service_Resource -{ - /** - * List ImageVersions for provided location. - * (imageVersions.listProjectsLocationsImageVersions) - * - * @param string $parent List ImageVersions in the given project and location, - * in the form: "projects/{projectId}/locations/{locationId}" - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The next_page_token value returned from a - * previous List request, if any. - * @opt_param int pageSize The maximum number of image_versions to return. - * @return Google_Service_CloudComposer_ListImageVersionsResponse - */ - public function listProjectsLocationsImageVersions($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudComposer_ListImageVersionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudComposer/Resource/ProjectsLocationsOperations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudComposer/Resource/ProjectsLocationsOperations.php deleted file mode 100644 index 86aaf6f0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudComposer/Resource/ProjectsLocationsOperations.php +++ /dev/null @@ -1,86 +0,0 @@ - - * $composerService = new Google_Service_CloudComposer(...); - * $operations = $composerService->operations; - * - */ -class Google_Service_CloudComposer_Resource_ProjectsLocationsOperations extends Google_Service_Resource -{ - /** - * Deletes a long-running operation. This method indicates that the client is no - * longer interested in the operation result. It does not cancel the operation. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. (operations.delete) - * - * @param string $name The name of the operation resource to be deleted. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudComposer_ComposerEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudComposer_ComposerEmpty"); - } - /** - * Gets the latest state of a long-running operation. Clients can use this - * method to poll the operation result at intervals as recommended by the API - * service. (operations.get) - * - * @param string $name The name of the operation resource. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudComposer_Operation - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudComposer_Operation"); - } - /** - * Lists operations that match the specified filter in the request. If the - * server doesn't support this method, it returns `UNIMPLEMENTED`. - * - * NOTE: the `name` binding allows API services to override the binding to use - * different resource name schemes, such as `users/operations`. To override the - * binding, API services can add a binding such as - * `"/v1/{name=users}/operations"` to their service configuration. For backwards - * compatibility, the default name includes the operations collection id, - * however overriding users must ensure the name binding is the parent resource, - * without the operations collection id. - * (operations.listProjectsLocationsOperations) - * - * @param string $name The name of the operation's parent resource. - * @param array $optParams Optional parameters. - * - * @opt_param string filter The standard list filter. - * @opt_param string pageToken The standard list page token. - * @opt_param int pageSize The standard list page size. - * @return Google_Service_CloudComposer_ListOperationsResponse - */ - public function listProjectsLocationsOperations($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudComposer_ListOperationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudComposer/SoftwareConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudComposer/SoftwareConfig.php deleted file mode 100644 index 1da76852..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudComposer/SoftwareConfig.php +++ /dev/null @@ -1,66 +0,0 @@ -airflowConfigOverrides = $airflowConfigOverrides; - } - public function getAirflowConfigOverrides() - { - return $this->airflowConfigOverrides; - } - public function setEnvVariables($envVariables) - { - $this->envVariables = $envVariables; - } - public function getEnvVariables() - { - return $this->envVariables; - } - public function setImageVersion($imageVersion) - { - $this->imageVersion = $imageVersion; - } - public function getImageVersion() - { - return $this->imageVersion; - } - public function setPypiPackages($pypiPackages) - { - $this->pypiPackages = $pypiPackages; - } - public function getPypiPackages() - { - return $this->pypiPackages; - } - public function setPythonVersion($pythonVersion) - { - $this->pythonVersion = $pythonVersion; - } - public function getPythonVersion() - { - return $this->pythonVersion; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudComposer/Status.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudComposer/Status.php deleted file mode 100644 index 6e251c0e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudComposer/Status.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger.php deleted file mode 100644 index 741bb3f9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger.php +++ /dev/null @@ -1,242 +0,0 @@ - - * Examines the call stack and variables of a running application without - * stopping or slowing it down.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_CloudDebugger extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** Use Stackdriver Debugger. */ - const CLOUD_DEBUGGER = - "https://www.googleapis.com/auth/cloud_debugger"; - - public $controller_debuggees; - public $controller_debuggees_breakpoints; - public $debugger_debuggees; - public $debugger_debuggees_breakpoints; - - /** - * Constructs the internal representation of the CloudDebugger service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://clouddebugger.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v2'; - $this->serviceName = 'clouddebugger'; - - $this->controller_debuggees = new Google_Service_CloudDebugger_Resource_ControllerDebuggees( - $this, - $this->serviceName, - 'debuggees', - array( - 'methods' => array( - 'register' => array( - 'path' => 'v2/controller/debuggees/register', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->controller_debuggees_breakpoints = new Google_Service_CloudDebugger_Resource_ControllerDebuggeesBreakpoints( - $this, - $this->serviceName, - 'breakpoints', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v2/controller/debuggees/{debuggeeId}/breakpoints', - 'httpMethod' => 'GET', - 'parameters' => array( - 'debuggeeId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'successOnTimeout' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'waitToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'v2/controller/debuggees/{debuggeeId}/breakpoints/{id}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'debuggeeId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->debugger_debuggees = new Google_Service_CloudDebugger_Resource_DebuggerDebuggees( - $this, - $this->serviceName, - 'debuggees', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v2/debugger/debuggees', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'clientVersion' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'includeInactive' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ), - ) - ) - ); - $this->debugger_debuggees_breakpoints = new Google_Service_CloudDebugger_Resource_DebuggerDebuggeesBreakpoints( - $this, - $this->serviceName, - 'breakpoints', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'v2/debugger/debuggees/{debuggeeId}/breakpoints/{breakpointId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'debuggeeId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'breakpointId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clientVersion' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'v2/debugger/debuggees/{debuggeeId}/breakpoints/{breakpointId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'debuggeeId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'breakpointId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clientVersion' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'v2/debugger/debuggees/{debuggeeId}/breakpoints', - 'httpMethod' => 'GET', - 'parameters' => array( - 'debuggeeId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'waitToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'clientVersion' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'action.value' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'includeInactive' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'includeAllUsers' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'stripResults' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'set' => array( - 'path' => 'v2/debugger/debuggees/{debuggeeId}/breakpoints/set', - 'httpMethod' => 'POST', - 'parameters' => array( - 'debuggeeId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clientVersion' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/AliasContext.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/AliasContext.php deleted file mode 100644 index b5b4a7fb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/AliasContext.php +++ /dev/null @@ -1,39 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/Breakpoint.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/Breakpoint.php deleted file mode 100644 index 72309f8c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/Breakpoint.php +++ /dev/null @@ -1,201 +0,0 @@ -action = $action; - } - public function getAction() - { - return $this->action; - } - public function setCondition($condition) - { - $this->condition = $condition; - } - public function getCondition() - { - return $this->condition; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - /** - * @param Google_Service_CloudDebugger_Variable - */ - public function setEvaluatedExpressions($evaluatedExpressions) - { - $this->evaluatedExpressions = $evaluatedExpressions; - } - /** - * @return Google_Service_CloudDebugger_Variable - */ - public function getEvaluatedExpressions() - { - return $this->evaluatedExpressions; - } - public function setExpressions($expressions) - { - $this->expressions = $expressions; - } - public function getExpressions() - { - return $this->expressions; - } - public function setFinalTime($finalTime) - { - $this->finalTime = $finalTime; - } - public function getFinalTime() - { - return $this->finalTime; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setIsFinalState($isFinalState) - { - $this->isFinalState = $isFinalState; - } - public function getIsFinalState() - { - return $this->isFinalState; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - /** - * @param Google_Service_CloudDebugger_SourceLocation - */ - public function setLocation(Google_Service_CloudDebugger_SourceLocation $location) - { - $this->location = $location; - } - /** - * @return Google_Service_CloudDebugger_SourceLocation - */ - public function getLocation() - { - return $this->location; - } - public function setLogLevel($logLevel) - { - $this->logLevel = $logLevel; - } - public function getLogLevel() - { - return $this->logLevel; - } - public function setLogMessageFormat($logMessageFormat) - { - $this->logMessageFormat = $logMessageFormat; - } - public function getLogMessageFormat() - { - return $this->logMessageFormat; - } - /** - * @param Google_Service_CloudDebugger_StackFrame - */ - public function setStackFrames($stackFrames) - { - $this->stackFrames = $stackFrames; - } - /** - * @return Google_Service_CloudDebugger_StackFrame - */ - public function getStackFrames() - { - return $this->stackFrames; - } - /** - * @param Google_Service_CloudDebugger_StatusMessage - */ - public function setStatus(Google_Service_CloudDebugger_StatusMessage $status) - { - $this->status = $status; - } - /** - * @return Google_Service_CloudDebugger_StatusMessage - */ - public function getStatus() - { - return $this->status; - } - public function setUserEmail($userEmail) - { - $this->userEmail = $userEmail; - } - public function getUserEmail() - { - return $this->userEmail; - } - /** - * @param Google_Service_CloudDebugger_Variable - */ - public function setVariableTable($variableTable) - { - $this->variableTable = $variableTable; - } - /** - * @return Google_Service_CloudDebugger_Variable - */ - public function getVariableTable() - { - return $this->variableTable; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/CloudRepoSourceContext.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/CloudRepoSourceContext.php deleted file mode 100644 index 23d4fc2e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/CloudRepoSourceContext.php +++ /dev/null @@ -1,71 +0,0 @@ -aliasContext = $aliasContext; - } - /** - * @return Google_Service_CloudDebugger_AliasContext - */ - public function getAliasContext() - { - return $this->aliasContext; - } - public function setAliasName($aliasName) - { - $this->aliasName = $aliasName; - } - public function getAliasName() - { - return $this->aliasName; - } - /** - * @param Google_Service_CloudDebugger_RepoId - */ - public function setRepoId(Google_Service_CloudDebugger_RepoId $repoId) - { - $this->repoId = $repoId; - } - /** - * @return Google_Service_CloudDebugger_RepoId - */ - public function getRepoId() - { - return $this->repoId; - } - public function setRevisionId($revisionId) - { - $this->revisionId = $revisionId; - } - public function getRevisionId() - { - return $this->revisionId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/CloudWorkspaceId.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/CloudWorkspaceId.php deleted file mode 100644 index d9e4dba8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/CloudWorkspaceId.php +++ /dev/null @@ -1,46 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_CloudDebugger_RepoId - */ - public function setRepoId(Google_Service_CloudDebugger_RepoId $repoId) - { - $this->repoId = $repoId; - } - /** - * @return Google_Service_CloudDebugger_RepoId - */ - public function getRepoId() - { - return $this->repoId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/CloudWorkspaceSourceContext.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/CloudWorkspaceSourceContext.php deleted file mode 100644 index 27df77a4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/CloudWorkspaceSourceContext.php +++ /dev/null @@ -1,46 +0,0 @@ -snapshotId = $snapshotId; - } - public function getSnapshotId() - { - return $this->snapshotId; - } - /** - * @param Google_Service_CloudDebugger_CloudWorkspaceId - */ - public function setWorkspaceId(Google_Service_CloudDebugger_CloudWorkspaceId $workspaceId) - { - $this->workspaceId = $workspaceId; - } - /** - * @return Google_Service_CloudDebugger_CloudWorkspaceId - */ - public function getWorkspaceId() - { - return $this->workspaceId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/ClouddebuggerEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/ClouddebuggerEmpty.php deleted file mode 100644 index f697514a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/ClouddebuggerEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -agentVersion = $agentVersion; - } - public function getAgentVersion() - { - return $this->agentVersion; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - /** - * @param Google_Service_CloudDebugger_ExtendedSourceContext - */ - public function setExtSourceContexts($extSourceContexts) - { - $this->extSourceContexts = $extSourceContexts; - } - /** - * @return Google_Service_CloudDebugger_ExtendedSourceContext - */ - public function getExtSourceContexts() - { - return $this->extSourceContexts; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setIsDisabled($isDisabled) - { - $this->isDisabled = $isDisabled; - } - public function getIsDisabled() - { - return $this->isDisabled; - } - public function setIsInactive($isInactive) - { - $this->isInactive = $isInactive; - } - public function getIsInactive() - { - return $this->isInactive; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setProject($project) - { - $this->project = $project; - } - public function getProject() - { - return $this->project; - } - /** - * @param Google_Service_CloudDebugger_SourceContext - */ - public function setSourceContexts($sourceContexts) - { - $this->sourceContexts = $sourceContexts; - } - /** - * @return Google_Service_CloudDebugger_SourceContext - */ - public function getSourceContexts() - { - return $this->sourceContexts; - } - /** - * @param Google_Service_CloudDebugger_StatusMessage - */ - public function setStatus(Google_Service_CloudDebugger_StatusMessage $status) - { - $this->status = $status; - } - /** - * @return Google_Service_CloudDebugger_StatusMessage - */ - public function getStatus() - { - return $this->status; - } - public function setUniquifier($uniquifier) - { - $this->uniquifier = $uniquifier; - } - public function getUniquifier() - { - return $this->uniquifier; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/ExtendedSourceContext.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/ExtendedSourceContext.php deleted file mode 100644 index 7ddbf8f2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/ExtendedSourceContext.php +++ /dev/null @@ -1,46 +0,0 @@ -context = $context; - } - /** - * @return Google_Service_CloudDebugger_SourceContext - */ - public function getContext() - { - return $this->context; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/FormatMessage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/FormatMessage.php deleted file mode 100644 index 3fddee74..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/FormatMessage.php +++ /dev/null @@ -1,40 +0,0 @@ -format = $format; - } - public function getFormat() - { - return $this->format; - } - public function setParameters($parameters) - { - $this->parameters = $parameters; - } - public function getParameters() - { - return $this->parameters; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/GerritSourceContext.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/GerritSourceContext.php deleted file mode 100644 index 2d1f390f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/GerritSourceContext.php +++ /dev/null @@ -1,73 +0,0 @@ -aliasContext = $aliasContext; - } - /** - * @return Google_Service_CloudDebugger_AliasContext - */ - public function getAliasContext() - { - return $this->aliasContext; - } - public function setAliasName($aliasName) - { - $this->aliasName = $aliasName; - } - public function getAliasName() - { - return $this->aliasName; - } - public function setGerritProject($gerritProject) - { - $this->gerritProject = $gerritProject; - } - public function getGerritProject() - { - return $this->gerritProject; - } - public function setHostUri($hostUri) - { - $this->hostUri = $hostUri; - } - public function getHostUri() - { - return $this->hostUri; - } - public function setRevisionId($revisionId) - { - $this->revisionId = $revisionId; - } - public function getRevisionId() - { - return $this->revisionId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/GetBreakpointResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/GetBreakpointResponse.php deleted file mode 100644 index 0589356e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/GetBreakpointResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -breakpoint = $breakpoint; - } - /** - * @return Google_Service_CloudDebugger_Breakpoint - */ - public function getBreakpoint() - { - return $this->breakpoint; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/GitSourceContext.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/GitSourceContext.php deleted file mode 100644 index 7b57c0fc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/GitSourceContext.php +++ /dev/null @@ -1,39 +0,0 @@ -revisionId = $revisionId; - } - public function getRevisionId() - { - return $this->revisionId; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/ListActiveBreakpointsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/ListActiveBreakpointsResponse.php deleted file mode 100644 index 3957a723..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/ListActiveBreakpointsResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -breakpoints = $breakpoints; - } - /** - * @return Google_Service_CloudDebugger_Breakpoint - */ - public function getBreakpoints() - { - return $this->breakpoints; - } - public function setNextWaitToken($nextWaitToken) - { - $this->nextWaitToken = $nextWaitToken; - } - public function getNextWaitToken() - { - return $this->nextWaitToken; - } - public function setWaitExpired($waitExpired) - { - $this->waitExpired = $waitExpired; - } - public function getWaitExpired() - { - return $this->waitExpired; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/ListBreakpointsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/ListBreakpointsResponse.php deleted file mode 100644 index da7fbdb9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/ListBreakpointsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -breakpoints = $breakpoints; - } - /** - * @return Google_Service_CloudDebugger_Breakpoint - */ - public function getBreakpoints() - { - return $this->breakpoints; - } - public function setNextWaitToken($nextWaitToken) - { - $this->nextWaitToken = $nextWaitToken; - } - public function getNextWaitToken() - { - return $this->nextWaitToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/ListDebuggeesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/ListDebuggeesResponse.php deleted file mode 100644 index 8b0c10fc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/ListDebuggeesResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -debuggees = $debuggees; - } - /** - * @return Google_Service_CloudDebugger_Debuggee - */ - public function getDebuggees() - { - return $this->debuggees; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/ProjectRepoId.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/ProjectRepoId.php deleted file mode 100644 index 8782f976..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/ProjectRepoId.php +++ /dev/null @@ -1,39 +0,0 @@ -projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } - public function setRepoName($repoName) - { - $this->repoName = $repoName; - } - public function getRepoName() - { - return $this->repoName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/RegisterDebuggeeRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/RegisterDebuggeeRequest.php deleted file mode 100644 index 99a64180..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/RegisterDebuggeeRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -debuggee = $debuggee; - } - /** - * @return Google_Service_CloudDebugger_Debuggee - */ - public function getDebuggee() - { - return $this->debuggee; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/RegisterDebuggeeResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/RegisterDebuggeeResponse.php deleted file mode 100644 index d183ec93..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/RegisterDebuggeeResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -debuggee = $debuggee; - } - /** - * @return Google_Service_CloudDebugger_Debuggee - */ - public function getDebuggee() - { - return $this->debuggee; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/RepoId.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/RepoId.php deleted file mode 100644 index bbf8f8cb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/RepoId.php +++ /dev/null @@ -1,46 +0,0 @@ -projectRepoId = $projectRepoId; - } - /** - * @return Google_Service_CloudDebugger_ProjectRepoId - */ - public function getProjectRepoId() - { - return $this->projectRepoId; - } - public function setUid($uid) - { - $this->uid = $uid; - } - public function getUid() - { - return $this->uid; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/Resource/Controller.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/Resource/Controller.php deleted file mode 100644 index a3e421ba..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/Resource/Controller.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $clouddebuggerService = new Google_Service_CloudDebugger(...); - * $controller = $clouddebuggerService->controller; - * - */ -class Google_Service_CloudDebugger_Resource_Controller extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/Resource/ControllerDebuggees.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/Resource/ControllerDebuggees.php deleted file mode 100644 index f0709d0b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/Resource/ControllerDebuggees.php +++ /dev/null @@ -1,50 +0,0 @@ - - * $clouddebuggerService = new Google_Service_CloudDebugger(...); - * $debuggees = $clouddebuggerService->debuggees; - * - */ -class Google_Service_CloudDebugger_Resource_ControllerDebuggees extends Google_Service_Resource -{ - /** - * Registers the debuggee with the controller service. - * - * All agents attached to the same application must call this method with - * exactly the same request content to get back the same stable `debuggee_id`. - * Agents should call this method again whenever `google.rpc.Code.NOT_FOUND` is - * returned from any controller method. - * - * This protocol allows the controller service to disable debuggees, recover - * from data loss, or change the `debuggee_id` format. Agents must handle - * `debuggee_id` value changing upon re-registration. (debuggees.register) - * - * @param Google_Service_CloudDebugger_RegisterDebuggeeRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudDebugger_RegisterDebuggeeResponse - */ - public function register(Google_Service_CloudDebugger_RegisterDebuggeeRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('register', array($params), "Google_Service_CloudDebugger_RegisterDebuggeeResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/Resource/ControllerDebuggeesBreakpoints.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/Resource/ControllerDebuggeesBreakpoints.php deleted file mode 100644 index 5451b35b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/Resource/ControllerDebuggeesBreakpoints.php +++ /dev/null @@ -1,86 +0,0 @@ - - * $clouddebuggerService = new Google_Service_CloudDebugger(...); - * $breakpoints = $clouddebuggerService->breakpoints; - * - */ -class Google_Service_CloudDebugger_Resource_ControllerDebuggeesBreakpoints extends Google_Service_Resource -{ - /** - * Returns the list of all active breakpoints for the debuggee. - * - * The breakpoint specification (`location`, `condition`, and `expressions` - * fields) is semantically immutable, although the field values may change. For - * example, an agent may update the location line number to reflect the actual - * line where the breakpoint was set, but this doesn't change the breakpoint - * semantics. - * - * This means that an agent does not need to check if a breakpoint has changed - * when it encounters the same breakpoint on a successive call. Moreover, an - * agent should remember the breakpoints that are completed until the controller - * removes them from the active list to avoid setting those breakpoints again. - * (breakpoints.listControllerDebuggeesBreakpoints) - * - * @param string $debuggeeId Required. Identifies the debuggee. - * @param array $optParams Optional parameters. - * - * @opt_param bool successOnTimeout If set to `true` (recommended), returns - * `google.rpc.Code.OK` status and sets the `wait_expired` response field to - * `true` when the server-selected timeout has expired. - * - * If set to `false` (deprecated), returns `google.rpc.Code.ABORTED` status when - * the server-selected timeout has expired. - * @opt_param string waitToken A token that, if specified, blocks the method - * call until the list of active breakpoints has changed, or a server-selected - * timeout has expired. The value should be set from the `next_wait_token` field - * in the last response. The initial value should be set to `"init"`. - * @return Google_Service_CloudDebugger_ListActiveBreakpointsResponse - */ - public function listControllerDebuggeesBreakpoints($debuggeeId, $optParams = array()) - { - $params = array('debuggeeId' => $debuggeeId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudDebugger_ListActiveBreakpointsResponse"); - } - /** - * Updates the breakpoint state or mutable fields. The entire Breakpoint message - * must be sent back to the controller service. - * - * Updates to active breakpoint fields are only allowed if the new value does - * not change the breakpoint specification. Updates to the `location`, - * `condition` and `expressions` fields should not alter the breakpoint - * semantics. These may only make changes such as canonicalizing a value or - * snapping the location to the correct line of code. (breakpoints.update) - * - * @param string $debuggeeId Required. Identifies the debuggee being debugged. - * @param string $id Breakpoint identifier, unique in the scope of the debuggee. - * @param Google_Service_CloudDebugger_UpdateActiveBreakpointRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudDebugger_UpdateActiveBreakpointResponse - */ - public function update($debuggeeId, $id, Google_Service_CloudDebugger_UpdateActiveBreakpointRequest $postBody, $optParams = array()) - { - $params = array('debuggeeId' => $debuggeeId, 'id' => $id, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_CloudDebugger_UpdateActiveBreakpointResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/Resource/Debugger.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/Resource/Debugger.php deleted file mode 100644 index 3d8d98a3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/Resource/Debugger.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $clouddebuggerService = new Google_Service_CloudDebugger(...); - * $debugger = $clouddebuggerService->debugger; - * - */ -class Google_Service_CloudDebugger_Resource_Debugger extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/Resource/DebuggerDebuggees.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/Resource/DebuggerDebuggees.php deleted file mode 100644 index ee679000..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/Resource/DebuggerDebuggees.php +++ /dev/null @@ -1,48 +0,0 @@ - - * $clouddebuggerService = new Google_Service_CloudDebugger(...); - * $debuggees = $clouddebuggerService->debuggees; - * - */ -class Google_Service_CloudDebugger_Resource_DebuggerDebuggees extends Google_Service_Resource -{ - /** - * Lists all the debuggees that the user has access to. - * (debuggees.listDebuggerDebuggees) - * - * @param array $optParams Optional parameters. - * - * @opt_param string project Required. Project number of a Google Cloud project - * whose debuggees to list. - * @opt_param string clientVersion Required. The client version making the call. - * Schema: `domain/type/version` (e.g., `google.com/intellij/v1`). - * @opt_param bool includeInactive When set to `true`, the result includes all - * debuggees. Otherwise, the result includes only debuggees that are active. - * @return Google_Service_CloudDebugger_ListDebuggeesResponse - */ - public function listDebuggerDebuggees($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudDebugger_ListDebuggeesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/Resource/DebuggerDebuggeesBreakpoints.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/Resource/DebuggerDebuggeesBreakpoints.php deleted file mode 100644 index 44e79d40..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/Resource/DebuggerDebuggeesBreakpoints.php +++ /dev/null @@ -1,116 +0,0 @@ - - * $clouddebuggerService = new Google_Service_CloudDebugger(...); - * $breakpoints = $clouddebuggerService->breakpoints; - * - */ -class Google_Service_CloudDebugger_Resource_DebuggerDebuggeesBreakpoints extends Google_Service_Resource -{ - /** - * Deletes the breakpoint from the debuggee. (breakpoints.delete) - * - * @param string $debuggeeId Required. ID of the debuggee whose breakpoint to - * delete. - * @param string $breakpointId Required. ID of the breakpoint to delete. - * @param array $optParams Optional parameters. - * - * @opt_param string clientVersion Required. The client version making the call. - * Schema: `domain/type/version` (e.g., `google.com/intellij/v1`). - * @return Google_Service_CloudDebugger_ClouddebuggerEmpty - */ - public function delete($debuggeeId, $breakpointId, $optParams = array()) - { - $params = array('debuggeeId' => $debuggeeId, 'breakpointId' => $breakpointId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudDebugger_ClouddebuggerEmpty"); - } - /** - * Gets breakpoint information. (breakpoints.get) - * - * @param string $debuggeeId Required. ID of the debuggee whose breakpoint to - * get. - * @param string $breakpointId Required. ID of the breakpoint to get. - * @param array $optParams Optional parameters. - * - * @opt_param string clientVersion Required. The client version making the call. - * Schema: `domain/type/version` (e.g., `google.com/intellij/v1`). - * @return Google_Service_CloudDebugger_GetBreakpointResponse - */ - public function get($debuggeeId, $breakpointId, $optParams = array()) - { - $params = array('debuggeeId' => $debuggeeId, 'breakpointId' => $breakpointId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudDebugger_GetBreakpointResponse"); - } - /** - * Lists all breakpoints for the debuggee. - * (breakpoints.listDebuggerDebuggeesBreakpoints) - * - * @param string $debuggeeId Required. ID of the debuggee whose breakpoints to - * list. - * @param array $optParams Optional parameters. - * - * @opt_param string waitToken A wait token that, if specified, blocks the call - * until the breakpoints list has changed, or a server selected timeout has - * expired. The value should be set from the last response. The error code - * `google.rpc.Code.ABORTED` (RPC) is returned on wait timeout, which should be - * called again with the same `wait_token`. - * @opt_param string clientVersion Required. The client version making the call. - * Schema: `domain/type/version` (e.g., `google.com/intellij/v1`). - * @opt_param string action.value Only breakpoints with the specified action - * will pass the filter. - * @opt_param bool includeInactive When set to `true`, the response includes - * active and inactive breakpoints. Otherwise, it includes only active - * breakpoints. - * @opt_param bool includeAllUsers When set to `true`, the response includes the - * list of breakpoints set by any user. Otherwise, it includes only breakpoints - * set by the caller. - * @opt_param bool stripResults This field is deprecated. The following fields - * are always stripped out of the result: `stack_frames`, - * `evaluated_expressions` and `variable_table`. - * @return Google_Service_CloudDebugger_ListBreakpointsResponse - */ - public function listDebuggerDebuggeesBreakpoints($debuggeeId, $optParams = array()) - { - $params = array('debuggeeId' => $debuggeeId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudDebugger_ListBreakpointsResponse"); - } - /** - * Sets the breakpoint to the debuggee. (breakpoints.set) - * - * @param string $debuggeeId Required. ID of the debuggee where the breakpoint - * is to be set. - * @param Google_Service_CloudDebugger_Breakpoint $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string clientVersion Required. The client version making the call. - * Schema: `domain/type/version` (e.g., `google.com/intellij/v1`). - * @return Google_Service_CloudDebugger_SetBreakpointResponse - */ - public function set($debuggeeId, Google_Service_CloudDebugger_Breakpoint $postBody, $optParams = array()) - { - $params = array('debuggeeId' => $debuggeeId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('set', array($params), "Google_Service_CloudDebugger_SetBreakpointResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/SetBreakpointResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/SetBreakpointResponse.php deleted file mode 100644 index 5259fe80..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/SetBreakpointResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -breakpoint = $breakpoint; - } - /** - * @return Google_Service_CloudDebugger_Breakpoint - */ - public function getBreakpoint() - { - return $this->breakpoint; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/SourceContext.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/SourceContext.php deleted file mode 100644 index 9ea7175a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/SourceContext.php +++ /dev/null @@ -1,85 +0,0 @@ -cloudRepo = $cloudRepo; - } - /** - * @return Google_Service_CloudDebugger_CloudRepoSourceContext - */ - public function getCloudRepo() - { - return $this->cloudRepo; - } - /** - * @param Google_Service_CloudDebugger_CloudWorkspaceSourceContext - */ - public function setCloudWorkspace(Google_Service_CloudDebugger_CloudWorkspaceSourceContext $cloudWorkspace) - { - $this->cloudWorkspace = $cloudWorkspace; - } - /** - * @return Google_Service_CloudDebugger_CloudWorkspaceSourceContext - */ - public function getCloudWorkspace() - { - return $this->cloudWorkspace; - } - /** - * @param Google_Service_CloudDebugger_GerritSourceContext - */ - public function setGerrit(Google_Service_CloudDebugger_GerritSourceContext $gerrit) - { - $this->gerrit = $gerrit; - } - /** - * @return Google_Service_CloudDebugger_GerritSourceContext - */ - public function getGerrit() - { - return $this->gerrit; - } - /** - * @param Google_Service_CloudDebugger_GitSourceContext - */ - public function setGit(Google_Service_CloudDebugger_GitSourceContext $git) - { - $this->git = $git; - } - /** - * @return Google_Service_CloudDebugger_GitSourceContext - */ - public function getGit() - { - return $this->git; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/SourceLocation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/SourceLocation.php deleted file mode 100644 index 0ac20c51..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/SourceLocation.php +++ /dev/null @@ -1,48 +0,0 @@ -column = $column; - } - public function getColumn() - { - return $this->column; - } - public function setLine($line) - { - $this->line = $line; - } - public function getLine() - { - return $this->line; - } - public function setPath($path) - { - $this->path = $path; - } - public function getPath() - { - return $this->path; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/StackFrame.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/StackFrame.php deleted file mode 100644 index dffcceec..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/StackFrame.php +++ /dev/null @@ -1,79 +0,0 @@ -arguments = $arguments; - } - /** - * @return Google_Service_CloudDebugger_Variable - */ - public function getArguments() - { - return $this->arguments; - } - public function setFunction($function) - { - $this->function = $function; - } - public function getFunction() - { - return $this->function; - } - /** - * @param Google_Service_CloudDebugger_Variable - */ - public function setLocals($locals) - { - $this->locals = $locals; - } - /** - * @return Google_Service_CloudDebugger_Variable - */ - public function getLocals() - { - return $this->locals; - } - /** - * @param Google_Service_CloudDebugger_SourceLocation - */ - public function setLocation(Google_Service_CloudDebugger_SourceLocation $location) - { - $this->location = $location; - } - /** - * @return Google_Service_CloudDebugger_SourceLocation - */ - public function getLocation() - { - return $this->location; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/StatusMessage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/StatusMessage.php deleted file mode 100644 index d13e45b1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/StatusMessage.php +++ /dev/null @@ -1,55 +0,0 @@ -description = $description; - } - /** - * @return Google_Service_CloudDebugger_FormatMessage - */ - public function getDescription() - { - return $this->description; - } - public function setIsError($isError) - { - $this->isError = $isError; - } - public function getIsError() - { - return $this->isError; - } - public function setRefersTo($refersTo) - { - $this->refersTo = $refersTo; - } - public function getRefersTo() - { - return $this->refersTo; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/UpdateActiveBreakpointRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/UpdateActiveBreakpointRequest.php deleted file mode 100644 index 55d4d66f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/UpdateActiveBreakpointRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -breakpoint = $breakpoint; - } - /** - * @return Google_Service_CloudDebugger_Breakpoint - */ - public function getBreakpoint() - { - return $this->breakpoint; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/UpdateActiveBreakpointResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/UpdateActiveBreakpointResponse.php deleted file mode 100644 index f8776895..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudDebugger/UpdateActiveBreakpointResponse.php +++ /dev/null @@ -1,20 +0,0 @@ -members = $members; - } - /** - * @return Google_Service_CloudDebugger_Variable - */ - public function getMembers() - { - return $this->members; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_CloudDebugger_StatusMessage - */ - public function setStatus(Google_Service_CloudDebugger_StatusMessage $status) - { - $this->status = $status; - } - /** - * @return Google_Service_CloudDebugger_StatusMessage - */ - public function getStatus() - { - return $this->status; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } - public function setVarTableIndex($varTableIndex) - { - $this->varTableIndex = $varTableIndex; - } - public function getVarTableIndex() - { - return $this->varTableIndex; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore.php deleted file mode 100644 index 6ebfd8dd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore.php +++ /dev/null @@ -1,249 +0,0 @@ - - * The Cloud Filestore API is used for creating and managing cloud file servers.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_CloudFilestore extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - - public $projects_locations; - public $projects_locations_instances; - public $projects_locations_operations; - - /** - * Constructs the internal representation of the CloudFilestore service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://file.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'file'; - - $this->projects_locations = new Google_Service_CloudFilestore_Resource_ProjectsLocations( - $this, - $this->serviceName, - 'locations', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+name}/locations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'includeUnrevealedLocations' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->projects_locations_instances = new Google_Service_CloudFilestore_Resource_ProjectsLocationsInstances( - $this, - $this->serviceName, - 'instances', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/instances', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instanceId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/instances', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_locations_operations = new Google_Service_CloudFilestore_Resource_ProjectsLocationsOperations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'cancel' => array( - 'path' => 'v1/{+name}:cancel', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+name}/operations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/CancelOperationRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/CancelOperationRequest.php deleted file mode 100644 index 99042cd8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/CancelOperationRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -capacityGb = $capacityGb; - } - public function getCapacityGb() - { - return $this->capacityGb; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/GoogleCloudSaasacceleratorManagementProvidersV1Instance.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/GoogleCloudSaasacceleratorManagementProvidersV1Instance.php deleted file mode 100644 index d9b9ba0b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/GoogleCloudSaasacceleratorManagementProvidersV1Instance.php +++ /dev/null @@ -1,185 +0,0 @@ -consumerDefinedName = $consumerDefinedName; - } - public function getConsumerDefinedName() - { - return $this->consumerDefinedName; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setMaintenancePolicyNames($maintenancePolicyNames) - { - $this->maintenancePolicyNames = $maintenancePolicyNames; - } - public function getMaintenancePolicyNames() - { - return $this->maintenancePolicyNames; - } - /** - * @param Google_Service_CloudFilestore_GoogleCloudSaasacceleratorManagementProvidersV1MaintenanceSchedule - */ - public function setMaintenanceSchedules($maintenanceSchedules) - { - $this->maintenanceSchedules = $maintenanceSchedules; - } - /** - * @return Google_Service_CloudFilestore_GoogleCloudSaasacceleratorManagementProvidersV1MaintenanceSchedule - */ - public function getMaintenanceSchedules() - { - return $this->maintenanceSchedules; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setProducerMetadata($producerMetadata) - { - $this->producerMetadata = $producerMetadata; - } - public function getProducerMetadata() - { - return $this->producerMetadata; - } - /** - * @param Google_Service_CloudFilestore_GoogleCloudSaasacceleratorManagementProvidersV1ProvisionedResource - */ - public function setProvisionedResources($provisionedResources) - { - $this->provisionedResources = $provisionedResources; - } - /** - * @return Google_Service_CloudFilestore_GoogleCloudSaasacceleratorManagementProvidersV1ProvisionedResource - */ - public function getProvisionedResources() - { - return $this->provisionedResources; - } - /** - * @param Google_Service_CloudFilestore_GoogleCloudSaasacceleratorManagementProvidersV1RolloutMetadata - */ - public function setRolloutMetadata($rolloutMetadata) - { - $this->rolloutMetadata = $rolloutMetadata; - } - /** - * @return Google_Service_CloudFilestore_GoogleCloudSaasacceleratorManagementProvidersV1RolloutMetadata - */ - public function getRolloutMetadata() - { - return $this->rolloutMetadata; - } - public function setSlmInstanceTemplate($slmInstanceTemplate) - { - $this->slmInstanceTemplate = $slmInstanceTemplate; - } - public function getSlmInstanceTemplate() - { - return $this->slmInstanceTemplate; - } - /** - * @param Google_Service_CloudFilestore_GoogleCloudSaasacceleratorManagementProvidersV1SloMetadata - */ - public function setSloMetadata(Google_Service_CloudFilestore_GoogleCloudSaasacceleratorManagementProvidersV1SloMetadata $sloMetadata) - { - $this->sloMetadata = $sloMetadata; - } - /** - * @return Google_Service_CloudFilestore_GoogleCloudSaasacceleratorManagementProvidersV1SloMetadata - */ - public function getSloMetadata() - { - return $this->sloMetadata; - } - public function setSoftwareVersions($softwareVersions) - { - $this->softwareVersions = $softwareVersions; - } - public function getSoftwareVersions() - { - return $this->softwareVersions; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setTenantProjectId($tenantProjectId) - { - $this->tenantProjectId = $tenantProjectId; - } - public function getTenantProjectId() - { - return $this->tenantProjectId; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/GoogleCloudSaasacceleratorManagementProvidersV1MaintenanceSchedule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/GoogleCloudSaasacceleratorManagementProvidersV1MaintenanceSchedule.php deleted file mode 100644 index 92e219e0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/GoogleCloudSaasacceleratorManagementProvidersV1MaintenanceSchedule.php +++ /dev/null @@ -1,57 +0,0 @@ -canReschedule = $canReschedule; - } - public function getCanReschedule() - { - return $this->canReschedule; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setRolloutManagementPolicy($rolloutManagementPolicy) - { - $this->rolloutManagementPolicy = $rolloutManagementPolicy; - } - public function getRolloutManagementPolicy() - { - return $this->rolloutManagementPolicy; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata.php deleted file mode 100644 index bf282562..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata.php +++ /dev/null @@ -1,56 +0,0 @@ -exclusions = $exclusions; - } - /** - * @return Google_Service_CloudFilestore_GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion - */ - public function getExclusions() - { - return $this->exclusions; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setNodeId($nodeId) - { - $this->nodeId = $nodeId; - } - public function getNodeId() - { - return $this->nodeId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/GoogleCloudSaasacceleratorManagementProvidersV1NotificationMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/GoogleCloudSaasacceleratorManagementProvidersV1NotificationMetadata.php deleted file mode 100644 index c582ebba..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/GoogleCloudSaasacceleratorManagementProvidersV1NotificationMetadata.php +++ /dev/null @@ -1,57 +0,0 @@ -rescheduled = $rescheduled; - } - public function getRescheduled() - { - return $this->rescheduled; - } - public function setScheduledEndTime($scheduledEndTime) - { - $this->scheduledEndTime = $scheduledEndTime; - } - public function getScheduledEndTime() - { - return $this->scheduledEndTime; - } - public function setScheduledStartTime($scheduledStartTime) - { - $this->scheduledStartTime = $scheduledStartTime; - } - public function getScheduledStartTime() - { - return $this->scheduledStartTime; - } - public function setTargetRelease($targetRelease) - { - $this->targetRelease = $targetRelease; - } - public function getTargetRelease() - { - return $this->targetRelease; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/GoogleCloudSaasacceleratorManagementProvidersV1ProvisionedResource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/GoogleCloudSaasacceleratorManagementProvidersV1ProvisionedResource.php deleted file mode 100644 index cb3b491d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/GoogleCloudSaasacceleratorManagementProvidersV1ProvisionedResource.php +++ /dev/null @@ -1,39 +0,0 @@ -resourceType = $resourceType; - } - public function getResourceType() - { - return $this->resourceType; - } - public function setResourceUrl($resourceUrl) - { - $this->resourceUrl = $resourceUrl; - } - public function getResourceUrl() - { - return $this->resourceUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/GoogleCloudSaasacceleratorManagementProvidersV1RolloutMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/GoogleCloudSaasacceleratorManagementProvidersV1RolloutMetadata.php deleted file mode 100644 index e99bef4d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/GoogleCloudSaasacceleratorManagementProvidersV1RolloutMetadata.php +++ /dev/null @@ -1,55 +0,0 @@ -notification = $notification; - } - /** - * @return Google_Service_CloudFilestore_GoogleCloudSaasacceleratorManagementProvidersV1NotificationMetadata - */ - public function getNotification() - { - return $this->notification; - } - public function setReleaseName($releaseName) - { - $this->releaseName = $releaseName; - } - public function getReleaseName() - { - return $this->releaseName; - } - public function setRolloutName($rolloutName) - { - $this->rolloutName = $rolloutName; - } - public function getRolloutName() - { - return $this->rolloutName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/GoogleCloudSaasacceleratorManagementProvidersV1SloEligibility.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/GoogleCloudSaasacceleratorManagementProvidersV1SloEligibility.php deleted file mode 100644 index 52b47cc9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/GoogleCloudSaasacceleratorManagementProvidersV1SloEligibility.php +++ /dev/null @@ -1,39 +0,0 @@ -eligible = $eligible; - } - public function getEligible() - { - return $this->eligible; - } - public function setReason($reason) - { - $this->reason = $reason; - } - public function getReason() - { - return $this->reason; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion.php deleted file mode 100644 index 0261b45c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion.php +++ /dev/null @@ -1,57 +0,0 @@ -duration = $duration; - } - public function getDuration() - { - return $this->duration; - } - public function setReason($reason) - { - $this->reason = $reason; - } - public function getReason() - { - return $this->reason; - } - public function setSliName($sliName) - { - $this->sliName = $sliName; - } - public function getSliName() - { - return $this->sliName; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/GoogleCloudSaasacceleratorManagementProvidersV1SloMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/GoogleCloudSaasacceleratorManagementProvidersV1SloMetadata.php deleted file mode 100644 index bebf92e3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/GoogleCloudSaasacceleratorManagementProvidersV1SloMetadata.php +++ /dev/null @@ -1,79 +0,0 @@ -eligibility = $eligibility; - } - /** - * @return Google_Service_CloudFilestore_GoogleCloudSaasacceleratorManagementProvidersV1SloEligibility - */ - public function getEligibility() - { - return $this->eligibility; - } - /** - * @param Google_Service_CloudFilestore_GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion - */ - public function setExclusions($exclusions) - { - $this->exclusions = $exclusions; - } - /** - * @return Google_Service_CloudFilestore_GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion - */ - public function getExclusions() - { - return $this->exclusions; - } - /** - * @param Google_Service_CloudFilestore_GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata - */ - public function setNodes($nodes) - { - $this->nodes = $nodes; - } - /** - * @return Google_Service_CloudFilestore_GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata - */ - public function getNodes() - { - return $this->nodes; - } - public function setTier($tier) - { - $this->tier = $tier; - } - public function getTier() - { - return $this->tier; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/Instance.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/Instance.php deleted file mode 100644 index a3b18552..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/Instance.php +++ /dev/null @@ -1,126 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_CloudFilestore_FileShareConfig - */ - public function setFileShares($fileShares) - { - $this->fileShares = $fileShares; - } - /** - * @return Google_Service_CloudFilestore_FileShareConfig - */ - public function getFileShares() - { - return $this->fileShares; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_CloudFilestore_NetworkConfig - */ - public function setNetworks($networks) - { - $this->networks = $networks; - } - /** - * @return Google_Service_CloudFilestore_NetworkConfig - */ - public function getNetworks() - { - return $this->networks; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setStatusMessage($statusMessage) - { - $this->statusMessage = $statusMessage; - } - public function getStatusMessage() - { - return $this->statusMessage; - } - public function setTier($tier) - { - $this->tier = $tier; - } - public function getTier() - { - return $this->tier; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/ListInstancesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/ListInstancesResponse.php deleted file mode 100644 index 35b82682..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/ListInstancesResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -instances = $instances; - } - /** - * @return Google_Service_CloudFilestore_Instance - */ - public function getInstances() - { - return $this->instances; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setUnreachable($unreachable) - { - $this->unreachable = $unreachable; - } - public function getUnreachable() - { - return $this->unreachable; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/ListLocationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/ListLocationsResponse.php deleted file mode 100644 index 881a3fd9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/ListLocationsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -locations = $locations; - } - /** - * @return Google_Service_CloudFilestore_Location - */ - public function getLocations() - { - return $this->locations; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/ListOperationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/ListOperationsResponse.php deleted file mode 100644 index 0e209575..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/ListOperationsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_CloudFilestore_Operation - */ - public function setOperations($operations) - { - $this->operations = $operations; - } - /** - * @return Google_Service_CloudFilestore_Operation - */ - public function getOperations() - { - return $this->operations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/Location.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/Location.php deleted file mode 100644 index d8aa2af4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/Location.php +++ /dev/null @@ -1,66 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setLocationId($locationId) - { - $this->locationId = $locationId; - } - public function getLocationId() - { - return $this->locationId; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/NetworkConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/NetworkConfig.php deleted file mode 100644 index 5dea2b12..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/NetworkConfig.php +++ /dev/null @@ -1,58 +0,0 @@ -ipAddresses = $ipAddresses; - } - public function getIpAddresses() - { - return $this->ipAddresses; - } - public function setModes($modes) - { - $this->modes = $modes; - } - public function getModes() - { - return $this->modes; - } - public function setNetwork($network) - { - $this->network = $network; - } - public function getNetwork() - { - return $this->network; - } - public function setReservedIpRange($reservedIpRange) - { - $this->reservedIpRange = $reservedIpRange; - } - public function getReservedIpRange() - { - return $this->reservedIpRange; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/Operation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/Operation.php deleted file mode 100644 index c6a299d1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/Operation.php +++ /dev/null @@ -1,73 +0,0 @@ -done = $done; - } - public function getDone() - { - return $this->done; - } - /** - * @param Google_Service_CloudFilestore_Status - */ - public function setError(Google_Service_CloudFilestore_Status $error) - { - $this->error = $error; - } - /** - * @return Google_Service_CloudFilestore_Status - */ - public function getError() - { - return $this->error; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/OperationMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/OperationMetadata.php deleted file mode 100644 index 007dd971..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/OperationMetadata.php +++ /dev/null @@ -1,84 +0,0 @@ -apiVersion = $apiVersion; - } - public function getApiVersion() - { - return $this->apiVersion; - } - public function setCancelRequested($cancelRequested) - { - $this->cancelRequested = $cancelRequested; - } - public function getCancelRequested() - { - return $this->cancelRequested; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setStatusDetail($statusDetail) - { - $this->statusDetail = $statusDetail; - } - public function getStatusDetail() - { - return $this->statusDetail; - } - public function setTarget($target) - { - $this->target = $target; - } - public function getTarget() - { - return $this->target; - } - public function setVerb($verb) - { - $this->verb = $verb; - } - public function getVerb() - { - return $this->verb; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/Resource/Projects.php deleted file mode 100644 index 93a0aad6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/Resource/Projects.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $fileService = new Google_Service_CloudFilestore(...); - * $projects = $fileService->projects; - * - */ -class Google_Service_CloudFilestore_Resource_Projects extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/Resource/ProjectsLocations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/Resource/ProjectsLocations.php deleted file mode 100644 index 5cf125ef..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/Resource/ProjectsLocations.php +++ /dev/null @@ -1,62 +0,0 @@ - - * $fileService = new Google_Service_CloudFilestore(...); - * $locations = $fileService->locations; - * - */ -class Google_Service_CloudFilestore_Resource_ProjectsLocations extends Google_Service_Resource -{ - /** - * Gets information about a location. (locations.get) - * - * @param string $name Resource name for the location. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudFilestore_Location - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudFilestore_Location"); - } - /** - * Lists information about the supported locations for this service. - * (locations.listProjectsLocations) - * - * @param string $name The resource that owns the locations collection, if - * applicable. - * @param array $optParams Optional parameters. - * - * @opt_param string filter The standard list filter. - * @opt_param bool includeUnrevealedLocations If true, the returned list will - * include locations which are not yet revealed. - * @opt_param string pageToken The standard list page token. - * @opt_param int pageSize The standard list page size. - * @return Google_Service_CloudFilestore_ListLocationsResponse - */ - public function listProjectsLocations($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudFilestore_ListLocationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/Resource/ProjectsLocationsInstances.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/Resource/ProjectsLocationsInstances.php deleted file mode 100644 index 3fe903cc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/Resource/ProjectsLocationsInstances.php +++ /dev/null @@ -1,121 +0,0 @@ - - * $fileService = new Google_Service_CloudFilestore(...); - * $instances = $fileService->instances; - * - */ -class Google_Service_CloudFilestore_Resource_ProjectsLocationsInstances extends Google_Service_Resource -{ - /** - * Creates an instance. (instances.create) - * - * @param string $parent The instance's project and location, in the format - * projects/{project_id}/locations/{location}. In Cloud Filestore, locations map - * to GCP zones, for example **us-west1-b**. - * @param Google_Service_CloudFilestore_Instance $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string instanceId The name of the instance to create. The name - * must be unique for the specified project and location. - * @return Google_Service_CloudFilestore_Operation - */ - public function create($parent, Google_Service_CloudFilestore_Instance $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_CloudFilestore_Operation"); - } - /** - * Deletes an instance. (instances.delete) - * - * @param string $name The instance resource name, in the format - * projects/{project_id}/locations/{location}/instances/{instance_id} - * @param array $optParams Optional parameters. - * @return Google_Service_CloudFilestore_Operation - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudFilestore_Operation"); - } - /** - * Gets the details of a specific instance. (instances.get) - * - * @param string $name The instance resource name, in the format - * projects/{project_id}/locations/{location}/instances/{instance_id}. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudFilestore_Instance - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudFilestore_Instance"); - } - /** - * Lists all instances in a project for either a specified location or for all - * locations. (instances.listProjectsLocationsInstances) - * - * @param string $parent The project and location for which to retrieve instance - * information, in the format projects/{project_id}/locations/{location}. In - * Cloud Filestore, locations map to GCP zones, for example **us-west1-b**. To - * retrieve instance information for all locations, use "-" for the {location} - * value. - * @param array $optParams Optional parameters. - * - * @opt_param string filter List filter. - * @opt_param string pageToken The next_page_token value to use if there are - * additional results to retrieve for this list request. - * @opt_param string orderBy Sort results. Supported values are "name", "name - * desc" or "" (unsorted). - * @opt_param int pageSize The maximum number of items to return. - * @return Google_Service_CloudFilestore_ListInstancesResponse - */ - public function listProjectsLocationsInstances($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudFilestore_ListInstancesResponse"); - } - /** - * Updates the settings of a specific instance. (instances.patch) - * - * @param string $name Output only. The resource name of the instance, in the - * format projects/{project_id}/locations/{location_id}/instances/{instance_id}. - * @param Google_Service_CloudFilestore_Instance $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Mask of fields to update. At least one path - * must be supplied in this field. The elements of the repeated paths field may - * only include these fields: - * - * * "description" * "file_shares" * "labels" - * @return Google_Service_CloudFilestore_Operation - */ - public function patch($name, Google_Service_CloudFilestore_Instance $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_CloudFilestore_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/Resource/ProjectsLocationsOperations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/Resource/ProjectsLocationsOperations.php deleted file mode 100644 index a1a28f5d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/Resource/ProjectsLocationsOperations.php +++ /dev/null @@ -1,108 +0,0 @@ - - * $fileService = new Google_Service_CloudFilestore(...); - * $operations = $fileService->operations; - * - */ -class Google_Service_CloudFilestore_Resource_ProjectsLocationsOperations extends Google_Service_Resource -{ - /** - * Starts asynchronous cancellation on a long-running operation. The server - * makes a best effort to cancel the operation, but success is not guaranteed. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or - * other methods to check whether the cancellation succeeded or whether the - * operation completed despite cancellation. On successful cancellation, the - * operation is not deleted; instead, it becomes an operation with an - * Operation.error value with a google.rpc.Status.code of 1, corresponding to - * `Code.CANCELLED`. (operations.cancel) - * - * @param string $name The name of the operation resource to be cancelled. - * @param Google_Service_CloudFilestore_CancelOperationRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudFilestore_FileEmpty - */ - public function cancel($name, Google_Service_CloudFilestore_CancelOperationRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('cancel', array($params), "Google_Service_CloudFilestore_FileEmpty"); - } - /** - * Deletes a long-running operation. This method indicates that the client is no - * longer interested in the operation result. It does not cancel the operation. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. (operations.delete) - * - * @param string $name The name of the operation resource to be deleted. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudFilestore_FileEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudFilestore_FileEmpty"); - } - /** - * Gets the latest state of a long-running operation. Clients can use this - * method to poll the operation result at intervals as recommended by the API - * service. (operations.get) - * - * @param string $name The name of the operation resource. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudFilestore_Operation - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudFilestore_Operation"); - } - /** - * Lists operations that match the specified filter in the request. If the - * server doesn't support this method, it returns `UNIMPLEMENTED`. - * - * NOTE: the `name` binding allows API services to override the binding to use - * different resource name schemes, such as `users/operations`. To override the - * binding, API services can add a binding such as - * `"/v1/{name=users}/operations"` to their service configuration. For backwards - * compatibility, the default name includes the operations collection id, - * however overriding users must ensure the name binding is the parent resource, - * without the operations collection id. - * (operations.listProjectsLocationsOperations) - * - * @param string $name The name of the operation's parent resource. - * @param array $optParams Optional parameters. - * - * @opt_param string filter The standard list filter. - * @opt_param string pageToken The standard list page token. - * @opt_param int pageSize The standard list page size. - * @return Google_Service_CloudFilestore_ListOperationsResponse - */ - public function listProjectsLocationsOperations($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudFilestore_ListOperationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/Status.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/Status.php deleted file mode 100644 index 4ceea2f4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFilestore/Status.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions.php deleted file mode 100644 index d65df95b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions.php +++ /dev/null @@ -1,266 +0,0 @@ - - * Manages lightweight user-provided functions executed in response to events.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_CloudFunctions extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - - public $operations; - public $projects_locations; - public $projects_locations_functions; - - /** - * Constructs the internal representation of the CloudFunctions service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://cloudfunctions.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'cloudfunctions'; - - $this->operations = new Google_Service_CloudFunctions_Resource_Operations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/operations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_locations = new Google_Service_CloudFunctions_Resource_ProjectsLocations( - $this, - $this->serviceName, - 'locations', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1/{+name}/locations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_locations_functions = new Google_Service_CloudFunctions_Resource_ProjectsLocationsFunctions( - $this, - $this->serviceName, - 'functions', - array( - 'methods' => array( - 'call' => array( - 'path' => 'v1/{+name}:call', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'create' => array( - 'path' => 'v1/{+location}/functions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'location' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'generateDownloadUrl' => array( - 'path' => 'v1/{+name}:generateDownloadUrl', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'generateUploadUrl' => array( - 'path' => 'v1/{+parent}/functions:generateUploadUrl', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getIamPolicy' => array( - 'path' => 'v1/{+resource}:getIamPolicy', - 'httpMethod' => 'GET', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'options.requestedPolicyVersion' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/functions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setIamPolicy' => array( - 'path' => 'v1/{+resource}:setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => 'v1/{+resource}:testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/AuditConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/AuditConfig.php deleted file mode 100644 index 6715fac5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/AuditConfig.php +++ /dev/null @@ -1,47 +0,0 @@ -auditLogConfigs = $auditLogConfigs; - } - /** - * @return Google_Service_CloudFunctions_AuditLogConfig - */ - public function getAuditLogConfigs() - { - return $this->auditLogConfigs; - } - public function setService($service) - { - $this->service = $service; - } - public function getService() - { - return $this->service; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/AuditLogConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/AuditLogConfig.php deleted file mode 100644 index c720fb5b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/AuditLogConfig.php +++ /dev/null @@ -1,40 +0,0 @@ -exemptedMembers = $exemptedMembers; - } - public function getExemptedMembers() - { - return $this->exemptedMembers; - } - public function setLogType($logType) - { - $this->logType = $logType; - } - public function getLogType() - { - return $this->logType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/Binding.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/Binding.php deleted file mode 100644 index 4f933750..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/Binding.php +++ /dev/null @@ -1,56 +0,0 @@ -condition = $condition; - } - /** - * @return Google_Service_CloudFunctions_Expr - */ - public function getCondition() - { - return $this->condition; - } - public function setMembers($members) - { - $this->members = $members; - } - public function getMembers() - { - return $this->members; - } - public function setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/CallFunctionRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/CallFunctionRequest.php deleted file mode 100644 index 6962e6c9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/CallFunctionRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -data = $data; - } - public function getData() - { - return $this->data; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/CallFunctionResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/CallFunctionResponse.php deleted file mode 100644 index 1c663463..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/CallFunctionResponse.php +++ /dev/null @@ -1,48 +0,0 @@ -error = $error; - } - public function getError() - { - return $this->error; - } - public function setExecutionId($executionId) - { - $this->executionId = $executionId; - } - public function getExecutionId() - { - return $this->executionId; - } - public function setResult($result) - { - $this->result = $result; - } - public function getResult() - { - return $this->result; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/CloudFunction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/CloudFunction.php deleted file mode 100644 index 0ee845d2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/CloudFunction.php +++ /dev/null @@ -1,240 +0,0 @@ -availableMemoryMb = $availableMemoryMb; - } - public function getAvailableMemoryMb() - { - return $this->availableMemoryMb; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setEntryPoint($entryPoint) - { - $this->entryPoint = $entryPoint; - } - public function getEntryPoint() - { - return $this->entryPoint; - } - public function setEnvironmentVariables($environmentVariables) - { - $this->environmentVariables = $environmentVariables; - } - public function getEnvironmentVariables() - { - return $this->environmentVariables; - } - /** - * @param Google_Service_CloudFunctions_EventTrigger - */ - public function setEventTrigger(Google_Service_CloudFunctions_EventTrigger $eventTrigger) - { - $this->eventTrigger = $eventTrigger; - } - /** - * @return Google_Service_CloudFunctions_EventTrigger - */ - public function getEventTrigger() - { - return $this->eventTrigger; - } - /** - * @param Google_Service_CloudFunctions_HttpsTrigger - */ - public function setHttpsTrigger(Google_Service_CloudFunctions_HttpsTrigger $httpsTrigger) - { - $this->httpsTrigger = $httpsTrigger; - } - /** - * @return Google_Service_CloudFunctions_HttpsTrigger - */ - public function getHttpsTrigger() - { - return $this->httpsTrigger; - } - public function setIngressSettings($ingressSettings) - { - $this->ingressSettings = $ingressSettings; - } - public function getIngressSettings() - { - return $this->ingressSettings; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setMaxInstances($maxInstances) - { - $this->maxInstances = $maxInstances; - } - public function getMaxInstances() - { - return $this->maxInstances; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNetwork($network) - { - $this->network = $network; - } - public function getNetwork() - { - return $this->network; - } - public function setRuntime($runtime) - { - $this->runtime = $runtime; - } - public function getRuntime() - { - return $this->runtime; - } - public function setServiceAccountEmail($serviceAccountEmail) - { - $this->serviceAccountEmail = $serviceAccountEmail; - } - public function getServiceAccountEmail() - { - return $this->serviceAccountEmail; - } - public function setSourceArchiveUrl($sourceArchiveUrl) - { - $this->sourceArchiveUrl = $sourceArchiveUrl; - } - public function getSourceArchiveUrl() - { - return $this->sourceArchiveUrl; - } - /** - * @param Google_Service_CloudFunctions_SourceRepository - */ - public function setSourceRepository(Google_Service_CloudFunctions_SourceRepository $sourceRepository) - { - $this->sourceRepository = $sourceRepository; - } - /** - * @return Google_Service_CloudFunctions_SourceRepository - */ - public function getSourceRepository() - { - return $this->sourceRepository; - } - public function setSourceUploadUrl($sourceUploadUrl) - { - $this->sourceUploadUrl = $sourceUploadUrl; - } - public function getSourceUploadUrl() - { - return $this->sourceUploadUrl; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setTimeout($timeout) - { - $this->timeout = $timeout; - } - public function getTimeout() - { - return $this->timeout; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } - public function setVersionId($versionId) - { - $this->versionId = $versionId; - } - public function getVersionId() - { - return $this->versionId; - } - public function setVpcConnector($vpcConnector) - { - $this->vpcConnector = $vpcConnector; - } - public function getVpcConnector() - { - return $this->vpcConnector; - } - public function setVpcConnectorEgressSettings($vpcConnectorEgressSettings) - { - $this->vpcConnectorEgressSettings = $vpcConnectorEgressSettings; - } - public function getVpcConnectorEgressSettings() - { - return $this->vpcConnectorEgressSettings; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/EventTrigger.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/EventTrigger.php deleted file mode 100644 index 6973c79e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/EventTrigger.php +++ /dev/null @@ -1,64 +0,0 @@ -eventType = $eventType; - } - public function getEventType() - { - return $this->eventType; - } - /** - * @param Google_Service_CloudFunctions_FailurePolicy - */ - public function setFailurePolicy(Google_Service_CloudFunctions_FailurePolicy $failurePolicy) - { - $this->failurePolicy = $failurePolicy; - } - /** - * @return Google_Service_CloudFunctions_FailurePolicy - */ - public function getFailurePolicy() - { - return $this->failurePolicy; - } - public function setResource($resource) - { - $this->resource = $resource; - } - public function getResource() - { - return $this->resource; - } - public function setService($service) - { - $this->service = $service; - } - public function getService() - { - return $this->service; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/Expr.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/Expr.php deleted file mode 100644 index dbb66362..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/Expr.php +++ /dev/null @@ -1,57 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setExpression($expression) - { - $this->expression = $expression; - } - public function getExpression() - { - return $this->expression; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/FailurePolicy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/FailurePolicy.php deleted file mode 100644 index 232dca22..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/FailurePolicy.php +++ /dev/null @@ -1,37 +0,0 @@ -retry = $retry; - } - /** - * @return Google_Service_CloudFunctions_Retry - */ - public function getRetry() - { - return $this->retry; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/GenerateDownloadUrlRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/GenerateDownloadUrlRequest.php deleted file mode 100644 index e75764a4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/GenerateDownloadUrlRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -versionId = $versionId; - } - public function getVersionId() - { - return $this->versionId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/GenerateDownloadUrlResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/GenerateDownloadUrlResponse.php deleted file mode 100644 index 999d9603..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/GenerateDownloadUrlResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -downloadUrl = $downloadUrl; - } - public function getDownloadUrl() - { - return $this->downloadUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/GenerateUploadUrlRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/GenerateUploadUrlRequest.php deleted file mode 100644 index b8623ca4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/GenerateUploadUrlRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -uploadUrl = $uploadUrl; - } - public function getUploadUrl() - { - return $this->uploadUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/HttpsTrigger.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/HttpsTrigger.php deleted file mode 100644 index 63c9862d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/HttpsTrigger.php +++ /dev/null @@ -1,30 +0,0 @@ -url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/ListFunctionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/ListFunctionsResponse.php deleted file mode 100644 index 3dab4471..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/ListFunctionsResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -functions = $functions; - } - /** - * @return Google_Service_CloudFunctions_CloudFunction - */ - public function getFunctions() - { - return $this->functions; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setUnreachable($unreachable) - { - $this->unreachable = $unreachable; - } - public function getUnreachable() - { - return $this->unreachable; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/ListLocationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/ListLocationsResponse.php deleted file mode 100644 index fd9295e8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/ListLocationsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -locations = $locations; - } - /** - * @return Google_Service_CloudFunctions_Location - */ - public function getLocations() - { - return $this->locations; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/ListOperationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/ListOperationsResponse.php deleted file mode 100644 index 95d61442..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/ListOperationsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_CloudFunctions_Operation - */ - public function setOperations($operations) - { - $this->operations = $operations; - } - /** - * @return Google_Service_CloudFunctions_Operation - */ - public function getOperations() - { - return $this->operations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/Location.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/Location.php deleted file mode 100644 index 03570bb3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/Location.php +++ /dev/null @@ -1,66 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setLocationId($locationId) - { - $this->locationId = $locationId; - } - public function getLocationId() - { - return $this->locationId; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/Operation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/Operation.php deleted file mode 100644 index a64e1d56..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/Operation.php +++ /dev/null @@ -1,73 +0,0 @@ -done = $done; - } - public function getDone() - { - return $this->done; - } - /** - * @param Google_Service_CloudFunctions_Status - */ - public function setError(Google_Service_CloudFunctions_Status $error) - { - $this->error = $error; - } - /** - * @return Google_Service_CloudFunctions_Status - */ - public function getError() - { - return $this->error; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/OperationMetadataV1.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/OperationMetadataV1.php deleted file mode 100644 index 5f26f97d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/OperationMetadataV1.php +++ /dev/null @@ -1,66 +0,0 @@ -request = $request; - } - public function getRequest() - { - return $this->request; - } - public function setTarget($target) - { - $this->target = $target; - } - public function getTarget() - { - return $this->target; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } - public function setVersionId($versionId) - { - $this->versionId = $versionId; - } - public function getVersionId() - { - return $this->versionId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/OperationMetadataV1Beta2.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/OperationMetadataV1Beta2.php deleted file mode 100644 index 1548de70..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/OperationMetadataV1Beta2.php +++ /dev/null @@ -1,66 +0,0 @@ -request = $request; - } - public function getRequest() - { - return $this->request; - } - public function setTarget($target) - { - $this->target = $target; - } - public function getTarget() - { - return $this->target; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } - public function setVersionId($versionId) - { - $this->versionId = $versionId; - } - public function getVersionId() - { - return $this->versionId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/Policy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/Policy.php deleted file mode 100644 index 013e9dfe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/Policy.php +++ /dev/null @@ -1,72 +0,0 @@ -auditConfigs = $auditConfigs; - } - /** - * @return Google_Service_CloudFunctions_AuditConfig - */ - public function getAuditConfigs() - { - return $this->auditConfigs; - } - /** - * @param Google_Service_CloudFunctions_Binding - */ - public function setBindings($bindings) - { - $this->bindings = $bindings; - } - /** - * @return Google_Service_CloudFunctions_Binding - */ - public function getBindings() - { - return $this->bindings; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/Resource/Operations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/Resource/Operations.php deleted file mode 100644 index 2b4d81b2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/Resource/Operations.php +++ /dev/null @@ -1,77 +0,0 @@ - - * $cloudfunctionsService = new Google_Service_CloudFunctions(...); - * $operations = $cloudfunctionsService->operations; - * - */ -class Google_Service_CloudFunctions_Resource_Operations extends Google_Service_Resource -{ - /** - * Gets the latest state of a long-running operation. Clients can use this - * method to poll the operation result at intervals as recommended by the API - * service. (operations.get) - * - * @param string $name The name of the operation resource. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudFunctions_Operation - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudFunctions_Operation"); - } - /** - * Lists operations that match the specified filter in the request. If the - * server doesn't support this method, it returns `UNIMPLEMENTED`. - * - * NOTE: the `name` binding allows API services to override the binding to use - * different resource name schemes, such as `users/operations`. To override the - * binding, API services can add a binding such as - * `"/v1/{name=users}/operations"` to their service configuration. For backwards - * compatibility, the default name includes the operations collection id, - * however overriding users must ensure the name binding is the parent resource, - * without the operations collection id. (operations.listOperations) - * - * @param array $optParams Optional parameters. - * - * @opt_param string name Must not be set. - * @opt_param string pageToken Token identifying which result to start with, - * which is returned by a previous list call. Pagination is only supported when - * querying for a specific function. - * @opt_param int pageSize The maximum number of records that should be - * returned. Requested page size cannot exceed 100. If not set, the default page - * size is 100. Pagination is only supported when querying for a specific - * function. - * @opt_param string filter Required. A filter for matching the requested - * operations. The supported formats of filter are: To query for a specific - * function: project:*,location:*,function:* To query for all of the latest - * operations for a project: project:*,latest:true - * @return Google_Service_CloudFunctions_ListOperationsResponse - */ - public function listOperations($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudFunctions_ListOperationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/Resource/Projects.php deleted file mode 100644 index 99e827f7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/Resource/Projects.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $cloudfunctionsService = new Google_Service_CloudFunctions(...); - * $projects = $cloudfunctionsService->projects; - * - */ -class Google_Service_CloudFunctions_Resource_Projects extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/Resource/ProjectsLocations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/Resource/ProjectsLocations.php deleted file mode 100644 index e4bc81bb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/Resource/ProjectsLocations.php +++ /dev/null @@ -1,47 +0,0 @@ - - * $cloudfunctionsService = new Google_Service_CloudFunctions(...); - * $locations = $cloudfunctionsService->locations; - * - */ -class Google_Service_CloudFunctions_Resource_ProjectsLocations extends Google_Service_Resource -{ - /** - * Lists information about the supported locations for this service. - * (locations.listProjectsLocations) - * - * @param string $name The resource that owns the locations collection, if - * applicable. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The standard list page token. - * @opt_param int pageSize The standard list page size. - * @opt_param string filter The standard list filter. - * @return Google_Service_CloudFunctions_ListLocationsResponse - */ - public function listProjectsLocations($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudFunctions_ListLocationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/Resource/ProjectsLocationsFunctions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/Resource/ProjectsLocationsFunctions.php deleted file mode 100644 index dd5a35b7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/Resource/ProjectsLocationsFunctions.php +++ /dev/null @@ -1,256 +0,0 @@ - - * $cloudfunctionsService = new Google_Service_CloudFunctions(...); - * $functions = $cloudfunctionsService->functions; - * - */ -class Google_Service_CloudFunctions_Resource_ProjectsLocationsFunctions extends Google_Service_Resource -{ - /** - * Synchronously invokes a deployed Cloud Function. To be used for testing - * purposes as very limited traffic is allowed. For more information on the - * actual limits, refer to [Rate - * Limits](https://cloud.google.com/functions/quotas#rate_limits). - * (functions.callProjectsLocationsFunctions) - * - * @param string $name Required. The name of the function to be called. - * @param Google_Service_CloudFunctions_CallFunctionRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudFunctions_CallFunctionResponse - */ - public function callProjectsLocationsFunctions($name, Google_Service_CloudFunctions_CallFunctionRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('call', array($params), "Google_Service_CloudFunctions_CallFunctionResponse"); - } - /** - * Creates a new function. If a function with the given name already exists in - * the specified project, the long running operation will return - * `ALREADY_EXISTS` error. (functions.create) - * - * @param string $location Required. The project and location in which the - * function should be created, specified in the format `projects/locations` - * @param Google_Service_CloudFunctions_CloudFunction $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudFunctions_Operation - */ - public function create($location, Google_Service_CloudFunctions_CloudFunction $postBody, $optParams = array()) - { - $params = array('location' => $location, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_CloudFunctions_Operation"); - } - /** - * Deletes a function with the given name from the specified project. If the - * given function is used by some trigger, the trigger will be updated to remove - * this function. (functions.delete) - * - * @param string $name Required. The name of the function which should be - * deleted. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudFunctions_Operation - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudFunctions_Operation"); - } - /** - * Returns a signed URL for downloading deployed function source code. The URL - * is only valid for a limited period and should be used within minutes after - * generation. For more information about the signed URL usage see: - * https://cloud.google.com/storage/docs/access-control/signed-urls - * (functions.generateDownloadUrl) - * - * @param string $name The name of function for which source code Google Cloud - * Storage signed URL should be generated. - * @param Google_Service_CloudFunctions_GenerateDownloadUrlRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudFunctions_GenerateDownloadUrlResponse - */ - public function generateDownloadUrl($name, Google_Service_CloudFunctions_GenerateDownloadUrlRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('generateDownloadUrl', array($params), "Google_Service_CloudFunctions_GenerateDownloadUrlResponse"); - } - /** - * Returns a signed URL for uploading a function source code. For more - * information about the signed URL usage see: - * https://cloud.google.com/storage/docs/access-control/signed-urls. Once the - * function source code upload is complete, the used signed URL should be - * provided in CreateFunction or UpdateFunction request as a reference to the - * function source code. - * - * When uploading source code to the generated signed URL, please follow these - * restrictions: - * - * * Source file type should be a zip file. * Source file size should not exceed - * 100MB limit. * No credentials should be attached - the signed URLs provide - * access to the target bucket using internal service identity; if credentials - * were attached, the identity from the credentials would be used, but that - * identity does not have permissions to upload files to the URL. - * - * When making a HTTP PUT request, these two headers need to be specified: - * - * * `content-type: application/zip` * `x-goog-content-length-range: - * 0,104857600` - * - * And this header SHOULD NOT be specified: - * - * * `Authorization: Bearer YOUR_TOKEN` (functions.generateUploadUrl) - * - * @param string $parent The project and location in which the Google Cloud - * Storage signed URL should be generated, specified in the format - * `projects/locations`. - * @param Google_Service_CloudFunctions_GenerateUploadUrlRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudFunctions_GenerateUploadUrlResponse - */ - public function generateUploadUrl($parent, Google_Service_CloudFunctions_GenerateUploadUrlRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('generateUploadUrl', array($params), "Google_Service_CloudFunctions_GenerateUploadUrlResponse"); - } - /** - * Returns a function with the given name from the requested project. - * (functions.get) - * - * @param string $name Required. The name of the function which details should - * be obtained. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudFunctions_CloudFunction - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudFunctions_CloudFunction"); - } - /** - * Gets the IAM access control policy for a function. Returns an empty policy if - * the function exists and does not have a policy set. (functions.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. - * @return Google_Service_CloudFunctions_Policy - */ - public function getIamPolicy($resource, $optParams = array()) - { - $params = array('resource' => $resource); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_CloudFunctions_Policy"); - } - /** - * Returns a list of functions that belong to the requested project. - * (functions.listProjectsLocationsFunctions) - * - * @param string $parent The project and location from which the function should - * be listed, specified in the format `projects/locations` If you want to list - * functions in all locations, use "-" in place of a location. When listing - * functions in all locations, if one or more location(s) are unreachable, the - * response will contain functions from all reachable locations along with the - * names of any unreachable locations. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The value returned by the last - * `ListFunctionsResponse`; indicates that this is a continuation of a prior - * `ListFunctions` call, and that the system should return the next page of - * data. - * @opt_param int pageSize Maximum number of functions to return per call. - * @return Google_Service_CloudFunctions_ListFunctionsResponse - */ - public function listProjectsLocationsFunctions($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudFunctions_ListFunctionsResponse"); - } - /** - * Updates existing function. (functions.patch) - * - * @param string $name A user-defined name of the function. Function names must - * be unique globally and match pattern `projects/locations/functions` - * @param Google_Service_CloudFunctions_CloudFunction $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Required list of fields to be updated in this - * request. - * @return Google_Service_CloudFunctions_Operation - */ - public function patch($name, Google_Service_CloudFunctions_CloudFunction $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_CloudFunctions_Operation"); - } - /** - * Sets the IAM access control policy on the specified function. Replaces any - * existing policy. (functions.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_CloudFunctions_SetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudFunctions_Policy - */ - public function setIamPolicy($resource, Google_Service_CloudFunctions_SetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_CloudFunctions_Policy"); - } - /** - * Tests the specified permissions against the IAM access control policy for a - * function. If the function does not exist, this will return an empty set of - * permissions, not a NOT_FOUND error. (functions.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_CloudFunctions_TestIamPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudFunctions_TestIamPermissionsResponse - */ - public function testIamPermissions($resource, Google_Service_CloudFunctions_TestIamPermissionsRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_CloudFunctions_TestIamPermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/Retry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/Retry.php deleted file mode 100644 index cc1bf0d4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/Retry.php +++ /dev/null @@ -1,20 +0,0 @@ -policy = $policy; - } - /** - * @return Google_Service_CloudFunctions_Policy - */ - public function getPolicy() - { - return $this->policy; - } - public function setUpdateMask($updateMask) - { - $this->updateMask = $updateMask; - } - public function getUpdateMask() - { - return $this->updateMask; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/SourceRepository.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/SourceRepository.php deleted file mode 100644 index 18619fe8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/SourceRepository.php +++ /dev/null @@ -1,39 +0,0 @@ -deployedUrl = $deployedUrl; - } - public function getDeployedUrl() - { - return $this->deployedUrl; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/Status.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/Status.php deleted file mode 100644 index 11ca8b91..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/Status.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/TestIamPermissionsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/TestIamPermissionsRequest.php deleted file mode 100644 index 8c76b968..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/TestIamPermissionsRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/TestIamPermissionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/TestIamPermissionsResponse.php deleted file mode 100644 index 7c4f761c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudFunctions/TestIamPermissionsResponse.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare.php deleted file mode 100644 index ddade1ca..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare.php +++ /dev/null @@ -1,1377 +0,0 @@ - - * Manage, store, and access healthcare data in Google Cloud Platform.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_CloudHealthcare extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - - public $projects_locations; - public $projects_locations_datasets; - public $projects_locations_datasets_annotationStores; - public $projects_locations_datasets_dicomStores; - public $projects_locations_datasets_dicomStores_studies; - public $projects_locations_datasets_dicomStores_studies_series; - public $projects_locations_datasets_dicomStores_studies_series_instances; - public $projects_locations_datasets_dicomStores_studies_series_instances_frames; - public $projects_locations_datasets_fhirStores; - public $projects_locations_datasets_fhirStores_fhir; - public $projects_locations_datasets_hl7V2Stores; - public $projects_locations_datasets_hl7V2Stores_messages; - public $projects_locations_datasets_operations; - - /** - * Constructs the internal representation of the CloudHealthcare service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://healthcare.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1beta1'; - $this->serviceName = 'healthcare'; - - $this->projects_locations = new Google_Service_CloudHealthcare_Resource_ProjectsLocations( - $this, - $this->serviceName, - 'locations', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1beta1/{+name}/locations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->projects_locations_datasets = new Google_Service_CloudHealthcare_Resource_ProjectsLocationsDatasets( - $this, - $this->serviceName, - 'datasets', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1beta1/{+parent}/datasets', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'datasetId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'deidentify' => array( - 'path' => 'v1beta1/{+sourceDataset}:deidentify', - 'httpMethod' => 'POST', - 'parameters' => array( - 'sourceDataset' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getIamPolicy' => array( - 'path' => 'v1beta1/{+resource}:getIamPolicy', - 'httpMethod' => 'GET', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'options.requestedPolicyVersion' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'list' => array( - 'path' => 'v1beta1/{+parent}/datasets', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setIamPolicy' => array( - 'path' => 'v1beta1/{+resource}:setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => 'v1beta1/{+resource}:testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_locations_datasets_annotationStores = new Google_Service_CloudHealthcare_Resource_ProjectsLocationsDatasetsAnnotationStores( - $this, - $this->serviceName, - 'annotationStores', - array( - 'methods' => array( - 'getIamPolicy' => array( - 'path' => 'v1beta1/{+resource}:getIamPolicy', - 'httpMethod' => 'GET', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'options.requestedPolicyVersion' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'setIamPolicy' => array( - 'path' => 'v1beta1/{+resource}:setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => 'v1beta1/{+resource}:testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_locations_datasets_dicomStores = new Google_Service_CloudHealthcare_Resource_ProjectsLocationsDatasetsDicomStores( - $this, - $this->serviceName, - 'dicomStores', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1beta1/{+parent}/dicomStores', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'dicomStoreId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'deidentify' => array( - 'path' => 'v1beta1/{+sourceStore}:deidentify', - 'httpMethod' => 'POST', - 'parameters' => array( - 'sourceStore' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'export' => array( - 'path' => 'v1beta1/{+name}:export', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getIamPolicy' => array( - 'path' => 'v1beta1/{+resource}:getIamPolicy', - 'httpMethod' => 'GET', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'options.requestedPolicyVersion' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'import' => array( - 'path' => 'v1beta1/{+name}:import', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1beta1/{+parent}/dicomStores', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'searchForInstances' => array( - 'path' => 'v1beta1/{+parent}/dicomWeb/{+dicomWebPath}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'dicomWebPath' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'searchForSeries' => array( - 'path' => 'v1beta1/{+parent}/dicomWeb/{+dicomWebPath}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'dicomWebPath' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'searchForStudies' => array( - 'path' => 'v1beta1/{+parent}/dicomWeb/{+dicomWebPath}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'dicomWebPath' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setIamPolicy' => array( - 'path' => 'v1beta1/{+resource}:setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'storeInstances' => array( - 'path' => 'v1beta1/{+parent}/dicomWeb/{+dicomWebPath}', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'dicomWebPath' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => 'v1beta1/{+resource}:testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_locations_datasets_dicomStores_studies = new Google_Service_CloudHealthcare_Resource_ProjectsLocationsDatasetsDicomStoresStudies( - $this, - $this->serviceName, - 'studies', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'v1beta1/{+parent}/dicomWeb/{+dicomWebPath}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'dicomWebPath' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'retrieveMetadata' => array( - 'path' => 'v1beta1/{+parent}/dicomWeb/{+dicomWebPath}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'dicomWebPath' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'retrieveStudy' => array( - 'path' => 'v1beta1/{+parent}/dicomWeb/{+dicomWebPath}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'dicomWebPath' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'searchForInstances' => array( - 'path' => 'v1beta1/{+parent}/dicomWeb/{+dicomWebPath}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'dicomWebPath' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'searchForSeries' => array( - 'path' => 'v1beta1/{+parent}/dicomWeb/{+dicomWebPath}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'dicomWebPath' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'storeInstances' => array( - 'path' => 'v1beta1/{+parent}/dicomWeb/{+dicomWebPath}', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'dicomWebPath' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_locations_datasets_dicomStores_studies_series = new Google_Service_CloudHealthcare_Resource_ProjectsLocationsDatasetsDicomStoresStudiesSeries( - $this, - $this->serviceName, - 'series', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'v1beta1/{+parent}/dicomWeb/{+dicomWebPath}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'dicomWebPath' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'retrieveMetadata' => array( - 'path' => 'v1beta1/{+parent}/dicomWeb/{+dicomWebPath}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'dicomWebPath' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'retrieveSeries' => array( - 'path' => 'v1beta1/{+parent}/dicomWeb/{+dicomWebPath}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'dicomWebPath' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'searchForInstances' => array( - 'path' => 'v1beta1/{+parent}/dicomWeb/{+dicomWebPath}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'dicomWebPath' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_locations_datasets_dicomStores_studies_series_instances = new Google_Service_CloudHealthcare_Resource_ProjectsLocationsDatasetsDicomStoresStudiesSeriesInstances( - $this, - $this->serviceName, - 'instances', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'v1beta1/{+parent}/dicomWeb/{+dicomWebPath}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'dicomWebPath' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'retrieveInstance' => array( - 'path' => 'v1beta1/{+parent}/dicomWeb/{+dicomWebPath}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'dicomWebPath' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'retrieveMetadata' => array( - 'path' => 'v1beta1/{+parent}/dicomWeb/{+dicomWebPath}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'dicomWebPath' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'retrieveRendered' => array( - 'path' => 'v1beta1/{+parent}/dicomWeb/{+dicomWebPath}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'dicomWebPath' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_locations_datasets_dicomStores_studies_series_instances_frames = new Google_Service_CloudHealthcare_Resource_ProjectsLocationsDatasetsDicomStoresStudiesSeriesInstancesFrames( - $this, - $this->serviceName, - 'frames', - array( - 'methods' => array( - 'retrieveFrames' => array( - 'path' => 'v1beta1/{+parent}/dicomWeb/{+dicomWebPath}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'dicomWebPath' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'retrieveRendered' => array( - 'path' => 'v1beta1/{+parent}/dicomWeb/{+dicomWebPath}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'dicomWebPath' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_locations_datasets_fhirStores = new Google_Service_CloudHealthcare_Resource_ProjectsLocationsDatasetsFhirStores( - $this, - $this->serviceName, - 'fhirStores', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1beta1/{+parent}/fhirStores', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'fhirStoreId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'deidentify' => array( - 'path' => 'v1beta1/{+sourceStore}:deidentify', - 'httpMethod' => 'POST', - 'parameters' => array( - 'sourceStore' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'export' => array( - 'path' => 'v1beta1/{+name}:export', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getIamPolicy' => array( - 'path' => 'v1beta1/{+resource}:getIamPolicy', - 'httpMethod' => 'GET', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'options.requestedPolicyVersion' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'import' => array( - 'path' => 'v1beta1/{+name}:import', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1beta1/{+parent}/fhirStores', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setIamPolicy' => array( - 'path' => 'v1beta1/{+resource}:setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => 'v1beta1/{+resource}:testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_locations_datasets_fhirStores_fhir = new Google_Service_CloudHealthcare_Resource_ProjectsLocationsDatasetsFhirStoresFhir( - $this, - $this->serviceName, - 'fhir', - array( - 'methods' => array( - 'Observation-lastn' => array( - 'path' => 'v1beta1/{+parent}/fhir/Observation/$lastn', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'Patient-everything' => array( - 'path' => 'v1beta1/{+name}/$everything', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'start' => array( - 'location' => 'query', - 'type' => 'string', - ), - '_page_token' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'end' => array( - 'location' => 'query', - 'type' => 'string', - ), - '_count' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'Resource-purge' => array( - 'path' => 'v1beta1/{+name}/$purge', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'capabilities' => array( - 'path' => 'v1beta1/{+name}/fhir/metadata', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'conditionalDelete' => array( - 'path' => 'v1beta1/{+parent}/fhir/{+type}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'type' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'conditionalPatch' => array( - 'path' => 'v1beta1/{+parent}/fhir/{+type}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'type' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'conditionalUpdate' => array( - 'path' => 'v1beta1/{+parent}/fhir/{+type}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'type' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'create' => array( - 'path' => 'v1beta1/{+parent}/fhir/{+type}', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'type' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'executeBundle' => array( - 'path' => 'v1beta1/{+parent}/fhir', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'history' => array( - 'path' => 'v1beta1/{+name}/_history', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - '_since' => array( - 'location' => 'query', - 'type' => 'string', - ), - '_at' => array( - 'location' => 'query', - 'type' => 'string', - ), - '_page_token' => array( - 'location' => 'query', - 'type' => 'string', - ), - '_count' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'read' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'search' => array( - 'path' => 'v1beta1/{+parent}/fhir/_search', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'vread' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_locations_datasets_hl7V2Stores = new Google_Service_CloudHealthcare_Resource_ProjectsLocationsDatasetsHl7V2Stores( - $this, - $this->serviceName, - 'hl7V2Stores', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1beta1/{+parent}/hl7V2Stores', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'hl7V2StoreId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getIamPolicy' => array( - 'path' => 'v1beta1/{+resource}:getIamPolicy', - 'httpMethod' => 'GET', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'options.requestedPolicyVersion' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'list' => array( - 'path' => 'v1beta1/{+parent}/hl7V2Stores', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setIamPolicy' => array( - 'path' => 'v1beta1/{+resource}:setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => 'v1beta1/{+resource}:testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_locations_datasets_hl7V2Stores_messages = new Google_Service_CloudHealthcare_Resource_ProjectsLocationsDatasetsHl7V2StoresMessages( - $this, - $this->serviceName, - 'messages', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1beta1/{+parent}/messages', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'ingest' => array( - 'path' => 'v1beta1/{+parent}/messages:ingest', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1beta1/{+parent}/messages', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_locations_datasets_operations = new Google_Service_CloudHealthcare_Resource_ProjectsLocationsDatasetsOperations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1beta1/{+name}/operations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/AuditConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/AuditConfig.php deleted file mode 100644 index e7d74ea0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/AuditConfig.php +++ /dev/null @@ -1,47 +0,0 @@ -auditLogConfigs = $auditLogConfigs; - } - /** - * @return Google_Service_CloudHealthcare_AuditLogConfig - */ - public function getAuditLogConfigs() - { - return $this->auditLogConfigs; - } - public function setService($service) - { - $this->service = $service; - } - public function getService() - { - return $this->service; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/AuditLogConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/AuditLogConfig.php deleted file mode 100644 index 4c8b3c06..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/AuditLogConfig.php +++ /dev/null @@ -1,40 +0,0 @@ -exemptedMembers = $exemptedMembers; - } - public function getExemptedMembers() - { - return $this->exemptedMembers; - } - public function setLogType($logType) - { - $this->logType = $logType; - } - public function getLogType() - { - return $this->logType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Binding.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Binding.php deleted file mode 100644 index 8dd8d806..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Binding.php +++ /dev/null @@ -1,56 +0,0 @@ -condition = $condition; - } - /** - * @return Google_Service_CloudHealthcare_Expr - */ - public function getCondition() - { - return $this->condition; - } - public function setMembers($members) - { - $this->members = $members; - } - public function getMembers() - { - return $this->members; - } - public function setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/CharacterMaskConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/CharacterMaskConfig.php deleted file mode 100644 index 82025e9d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/CharacterMaskConfig.php +++ /dev/null @@ -1,30 +0,0 @@ -maskingCharacter = $maskingCharacter; - } - public function getMaskingCharacter() - { - return $this->maskingCharacter; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/CreateMessageRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/CreateMessageRequest.php deleted file mode 100644 index 3010b97e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/CreateMessageRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -message = $message; - } - /** - * @return Google_Service_CloudHealthcare_Message - */ - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/CryptoHashConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/CryptoHashConfig.php deleted file mode 100644 index 2afeff05..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/CryptoHashConfig.php +++ /dev/null @@ -1,30 +0,0 @@ -cryptoKey = $cryptoKey; - } - public function getCryptoKey() - { - return $this->cryptoKey; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Dataset.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Dataset.php deleted file mode 100644 index c044bf03..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Dataset.php +++ /dev/null @@ -1,39 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setTimeZone($timeZone) - { - $this->timeZone = $timeZone; - } - public function getTimeZone() - { - return $this->timeZone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/DateShiftConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/DateShiftConfig.php deleted file mode 100644 index 8640cd5a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/DateShiftConfig.php +++ /dev/null @@ -1,30 +0,0 @@ -cryptoKey = $cryptoKey; - } - public function getCryptoKey() - { - return $this->cryptoKey; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/DeidentifyConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/DeidentifyConfig.php deleted file mode 100644 index 1db352ea..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/DeidentifyConfig.php +++ /dev/null @@ -1,85 +0,0 @@ -dicom = $dicom; - } - /** - * @return Google_Service_CloudHealthcare_DicomConfig - */ - public function getDicom() - { - return $this->dicom; - } - /** - * @param Google_Service_CloudHealthcare_FhirConfig - */ - public function setFhir(Google_Service_CloudHealthcare_FhirConfig $fhir) - { - $this->fhir = $fhir; - } - /** - * @return Google_Service_CloudHealthcare_FhirConfig - */ - public function getFhir() - { - return $this->fhir; - } - /** - * @param Google_Service_CloudHealthcare_ImageConfig - */ - public function setImage(Google_Service_CloudHealthcare_ImageConfig $image) - { - $this->image = $image; - } - /** - * @return Google_Service_CloudHealthcare_ImageConfig - */ - public function getImage() - { - return $this->image; - } - /** - * @param Google_Service_CloudHealthcare_TextConfig - */ - public function setText(Google_Service_CloudHealthcare_TextConfig $text) - { - $this->text = $text; - } - /** - * @return Google_Service_CloudHealthcare_TextConfig - */ - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/DeidentifyDatasetRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/DeidentifyDatasetRequest.php deleted file mode 100644 index 15674bf2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/DeidentifyDatasetRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -config = $config; - } - /** - * @return Google_Service_CloudHealthcare_DeidentifyConfig - */ - public function getConfig() - { - return $this->config; - } - public function setDestinationDataset($destinationDataset) - { - $this->destinationDataset = $destinationDataset; - } - public function getDestinationDataset() - { - return $this->destinationDataset; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/DeidentifyDicomStoreRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/DeidentifyDicomStoreRequest.php deleted file mode 100644 index f67fe289..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/DeidentifyDicomStoreRequest.php +++ /dev/null @@ -1,62 +0,0 @@ -config = $config; - } - /** - * @return Google_Service_CloudHealthcare_DeidentifyConfig - */ - public function getConfig() - { - return $this->config; - } - public function setDestinationStore($destinationStore) - { - $this->destinationStore = $destinationStore; - } - public function getDestinationStore() - { - return $this->destinationStore; - } - /** - * @param Google_Service_CloudHealthcare_DicomFilterConfig - */ - public function setFilterConfig(Google_Service_CloudHealthcare_DicomFilterConfig $filterConfig) - { - $this->filterConfig = $filterConfig; - } - /** - * @return Google_Service_CloudHealthcare_DicomFilterConfig - */ - public function getFilterConfig() - { - return $this->filterConfig; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/DeidentifyErrorDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/DeidentifyErrorDetails.php deleted file mode 100644 index d30ba772..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/DeidentifyErrorDetails.php +++ /dev/null @@ -1,57 +0,0 @@ -failureResourceCount = $failureResourceCount; - } - public function getFailureResourceCount() - { - return $this->failureResourceCount; - } - public function setFailureStoreCount($failureStoreCount) - { - $this->failureStoreCount = $failureStoreCount; - } - public function getFailureStoreCount() - { - return $this->failureStoreCount; - } - public function setSuccessResourceCount($successResourceCount) - { - $this->successResourceCount = $successResourceCount; - } - public function getSuccessResourceCount() - { - return $this->successResourceCount; - } - public function setSuccessStoreCount($successStoreCount) - { - $this->successStoreCount = $successStoreCount; - } - public function getSuccessStoreCount() - { - return $this->successStoreCount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/DeidentifyFhirStoreRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/DeidentifyFhirStoreRequest.php deleted file mode 100644 index b49e00d5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/DeidentifyFhirStoreRequest.php +++ /dev/null @@ -1,62 +0,0 @@ -config = $config; - } - /** - * @return Google_Service_CloudHealthcare_DeidentifyConfig - */ - public function getConfig() - { - return $this->config; - } - public function setDestinationStore($destinationStore) - { - $this->destinationStore = $destinationStore; - } - public function getDestinationStore() - { - return $this->destinationStore; - } - /** - * @param Google_Service_CloudHealthcare_FhirFilter - */ - public function setResourceFilter(Google_Service_CloudHealthcare_FhirFilter $resourceFilter) - { - $this->resourceFilter = $resourceFilter; - } - /** - * @return Google_Service_CloudHealthcare_FhirFilter - */ - public function getResourceFilter() - { - return $this->resourceFilter; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/DeidentifySummary.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/DeidentifySummary.php deleted file mode 100644 index 9292f82f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/DeidentifySummary.php +++ /dev/null @@ -1,48 +0,0 @@ -failureResourceCount = $failureResourceCount; - } - public function getFailureResourceCount() - { - return $this->failureResourceCount; - } - public function setSuccessResourceCount($successResourceCount) - { - $this->successResourceCount = $successResourceCount; - } - public function getSuccessResourceCount() - { - return $this->successResourceCount; - } - public function setSuccessStoreCount($successStoreCount) - { - $this->successStoreCount = $successStoreCount; - } - public function getSuccessStoreCount() - { - return $this->successStoreCount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/DicomConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/DicomConfig.php deleted file mode 100644 index 8b559868..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/DicomConfig.php +++ /dev/null @@ -1,71 +0,0 @@ -filterProfile = $filterProfile; - } - public function getFilterProfile() - { - return $this->filterProfile; - } - /** - * @param Google_Service_CloudHealthcare_TagFilterList - */ - public function setKeepList(Google_Service_CloudHealthcare_TagFilterList $keepList) - { - $this->keepList = $keepList; - } - /** - * @return Google_Service_CloudHealthcare_TagFilterList - */ - public function getKeepList() - { - return $this->keepList; - } - /** - * @param Google_Service_CloudHealthcare_TagFilterList - */ - public function setRemoveList(Google_Service_CloudHealthcare_TagFilterList $removeList) - { - $this->removeList = $removeList; - } - /** - * @return Google_Service_CloudHealthcare_TagFilterList - */ - public function getRemoveList() - { - return $this->removeList; - } - public function setSkipIdRedaction($skipIdRedaction) - { - $this->skipIdRedaction = $skipIdRedaction; - } - public function getSkipIdRedaction() - { - return $this->skipIdRedaction; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/DicomFilterConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/DicomFilterConfig.php deleted file mode 100644 index 89ce30c9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/DicomFilterConfig.php +++ /dev/null @@ -1,30 +0,0 @@ -resourcePathsGcsUri = $resourcePathsGcsUri; - } - public function getResourcePathsGcsUri() - { - return $this->resourcePathsGcsUri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/DicomStore.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/DicomStore.php deleted file mode 100644 index 86f623f0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/DicomStore.php +++ /dev/null @@ -1,55 +0,0 @@ -labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_CloudHealthcare_NotificationConfig - */ - public function setNotificationConfig(Google_Service_CloudHealthcare_NotificationConfig $notificationConfig) - { - $this->notificationConfig = $notificationConfig; - } - /** - * @return Google_Service_CloudHealthcare_NotificationConfig - */ - public function getNotificationConfig() - { - return $this->notificationConfig; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/ErrorDetail.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/ErrorDetail.php deleted file mode 100644 index 8fb1d4d8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/ErrorDetail.php +++ /dev/null @@ -1,46 +0,0 @@ -error = $error; - } - /** - * @return Google_Service_CloudHealthcare_Status - */ - public function getError() - { - return $this->error; - } - public function setResource($resource) - { - $this->resource = $resource; - } - public function getResource() - { - return $this->resource; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/ExportDicomDataRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/ExportDicomDataRequest.php deleted file mode 100644 index 515fdbb4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/ExportDicomDataRequest.php +++ /dev/null @@ -1,53 +0,0 @@ -bigqueryDestination = $bigqueryDestination; - } - /** - * @return Google_Service_CloudHealthcare_GoogleCloudHealthcareV1beta1DicomBigQueryDestination - */ - public function getBigqueryDestination() - { - return $this->bigqueryDestination; - } - /** - * @param Google_Service_CloudHealthcare_GoogleCloudHealthcareV1beta1DicomGcsDestination - */ - public function setGcsDestination(Google_Service_CloudHealthcare_GoogleCloudHealthcareV1beta1DicomGcsDestination $gcsDestination) - { - $this->gcsDestination = $gcsDestination; - } - /** - * @return Google_Service_CloudHealthcare_GoogleCloudHealthcareV1beta1DicomGcsDestination - */ - public function getGcsDestination() - { - return $this->gcsDestination; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/ExportResourcesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/ExportResourcesRequest.php deleted file mode 100644 index 07b56f85..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/ExportResourcesRequest.php +++ /dev/null @@ -1,53 +0,0 @@ -bigqueryDestination = $bigqueryDestination; - } - /** - * @return Google_Service_CloudHealthcare_GoogleCloudHealthcareV1beta1FhirBigQueryDestination - */ - public function getBigqueryDestination() - { - return $this->bigqueryDestination; - } - /** - * @param Google_Service_CloudHealthcare_GoogleCloudHealthcareV1beta1FhirRestGcsDestination - */ - public function setGcsDestination(Google_Service_CloudHealthcare_GoogleCloudHealthcareV1beta1FhirRestGcsDestination $gcsDestination) - { - $this->gcsDestination = $gcsDestination; - } - /** - * @return Google_Service_CloudHealthcare_GoogleCloudHealthcareV1beta1FhirRestGcsDestination - */ - public function getGcsDestination() - { - return $this->gcsDestination; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Expr.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Expr.php deleted file mode 100644 index e03fea1e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Expr.php +++ /dev/null @@ -1,57 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setExpression($expression) - { - $this->expression = $expression; - } - public function getExpression() - { - return $this->expression; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/FhirConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/FhirConfig.php deleted file mode 100644 index c01e2692..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/FhirConfig.php +++ /dev/null @@ -1,38 +0,0 @@ -fieldMetadataList = $fieldMetadataList; - } - /** - * @return Google_Service_CloudHealthcare_FieldMetadata - */ - public function getFieldMetadataList() - { - return $this->fieldMetadataList; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/FhirFilter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/FhirFilter.php deleted file mode 100644 index 6a79329d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/FhirFilter.php +++ /dev/null @@ -1,37 +0,0 @@ -resources = $resources; - } - /** - * @return Google_Service_CloudHealthcare_Resources - */ - public function getResources() - { - return $this->resources; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/FhirStore.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/FhirStore.php deleted file mode 100644 index e698b3f6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/FhirStore.php +++ /dev/null @@ -1,91 +0,0 @@ -disableReferentialIntegrity = $disableReferentialIntegrity; - } - public function getDisableReferentialIntegrity() - { - return $this->disableReferentialIntegrity; - } - public function setDisableResourceVersioning($disableResourceVersioning) - { - $this->disableResourceVersioning = $disableResourceVersioning; - } - public function getDisableResourceVersioning() - { - return $this->disableResourceVersioning; - } - public function setEnableUpdateCreate($enableUpdateCreate) - { - $this->enableUpdateCreate = $enableUpdateCreate; - } - public function getEnableUpdateCreate() - { - return $this->enableUpdateCreate; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_CloudHealthcare_NotificationConfig - */ - public function setNotificationConfig(Google_Service_CloudHealthcare_NotificationConfig $notificationConfig) - { - $this->notificationConfig = $notificationConfig; - } - /** - * @return Google_Service_CloudHealthcare_NotificationConfig - */ - public function getNotificationConfig() - { - return $this->notificationConfig; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/FieldMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/FieldMetadata.php deleted file mode 100644 index cfaedbdf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/FieldMetadata.php +++ /dev/null @@ -1,40 +0,0 @@ -action = $action; - } - public function getAction() - { - return $this->action; - } - public function setPaths($paths) - { - $this->paths = $paths; - } - public function getPaths() - { - return $this->paths; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/GoogleCloudHealthcareV1beta1DeidentifyDeidentifyDicomStoreSummary.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/GoogleCloudHealthcareV1beta1DeidentifyDeidentifyDicomStoreSummary.php deleted file mode 100644 index 15635b55..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/GoogleCloudHealthcareV1beta1DeidentifyDeidentifyDicomStoreSummary.php +++ /dev/null @@ -1,39 +0,0 @@ -failureResourceCount = $failureResourceCount; - } - public function getFailureResourceCount() - { - return $this->failureResourceCount; - } - public function setSuccessResourceCount($successResourceCount) - { - $this->successResourceCount = $successResourceCount; - } - public function getSuccessResourceCount() - { - return $this->successResourceCount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/GoogleCloudHealthcareV1beta1DeidentifyDeidentifyFhirStoreSummary.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/GoogleCloudHealthcareV1beta1DeidentifyDeidentifyFhirStoreSummary.php deleted file mode 100644 index 644ad7f0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/GoogleCloudHealthcareV1beta1DeidentifyDeidentifyFhirStoreSummary.php +++ /dev/null @@ -1,30 +0,0 @@ -successResourceCount = $successResourceCount; - } - public function getSuccessResourceCount() - { - return $this->successResourceCount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/GoogleCloudHealthcareV1beta1DicomBigQueryDestination.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/GoogleCloudHealthcareV1beta1DicomBigQueryDestination.php deleted file mode 100644 index 2bcf937c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/GoogleCloudHealthcareV1beta1DicomBigQueryDestination.php +++ /dev/null @@ -1,39 +0,0 @@ -force = $force; - } - public function getForce() - { - return $this->force; - } - public function setTableUri($tableUri) - { - $this->tableUri = $tableUri; - } - public function getTableUri() - { - return $this->tableUri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/GoogleCloudHealthcareV1beta1DicomGcsDestination.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/GoogleCloudHealthcareV1beta1DicomGcsDestination.php deleted file mode 100644 index 3b8ad8b7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/GoogleCloudHealthcareV1beta1DicomGcsDestination.php +++ /dev/null @@ -1,39 +0,0 @@ -mimeType = $mimeType; - } - public function getMimeType() - { - return $this->mimeType; - } - public function setUriPrefix($uriPrefix) - { - $this->uriPrefix = $uriPrefix; - } - public function getUriPrefix() - { - return $this->uriPrefix; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/GoogleCloudHealthcareV1beta1DicomGcsSource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/GoogleCloudHealthcareV1beta1DicomGcsSource.php deleted file mode 100644 index 38dd6f00..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/GoogleCloudHealthcareV1beta1DicomGcsSource.php +++ /dev/null @@ -1,30 +0,0 @@ -uri = $uri; - } - public function getUri() - { - return $this->uri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/GoogleCloudHealthcareV1beta1FhirBigQueryDestination.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/GoogleCloudHealthcareV1beta1FhirBigQueryDestination.php deleted file mode 100644 index a59a8e1b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/GoogleCloudHealthcareV1beta1FhirBigQueryDestination.php +++ /dev/null @@ -1,55 +0,0 @@ -datasetUri = $datasetUri; - } - public function getDatasetUri() - { - return $this->datasetUri; - } - public function setForce($force) - { - $this->force = $force; - } - public function getForce() - { - return $this->force; - } - /** - * @param Google_Service_CloudHealthcare_SchemaConfig - */ - public function setSchemaConfig(Google_Service_CloudHealthcare_SchemaConfig $schemaConfig) - { - $this->schemaConfig = $schemaConfig; - } - /** - * @return Google_Service_CloudHealthcare_SchemaConfig - */ - public function getSchemaConfig() - { - return $this->schemaConfig; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/GoogleCloudHealthcareV1beta1FhirRestExportResourcesErrorDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/GoogleCloudHealthcareV1beta1FhirRestExportResourcesErrorDetails.php deleted file mode 100644 index 7ae56f39..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/GoogleCloudHealthcareV1beta1FhirRestExportResourcesErrorDetails.php +++ /dev/null @@ -1,57 +0,0 @@ -errorCount = $errorCount; - } - public function getErrorCount() - { - return $this->errorCount; - } - public function setFhirStore($fhirStore) - { - $this->fhirStore = $fhirStore; - } - public function getFhirStore() - { - return $this->fhirStore; - } - public function setResourceCount($resourceCount) - { - $this->resourceCount = $resourceCount; - } - public function getResourceCount() - { - return $this->resourceCount; - } - public function setSuccessCount($successCount) - { - $this->successCount = $successCount; - } - public function getSuccessCount() - { - return $this->successCount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/GoogleCloudHealthcareV1beta1FhirRestExportResourcesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/GoogleCloudHealthcareV1beta1FhirRestExportResourcesResponse.php deleted file mode 100644 index 0ac7fcb8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/GoogleCloudHealthcareV1beta1FhirRestExportResourcesResponse.php +++ /dev/null @@ -1,39 +0,0 @@ -fhirStore = $fhirStore; - } - public function getFhirStore() - { - return $this->fhirStore; - } - public function setResourceCount($resourceCount) - { - $this->resourceCount = $resourceCount; - } - public function getResourceCount() - { - return $this->resourceCount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/GoogleCloudHealthcareV1beta1FhirRestGcsDestination.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/GoogleCloudHealthcareV1beta1FhirRestGcsDestination.php deleted file mode 100644 index 8e280808..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/GoogleCloudHealthcareV1beta1FhirRestGcsDestination.php +++ /dev/null @@ -1,30 +0,0 @@ -uriPrefix = $uriPrefix; - } - public function getUriPrefix() - { - return $this->uriPrefix; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/GoogleCloudHealthcareV1beta1FhirRestGcsSource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/GoogleCloudHealthcareV1beta1FhirRestGcsSource.php deleted file mode 100644 index 53242e69..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/GoogleCloudHealthcareV1beta1FhirRestGcsSource.php +++ /dev/null @@ -1,30 +0,0 @@ -uri = $uri; - } - public function getUri() - { - return $this->uri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/GoogleCloudHealthcareV1beta1FhirRestImportResourcesErrorDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/GoogleCloudHealthcareV1beta1FhirRestImportResourcesErrorDetails.php deleted file mode 100644 index cefe2073..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/GoogleCloudHealthcareV1beta1FhirRestImportResourcesErrorDetails.php +++ /dev/null @@ -1,57 +0,0 @@ -errorCount = $errorCount; - } - public function getErrorCount() - { - return $this->errorCount; - } - public function setFhirStore($fhirStore) - { - $this->fhirStore = $fhirStore; - } - public function getFhirStore() - { - return $this->fhirStore; - } - public function setInputSize($inputSize) - { - $this->inputSize = $inputSize; - } - public function getInputSize() - { - return $this->inputSize; - } - public function setSuccessCount($successCount) - { - $this->successCount = $successCount; - } - public function getSuccessCount() - { - return $this->successCount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/GoogleCloudHealthcareV1beta1FhirRestImportResourcesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/GoogleCloudHealthcareV1beta1FhirRestImportResourcesResponse.php deleted file mode 100644 index 4cae561a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/GoogleCloudHealthcareV1beta1FhirRestImportResourcesResponse.php +++ /dev/null @@ -1,39 +0,0 @@ -fhirStore = $fhirStore; - } - public function getFhirStore() - { - return $this->fhirStore; - } - public function setInputSize($inputSize) - { - $this->inputSize = $inputSize; - } - public function getInputSize() - { - return $this->inputSize; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/HealthcareEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/HealthcareEmpty.php deleted file mode 100644 index 96653082..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/HealthcareEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_CloudHealthcare_NotificationConfig - */ - public function setNotificationConfig(Google_Service_CloudHealthcare_NotificationConfig $notificationConfig) - { - $this->notificationConfig = $notificationConfig; - } - /** - * @return Google_Service_CloudHealthcare_NotificationConfig - */ - public function getNotificationConfig() - { - return $this->notificationConfig; - } - /** - * @param Google_Service_CloudHealthcare_ParserConfig - */ - public function setParserConfig(Google_Service_CloudHealthcare_ParserConfig $parserConfig) - { - $this->parserConfig = $parserConfig; - } - /** - * @return Google_Service_CloudHealthcare_ParserConfig - */ - public function getParserConfig() - { - return $this->parserConfig; - } - public function setRejectDuplicateMessage($rejectDuplicateMessage) - { - $this->rejectDuplicateMessage = $rejectDuplicateMessage; - } - public function getRejectDuplicateMessage() - { - return $this->rejectDuplicateMessage; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/HttpBody.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/HttpBody.php deleted file mode 100644 index 140957f8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/HttpBody.php +++ /dev/null @@ -1,49 +0,0 @@ -contentType = $contentType; - } - public function getContentType() - { - return $this->contentType; - } - public function setData($data) - { - $this->data = $data; - } - public function getData() - { - return $this->data; - } - public function setExtensions($extensions) - { - $this->extensions = $extensions; - } - public function getExtensions() - { - return $this->extensions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/ImageConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/ImageConfig.php deleted file mode 100644 index a39770da..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/ImageConfig.php +++ /dev/null @@ -1,30 +0,0 @@ -textRedactionMode = $textRedactionMode; - } - public function getTextRedactionMode() - { - return $this->textRedactionMode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/ImportDicomDataErrorDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/ImportDicomDataErrorDetails.php deleted file mode 100644 index cc0aede5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/ImportDicomDataErrorDetails.php +++ /dev/null @@ -1,38 +0,0 @@ -sampleErrors = $sampleErrors; - } - /** - * @return Google_Service_CloudHealthcare_ErrorDetail - */ - public function getSampleErrors() - { - return $this->sampleErrors; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/ImportDicomDataRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/ImportDicomDataRequest.php deleted file mode 100644 index 87c3d64c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/ImportDicomDataRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -gcsSource = $gcsSource; - } - /** - * @return Google_Service_CloudHealthcare_GoogleCloudHealthcareV1beta1DicomGcsSource - */ - public function getGcsSource() - { - return $this->gcsSource; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/ImportResourcesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/ImportResourcesRequest.php deleted file mode 100644 index 15c2a157..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/ImportResourcesRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -contentStructure = $contentStructure; - } - public function getContentStructure() - { - return $this->contentStructure; - } - /** - * @param Google_Service_CloudHealthcare_GoogleCloudHealthcareV1beta1FhirRestGcsSource - */ - public function setGcsSource(Google_Service_CloudHealthcare_GoogleCloudHealthcareV1beta1FhirRestGcsSource $gcsSource) - { - $this->gcsSource = $gcsSource; - } - /** - * @return Google_Service_CloudHealthcare_GoogleCloudHealthcareV1beta1FhirRestGcsSource - */ - public function getGcsSource() - { - return $this->gcsSource; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/InfoTypeTransformation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/InfoTypeTransformation.php deleted file mode 100644 index ef0f0eeb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/InfoTypeTransformation.php +++ /dev/null @@ -1,111 +0,0 @@ -characterMaskConfig = $characterMaskConfig; - } - /** - * @return Google_Service_CloudHealthcare_CharacterMaskConfig - */ - public function getCharacterMaskConfig() - { - return $this->characterMaskConfig; - } - /** - * @param Google_Service_CloudHealthcare_CryptoHashConfig - */ - public function setCryptoHashConfig(Google_Service_CloudHealthcare_CryptoHashConfig $cryptoHashConfig) - { - $this->cryptoHashConfig = $cryptoHashConfig; - } - /** - * @return Google_Service_CloudHealthcare_CryptoHashConfig - */ - public function getCryptoHashConfig() - { - return $this->cryptoHashConfig; - } - /** - * @param Google_Service_CloudHealthcare_DateShiftConfig - */ - public function setDateShiftConfig(Google_Service_CloudHealthcare_DateShiftConfig $dateShiftConfig) - { - $this->dateShiftConfig = $dateShiftConfig; - } - /** - * @return Google_Service_CloudHealthcare_DateShiftConfig - */ - public function getDateShiftConfig() - { - return $this->dateShiftConfig; - } - public function setInfoTypes($infoTypes) - { - $this->infoTypes = $infoTypes; - } - public function getInfoTypes() - { - return $this->infoTypes; - } - /** - * @param Google_Service_CloudHealthcare_RedactConfig - */ - public function setRedactConfig(Google_Service_CloudHealthcare_RedactConfig $redactConfig) - { - $this->redactConfig = $redactConfig; - } - /** - * @return Google_Service_CloudHealthcare_RedactConfig - */ - public function getRedactConfig() - { - return $this->redactConfig; - } - /** - * @param Google_Service_CloudHealthcare_ReplaceWithInfoTypeConfig - */ - public function setReplaceWithInfoTypeConfig(Google_Service_CloudHealthcare_ReplaceWithInfoTypeConfig $replaceWithInfoTypeConfig) - { - $this->replaceWithInfoTypeConfig = $replaceWithInfoTypeConfig; - } - /** - * @return Google_Service_CloudHealthcare_ReplaceWithInfoTypeConfig - */ - public function getReplaceWithInfoTypeConfig() - { - return $this->replaceWithInfoTypeConfig; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/IngestMessageRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/IngestMessageRequest.php deleted file mode 100644 index ee11caa6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/IngestMessageRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -message = $message; - } - /** - * @return Google_Service_CloudHealthcare_Message - */ - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/IngestMessageResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/IngestMessageResponse.php deleted file mode 100644 index ba49ca63..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/IngestMessageResponse.php +++ /dev/null @@ -1,46 +0,0 @@ -hl7Ack = $hl7Ack; - } - public function getHl7Ack() - { - return $this->hl7Ack; - } - /** - * @param Google_Service_CloudHealthcare_Message - */ - public function setMessage(Google_Service_CloudHealthcare_Message $message) - { - $this->message = $message; - } - /** - * @return Google_Service_CloudHealthcare_Message - */ - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/ListDatasetsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/ListDatasetsResponse.php deleted file mode 100644 index 353c8762..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/ListDatasetsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -datasets = $datasets; - } - /** - * @return Google_Service_CloudHealthcare_Dataset - */ - public function getDatasets() - { - return $this->datasets; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/ListDicomStoresResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/ListDicomStoresResponse.php deleted file mode 100644 index 26ccaf81..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/ListDicomStoresResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -dicomStores = $dicomStores; - } - /** - * @return Google_Service_CloudHealthcare_DicomStore - */ - public function getDicomStores() - { - return $this->dicomStores; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/ListFhirStoresResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/ListFhirStoresResponse.php deleted file mode 100644 index b2b12d79..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/ListFhirStoresResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -fhirStores = $fhirStores; - } - /** - * @return Google_Service_CloudHealthcare_FhirStore - */ - public function getFhirStores() - { - return $this->fhirStores; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/ListHl7V2StoresResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/ListHl7V2StoresResponse.php deleted file mode 100644 index 19c4b45f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/ListHl7V2StoresResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -hl7V2Stores = $hl7V2Stores; - } - /** - * @return Google_Service_CloudHealthcare_Hl7V2Store - */ - public function getHl7V2Stores() - { - return $this->hl7V2Stores; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/ListLocationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/ListLocationsResponse.php deleted file mode 100644 index c2d88180..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/ListLocationsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -locations = $locations; - } - /** - * @return Google_Service_CloudHealthcare_Location - */ - public function getLocations() - { - return $this->locations; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/ListMessagesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/ListMessagesResponse.php deleted file mode 100644 index 266c7648..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/ListMessagesResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -hl7V2Messages = $hl7V2Messages; - } - /** - * @return Google_Service_CloudHealthcare_Message - */ - public function getHl7V2Messages() - { - return $this->hl7V2Messages; - } - public function setMessages($messages) - { - $this->messages = $messages; - } - public function getMessages() - { - return $this->messages; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/ListOperationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/ListOperationsResponse.php deleted file mode 100644 index 601da092..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/ListOperationsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_CloudHealthcare_Operation - */ - public function setOperations($operations) - { - $this->operations = $operations; - } - /** - * @return Google_Service_CloudHealthcare_Operation - */ - public function getOperations() - { - return $this->operations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Location.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Location.php deleted file mode 100644 index 2fefdd64..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Location.php +++ /dev/null @@ -1,66 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setLocationId($locationId) - { - $this->locationId = $locationId; - } - public function getLocationId() - { - return $this->locationId; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Message.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Message.php deleted file mode 100644 index 37075fa7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Message.php +++ /dev/null @@ -1,117 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setData($data) - { - $this->data = $data; - } - public function getData() - { - return $this->data; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setMessageType($messageType) - { - $this->messageType = $messageType; - } - public function getMessageType() - { - return $this->messageType; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_CloudHealthcare_ParsedData - */ - public function setParsedData(Google_Service_CloudHealthcare_ParsedData $parsedData) - { - $this->parsedData = $parsedData; - } - /** - * @return Google_Service_CloudHealthcare_ParsedData - */ - public function getParsedData() - { - return $this->parsedData; - } - /** - * @param Google_Service_CloudHealthcare_PatientId - */ - public function setPatientIds($patientIds) - { - $this->patientIds = $patientIds; - } - /** - * @return Google_Service_CloudHealthcare_PatientId - */ - public function getPatientIds() - { - return $this->patientIds; - } - public function setSendFacility($sendFacility) - { - $this->sendFacility = $sendFacility; - } - public function getSendFacility() - { - return $this->sendFacility; - } - public function setSendTime($sendTime) - { - $this->sendTime = $sendTime; - } - public function getSendTime() - { - return $this->sendTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/NotificationConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/NotificationConfig.php deleted file mode 100644 index 711064fb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/NotificationConfig.php +++ /dev/null @@ -1,30 +0,0 @@ -pubsubTopic = $pubsubTopic; - } - public function getPubsubTopic() - { - return $this->pubsubTopic; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Operation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Operation.php deleted file mode 100644 index e420a682..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Operation.php +++ /dev/null @@ -1,73 +0,0 @@ -done = $done; - } - public function getDone() - { - return $this->done; - } - /** - * @param Google_Service_CloudHealthcare_Status - */ - public function setError(Google_Service_CloudHealthcare_Status $error) - { - $this->error = $error; - } - /** - * @return Google_Service_CloudHealthcare_Status - */ - public function getError() - { - return $this->error; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/OperationMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/OperationMetadata.php deleted file mode 100644 index 9846c9c9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/OperationMetadata.php +++ /dev/null @@ -1,64 +0,0 @@ -apiMethodName = $apiMethodName; - } - public function getApiMethodName() - { - return $this->apiMethodName; - } - /** - * @param Google_Service_CloudHealthcare_ProgressCounter - */ - public function setCounter(Google_Service_CloudHealthcare_ProgressCounter $counter) - { - $this->counter = $counter; - } - /** - * @return Google_Service_CloudHealthcare_ProgressCounter - */ - public function getCounter() - { - return $this->counter; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/ParsedData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/ParsedData.php deleted file mode 100644 index f035cb0d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/ParsedData.php +++ /dev/null @@ -1,38 +0,0 @@ -segments = $segments; - } - /** - * @return Google_Service_CloudHealthcare_Segment - */ - public function getSegments() - { - return $this->segments; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/ParserConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/ParserConfig.php deleted file mode 100644 index 6929975f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/ParserConfig.php +++ /dev/null @@ -1,39 +0,0 @@ -allowNullHeader = $allowNullHeader; - } - public function getAllowNullHeader() - { - return $this->allowNullHeader; - } - public function setSegmentTerminator($segmentTerminator) - { - $this->segmentTerminator = $segmentTerminator; - } - public function getSegmentTerminator() - { - return $this->segmentTerminator; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/PatientId.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/PatientId.php deleted file mode 100644 index f452c8a8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/PatientId.php +++ /dev/null @@ -1,39 +0,0 @@ -type = $type; - } - public function getType() - { - return $this->type; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Policy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Policy.php deleted file mode 100644 index 39ed296a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Policy.php +++ /dev/null @@ -1,72 +0,0 @@ -auditConfigs = $auditConfigs; - } - /** - * @return Google_Service_CloudHealthcare_AuditConfig - */ - public function getAuditConfigs() - { - return $this->auditConfigs; - } - /** - * @param Google_Service_CloudHealthcare_Binding - */ - public function setBindings($bindings) - { - $this->bindings = $bindings; - } - /** - * @return Google_Service_CloudHealthcare_Binding - */ - public function getBindings() - { - return $this->bindings; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/ProgressCounter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/ProgressCounter.php deleted file mode 100644 index 3295ff16..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/ProgressCounter.php +++ /dev/null @@ -1,48 +0,0 @@ -failure = $failure; - } - public function getFailure() - { - return $this->failure; - } - public function setPending($pending) - { - $this->pending = $pending; - } - public function getPending() - { - return $this->pending; - } - public function setSuccess($success) - { - $this->success = $success; - } - public function getSuccess() - { - return $this->success; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/RedactConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/RedactConfig.php deleted file mode 100644 index 455a56b4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/RedactConfig.php +++ /dev/null @@ -1,20 +0,0 @@ - - * $healthcareService = new Google_Service_CloudHealthcare(...); - * $projects = $healthcareService->projects; - * - */ -class Google_Service_CloudHealthcare_Resource_Projects extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Resource/ProjectsLocations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Resource/ProjectsLocations.php deleted file mode 100644 index af86c210..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Resource/ProjectsLocations.php +++ /dev/null @@ -1,60 +0,0 @@ - - * $healthcareService = new Google_Service_CloudHealthcare(...); - * $locations = $healthcareService->locations; - * - */ -class Google_Service_CloudHealthcare_Resource_ProjectsLocations extends Google_Service_Resource -{ - /** - * Gets information about a location. (locations.get) - * - * @param string $name Resource name for the location. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_Location - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudHealthcare_Location"); - } - /** - * Lists information about the supported locations for this service. - * (locations.listProjectsLocations) - * - * @param string $name The resource that owns the locations collection, if - * applicable. - * @param array $optParams Optional parameters. - * - * @opt_param string filter The standard list filter. - * @opt_param string pageToken The standard list page token. - * @opt_param int pageSize The standard list page size. - * @return Google_Service_CloudHealthcare_ListLocationsResponse - */ - public function listProjectsLocations($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudHealthcare_ListLocationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Resource/ProjectsLocationsDatasets.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Resource/ProjectsLocationsDatasets.php deleted file mode 100644 index b4b518e0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Resource/ProjectsLocationsDatasets.php +++ /dev/null @@ -1,207 +0,0 @@ - - * $healthcareService = new Google_Service_CloudHealthcare(...); - * $datasets = $healthcareService->datasets; - * - */ -class Google_Service_CloudHealthcare_Resource_ProjectsLocationsDatasets extends Google_Service_Resource -{ - /** - * Creates a new health dataset. Results are returned through the Operation - * interface which returns either an `Operation.response` which contains a - * Dataset or `Operation.error`. The metadata field type is OperationMetadata. A - * Google Cloud Platform project can contain up to 500 datasets across all - * regions. (datasets.create) - * - * @param string $parent The name of the project where the server creates the - * dataset. For example, `projects/{project_id}/locations/{location_id}`. - * @param Google_Service_CloudHealthcare_Dataset $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string datasetId The ID of the dataset that is being created. The - * string must match the following regex: `[\p{L}\p{N}_\-\.]{1,256}`. - * @return Google_Service_CloudHealthcare_Operation - */ - public function create($parent, Google_Service_CloudHealthcare_Dataset $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_CloudHealthcare_Operation"); - } - /** - * Creates a new dataset containing de-identified data from the source dataset. - * The metadata field type is OperationMetadata. If the request is successful, - * the response field type is DeidentifySummary. If errors occur, error details - * field type is DeidentifyErrorDetails. Errors are also logged to Stackdriver - * Logging. For more information, see [Viewing logs](/healthcare/docs/how-tos - * /stackdriver-logging). (datasets.deidentify) - * - * @param string $sourceDataset Source dataset resource name. For example, - * `projects/{project_id}/locations/{location_id}/datasets/{dataset_id}`. - * @param Google_Service_CloudHealthcare_DeidentifyDatasetRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_Operation - */ - public function deidentify($sourceDataset, Google_Service_CloudHealthcare_DeidentifyDatasetRequest $postBody, $optParams = array()) - { - $params = array('sourceDataset' => $sourceDataset, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('deidentify', array($params), "Google_Service_CloudHealthcare_Operation"); - } - /** - * Deletes the specified health dataset and all data contained in the dataset. - * Deleting a dataset does not affect the sources from which the dataset was - * imported (if any). (datasets.delete) - * - * @param string $name The name of the dataset to delete. For example, - * `projects/{project_id}/locations/{location_id}/datasets/{dataset_id}`. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_HealthcareEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudHealthcare_HealthcareEmpty"); - } - /** - * Gets any metadata associated with a dataset. (datasets.get) - * - * @param string $name The name of the dataset to read. For example, - * `projects/{project_id}/locations/{location_id}/datasets/{dataset_id}`. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_Dataset - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudHealthcare_Dataset"); - } - /** - * Gets the access control policy for a resource. Returns an empty policy if the - * resource exists and does not have a policy set. (datasets.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. - * @return Google_Service_CloudHealthcare_Policy - */ - public function getIamPolicy($resource, $optParams = array()) - { - $params = array('resource' => $resource); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_CloudHealthcare_Policy"); - } - /** - * Lists the health datasets in the current project. - * (datasets.listProjectsLocationsDatasets) - * - * @param string $parent The name of the project whose datasets should be - * listed. For example, `projects/{project_id}/locations/{location_id}`. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The next_page_token value returned from a - * previous List request, if any. - * @opt_param int pageSize The maximum number of items to return. Capped to 100 - * if not specified. May not be larger than 1000. - * @return Google_Service_CloudHealthcare_ListDatasetsResponse - */ - public function listProjectsLocationsDatasets($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudHealthcare_ListDatasetsResponse"); - } - /** - * Updates dataset metadata. (datasets.patch) - * - * @param string $name Output only. Resource name of the dataset, of the form - * `projects/{project_id}/locations/{location_id}/datasets/{dataset_id}`. - * @param Google_Service_CloudHealthcare_Dataset $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask The update mask applies to the resource. For the - * `FieldMask` definition, see https://developers.google.com/protocol- - * buffers/docs/reference/google.protobuf#fieldmask - * @return Google_Service_CloudHealthcare_Dataset - */ - public function patch($name, Google_Service_CloudHealthcare_Dataset $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_CloudHealthcare_Dataset"); - } - /** - * Sets the access control policy on the specified resource. Replaces any - * existing policy. - * - * Can return Public Errors: NOT_FOUND, INVALID_ARGUMENT and PERMISSION_DENIED - * (datasets.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_CloudHealthcare_SetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_Policy - */ - public function setIamPolicy($resource, Google_Service_CloudHealthcare_SetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_CloudHealthcare_Policy"); - } - /** - * 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. (datasets.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_CloudHealthcare_TestIamPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_TestIamPermissionsResponse - */ - public function testIamPermissions($resource, Google_Service_CloudHealthcare_TestIamPermissionsRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_CloudHealthcare_TestIamPermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Resource/ProjectsLocationsDatasetsAnnotationStores.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Resource/ProjectsLocationsDatasetsAnnotationStores.php deleted file mode 100644 index 0cdef5cb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Resource/ProjectsLocationsDatasetsAnnotationStores.php +++ /dev/null @@ -1,97 +0,0 @@ - - * $healthcareService = new Google_Service_CloudHealthcare(...); - * $annotationStores = $healthcareService->annotationStores; - * - */ -class Google_Service_CloudHealthcare_Resource_ProjectsLocationsDatasetsAnnotationStores extends Google_Service_Resource -{ - /** - * Gets the access control policy for a resource. Returns an empty policy if the - * resource exists and does not have a policy set. - * (annotationStores.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. - * @return Google_Service_CloudHealthcare_Policy - */ - public function getIamPolicy($resource, $optParams = array()) - { - $params = array('resource' => $resource); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_CloudHealthcare_Policy"); - } - /** - * Sets the access control policy on the specified resource. Replaces any - * existing policy. - * - * Can return Public Errors: NOT_FOUND, INVALID_ARGUMENT and PERMISSION_DENIED - * (annotationStores.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_CloudHealthcare_SetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_Policy - */ - public function setIamPolicy($resource, Google_Service_CloudHealthcare_SetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_CloudHealthcare_Policy"); - } - /** - * 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. (annotationStores.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_CloudHealthcare_TestIamPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_TestIamPermissionsResponse - */ - public function testIamPermissions($resource, Google_Service_CloudHealthcare_TestIamPermissionsRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_CloudHealthcare_TestIamPermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Resource/ProjectsLocationsDatasetsDicomStores.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Resource/ProjectsLocationsDatasetsDicomStores.php deleted file mode 100644 index 5eacca98..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Resource/ProjectsLocationsDatasetsDicomStores.php +++ /dev/null @@ -1,320 +0,0 @@ - - * $healthcareService = new Google_Service_CloudHealthcare(...); - * $dicomStores = $healthcareService->dicomStores; - * - */ -class Google_Service_CloudHealthcare_Resource_ProjectsLocationsDatasetsDicomStores extends Google_Service_Resource -{ - /** - * Creates a new DICOM store within the parent dataset. (dicomStores.create) - * - * @param string $parent The name of the dataset this DICOM store belongs to. - * @param Google_Service_CloudHealthcare_DicomStore $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string dicomStoreId The ID of the DICOM store that is being - * created. Any string value up to 256 characters in length. - * @return Google_Service_CloudHealthcare_DicomStore - */ - public function create($parent, Google_Service_CloudHealthcare_DicomStore $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_CloudHealthcare_DicomStore"); - } - /** - * De-identifies data from the source store and writes it to the destination - * store. The metadata field type is OperationMetadata. If the request is - * successful, the response field type is DeidentifyDicomStoreSummary. If errors - * occur, error details field type is DeidentifyErrorDetails. Errors are also - * logged to Stackdriver (see [Viewing logs](/healthcare/docs/how-tos - * /stackdriver-logging)). (dicomStores.deidentify) - * - * @param string $sourceStore Source DICOM store resource name. For example, `pr - * ojects/{project_id}/locations/{location_id}/datasets/{dataset_id}/dicomStores - * /{dicom_store_id}`. - * @param Google_Service_CloudHealthcare_DeidentifyDicomStoreRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_Operation - */ - public function deidentify($sourceStore, Google_Service_CloudHealthcare_DeidentifyDicomStoreRequest $postBody, $optParams = array()) - { - $params = array('sourceStore' => $sourceStore, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('deidentify', array($params), "Google_Service_CloudHealthcare_Operation"); - } - /** - * Deletes the specified DICOM store and removes all images that are contained - * within it. (dicomStores.delete) - * - * @param string $name The resource name of the DICOM store to delete. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_HealthcareEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudHealthcare_HealthcareEmpty"); - } - /** - * Exports data to the specified destination by copying it from the DICOM store. - * The metadata field type is OperationMetadata. (dicomStores.export) - * - * @param string $name The DICOM store resource name from which to export the - * data. For example, `projects/{project_id}/locations/{location_id}/datasets/{d - * ataset_id}/dicomStores/{dicom_store_id}`. - * @param Google_Service_CloudHealthcare_ExportDicomDataRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_Operation - */ - public function export($name, Google_Service_CloudHealthcare_ExportDicomDataRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('export', array($params), "Google_Service_CloudHealthcare_Operation"); - } - /** - * Gets the specified DICOM store. (dicomStores.get) - * - * @param string $name The resource name of the DICOM store to get. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_DicomStore - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudHealthcare_DicomStore"); - } - /** - * Gets the access control policy for a resource. Returns an empty policy if the - * resource exists and does not have a policy set. (dicomStores.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. - * @return Google_Service_CloudHealthcare_Policy - */ - public function getIamPolicy($resource, $optParams = array()) - { - $params = array('resource' => $resource); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_CloudHealthcare_Policy"); - } - /** - * Imports data into the DICOM store by copying it from the specified source. - * For errors, the Operation is populated with error details (in the form of - * ImportDicomDataErrorDetails in error.details), which hold finer-grained error - * information. Errors are also logged to Stackdriver Logging. For more - * information, see [Viewing logs](/healthcare/docs/how-tos/stackdriver- - * logging). The metadata field type is OperationMetadata. (dicomStores.import) - * - * @param string $name The name of the DICOM store resource into which the data - * is imported. For example, `projects/{project_id}/locations/{location_id}/data - * sets/{dataset_id}/dicomStores/{dicom_store_id}`. - * @param Google_Service_CloudHealthcare_ImportDicomDataRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_Operation - */ - public function import($name, Google_Service_CloudHealthcare_ImportDicomDataRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('import', array($params), "Google_Service_CloudHealthcare_Operation"); - } - /** - * Lists the DICOM stores in the given dataset. - * (dicomStores.listProjectsLocationsDatasetsDicomStores) - * - * @param string $parent Name of the dataset. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The next_page_token value returned from the - * previous List request, if any. - * @opt_param int pageSize Limit on the number of DICOM stores to return in a - * single response. If zero the default page size of 100 is used. - * @opt_param string filter Restricts stores returned to those matching a - * filter. Syntax: - * https://cloud.google.com/appengine/docs/standard/python/search/query_strings - * Only filtering on labels is supported. For example, `labels.key=value`. - * @return Google_Service_CloudHealthcare_ListDicomStoresResponse - */ - public function listProjectsLocationsDatasetsDicomStores($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudHealthcare_ListDicomStoresResponse"); - } - /** - * Updates the specified DICOM store. (dicomStores.patch) - * - * @param string $name Output only. Resource name of the DICOM store, of the - * form `projects/{project_id}/locations/{location_id}/datasets/{dataset_id}/dic - * omStores/{dicom_store_id}`. - * @param Google_Service_CloudHealthcare_DicomStore $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask The update mask applies to the resource. For the - * `FieldMask` definition, see https://developers.google.com/protocol- - * buffers/docs/reference/google.protobuf#fieldmask - * @return Google_Service_CloudHealthcare_DicomStore - */ - public function patch($name, Google_Service_CloudHealthcare_DicomStore $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_CloudHealthcare_DicomStore"); - } - /** - * SearchForInstances returns a list of matching instances. See http://dicom.nem - * a.org/medical/dicom/current/output/html/part18.html#sect_10.6. - * (dicomStores.searchForInstances) - * - * @param string $parent The name of the DICOM store that is being accessed. For - * example, `projects/{project_id}/locations/{location_id}/datasets/{dataset_id} - * /dicomStores/{dicom_store_id}`. - * @param string $dicomWebPath The path of the SearchForInstancesRequest - * DICOMweb request. For example, `instances`, `series/{series_uid}/instances`, - * or `studies/{study_uid}/instances`. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_HttpBody - */ - public function searchForInstances($parent, $dicomWebPath, $optParams = array()) - { - $params = array('parent' => $parent, 'dicomWebPath' => $dicomWebPath); - $params = array_merge($params, $optParams); - return $this->call('searchForInstances', array($params), "Google_Service_CloudHealthcare_HttpBody"); - } - /** - * SearchForSeries returns a list of matching series. See http://dicom.nema.org/ - * medical/dicom/current/output/html/part18.html#sect_10.6. - * (dicomStores.searchForSeries) - * - * @param string $parent The name of the DICOM store that is being accessed. For - * example, `projects/{project_id}/locations/{location_id}/datasets/{dataset_id} - * /dicomStores/{dicom_store_id}`. - * @param string $dicomWebPath The path of the SearchForSeries DICOMweb request. - * For example, `series` or `studies/{study_uid}/series`. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_HttpBody - */ - public function searchForSeries($parent, $dicomWebPath, $optParams = array()) - { - $params = array('parent' => $parent, 'dicomWebPath' => $dicomWebPath); - $params = array_merge($params, $optParams); - return $this->call('searchForSeries', array($params), "Google_Service_CloudHealthcare_HttpBody"); - } - /** - * SearchForStudies returns a list of matching studies. See http://dicom.nema.or - * g/medical/dicom/current/output/html/part18.html#sect_10.6. - * (dicomStores.searchForStudies) - * - * @param string $parent The name of the DICOM store that is being accessed. For - * example, `projects/{project_id}/locations/{location_id}/datasets/{dataset_id} - * /dicomStores/{dicom_store_id}`. - * @param string $dicomWebPath The path of the SearchForStudies DICOMweb - * request. For example, `studies`. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_HttpBody - */ - public function searchForStudies($parent, $dicomWebPath, $optParams = array()) - { - $params = array('parent' => $parent, 'dicomWebPath' => $dicomWebPath); - $params = array_merge($params, $optParams); - return $this->call('searchForStudies', array($params), "Google_Service_CloudHealthcare_HttpBody"); - } - /** - * Sets the access control policy on the specified resource. Replaces any - * existing policy. - * - * Can return Public Errors: NOT_FOUND, INVALID_ARGUMENT and PERMISSION_DENIED - * (dicomStores.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_CloudHealthcare_SetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_Policy - */ - public function setIamPolicy($resource, Google_Service_CloudHealthcare_SetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_CloudHealthcare_Policy"); - } - /** - * StoreInstances stores DICOM instances associated with study instance unique - * identifiers (SUID). See http://dicom.nema.org/medical/dicom/current/output/ht - * ml/part18.html#sect_10.5. (dicomStores.storeInstances) - * - * @param string $parent The name of the DICOM store that is being accessed. For - * example, `projects/{project_id}/locations/{location_id}/datasets/{dataset_id} - * /dicomStores/{dicom_store_id}`. - * @param string $dicomWebPath The path of the StoreInstances DICOMweb request. - * For example, `studies/[{study_uid}]`. Note that the `study_uid` is optional. - * @param Google_Service_CloudHealthcare_HttpBody $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_HttpBody - */ - public function storeInstances($parent, $dicomWebPath, Google_Service_CloudHealthcare_HttpBody $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'dicomWebPath' => $dicomWebPath, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('storeInstances', array($params), "Google_Service_CloudHealthcare_HttpBody"); - } - /** - * 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. (dicomStores.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_CloudHealthcare_TestIamPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_TestIamPermissionsResponse - */ - public function testIamPermissions($resource, Google_Service_CloudHealthcare_TestIamPermissionsRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_CloudHealthcare_TestIamPermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Resource/ProjectsLocationsDatasetsDicomStoresStudies.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Resource/ProjectsLocationsDatasetsDicomStoresStudies.php deleted file mode 100644 index 24e9e01c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Resource/ProjectsLocationsDatasetsDicomStoresStudies.php +++ /dev/null @@ -1,143 +0,0 @@ - - * $healthcareService = new Google_Service_CloudHealthcare(...); - * $studies = $healthcareService->studies; - * - */ -class Google_Service_CloudHealthcare_Resource_ProjectsLocationsDatasetsDicomStoresStudies extends Google_Service_Resource -{ - /** - * DeleteStudy deletes all instances within the given study. Delete requests are - * equivalent to the GET requests specified in the Retrieve transaction. - * (studies.delete) - * - * @param string $parent - * @param string $dicomWebPath The path of the DeleteStudy request. For example, - * `studies/{study_uid}`. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_HealthcareEmpty - */ - public function delete($parent, $dicomWebPath, $optParams = array()) - { - $params = array('parent' => $parent, 'dicomWebPath' => $dicomWebPath); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudHealthcare_HealthcareEmpty"); - } - /** - * RetrieveStudyMetadata returns instance associated with the given study - * presented as metadata with the bulk data removed. See http://dicom.nema.org/m - * edical/dicom/current/output/html/part18.html#sect_10.4. - * (studies.retrieveMetadata) - * - * @param string $parent The name of the DICOM store that is being accessed. For - * example, `projects/{project_id}/locations/{location_id}/datasets/{dataset_id} - * /dicomStores/{dicom_store_id}`. - * @param string $dicomWebPath The path of the RetrieveStudyMetadata DICOMweb - * request. For example, `studies/{study_uid}/metadata`. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_HttpBody - */ - public function retrieveMetadata($parent, $dicomWebPath, $optParams = array()) - { - $params = array('parent' => $parent, 'dicomWebPath' => $dicomWebPath); - $params = array_merge($params, $optParams); - return $this->call('retrieveMetadata', array($params), "Google_Service_CloudHealthcare_HttpBody"); - } - /** - * RetrieveStudy returns all instances within the given study. See http://dicom. - * nema.org/medical/dicom/current/output/html/part18.html#sect_10.4. - * (studies.retrieveStudy) - * - * @param string $parent The name of the DICOM store that is being accessed. For - * example, `projects/{project_id}/locations/{location_id}/datasets/{dataset_id} - * /dicomStores/{dicom_store_id}`. - * @param string $dicomWebPath The path of the RetrieveStudy DICOMweb request. - * For example, `studies/{study_uid}`. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_HttpBody - */ - public function retrieveStudy($parent, $dicomWebPath, $optParams = array()) - { - $params = array('parent' => $parent, 'dicomWebPath' => $dicomWebPath); - $params = array_merge($params, $optParams); - return $this->call('retrieveStudy', array($params), "Google_Service_CloudHealthcare_HttpBody"); - } - /** - * SearchForInstances returns a list of matching instances. See http://dicom.nem - * a.org/medical/dicom/current/output/html/part18.html#sect_10.6. - * (studies.searchForInstances) - * - * @param string $parent The name of the DICOM store that is being accessed. For - * example, `projects/{project_id}/locations/{location_id}/datasets/{dataset_id} - * /dicomStores/{dicom_store_id}`. - * @param string $dicomWebPath The path of the SearchForInstancesRequest - * DICOMweb request. For example, `instances`, `series/{series_uid}/instances`, - * or `studies/{study_uid}/instances`. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_HttpBody - */ - public function searchForInstances($parent, $dicomWebPath, $optParams = array()) - { - $params = array('parent' => $parent, 'dicomWebPath' => $dicomWebPath); - $params = array_merge($params, $optParams); - return $this->call('searchForInstances', array($params), "Google_Service_CloudHealthcare_HttpBody"); - } - /** - * SearchForSeries returns a list of matching series. See http://dicom.nema.org/ - * medical/dicom/current/output/html/part18.html#sect_10.6. - * (studies.searchForSeries) - * - * @param string $parent The name of the DICOM store that is being accessed. For - * example, `projects/{project_id}/locations/{location_id}/datasets/{dataset_id} - * /dicomStores/{dicom_store_id}`. - * @param string $dicomWebPath The path of the SearchForSeries DICOMweb request. - * For example, `series` or `studies/{study_uid}/series`. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_HttpBody - */ - public function searchForSeries($parent, $dicomWebPath, $optParams = array()) - { - $params = array('parent' => $parent, 'dicomWebPath' => $dicomWebPath); - $params = array_merge($params, $optParams); - return $this->call('searchForSeries', array($params), "Google_Service_CloudHealthcare_HttpBody"); - } - /** - * StoreInstances stores DICOM instances associated with study instance unique - * identifiers (SUID). See http://dicom.nema.org/medical/dicom/current/output/ht - * ml/part18.html#sect_10.5. (studies.storeInstances) - * - * @param string $parent The name of the DICOM store that is being accessed. For - * example, `projects/{project_id}/locations/{location_id}/datasets/{dataset_id} - * /dicomStores/{dicom_store_id}`. - * @param string $dicomWebPath The path of the StoreInstances DICOMweb request. - * For example, `studies/[{study_uid}]`. Note that the `study_uid` is optional. - * @param Google_Service_CloudHealthcare_HttpBody $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_HttpBody - */ - public function storeInstances($parent, $dicomWebPath, Google_Service_CloudHealthcare_HttpBody $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'dicomWebPath' => $dicomWebPath, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('storeInstances', array($params), "Google_Service_CloudHealthcare_HttpBody"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Resource/ProjectsLocationsDatasetsDicomStoresStudiesSeries.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Resource/ProjectsLocationsDatasetsDicomStoresStudiesSeries.php deleted file mode 100644 index 7809c856..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Resource/ProjectsLocationsDatasetsDicomStoresStudiesSeries.php +++ /dev/null @@ -1,106 +0,0 @@ - - * $healthcareService = new Google_Service_CloudHealthcare(...); - * $series = $healthcareService->series; - * - */ -class Google_Service_CloudHealthcare_Resource_ProjectsLocationsDatasetsDicomStoresStudiesSeries extends Google_Service_Resource -{ - /** - * DeleteSeries deletes all instances within the given study and series. Delete - * requests are equivalent to the GET requests specified in the Retrieve - * transaction. (series.delete) - * - * @param string $parent The name of the DICOM store that is being accessed. For - * example, `projects/{project_id}/locations/{location_id}/datasets/{dataset_id} - * /dicomStores/{dicom_store_id}`. - * @param string $dicomWebPath The path of the DeleteSeries request. For - * example, `studies/{study_uid}/series/{series_uid}`. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_HealthcareEmpty - */ - public function delete($parent, $dicomWebPath, $optParams = array()) - { - $params = array('parent' => $parent, 'dicomWebPath' => $dicomWebPath); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudHealthcare_HealthcareEmpty"); - } - /** - * RetrieveSeriesMetadata returns instance associated with the given study and - * series, presented as metadata with the bulk data removed. See http://dicom.ne - * ma.org/medical/dicom/current/output/html/part18.html#sect_10.4. - * (series.retrieveMetadata) - * - * @param string $parent The name of the DICOM store that is being accessed. For - * example, `projects/{project_id}/locations/{location_id}/datasets/{dataset_id} - * /dicomStores/{dicom_store_id}`. - * @param string $dicomWebPath The path of the RetrieveSeriesMetadata DICOMweb - * request. For example, `studies/{study_uid}/series/{series_uid}/metadata`. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_HttpBody - */ - public function retrieveMetadata($parent, $dicomWebPath, $optParams = array()) - { - $params = array('parent' => $parent, 'dicomWebPath' => $dicomWebPath); - $params = array_merge($params, $optParams); - return $this->call('retrieveMetadata', array($params), "Google_Service_CloudHealthcare_HttpBody"); - } - /** - * RetrieveSeries returns all instances within the given study and series. See h - * ttp://dicom.nema.org/medical/dicom/current/output/html/part18.html#sect_10.4. - * (series.retrieveSeries) - * - * @param string $parent The name of the DICOM store that is being accessed. For - * example, `projects/{project_id}/locations/{location_id}/datasets/{dataset_id} - * /dicomStores/{dicom_store_id}`. - * @param string $dicomWebPath The path of the RetrieveSeries DICOMweb request. - * For example, `studies/{study_uid}/series/{series_uid}`. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_HttpBody - */ - public function retrieveSeries($parent, $dicomWebPath, $optParams = array()) - { - $params = array('parent' => $parent, 'dicomWebPath' => $dicomWebPath); - $params = array_merge($params, $optParams); - return $this->call('retrieveSeries', array($params), "Google_Service_CloudHealthcare_HttpBody"); - } - /** - * SearchForInstances returns a list of matching instances. See http://dicom.nem - * a.org/medical/dicom/current/output/html/part18.html#sect_10.6. - * (series.searchForInstances) - * - * @param string $parent The name of the DICOM store that is being accessed. For - * example, `projects/{project_id}/locations/{location_id}/datasets/{dataset_id} - * /dicomStores/{dicom_store_id}`. - * @param string $dicomWebPath The path of the SearchForInstancesRequest - * DICOMweb request. For example, `instances`, `series/{series_uid}/instances`, - * or `studies/{study_uid}/instances`. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_HttpBody - */ - public function searchForInstances($parent, $dicomWebPath, $optParams = array()) - { - $params = array('parent' => $parent, 'dicomWebPath' => $dicomWebPath); - $params = array_merge($params, $optParams); - return $this->call('searchForInstances', array($params), "Google_Service_CloudHealthcare_HttpBody"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Resource/ProjectsLocationsDatasetsDicomStoresStudiesSeriesInstances.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Resource/ProjectsLocationsDatasetsDicomStoresStudiesSeriesInstances.php deleted file mode 100644 index 09676843..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Resource/ProjectsLocationsDatasetsDicomStoresStudiesSeriesInstances.php +++ /dev/null @@ -1,109 +0,0 @@ - - * $healthcareService = new Google_Service_CloudHealthcare(...); - * $instances = $healthcareService->instances; - * - */ -class Google_Service_CloudHealthcare_Resource_ProjectsLocationsDatasetsDicomStoresStudiesSeriesInstances extends Google_Service_Resource -{ - /** - * DeleteInstance deletes an instance associated with the given study, series, - * and SOP Instance UID. Delete requests are equivalent to the GET requests - * specified in the Retrieve transaction. (instances.delete) - * - * @param string $parent The name of the DICOM store that is being accessed. For - * example, `projects/{project_id}/locations/{location_id}/datasets/{dataset_id} - * /dicomStores/{dicom_store_id}`. - * @param string $dicomWebPath The path of the DeleteInstance request. For - * example, `studies/{study_uid}/series/{series_uid}/instances/{instance_uid}`. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_HealthcareEmpty - */ - public function delete($parent, $dicomWebPath, $optParams = array()) - { - $params = array('parent' => $parent, 'dicomWebPath' => $dicomWebPath); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudHealthcare_HealthcareEmpty"); - } - /** - * RetrieveInstance returns instance associated with the given study, series, - * and SOP Instance UID. See http://dicom.nema.org/medical/dicom/current/output/ - * html/part18.html#sect_10.4. (instances.retrieveInstance) - * - * @param string $parent The name of the DICOM store that is being accessed. For - * example, `projects/{project_id}/locations/{location_id}/datasets/{dataset_id} - * /dicomStores/{dicom_store_id}`. - * @param string $dicomWebPath The path of the RetrieveInstance DICOMweb - * request. For example, - * `studies/{study_uid}/series/{series_uid}/instances/{instance_uid}`. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_HttpBody - */ - public function retrieveInstance($parent, $dicomWebPath, $optParams = array()) - { - $params = array('parent' => $parent, 'dicomWebPath' => $dicomWebPath); - $params = array_merge($params, $optParams); - return $this->call('retrieveInstance', array($params), "Google_Service_CloudHealthcare_HttpBody"); - } - /** - * RetrieveInstanceMetadata returns instance associated with the given study, - * series, and SOP Instance UID presented as metadata with the bulk data - * removed. See http://dicom.nema.org/medical/dicom/current/output/html/part18.h - * tml#sect_10.4. (instances.retrieveMetadata) - * - * @param string $parent The name of the DICOM store that is being accessed. For - * example, `projects/{project_id}/locations/{location_id}/datasets/{dataset_id} - * /dicomStores/{dicom_store_id}`. - * @param string $dicomWebPath The path of the RetrieveInstanceMetadata DICOMweb - * request. For example, - * `studies/{study_uid}/series/{series_uid}/instances/{instance_uid}/metadata`. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_HttpBody - */ - public function retrieveMetadata($parent, $dicomWebPath, $optParams = array()) - { - $params = array('parent' => $parent, 'dicomWebPath' => $dicomWebPath); - $params = array_merge($params, $optParams); - return $this->call('retrieveMetadata', array($params), "Google_Service_CloudHealthcare_HttpBody"); - } - /** - * RetrieveRenderedInstance returns instance associated with the given study, - * series, and SOP Instance UID in an acceptable Rendered Media Type. See http:/ - * /dicom.nema.org/medical/dicom/current/output/html/part18.html#sect_10.4. - * (instances.retrieveRendered) - * - * @param string $parent The name of the DICOM store that is being accessed. For - * example, `projects/{project_id}/locations/{location_id}/datasets/{dataset_id} - * /dicomStores/{dicom_store_id}`. - * @param string $dicomWebPath The path of the RetrieveRenderedInstance DICOMweb - * request. For example, - * `studies/{study_uid}/series/{series_uid}/instances/{instance_uid}/rendered`. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_HttpBody - */ - public function retrieveRendered($parent, $dicomWebPath, $optParams = array()) - { - $params = array('parent' => $parent, 'dicomWebPath' => $dicomWebPath); - $params = array_merge($params, $optParams); - return $this->call('retrieveRendered', array($params), "Google_Service_CloudHealthcare_HttpBody"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Resource/ProjectsLocationsDatasetsDicomStoresStudiesSeriesInstancesFrames.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Resource/ProjectsLocationsDatasetsDicomStoresStudiesSeriesInstancesFrames.php deleted file mode 100644 index 9abbca8d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Resource/ProjectsLocationsDatasetsDicomStoresStudiesSeriesInstancesFrames.php +++ /dev/null @@ -1,69 +0,0 @@ - - * $healthcareService = new Google_Service_CloudHealthcare(...); - * $frames = $healthcareService->frames; - * - */ -class Google_Service_CloudHealthcare_Resource_ProjectsLocationsDatasetsDicomStoresStudiesSeriesInstancesFrames extends Google_Service_Resource -{ - /** - * RetrieveFrames returns instances associated with the given study, series, SOP - * Instance UID and frame numbers. See http://dicom.nema.org/medical/dicom/curre - * nt/output/html/part18.html#sect_10.4. (frames.retrieveFrames) - * - * @param string $parent The name of the DICOM store that is being accessed. For - * example, `projects/{project_id}/locations/{location_id}/datasets/{dataset_id} - * /dicomStores/{dicom_store_id}`. - * @param string $dicomWebPath The path of the RetrieveFrames DICOMweb request. - * For example, `studies/{study_uid}/series/{series_uid}/instances/{instance_uid - * }/frames/{frame_list}`. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_HttpBody - */ - public function retrieveFrames($parent, $dicomWebPath, $optParams = array()) - { - $params = array('parent' => $parent, 'dicomWebPath' => $dicomWebPath); - $params = array_merge($params, $optParams); - return $this->call('retrieveFrames', array($params), "Google_Service_CloudHealthcare_HttpBody"); - } - /** - * RetrieveRenderedFrames returns instances associated with the given study, - * series, SOP Instance UID and frame numbers in an acceptable Rendered Media - * Type. See http://dicom.nema.org/medical/dicom/current/output/html/part18.html - * #sect_10.4. (frames.retrieveRendered) - * - * @param string $parent The name of the DICOM store that is being accessed. For - * example, `projects/{project_id}/locations/{location_id}/datasets/{dataset_id} - * /dicomStores/{dicom_store_id}`. - * @param string $dicomWebPath The path of the RetrieveRenderedFrames DICOMweb - * request. For example, `studies/{study_uid}/series/{series_uid}/instances/{ins - * tance_uid}/frames/{frame_list}/rendered`. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_HttpBody - */ - public function retrieveRendered($parent, $dicomWebPath, $optParams = array()) - { - $params = array('parent' => $parent, 'dicomWebPath' => $dicomWebPath); - $params = array_merge($params, $optParams); - return $this->call('retrieveRendered', array($params), "Google_Service_CloudHealthcare_HttpBody"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Resource/ProjectsLocationsDatasetsFhirStores.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Resource/ProjectsLocationsDatasetsFhirStores.php deleted file mode 100644 index 11eafac1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Resource/ProjectsLocationsDatasetsFhirStores.php +++ /dev/null @@ -1,301 +0,0 @@ - - * $healthcareService = new Google_Service_CloudHealthcare(...); - * $fhirStores = $healthcareService->fhirStores; - * - */ -class Google_Service_CloudHealthcare_Resource_ProjectsLocationsDatasetsFhirStores extends Google_Service_Resource -{ - /** - * Creates a new FHIR store within the parent dataset. (fhirStores.create) - * - * @param string $parent The name of the dataset this FHIR store belongs to. - * @param Google_Service_CloudHealthcare_FhirStore $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string fhirStoreId The ID of the FHIR store that is being created. - * The string must match the following regex: `[\p{L}\p{N}_\-\.]{1,256}`. - * @return Google_Service_CloudHealthcare_FhirStore - */ - public function create($parent, Google_Service_CloudHealthcare_FhirStore $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_CloudHealthcare_FhirStore"); - } - /** - * De-identifies data from the source store and writes it to the destination - * store. The metadata field type is OperationMetadata. If the request is - * successful, the response field type is DeidentifyFhirStoreSummary. If errors - * occur, error details field type is DeidentifyErrorDetails. Errors are also - * logged to Stackdriver (see [Viewing logs](/healthcare/docs/how-tos - * /stackdriver-logging)). (fhirStores.deidentify) - * - * @param string $sourceStore Source FHIR store resource name. For example, `pro - * jects/{project_id}/locations/{location_id}/datasets/{dataset_id}/fhirStores/{ - * fhir_store_id}`. - * @param Google_Service_CloudHealthcare_DeidentifyFhirStoreRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_Operation - */ - public function deidentify($sourceStore, Google_Service_CloudHealthcare_DeidentifyFhirStoreRequest $postBody, $optParams = array()) - { - $params = array('sourceStore' => $sourceStore, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('deidentify', array($params), "Google_Service_CloudHealthcare_Operation"); - } - /** - * Deletes the specified FHIR store and removes all resources within it. - * (fhirStores.delete) - * - * @param string $name The resource name of the FHIR store to delete. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_HealthcareEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudHealthcare_HealthcareEmpty"); - } - /** - * Export resources from the FHIR store to the specified destination. - * - * This method returns an Operation that can be used to track the status of the - * export by calling GetOperation. - * - * Immediate fatal errors appear in the error field, errors are also logged to - * Stackdriver (see [Viewing logs](/healthcare/docs/how-tos/stackdriver- - * logging)). Otherwise, when the operation finishes, a detailed response of - * type ExportResourcesResponse is returned in the response field. The metadata - * field type for this operation is OperationMetadata. (fhirStores.export) - * - * @param string $name The name of the FHIR store to export resource from. The - * name should be in the format of `projects/{project_id}/locations/{location_id - * }/datasets/{dataset_id}/fhirStores/{fhir_store_id}`. - * @param Google_Service_CloudHealthcare_ExportResourcesRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_Operation - */ - public function export($name, Google_Service_CloudHealthcare_ExportResourcesRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('export', array($params), "Google_Service_CloudHealthcare_Operation"); - } - /** - * Gets the configuration of the specified FHIR store. (fhirStores.get) - * - * @param string $name The resource name of the FHIR store to get. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_FhirStore - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudHealthcare_FhirStore"); - } - /** - * Gets the access control policy for a resource. Returns an empty policy if the - * resource exists and does not have a policy set. (fhirStores.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. - * @return Google_Service_CloudHealthcare_Policy - */ - public function getIamPolicy($resource, $optParams = array()) - { - $params = array('resource' => $resource); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_CloudHealthcare_Policy"); - } - /** - * Import resources to the FHIR store by loading data from the specified - * sources. This method is optimized to load large quantities of data using - * import semantics that ignore some FHIR store configuration options and are - * not suitable for all use cases. It is primarily intended to load data into an - * empty FHIR store that is not being used by other clients. In cases where this - * method is not appropriate, consider using ExecuteBundle to load data. - * - * Every resource in the input must contain a client-supplied ID, and will be - * stored using that ID regardless of the enable_update_create setting on the - * FHIR store. - * - * The import process does not enforce referential integrity, regardless of the - * disable_referential_integrity setting on the FHIR store. This allows the - * import of resources with arbitrary interdependencies without considering - * grouping or ordering, but if the input data contains invalid references or if - * some resources fail to be imported, the FHIR store might be left in a state - * that violates referential integrity. - * - * If a resource with the specified ID already exists, the most recent version - * of the resource is overwritten without creating a new historical version, - * regardless of the disable_resource_versioning setting on the FHIR store. If - * transient failures occur during the import, it is possible that successfully - * imported resources will be overwritten more than once. - * - * The import operation is idempotent unless the input data contains multiple - * valid resources with the same ID but different contents. In that case, after - * the import completes, the store will contain exactly one resource with that - * ID but there is no ordering guarantee on which version of the contents it - * will have. The operation result counters do not count duplicate IDs as an - * error and will count one success for each resource in the input, which might - * result in a success count larger than the number of resources in the FHIR - * store. This often occurs when importing data organized in bundles produced by - * Patient-everything where each bundle contains its own copy of a resource such - * as Practitioner that might be referred to by many patients. - * - * If some resources fail to import, for example due to parsing errors, - * successfully imported resources are not rolled back. - * - * The location and format of the input data is specified by the parameters - * below. Note that if no format is specified, this method assumes the `BUNDLE` - * format. When using the `BUNDLE` format this method ignores the `Bundle.type` - * field, except that `history` bundles are rejected, and does not apply any of - * the bundle processing semantics for batch or transaction bundles. Unlike in - * ExecuteBundle, transaction bundles are not executed as a single transaction - * and bundle-internal references are not rewritten. The bundle is treated as a - * collection of resources to be written as provided in `Bundle.entry.resource`, - * ignoring `Bundle.entry.request`. As an example, this allows the import of - * `searchset` bundles produced by a FHIR search or Patient-everything - * operation. - * - * This method returns an Operation that can be used to track the status of the - * import by calling GetOperation. - * - * Immediate fatal errors appear in the error field, errors are also logged to - * Stackdriver (see [Viewing logs](/healthcare/docs/how-tos/stackdriver- - * logging)). Otherwise, when the operation finishes, a detailed response of - * type ImportResourcesResponse is returned in the response field. The metadata - * field type for this operation is OperationMetadata. (fhirStores.import) - * - * @param string $name The name of the FHIR store to import FHIR resources to. - * The name should be in the format of `projects/{project_id}/locations/{locatio - * n_id}/datasets/{dataset_id}/fhirStores/{fhir_store_id}`. - * @param Google_Service_CloudHealthcare_ImportResourcesRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_Operation - */ - public function import($name, Google_Service_CloudHealthcare_ImportResourcesRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('import', array($params), "Google_Service_CloudHealthcare_Operation"); - } - /** - * Lists the FHIR stores in the given dataset. - * (fhirStores.listProjectsLocationsDatasetsFhirStores) - * - * @param string $parent Name of the dataset. - * @param array $optParams Optional parameters. - * - * @opt_param string filter Restricts stores returned to those matching a - * filter. Syntax: - * https://cloud.google.com/appengine/docs/standard/python/search/query_strings - * Only filtering on labels is supported, for example `labels.key=value`. - * @opt_param string pageToken The next_page_token value returned from the - * previous List request, if any. - * @opt_param int pageSize Limit on the number of FHIR stores to return in a - * single response. If zero the default page size of 100 is used. - * @return Google_Service_CloudHealthcare_ListFhirStoresResponse - */ - public function listProjectsLocationsDatasetsFhirStores($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudHealthcare_ListFhirStoresResponse"); - } - /** - * Updates the configuration of the specified FHIR store. (fhirStores.patch) - * - * @param string $name Output only. Resource name of the FHIR store, of the form - * `projects/{project_id}/datasets/{dataset_id}/fhirStores/{fhir_store_id}`. - * @param Google_Service_CloudHealthcare_FhirStore $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask The update mask applies to the resource. For the - * `FieldMask` definition, see https://developers.google.com/protocol- - * buffers/docs/reference/google.protobuf#fieldmask - * @return Google_Service_CloudHealthcare_FhirStore - */ - public function patch($name, Google_Service_CloudHealthcare_FhirStore $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_CloudHealthcare_FhirStore"); - } - /** - * Sets the access control policy on the specified resource. Replaces any - * existing policy. - * - * Can return Public Errors: NOT_FOUND, INVALID_ARGUMENT and PERMISSION_DENIED - * (fhirStores.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_CloudHealthcare_SetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_Policy - */ - public function setIamPolicy($resource, Google_Service_CloudHealthcare_SetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_CloudHealthcare_Policy"); - } - /** - * 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. (fhirStores.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_CloudHealthcare_TestIamPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_TestIamPermissionsResponse - */ - public function testIamPermissions($resource, Google_Service_CloudHealthcare_TestIamPermissionsRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_CloudHealthcare_TestIamPermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Resource/ProjectsLocationsDatasetsFhirStoresFhir.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Resource/ProjectsLocationsDatasetsFhirStoresFhir.php deleted file mode 100644 index d01becaa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Resource/ProjectsLocationsDatasetsFhirStoresFhir.php +++ /dev/null @@ -1,628 +0,0 @@ - - * $healthcareService = new Google_Service_CloudHealthcare(...); - * $fhir = $healthcareService->fhir; - * - */ -class Google_Service_CloudHealthcare_Resource_ProjectsLocationsDatasetsFhirStoresFhir extends Google_Service_Resource -{ - /** - * Retrieves the N most recent `Observation` resources for a subject matching - * search criteria specified as query parameters, grouped by `Observation.code`, - * sorted from most recent to oldest. - * - * Implements the FHIR extended operation Observation-lastn - * ([STU3](http://hl7.org/implement/standards/fhir/STU3/observation- - * operations.html#lastn), [R4](http://hl7.org/implement/standards/fhir/R4 - * /observation-operations.html#lastn)). - * - * DSTU2 doesn't define the Observation-lastn method, but the server supports it - * the same way it supports STU3. - * - * Search terms are provided as query parameters following the same pattern as - * the search method. The following search parameters must be provided: - * - * - `subject` or `patient` to specify a subject for the Observation. - - * `code`, `category` or any of the composite parameters that include - * `code`. - * - * Any other valid Observation search parameters can also be provided. This - * operation accepts an additional query parameter `max`, which specifies N, the - * maximum number of Observations to return from each group, with a default of - * 1. - * - * Searches with over 1000 results are rejected. Results are counted before - * grouping and limiting the results with `max`. To stay within the limit, - * constrain these searches using Observation search parameters such as - * `_lastUpdated` or `date`. - * - * On success, the response body will contain a JSON-encoded representation of a - * `Bundle` resource of type `searchset`, containing the results of the - * operation. Errors generated by the FHIR store will contain a JSON-encoded - * `OperationOutcome` resource describing the reason for the error. If the - * request cannot be mapped to a valid API method on a FHIR store, a generic GCP - * error might be returned instead. (fhir.ObservationLastn) - * - * @param string $parent Name of the FHIR store to retrieve resources from. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_HttpBody - */ - public function ObservationLastn($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('Observation-lastn', array($params), "Google_Service_CloudHealthcare_HttpBody"); - } - /** - * On success, the response body will contain a JSON-encoded representation of a - * `Bundle` resource of type `searchset`, containing the results of the - * operation. Errors generated by the FHIR store will contain a JSON-encoded - * `OperationOutcome` resource describing the reason for the error. If the - * request cannot be mapped to a valid API method on a FHIR store, a generic GCP - * error might be returned instead. (fhir.PatientEverything) - * - * @param string $name Name of the `Patient` resource for which the information - * is required. - * @param array $optParams Optional parameters. - * - * @opt_param string start The response includes records subsequent to the start - * date. If no start date is provided, all records prior to the end date are in - * scope. - * @opt_param string _page_token Used to retrieve the next or previous page of - * results when using pagination. Value should be set to the value of page_token - * set in next or previous page links' urls. Next and previous page are returned - * in the response bundle's links field, where `link.relation` is "previous" or - * "next". - * - * Omit `page_token` if no previous request has been made. - * @opt_param string end The response includes records prior to the end date. If - * no end date is provided, all records subsequent to the start date are in - * scope. - * @opt_param int _count Maximum number of resources in a page. Defaults to 100. - * @return Google_Service_CloudHealthcare_HttpBody - */ - public function PatientEverything($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('Patient-everything', array($params), "Google_Service_CloudHealthcare_HttpBody"); - } - /** - * Deletes all the historical versions of a resource (excluding the current - * version) from the FHIR store. To remove all versions of a resource, first - * delete the current version and then call this method. - * - * This is not a FHIR standard operation. (fhir.ResourcePurge) - * - * @param string $name The name of the resource to purge. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_HealthcareEmpty - */ - public function ResourcePurge($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('Resource-purge', array($params), "Google_Service_CloudHealthcare_HealthcareEmpty"); - } - /** - * Gets the FHIR capability statement ([STU3](http://hl7.org/implement/standards - * /fhir/STU3/capabilitystatement.html), - * [R4](http://hl7.org/implement/standards/fhir/R4/capabilitystatement.html)), - * or the [conformance - * statement](http://hl7.org/implement/standards/fhir/DSTU2/conformance.html) in - * the DSTU2 case for the store, which contains a description of functionality - * supported by the server. - * - * Implements the FHIR standard capabilities interaction - * ([STU3](http://hl7.org/implement/standards/fhir/STU3/http.html#capabilities), - * [R4](http://hl7.org/implement/standards/fhir/R4/http.html#capabilities)), or - * the [conformance interaction](http://hl7.org/implement/standards/fhir/DSTU2/h - * ttp.html#conformance) in the DSTU2 case. - * - * On success, the response body will contain a JSON-encoded representation of a - * `CapabilityStatement` resource. (fhir.capabilities) - * - * @param string $name Name of the FHIR store to retrieve the capabilities for. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_HttpBody - */ - public function capabilities($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('capabilities', array($params), "Google_Service_CloudHealthcare_HttpBody"); - } - /** - * Deletes FHIR resources that match a search query. - * - * Implements the FHIR standard conditional delete interaction - * ([DSTU2](http://hl7.org/implement/standards/fhir/DSTU2/http.html#2.1.0.12.1), - * [STU3](http://hl7.org/implement/standards/fhir/STU3/http.html#2.21.0.13.1), - * [R4](http://hl7.org/implement/standards/fhir/R4/http.html#3.1.0.7.1)). If - * multiple resources match, all of them will be deleted. - * - * Search terms are provided as query parameters following the same pattern as - * the search method. - * - * Note: Unless resource versioning is disabled by setting the - * disable_resource_versioning flag on the FHIR store, the deleted resources - * will be moved to a history repository that can still be retrieved through - * vread and related methods, unless they are removed by the purge method. - * (fhir.conditionalDelete) - * - * @param string $parent The name of the FHIR store this resource belongs to. - * @param string $type The FHIR resource type to delete, such as Patient or - * Observation. For a complete list, see the FHIR Resource Index - * ([DSTU2](http://hl7.org/implement/standards/fhir/DSTU2/resourcelist.html), - * [STU3](http://hl7.org/implement/standards/fhir/STU3/resourcelist.html), - * [R4](http://hl7.org/implement/standards/fhir/R4/resourcelist.html)). - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_HealthcareEmpty - */ - public function conditionalDelete($parent, $type, $optParams = array()) - { - $params = array('parent' => $parent, 'type' => $type); - $params = array_merge($params, $optParams); - return $this->call('conditionalDelete', array($params), "Google_Service_CloudHealthcare_HealthcareEmpty"); - } - /** - * If a resource is found based on the search criteria specified in the query - * parameters, updates part of that resource by applying the operations - * specified in a [JSON Patch](http://jsonpatch.com/) document. - * - * Implements the FHIR standard conditional patch interaction - * ([STU3](http://hl7.org/implement/standards/fhir/STU3/http.html#patch), - * [R4](http://hl7.org/implement/standards/fhir/R4/http.html#patch)). - * - * DSTU2 doesn't define a conditional patch method, but the server supports it - * in the same way it supports STU3. - * - * Search terms are provided as query parameters following the same pattern as - * the search method. - * - * If the search criteria identify more than one match, the request will return - * a `412 Precondition Failed` error. - * - * The request body must contain a JSON Patch document, and the request headers - * must contain `Content-Type: application/json-patch+json`. - * - * On success, the response body will contain a JSON-encoded representation of - * the updated resource, including the server-assigned version ID. Errors - * generated by the FHIR store will contain a JSON-encoded `OperationOutcome` - * resource describing the reason for the error. If the request cannot be mapped - * to a valid API method on a FHIR store, a generic GCP error might be returned - * instead. (fhir.conditionalPatch) - * - * @param string $parent The name of the FHIR store this resource belongs to. - * @param string $type The FHIR resource type to update, such as Patient or - * Observation. For a complete list, see the FHIR Resource Index - * ([DSTU2](http://hl7.org/implement/standards/fhir/DSTU2/resourcelist.html), - * [STU3](http://hl7.org/implement/standards/fhir/STU3/resourcelist.html), - * [R4](http://hl7.org/implement/standards/fhir/R4/resourcelist.html)). - * @param Google_Service_CloudHealthcare_HttpBody $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_HttpBody - */ - public function conditionalPatch($parent, $type, Google_Service_CloudHealthcare_HttpBody $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'type' => $type, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('conditionalPatch', array($params), "Google_Service_CloudHealthcare_HttpBody"); - } - /** - * If a resource is found based on the search criteria specified in the query - * parameters, updates the entire contents of that resource. - * - * Implements the FHIR standard conditional update interaction - * ([DSTU2](http://hl7.org/implement/standards/fhir/DSTU2/http.html#2.1.0.10.2), - * [STU3](http://hl7.org/implement/standards/fhir/STU3/http.html#cond-update), - * [R4](http://hl7.org/implement/standards/fhir/R4/http.html#cond-update)). - * - * Search terms are provided as query parameters following the same pattern as - * the search method. - * - * If the search criteria identify more than one match, the request will return - * a `412 Precondition Failed` error. If the search criteria identify zero - * matches, and the supplied resource body contains an `id`, and the FHIR store - * has enable_update_create set, creates the resource with the client-specified - * ID. If the search criteria identify zero matches, and the supplied resource - * body does not contain an `id`, the resource will be created with a server- - * assigned ID as per the create method. - * - * The request body must contain a JSON-encoded FHIR resource, and the request - * headers must contain `Content-Type: application/fhir+json`. - * - * On success, the response body will contain a JSON-encoded representation of - * the updated resource, including the server-assigned version ID. Errors - * generated by the FHIR store will contain a JSON-encoded `OperationOutcome` - * resource describing the reason for the error. If the request cannot be mapped - * to a valid API method on a FHIR store, a generic GCP error might be returned - * instead. (fhir.conditionalUpdate) - * - * @param string $parent The name of the FHIR store this resource belongs to. - * @param string $type The FHIR resource type to update, such as Patient or - * Observation. For a complete list, see the FHIR Resource Index - * ([DSTU2](http://hl7.org/implement/standards/fhir/DSTU2/resourcelist.html), - * [STU3](http://hl7.org/implement/standards/fhir/STU3/resourcelist.html), - * [R4](http://hl7.org/implement/standards/fhir/R4/resourcelist.html)). Must - * match the resource type in the provided content. - * @param Google_Service_CloudHealthcare_HttpBody $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_HttpBody - */ - public function conditionalUpdate($parent, $type, Google_Service_CloudHealthcare_HttpBody $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'type' => $type, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('conditionalUpdate', array($params), "Google_Service_CloudHealthcare_HttpBody"); - } - /** - * Creates a FHIR resource. - * - * Implements the FHIR standard create interaction - * ([DSTU2](http://hl7.org/implement/standards/fhir/DSTU2/http.html#create), - * [STU3](http://hl7.org/implement/standards/fhir/STU3/http.html#create), - * [R4](http://hl7.org/implement/standards/fhir/R4/http.html#create)), which - * creates a new resource with a server-assigned resource ID. - * - * Also supports the FHIR standard conditional create interaction - * ([DSTU2](http://hl7.org/implement/standards/fhir/DSTU2/http.html#ccreate), - * [STU3](http://hl7.org/implement/standards/fhir/STU3/http.html#ccreate), - * [R4](http://hl7.org/implement/standards/fhir/R4/http.html#ccreate)), - * specified by supplying an `If-None-Exist` header containing a FHIR search - * query. If no resources match this search query, the server processes the - * create operation as normal. - * - * The request body must contain a JSON-encoded FHIR resource, and the request - * headers must contain `Content-Type: application/fhir+json`. - * - * On success, the response body will contain a JSON-encoded representation of - * the resource as it was created on the server, including the server-assigned - * resource ID and version ID. Errors generated by the FHIR store will contain a - * JSON-encoded `OperationOutcome` resource describing the reason for the error. - * If the request cannot be mapped to a valid API method on a FHIR store, a - * generic GCP error might be returned instead. (fhir.create) - * - * @param string $parent The name of the FHIR store this resource belongs to. - * @param string $type The FHIR resource type to create, such as Patient or - * Observation. For a complete list, see the FHIR Resource Index - * ([DSTU2](http://hl7.org/implement/standards/fhir/DSTU2/resourcelist.html), - * [STU3](http://hl7.org/implement/standards/fhir/STU3/resourcelist.html), - * [R4](http://hl7.org/implement/standards/fhir/R4/resourcelist.html)). Must - * match the resource type in the provided content. - * @param Google_Service_CloudHealthcare_HttpBody $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_HttpBody - */ - public function create($parent, $type, Google_Service_CloudHealthcare_HttpBody $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'type' => $type, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_CloudHealthcare_HttpBody"); - } - /** - * Deletes a FHIR resource. - * - * Implements the FHIR standard delete interaction - * ([DSTU2](http://hl7.org/implement/standards/fhir/DSTU2/http.html#delete), - * [STU3](http://hl7.org/implement/standards/fhir/STU3/http.html#delete), - * [R4](http://hl7.org/implement/standards/fhir/R4/http.html#delete)). - * - * Note: Unless resource versioning is disabled by setting the - * disable_resource_versioning flag on the FHIR store, the deleted resources - * will be moved to a history repository that can still be retrieved through - * vread and related methods, unless they are removed by the purge method. - * (fhir.delete) - * - * @param string $name The name of the resource to delete. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_HttpBody - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudHealthcare_HttpBody"); - } - /** - * Executes all the requests in the given Bundle. - * - * Implements the FHIR standard batch/transaction interaction ([DSTU2](http://hl - * 7.org/implement/standards/fhir/DSTU2/http.html#transaction), - * [STU3](http://hl7.org/implement/standards/fhir/STU3/http.html#transaction), - * [R4](http://hl7.org/implement/standards/fhir/R4/http.html#transaction)). - * - * Supports all interactions within a bundle, except search. This method accepts - * Bundles of type `batch` and `transaction`, processing them according to the - * batch processing rules - * ([DSTU2](http://hl7.org/implement/standards/fhir/DSTU2/http.html#2.1.0.16.1), - * [STU3](http://hl7.org/implement/standards/fhir/STU3/http.html#2.21.0.17.1), - * [R4](http://hl7.org/implement/standards/fhir/R4/http.html#brules)) and - * transaction processing rules - * ([DSTU2](http://hl7.org/implement/standards/fhir/DSTU2/http.html#2.1.0.16.2), - * [STU3](http://hl7.org/implement/standards/fhir/STU3/http.html#2.21.0.17.2), - * [R4](http://hl7.org/implement/standards/fhir/R4/http.html#trules)). - * - * The request body must contain a JSON-encoded FHIR `Bundle` resource, and the - * request headers must contain `Content-Type: application/fhir+json`. - * - * For a batch bundle or a successful transaction the response body will contain - * a JSON-encoded representation of a `Bundle` resource of type `batch-response` - * or `transaction-response` containing one entry for each entry in the request, - * with the outcome of processing the entry. In the case of an error for a - * transaction bundle, the response body will contain a JSON-encoded - * `OperationOutcome` resource describing the reason for the error. If the - * request cannot be mapped to a valid API method on a FHIR store, a generic GCP - * error might be returned instead. (fhir.executeBundle) - * - * @param string $parent Name of the FHIR store in which this bundle will be - * executed. - * @param Google_Service_CloudHealthcare_HttpBody $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_HttpBody - */ - public function executeBundle($parent, Google_Service_CloudHealthcare_HttpBody $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('executeBundle', array($params), "Google_Service_CloudHealthcare_HttpBody"); - } - /** - * Lists all the versions of a resource (including the current version and - * deleted versions) from the FHIR store. - * - * Implements the per-resource form of the FHIR standard history interaction - * ([DSTU2](http://hl7.org/implement/standards/fhir/DSTU2/http.html#history), - * [STU3](http://hl7.org/implement/standards/fhir/STU3/http.html#history), - * [R4](http://hl7.org/implement/standards/fhir/R4/http.html#history)). - * - * On success, the response body will contain a JSON-encoded representation of a - * `Bundle` resource of type `history`, containing the version history sorted - * from most recent to oldest versions. Errors generated by the FHIR store will - * contain a JSON-encoded `OperationOutcome` resource describing the reason for - * the error. If the request cannot be mapped to a valid API method on a FHIR - * store, a generic GCP error might be returned instead. (fhir.history) - * - * @param string $name The name of the resource to retrieve. - * @param array $optParams Optional parameters. - * - * @opt_param string _since Only include resource versions that were created at - * or after the given instant in time. The instant in time uses the format YYYY- - * MM-DDThh:mm:ss.sss+zz:zz (for example 2015-02-07T13:28:17.239+02:00 or - * 2017-01-01T00:00:00Z). The time must be specified to the second and include a - * time zone. - * @opt_param string _at Only include resource versions that were current at - * some point during the time period specified in the date time value. The date - * parameter format is yyyy-mm-ddThh:mm:ss[Z|(+|-)hh:mm] - * - * Clients may specify any of the following: - * - * * An entire year: `_at=2019` * An entire month: `_at=2019-01` * A specific - * day: `_at=2019-01-20` * A specific second: `_at=2018-12-31T23:59:58Z` - * @opt_param string _page_token Used to retrieve the first, previous, next, or - * last page of resource versions when using pagination. Value should be set to - * the value of `_page_token` set in next or previous page links' URLs. Next and - * previous page are returned in the response bundle's links field, where - * `link.relation` is "previous" or "next". - * - * Omit `_page_token` if no previous request has been made. - * @opt_param int _count The maximum number of search results on a page. - * Defaults to 1000. - * @return Google_Service_CloudHealthcare_HttpBody - */ - public function history($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('history', array($params), "Google_Service_CloudHealthcare_HttpBody"); - } - /** - * Updates part of an existing resource by applying the operations specified in - * a [JSON Patch](http://jsonpatch.com/) document. - * - * Implements the FHIR standard patch interaction - * ([STU3](http://hl7.org/implement/standards/fhir/STU3/http.html#patch), - * [R4](http://hl7.org/implement/standards/fhir/R4/http.html#patch)]). - * - * DSTU2 doesn't define a patch method, but the server supports it in the same - * way it supports STU3. - * - * The request body must contain a JSON Patch document, and the request headers - * must contain `Content-Type: application/json-patch+json`. - * - * On success, the response body will contain a JSON-encoded representation of - * the updated resource, including the server-assigned version ID. Errors - * generated by the FHIR store will contain a JSON-encoded `OperationOutcome` - * resource describing the reason for the error. If the request cannot be mapped - * to a valid API method on a FHIR store, a generic GCP error might be returned - * instead. (fhir.patch) - * - * @param string $name The name of the resource to update. - * @param Google_Service_CloudHealthcare_HttpBody $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_HttpBody - */ - public function patch($name, Google_Service_CloudHealthcare_HttpBody $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_CloudHealthcare_HttpBody"); - } - /** - * Gets the contents of a FHIR resource. - * - * Implements the FHIR standard read interaction - * ([DSTU2](http://hl7.org/implement/standards/fhir/DSTU2/http.html#read), - * [STU3](http://hl7.org/implement/standards/fhir/STU3/http.html#read), - * [R4](http://hl7.org/implement/standards/fhir/R4/http.html#read)). - * - * Also supports the FHIR standard conditional read interaction - * ([DSTU2](http://hl7.org/implement/standards/fhir/DSTU2/http.html#cread), - * [STU3](http://hl7.org/implement/standards/fhir/STU3/http.html#cread), - * [R4](http://hl7.org/implement/standards/fhir/R4/http.html#cread)) specified - * by supplying an `If-Modified-Since` header with a date/time value or an `If- - * None-Match` header with an ETag value. - * - * On success, the response body will contain a JSON-encoded representation of - * the resource. Errors generated by the FHIR store will contain a JSON-encoded - * `OperationOutcome` resource describing the reason for the error. If the - * request cannot be mapped to a valid API method on a FHIR store, a generic GCP - * error might be returned instead. (fhir.read) - * - * @param string $name The name of the resource to retrieve. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_HttpBody - */ - public function read($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('read', array($params), "Google_Service_CloudHealthcare_HttpBody"); - } - /** - * Searches for resources in the given FHIR store according to criteria - * specified as query parameters. - * - * Implements the FHIR standard search interaction - * ([DSTU2](http://hl7.org/implement/standards/fhir/DSTU2/http.html#search), - * [STU3](http://hl7.org/implement/standards/fhir/STU3/http.html#search), - * [R4](http://hl7.org/implement/standards/fhir/R4/http.html#search)) using the - * search semantics described in the FHIR Search specification - * ([DSTU2](http://hl7.org/implement/standards/fhir/DSTU2/search.html), - * [STU3](http://hl7.org/implement/standards/fhir/STU3/search.html), - * [R4](http://hl7.org/implement/standards/fhir/R4/search.html)). - * - * Supports three methods of search defined by the specification: - * - * * `GET [base]?[parameters]` to search across all resources. * `GET - * [base]/[type]?[parameters]` to search resources of a specified type. * `POST - * [base]/[type]/_search?[parameters]` as an alternate form having the same - * semantics as the `GET` method. - * - * The `GET` methods do not support compartment searches. The `POST` method does - * not support `application/x-www-form-urlencoded` search parameters. - * - * On success, the response body will contain a JSON-encoded representation of a - * `Bundle` resource of type `searchset`, containing the results of the search. - * Errors generated by the FHIR store will contain a JSON-encoded - * `OperationOutcome` resource describing the reason for the error. If the - * request cannot be mapped to a valid API method on a FHIR store, a generic GCP - * error might be returned instead. - * - * The server's capability statement, retrieved through capabilities, indicates - * what search parameters are supported on each FHIR resource. A list of all - * search parameters defined by the specification can be found in the FHIR - * Search Parameter Registry - * ([STU3](http://hl7.org/implement/standards/fhir/STU3/searchparameter- - * registry.html), [R4](http://hl7.org/implement/standards/fhir/R4 - * /searchparameter-registry.html)). FHIR search parameters for DSTU2 can be - * found on each resource's definition page. - * - * Supported search modifiers: `:missing`, `:exact`, `:contains`, `:text`, - * `:in`, `:not-in`, `:above`, `:below`, `:[type]`, `:not`, and `:recurse`. - * - * Supported search result parameters: `_sort`, `_count`, `_include`, - * `_revinclude`, `_summary=text`, `_summary=data`, and `_elements`. - * - * The maximum number of search results returned defaults to 100, which can be - * overridden by the `_count` parameter up to a maximum limit of 1000. If there - * are additional results, the returned `Bundle` will contain pagination links. - * - * Resources with a total size larger than 5MB or a field count larger than - * 50,000 might not be fully searchable as the server might trim its generated - * search index in those cases. - * - * Note: FHIR resources are indexed asynchronously, so there might be a slight - * delay between the time a resource is created or changes and when the change - * is reflected in search results. (fhir.search) - * - * @param string $parent Name of the FHIR store to retrieve resources from. - * @param Google_Service_CloudHealthcare_SearchResourcesRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_HttpBody - */ - public function search($parent, Google_Service_CloudHealthcare_SearchResourcesRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('search', array($params), "Google_Service_CloudHealthcare_HttpBody"); - } - /** - * Updates the entire contents of a resource. - * - * Implements the FHIR standard update interaction - * ([DSTU2](http://hl7.org/implement/standards/fhir/DSTU2/http.html#update), - * [STU3](http://hl7.org/implement/standards/fhir/STU3/http.html#update), - * [R4](http://hl7.org/implement/standards/fhir/R4/http.html#update)). - * - * If the specified resource does not exist and the FHIR store has - * enable_update_create set, creates the resource with the client-specified ID. - * - * The request body must contain a JSON-encoded FHIR resource, and the request - * headers must contain `Content-Type: application/fhir+json`. The resource must - * contain an `id` element having an identical value to the ID in the REST path - * of the request. - * - * On success, the response body will contain a JSON-encoded representation of - * the updated resource, including the server-assigned version ID. Errors - * generated by the FHIR store will contain a JSON-encoded `OperationOutcome` - * resource describing the reason for the error. If the request cannot be mapped - * to a valid API method on a FHIR store, a generic GCP error might be returned - * instead. (fhir.update) - * - * @param string $name The name of the resource to update. - * @param Google_Service_CloudHealthcare_HttpBody $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_HttpBody - */ - public function update($name, Google_Service_CloudHealthcare_HttpBody $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_CloudHealthcare_HttpBody"); - } - /** - * Gets the contents of a version (current or historical) of a FHIR resource by - * version ID. - * - * Implements the FHIR standard vread interaction - * ([DSTU2](http://hl7.org/implement/standards/fhir/DSTU2/http.html#vread), - * [STU3](http://hl7.org/implement/standards/fhir/STU3/http.html#vread), - * [R4](http://hl7.org/implement/standards/fhir/R4/http.html#vread)). - * - * On success, the response body will contain a JSON-encoded representation of - * the resource. Errors generated by the FHIR store will contain a JSON-encoded - * `OperationOutcome` resource describing the reason for the error. If the - * request cannot be mapped to a valid API method on a FHIR store, a generic GCP - * error might be returned instead. (fhir.vread) - * - * @param string $name The name of the resource version to retrieve. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_HttpBody - */ - public function vread($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('vread', array($params), "Google_Service_CloudHealthcare_HttpBody"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Resource/ProjectsLocationsDatasetsHl7V2Stores.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Resource/ProjectsLocationsDatasetsHl7V2Stores.php deleted file mode 100644 index 83130543..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Resource/ProjectsLocationsDatasetsHl7V2Stores.php +++ /dev/null @@ -1,184 +0,0 @@ - - * $healthcareService = new Google_Service_CloudHealthcare(...); - * $hl7V2Stores = $healthcareService->hl7V2Stores; - * - */ -class Google_Service_CloudHealthcare_Resource_ProjectsLocationsDatasetsHl7V2Stores extends Google_Service_Resource -{ - /** - * Creates a new HL7v2 store within the parent dataset. (hl7V2Stores.create) - * - * @param string $parent The name of the dataset this HL7v2 store belongs to. - * @param Google_Service_CloudHealthcare_Hl7V2Store $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string hl7V2StoreId The ID of the HL7v2 store that is being - * created. The string must match the following regex: - * `[\p{L}\p{N}_\-\.]{1,256}`. - * @return Google_Service_CloudHealthcare_Hl7V2Store - */ - public function create($parent, Google_Service_CloudHealthcare_Hl7V2Store $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_CloudHealthcare_Hl7V2Store"); - } - /** - * Deletes the specified HL7v2 store and removes all messages that are contained - * within it. (hl7V2Stores.delete) - * - * @param string $name The resource name of the HL7v2 store to delete. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_HealthcareEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudHealthcare_HealthcareEmpty"); - } - /** - * Gets the specified HL7v2 store. (hl7V2Stores.get) - * - * @param string $name The resource name of the HL7v2 store to get. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_Hl7V2Store - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudHealthcare_Hl7V2Store"); - } - /** - * Gets the access control policy for a resource. Returns an empty policy if the - * resource exists and does not have a policy set. (hl7V2Stores.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. - * @return Google_Service_CloudHealthcare_Policy - */ - public function getIamPolicy($resource, $optParams = array()) - { - $params = array('resource' => $resource); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_CloudHealthcare_Policy"); - } - /** - * Lists the HL7v2 stores in the given dataset. - * (hl7V2Stores.listProjectsLocationsDatasetsHl7V2Stores) - * - * @param string $parent Name of the dataset. - * @param array $optParams Optional parameters. - * - * @opt_param int pageSize Limit on the number of HL7v2 stores to return in a - * single response. If zero the default page size of 100 is used. - * @opt_param string filter Restricts stores returned to those matching a - * filter. Syntax: - * https://cloud.google.com/appengine/docs/standard/python/search/query_strings - * Only filtering on labels is supported. For example, `labels.key=value`. - * @opt_param string pageToken The next_page_token value returned from the - * previous List request, if any. - * @return Google_Service_CloudHealthcare_ListHl7V2StoresResponse - */ - public function listProjectsLocationsDatasetsHl7V2Stores($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudHealthcare_ListHl7V2StoresResponse"); - } - /** - * Updates the HL7v2 store. (hl7V2Stores.patch) - * - * @param string $name Output only. Resource name of the HL7v2 store, of the - * form - * `projects/{project_id}/datasets/{dataset_id}/hl7V2Stores/{hl7v2_store_id}`. - * @param Google_Service_CloudHealthcare_Hl7V2Store $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask The update mask applies to the resource. For the - * `FieldMask` definition, see https://developers.google.com/protocol- - * buffers/docs/reference/google.protobuf#fieldmask - * @return Google_Service_CloudHealthcare_Hl7V2Store - */ - public function patch($name, Google_Service_CloudHealthcare_Hl7V2Store $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_CloudHealthcare_Hl7V2Store"); - } - /** - * Sets the access control policy on the specified resource. Replaces any - * existing policy. - * - * Can return Public Errors: NOT_FOUND, INVALID_ARGUMENT and PERMISSION_DENIED - * (hl7V2Stores.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_CloudHealthcare_SetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_Policy - */ - public function setIamPolicy($resource, Google_Service_CloudHealthcare_SetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_CloudHealthcare_Policy"); - } - /** - * 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. (hl7V2Stores.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_CloudHealthcare_TestIamPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_TestIamPermissionsResponse - */ - public function testIamPermissions($resource, Google_Service_CloudHealthcare_TestIamPermissionsRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_CloudHealthcare_TestIamPermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Resource/ProjectsLocationsDatasetsHl7V2StoresMessages.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Resource/ProjectsLocationsDatasetsHl7V2StoresMessages.php deleted file mode 100644 index 998bb984..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Resource/ProjectsLocationsDatasetsHl7V2StoresMessages.php +++ /dev/null @@ -1,182 +0,0 @@ - - * $healthcareService = new Google_Service_CloudHealthcare(...); - * $messages = $healthcareService->messages; - * - */ -class Google_Service_CloudHealthcare_Resource_ProjectsLocationsDatasetsHl7V2StoresMessages extends Google_Service_Resource -{ - /** - * Creates a message and sends a notification to the Cloud Pub/Sub topic. If - * configured, the MLLP adapter listens to messages created by this method and - * sends those back to the hospital. A successful response indicates the message - * has been persisted to storage and a Cloud Pub/Sub notification has been sent. - * Sending to the hospital by the MLLP adapter happens asynchronously. - * (messages.create) - * - * @param string $parent The name of the dataset this message belongs to. - * @param Google_Service_CloudHealthcare_CreateMessageRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_Message - */ - public function create($parent, Google_Service_CloudHealthcare_CreateMessageRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_CloudHealthcare_Message"); - } - /** - * Deletes an HL7v2 message. (messages.delete) - * - * @param string $name The resource name of the HL7v2 message to delete. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_HealthcareEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudHealthcare_HealthcareEmpty"); - } - /** - * Gets an HL7v2 message. (messages.get) - * - * @param string $name The resource name of the HL7v2 message to retrieve. - * @param array $optParams Optional parameters. - * - * @opt_param string view Specifies which parts of the Message resource to - * return in the response. When unspecified, equivalent to FULL. - * @return Google_Service_CloudHealthcare_Message - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudHealthcare_Message"); - } - /** - * Ingests a new HL7v2 message from the hospital and sends a notification to the - * Cloud Pub/Sub topic. Return is an HL7v2 ACK message if the message was - * successfully stored. Otherwise an error is returned. (messages.ingest) - * - * @param string $parent The name of the HL7v2 store this message belongs to. - * @param Google_Service_CloudHealthcare_IngestMessageRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_IngestMessageResponse - */ - public function ingest($parent, Google_Service_CloudHealthcare_IngestMessageRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('ingest', array($params), "Google_Service_CloudHealthcare_IngestMessageResponse"); - } - /** - * Lists all the messages in the given HL7v2 store with support for filtering. - * - * Note: HL7v2 messages are indexed asynchronously, so there might be a slight - * delay between the time a message is created and when it can be found through - * a filter. (messages.listProjectsLocationsDatasetsHl7V2StoresMessages) - * - * @param string $parent Name of the HL7v2 store to retrieve messages from. - * @param array $optParams Optional parameters. - * - * @opt_param string filter Restricts messages returned to those matching a - * filter. Syntax: - * https://cloud.google.com/appengine/docs/standard/python/search/query_strings - * - * Fields/functions available for filtering are: - * - * * `message_type`, from the MSH-9 segment. For example, `NOT message_type = - * "ADT"`. * `send_date` or `sendDate`, the YYYY-MM-DD date the message was - * sent in the dataset's time_zone, from the MSH-7 segment. For example, - * `send_date < "2017-01-02"`. * `send_time`, the timestamp when the message - * was sent, using the RFC3339 time format for comparisons, from the MSH-7 - * segment. For example, `send_time < "2017-01-02T00:00:00-05:00"`. * - * `send_facility`, the care center that the message came from, from the MSH-4 - * segment. For example, `send_facility = "ABC"`. * `PatientId(value, type)`, - * which matches if the message lists a patient having an ID of the given value - * and type in the PID-2, PID-3, or PID-4 segments. For example, - * `PatientId("123456", "MRN")`. * `labels.x`, a string value of the label with - * key `x` as set using the Message.labels map. For example, - * `labels."priority"="high"`. The operator `:*` can be used to assert the - * existence of a label. For example, `labels."priority":*`. - * - * Limitations on conjunctions: - * - * * Negation on the patient ID function or the labels field is not supported. - * For example, these queries are invalid: `NOT PatientId("123456", "MRN")`, - * `NOT labels."tag1":*`, `NOT labels."tag2"="val2"`. * Conjunction of multiple - * patient ID functions is not supported, for example this query is invalid: - * `PatientId("123456", "MRN") AND PatientId("456789", "MRN")`. * Conjunction - * of multiple labels fields is also not supported, for example this query is - * invalid: `labels."tag1":* AND labels."tag2"="val2"`. * Conjunction of one - * patient ID function, one labels field and conditions on other fields is - * supported. For example, this query is valid: `PatientId("123456", "MRN") AND - * labels."tag1":* AND message_type = "ADT"`. - * @opt_param string pageToken The next_page_token value returned from the - * previous List request, if any. - * @opt_param int pageSize Limit on the number of messages to return in a single - * response. If zero the default page size of 100 is used. - * @opt_param string view Specifies the parts of the Message to return in the - * response. When unspecified, equivalent to BASIC. - * @opt_param string orderBy Orders messages returned by the specified order_by - * clause. Syntax: - * https://cloud.google.com/apis/design/design_patterns#sorting_order - * - * Fields available for ordering are: - * - * * `send_time` - * @return Google_Service_CloudHealthcare_ListMessagesResponse - */ - public function listProjectsLocationsDatasetsHl7V2StoresMessages($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudHealthcare_ListMessagesResponse"); - } - /** - * Update the message. - * - * The contents of the message in Message.data and data extracted from the - * contents such as Message.create_time cannot be altered. Only the - * Message.labels field is allowed to be updated. The labels in the request are - * merged with the existing set of labels. Existing labels with the same keys - * are updated. (messages.patch) - * - * @param string $name Resource name of the Message, of the form `projects/{proj - * ect_id}/datasets/{dataset_id}/hl7V2Stores/{hl7_v2_store_id}/messages/{message - * _id}`. Assigned by the server. - * @param Google_Service_CloudHealthcare_Message $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask The update mask applies to the resource. For the - * `FieldMask` definition, see https://developers.google.com/protocol- - * buffers/docs/reference/google.protobuf#fieldmask - * @return Google_Service_CloudHealthcare_Message - */ - public function patch($name, Google_Service_CloudHealthcare_Message $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_CloudHealthcare_Message"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Resource/ProjectsLocationsDatasetsOperations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Resource/ProjectsLocationsDatasetsOperations.php deleted file mode 100644 index 4fa59d39..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Resource/ProjectsLocationsDatasetsOperations.php +++ /dev/null @@ -1,70 +0,0 @@ - - * $healthcareService = new Google_Service_CloudHealthcare(...); - * $operations = $healthcareService->operations; - * - */ -class Google_Service_CloudHealthcare_Resource_ProjectsLocationsDatasetsOperations extends Google_Service_Resource -{ - /** - * Gets the latest state of a long-running operation. Clients can use this - * method to poll the operation result at intervals as recommended by the API - * service. (operations.get) - * - * @param string $name The name of the operation resource. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudHealthcare_Operation - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudHealthcare_Operation"); - } - /** - * Lists operations that match the specified filter in the request. If the - * server doesn't support this method, it returns `UNIMPLEMENTED`. - * - * NOTE: the `name` binding allows API services to override the binding to use - * different resource name schemes, such as `users/operations`. To override the - * binding, API services can add a binding such as - * `"/v1/{name=users}/operations"` to their service configuration. For backwards - * compatibility, the default name includes the operations collection id, - * however overriding users must ensure the name binding is the parent resource, - * without the operations collection id. - * (operations.listProjectsLocationsDatasetsOperations) - * - * @param string $name The name of the operation's parent resource. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The standard list page token. - * @opt_param int pageSize The standard list page size. - * @opt_param string filter The standard list filter. - * @return Google_Service_CloudHealthcare_ListOperationsResponse - */ - public function listProjectsLocationsDatasetsOperations($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudHealthcare_ListOperationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Resources.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Resources.php deleted file mode 100644 index e8779f35..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Resources.php +++ /dev/null @@ -1,31 +0,0 @@ -resources = $resources; - } - public function getResources() - { - return $this->resources; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/SchemaConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/SchemaConfig.php deleted file mode 100644 index f2d25183..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/SchemaConfig.php +++ /dev/null @@ -1,39 +0,0 @@ -recursiveStructureDepth = $recursiveStructureDepth; - } - public function getRecursiveStructureDepth() - { - return $this->recursiveStructureDepth; - } - public function setSchemaType($schemaType) - { - $this->schemaType = $schemaType; - } - public function getSchemaType() - { - return $this->schemaType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/SearchResourcesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/SearchResourcesRequest.php deleted file mode 100644 index 85d19282..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/SearchResourcesRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -resourceType = $resourceType; - } - public function getResourceType() - { - return $this->resourceType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Segment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Segment.php deleted file mode 100644 index f7f1270f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Segment.php +++ /dev/null @@ -1,48 +0,0 @@ -fields = $fields; - } - public function getFields() - { - return $this->fields; - } - public function setSegmentId($segmentId) - { - $this->segmentId = $segmentId; - } - public function getSegmentId() - { - return $this->segmentId; - } - public function setSetId($setId) - { - $this->setId = $setId; - } - public function getSetId() - { - return $this->setId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/SetIamPolicyRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/SetIamPolicyRequest.php deleted file mode 100644 index 7295de78..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/SetIamPolicyRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -policy = $policy; - } - /** - * @return Google_Service_CloudHealthcare_Policy - */ - public function getPolicy() - { - return $this->policy; - } - public function setUpdateMask($updateMask) - { - $this->updateMask = $updateMask; - } - public function getUpdateMask() - { - return $this->updateMask; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Status.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Status.php deleted file mode 100644 index 478eab60..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/Status.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/TagFilterList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/TagFilterList.php deleted file mode 100644 index 2bbcb76a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/TagFilterList.php +++ /dev/null @@ -1,31 +0,0 @@ -tags = $tags; - } - public function getTags() - { - return $this->tags; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/TestIamPermissionsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/TestIamPermissionsRequest.php deleted file mode 100644 index 3e0536ef..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/TestIamPermissionsRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/TestIamPermissionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/TestIamPermissionsResponse.php deleted file mode 100644 index 384e92ea..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/TestIamPermissionsResponse.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/TextConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/TextConfig.php deleted file mode 100644 index ee8f9c1b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudHealthcare/TextConfig.php +++ /dev/null @@ -1,38 +0,0 @@ -transformations = $transformations; - } - /** - * @return Google_Service_CloudHealthcare_InfoTypeTransformation - */ - public function getTransformations() - { - return $this->transformations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP.php deleted file mode 100644 index ebd55464..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP.php +++ /dev/null @@ -1,229 +0,0 @@ - - * Controls access to cloud applications running on Google Cloud Platform.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_CloudIAP extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - - public $projects_brands; - public $projects_brands_identityAwareProxyClients; - public $v1; - - /** - * Constructs the internal representation of the CloudIAP service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://iap.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'iap'; - - $this->projects_brands = new Google_Service_CloudIAP_Resource_ProjectsBrands( - $this, - $this->serviceName, - 'brands', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/brands', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/brands', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_brands_identityAwareProxyClients = new Google_Service_CloudIAP_Resource_ProjectsBrandsIdentityAwareProxyClients( - $this, - $this->serviceName, - 'identityAwareProxyClients', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/identityAwareProxyClients', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/identityAwareProxyClients', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'resetSecret' => array( - 'path' => 'v1/{+name}:resetSecret', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->v1 = new Google_Service_CloudIAP_Resource_V1( - $this, - $this->serviceName, - 'v1', - array( - 'methods' => array( - 'getIamPolicy' => array( - 'path' => 'v1/{+resource}:getIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getIapSettings' => array( - 'path' => 'v1/{+name}:iapSettings', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setIamPolicy' => array( - 'path' => 'v1/{+resource}:setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => 'v1/{+resource}:testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'updateIapSettings' => array( - 'path' => 'v1/{+name}:iapSettings', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/AccessSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/AccessSettings.php deleted file mode 100644 index e596b51c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/AccessSettings.php +++ /dev/null @@ -1,69 +0,0 @@ -corsSettings = $corsSettings; - } - /** - * @return Google_Service_CloudIAP_CorsSettings - */ - public function getCorsSettings() - { - return $this->corsSettings; - } - /** - * @param Google_Service_CloudIAP_GcipSettings - */ - public function setGcipSettings(Google_Service_CloudIAP_GcipSettings $gcipSettings) - { - $this->gcipSettings = $gcipSettings; - } - /** - * @return Google_Service_CloudIAP_GcipSettings - */ - public function getGcipSettings() - { - return $this->gcipSettings; - } - /** - * @param Google_Service_CloudIAP_OAuthSettings - */ - public function setOauthSettings(Google_Service_CloudIAP_OAuthSettings $oauthSettings) - { - $this->oauthSettings = $oauthSettings; - } - /** - * @return Google_Service_CloudIAP_OAuthSettings - */ - public function getOauthSettings() - { - return $this->oauthSettings; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/ApplicationSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/ApplicationSettings.php deleted file mode 100644 index d38fb269..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/ApplicationSettings.php +++ /dev/null @@ -1,37 +0,0 @@ -csmSettings = $csmSettings; - } - /** - * @return Google_Service_CloudIAP_CsmSettings - */ - public function getCsmSettings() - { - return $this->csmSettings; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/Binding.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/Binding.php deleted file mode 100644 index f85cbf8f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/Binding.php +++ /dev/null @@ -1,56 +0,0 @@ -condition = $condition; - } - /** - * @return Google_Service_CloudIAP_Expr - */ - public function getCondition() - { - return $this->condition; - } - public function setMembers($members) - { - $this->members = $members; - } - public function getMembers() - { - return $this->members; - } - public function setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/Brand.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/Brand.php deleted file mode 100644 index 0995704c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/Brand.php +++ /dev/null @@ -1,57 +0,0 @@ -applicationTitle = $applicationTitle; - } - public function getApplicationTitle() - { - return $this->applicationTitle; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOrgInternalOnly($orgInternalOnly) - { - $this->orgInternalOnly = $orgInternalOnly; - } - public function getOrgInternalOnly() - { - return $this->orgInternalOnly; - } - public function setSupportEmail($supportEmail) - { - $this->supportEmail = $supportEmail; - } - public function getSupportEmail() - { - return $this->supportEmail; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/CorsSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/CorsSettings.php deleted file mode 100644 index c422a732..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/CorsSettings.php +++ /dev/null @@ -1,30 +0,0 @@ -allowHttpOptions = $allowHttpOptions; - } - public function getAllowHttpOptions() - { - return $this->allowHttpOptions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/CsmSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/CsmSettings.php deleted file mode 100644 index dde1c080..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/CsmSettings.php +++ /dev/null @@ -1,30 +0,0 @@ -rctokenAud = $rctokenAud; - } - public function getRctokenAud() - { - return $this->rctokenAud; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/Expr.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/Expr.php deleted file mode 100644 index 7a341a2d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/Expr.php +++ /dev/null @@ -1,57 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setExpression($expression) - { - $this->expression = $expression; - } - public function getExpression() - { - return $this->expression; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/GcipSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/GcipSettings.php deleted file mode 100644 index 62284b97..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/GcipSettings.php +++ /dev/null @@ -1,40 +0,0 @@ -loginPageUri = $loginPageUri; - } - public function getLoginPageUri() - { - return $this->loginPageUri; - } - public function setTenantIds($tenantIds) - { - $this->tenantIds = $tenantIds; - } - public function getTenantIds() - { - return $this->tenantIds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/GetIamPolicyRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/GetIamPolicyRequest.php deleted file mode 100644 index e30d69d7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/GetIamPolicyRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -options = $options; - } - /** - * @return Google_Service_CloudIAP_GetPolicyOptions - */ - public function getOptions() - { - return $this->options; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/GetPolicyOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/GetPolicyOptions.php deleted file mode 100644 index 0ef12da3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/GetPolicyOptions.php +++ /dev/null @@ -1,30 +0,0 @@ -requestedPolicyVersion = $requestedPolicyVersion; - } - public function getRequestedPolicyVersion() - { - return $this->requestedPolicyVersion; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/IapEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/IapEmpty.php deleted file mode 100644 index ff6f1d97..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/IapEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -accessSettings = $accessSettings; - } - /** - * @return Google_Service_CloudIAP_AccessSettings - */ - public function getAccessSettings() - { - return $this->accessSettings; - } - /** - * @param Google_Service_CloudIAP_ApplicationSettings - */ - public function setApplicationSettings(Google_Service_CloudIAP_ApplicationSettings $applicationSettings) - { - $this->applicationSettings = $applicationSettings; - } - /** - * @return Google_Service_CloudIAP_ApplicationSettings - */ - public function getApplicationSettings() - { - return $this->applicationSettings; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/IdentityAwareProxyClient.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/IdentityAwareProxyClient.php deleted file mode 100644 index fcfe7c21..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/IdentityAwareProxyClient.php +++ /dev/null @@ -1,48 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setSecret($secret) - { - $this->secret = $secret; - } - public function getSecret() - { - return $this->secret; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/ListBrandsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/ListBrandsResponse.php deleted file mode 100644 index 992329b9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/ListBrandsResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -brands = $brands; - } - /** - * @return Google_Service_CloudIAP_Brand - */ - public function getBrands() - { - return $this->brands; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/ListIdentityAwareProxyClientsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/ListIdentityAwareProxyClientsResponse.php deleted file mode 100644 index a1c7725c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/ListIdentityAwareProxyClientsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -identityAwareProxyClients = $identityAwareProxyClients; - } - /** - * @return Google_Service_CloudIAP_IdentityAwareProxyClient - */ - public function getIdentityAwareProxyClients() - { - return $this->identityAwareProxyClients; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/OAuthSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/OAuthSettings.php deleted file mode 100644 index 7278afc2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/OAuthSettings.php +++ /dev/null @@ -1,39 +0,0 @@ -clientId = $clientId; - } - public function getClientId() - { - return $this->clientId; - } - public function setLoginHint($loginHint) - { - $this->loginHint = $loginHint; - } - public function getLoginHint() - { - return $this->loginHint; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/Policy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/Policy.php deleted file mode 100644 index 81898e17..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/Policy.php +++ /dev/null @@ -1,56 +0,0 @@ -bindings = $bindings; - } - /** - * @return Google_Service_CloudIAP_Binding - */ - public function getBindings() - { - return $this->bindings; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/ResetIdentityAwareProxyClientSecretRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/ResetIdentityAwareProxyClientSecretRequest.php deleted file mode 100644 index 1f319a5f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/ResetIdentityAwareProxyClientSecretRequest.php +++ /dev/null @@ -1,20 +0,0 @@ - - * $iapService = new Google_Service_CloudIAP(...); - * $projects = $iapService->projects; - * - */ -class Google_Service_CloudIAP_Resource_Projects extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/Resource/ProjectsBrands.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/Resource/ProjectsBrands.php deleted file mode 100644 index d7e90b9d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/Resource/ProjectsBrands.php +++ /dev/null @@ -1,77 +0,0 @@ - - * $iapService = new Google_Service_CloudIAP(...); - * $brands = $iapService->brands; - * - */ -class Google_Service_CloudIAP_Resource_ProjectsBrands extends Google_Service_Resource -{ - /** - * Constructs a new OAuth brand for the project if one does not exist. The - * created brand is "internal only", meaning that OAuth clients created under it - * only accept requests from users who belong to the same G Suite organization - * as the project. The brand is created in an un-reviewed status. NOTE: The - * "internal only" status can be manually changed in the Google Cloud console. - * Requires that a brand does not already exist for the project, and that the - * specified support email is owned by the caller. (brands.create) - * - * @param string $parent Required. GCP Project number/id under which the brand - * is to be created. In the following format: projects/{project_number/id}. - * @param Google_Service_CloudIAP_Brand $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudIAP_Brand - */ - public function create($parent, Google_Service_CloudIAP_Brand $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_CloudIAP_Brand"); - } - /** - * Retrieves the OAuth brand of the project. (brands.get) - * - * @param string $name Required. Name of the brand to be fetched. In the - * following format: projects/{project_number/id}/brands/{brand}. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudIAP_Brand - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudIAP_Brand"); - } - /** - * Lists the existing brands for the project. (brands.listProjectsBrands) - * - * @param string $parent Required. GCP Project number/id. In the following - * format: projects/{project_number/id}. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudIAP_ListBrandsResponse - */ - public function listProjectsBrands($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudIAP_ListBrandsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/Resource/ProjectsBrandsIdentityAwareProxyClients.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/Resource/ProjectsBrandsIdentityAwareProxyClients.php deleted file mode 100644 index ddd29a0f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/Resource/ProjectsBrandsIdentityAwareProxyClients.php +++ /dev/null @@ -1,125 +0,0 @@ - - * $iapService = new Google_Service_CloudIAP(...); - * $identityAwareProxyClients = $iapService->identityAwareProxyClients; - * - */ -class Google_Service_CloudIAP_Resource_ProjectsBrandsIdentityAwareProxyClients extends Google_Service_Resource -{ - /** - * Creates an Identity Aware Proxy (IAP) OAuth client. The client is owned by - * IAP. Requires that the brand for the project exists and that it is set for - * internal-only use. (identityAwareProxyClients.create) - * - * @param string $parent Required. Path to create the client in. In the - * following format: projects/{project_number/id}/brands/{brand}. The project - * must belong to a GSuite account. - * @param Google_Service_CloudIAP_IdentityAwareProxyClient $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudIAP_IdentityAwareProxyClient - */ - public function create($parent, Google_Service_CloudIAP_IdentityAwareProxyClient $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_CloudIAP_IdentityAwareProxyClient"); - } - /** - * Deletes an Identity Aware Proxy (IAP) OAuth client. Useful for removing - * obsolete clients, managing the number of clients in a given project, and - * cleaning up after tests. Requires that the client is owned by IAP. - * (identityAwareProxyClients.delete) - * - * @param string $name Required. Name of the Identity Aware Proxy client to be - * deleted. In the following format: projects/{project_number/id}/brands/{brand} - * /identityAwareProxyClients/{client_id}. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudIAP_IapEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudIAP_IapEmpty"); - } - /** - * Retrieves an Identity Aware Proxy (IAP) OAuth client. Requires that the - * client is owned by IAP. (identityAwareProxyClients.get) - * - * @param string $name Required. Name of the Identity Aware Proxy client to be - * fetched. In the following format: projects/{project_number/id}/brands/{brand} - * /identityAwareProxyClients/{client_id}. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudIAP_IdentityAwareProxyClient - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudIAP_IdentityAwareProxyClient"); - } - /** - * Lists the existing clients for the brand. - * (identityAwareProxyClients.listProjectsBrandsIdentityAwareProxyClients) - * - * @param string $parent Required. Full brand path. In the following format: - * projects/{project_number/id}/brands/{brand}. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A page token, received from a previous - * `ListIdentityAwareProxyClients` call. Provide this to retrieve the subsequent - * page. - * - * When paginating, all other parameters provided to - * `ListIdentityAwareProxyClients` must match the call that provided the page - * token. - * @opt_param int pageSize The maximum number of clients to return. The service - * may return fewer than this value. If unspecified, at most 100 clients will be - * returned. The maximum value is 1000; values above 1000 will be coerced to - * 1000. - * @return Google_Service_CloudIAP_ListIdentityAwareProxyClientsResponse - */ - public function listProjectsBrandsIdentityAwareProxyClients($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudIAP_ListIdentityAwareProxyClientsResponse"); - } - /** - * Resets an Identity Aware Proxy (IAP) OAuth client secret. Useful if the - * secret was compromised. Requires that the client is owned by IAP. - * (identityAwareProxyClients.resetSecret) - * - * @param string $name Required. Name of the Identity Aware Proxy client to that - * will have its secret reset. In the following format: projects/{project_number - * /id}/brands/{brand}/identityAwareProxyClients/{client_id}. - * @param Google_Service_CloudIAP_ResetIdentityAwareProxyClientSecretRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudIAP_IdentityAwareProxyClient - */ - public function resetSecret($name, Google_Service_CloudIAP_ResetIdentityAwareProxyClientSecretRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('resetSecret', array($params), "Google_Service_CloudIAP_IdentityAwareProxyClient"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/Resource/V1.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/Resource/V1.php deleted file mode 100644 index aa927450..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/Resource/V1.php +++ /dev/null @@ -1,122 +0,0 @@ - - * $iapService = new Google_Service_CloudIAP(...); - * $v1 = $iapService->v1; - * - */ -class Google_Service_CloudIAP_Resource_V1 extends Google_Service_Resource -{ - /** - * Gets the access control policy for an Identity-Aware Proxy protected - * resource. More information about managing access via IAP can be found at: - * https://cloud.google.com/iap/docs/managing-access#managing_access_via_the_api - * (v1.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 Google_Service_CloudIAP_GetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudIAP_Policy - */ - public function getIamPolicy($resource, Google_Service_CloudIAP_GetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_CloudIAP_Policy"); - } - /** - * Gets the IAP settings on a particular IAP protected resource. - * (v1.getIapSettings) - * - * @param string $name Required. The resource name for which to retrieve the - * settings. Authorization: Requires the `getSettings` permission for the - * associated resource. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudIAP_IapSettings - */ - public function getIapSettings($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('getIapSettings', array($params), "Google_Service_CloudIAP_IapSettings"); - } - /** - * Sets the access control policy for an Identity-Aware Proxy protected - * resource. Replaces any existing policy. More information about managing - * access via IAP can be found at: https://cloud.google.com/iap/docs/managing- - * access#managing_access_via_the_api (v1.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_CloudIAP_SetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudIAP_Policy - */ - public function setIamPolicy($resource, Google_Service_CloudIAP_SetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_CloudIAP_Policy"); - } - /** - * Returns permissions that a caller has on the Identity-Aware Proxy protected - * resource. More information about managing access via IAP can be found at: - * https://cloud.google.com/iap/docs/managing-access#managing_access_via_the_api - * (v1.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_CloudIAP_TestIamPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudIAP_TestIamPermissionsResponse - */ - public function testIamPermissions($resource, Google_Service_CloudIAP_TestIamPermissionsRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_CloudIAP_TestIamPermissionsResponse"); - } - /** - * Updates the IAP settings on a particular IAP protected resource. It replaces - * all fields unless the `update_mask` is set. (v1.updateIapSettings) - * - * @param string $name Required. The resource name of the IAP protected - * resource. - * @param Google_Service_CloudIAP_IapSettings $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask The field mask specifying which IAP settings - * should be updated. If omitted, the all of the settings are updated. See - * https://developers.google.com/protocol- - * buffers/docs/reference/google.protobuf#fieldmask - * @return Google_Service_CloudIAP_IapSettings - */ - public function updateIapSettings($name, Google_Service_CloudIAP_IapSettings $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updateIapSettings', array($params), "Google_Service_CloudIAP_IapSettings"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/SetIamPolicyRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/SetIamPolicyRequest.php deleted file mode 100644 index 94b4f2b5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/SetIamPolicyRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -policy = $policy; - } - /** - * @return Google_Service_CloudIAP_Policy - */ - public function getPolicy() - { - return $this->policy; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/TestIamPermissionsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/TestIamPermissionsRequest.php deleted file mode 100644 index 095a77bc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/TestIamPermissionsRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/TestIamPermissionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/TestIamPermissionsResponse.php deleted file mode 100644 index 5a7941bf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIAP/TestIamPermissionsResponse.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity.php deleted file mode 100644 index 5da1002e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity.php +++ /dev/null @@ -1,245 +0,0 @@ - - * API for provisioning and managing identity resources.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_CloudIdentity extends Google_Service -{ - /** See, change, create, and delete any of the Cloud Identity Groups that you can access, including the members of each group. */ - const CLOUD_IDENTITY_GROUPS = - "https://www.googleapis.com/auth/cloud-identity.groups"; - /** See any Cloud Identity Groups that you can access, including group members and their emails. */ - const CLOUD_IDENTITY_GROUPS_READONLY = - "https://www.googleapis.com/auth/cloud-identity.groups.readonly"; - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - - public $groups; - public $groups_memberships; - - /** - * Constructs the internal representation of the CloudIdentity service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://cloudidentity.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'cloudidentity'; - - $this->groups = new Google_Service_CloudIdentity_Resource_Groups( - $this, - $this->serviceName, - 'groups', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/groups', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/groups', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'lookup' => array( - 'path' => 'v1/groups:lookup', - 'httpMethod' => 'GET', - 'parameters' => array( - 'groupKey.namespace' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'groupKey.id' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'search' => array( - 'path' => 'v1/groups:search', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'query' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->groups_memberships = new Google_Service_CloudIdentity_Resource_GroupsMemberships( - $this, - $this->serviceName, - 'memberships', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/memberships', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/memberships', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'lookup' => array( - 'path' => 'v1/{+parent}/memberships:lookup', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'memberKey.id' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'memberKey.namespace' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/EntityKey.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/EntityKey.php deleted file mode 100644 index 452507a5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/EntityKey.php +++ /dev/null @@ -1,39 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setNamespace($namespace) - { - $this->namespace = $namespace; - } - public function getNamespace() - { - return $this->namespace; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/GoogleAppsCloudidentityDevicesV1alpha1AndroidAttributes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/GoogleAppsCloudidentityDevicesV1alpha1AndroidAttributes.php deleted file mode 100644 index 36db87fd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/GoogleAppsCloudidentityDevicesV1alpha1AndroidAttributes.php +++ /dev/null @@ -1,148 +0,0 @@ -basebandVersion = $basebandVersion; - } - public function getBasebandVersion() - { - return $this->basebandVersion; - } - public function setBootloaderVersion($bootloaderVersion) - { - $this->bootloaderVersion = $bootloaderVersion; - } - public function getBootloaderVersion() - { - return $this->bootloaderVersion; - } - public function setBuildNumber($buildNumber) - { - $this->buildNumber = $buildNumber; - } - public function getBuildNumber() - { - return $this->buildNumber; - } - public function setEnabledDeveloperOptions($enabledDeveloperOptions) - { - $this->enabledDeveloperOptions = $enabledDeveloperOptions; - } - public function getEnabledDeveloperOptions() - { - return $this->enabledDeveloperOptions; - } - public function setEnabledUnknownSources($enabledUnknownSources) - { - $this->enabledUnknownSources = $enabledUnknownSources; - } - public function getEnabledUnknownSources() - { - return $this->enabledUnknownSources; - } - public function setEnabledUsbDebugging($enabledUsbDebugging) - { - $this->enabledUsbDebugging = $enabledUsbDebugging; - } - public function getEnabledUsbDebugging() - { - return $this->enabledUsbDebugging; - } - public function setEncryptionState($encryptionState) - { - $this->encryptionState = $encryptionState; - } - public function getEncryptionState() - { - return $this->encryptionState; - } - public function setHardware($hardware) - { - $this->hardware = $hardware; - } - public function getHardware() - { - return $this->hardware; - } - public function setKernelVersion($kernelVersion) - { - $this->kernelVersion = $kernelVersion; - } - public function getKernelVersion() - { - return $this->kernelVersion; - } - public function setOtherAccounts($otherAccounts) - { - $this->otherAccounts = $otherAccounts; - } - public function getOtherAccounts() - { - return $this->otherAccounts; - } - public function setOwnerProfileAccount($ownerProfileAccount) - { - $this->ownerProfileAccount = $ownerProfileAccount; - } - public function getOwnerProfileAccount() - { - return $this->ownerProfileAccount; - } - public function setOwnershipPrivilege($ownershipPrivilege) - { - $this->ownershipPrivilege = $ownershipPrivilege; - } - public function getOwnershipPrivilege() - { - return $this->ownershipPrivilege; - } - public function setSecurityPatchTime($securityPatchTime) - { - $this->securityPatchTime = $securityPatchTime; - } - public function getSecurityPatchTime() - { - return $this->securityPatchTime; - } - public function setSupportsWorkProfile($supportsWorkProfile) - { - $this->supportsWorkProfile = $supportsWorkProfile; - } - public function getSupportsWorkProfile() - { - return $this->supportsWorkProfile; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/GoogleAppsCloudidentityDevicesV1alpha1ApproveDeviceUserResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/GoogleAppsCloudidentityDevicesV1alpha1ApproveDeviceUserResponse.php deleted file mode 100644 index 4657c7b3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/GoogleAppsCloudidentityDevicesV1alpha1ApproveDeviceUserResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -deviceUser = $deviceUser; - } - /** - * @return Google_Service_CloudIdentity_GoogleAppsCloudidentityDevicesV1alpha1DeviceUser - */ - public function getDeviceUser() - { - return $this->deviceUser; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/GoogleAppsCloudidentityDevicesV1alpha1BlockDeviceUserResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/GoogleAppsCloudidentityDevicesV1alpha1BlockDeviceUserResponse.php deleted file mode 100644 index 546fab22..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/GoogleAppsCloudidentityDevicesV1alpha1BlockDeviceUserResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -deviceUser = $deviceUser; - } - /** - * @return Google_Service_CloudIdentity_GoogleAppsCloudidentityDevicesV1alpha1DeviceUser - */ - public function getDeviceUser() - { - return $this->deviceUser; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/GoogleAppsCloudidentityDevicesV1alpha1CancelWipeDeviceResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/GoogleAppsCloudidentityDevicesV1alpha1CancelWipeDeviceResponse.php deleted file mode 100644 index 20ce9251..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/GoogleAppsCloudidentityDevicesV1alpha1CancelWipeDeviceResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -device = $device; - } - /** - * @return Google_Service_CloudIdentity_GoogleAppsCloudidentityDevicesV1alpha1Device - */ - public function getDevice() - { - return $this->device; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/GoogleAppsCloudidentityDevicesV1alpha1CancelWipeDeviceUserResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/GoogleAppsCloudidentityDevicesV1alpha1CancelWipeDeviceUserResponse.php deleted file mode 100644 index 1c97fb6f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/GoogleAppsCloudidentityDevicesV1alpha1CancelWipeDeviceUserResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -deviceUser = $deviceUser; - } - /** - * @return Google_Service_CloudIdentity_GoogleAppsCloudidentityDevicesV1alpha1DeviceUser - */ - public function getDeviceUser() - { - return $this->deviceUser; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/GoogleAppsCloudidentityDevicesV1alpha1Device.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/GoogleAppsCloudidentityDevicesV1alpha1Device.php deleted file mode 100644 index d536998f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/GoogleAppsCloudidentityDevicesV1alpha1Device.php +++ /dev/null @@ -1,200 +0,0 @@ -androidSpecificAttributes = $androidSpecificAttributes; - } - /** - * @return Google_Service_CloudIdentity_GoogleAppsCloudidentityDevicesV1alpha1AndroidAttributes - */ - public function getAndroidSpecificAttributes() - { - return $this->androidSpecificAttributes; - } - public function setAssetTag($assetTag) - { - $this->assetTag = $assetTag; - } - public function getAssetTag() - { - return $this->assetTag; - } - public function setBrand($brand) - { - $this->brand = $brand; - } - public function getBrand() - { - return $this->brand; - } - public function setCompromisedState($compromisedState) - { - $this->compromisedState = $compromisedState; - } - public function getCompromisedState() - { - return $this->compromisedState; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setDeviceType($deviceType) - { - $this->deviceType = $deviceType; - } - public function getDeviceType() - { - return $this->deviceType; - } - public function setImei($imei) - { - $this->imei = $imei; - } - public function getImei() - { - return $this->imei; - } - public function setLastSyncTime($lastSyncTime) - { - $this->lastSyncTime = $lastSyncTime; - } - public function getLastSyncTime() - { - return $this->lastSyncTime; - } - public function setManagementState($managementState) - { - $this->managementState = $managementState; - } - public function getManagementState() - { - return $this->managementState; - } - public function setManufacturer($manufacturer) - { - $this->manufacturer = $manufacturer; - } - public function getManufacturer() - { - return $this->manufacturer; - } - public function setMeid($meid) - { - $this->meid = $meid; - } - public function getMeid() - { - return $this->meid; - } - public function setModel($model) - { - $this->model = $model; - } - public function getModel() - { - return $this->model; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNetworkOperator($networkOperator) - { - $this->networkOperator = $networkOperator; - } - public function getNetworkOperator() - { - return $this->networkOperator; - } - public function setOsVersion($osVersion) - { - $this->osVersion = $osVersion; - } - public function getOsVersion() - { - return $this->osVersion; - } - public function setOwnerType($ownerType) - { - $this->ownerType = $ownerType; - } - public function getOwnerType() - { - return $this->ownerType; - } - public function setReleaseVersion($releaseVersion) - { - $this->releaseVersion = $releaseVersion; - } - public function getReleaseVersion() - { - return $this->releaseVersion; - } - public function setSerialNumber($serialNumber) - { - $this->serialNumber = $serialNumber; - } - public function getSerialNumber() - { - return $this->serialNumber; - } - public function setWifiMacAddresses($wifiMacAddresses) - { - $this->wifiMacAddresses = $wifiMacAddresses; - } - public function getWifiMacAddresses() - { - return $this->wifiMacAddresses; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/GoogleAppsCloudidentityDevicesV1alpha1DeviceUser.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/GoogleAppsCloudidentityDevicesV1alpha1DeviceUser.php deleted file mode 100644 index 93ba1301..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/GoogleAppsCloudidentityDevicesV1alpha1DeviceUser.php +++ /dev/null @@ -1,102 +0,0 @@ -compromisedState = $compromisedState; - } - public function getCompromisedState() - { - return $this->compromisedState; - } - public function setFirstSyncTime($firstSyncTime) - { - $this->firstSyncTime = $firstSyncTime; - } - public function getFirstSyncTime() - { - return $this->firstSyncTime; - } - public function setLanguageCode($languageCode) - { - $this->languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } - public function setLastSyncTime($lastSyncTime) - { - $this->lastSyncTime = $lastSyncTime; - } - public function getLastSyncTime() - { - return $this->lastSyncTime; - } - public function setManagementState($managementState) - { - $this->managementState = $managementState; - } - public function getManagementState() - { - return $this->managementState; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPasswordState($passwordState) - { - $this->passwordState = $passwordState; - } - public function getPasswordState() - { - return $this->passwordState; - } - public function setUserAgent($userAgent) - { - $this->userAgent = $userAgent; - } - public function getUserAgent() - { - return $this->userAgent; - } - public function setUserEmail($userEmail) - { - $this->userEmail = $userEmail; - } - public function getUserEmail() - { - return $this->userEmail; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/GoogleAppsCloudidentityDevicesV1alpha1EndpointApp.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/GoogleAppsCloudidentityDevicesV1alpha1EndpointApp.php deleted file mode 100644 index 0c415a6e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/GoogleAppsCloudidentityDevicesV1alpha1EndpointApp.php +++ /dev/null @@ -1,76 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPackageName($packageName) - { - $this->packageName = $packageName; - } - public function getPackageName() - { - return $this->packageName; - } - public function setPermissions($permissions) - { - $this->permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } - public function setVersionCode($versionCode) - { - $this->versionCode = $versionCode; - } - public function getVersionCode() - { - return $this->versionCode; - } - public function setVersionName($versionName) - { - $this->versionName = $versionName; - } - public function getVersionName() - { - return $this->versionName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/GoogleAppsCloudidentityDevicesV1alpha1ListDeviceUsersResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/GoogleAppsCloudidentityDevicesV1alpha1ListDeviceUsersResponse.php deleted file mode 100644 index 9d2b93f1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/GoogleAppsCloudidentityDevicesV1alpha1ListDeviceUsersResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -deviceUsers = $deviceUsers; - } - /** - * @return Google_Service_CloudIdentity_GoogleAppsCloudidentityDevicesV1alpha1DeviceUser - */ - public function getDeviceUsers() - { - return $this->deviceUsers; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/GoogleAppsCloudidentityDevicesV1alpha1ListDevicesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/GoogleAppsCloudidentityDevicesV1alpha1ListDevicesResponse.php deleted file mode 100644 index 53c27025..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/GoogleAppsCloudidentityDevicesV1alpha1ListDevicesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -devices = $devices; - } - /** - * @return Google_Service_CloudIdentity_GoogleAppsCloudidentityDevicesV1alpha1Device - */ - public function getDevices() - { - return $this->devices; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/GoogleAppsCloudidentityDevicesV1alpha1ListEndpointAppsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/GoogleAppsCloudidentityDevicesV1alpha1ListEndpointAppsResponse.php deleted file mode 100644 index 2a74ee25..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/GoogleAppsCloudidentityDevicesV1alpha1ListEndpointAppsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -endpointApps = $endpointApps; - } - /** - * @return Google_Service_CloudIdentity_GoogleAppsCloudidentityDevicesV1alpha1EndpointApp - */ - public function getEndpointApps() - { - return $this->endpointApps; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/GoogleAppsCloudidentityDevicesV1alpha1WipeDeviceResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/GoogleAppsCloudidentityDevicesV1alpha1WipeDeviceResponse.php deleted file mode 100644 index 91e4f264..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/GoogleAppsCloudidentityDevicesV1alpha1WipeDeviceResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -device = $device; - } - /** - * @return Google_Service_CloudIdentity_GoogleAppsCloudidentityDevicesV1alpha1Device - */ - public function getDevice() - { - return $this->device; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/GoogleAppsCloudidentityDevicesV1alpha1WipeDeviceUserResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/GoogleAppsCloudidentityDevicesV1alpha1WipeDeviceUserResponse.php deleted file mode 100644 index 873494ae..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/GoogleAppsCloudidentityDevicesV1alpha1WipeDeviceUserResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -deviceUser = $deviceUser; - } - /** - * @return Google_Service_CloudIdentity_GoogleAppsCloudidentityDevicesV1alpha1DeviceUser - */ - public function getDeviceUser() - { - return $this->deviceUser; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/Group.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/Group.php deleted file mode 100644 index e653e826..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/Group.php +++ /dev/null @@ -1,100 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - /** - * @param Google_Service_CloudIdentity_EntityKey - */ - public function setGroupKey(Google_Service_CloudIdentity_EntityKey $groupKey) - { - $this->groupKey = $groupKey; - } - /** - * @return Google_Service_CloudIdentity_EntityKey - */ - public function getGroupKey() - { - return $this->groupKey; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setParent($parent) - { - $this->parent = $parent; - } - public function getParent() - { - return $this->parent; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/ListGroupsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/ListGroupsResponse.php deleted file mode 100644 index b3d5cd22..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/ListGroupsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -groups = $groups; - } - /** - * @return Google_Service_CloudIdentity_Group - */ - public function getGroups() - { - return $this->groups; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/ListMembershipsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/ListMembershipsResponse.php deleted file mode 100644 index 65631894..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/ListMembershipsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -memberships = $memberships; - } - /** - * @return Google_Service_CloudIdentity_Membership - */ - public function getMemberships() - { - return $this->memberships; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/LookupGroupNameResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/LookupGroupNameResponse.php deleted file mode 100644 index 34651d71..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/LookupGroupNameResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/LookupMembershipNameResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/LookupMembershipNameResponse.php deleted file mode 100644 index 4097bc32..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/LookupMembershipNameResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/Membership.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/Membership.php deleted file mode 100644 index b5702c5e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/Membership.php +++ /dev/null @@ -1,81 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_CloudIdentity_EntityKey - */ - public function setPreferredMemberKey(Google_Service_CloudIdentity_EntityKey $preferredMemberKey) - { - $this->preferredMemberKey = $preferredMemberKey; - } - /** - * @return Google_Service_CloudIdentity_EntityKey - */ - public function getPreferredMemberKey() - { - return $this->preferredMemberKey; - } - /** - * @param Google_Service_CloudIdentity_MembershipRole - */ - public function setRoles($roles) - { - $this->roles = $roles; - } - /** - * @return Google_Service_CloudIdentity_MembershipRole - */ - public function getRoles() - { - return $this->roles; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/MembershipRole.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/MembershipRole.php deleted file mode 100644 index d9cbe2ba..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/MembershipRole.php +++ /dev/null @@ -1,30 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/Operation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/Operation.php deleted file mode 100644 index f73fb1af..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/Operation.php +++ /dev/null @@ -1,73 +0,0 @@ -done = $done; - } - public function getDone() - { - return $this->done; - } - /** - * @param Google_Service_CloudIdentity_Status - */ - public function setError(Google_Service_CloudIdentity_Status $error) - { - $this->error = $error; - } - /** - * @return Google_Service_CloudIdentity_Status - */ - public function getError() - { - return $this->error; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/Resource/Groups.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/Resource/Groups.php deleted file mode 100644 index 0b58e424..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/Resource/Groups.php +++ /dev/null @@ -1,160 +0,0 @@ - - * $cloudidentityService = new Google_Service_CloudIdentity(...); - * $groups = $cloudidentityService->groups; - * - */ -class Google_Service_CloudIdentity_Resource_Groups extends Google_Service_Resource -{ - /** - * Creates a Group. (groups.create) - * - * @param Google_Service_CloudIdentity_Group $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudIdentity_Operation - */ - public function create(Google_Service_CloudIdentity_Group $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_CloudIdentity_Operation"); - } - /** - * Deletes a Group. (groups.delete) - * - * @param string $name Required. [Resource - * name](https://cloud.google.com/apis/design/resource_names) of the Group in - * the format: `groups/{group_id}`, where `group_id` is the unique ID assigned - * to the Group. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudIdentity_Operation - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudIdentity_Operation"); - } - /** - * Retrieves a Group. (groups.get) - * - * @param string $name Required. [Resource - * name](https://cloud.google.com/apis/design/resource_names) of the Group in - * the format: `groups/{group_id}`, where `group_id` is the unique ID assigned - * to the Group. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudIdentity_Group - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudIdentity_Group"); - } - /** - * Lists groups within a customer or a domain. (groups.listGroups) - * - * @param array $optParams Optional parameters. - * - * @opt_param string parent Required. Customer ID to list all groups from. - * @opt_param string pageToken The next_page_token value returned from a - * previous list request, if any. - * @opt_param int pageSize The default page size is 200 (max 1000) for the BASIC - * view, and 50 (max 500) for the FULL view. - * @opt_param string view Group resource view to be returned. Defaults to - * [View.BASIC](). - * @return Google_Service_CloudIdentity_ListGroupsResponse - */ - public function listGroups($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudIdentity_ListGroupsResponse"); - } - /** - * Looks up [resource name](https://cloud.google.com/apis/design/resource_names) - * of a Group by its EntityKey. (groups.lookup) - * - * @param array $optParams Optional parameters. - * - * @opt_param string groupKey.namespace Namespaces provide isolation for IDs, so - * an ID only needs to be unique within its namespace. - * - * Namespaces are currently only created as part of IdentitySource creation from - * Admin Console. A namespace `"identitysources/{identity_source_id}"` is - * created corresponding to every Identity Source `identity_source_id`. - * @opt_param string groupKey.id The ID of the entity within the given - * namespace. The ID must be unique within its namespace. - * @return Google_Service_CloudIdentity_LookupGroupNameResponse - */ - public function lookup($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('lookup', array($params), "Google_Service_CloudIdentity_LookupGroupNameResponse"); - } - /** - * Updates a Group. (groups.patch) - * - * @param string $name Output only. [Resource - * name](https://cloud.google.com/apis/design/resource_names) of the Group in - * the format: `groups/{group_id}`, where group_id is the unique ID assigned to - * the Group. - * - * Must be left blank while creating a Group. - * @param Google_Service_CloudIdentity_Group $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Required. Editable fields: `display_name`, - * `description` - * @return Google_Service_CloudIdentity_Operation - */ - public function patch($name, Google_Service_CloudIdentity_Group $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_CloudIdentity_Operation"); - } - /** - * Searches for Groups. (groups.search) - * - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The next_page_token value returned from a - * previous search request, if any. - * @opt_param int pageSize The default page size is 200 (max 1000) for the BASIC - * view, and 50 (max 500) for the FULL view. - * @opt_param string query Required. `Required`. Query string for performing - * search on groups. Users can search on parent and label attributes of groups. - * EXACT match ('==') is supported on parent, and CONTAINS match ('in') is - * supported on labels. - * @opt_param string view Group resource view to be returned. Defaults to - * [View.BASIC](). - * @return Google_Service_CloudIdentity_SearchGroupsResponse - */ - public function search($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('search', array($params), "Google_Service_CloudIdentity_SearchGroupsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/Resource/GroupsMemberships.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/Resource/GroupsMemberships.php deleted file mode 100644 index 89d74671..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/Resource/GroupsMemberships.php +++ /dev/null @@ -1,136 +0,0 @@ - - * $cloudidentityService = new Google_Service_CloudIdentity(...); - * $memberships = $cloudidentityService->memberships; - * - */ -class Google_Service_CloudIdentity_Resource_GroupsMemberships extends Google_Service_Resource -{ - /** - * Creates a Membership. (memberships.create) - * - * @param string $parent Required. [Resource - * name](https://cloud.google.com/apis/design/resource_names) of the Group to - * create Membership within. Format: `groups/{group_id}`, where `group_id` is - * the unique ID assigned to the Group. - * @param Google_Service_CloudIdentity_Membership $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudIdentity_Operation - */ - public function create($parent, Google_Service_CloudIdentity_Membership $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_CloudIdentity_Operation"); - } - /** - * Deletes a Membership. (memberships.delete) - * - * @param string $name Required. [Resource - * name](https://cloud.google.com/apis/design/resource_names) of the Membership - * to be deleted. - * - * Format: `groups/{group_id}/memberships/{member_id}`, where `group_id` is the - * unique ID assigned to the Group to which Membership belongs to, and member_id - * is the unique ID assigned to the member. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudIdentity_Operation - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudIdentity_Operation"); - } - /** - * Retrieves a Membership. (memberships.get) - * - * @param string $name Required. [Resource - * name](https://cloud.google.com/apis/design/resource_names) of the Membership - * to be retrieved. - * - * Format: `groups/{group_id}/memberships/{member_id}`, where `group_id` is the - * unique id assigned to the Group to which Membership belongs to, and - * `member_id` is the unique ID assigned to the member. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudIdentity_Membership - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudIdentity_Membership"); - } - /** - * Lists Memberships within a Group. (memberships.listGroupsMemberships) - * - * @param string $parent Required. [Resource - * name](https://cloud.google.com/apis/design/resource_names) of the Group to - * list Memberships within. - * - * Format: `groups/{group_id}`, where `group_id` is the unique ID assigned to - * the Group. - * @param array $optParams Optional parameters. - * - * @opt_param string view Membership resource view to be returned. Defaults to - * View.BASIC. - * @opt_param string pageToken The next_page_token value returned from a - * previous list request, if any. - * @opt_param int pageSize The default page size is 200 (max 1000) for the BASIC - * view, and 50 (max 500) for the FULL view. - * @return Google_Service_CloudIdentity_ListMembershipsResponse - */ - public function listGroupsMemberships($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudIdentity_ListMembershipsResponse"); - } - /** - * Looks up [resource name](https://cloud.google.com/apis/design/resource_names) - * of a Membership within a Group by member's EntityKey. (memberships.lookup) - * - * @param string $parent Required. [Resource - * name](https://cloud.google.com/apis/design/resource_names) of the Group to - * lookup Membership within. - * - * Format: `groups/{group_id}`, where `group_id` is the unique ID assigned to - * the Group. - * @param array $optParams Optional parameters. - * - * @opt_param string memberKey.id The ID of the entity within the given - * namespace. The ID must be unique within its namespace. - * @opt_param string memberKey.namespace Namespaces provide isolation for IDs, - * so an ID only needs to be unique within its namespace. - * - * Namespaces are currently only created as part of IdentitySource creation from - * Admin Console. A namespace `"identitysources/{identity_source_id}"` is - * created corresponding to every Identity Source `identity_source_id`. - * @return Google_Service_CloudIdentity_LookupMembershipNameResponse - */ - public function lookup($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('lookup', array($params), "Google_Service_CloudIdentity_LookupMembershipNameResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/SearchGroupsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/SearchGroupsResponse.php deleted file mode 100644 index dd77a340..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/SearchGroupsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -groups = $groups; - } - /** - * @return Google_Service_CloudIdentity_Group - */ - public function getGroups() - { - return $this->groups; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/Status.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/Status.php deleted file mode 100644 index bac0abc5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIdentity/Status.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot.php deleted file mode 100644 index df9ef654..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot.php +++ /dev/null @@ -1,450 +0,0 @@ - - * Registers and manages IoT (Internet of Things) devices that connect to the - * Google Cloud Platform.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_CloudIot extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** Register and manage devices in the Google Cloud IoT service. */ - const CLOUDIOT = - "https://www.googleapis.com/auth/cloudiot"; - - public $projects_locations_registries; - public $projects_locations_registries_devices; - public $projects_locations_registries_devices_configVersions; - public $projects_locations_registries_devices_states; - public $projects_locations_registries_groups; - public $projects_locations_registries_groups_devices; - - /** - * Constructs the internal representation of the CloudIot service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://cloudiot.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'cloudiot'; - - $this->projects_locations_registries = new Google_Service_CloudIot_Resource_ProjectsLocationsRegistries( - $this, - $this->serviceName, - 'registries', - array( - 'methods' => array( - 'bindDeviceToGateway' => array( - 'path' => 'v1/{+parent}:bindDeviceToGateway', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'create' => array( - 'path' => 'v1/{+parent}/registries', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getIamPolicy' => array( - 'path' => 'v1/{+resource}:getIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/registries', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setIamPolicy' => array( - 'path' => 'v1/{+resource}:setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => 'v1/{+resource}:testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'unbindDeviceFromGateway' => array( - 'path' => 'v1/{+parent}:unbindDeviceFromGateway', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_locations_registries_devices = new Google_Service_CloudIot_Resource_ProjectsLocationsRegistriesDevices( - $this, - $this->serviceName, - 'devices', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/devices', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'fieldMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/devices', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'deviceIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'gatewayListOptions.associationsDeviceId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'deviceNumIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'gatewayListOptions.gatewayType' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'gatewayListOptions.associationsGatewayId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'fieldMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'modifyCloudToDeviceConfig' => array( - 'path' => 'v1/{+name}:modifyCloudToDeviceConfig', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'sendCommandToDevice' => array( - 'path' => 'v1/{+name}:sendCommandToDevice', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_locations_registries_devices_configVersions = new Google_Service_CloudIot_Resource_ProjectsLocationsRegistriesDevicesConfigVersions( - $this, - $this->serviceName, - 'configVersions', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1/{+name}/configVersions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'numVersions' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->projects_locations_registries_devices_states = new Google_Service_CloudIot_Resource_ProjectsLocationsRegistriesDevicesStates( - $this, - $this->serviceName, - 'states', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1/{+name}/states', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'numStates' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->projects_locations_registries_groups = new Google_Service_CloudIot_Resource_ProjectsLocationsRegistriesGroups( - $this, - $this->serviceName, - 'groups', - array( - 'methods' => array( - 'getIamPolicy' => array( - 'path' => 'v1/{+resource}:getIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setIamPolicy' => array( - 'path' => 'v1/{+resource}:setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => 'v1/{+resource}:testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_locations_registries_groups_devices = new Google_Service_CloudIot_Resource_ProjectsLocationsRegistriesGroupsDevices( - $this, - $this->serviceName, - 'devices', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1/{+parent}/devices', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'fieldMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'deviceIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'deviceNumIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'gatewayListOptions.associationsDeviceId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'gatewayListOptions.gatewayType' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'gatewayListOptions.associationsGatewayId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/BindDeviceToGatewayRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/BindDeviceToGatewayRequest.php deleted file mode 100644 index ea49bef9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/BindDeviceToGatewayRequest.php +++ /dev/null @@ -1,39 +0,0 @@ -deviceId = $deviceId; - } - public function getDeviceId() - { - return $this->deviceId; - } - public function setGatewayId($gatewayId) - { - $this->gatewayId = $gatewayId; - } - public function getGatewayId() - { - return $this->gatewayId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/BindDeviceToGatewayResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/BindDeviceToGatewayResponse.php deleted file mode 100644 index 9c7e5002..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/BindDeviceToGatewayResponse.php +++ /dev/null @@ -1,20 +0,0 @@ -condition = $condition; - } - /** - * @return Google_Service_CloudIot_Expr - */ - public function getCondition() - { - return $this->condition; - } - public function setMembers($members) - { - $this->members = $members; - } - public function getMembers() - { - return $this->members; - } - public function setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/CloudiotEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/CloudiotEmpty.php deleted file mode 100644 index e7b907c5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/CloudiotEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -blocked = $blocked; - } - public function getBlocked() - { - return $this->blocked; - } - /** - * @param Google_Service_CloudIot_DeviceConfig - */ - public function setConfig(Google_Service_CloudIot_DeviceConfig $config) - { - $this->config = $config; - } - /** - * @return Google_Service_CloudIot_DeviceConfig - */ - public function getConfig() - { - return $this->config; - } - /** - * @param Google_Service_CloudIot_DeviceCredential - */ - public function setCredentials($credentials) - { - $this->credentials = $credentials; - } - /** - * @return Google_Service_CloudIot_DeviceCredential - */ - public function getCredentials() - { - return $this->credentials; - } - /** - * @param Google_Service_CloudIot_GatewayConfig - */ - public function setGatewayConfig(Google_Service_CloudIot_GatewayConfig $gatewayConfig) - { - $this->gatewayConfig = $gatewayConfig; - } - /** - * @return Google_Service_CloudIot_GatewayConfig - */ - public function getGatewayConfig() - { - return $this->gatewayConfig; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setLastConfigAckTime($lastConfigAckTime) - { - $this->lastConfigAckTime = $lastConfigAckTime; - } - public function getLastConfigAckTime() - { - return $this->lastConfigAckTime; - } - public function setLastConfigSendTime($lastConfigSendTime) - { - $this->lastConfigSendTime = $lastConfigSendTime; - } - public function getLastConfigSendTime() - { - return $this->lastConfigSendTime; - } - /** - * @param Google_Service_CloudIot_Status - */ - public function setLastErrorStatus(Google_Service_CloudIot_Status $lastErrorStatus) - { - $this->lastErrorStatus = $lastErrorStatus; - } - /** - * @return Google_Service_CloudIot_Status - */ - public function getLastErrorStatus() - { - return $this->lastErrorStatus; - } - public function setLastErrorTime($lastErrorTime) - { - $this->lastErrorTime = $lastErrorTime; - } - public function getLastErrorTime() - { - return $this->lastErrorTime; - } - public function setLastEventTime($lastEventTime) - { - $this->lastEventTime = $lastEventTime; - } - public function getLastEventTime() - { - return $this->lastEventTime; - } - public function setLastHeartbeatTime($lastHeartbeatTime) - { - $this->lastHeartbeatTime = $lastHeartbeatTime; - } - public function getLastHeartbeatTime() - { - return $this->lastHeartbeatTime; - } - public function setLastStateTime($lastStateTime) - { - $this->lastStateTime = $lastStateTime; - } - public function getLastStateTime() - { - return $this->lastStateTime; - } - public function setLogLevel($logLevel) - { - $this->logLevel = $logLevel; - } - public function getLogLevel() - { - return $this->logLevel; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNumId($numId) - { - $this->numId = $numId; - } - public function getNumId() - { - return $this->numId; - } - /** - * @param Google_Service_CloudIot_DeviceState - */ - public function setState(Google_Service_CloudIot_DeviceState $state) - { - $this->state = $state; - } - /** - * @return Google_Service_CloudIot_DeviceState - */ - public function getState() - { - return $this->state; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/DeviceConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/DeviceConfig.php deleted file mode 100644 index 0a0e2fb3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/DeviceConfig.php +++ /dev/null @@ -1,57 +0,0 @@ -binaryData = $binaryData; - } - public function getBinaryData() - { - return $this->binaryData; - } - public function setCloudUpdateTime($cloudUpdateTime) - { - $this->cloudUpdateTime = $cloudUpdateTime; - } - public function getCloudUpdateTime() - { - return $this->cloudUpdateTime; - } - public function setDeviceAckTime($deviceAckTime) - { - $this->deviceAckTime = $deviceAckTime; - } - public function getDeviceAckTime() - { - return $this->deviceAckTime; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/DeviceCredential.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/DeviceCredential.php deleted file mode 100644 index 25a9a586..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/DeviceCredential.php +++ /dev/null @@ -1,46 +0,0 @@ -expirationTime = $expirationTime; - } - public function getExpirationTime() - { - return $this->expirationTime; - } - /** - * @param Google_Service_CloudIot_PublicKeyCredential - */ - public function setPublicKey(Google_Service_CloudIot_PublicKeyCredential $publicKey) - { - $this->publicKey = $publicKey; - } - /** - * @return Google_Service_CloudIot_PublicKeyCredential - */ - public function getPublicKey() - { - return $this->publicKey; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/DeviceRegistry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/DeviceRegistry.php deleted file mode 100644 index 52bb7b6f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/DeviceRegistry.php +++ /dev/null @@ -1,129 +0,0 @@ -credentials = $credentials; - } - /** - * @return Google_Service_CloudIot_RegistryCredential - */ - public function getCredentials() - { - return $this->credentials; - } - /** - * @param Google_Service_CloudIot_EventNotificationConfig - */ - public function setEventNotificationConfigs($eventNotificationConfigs) - { - $this->eventNotificationConfigs = $eventNotificationConfigs; - } - /** - * @return Google_Service_CloudIot_EventNotificationConfig - */ - public function getEventNotificationConfigs() - { - return $this->eventNotificationConfigs; - } - /** - * @param Google_Service_CloudIot_HttpConfig - */ - public function setHttpConfig(Google_Service_CloudIot_HttpConfig $httpConfig) - { - $this->httpConfig = $httpConfig; - } - /** - * @return Google_Service_CloudIot_HttpConfig - */ - public function getHttpConfig() - { - return $this->httpConfig; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setLogLevel($logLevel) - { - $this->logLevel = $logLevel; - } - public function getLogLevel() - { - return $this->logLevel; - } - /** - * @param Google_Service_CloudIot_MqttConfig - */ - public function setMqttConfig(Google_Service_CloudIot_MqttConfig $mqttConfig) - { - $this->mqttConfig = $mqttConfig; - } - /** - * @return Google_Service_CloudIot_MqttConfig - */ - public function getMqttConfig() - { - return $this->mqttConfig; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_CloudIot_StateNotificationConfig - */ - public function setStateNotificationConfig(Google_Service_CloudIot_StateNotificationConfig $stateNotificationConfig) - { - $this->stateNotificationConfig = $stateNotificationConfig; - } - /** - * @return Google_Service_CloudIot_StateNotificationConfig - */ - public function getStateNotificationConfig() - { - return $this->stateNotificationConfig; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/DeviceState.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/DeviceState.php deleted file mode 100644 index 586f246d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/DeviceState.php +++ /dev/null @@ -1,39 +0,0 @@ -binaryData = $binaryData; - } - public function getBinaryData() - { - return $this->binaryData; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/EventNotificationConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/EventNotificationConfig.php deleted file mode 100644 index e44ff20a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/EventNotificationConfig.php +++ /dev/null @@ -1,39 +0,0 @@ -pubsubTopicName = $pubsubTopicName; - } - public function getPubsubTopicName() - { - return $this->pubsubTopicName; - } - public function setSubfolderMatches($subfolderMatches) - { - $this->subfolderMatches = $subfolderMatches; - } - public function getSubfolderMatches() - { - return $this->subfolderMatches; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/Expr.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/Expr.php deleted file mode 100644 index 4ff6aaf9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/Expr.php +++ /dev/null @@ -1,57 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setExpression($expression) - { - $this->expression = $expression; - } - public function getExpression() - { - return $this->expression; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/GatewayConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/GatewayConfig.php deleted file mode 100644 index a4a79cda..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/GatewayConfig.php +++ /dev/null @@ -1,57 +0,0 @@ -gatewayAuthMethod = $gatewayAuthMethod; - } - public function getGatewayAuthMethod() - { - return $this->gatewayAuthMethod; - } - public function setGatewayType($gatewayType) - { - $this->gatewayType = $gatewayType; - } - public function getGatewayType() - { - return $this->gatewayType; - } - public function setLastAccessedGatewayId($lastAccessedGatewayId) - { - $this->lastAccessedGatewayId = $lastAccessedGatewayId; - } - public function getLastAccessedGatewayId() - { - return $this->lastAccessedGatewayId; - } - public function setLastAccessedGatewayTime($lastAccessedGatewayTime) - { - $this->lastAccessedGatewayTime = $lastAccessedGatewayTime; - } - public function getLastAccessedGatewayTime() - { - return $this->lastAccessedGatewayTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/GetIamPolicyRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/GetIamPolicyRequest.php deleted file mode 100644 index 2653e0d8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/GetIamPolicyRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -options = $options; - } - /** - * @return Google_Service_CloudIot_GetPolicyOptions - */ - public function getOptions() - { - return $this->options; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/GetPolicyOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/GetPolicyOptions.php deleted file mode 100644 index e337728b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/GetPolicyOptions.php +++ /dev/null @@ -1,30 +0,0 @@ -requestedPolicyVersion = $requestedPolicyVersion; - } - public function getRequestedPolicyVersion() - { - return $this->requestedPolicyVersion; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/HttpConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/HttpConfig.php deleted file mode 100644 index 040c386e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/HttpConfig.php +++ /dev/null @@ -1,30 +0,0 @@ -httpEnabledState = $httpEnabledState; - } - public function getHttpEnabledState() - { - return $this->httpEnabledState; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/ListDeviceConfigVersionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/ListDeviceConfigVersionsResponse.php deleted file mode 100644 index 992983bd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/ListDeviceConfigVersionsResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -deviceConfigs = $deviceConfigs; - } - /** - * @return Google_Service_CloudIot_DeviceConfig - */ - public function getDeviceConfigs() - { - return $this->deviceConfigs; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/ListDeviceRegistriesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/ListDeviceRegistriesResponse.php deleted file mode 100644 index dd83bd36..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/ListDeviceRegistriesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -deviceRegistries = $deviceRegistries; - } - /** - * @return Google_Service_CloudIot_DeviceRegistry - */ - public function getDeviceRegistries() - { - return $this->deviceRegistries; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/ListDeviceStatesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/ListDeviceStatesResponse.php deleted file mode 100644 index 39ee4fa6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/ListDeviceStatesResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -deviceStates = $deviceStates; - } - /** - * @return Google_Service_CloudIot_DeviceState - */ - public function getDeviceStates() - { - return $this->deviceStates; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/ListDevicesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/ListDevicesResponse.php deleted file mode 100644 index 89b411aa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/ListDevicesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -devices = $devices; - } - /** - * @return Google_Service_CloudIot_Device - */ - public function getDevices() - { - return $this->devices; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/ModifyCloudToDeviceConfigRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/ModifyCloudToDeviceConfigRequest.php deleted file mode 100644 index 27aba6c8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/ModifyCloudToDeviceConfigRequest.php +++ /dev/null @@ -1,39 +0,0 @@ -binaryData = $binaryData; - } - public function getBinaryData() - { - return $this->binaryData; - } - public function setVersionToUpdate($versionToUpdate) - { - $this->versionToUpdate = $versionToUpdate; - } - public function getVersionToUpdate() - { - return $this->versionToUpdate; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/MqttConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/MqttConfig.php deleted file mode 100644 index d6cc8bab..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/MqttConfig.php +++ /dev/null @@ -1,30 +0,0 @@ -mqttEnabledState = $mqttEnabledState; - } - public function getMqttEnabledState() - { - return $this->mqttEnabledState; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/Policy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/Policy.php deleted file mode 100644 index 8f0d2cb9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/Policy.php +++ /dev/null @@ -1,56 +0,0 @@ -bindings = $bindings; - } - /** - * @return Google_Service_CloudIot_Binding - */ - public function getBindings() - { - return $this->bindings; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/PublicKeyCertificate.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/PublicKeyCertificate.php deleted file mode 100644 index e13f8035..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/PublicKeyCertificate.php +++ /dev/null @@ -1,55 +0,0 @@ -certificate = $certificate; - } - public function getCertificate() - { - return $this->certificate; - } - public function setFormat($format) - { - $this->format = $format; - } - public function getFormat() - { - return $this->format; - } - /** - * @param Google_Service_CloudIot_X509CertificateDetails - */ - public function setX509Details(Google_Service_CloudIot_X509CertificateDetails $x509Details) - { - $this->x509Details = $x509Details; - } - /** - * @return Google_Service_CloudIot_X509CertificateDetails - */ - public function getX509Details() - { - return $this->x509Details; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/PublicKeyCredential.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/PublicKeyCredential.php deleted file mode 100644 index 637d22da..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/PublicKeyCredential.php +++ /dev/null @@ -1,39 +0,0 @@ -format = $format; - } - public function getFormat() - { - return $this->format; - } - public function setKey($key) - { - $this->key = $key; - } - public function getKey() - { - return $this->key; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/RegistryCredential.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/RegistryCredential.php deleted file mode 100644 index 091af5f7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/RegistryCredential.php +++ /dev/null @@ -1,37 +0,0 @@ -publicKeyCertificate = $publicKeyCertificate; - } - /** - * @return Google_Service_CloudIot_PublicKeyCertificate - */ - public function getPublicKeyCertificate() - { - return $this->publicKeyCertificate; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/Resource/Projects.php deleted file mode 100644 index e12aabac..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/Resource/Projects.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $cloudiotService = new Google_Service_CloudIot(...); - * $projects = $cloudiotService->projects; - * - */ -class Google_Service_CloudIot_Resource_Projects extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/Resource/ProjectsLocations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/Resource/ProjectsLocations.php deleted file mode 100644 index 9bec278e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/Resource/ProjectsLocations.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $cloudiotService = new Google_Service_CloudIot(...); - * $locations = $cloudiotService->locations; - * - */ -class Google_Service_CloudIot_Resource_ProjectsLocations extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/Resource/ProjectsLocationsRegistries.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/Resource/ProjectsLocationsRegistries.php deleted file mode 100644 index b7758f55..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/Resource/ProjectsLocationsRegistries.php +++ /dev/null @@ -1,199 +0,0 @@ - - * $cloudiotService = new Google_Service_CloudIot(...); - * $registries = $cloudiotService->registries; - * - */ -class Google_Service_CloudIot_Resource_ProjectsLocationsRegistries extends Google_Service_Resource -{ - /** - * Associates the device with the gateway. (registries.bindDeviceToGateway) - * - * @param string $parent Required. The name of the registry. For example, - * `projects/example-project/locations/us-central1/registries/my-registry`. - * @param Google_Service_CloudIot_BindDeviceToGatewayRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudIot_BindDeviceToGatewayResponse - */ - public function bindDeviceToGateway($parent, Google_Service_CloudIot_BindDeviceToGatewayRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('bindDeviceToGateway', array($params), "Google_Service_CloudIot_BindDeviceToGatewayResponse"); - } - /** - * Creates a device registry that contains devices. (registries.create) - * - * @param string $parent Required. The project and cloud region where this - * device registry must be created. For example, `projects/example- - * project/locations/us-central1`. - * @param Google_Service_CloudIot_DeviceRegistry $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudIot_DeviceRegistry - */ - public function create($parent, Google_Service_CloudIot_DeviceRegistry $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_CloudIot_DeviceRegistry"); - } - /** - * Deletes a device registry configuration. (registries.delete) - * - * @param string $name Required. The name of the device registry. For example, - * `projects/example-project/locations/us-central1/registries/my-registry`. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudIot_CloudiotEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudIot_CloudiotEmpty"); - } - /** - * Gets a device registry configuration. (registries.get) - * - * @param string $name Required. The name of the device registry. For example, - * `projects/example-project/locations/us-central1/registries/my-registry`. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudIot_DeviceRegistry - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudIot_DeviceRegistry"); - } - /** - * Gets the access control policy for a resource. Returns an empty policy if the - * resource exists and does not have a policy set. (registries.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 Google_Service_CloudIot_GetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudIot_Policy - */ - public function getIamPolicy($resource, Google_Service_CloudIot_GetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_CloudIot_Policy"); - } - /** - * Lists device registries. (registries.listProjectsLocationsRegistries) - * - * @param string $parent Required. The project and cloud region path. For - * example, `projects/example-project/locations/us-central1`. - * @param array $optParams Optional parameters. - * - * @opt_param int pageSize The maximum number of registries to return in the - * response. If this value is zero, the service will select a default size. A - * call may return fewer objects than requested. A non-empty `next_page_token` - * in the response indicates that more data is available. - * @opt_param string pageToken The value returned by the last - * `ListDeviceRegistriesResponse`; indicates that this is a continuation of a - * prior `ListDeviceRegistries` call and the system should return the next page - * of data. - * @return Google_Service_CloudIot_ListDeviceRegistriesResponse - */ - public function listProjectsLocationsRegistries($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudIot_ListDeviceRegistriesResponse"); - } - /** - * Updates a device registry configuration. (registries.patch) - * - * @param string $name The resource path name. For example, `projects/example- - * project/locations/us-central1/registries/my-registry`. - * @param Google_Service_CloudIot_DeviceRegistry $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Required. Only updates the `device_registry` - * fields indicated by this mask. The field mask must not be empty, and it must - * not contain fields that are immutable or only set by the server. Mutable top- - * level fields: `event_notification_config`, `http_config`, `mqtt_config`, and - * `state_notification_config`. - * @return Google_Service_CloudIot_DeviceRegistry - */ - public function patch($name, Google_Service_CloudIot_DeviceRegistry $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_CloudIot_DeviceRegistry"); - } - /** - * Sets the access control policy on the specified resource. Replaces any - * existing policy. (registries.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_CloudIot_SetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudIot_Policy - */ - public function setIamPolicy($resource, Google_Service_CloudIot_SetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_CloudIot_Policy"); - } - /** - * 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. (registries.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_CloudIot_TestIamPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudIot_TestIamPermissionsResponse - */ - public function testIamPermissions($resource, Google_Service_CloudIot_TestIamPermissionsRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_CloudIot_TestIamPermissionsResponse"); - } - /** - * Deletes the association between the device and the gateway. - * (registries.unbindDeviceFromGateway) - * - * @param string $parent Required. The name of the registry. For example, - * `projects/example-project/locations/us-central1/registries/my-registry`. - * @param Google_Service_CloudIot_UnbindDeviceFromGatewayRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudIot_UnbindDeviceFromGatewayResponse - */ - public function unbindDeviceFromGateway($parent, Google_Service_CloudIot_UnbindDeviceFromGatewayRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('unbindDeviceFromGateway', array($params), "Google_Service_CloudIot_UnbindDeviceFromGatewayResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/Resource/ProjectsLocationsRegistriesDevices.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/Resource/ProjectsLocationsRegistriesDevices.php deleted file mode 100644 index b01904b3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/Resource/ProjectsLocationsRegistriesDevices.php +++ /dev/null @@ -1,191 +0,0 @@ - - * $cloudiotService = new Google_Service_CloudIot(...); - * $devices = $cloudiotService->devices; - * - */ -class Google_Service_CloudIot_Resource_ProjectsLocationsRegistriesDevices extends Google_Service_Resource -{ - /** - * Creates a device in a device registry. (devices.create) - * - * @param string $parent Required. The name of the device registry where this - * device should be created. For example, `projects/example-project/locations - * /us-central1/registries/my-registry`. - * @param Google_Service_CloudIot_Device $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudIot_Device - */ - public function create($parent, Google_Service_CloudIot_Device $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_CloudIot_Device"); - } - /** - * Deletes a device. (devices.delete) - * - * @param string $name Required. The name of the device. For example, - * `projects/p0/locations/us-central1/registries/registry0/devices/device0` or - * `projects/p0/locations/us-central1/registries/registry0/devices/{num_id}`. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudIot_CloudiotEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudIot_CloudiotEmpty"); - } - /** - * Gets details about a device. (devices.get) - * - * @param string $name Required. The name of the device. For example, - * `projects/p0/locations/us-central1/registries/registry0/devices/device0` or - * `projects/p0/locations/us-central1/registries/registry0/devices/{num_id}`. - * @param array $optParams Optional parameters. - * - * @opt_param string fieldMask The fields of the `Device` resource to be - * returned in the response. If the field mask is unset or empty, all fields are - * returned. - * @return Google_Service_CloudIot_Device - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudIot_Device"); - } - /** - * List devices in a device registry. - * (devices.listProjectsLocationsRegistriesDevices) - * - * @param string $parent Required. The device registry path. Required. For - * example, `projects/my-project/locations/us-central1/registries/my-registry`. - * @param array $optParams Optional parameters. - * - * @opt_param string deviceIds A list of device string IDs. For example, - * `['device0', 'device12']`. If empty, this field is ignored. Maximum IDs: - * 10,000 - * @opt_param string gatewayListOptions.associationsDeviceId If set, returns - * only the gateways with which the specified device is associated. The device - * ID can be numeric (`num_id`) or the user-defined string (`id`). For example, - * if `456` is specified, returns only the gateways to which the device with - * `num_id` 456 is bound. - * @opt_param string deviceNumIds A list of device numeric IDs. If empty, this - * field is ignored. Maximum IDs: 10,000. - * @opt_param string gatewayListOptions.gatewayType If `GATEWAY` is specified, - * only gateways are returned. If `NON_GATEWAY` is specified, only non-gateway - * devices are returned. If `GATEWAY_TYPE_UNSPECIFIED` is specified, all devices - * are returned. - * @opt_param string gatewayListOptions.associationsGatewayId If set, only - * devices associated with the specified gateway are returned. The gateway ID - * can be numeric (`num_id`) or the user-defined string (`id`). For example, if - * `123` is specified, only devices bound to the gateway with `num_id` 123 are - * returned. - * @opt_param string fieldMask The fields of the `Device` resource to be - * returned in the response. The fields `id` and `num_id` are always returned, - * along with any other fields specified. - * @opt_param string pageToken The value returned by the last - * `ListDevicesResponse`; indicates that this is a continuation of a prior - * `ListDevices` call and the system should return the next page of data. - * @opt_param int pageSize The maximum number of devices to return in the - * response. If this value is zero, the service will select a default size. A - * call may return fewer objects than requested. A non-empty `next_page_token` - * in the response indicates that more data is available. - * @return Google_Service_CloudIot_ListDevicesResponse - */ - public function listProjectsLocationsRegistriesDevices($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudIot_ListDevicesResponse"); - } - /** - * Modifies the configuration for the device, which is eventually sent from the - * Cloud IoT Core servers. Returns the modified configuration version and its - * metadata. (devices.modifyCloudToDeviceConfig) - * - * @param string $name Required. The name of the device. For example, - * `projects/p0/locations/us-central1/registries/registry0/devices/device0` or - * `projects/p0/locations/us-central1/registries/registry0/devices/{num_id}`. - * @param Google_Service_CloudIot_ModifyCloudToDeviceConfigRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudIot_DeviceConfig - */ - public function modifyCloudToDeviceConfig($name, Google_Service_CloudIot_ModifyCloudToDeviceConfigRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('modifyCloudToDeviceConfig', array($params), "Google_Service_CloudIot_DeviceConfig"); - } - /** - * Updates a device. (devices.patch) - * - * @param string $name The resource path name. For example, - * `projects/p1/locations/us-central1/registries/registry0/devices/dev0` or - * `projects/p1/locations/us-central1/registries/registry0/devices/{num_id}`. - * When `name` is populated as a response from the service, it always ends in - * the device numeric ID. - * @param Google_Service_CloudIot_Device $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Required. Only updates the `device` fields - * indicated by this mask. The field mask must not be empty, and it must not - * contain fields that are immutable or only set by the server. Mutable top- - * level fields: `credentials`, `blocked`, and `metadata` - * @return Google_Service_CloudIot_Device - */ - public function patch($name, Google_Service_CloudIot_Device $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_CloudIot_Device"); - } - /** - * Sends a command to the specified device. In order for a device to be able to - * receive commands, it must: 1) be connected to Cloud IoT Core using the MQTT - * protocol, and 2) be subscribed to the group of MQTT topics specified by - * /devices/{device-id}/commands/#. This subscription will receive commands - * at the top-level topic /devices/{device-id}/commands as well as commands - * for subfolders, like /devices/{device-id}/commands/subfolder. Note that - * subscribing to specific subfolders is not supported. If the command could not - * be delivered to the device, this method will return an error; in particular, - * if the device is not subscribed, this method will return FAILED_PRECONDITION. - * Otherwise, this method will return OK. If the subscription is QoS 1, at least - * once delivery will be guaranteed; for QoS 0, no acknowledgment will be - * expected from the device. (devices.sendCommandToDevice) - * - * @param string $name Required. The name of the device. For example, - * `projects/p0/locations/us-central1/registries/registry0/devices/device0` or - * `projects/p0/locations/us-central1/registries/registry0/devices/{num_id}`. - * @param Google_Service_CloudIot_SendCommandToDeviceRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudIot_SendCommandToDeviceResponse - */ - public function sendCommandToDevice($name, Google_Service_CloudIot_SendCommandToDeviceRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('sendCommandToDevice', array($params), "Google_Service_CloudIot_SendCommandToDeviceResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/Resource/ProjectsLocationsRegistriesDevicesConfigVersions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/Resource/ProjectsLocationsRegistriesDevicesConfigVersions.php deleted file mode 100644 index 64834763..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/Resource/ProjectsLocationsRegistriesDevicesConfigVersions.php +++ /dev/null @@ -1,50 +0,0 @@ - - * $cloudiotService = new Google_Service_CloudIot(...); - * $configVersions = $cloudiotService->configVersions; - * - */ -class Google_Service_CloudIot_Resource_ProjectsLocationsRegistriesDevicesConfigVersions extends Google_Service_Resource -{ - /** - * Lists the last few versions of the device configuration in descending order - * (i.e.: newest first). - * (configVersions.listProjectsLocationsRegistriesDevicesConfigVersions) - * - * @param string $name Required. The name of the device. For example, - * `projects/p0/locations/us-central1/registries/registry0/devices/device0` or - * `projects/p0/locations/us-central1/registries/registry0/devices/{num_id}`. - * @param array $optParams Optional parameters. - * - * @opt_param int numVersions The number of versions to list. Versions are - * listed in decreasing order of the version number. The maximum number of - * versions retained is 10. If this value is zero, it will return all the - * versions available. - * @return Google_Service_CloudIot_ListDeviceConfigVersionsResponse - */ - public function listProjectsLocationsRegistriesDevicesConfigVersions($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudIot_ListDeviceConfigVersionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/Resource/ProjectsLocationsRegistriesDevicesStates.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/Resource/ProjectsLocationsRegistriesDevicesStates.php deleted file mode 100644 index 582a7462..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/Resource/ProjectsLocationsRegistriesDevicesStates.php +++ /dev/null @@ -1,48 +0,0 @@ - - * $cloudiotService = new Google_Service_CloudIot(...); - * $states = $cloudiotService->states; - * - */ -class Google_Service_CloudIot_Resource_ProjectsLocationsRegistriesDevicesStates extends Google_Service_Resource -{ - /** - * Lists the last few versions of the device state in descending order (i.e.: - * newest first). (states.listProjectsLocationsRegistriesDevicesStates) - * - * @param string $name Required. The name of the device. For example, - * `projects/p0/locations/us-central1/registries/registry0/devices/device0` or - * `projects/p0/locations/us-central1/registries/registry0/devices/{num_id}`. - * @param array $optParams Optional parameters. - * - * @opt_param int numStates The number of states to list. States are listed in - * descending order of update time. The maximum number of states retained is 10. - * If this value is zero, it will return all the states available. - * @return Google_Service_CloudIot_ListDeviceStatesResponse - */ - public function listProjectsLocationsRegistriesDevicesStates($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudIot_ListDeviceStatesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/Resource/ProjectsLocationsRegistriesGroups.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/Resource/ProjectsLocationsRegistriesGroups.php deleted file mode 100644 index 42c7a817..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/Resource/ProjectsLocationsRegistriesGroups.php +++ /dev/null @@ -1,80 +0,0 @@ - - * $cloudiotService = new Google_Service_CloudIot(...); - * $groups = $cloudiotService->groups; - * - */ -class Google_Service_CloudIot_Resource_ProjectsLocationsRegistriesGroups extends Google_Service_Resource -{ - /** - * Gets the access control policy for a resource. Returns an empty policy if the - * resource exists and does not have a policy set. (groups.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 Google_Service_CloudIot_GetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudIot_Policy - */ - public function getIamPolicy($resource, Google_Service_CloudIot_GetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_CloudIot_Policy"); - } - /** - * Sets the access control policy on the specified resource. Replaces any - * existing policy. (groups.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_CloudIot_SetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudIot_Policy - */ - public function setIamPolicy($resource, Google_Service_CloudIot_SetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_CloudIot_Policy"); - } - /** - * 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. (groups.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_CloudIot_TestIamPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudIot_TestIamPermissionsResponse - */ - public function testIamPermissions($resource, Google_Service_CloudIot_TestIamPermissionsRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_CloudIot_TestIamPermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/Resource/ProjectsLocationsRegistriesGroupsDevices.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/Resource/ProjectsLocationsRegistriesGroupsDevices.php deleted file mode 100644 index 752c4f3c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/Resource/ProjectsLocationsRegistriesGroupsDevices.php +++ /dev/null @@ -1,73 +0,0 @@ - - * $cloudiotService = new Google_Service_CloudIot(...); - * $devices = $cloudiotService->devices; - * - */ -class Google_Service_CloudIot_Resource_ProjectsLocationsRegistriesGroupsDevices extends Google_Service_Resource -{ - /** - * List devices in a device registry. - * (devices.listProjectsLocationsRegistriesGroupsDevices) - * - * @param string $parent Required. The device registry path. Required. For - * example, `projects/my-project/locations/us-central1/registries/my-registry`. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The value returned by the last - * `ListDevicesResponse`; indicates that this is a continuation of a prior - * `ListDevices` call and the system should return the next page of data. - * @opt_param string fieldMask The fields of the `Device` resource to be - * returned in the response. The fields `id` and `num_id` are always returned, - * along with any other fields specified. - * @opt_param int pageSize The maximum number of devices to return in the - * response. If this value is zero, the service will select a default size. A - * call may return fewer objects than requested. A non-empty `next_page_token` - * in the response indicates that more data is available. - * @opt_param string deviceIds A list of device string IDs. For example, - * `['device0', 'device12']`. If empty, this field is ignored. Maximum IDs: - * 10,000 - * @opt_param string deviceNumIds A list of device numeric IDs. If empty, this - * field is ignored. Maximum IDs: 10,000. - * @opt_param string gatewayListOptions.associationsDeviceId If set, returns - * only the gateways with which the specified device is associated. The device - * ID can be numeric (`num_id`) or the user-defined string (`id`). For example, - * if `456` is specified, returns only the gateways to which the device with - * `num_id` 456 is bound. - * @opt_param string gatewayListOptions.gatewayType If `GATEWAY` is specified, - * only gateways are returned. If `NON_GATEWAY` is specified, only non-gateway - * devices are returned. If `GATEWAY_TYPE_UNSPECIFIED` is specified, all devices - * are returned. - * @opt_param string gatewayListOptions.associationsGatewayId If set, only - * devices associated with the specified gateway are returned. The gateway ID - * can be numeric (`num_id`) or the user-defined string (`id`). For example, if - * `123` is specified, only devices bound to the gateway with `num_id` 123 are - * returned. - * @return Google_Service_CloudIot_ListDevicesResponse - */ - public function listProjectsLocationsRegistriesGroupsDevices($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudIot_ListDevicesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/SendCommandToDeviceRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/SendCommandToDeviceRequest.php deleted file mode 100644 index b2bbe5c5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/SendCommandToDeviceRequest.php +++ /dev/null @@ -1,39 +0,0 @@ -binaryData = $binaryData; - } - public function getBinaryData() - { - return $this->binaryData; - } - public function setSubfolder($subfolder) - { - $this->subfolder = $subfolder; - } - public function getSubfolder() - { - return $this->subfolder; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/SendCommandToDeviceResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/SendCommandToDeviceResponse.php deleted file mode 100644 index a7739f21..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/SendCommandToDeviceResponse.php +++ /dev/null @@ -1,20 +0,0 @@ -policy = $policy; - } - /** - * @return Google_Service_CloudIot_Policy - */ - public function getPolicy() - { - return $this->policy; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/StateNotificationConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/StateNotificationConfig.php deleted file mode 100644 index 1d4f39da..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/StateNotificationConfig.php +++ /dev/null @@ -1,30 +0,0 @@ -pubsubTopicName = $pubsubTopicName; - } - public function getPubsubTopicName() - { - return $this->pubsubTopicName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/Status.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/Status.php deleted file mode 100644 index 27152546..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/Status.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/TestIamPermissionsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/TestIamPermissionsRequest.php deleted file mode 100644 index d2733f6b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/TestIamPermissionsRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/TestIamPermissionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/TestIamPermissionsResponse.php deleted file mode 100644 index 8f7c7f89..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/TestIamPermissionsResponse.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/UnbindDeviceFromGatewayRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/UnbindDeviceFromGatewayRequest.php deleted file mode 100644 index a5e5ecfa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/UnbindDeviceFromGatewayRequest.php +++ /dev/null @@ -1,39 +0,0 @@ -deviceId = $deviceId; - } - public function getDeviceId() - { - return $this->deviceId; - } - public function setGatewayId($gatewayId) - { - $this->gatewayId = $gatewayId; - } - public function getGatewayId() - { - return $this->gatewayId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/UnbindDeviceFromGatewayResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/UnbindDeviceFromGatewayResponse.php deleted file mode 100644 index 86333ccd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudIot/UnbindDeviceFromGatewayResponse.php +++ /dev/null @@ -1,20 +0,0 @@ -expiryTime = $expiryTime; - } - public function getExpiryTime() - { - return $this->expiryTime; - } - public function setIssuer($issuer) - { - $this->issuer = $issuer; - } - public function getIssuer() - { - return $this->issuer; - } - public function setPublicKeyType($publicKeyType) - { - $this->publicKeyType = $publicKeyType; - } - public function getPublicKeyType() - { - return $this->publicKeyType; - } - public function setSignatureAlgorithm($signatureAlgorithm) - { - $this->signatureAlgorithm = $signatureAlgorithm; - } - public function getSignatureAlgorithm() - { - return $this->signatureAlgorithm; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } - public function setSubject($subject) - { - $this->subject = $subject; - } - public function getSubject() - { - return $this->subject; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS.php deleted file mode 100644 index a115cf09..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS.php +++ /dev/null @@ -1,573 +0,0 @@ - - * Manages keys and performs cryptographic operations in a central cloud - * service, for direct use by other cloud resources and applications.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_CloudKMS extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** View and manage your keys and secrets stored in Cloud Key Management Service. */ - const CLOUDKMS = - "https://www.googleapis.com/auth/cloudkms"; - - public $projects_locations; - public $projects_locations_keyRings; - public $projects_locations_keyRings_cryptoKeys; - public $projects_locations_keyRings_cryptoKeys_cryptoKeyVersions; - public $projects_locations_keyRings_importJobs; - - /** - * Constructs the internal representation of the CloudKMS service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://cloudkms.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'cloudkms'; - - $this->projects_locations = new Google_Service_CloudKMS_Resource_ProjectsLocations( - $this, - $this->serviceName, - 'locations', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+name}/locations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->projects_locations_keyRings = new Google_Service_CloudKMS_Resource_ProjectsLocationsKeyRings( - $this, - $this->serviceName, - 'keyRings', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/keyRings', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'keyRingId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getIamPolicy' => array( - 'path' => 'v1/{+resource}:getIamPolicy', - 'httpMethod' => 'GET', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'options.requestedPolicyVersion' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/keyRings', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'setIamPolicy' => array( - 'path' => 'v1/{+resource}:setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => 'v1/{+resource}:testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_locations_keyRings_cryptoKeys = new Google_Service_CloudKMS_Resource_ProjectsLocationsKeyRingsCryptoKeys( - $this, - $this->serviceName, - 'cryptoKeys', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/cryptoKeys', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'cryptoKeyId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'skipInitialVersionCreation' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'decrypt' => array( - 'path' => 'v1/{+name}:decrypt', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'encrypt' => array( - 'path' => 'v1/{+name}:encrypt', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getIamPolicy' => array( - 'path' => 'v1/{+resource}:getIamPolicy', - 'httpMethod' => 'GET', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'options.requestedPolicyVersion' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/cryptoKeys', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'versionView' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setIamPolicy' => array( - 'path' => 'v1/{+resource}:setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => 'v1/{+resource}:testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'updatePrimaryVersion' => array( - 'path' => 'v1/{+name}:updatePrimaryVersion', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_locations_keyRings_cryptoKeys_cryptoKeyVersions = new Google_Service_CloudKMS_Resource_ProjectsLocationsKeyRingsCryptoKeysCryptoKeyVersions( - $this, - $this->serviceName, - 'cryptoKeyVersions', - array( - 'methods' => array( - 'asymmetricDecrypt' => array( - 'path' => 'v1/{+name}:asymmetricDecrypt', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'asymmetricSign' => array( - 'path' => 'v1/{+name}:asymmetricSign', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'create' => array( - 'path' => 'v1/{+parent}/cryptoKeyVersions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'destroy' => array( - 'path' => 'v1/{+name}:destroy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getPublicKey' => array( - 'path' => 'v1/{+name}/publicKey', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'import' => array( - 'path' => 'v1/{+parent}/cryptoKeyVersions:import', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/cryptoKeyVersions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'restore' => array( - 'path' => 'v1/{+name}:restore', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_locations_keyRings_importJobs = new Google_Service_CloudKMS_Resource_ProjectsLocationsKeyRingsImportJobs( - $this, - $this->serviceName, - 'importJobs', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/importJobs', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'importJobId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getIamPolicy' => array( - 'path' => 'v1/{+resource}:getIamPolicy', - 'httpMethod' => 'GET', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'options.requestedPolicyVersion' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/importJobs', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'setIamPolicy' => array( - 'path' => 'v1/{+resource}:setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => 'v1/{+resource}:testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/AsymmetricDecryptRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/AsymmetricDecryptRequest.php deleted file mode 100644 index f34f256c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/AsymmetricDecryptRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -ciphertext = $ciphertext; - } - public function getCiphertext() - { - return $this->ciphertext; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/AsymmetricDecryptResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/AsymmetricDecryptResponse.php deleted file mode 100644 index b319f14b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/AsymmetricDecryptResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -plaintext = $plaintext; - } - public function getPlaintext() - { - return $this->plaintext; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/AsymmetricSignRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/AsymmetricSignRequest.php deleted file mode 100644 index 3c2291e7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/AsymmetricSignRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -digest = $digest; - } - /** - * @return Google_Service_CloudKMS_Digest - */ - public function getDigest() - { - return $this->digest; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/AsymmetricSignResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/AsymmetricSignResponse.php deleted file mode 100644 index 92076a2e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/AsymmetricSignResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -signature = $signature; - } - public function getSignature() - { - return $this->signature; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/AuditConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/AuditConfig.php deleted file mode 100644 index 7d95ea97..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/AuditConfig.php +++ /dev/null @@ -1,47 +0,0 @@ -auditLogConfigs = $auditLogConfigs; - } - /** - * @return Google_Service_CloudKMS_AuditLogConfig - */ - public function getAuditLogConfigs() - { - return $this->auditLogConfigs; - } - public function setService($service) - { - $this->service = $service; - } - public function getService() - { - return $this->service; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/AuditLogConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/AuditLogConfig.php deleted file mode 100644 index 3e215a69..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/AuditLogConfig.php +++ /dev/null @@ -1,40 +0,0 @@ -exemptedMembers = $exemptedMembers; - } - public function getExemptedMembers() - { - return $this->exemptedMembers; - } - public function setLogType($logType) - { - $this->logType = $logType; - } - public function getLogType() - { - return $this->logType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/Binding.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/Binding.php deleted file mode 100644 index 29a61e22..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/Binding.php +++ /dev/null @@ -1,56 +0,0 @@ -condition = $condition; - } - /** - * @return Google_Service_CloudKMS_Expr - */ - public function getCondition() - { - return $this->condition; - } - public function setMembers($members) - { - $this->members = $members; - } - public function getMembers() - { - return $this->members; - } - public function setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/CryptoKey.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/CryptoKey.php deleted file mode 100644 index 599ce369..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/CryptoKey.php +++ /dev/null @@ -1,107 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNextRotationTime($nextRotationTime) - { - $this->nextRotationTime = $nextRotationTime; - } - public function getNextRotationTime() - { - return $this->nextRotationTime; - } - /** - * @param Google_Service_CloudKMS_CryptoKeyVersion - */ - public function setPrimary(Google_Service_CloudKMS_CryptoKeyVersion $primary) - { - $this->primary = $primary; - } - /** - * @return Google_Service_CloudKMS_CryptoKeyVersion - */ - public function getPrimary() - { - return $this->primary; - } - public function setPurpose($purpose) - { - $this->purpose = $purpose; - } - public function getPurpose() - { - return $this->purpose; - } - public function setRotationPeriod($rotationPeriod) - { - $this->rotationPeriod = $rotationPeriod; - } - public function getRotationPeriod() - { - return $this->rotationPeriod; - } - /** - * @param Google_Service_CloudKMS_CryptoKeyVersionTemplate - */ - public function setVersionTemplate(Google_Service_CloudKMS_CryptoKeyVersionTemplate $versionTemplate) - { - $this->versionTemplate = $versionTemplate; - } - /** - * @return Google_Service_CloudKMS_CryptoKeyVersionTemplate - */ - public function getVersionTemplate() - { - return $this->versionTemplate; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/CryptoKeyVersion.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/CryptoKeyVersion.php deleted file mode 100644 index 2b3c536f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/CryptoKeyVersion.php +++ /dev/null @@ -1,152 +0,0 @@ -algorithm = $algorithm; - } - public function getAlgorithm() - { - return $this->algorithm; - } - /** - * @param Google_Service_CloudKMS_KeyOperationAttestation - */ - public function setAttestation(Google_Service_CloudKMS_KeyOperationAttestation $attestation) - { - $this->attestation = $attestation; - } - /** - * @return Google_Service_CloudKMS_KeyOperationAttestation - */ - public function getAttestation() - { - return $this->attestation; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setDestroyEventTime($destroyEventTime) - { - $this->destroyEventTime = $destroyEventTime; - } - public function getDestroyEventTime() - { - return $this->destroyEventTime; - } - public function setDestroyTime($destroyTime) - { - $this->destroyTime = $destroyTime; - } - public function getDestroyTime() - { - return $this->destroyTime; - } - /** - * @param Google_Service_CloudKMS_ExternalProtectionLevelOptions - */ - public function setExternalProtectionLevelOptions(Google_Service_CloudKMS_ExternalProtectionLevelOptions $externalProtectionLevelOptions) - { - $this->externalProtectionLevelOptions = $externalProtectionLevelOptions; - } - /** - * @return Google_Service_CloudKMS_ExternalProtectionLevelOptions - */ - public function getExternalProtectionLevelOptions() - { - return $this->externalProtectionLevelOptions; - } - public function setGenerateTime($generateTime) - { - $this->generateTime = $generateTime; - } - public function getGenerateTime() - { - return $this->generateTime; - } - public function setImportFailureReason($importFailureReason) - { - $this->importFailureReason = $importFailureReason; - } - public function getImportFailureReason() - { - return $this->importFailureReason; - } - public function setImportJob($importJob) - { - $this->importJob = $importJob; - } - public function getImportJob() - { - return $this->importJob; - } - public function setImportTime($importTime) - { - $this->importTime = $importTime; - } - public function getImportTime() - { - return $this->importTime; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setProtectionLevel($protectionLevel) - { - $this->protectionLevel = $protectionLevel; - } - public function getProtectionLevel() - { - return $this->protectionLevel; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/CryptoKeyVersionTemplate.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/CryptoKeyVersionTemplate.php deleted file mode 100644 index 5b6e9515..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/CryptoKeyVersionTemplate.php +++ /dev/null @@ -1,39 +0,0 @@ -algorithm = $algorithm; - } - public function getAlgorithm() - { - return $this->algorithm; - } - public function setProtectionLevel($protectionLevel) - { - $this->protectionLevel = $protectionLevel; - } - public function getProtectionLevel() - { - return $this->protectionLevel; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/DecryptRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/DecryptRequest.php deleted file mode 100644 index c35fdca3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/DecryptRequest.php +++ /dev/null @@ -1,39 +0,0 @@ -additionalAuthenticatedData = $additionalAuthenticatedData; - } - public function getAdditionalAuthenticatedData() - { - return $this->additionalAuthenticatedData; - } - public function setCiphertext($ciphertext) - { - $this->ciphertext = $ciphertext; - } - public function getCiphertext() - { - return $this->ciphertext; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/DecryptResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/DecryptResponse.php deleted file mode 100644 index 47ab7062..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/DecryptResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -plaintext = $plaintext; - } - public function getPlaintext() - { - return $this->plaintext; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/DestroyCryptoKeyVersionRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/DestroyCryptoKeyVersionRequest.php deleted file mode 100644 index 17941fbf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/DestroyCryptoKeyVersionRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -sha256 = $sha256; - } - public function getSha256() - { - return $this->sha256; - } - public function setSha384($sha384) - { - $this->sha384 = $sha384; - } - public function getSha384() - { - return $this->sha384; - } - public function setSha512($sha512) - { - $this->sha512 = $sha512; - } - public function getSha512() - { - return $this->sha512; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/EncryptRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/EncryptRequest.php deleted file mode 100644 index 6e95b720..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/EncryptRequest.php +++ /dev/null @@ -1,39 +0,0 @@ -additionalAuthenticatedData = $additionalAuthenticatedData; - } - public function getAdditionalAuthenticatedData() - { - return $this->additionalAuthenticatedData; - } - public function setPlaintext($plaintext) - { - $this->plaintext = $plaintext; - } - public function getPlaintext() - { - return $this->plaintext; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/EncryptResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/EncryptResponse.php deleted file mode 100644 index 2011fa21..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/EncryptResponse.php +++ /dev/null @@ -1,39 +0,0 @@ -ciphertext = $ciphertext; - } - public function getCiphertext() - { - return $this->ciphertext; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/Expr.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/Expr.php deleted file mode 100644 index 1cb156a5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/Expr.php +++ /dev/null @@ -1,57 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setExpression($expression) - { - $this->expression = $expression; - } - public function getExpression() - { - return $this->expression; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/ExternalProtectionLevelOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/ExternalProtectionLevelOptions.php deleted file mode 100644 index 0fc22429..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/ExternalProtectionLevelOptions.php +++ /dev/null @@ -1,30 +0,0 @@ -externalKeyUri = $externalKeyUri; - } - public function getExternalKeyUri() - { - return $this->externalKeyUri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/ImportCryptoKeyVersionRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/ImportCryptoKeyVersionRequest.php deleted file mode 100644 index 2fc1887a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/ImportCryptoKeyVersionRequest.php +++ /dev/null @@ -1,48 +0,0 @@ -algorithm = $algorithm; - } - public function getAlgorithm() - { - return $this->algorithm; - } - public function setImportJob($importJob) - { - $this->importJob = $importJob; - } - public function getImportJob() - { - return $this->importJob; - } - public function setRsaAesWrappedKey($rsaAesWrappedKey) - { - $this->rsaAesWrappedKey = $rsaAesWrappedKey; - } - public function getRsaAesWrappedKey() - { - return $this->rsaAesWrappedKey; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/ImportJob.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/ImportJob.php deleted file mode 100644 index f9ef67cd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/ImportJob.php +++ /dev/null @@ -1,125 +0,0 @@ -attestation = $attestation; - } - /** - * @return Google_Service_CloudKMS_KeyOperationAttestation - */ - public function getAttestation() - { - return $this->attestation; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setExpireEventTime($expireEventTime) - { - $this->expireEventTime = $expireEventTime; - } - public function getExpireEventTime() - { - return $this->expireEventTime; - } - public function setExpireTime($expireTime) - { - $this->expireTime = $expireTime; - } - public function getExpireTime() - { - return $this->expireTime; - } - public function setGenerateTime($generateTime) - { - $this->generateTime = $generateTime; - } - public function getGenerateTime() - { - return $this->generateTime; - } - public function setImportMethod($importMethod) - { - $this->importMethod = $importMethod; - } - public function getImportMethod() - { - return $this->importMethod; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setProtectionLevel($protectionLevel) - { - $this->protectionLevel = $protectionLevel; - } - public function getProtectionLevel() - { - return $this->protectionLevel; - } - /** - * @param Google_Service_CloudKMS_WrappingPublicKey - */ - public function setPublicKey(Google_Service_CloudKMS_WrappingPublicKey $publicKey) - { - $this->publicKey = $publicKey; - } - /** - * @return Google_Service_CloudKMS_WrappingPublicKey - */ - public function getPublicKey() - { - return $this->publicKey; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/KeyOperationAttestation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/KeyOperationAttestation.php deleted file mode 100644 index bc4bfa09..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/KeyOperationAttestation.php +++ /dev/null @@ -1,39 +0,0 @@ -content = $content; - } - public function getContent() - { - return $this->content; - } - public function setFormat($format) - { - $this->format = $format; - } - public function getFormat() - { - return $this->format; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/KeyRing.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/KeyRing.php deleted file mode 100644 index b749b82b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/KeyRing.php +++ /dev/null @@ -1,39 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/ListCryptoKeyVersionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/ListCryptoKeyVersionsResponse.php deleted file mode 100644 index 1607ba64..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/ListCryptoKeyVersionsResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -cryptoKeyVersions = $cryptoKeyVersions; - } - /** - * @return Google_Service_CloudKMS_CryptoKeyVersion - */ - public function getCryptoKeyVersions() - { - return $this->cryptoKeyVersions; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setTotalSize($totalSize) - { - $this->totalSize = $totalSize; - } - public function getTotalSize() - { - return $this->totalSize; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/ListCryptoKeysResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/ListCryptoKeysResponse.php deleted file mode 100644 index 8c17bdcf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/ListCryptoKeysResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -cryptoKeys = $cryptoKeys; - } - /** - * @return Google_Service_CloudKMS_CryptoKey - */ - public function getCryptoKeys() - { - return $this->cryptoKeys; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setTotalSize($totalSize) - { - $this->totalSize = $totalSize; - } - public function getTotalSize() - { - return $this->totalSize; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/ListImportJobsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/ListImportJobsResponse.php deleted file mode 100644 index 1464f08d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/ListImportJobsResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -importJobs = $importJobs; - } - /** - * @return Google_Service_CloudKMS_ImportJob - */ - public function getImportJobs() - { - return $this->importJobs; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setTotalSize($totalSize) - { - $this->totalSize = $totalSize; - } - public function getTotalSize() - { - return $this->totalSize; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/ListKeyRingsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/ListKeyRingsResponse.php deleted file mode 100644 index fef99146..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/ListKeyRingsResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -keyRings = $keyRings; - } - /** - * @return Google_Service_CloudKMS_KeyRing - */ - public function getKeyRings() - { - return $this->keyRings; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setTotalSize($totalSize) - { - $this->totalSize = $totalSize; - } - public function getTotalSize() - { - return $this->totalSize; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/ListLocationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/ListLocationsResponse.php deleted file mode 100644 index dc0e9add..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/ListLocationsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -locations = $locations; - } - /** - * @return Google_Service_CloudKMS_Location - */ - public function getLocations() - { - return $this->locations; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/Location.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/Location.php deleted file mode 100644 index 95e0e186..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/Location.php +++ /dev/null @@ -1,66 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setLocationId($locationId) - { - $this->locationId = $locationId; - } - public function getLocationId() - { - return $this->locationId; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/LocationMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/LocationMetadata.php deleted file mode 100644 index 26c620c6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/LocationMetadata.php +++ /dev/null @@ -1,39 +0,0 @@ -ekmAvailable = $ekmAvailable; - } - public function getEkmAvailable() - { - return $this->ekmAvailable; - } - public function setHsmAvailable($hsmAvailable) - { - $this->hsmAvailable = $hsmAvailable; - } - public function getHsmAvailable() - { - return $this->hsmAvailable; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/Policy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/Policy.php deleted file mode 100644 index 562bdcc4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/Policy.php +++ /dev/null @@ -1,72 +0,0 @@ -auditConfigs = $auditConfigs; - } - /** - * @return Google_Service_CloudKMS_AuditConfig - */ - public function getAuditConfigs() - { - return $this->auditConfigs; - } - /** - * @param Google_Service_CloudKMS_Binding - */ - public function setBindings($bindings) - { - $this->bindings = $bindings; - } - /** - * @return Google_Service_CloudKMS_Binding - */ - public function getBindings() - { - return $this->bindings; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/PublicKey.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/PublicKey.php deleted file mode 100644 index 222fb9f3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/PublicKey.php +++ /dev/null @@ -1,39 +0,0 @@ -algorithm = $algorithm; - } - public function getAlgorithm() - { - return $this->algorithm; - } - public function setPem($pem) - { - $this->pem = $pem; - } - public function getPem() - { - return $this->pem; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/Resource/Projects.php deleted file mode 100644 index a9a524bd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/Resource/Projects.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $cloudkmsService = new Google_Service_CloudKMS(...); - * $projects = $cloudkmsService->projects; - * - */ -class Google_Service_CloudKMS_Resource_Projects extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/Resource/ProjectsLocations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/Resource/ProjectsLocations.php deleted file mode 100644 index aff09402..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/Resource/ProjectsLocations.php +++ /dev/null @@ -1,60 +0,0 @@ - - * $cloudkmsService = new Google_Service_CloudKMS(...); - * $locations = $cloudkmsService->locations; - * - */ -class Google_Service_CloudKMS_Resource_ProjectsLocations extends Google_Service_Resource -{ - /** - * Gets information about a location. (locations.get) - * - * @param string $name Resource name for the location. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudKMS_Location - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudKMS_Location"); - } - /** - * Lists information about the supported locations for this service. - * (locations.listProjectsLocations) - * - * @param string $name The resource that owns the locations collection, if - * applicable. - * @param array $optParams Optional parameters. - * - * @opt_param string filter The standard list filter. - * @opt_param string pageToken The standard list page token. - * @opt_param int pageSize The standard list page size. - * @return Google_Service_CloudKMS_ListLocationsResponse - */ - public function listProjectsLocations($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudKMS_ListLocationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/Resource/ProjectsLocationsKeyRings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/Resource/ProjectsLocationsKeyRings.php deleted file mode 100644 index 81893ea0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/Resource/ProjectsLocationsKeyRings.php +++ /dev/null @@ -1,155 +0,0 @@ - - * $cloudkmsService = new Google_Service_CloudKMS(...); - * $keyRings = $cloudkmsService->keyRings; - * - */ -class Google_Service_CloudKMS_Resource_ProjectsLocationsKeyRings extends Google_Service_Resource -{ - /** - * Create a new KeyRing in a given Project and Location. (keyRings.create) - * - * @param string $parent Required. The resource name of the location associated - * with the KeyRings, in the format `projects/locations`. - * @param Google_Service_CloudKMS_KeyRing $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string keyRingId Required. It must be unique within a location and - * match the regular expression `[a-zA-Z0-9_-]{1,63}` - * @return Google_Service_CloudKMS_KeyRing - */ - public function create($parent, Google_Service_CloudKMS_KeyRing $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_CloudKMS_KeyRing"); - } - /** - * Returns metadata for a given KeyRing. (keyRings.get) - * - * @param string $name Required. The name of the KeyRing to get. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudKMS_KeyRing - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudKMS_KeyRing"); - } - /** - * Gets the access control policy for a resource. Returns an empty policy if the - * resource exists and does not have a policy set. (keyRings.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. - * @return Google_Service_CloudKMS_Policy - */ - public function getIamPolicy($resource, $optParams = array()) - { - $params = array('resource' => $resource); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_CloudKMS_Policy"); - } - /** - * Lists KeyRings. (keyRings.listProjectsLocationsKeyRings) - * - * @param string $parent Required. The resource name of the location associated - * with the KeyRings, in the format `projects/locations`. - * @param array $optParams Optional parameters. - * - * @opt_param string filter Optional. Only include resources that match the - * filter in the response. For more information, see [Sorting and filtering list - * results](https://cloud.google.com/kms/docs/sorting-and-filtering). - * @opt_param string pageToken Optional. Optional pagination token, returned - * earlier via ListKeyRingsResponse.next_page_token. - * @opt_param string orderBy Optional. Specify how the results should be sorted. - * If not specified, the results will be sorted in the default order. For more - * information, see [Sorting and filtering list - * results](https://cloud.google.com/kms/docs/sorting-and-filtering). - * @opt_param int pageSize Optional. Optional limit on the number of KeyRings to - * include in the response. Further KeyRings can subsequently be obtained by - * including the ListKeyRingsResponse.next_page_token in a subsequent request. - * If unspecified, the server will pick an appropriate default. - * @return Google_Service_CloudKMS_ListKeyRingsResponse - */ - public function listProjectsLocationsKeyRings($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudKMS_ListKeyRingsResponse"); - } - /** - * Sets the access control policy on the specified resource. Replaces any - * existing policy. - * - * Can return Public Errors: NOT_FOUND, INVALID_ARGUMENT and PERMISSION_DENIED - * (keyRings.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_CloudKMS_SetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudKMS_Policy - */ - public function setIamPolicy($resource, Google_Service_CloudKMS_SetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_CloudKMS_Policy"); - } - /** - * 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. (keyRings.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_CloudKMS_TestIamPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudKMS_TestIamPermissionsResponse - */ - public function testIamPermissions($resource, Google_Service_CloudKMS_TestIamPermissionsRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_CloudKMS_TestIamPermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/Resource/ProjectsLocationsKeyRingsCryptoKeys.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/Resource/ProjectsLocationsKeyRingsCryptoKeys.php deleted file mode 100644 index 53231e77..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/Resource/ProjectsLocationsKeyRingsCryptoKeys.php +++ /dev/null @@ -1,234 +0,0 @@ - - * $cloudkmsService = new Google_Service_CloudKMS(...); - * $cryptoKeys = $cloudkmsService->cryptoKeys; - * - */ -class Google_Service_CloudKMS_Resource_ProjectsLocationsKeyRingsCryptoKeys extends Google_Service_Resource -{ - /** - * Create a new CryptoKey within a KeyRing. - * - * CryptoKey.purpose and CryptoKey.version_template.algorithm are required. - * (cryptoKeys.create) - * - * @param string $parent Required. The name of the KeyRing associated with the - * CryptoKeys. - * @param Google_Service_CloudKMS_CryptoKey $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string cryptoKeyId Required. It must be unique within a KeyRing - * and match the regular expression `[a-zA-Z0-9_-]{1,63}` - * @opt_param bool skipInitialVersionCreation If set to true, the request will - * create a CryptoKey without any CryptoKeyVersions. You must manually call - * CreateCryptoKeyVersion or ImportCryptoKeyVersion before you can use this - * CryptoKey. - * @return Google_Service_CloudKMS_CryptoKey - */ - public function create($parent, Google_Service_CloudKMS_CryptoKey $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_CloudKMS_CryptoKey"); - } - /** - * Decrypts data that was protected by Encrypt. The CryptoKey.purpose must be - * ENCRYPT_DECRYPT. (cryptoKeys.decrypt) - * - * @param string $name Required. The resource name of the CryptoKey to use for - * decryption. The server will choose the appropriate version. - * @param Google_Service_CloudKMS_DecryptRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudKMS_DecryptResponse - */ - public function decrypt($name, Google_Service_CloudKMS_DecryptRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('decrypt', array($params), "Google_Service_CloudKMS_DecryptResponse"); - } - /** - * Encrypts data, so that it can only be recovered by a call to Decrypt. The - * CryptoKey.purpose must be ENCRYPT_DECRYPT. (cryptoKeys.encrypt) - * - * @param string $name Required. The resource name of the CryptoKey or - * CryptoKeyVersion to use for encryption. - * - * If a CryptoKey is specified, the server will use its primary version. - * @param Google_Service_CloudKMS_EncryptRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudKMS_EncryptResponse - */ - public function encrypt($name, Google_Service_CloudKMS_EncryptRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('encrypt', array($params), "Google_Service_CloudKMS_EncryptResponse"); - } - /** - * Returns metadata for a given CryptoKey, as well as its primary - * CryptoKeyVersion. (cryptoKeys.get) - * - * @param string $name Required. The name of the CryptoKey to get. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudKMS_CryptoKey - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudKMS_CryptoKey"); - } - /** - * Gets the access control policy for a resource. Returns an empty policy if the - * resource exists and does not have a policy set. (cryptoKeys.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. - * @return Google_Service_CloudKMS_Policy - */ - public function getIamPolicy($resource, $optParams = array()) - { - $params = array('resource' => $resource); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_CloudKMS_Policy"); - } - /** - * Lists CryptoKeys. (cryptoKeys.listProjectsLocationsKeyRingsCryptoKeys) - * - * @param string $parent Required. The resource name of the KeyRing to list, in - * the format `projects/locations/keyRings`. - * @param array $optParams Optional parameters. - * - * @opt_param string orderBy Optional. Specify how the results should be sorted. - * If not specified, the results will be sorted in the default order. For more - * information, see [Sorting and filtering list - * results](https://cloud.google.com/kms/docs/sorting-and-filtering). - * @opt_param string versionView The fields of the primary version to include in - * the response. - * @opt_param string filter Optional. Only include resources that match the - * filter in the response. For more information, see [Sorting and filtering list - * results](https://cloud.google.com/kms/docs/sorting-and-filtering). - * @opt_param string pageToken Optional. Optional pagination token, returned - * earlier via ListCryptoKeysResponse.next_page_token. - * @opt_param int pageSize Optional. Optional limit on the number of CryptoKeys - * to include in the response. Further CryptoKeys can subsequently be obtained - * by including the ListCryptoKeysResponse.next_page_token in a subsequent - * request. If unspecified, the server will pick an appropriate default. - * @return Google_Service_CloudKMS_ListCryptoKeysResponse - */ - public function listProjectsLocationsKeyRingsCryptoKeys($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudKMS_ListCryptoKeysResponse"); - } - /** - * Update a CryptoKey. (cryptoKeys.patch) - * - * @param string $name Output only. The resource name for this CryptoKey in the - * format `projects/locations/keyRings/cryptoKeys`. - * @param Google_Service_CloudKMS_CryptoKey $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Required. List of fields to be updated in this - * request. - * @return Google_Service_CloudKMS_CryptoKey - */ - public function patch($name, Google_Service_CloudKMS_CryptoKey $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_CloudKMS_CryptoKey"); - } - /** - * Sets the access control policy on the specified resource. Replaces any - * existing policy. - * - * Can return Public Errors: NOT_FOUND, INVALID_ARGUMENT and PERMISSION_DENIED - * (cryptoKeys.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_CloudKMS_SetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudKMS_Policy - */ - public function setIamPolicy($resource, Google_Service_CloudKMS_SetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_CloudKMS_Policy"); - } - /** - * 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. (cryptoKeys.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_CloudKMS_TestIamPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudKMS_TestIamPermissionsResponse - */ - public function testIamPermissions($resource, Google_Service_CloudKMS_TestIamPermissionsRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_CloudKMS_TestIamPermissionsResponse"); - } - /** - * Update the version of a CryptoKey that will be used in Encrypt. - * - * Returns an error if called on an asymmetric key. - * (cryptoKeys.updatePrimaryVersion) - * - * @param string $name Required. The resource name of the CryptoKey to update. - * @param Google_Service_CloudKMS_UpdateCryptoKeyPrimaryVersionRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudKMS_CryptoKey - */ - public function updatePrimaryVersion($name, Google_Service_CloudKMS_UpdateCryptoKeyPrimaryVersionRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updatePrimaryVersion', array($params), "Google_Service_CloudKMS_CryptoKey"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/Resource/ProjectsLocationsKeyRingsCryptoKeysCryptoKeyVersions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/Resource/ProjectsLocationsKeyRingsCryptoKeysCryptoKeyVersions.php deleted file mode 100644 index a2de0091..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/Resource/ProjectsLocationsKeyRingsCryptoKeysCryptoKeyVersions.php +++ /dev/null @@ -1,222 +0,0 @@ - - * $cloudkmsService = new Google_Service_CloudKMS(...); - * $cryptoKeyVersions = $cloudkmsService->cryptoKeyVersions; - * - */ -class Google_Service_CloudKMS_Resource_ProjectsLocationsKeyRingsCryptoKeysCryptoKeyVersions extends Google_Service_Resource -{ - /** - * Decrypts data that was encrypted with a public key retrieved from - * GetPublicKey corresponding to a CryptoKeyVersion with CryptoKey.purpose - * ASYMMETRIC_DECRYPT. (cryptoKeyVersions.asymmetricDecrypt) - * - * @param string $name Required. The resource name of the CryptoKeyVersion to - * use for decryption. - * @param Google_Service_CloudKMS_AsymmetricDecryptRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudKMS_AsymmetricDecryptResponse - */ - public function asymmetricDecrypt($name, Google_Service_CloudKMS_AsymmetricDecryptRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('asymmetricDecrypt', array($params), "Google_Service_CloudKMS_AsymmetricDecryptResponse"); - } - /** - * Signs data using a CryptoKeyVersion with CryptoKey.purpose ASYMMETRIC_SIGN, - * producing a signature that can be verified with the public key retrieved from - * GetPublicKey. (cryptoKeyVersions.asymmetricSign) - * - * @param string $name Required. The resource name of the CryptoKeyVersion to - * use for signing. - * @param Google_Service_CloudKMS_AsymmetricSignRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudKMS_AsymmetricSignResponse - */ - public function asymmetricSign($name, Google_Service_CloudKMS_AsymmetricSignRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('asymmetricSign', array($params), "Google_Service_CloudKMS_AsymmetricSignResponse"); - } - /** - * Create a new CryptoKeyVersion in a CryptoKey. - * - * The server will assign the next sequential id. If unset, state will be set to - * ENABLED. (cryptoKeyVersions.create) - * - * @param string $parent Required. The name of the CryptoKey associated with the - * CryptoKeyVersions. - * @param Google_Service_CloudKMS_CryptoKeyVersion $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudKMS_CryptoKeyVersion - */ - public function create($parent, Google_Service_CloudKMS_CryptoKeyVersion $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_CloudKMS_CryptoKeyVersion"); - } - /** - * Schedule a CryptoKeyVersion for destruction. - * - * Upon calling this method, CryptoKeyVersion.state will be set to - * DESTROY_SCHEDULED and destroy_time will be set to a time 24 hours in the - * future, at which point the state will be changed to DESTROYED, and the key - * material will be irrevocably destroyed. - * - * Before the destroy_time is reached, RestoreCryptoKeyVersion may be called to - * reverse the process. (cryptoKeyVersions.destroy) - * - * @param string $name Required. The resource name of the CryptoKeyVersion to - * destroy. - * @param Google_Service_CloudKMS_DestroyCryptoKeyVersionRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudKMS_CryptoKeyVersion - */ - public function destroy($name, Google_Service_CloudKMS_DestroyCryptoKeyVersionRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('destroy', array($params), "Google_Service_CloudKMS_CryptoKeyVersion"); - } - /** - * Returns metadata for a given CryptoKeyVersion. (cryptoKeyVersions.get) - * - * @param string $name Required. The name of the CryptoKeyVersion to get. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudKMS_CryptoKeyVersion - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudKMS_CryptoKeyVersion"); - } - /** - * Returns the public key for the given CryptoKeyVersion. The CryptoKey.purpose - * must be ASYMMETRIC_SIGN or ASYMMETRIC_DECRYPT. - * (cryptoKeyVersions.getPublicKey) - * - * @param string $name Required. The name of the CryptoKeyVersion public key to - * get. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudKMS_PublicKey - */ - public function getPublicKey($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('getPublicKey', array($params), "Google_Service_CloudKMS_PublicKey"); - } - /** - * Imports a new CryptoKeyVersion into an existing CryptoKey using the wrapped - * key material provided in the request. - * - * The version ID will be assigned the next sequential id within the CryptoKey. - * (cryptoKeyVersions.import) - * - * @param string $parent Required. The name of the CryptoKey to be imported - * into. - * @param Google_Service_CloudKMS_ImportCryptoKeyVersionRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudKMS_CryptoKeyVersion - */ - public function import($parent, Google_Service_CloudKMS_ImportCryptoKeyVersionRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('import', array($params), "Google_Service_CloudKMS_CryptoKeyVersion"); - } - /** - * Lists CryptoKeyVersions. - * (cryptoKeyVersions.listProjectsLocationsKeyRingsCryptoKeysCryptoKeyVersions) - * - * @param string $parent Required. The resource name of the CryptoKey to list, - * in the format `projects/locations/keyRings/cryptoKeys`. - * @param array $optParams Optional parameters. - * - * @opt_param string view The fields to include in the response. - * @opt_param string orderBy Optional. Specify how the results should be sorted. - * If not specified, the results will be sorted in the default order. For more - * information, see [Sorting and filtering list - * results](https://cloud.google.com/kms/docs/sorting-and-filtering). - * @opt_param string filter Optional. Only include resources that match the - * filter in the response. For more information, see [Sorting and filtering list - * results](https://cloud.google.com/kms/docs/sorting-and-filtering). - * @opt_param string pageToken Optional. Optional pagination token, returned - * earlier via ListCryptoKeyVersionsResponse.next_page_token. - * @opt_param int pageSize Optional. Optional limit on the number of - * CryptoKeyVersions to include in the response. Further CryptoKeyVersions can - * subsequently be obtained by including the - * ListCryptoKeyVersionsResponse.next_page_token in a subsequent request. If - * unspecified, the server will pick an appropriate default. - * @return Google_Service_CloudKMS_ListCryptoKeyVersionsResponse - */ - public function listProjectsLocationsKeyRingsCryptoKeysCryptoKeyVersions($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudKMS_ListCryptoKeyVersionsResponse"); - } - /** - * Update a CryptoKeyVersion's metadata. - * - * state may be changed between ENABLED and DISABLED using this method. See - * DestroyCryptoKeyVersion and RestoreCryptoKeyVersion to move between other - * states. (cryptoKeyVersions.patch) - * - * @param string $name Output only. The resource name for this CryptoKeyVersion - * in the format `projects/locations/keyRings/cryptoKeys/cryptoKeyVersions`. - * @param Google_Service_CloudKMS_CryptoKeyVersion $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Required. List of fields to be updated in this - * request. - * @return Google_Service_CloudKMS_CryptoKeyVersion - */ - public function patch($name, Google_Service_CloudKMS_CryptoKeyVersion $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_CloudKMS_CryptoKeyVersion"); - } - /** - * Restore a CryptoKeyVersion in the DESTROY_SCHEDULED state. - * - * Upon restoration of the CryptoKeyVersion, state will be set to DISABLED, and - * destroy_time will be cleared. (cryptoKeyVersions.restore) - * - * @param string $name Required. The resource name of the CryptoKeyVersion to - * restore. - * @param Google_Service_CloudKMS_RestoreCryptoKeyVersionRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudKMS_CryptoKeyVersion - */ - public function restore($name, Google_Service_CloudKMS_RestoreCryptoKeyVersionRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('restore', array($params), "Google_Service_CloudKMS_CryptoKeyVersion"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/Resource/ProjectsLocationsKeyRingsImportJobs.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/Resource/ProjectsLocationsKeyRingsImportJobs.php deleted file mode 100644 index 4f969686..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/Resource/ProjectsLocationsKeyRingsImportJobs.php +++ /dev/null @@ -1,157 +0,0 @@ - - * $cloudkmsService = new Google_Service_CloudKMS(...); - * $importJobs = $cloudkmsService->importJobs; - * - */ -class Google_Service_CloudKMS_Resource_ProjectsLocationsKeyRingsImportJobs extends Google_Service_Resource -{ - /** - * Create a new ImportJob within a KeyRing. - * - * ImportJob.import_method is required. (importJobs.create) - * - * @param string $parent Required. The name of the KeyRing associated with the - * ImportJobs. - * @param Google_Service_CloudKMS_ImportJob $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string importJobId Required. It must be unique within a KeyRing - * and match the regular expression `[a-zA-Z0-9_-]{1,63}` - * @return Google_Service_CloudKMS_ImportJob - */ - public function create($parent, Google_Service_CloudKMS_ImportJob $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_CloudKMS_ImportJob"); - } - /** - * Returns metadata for a given ImportJob. (importJobs.get) - * - * @param string $name Required. The name of the ImportJob to get. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudKMS_ImportJob - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudKMS_ImportJob"); - } - /** - * Gets the access control policy for a resource. Returns an empty policy if the - * resource exists and does not have a policy set. (importJobs.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. - * @return Google_Service_CloudKMS_Policy - */ - public function getIamPolicy($resource, $optParams = array()) - { - $params = array('resource' => $resource); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_CloudKMS_Policy"); - } - /** - * Lists ImportJobs. (importJobs.listProjectsLocationsKeyRingsImportJobs) - * - * @param string $parent Required. The resource name of the KeyRing to list, in - * the format `projects/locations/keyRings`. - * @param array $optParams Optional parameters. - * - * @opt_param string filter Optional. Only include resources that match the - * filter in the response. For more information, see [Sorting and filtering list - * results](https://cloud.google.com/kms/docs/sorting-and-filtering). - * @opt_param string pageToken Optional. Optional pagination token, returned - * earlier via ListImportJobsResponse.next_page_token. - * @opt_param string orderBy Optional. Specify how the results should be sorted. - * If not specified, the results will be sorted in the default order. For more - * information, see [Sorting and filtering list - * results](https://cloud.google.com/kms/docs/sorting-and-filtering). - * @opt_param int pageSize Optional. Optional limit on the number of ImportJobs - * to include in the response. Further ImportJobs can subsequently be obtained - * by including the ListImportJobsResponse.next_page_token in a subsequent - * request. If unspecified, the server will pick an appropriate default. - * @return Google_Service_CloudKMS_ListImportJobsResponse - */ - public function listProjectsLocationsKeyRingsImportJobs($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudKMS_ListImportJobsResponse"); - } - /** - * Sets the access control policy on the specified resource. Replaces any - * existing policy. - * - * Can return Public Errors: NOT_FOUND, INVALID_ARGUMENT and PERMISSION_DENIED - * (importJobs.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_CloudKMS_SetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudKMS_Policy - */ - public function setIamPolicy($resource, Google_Service_CloudKMS_SetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_CloudKMS_Policy"); - } - /** - * 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. (importJobs.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_CloudKMS_TestIamPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudKMS_TestIamPermissionsResponse - */ - public function testIamPermissions($resource, Google_Service_CloudKMS_TestIamPermissionsRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_CloudKMS_TestIamPermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/RestoreCryptoKeyVersionRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/RestoreCryptoKeyVersionRequest.php deleted file mode 100644 index 2d059070..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/RestoreCryptoKeyVersionRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -policy = $policy; - } - /** - * @return Google_Service_CloudKMS_Policy - */ - public function getPolicy() - { - return $this->policy; - } - public function setUpdateMask($updateMask) - { - $this->updateMask = $updateMask; - } - public function getUpdateMask() - { - return $this->updateMask; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/TestIamPermissionsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/TestIamPermissionsRequest.php deleted file mode 100644 index 08867b63..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/TestIamPermissionsRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/TestIamPermissionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/TestIamPermissionsResponse.php deleted file mode 100644 index 677cdefa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/TestIamPermissionsResponse.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/UpdateCryptoKeyPrimaryVersionRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/UpdateCryptoKeyPrimaryVersionRequest.php deleted file mode 100644 index 4c8677dd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/UpdateCryptoKeyPrimaryVersionRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -cryptoKeyVersionId = $cryptoKeyVersionId; - } - public function getCryptoKeyVersionId() - { - return $this->cryptoKeyVersionId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/WrappingPublicKey.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/WrappingPublicKey.php deleted file mode 100644 index 9be100bf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudKMS/WrappingPublicKey.php +++ /dev/null @@ -1,30 +0,0 @@ -pem = $pem; - } - public function getPem() - { - return $this->pem; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences.php deleted file mode 100644 index 8a59efd8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences.php +++ /dev/null @@ -1,172 +0,0 @@ - - * Cloud Life Sciences is a suite of services and tools for managing, - * processing, and transforming life sciences data.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_CloudLifeSciences extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - - public $projects_locations; - public $projects_locations_operations; - public $projects_locations_pipelines; - - /** - * Constructs the internal representation of the CloudLifeSciences service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://lifesciences.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v2beta'; - $this->serviceName = 'lifesciences'; - - $this->projects_locations = new Google_Service_CloudLifeSciences_Resource_ProjectsLocations( - $this, - $this->serviceName, - 'locations', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v2beta/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2beta/{+name}/locations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->projects_locations_operations = new Google_Service_CloudLifeSciences_Resource_ProjectsLocationsOperations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'cancel' => array( - 'path' => 'v2beta/{+name}:cancel', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v2beta/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2beta/{+name}/operations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->projects_locations_pipelines = new Google_Service_CloudLifeSciences_Resource_ProjectsLocationsPipelines( - $this, - $this->serviceName, - 'pipelines', - array( - 'methods' => array( - 'run' => array( - 'path' => 'v2beta/{+parent}/pipelines:run', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/Accelerator.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/Accelerator.php deleted file mode 100644 index 13abfe69..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/Accelerator.php +++ /dev/null @@ -1,39 +0,0 @@ -count = $count; - } - public function getCount() - { - return $this->count; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/Action.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/Action.php deleted file mode 100644 index 9b4cadd0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/Action.php +++ /dev/null @@ -1,198 +0,0 @@ -alwaysRun = $alwaysRun; - } - public function getAlwaysRun() - { - return $this->alwaysRun; - } - public function setCommands($commands) - { - $this->commands = $commands; - } - public function getCommands() - { - return $this->commands; - } - public function setContainerName($containerName) - { - $this->containerName = $containerName; - } - public function getContainerName() - { - return $this->containerName; - } - /** - * @param Google_Service_CloudLifeSciences_Secret - */ - public function setCredentials(Google_Service_CloudLifeSciences_Secret $credentials) - { - $this->credentials = $credentials; - } - /** - * @return Google_Service_CloudLifeSciences_Secret - */ - public function getCredentials() - { - return $this->credentials; - } - public function setDisableImagePrefetch($disableImagePrefetch) - { - $this->disableImagePrefetch = $disableImagePrefetch; - } - public function getDisableImagePrefetch() - { - return $this->disableImagePrefetch; - } - public function setDisableStandardErrorCapture($disableStandardErrorCapture) - { - $this->disableStandardErrorCapture = $disableStandardErrorCapture; - } - public function getDisableStandardErrorCapture() - { - return $this->disableStandardErrorCapture; - } - public function setEnableFuse($enableFuse) - { - $this->enableFuse = $enableFuse; - } - public function getEnableFuse() - { - return $this->enableFuse; - } - public function setEntrypoint($entrypoint) - { - $this->entrypoint = $entrypoint; - } - public function getEntrypoint() - { - return $this->entrypoint; - } - public function setEnvironment($environment) - { - $this->environment = $environment; - } - public function getEnvironment() - { - return $this->environment; - } - public function setIgnoreExitStatus($ignoreExitStatus) - { - $this->ignoreExitStatus = $ignoreExitStatus; - } - public function getIgnoreExitStatus() - { - return $this->ignoreExitStatus; - } - public function setImageUri($imageUri) - { - $this->imageUri = $imageUri; - } - public function getImageUri() - { - return $this->imageUri; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - /** - * @param Google_Service_CloudLifeSciences_Mount - */ - public function setMounts($mounts) - { - $this->mounts = $mounts; - } - /** - * @return Google_Service_CloudLifeSciences_Mount - */ - public function getMounts() - { - return $this->mounts; - } - public function setPidNamespace($pidNamespace) - { - $this->pidNamespace = $pidNamespace; - } - public function getPidNamespace() - { - return $this->pidNamespace; - } - public function setPortMappings($portMappings) - { - $this->portMappings = $portMappings; - } - public function getPortMappings() - { - return $this->portMappings; - } - public function setPublishExposedPorts($publishExposedPorts) - { - $this->publishExposedPorts = $publishExposedPorts; - } - public function getPublishExposedPorts() - { - return $this->publishExposedPorts; - } - public function setRunInBackground($runInBackground) - { - $this->runInBackground = $runInBackground; - } - public function getRunInBackground() - { - return $this->runInBackground; - } - public function setTimeout($timeout) - { - $this->timeout = $timeout; - } - public function getTimeout() - { - return $this->timeout; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/CancelOperationRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/CancelOperationRequest.php deleted file mode 100644 index 6b680dc0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/CancelOperationRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -actionId = $actionId; - } - public function getActionId() - { - return $this->actionId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/ContainerStartedEvent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/ContainerStartedEvent.php deleted file mode 100644 index 8675dc04..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/ContainerStartedEvent.php +++ /dev/null @@ -1,48 +0,0 @@ -actionId = $actionId; - } - public function getActionId() - { - return $this->actionId; - } - public function setIpAddress($ipAddress) - { - $this->ipAddress = $ipAddress; - } - public function getIpAddress() - { - return $this->ipAddress; - } - public function setPortMappings($portMappings) - { - $this->portMappings = $portMappings; - } - public function getPortMappings() - { - return $this->portMappings; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/ContainerStoppedEvent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/ContainerStoppedEvent.php deleted file mode 100644 index 3bd21efb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/ContainerStoppedEvent.php +++ /dev/null @@ -1,48 +0,0 @@ -actionId = $actionId; - } - public function getActionId() - { - return $this->actionId; - } - public function setExitStatus($exitStatus) - { - $this->exitStatus = $exitStatus; - } - public function getExitStatus() - { - return $this->exitStatus; - } - public function setStderr($stderr) - { - $this->stderr = $stderr; - } - public function getStderr() - { - return $this->stderr; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/DelayedEvent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/DelayedEvent.php deleted file mode 100644 index 3e3ab5e5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/DelayedEvent.php +++ /dev/null @@ -1,40 +0,0 @@ -cause = $cause; - } - public function getCause() - { - return $this->cause; - } - public function setMetrics($metrics) - { - $this->metrics = $metrics; - } - public function getMetrics() - { - return $this->metrics; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/Disk.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/Disk.php deleted file mode 100644 index a9ed8afc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/Disk.php +++ /dev/null @@ -1,57 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setSizeGb($sizeGb) - { - $this->sizeGb = $sizeGb; - } - public function getSizeGb() - { - return $this->sizeGb; - } - public function setSourceImage($sourceImage) - { - $this->sourceImage = $sourceImage; - } - public function getSourceImage() - { - return $this->sourceImage; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/Event.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/Event.php deleted file mode 100644 index 048a9e4f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/Event.php +++ /dev/null @@ -1,199 +0,0 @@ -containerKilled = $containerKilled; - } - /** - * @return Google_Service_CloudLifeSciences_ContainerKilledEvent - */ - public function getContainerKilled() - { - return $this->containerKilled; - } - /** - * @param Google_Service_CloudLifeSciences_ContainerStartedEvent - */ - public function setContainerStarted(Google_Service_CloudLifeSciences_ContainerStartedEvent $containerStarted) - { - $this->containerStarted = $containerStarted; - } - /** - * @return Google_Service_CloudLifeSciences_ContainerStartedEvent - */ - public function getContainerStarted() - { - return $this->containerStarted; - } - /** - * @param Google_Service_CloudLifeSciences_ContainerStoppedEvent - */ - public function setContainerStopped(Google_Service_CloudLifeSciences_ContainerStoppedEvent $containerStopped) - { - $this->containerStopped = $containerStopped; - } - /** - * @return Google_Service_CloudLifeSciences_ContainerStoppedEvent - */ - public function getContainerStopped() - { - return $this->containerStopped; - } - /** - * @param Google_Service_CloudLifeSciences_DelayedEvent - */ - public function setDelayed(Google_Service_CloudLifeSciences_DelayedEvent $delayed) - { - $this->delayed = $delayed; - } - /** - * @return Google_Service_CloudLifeSciences_DelayedEvent - */ - public function getDelayed() - { - return $this->delayed; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - /** - * @param Google_Service_CloudLifeSciences_FailedEvent - */ - public function setFailed(Google_Service_CloudLifeSciences_FailedEvent $failed) - { - $this->failed = $failed; - } - /** - * @return Google_Service_CloudLifeSciences_FailedEvent - */ - public function getFailed() - { - return $this->failed; - } - /** - * @param Google_Service_CloudLifeSciences_PullStartedEvent - */ - public function setPullStarted(Google_Service_CloudLifeSciences_PullStartedEvent $pullStarted) - { - $this->pullStarted = $pullStarted; - } - /** - * @return Google_Service_CloudLifeSciences_PullStartedEvent - */ - public function getPullStarted() - { - return $this->pullStarted; - } - /** - * @param Google_Service_CloudLifeSciences_PullStoppedEvent - */ - public function setPullStopped(Google_Service_CloudLifeSciences_PullStoppedEvent $pullStopped) - { - $this->pullStopped = $pullStopped; - } - /** - * @return Google_Service_CloudLifeSciences_PullStoppedEvent - */ - public function getPullStopped() - { - return $this->pullStopped; - } - public function setTimestamp($timestamp) - { - $this->timestamp = $timestamp; - } - public function getTimestamp() - { - return $this->timestamp; - } - /** - * @param Google_Service_CloudLifeSciences_UnexpectedExitStatusEvent - */ - public function setUnexpectedExitStatus(Google_Service_CloudLifeSciences_UnexpectedExitStatusEvent $unexpectedExitStatus) - { - $this->unexpectedExitStatus = $unexpectedExitStatus; - } - /** - * @return Google_Service_CloudLifeSciences_UnexpectedExitStatusEvent - */ - public function getUnexpectedExitStatus() - { - return $this->unexpectedExitStatus; - } - /** - * @param Google_Service_CloudLifeSciences_WorkerAssignedEvent - */ - public function setWorkerAssigned(Google_Service_CloudLifeSciences_WorkerAssignedEvent $workerAssigned) - { - $this->workerAssigned = $workerAssigned; - } - /** - * @return Google_Service_CloudLifeSciences_WorkerAssignedEvent - */ - public function getWorkerAssigned() - { - return $this->workerAssigned; - } - /** - * @param Google_Service_CloudLifeSciences_WorkerReleasedEvent - */ - public function setWorkerReleased(Google_Service_CloudLifeSciences_WorkerReleasedEvent $workerReleased) - { - $this->workerReleased = $workerReleased; - } - /** - * @return Google_Service_CloudLifeSciences_WorkerReleasedEvent - */ - public function getWorkerReleased() - { - return $this->workerReleased; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/FailedEvent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/FailedEvent.php deleted file mode 100644 index 2be459ee..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/FailedEvent.php +++ /dev/null @@ -1,39 +0,0 @@ -cause = $cause; - } - public function getCause() - { - return $this->cause; - } - public function setCode($code) - { - $this->code = $code; - } - public function getCode() - { - return $this->code; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/LifesciencesEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/LifesciencesEmpty.php deleted file mode 100644 index 1904fdf1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/LifesciencesEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -locations = $locations; - } - /** - * @return Google_Service_CloudLifeSciences_Location - */ - public function getLocations() - { - return $this->locations; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/ListOperationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/ListOperationsResponse.php deleted file mode 100644 index 9c5805c4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/ListOperationsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_CloudLifeSciences_Operation - */ - public function setOperations($operations) - { - $this->operations = $operations; - } - /** - * @return Google_Service_CloudLifeSciences_Operation - */ - public function getOperations() - { - return $this->operations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/Location.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/Location.php deleted file mode 100644 index f47fa1f3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/Location.php +++ /dev/null @@ -1,66 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setLocationId($locationId) - { - $this->locationId = $locationId; - } - public function getLocationId() - { - return $this->locationId; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/Metadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/Metadata.php deleted file mode 100644 index d19eeb82..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/Metadata.php +++ /dev/null @@ -1,90 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - /** - * @param Google_Service_CloudLifeSciences_Event - */ - public function setEvents($events) - { - $this->events = $events; - } - /** - * @return Google_Service_CloudLifeSciences_Event - */ - public function getEvents() - { - return $this->events; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - /** - * @param Google_Service_CloudLifeSciences_Pipeline - */ - public function setPipeline(Google_Service_CloudLifeSciences_Pipeline $pipeline) - { - $this->pipeline = $pipeline; - } - /** - * @return Google_Service_CloudLifeSciences_Pipeline - */ - public function getPipeline() - { - return $this->pipeline; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/Mount.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/Mount.php deleted file mode 100644 index 7524373f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/Mount.php +++ /dev/null @@ -1,48 +0,0 @@ -disk = $disk; - } - public function getDisk() - { - return $this->disk; - } - public function setPath($path) - { - $this->path = $path; - } - public function getPath() - { - return $this->path; - } - public function setReadOnly($readOnly) - { - $this->readOnly = $readOnly; - } - public function getReadOnly() - { - return $this->readOnly; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/Network.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/Network.php deleted file mode 100644 index f9b72f76..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/Network.php +++ /dev/null @@ -1,48 +0,0 @@ -network = $network; - } - public function getNetwork() - { - return $this->network; - } - public function setSubnetwork($subnetwork) - { - $this->subnetwork = $subnetwork; - } - public function getSubnetwork() - { - return $this->subnetwork; - } - public function setUsePrivateAddress($usePrivateAddress) - { - $this->usePrivateAddress = $usePrivateAddress; - } - public function getUsePrivateAddress() - { - return $this->usePrivateAddress; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/Operation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/Operation.php deleted file mode 100644 index 2047b8b8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/Operation.php +++ /dev/null @@ -1,73 +0,0 @@ -done = $done; - } - public function getDone() - { - return $this->done; - } - /** - * @param Google_Service_CloudLifeSciences_Status - */ - public function setError(Google_Service_CloudLifeSciences_Status $error) - { - $this->error = $error; - } - /** - * @return Google_Service_CloudLifeSciences_Status - */ - public function getError() - { - return $this->error; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/Pipeline.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/Pipeline.php deleted file mode 100644 index d88b0b8b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/Pipeline.php +++ /dev/null @@ -1,72 +0,0 @@ -actions = $actions; - } - /** - * @return Google_Service_CloudLifeSciences_Action - */ - public function getActions() - { - return $this->actions; - } - public function setEnvironment($environment) - { - $this->environment = $environment; - } - public function getEnvironment() - { - return $this->environment; - } - /** - * @param Google_Service_CloudLifeSciences_Resources - */ - public function setResources(Google_Service_CloudLifeSciences_Resources $resources) - { - $this->resources = $resources; - } - /** - * @return Google_Service_CloudLifeSciences_Resources - */ - public function getResources() - { - return $this->resources; - } - public function setTimeout($timeout) - { - $this->timeout = $timeout; - } - public function getTimeout() - { - return $this->timeout; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/PullStartedEvent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/PullStartedEvent.php deleted file mode 100644 index c28ede29..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/PullStartedEvent.php +++ /dev/null @@ -1,30 +0,0 @@ -imageUri = $imageUri; - } - public function getImageUri() - { - return $this->imageUri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/PullStoppedEvent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/PullStoppedEvent.php deleted file mode 100644 index c809ac48..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/PullStoppedEvent.php +++ /dev/null @@ -1,30 +0,0 @@ -imageUri = $imageUri; - } - public function getImageUri() - { - return $this->imageUri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/Resource/Projects.php deleted file mode 100644 index a3ba02fa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/Resource/Projects.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $lifesciencesService = new Google_Service_CloudLifeSciences(...); - * $projects = $lifesciencesService->projects; - * - */ -class Google_Service_CloudLifeSciences_Resource_Projects extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/Resource/ProjectsLocations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/Resource/ProjectsLocations.php deleted file mode 100644 index 5a69cea7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/Resource/ProjectsLocations.php +++ /dev/null @@ -1,60 +0,0 @@ - - * $lifesciencesService = new Google_Service_CloudLifeSciences(...); - * $locations = $lifesciencesService->locations; - * - */ -class Google_Service_CloudLifeSciences_Resource_ProjectsLocations extends Google_Service_Resource -{ - /** - * Gets information about a location. (locations.get) - * - * @param string $name Resource name for the location. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudLifeSciences_Location - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudLifeSciences_Location"); - } - /** - * Lists information about the supported locations for this service. - * (locations.listProjectsLocations) - * - * @param string $name The resource that owns the locations collection, if - * applicable. - * @param array $optParams Optional parameters. - * - * @opt_param string filter The standard list filter. - * @opt_param string pageToken The standard list page token. - * @opt_param int pageSize The standard list page size. - * @return Google_Service_CloudLifeSciences_ListLocationsResponse - */ - public function listProjectsLocations($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudLifeSciences_ListLocationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/Resource/ProjectsLocationsOperations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/Resource/ProjectsLocationsOperations.php deleted file mode 100644 index 5e725f9f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/Resource/ProjectsLocationsOperations.php +++ /dev/null @@ -1,98 +0,0 @@ - - * $lifesciencesService = new Google_Service_CloudLifeSciences(...); - * $operations = $lifesciencesService->operations; - * - */ -class Google_Service_CloudLifeSciences_Resource_ProjectsLocationsOperations extends Google_Service_Resource -{ - /** - * Starts asynchronous cancellation on a long-running operation. The server - * makes a best effort to cancel the operation, but success is not guaranteed. - * Clients may use Operations.GetOperation or Operations.ListOperations to check - * whether the cancellation succeeded or the operation completed despite - * cancellation. Authorization requires the following [Google - * IAM](https://cloud.google.com/iam) permission - * - * * `lifesciences.operations.cancel` (operations.cancel) - * - * @param string $name The name of the operation resource to be cancelled. - * @param Google_Service_CloudLifeSciences_CancelOperationRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudLifeSciences_LifesciencesEmpty - */ - public function cancel($name, Google_Service_CloudLifeSciences_CancelOperationRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('cancel', array($params), "Google_Service_CloudLifeSciences_LifesciencesEmpty"); - } - /** - * Gets the latest state of a long-running operation. Clients can use this - * method to poll the operation result at intervals as recommended by the API - * service. Authorization requires the following [Google - * IAM](https://cloud.google.com/iam) permission - * - * * `lifesciences.operations.get` (operations.get) - * - * @param string $name The name of the operation resource. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudLifeSciences_Operation - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudLifeSciences_Operation"); - } - /** - * Lists operations that match the specified filter in the request. - * Authorization requires the following [Google - * IAM](https://cloud.google.com/iam) permission - * - * * `lifesciences.operations.list` (operations.listProjectsLocationsOperations) - * - * @param string $name The name of the operation's parent resource. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A string for filtering Operations. The following - * filter fields are supported - * - * * createTime The time this job was created * events The set of event (names) - * that have occurred while running the pipeline. The operator can be used - * to determine if a particular event has occurred. * error If the pipeline is - * running, this value is NULL. Once the pipeline finishes, the value is the - * standard Google error code. * labels.key or labels."key with space" where key - * is a label key. * done If the pipeline is running, this value is false. Once - * the pipeline finishes, the value is true. - * @opt_param string pageToken The standard list page token. - * @opt_param int pageSize The maximum number of results to return. The maximum - * value is 256. - * @return Google_Service_CloudLifeSciences_ListOperationsResponse - */ - public function listProjectsLocationsOperations($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudLifeSciences_ListOperationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/Resource/ProjectsLocationsPipelines.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/Resource/ProjectsLocationsPipelines.php deleted file mode 100644 index d51041db..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/Resource/ProjectsLocationsPipelines.php +++ /dev/null @@ -1,56 +0,0 @@ - - * $lifesciencesService = new Google_Service_CloudLifeSciences(...); - * $pipelines = $lifesciencesService->pipelines; - * - */ -class Google_Service_CloudLifeSciences_Resource_ProjectsLocationsPipelines extends Google_Service_Resource -{ - /** - * Runs a pipeline. The returned Operation's metadata field will contain a - * google.cloud.lifesciences.v2beta.Metadata object describing the status of the - * pipeline execution. The response field will contain a - * google.cloud.lifesciences.v2beta.RunPipelineResponse object if the pipeline - * completes successfully. - * - * **Note:** Before you can use this method, the *Life Sciences Service Agent* - * must have access to your project. This is done automatically when the Cloud - * Life Sciences API is first enabled, but if you delete this permission you - * must disable and re-enable the API to grant the Life Sciences Service Agent - * the required permissions. Authorization requires the following [Google - * IAM](https://cloud.google.com/iam/) permission: - * - * * `lifesciences.workflows.run` (pipelines.run) - * - * @param string $parent The project and location that this request should be - * executed against. - * @param Google_Service_CloudLifeSciences_RunPipelineRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudLifeSciences_Operation - */ - public function run($parent, Google_Service_CloudLifeSciences_RunPipelineRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('run', array($params), "Google_Service_CloudLifeSciences_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/Resources.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/Resources.php deleted file mode 100644 index e223d1e6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/Resources.php +++ /dev/null @@ -1,56 +0,0 @@ -regions = $regions; - } - public function getRegions() - { - return $this->regions; - } - /** - * @param Google_Service_CloudLifeSciences_VirtualMachine - */ - public function setVirtualMachine(Google_Service_CloudLifeSciences_VirtualMachine $virtualMachine) - { - $this->virtualMachine = $virtualMachine; - } - /** - * @return Google_Service_CloudLifeSciences_VirtualMachine - */ - public function getVirtualMachine() - { - return $this->virtualMachine; - } - public function setZones($zones) - { - $this->zones = $zones; - } - public function getZones() - { - return $this->zones; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/RunPipelineRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/RunPipelineRequest.php deleted file mode 100644 index 3937e015..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/RunPipelineRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - /** - * @param Google_Service_CloudLifeSciences_Pipeline - */ - public function setPipeline(Google_Service_CloudLifeSciences_Pipeline $pipeline) - { - $this->pipeline = $pipeline; - } - /** - * @return Google_Service_CloudLifeSciences_Pipeline - */ - public function getPipeline() - { - return $this->pipeline; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/RunPipelineResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/RunPipelineResponse.php deleted file mode 100644 index ddb12189..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/RunPipelineResponse.php +++ /dev/null @@ -1,20 +0,0 @@ -cipherText = $cipherText; - } - public function getCipherText() - { - return $this->cipherText; - } - public function setKeyName($keyName) - { - $this->keyName = $keyName; - } - public function getKeyName() - { - return $this->keyName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/ServiceAccount.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/ServiceAccount.php deleted file mode 100644 index 2fca1bc2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/ServiceAccount.php +++ /dev/null @@ -1,40 +0,0 @@ -email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setScopes($scopes) - { - $this->scopes = $scopes; - } - public function getScopes() - { - return $this->scopes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/Status.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/Status.php deleted file mode 100644 index a68b6ea7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/Status.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/UnexpectedExitStatusEvent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/UnexpectedExitStatusEvent.php deleted file mode 100644 index 3673d5de..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/UnexpectedExitStatusEvent.php +++ /dev/null @@ -1,39 +0,0 @@ -actionId = $actionId; - } - public function getActionId() - { - return $this->actionId; - } - public function setExitStatus($exitStatus) - { - $this->exitStatus = $exitStatus; - } - public function getExitStatus() - { - return $this->exitStatus; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/VirtualMachine.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/VirtualMachine.php deleted file mode 100644 index 673c9810..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/VirtualMachine.php +++ /dev/null @@ -1,158 +0,0 @@ -accelerators = $accelerators; - } - /** - * @return Google_Service_CloudLifeSciences_Accelerator - */ - public function getAccelerators() - { - return $this->accelerators; - } - public function setBootDiskSizeGb($bootDiskSizeGb) - { - $this->bootDiskSizeGb = $bootDiskSizeGb; - } - public function getBootDiskSizeGb() - { - return $this->bootDiskSizeGb; - } - public function setBootImage($bootImage) - { - $this->bootImage = $bootImage; - } - public function getBootImage() - { - return $this->bootImage; - } - public function setCpuPlatform($cpuPlatform) - { - $this->cpuPlatform = $cpuPlatform; - } - public function getCpuPlatform() - { - return $this->cpuPlatform; - } - /** - * @param Google_Service_CloudLifeSciences_Disk - */ - public function setDisks($disks) - { - $this->disks = $disks; - } - /** - * @return Google_Service_CloudLifeSciences_Disk - */ - public function getDisks() - { - return $this->disks; - } - public function setEnableStackdriverMonitoring($enableStackdriverMonitoring) - { - $this->enableStackdriverMonitoring = $enableStackdriverMonitoring; - } - public function getEnableStackdriverMonitoring() - { - return $this->enableStackdriverMonitoring; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setMachineType($machineType) - { - $this->machineType = $machineType; - } - public function getMachineType() - { - return $this->machineType; - } - /** - * @param Google_Service_CloudLifeSciences_Network - */ - public function setNetwork(Google_Service_CloudLifeSciences_Network $network) - { - $this->network = $network; - } - /** - * @return Google_Service_CloudLifeSciences_Network - */ - public function getNetwork() - { - return $this->network; - } - public function setNvidiaDriverVersion($nvidiaDriverVersion) - { - $this->nvidiaDriverVersion = $nvidiaDriverVersion; - } - public function getNvidiaDriverVersion() - { - return $this->nvidiaDriverVersion; - } - public function setPreemptible($preemptible) - { - $this->preemptible = $preemptible; - } - public function getPreemptible() - { - return $this->preemptible; - } - /** - * @param Google_Service_CloudLifeSciences_ServiceAccount - */ - public function setServiceAccount(Google_Service_CloudLifeSciences_ServiceAccount $serviceAccount) - { - $this->serviceAccount = $serviceAccount; - } - /** - * @return Google_Service_CloudLifeSciences_ServiceAccount - */ - public function getServiceAccount() - { - return $this->serviceAccount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/WorkerAssignedEvent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/WorkerAssignedEvent.php deleted file mode 100644 index b0417862..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/WorkerAssignedEvent.php +++ /dev/null @@ -1,48 +0,0 @@ -instance = $instance; - } - public function getInstance() - { - return $this->instance; - } - public function setMachineType($machineType) - { - $this->machineType = $machineType; - } - public function getMachineType() - { - return $this->machineType; - } - public function setZone($zone) - { - $this->zone = $zone; - } - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/WorkerReleasedEvent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/WorkerReleasedEvent.php deleted file mode 100644 index 77640773..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudLifeSciences/WorkerReleasedEvent.php +++ /dev/null @@ -1,39 +0,0 @@ -instance = $instance; - } - public function getInstance() - { - return $this->instance; - } - public function setZone($zone) - { - $this->zone = $zone; - } - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning.php deleted file mode 100644 index fa8964d4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning.php +++ /dev/null @@ -1,337 +0,0 @@ - - * An API to enable creating and using machine learning models.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_CloudMachineLearning extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - - public $projects; - public $projects_jobs; - public $projects_models; - public $projects_models_versions; - public $projects_operations; - - /** - * Constructs the internal representation of the CloudMachineLearning service. - * - * @param Google_Client $client - */ - public function __construct(Google_Client $client) - { - parent::__construct($client); - $this->rootUrl = 'https://ml.googleapis.com/'; - $this->servicePath = ''; - $this->version = 'v1beta1'; - $this->serviceName = 'ml'; - - $this->projects = new Google_Service_CloudMachineLearning_Resource_Projects( - $this, - $this->serviceName, - 'projects', - array( - 'methods' => array( - 'getConfig' => array( - 'path' => 'v1beta1/{+name}:getConfig', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'predict' => array( - 'path' => 'v1beta1/{+name}:predict', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_jobs = new Google_Service_CloudMachineLearning_Resource_ProjectsJobs( - $this, - $this->serviceName, - 'jobs', - array( - 'methods' => array( - 'cancel' => array( - 'path' => 'v1beta1/{+name}:cancel', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'create' => array( - 'path' => 'v1beta1/{+parent}/jobs', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1beta1/{+parent}/jobs', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_models = new Google_Service_CloudMachineLearning_Resource_ProjectsModels( - $this, - $this->serviceName, - 'models', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1beta1/{+parent}/models', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1beta1/{+parent}/models', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_models_versions = new Google_Service_CloudMachineLearning_Resource_ProjectsModelsVersions( - $this, - $this->serviceName, - 'versions', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1beta1/{+parent}/versions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1beta1/{+parent}/versions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setDefault' => array( - 'path' => 'v1beta1/{+name}:setDefault', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_operations = new Google_Service_CloudMachineLearning_Resource_ProjectsOperations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'cancel' => array( - 'path' => 'v1beta1/{+name}:cancel', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1beta1/{+name}/operations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleApiHttpBody.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleApiHttpBody.php deleted file mode 100644 index 7fc2c71e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleApiHttpBody.php +++ /dev/null @@ -1,39 +0,0 @@ -contentType = $contentType; - } - public function getContentType() - { - return $this->contentType; - } - public function setData($data) - { - $this->data = $data; - } - public function getData() - { - return $this->data; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleCloudMlV1beta1CancelJobRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleCloudMlV1beta1CancelJobRequest.php deleted file mode 100644 index 0298b82b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleCloudMlV1beta1CancelJobRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -serviceAccount = $serviceAccount; - } - public function getServiceAccount() - { - return $this->serviceAccount; - } - public function setServiceAccountProject($serviceAccountProject) - { - $this->serviceAccountProject = $serviceAccountProject; - } - public function getServiceAccountProject() - { - return $this->serviceAccountProject; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleCloudMlV1beta1HyperparameterOutput.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleCloudMlV1beta1HyperparameterOutput.php deleted file mode 100644 index 1a910c13..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleCloudMlV1beta1HyperparameterOutput.php +++ /dev/null @@ -1,60 +0,0 @@ -allMetrics = $allMetrics; - } - public function getAllMetrics() - { - return $this->allMetrics; - } - public function setFinalMetric(Google_Service_CloudMachineLearning_GoogleCloudMlV1beta1HyperparameterOutputHyperparameterMetric $finalMetric) - { - $this->finalMetric = $finalMetric; - } - public function getFinalMetric() - { - return $this->finalMetric; - } - public function setHyperparameters($hyperparameters) - { - $this->hyperparameters = $hyperparameters; - } - public function getHyperparameters() - { - return $this->hyperparameters; - } - public function setTrialId($trialId) - { - $this->trialId = $trialId; - } - public function getTrialId() - { - return $this->trialId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleCloudMlV1beta1HyperparameterOutputHyperparameterMetric.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleCloudMlV1beta1HyperparameterOutputHyperparameterMetric.php deleted file mode 100644 index 499faf5f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleCloudMlV1beta1HyperparameterOutputHyperparameterMetric.php +++ /dev/null @@ -1,39 +0,0 @@ -objectiveValue = $objectiveValue; - } - public function getObjectiveValue() - { - return $this->objectiveValue; - } - public function setTrainingStep($trainingStep) - { - $this->trainingStep = $trainingStep; - } - public function getTrainingStep() - { - return $this->trainingStep; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleCloudMlV1beta1HyperparameterSpec.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleCloudMlV1beta1HyperparameterSpec.php deleted file mode 100644 index a542e15d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleCloudMlV1beta1HyperparameterSpec.php +++ /dev/null @@ -1,59 +0,0 @@ -goal = $goal; - } - public function getGoal() - { - return $this->goal; - } - public function setMaxParallelTrials($maxParallelTrials) - { - $this->maxParallelTrials = $maxParallelTrials; - } - public function getMaxParallelTrials() - { - return $this->maxParallelTrials; - } - public function setMaxTrials($maxTrials) - { - $this->maxTrials = $maxTrials; - } - public function getMaxTrials() - { - return $this->maxTrials; - } - public function setParams($params) - { - $this->params = $params; - } - public function getParams() - { - return $this->params; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleCloudMlV1beta1Job.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleCloudMlV1beta1Job.php deleted file mode 100644 index 27aa1756..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleCloudMlV1beta1Job.php +++ /dev/null @@ -1,115 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setErrorMessage($errorMessage) - { - $this->errorMessage = $errorMessage; - } - public function getErrorMessage() - { - return $this->errorMessage; - } - public function setJobId($jobId) - { - $this->jobId = $jobId; - } - public function getJobId() - { - return $this->jobId; - } - public function setPredictionInput(Google_Service_CloudMachineLearning_GoogleCloudMlV1beta1PredictionInput $predictionInput) - { - $this->predictionInput = $predictionInput; - } - public function getPredictionInput() - { - return $this->predictionInput; - } - public function setPredictionOutput(Google_Service_CloudMachineLearning_GoogleCloudMlV1beta1PredictionOutput $predictionOutput) - { - $this->predictionOutput = $predictionOutput; - } - public function getPredictionOutput() - { - return $this->predictionOutput; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setTrainingInput(Google_Service_CloudMachineLearning_GoogleCloudMlV1beta1TrainingInput $trainingInput) - { - $this->trainingInput = $trainingInput; - } - public function getTrainingInput() - { - return $this->trainingInput; - } - public function setTrainingOutput(Google_Service_CloudMachineLearning_GoogleCloudMlV1beta1TrainingOutput $trainingOutput) - { - $this->trainingOutput = $trainingOutput; - } - public function getTrainingOutput() - { - return $this->trainingOutput; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleCloudMlV1beta1ListJobsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleCloudMlV1beta1ListJobsResponse.php deleted file mode 100644 index 4cb13f7b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleCloudMlV1beta1ListJobsResponse.php +++ /dev/null @@ -1,41 +0,0 @@ -jobs = $jobs; - } - public function getJobs() - { - return $this->jobs; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleCloudMlV1beta1ListModelsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleCloudMlV1beta1ListModelsResponse.php deleted file mode 100644 index 08a91899..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleCloudMlV1beta1ListModelsResponse.php +++ /dev/null @@ -1,41 +0,0 @@ -models = $models; - } - public function getModels() - { - return $this->models; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleCloudMlV1beta1ListVersionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleCloudMlV1beta1ListVersionsResponse.php deleted file mode 100644 index fda36790..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleCloudMlV1beta1ListVersionsResponse.php +++ /dev/null @@ -1,41 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setVersions($versions) - { - $this->versions = $versions; - } - public function getVersions() - { - return $this->versions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleCloudMlV1beta1Model.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleCloudMlV1beta1Model.php deleted file mode 100644 index a8793517..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleCloudMlV1beta1Model.php +++ /dev/null @@ -1,49 +0,0 @@ -defaultVersion = $defaultVersion; - } - public function getDefaultVersion() - { - return $this->defaultVersion; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleCloudMlV1beta1OperationMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleCloudMlV1beta1OperationMetadata.php deleted file mode 100644 index 30ce212a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleCloudMlV1beta1OperationMetadata.php +++ /dev/null @@ -1,85 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setIsCancellationRequested($isCancellationRequested) - { - $this->isCancellationRequested = $isCancellationRequested; - } - public function getIsCancellationRequested() - { - return $this->isCancellationRequested; - } - public function setModelName($modelName) - { - $this->modelName = $modelName; - } - public function getModelName() - { - return $this->modelName; - } - public function setOperationType($operationType) - { - $this->operationType = $operationType; - } - public function getOperationType() - { - return $this->operationType; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } - public function setVersion(Google_Service_CloudMachineLearning_GoogleCloudMlV1beta1Version $version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleCloudMlV1beta1ParameterSpec.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleCloudMlV1beta1ParameterSpec.php deleted file mode 100644 index bb31118b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleCloudMlV1beta1ParameterSpec.php +++ /dev/null @@ -1,85 +0,0 @@ -categoricalValues = $categoricalValues; - } - public function getCategoricalValues() - { - return $this->categoricalValues; - } - public function setDiscreteValues($discreteValues) - { - $this->discreteValues = $discreteValues; - } - public function getDiscreteValues() - { - return $this->discreteValues; - } - public function setMaxValue($maxValue) - { - $this->maxValue = $maxValue; - } - public function getMaxValue() - { - return $this->maxValue; - } - public function setMinValue($minValue) - { - $this->minValue = $minValue; - } - public function getMinValue() - { - return $this->minValue; - } - public function setParameterName($parameterName) - { - $this->parameterName = $parameterName; - } - public function getParameterName() - { - return $this->parameterName; - } - public function setScaleType($scaleType) - { - $this->scaleType = $scaleType; - } - public function getScaleType() - { - return $this->scaleType; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleCloudMlV1beta1PredictRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleCloudMlV1beta1PredictRequest.php deleted file mode 100644 index 930a8670..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleCloudMlV1beta1PredictRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -httpBody = $httpBody; - } - public function getHttpBody() - { - return $this->httpBody; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleCloudMlV1beta1PredictionInput.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleCloudMlV1beta1PredictionInput.php deleted file mode 100644 index 5590a954..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleCloudMlV1beta1PredictionInput.php +++ /dev/null @@ -1,85 +0,0 @@ -dataFormat = $dataFormat; - } - public function getDataFormat() - { - return $this->dataFormat; - } - public function setInputPaths($inputPaths) - { - $this->inputPaths = $inputPaths; - } - public function getInputPaths() - { - return $this->inputPaths; - } - public function setMaxWorkerCount($maxWorkerCount) - { - $this->maxWorkerCount = $maxWorkerCount; - } - public function getMaxWorkerCount() - { - return $this->maxWorkerCount; - } - public function setModelName($modelName) - { - $this->modelName = $modelName; - } - public function getModelName() - { - return $this->modelName; - } - public function setOutputPath($outputPath) - { - $this->outputPath = $outputPath; - } - public function getOutputPath() - { - return $this->outputPath; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - public function setVersionName($versionName) - { - $this->versionName = $versionName; - } - public function getVersionName() - { - return $this->versionName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleCloudMlV1beta1PredictionOutput.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleCloudMlV1beta1PredictionOutput.php deleted file mode 100644 index 86456c57..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleCloudMlV1beta1PredictionOutput.php +++ /dev/null @@ -1,48 +0,0 @@ -errorCount = $errorCount; - } - public function getErrorCount() - { - return $this->errorCount; - } - public function setOutputPath($outputPath) - { - $this->outputPath = $outputPath; - } - public function getOutputPath() - { - return $this->outputPath; - } - public function setPredictionCount($predictionCount) - { - $this->predictionCount = $predictionCount; - } - public function getPredictionCount() - { - return $this->predictionCount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleCloudMlV1beta1SetDefaultVersionRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleCloudMlV1beta1SetDefaultVersionRequest.php deleted file mode 100644 index 16a19fe6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleCloudMlV1beta1SetDefaultVersionRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -args = $args; - } - public function getArgs() - { - return $this->args; - } - public function setHyperparameters(Google_Service_CloudMachineLearning_GoogleCloudMlV1beta1HyperparameterSpec $hyperparameters) - { - $this->hyperparameters = $hyperparameters; - } - public function getHyperparameters() - { - return $this->hyperparameters; - } - public function setMasterType($masterType) - { - $this->masterType = $masterType; - } - public function getMasterType() - { - return $this->masterType; - } - public function setPackageUris($packageUris) - { - $this->packageUris = $packageUris; - } - public function getPackageUris() - { - return $this->packageUris; - } - public function setParameterServerCount($parameterServerCount) - { - $this->parameterServerCount = $parameterServerCount; - } - public function getParameterServerCount() - { - return $this->parameterServerCount; - } - public function setParameterServerType($parameterServerType) - { - $this->parameterServerType = $parameterServerType; - } - public function getParameterServerType() - { - return $this->parameterServerType; - } - public function setPythonModule($pythonModule) - { - $this->pythonModule = $pythonModule; - } - public function getPythonModule() - { - return $this->pythonModule; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - public function setScaleTier($scaleTier) - { - $this->scaleTier = $scaleTier; - } - public function getScaleTier() - { - return $this->scaleTier; - } - public function setWorkerCount($workerCount) - { - $this->workerCount = $workerCount; - } - public function getWorkerCount() - { - return $this->workerCount; - } - public function setWorkerType($workerType) - { - $this->workerType = $workerType; - } - public function getWorkerType() - { - return $this->workerType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleCloudMlV1beta1TrainingOutput.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleCloudMlV1beta1TrainingOutput.php deleted file mode 100644 index a2dc5f14..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleCloudMlV1beta1TrainingOutput.php +++ /dev/null @@ -1,50 +0,0 @@ -completedTrialCount = $completedTrialCount; - } - public function getCompletedTrialCount() - { - return $this->completedTrialCount; - } - public function setConsumedMLUnits($consumedMLUnits) - { - $this->consumedMLUnits = $consumedMLUnits; - } - public function getConsumedMLUnits() - { - return $this->consumedMLUnits; - } - public function setTrials($trials) - { - $this->trials = $trials; - } - public function getTrials() - { - return $this->trials; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleCloudMlV1beta1Version.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleCloudMlV1beta1Version.php deleted file mode 100644 index b9f184b3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleCloudMlV1beta1Version.php +++ /dev/null @@ -1,75 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setDeploymentUri($deploymentUri) - { - $this->deploymentUri = $deploymentUri; - } - public function getDeploymentUri() - { - return $this->deploymentUri; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setIsDefault($isDefault) - { - $this->isDefault = $isDefault; - } - public function getIsDefault() - { - return $this->isDefault; - } - public function setLastUseTime($lastUseTime) - { - $this->lastUseTime = $lastUseTime; - } - public function getLastUseTime() - { - return $this->lastUseTime; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleLongrunningListOperationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleLongrunningListOperationsResponse.php deleted file mode 100644 index 69d61731..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleLongrunningListOperationsResponse.php +++ /dev/null @@ -1,41 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setOperations($operations) - { - $this->operations = $operations; - } - public function getOperations() - { - return $this->operations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleLongrunningOperation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleLongrunningOperation.php deleted file mode 100644 index 5d268d05..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleLongrunningOperation.php +++ /dev/null @@ -1,67 +0,0 @@ -done = $done; - } - public function getDone() - { - return $this->done; - } - public function setError(Google_Service_CloudMachineLearning_GoogleRpcStatus $error) - { - $this->error = $error; - } - public function getError() - { - return $this->error; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleProtobufEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleProtobufEmpty.php deleted file mode 100644 index 5f9c261c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/GoogleProtobufEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/Resource/Projects.php deleted file mode 100644 index 54ef8589..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/Resource/Projects.php +++ /dev/null @@ -1,103 +0,0 @@ - - * $mlService = new Google_Service_CloudMachineLearning(...); - * $projects = $mlService->projects; - * - */ -class Google_Service_CloudMachineLearning_Resource_Projects extends Google_Service_Resource -{ - /** - * Get the service account information associated with your project. You need - * this information in order to grant the service account persmissions for the - * Google Cloud Storage location where you put your model training code for - * training the model with Google Cloud Machine Learning. (projects.getConfig) - * - * @param string $name Required. The project name. - * - * Authorization: requires `Viewer` role on the specified project. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudMachineLearning_GoogleCloudMlV1beta1GetConfigResponse - */ - public function getConfig($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('getConfig', array($params), "Google_Service_CloudMachineLearning_GoogleCloudMlV1beta1GetConfigResponse"); - } - /** - * Performs prediction on the data in the request. - * - * Responses are very similar to requests. There are two top-level fields, each - * of which are JSON lists: - * - * predictions The list of predictions, one per instance in the request. - * error An error message returned instead of a prediction list if any - * instance produced an error. - * - * If the call is successful, the response body will contain one prediction - * entry per instance in the request body. If prediction fails for any instance, - * the response body will contain no predictions and will contian a single error - * entry instead. - * - * Even though there is one prediction per instance, the format of a prediction - * is not directly related to the format of an instance. Predictions take - * whatever format is specified in the outputs collection defined in the model. - * The collection of predictions is returned in a JSON list. Each member of the - * list can be a simple value, a list, or a JSON object of any complexity. If - * your model has more than one output tensor, each prediction will be a JSON - * object containing a name/value pair for each output. The names identify the - * output aliases in the graph. - * - * The following examples show some possible responses: - * - * A simple set of predictions for three input instances, where each prediction - * is an integer value: - * - * {"predictions": [5, 4, 3]} - * - * A more complex set of predictions, each containing two named values that - * correspond to output tensors, named **label** and **scores** respectively. - * The value of **label** is the predicted category ("car" or "beach") and - * **scores** contains a list of probabilities for that instance across the - * possible categories. - * - * {"predictions": [{"label": "beach", "scores": [0.1, 0.9]}, - * {"label": "car", "scores": [0.75, 0.25]}]} - * - * A response when there is an error processing an input instance: - * - * {"error": "Divide by zero"} (projects.predict) - * - * @param string $name Required. The resource name of a model or a version. - * - * Authorization: requires `Viewer` role on the parent project. - * @param Google_Service_CloudMachineLearning_GoogleCloudMlV1beta1PredictRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudMachineLearning_GoogleApiHttpBody - */ - public function predict($name, Google_Service_CloudMachineLearning_GoogleCloudMlV1beta1PredictRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('predict', array($params), "Google_Service_CloudMachineLearning_GoogleApiHttpBody"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/Resource/ProjectsJobs.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/Resource/ProjectsJobs.php deleted file mode 100644 index bb3e3906..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/Resource/ProjectsJobs.php +++ /dev/null @@ -1,103 +0,0 @@ - - * $mlService = new Google_Service_CloudMachineLearning(...); - * $jobs = $mlService->jobs; - * - */ -class Google_Service_CloudMachineLearning_Resource_ProjectsJobs extends Google_Service_Resource -{ - /** - * Cancels a running job. (jobs.cancel) - * - * @param string $name Required. The name of the job to cancel. - * - * Authorization: requires `Editor` role on the parent project. - * @param Google_Service_CloudMachineLearning_GoogleCloudMlV1beta1CancelJobRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudMachineLearning_GoogleProtobufEmpty - */ - public function cancel($name, Google_Service_CloudMachineLearning_GoogleCloudMlV1beta1CancelJobRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('cancel', array($params), "Google_Service_CloudMachineLearning_GoogleProtobufEmpty"); - } - /** - * Creates a training or a batch prediction job. (jobs.create) - * - * @param string $parent Required. The project name. - * - * Authorization: requires `Editor` role on the specified project. - * @param Google_Service_CloudMachineLearning_GoogleCloudMlV1beta1Job $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudMachineLearning_GoogleCloudMlV1beta1Job - */ - public function create($parent, Google_Service_CloudMachineLearning_GoogleCloudMlV1beta1Job $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_CloudMachineLearning_GoogleCloudMlV1beta1Job"); - } - /** - * Describes a job. (jobs.get) - * - * @param string $name Required. The name of the job to get the description of. - * - * Authorization: requires `Viewer` role on the parent project. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudMachineLearning_GoogleCloudMlV1beta1Job - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudMachineLearning_GoogleCloudMlV1beta1Job"); - } - /** - * Lists the jobs in the project. (jobs.listProjectsJobs) - * - * @param string $parent Required. The name of the project for which to list - * jobs. - * - * Authorization: requires `Viewer` role on the specified project. - * @param array $optParams Optional parameters. - * - * @opt_param int pageSize Optional. The number of jobs to retrieve per "page" - * of results. If there are more remaining results than this number, the - * response message will contain a valid value in the `next_page_token` field. - * - * The default value is 20, and the maximum page size is 100. - * @opt_param string filter Optional. Specifies the subset of jobs to retrieve. - * @opt_param string pageToken Optional. A page token to request the next page - * of results. - * - * You get the token from the `next_page_token` field of the response from the - * previous call. - * @return Google_Service_CloudMachineLearning_GoogleCloudMlV1beta1ListJobsResponse - */ - public function listProjectsJobs($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudMachineLearning_GoogleCloudMlV1beta1ListJobsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/Resource/ProjectsModels.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/Resource/ProjectsModels.php deleted file mode 100644 index e43bfa2c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/Resource/ProjectsModels.php +++ /dev/null @@ -1,114 +0,0 @@ - - * $mlService = new Google_Service_CloudMachineLearning(...); - * $models = $mlService->models; - * - */ -class Google_Service_CloudMachineLearning_Resource_ProjectsModels extends Google_Service_Resource -{ - /** - * Creates a model which will later contain one or more versions. - * - * You must add at least one version before you can request predictions from the - * model. Add versions by calling [projects.models.versions.create](/ml/referenc - * e/rest/v1beta1/projects.models.versions/create). (models.create) - * - * @param string $parent Required. The project name. - * - * Authorization: requires `Editor` role on the specified project. - * @param Google_Service_CloudMachineLearning_GoogleCloudMlV1beta1Model $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudMachineLearning_GoogleCloudMlV1beta1Model - */ - public function create($parent, Google_Service_CloudMachineLearning_GoogleCloudMlV1beta1Model $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_CloudMachineLearning_GoogleCloudMlV1beta1Model"); - } - /** - * Deletes a model. - * - * You can only delete a model if there are no versions in it. You can delete - * versions by calling [projects.models.versions.delete](/ml/reference/rest/v1be - * ta1/projects.models.versions/delete). (models.delete) - * - * @param string $name Required. The name of the model. - * - * Authorization: requires `Editor` role on the parent project. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudMachineLearning_GoogleLongrunningOperation - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudMachineLearning_GoogleLongrunningOperation"); - } - /** - * Gets information about a model, including its name, the description (if set), - * and the default version (if at least one version of the model has been - * deployed). (models.get) - * - * @param string $name Required. The name of the model. - * - * Authorization: requires `Viewer` role on the parent project. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudMachineLearning_GoogleCloudMlV1beta1Model - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudMachineLearning_GoogleCloudMlV1beta1Model"); - } - /** - * Lists the models in a project. - * - * Each project can contain multiple models, and each model can have multiple - * versions. (models.listProjectsModels) - * - * @param string $parent Required. The name of the project whose models are to - * be listed. - * - * Authorization: requires `Viewer` role on the specified project. - * @param array $optParams Optional parameters. - * - * @opt_param int pageSize Optional. The number of models to retrieve per "page" - * of results. If there are more remaining results than this number, the - * response message will contain a valid value in the `next_page_token` field. - * - * The default value is 20, and the maximum page size is 100. - * @opt_param string pageToken Optional. A page token to request the next page - * of results. - * - * You get the token from the `next_page_token` field of the response from the - * previous call. - * @return Google_Service_CloudMachineLearning_GoogleCloudMlV1beta1ListModelsResponse - */ - public function listProjectsModels($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudMachineLearning_GoogleCloudMlV1beta1ListModelsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/Resource/ProjectsModelsVersions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/Resource/ProjectsModelsVersions.php deleted file mode 100644 index f4567ac3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/Resource/ProjectsModelsVersions.php +++ /dev/null @@ -1,152 +0,0 @@ - - * $mlService = new Google_Service_CloudMachineLearning(...); - * $versions = $mlService->versions; - * - */ -class Google_Service_CloudMachineLearning_Resource_ProjectsModelsVersions extends Google_Service_Resource -{ - /** - * Creates a new version of a model from a trained TensorFlow model. - * - * If the version created in the cloud by this call is the first deployed - * version of the specified model, it will be made the default version of the - * model. When you add a version to a model that already has one or more - * versions, the default version does not automatically change. If you want a - * new version to be the default, you must call [projects.models.versions.setDef - * ault](/ml/reference/rest/v1beta1/projects.models.versions/setDefault). - * (versions.create) - * - * @param string $parent Required. The name of the model. - * - * Authorization: requires `Editor` role on the parent project. - * @param Google_Service_CloudMachineLearning_GoogleCloudMlV1beta1Version $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudMachineLearning_GoogleLongrunningOperation - */ - public function create($parent, Google_Service_CloudMachineLearning_GoogleCloudMlV1beta1Version $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_CloudMachineLearning_GoogleLongrunningOperation"); - } - /** - * Deletes a model version. - * - * Each model can have multiple versions deployed and in use at any given time. - * Use this method to remove a single version. - * - * Note: You cannot delete the version that is set as the default version of the - * model unless it is the only remaining version. (versions.delete) - * - * @param string $name Required. The name of the version. You can get the names - * of all the versions of a model by calling [projects.models.versions.list](/ml - * /reference/rest/v1beta1/projects.models.versions/list). - * - * Authorization: requires `Editor` role on the parent project. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudMachineLearning_GoogleLongrunningOperation - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudMachineLearning_GoogleLongrunningOperation"); - } - /** - * Gets information about a model version. - * - * Models can have multiple versions. You can call [projects.models.versions.lis - * t](/ml/reference/rest/v1beta1/projects.models.versions/list) to get the same - * information that this method returns for all of the versions of a model. - * (versions.get) - * - * @param string $name Required. The name of the version. - * - * Authorization: requires `Viewer` role on the parent project. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudMachineLearning_GoogleCloudMlV1beta1Version - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudMachineLearning_GoogleCloudMlV1beta1Version"); - } - /** - * Gets basic information about all the versions of a model. - * - * If you expect that a model has a lot of versions, or if you need to handle - * only a limited number of results at a time, you can request that the list be - * retrieved in batches (called pages): (versions.listProjectsModelsVersions) - * - * @param string $parent Required. The name of the model for which to list the - * version. - * - * Authorization: requires `Viewer` role on the parent project. - * @param array $optParams Optional parameters. - * - * @opt_param int pageSize Optional. The number of versions to retrieve per - * "page" of results. If there are more remaining results than this number, the - * response message will contain a valid value in the `next_page_token` field. - * - * The default value is 20, and the maximum page size is 100. - * @opt_param string pageToken Optional. A page token to request the next page - * of results. - * - * You get the token from the `next_page_token` field of the response from the - * previous call. - * @return Google_Service_CloudMachineLearning_GoogleCloudMlV1beta1ListVersionsResponse - */ - public function listProjectsModelsVersions($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudMachineLearning_GoogleCloudMlV1beta1ListVersionsResponse"); - } - /** - * Designates a version to be the default for the model. - * - * The default version is used for prediction requests made against the model - * that don't specify a version. - * - * The first version to be created for a model is automatically set as the - * default. You must make any subsequent changes to the default version setting - * manually using this method. (versions.setDefault) - * - * @param string $name Required. The name of the version to make the default for - * the model. You can get the names of all the versions of a model by calling [p - * rojects.models.versions.list](/ml/reference/rest/v1beta1/projects.models.vers - * ions/list). - * - * Authorization: requires `Editor` role on the parent project. - * @param Google_Service_CloudMachineLearning_GoogleCloudMlV1beta1SetDefaultVersionRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudMachineLearning_GoogleCloudMlV1beta1Version - */ - public function setDefault($name, Google_Service_CloudMachineLearning_GoogleCloudMlV1beta1SetDefaultVersionRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setDefault', array($params), "Google_Service_CloudMachineLearning_GoogleCloudMlV1beta1Version"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/Resource/ProjectsOperations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/Resource/ProjectsOperations.php deleted file mode 100644 index 52453800..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearning/Resource/ProjectsOperations.php +++ /dev/null @@ -1,102 +0,0 @@ - - * $mlService = new Google_Service_CloudMachineLearning(...); - * $operations = $mlService->operations; - * - */ -class Google_Service_CloudMachineLearning_Resource_ProjectsOperations extends Google_Service_Resource -{ - /** - * Starts asynchronous cancellation on a long-running operation. The server - * makes a best effort to cancel the operation, but success is not guaranteed. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or - * other methods to check whether the cancellation succeeded or whether the - * operation completed despite cancellation. On successful cancellation, the - * operation is not deleted; instead, it becomes an operation with an - * Operation.error value with a google.rpc.Status.code of 1, corresponding to - * `Code.CANCELLED`. (operations.cancel) - * - * @param string $name The name of the operation resource to be cancelled. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudMachineLearning_GoogleProtobufEmpty - */ - public function cancel($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('cancel', array($params), "Google_Service_CloudMachineLearning_GoogleProtobufEmpty"); - } - /** - * Deletes a long-running operation. This method indicates that the client is no - * longer interested in the operation result. It does not cancel the operation. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. (operations.delete) - * - * @param string $name The name of the operation resource to be deleted. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudMachineLearning_GoogleProtobufEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudMachineLearning_GoogleProtobufEmpty"); - } - /** - * Gets the latest state of a long-running operation. Clients can use this - * method to poll the operation result at intervals as recommended by the API - * service. (operations.get) - * - * @param string $name The name of the operation resource. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudMachineLearning_GoogleLongrunningOperation - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudMachineLearning_GoogleLongrunningOperation"); - } - /** - * Lists operations that match the specified filter in the request. If the - * server doesn't support this method, it returns `UNIMPLEMENTED`. - * - * NOTE: the `name` binding below allows API services to override the binding to - * use different resource name schemes, such as `users/operations`. - * (operations.listProjectsOperations) - * - * @param string $name The name of the operation collection. - * @param array $optParams Optional parameters. - * - * @opt_param int pageSize The standard list page size. - * @opt_param string filter The standard list filter. - * @opt_param string pageToken The standard list page token. - * @return Google_Service_CloudMachineLearning_GoogleLongrunningListOperationsResponse - */ - public function listProjectsOperations($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudMachineLearning_GoogleLongrunningListOperationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine.php deleted file mode 100644 index ce242d17..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine.php +++ /dev/null @@ -1,500 +0,0 @@ - - * An API to enable creating and using machine learning models.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_CloudMachineLearningEngine extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** View your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM_READ_ONLY = - "https://www.googleapis.com/auth/cloud-platform.read-only"; - - public $projects; - public $projects_jobs; - public $projects_locations; - public $projects_models; - public $projects_models_versions; - public $projects_operations; - - /** - * Constructs the internal representation of the CloudMachineLearningEngine - * service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://ml.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'ml'; - - $this->projects = new Google_Service_CloudMachineLearningEngine_Resource_Projects( - $this, - $this->serviceName, - 'projects', - array( - 'methods' => array( - 'explain' => array( - 'path' => 'v1/{+name}:explain', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getConfig' => array( - 'path' => 'v1/{+name}:getConfig', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'predict' => array( - 'path' => 'v1/{+name}:predict', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_jobs = new Google_Service_CloudMachineLearningEngine_Resource_ProjectsJobs( - $this, - $this->serviceName, - 'jobs', - array( - 'methods' => array( - 'cancel' => array( - 'path' => 'v1/{+name}:cancel', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'create' => array( - 'path' => 'v1/{+parent}/jobs', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getIamPolicy' => array( - 'path' => 'v1/{+resource}:getIamPolicy', - 'httpMethod' => 'GET', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'options.requestedPolicyVersion' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/jobs', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setIamPolicy' => array( - 'path' => 'v1/{+resource}:setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => 'v1/{+resource}:testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_locations = new Google_Service_CloudMachineLearningEngine_Resource_ProjectsLocations( - $this, - $this->serviceName, - 'locations', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/locations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->projects_models = new Google_Service_CloudMachineLearningEngine_Resource_ProjectsModels( - $this, - $this->serviceName, - 'models', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/models', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getIamPolicy' => array( - 'path' => 'v1/{+resource}:getIamPolicy', - 'httpMethod' => 'GET', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'options.requestedPolicyVersion' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/models', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setIamPolicy' => array( - 'path' => 'v1/{+resource}:setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => 'v1/{+resource}:testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_models_versions = new Google_Service_CloudMachineLearningEngine_Resource_ProjectsModelsVersions( - $this, - $this->serviceName, - 'versions', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/versions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/versions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setDefault' => array( - 'path' => 'v1/{+name}:setDefault', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_operations = new Google_Service_CloudMachineLearningEngine_Resource_ProjectsOperations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'cancel' => array( - 'path' => 'v1/{+name}:cancel', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+name}/operations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleApiHttpBody.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleApiHttpBody.php deleted file mode 100644 index 2537ffc7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleApiHttpBody.php +++ /dev/null @@ -1,49 +0,0 @@ -contentType = $contentType; - } - public function getContentType() - { - return $this->contentType; - } - public function setData($data) - { - $this->data = $data; - } - public function getData() - { - return $this->data; - } - public function setExtensions($extensions) - { - $this->extensions = $extensions; - } - public function getExtensions() - { - return $this->extensions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1AcceleratorConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1AcceleratorConfig.php deleted file mode 100644 index 5b138053..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1AcceleratorConfig.php +++ /dev/null @@ -1,39 +0,0 @@ -count = $count; - } - public function getCount() - { - return $this->count; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1AutoScaling.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1AutoScaling.php deleted file mode 100644 index 5451b65e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1AutoScaling.php +++ /dev/null @@ -1,30 +0,0 @@ -minNodes = $minNodes; - } - public function getMinNodes() - { - return $this->minNodes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1BuiltInAlgorithmOutput.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1BuiltInAlgorithmOutput.php deleted file mode 100644 index e14e6028..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1BuiltInAlgorithmOutput.php +++ /dev/null @@ -1,57 +0,0 @@ -framework = $framework; - } - public function getFramework() - { - return $this->framework; - } - public function setModelPath($modelPath) - { - $this->modelPath = $modelPath; - } - public function getModelPath() - { - return $this->modelPath; - } - public function setPythonVersion($pythonVersion) - { - $this->pythonVersion = $pythonVersion; - } - public function getPythonVersion() - { - return $this->pythonVersion; - } - public function setRuntimeVersion($runtimeVersion) - { - $this->runtimeVersion = $runtimeVersion; - } - public function getRuntimeVersion() - { - return $this->runtimeVersion; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1CancelJobRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1CancelJobRequest.php deleted file mode 100644 index c4cf3926..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1CancelJobRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -availableAccelerators = $availableAccelerators; - } - public function getAvailableAccelerators() - { - return $this->availableAccelerators; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1Config.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1Config.php deleted file mode 100644 index 5c92309e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1Config.php +++ /dev/null @@ -1,30 +0,0 @@ -tpuServiceAccount = $tpuServiceAccount; - } - public function getTpuServiceAccount() - { - return $this->tpuServiceAccount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1ExplainRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1ExplainRequest.php deleted file mode 100644 index 7cb793cd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1ExplainRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -httpBody = $httpBody; - } - /** - * @return Google_Service_CloudMachineLearningEngine_GoogleApiHttpBody - */ - public function getHttpBody() - { - return $this->httpBody; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1ExplanationConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1ExplanationConfig.php deleted file mode 100644 index ff814d74..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1ExplanationConfig.php +++ /dev/null @@ -1,53 +0,0 @@ -integratedGradientsAttribution = $integratedGradientsAttribution; - } - /** - * @return Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1IntegratedGradientsAttribution - */ - public function getIntegratedGradientsAttribution() - { - return $this->integratedGradientsAttribution; - } - /** - * @param Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1SampledShapleyAttribution - */ - public function setSampledShapleyAttribution(Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1SampledShapleyAttribution $sampledShapleyAttribution) - { - $this->sampledShapleyAttribution = $sampledShapleyAttribution; - } - /** - * @return Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1SampledShapleyAttribution - */ - public function getSampledShapleyAttribution() - { - return $this->sampledShapleyAttribution; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1GetConfigResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1GetConfigResponse.php deleted file mode 100644 index d3d9c535..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1GetConfigResponse.php +++ /dev/null @@ -1,55 +0,0 @@ -config = $config; - } - /** - * @return Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1Config - */ - public function getConfig() - { - return $this->config; - } - public function setServiceAccount($serviceAccount) - { - $this->serviceAccount = $serviceAccount; - } - public function getServiceAccount() - { - return $this->serviceAccount; - } - public function setServiceAccountProject($serviceAccountProject) - { - $this->serviceAccountProject = $serviceAccountProject; - } - public function getServiceAccountProject() - { - return $this->serviceAccountProject; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1HyperparameterOutput.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1HyperparameterOutput.php deleted file mode 100644 index b6896e56..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1HyperparameterOutput.php +++ /dev/null @@ -1,124 +0,0 @@ -allMetrics = $allMetrics; - } - /** - * @return Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1HyperparameterOutputHyperparameterMetric - */ - public function getAllMetrics() - { - return $this->allMetrics; - } - /** - * @param Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1BuiltInAlgorithmOutput - */ - public function setBuiltInAlgorithmOutput(Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1BuiltInAlgorithmOutput $builtInAlgorithmOutput) - { - $this->builtInAlgorithmOutput = $builtInAlgorithmOutput; - } - /** - * @return Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1BuiltInAlgorithmOutput - */ - public function getBuiltInAlgorithmOutput() - { - return $this->builtInAlgorithmOutput; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - /** - * @param Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1HyperparameterOutputHyperparameterMetric - */ - public function setFinalMetric(Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1HyperparameterOutputHyperparameterMetric $finalMetric) - { - $this->finalMetric = $finalMetric; - } - /** - * @return Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1HyperparameterOutputHyperparameterMetric - */ - public function getFinalMetric() - { - return $this->finalMetric; - } - public function setHyperparameters($hyperparameters) - { - $this->hyperparameters = $hyperparameters; - } - public function getHyperparameters() - { - return $this->hyperparameters; - } - public function setIsTrialStoppedEarly($isTrialStoppedEarly) - { - $this->isTrialStoppedEarly = $isTrialStoppedEarly; - } - public function getIsTrialStoppedEarly() - { - return $this->isTrialStoppedEarly; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setTrialId($trialId) - { - $this->trialId = $trialId; - } - public function getTrialId() - { - return $this->trialId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1HyperparameterOutputHyperparameterMetric.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1HyperparameterOutputHyperparameterMetric.php deleted file mode 100644 index 298df418..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1HyperparameterOutputHyperparameterMetric.php +++ /dev/null @@ -1,39 +0,0 @@ -objectiveValue = $objectiveValue; - } - public function getObjectiveValue() - { - return $this->objectiveValue; - } - public function setTrainingStep($trainingStep) - { - $this->trainingStep = $trainingStep; - } - public function getTrainingStep() - { - return $this->trainingStep; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1HyperparameterSpec.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1HyperparameterSpec.php deleted file mode 100644 index 9a4714ff..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1HyperparameterSpec.php +++ /dev/null @@ -1,110 +0,0 @@ -algorithm = $algorithm; - } - public function getAlgorithm() - { - return $this->algorithm; - } - public function setEnableTrialEarlyStopping($enableTrialEarlyStopping) - { - $this->enableTrialEarlyStopping = $enableTrialEarlyStopping; - } - public function getEnableTrialEarlyStopping() - { - return $this->enableTrialEarlyStopping; - } - public function setGoal($goal) - { - $this->goal = $goal; - } - public function getGoal() - { - return $this->goal; - } - public function setHyperparameterMetricTag($hyperparameterMetricTag) - { - $this->hyperparameterMetricTag = $hyperparameterMetricTag; - } - public function getHyperparameterMetricTag() - { - return $this->hyperparameterMetricTag; - } - public function setMaxFailedTrials($maxFailedTrials) - { - $this->maxFailedTrials = $maxFailedTrials; - } - public function getMaxFailedTrials() - { - return $this->maxFailedTrials; - } - public function setMaxParallelTrials($maxParallelTrials) - { - $this->maxParallelTrials = $maxParallelTrials; - } - public function getMaxParallelTrials() - { - return $this->maxParallelTrials; - } - public function setMaxTrials($maxTrials) - { - $this->maxTrials = $maxTrials; - } - public function getMaxTrials() - { - return $this->maxTrials; - } - /** - * @param Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1ParameterSpec - */ - public function setParams($params) - { - $this->params = $params; - } - /** - * @return Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1ParameterSpec - */ - public function getParams() - { - return $this->params; - } - public function setResumePreviousJobId($resumePreviousJobId) - { - $this->resumePreviousJobId = $resumePreviousJobId; - } - public function getResumePreviousJobId() - { - return $this->resumePreviousJobId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1IntegratedGradientsAttribution.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1IntegratedGradientsAttribution.php deleted file mode 100644 index de32b4d5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1IntegratedGradientsAttribution.php +++ /dev/null @@ -1,30 +0,0 @@ -numIntegralSteps = $numIntegralSteps; - } - public function getNumIntegralSteps() - { - return $this->numIntegralSteps; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1Job.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1Job.php deleted file mode 100644 index 10507e53..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1Job.php +++ /dev/null @@ -1,157 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setErrorMessage($errorMessage) - { - $this->errorMessage = $errorMessage; - } - public function getErrorMessage() - { - return $this->errorMessage; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setJobId($jobId) - { - $this->jobId = $jobId; - } - public function getJobId() - { - return $this->jobId; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - /** - * @param Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1PredictionInput - */ - public function setPredictionInput(Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1PredictionInput $predictionInput) - { - $this->predictionInput = $predictionInput; - } - /** - * @return Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1PredictionInput - */ - public function getPredictionInput() - { - return $this->predictionInput; - } - /** - * @param Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1PredictionOutput - */ - public function setPredictionOutput(Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1PredictionOutput $predictionOutput) - { - $this->predictionOutput = $predictionOutput; - } - /** - * @return Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1PredictionOutput - */ - public function getPredictionOutput() - { - return $this->predictionOutput; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - /** - * @param Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1TrainingInput - */ - public function setTrainingInput(Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1TrainingInput $trainingInput) - { - $this->trainingInput = $trainingInput; - } - /** - * @return Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1TrainingInput - */ - public function getTrainingInput() - { - return $this->trainingInput; - } - /** - * @param Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1TrainingOutput - */ - public function setTrainingOutput(Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1TrainingOutput $trainingOutput) - { - $this->trainingOutput = $trainingOutput; - } - /** - * @return Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1TrainingOutput - */ - public function getTrainingOutput() - { - return $this->trainingOutput; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1ListJobsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1ListJobsResponse.php deleted file mode 100644 index 2425b053..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1ListJobsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -jobs = $jobs; - } - /** - * @return Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1Job - */ - public function getJobs() - { - return $this->jobs; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1ListLocationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1ListLocationsResponse.php deleted file mode 100644 index 3f5a5ab9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1ListLocationsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -locations = $locations; - } - /** - * @return Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1Location - */ - public function getLocations() - { - return $this->locations; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1ListModelsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1ListModelsResponse.php deleted file mode 100644 index 11adc8ff..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1ListModelsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -models = $models; - } - /** - * @return Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1Model - */ - public function getModels() - { - return $this->models; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1ListVersionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1ListVersionsResponse.php deleted file mode 100644 index 2bb10b80..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1ListVersionsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1Version - */ - public function setVersions($versions) - { - $this->versions = $versions; - } - /** - * @return Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1Version - */ - public function getVersions() - { - return $this->versions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1Location.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1Location.php deleted file mode 100644 index 640aabfb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1Location.php +++ /dev/null @@ -1,47 +0,0 @@ -capabilities = $capabilities; - } - /** - * @return Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1Capability - */ - public function getCapabilities() - { - return $this->capabilities; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1ManualScaling.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1ManualScaling.php deleted file mode 100644 index d5980b24..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1ManualScaling.php +++ /dev/null @@ -1,30 +0,0 @@ -nodes = $nodes; - } - public function getNodes() - { - return $this->nodes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1Model.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1Model.php deleted file mode 100644 index 6e2fe468..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1Model.php +++ /dev/null @@ -1,101 +0,0 @@ -defaultVersion = $defaultVersion; - } - /** - * @return Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1Version - */ - public function getDefaultVersion() - { - return $this->defaultVersion; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOnlinePredictionConsoleLogging($onlinePredictionConsoleLogging) - { - $this->onlinePredictionConsoleLogging = $onlinePredictionConsoleLogging; - } - public function getOnlinePredictionConsoleLogging() - { - return $this->onlinePredictionConsoleLogging; - } - public function setOnlinePredictionLogging($onlinePredictionLogging) - { - $this->onlinePredictionLogging = $onlinePredictionLogging; - } - public function getOnlinePredictionLogging() - { - return $this->onlinePredictionLogging; - } - public function setRegions($regions) - { - $this->regions = $regions; - } - public function getRegions() - { - return $this->regions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1OperationMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1OperationMetadata.php deleted file mode 100644 index 42c8e241..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1OperationMetadata.php +++ /dev/null @@ -1,109 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setIsCancellationRequested($isCancellationRequested) - { - $this->isCancellationRequested = $isCancellationRequested; - } - public function getIsCancellationRequested() - { - return $this->isCancellationRequested; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setModelName($modelName) - { - $this->modelName = $modelName; - } - public function getModelName() - { - return $this->modelName; - } - public function setOperationType($operationType) - { - $this->operationType = $operationType; - } - public function getOperationType() - { - return $this->operationType; - } - public function setProjectNumber($projectNumber) - { - $this->projectNumber = $projectNumber; - } - public function getProjectNumber() - { - return $this->projectNumber; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } - /** - * @param Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1Version - */ - public function setVersion(Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1Version $version) - { - $this->version = $version; - } - /** - * @return Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1Version - */ - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1ParameterSpec.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1ParameterSpec.php deleted file mode 100644 index a40f380a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1ParameterSpec.php +++ /dev/null @@ -1,85 +0,0 @@ -categoricalValues = $categoricalValues; - } - public function getCategoricalValues() - { - return $this->categoricalValues; - } - public function setDiscreteValues($discreteValues) - { - $this->discreteValues = $discreteValues; - } - public function getDiscreteValues() - { - return $this->discreteValues; - } - public function setMaxValue($maxValue) - { - $this->maxValue = $maxValue; - } - public function getMaxValue() - { - return $this->maxValue; - } - public function setMinValue($minValue) - { - $this->minValue = $minValue; - } - public function getMinValue() - { - return $this->minValue; - } - public function setParameterName($parameterName) - { - $this->parameterName = $parameterName; - } - public function getParameterName() - { - return $this->parameterName; - } - public function setScaleType($scaleType) - { - $this->scaleType = $scaleType; - } - public function getScaleType() - { - return $this->scaleType; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1PredictRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1PredictRequest.php deleted file mode 100644 index 5cb84d44..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1PredictRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -httpBody = $httpBody; - } - /** - * @return Google_Service_CloudMachineLearningEngine_GoogleApiHttpBody - */ - public function getHttpBody() - { - return $this->httpBody; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1PredictionInput.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1PredictionInput.php deleted file mode 100644 index 7bb9d791..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1PredictionInput.php +++ /dev/null @@ -1,130 +0,0 @@ -batchSize = $batchSize; - } - public function getBatchSize() - { - return $this->batchSize; - } - public function setDataFormat($dataFormat) - { - $this->dataFormat = $dataFormat; - } - public function getDataFormat() - { - return $this->dataFormat; - } - public function setInputPaths($inputPaths) - { - $this->inputPaths = $inputPaths; - } - public function getInputPaths() - { - return $this->inputPaths; - } - public function setMaxWorkerCount($maxWorkerCount) - { - $this->maxWorkerCount = $maxWorkerCount; - } - public function getMaxWorkerCount() - { - return $this->maxWorkerCount; - } - public function setModelName($modelName) - { - $this->modelName = $modelName; - } - public function getModelName() - { - return $this->modelName; - } - public function setOutputDataFormat($outputDataFormat) - { - $this->outputDataFormat = $outputDataFormat; - } - public function getOutputDataFormat() - { - return $this->outputDataFormat; - } - public function setOutputPath($outputPath) - { - $this->outputPath = $outputPath; - } - public function getOutputPath() - { - return $this->outputPath; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - public function setRuntimeVersion($runtimeVersion) - { - $this->runtimeVersion = $runtimeVersion; - } - public function getRuntimeVersion() - { - return $this->runtimeVersion; - } - public function setSignatureName($signatureName) - { - $this->signatureName = $signatureName; - } - public function getSignatureName() - { - return $this->signatureName; - } - public function setUri($uri) - { - $this->uri = $uri; - } - public function getUri() - { - return $this->uri; - } - public function setVersionName($versionName) - { - $this->versionName = $versionName; - } - public function getVersionName() - { - return $this->versionName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1PredictionOutput.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1PredictionOutput.php deleted file mode 100644 index e9d85040..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1PredictionOutput.php +++ /dev/null @@ -1,57 +0,0 @@ -errorCount = $errorCount; - } - public function getErrorCount() - { - return $this->errorCount; - } - public function setNodeHours($nodeHours) - { - $this->nodeHours = $nodeHours; - } - public function getNodeHours() - { - return $this->nodeHours; - } - public function setOutputPath($outputPath) - { - $this->outputPath = $outputPath; - } - public function getOutputPath() - { - return $this->outputPath; - } - public function setPredictionCount($predictionCount) - { - $this->predictionCount = $predictionCount; - } - public function getPredictionCount() - { - return $this->predictionCount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1ReplicaConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1ReplicaConfig.php deleted file mode 100644 index cd3f7470..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1ReplicaConfig.php +++ /dev/null @@ -1,55 +0,0 @@ -acceleratorConfig = $acceleratorConfig; - } - /** - * @return Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1AcceleratorConfig - */ - public function getAcceleratorConfig() - { - return $this->acceleratorConfig; - } - public function setImageUri($imageUri) - { - $this->imageUri = $imageUri; - } - public function getImageUri() - { - return $this->imageUri; - } - public function setTpuTfVersion($tpuTfVersion) - { - $this->tpuTfVersion = $tpuTfVersion; - } - public function getTpuTfVersion() - { - return $this->tpuTfVersion; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1RequestLoggingConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1RequestLoggingConfig.php deleted file mode 100644 index 0b406725..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1RequestLoggingConfig.php +++ /dev/null @@ -1,39 +0,0 @@ -bigqueryTableName = $bigqueryTableName; - } - public function getBigqueryTableName() - { - return $this->bigqueryTableName; - } - public function setSamplingPercentage($samplingPercentage) - { - $this->samplingPercentage = $samplingPercentage; - } - public function getSamplingPercentage() - { - return $this->samplingPercentage; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1SampledShapleyAttribution.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1SampledShapleyAttribution.php deleted file mode 100644 index 2766f9a5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1SampledShapleyAttribution.php +++ /dev/null @@ -1,30 +0,0 @@ -numPaths = $numPaths; - } - public function getNumPaths() - { - return $this->numPaths; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1Scheduling.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1Scheduling.php deleted file mode 100644 index 8ce75783..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1Scheduling.php +++ /dev/null @@ -1,30 +0,0 @@ -maxRunningTime = $maxRunningTime; - } - public function getMaxRunningTime() - { - return $this->maxRunningTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1SetDefaultVersionRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1SetDefaultVersionRequest.php deleted file mode 100644 index 1522fb13..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1SetDefaultVersionRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -args = $args; - } - public function getArgs() - { - return $this->args; - } - /** - * @param Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1HyperparameterSpec - */ - public function setHyperparameters(Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1HyperparameterSpec $hyperparameters) - { - $this->hyperparameters = $hyperparameters; - } - /** - * @return Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1HyperparameterSpec - */ - public function getHyperparameters() - { - return $this->hyperparameters; - } - public function setJobDir($jobDir) - { - $this->jobDir = $jobDir; - } - public function getJobDir() - { - return $this->jobDir; - } - /** - * @param Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1ReplicaConfig - */ - public function setMasterConfig(Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1ReplicaConfig $masterConfig) - { - $this->masterConfig = $masterConfig; - } - /** - * @return Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1ReplicaConfig - */ - public function getMasterConfig() - { - return $this->masterConfig; - } - public function setMasterType($masterType) - { - $this->masterType = $masterType; - } - public function getMasterType() - { - return $this->masterType; - } - public function setPackageUris($packageUris) - { - $this->packageUris = $packageUris; - } - public function getPackageUris() - { - return $this->packageUris; - } - /** - * @param Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1ReplicaConfig - */ - public function setParameterServerConfig(Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1ReplicaConfig $parameterServerConfig) - { - $this->parameterServerConfig = $parameterServerConfig; - } - /** - * @return Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1ReplicaConfig - */ - public function getParameterServerConfig() - { - return $this->parameterServerConfig; - } - public function setParameterServerCount($parameterServerCount) - { - $this->parameterServerCount = $parameterServerCount; - } - public function getParameterServerCount() - { - return $this->parameterServerCount; - } - public function setParameterServerType($parameterServerType) - { - $this->parameterServerType = $parameterServerType; - } - public function getParameterServerType() - { - return $this->parameterServerType; - } - public function setPythonModule($pythonModule) - { - $this->pythonModule = $pythonModule; - } - public function getPythonModule() - { - return $this->pythonModule; - } - public function setPythonVersion($pythonVersion) - { - $this->pythonVersion = $pythonVersion; - } - public function getPythonVersion() - { - return $this->pythonVersion; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - public function setRuntimeVersion($runtimeVersion) - { - $this->runtimeVersion = $runtimeVersion; - } - public function getRuntimeVersion() - { - return $this->runtimeVersion; - } - public function setScaleTier($scaleTier) - { - $this->scaleTier = $scaleTier; - } - public function getScaleTier() - { - return $this->scaleTier; - } - /** - * @param Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1Scheduling - */ - public function setScheduling(Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1Scheduling $scheduling) - { - $this->scheduling = $scheduling; - } - /** - * @return Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1Scheduling - */ - public function getScheduling() - { - return $this->scheduling; - } - public function setUseChiefInTfConfig($useChiefInTfConfig) - { - $this->useChiefInTfConfig = $useChiefInTfConfig; - } - public function getUseChiefInTfConfig() - { - return $this->useChiefInTfConfig; - } - /** - * @param Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1ReplicaConfig - */ - public function setWorkerConfig(Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1ReplicaConfig $workerConfig) - { - $this->workerConfig = $workerConfig; - } - /** - * @return Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1ReplicaConfig - */ - public function getWorkerConfig() - { - return $this->workerConfig; - } - public function setWorkerCount($workerCount) - { - $this->workerCount = $workerCount; - } - public function getWorkerCount() - { - return $this->workerCount; - } - public function setWorkerType($workerType) - { - $this->workerType = $workerType; - } - public function getWorkerType() - { - return $this->workerType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1TrainingOutput.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1TrainingOutput.php deleted file mode 100644 index 7e933a11..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1TrainingOutput.php +++ /dev/null @@ -1,99 +0,0 @@ -builtInAlgorithmOutput = $builtInAlgorithmOutput; - } - /** - * @return Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1BuiltInAlgorithmOutput - */ - public function getBuiltInAlgorithmOutput() - { - return $this->builtInAlgorithmOutput; - } - public function setCompletedTrialCount($completedTrialCount) - { - $this->completedTrialCount = $completedTrialCount; - } - public function getCompletedTrialCount() - { - return $this->completedTrialCount; - } - public function setConsumedMLUnits($consumedMLUnits) - { - $this->consumedMLUnits = $consumedMLUnits; - } - public function getConsumedMLUnits() - { - return $this->consumedMLUnits; - } - public function setHyperparameterMetricTag($hyperparameterMetricTag) - { - $this->hyperparameterMetricTag = $hyperparameterMetricTag; - } - public function getHyperparameterMetricTag() - { - return $this->hyperparameterMetricTag; - } - public function setIsBuiltInAlgorithmJob($isBuiltInAlgorithmJob) - { - $this->isBuiltInAlgorithmJob = $isBuiltInAlgorithmJob; - } - public function getIsBuiltInAlgorithmJob() - { - return $this->isBuiltInAlgorithmJob; - } - public function setIsHyperparameterTuningJob($isHyperparameterTuningJob) - { - $this->isHyperparameterTuningJob = $isHyperparameterTuningJob; - } - public function getIsHyperparameterTuningJob() - { - return $this->isHyperparameterTuningJob; - } - /** - * @param Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1HyperparameterOutput - */ - public function setTrials($trials) - { - $this->trials = $trials; - } - /** - * @return Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1HyperparameterOutput - */ - public function getTrials() - { - return $this->trials; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1Version.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1Version.php deleted file mode 100644 index f24f706d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleCloudMlV1Version.php +++ /dev/null @@ -1,255 +0,0 @@ -acceleratorConfig = $acceleratorConfig; - } - /** - * @return Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1AcceleratorConfig - */ - public function getAcceleratorConfig() - { - return $this->acceleratorConfig; - } - /** - * @param Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1AutoScaling - */ - public function setAutoScaling(Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1AutoScaling $autoScaling) - { - $this->autoScaling = $autoScaling; - } - /** - * @return Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1AutoScaling - */ - public function getAutoScaling() - { - return $this->autoScaling; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setDeploymentUri($deploymentUri) - { - $this->deploymentUri = $deploymentUri; - } - public function getDeploymentUri() - { - return $this->deploymentUri; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setErrorMessage($errorMessage) - { - $this->errorMessage = $errorMessage; - } - public function getErrorMessage() - { - return $this->errorMessage; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1ExplanationConfig - */ - public function setExplanationConfig(Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1ExplanationConfig $explanationConfig) - { - $this->explanationConfig = $explanationConfig; - } - /** - * @return Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1ExplanationConfig - */ - public function getExplanationConfig() - { - return $this->explanationConfig; - } - public function setFramework($framework) - { - $this->framework = $framework; - } - public function getFramework() - { - return $this->framework; - } - public function setIsDefault($isDefault) - { - $this->isDefault = $isDefault; - } - public function getIsDefault() - { - return $this->isDefault; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setLastUseTime($lastUseTime) - { - $this->lastUseTime = $lastUseTime; - } - public function getLastUseTime() - { - return $this->lastUseTime; - } - public function setMachineType($machineType) - { - $this->machineType = $machineType; - } - public function getMachineType() - { - return $this->machineType; - } - /** - * @param Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1ManualScaling - */ - public function setManualScaling(Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1ManualScaling $manualScaling) - { - $this->manualScaling = $manualScaling; - } - /** - * @return Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1ManualScaling - */ - public function getManualScaling() - { - return $this->manualScaling; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPackageUris($packageUris) - { - $this->packageUris = $packageUris; - } - public function getPackageUris() - { - return $this->packageUris; - } - public function setPredictionClass($predictionClass) - { - $this->predictionClass = $predictionClass; - } - public function getPredictionClass() - { - return $this->predictionClass; - } - public function setPythonVersion($pythonVersion) - { - $this->pythonVersion = $pythonVersion; - } - public function getPythonVersion() - { - return $this->pythonVersion; - } - /** - * @param Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1RequestLoggingConfig - */ - public function setRequestLoggingConfig(Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1RequestLoggingConfig $requestLoggingConfig) - { - $this->requestLoggingConfig = $requestLoggingConfig; - } - /** - * @return Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1RequestLoggingConfig - */ - public function getRequestLoggingConfig() - { - return $this->requestLoggingConfig; - } - public function setRuntimeVersion($runtimeVersion) - { - $this->runtimeVersion = $runtimeVersion; - } - public function getRuntimeVersion() - { - return $this->runtimeVersion; - } - public function setServiceAccount($serviceAccount) - { - $this->serviceAccount = $serviceAccount; - } - public function getServiceAccount() - { - return $this->serviceAccount; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleIamV1AuditConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleIamV1AuditConfig.php deleted file mode 100644 index b7ede69e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleIamV1AuditConfig.php +++ /dev/null @@ -1,47 +0,0 @@ -auditLogConfigs = $auditLogConfigs; - } - /** - * @return Google_Service_CloudMachineLearningEngine_GoogleIamV1AuditLogConfig - */ - public function getAuditLogConfigs() - { - return $this->auditLogConfigs; - } - public function setService($service) - { - $this->service = $service; - } - public function getService() - { - return $this->service; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleIamV1AuditLogConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleIamV1AuditLogConfig.php deleted file mode 100644 index c7eae96b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleIamV1AuditLogConfig.php +++ /dev/null @@ -1,40 +0,0 @@ -exemptedMembers = $exemptedMembers; - } - public function getExemptedMembers() - { - return $this->exemptedMembers; - } - public function setLogType($logType) - { - $this->logType = $logType; - } - public function getLogType() - { - return $this->logType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleIamV1Binding.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleIamV1Binding.php deleted file mode 100644 index 185c04f8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleIamV1Binding.php +++ /dev/null @@ -1,56 +0,0 @@ -condition = $condition; - } - /** - * @return Google_Service_CloudMachineLearningEngine_GoogleTypeExpr - */ - public function getCondition() - { - return $this->condition; - } - public function setMembers($members) - { - $this->members = $members; - } - public function getMembers() - { - return $this->members; - } - public function setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleIamV1Policy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleIamV1Policy.php deleted file mode 100644 index a1c79aef..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleIamV1Policy.php +++ /dev/null @@ -1,72 +0,0 @@ -auditConfigs = $auditConfigs; - } - /** - * @return Google_Service_CloudMachineLearningEngine_GoogleIamV1AuditConfig - */ - public function getAuditConfigs() - { - return $this->auditConfigs; - } - /** - * @param Google_Service_CloudMachineLearningEngine_GoogleIamV1Binding - */ - public function setBindings($bindings) - { - $this->bindings = $bindings; - } - /** - * @return Google_Service_CloudMachineLearningEngine_GoogleIamV1Binding - */ - public function getBindings() - { - return $this->bindings; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleIamV1SetIamPolicyRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleIamV1SetIamPolicyRequest.php deleted file mode 100644 index 29f4346f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleIamV1SetIamPolicyRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -policy = $policy; - } - /** - * @return Google_Service_CloudMachineLearningEngine_GoogleIamV1Policy - */ - public function getPolicy() - { - return $this->policy; - } - public function setUpdateMask($updateMask) - { - $this->updateMask = $updateMask; - } - public function getUpdateMask() - { - return $this->updateMask; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleIamV1TestIamPermissionsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleIamV1TestIamPermissionsRequest.php deleted file mode 100644 index b725f610..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleIamV1TestIamPermissionsRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleIamV1TestIamPermissionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleIamV1TestIamPermissionsResponse.php deleted file mode 100644 index 77e9ad7e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleIamV1TestIamPermissionsResponse.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleLongrunningListOperationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleLongrunningListOperationsResponse.php deleted file mode 100644 index 9a7e6576..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleLongrunningListOperationsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_CloudMachineLearningEngine_GoogleLongrunningOperation - */ - public function setOperations($operations) - { - $this->operations = $operations; - } - /** - * @return Google_Service_CloudMachineLearningEngine_GoogleLongrunningOperation - */ - public function getOperations() - { - return $this->operations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleLongrunningOperation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleLongrunningOperation.php deleted file mode 100644 index 4b7cf860..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleLongrunningOperation.php +++ /dev/null @@ -1,73 +0,0 @@ -done = $done; - } - public function getDone() - { - return $this->done; - } - /** - * @param Google_Service_CloudMachineLearningEngine_GoogleRpcStatus - */ - public function setError(Google_Service_CloudMachineLearningEngine_GoogleRpcStatus $error) - { - $this->error = $error; - } - /** - * @return Google_Service_CloudMachineLearningEngine_GoogleRpcStatus - */ - public function getError() - { - return $this->error; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleProtobufEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleProtobufEmpty.php deleted file mode 100644 index 93d4aa2b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleProtobufEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleTypeExpr.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleTypeExpr.php deleted file mode 100644 index 2285d352..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/GoogleTypeExpr.php +++ /dev/null @@ -1,57 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setExpression($expression) - { - $this->expression = $expression; - } - public function getExpression() - { - return $this->expression; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/Resource/Projects.php deleted file mode 100644 index 96a86d77..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/Resource/Projects.php +++ /dev/null @@ -1,80 +0,0 @@ - - * $mlService = new Google_Service_CloudMachineLearningEngine(...); - * $projects = $mlService->projects; - * - */ -class Google_Service_CloudMachineLearningEngine_Resource_Projects extends Google_Service_Resource -{ - /** - * Performs explanation on the data in the request. AI Platform implements a - * custom `explain` verb on top of an HTTP POST method. (projects.explain) - * - * @param string $name Required. The resource name of a model or a version. - * - * Authorization: requires the `predict` permission on the specified resource. - * @param Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1ExplainRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudMachineLearningEngine_GoogleApiHttpBody - */ - public function explain($name, Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1ExplainRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('explain', array($params), "Google_Service_CloudMachineLearningEngine_GoogleApiHttpBody"); - } - /** - * Get the service account information associated with your project. You need - * this information in order to grant the service account permissions for the - * Google Cloud Storage location where you put your model training code for - * training the model with Google Cloud Machine Learning. (projects.getConfig) - * - * @param string $name Required. The project name. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1GetConfigResponse - */ - public function getConfig($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('getConfig', array($params), "Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1GetConfigResponse"); - } - /** - * Performs online prediction on the data in the request. - * - * {% dynamic include "/ai-platform/includes/___predict-request" %} - * (projects.predict) - * - * @param string $name Required. The resource name of a model or a version. - * - * Authorization: requires the `predict` permission on the specified resource. - * @param Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1PredictRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudMachineLearningEngine_GoogleApiHttpBody - */ - public function predict($name, Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1PredictRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('predict', array($params), "Google_Service_CloudMachineLearningEngine_GoogleApiHttpBody"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/Resource/ProjectsJobs.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/Resource/ProjectsJobs.php deleted file mode 100644 index f459ad17..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/Resource/ProjectsJobs.php +++ /dev/null @@ -1,202 +0,0 @@ - - * $mlService = new Google_Service_CloudMachineLearningEngine(...); - * $jobs = $mlService->jobs; - * - */ -class Google_Service_CloudMachineLearningEngine_Resource_ProjectsJobs extends Google_Service_Resource -{ - /** - * Cancels a running job. (jobs.cancel) - * - * @param string $name Required. The name of the job to cancel. - * @param Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1CancelJobRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudMachineLearningEngine_GoogleProtobufEmpty - */ - public function cancel($name, Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1CancelJobRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('cancel', array($params), "Google_Service_CloudMachineLearningEngine_GoogleProtobufEmpty"); - } - /** - * Creates a training or a batch prediction job. (jobs.create) - * - * @param string $parent Required. The project name. - * @param Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1Job $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1Job - */ - public function create($parent, Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1Job $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1Job"); - } - /** - * Describes a job. (jobs.get) - * - * @param string $name Required. The name of the job to get the description of. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1Job - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1Job"); - } - /** - * Gets the access control policy for a resource. Returns an empty policy if the - * resource exists and does not have a policy set. (jobs.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. - * @return Google_Service_CloudMachineLearningEngine_GoogleIamV1Policy - */ - public function getIamPolicy($resource, $optParams = array()) - { - $params = array('resource' => $resource); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_CloudMachineLearningEngine_GoogleIamV1Policy"); - } - /** - * Lists the jobs in the project. - * - * If there are no jobs that match the request parameters, the list request - * returns an empty response body: {}. (jobs.listProjectsJobs) - * - * @param string $parent Required. The name of the project for which to list - * jobs. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Optional. A page token to request the next page - * of results. - * - * You get the token from the `next_page_token` field of the response from the - * previous call. - * @opt_param int pageSize Optional. The number of jobs to retrieve per "page" - * of results. If there are more remaining results than this number, the - * response message will contain a valid value in the `next_page_token` field. - * - * The default value is 20, and the maximum page size is 100. - * @opt_param string filter Optional. Specifies the subset of jobs to retrieve. - * You can filter on the value of one or more attributes of the job object. For - * example, retrieve jobs with a job identifier that starts with 'census': - * gcloud ai-platform jobs list --filter='jobId:census*' List all failed jobs - * with names that start with 'rnn': gcloud ai-platform jobs list - * --filter='jobId:rnn* AND state:FAILED' For more examples, see the guide to - * monitoring jobs. - * @return Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1ListJobsResponse - */ - public function listProjectsJobs($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1ListJobsResponse"); - } - /** - * Updates a specific job resource. - * - * Currently the only supported fields to update are `labels`. (jobs.patch) - * - * @param string $name Required. The job name. - * @param Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1Job $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Required. Specifies the path, relative to `Job`, - * of the field to update. To adopt etag mechanism, include `etag` field in the - * mask, and include the `etag` value in your job resource. - * - * For example, to change the labels of a job, the `update_mask` parameter would - * be specified as `labels`, `etag`, and the `PATCH` request body would specify - * the new value, as follows: { "labels": { "owner": - * "Google", "color": "Blue" } "etag": - * "33a64df551425fcc55e4d42a148795d9f25f89d4" } If `etag` matches the one on - * the server, the labels of the job will be replaced with the given ones, and - * the server end `etag` will be recalculated. - * - * Currently the only supported update masks are `labels` and `etag`. - * @return Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1Job - */ - public function patch($name, Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1Job $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1Job"); - } - /** - * Sets the access control policy on the specified resource. Replaces any - * existing policy. - * - * Can return Public Errors: NOT_FOUND, INVALID_ARGUMENT and PERMISSION_DENIED - * (jobs.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_CloudMachineLearningEngine_GoogleIamV1SetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudMachineLearningEngine_GoogleIamV1Policy - */ - public function setIamPolicy($resource, Google_Service_CloudMachineLearningEngine_GoogleIamV1SetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_CloudMachineLearningEngine_GoogleIamV1Policy"); - } - /** - * 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. (jobs.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_CloudMachineLearningEngine_GoogleIamV1TestIamPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudMachineLearningEngine_GoogleIamV1TestIamPermissionsResponse - */ - public function testIamPermissions($resource, Google_Service_CloudMachineLearningEngine_GoogleIamV1TestIamPermissionsRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_CloudMachineLearningEngine_GoogleIamV1TestIamPermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/Resource/ProjectsLocations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/Resource/ProjectsLocations.php deleted file mode 100644 index df3684d2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/Resource/ProjectsLocations.php +++ /dev/null @@ -1,69 +0,0 @@ - - * $mlService = new Google_Service_CloudMachineLearningEngine(...); - * $locations = $mlService->locations; - * - */ -class Google_Service_CloudMachineLearningEngine_Resource_ProjectsLocations extends Google_Service_Resource -{ - /** - * Get the complete list of CMLE capabilities in a location, along with their - * location-specific properties. (locations.get) - * - * @param string $name Required. The name of the location. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1Location - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1Location"); - } - /** - * List all locations that provides at least one type of CMLE capability. - * (locations.listProjectsLocations) - * - * @param string $parent Required. The name of the project for which available - * locations are to be listed (since some locations might be whitelisted for - * specific projects). - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Optional. A page token to request the next page - * of results. - * - * You get the token from the `next_page_token` field of the response from the - * previous call. - * @opt_param int pageSize Optional. The number of locations to retrieve per - * "page" of results. If there are more remaining results than this number, the - * response message will contain a valid value in the `next_page_token` field. - * - * The default value is 20, and the maximum page size is 100. - * @return Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1ListLocationsResponse - */ - public function listProjectsLocations($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1ListLocationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/Resource/ProjectsModels.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/Resource/ProjectsModels.php deleted file mode 100644 index ba5756ce..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/Resource/ProjectsModels.php +++ /dev/null @@ -1,207 +0,0 @@ - - * $mlService = new Google_Service_CloudMachineLearningEngine(...); - * $models = $mlService->models; - * - */ -class Google_Service_CloudMachineLearningEngine_Resource_ProjectsModels extends Google_Service_Resource -{ - /** - * Creates a model which will later contain one or more versions. - * - * You must add at least one version before you can request predictions from the - * model. Add versions by calling projects.models.versions.create. - * (models.create) - * - * @param string $parent Required. The project name. - * @param Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1Model $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1Model - */ - public function create($parent, Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1Model $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1Model"); - } - /** - * Deletes a model. - * - * You can only delete a model if there are no versions in it. You can delete - * versions by calling projects.models.versions.delete. (models.delete) - * - * @param string $name Required. The name of the model. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudMachineLearningEngine_GoogleLongrunningOperation - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudMachineLearningEngine_GoogleLongrunningOperation"); - } - /** - * Gets information about a model, including its name, the description (if set), - * and the default version (if at least one version of the model has been - * deployed). (models.get) - * - * @param string $name Required. The name of the model. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1Model - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1Model"); - } - /** - * Gets the access control policy for a resource. Returns an empty policy if the - * resource exists and does not have a policy set. (models.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. - * @return Google_Service_CloudMachineLearningEngine_GoogleIamV1Policy - */ - public function getIamPolicy($resource, $optParams = array()) - { - $params = array('resource' => $resource); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_CloudMachineLearningEngine_GoogleIamV1Policy"); - } - /** - * Lists the models in a project. - * - * Each project can contain multiple models, and each model can have multiple - * versions. - * - * If there are no models that match the request parameters, the list request - * returns an empty response body: {}. (models.listProjectsModels) - * - * @param string $parent Required. The name of the project whose models are to - * be listed. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Optional. A page token to request the next page - * of results. - * - * You get the token from the `next_page_token` field of the response from the - * previous call. - * @opt_param int pageSize Optional. The number of models to retrieve per "page" - * of results. If there are more remaining results than this number, the - * response message will contain a valid value in the `next_page_token` field. - * - * The default value is 20, and the maximum page size is 100. - * @opt_param string filter Optional. Specifies the subset of models to - * retrieve. - * @return Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1ListModelsResponse - */ - public function listProjectsModels($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1ListModelsResponse"); - } - /** - * Updates a specific model resource. - * - * Currently the only supported fields to update are `description` and - * `default_version.name`. (models.patch) - * - * @param string $name Required. The project name. - * @param Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1Model $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Required. Specifies the path, relative to - * `Model`, of the field to update. - * - * For example, to change the description of a model to "foo" and set its - * default version to "version_1", the `update_mask` parameter would be - * specified as `description`, `default_version.name`, and the `PATCH` request - * body would specify the new value, as follows: { "description": - * "foo", "defaultVersion": { "name":"version_1" } } - * - * Currently the supported update masks are `description` and - * `default_version.name`. - * @return Google_Service_CloudMachineLearningEngine_GoogleLongrunningOperation - */ - public function patch($name, Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1Model $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_CloudMachineLearningEngine_GoogleLongrunningOperation"); - } - /** - * Sets the access control policy on the specified resource. Replaces any - * existing policy. - * - * Can return Public Errors: NOT_FOUND, INVALID_ARGUMENT and PERMISSION_DENIED - * (models.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_CloudMachineLearningEngine_GoogleIamV1SetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudMachineLearningEngine_GoogleIamV1Policy - */ - public function setIamPolicy($resource, Google_Service_CloudMachineLearningEngine_GoogleIamV1SetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_CloudMachineLearningEngine_GoogleIamV1Policy"); - } - /** - * 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. (models.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_CloudMachineLearningEngine_GoogleIamV1TestIamPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudMachineLearningEngine_GoogleIamV1TestIamPermissionsResponse - */ - public function testIamPermissions($resource, Google_Service_CloudMachineLearningEngine_GoogleIamV1TestIamPermissionsRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_CloudMachineLearningEngine_GoogleIamV1TestIamPermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/Resource/ProjectsModelsVersions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/Resource/ProjectsModelsVersions.php deleted file mode 100644 index 5dfc4799..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/Resource/ProjectsModelsVersions.php +++ /dev/null @@ -1,176 +0,0 @@ - - * $mlService = new Google_Service_CloudMachineLearningEngine(...); - * $versions = $mlService->versions; - * - */ -class Google_Service_CloudMachineLearningEngine_Resource_ProjectsModelsVersions extends Google_Service_Resource -{ - /** - * Creates a new version of a model from a trained TensorFlow model. - * - * If the version created in the cloud by this call is the first deployed - * version of the specified model, it will be made the default version of the - * model. When you add a version to a model that already has one or more - * versions, the default version does not automatically change. If you want a - * new version to be the default, you must call - * projects.models.versions.setDefault. (versions.create) - * - * @param string $parent Required. The name of the model. - * @param Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1Version $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudMachineLearningEngine_GoogleLongrunningOperation - */ - public function create($parent, Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1Version $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_CloudMachineLearningEngine_GoogleLongrunningOperation"); - } - /** - * Deletes a model version. - * - * Each model can have multiple versions deployed and in use at any given time. - * Use this method to remove a single version. - * - * Note: You cannot delete the version that is set as the default version of the - * model unless it is the only remaining version. (versions.delete) - * - * @param string $name Required. The name of the version. You can get the names - * of all the versions of a model by calling projects.models.versions.list. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudMachineLearningEngine_GoogleLongrunningOperation - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudMachineLearningEngine_GoogleLongrunningOperation"); - } - /** - * Gets information about a model version. - * - * Models can have multiple versions. You can call projects.models.versions.list - * to get the same information that this method returns for all of the versions - * of a model. (versions.get) - * - * @param string $name Required. The name of the version. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1Version - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1Version"); - } - /** - * Gets basic information about all the versions of a model. - * - * If you expect that a model has many versions, or if you need to handle only a - * limited number of results at a time, you can request that the list be - * retrieved in batches (called pages). - * - * If there are no versions that match the request parameters, the list request - * returns an empty response body: {}. (versions.listProjectsModelsVersions) - * - * @param string $parent Required. The name of the model for which to list the - * version. - * @param array $optParams Optional parameters. - * - * @opt_param string filter Optional. Specifies the subset of versions to - * retrieve. - * @opt_param string pageToken Optional. A page token to request the next page - * of results. - * - * You get the token from the `next_page_token` field of the response from the - * previous call. - * @opt_param int pageSize Optional. The number of versions to retrieve per - * "page" of results. If there are more remaining results than this number, the - * response message will contain a valid value in the `next_page_token` field. - * - * The default value is 20, and the maximum page size is 100. - * @return Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1ListVersionsResponse - */ - public function listProjectsModelsVersions($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1ListVersionsResponse"); - } - /** - * Updates the specified Version resource. - * - * Currently the only update-able fields are `description`, - * `requestLoggingConfig`, `autoScaling.minNodes`, and `manualScaling.nodes`. - * (versions.patch) - * - * @param string $name Required. The name of the model. - * @param Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1Version $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Required. Specifies the path, relative to - * `Version`, of the field to update. Must be present and non-empty. - * - * For example, to change the description of a version to "foo", the - * `update_mask` parameter would be specified as `description`, and the `PATCH` - * request body would specify the new value, as follows: - * - * ``` { "description": "foo" } ``` - * - * Currently the only supported update mask fields are `description`, - * `requestLoggingConfig`, `autoScaling.minNodes`, and `manualScaling.nodes`. - * However, you can only update `manualScaling.nodes` if the version uses a - * [Compute Engine (N1) machine type](/ml-engine/docs/machine-types-online- - * prediction). - * @return Google_Service_CloudMachineLearningEngine_GoogleLongrunningOperation - */ - public function patch($name, Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1Version $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_CloudMachineLearningEngine_GoogleLongrunningOperation"); - } - /** - * Designates a version to be the default for the model. - * - * The default version is used for prediction requests made against the model - * that don't specify a version. - * - * The first version to be created for a model is automatically set as the - * default. You must make any subsequent changes to the default version setting - * manually using this method. (versions.setDefault) - * - * @param string $name Required. The name of the version to make the default for - * the model. You can get the names of all the versions of a model by calling - * projects.models.versions.list. - * @param Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1SetDefaultVersionRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1Version - */ - public function setDefault($name, Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1SetDefaultVersionRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setDefault', array($params), "Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1Version"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/Resource/ProjectsOperations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/Resource/ProjectsOperations.php deleted file mode 100644 index 1264e88a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMachineLearningEngine/Resource/ProjectsOperations.php +++ /dev/null @@ -1,90 +0,0 @@ - - * $mlService = new Google_Service_CloudMachineLearningEngine(...); - * $operations = $mlService->operations; - * - */ -class Google_Service_CloudMachineLearningEngine_Resource_ProjectsOperations extends Google_Service_Resource -{ - /** - * Starts asynchronous cancellation on a long-running operation. The server - * makes a best effort to cancel the operation, but success is not guaranteed. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or - * other methods to check whether the cancellation succeeded or whether the - * operation completed despite cancellation. On successful cancellation, the - * operation is not deleted; instead, it becomes an operation with an - * Operation.error value with a google.rpc.Status.code of 1, corresponding to - * `Code.CANCELLED`. (operations.cancel) - * - * @param string $name The name of the operation resource to be cancelled. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudMachineLearningEngine_GoogleProtobufEmpty - */ - public function cancel($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('cancel', array($params), "Google_Service_CloudMachineLearningEngine_GoogleProtobufEmpty"); - } - /** - * Gets the latest state of a long-running operation. Clients can use this - * method to poll the operation result at intervals as recommended by the API - * service. (operations.get) - * - * @param string $name The name of the operation resource. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudMachineLearningEngine_GoogleLongrunningOperation - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudMachineLearningEngine_GoogleLongrunningOperation"); - } - /** - * Lists operations that match the specified filter in the request. If the - * server doesn't support this method, it returns `UNIMPLEMENTED`. - * - * NOTE: the `name` binding allows API services to override the binding to use - * different resource name schemes, such as `users/operations`. To override the - * binding, API services can add a binding such as - * `"/v1/{name=users}/operations"` to their service configuration. For backwards - * compatibility, the default name includes the operations collection id, - * however overriding users must ensure the name binding is the parent resource, - * without the operations collection id. (operations.listProjectsOperations) - * - * @param string $name The name of the operation's parent resource. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The standard list page token. - * @opt_param int pageSize The standard list page size. - * @opt_param string filter The standard list filter. - * @return Google_Service_CloudMachineLearningEngine_GoogleLongrunningListOperationsResponse - */ - public function listProjectsOperations($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudMachineLearningEngine_GoogleLongrunningListOperationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring.php deleted file mode 100644 index 6cd5bd3f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring.php +++ /dev/null @@ -1,243 +0,0 @@ - - * Accesses Google Cloud Monitoring data.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_CloudMonitoring extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** View and write monitoring data for all of your Google and third-party Cloud and API projects. */ - const MONITORING = - "https://www.googleapis.com/auth/monitoring"; - - public $metricDescriptors; - public $timeseries; - public $timeseriesDescriptors; - - /** - * Constructs the internal representation of the CloudMonitoring service. - * - * @param Google_Client $client - */ - public function __construct(Google_Client $client) - { - parent::__construct($client); - $this->rootUrl = 'https://www.googleapis.com/'; - $this->servicePath = 'cloudmonitoring/v2beta2/projects/'; - $this->version = 'v2beta2'; - $this->serviceName = 'cloudmonitoring'; - - $this->metricDescriptors = new Google_Service_CloudMonitoring_Resource_MetricDescriptors( - $this, - $this->serviceName, - 'metricDescriptors', - array( - 'methods' => array( - 'create' => array( - 'path' => '{project}/metricDescriptors', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => '{project}/metricDescriptors/{metric}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'metric' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/metricDescriptors', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'count' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'query' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->timeseries = new Google_Service_CloudMonitoring_Resource_Timeseries( - $this, - $this->serviceName, - 'timeseries', - array( - 'methods' => array( - 'list' => array( - 'path' => '{project}/timeseries/{metric}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'metric' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'youngest' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'aggregator' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'count' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'labels' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'oldest' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'timespan' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'window' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'write' => array( - 'path' => '{project}/timeseries:write', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->timeseriesDescriptors = new Google_Service_CloudMonitoring_Resource_TimeseriesDescriptors( - $this, - $this->serviceName, - 'timeseriesDescriptors', - array( - 'methods' => array( - 'list' => array( - 'path' => '{project}/timeseriesDescriptors/{metric}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'metric' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'youngest' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'aggregator' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'count' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'labels' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'oldest' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'timespan' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'window' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/DeleteMetricDescriptorResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/DeleteMetricDescriptorResponse.php deleted file mode 100644 index d9b9c8d4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/DeleteMetricDescriptorResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/ListMetricDescriptorsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/ListMetricDescriptorsRequest.php deleted file mode 100644 index 27fec9c9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/ListMetricDescriptorsRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/ListMetricDescriptorsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/ListMetricDescriptorsResponse.php deleted file mode 100644 index 07892df3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/ListMetricDescriptorsResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_CloudMonitoring_MetricDescriptor - */ - public function setMetrics($metrics) - { - $this->metrics = $metrics; - } - /** - * @return Google_Service_CloudMonitoring_MetricDescriptor - */ - public function getMetrics() - { - return $this->metrics; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/ListTimeseriesDescriptorsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/ListTimeseriesDescriptorsRequest.php deleted file mode 100644 index 12e4378e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/ListTimeseriesDescriptorsRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/ListTimeseriesDescriptorsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/ListTimeseriesDescriptorsResponse.php deleted file mode 100644 index e188dc84..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/ListTimeseriesDescriptorsResponse.php +++ /dev/null @@ -1,74 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setOldest($oldest) - { - $this->oldest = $oldest; - } - public function getOldest() - { - return $this->oldest; - } - /** - * @param Google_Service_CloudMonitoring_TimeseriesDescriptor - */ - public function setTimeseries($timeseries) - { - $this->timeseries = $timeseries; - } - /** - * @return Google_Service_CloudMonitoring_TimeseriesDescriptor - */ - public function getTimeseries() - { - return $this->timeseries; - } - public function setYoungest($youngest) - { - $this->youngest = $youngest; - } - public function getYoungest() - { - return $this->youngest; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/ListTimeseriesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/ListTimeseriesRequest.php deleted file mode 100644 index ba3a4cc9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/ListTimeseriesRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/ListTimeseriesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/ListTimeseriesResponse.php deleted file mode 100644 index 65fe2dd6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/ListTimeseriesResponse.php +++ /dev/null @@ -1,74 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setOldest($oldest) - { - $this->oldest = $oldest; - } - public function getOldest() - { - return $this->oldest; - } - /** - * @param Google_Service_CloudMonitoring_Timeseries - */ - public function setTimeseries($timeseries) - { - $this->timeseries = $timeseries; - } - /** - * @return Google_Service_CloudMonitoring_Timeseries - */ - public function getTimeseries() - { - return $this->timeseries; - } - public function setYoungest($youngest) - { - $this->youngest = $youngest; - } - public function getYoungest() - { - return $this->youngest; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/MetricDescriptor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/MetricDescriptor.php deleted file mode 100644 index 5f944fe8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/MetricDescriptor.php +++ /dev/null @@ -1,81 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - /** - * @param Google_Service_CloudMonitoring_MetricDescriptorLabelDescriptor - */ - public function setLabels($labels) - { - $this->labels = $labels; - } - /** - * @return Google_Service_CloudMonitoring_MetricDescriptorLabelDescriptor - */ - public function getLabels() - { - return $this->labels; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setProject($project) - { - $this->project = $project; - } - public function getProject() - { - return $this->project; - } - /** - * @param Google_Service_CloudMonitoring_MetricDescriptorTypeDescriptor - */ - public function setTypeDescriptor(Google_Service_CloudMonitoring_MetricDescriptorTypeDescriptor $typeDescriptor) - { - $this->typeDescriptor = $typeDescriptor; - } - /** - * @return Google_Service_CloudMonitoring_MetricDescriptorTypeDescriptor - */ - public function getTypeDescriptor() - { - return $this->typeDescriptor; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/MetricDescriptorLabelDescriptor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/MetricDescriptorLabelDescriptor.php deleted file mode 100644 index dd04c366..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/MetricDescriptorLabelDescriptor.php +++ /dev/null @@ -1,39 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setKey($key) - { - $this->key = $key; - } - public function getKey() - { - return $this->key; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/MetricDescriptorTypeDescriptor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/MetricDescriptorTypeDescriptor.php deleted file mode 100644 index d5f8864d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/MetricDescriptorTypeDescriptor.php +++ /dev/null @@ -1,39 +0,0 @@ -metricType = $metricType; - } - public function getMetricType() - { - return $this->metricType; - } - public function setValueType($valueType) - { - $this->valueType = $valueType; - } - public function getValueType() - { - return $this->valueType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/Point.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/Point.php deleted file mode 100644 index 97d3af0b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/Point.php +++ /dev/null @@ -1,91 +0,0 @@ -boolValue = $boolValue; - } - public function getBoolValue() - { - return $this->boolValue; - } - /** - * @param Google_Service_CloudMonitoring_PointDistribution - */ - public function setDistributionValue(Google_Service_CloudMonitoring_PointDistribution $distributionValue) - { - $this->distributionValue = $distributionValue; - } - /** - * @return Google_Service_CloudMonitoring_PointDistribution - */ - public function getDistributionValue() - { - return $this->distributionValue; - } - public function setDoubleValue($doubleValue) - { - $this->doubleValue = $doubleValue; - } - public function getDoubleValue() - { - return $this->doubleValue; - } - public function setEnd($end) - { - $this->end = $end; - } - public function getEnd() - { - return $this->end; - } - public function setInt64Value($int64Value) - { - $this->int64Value = $int64Value; - } - public function getInt64Value() - { - return $this->int64Value; - } - public function setStart($start) - { - $this->start = $start; - } - public function getStart() - { - return $this->start; - } - public function setStringValue($stringValue) - { - $this->stringValue = $stringValue; - } - public function getStringValue() - { - return $this->stringValue; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/PointDistribution.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/PointDistribution.php deleted file mode 100644 index c2639d30..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/PointDistribution.php +++ /dev/null @@ -1,70 +0,0 @@ -buckets = $buckets; - } - /** - * @return Google_Service_CloudMonitoring_PointDistributionBucket - */ - public function getBuckets() - { - return $this->buckets; - } - /** - * @param Google_Service_CloudMonitoring_PointDistributionOverflowBucket - */ - public function setOverflowBucket(Google_Service_CloudMonitoring_PointDistributionOverflowBucket $overflowBucket) - { - $this->overflowBucket = $overflowBucket; - } - /** - * @return Google_Service_CloudMonitoring_PointDistributionOverflowBucket - */ - public function getOverflowBucket() - { - return $this->overflowBucket; - } - /** - * @param Google_Service_CloudMonitoring_PointDistributionUnderflowBucket - */ - public function setUnderflowBucket(Google_Service_CloudMonitoring_PointDistributionUnderflowBucket $underflowBucket) - { - $this->underflowBucket = $underflowBucket; - } - /** - * @return Google_Service_CloudMonitoring_PointDistributionUnderflowBucket - */ - public function getUnderflowBucket() - { - return $this->underflowBucket; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/PointDistributionBucket.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/PointDistributionBucket.php deleted file mode 100644 index 2c662d77..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/PointDistributionBucket.php +++ /dev/null @@ -1,48 +0,0 @@ -count = $count; - } - public function getCount() - { - return $this->count; - } - public function setLowerBound($lowerBound) - { - $this->lowerBound = $lowerBound; - } - public function getLowerBound() - { - return $this->lowerBound; - } - public function setUpperBound($upperBound) - { - $this->upperBound = $upperBound; - } - public function getUpperBound() - { - return $this->upperBound; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/PointDistributionOverflowBucket.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/PointDistributionOverflowBucket.php deleted file mode 100644 index 9d39ee22..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/PointDistributionOverflowBucket.php +++ /dev/null @@ -1,39 +0,0 @@ -count = $count; - } - public function getCount() - { - return $this->count; - } - public function setLowerBound($lowerBound) - { - $this->lowerBound = $lowerBound; - } - public function getLowerBound() - { - return $this->lowerBound; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/PointDistributionUnderflowBucket.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/PointDistributionUnderflowBucket.php deleted file mode 100644 index 3e119bae..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/PointDistributionUnderflowBucket.php +++ /dev/null @@ -1,39 +0,0 @@ -count = $count; - } - public function getCount() - { - return $this->count; - } - public function setUpperBound($upperBound) - { - $this->upperBound = $upperBound; - } - public function getUpperBound() - { - return $this->upperBound; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/Resource/MetricDescriptors.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/Resource/MetricDescriptors.php deleted file mode 100644 index 5128dc10..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/Resource/MetricDescriptors.php +++ /dev/null @@ -1,86 +0,0 @@ - - * $cloudmonitoringService = new Google_Service_CloudMonitoring(...); - * $metricDescriptors = $cloudmonitoringService->metricDescriptors; - * - */ -class Google_Service_CloudMonitoring_Resource_MetricDescriptors extends Google_Service_Resource -{ - /** - * Create a new metric. (metricDescriptors.create) - * - * @param string $project The project id. The value can be the numeric project - * ID or string-based project name. - * @param Google_Service_CloudMonitoring_MetricDescriptor $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudMonitoring_MetricDescriptor - */ - public function create($project, Google_Service_CloudMonitoring_MetricDescriptor $postBody, $optParams = array()) - { - $params = array('project' => $project, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_CloudMonitoring_MetricDescriptor"); - } - /** - * Delete an existing metric. (metricDescriptors.delete) - * - * @param string $project The project ID to which the metric belongs. - * @param string $metric Name of the metric. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudMonitoring_DeleteMetricDescriptorResponse - */ - public function delete($project, $metric, $optParams = array()) - { - $params = array('project' => $project, 'metric' => $metric); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudMonitoring_DeleteMetricDescriptorResponse"); - } - /** - * List metric descriptors that match the query. If the query is not set, then - * all of the metric descriptors will be returned. Large responses will be - * paginated, use the nextPageToken returned in the response to request - * subsequent pages of results by setting the pageToken query parameter to the - * value of the nextPageToken. (metricDescriptors.listMetricDescriptors) - * - * @param string $project The project id. The value can be the numeric project - * ID or string-based project name. - * @param array $optParams Optional parameters. - * - * @opt_param int count Maximum number of metric descriptors per page. Used for - * pagination. If not specified, count = 100. - * @opt_param string pageToken The pagination token, which is used to page - * through large result sets. Set this value to the value of the nextPageToken - * to retrieve the next page of results. - * @opt_param string query The query used to search against existing metrics. - * Separate keywords with a space; the service joins all keywords with AND, - * meaning that all keywords must match for a metric to be returned. If this - * field is omitted, all metrics are returned. If an empty string is passed with - * this field, no metrics are returned. - * @return Google_Service_CloudMonitoring_ListMetricDescriptorsResponse - */ - public function listMetricDescriptors($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudMonitoring_ListMetricDescriptorsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/Resource/Timeseries.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/Resource/Timeseries.php deleted file mode 100644 index 946255ec..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/Resource/Timeseries.php +++ /dev/null @@ -1,104 +0,0 @@ - - * $cloudmonitoringService = new Google_Service_CloudMonitoring(...); - * $timeseries = $cloudmonitoringService->timeseries; - * - */ -class Google_Service_CloudMonitoring_Resource_Timeseries extends Google_Service_Resource -{ - /** - * List the data points of the time series that match the metric and labels - * values and that have data points in the interval. Large responses are - * paginated; use the nextPageToken returned in the response to request - * subsequent pages of results by setting the pageToken query parameter to the - * value of the nextPageToken. (timeseries.listTimeseries) - * - * @param string $project The project ID to which this time series belongs. The - * value can be the numeric project ID or string-based project name. - * @param string $metric Metric names are protocol-free URLs as listed in the - * Supported Metrics page. For example, - * compute.googleapis.com/instance/disk/read_ops_count. - * @param string $youngest End of the time interval (inclusive), which is - * expressed as an RFC 3339 timestamp. - * @param array $optParams Optional parameters. - * - * @opt_param string aggregator The aggregation function that will reduce the - * data points in each window to a single point. This parameter is only valid - * for non-cumulative metrics with a value type of INT64 or DOUBLE. - * @opt_param int count Maximum number of data points per page, which is used - * for pagination of results. - * @opt_param string labels A collection of labels for the matching time series, - * which are represented as: - key==value: key equals the value - key=~value: - * key regex matches the value - key!=value: key does not equal the value - - * key!~value: key regex does not match the value For example, to list all of - * the time series descriptors for the region us-central1, you could specify: - * label=cloud.googleapis.com%2Flocation=~us-central1.* - * @opt_param string oldest Start of the time interval (exclusive), which is - * expressed as an RFC 3339 timestamp. If neither oldest nor timespan is - * specified, the default time interval will be (youngest - 4 hours, youngest] - * @opt_param string pageToken The pagination token, which is used to page - * through large result sets. Set this value to the value of the nextPageToken - * to retrieve the next page of results. - * @opt_param string timespan Length of the time interval to query, which is an - * alternative way to declare the interval: (youngest - timespan, youngest]. The - * timespan and oldest parameters should not be used together. Units: - s: - * second - m: minute - h: hour - d: day - w: week Examples: 2s, 3m, 4w. - * Only one unit is allowed, for example: 2w3d is not allowed; you should use - * 17d instead. - * - * If neither oldest nor timespan is specified, the default time interval will - * be (youngest - 4 hours, youngest]. - * @opt_param string window The sampling window. At most one data point will be - * returned for each window in the requested time interval. This parameter is - * only valid for non-cumulative metric types. Units: - m: minute - h: hour - - * d: day - w: week Examples: 3m, 4w. Only one unit is allowed, for example: - * 2w3d is not allowed; you should use 17d instead. - * @return Google_Service_CloudMonitoring_ListTimeseriesResponse - */ - public function listTimeseries($project, $metric, $youngest, $optParams = array()) - { - $params = array('project' => $project, 'metric' => $metric, 'youngest' => $youngest); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudMonitoring_ListTimeseriesResponse"); - } - /** - * Put data points to one or more time series for one or more metrics. If a time - * series does not exist, a new time series will be created. It is not allowed - * to write a time series point that is older than the existing youngest point - * of that time series. Points that are older than the existing youngest point - * of that time series will be discarded silently. Therefore, users should make - * sure that points of a time series are written sequentially in the order of - * their end time. (timeseries.write) - * - * @param string $project The project ID. The value can be the numeric project - * ID or string-based project name. - * @param Google_Service_CloudMonitoring_WriteTimeseriesRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudMonitoring_WriteTimeseriesResponse - */ - public function write($project, Google_Service_CloudMonitoring_WriteTimeseriesRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('write', array($params), "Google_Service_CloudMonitoring_WriteTimeseriesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/Resource/TimeseriesDescriptors.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/Resource/TimeseriesDescriptors.php deleted file mode 100644 index 26b47821..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/Resource/TimeseriesDescriptors.php +++ /dev/null @@ -1,83 +0,0 @@ - - * $cloudmonitoringService = new Google_Service_CloudMonitoring(...); - * $timeseriesDescriptors = $cloudmonitoringService->timeseriesDescriptors; - * - */ -class Google_Service_CloudMonitoring_Resource_TimeseriesDescriptors extends Google_Service_Resource -{ - /** - * List the descriptors of the time series that match the metric and labels - * values and that have data points in the interval. Large responses are - * paginated; use the nextPageToken returned in the response to request - * subsequent pages of results by setting the pageToken query parameter to the - * value of the nextPageToken. (timeseriesDescriptors.listTimeseriesDescriptors) - * - * @param string $project The project ID to which this time series belongs. The - * value can be the numeric project ID or string-based project name. - * @param string $metric Metric names are protocol-free URLs as listed in the - * Supported Metrics page. For example, - * compute.googleapis.com/instance/disk/read_ops_count. - * @param string $youngest End of the time interval (inclusive), which is - * expressed as an RFC 3339 timestamp. - * @param array $optParams Optional parameters. - * - * @opt_param string aggregator The aggregation function that will reduce the - * data points in each window to a single point. This parameter is only valid - * for non-cumulative metrics with a value type of INT64 or DOUBLE. - * @opt_param int count Maximum number of time series descriptors per page. Used - * for pagination. If not specified, count = 100. - * @opt_param string labels A collection of labels for the matching time series, - * which are represented as: - key==value: key equals the value - key=~value: - * key regex matches the value - key!=value: key does not equal the value - - * key!~value: key regex does not match the value For example, to list all of - * the time series descriptors for the region us-central1, you could specify: - * label=cloud.googleapis.com%2Flocation=~us-central1.* - * @opt_param string oldest Start of the time interval (exclusive), which is - * expressed as an RFC 3339 timestamp. If neither oldest nor timespan is - * specified, the default time interval will be (youngest - 4 hours, youngest] - * @opt_param string pageToken The pagination token, which is used to page - * through large result sets. Set this value to the value of the nextPageToken - * to retrieve the next page of results. - * @opt_param string timespan Length of the time interval to query, which is an - * alternative way to declare the interval: (youngest - timespan, youngest]. The - * timespan and oldest parameters should not be used together. Units: - s: - * second - m: minute - h: hour - d: day - w: week Examples: 2s, 3m, 4w. - * Only one unit is allowed, for example: 2w3d is not allowed; you should use - * 17d instead. - * - * If neither oldest nor timespan is specified, the default time interval will - * be (youngest - 4 hours, youngest]. - * @opt_param string window The sampling window. At most one data point will be - * returned for each window in the requested time interval. This parameter is - * only valid for non-cumulative metric types. Units: - m: minute - h: hour - - * d: day - w: week Examples: 3m, 4w. Only one unit is allowed, for example: - * 2w3d is not allowed; you should use 17d instead. - * @return Google_Service_CloudMonitoring_ListTimeseriesDescriptorsResponse - */ - public function listTimeseriesDescriptors($project, $metric, $youngest, $optParams = array()) - { - $params = array('project' => $project, 'metric' => $metric, 'youngest' => $youngest); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudMonitoring_ListTimeseriesDescriptorsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/Timeseries.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/Timeseries.php deleted file mode 100644 index 948e63e5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/Timeseries.php +++ /dev/null @@ -1,54 +0,0 @@ -points = $points; - } - /** - * @return Google_Service_CloudMonitoring_Point - */ - public function getPoints() - { - return $this->points; - } - /** - * @param Google_Service_CloudMonitoring_TimeseriesDescriptor - */ - public function setTimeseriesDesc(Google_Service_CloudMonitoring_TimeseriesDescriptor $timeseriesDesc) - { - $this->timeseriesDesc = $timeseriesDesc; - } - /** - * @return Google_Service_CloudMonitoring_TimeseriesDescriptor - */ - public function getTimeseriesDesc() - { - return $this->timeseriesDesc; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/TimeseriesDescriptor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/TimeseriesDescriptor.php deleted file mode 100644 index afb5c410..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/TimeseriesDescriptor.php +++ /dev/null @@ -1,48 +0,0 @@ -labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setMetric($metric) - { - $this->metric = $metric; - } - public function getMetric() - { - return $this->metric; - } - public function setProject($project) - { - $this->project = $project; - } - public function getProject() - { - return $this->project; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/TimeseriesDescriptorLabel.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/TimeseriesDescriptorLabel.php deleted file mode 100644 index c2b3e595..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/TimeseriesDescriptorLabel.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/TimeseriesPoint.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/TimeseriesPoint.php deleted file mode 100644 index a701ce3a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/TimeseriesPoint.php +++ /dev/null @@ -1,53 +0,0 @@ -point = $point; - } - /** - * @return Google_Service_CloudMonitoring_Point - */ - public function getPoint() - { - return $this->point; - } - /** - * @param Google_Service_CloudMonitoring_TimeseriesDescriptor - */ - public function setTimeseriesDesc(Google_Service_CloudMonitoring_TimeseriesDescriptor $timeseriesDesc) - { - $this->timeseriesDesc = $timeseriesDesc; - } - /** - * @return Google_Service_CloudMonitoring_TimeseriesDescriptor - */ - public function getTimeseriesDesc() - { - return $this->timeseriesDesc; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/WriteTimeseriesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/WriteTimeseriesRequest.php deleted file mode 100644 index e7fe92f7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/WriteTimeseriesRequest.php +++ /dev/null @@ -1,47 +0,0 @@ -commonLabels = $commonLabels; - } - public function getCommonLabels() - { - return $this->commonLabels; - } - /** - * @param Google_Service_CloudMonitoring_TimeseriesPoint - */ - public function setTimeseries($timeseries) - { - $this->timeseries = $timeseries; - } - /** - * @return Google_Service_CloudMonitoring_TimeseriesPoint - */ - public function getTimeseries() - { - return $this->timeseries; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/WriteTimeseriesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/WriteTimeseriesResponse.php deleted file mode 100644 index 71ad6de1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudMonitoring/WriteTimeseriesResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage.php deleted file mode 100644 index 73697d2f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage.php +++ /dev/null @@ -1,94 +0,0 @@ - - * Provides natural language understanding technologies, such as sentiment - * analysis, entity recognition, entity sentiment analysis, and other text - * annotations, to developers.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_CloudNaturalLanguage extends Google_Service -{ - /** Apply machine learning models to reveal the structure and meaning of text. */ - const CLOUD_LANGUAGE = - "https://www.googleapis.com/auth/cloud-language"; - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - - public $documents; - - /** - * Constructs the internal representation of the CloudNaturalLanguage service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://language.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'language'; - - $this->documents = new Google_Service_CloudNaturalLanguage_Resource_Documents( - $this, - $this->serviceName, - 'documents', - array( - 'methods' => array( - 'analyzeEntities' => array( - 'path' => 'v1/documents:analyzeEntities', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'analyzeEntitySentiment' => array( - 'path' => 'v1/documents:analyzeEntitySentiment', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'analyzeSentiment' => array( - 'path' => 'v1/documents:analyzeSentiment', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'analyzeSyntax' => array( - 'path' => 'v1/documents:analyzeSyntax', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'annotateText' => array( - 'path' => 'v1/documents:annotateText', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'classifyText' => array( - 'path' => 'v1/documents:classifyText', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/AnalyzeEntitiesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/AnalyzeEntitiesRequest.php deleted file mode 100644 index 76288e3f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/AnalyzeEntitiesRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -document = $document; - } - /** - * @return Google_Service_CloudNaturalLanguage_Document - */ - public function getDocument() - { - return $this->document; - } - public function setEncodingType($encodingType) - { - $this->encodingType = $encodingType; - } - public function getEncodingType() - { - return $this->encodingType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/AnalyzeEntitiesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/AnalyzeEntitiesResponse.php deleted file mode 100644 index 4244ecde..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/AnalyzeEntitiesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -entities = $entities; - } - /** - * @return Google_Service_CloudNaturalLanguage_Entity - */ - public function getEntities() - { - return $this->entities; - } - public function setLanguage($language) - { - $this->language = $language; - } - public function getLanguage() - { - return $this->language; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/AnalyzeEntitySentimentRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/AnalyzeEntitySentimentRequest.php deleted file mode 100644 index 0abffe7a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/AnalyzeEntitySentimentRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -document = $document; - } - /** - * @return Google_Service_CloudNaturalLanguage_Document - */ - public function getDocument() - { - return $this->document; - } - public function setEncodingType($encodingType) - { - $this->encodingType = $encodingType; - } - public function getEncodingType() - { - return $this->encodingType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/AnalyzeEntitySentimentResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/AnalyzeEntitySentimentResponse.php deleted file mode 100644 index d0aba158..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/AnalyzeEntitySentimentResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -entities = $entities; - } - /** - * @return Google_Service_CloudNaturalLanguage_Entity - */ - public function getEntities() - { - return $this->entities; - } - public function setLanguage($language) - { - $this->language = $language; - } - public function getLanguage() - { - return $this->language; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/AnalyzeSentimentRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/AnalyzeSentimentRequest.php deleted file mode 100644 index a43b78ab..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/AnalyzeSentimentRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -document = $document; - } - /** - * @return Google_Service_CloudNaturalLanguage_Document - */ - public function getDocument() - { - return $this->document; - } - public function setEncodingType($encodingType) - { - $this->encodingType = $encodingType; - } - public function getEncodingType() - { - return $this->encodingType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/AnalyzeSentimentResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/AnalyzeSentimentResponse.php deleted file mode 100644 index 0f9a2723..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/AnalyzeSentimentResponse.php +++ /dev/null @@ -1,63 +0,0 @@ -documentSentiment = $documentSentiment; - } - /** - * @return Google_Service_CloudNaturalLanguage_Sentiment - */ - public function getDocumentSentiment() - { - return $this->documentSentiment; - } - public function setLanguage($language) - { - $this->language = $language; - } - public function getLanguage() - { - return $this->language; - } - /** - * @param Google_Service_CloudNaturalLanguage_Sentence - */ - public function setSentences($sentences) - { - $this->sentences = $sentences; - } - /** - * @return Google_Service_CloudNaturalLanguage_Sentence - */ - public function getSentences() - { - return $this->sentences; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/AnalyzeSyntaxRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/AnalyzeSyntaxRequest.php deleted file mode 100644 index 64b94b7d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/AnalyzeSyntaxRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -document = $document; - } - /** - * @return Google_Service_CloudNaturalLanguage_Document - */ - public function getDocument() - { - return $this->document; - } - public function setEncodingType($encodingType) - { - $this->encodingType = $encodingType; - } - public function getEncodingType() - { - return $this->encodingType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/AnalyzeSyntaxResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/AnalyzeSyntaxResponse.php deleted file mode 100644 index e118fd42..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/AnalyzeSyntaxResponse.php +++ /dev/null @@ -1,63 +0,0 @@ -language = $language; - } - public function getLanguage() - { - return $this->language; - } - /** - * @param Google_Service_CloudNaturalLanguage_Sentence - */ - public function setSentences($sentences) - { - $this->sentences = $sentences; - } - /** - * @return Google_Service_CloudNaturalLanguage_Sentence - */ - public function getSentences() - { - return $this->sentences; - } - /** - * @param Google_Service_CloudNaturalLanguage_Token - */ - public function setTokens($tokens) - { - $this->tokens = $tokens; - } - /** - * @return Google_Service_CloudNaturalLanguage_Token - */ - public function getTokens() - { - return $this->tokens; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/AnnotateTextRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/AnnotateTextRequest.php deleted file mode 100644 index 6d0cb9a5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/AnnotateTextRequest.php +++ /dev/null @@ -1,62 +0,0 @@ -document = $document; - } - /** - * @return Google_Service_CloudNaturalLanguage_Document - */ - public function getDocument() - { - return $this->document; - } - public function setEncodingType($encodingType) - { - $this->encodingType = $encodingType; - } - public function getEncodingType() - { - return $this->encodingType; - } - /** - * @param Google_Service_CloudNaturalLanguage_Features - */ - public function setFeatures(Google_Service_CloudNaturalLanguage_Features $features) - { - $this->features = $features; - } - /** - * @return Google_Service_CloudNaturalLanguage_Features - */ - public function getFeatures() - { - return $this->features; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/AnnotateTextResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/AnnotateTextResponse.php deleted file mode 100644 index 0dca1ddc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/AnnotateTextResponse.php +++ /dev/null @@ -1,111 +0,0 @@ -categories = $categories; - } - /** - * @return Google_Service_CloudNaturalLanguage_ClassificationCategory - */ - public function getCategories() - { - return $this->categories; - } - /** - * @param Google_Service_CloudNaturalLanguage_Sentiment - */ - public function setDocumentSentiment(Google_Service_CloudNaturalLanguage_Sentiment $documentSentiment) - { - $this->documentSentiment = $documentSentiment; - } - /** - * @return Google_Service_CloudNaturalLanguage_Sentiment - */ - public function getDocumentSentiment() - { - return $this->documentSentiment; - } - /** - * @param Google_Service_CloudNaturalLanguage_Entity - */ - public function setEntities($entities) - { - $this->entities = $entities; - } - /** - * @return Google_Service_CloudNaturalLanguage_Entity - */ - public function getEntities() - { - return $this->entities; - } - public function setLanguage($language) - { - $this->language = $language; - } - public function getLanguage() - { - return $this->language; - } - /** - * @param Google_Service_CloudNaturalLanguage_Sentence - */ - public function setSentences($sentences) - { - $this->sentences = $sentences; - } - /** - * @return Google_Service_CloudNaturalLanguage_Sentence - */ - public function getSentences() - { - return $this->sentences; - } - /** - * @param Google_Service_CloudNaturalLanguage_Token - */ - public function setTokens($tokens) - { - $this->tokens = $tokens; - } - /** - * @return Google_Service_CloudNaturalLanguage_Token - */ - public function getTokens() - { - return $this->tokens; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/ClassificationCategory.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/ClassificationCategory.php deleted file mode 100644 index cd48bc98..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/ClassificationCategory.php +++ /dev/null @@ -1,39 +0,0 @@ -confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/ClassifyTextRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/ClassifyTextRequest.php deleted file mode 100644 index 4263d757..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/ClassifyTextRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -document = $document; - } - /** - * @return Google_Service_CloudNaturalLanguage_Document - */ - public function getDocument() - { - return $this->document; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/ClassifyTextResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/ClassifyTextResponse.php deleted file mode 100644 index 3dd05899..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/ClassifyTextResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -categories = $categories; - } - /** - * @return Google_Service_CloudNaturalLanguage_ClassificationCategory - */ - public function getCategories() - { - return $this->categories; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/DependencyEdge.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/DependencyEdge.php deleted file mode 100644 index a9afb889..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/DependencyEdge.php +++ /dev/null @@ -1,39 +0,0 @@ -headTokenIndex = $headTokenIndex; - } - public function getHeadTokenIndex() - { - return $this->headTokenIndex; - } - public function setLabel($label) - { - $this->label = $label; - } - public function getLabel() - { - return $this->label; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/Document.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/Document.php deleted file mode 100644 index d5f46b65..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/Document.php +++ /dev/null @@ -1,57 +0,0 @@ -content = $content; - } - public function getContent() - { - return $this->content; - } - public function setGcsContentUri($gcsContentUri) - { - $this->gcsContentUri = $gcsContentUri; - } - public function getGcsContentUri() - { - return $this->gcsContentUri; - } - public function setLanguage($language) - { - $this->language = $language; - } - public function getLanguage() - { - return $this->language; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/Entity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/Entity.php deleted file mode 100644 index bc246d85..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/Entity.php +++ /dev/null @@ -1,90 +0,0 @@ -mentions = $mentions; - } - /** - * @return Google_Service_CloudNaturalLanguage_EntityMention - */ - public function getMentions() - { - return $this->mentions; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setSalience($salience) - { - $this->salience = $salience; - } - public function getSalience() - { - return $this->salience; - } - /** - * @param Google_Service_CloudNaturalLanguage_Sentiment - */ - public function setSentiment(Google_Service_CloudNaturalLanguage_Sentiment $sentiment) - { - $this->sentiment = $sentiment; - } - /** - * @return Google_Service_CloudNaturalLanguage_Sentiment - */ - public function getSentiment() - { - return $this->sentiment; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/EntityMention.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/EntityMention.php deleted file mode 100644 index d9ad99ae..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/EntityMention.php +++ /dev/null @@ -1,62 +0,0 @@ -sentiment = $sentiment; - } - /** - * @return Google_Service_CloudNaturalLanguage_Sentiment - */ - public function getSentiment() - { - return $this->sentiment; - } - /** - * @param Google_Service_CloudNaturalLanguage_TextSpan - */ - public function setText(Google_Service_CloudNaturalLanguage_TextSpan $text) - { - $this->text = $text; - } - /** - * @return Google_Service_CloudNaturalLanguage_TextSpan - */ - public function getText() - { - return $this->text; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/Features.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/Features.php deleted file mode 100644 index 357e9238..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/Features.php +++ /dev/null @@ -1,66 +0,0 @@ -classifyText = $classifyText; - } - public function getClassifyText() - { - return $this->classifyText; - } - public function setExtractDocumentSentiment($extractDocumentSentiment) - { - $this->extractDocumentSentiment = $extractDocumentSentiment; - } - public function getExtractDocumentSentiment() - { - return $this->extractDocumentSentiment; - } - public function setExtractEntities($extractEntities) - { - $this->extractEntities = $extractEntities; - } - public function getExtractEntities() - { - return $this->extractEntities; - } - public function setExtractEntitySentiment($extractEntitySentiment) - { - $this->extractEntitySentiment = $extractEntitySentiment; - } - public function getExtractEntitySentiment() - { - return $this->extractEntitySentiment; - } - public function setExtractSyntax($extractSyntax) - { - $this->extractSyntax = $extractSyntax; - } - public function getExtractSyntax() - { - return $this->extractSyntax; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/PartOfSpeech.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/PartOfSpeech.php deleted file mode 100644 index 1e72d885..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/PartOfSpeech.php +++ /dev/null @@ -1,129 +0,0 @@ -aspect = $aspect; - } - public function getAspect() - { - return $this->aspect; - } - public function setCase($case) - { - $this->case = $case; - } - public function getCase() - { - return $this->case; - } - public function setForm($form) - { - $this->form = $form; - } - public function getForm() - { - return $this->form; - } - public function setGender($gender) - { - $this->gender = $gender; - } - public function getGender() - { - return $this->gender; - } - public function setMood($mood) - { - $this->mood = $mood; - } - public function getMood() - { - return $this->mood; - } - public function setNumber($number) - { - $this->number = $number; - } - public function getNumber() - { - return $this->number; - } - public function setPerson($person) - { - $this->person = $person; - } - public function getPerson() - { - return $this->person; - } - public function setProper($proper) - { - $this->proper = $proper; - } - public function getProper() - { - return $this->proper; - } - public function setReciprocity($reciprocity) - { - $this->reciprocity = $reciprocity; - } - public function getReciprocity() - { - return $this->reciprocity; - } - public function setTag($tag) - { - $this->tag = $tag; - } - public function getTag() - { - return $this->tag; - } - public function setTense($tense) - { - $this->tense = $tense; - } - public function getTense() - { - return $this->tense; - } - public function setVoice($voice) - { - $this->voice = $voice; - } - public function getVoice() - { - return $this->voice; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/Resource/Documents.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/Resource/Documents.php deleted file mode 100644 index 089aec07..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/Resource/Documents.php +++ /dev/null @@ -1,114 +0,0 @@ - - * $languageService = new Google_Service_CloudNaturalLanguage(...); - * $documents = $languageService->documents; - * - */ -class Google_Service_CloudNaturalLanguage_Resource_Documents extends Google_Service_Resource -{ - /** - * Finds named entities (currently proper names and common nouns) in the text - * along with entity types, salience, mentions for each entity, and other - * properties. (documents.analyzeEntities) - * - * @param Google_Service_CloudNaturalLanguage_AnalyzeEntitiesRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudNaturalLanguage_AnalyzeEntitiesResponse - */ - public function analyzeEntities(Google_Service_CloudNaturalLanguage_AnalyzeEntitiesRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('analyzeEntities', array($params), "Google_Service_CloudNaturalLanguage_AnalyzeEntitiesResponse"); - } - /** - * Finds entities, similar to AnalyzeEntities in the text and analyzes sentiment - * associated with each entity and its mentions. - * (documents.analyzeEntitySentiment) - * - * @param Google_Service_CloudNaturalLanguage_AnalyzeEntitySentimentRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudNaturalLanguage_AnalyzeEntitySentimentResponse - */ - public function analyzeEntitySentiment(Google_Service_CloudNaturalLanguage_AnalyzeEntitySentimentRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('analyzeEntitySentiment', array($params), "Google_Service_CloudNaturalLanguage_AnalyzeEntitySentimentResponse"); - } - /** - * Analyzes the sentiment of the provided text. (documents.analyzeSentiment) - * - * @param Google_Service_CloudNaturalLanguage_AnalyzeSentimentRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudNaturalLanguage_AnalyzeSentimentResponse - */ - public function analyzeSentiment(Google_Service_CloudNaturalLanguage_AnalyzeSentimentRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('analyzeSentiment', array($params), "Google_Service_CloudNaturalLanguage_AnalyzeSentimentResponse"); - } - /** - * Analyzes the syntax of the text and provides sentence boundaries and - * tokenization along with part of speech tags, dependency trees, and other - * properties. (documents.analyzeSyntax) - * - * @param Google_Service_CloudNaturalLanguage_AnalyzeSyntaxRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudNaturalLanguage_AnalyzeSyntaxResponse - */ - public function analyzeSyntax(Google_Service_CloudNaturalLanguage_AnalyzeSyntaxRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('analyzeSyntax', array($params), "Google_Service_CloudNaturalLanguage_AnalyzeSyntaxResponse"); - } - /** - * A convenience method that provides all the features that analyzeSentiment, - * analyzeEntities, and analyzeSyntax provide in one call. - * (documents.annotateText) - * - * @param Google_Service_CloudNaturalLanguage_AnnotateTextRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudNaturalLanguage_AnnotateTextResponse - */ - public function annotateText(Google_Service_CloudNaturalLanguage_AnnotateTextRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('annotateText', array($params), "Google_Service_CloudNaturalLanguage_AnnotateTextResponse"); - } - /** - * Classifies a document into categories. (documents.classifyText) - * - * @param Google_Service_CloudNaturalLanguage_ClassifyTextRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudNaturalLanguage_ClassifyTextResponse - */ - public function classifyText(Google_Service_CloudNaturalLanguage_ClassifyTextRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('classifyText', array($params), "Google_Service_CloudNaturalLanguage_ClassifyTextResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/Sentence.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/Sentence.php deleted file mode 100644 index 356e1f65..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/Sentence.php +++ /dev/null @@ -1,53 +0,0 @@ -sentiment = $sentiment; - } - /** - * @return Google_Service_CloudNaturalLanguage_Sentiment - */ - public function getSentiment() - { - return $this->sentiment; - } - /** - * @param Google_Service_CloudNaturalLanguage_TextSpan - */ - public function setText(Google_Service_CloudNaturalLanguage_TextSpan $text) - { - $this->text = $text; - } - /** - * @return Google_Service_CloudNaturalLanguage_TextSpan - */ - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/Sentiment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/Sentiment.php deleted file mode 100644 index 110194d5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/Sentiment.php +++ /dev/null @@ -1,39 +0,0 @@ -magnitude = $magnitude; - } - public function getMagnitude() - { - return $this->magnitude; - } - public function setScore($score) - { - $this->score = $score; - } - public function getScore() - { - return $this->score; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/Status.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/Status.php deleted file mode 100644 index 366c481f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/Status.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/TextSpan.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/TextSpan.php deleted file mode 100644 index 38f5194e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/TextSpan.php +++ /dev/null @@ -1,39 +0,0 @@ -beginOffset = $beginOffset; - } - public function getBeginOffset() - { - return $this->beginOffset; - } - public function setContent($content) - { - $this->content = $content; - } - public function getContent() - { - return $this->content; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/Token.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/Token.php deleted file mode 100644 index 0c8bb9c5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguage/Token.php +++ /dev/null @@ -1,78 +0,0 @@ -dependencyEdge = $dependencyEdge; - } - /** - * @return Google_Service_CloudNaturalLanguage_DependencyEdge - */ - public function getDependencyEdge() - { - return $this->dependencyEdge; - } - public function setLemma($lemma) - { - $this->lemma = $lemma; - } - public function getLemma() - { - return $this->lemma; - } - /** - * @param Google_Service_CloudNaturalLanguage_PartOfSpeech - */ - public function setPartOfSpeech(Google_Service_CloudNaturalLanguage_PartOfSpeech $partOfSpeech) - { - $this->partOfSpeech = $partOfSpeech; - } - /** - * @return Google_Service_CloudNaturalLanguage_PartOfSpeech - */ - public function getPartOfSpeech() - { - return $this->partOfSpeech; - } - /** - * @param Google_Service_CloudNaturalLanguage_TextSpan - */ - public function setText(Google_Service_CloudNaturalLanguage_TextSpan $text) - { - $this->text = $text; - } - /** - * @return Google_Service_CloudNaturalLanguage_TextSpan - */ - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI.php deleted file mode 100644 index 424b1a29..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI.php +++ /dev/null @@ -1,78 +0,0 @@ - - * Google Cloud Natural Language API provides natural language understanding - * technologies to developers. Examples include sentiment analysis, entity - * recognition, and text annotations.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_CloudNaturalLanguageAPI extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - - public $documents; - - /** - * Constructs the internal representation of the CloudNaturalLanguageAPI - * service. - * - * @param Google_Client $client - */ - public function __construct(Google_Client $client) - { - parent::__construct($client); - $this->rootUrl = 'https://language.googleapis.com/'; - $this->servicePath = ''; - $this->version = 'v1beta1'; - $this->serviceName = 'language'; - - $this->documents = new Google_Service_CloudNaturalLanguageAPI_Resource_Documents( - $this, - $this->serviceName, - 'documents', - array( - 'methods' => array( - 'analyzeEntities' => array( - 'path' => 'v1beta1/documents:analyzeEntities', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'analyzeSentiment' => array( - 'path' => 'v1beta1/documents:analyzeSentiment', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'annotateText' => array( - 'path' => 'v1beta1/documents:annotateText', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI/AnalyzeEntitiesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI/AnalyzeEntitiesRequest.php deleted file mode 100644 index caec51e0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI/AnalyzeEntitiesRequest.php +++ /dev/null @@ -1,40 +0,0 @@ -document = $document; - } - public function getDocument() - { - return $this->document; - } - public function setEncodingType($encodingType) - { - $this->encodingType = $encodingType; - } - public function getEncodingType() - { - return $this->encodingType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI/AnalyzeEntitiesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI/AnalyzeEntitiesResponse.php deleted file mode 100644 index 7281ae3c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI/AnalyzeEntitiesResponse.php +++ /dev/null @@ -1,41 +0,0 @@ -entities = $entities; - } - public function getEntities() - { - return $this->entities; - } - public function setLanguage($language) - { - $this->language = $language; - } - public function getLanguage() - { - return $this->language; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI/AnalyzeSentimentRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI/AnalyzeSentimentRequest.php deleted file mode 100644 index 563d880d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI/AnalyzeSentimentRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -document = $document; - } - public function getDocument() - { - return $this->document; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI/AnalyzeSentimentResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI/AnalyzeSentimentResponse.php deleted file mode 100644 index eb61aed6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI/AnalyzeSentimentResponse.php +++ /dev/null @@ -1,40 +0,0 @@ -documentSentiment = $documentSentiment; - } - public function getDocumentSentiment() - { - return $this->documentSentiment; - } - public function setLanguage($language) - { - $this->language = $language; - } - public function getLanguage() - { - return $this->language; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI/AnnotateTextRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI/AnnotateTextRequest.php deleted file mode 100644 index 329a2a7b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI/AnnotateTextRequest.php +++ /dev/null @@ -1,50 +0,0 @@ -document = $document; - } - public function getDocument() - { - return $this->document; - } - public function setEncodingType($encodingType) - { - $this->encodingType = $encodingType; - } - public function getEncodingType() - { - return $this->encodingType; - } - public function setFeatures(Google_Service_CloudNaturalLanguageAPI_Features $features) - { - $this->features = $features; - } - public function getFeatures() - { - return $this->features; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI/AnnotateTextResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI/AnnotateTextResponse.php deleted file mode 100644 index b3eb3f64..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI/AnnotateTextResponse.php +++ /dev/null @@ -1,71 +0,0 @@ -documentSentiment = $documentSentiment; - } - public function getDocumentSentiment() - { - return $this->documentSentiment; - } - public function setEntities($entities) - { - $this->entities = $entities; - } - public function getEntities() - { - return $this->entities; - } - public function setLanguage($language) - { - $this->language = $language; - } - public function getLanguage() - { - return $this->language; - } - public function setSentences($sentences) - { - $this->sentences = $sentences; - } - public function getSentences() - { - return $this->sentences; - } - public function setTokens($tokens) - { - $this->tokens = $tokens; - } - public function getTokens() - { - return $this->tokens; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI/DependencyEdge.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI/DependencyEdge.php deleted file mode 100644 index a96fe32f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI/DependencyEdge.php +++ /dev/null @@ -1,39 +0,0 @@ -headTokenIndex = $headTokenIndex; - } - public function getHeadTokenIndex() - { - return $this->headTokenIndex; - } - public function setLabel($label) - { - $this->label = $label; - } - public function getLabel() - { - return $this->label; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI/Document.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI/Document.php deleted file mode 100644 index 5bb59d6d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI/Document.php +++ /dev/null @@ -1,57 +0,0 @@ -content = $content; - } - public function getContent() - { - return $this->content; - } - public function setGcsContentUri($gcsContentUri) - { - $this->gcsContentUri = $gcsContentUri; - } - public function getGcsContentUri() - { - return $this->gcsContentUri; - } - public function setLanguage($language) - { - $this->language = $language; - } - public function getLanguage() - { - return $this->language; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI/Entity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI/Entity.php deleted file mode 100644 index 746863b5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI/Entity.php +++ /dev/null @@ -1,68 +0,0 @@ -mentions = $mentions; - } - public function getMentions() - { - return $this->mentions; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setSalience($salience) - { - $this->salience = $salience; - } - public function getSalience() - { - return $this->salience; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI/EntityMention.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI/EntityMention.php deleted file mode 100644 index 9dbe43cc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI/EntityMention.php +++ /dev/null @@ -1,31 +0,0 @@ -text = $text; - } - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI/Features.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI/Features.php deleted file mode 100644 index 3212559e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI/Features.php +++ /dev/null @@ -1,48 +0,0 @@ -extractDocumentSentiment = $extractDocumentSentiment; - } - public function getExtractDocumentSentiment() - { - return $this->extractDocumentSentiment; - } - public function setExtractEntities($extractEntities) - { - $this->extractEntities = $extractEntities; - } - public function getExtractEntities() - { - return $this->extractEntities; - } - public function setExtractSyntax($extractSyntax) - { - $this->extractSyntax = $extractSyntax; - } - public function getExtractSyntax() - { - return $this->extractSyntax; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI/PartOfSpeech.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI/PartOfSpeech.php deleted file mode 100644 index 1e9ab2e2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI/PartOfSpeech.php +++ /dev/null @@ -1,30 +0,0 @@ -tag = $tag; - } - public function getTag() - { - return $this->tag; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI/Resource/Documents.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI/Resource/Documents.php deleted file mode 100644 index 9936bf27..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI/Resource/Documents.php +++ /dev/null @@ -1,71 +0,0 @@ - - * $languageService = new Google_Service_CloudNaturalLanguageAPI(...); - * $documents = $languageService->documents; - * - */ -class Google_Service_CloudNaturalLanguageAPI_Resource_Documents extends Google_Service_Resource -{ - /** - * Finds named entities (currently finds proper names) in the text, entity - * types, salience, mentions for each entity, and other properties. - * (documents.analyzeEntities) - * - * @param Google_Service_CloudNaturalLanguageAPI_AnalyzeEntitiesRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudNaturalLanguageAPI_AnalyzeEntitiesResponse - */ - public function analyzeEntities(Google_Service_CloudNaturalLanguageAPI_AnalyzeEntitiesRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('analyzeEntities', array($params), "Google_Service_CloudNaturalLanguageAPI_AnalyzeEntitiesResponse"); - } - /** - * Analyzes the sentiment of the provided text. (documents.analyzeSentiment) - * - * @param Google_Service_CloudNaturalLanguageAPI_AnalyzeSentimentRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudNaturalLanguageAPI_AnalyzeSentimentResponse - */ - public function analyzeSentiment(Google_Service_CloudNaturalLanguageAPI_AnalyzeSentimentRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('analyzeSentiment', array($params), "Google_Service_CloudNaturalLanguageAPI_AnalyzeSentimentResponse"); - } - /** - * A convenience method that provides all the features that analyzeSentiment, - * analyzeEntities, and analyzeSyntax provide in one call. - * (documents.annotateText) - * - * @param Google_Service_CloudNaturalLanguageAPI_AnnotateTextRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudNaturalLanguageAPI_AnnotateTextResponse - */ - public function annotateText(Google_Service_CloudNaturalLanguageAPI_AnnotateTextRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('annotateText', array($params), "Google_Service_CloudNaturalLanguageAPI_AnnotateTextResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI/Sentence.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI/Sentence.php deleted file mode 100644 index 08bc0658..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI/Sentence.php +++ /dev/null @@ -1,31 +0,0 @@ -text = $text; - } - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI/Sentiment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI/Sentiment.php deleted file mode 100644 index 5689d526..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI/Sentiment.php +++ /dev/null @@ -1,39 +0,0 @@ -magnitude = $magnitude; - } - public function getMagnitude() - { - return $this->magnitude; - } - public function setPolarity($polarity) - { - $this->polarity = $polarity; - } - public function getPolarity() - { - return $this->polarity; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI/Status.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI/Status.php deleted file mode 100644 index d565c3f8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI/Status.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI/TextSpan.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI/TextSpan.php deleted file mode 100644 index ad790692..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI/TextSpan.php +++ /dev/null @@ -1,39 +0,0 @@ -beginOffset = $beginOffset; - } - public function getBeginOffset() - { - return $this->beginOffset; - } - public function setContent($content) - { - $this->content = $content; - } - public function getContent() - { - return $this->content; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI/Token.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI/Token.php deleted file mode 100644 index 0e441591..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudNaturalLanguageAPI/Token.php +++ /dev/null @@ -1,60 +0,0 @@ -dependencyEdge = $dependencyEdge; - } - public function getDependencyEdge() - { - return $this->dependencyEdge; - } - public function setLemma($lemma) - { - $this->lemma = $lemma; - } - public function getLemma() - { - return $this->lemma; - } - public function setPartOfSpeech(Google_Service_CloudNaturalLanguageAPI_PartOfSpeech $partOfSpeech) - { - $this->partOfSpeech = $partOfSpeech; - } - public function getPartOfSpeech() - { - return $this->partOfSpeech; - } - public function setText(Google_Service_CloudNaturalLanguageAPI_TextSpan $text) - { - $this->text = $text; - } - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudOSLogin.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudOSLogin.php deleted file mode 100644 index 300fecd4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudOSLogin.php +++ /dev/null @@ -1,166 +0,0 @@ - - * You can use OS Login to manage access to your VM instances using IAM roles.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_CloudOSLogin extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** View and manage your Google Compute Engine resources. */ - const COMPUTE = - "https://www.googleapis.com/auth/compute"; - - public $users; - public $users_projects; - public $users_sshPublicKeys; - - /** - * Constructs the internal representation of the CloudOSLogin service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://oslogin.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'oslogin'; - - $this->users = new Google_Service_CloudOSLogin_Resource_Users( - $this, - $this->serviceName, - 'users', - array( - 'methods' => array( - 'getLoginProfile' => array( - 'path' => 'v1/{+name}/loginProfile', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'projectId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'systemId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'importSshPublicKey' => array( - 'path' => 'v1/{+parent}:importSshPublicKey', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'projectId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->users_projects = new Google_Service_CloudOSLogin_Resource_UsersProjects( - $this, - $this->serviceName, - 'projects', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->users_sshPublicKeys = new Google_Service_CloudOSLogin_Resource_UsersSshPublicKeys( - $this, - $this->serviceName, - 'sshPublicKeys', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudOSLogin/ImportSshPublicKeyResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudOSLogin/ImportSshPublicKeyResponse.php deleted file mode 100644 index eb7dd513..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudOSLogin/ImportSshPublicKeyResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -loginProfile = $loginProfile; - } - /** - * @return Google_Service_CloudOSLogin_LoginProfile - */ - public function getLoginProfile() - { - return $this->loginProfile; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudOSLogin/LoginProfile.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudOSLogin/LoginProfile.php deleted file mode 100644 index 6b072fb5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudOSLogin/LoginProfile.php +++ /dev/null @@ -1,63 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_CloudOSLogin_PosixAccount - */ - public function setPosixAccounts($posixAccounts) - { - $this->posixAccounts = $posixAccounts; - } - /** - * @return Google_Service_CloudOSLogin_PosixAccount - */ - public function getPosixAccounts() - { - return $this->posixAccounts; - } - /** - * @param Google_Service_CloudOSLogin_SshPublicKey - */ - public function setSshPublicKeys($sshPublicKeys) - { - $this->sshPublicKeys = $sshPublicKeys; - } - /** - * @return Google_Service_CloudOSLogin_SshPublicKey - */ - public function getSshPublicKeys() - { - return $this->sshPublicKeys; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudOSLogin/OsloginEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudOSLogin/OsloginEmpty.php deleted file mode 100644 index fc760456..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudOSLogin/OsloginEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setGecos($gecos) - { - $this->gecos = $gecos; - } - public function getGecos() - { - return $this->gecos; - } - public function setGid($gid) - { - $this->gid = $gid; - } - public function getGid() - { - return $this->gid; - } - public function setHomeDirectory($homeDirectory) - { - $this->homeDirectory = $homeDirectory; - } - public function getHomeDirectory() - { - return $this->homeDirectory; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOperatingSystemType($operatingSystemType) - { - $this->operatingSystemType = $operatingSystemType; - } - public function getOperatingSystemType() - { - return $this->operatingSystemType; - } - public function setPrimary($primary) - { - $this->primary = $primary; - } - public function getPrimary() - { - return $this->primary; - } - public function setShell($shell) - { - $this->shell = $shell; - } - public function getShell() - { - return $this->shell; - } - public function setSystemId($systemId) - { - $this->systemId = $systemId; - } - public function getSystemId() - { - return $this->systemId; - } - public function setUid($uid) - { - $this->uid = $uid; - } - public function getUid() - { - return $this->uid; - } - public function setUsername($username) - { - $this->username = $username; - } - public function getUsername() - { - return $this->username; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudOSLogin/Resource/Users.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudOSLogin/Resource/Users.php deleted file mode 100644 index 335f9b00..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudOSLogin/Resource/Users.php +++ /dev/null @@ -1,68 +0,0 @@ - - * $osloginService = new Google_Service_CloudOSLogin(...); - * $users = $osloginService->users; - * - */ -class Google_Service_CloudOSLogin_Resource_Users extends Google_Service_Resource -{ - /** - * Retrieves the profile information used for logging in to a virtual machine on - * Google Compute Engine. (users.getLoginProfile) - * - * @param string $name Required. The unique ID for the user in format - * `users/{user}`. - * @param array $optParams Optional parameters. - * - * @opt_param string projectId The project ID of the Google Cloud Platform - * project. - * @opt_param string systemId A system ID for filtering the results of the - * request. - * @return Google_Service_CloudOSLogin_LoginProfile - */ - public function getLoginProfile($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('getLoginProfile', array($params), "Google_Service_CloudOSLogin_LoginProfile"); - } - /** - * Adds an SSH public key and returns the profile information. Default POSIX - * account information is set when no username and UID exist as part of the - * login profile. (users.importSshPublicKey) - * - * @param string $parent Required. The unique ID for the user in format - * `users/{user}`. - * @param Google_Service_CloudOSLogin_SshPublicKey $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string projectId The project ID of the Google Cloud Platform - * project. - * @return Google_Service_CloudOSLogin_ImportSshPublicKeyResponse - */ - public function importSshPublicKey($parent, Google_Service_CloudOSLogin_SshPublicKey $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('importSshPublicKey', array($params), "Google_Service_CloudOSLogin_ImportSshPublicKeyResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudOSLogin/Resource/UsersProjects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudOSLogin/Resource/UsersProjects.php deleted file mode 100644 index e78cc406..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudOSLogin/Resource/UsersProjects.php +++ /dev/null @@ -1,44 +0,0 @@ - - * $osloginService = new Google_Service_CloudOSLogin(...); - * $projects = $osloginService->projects; - * - */ -class Google_Service_CloudOSLogin_Resource_UsersProjects extends Google_Service_Resource -{ - /** - * Deletes a POSIX account. (projects.delete) - * - * @param string $name Required. A reference to the POSIX account to update. - * POSIX accounts are identified by the project ID they are associated with. A - * reference to the POSIX account is in format - * `users/{user}/projects/{project}`. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudOSLogin_OsloginEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudOSLogin_OsloginEmpty"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudOSLogin/Resource/UsersSshPublicKeys.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudOSLogin/Resource/UsersSshPublicKeys.php deleted file mode 100644 index f9b5e24d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudOSLogin/Resource/UsersSshPublicKeys.php +++ /dev/null @@ -1,78 +0,0 @@ - - * $osloginService = new Google_Service_CloudOSLogin(...); - * $sshPublicKeys = $osloginService->sshPublicKeys; - * - */ -class Google_Service_CloudOSLogin_Resource_UsersSshPublicKeys extends Google_Service_Resource -{ - /** - * Deletes an SSH public key. (sshPublicKeys.delete) - * - * @param string $name Required. The fingerprint of the public key to update. - * Public keys are identified by their SHA-256 fingerprint. The fingerprint of - * the public key is in format `users/{user}/sshPublicKeys/{fingerprint}`. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudOSLogin_OsloginEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudOSLogin_OsloginEmpty"); - } - /** - * Retrieves an SSH public key. (sshPublicKeys.get) - * - * @param string $name Required. The fingerprint of the public key to retrieve. - * Public keys are identified by their SHA-256 fingerprint. The fingerprint of - * the public key is in format `users/{user}/sshPublicKeys/{fingerprint}`. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudOSLogin_SshPublicKey - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudOSLogin_SshPublicKey"); - } - /** - * Updates an SSH public key and returns the profile information. This method - * supports patch semantics. (sshPublicKeys.patch) - * - * @param string $name Required. The fingerprint of the public key to update. - * Public keys are identified by their SHA-256 fingerprint. The fingerprint of - * the public key is in format `users/{user}/sshPublicKeys/{fingerprint}`. - * @param Google_Service_CloudOSLogin_SshPublicKey $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Mask to control which fields get updated. - * Updates all if not present. - * @return Google_Service_CloudOSLogin_SshPublicKey - */ - public function patch($name, Google_Service_CloudOSLogin_SshPublicKey $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_CloudOSLogin_SshPublicKey"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudOSLogin/SshPublicKey.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudOSLogin/SshPublicKey.php deleted file mode 100644 index bb264bb8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudOSLogin/SshPublicKey.php +++ /dev/null @@ -1,57 +0,0 @@ -expirationTimeUsec = $expirationTimeUsec; - } - public function getExpirationTimeUsec() - { - return $this->expirationTimeUsec; - } - public function setFingerprint($fingerprint) - { - $this->fingerprint = $fingerprint; - } - public function getFingerprint() - { - return $this->fingerprint; - } - public function setKey($key) - { - $this->key = $key; - } - public function getKey() - { - return $this->key; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog.php deleted file mode 100644 index 77991eff..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog.php +++ /dev/null @@ -1,352 +0,0 @@ - - * Enable cloud users to discover enterprise catalogs and products in their - * organizations.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_CloudPrivateCatalog extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - - public $folders_catalogs; - public $folders_products; - public $folders_versions; - public $organizations_catalogs; - public $organizations_products; - public $organizations_versions; - public $projects_catalogs; - public $projects_products; - public $projects_versions; - - /** - * Constructs the internal representation of the CloudPrivateCatalog service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://cloudprivatecatalog.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1beta1'; - $this->serviceName = 'cloudprivatecatalog'; - - $this->folders_catalogs = new Google_Service_CloudPrivateCatalog_Resource_FoldersCatalogs( - $this, - $this->serviceName, - 'catalogs', - array( - 'methods' => array( - 'search' => array( - 'path' => 'v1beta1/{+resource}/catalogs:search', - 'httpMethod' => 'GET', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'query' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->folders_products = new Google_Service_CloudPrivateCatalog_Resource_FoldersProducts( - $this, - $this->serviceName, - 'products', - array( - 'methods' => array( - 'search' => array( - 'path' => 'v1beta1/{+resource}/products:search', - 'httpMethod' => 'GET', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'query' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->folders_versions = new Google_Service_CloudPrivateCatalog_Resource_FoldersVersions( - $this, - $this->serviceName, - 'versions', - array( - 'methods' => array( - 'search' => array( - 'path' => 'v1beta1/{+resource}/versions:search', - 'httpMethod' => 'GET', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'query' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->organizations_catalogs = new Google_Service_CloudPrivateCatalog_Resource_OrganizationsCatalogs( - $this, - $this->serviceName, - 'catalogs', - array( - 'methods' => array( - 'search' => array( - 'path' => 'v1beta1/{+resource}/catalogs:search', - 'httpMethod' => 'GET', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'query' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->organizations_products = new Google_Service_CloudPrivateCatalog_Resource_OrganizationsProducts( - $this, - $this->serviceName, - 'products', - array( - 'methods' => array( - 'search' => array( - 'path' => 'v1beta1/{+resource}/products:search', - 'httpMethod' => 'GET', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'query' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->organizations_versions = new Google_Service_CloudPrivateCatalog_Resource_OrganizationsVersions( - $this, - $this->serviceName, - 'versions', - array( - 'methods' => array( - 'search' => array( - 'path' => 'v1beta1/{+resource}/versions:search', - 'httpMethod' => 'GET', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'query' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_catalogs = new Google_Service_CloudPrivateCatalog_Resource_ProjectsCatalogs( - $this, - $this->serviceName, - 'catalogs', - array( - 'methods' => array( - 'search' => array( - 'path' => 'v1beta1/{+resource}/catalogs:search', - 'httpMethod' => 'GET', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'query' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_products = new Google_Service_CloudPrivateCatalog_Resource_ProjectsProducts( - $this, - $this->serviceName, - 'products', - array( - 'methods' => array( - 'search' => array( - 'path' => 'v1beta1/{+resource}/products:search', - 'httpMethod' => 'GET', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'query' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_versions = new Google_Service_CloudPrivateCatalog_Resource_ProjectsVersions( - $this, - $this->serviceName, - 'versions', - array( - 'methods' => array( - 'search' => array( - 'path' => 'v1beta1/{+resource}/versions:search', - 'httpMethod' => 'GET', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'query' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog/GoogleCloudPrivatecatalogV1beta1Catalog.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog/GoogleCloudPrivatecatalogV1beta1Catalog.php deleted file mode 100644 index b05f6ba1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog/GoogleCloudPrivatecatalogV1beta1Catalog.php +++ /dev/null @@ -1,66 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog/GoogleCloudPrivatecatalogV1beta1Product.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog/GoogleCloudPrivatecatalogV1beta1Product.php deleted file mode 100644 index 87b8f061..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog/GoogleCloudPrivatecatalogV1beta1Product.php +++ /dev/null @@ -1,75 +0,0 @@ -assetType = $assetType; - } - public function getAssetType() - { - return $this->assetType; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setDisplayMetadata($displayMetadata) - { - $this->displayMetadata = $displayMetadata; - } - public function getDisplayMetadata() - { - return $this->displayMetadata; - } - public function setIconUri($iconUri) - { - $this->iconUri = $iconUri; - } - public function getIconUri() - { - return $this->iconUri; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog/GoogleCloudPrivatecatalogV1beta1SearchCatalogsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog/GoogleCloudPrivatecatalogV1beta1SearchCatalogsResponse.php deleted file mode 100644 index 9bab0f86..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog/GoogleCloudPrivatecatalogV1beta1SearchCatalogsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -catalogs = $catalogs; - } - /** - * @return Google_Service_CloudPrivateCatalog_GoogleCloudPrivatecatalogV1beta1Catalog - */ - public function getCatalogs() - { - return $this->catalogs; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog/GoogleCloudPrivatecatalogV1beta1SearchProductsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog/GoogleCloudPrivatecatalogV1beta1SearchProductsResponse.php deleted file mode 100644 index 10aa0e79..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog/GoogleCloudPrivatecatalogV1beta1SearchProductsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_CloudPrivateCatalog_GoogleCloudPrivatecatalogV1beta1Product - */ - public function setProducts($products) - { - $this->products = $products; - } - /** - * @return Google_Service_CloudPrivateCatalog_GoogleCloudPrivatecatalogV1beta1Product - */ - public function getProducts() - { - return $this->products; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog/GoogleCloudPrivatecatalogV1beta1SearchVersionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog/GoogleCloudPrivatecatalogV1beta1SearchVersionsResponse.php deleted file mode 100644 index 5ab50c44..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog/GoogleCloudPrivatecatalogV1beta1SearchVersionsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_CloudPrivateCatalog_GoogleCloudPrivatecatalogV1beta1Version - */ - public function setVersions($versions) - { - $this->versions = $versions; - } - /** - * @return Google_Service_CloudPrivateCatalog_GoogleCloudPrivatecatalogV1beta1Version - */ - public function getVersions() - { - return $this->versions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog/GoogleCloudPrivatecatalogV1beta1Version.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog/GoogleCloudPrivatecatalogV1beta1Version.php deleted file mode 100644 index ff2a5d41..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog/GoogleCloudPrivatecatalogV1beta1Version.php +++ /dev/null @@ -1,66 +0,0 @@ -asset = $asset; - } - public function getAsset() - { - return $this->asset; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog/Resource/Folders.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog/Resource/Folders.php deleted file mode 100644 index bb8e3ad8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog/Resource/Folders.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $cloudprivatecatalogService = new Google_Service_CloudPrivateCatalog(...); - * $folders = $cloudprivatecatalogService->folders; - * - */ -class Google_Service_CloudPrivateCatalog_Resource_Folders extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog/Resource/FoldersCatalogs.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog/Resource/FoldersCatalogs.php deleted file mode 100644 index b330af40..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog/Resource/FoldersCatalogs.php +++ /dev/null @@ -1,55 +0,0 @@ - - * $cloudprivatecatalogService = new Google_Service_CloudPrivateCatalog(...); - * $catalogs = $cloudprivatecatalogService->catalogs; - * - */ -class Google_Service_CloudPrivateCatalog_Resource_FoldersCatalogs extends Google_Service_Resource -{ - /** - * Search Catalog resources that consumers have access to, within the scope of - * the consumer cloud resource hierarchy context. (catalogs.search) - * - * @param string $resource Required. The name of the resource context. It can be - * in following formats: - * - * * `projects/{project_id}` * `folders/{folder_id}` * - * `organizations/{organization_id}` - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A pagination token returned from a previous call - * to SearchCatalogs that indicates where this listing should continue from. - * This field is optional. - * @opt_param int pageSize The maximum number of entries that are requested. - * @opt_param string query The query to filter the catalogs. The supported - * queries are: - * - * * Get a single catalog: `name=catalogs/{catalog_id}` - * @return Google_Service_CloudPrivateCatalog_GoogleCloudPrivatecatalogV1beta1SearchCatalogsResponse - */ - public function search($resource, $optParams = array()) - { - $params = array('resource' => $resource); - $params = array_merge($params, $optParams); - return $this->call('search', array($params), "Google_Service_CloudPrivateCatalog_GoogleCloudPrivatecatalogV1beta1SearchCatalogsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog/Resource/FoldersProducts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog/Resource/FoldersProducts.php deleted file mode 100644 index b5e73f4c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog/Resource/FoldersProducts.php +++ /dev/null @@ -1,53 +0,0 @@ - - * $cloudprivatecatalogService = new Google_Service_CloudPrivateCatalog(...); - * $products = $cloudprivatecatalogService->products; - * - */ -class Google_Service_CloudPrivateCatalog_Resource_FoldersProducts extends Google_Service_Resource -{ - /** - * Search Product resources that consumers have access to, within the scope of - * the consumer cloud resource hierarchy context. (products.search) - * - * @param string $resource Required. The name of the resource context. See - * SearchCatalogsRequest.resource for details. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A pagination token returned from a previous call - * to SearchProducts that indicates where this listing should continue from. - * This field is optional. - * @opt_param int pageSize The maximum number of entries that are requested. - * @opt_param string query The query to filter the products. - * - * The supported queries are: * List products of all catalogs: empty * List - * products under a catalog: `parent=catalogs/{catalog_id}` * Get a product by - * name: `name=catalogs/{catalog_id}/products/{product_id}` - * @return Google_Service_CloudPrivateCatalog_GoogleCloudPrivatecatalogV1beta1SearchProductsResponse - */ - public function search($resource, $optParams = array()) - { - $params = array('resource' => $resource); - $params = array_merge($params, $optParams); - return $this->call('search', array($params), "Google_Service_CloudPrivateCatalog_GoogleCloudPrivatecatalogV1beta1SearchProductsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog/Resource/FoldersVersions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog/Resource/FoldersVersions.php deleted file mode 100644 index 9318a759..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog/Resource/FoldersVersions.php +++ /dev/null @@ -1,53 +0,0 @@ - - * $cloudprivatecatalogService = new Google_Service_CloudPrivateCatalog(...); - * $versions = $cloudprivatecatalogService->versions; - * - */ -class Google_Service_CloudPrivateCatalog_Resource_FoldersVersions extends Google_Service_Resource -{ - /** - * Search Version resources that consumers have access to, within the scope of - * the consumer cloud resource hierarchy context. (versions.search) - * - * @param string $resource Required. The name of the resource context. See - * SearchCatalogsRequest.resource for details. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A pagination token returned from a previous call - * to SearchVersions that indicates where this listing should continue from. - * This field is optional. - * @opt_param int pageSize The maximum number of entries that are requested. - * @opt_param string query The query to filter the versions. Required. - * - * The supported queries are: * List versions under a product: - * `parent=catalogs/{catalog_id}/products/{product_id}` * Get a version by name: - * `name=catalogs/{catalog_id}/products/{product_id}/versions/{version_id}` - * @return Google_Service_CloudPrivateCatalog_GoogleCloudPrivatecatalogV1beta1SearchVersionsResponse - */ - public function search($resource, $optParams = array()) - { - $params = array('resource' => $resource); - $params = array_merge($params, $optParams); - return $this->call('search', array($params), "Google_Service_CloudPrivateCatalog_GoogleCloudPrivatecatalogV1beta1SearchVersionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog/Resource/Organizations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog/Resource/Organizations.php deleted file mode 100644 index 88c0e621..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog/Resource/Organizations.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $cloudprivatecatalogService = new Google_Service_CloudPrivateCatalog(...); - * $organizations = $cloudprivatecatalogService->organizations; - * - */ -class Google_Service_CloudPrivateCatalog_Resource_Organizations extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog/Resource/OrganizationsCatalogs.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog/Resource/OrganizationsCatalogs.php deleted file mode 100644 index c332bbe5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog/Resource/OrganizationsCatalogs.php +++ /dev/null @@ -1,55 +0,0 @@ - - * $cloudprivatecatalogService = new Google_Service_CloudPrivateCatalog(...); - * $catalogs = $cloudprivatecatalogService->catalogs; - * - */ -class Google_Service_CloudPrivateCatalog_Resource_OrganizationsCatalogs extends Google_Service_Resource -{ - /** - * Search Catalog resources that consumers have access to, within the scope of - * the consumer cloud resource hierarchy context. (catalogs.search) - * - * @param string $resource Required. The name of the resource context. It can be - * in following formats: - * - * * `projects/{project_id}` * `folders/{folder_id}` * - * `organizations/{organization_id}` - * @param array $optParams Optional parameters. - * - * @opt_param string query The query to filter the catalogs. The supported - * queries are: - * - * * Get a single catalog: `name=catalogs/{catalog_id}` - * @opt_param string pageToken A pagination token returned from a previous call - * to SearchCatalogs that indicates where this listing should continue from. - * This field is optional. - * @opt_param int pageSize The maximum number of entries that are requested. - * @return Google_Service_CloudPrivateCatalog_GoogleCloudPrivatecatalogV1beta1SearchCatalogsResponse - */ - public function search($resource, $optParams = array()) - { - $params = array('resource' => $resource); - $params = array_merge($params, $optParams); - return $this->call('search', array($params), "Google_Service_CloudPrivateCatalog_GoogleCloudPrivatecatalogV1beta1SearchCatalogsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog/Resource/OrganizationsProducts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog/Resource/OrganizationsProducts.php deleted file mode 100644 index 84d6f4b2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog/Resource/OrganizationsProducts.php +++ /dev/null @@ -1,53 +0,0 @@ - - * $cloudprivatecatalogService = new Google_Service_CloudPrivateCatalog(...); - * $products = $cloudprivatecatalogService->products; - * - */ -class Google_Service_CloudPrivateCatalog_Resource_OrganizationsProducts extends Google_Service_Resource -{ - /** - * Search Product resources that consumers have access to, within the scope of - * the consumer cloud resource hierarchy context. (products.search) - * - * @param string $resource Required. The name of the resource context. See - * SearchCatalogsRequest.resource for details. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A pagination token returned from a previous call - * to SearchProducts that indicates where this listing should continue from. - * This field is optional. - * @opt_param int pageSize The maximum number of entries that are requested. - * @opt_param string query The query to filter the products. - * - * The supported queries are: * List products of all catalogs: empty * List - * products under a catalog: `parent=catalogs/{catalog_id}` * Get a product by - * name: `name=catalogs/{catalog_id}/products/{product_id}` - * @return Google_Service_CloudPrivateCatalog_GoogleCloudPrivatecatalogV1beta1SearchProductsResponse - */ - public function search($resource, $optParams = array()) - { - $params = array('resource' => $resource); - $params = array_merge($params, $optParams); - return $this->call('search', array($params), "Google_Service_CloudPrivateCatalog_GoogleCloudPrivatecatalogV1beta1SearchProductsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog/Resource/OrganizationsVersions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog/Resource/OrganizationsVersions.php deleted file mode 100644 index 7be1d84d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog/Resource/OrganizationsVersions.php +++ /dev/null @@ -1,53 +0,0 @@ - - * $cloudprivatecatalogService = new Google_Service_CloudPrivateCatalog(...); - * $versions = $cloudprivatecatalogService->versions; - * - */ -class Google_Service_CloudPrivateCatalog_Resource_OrganizationsVersions extends Google_Service_Resource -{ - /** - * Search Version resources that consumers have access to, within the scope of - * the consumer cloud resource hierarchy context. (versions.search) - * - * @param string $resource Required. The name of the resource context. See - * SearchCatalogsRequest.resource for details. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A pagination token returned from a previous call - * to SearchVersions that indicates where this listing should continue from. - * This field is optional. - * @opt_param int pageSize The maximum number of entries that are requested. - * @opt_param string query The query to filter the versions. Required. - * - * The supported queries are: * List versions under a product: - * `parent=catalogs/{catalog_id}/products/{product_id}` * Get a version by name: - * `name=catalogs/{catalog_id}/products/{product_id}/versions/{version_id}` - * @return Google_Service_CloudPrivateCatalog_GoogleCloudPrivatecatalogV1beta1SearchVersionsResponse - */ - public function search($resource, $optParams = array()) - { - $params = array('resource' => $resource); - $params = array_merge($params, $optParams); - return $this->call('search', array($params), "Google_Service_CloudPrivateCatalog_GoogleCloudPrivatecatalogV1beta1SearchVersionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog/Resource/Projects.php deleted file mode 100644 index 6ec790f5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog/Resource/Projects.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $cloudprivatecatalogService = new Google_Service_CloudPrivateCatalog(...); - * $projects = $cloudprivatecatalogService->projects; - * - */ -class Google_Service_CloudPrivateCatalog_Resource_Projects extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog/Resource/ProjectsCatalogs.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog/Resource/ProjectsCatalogs.php deleted file mode 100644 index e5a3ade2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog/Resource/ProjectsCatalogs.php +++ /dev/null @@ -1,55 +0,0 @@ - - * $cloudprivatecatalogService = new Google_Service_CloudPrivateCatalog(...); - * $catalogs = $cloudprivatecatalogService->catalogs; - * - */ -class Google_Service_CloudPrivateCatalog_Resource_ProjectsCatalogs extends Google_Service_Resource -{ - /** - * Search Catalog resources that consumers have access to, within the scope of - * the consumer cloud resource hierarchy context. (catalogs.search) - * - * @param string $resource Required. The name of the resource context. It can be - * in following formats: - * - * * `projects/{project_id}` * `folders/{folder_id}` * - * `organizations/{organization_id}` - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A pagination token returned from a previous call - * to SearchCatalogs that indicates where this listing should continue from. - * This field is optional. - * @opt_param int pageSize The maximum number of entries that are requested. - * @opt_param string query The query to filter the catalogs. The supported - * queries are: - * - * * Get a single catalog: `name=catalogs/{catalog_id}` - * @return Google_Service_CloudPrivateCatalog_GoogleCloudPrivatecatalogV1beta1SearchCatalogsResponse - */ - public function search($resource, $optParams = array()) - { - $params = array('resource' => $resource); - $params = array_merge($params, $optParams); - return $this->call('search', array($params), "Google_Service_CloudPrivateCatalog_GoogleCloudPrivatecatalogV1beta1SearchCatalogsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog/Resource/ProjectsProducts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog/Resource/ProjectsProducts.php deleted file mode 100644 index d3951650..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog/Resource/ProjectsProducts.php +++ /dev/null @@ -1,53 +0,0 @@ - - * $cloudprivatecatalogService = new Google_Service_CloudPrivateCatalog(...); - * $products = $cloudprivatecatalogService->products; - * - */ -class Google_Service_CloudPrivateCatalog_Resource_ProjectsProducts extends Google_Service_Resource -{ - /** - * Search Product resources that consumers have access to, within the scope of - * the consumer cloud resource hierarchy context. (products.search) - * - * @param string $resource Required. The name of the resource context. See - * SearchCatalogsRequest.resource for details. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A pagination token returned from a previous call - * to SearchProducts that indicates where this listing should continue from. - * This field is optional. - * @opt_param int pageSize The maximum number of entries that are requested. - * @opt_param string query The query to filter the products. - * - * The supported queries are: * List products of all catalogs: empty * List - * products under a catalog: `parent=catalogs/{catalog_id}` * Get a product by - * name: `name=catalogs/{catalog_id}/products/{product_id}` - * @return Google_Service_CloudPrivateCatalog_GoogleCloudPrivatecatalogV1beta1SearchProductsResponse - */ - public function search($resource, $optParams = array()) - { - $params = array('resource' => $resource); - $params = array_merge($params, $optParams); - return $this->call('search', array($params), "Google_Service_CloudPrivateCatalog_GoogleCloudPrivatecatalogV1beta1SearchProductsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog/Resource/ProjectsVersions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog/Resource/ProjectsVersions.php deleted file mode 100644 index f6480f87..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalog/Resource/ProjectsVersions.php +++ /dev/null @@ -1,53 +0,0 @@ - - * $cloudprivatecatalogService = new Google_Service_CloudPrivateCatalog(...); - * $versions = $cloudprivatecatalogService->versions; - * - */ -class Google_Service_CloudPrivateCatalog_Resource_ProjectsVersions extends Google_Service_Resource -{ - /** - * Search Version resources that consumers have access to, within the scope of - * the consumer cloud resource hierarchy context. (versions.search) - * - * @param string $resource Required. The name of the resource context. See - * SearchCatalogsRequest.resource for details. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A pagination token returned from a previous call - * to SearchVersions that indicates where this listing should continue from. - * This field is optional. - * @opt_param int pageSize The maximum number of entries that are requested. - * @opt_param string query The query to filter the versions. Required. - * - * The supported queries are: * List versions under a product: - * `parent=catalogs/{catalog_id}/products/{product_id}` * Get a version by name: - * `name=catalogs/{catalog_id}/products/{product_id}/versions/{version_id}` - * @return Google_Service_CloudPrivateCatalog_GoogleCloudPrivatecatalogV1beta1SearchVersionsResponse - */ - public function search($resource, $optParams = array()) - { - $params = array('resource' => $resource); - $params = array_merge($params, $optParams); - return $this->call('search', array($params), "Google_Service_CloudPrivateCatalog_GoogleCloudPrivatecatalogV1beta1SearchVersionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer.php deleted file mode 100644 index 5b630709..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer.php +++ /dev/null @@ -1,472 +0,0 @@ - - * Enables cloud users to manage and share enterprise catalogs intheir - * organizations.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_CloudPrivateCatalogProducer extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - - public $catalogs; - public $catalogs_associations; - public $catalogs_products; - public $catalogs_products_icons; - public $catalogs_products_versions; - public $operations; - - /** - * Constructs the internal representation of the CloudPrivateCatalogProducer - * service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://cloudprivatecatalogproducer.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1beta1'; - $this->serviceName = 'cloudprivatecatalogproducer'; - - $this->catalogs = new Google_Service_CloudPrivateCatalogProducer_Resource_Catalogs( - $this, - $this->serviceName, - 'catalogs', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1beta1/catalogs', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'delete' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'force' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'get' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getIamPolicy' => array( - 'path' => 'v1beta1/{+resource}:getIamPolicy', - 'httpMethod' => 'GET', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'options.requestedPolicyVersion' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'list' => array( - 'path' => 'v1beta1/catalogs', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'parent' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setIamPolicy' => array( - 'path' => 'v1beta1/{+resource}:setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => 'v1beta1/{+resource}:testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'undelete' => array( - 'path' => 'v1beta1/{+name}:undelete', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->catalogs_associations = new Google_Service_CloudPrivateCatalogProducer_Resource_CatalogsAssociations( - $this, - $this->serviceName, - 'associations', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1beta1/{+parent}/associations', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1beta1/{+parent}/associations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->catalogs_products = new Google_Service_CloudPrivateCatalogProducer_Resource_CatalogsProducts( - $this, - $this->serviceName, - 'products', - array( - 'methods' => array( - 'copy' => array( - 'path' => 'v1beta1/{+name}:copy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'create' => array( - 'path' => 'v1beta1/{+parent}/products', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1beta1/{+parent}/products', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->catalogs_products_icons = new Google_Service_CloudPrivateCatalogProducer_Resource_CatalogsProductsIcons( - $this, - $this->serviceName, - 'icons', - array( - 'methods' => array( - 'upload' => array( - 'path' => 'v1beta1/{+product}/icons:upload', - 'httpMethod' => 'POST', - 'parameters' => array( - 'product' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->catalogs_products_versions = new Google_Service_CloudPrivateCatalogProducer_Resource_CatalogsProductsVersions( - $this, - $this->serviceName, - 'versions', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1beta1/{+parent}/versions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1beta1/{+parent}/versions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->operations = new Google_Service_CloudPrivateCatalogProducer_Resource_Operations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'cancel' => array( - 'path' => 'v1beta1/{+name}:cancel', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1beta1/operations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleCloudPrivatecatalogproducerV1beta1Association.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleCloudPrivatecatalogproducerV1beta1Association.php deleted file mode 100644 index 254ff017..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleCloudPrivatecatalogproducerV1beta1Association.php +++ /dev/null @@ -1,48 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setResource($resource) - { - $this->resource = $resource; - } - public function getResource() - { - return $this->resource; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleCloudPrivatecatalogproducerV1beta1Catalog.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleCloudPrivatecatalogproducerV1beta1Catalog.php deleted file mode 100644 index 02d233c5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleCloudPrivatecatalogproducerV1beta1Catalog.php +++ /dev/null @@ -1,75 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setParent($parent) - { - $this->parent = $parent; - } - public function getParent() - { - return $this->parent; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleCloudPrivatecatalogproducerV1beta1CopyProductRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleCloudPrivatecatalogproducerV1beta1CopyProductRequest.php deleted file mode 100644 index 3a8984e2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleCloudPrivatecatalogproducerV1beta1CopyProductRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -destinationProductName = $destinationProductName; - } - public function getDestinationProductName() - { - return $this->destinationProductName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleCloudPrivatecatalogproducerV1beta1CreateAssociationRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleCloudPrivatecatalogproducerV1beta1CreateAssociationRequest.php deleted file mode 100644 index 78c44640..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleCloudPrivatecatalogproducerV1beta1CreateAssociationRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -association = $association; - } - /** - * @return Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1Association - */ - public function getAssociation() - { - return $this->association; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleCloudPrivatecatalogproducerV1beta1ListAssociationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleCloudPrivatecatalogproducerV1beta1ListAssociationsResponse.php deleted file mode 100644 index 1bbeaef1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleCloudPrivatecatalogproducerV1beta1ListAssociationsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -associations = $associations; - } - /** - * @return Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1Association - */ - public function getAssociations() - { - return $this->associations; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleCloudPrivatecatalogproducerV1beta1ListCatalogsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleCloudPrivatecatalogproducerV1beta1ListCatalogsResponse.php deleted file mode 100644 index 4e2d57d3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleCloudPrivatecatalogproducerV1beta1ListCatalogsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -catalogs = $catalogs; - } - /** - * @return Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1Catalog - */ - public function getCatalogs() - { - return $this->catalogs; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleCloudPrivatecatalogproducerV1beta1ListProductsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleCloudPrivatecatalogproducerV1beta1ListProductsResponse.php deleted file mode 100644 index b5b5bb80..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleCloudPrivatecatalogproducerV1beta1ListProductsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1Product - */ - public function setProducts($products) - { - $this->products = $products; - } - /** - * @return Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1Product - */ - public function getProducts() - { - return $this->products; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleCloudPrivatecatalogproducerV1beta1ListVersionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleCloudPrivatecatalogproducerV1beta1ListVersionsResponse.php deleted file mode 100644 index 392d62ef..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleCloudPrivatecatalogproducerV1beta1ListVersionsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1Version - */ - public function setVersions($versions) - { - $this->versions = $versions; - } - /** - * @return Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1Version - */ - public function getVersions() - { - return $this->versions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleCloudPrivatecatalogproducerV1beta1Product.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleCloudPrivatecatalogproducerV1beta1Product.php deleted file mode 100644 index 6fa5d808..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleCloudPrivatecatalogproducerV1beta1Product.php +++ /dev/null @@ -1,75 +0,0 @@ -assetType = $assetType; - } - public function getAssetType() - { - return $this->assetType; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setDisplayMetadata($displayMetadata) - { - $this->displayMetadata = $displayMetadata; - } - public function getDisplayMetadata() - { - return $this->displayMetadata; - } - public function setIconUri($iconUri) - { - $this->iconUri = $iconUri; - } - public function getIconUri() - { - return $this->iconUri; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleCloudPrivatecatalogproducerV1beta1UndeleteCatalogRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleCloudPrivatecatalogproducerV1beta1UndeleteCatalogRequest.php deleted file mode 100644 index e4708a3d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleCloudPrivatecatalogproducerV1beta1UndeleteCatalogRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -icon = $icon; - } - public function getIcon() - { - return $this->icon; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleCloudPrivatecatalogproducerV1beta1Version.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleCloudPrivatecatalogproducerV1beta1Version.php deleted file mode 100644 index 1d16ed59..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleCloudPrivatecatalogproducerV1beta1Version.php +++ /dev/null @@ -1,75 +0,0 @@ -asset = $asset; - } - public function getAsset() - { - return $this->asset; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOriginalAsset($originalAsset) - { - $this->originalAsset = $originalAsset; - } - public function getOriginalAsset() - { - return $this->originalAsset; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleIamV1AuditConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleIamV1AuditConfig.php deleted file mode 100644 index b15ce62f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleIamV1AuditConfig.php +++ /dev/null @@ -1,47 +0,0 @@ -auditLogConfigs = $auditLogConfigs; - } - /** - * @return Google_Service_CloudPrivateCatalogProducer_GoogleIamV1AuditLogConfig - */ - public function getAuditLogConfigs() - { - return $this->auditLogConfigs; - } - public function setService($service) - { - $this->service = $service; - } - public function getService() - { - return $this->service; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleIamV1AuditLogConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleIamV1AuditLogConfig.php deleted file mode 100644 index f98f5626..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleIamV1AuditLogConfig.php +++ /dev/null @@ -1,40 +0,0 @@ -exemptedMembers = $exemptedMembers; - } - public function getExemptedMembers() - { - return $this->exemptedMembers; - } - public function setLogType($logType) - { - $this->logType = $logType; - } - public function getLogType() - { - return $this->logType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleIamV1Binding.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleIamV1Binding.php deleted file mode 100644 index f803e307..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleIamV1Binding.php +++ /dev/null @@ -1,56 +0,0 @@ -condition = $condition; - } - /** - * @return Google_Service_CloudPrivateCatalogProducer_GoogleTypeExpr - */ - public function getCondition() - { - return $this->condition; - } - public function setMembers($members) - { - $this->members = $members; - } - public function getMembers() - { - return $this->members; - } - public function setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleIamV1Policy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleIamV1Policy.php deleted file mode 100644 index 6dd94507..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleIamV1Policy.php +++ /dev/null @@ -1,72 +0,0 @@ -auditConfigs = $auditConfigs; - } - /** - * @return Google_Service_CloudPrivateCatalogProducer_GoogleIamV1AuditConfig - */ - public function getAuditConfigs() - { - return $this->auditConfigs; - } - /** - * @param Google_Service_CloudPrivateCatalogProducer_GoogleIamV1Binding - */ - public function setBindings($bindings) - { - $this->bindings = $bindings; - } - /** - * @return Google_Service_CloudPrivateCatalogProducer_GoogleIamV1Binding - */ - public function getBindings() - { - return $this->bindings; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleIamV1SetIamPolicyRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleIamV1SetIamPolicyRequest.php deleted file mode 100644 index 4c12f6a2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleIamV1SetIamPolicyRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -policy = $policy; - } - /** - * @return Google_Service_CloudPrivateCatalogProducer_GoogleIamV1Policy - */ - public function getPolicy() - { - return $this->policy; - } - public function setUpdateMask($updateMask) - { - $this->updateMask = $updateMask; - } - public function getUpdateMask() - { - return $this->updateMask; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleIamV1TestIamPermissionsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleIamV1TestIamPermissionsRequest.php deleted file mode 100644 index b7669667..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleIamV1TestIamPermissionsRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleIamV1TestIamPermissionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleIamV1TestIamPermissionsResponse.php deleted file mode 100644 index 47847a30..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleIamV1TestIamPermissionsResponse.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleLongrunningCancelOperationRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleLongrunningCancelOperationRequest.php deleted file mode 100644 index 09810eff..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleLongrunningCancelOperationRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_CloudPrivateCatalogProducer_GoogleLongrunningOperation - */ - public function setOperations($operations) - { - $this->operations = $operations; - } - /** - * @return Google_Service_CloudPrivateCatalogProducer_GoogleLongrunningOperation - */ - public function getOperations() - { - return $this->operations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleLongrunningOperation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleLongrunningOperation.php deleted file mode 100644 index 51d33b0b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleLongrunningOperation.php +++ /dev/null @@ -1,73 +0,0 @@ -done = $done; - } - public function getDone() - { - return $this->done; - } - /** - * @param Google_Service_CloudPrivateCatalogProducer_GoogleRpcStatus - */ - public function setError(Google_Service_CloudPrivateCatalogProducer_GoogleRpcStatus $error) - { - $this->error = $error; - } - /** - * @return Google_Service_CloudPrivateCatalogProducer_GoogleRpcStatus - */ - public function getError() - { - return $this->error; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleProtobufEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleProtobufEmpty.php deleted file mode 100644 index edf5e2ab..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleProtobufEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleTypeExpr.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleTypeExpr.php deleted file mode 100644 index bf9aba95..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/GoogleTypeExpr.php +++ /dev/null @@ -1,57 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setExpression($expression) - { - $this->expression = $expression; - } - public function getExpression() - { - return $this->expression; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/Resource/Catalogs.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/Resource/Catalogs.php deleted file mode 100644 index 8892a19f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/Resource/Catalogs.php +++ /dev/null @@ -1,185 +0,0 @@ - - * $cloudprivatecatalogproducerService = new Google_Service_CloudPrivateCatalogProducer(...); - * $catalogs = $cloudprivatecatalogproducerService->catalogs; - * - */ -class Google_Service_CloudPrivateCatalogProducer_Resource_Catalogs extends Google_Service_Resource -{ - /** - * Creates a new Catalog resource. (catalogs.create) - * - * @param Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1Catalog $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudPrivateCatalogProducer_GoogleLongrunningOperation - */ - public function create(Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1Catalog $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_CloudPrivateCatalogProducer_GoogleLongrunningOperation"); - } - /** - * Soft deletes an existing Catalog and all resources under it. The catalog can - * only be deleted if there is no associations under it or - * DeleteCatalogRequest.force is true. The delete operation can be recovered by - * the PrivateCatalogProducer.UndeleteCatalog method. (catalogs.delete) - * - * @param string $name The resource name of the catalog. - * @param array $optParams Optional parameters. - * - * @opt_param bool force Forces deletion of the `Catalog` and its `Association` - * resources. If the `Catalog` is still associated with other resources and - * force is not set to true, then the operation fails. - * @return Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1Catalog - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1Catalog"); - } - /** - * Returns the requested Catalog resource. (catalogs.get) - * - * @param string $name The resource name of the catalog. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1Catalog - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1Catalog"); - } - /** - * Gets IAM policy for the specified Catalog. (catalogs.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. - * @return Google_Service_CloudPrivateCatalogProducer_GoogleIamV1Policy - */ - public function getIamPolicy($resource, $optParams = array()) - { - $params = array('resource' => $resource); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_CloudPrivateCatalogProducer_GoogleIamV1Policy"); - } - /** - * Lists Catalog resources that the producer has access to, within the scope of - * the parent resource. (catalogs.listCatalogs) - * - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A pagination token returned from a previous call - * to ListCatalogs that indicates where this listing should continue from. This - * field is optional. - * @opt_param int pageSize The maximum number of catalogs to return. - * @opt_param string parent The resource name of the parent resource. - * @return Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1ListCatalogsResponse - */ - public function listCatalogs($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1ListCatalogsResponse"); - } - /** - * Updates a specific Catalog resource. (catalogs.patch) - * - * @param string $name Output only. The resource name of the catalog, in the - * format `catalogs/{catalog_id}'. - * - * A unique identifier for the catalog, which is generated by catalog service. - * @param Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1Catalog $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Field mask that controls which fields of the - * catalog should be updated. - * @return Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1Catalog - */ - public function patch($name, Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1Catalog $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1Catalog"); - } - /** - * Sets the IAM policy for the specified Catalog. (catalogs.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_CloudPrivateCatalogProducer_GoogleIamV1SetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudPrivateCatalogProducer_GoogleIamV1Policy - */ - public function setIamPolicy($resource, Google_Service_CloudPrivateCatalogProducer_GoogleIamV1SetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_CloudPrivateCatalogProducer_GoogleIamV1Policy"); - } - /** - * Tests the IAM permissions for the specified Catalog. - * (catalogs.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_CloudPrivateCatalogProducer_GoogleIamV1TestIamPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudPrivateCatalogProducer_GoogleIamV1TestIamPermissionsResponse - */ - public function testIamPermissions($resource, Google_Service_CloudPrivateCatalogProducer_GoogleIamV1TestIamPermissionsRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_CloudPrivateCatalogProducer_GoogleIamV1TestIamPermissionsResponse"); - } - /** - * Undeletes a deleted Catalog and all resources under it. (catalogs.undelete) - * - * @param string $name The resource name of the catalog. - * @param Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1UndeleteCatalogRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1Catalog - */ - public function undelete($name, Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1UndeleteCatalogRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('undelete', array($params), "Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1Catalog"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/Resource/CatalogsAssociations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/Resource/CatalogsAssociations.php deleted file mode 100644 index 0125790d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/Resource/CatalogsAssociations.php +++ /dev/null @@ -1,87 +0,0 @@ - - * $cloudprivatecatalogproducerService = new Google_Service_CloudPrivateCatalogProducer(...); - * $associations = $cloudprivatecatalogproducerService->associations; - * - */ -class Google_Service_CloudPrivateCatalogProducer_Resource_CatalogsAssociations extends Google_Service_Resource -{ - /** - * Creates an Association instance under a given Catalog. (associations.create) - * - * @param string $parent The `Catalog` resource's name. - * @param Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1CreateAssociationRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1Association - */ - public function create($parent, Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1CreateAssociationRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1Association"); - } - /** - * Deletes the given Association. (associations.delete) - * - * @param string $name The resource name of the `Association` to delete. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudPrivateCatalogProducer_GoogleProtobufEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudPrivateCatalogProducer_GoogleProtobufEmpty"); - } - /** - * Returns the requested Association resource. (associations.get) - * - * @param string $name The resource name of the `Association` to retrieve. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1Association - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1Association"); - } - /** - * Lists all Association resources under a catalog. - * (associations.listCatalogsAssociations) - * - * @param string $parent The resource name of the `Catalog` whose `Associations` - * are being retrieved. In the format `catalogs/`. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A pagination token returned from the previous - * call to `ListAssociations`. - * @opt_param int pageSize The maximum number of catalog associations to return. - * @return Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1ListAssociationsResponse - */ - public function listCatalogsAssociations($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1ListAssociationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/Resource/CatalogsProducts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/Resource/CatalogsProducts.php deleted file mode 100644 index 8f83614e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/Resource/CatalogsProducts.php +++ /dev/null @@ -1,126 +0,0 @@ - - * $cloudprivatecatalogproducerService = new Google_Service_CloudPrivateCatalogProducer(...); - * $products = $cloudprivatecatalogproducerService->products; - * - */ -class Google_Service_CloudPrivateCatalogProducer_Resource_CatalogsProducts extends Google_Service_Resource -{ - /** - * Copies a Product under another Catalog. (products.copy) - * - * @param string $name The resource name of the current product that is copied - * from. - * @param Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1CopyProductRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudPrivateCatalogProducer_GoogleLongrunningOperation - */ - public function copy($name, Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1CopyProductRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('copy', array($params), "Google_Service_CloudPrivateCatalogProducer_GoogleLongrunningOperation"); - } - /** - * Creates a Product instance under a given Catalog. (products.create) - * - * @param string $parent The catalog name of the new product's parent. - * @param Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1Product $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1Product - */ - public function create($parent, Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1Product $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1Product"); - } - /** - * Hard deletes a Product. (products.delete) - * - * @param string $name The resource name of the product. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudPrivateCatalogProducer_GoogleProtobufEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudPrivateCatalogProducer_GoogleProtobufEmpty"); - } - /** - * Returns the requested Product resource. (products.get) - * - * @param string $name The resource name of the product. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1Product - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1Product"); - } - /** - * Lists Product resources that the producer has access to, within the scope of - * the parent catalog. (products.listCatalogsProducts) - * - * @param string $parent The resource name of the parent resource. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression used to restrict the returned - * results based upon properties of the product. - * @opt_param string pageToken A pagination token returned from a previous call - * to ListProducts that indicates where this listing should continue from. This - * field is optional. - * @opt_param int pageSize The maximum number of products to return. - * @return Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1ListProductsResponse - */ - public function listCatalogsProducts($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1ListProductsResponse"); - } - /** - * Updates a specific Product resource. (products.patch) - * - * @param string $name Required. The resource name of the product in the format - * `catalogs/{catalog_id}/products/a-z*[a-z0-9]'. - * - * A unique identifier for the product under a catalog, which cannot be changed - * after the product is created. The final segment of the name must between 1 - * and 256 characters in length. - * @param Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1Product $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Field mask that controls which fields of the - * product should be updated. - * @return Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1Product - */ - public function patch($name, Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1Product $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1Product"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/Resource/CatalogsProductsIcons.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/Resource/CatalogsProductsIcons.php deleted file mode 100644 index a8d6e39f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/Resource/CatalogsProductsIcons.php +++ /dev/null @@ -1,46 +0,0 @@ - - * $cloudprivatecatalogproducerService = new Google_Service_CloudPrivateCatalogProducer(...); - * $icons = $cloudprivatecatalogproducerService->icons; - * - */ -class Google_Service_CloudPrivateCatalogProducer_Resource_CatalogsProductsIcons extends Google_Service_Resource -{ - /** - * Creates an Icon instance under a given Product. If Product only has a default - * icon, a new Icon instance is created and associated with the given Product. - * If Product already has a non-default icon, the action creates a new Icon - * instance, associates the newly created Icon with the given Product and - * deletes the old icon. (icons.upload) - * - * @param string $product The resource name of the product. - * @param Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1UploadIconRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudPrivateCatalogProducer_GoogleProtobufEmpty - */ - public function upload($product, Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1UploadIconRequest $postBody, $optParams = array()) - { - $params = array('product' => $product, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('upload', array($params), "Google_Service_CloudPrivateCatalogProducer_GoogleProtobufEmpty"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/Resource/CatalogsProductsVersions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/Resource/CatalogsProductsVersions.php deleted file mode 100644 index f3b1224d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/Resource/CatalogsProductsVersions.php +++ /dev/null @@ -1,109 +0,0 @@ - - * $cloudprivatecatalogproducerService = new Google_Service_CloudPrivateCatalogProducer(...); - * $versions = $cloudprivatecatalogproducerService->versions; - * - */ -class Google_Service_CloudPrivateCatalogProducer_Resource_CatalogsProductsVersions extends Google_Service_Resource -{ - /** - * Creates a Version instance under a given Product. (versions.create) - * - * @param string $parent The product name of the new version's parent. - * @param Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1Version $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudPrivateCatalogProducer_GoogleLongrunningOperation - */ - public function create($parent, Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1Version $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_CloudPrivateCatalogProducer_GoogleLongrunningOperation"); - } - /** - * Hard deletes a Version. (versions.delete) - * - * @param string $name The resource name of the version. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudPrivateCatalogProducer_GoogleProtobufEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudPrivateCatalogProducer_GoogleProtobufEmpty"); - } - /** - * Returns the requested Version resource. (versions.get) - * - * @param string $name The resource name of the version. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1Version - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1Version"); - } - /** - * Lists Version resources that the producer has access to, within the scope of - * the parent Product. (versions.listCatalogsProductsVersions) - * - * @param string $parent The resource name of the parent resource. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A pagination token returned from a previous call - * to ListVersions that indicates where this listing should continue from. This - * field is optional. - * @opt_param int pageSize The maximum number of versions to return. - * @return Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1ListVersionsResponse - */ - public function listCatalogsProductsVersions($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1ListVersionsResponse"); - } - /** - * Updates a specific Version resource. (versions.patch) - * - * @param string $name Required. The resource name of the version, in the format - * `catalogs/{catalog_id}/products/{product_id}/versions/a-z*[a-z0-9]'. - * - * A unique identifier for the version under a product, which can't be changed - * after the version is created. The final segment of the name must between 1 - * and 63 characters in length. - * @param Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1Version $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Field mask that controls which fields of the - * version should be updated. - * @return Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1Version - */ - public function patch($name, Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1Version $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_CloudPrivateCatalogProducer_GoogleCloudPrivatecatalogproducerV1beta1Version"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/Resource/Operations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/Resource/Operations.php deleted file mode 100644 index cf7605f0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudPrivateCatalogProducer/Resource/Operations.php +++ /dev/null @@ -1,107 +0,0 @@ - - * $cloudprivatecatalogproducerService = new Google_Service_CloudPrivateCatalogProducer(...); - * $operations = $cloudprivatecatalogproducerService->operations; - * - */ -class Google_Service_CloudPrivateCatalogProducer_Resource_Operations extends Google_Service_Resource -{ - /** - * Starts asynchronous cancellation on a long-running operation. The server - * makes a best effort to cancel the operation, but success is not guaranteed. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or - * other methods to check whether the cancellation succeeded or whether the - * operation completed despite cancellation. On successful cancellation, the - * operation is not deleted; instead, it becomes an operation with an - * Operation.error value with a google.rpc.Status.code of 1, corresponding to - * `Code.CANCELLED`. (operations.cancel) - * - * @param string $name The name of the operation resource to be cancelled. - * @param Google_Service_CloudPrivateCatalogProducer_GoogleLongrunningCancelOperationRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudPrivateCatalogProducer_GoogleProtobufEmpty - */ - public function cancel($name, Google_Service_CloudPrivateCatalogProducer_GoogleLongrunningCancelOperationRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('cancel', array($params), "Google_Service_CloudPrivateCatalogProducer_GoogleProtobufEmpty"); - } - /** - * Deletes a long-running operation. This method indicates that the client is no - * longer interested in the operation result. It does not cancel the operation. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. (operations.delete) - * - * @param string $name The name of the operation resource to be deleted. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudPrivateCatalogProducer_GoogleProtobufEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudPrivateCatalogProducer_GoogleProtobufEmpty"); - } - /** - * Gets the latest state of a long-running operation. Clients can use this - * method to poll the operation result at intervals as recommended by the API - * service. (operations.get) - * - * @param string $name The name of the operation resource. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudPrivateCatalogProducer_GoogleLongrunningOperation - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudPrivateCatalogProducer_GoogleLongrunningOperation"); - } - /** - * Lists operations that match the specified filter in the request. If the - * server doesn't support this method, it returns `UNIMPLEMENTED`. - * - * NOTE: the `name` binding allows API services to override the binding to use - * different resource name schemes, such as `users/operations`. To override the - * binding, API services can add a binding such as - * `"/v1/{name=users}/operations"` to their service configuration. For backwards - * compatibility, the default name includes the operations collection id, - * however overriding users must ensure the name binding is the parent resource, - * without the operations collection id. (operations.listOperations) - * - * @param array $optParams Optional parameters. - * - * @opt_param string name The name of the operation's parent resource. - * @opt_param string pageToken The standard list page token. - * @opt_param int pageSize The standard list page size. - * @opt_param string filter The standard list filter. - * @return Google_Service_CloudPrivateCatalogProducer_GoogleLongrunningListOperationsResponse - */ - public function listOperations($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudPrivateCatalogProducer_GoogleLongrunningListOperationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudProfiler.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudProfiler.php deleted file mode 100644 index ac642e6e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudProfiler.php +++ /dev/null @@ -1,105 +0,0 @@ - - * Manages continuous profiling information.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_CloudProfiler extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** View and write monitoring data for all of your Google and third-party Cloud and API projects. */ - const MONITORING = - "https://www.googleapis.com/auth/monitoring"; - /** Publish metric data to your Google Cloud projects. */ - const MONITORING_WRITE = - "https://www.googleapis.com/auth/monitoring.write"; - - public $projects_profiles; - - /** - * Constructs the internal representation of the CloudProfiler service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://cloudprofiler.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v2'; - $this->serviceName = 'cloudprofiler'; - - $this->projects_profiles = new Google_Service_CloudProfiler_Resource_ProjectsProfiles( - $this, - $this->serviceName, - 'profiles', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v2/{+parent}/profiles', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'createOffline' => array( - 'path' => 'v2/{+parent}/profiles:createOffline', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudProfiler/CreateProfileRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudProfiler/CreateProfileRequest.php deleted file mode 100644 index 5f7a5a4f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudProfiler/CreateProfileRequest.php +++ /dev/null @@ -1,47 +0,0 @@ -deployment = $deployment; - } - /** - * @return Google_Service_CloudProfiler_Deployment - */ - public function getDeployment() - { - return $this->deployment; - } - public function setProfileType($profileType) - { - $this->profileType = $profileType; - } - public function getProfileType() - { - return $this->profileType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudProfiler/Deployment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudProfiler/Deployment.php deleted file mode 100644 index bddd102b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudProfiler/Deployment.php +++ /dev/null @@ -1,48 +0,0 @@ -labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } - public function setTarget($target) - { - $this->target = $target; - } - public function getTarget() - { - return $this->target; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudProfiler/Profile.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudProfiler/Profile.php deleted file mode 100644 index b8e2a016..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudProfiler/Profile.php +++ /dev/null @@ -1,82 +0,0 @@ -deployment = $deployment; - } - /** - * @return Google_Service_CloudProfiler_Deployment - */ - public function getDeployment() - { - return $this->deployment; - } - public function setDuration($duration) - { - $this->duration = $duration; - } - public function getDuration() - { - return $this->duration; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setProfileBytes($profileBytes) - { - $this->profileBytes = $profileBytes; - } - public function getProfileBytes() - { - return $this->profileBytes; - } - public function setProfileType($profileType) - { - $this->profileType = $profileType; - } - public function getProfileType() - { - return $this->profileType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudProfiler/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudProfiler/Resource/Projects.php deleted file mode 100644 index e6205865..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudProfiler/Resource/Projects.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $cloudprofilerService = new Google_Service_CloudProfiler(...); - * $projects = $cloudprofilerService->projects; - * - */ -class Google_Service_CloudProfiler_Resource_Projects extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudProfiler/Resource/ProjectsProfiles.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudProfiler/Resource/ProjectsProfiles.php deleted file mode 100644 index 3f50cb0b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudProfiler/Resource/ProjectsProfiles.php +++ /dev/null @@ -1,92 +0,0 @@ - - * $cloudprofilerService = new Google_Service_CloudProfiler(...); - * $profiles = $cloudprofilerService->profiles; - * - */ -class Google_Service_CloudProfiler_Resource_ProjectsProfiles extends Google_Service_Resource -{ - /** - * CreateProfile creates a new profile resource in the online mode. - * - * The server ensures that the new profiles are created at a constant rate per - * deployment, so the creation request may hang for some time until the next - * profile session is available. - * - * The request may fail with ABORTED error if the creation is not available - * within ~1m, the response will indicate the duration of the backoff the client - * should take before attempting creating a profile again. The backoff duration - * is returned in google.rpc.RetryInfo extension on the response status. To a - * gRPC client, the extension will be return as a binary-serialized proto in the - * trailing metadata item named "google.rpc.retryinfo-bin". (profiles.create) - * - * @param string $parent Parent project to create the profile in. - * @param Google_Service_CloudProfiler_CreateProfileRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudProfiler_Profile - */ - public function create($parent, Google_Service_CloudProfiler_CreateProfileRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_CloudProfiler_Profile"); - } - /** - * CreateOfflineProfile creates a new profile resource in the offline mode. The - * client provides the profile to create along with the profile bytes, the - * server records it. (profiles.createOffline) - * - * @param string $parent Parent project to create the profile in. - * @param Google_Service_CloudProfiler_Profile $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudProfiler_Profile - */ - public function createOffline($parent, Google_Service_CloudProfiler_Profile $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('createOffline', array($params), "Google_Service_CloudProfiler_Profile"); - } - /** - * UpdateProfile updates the profile bytes and labels on the profile resource - * created in the online mode. Updating the bytes for profiles created in the - * offline mode is currently not supported: the profile content must be provided - * at the time of the profile creation. (profiles.patch) - * - * @param string $name Output only. Opaque, server-assigned, unique ID for this - * profile. - * @param Google_Service_CloudProfiler_Profile $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Field mask used to specify the fields to be - * overwritten. Currently only profile_bytes and labels fields are supported by - * UpdateProfile, so only those fields can be specified in the mask. When no - * mask is provided, all fields are overwritten. - * @return Google_Service_CloudProfiler_Profile - */ - public function patch($name, Google_Service_CloudProfiler_Profile $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_CloudProfiler_Profile"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis.php deleted file mode 100644 index 72f0d6b3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis.php +++ /dev/null @@ -1,267 +0,0 @@ - - * Creates and manages Redis instances on the Google Cloud Platform.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_CloudRedis extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - - public $projects_locations; - public $projects_locations_instances; - public $projects_locations_operations; - - /** - * Constructs the internal representation of the CloudRedis service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://redis.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'redis'; - - $this->projects_locations = new Google_Service_CloudRedis_Resource_ProjectsLocations( - $this, - $this->serviceName, - 'locations', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+name}/locations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->projects_locations_instances = new Google_Service_CloudRedis_Resource_ProjectsLocationsInstances( - $this, - $this->serviceName, - 'instances', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/instances', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instanceId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'export' => array( - 'path' => 'v1/{+name}:export', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'failover' => array( - 'path' => 'v1/{+name}:failover', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'import' => array( - 'path' => 'v1/{+name}:import', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/instances', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_locations_operations = new Google_Service_CloudRedis_Resource_ProjectsLocationsOperations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'cancel' => array( - 'path' => 'v1/{+name}:cancel', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+name}/operations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/ExportInstanceRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/ExportInstanceRequest.php deleted file mode 100644 index a1d56a58..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/ExportInstanceRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -outputConfig = $outputConfig; - } - /** - * @return Google_Service_CloudRedis_OutputConfig - */ - public function getOutputConfig() - { - return $this->outputConfig; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/FailoverInstanceRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/FailoverInstanceRequest.php deleted file mode 100644 index 3d6ee3ff..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/FailoverInstanceRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -dataProtectionMode = $dataProtectionMode; - } - public function getDataProtectionMode() - { - return $this->dataProtectionMode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/GcsDestination.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/GcsDestination.php deleted file mode 100644 index e7bc925e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/GcsDestination.php +++ /dev/null @@ -1,30 +0,0 @@ -uri = $uri; - } - public function getUri() - { - return $this->uri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/GcsSource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/GcsSource.php deleted file mode 100644 index 8940467f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/GcsSource.php +++ /dev/null @@ -1,30 +0,0 @@ -uri = $uri; - } - public function getUri() - { - return $this->uri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/GoogleCloudRedisV1LocationMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/GoogleCloudRedisV1LocationMetadata.php deleted file mode 100644 index e0c6991e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/GoogleCloudRedisV1LocationMetadata.php +++ /dev/null @@ -1,37 +0,0 @@ -availableZones = $availableZones; - } - /** - * @return Google_Service_CloudRedis_GoogleCloudRedisV1ZoneMetadata - */ - public function getAvailableZones() - { - return $this->availableZones; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/GoogleCloudRedisV1OperationMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/GoogleCloudRedisV1OperationMetadata.php deleted file mode 100644 index 04be6a19..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/GoogleCloudRedisV1OperationMetadata.php +++ /dev/null @@ -1,84 +0,0 @@ -apiVersion = $apiVersion; - } - public function getApiVersion() - { - return $this->apiVersion; - } - public function setCancelRequested($cancelRequested) - { - $this->cancelRequested = $cancelRequested; - } - public function getCancelRequested() - { - return $this->cancelRequested; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setStatusDetail($statusDetail) - { - $this->statusDetail = $statusDetail; - } - public function getStatusDetail() - { - return $this->statusDetail; - } - public function setTarget($target) - { - $this->target = $target; - } - public function getTarget() - { - return $this->target; - } - public function setVerb($verb) - { - $this->verb = $verb; - } - public function getVerb() - { - return $this->verb; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/GoogleCloudRedisV1ZoneMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/GoogleCloudRedisV1ZoneMetadata.php deleted file mode 100644 index e4c073b5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/GoogleCloudRedisV1ZoneMetadata.php +++ /dev/null @@ -1,20 +0,0 @@ -inputConfig = $inputConfig; - } - /** - * @return Google_Service_CloudRedis_InputConfig - */ - public function getInputConfig() - { - return $this->inputConfig; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/InputConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/InputConfig.php deleted file mode 100644 index ccd4cbc8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/InputConfig.php +++ /dev/null @@ -1,37 +0,0 @@ -gcsSource = $gcsSource; - } - /** - * @return Google_Service_CloudRedis_GcsSource - */ - public function getGcsSource() - { - return $this->gcsSource; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/Instance.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/Instance.php deleted file mode 100644 index 8da38399..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/Instance.php +++ /dev/null @@ -1,192 +0,0 @@ -alternativeLocationId = $alternativeLocationId; - } - public function getAlternativeLocationId() - { - return $this->alternativeLocationId; - } - public function setAuthorizedNetwork($authorizedNetwork) - { - $this->authorizedNetwork = $authorizedNetwork; - } - public function getAuthorizedNetwork() - { - return $this->authorizedNetwork; - } - public function setConnectMode($connectMode) - { - $this->connectMode = $connectMode; - } - public function getConnectMode() - { - return $this->connectMode; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setCurrentLocationId($currentLocationId) - { - $this->currentLocationId = $currentLocationId; - } - public function getCurrentLocationId() - { - return $this->currentLocationId; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setHost($host) - { - $this->host = $host; - } - public function getHost() - { - return $this->host; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setLocationId($locationId) - { - $this->locationId = $locationId; - } - public function getLocationId() - { - return $this->locationId; - } - public function setMemorySizeGb($memorySizeGb) - { - $this->memorySizeGb = $memorySizeGb; - } - public function getMemorySizeGb() - { - return $this->memorySizeGb; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPersistenceIamIdentity($persistenceIamIdentity) - { - $this->persistenceIamIdentity = $persistenceIamIdentity; - } - public function getPersistenceIamIdentity() - { - return $this->persistenceIamIdentity; - } - public function setPort($port) - { - $this->port = $port; - } - public function getPort() - { - return $this->port; - } - public function setRedisConfigs($redisConfigs) - { - $this->redisConfigs = $redisConfigs; - } - public function getRedisConfigs() - { - return $this->redisConfigs; - } - public function setRedisVersion($redisVersion) - { - $this->redisVersion = $redisVersion; - } - public function getRedisVersion() - { - return $this->redisVersion; - } - public function setReservedIpRange($reservedIpRange) - { - $this->reservedIpRange = $reservedIpRange; - } - public function getReservedIpRange() - { - return $this->reservedIpRange; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setStatusMessage($statusMessage) - { - $this->statusMessage = $statusMessage; - } - public function getStatusMessage() - { - return $this->statusMessage; - } - public function setTier($tier) - { - $this->tier = $tier; - } - public function getTier() - { - return $this->tier; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/ListInstancesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/ListInstancesResponse.php deleted file mode 100644 index 32ca911b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/ListInstancesResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -instances = $instances; - } - /** - * @return Google_Service_CloudRedis_Instance - */ - public function getInstances() - { - return $this->instances; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setUnreachable($unreachable) - { - $this->unreachable = $unreachable; - } - public function getUnreachable() - { - return $this->unreachable; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/ListLocationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/ListLocationsResponse.php deleted file mode 100644 index 6ffc14d9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/ListLocationsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -locations = $locations; - } - /** - * @return Google_Service_CloudRedis_Location - */ - public function getLocations() - { - return $this->locations; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/ListOperationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/ListOperationsResponse.php deleted file mode 100644 index aaca54d8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/ListOperationsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_CloudRedis_Operation - */ - public function setOperations($operations) - { - $this->operations = $operations; - } - /** - * @return Google_Service_CloudRedis_Operation - */ - public function getOperations() - { - return $this->operations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/Location.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/Location.php deleted file mode 100644 index b506d486..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/Location.php +++ /dev/null @@ -1,66 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setLocationId($locationId) - { - $this->locationId = $locationId; - } - public function getLocationId() - { - return $this->locationId; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/Operation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/Operation.php deleted file mode 100644 index 69dcc199..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/Operation.php +++ /dev/null @@ -1,73 +0,0 @@ -done = $done; - } - public function getDone() - { - return $this->done; - } - /** - * @param Google_Service_CloudRedis_Status - */ - public function setError(Google_Service_CloudRedis_Status $error) - { - $this->error = $error; - } - /** - * @return Google_Service_CloudRedis_Status - */ - public function getError() - { - return $this->error; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/OutputConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/OutputConfig.php deleted file mode 100644 index 59512b6c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/OutputConfig.php +++ /dev/null @@ -1,37 +0,0 @@ -gcsDestination = $gcsDestination; - } - /** - * @return Google_Service_CloudRedis_GcsDestination - */ - public function getGcsDestination() - { - return $this->gcsDestination; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/RedisEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/RedisEmpty.php deleted file mode 100644 index 88e47623..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/RedisEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ - - * $redisService = new Google_Service_CloudRedis(...); - * $projects = $redisService->projects; - * - */ -class Google_Service_CloudRedis_Resource_Projects extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/Resource/ProjectsLocations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/Resource/ProjectsLocations.php deleted file mode 100644 index 6a90ac3d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/Resource/ProjectsLocations.php +++ /dev/null @@ -1,60 +0,0 @@ - - * $redisService = new Google_Service_CloudRedis(...); - * $locations = $redisService->locations; - * - */ -class Google_Service_CloudRedis_Resource_ProjectsLocations extends Google_Service_Resource -{ - /** - * Gets information about a location. (locations.get) - * - * @param string $name Resource name for the location. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudRedis_Location - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudRedis_Location"); - } - /** - * Lists information about the supported locations for this service. - * (locations.listProjectsLocations) - * - * @param string $name The resource that owns the locations collection, if - * applicable. - * @param array $optParams Optional parameters. - * - * @opt_param string filter The standard list filter. - * @opt_param string pageToken The standard list page token. - * @opt_param int pageSize The standard list page size. - * @return Google_Service_CloudRedis_ListLocationsResponse - */ - public function listProjectsLocations($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudRedis_ListLocationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/Resource/ProjectsLocationsInstances.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/Resource/ProjectsLocationsInstances.php deleted file mode 100644 index cc3362d3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/Resource/ProjectsLocationsInstances.php +++ /dev/null @@ -1,220 +0,0 @@ - - * $redisService = new Google_Service_CloudRedis(...); - * $instances = $redisService->instances; - * - */ -class Google_Service_CloudRedis_Resource_ProjectsLocationsInstances extends Google_Service_Resource -{ - /** - * Creates a Redis instance based on the specified tier and memory size. - * - * By default, the instance is accessible from the project's [default - * network](/compute/docs/networks-and-firewalls#networks). - * - * The creation is executed asynchronously and callers may check the returned - * operation to track its progress. Once the operation is completed the Redis - * instance will be fully functional. Completed longrunning.Operation will - * contain the new instance object in the response field. - * - * The returned operation is automatically deleted after a few hours, so there - * is no need to call DeleteOperation. (instances.create) - * - * @param string $parent Required. The resource name of the instance location - * using the form: `projects/{project_id}/locations/{location_id}` where - * `location_id` refers to a GCP region. - * @param Google_Service_CloudRedis_Instance $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string instanceId Required. The logical name of the Redis instance - * in the customer project with the following restrictions: - * - * * Must contain only lowercase letters, numbers, and hyphens. * Must start - * with a letter. * Must be between 1-40 characters. * Must end with a number or - * a letter. * Must be unique within the customer project / location - * @return Google_Service_CloudRedis_Operation - */ - public function create($parent, Google_Service_CloudRedis_Instance $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_CloudRedis_Operation"); - } - /** - * Deletes a specific Redis instance. Instance stops serving and data is - * deleted. (instances.delete) - * - * @param string $name Required. Redis instance resource name using the form: - * `projects/{project_id}/locations/{location_id}/instances/{instance_id}` where - * `location_id` refers to a GCP region. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudRedis_Operation - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudRedis_Operation"); - } - /** - * Export Redis instance data into a Redis RDB format file in Cloud Storage. - * - * Redis will continue serving during this operation. - * - * The returned operation is automatically deleted after a few hours, so there - * is no need to call DeleteOperation. (instances.export) - * - * @param string $name Required. Redis instance resource name using the form: - * `projects/{project_id}/locations/{location_id}/instances/{instance_id}` where - * `location_id` refers to a GCP region. - * @param Google_Service_CloudRedis_ExportInstanceRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudRedis_Operation - */ - public function export($name, Google_Service_CloudRedis_ExportInstanceRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('export', array($params), "Google_Service_CloudRedis_Operation"); - } - /** - * Initiates a failover of the master node to current replica node for a - * specific STANDARD tier Cloud Memorystore for Redis instance. - * (instances.failover) - * - * @param string $name Required. Redis instance resource name using the form: - * `projects/{project_id}/locations/{location_id}/instances/{instance_id}` where - * `location_id` refers to a GCP region. - * @param Google_Service_CloudRedis_FailoverInstanceRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudRedis_Operation - */ - public function failover($name, Google_Service_CloudRedis_FailoverInstanceRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('failover', array($params), "Google_Service_CloudRedis_Operation"); - } - /** - * Gets the details of a specific Redis instance. (instances.get) - * - * @param string $name Required. Redis instance resource name using the form: - * `projects/{project_id}/locations/{location_id}/instances/{instance_id}` where - * `location_id` refers to a GCP region. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudRedis_Instance - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudRedis_Instance"); - } - /** - * Import a Redis RDB snapshot file from Cloud Storage into a Redis instance. - * - * Redis may stop serving during this operation. Instance state will be - * IMPORTING for entire operation. When complete, the instance will contain only - * data from the imported file. - * - * The returned operation is automatically deleted after a few hours, so there - * is no need to call DeleteOperation. (instances.import) - * - * @param string $name Required. Redis instance resource name using the form: - * `projects/{project_id}/locations/{location_id}/instances/{instance_id}` where - * `location_id` refers to a GCP region. - * @param Google_Service_CloudRedis_ImportInstanceRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudRedis_Operation - */ - public function import($name, Google_Service_CloudRedis_ImportInstanceRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('import', array($params), "Google_Service_CloudRedis_Operation"); - } - /** - * Lists all Redis instances owned by a project in either the specified location - * (region) or all locations. - * - * The location should have the following format: - * - * * `projects/{project_id}/locations/{location_id}` - * - * If `location_id` is specified as `-` (wildcard), then all regions available - * to the project are queried, and the results are aggregated. - * (instances.listProjectsLocationsInstances) - * - * @param string $parent Required. The resource name of the instance location - * using the form: `projects/{project_id}/locations/{location_id}` where - * `location_id` refers to a GCP region. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The `next_page_token` value returned from a - * previous ListInstances request, if any. - * @opt_param int pageSize The maximum number of items to return. - * - * If not specified, a default value of 1000 will be used by the service. - * Regardless of the page_size value, the response may include a partial list - * and a caller should only rely on response's `next_page_token` to determine if - * there are more instances left to be queried. - * @return Google_Service_CloudRedis_ListInstancesResponse - */ - public function listProjectsLocationsInstances($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudRedis_ListInstancesResponse"); - } - /** - * Updates the metadata and configuration of a specific Redis instance. - * - * Completed longrunning.Operation will contain the new instance object in the - * response field. The returned operation is automatically deleted after a few - * hours, so there is no need to call DeleteOperation. (instances.patch) - * - * @param string $name Required. Unique name of the resource in this scope - * including project and location using the form: - * `projects/{project_id}/locations/{location_id}/instances/{instance_id}` - * - * Note: Redis instances are managed and addressed at regional level so - * location_id here refers to a GCP region; however, users may choose which - * specific zone (or collection of zones for cross-zone instances) an instance - * should be provisioned in. Refer to location_id and alternative_location_id - * fields for more details. - * @param Google_Service_CloudRedis_Instance $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Required. Mask of fields to update. At least one - * path must be supplied in this field. The elements of the repeated paths field - * may only include these fields from Instance: - * - * `displayName` `labels` `memorySizeGb` `redisConfig` - * @return Google_Service_CloudRedis_Operation - */ - public function patch($name, Google_Service_CloudRedis_Instance $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_CloudRedis_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/Resource/ProjectsLocationsOperations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/Resource/ProjectsLocationsOperations.php deleted file mode 100644 index 4fd75832..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/Resource/ProjectsLocationsOperations.php +++ /dev/null @@ -1,107 +0,0 @@ - - * $redisService = new Google_Service_CloudRedis(...); - * $operations = $redisService->operations; - * - */ -class Google_Service_CloudRedis_Resource_ProjectsLocationsOperations extends Google_Service_Resource -{ - /** - * Starts asynchronous cancellation on a long-running operation. The server - * makes a best effort to cancel the operation, but success is not guaranteed. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or - * other methods to check whether the cancellation succeeded or whether the - * operation completed despite cancellation. On successful cancellation, the - * operation is not deleted; instead, it becomes an operation with an - * Operation.error value with a google.rpc.Status.code of 1, corresponding to - * `Code.CANCELLED`. (operations.cancel) - * - * @param string $name The name of the operation resource to be cancelled. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudRedis_RedisEmpty - */ - public function cancel($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('cancel', array($params), "Google_Service_CloudRedis_RedisEmpty"); - } - /** - * Deletes a long-running operation. This method indicates that the client is no - * longer interested in the operation result. It does not cancel the operation. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. (operations.delete) - * - * @param string $name The name of the operation resource to be deleted. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudRedis_RedisEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudRedis_RedisEmpty"); - } - /** - * Gets the latest state of a long-running operation. Clients can use this - * method to poll the operation result at intervals as recommended by the API - * service. (operations.get) - * - * @param string $name The name of the operation resource. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudRedis_Operation - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudRedis_Operation"); - } - /** - * Lists operations that match the specified filter in the request. If the - * server doesn't support this method, it returns `UNIMPLEMENTED`. - * - * NOTE: the `name` binding allows API services to override the binding to use - * different resource name schemes, such as `users/operations`. To override the - * binding, API services can add a binding such as - * `"/v1/{name=users}/operations"` to their service configuration. For backwards - * compatibility, the default name includes the operations collection id, - * however overriding users must ensure the name binding is the parent resource, - * without the operations collection id. - * (operations.listProjectsLocationsOperations) - * - * @param string $name The name of the operation's parent resource. - * @param array $optParams Optional parameters. - * - * @opt_param int pageSize The standard list page size. - * @opt_param string filter The standard list filter. - * @opt_param string pageToken The standard list page token. - * @return Google_Service_CloudRedis_ListOperationsResponse - */ - public function listProjectsLocationsOperations($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudRedis_ListOperationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/Status.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/Status.php deleted file mode 100644 index a313d8c7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRedis/Status.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager.php deleted file mode 100644 index 56165d80..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager.php +++ /dev/null @@ -1,208 +0,0 @@ - - * Creates, reads, and updates metadata for Google Cloud Platform resource - * containers.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_CloudResourceManager extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** View your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM_READ_ONLY = - "https://www.googleapis.com/auth/cloud-platform.read-only"; - - public $folders; - public $operations; - - /** - * Constructs the internal representation of the CloudResourceManager service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://cloudresourcemanager.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v2'; - $this->serviceName = 'cloudresourcemanager'; - - $this->folders = new Google_Service_CloudResourceManager_Resource_Folders( - $this, - $this->serviceName, - 'folders', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v2/folders', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getIamPolicy' => array( - 'path' => 'v2/{+resource}:getIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2/folders', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'showDeleted' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'move' => array( - 'path' => 'v2/{+name}:move', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'search' => array( - 'path' => 'v2/folders:search', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'setIamPolicy' => array( - 'path' => 'v2/{+resource}:setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => 'v2/{+resource}:testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'undelete' => array( - 'path' => 'v2/{+name}:undelete', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->operations = new Google_Service_CloudResourceManager_Resource_Operations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/AuditConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/AuditConfig.php deleted file mode 100644 index 9970c966..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/AuditConfig.php +++ /dev/null @@ -1,47 +0,0 @@ -auditLogConfigs = $auditLogConfigs; - } - /** - * @return Google_Service_CloudResourceManager_AuditLogConfig - */ - public function getAuditLogConfigs() - { - return $this->auditLogConfigs; - } - public function setService($service) - { - $this->service = $service; - } - public function getService() - { - return $this->service; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/AuditLogConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/AuditLogConfig.php deleted file mode 100644 index fc124f62..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/AuditLogConfig.php +++ /dev/null @@ -1,40 +0,0 @@ -exemptedMembers = $exemptedMembers; - } - public function getExemptedMembers() - { - return $this->exemptedMembers; - } - public function setLogType($logType) - { - $this->logType = $logType; - } - public function getLogType() - { - return $this->logType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/Binding.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/Binding.php deleted file mode 100644 index 060669a3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/Binding.php +++ /dev/null @@ -1,56 +0,0 @@ -condition = $condition; - } - /** - * @return Google_Service_CloudResourceManager_Expr - */ - public function getCondition() - { - return $this->condition; - } - public function setMembers($members) - { - $this->members = $members; - } - public function getMembers() - { - return $this->members; - } - public function setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/Expr.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/Expr.php deleted file mode 100644 index 0bc61f59..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/Expr.php +++ /dev/null @@ -1,57 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setExpression($expression) - { - $this->expression = $expression; - } - public function getExpression() - { - return $this->expression; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/Folder.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/Folder.php deleted file mode 100644 index af114fe8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/Folder.php +++ /dev/null @@ -1,66 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setLifecycleState($lifecycleState) - { - $this->lifecycleState = $lifecycleState; - } - public function getLifecycleState() - { - return $this->lifecycleState; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setParent($parent) - { - $this->parent = $parent; - } - public function getParent() - { - return $this->parent; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/FolderOperation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/FolderOperation.php deleted file mode 100644 index e5b06f22..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/FolderOperation.php +++ /dev/null @@ -1,57 +0,0 @@ -destinationParent = $destinationParent; - } - public function getDestinationParent() - { - return $this->destinationParent; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setOperationType($operationType) - { - $this->operationType = $operationType; - } - public function getOperationType() - { - return $this->operationType; - } - public function setSourceParent($sourceParent) - { - $this->sourceParent = $sourceParent; - } - public function getSourceParent() - { - return $this->sourceParent; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/FolderOperationError.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/FolderOperationError.php deleted file mode 100644 index af47d182..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/FolderOperationError.php +++ /dev/null @@ -1,30 +0,0 @@ -errorMessageId = $errorMessageId; - } - public function getErrorMessageId() - { - return $this->errorMessageId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/GetIamPolicyRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/GetIamPolicyRequest.php deleted file mode 100644 index b268b943..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/GetIamPolicyRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -options = $options; - } - /** - * @return Google_Service_CloudResourceManager_GetPolicyOptions - */ - public function getOptions() - { - return $this->options; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/GetPolicyOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/GetPolicyOptions.php deleted file mode 100644 index 3170752d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/GetPolicyOptions.php +++ /dev/null @@ -1,30 +0,0 @@ -requestedPolicyVersion = $requestedPolicyVersion; - } - public function getRequestedPolicyVersion() - { - return $this->requestedPolicyVersion; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/ListFoldersResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/ListFoldersResponse.php deleted file mode 100644 index 35873402..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/ListFoldersResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -folders = $folders; - } - /** - * @return Google_Service_CloudResourceManager_Folder - */ - public function getFolders() - { - return $this->folders; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/MoveFolderRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/MoveFolderRequest.php deleted file mode 100644 index c3114464..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/MoveFolderRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -destinationParent = $destinationParent; - } - public function getDestinationParent() - { - return $this->destinationParent; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/Operation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/Operation.php deleted file mode 100644 index 07ac32e2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/Operation.php +++ /dev/null @@ -1,73 +0,0 @@ -done = $done; - } - public function getDone() - { - return $this->done; - } - /** - * @param Google_Service_CloudResourceManager_Status - */ - public function setError(Google_Service_CloudResourceManager_Status $error) - { - $this->error = $error; - } - /** - * @return Google_Service_CloudResourceManager_Status - */ - public function getError() - { - return $this->error; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/Policy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/Policy.php deleted file mode 100644 index 68d39f7b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/Policy.php +++ /dev/null @@ -1,72 +0,0 @@ -auditConfigs = $auditConfigs; - } - /** - * @return Google_Service_CloudResourceManager_AuditConfig - */ - public function getAuditConfigs() - { - return $this->auditConfigs; - } - /** - * @param Google_Service_CloudResourceManager_Binding - */ - public function setBindings($bindings) - { - $this->bindings = $bindings; - } - /** - * @return Google_Service_CloudResourceManager_Binding - */ - public function getBindings() - { - return $this->bindings; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/ProjectCreationStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/ProjectCreationStatus.php deleted file mode 100644 index 1dae090f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/ProjectCreationStatus.php +++ /dev/null @@ -1,48 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setGettable($gettable) - { - $this->gettable = $gettable; - } - public function getGettable() - { - return $this->gettable; - } - public function setReady($ready) - { - $this->ready = $ready; - } - public function getReady() - { - return $this->ready; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/Resource/Folders.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/Resource/Folders.php deleted file mode 100644 index cf2cca81..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/Resource/Folders.php +++ /dev/null @@ -1,289 +0,0 @@ - - * $cloudresourcemanagerService = new Google_Service_CloudResourceManager(...); - * $folders = $cloudresourcemanagerService->folders; - * - */ -class Google_Service_CloudResourceManager_Resource_Folders extends Google_Service_Resource -{ - /** - * Creates a Folder in the resource hierarchy. Returns an Operation which can be - * used to track the progress of the folder creation workflow. Upon success the - * Operation.response field will be populated with the created Folder. - * - * In order to succeed, the addition of this new Folder must not violate the - * Folder naming, height or fanout constraints. - * - * + The Folder's display_name must be distinct from all other Folder's that - * share its parent. + The addition of the Folder must not cause the active - * Folder hierarchy to exceed a height of 4. Note, the full active + deleted - * Folder hierarchy is allowed to reach a height of 8; this provides additional - * headroom when moving folders that contain deleted folders. + The addition of - * the Folder must not cause the total number of Folders under its parent to - * exceed 100. - * - * If the operation fails due to a folder constraint violation, some errors may - * be returned by the CreateFolder request, with status code FAILED_PRECONDITION - * and an error description. Other folder constraint violations will be - * communicated in the Operation, with the specific PreconditionFailure returned - * via the details list in the Operation.error field. - * - * The caller must have `resourcemanager.folders.create` permission on the - * identified parent. (folders.create) - * - * @param Google_Service_CloudResourceManager_Folder $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string parent Required. The resource name of the new Folder's - * parent. Must be of the form `folders/{folder_id}` or - * `organizations/{org_id}`. - * @return Google_Service_CloudResourceManager_Operation - */ - public function create(Google_Service_CloudResourceManager_Folder $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_CloudResourceManager_Operation"); - } - /** - * Requests deletion of a Folder. The Folder is moved into the DELETE_REQUESTED - * state immediately, and is deleted approximately 30 days later. This method - * may only be called on an empty Folder in the ACTIVE state, where a Folder is - * empty if it doesn't contain any Folders or Projects in the ACTIVE state. The - * caller must have `resourcemanager.folders.delete` permission on the - * identified folder. (folders.delete) - * - * @param string $name Required. the resource name of the Folder to be deleted. - * Must be of the form `folders/{folder_id}`. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudResourceManager_Folder - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudResourceManager_Folder"); - } - /** - * Retrieves a Folder identified by the supplied resource name. Valid Folder - * resource names have the format `folders/{folder_id}` (for example, - * `folders/1234`). The caller must have `resourcemanager.folders.get` - * permission on the identified folder. (folders.get) - * - * @param string $name Required. The resource name of the Folder to retrieve. - * Must be of the form `folders/{folder_id}`. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudResourceManager_Folder - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudResourceManager_Folder"); - } - /** - * Gets the access control policy for a Folder. The returned policy may be empty - * if no such policy or resource exists. The `resource` field should be the - * Folder's resource name, e.g. "folders/1234". The caller must have - * `resourcemanager.folders.getIamPolicy` permission on the identified folder. - * (folders.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 Google_Service_CloudResourceManager_GetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudResourceManager_Policy - */ - public function getIamPolicy($resource, Google_Service_CloudResourceManager_GetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_CloudResourceManager_Policy"); - } - /** - * Lists the Folders that are direct descendants of supplied parent resource. - * List provides a strongly consistent view of the Folders underneath the - * specified parent resource. List returns Folders sorted based upon the - * (ascending) lexical ordering of their display_name. The caller must have - * `resourcemanager.folders.list` permission on the identified parent. - * (folders.listFolders) - * - * @param array $optParams Optional parameters. - * - * @opt_param string parent Required. The resource name of the Organization or - * Folder whose Folders are being listed. Must be of the form - * `folders/{folder_id}` or `organizations/{org_id}`. Access to this method is - * controlled by checking the `resourcemanager.folders.list` permission on the - * `parent`. - * @opt_param bool showDeleted Optional. Controls whether Folders in the - * DELETE_REQUESTED state should be returned. Defaults to false. - * @opt_param string pageToken Optional. A pagination token returned from a - * previous call to `ListFolders` that indicates where this listing should - * continue from. - * @opt_param int pageSize Optional. The maximum number of Folders to return in - * the response. - * @return Google_Service_CloudResourceManager_ListFoldersResponse - */ - public function listFolders($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudResourceManager_ListFoldersResponse"); - } - /** - * Moves a Folder under a new resource parent. Returns an Operation which can be - * used to track the progress of the folder move workflow. Upon success the - * Operation.response field will be populated with the moved Folder. Upon - * failure, a FolderOperationError categorizing the failure cause will be - * returned - if the failure occurs synchronously then the FolderOperationError - * will be returned via the Status.details field and if it occurs asynchronously - * then the FolderOperation will be returned via the Operation.error field. In - * addition, the Operation.metadata field will be populated with a - * FolderOperation message as an aid to stateless clients. Folder moves will be - * rejected if they violate either the naming, height or fanout constraints - * described in the CreateFolder documentation. The caller must have - * `resourcemanager.folders.move` permission on the folder's current and - * proposed new parent. (folders.move) - * - * @param string $name Required. The resource name of the Folder to move. Must - * be of the form folders/{folder_id} - * @param Google_Service_CloudResourceManager_MoveFolderRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudResourceManager_Operation - */ - public function move($name, Google_Service_CloudResourceManager_MoveFolderRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('move', array($params), "Google_Service_CloudResourceManager_Operation"); - } - /** - * Updates a Folder, changing its display_name. Changes to the folder - * display_name will be rejected if they violate either the display_name - * formatting rules or naming constraints described in the CreateFolder - * documentation. - * - * The Folder's display name must start and end with a letter or digit, may - * contain letters, digits, spaces, hyphens and underscores and can be no longer - * than 30 characters. This is captured by the regular expression: - * [\p{L}\p{N}]([\p{L}\p{N}_- ]{0,28}[\p{L}\p{N}])?. The caller must have - * `resourcemanager.folders.update` permission on the identified folder. - * - * If the update fails due to the unique name constraint then a - * PreconditionFailure explaining this violation will be returned in the - * Status.details field. (folders.patch) - * - * @param string $name Output only. The resource name of the Folder. Its format - * is `folders/{folder_id}`, for example: "folders/1234". - * @param Google_Service_CloudResourceManager_Folder $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Required. Fields to be updated. Only the - * `display_name` can be updated. - * @return Google_Service_CloudResourceManager_Folder - */ - public function patch($name, Google_Service_CloudResourceManager_Folder $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_CloudResourceManager_Folder"); - } - /** - * Search for folders that match specific filter criteria. Search provides an - * eventually consistent view of the folders a user has access to which meet the - * specified filter criteria. - * - * This will only return folders on which the caller has the permission - * `resourcemanager.folders.get`. (folders.search) - * - * @param Google_Service_CloudResourceManager_SearchFoldersRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudResourceManager_SearchFoldersResponse - */ - public function search(Google_Service_CloudResourceManager_SearchFoldersRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('search', array($params), "Google_Service_CloudResourceManager_SearchFoldersResponse"); - } - /** - * Sets the access control policy on a Folder, replacing any existing policy. - * The `resource` field should be the Folder's resource name, e.g. - * "folders/1234". The caller must have `resourcemanager.folders.setIamPolicy` - * permission on the identified folder. (folders.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_CloudResourceManager_SetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudResourceManager_Policy - */ - public function setIamPolicy($resource, Google_Service_CloudResourceManager_SetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_CloudResourceManager_Policy"); - } - /** - * Returns permissions that a caller has on the specified Folder. The `resource` - * field should be the Folder's resource name, e.g. "folders/1234". - * - * There are no permissions required for making this API call. - * (folders.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_CloudResourceManager_TestIamPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudResourceManager_TestIamPermissionsResponse - */ - public function testIamPermissions($resource, Google_Service_CloudResourceManager_TestIamPermissionsRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_CloudResourceManager_TestIamPermissionsResponse"); - } - /** - * Cancels the deletion request for a Folder. This method may only be called on - * a Folder in the DELETE_REQUESTED state. In order to succeed, the Folder's - * parent must be in the ACTIVE state. In addition, reintroducing the folder - * into the tree must not violate folder naming, height and fanout constraints - * described in the CreateFolder documentation. The caller must have - * `resourcemanager.folders.undelete` permission on the identified folder. - * (folders.undelete) - * - * @param string $name Required. The resource name of the Folder to undelete. - * Must be of the form `folders/{folder_id}`. - * @param Google_Service_CloudResourceManager_UndeleteFolderRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudResourceManager_Folder - */ - public function undelete($name, Google_Service_CloudResourceManager_UndeleteFolderRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('undelete', array($params), "Google_Service_CloudResourceManager_Folder"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/Resource/Operations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/Resource/Operations.php deleted file mode 100644 index 62cfc870..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/Resource/Operations.php +++ /dev/null @@ -1,43 +0,0 @@ - - * $cloudresourcemanagerService = new Google_Service_CloudResourceManager(...); - * $operations = $cloudresourcemanagerService->operations; - * - */ -class Google_Service_CloudResourceManager_Resource_Operations extends Google_Service_Resource -{ - /** - * Gets the latest state of a long-running operation. Clients can use this - * method to poll the operation result at intervals as recommended by the API - * service. (operations.get) - * - * @param string $name The name of the operation resource. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudResourceManager_Operation - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudResourceManager_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/SearchFoldersRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/SearchFoldersRequest.php deleted file mode 100644 index 2a391751..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/SearchFoldersRequest.php +++ /dev/null @@ -1,48 +0,0 @@ -pageSize = $pageSize; - } - public function getPageSize() - { - return $this->pageSize; - } - public function setPageToken($pageToken) - { - $this->pageToken = $pageToken; - } - public function getPageToken() - { - return $this->pageToken; - } - public function setQuery($query) - { - $this->query = $query; - } - public function getQuery() - { - return $this->query; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/SearchFoldersResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/SearchFoldersResponse.php deleted file mode 100644 index 8603273c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/SearchFoldersResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -folders = $folders; - } - /** - * @return Google_Service_CloudResourceManager_Folder - */ - public function getFolders() - { - return $this->folders; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/SetIamPolicyRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/SetIamPolicyRequest.php deleted file mode 100644 index 6e5f3e5a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/SetIamPolicyRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -policy = $policy; - } - /** - * @return Google_Service_CloudResourceManager_Policy - */ - public function getPolicy() - { - return $this->policy; - } - public function setUpdateMask($updateMask) - { - $this->updateMask = $updateMask; - } - public function getUpdateMask() - { - return $this->updateMask; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/Status.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/Status.php deleted file mode 100644 index a431c6c5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/Status.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/TestIamPermissionsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/TestIamPermissionsRequest.php deleted file mode 100644 index 0df6d4c1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/TestIamPermissionsRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/TestIamPermissionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/TestIamPermissionsResponse.php deleted file mode 100644 index 7f601da7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/TestIamPermissionsResponse.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/UndeleteFolderRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/UndeleteFolderRequest.php deleted file mode 100644 index ae97412e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudResourceManager/UndeleteFolderRequest.php +++ /dev/null @@ -1,20 +0,0 @@ - - * Deploy and manage user provided container images that scale automatically - * based on HTTP traffic.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_CloudRun extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - - public $namespaces_authorizeddomains; - public $namespaces_configurations; - public $namespaces_domainmappings; - public $namespaces_revisions; - public $namespaces_routes; - public $namespaces_services; - public $projects_locations; - public $projects_locations_authorizeddomains; - public $projects_locations_configurations; - public $projects_locations_domainmappings; - public $projects_locations_revisions; - public $projects_locations_routes; - public $projects_locations_services; - - /** - * Constructs the internal representation of the CloudRun service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://run.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'run'; - - $this->namespaces_authorizeddomains = new Google_Service_CloudRun_Resource_NamespacesAuthorizeddomains( - $this, - $this->serviceName, - 'authorizeddomains', - array( - 'methods' => array( - 'list' => array( - 'path' => 'apis/domains.cloudrun.com/v1/{+parent}/authorizeddomains', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->namespaces_configurations = new Google_Service_CloudRun_Resource_NamespacesConfigurations( - $this, - $this->serviceName, - 'configurations', - array( - 'methods' => array( - 'get' => array( - 'path' => 'apis/serving.knative.dev/v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'apis/serving.knative.dev/v1/{+parent}/configurations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'watch' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'labelSelector' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'resourceVersion' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'includeUninitialized' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'fieldSelector' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'continue' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'limit' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->namespaces_domainmappings = new Google_Service_CloudRun_Resource_NamespacesDomainmappings( - $this, - $this->serviceName, - 'domainmappings', - array( - 'methods' => array( - 'create' => array( - 'path' => 'apis/domains.cloudrun.com/v1/{+parent}/domainmappings', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'apis/domains.cloudrun.com/v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'apiVersion' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'propagationPolicy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'kind' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'apis/domains.cloudrun.com/v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'apis/domains.cloudrun.com/v1/{+parent}/domainmappings', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'continue' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'limit' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'watch' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'labelSelector' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'resourceVersion' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'includeUninitialized' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'fieldSelector' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->namespaces_revisions = new Google_Service_CloudRun_Resource_NamespacesRevisions( - $this, - $this->serviceName, - 'revisions', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'apis/serving.knative.dev/v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'apiVersion' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'propagationPolicy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'kind' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'apis/serving.knative.dev/v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'apis/serving.knative.dev/v1/{+parent}/revisions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'labelSelector' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'resourceVersion' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'includeUninitialized' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'fieldSelector' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'continue' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'limit' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'watch' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ), - ) - ) - ); - $this->namespaces_routes = new Google_Service_CloudRun_Resource_NamespacesRoutes( - $this, - $this->serviceName, - 'routes', - array( - 'methods' => array( - 'get' => array( - 'path' => 'apis/serving.knative.dev/v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'apis/serving.knative.dev/v1/{+parent}/routes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'continue' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'limit' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'watch' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'labelSelector' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'resourceVersion' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'includeUninitialized' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'fieldSelector' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->namespaces_services = new Google_Service_CloudRun_Resource_NamespacesServices( - $this, - $this->serviceName, - 'services', - array( - 'methods' => array( - 'create' => array( - 'path' => 'apis/serving.knative.dev/v1/{+parent}/services', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'apis/serving.knative.dev/v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'apiVersion' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'propagationPolicy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'kind' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'apis/serving.knative.dev/v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'apis/serving.knative.dev/v1/{+parent}/services', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'watch' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'labelSelector' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'fieldSelector' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'includeUninitialized' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'resourceVersion' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'continue' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'limit' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'replaceService' => array( - 'path' => 'apis/serving.knative.dev/v1/{+name}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_locations = new Google_Service_CloudRun_Resource_ProjectsLocations( - $this, - $this->serviceName, - 'locations', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1/{+name}/locations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->projects_locations_authorizeddomains = new Google_Service_CloudRun_Resource_ProjectsLocationsAuthorizeddomains( - $this, - $this->serviceName, - 'authorizeddomains', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1/{+parent}/authorizeddomains', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->projects_locations_configurations = new Google_Service_CloudRun_Resource_ProjectsLocationsConfigurations( - $this, - $this->serviceName, - 'configurations', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/configurations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'labelSelector' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'fieldSelector' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'includeUninitialized' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'resourceVersion' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'continue' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'limit' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'watch' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ), - ) - ) - ); - $this->projects_locations_domainmappings = new Google_Service_CloudRun_Resource_ProjectsLocationsDomainmappings( - $this, - $this->serviceName, - 'domainmappings', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/domainmappings', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'apiVersion' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'propagationPolicy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'kind' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/domainmappings', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'continue' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'limit' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'watch' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'labelSelector' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'resourceVersion' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'includeUninitialized' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'fieldSelector' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_locations_revisions = new Google_Service_CloudRun_Resource_ProjectsLocationsRevisions( - $this, - $this->serviceName, - 'revisions', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'apiVersion' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'propagationPolicy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'kind' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/revisions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resourceVersion' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'includeUninitialized' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'fieldSelector' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'continue' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'limit' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'watch' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'labelSelector' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_locations_routes = new Google_Service_CloudRun_Resource_ProjectsLocationsRoutes( - $this, - $this->serviceName, - 'routes', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/routes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'labelSelector' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'resourceVersion' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'includeUninitialized' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'fieldSelector' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'continue' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'limit' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'watch' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ), - ) - ) - ); - $this->projects_locations_services = new Google_Service_CloudRun_Resource_ProjectsLocationsServices( - $this, - $this->serviceName, - 'services', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/services', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'apiVersion' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'propagationPolicy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'kind' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getIamPolicy' => array( - 'path' => 'v1/{+resource}:getIamPolicy', - 'httpMethod' => 'GET', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'options.requestedPolicyVersion' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/services', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'labelSelector' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'fieldSelector' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'includeUninitialized' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'resourceVersion' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'continue' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'limit' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'watch' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'replaceService' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setIamPolicy' => array( - 'path' => 'v1/{+resource}:setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => 'v1/{+resource}:testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Addressable.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Addressable.php deleted file mode 100644 index 4030095c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Addressable.php +++ /dev/null @@ -1,30 +0,0 @@ -url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/AuditConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/AuditConfig.php deleted file mode 100644 index 1a5794a7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/AuditConfig.php +++ /dev/null @@ -1,47 +0,0 @@ -auditLogConfigs = $auditLogConfigs; - } - /** - * @return Google_Service_CloudRun_AuditLogConfig - */ - public function getAuditLogConfigs() - { - return $this->auditLogConfigs; - } - public function setService($service) - { - $this->service = $service; - } - public function getService() - { - return $this->service; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/AuditLogConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/AuditLogConfig.php deleted file mode 100644 index 216f4184..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/AuditLogConfig.php +++ /dev/null @@ -1,40 +0,0 @@ -exemptedMembers = $exemptedMembers; - } - public function getExemptedMembers() - { - return $this->exemptedMembers; - } - public function setLogType($logType) - { - $this->logType = $logType; - } - public function getLogType() - { - return $this->logType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/AuthorizedDomain.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/AuthorizedDomain.php deleted file mode 100644 index 12537b25..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/AuthorizedDomain.php +++ /dev/null @@ -1,39 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Binding.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Binding.php deleted file mode 100644 index 84db2274..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Binding.php +++ /dev/null @@ -1,56 +0,0 @@ -condition = $condition; - } - /** - * @return Google_Service_CloudRun_Expr - */ - public function getCondition() - { - return $this->condition; - } - public function setMembers($members) - { - $this->members = $members; - } - public function getMembers() - { - return $this->members; - } - public function setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ConfigMapEnvSource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ConfigMapEnvSource.php deleted file mode 100644 index bc2119d0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ConfigMapEnvSource.php +++ /dev/null @@ -1,55 +0,0 @@ -localObjectReference = $localObjectReference; - } - /** - * @return Google_Service_CloudRun_LocalObjectReference - */ - public function getLocalObjectReference() - { - return $this->localObjectReference; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOptional($optional) - { - $this->optional = $optional; - } - public function getOptional() - { - return $this->optional; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ConfigMapKeySelector.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ConfigMapKeySelector.php deleted file mode 100644 index 9ef8ba3a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ConfigMapKeySelector.php +++ /dev/null @@ -1,64 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - /** - * @param Google_Service_CloudRun_LocalObjectReference - */ - public function setLocalObjectReference(Google_Service_CloudRun_LocalObjectReference $localObjectReference) - { - $this->localObjectReference = $localObjectReference; - } - /** - * @return Google_Service_CloudRun_LocalObjectReference - */ - public function getLocalObjectReference() - { - return $this->localObjectReference; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOptional($optional) - { - $this->optional = $optional; - } - public function getOptional() - { - return $this->optional; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ConfigMapVolumeSource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ConfigMapVolumeSource.php deleted file mode 100644 index 9218d57b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ConfigMapVolumeSource.php +++ /dev/null @@ -1,65 +0,0 @@ -defaultMode = $defaultMode; - } - public function getDefaultMode() - { - return $this->defaultMode; - } - /** - * @param Google_Service_CloudRun_KeyToPath - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_CloudRun_KeyToPath - */ - public function getItems() - { - return $this->items; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOptional($optional) - { - $this->optional = $optional; - } - public function getOptional() - { - return $this->optional; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Configuration.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Configuration.php deleted file mode 100644 index 987d0a24..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Configuration.php +++ /dev/null @@ -1,87 +0,0 @@ -apiVersion = $apiVersion; - } - public function getApiVersion() - { - return $this->apiVersion; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_CloudRun_ObjectMeta - */ - public function setMetadata(Google_Service_CloudRun_ObjectMeta $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_CloudRun_ObjectMeta - */ - public function getMetadata() - { - return $this->metadata; - } - /** - * @param Google_Service_CloudRun_ConfigurationSpec - */ - public function setSpec(Google_Service_CloudRun_ConfigurationSpec $spec) - { - $this->spec = $spec; - } - /** - * @return Google_Service_CloudRun_ConfigurationSpec - */ - public function getSpec() - { - return $this->spec; - } - /** - * @param Google_Service_CloudRun_ConfigurationStatus - */ - public function setStatus(Google_Service_CloudRun_ConfigurationStatus $status) - { - $this->status = $status; - } - /** - * @return Google_Service_CloudRun_ConfigurationStatus - */ - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ConfigurationSpec.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ConfigurationSpec.php deleted file mode 100644 index ca816bb0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ConfigurationSpec.php +++ /dev/null @@ -1,37 +0,0 @@ -template = $template; - } - /** - * @return Google_Service_CloudRun_RevisionTemplate - */ - public function getTemplate() - { - return $this->template; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ConfigurationStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ConfigurationStatus.php deleted file mode 100644 index d81ddeb0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ConfigurationStatus.php +++ /dev/null @@ -1,65 +0,0 @@ -conditions = $conditions; - } - /** - * @return Google_Service_CloudRun_GoogleCloudRunV1Condition - */ - public function getConditions() - { - return $this->conditions; - } - public function setLatestCreatedRevisionName($latestCreatedRevisionName) - { - $this->latestCreatedRevisionName = $latestCreatedRevisionName; - } - public function getLatestCreatedRevisionName() - { - return $this->latestCreatedRevisionName; - } - public function setLatestReadyRevisionName($latestReadyRevisionName) - { - $this->latestReadyRevisionName = $latestReadyRevisionName; - } - public function getLatestReadyRevisionName() - { - return $this->latestReadyRevisionName; - } - public function setObservedGeneration($observedGeneration) - { - $this->observedGeneration = $observedGeneration; - } - public function getObservedGeneration() - { - return $this->observedGeneration; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Container.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Container.php deleted file mode 100644 index fa88d528..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Container.php +++ /dev/null @@ -1,222 +0,0 @@ -args = $args; - } - public function getArgs() - { - return $this->args; - } - public function setCommand($command) - { - $this->command = $command; - } - public function getCommand() - { - return $this->command; - } - /** - * @param Google_Service_CloudRun_EnvVar - */ - public function setEnv($env) - { - $this->env = $env; - } - /** - * @return Google_Service_CloudRun_EnvVar - */ - public function getEnv() - { - return $this->env; - } - /** - * @param Google_Service_CloudRun_EnvFromSource - */ - public function setEnvFrom($envFrom) - { - $this->envFrom = $envFrom; - } - /** - * @return Google_Service_CloudRun_EnvFromSource - */ - public function getEnvFrom() - { - return $this->envFrom; - } - public function setImage($image) - { - $this->image = $image; - } - public function getImage() - { - return $this->image; - } - public function setImagePullPolicy($imagePullPolicy) - { - $this->imagePullPolicy = $imagePullPolicy; - } - public function getImagePullPolicy() - { - return $this->imagePullPolicy; - } - /** - * @param Google_Service_CloudRun_Probe - */ - public function setLivenessProbe(Google_Service_CloudRun_Probe $livenessProbe) - { - $this->livenessProbe = $livenessProbe; - } - /** - * @return Google_Service_CloudRun_Probe - */ - public function getLivenessProbe() - { - return $this->livenessProbe; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_CloudRun_ContainerPort - */ - public function setPorts($ports) - { - $this->ports = $ports; - } - /** - * @return Google_Service_CloudRun_ContainerPort - */ - public function getPorts() - { - return $this->ports; - } - /** - * @param Google_Service_CloudRun_Probe - */ - public function setReadinessProbe(Google_Service_CloudRun_Probe $readinessProbe) - { - $this->readinessProbe = $readinessProbe; - } - /** - * @return Google_Service_CloudRun_Probe - */ - public function getReadinessProbe() - { - return $this->readinessProbe; - } - /** - * @param Google_Service_CloudRun_ResourceRequirements - */ - public function setResources(Google_Service_CloudRun_ResourceRequirements $resources) - { - $this->resources = $resources; - } - /** - * @return Google_Service_CloudRun_ResourceRequirements - */ - public function getResources() - { - return $this->resources; - } - /** - * @param Google_Service_CloudRun_SecurityContext - */ - public function setSecurityContext(Google_Service_CloudRun_SecurityContext $securityContext) - { - $this->securityContext = $securityContext; - } - /** - * @return Google_Service_CloudRun_SecurityContext - */ - public function getSecurityContext() - { - return $this->securityContext; - } - public function setTerminationMessagePath($terminationMessagePath) - { - $this->terminationMessagePath = $terminationMessagePath; - } - public function getTerminationMessagePath() - { - return $this->terminationMessagePath; - } - public function setTerminationMessagePolicy($terminationMessagePolicy) - { - $this->terminationMessagePolicy = $terminationMessagePolicy; - } - public function getTerminationMessagePolicy() - { - return $this->terminationMessagePolicy; - } - /** - * @param Google_Service_CloudRun_VolumeMount - */ - public function setVolumeMounts($volumeMounts) - { - $this->volumeMounts = $volumeMounts; - } - /** - * @return Google_Service_CloudRun_VolumeMount - */ - public function getVolumeMounts() - { - return $this->volumeMounts; - } - public function setWorkingDir($workingDir) - { - $this->workingDir = $workingDir; - } - public function getWorkingDir() - { - return $this->workingDir; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ContainerPort.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ContainerPort.php deleted file mode 100644 index d94d368f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ContainerPort.php +++ /dev/null @@ -1,48 +0,0 @@ -containerPort = $containerPort; - } - public function getContainerPort() - { - return $this->containerPort; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setProtocol($protocol) - { - $this->protocol = $protocol; - } - public function getProtocol() - { - return $this->protocol; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/DomainMapping.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/DomainMapping.php deleted file mode 100644 index 0c1a38f6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/DomainMapping.php +++ /dev/null @@ -1,87 +0,0 @@ -apiVersion = $apiVersion; - } - public function getApiVersion() - { - return $this->apiVersion; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_CloudRun_ObjectMeta - */ - public function setMetadata(Google_Service_CloudRun_ObjectMeta $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_CloudRun_ObjectMeta - */ - public function getMetadata() - { - return $this->metadata; - } - /** - * @param Google_Service_CloudRun_DomainMappingSpec - */ - public function setSpec(Google_Service_CloudRun_DomainMappingSpec $spec) - { - $this->spec = $spec; - } - /** - * @return Google_Service_CloudRun_DomainMappingSpec - */ - public function getSpec() - { - return $this->spec; - } - /** - * @param Google_Service_CloudRun_DomainMappingStatus - */ - public function setStatus(Google_Service_CloudRun_DomainMappingStatus $status) - { - $this->status = $status; - } - /** - * @return Google_Service_CloudRun_DomainMappingStatus - */ - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/DomainMappingSpec.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/DomainMappingSpec.php deleted file mode 100644 index 67dad26b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/DomainMappingSpec.php +++ /dev/null @@ -1,48 +0,0 @@ -certificateMode = $certificateMode; - } - public function getCertificateMode() - { - return $this->certificateMode; - } - public function setForceOverride($forceOverride) - { - $this->forceOverride = $forceOverride; - } - public function getForceOverride() - { - return $this->forceOverride; - } - public function setRouteName($routeName) - { - $this->routeName = $routeName; - } - public function getRouteName() - { - return $this->routeName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/DomainMappingStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/DomainMappingStatus.php deleted file mode 100644 index 4400d483..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/DomainMappingStatus.php +++ /dev/null @@ -1,72 +0,0 @@ -conditions = $conditions; - } - /** - * @return Google_Service_CloudRun_GoogleCloudRunV1Condition - */ - public function getConditions() - { - return $this->conditions; - } - public function setMappedRouteName($mappedRouteName) - { - $this->mappedRouteName = $mappedRouteName; - } - public function getMappedRouteName() - { - return $this->mappedRouteName; - } - public function setObservedGeneration($observedGeneration) - { - $this->observedGeneration = $observedGeneration; - } - public function getObservedGeneration() - { - return $this->observedGeneration; - } - /** - * @param Google_Service_CloudRun_ResourceRecord - */ - public function setResourceRecords($resourceRecords) - { - $this->resourceRecords = $resourceRecords; - } - /** - * @return Google_Service_CloudRun_ResourceRecord - */ - public function getResourceRecords() - { - return $this->resourceRecords; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/EnvFromSource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/EnvFromSource.php deleted file mode 100644 index c9804fdb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/EnvFromSource.php +++ /dev/null @@ -1,62 +0,0 @@ -configMapRef = $configMapRef; - } - /** - * @return Google_Service_CloudRun_ConfigMapEnvSource - */ - public function getConfigMapRef() - { - return $this->configMapRef; - } - public function setPrefix($prefix) - { - $this->prefix = $prefix; - } - public function getPrefix() - { - return $this->prefix; - } - /** - * @param Google_Service_CloudRun_SecretEnvSource - */ - public function setSecretRef(Google_Service_CloudRun_SecretEnvSource $secretRef) - { - $this->secretRef = $secretRef; - } - /** - * @return Google_Service_CloudRun_SecretEnvSource - */ - public function getSecretRef() - { - return $this->secretRef; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/EnvVar.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/EnvVar.php deleted file mode 100644 index 8991f6c7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/EnvVar.php +++ /dev/null @@ -1,55 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } - /** - * @param Google_Service_CloudRun_EnvVarSource - */ - public function setValueFrom(Google_Service_CloudRun_EnvVarSource $valueFrom) - { - $this->valueFrom = $valueFrom; - } - /** - * @return Google_Service_CloudRun_EnvVarSource - */ - public function getValueFrom() - { - return $this->valueFrom; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/EnvVarSource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/EnvVarSource.php deleted file mode 100644 index 9d0d7048..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/EnvVarSource.php +++ /dev/null @@ -1,53 +0,0 @@ -configMapKeyRef = $configMapKeyRef; - } - /** - * @return Google_Service_CloudRun_ConfigMapKeySelector - */ - public function getConfigMapKeyRef() - { - return $this->configMapKeyRef; - } - /** - * @param Google_Service_CloudRun_SecretKeySelector - */ - public function setSecretKeyRef(Google_Service_CloudRun_SecretKeySelector $secretKeyRef) - { - $this->secretKeyRef = $secretKeyRef; - } - /** - * @return Google_Service_CloudRun_SecretKeySelector - */ - public function getSecretKeyRef() - { - return $this->secretKeyRef; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ExecAction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ExecAction.php deleted file mode 100644 index 9ea76da1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ExecAction.php +++ /dev/null @@ -1,30 +0,0 @@ -command = $command; - } - public function getCommand() - { - return $this->command; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Expr.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Expr.php deleted file mode 100644 index 3094ea36..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Expr.php +++ /dev/null @@ -1,57 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setExpression($expression) - { - $this->expression = $expression; - } - public function getExpression() - { - return $this->expression; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/GoogleCloudRunV1Condition.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/GoogleCloudRunV1Condition.php deleted file mode 100644 index df6b966e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/GoogleCloudRunV1Condition.php +++ /dev/null @@ -1,75 +0,0 @@ -lastTransitionTime = $lastTransitionTime; - } - public function getLastTransitionTime() - { - return $this->lastTransitionTime; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } - public function setReason($reason) - { - $this->reason = $reason; - } - public function getReason() - { - return $this->reason; - } - public function setSeverity($severity) - { - $this->severity = $severity; - } - public function getSeverity() - { - return $this->severity; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/HTTPGetAction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/HTTPGetAction.php deleted file mode 100644 index 36b30653..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/HTTPGetAction.php +++ /dev/null @@ -1,65 +0,0 @@ -host = $host; - } - public function getHost() - { - return $this->host; - } - /** - * @param Google_Service_CloudRun_HTTPHeader - */ - public function setHttpHeaders($httpHeaders) - { - $this->httpHeaders = $httpHeaders; - } - /** - * @return Google_Service_CloudRun_HTTPHeader - */ - public function getHttpHeaders() - { - return $this->httpHeaders; - } - public function setPath($path) - { - $this->path = $path; - } - public function getPath() - { - return $this->path; - } - public function setScheme($scheme) - { - $this->scheme = $scheme; - } - public function getScheme() - { - return $this->scheme; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/HTTPHeader.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/HTTPHeader.php deleted file mode 100644 index a884bde2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/HTTPHeader.php +++ /dev/null @@ -1,39 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Handler.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Handler.php deleted file mode 100644 index f2491eb4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Handler.php +++ /dev/null @@ -1,69 +0,0 @@ -exec = $exec; - } - /** - * @return Google_Service_CloudRun_ExecAction - */ - public function getExec() - { - return $this->exec; - } - /** - * @param Google_Service_CloudRun_HTTPGetAction - */ - public function setHttpGet(Google_Service_CloudRun_HTTPGetAction $httpGet) - { - $this->httpGet = $httpGet; - } - /** - * @return Google_Service_CloudRun_HTTPGetAction - */ - public function getHttpGet() - { - return $this->httpGet; - } - /** - * @param Google_Service_CloudRun_TCPSocketAction - */ - public function setTcpSocket(Google_Service_CloudRun_TCPSocketAction $tcpSocket) - { - $this->tcpSocket = $tcpSocket; - } - /** - * @return Google_Service_CloudRun_TCPSocketAction - */ - public function getTcpSocket() - { - return $this->tcpSocket; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/IntOrString.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/IntOrString.php deleted file mode 100644 index c4404f02..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/IntOrString.php +++ /dev/null @@ -1,48 +0,0 @@ -intVal = $intVal; - } - public function getIntVal() - { - return $this->intVal; - } - public function setStrVal($strVal) - { - $this->strVal = $strVal; - } - public function getStrVal() - { - return $this->strVal; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/KeyToPath.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/KeyToPath.php deleted file mode 100644 index 0c43c658..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/KeyToPath.php +++ /dev/null @@ -1,48 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setMode($mode) - { - $this->mode = $mode; - } - public function getMode() - { - return $this->mode; - } - public function setPath($path) - { - $this->path = $path; - } - public function getPath() - { - return $this->path; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ListAuthorizedDomainsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ListAuthorizedDomainsResponse.php deleted file mode 100644 index 2adb592a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ListAuthorizedDomainsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -domains = $domains; - } - /** - * @return Google_Service_CloudRun_AuthorizedDomain - */ - public function getDomains() - { - return $this->domains; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ListConfigurationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ListConfigurationsResponse.php deleted file mode 100644 index 010cefd1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ListConfigurationsResponse.php +++ /dev/null @@ -1,81 +0,0 @@ -apiVersion = $apiVersion; - } - public function getApiVersion() - { - return $this->apiVersion; - } - /** - * @param Google_Service_CloudRun_Configuration - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_CloudRun_Configuration - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_CloudRun_ListMeta - */ - public function setMetadata(Google_Service_CloudRun_ListMeta $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_CloudRun_ListMeta - */ - public function getMetadata() - { - return $this->metadata; - } - public function setUnreachable($unreachable) - { - $this->unreachable = $unreachable; - } - public function getUnreachable() - { - return $this->unreachable; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ListDomainMappingsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ListDomainMappingsResponse.php deleted file mode 100644 index b52fafbc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ListDomainMappingsResponse.php +++ /dev/null @@ -1,81 +0,0 @@ -apiVersion = $apiVersion; - } - public function getApiVersion() - { - return $this->apiVersion; - } - /** - * @param Google_Service_CloudRun_DomainMapping - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_CloudRun_DomainMapping - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_CloudRun_ListMeta - */ - public function setMetadata(Google_Service_CloudRun_ListMeta $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_CloudRun_ListMeta - */ - public function getMetadata() - { - return $this->metadata; - } - public function setUnreachable($unreachable) - { - $this->unreachable = $unreachable; - } - public function getUnreachable() - { - return $this->unreachable; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ListLocationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ListLocationsResponse.php deleted file mode 100644 index 12b540f3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ListLocationsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -locations = $locations; - } - /** - * @return Google_Service_CloudRun_Location - */ - public function getLocations() - { - return $this->locations; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ListMeta.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ListMeta.php deleted file mode 100644 index 3e0cc77a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ListMeta.php +++ /dev/null @@ -1,48 +0,0 @@ -continue = $continue; - } - public function getContinue() - { - return $this->continue; - } - public function setResourceVersion($resourceVersion) - { - $this->resourceVersion = $resourceVersion; - } - public function getResourceVersion() - { - return $this->resourceVersion; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ListRevisionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ListRevisionsResponse.php deleted file mode 100644 index e908459b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ListRevisionsResponse.php +++ /dev/null @@ -1,81 +0,0 @@ -apiVersion = $apiVersion; - } - public function getApiVersion() - { - return $this->apiVersion; - } - /** - * @param Google_Service_CloudRun_Revision - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_CloudRun_Revision - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_CloudRun_ListMeta - */ - public function setMetadata(Google_Service_CloudRun_ListMeta $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_CloudRun_ListMeta - */ - public function getMetadata() - { - return $this->metadata; - } - public function setUnreachable($unreachable) - { - $this->unreachable = $unreachable; - } - public function getUnreachable() - { - return $this->unreachable; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ListRoutesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ListRoutesResponse.php deleted file mode 100644 index 02f31e52..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ListRoutesResponse.php +++ /dev/null @@ -1,81 +0,0 @@ -apiVersion = $apiVersion; - } - public function getApiVersion() - { - return $this->apiVersion; - } - /** - * @param Google_Service_CloudRun_Route - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_CloudRun_Route - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_CloudRun_ListMeta - */ - public function setMetadata(Google_Service_CloudRun_ListMeta $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_CloudRun_ListMeta - */ - public function getMetadata() - { - return $this->metadata; - } - public function setUnreachable($unreachable) - { - $this->unreachable = $unreachable; - } - public function getUnreachable() - { - return $this->unreachable; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ListServicesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ListServicesResponse.php deleted file mode 100644 index 1cffd1aa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ListServicesResponse.php +++ /dev/null @@ -1,81 +0,0 @@ -apiVersion = $apiVersion; - } - public function getApiVersion() - { - return $this->apiVersion; - } - /** - * @param Google_Service_CloudRun_Service - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_CloudRun_Service - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_CloudRun_ListMeta - */ - public function setMetadata(Google_Service_CloudRun_ListMeta $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_CloudRun_ListMeta - */ - public function getMetadata() - { - return $this->metadata; - } - public function setUnreachable($unreachable) - { - $this->unreachable = $unreachable; - } - public function getUnreachable() - { - return $this->unreachable; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/LocalObjectReference.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/LocalObjectReference.php deleted file mode 100644 index d19a83f3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/LocalObjectReference.php +++ /dev/null @@ -1,30 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Location.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Location.php deleted file mode 100644 index 47889f1e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Location.php +++ /dev/null @@ -1,66 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setLocationId($locationId) - { - $this->locationId = $locationId; - } - public function getLocationId() - { - return $this->locationId; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ObjectMeta.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ObjectMeta.php deleted file mode 100644 index 874e7e4e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ObjectMeta.php +++ /dev/null @@ -1,164 +0,0 @@ -annotations = $annotations; - } - public function getAnnotations() - { - return $this->annotations; - } - public function setClusterName($clusterName) - { - $this->clusterName = $clusterName; - } - public function getClusterName() - { - return $this->clusterName; - } - public function setCreationTimestamp($creationTimestamp) - { - $this->creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setDeletionGracePeriodSeconds($deletionGracePeriodSeconds) - { - $this->deletionGracePeriodSeconds = $deletionGracePeriodSeconds; - } - public function getDeletionGracePeriodSeconds() - { - return $this->deletionGracePeriodSeconds; - } - public function setDeletionTimestamp($deletionTimestamp) - { - $this->deletionTimestamp = $deletionTimestamp; - } - public function getDeletionTimestamp() - { - return $this->deletionTimestamp; - } - public function setFinalizers($finalizers) - { - $this->finalizers = $finalizers; - } - public function getFinalizers() - { - return $this->finalizers; - } - public function setGenerateName($generateName) - { - $this->generateName = $generateName; - } - public function getGenerateName() - { - return $this->generateName; - } - public function setGeneration($generation) - { - $this->generation = $generation; - } - public function getGeneration() - { - return $this->generation; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNamespace($namespace) - { - $this->namespace = $namespace; - } - public function getNamespace() - { - return $this->namespace; - } - /** - * @param Google_Service_CloudRun_OwnerReference - */ - public function setOwnerReferences($ownerReferences) - { - $this->ownerReferences = $ownerReferences; - } - /** - * @return Google_Service_CloudRun_OwnerReference - */ - public function getOwnerReferences() - { - return $this->ownerReferences; - } - public function setResourceVersion($resourceVersion) - { - $this->resourceVersion = $resourceVersion; - } - public function getResourceVersion() - { - return $this->resourceVersion; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setUid($uid) - { - $this->uid = $uid; - } - public function getUid() - { - return $this->uid; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/OwnerReference.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/OwnerReference.php deleted file mode 100644 index 5e9af023..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/OwnerReference.php +++ /dev/null @@ -1,75 +0,0 @@ -apiVersion = $apiVersion; - } - public function getApiVersion() - { - return $this->apiVersion; - } - public function setBlockOwnerDeletion($blockOwnerDeletion) - { - $this->blockOwnerDeletion = $blockOwnerDeletion; - } - public function getBlockOwnerDeletion() - { - return $this->blockOwnerDeletion; - } - public function setController($controller) - { - $this->controller = $controller; - } - public function getController() - { - return $this->controller; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setUid($uid) - { - $this->uid = $uid; - } - public function getUid() - { - return $this->uid; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Policy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Policy.php deleted file mode 100644 index 0bf0a1f7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Policy.php +++ /dev/null @@ -1,72 +0,0 @@ -auditConfigs = $auditConfigs; - } - /** - * @return Google_Service_CloudRun_AuditConfig - */ - public function getAuditConfigs() - { - return $this->auditConfigs; - } - /** - * @param Google_Service_CloudRun_Binding - */ - public function setBindings($bindings) - { - $this->bindings = $bindings; - } - /** - * @return Google_Service_CloudRun_Binding - */ - public function getBindings() - { - return $this->bindings; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Probe.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Probe.php deleted file mode 100644 index 93660141..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Probe.php +++ /dev/null @@ -1,82 +0,0 @@ -failureThreshold = $failureThreshold; - } - public function getFailureThreshold() - { - return $this->failureThreshold; - } - /** - * @param Google_Service_CloudRun_Handler - */ - public function setHandler(Google_Service_CloudRun_Handler $handler) - { - $this->handler = $handler; - } - /** - * @return Google_Service_CloudRun_Handler - */ - public function getHandler() - { - return $this->handler; - } - public function setInitialDelaySeconds($initialDelaySeconds) - { - $this->initialDelaySeconds = $initialDelaySeconds; - } - public function getInitialDelaySeconds() - { - return $this->initialDelaySeconds; - } - public function setPeriodSeconds($periodSeconds) - { - $this->periodSeconds = $periodSeconds; - } - public function getPeriodSeconds() - { - return $this->periodSeconds; - } - public function setSuccessThreshold($successThreshold) - { - $this->successThreshold = $successThreshold; - } - public function getSuccessThreshold() - { - return $this->successThreshold; - } - public function setTimeoutSeconds($timeoutSeconds) - { - $this->timeoutSeconds = $timeoutSeconds; - } - public function getTimeoutSeconds() - { - return $this->timeoutSeconds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Resource/Namespaces.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Resource/Namespaces.php deleted file mode 100644 index e7405a7b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Resource/Namespaces.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $runService = new Google_Service_CloudRun(...); - * $namespaces = $runService->namespaces; - * - */ -class Google_Service_CloudRun_Resource_Namespaces extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Resource/NamespacesAuthorizeddomains.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Resource/NamespacesAuthorizeddomains.php deleted file mode 100644 index ee475c11..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Resource/NamespacesAuthorizeddomains.php +++ /dev/null @@ -1,46 +0,0 @@ - - * $runService = new Google_Service_CloudRun(...); - * $authorizeddomains = $runService->authorizeddomains; - * - */ -class Google_Service_CloudRun_Resource_NamespacesAuthorizeddomains extends Google_Service_Resource -{ - /** - * List authorized domains. (authorizeddomains.listNamespacesAuthorizeddomains) - * - * @param string $parent Name of the parent Application resource. Example: - * `apps/myapp`. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Continuation token for fetching the next page of - * results. - * @opt_param int pageSize Maximum results to return per page. - * @return Google_Service_CloudRun_ListAuthorizedDomainsResponse - */ - public function listNamespacesAuthorizeddomains($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudRun_ListAuthorizedDomainsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Resource/NamespacesConfigurations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Resource/NamespacesConfigurations.php deleted file mode 100644 index 2e623b96..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Resource/NamespacesConfigurations.php +++ /dev/null @@ -1,70 +0,0 @@ - - * $runService = new Google_Service_CloudRun(...); - * $configurations = $runService->configurations; - * - */ -class Google_Service_CloudRun_Resource_NamespacesConfigurations extends Google_Service_Resource -{ - /** - * Get information about a configuration. (configurations.get) - * - * @param string $name The name of the configuration to retrieve. For Cloud Run - * (fully managed), replace {namespace_id} with the project ID or number. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudRun_Configuration - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudRun_Configuration"); - } - /** - * List configurations. (configurations.listNamespacesConfigurations) - * - * @param string $parent The namespace from which the configurations should be - * listed. For Cloud Run (fully managed), replace {namespace_id} with the - * project ID or number. - * @param array $optParams Optional parameters. - * - * @opt_param bool watch Flag that indicates that the client expects to watch - * this resource as well. Not currently used by Cloud Run. - * @opt_param string labelSelector Allows to filter resources based on a label. - * Supported operations are =, !=, exists, in, and notIn. - * @opt_param string resourceVersion The baseline resource version from which - * the list or watch operation should start. Not currently used by Cloud Run. - * @opt_param bool includeUninitialized Not currently used by Cloud Run. - * @opt_param string fieldSelector Allows to filter resources based on a - * specific value for a field name. Send this in a query string format. i.e. - * 'metadata.name%3Dlorem'. Not currently used by Cloud Run. - * @opt_param string continue Optional encoded string to continue paging. - * @opt_param int limit The maximum number of records that should be returned. - * @return Google_Service_CloudRun_ListConfigurationsResponse - */ - public function listNamespacesConfigurations($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudRun_ListConfigurationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Resource/NamespacesDomainmappings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Resource/NamespacesDomainmappings.php deleted file mode 100644 index ae1f33fa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Resource/NamespacesDomainmappings.php +++ /dev/null @@ -1,107 +0,0 @@ - - * $runService = new Google_Service_CloudRun(...); - * $domainmappings = $runService->domainmappings; - * - */ -class Google_Service_CloudRun_Resource_NamespacesDomainmappings extends Google_Service_Resource -{ - /** - * Create a new domain mapping. (domainmappings.create) - * - * @param string $parent The namespace in which the domain mapping should be - * created. For Cloud Run (fully managed), replace {namespace_id} with the - * project ID or number. - * @param Google_Service_CloudRun_DomainMapping $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudRun_DomainMapping - */ - public function create($parent, Google_Service_CloudRun_DomainMapping $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_CloudRun_DomainMapping"); - } - /** - * Delete a domain mapping. (domainmappings.delete) - * - * @param string $name The name of the domain mapping to delete. For Cloud Run - * (fully managed), replace {namespace_id} with the project ID or number. - * @param array $optParams Optional parameters. - * - * @opt_param string apiVersion Cloud Run currently ignores this parameter. - * @opt_param string propagationPolicy Specifies the propagation policy of - * delete. Cloud Run currently ignores this setting, and deletes in the - * background. Please see kubernetes.io/docs/concepts/workloads/controllers - * /garbage-collection/ for more information. - * @opt_param string kind Cloud Run currently ignores this parameter. - * @return Google_Service_CloudRun_Status - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudRun_Status"); - } - /** - * Get information about a domain mapping. (domainmappings.get) - * - * @param string $name The name of the domain mapping to retrieve. For Cloud Run - * (fully managed), replace {namespace_id} with the project ID or number. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudRun_DomainMapping - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudRun_DomainMapping"); - } - /** - * List domain mappings. (domainmappings.listNamespacesDomainmappings) - * - * @param string $parent The namespace from which the domain mappings should be - * listed. For Cloud Run (fully managed), replace {namespace_id} with the - * project ID or number. - * @param array $optParams Optional parameters. - * - * @opt_param string continue Optional encoded string to continue paging. - * @opt_param int limit The maximum number of records that should be returned. - * @opt_param bool watch Flag that indicates that the client expects to watch - * this resource as well. Not currently used by Cloud Run. - * @opt_param string labelSelector Allows to filter resources based on a label. - * Supported operations are =, !=, exists, in, and notIn. - * @opt_param string resourceVersion The baseline resource version from which - * the list or watch operation should start. Not currently used by Cloud Run. - * @opt_param bool includeUninitialized Not currently used by Cloud Run. - * @opt_param string fieldSelector Allows to filter resources based on a - * specific value for a field name. Send this in a query string format. i.e. - * 'metadata.name%3Dlorem'. Not currently used by Cloud Run. - * @return Google_Service_CloudRun_ListDomainMappingsResponse - */ - public function listNamespacesDomainmappings($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudRun_ListDomainMappingsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Resource/NamespacesRevisions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Resource/NamespacesRevisions.php deleted file mode 100644 index b9f7c0ef..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Resource/NamespacesRevisions.php +++ /dev/null @@ -1,91 +0,0 @@ - - * $runService = new Google_Service_CloudRun(...); - * $revisions = $runService->revisions; - * - */ -class Google_Service_CloudRun_Resource_NamespacesRevisions extends Google_Service_Resource -{ - /** - * Delete a revision. (revisions.delete) - * - * @param string $name The name of the revision to delete. For Cloud Run (fully - * managed), replace {namespace_id} with the project ID or number. - * @param array $optParams Optional parameters. - * - * @opt_param string apiVersion Cloud Run currently ignores this parameter. - * @opt_param string propagationPolicy Specifies the propagation policy of - * delete. Cloud Run currently ignores this setting, and deletes in the - * background. Please see kubernetes.io/docs/concepts/workloads/controllers - * /garbage-collection/ for more information. - * @opt_param string kind Cloud Run currently ignores this parameter. - * @return Google_Service_CloudRun_Status - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudRun_Status"); - } - /** - * Get information about a revision. (revisions.get) - * - * @param string $name The name of the revision to retrieve. For Cloud Run - * (fully managed), replace {namespace_id} with the project ID or number. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudRun_Revision - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudRun_Revision"); - } - /** - * List revisions. (revisions.listNamespacesRevisions) - * - * @param string $parent The namespace from which the revisions should be - * listed. For Cloud Run (fully managed), replace {namespace_id} with the - * project ID or number. - * @param array $optParams Optional parameters. - * - * @opt_param string labelSelector Allows to filter resources based on a label. - * Supported operations are =, !=, exists, in, and notIn. - * @opt_param string resourceVersion The baseline resource version from which - * the list or watch operation should start. Not currently used by Cloud Run. - * @opt_param bool includeUninitialized Not currently used by Cloud Run. - * @opt_param string fieldSelector Allows to filter resources based on a - * specific value for a field name. Send this in a query string format. i.e. - * 'metadata.name%3Dlorem'. Not currently used by Cloud Run. - * @opt_param string continue Optional encoded string to continue paging. - * @opt_param int limit The maximum number of records that should be returned. - * @opt_param bool watch Flag that indicates that the client expects to watch - * this resource as well. Not currently used by Cloud Run. - * @return Google_Service_CloudRun_ListRevisionsResponse - */ - public function listNamespacesRevisions($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudRun_ListRevisionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Resource/NamespacesRoutes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Resource/NamespacesRoutes.php deleted file mode 100644 index 69ea7588..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Resource/NamespacesRoutes.php +++ /dev/null @@ -1,70 +0,0 @@ - - * $runService = new Google_Service_CloudRun(...); - * $routes = $runService->routes; - * - */ -class Google_Service_CloudRun_Resource_NamespacesRoutes extends Google_Service_Resource -{ - /** - * Get information about a route. (routes.get) - * - * @param string $name The name of the route to retrieve. For Cloud Run (fully - * managed), replace {namespace_id} with the project ID or number. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudRun_Route - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudRun_Route"); - } - /** - * List routes. (routes.listNamespacesRoutes) - * - * @param string $parent The namespace from which the routes should be listed. - * For Cloud Run (fully managed), replace {namespace_id} with the project ID or - * number. - * @param array $optParams Optional parameters. - * - * @opt_param string continue Optional encoded string to continue paging. - * @opt_param int limit The maximum number of records that should be returned. - * @opt_param bool watch Flag that indicates that the client expects to watch - * this resource as well. Not currently used by Cloud Run. - * @opt_param string labelSelector Allows to filter resources based on a label. - * Supported operations are =, !=, exists, in, and notIn. - * @opt_param string resourceVersion The baseline resource version from which - * the list or watch operation should start. Not currently used by Cloud Run. - * @opt_param bool includeUninitialized Not currently used by Cloud Run. - * @opt_param string fieldSelector Allows to filter resources based on a - * specific value for a field name. Send this in a query string format. i.e. - * 'metadata.name%3Dlorem'. Not currently used by Cloud Run. - * @return Google_Service_CloudRun_ListRoutesResponse - */ - public function listNamespacesRoutes($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudRun_ListRoutesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Resource/NamespacesServices.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Resource/NamespacesServices.php deleted file mode 100644 index 616b2f0f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Resource/NamespacesServices.php +++ /dev/null @@ -1,131 +0,0 @@ - - * $runService = new Google_Service_CloudRun(...); - * $services = $runService->services; - * - */ -class Google_Service_CloudRun_Resource_NamespacesServices extends Google_Service_Resource -{ - /** - * Create a service. (services.create) - * - * @param string $parent The namespace in which the service should be created. - * For Cloud Run (fully managed), replace {namespace_id} with the project ID or - * number. - * @param Google_Service_CloudRun_Service $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudRun_Service - */ - public function create($parent, Google_Service_CloudRun_Service $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_CloudRun_Service"); - } - /** - * Delete a service. This will cause the Service to stop serving traffic and - * will delete the child entities like Routes, Configurations and Revisions. - * (services.delete) - * - * @param string $name The name of the service to delete. For Cloud Run (fully - * managed), replace {namespace_id} with the project ID or number. - * @param array $optParams Optional parameters. - * - * @opt_param string apiVersion Cloud Run currently ignores this parameter. - * @opt_param string propagationPolicy Specifies the propagation policy of - * delete. Cloud Run currently ignores this setting, and deletes in the - * background. Please see kubernetes.io/docs/concepts/workloads/controllers - * /garbage-collection/ for more information. - * @opt_param string kind Cloud Run currently ignores this parameter. - * @return Google_Service_CloudRun_Status - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudRun_Status"); - } - /** - * Get information about a service. (services.get) - * - * @param string $name The name of the service to retrieve. For Cloud Run (fully - * managed), replace {namespace_id} with the project ID or number. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudRun_Service - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudRun_Service"); - } - /** - * List services. (services.listNamespacesServices) - * - * @param string $parent The namespace from which the services should be listed. - * For Cloud Run (fully managed), replace {namespace_id} with the project ID or - * number. - * @param array $optParams Optional parameters. - * - * @opt_param bool watch Flag that indicates that the client expects to watch - * this resource as well. Not currently used by Cloud Run. - * @opt_param string labelSelector Allows to filter resources based on a label. - * Supported operations are =, !=, exists, in, and notIn. - * @opt_param string fieldSelector Allows to filter resources based on a - * specific value for a field name. Send this in a query string format. i.e. - * 'metadata.name%3Dlorem'. Not currently used by Cloud Run. - * @opt_param bool includeUninitialized Not currently used by Cloud Run. - * @opt_param string resourceVersion The baseline resource version from which - * the list or watch operation should start. Not currently used by Cloud Run. - * @opt_param string continue Optional encoded string to continue paging. - * @opt_param int limit The maximum number of records that should be returned. - * @return Google_Service_CloudRun_ListServicesResponse - */ - public function listNamespacesServices($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudRun_ListServicesResponse"); - } - /** - * Replace a service. - * - * Only the spec and metadata labels and annotations are modifiable. After the - * Update request, Cloud Run will work to make the 'status' match the requested - * 'spec'. - * - * May provide metadata.resourceVersion to enforce update from last read for - * optimistic concurrency control. (services.replaceService) - * - * @param string $name The name of the service being replaced. For Cloud Run - * (fully managed), replace {namespace_id} with the project ID or number. - * @param Google_Service_CloudRun_Service $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudRun_Service - */ - public function replaceService($name, Google_Service_CloudRun_Service $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('replaceService', array($params), "Google_Service_CloudRun_Service"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Resource/Projects.php deleted file mode 100644 index 6720e032..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Resource/Projects.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $runService = new Google_Service_CloudRun(...); - * $projects = $runService->projects; - * - */ -class Google_Service_CloudRun_Resource_Projects extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Resource/ProjectsLocations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Resource/ProjectsLocations.php deleted file mode 100644 index 27b730ff..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Resource/ProjectsLocations.php +++ /dev/null @@ -1,47 +0,0 @@ - - * $runService = new Google_Service_CloudRun(...); - * $locations = $runService->locations; - * - */ -class Google_Service_CloudRun_Resource_ProjectsLocations extends Google_Service_Resource -{ - /** - * Lists information about the supported locations for this service. - * (locations.listProjectsLocations) - * - * @param string $name The resource that owns the locations collection, if - * applicable. - * @param array $optParams Optional parameters. - * - * @opt_param string filter The standard list filter. - * @opt_param string pageToken The standard list page token. - * @opt_param int pageSize The standard list page size. - * @return Google_Service_CloudRun_ListLocationsResponse - */ - public function listProjectsLocations($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudRun_ListLocationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Resource/ProjectsLocationsAuthorizeddomains.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Resource/ProjectsLocationsAuthorizeddomains.php deleted file mode 100644 index b50fd551..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Resource/ProjectsLocationsAuthorizeddomains.php +++ /dev/null @@ -1,47 +0,0 @@ - - * $runService = new Google_Service_CloudRun(...); - * $authorizeddomains = $runService->authorizeddomains; - * - */ -class Google_Service_CloudRun_Resource_ProjectsLocationsAuthorizeddomains extends Google_Service_Resource -{ - /** - * List authorized domains. - * (authorizeddomains.listProjectsLocationsAuthorizeddomains) - * - * @param string $parent Name of the parent Application resource. Example: - * `apps/myapp`. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Continuation token for fetching the next page of - * results. - * @opt_param int pageSize Maximum results to return per page. - * @return Google_Service_CloudRun_ListAuthorizedDomainsResponse - */ - public function listProjectsLocationsAuthorizeddomains($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudRun_ListAuthorizedDomainsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Resource/ProjectsLocationsConfigurations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Resource/ProjectsLocationsConfigurations.php deleted file mode 100644 index 11f0da6f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Resource/ProjectsLocationsConfigurations.php +++ /dev/null @@ -1,70 +0,0 @@ - - * $runService = new Google_Service_CloudRun(...); - * $configurations = $runService->configurations; - * - */ -class Google_Service_CloudRun_Resource_ProjectsLocationsConfigurations extends Google_Service_Resource -{ - /** - * Get information about a configuration. (configurations.get) - * - * @param string $name The name of the configuration to retrieve. For Cloud Run - * (fully managed), replace {namespace_id} with the project ID or number. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudRun_Configuration - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudRun_Configuration"); - } - /** - * List configurations. (configurations.listProjectsLocationsConfigurations) - * - * @param string $parent The namespace from which the configurations should be - * listed. For Cloud Run (fully managed), replace {namespace_id} with the - * project ID or number. - * @param array $optParams Optional parameters. - * - * @opt_param string labelSelector Allows to filter resources based on a label. - * Supported operations are =, !=, exists, in, and notIn. - * @opt_param string fieldSelector Allows to filter resources based on a - * specific value for a field name. Send this in a query string format. i.e. - * 'metadata.name%3Dlorem'. Not currently used by Cloud Run. - * @opt_param bool includeUninitialized Not currently used by Cloud Run. - * @opt_param string resourceVersion The baseline resource version from which - * the list or watch operation should start. Not currently used by Cloud Run. - * @opt_param string continue Optional encoded string to continue paging. - * @opt_param int limit The maximum number of records that should be returned. - * @opt_param bool watch Flag that indicates that the client expects to watch - * this resource as well. Not currently used by Cloud Run. - * @return Google_Service_CloudRun_ListConfigurationsResponse - */ - public function listProjectsLocationsConfigurations($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudRun_ListConfigurationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Resource/ProjectsLocationsDomainmappings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Resource/ProjectsLocationsDomainmappings.php deleted file mode 100644 index ac3d40fb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Resource/ProjectsLocationsDomainmappings.php +++ /dev/null @@ -1,107 +0,0 @@ - - * $runService = new Google_Service_CloudRun(...); - * $domainmappings = $runService->domainmappings; - * - */ -class Google_Service_CloudRun_Resource_ProjectsLocationsDomainmappings extends Google_Service_Resource -{ - /** - * Create a new domain mapping. (domainmappings.create) - * - * @param string $parent The namespace in which the domain mapping should be - * created. For Cloud Run (fully managed), replace {namespace_id} with the - * project ID or number. - * @param Google_Service_CloudRun_DomainMapping $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudRun_DomainMapping - */ - public function create($parent, Google_Service_CloudRun_DomainMapping $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_CloudRun_DomainMapping"); - } - /** - * Delete a domain mapping. (domainmappings.delete) - * - * @param string $name The name of the domain mapping to delete. For Cloud Run - * (fully managed), replace {namespace_id} with the project ID or number. - * @param array $optParams Optional parameters. - * - * @opt_param string apiVersion Cloud Run currently ignores this parameter. - * @opt_param string propagationPolicy Specifies the propagation policy of - * delete. Cloud Run currently ignores this setting, and deletes in the - * background. Please see kubernetes.io/docs/concepts/workloads/controllers - * /garbage-collection/ for more information. - * @opt_param string kind Cloud Run currently ignores this parameter. - * @return Google_Service_CloudRun_Status - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudRun_Status"); - } - /** - * Get information about a domain mapping. (domainmappings.get) - * - * @param string $name The name of the domain mapping to retrieve. For Cloud Run - * (fully managed), replace {namespace_id} with the project ID or number. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudRun_DomainMapping - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudRun_DomainMapping"); - } - /** - * List domain mappings. (domainmappings.listProjectsLocationsDomainmappings) - * - * @param string $parent The namespace from which the domain mappings should be - * listed. For Cloud Run (fully managed), replace {namespace_id} with the - * project ID or number. - * @param array $optParams Optional parameters. - * - * @opt_param string continue Optional encoded string to continue paging. - * @opt_param int limit The maximum number of records that should be returned. - * @opt_param bool watch Flag that indicates that the client expects to watch - * this resource as well. Not currently used by Cloud Run. - * @opt_param string labelSelector Allows to filter resources based on a label. - * Supported operations are =, !=, exists, in, and notIn. - * @opt_param string resourceVersion The baseline resource version from which - * the list or watch operation should start. Not currently used by Cloud Run. - * @opt_param bool includeUninitialized Not currently used by Cloud Run. - * @opt_param string fieldSelector Allows to filter resources based on a - * specific value for a field name. Send this in a query string format. i.e. - * 'metadata.name%3Dlorem'. Not currently used by Cloud Run. - * @return Google_Service_CloudRun_ListDomainMappingsResponse - */ - public function listProjectsLocationsDomainmappings($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudRun_ListDomainMappingsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Resource/ProjectsLocationsRevisions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Resource/ProjectsLocationsRevisions.php deleted file mode 100644 index adc782de..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Resource/ProjectsLocationsRevisions.php +++ /dev/null @@ -1,91 +0,0 @@ - - * $runService = new Google_Service_CloudRun(...); - * $revisions = $runService->revisions; - * - */ -class Google_Service_CloudRun_Resource_ProjectsLocationsRevisions extends Google_Service_Resource -{ - /** - * Delete a revision. (revisions.delete) - * - * @param string $name The name of the revision to delete. For Cloud Run (fully - * managed), replace {namespace_id} with the project ID or number. - * @param array $optParams Optional parameters. - * - * @opt_param string apiVersion Cloud Run currently ignores this parameter. - * @opt_param string propagationPolicy Specifies the propagation policy of - * delete. Cloud Run currently ignores this setting, and deletes in the - * background. Please see kubernetes.io/docs/concepts/workloads/controllers - * /garbage-collection/ for more information. - * @opt_param string kind Cloud Run currently ignores this parameter. - * @return Google_Service_CloudRun_Status - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudRun_Status"); - } - /** - * Get information about a revision. (revisions.get) - * - * @param string $name The name of the revision to retrieve. For Cloud Run - * (fully managed), replace {namespace_id} with the project ID or number. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudRun_Revision - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudRun_Revision"); - } - /** - * List revisions. (revisions.listProjectsLocationsRevisions) - * - * @param string $parent The namespace from which the revisions should be - * listed. For Cloud Run (fully managed), replace {namespace_id} with the - * project ID or number. - * @param array $optParams Optional parameters. - * - * @opt_param string resourceVersion The baseline resource version from which - * the list or watch operation should start. Not currently used by Cloud Run. - * @opt_param bool includeUninitialized Not currently used by Cloud Run. - * @opt_param string fieldSelector Allows to filter resources based on a - * specific value for a field name. Send this in a query string format. i.e. - * 'metadata.name%3Dlorem'. Not currently used by Cloud Run. - * @opt_param string continue Optional encoded string to continue paging. - * @opt_param int limit The maximum number of records that should be returned. - * @opt_param bool watch Flag that indicates that the client expects to watch - * this resource as well. Not currently used by Cloud Run. - * @opt_param string labelSelector Allows to filter resources based on a label. - * Supported operations are =, !=, exists, in, and notIn. - * @return Google_Service_CloudRun_ListRevisionsResponse - */ - public function listProjectsLocationsRevisions($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudRun_ListRevisionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Resource/ProjectsLocationsRoutes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Resource/ProjectsLocationsRoutes.php deleted file mode 100644 index fa5ea915..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Resource/ProjectsLocationsRoutes.php +++ /dev/null @@ -1,70 +0,0 @@ - - * $runService = new Google_Service_CloudRun(...); - * $routes = $runService->routes; - * - */ -class Google_Service_CloudRun_Resource_ProjectsLocationsRoutes extends Google_Service_Resource -{ - /** - * Get information about a route. (routes.get) - * - * @param string $name The name of the route to retrieve. For Cloud Run (fully - * managed), replace {namespace_id} with the project ID or number. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudRun_Route - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudRun_Route"); - } - /** - * List routes. (routes.listProjectsLocationsRoutes) - * - * @param string $parent The namespace from which the routes should be listed. - * For Cloud Run (fully managed), replace {namespace_id} with the project ID or - * number. - * @param array $optParams Optional parameters. - * - * @opt_param string labelSelector Allows to filter resources based on a label. - * Supported operations are =, !=, exists, in, and notIn. - * @opt_param string resourceVersion The baseline resource version from which - * the list or watch operation should start. Not currently used by Cloud Run. - * @opt_param bool includeUninitialized Not currently used by Cloud Run. - * @opt_param string fieldSelector Allows to filter resources based on a - * specific value for a field name. Send this in a query string format. i.e. - * 'metadata.name%3Dlorem'. Not currently used by Cloud Run. - * @opt_param string continue Optional encoded string to continue paging. - * @opt_param int limit The maximum number of records that should be returned. - * @opt_param bool watch Flag that indicates that the client expects to watch - * this resource as well. Not currently used by Cloud Run. - * @return Google_Service_CloudRun_ListRoutesResponse - */ - public function listProjectsLocationsRoutes($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudRun_ListRoutesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Resource/ProjectsLocationsServices.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Resource/ProjectsLocationsServices.php deleted file mode 100644 index 0698d2ff..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Resource/ProjectsLocationsServices.php +++ /dev/null @@ -1,194 +0,0 @@ - - * $runService = new Google_Service_CloudRun(...); - * $services = $runService->services; - * - */ -class Google_Service_CloudRun_Resource_ProjectsLocationsServices extends Google_Service_Resource -{ - /** - * Create a service. (services.create) - * - * @param string $parent The namespace in which the service should be created. - * For Cloud Run (fully managed), replace {namespace_id} with the project ID or - * number. - * @param Google_Service_CloudRun_Service $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudRun_Service - */ - public function create($parent, Google_Service_CloudRun_Service $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_CloudRun_Service"); - } - /** - * Delete a service. This will cause the Service to stop serving traffic and - * will delete the child entities like Routes, Configurations and Revisions. - * (services.delete) - * - * @param string $name The name of the service to delete. For Cloud Run (fully - * managed), replace {namespace_id} with the project ID or number. - * @param array $optParams Optional parameters. - * - * @opt_param string apiVersion Cloud Run currently ignores this parameter. - * @opt_param string propagationPolicy Specifies the propagation policy of - * delete. Cloud Run currently ignores this setting, and deletes in the - * background. Please see kubernetes.io/docs/concepts/workloads/controllers - * /garbage-collection/ for more information. - * @opt_param string kind Cloud Run currently ignores this parameter. - * @return Google_Service_CloudRun_Status - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudRun_Status"); - } - /** - * Get information about a service. (services.get) - * - * @param string $name The name of the service to retrieve. For Cloud Run (fully - * managed), replace {namespace_id} with the project ID or number. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudRun_Service - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudRun_Service"); - } - /** - * Get the IAM Access Control policy currently in effect for the given Cloud Run - * service. This result does not include any inherited policies. - * (services.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. - * @return Google_Service_CloudRun_Policy - */ - public function getIamPolicy($resource, $optParams = array()) - { - $params = array('resource' => $resource); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_CloudRun_Policy"); - } - /** - * List services. (services.listProjectsLocationsServices) - * - * @param string $parent The namespace from which the services should be listed. - * For Cloud Run (fully managed), replace {namespace_id} with the project ID or - * number. - * @param array $optParams Optional parameters. - * - * @opt_param string labelSelector Allows to filter resources based on a label. - * Supported operations are =, !=, exists, in, and notIn. - * @opt_param string fieldSelector Allows to filter resources based on a - * specific value for a field name. Send this in a query string format. i.e. - * 'metadata.name%3Dlorem'. Not currently used by Cloud Run. - * @opt_param bool includeUninitialized Not currently used by Cloud Run. - * @opt_param string resourceVersion The baseline resource version from which - * the list or watch operation should start. Not currently used by Cloud Run. - * @opt_param string continue Optional encoded string to continue paging. - * @opt_param int limit The maximum number of records that should be returned. - * @opt_param bool watch Flag that indicates that the client expects to watch - * this resource as well. Not currently used by Cloud Run. - * @return Google_Service_CloudRun_ListServicesResponse - */ - public function listProjectsLocationsServices($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudRun_ListServicesResponse"); - } - /** - * Replace a service. - * - * Only the spec and metadata labels and annotations are modifiable. After the - * Update request, Cloud Run will work to make the 'status' match the requested - * 'spec'. - * - * May provide metadata.resourceVersion to enforce update from last read for - * optimistic concurrency control. (services.replaceService) - * - * @param string $name The name of the service being replaced. For Cloud Run - * (fully managed), replace {namespace_id} with the project ID or number. - * @param Google_Service_CloudRun_Service $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudRun_Service - */ - public function replaceService($name, Google_Service_CloudRun_Service $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('replaceService', array($params), "Google_Service_CloudRun_Service"); - } - /** - * Sets the IAM Access control policy for the specified Service. Overwrites any - * existing policy. (services.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_CloudRun_SetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudRun_Policy - */ - public function setIamPolicy($resource, Google_Service_CloudRun_SetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_CloudRun_Policy"); - } - /** - * Returns permissions that a caller has on the specified Project. - * - * There are no permissions required for making this API call. - * (services.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_CloudRun_TestIamPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudRun_TestIamPermissionsResponse - */ - public function testIamPermissions($resource, Google_Service_CloudRun_TestIamPermissionsRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_CloudRun_TestIamPermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ResourceRecord.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ResourceRecord.php deleted file mode 100644 index cfed608e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ResourceRecord.php +++ /dev/null @@ -1,48 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setRrdata($rrdata) - { - $this->rrdata = $rrdata; - } - public function getRrdata() - { - return $this->rrdata; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ResourceRequirements.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ResourceRequirements.php deleted file mode 100644 index d28fd2b0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ResourceRequirements.php +++ /dev/null @@ -1,39 +0,0 @@ -limits = $limits; - } - public function getLimits() - { - return $this->limits; - } - public function setRequests($requests) - { - $this->requests = $requests; - } - public function getRequests() - { - return $this->requests; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Revision.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Revision.php deleted file mode 100644 index 21f42b92..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Revision.php +++ /dev/null @@ -1,87 +0,0 @@ -apiVersion = $apiVersion; - } - public function getApiVersion() - { - return $this->apiVersion; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_CloudRun_ObjectMeta - */ - public function setMetadata(Google_Service_CloudRun_ObjectMeta $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_CloudRun_ObjectMeta - */ - public function getMetadata() - { - return $this->metadata; - } - /** - * @param Google_Service_CloudRun_RevisionSpec - */ - public function setSpec(Google_Service_CloudRun_RevisionSpec $spec) - { - $this->spec = $spec; - } - /** - * @return Google_Service_CloudRun_RevisionSpec - */ - public function getSpec() - { - return $this->spec; - } - /** - * @param Google_Service_CloudRun_RevisionStatus - */ - public function setStatus(Google_Service_CloudRun_RevisionStatus $status) - { - $this->status = $status; - } - /** - * @return Google_Service_CloudRun_RevisionStatus - */ - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/RevisionSpec.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/RevisionSpec.php deleted file mode 100644 index 058a448a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/RevisionSpec.php +++ /dev/null @@ -1,81 +0,0 @@ -containerConcurrency = $containerConcurrency; - } - public function getContainerConcurrency() - { - return $this->containerConcurrency; - } - /** - * @param Google_Service_CloudRun_Container - */ - public function setContainers($containers) - { - $this->containers = $containers; - } - /** - * @return Google_Service_CloudRun_Container - */ - public function getContainers() - { - return $this->containers; - } - public function setServiceAccountName($serviceAccountName) - { - $this->serviceAccountName = $serviceAccountName; - } - public function getServiceAccountName() - { - return $this->serviceAccountName; - } - public function setTimeoutSeconds($timeoutSeconds) - { - $this->timeoutSeconds = $timeoutSeconds; - } - public function getTimeoutSeconds() - { - return $this->timeoutSeconds; - } - /** - * @param Google_Service_CloudRun_Volume - */ - public function setVolumes($volumes) - { - $this->volumes = $volumes; - } - /** - * @return Google_Service_CloudRun_Volume - */ - public function getVolumes() - { - return $this->volumes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/RevisionStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/RevisionStatus.php deleted file mode 100644 index 57e214ab..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/RevisionStatus.php +++ /dev/null @@ -1,74 +0,0 @@ -conditions = $conditions; - } - /** - * @return Google_Service_CloudRun_GoogleCloudRunV1Condition - */ - public function getConditions() - { - return $this->conditions; - } - public function setImageDigest($imageDigest) - { - $this->imageDigest = $imageDigest; - } - public function getImageDigest() - { - return $this->imageDigest; - } - public function setLogUrl($logUrl) - { - $this->logUrl = $logUrl; - } - public function getLogUrl() - { - return $this->logUrl; - } - public function setObservedGeneration($observedGeneration) - { - $this->observedGeneration = $observedGeneration; - } - public function getObservedGeneration() - { - return $this->observedGeneration; - } - public function setServiceName($serviceName) - { - $this->serviceName = $serviceName; - } - public function getServiceName() - { - return $this->serviceName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/RevisionTemplate.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/RevisionTemplate.php deleted file mode 100644 index c45218a8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/RevisionTemplate.php +++ /dev/null @@ -1,53 +0,0 @@ -metadata = $metadata; - } - /** - * @return Google_Service_CloudRun_ObjectMeta - */ - public function getMetadata() - { - return $this->metadata; - } - /** - * @param Google_Service_CloudRun_RevisionSpec - */ - public function setSpec(Google_Service_CloudRun_RevisionSpec $spec) - { - $this->spec = $spec; - } - /** - * @return Google_Service_CloudRun_RevisionSpec - */ - public function getSpec() - { - return $this->spec; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Route.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Route.php deleted file mode 100644 index 0f391d6a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Route.php +++ /dev/null @@ -1,87 +0,0 @@ -apiVersion = $apiVersion; - } - public function getApiVersion() - { - return $this->apiVersion; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_CloudRun_ObjectMeta - */ - public function setMetadata(Google_Service_CloudRun_ObjectMeta $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_CloudRun_ObjectMeta - */ - public function getMetadata() - { - return $this->metadata; - } - /** - * @param Google_Service_CloudRun_RouteSpec - */ - public function setSpec(Google_Service_CloudRun_RouteSpec $spec) - { - $this->spec = $spec; - } - /** - * @return Google_Service_CloudRun_RouteSpec - */ - public function getSpec() - { - return $this->spec; - } - /** - * @param Google_Service_CloudRun_RouteStatus - */ - public function setStatus(Google_Service_CloudRun_RouteStatus $status) - { - $this->status = $status; - } - /** - * @return Google_Service_CloudRun_RouteStatus - */ - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/RouteSpec.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/RouteSpec.php deleted file mode 100644 index b9cf3c25..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/RouteSpec.php +++ /dev/null @@ -1,38 +0,0 @@ -traffic = $traffic; - } - /** - * @return Google_Service_CloudRun_TrafficTarget - */ - public function getTraffic() - { - return $this->traffic; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/RouteStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/RouteStatus.php deleted file mode 100644 index aef50555..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/RouteStatus.php +++ /dev/null @@ -1,88 +0,0 @@ -address = $address; - } - /** - * @return Google_Service_CloudRun_Addressable - */ - public function getAddress() - { - return $this->address; - } - /** - * @param Google_Service_CloudRun_GoogleCloudRunV1Condition - */ - public function setConditions($conditions) - { - $this->conditions = $conditions; - } - /** - * @return Google_Service_CloudRun_GoogleCloudRunV1Condition - */ - public function getConditions() - { - return $this->conditions; - } - public function setObservedGeneration($observedGeneration) - { - $this->observedGeneration = $observedGeneration; - } - public function getObservedGeneration() - { - return $this->observedGeneration; - } - /** - * @param Google_Service_CloudRun_TrafficTarget - */ - public function setTraffic($traffic) - { - $this->traffic = $traffic; - } - /** - * @return Google_Service_CloudRun_TrafficTarget - */ - public function getTraffic() - { - return $this->traffic; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/SecretEnvSource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/SecretEnvSource.php deleted file mode 100644 index 9722c0ee..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/SecretEnvSource.php +++ /dev/null @@ -1,55 +0,0 @@ -localObjectReference = $localObjectReference; - } - /** - * @return Google_Service_CloudRun_LocalObjectReference - */ - public function getLocalObjectReference() - { - return $this->localObjectReference; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOptional($optional) - { - $this->optional = $optional; - } - public function getOptional() - { - return $this->optional; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/SecretKeySelector.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/SecretKeySelector.php deleted file mode 100644 index 1be6283f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/SecretKeySelector.php +++ /dev/null @@ -1,64 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - /** - * @param Google_Service_CloudRun_LocalObjectReference - */ - public function setLocalObjectReference(Google_Service_CloudRun_LocalObjectReference $localObjectReference) - { - $this->localObjectReference = $localObjectReference; - } - /** - * @return Google_Service_CloudRun_LocalObjectReference - */ - public function getLocalObjectReference() - { - return $this->localObjectReference; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOptional($optional) - { - $this->optional = $optional; - } - public function getOptional() - { - return $this->optional; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/SecretVolumeSource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/SecretVolumeSource.php deleted file mode 100644 index aaf6b45a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/SecretVolumeSource.php +++ /dev/null @@ -1,65 +0,0 @@ -defaultMode = $defaultMode; - } - public function getDefaultMode() - { - return $this->defaultMode; - } - /** - * @param Google_Service_CloudRun_KeyToPath - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_CloudRun_KeyToPath - */ - public function getItems() - { - return $this->items; - } - public function setOptional($optional) - { - $this->optional = $optional; - } - public function getOptional() - { - return $this->optional; - } - public function setSecretName($secretName) - { - $this->secretName = $secretName; - } - public function getSecretName() - { - return $this->secretName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/SecurityContext.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/SecurityContext.php deleted file mode 100644 index ec80091c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/SecurityContext.php +++ /dev/null @@ -1,30 +0,0 @@ -runAsUser = $runAsUser; - } - public function getRunAsUser() - { - return $this->runAsUser; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Service.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Service.php deleted file mode 100644 index 0bbe716d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Service.php +++ /dev/null @@ -1,87 +0,0 @@ -apiVersion = $apiVersion; - } - public function getApiVersion() - { - return $this->apiVersion; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_CloudRun_ObjectMeta - */ - public function setMetadata(Google_Service_CloudRun_ObjectMeta $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_CloudRun_ObjectMeta - */ - public function getMetadata() - { - return $this->metadata; - } - /** - * @param Google_Service_CloudRun_ServiceSpec - */ - public function setSpec(Google_Service_CloudRun_ServiceSpec $spec) - { - $this->spec = $spec; - } - /** - * @return Google_Service_CloudRun_ServiceSpec - */ - public function getSpec() - { - return $this->spec; - } - /** - * @param Google_Service_CloudRun_ServiceStatus - */ - public function setStatus(Google_Service_CloudRun_ServiceStatus $status) - { - $this->status = $status; - } - /** - * @return Google_Service_CloudRun_ServiceStatus - */ - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ServiceSpec.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ServiceSpec.php deleted file mode 100644 index f56c1e38..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ServiceSpec.php +++ /dev/null @@ -1,54 +0,0 @@ -template = $template; - } - /** - * @return Google_Service_CloudRun_RevisionTemplate - */ - public function getTemplate() - { - return $this->template; - } - /** - * @param Google_Service_CloudRun_TrafficTarget - */ - public function setTraffic($traffic) - { - $this->traffic = $traffic; - } - /** - * @return Google_Service_CloudRun_TrafficTarget - */ - public function getTraffic() - { - return $this->traffic; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ServiceStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ServiceStatus.php deleted file mode 100644 index 81f4ea58..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/ServiceStatus.php +++ /dev/null @@ -1,106 +0,0 @@ -address = $address; - } - /** - * @return Google_Service_CloudRun_Addressable - */ - public function getAddress() - { - return $this->address; - } - /** - * @param Google_Service_CloudRun_GoogleCloudRunV1Condition - */ - public function setConditions($conditions) - { - $this->conditions = $conditions; - } - /** - * @return Google_Service_CloudRun_GoogleCloudRunV1Condition - */ - public function getConditions() - { - return $this->conditions; - } - public function setLatestCreatedRevisionName($latestCreatedRevisionName) - { - $this->latestCreatedRevisionName = $latestCreatedRevisionName; - } - public function getLatestCreatedRevisionName() - { - return $this->latestCreatedRevisionName; - } - public function setLatestReadyRevisionName($latestReadyRevisionName) - { - $this->latestReadyRevisionName = $latestReadyRevisionName; - } - public function getLatestReadyRevisionName() - { - return $this->latestReadyRevisionName; - } - public function setObservedGeneration($observedGeneration) - { - $this->observedGeneration = $observedGeneration; - } - public function getObservedGeneration() - { - return $this->observedGeneration; - } - /** - * @param Google_Service_CloudRun_TrafficTarget - */ - public function setTraffic($traffic) - { - $this->traffic = $traffic; - } - /** - * @return Google_Service_CloudRun_TrafficTarget - */ - public function getTraffic() - { - return $this->traffic; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/SetIamPolicyRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/SetIamPolicyRequest.php deleted file mode 100644 index 3f057733..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/SetIamPolicyRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -policy = $policy; - } - /** - * @return Google_Service_CloudRun_Policy - */ - public function getPolicy() - { - return $this->policy; - } - public function setUpdateMask($updateMask) - { - $this->updateMask = $updateMask; - } - public function getUpdateMask() - { - return $this->updateMask; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Status.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Status.php deleted file mode 100644 index decbce00..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Status.php +++ /dev/null @@ -1,89 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_CloudRun_StatusDetails - */ - public function setDetails(Google_Service_CloudRun_StatusDetails $details) - { - $this->details = $details; - } - /** - * @return Google_Service_CloudRun_StatusDetails - */ - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } - /** - * @param Google_Service_CloudRun_ListMeta - */ - public function setMetadata(Google_Service_CloudRun_ListMeta $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_CloudRun_ListMeta - */ - public function getMetadata() - { - return $this->metadata; - } - public function setReason($reason) - { - $this->reason = $reason; - } - public function getReason() - { - return $this->reason; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/StatusCause.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/StatusCause.php deleted file mode 100644 index c7a975d0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/StatusCause.php +++ /dev/null @@ -1,48 +0,0 @@ -field = $field; - } - public function getField() - { - return $this->field; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } - public function setReason($reason) - { - $this->reason = $reason; - } - public function getReason() - { - return $this->reason; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/StatusDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/StatusDetails.php deleted file mode 100644 index c100e2fc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/StatusDetails.php +++ /dev/null @@ -1,83 +0,0 @@ -causes = $causes; - } - /** - * @return Google_Service_CloudRun_StatusCause - */ - public function getCauses() - { - return $this->causes; - } - public function setGroup($group) - { - $this->group = $group; - } - public function getGroup() - { - return $this->group; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setRetryAfterSeconds($retryAfterSeconds) - { - $this->retryAfterSeconds = $retryAfterSeconds; - } - public function getRetryAfterSeconds() - { - return $this->retryAfterSeconds; - } - public function setUid($uid) - { - $this->uid = $uid; - } - public function getUid() - { - return $this->uid; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/TCPSocketAction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/TCPSocketAction.php deleted file mode 100644 index 2a4f78de..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/TCPSocketAction.php +++ /dev/null @@ -1,46 +0,0 @@ -host = $host; - } - public function getHost() - { - return $this->host; - } - /** - * @param Google_Service_CloudRun_IntOrString - */ - public function setPort(Google_Service_CloudRun_IntOrString $port) - { - $this->port = $port; - } - /** - * @return Google_Service_CloudRun_IntOrString - */ - public function getPort() - { - return $this->port; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/TestIamPermissionsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/TestIamPermissionsRequest.php deleted file mode 100644 index e9cc2539..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/TestIamPermissionsRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/TestIamPermissionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/TestIamPermissionsResponse.php deleted file mode 100644 index 8ffd91ed..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/TestIamPermissionsResponse.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/TrafficTarget.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/TrafficTarget.php deleted file mode 100644 index 6d6f398d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/TrafficTarget.php +++ /dev/null @@ -1,75 +0,0 @@ -configurationName = $configurationName; - } - public function getConfigurationName() - { - return $this->configurationName; - } - public function setLatestRevision($latestRevision) - { - $this->latestRevision = $latestRevision; - } - public function getLatestRevision() - { - return $this->latestRevision; - } - public function setPercent($percent) - { - $this->percent = $percent; - } - public function getPercent() - { - return $this->percent; - } - public function setRevisionName($revisionName) - { - $this->revisionName = $revisionName; - } - public function getRevisionName() - { - return $this->revisionName; - } - public function setTag($tag) - { - $this->tag = $tag; - } - public function getTag() - { - return $this->tag; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Volume.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Volume.php deleted file mode 100644 index a426f170..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/Volume.php +++ /dev/null @@ -1,62 +0,0 @@ -configMap = $configMap; - } - /** - * @return Google_Service_CloudRun_ConfigMapVolumeSource - */ - public function getConfigMap() - { - return $this->configMap; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_CloudRun_SecretVolumeSource - */ - public function setSecret(Google_Service_CloudRun_SecretVolumeSource $secret) - { - $this->secret = $secret; - } - /** - * @return Google_Service_CloudRun_SecretVolumeSource - */ - public function getSecret() - { - return $this->secret; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/VolumeMount.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/VolumeMount.php deleted file mode 100644 index 3d5c2c3a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRun/VolumeMount.php +++ /dev/null @@ -1,57 +0,0 @@ -mountPath = $mountPath; - } - public function getMountPath() - { - return $this->mountPath; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setReadOnly($readOnly) - { - $this->readOnly = $readOnly; - } - public function getReadOnly() - { - return $this->readOnly; - } - public function setSubPath($subPath) - { - $this->subPath = $subPath; - } - public function getSubPath() - { - return $this->subPath; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRuntimeConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRuntimeConfig.php deleted file mode 100644 index 3ec0d79f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRuntimeConfig.php +++ /dev/null @@ -1,113 +0,0 @@ - - * The Runtime Configurator allows you to dynamically configure and expose - * variables through Google Cloud Platform. In addition, you can also set - * Watchers and Waiters that will watch for changes to your data and return - * based on certain conditions.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_CloudRuntimeConfig extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** Manage your Google Cloud Platform services' runtime configuration. */ - const CLOUDRUNTIMECONFIG = - "https://www.googleapis.com/auth/cloudruntimeconfig"; - - public $operations; - - /** - * Constructs the internal representation of the CloudRuntimeConfig service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://runtimeconfig.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'runtimeconfig'; - - $this->operations = new Google_Service_CloudRuntimeConfig_Resource_Operations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'cancel' => array( - 'path' => 'v1/{+name}:cancel', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRuntimeConfig/CancelOperationRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRuntimeConfig/CancelOperationRequest.php deleted file mode 100644 index 6f3f2dbd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRuntimeConfig/CancelOperationRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_CloudRuntimeConfig_Operation - */ - public function setOperations($operations) - { - $this->operations = $operations; - } - /** - * @return Google_Service_CloudRuntimeConfig_Operation - */ - public function getOperations() - { - return $this->operations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRuntimeConfig/Operation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRuntimeConfig/Operation.php deleted file mode 100644 index b7c04577..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRuntimeConfig/Operation.php +++ /dev/null @@ -1,73 +0,0 @@ -done = $done; - } - public function getDone() - { - return $this->done; - } - /** - * @param Google_Service_CloudRuntimeConfig_Status - */ - public function setError(Google_Service_CloudRuntimeConfig_Status $error) - { - $this->error = $error; - } - /** - * @return Google_Service_CloudRuntimeConfig_Status - */ - public function getError() - { - return $this->error; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRuntimeConfig/Resource/Operations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRuntimeConfig/Resource/Operations.php deleted file mode 100644 index c6abfb92..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRuntimeConfig/Resource/Operations.php +++ /dev/null @@ -1,92 +0,0 @@ - - * $runtimeconfigService = new Google_Service_CloudRuntimeConfig(...); - * $operations = $runtimeconfigService->operations; - * - */ -class Google_Service_CloudRuntimeConfig_Resource_Operations extends Google_Service_Resource -{ - /** - * Starts asynchronous cancellation on a long-running operation. The server - * makes a best effort to cancel the operation, but success is not guaranteed. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or - * other methods to check whether the cancellation succeeded or whether the - * operation completed despite cancellation. On successful cancellation, the - * operation is not deleted; instead, it becomes an operation with an - * Operation.error value with a google.rpc.Status.code of 1, corresponding to - * `Code.CANCELLED`. (operations.cancel) - * - * @param string $name The name of the operation resource to be cancelled. - * @param Google_Service_CloudRuntimeConfig_CancelOperationRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudRuntimeConfig_RuntimeconfigEmpty - */ - public function cancel($name, Google_Service_CloudRuntimeConfig_CancelOperationRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('cancel', array($params), "Google_Service_CloudRuntimeConfig_RuntimeconfigEmpty"); - } - /** - * Deletes a long-running operation. This method indicates that the client is no - * longer interested in the operation result. It does not cancel the operation. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. (operations.delete) - * - * @param string $name The name of the operation resource to be deleted. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudRuntimeConfig_RuntimeconfigEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudRuntimeConfig_RuntimeconfigEmpty"); - } - /** - * Lists operations that match the specified filter in the request. If the - * server doesn't support this method, it returns `UNIMPLEMENTED`. - * - * NOTE: the `name` binding allows API services to override the binding to use - * different resource name schemes, such as `users/operations`. To override the - * binding, API services can add a binding such as - * `"/v1/{name=users}/operations"` to their service configuration. For backwards - * compatibility, the default name includes the operations collection id, - * however overriding users must ensure the name binding is the parent resource, - * without the operations collection id. (operations.listOperations) - * - * @param string $name The name of the operation's parent resource. - * @param array $optParams Optional parameters. - * - * @opt_param string filter The standard list filter. - * @opt_param string pageToken The standard list page token. - * @opt_param int pageSize The standard list page size. - * @return Google_Service_CloudRuntimeConfig_ListOperationsResponse - */ - public function listOperations($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudRuntimeConfig_ListOperationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRuntimeConfig/RuntimeconfigEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRuntimeConfig/RuntimeconfigEmpty.php deleted file mode 100644 index 07e9b51d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudRuntimeConfig/RuntimeconfigEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudScheduler.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudScheduler.php deleted file mode 100644 index 2b2ba79b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudScheduler.php +++ /dev/null @@ -1,200 +0,0 @@ - - * Creates and manages jobs run on a regular recurring schedule.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_CloudScheduler extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - - public $projects_locations; - public $projects_locations_jobs; - - /** - * Constructs the internal representation of the CloudScheduler service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://cloudscheduler.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'cloudscheduler'; - - $this->projects_locations = new Google_Service_CloudScheduler_Resource_ProjectsLocations( - $this, - $this->serviceName, - 'locations', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+name}/locations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_locations_jobs = new Google_Service_CloudScheduler_Resource_ProjectsLocationsJobs( - $this, - $this->serviceName, - 'jobs', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/jobs', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/jobs', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'pause' => array( - 'path' => 'v1/{+name}:pause', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'resume' => array( - 'path' => 'v1/{+name}:resume', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'run' => array( - 'path' => 'v1/{+name}:run', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudScheduler/AppEngineHttpTarget.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudScheduler/AppEngineHttpTarget.php deleted file mode 100644 index 7b84d116..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudScheduler/AppEngineHttpTarget.php +++ /dev/null @@ -1,73 +0,0 @@ -appEngineRouting = $appEngineRouting; - } - /** - * @return Google_Service_CloudScheduler_AppEngineRouting - */ - public function getAppEngineRouting() - { - return $this->appEngineRouting; - } - public function setBody($body) - { - $this->body = $body; - } - public function getBody() - { - return $this->body; - } - public function setHeaders($headers) - { - $this->headers = $headers; - } - public function getHeaders() - { - return $this->headers; - } - public function setHttpMethod($httpMethod) - { - $this->httpMethod = $httpMethod; - } - public function getHttpMethod() - { - return $this->httpMethod; - } - public function setRelativeUri($relativeUri) - { - $this->relativeUri = $relativeUri; - } - public function getRelativeUri() - { - return $this->relativeUri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudScheduler/AppEngineRouting.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudScheduler/AppEngineRouting.php deleted file mode 100644 index c1428280..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudScheduler/AppEngineRouting.php +++ /dev/null @@ -1,57 +0,0 @@ -host = $host; - } - public function getHost() - { - return $this->host; - } - public function setInstance($instance) - { - $this->instance = $instance; - } - public function getInstance() - { - return $this->instance; - } - public function setService($service) - { - $this->service = $service; - } - public function getService() - { - return $this->service; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudScheduler/CloudschedulerEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudScheduler/CloudschedulerEmpty.php deleted file mode 100644 index 56e8e383..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudScheduler/CloudschedulerEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -body = $body; - } - public function getBody() - { - return $this->body; - } - public function setHeaders($headers) - { - $this->headers = $headers; - } - public function getHeaders() - { - return $this->headers; - } - public function setHttpMethod($httpMethod) - { - $this->httpMethod = $httpMethod; - } - public function getHttpMethod() - { - return $this->httpMethod; - } - /** - * @param Google_Service_CloudScheduler_OAuthToken - */ - public function setOauthToken(Google_Service_CloudScheduler_OAuthToken $oauthToken) - { - $this->oauthToken = $oauthToken; - } - /** - * @return Google_Service_CloudScheduler_OAuthToken - */ - public function getOauthToken() - { - return $this->oauthToken; - } - /** - * @param Google_Service_CloudScheduler_OidcToken - */ - public function setOidcToken(Google_Service_CloudScheduler_OidcToken $oidcToken) - { - $this->oidcToken = $oidcToken; - } - /** - * @return Google_Service_CloudScheduler_OidcToken - */ - public function getOidcToken() - { - return $this->oidcToken; - } - public function setUri($uri) - { - $this->uri = $uri; - } - public function getUri() - { - return $this->uri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudScheduler/Job.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudScheduler/Job.php deleted file mode 100644 index 1a5a12d8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudScheduler/Job.php +++ /dev/null @@ -1,182 +0,0 @@ -appEngineHttpTarget = $appEngineHttpTarget; - } - /** - * @return Google_Service_CloudScheduler_AppEngineHttpTarget - */ - public function getAppEngineHttpTarget() - { - return $this->appEngineHttpTarget; - } - public function setAttemptDeadline($attemptDeadline) - { - $this->attemptDeadline = $attemptDeadline; - } - public function getAttemptDeadline() - { - return $this->attemptDeadline; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - /** - * @param Google_Service_CloudScheduler_HttpTarget - */ - public function setHttpTarget(Google_Service_CloudScheduler_HttpTarget $httpTarget) - { - $this->httpTarget = $httpTarget; - } - /** - * @return Google_Service_CloudScheduler_HttpTarget - */ - public function getHttpTarget() - { - return $this->httpTarget; - } - public function setLastAttemptTime($lastAttemptTime) - { - $this->lastAttemptTime = $lastAttemptTime; - } - public function getLastAttemptTime() - { - return $this->lastAttemptTime; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_CloudScheduler_PubsubTarget - */ - public function setPubsubTarget(Google_Service_CloudScheduler_PubsubTarget $pubsubTarget) - { - $this->pubsubTarget = $pubsubTarget; - } - /** - * @return Google_Service_CloudScheduler_PubsubTarget - */ - public function getPubsubTarget() - { - return $this->pubsubTarget; - } - /** - * @param Google_Service_CloudScheduler_RetryConfig - */ - public function setRetryConfig(Google_Service_CloudScheduler_RetryConfig $retryConfig) - { - $this->retryConfig = $retryConfig; - } - /** - * @return Google_Service_CloudScheduler_RetryConfig - */ - public function getRetryConfig() - { - return $this->retryConfig; - } - public function setSchedule($schedule) - { - $this->schedule = $schedule; - } - public function getSchedule() - { - return $this->schedule; - } - public function setScheduleTime($scheduleTime) - { - $this->scheduleTime = $scheduleTime; - } - public function getScheduleTime() - { - return $this->scheduleTime; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - /** - * @param Google_Service_CloudScheduler_Status - */ - public function setStatus(Google_Service_CloudScheduler_Status $status) - { - $this->status = $status; - } - /** - * @return Google_Service_CloudScheduler_Status - */ - public function getStatus() - { - return $this->status; - } - public function setTimeZone($timeZone) - { - $this->timeZone = $timeZone; - } - public function getTimeZone() - { - return $this->timeZone; - } - public function setUserUpdateTime($userUpdateTime) - { - $this->userUpdateTime = $userUpdateTime; - } - public function getUserUpdateTime() - { - return $this->userUpdateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudScheduler/ListJobsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudScheduler/ListJobsResponse.php deleted file mode 100644 index 0974a0b8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudScheduler/ListJobsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -jobs = $jobs; - } - /** - * @return Google_Service_CloudScheduler_Job - */ - public function getJobs() - { - return $this->jobs; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudScheduler/ListLocationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudScheduler/ListLocationsResponse.php deleted file mode 100644 index 21f4c060..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudScheduler/ListLocationsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -locations = $locations; - } - /** - * @return Google_Service_CloudScheduler_Location - */ - public function getLocations() - { - return $this->locations; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudScheduler/Location.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudScheduler/Location.php deleted file mode 100644 index 76a0e4c6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudScheduler/Location.php +++ /dev/null @@ -1,66 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setLocationId($locationId) - { - $this->locationId = $locationId; - } - public function getLocationId() - { - return $this->locationId; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudScheduler/OAuthToken.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudScheduler/OAuthToken.php deleted file mode 100644 index 0d09ff1b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudScheduler/OAuthToken.php +++ /dev/null @@ -1,39 +0,0 @@ -scope = $scope; - } - public function getScope() - { - return $this->scope; - } - public function setServiceAccountEmail($serviceAccountEmail) - { - $this->serviceAccountEmail = $serviceAccountEmail; - } - public function getServiceAccountEmail() - { - return $this->serviceAccountEmail; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudScheduler/OidcToken.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudScheduler/OidcToken.php deleted file mode 100644 index e96e0000..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudScheduler/OidcToken.php +++ /dev/null @@ -1,39 +0,0 @@ -audience = $audience; - } - public function getAudience() - { - return $this->audience; - } - public function setServiceAccountEmail($serviceAccountEmail) - { - $this->serviceAccountEmail = $serviceAccountEmail; - } - public function getServiceAccountEmail() - { - return $this->serviceAccountEmail; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudScheduler/PauseJobRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudScheduler/PauseJobRequest.php deleted file mode 100644 index 524afa51..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudScheduler/PauseJobRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -attributes = $attributes; - } - public function getAttributes() - { - return $this->attributes; - } - public function setData($data) - { - $this->data = $data; - } - public function getData() - { - return $this->data; - } - public function setMessageId($messageId) - { - $this->messageId = $messageId; - } - public function getMessageId() - { - return $this->messageId; - } - public function setPublishTime($publishTime) - { - $this->publishTime = $publishTime; - } - public function getPublishTime() - { - return $this->publishTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudScheduler/PubsubTarget.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudScheduler/PubsubTarget.php deleted file mode 100644 index b907f022..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudScheduler/PubsubTarget.php +++ /dev/null @@ -1,48 +0,0 @@ -attributes = $attributes; - } - public function getAttributes() - { - return $this->attributes; - } - public function setData($data) - { - $this->data = $data; - } - public function getData() - { - return $this->data; - } - public function setTopicName($topicName) - { - $this->topicName = $topicName; - } - public function getTopicName() - { - return $this->topicName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudScheduler/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudScheduler/Resource/Projects.php deleted file mode 100644 index 01034246..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudScheduler/Resource/Projects.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $cloudschedulerService = new Google_Service_CloudScheduler(...); - * $projects = $cloudschedulerService->projects; - * - */ -class Google_Service_CloudScheduler_Resource_Projects extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudScheduler/Resource/ProjectsLocations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudScheduler/Resource/ProjectsLocations.php deleted file mode 100644 index d2d6f2aa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudScheduler/Resource/ProjectsLocations.php +++ /dev/null @@ -1,60 +0,0 @@ - - * $cloudschedulerService = new Google_Service_CloudScheduler(...); - * $locations = $cloudschedulerService->locations; - * - */ -class Google_Service_CloudScheduler_Resource_ProjectsLocations extends Google_Service_Resource -{ - /** - * Gets information about a location. (locations.get) - * - * @param string $name Resource name for the location. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudScheduler_Location - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudScheduler_Location"); - } - /** - * Lists information about the supported locations for this service. - * (locations.listProjectsLocations) - * - * @param string $name The resource that owns the locations collection, if - * applicable. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The standard list page token. - * @opt_param int pageSize The standard list page size. - * @opt_param string filter The standard list filter. - * @return Google_Service_CloudScheduler_ListLocationsResponse - */ - public function listProjectsLocations($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudScheduler_ListLocationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudScheduler/Resource/ProjectsLocationsJobs.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudScheduler/Resource/ProjectsLocationsJobs.php deleted file mode 100644 index b97a67b0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudScheduler/Resource/ProjectsLocationsJobs.php +++ /dev/null @@ -1,193 +0,0 @@ - - * $cloudschedulerService = new Google_Service_CloudScheduler(...); - * $jobs = $cloudschedulerService->jobs; - * - */ -class Google_Service_CloudScheduler_Resource_ProjectsLocationsJobs extends Google_Service_Resource -{ - /** - * Creates a job. (jobs.create) - * - * @param string $parent Required. The location name. For example: - * `projects/PROJECT_ID/locations/LOCATION_ID`. - * @param Google_Service_CloudScheduler_Job $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudScheduler_Job - */ - public function create($parent, Google_Service_CloudScheduler_Job $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_CloudScheduler_Job"); - } - /** - * Deletes a job. (jobs.delete) - * - * @param string $name Required. The job name. For example: - * `projects/PROJECT_ID/locations/LOCATION_ID/jobs/JOB_ID`. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudScheduler_CloudschedulerEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudScheduler_CloudschedulerEmpty"); - } - /** - * Gets a job. (jobs.get) - * - * @param string $name Required. The job name. For example: - * `projects/PROJECT_ID/locations/LOCATION_ID/jobs/JOB_ID`. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudScheduler_Job - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudScheduler_Job"); - } - /** - * Lists jobs. (jobs.listProjectsLocationsJobs) - * - * @param string $parent Required. The location name. For example: - * `projects/PROJECT_ID/locations/LOCATION_ID`. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A token identifying a page of results the server - * will return. To request the first page results, page_token must be empty. To - * request the next page of results, page_token must be the value of - * next_page_token returned from the previous call to ListJobs. It is an error - * to switch the value of filter or order_by while iterating through pages. - * @opt_param int pageSize Requested page size. - * - * The maximum page size is 500. If unspecified, the page size will be the - * maximum. Fewer jobs than requested might be returned, even if more jobs - * exist; use next_page_token to determine if more jobs exist. - * @return Google_Service_CloudScheduler_ListJobsResponse - */ - public function listProjectsLocationsJobs($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudScheduler_ListJobsResponse"); - } - /** - * Updates a job. - * - * If successful, the updated Job is returned. If the job does not exist, - * `NOT_FOUND` is returned. - * - * If UpdateJob does not successfully return, it is possible for the job to be - * in an Job.State.UPDATE_FAILED state. A job in this state may not be executed. - * If this happens, retry the UpdateJob request until a successful response is - * received. (jobs.patch) - * - * @param string $name Optionally caller-specified in CreateJob, after which it - * becomes output only. - * - * The job name. For example: - * `projects/PROJECT_ID/locations/LOCATION_ID/jobs/JOB_ID`. - * - * * `PROJECT_ID` can contain letters ([A-Za-z]), numbers ([0-9]), hyphens - * (-), colons (:), or periods (.). For more information, see [Identifying - * projects](https://cloud.google.com/resource-manager/docs/creating-managing- - * projects#identifying_projects) * `LOCATION_ID` is the canonical ID for the - * job's location. The list of available locations can be obtained by calling - * ListLocations. For more information, see - * https://cloud.google.com/about/locations/. * `JOB_ID` can contain only - * letters ([A-Za-z]), numbers ([0-9]), hyphens (-), or underscores (_). The - * maximum length is 500 characters. - * @param Google_Service_CloudScheduler_Job $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask A mask used to specify which fields of the job - * are being updated. - * @return Google_Service_CloudScheduler_Job - */ - public function patch($name, Google_Service_CloudScheduler_Job $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_CloudScheduler_Job"); - } - /** - * Pauses a job. - * - * If a job is paused then the system will stop executing the job until it is - * re-enabled via ResumeJob. The state of the job is stored in state; if paused - * it will be set to Job.State.PAUSED. A job must be in Job.State.ENABLED to be - * paused. (jobs.pause) - * - * @param string $name Required. The job name. For example: - * `projects/PROJECT_ID/locations/LOCATION_ID/jobs/JOB_ID`. - * @param Google_Service_CloudScheduler_PauseJobRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudScheduler_Job - */ - public function pause($name, Google_Service_CloudScheduler_PauseJobRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('pause', array($params), "Google_Service_CloudScheduler_Job"); - } - /** - * Resume a job. - * - * This method reenables a job after it has been Job.State.PAUSED. The state of - * a job is stored in Job.state; after calling this method it will be set to - * Job.State.ENABLED. A job must be in Job.State.PAUSED to be resumed. - * (jobs.resume) - * - * @param string $name Required. The job name. For example: - * `projects/PROJECT_ID/locations/LOCATION_ID/jobs/JOB_ID`. - * @param Google_Service_CloudScheduler_ResumeJobRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudScheduler_Job - */ - public function resume($name, Google_Service_CloudScheduler_ResumeJobRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('resume', array($params), "Google_Service_CloudScheduler_Job"); - } - /** - * Forces a job to run now. - * - * When this method is called, Cloud Scheduler will dispatch the job, even if - * the job is already running. (jobs.run) - * - * @param string $name Required. The job name. For example: - * `projects/PROJECT_ID/locations/LOCATION_ID/jobs/JOB_ID`. - * @param Google_Service_CloudScheduler_RunJobRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudScheduler_Job - */ - public function run($name, Google_Service_CloudScheduler_RunJobRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('run', array($params), "Google_Service_CloudScheduler_Job"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudScheduler/ResumeJobRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudScheduler/ResumeJobRequest.php deleted file mode 100644 index 4adc0ee8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudScheduler/ResumeJobRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -maxBackoffDuration = $maxBackoffDuration; - } - public function getMaxBackoffDuration() - { - return $this->maxBackoffDuration; - } - public function setMaxDoublings($maxDoublings) - { - $this->maxDoublings = $maxDoublings; - } - public function getMaxDoublings() - { - return $this->maxDoublings; - } - public function setMaxRetryDuration($maxRetryDuration) - { - $this->maxRetryDuration = $maxRetryDuration; - } - public function getMaxRetryDuration() - { - return $this->maxRetryDuration; - } - public function setMinBackoffDuration($minBackoffDuration) - { - $this->minBackoffDuration = $minBackoffDuration; - } - public function getMinBackoffDuration() - { - return $this->minBackoffDuration; - } - public function setRetryCount($retryCount) - { - $this->retryCount = $retryCount; - } - public function getRetryCount() - { - return $this->retryCount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudScheduler/RunJobRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudScheduler/RunJobRequest.php deleted file mode 100644 index 99457456..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudScheduler/RunJobRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch.php deleted file mode 100644 index 7e21d9d9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch.php +++ /dev/null @@ -1,973 +0,0 @@ - - * Cloud Search provides cloud-based search capabilities over G Suite data. The - * Cloud Search API allows indexing of non-G Suite data into Cloud Search.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_CloudSearch extends Google_Service -{ - /** Index and serve your organization's data with Cloud Search. */ - const CLOUD_SEARCH = - "https://www.googleapis.com/auth/cloud_search"; - /** Index and serve your organization's data with Cloud Search. */ - const CLOUD_SEARCH_DEBUG = - "https://www.googleapis.com/auth/cloud_search.debug"; - /** Index and serve your organization's data with Cloud Search. */ - const CLOUD_SEARCH_INDEXING = - "https://www.googleapis.com/auth/cloud_search.indexing"; - /** Search your organization's data in the Cloud Search index. */ - const CLOUD_SEARCH_QUERY = - "https://www.googleapis.com/auth/cloud_search.query"; - /** Index and serve your organization's data with Cloud Search. */ - const CLOUD_SEARCH_SETTINGS = - "https://www.googleapis.com/auth/cloud_search.settings"; - /** Index and serve your organization's data with Cloud Search. */ - const CLOUD_SEARCH_SETTINGS_INDEXING = - "https://www.googleapis.com/auth/cloud_search.settings.indexing"; - /** Index and serve your organization's data with Cloud Search. */ - const CLOUD_SEARCH_SETTINGS_QUERY = - "https://www.googleapis.com/auth/cloud_search.settings.query"; - /** Index and serve your organization's data with Cloud Search. */ - const CLOUD_SEARCH_STATS = - "https://www.googleapis.com/auth/cloud_search.stats"; - /** Index and serve your organization's data with Cloud Search. */ - const CLOUD_SEARCH_STATS_INDEXING = - "https://www.googleapis.com/auth/cloud_search.stats.indexing"; - - public $debug_datasources_items; - public $debug_datasources_items_unmappedids; - public $debug_identitysources_items; - public $debug_identitysources_unmappedids; - public $indexing_datasources; - public $indexing_datasources_items; - public $media; - public $operations; - public $query; - public $query_sources; - public $settings_datasources; - public $settings_searchapplications; - public $stats; - public $stats_index_datasources; - public $stats_query_searchapplications; - public $stats_session_searchapplications; - public $stats_user_searchapplications; - - /** - * Constructs the internal representation of the CloudSearch service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://cloudsearch.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'cloudsearch'; - - $this->debug_datasources_items = new Google_Service_CloudSearch_Resource_DebugDatasourcesItems( - $this, - $this->serviceName, - 'items', - array( - 'methods' => array( - 'checkAccess' => array( - 'path' => 'v1/debug/{+name}:checkAccess', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'debugOptions.enableDebugging' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'searchByViewUrl' => array( - 'path' => 'v1/debug/{+name}/items:searchByViewUrl', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->debug_datasources_items_unmappedids = new Google_Service_CloudSearch_Resource_DebugDatasourcesItemsUnmappedids( - $this, - $this->serviceName, - 'unmappedids', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1/debug/{+parent}/unmappedids', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'debugOptions.enableDebugging' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ), - ) - ) - ); - $this->debug_identitysources_items = new Google_Service_CloudSearch_Resource_DebugIdentitysourcesItems( - $this, - $this->serviceName, - 'items', - array( - 'methods' => array( - 'listForunmappedidentity' => array( - 'path' => 'v1/debug/{+parent}/items:forunmappedidentity', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'debugOptions.enableDebugging' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'groupResourceName' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userResourceName' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->debug_identitysources_unmappedids = new Google_Service_CloudSearch_Resource_DebugIdentitysourcesUnmappedids( - $this, - $this->serviceName, - 'unmappedids', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1/debug/{+parent}/unmappedids', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resolutionStatusCode' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'debugOptions.enableDebugging' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->indexing_datasources = new Google_Service_CloudSearch_Resource_IndexingDatasources( - $this, - $this->serviceName, - 'datasources', - array( - 'methods' => array( - 'deleteSchema' => array( - 'path' => 'v1/indexing/{+name}/schema', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'debugOptions.enableDebugging' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'getSchema' => array( - 'path' => 'v1/indexing/{+name}/schema', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'debugOptions.enableDebugging' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'updateSchema' => array( - 'path' => 'v1/indexing/{+name}/schema', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->indexing_datasources_items = new Google_Service_CloudSearch_Resource_IndexingDatasourcesItems( - $this, - $this->serviceName, - 'items', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'v1/indexing/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'connectorName' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'version' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'debugOptions.enableDebugging' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'mode' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'deleteQueueItems' => array( - 'path' => 'v1/indexing/{+name}/items:deleteQueueItems', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/indexing/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'connectorName' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'debugOptions.enableDebugging' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'index' => array( - 'path' => 'v1/indexing/{+name}:index', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/indexing/{+name}/items', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'debugOptions.enableDebugging' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'connectorName' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'brief' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'poll' => array( - 'path' => 'v1/indexing/{+name}/items:poll', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'push' => array( - 'path' => 'v1/indexing/{+name}:push', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'unreserve' => array( - 'path' => 'v1/indexing/{+name}/items:unreserve', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'upload' => array( - 'path' => 'v1/indexing/{+name}:upload', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->media = new Google_Service_CloudSearch_Resource_Media( - $this, - $this->serviceName, - 'media', - array( - 'methods' => array( - 'upload' => array( - 'path' => 'v1/media/{+resourceName}', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resourceName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->operations = new Google_Service_CloudSearch_Resource_Operations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->query = new Google_Service_CloudSearch_Resource_Query( - $this, - $this->serviceName, - 'query', - array( - 'methods' => array( - 'search' => array( - 'path' => 'v1/query/search', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'suggest' => array( - 'path' => 'v1/query/suggest', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->query_sources = new Google_Service_CloudSearch_Resource_QuerySources( - $this, - $this->serviceName, - 'sources', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1/query/sources', - 'httpMethod' => 'GET', - 'parameters' => array( - 'requestOptions.searchApplicationId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestOptions.timeZone' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestOptions.debugOptions.enableDebugging' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'requestOptions.languageCode' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->settings_datasources = new Google_Service_CloudSearch_Resource_SettingsDatasources( - $this, - $this->serviceName, - 'datasources', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/settings/datasources', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'delete' => array( - 'path' => 'v1/settings/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'debugOptions.enableDebugging' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'get' => array( - 'path' => 'v1/settings/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'debugOptions.enableDebugging' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'list' => array( - 'path' => 'v1/settings/datasources', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'debugOptions.enableDebugging' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'update' => array( - 'path' => 'v1/settings/{+name}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->settings_searchapplications = new Google_Service_CloudSearch_Resource_SettingsSearchapplications( - $this, - $this->serviceName, - 'searchapplications', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/settings/searchapplications', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'delete' => array( - 'path' => 'v1/settings/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'debugOptions.enableDebugging' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'get' => array( - 'path' => 'v1/settings/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'debugOptions.enableDebugging' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'list' => array( - 'path' => 'v1/settings/searchapplications', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'debugOptions.enableDebugging' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'reset' => array( - 'path' => 'v1/settings/{+name}:reset', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'v1/settings/{+name}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->stats = new Google_Service_CloudSearch_Resource_Stats( - $this, - $this->serviceName, - 'stats', - array( - 'methods' => array( - 'getIndex' => array( - 'path' => 'v1/stats/index', - 'httpMethod' => 'GET', - 'parameters' => array( - 'toDate.day' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'toDate.month' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'toDate.year' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'fromDate.month' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'fromDate.day' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'fromDate.year' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'getQuery' => array( - 'path' => 'v1/stats/query', - 'httpMethod' => 'GET', - 'parameters' => array( - 'toDate.day' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'toDate.month' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'toDate.year' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'fromDate.month' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'fromDate.day' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'fromDate.year' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'getSession' => array( - 'path' => 'v1/stats/session', - 'httpMethod' => 'GET', - 'parameters' => array( - 'toDate.day' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'toDate.month' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'toDate.year' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'fromDate.month' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'fromDate.day' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'fromDate.year' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'getUser' => array( - 'path' => 'v1/stats/user', - 'httpMethod' => 'GET', - 'parameters' => array( - 'toDate.month' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'toDate.year' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'fromDate.month' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'fromDate.day' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'fromDate.year' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'toDate.day' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->stats_index_datasources = new Google_Service_CloudSearch_Resource_StatsIndexDatasources( - $this, - $this->serviceName, - 'datasources', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/stats/index/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'fromDate.year' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'toDate.day' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'toDate.month' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'toDate.year' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'fromDate.month' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'fromDate.day' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->stats_query_searchapplications = new Google_Service_CloudSearch_Resource_StatsQuerySearchapplications( - $this, - $this->serviceName, - 'searchapplications', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/stats/query/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'fromDate.year' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'toDate.day' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'toDate.month' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'toDate.year' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'fromDate.month' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'fromDate.day' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->stats_session_searchapplications = new Google_Service_CloudSearch_Resource_StatsSessionSearchapplications( - $this, - $this->serviceName, - 'searchapplications', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/stats/session/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'fromDate.year' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'toDate.day' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'toDate.month' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'toDate.year' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'fromDate.month' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'fromDate.day' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->stats_user_searchapplications = new Google_Service_CloudSearch_Resource_StatsUserSearchapplications( - $this, - $this->serviceName, - 'searchapplications', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/stats/user/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'toDate.month' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'toDate.year' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'fromDate.month' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'fromDate.day' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'fromDate.year' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'toDate.day' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/BooleanOperatorOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/BooleanOperatorOptions.php deleted file mode 100644 index 3b822d96..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/BooleanOperatorOptions.php +++ /dev/null @@ -1,30 +0,0 @@ -operatorName = $operatorName; - } - public function getOperatorName() - { - return $this->operatorName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/BooleanPropertyOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/BooleanPropertyOptions.php deleted file mode 100644 index 9e9a9c60..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/BooleanPropertyOptions.php +++ /dev/null @@ -1,37 +0,0 @@ -operatorOptions = $operatorOptions; - } - /** - * @return Google_Service_CloudSearch_BooleanOperatorOptions - */ - public function getOperatorOptions() - { - return $this->operatorOptions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/CheckAccessResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/CheckAccessResponse.php deleted file mode 100644 index 3fb3a54c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/CheckAccessResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -hasAccess = $hasAccess; - } - public function getHasAccess() - { - return $this->hasAccess; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/CompositeFilter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/CompositeFilter.php deleted file mode 100644 index 9ca756b5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/CompositeFilter.php +++ /dev/null @@ -1,47 +0,0 @@ -logicOperator = $logicOperator; - } - public function getLogicOperator() - { - return $this->logicOperator; - } - /** - * @param Google_Service_CloudSearch_Filter - */ - public function setSubFilters($subFilters) - { - $this->subFilters = $subFilters; - } - /** - * @return Google_Service_CloudSearch_Filter - */ - public function getSubFilters() - { - return $this->subFilters; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/CustomerIndexStats.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/CustomerIndexStats.php deleted file mode 100644 index 05e25720..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/CustomerIndexStats.php +++ /dev/null @@ -1,54 +0,0 @@ -date = $date; - } - /** - * @return Google_Service_CloudSearch_Date - */ - public function getDate() - { - return $this->date; - } - /** - * @param Google_Service_CloudSearch_ItemCountByStatus - */ - public function setItemCountByStatus($itemCountByStatus) - { - $this->itemCountByStatus = $itemCountByStatus; - } - /** - * @return Google_Service_CloudSearch_ItemCountByStatus - */ - public function getItemCountByStatus() - { - return $this->itemCountByStatus; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/CustomerQueryStats.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/CustomerQueryStats.php deleted file mode 100644 index c159c153..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/CustomerQueryStats.php +++ /dev/null @@ -1,54 +0,0 @@ -date = $date; - } - /** - * @return Google_Service_CloudSearch_Date - */ - public function getDate() - { - return $this->date; - } - /** - * @param Google_Service_CloudSearch_QueryCountByStatus - */ - public function setQueryCountByStatus($queryCountByStatus) - { - $this->queryCountByStatus = $queryCountByStatus; - } - /** - * @return Google_Service_CloudSearch_QueryCountByStatus - */ - public function getQueryCountByStatus() - { - return $this->queryCountByStatus; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/CustomerSessionStats.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/CustomerSessionStats.php deleted file mode 100644 index 0aa8ece3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/CustomerSessionStats.php +++ /dev/null @@ -1,46 +0,0 @@ -date = $date; - } - /** - * @return Google_Service_CloudSearch_Date - */ - public function getDate() - { - return $this->date; - } - public function setSearchSessionsCount($searchSessionsCount) - { - $this->searchSessionsCount = $searchSessionsCount; - } - public function getSearchSessionsCount() - { - return $this->searchSessionsCount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/CustomerUserStats.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/CustomerUserStats.php deleted file mode 100644 index d4cb1326..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/CustomerUserStats.php +++ /dev/null @@ -1,64 +0,0 @@ -date = $date; - } - /** - * @return Google_Service_CloudSearch_Date - */ - public function getDate() - { - return $this->date; - } - public function setOneDayActiveUsersCount($oneDayActiveUsersCount) - { - $this->oneDayActiveUsersCount = $oneDayActiveUsersCount; - } - public function getOneDayActiveUsersCount() - { - return $this->oneDayActiveUsersCount; - } - public function setSevenDaysActiveUsersCount($sevenDaysActiveUsersCount) - { - $this->sevenDaysActiveUsersCount = $sevenDaysActiveUsersCount; - } - public function getSevenDaysActiveUsersCount() - { - return $this->sevenDaysActiveUsersCount; - } - public function setThirtyDaysActiveUsersCount($thirtyDaysActiveUsersCount) - { - $this->thirtyDaysActiveUsersCount = $thirtyDaysActiveUsersCount; - } - public function getThirtyDaysActiveUsersCount() - { - return $this->thirtyDaysActiveUsersCount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/DataSource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/DataSource.php deleted file mode 100644 index e4a18816..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/DataSource.php +++ /dev/null @@ -1,101 +0,0 @@ -disableModifications = $disableModifications; - } - public function getDisableModifications() - { - return $this->disableModifications; - } - public function setDisableServing($disableServing) - { - $this->disableServing = $disableServing; - } - public function getDisableServing() - { - return $this->disableServing; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setIndexingServiceAccounts($indexingServiceAccounts) - { - $this->indexingServiceAccounts = $indexingServiceAccounts; - } - public function getIndexingServiceAccounts() - { - return $this->indexingServiceAccounts; - } - /** - * @param Google_Service_CloudSearch_GSuitePrincipal - */ - public function setItemsVisibility($itemsVisibility) - { - $this->itemsVisibility = $itemsVisibility; - } - /** - * @return Google_Service_CloudSearch_GSuitePrincipal - */ - public function getItemsVisibility() - { - return $this->itemsVisibility; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOperationIds($operationIds) - { - $this->operationIds = $operationIds; - } - public function getOperationIds() - { - return $this->operationIds; - } - public function setShortName($shortName) - { - $this->shortName = $shortName; - } - public function getShortName() - { - return $this->shortName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/DataSourceIndexStats.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/DataSourceIndexStats.php deleted file mode 100644 index 00cab583..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/DataSourceIndexStats.php +++ /dev/null @@ -1,54 +0,0 @@ -date = $date; - } - /** - * @return Google_Service_CloudSearch_Date - */ - public function getDate() - { - return $this->date; - } - /** - * @param Google_Service_CloudSearch_ItemCountByStatus - */ - public function setItemCountByStatus($itemCountByStatus) - { - $this->itemCountByStatus = $itemCountByStatus; - } - /** - * @return Google_Service_CloudSearch_ItemCountByStatus - */ - public function getItemCountByStatus() - { - return $this->itemCountByStatus; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/DataSourceRestriction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/DataSourceRestriction.php deleted file mode 100644 index 73d56a07..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/DataSourceRestriction.php +++ /dev/null @@ -1,54 +0,0 @@ -filterOptions = $filterOptions; - } - /** - * @return Google_Service_CloudSearch_FilterOptions - */ - public function getFilterOptions() - { - return $this->filterOptions; - } - /** - * @param Google_Service_CloudSearch_Source - */ - public function setSource(Google_Service_CloudSearch_Source $source) - { - $this->source = $source; - } - /** - * @return Google_Service_CloudSearch_Source - */ - public function getSource() - { - return $this->source; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Date.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Date.php deleted file mode 100644 index cc0809af..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Date.php +++ /dev/null @@ -1,48 +0,0 @@ -day = $day; - } - public function getDay() - { - return $this->day; - } - public function setMonth($month) - { - $this->month = $month; - } - public function getMonth() - { - return $this->month; - } - public function setYear($year) - { - $this->year = $year; - } - public function getYear() - { - return $this->year; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/DateOperatorOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/DateOperatorOptions.php deleted file mode 100644 index accc560a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/DateOperatorOptions.php +++ /dev/null @@ -1,48 +0,0 @@ -greaterThanOperatorName = $greaterThanOperatorName; - } - public function getGreaterThanOperatorName() - { - return $this->greaterThanOperatorName; - } - public function setLessThanOperatorName($lessThanOperatorName) - { - $this->lessThanOperatorName = $lessThanOperatorName; - } - public function getLessThanOperatorName() - { - return $this->lessThanOperatorName; - } - public function setOperatorName($operatorName) - { - $this->operatorName = $operatorName; - } - public function getOperatorName() - { - return $this->operatorName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/DatePropertyOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/DatePropertyOptions.php deleted file mode 100644 index cf50f429..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/DatePropertyOptions.php +++ /dev/null @@ -1,37 +0,0 @@ -operatorOptions = $operatorOptions; - } - /** - * @return Google_Service_CloudSearch_DateOperatorOptions - */ - public function getOperatorOptions() - { - return $this->operatorOptions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/DateValues.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/DateValues.php deleted file mode 100644 index 0f53f13f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/DateValues.php +++ /dev/null @@ -1,38 +0,0 @@ -values = $values; - } - /** - * @return Google_Service_CloudSearch_Date - */ - public function getValues() - { - return $this->values; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/DebugOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/DebugOptions.php deleted file mode 100644 index 3fe69e4d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/DebugOptions.php +++ /dev/null @@ -1,30 +0,0 @@ -enableDebugging = $enableDebugging; - } - public function getEnableDebugging() - { - return $this->enableDebugging; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/DeleteQueueItemsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/DeleteQueueItemsRequest.php deleted file mode 100644 index c003c76d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/DeleteQueueItemsRequest.php +++ /dev/null @@ -1,55 +0,0 @@ -connectorName = $connectorName; - } - public function getConnectorName() - { - return $this->connectorName; - } - /** - * @param Google_Service_CloudSearch_DebugOptions - */ - public function setDebugOptions(Google_Service_CloudSearch_DebugOptions $debugOptions) - { - $this->debugOptions = $debugOptions; - } - /** - * @return Google_Service_CloudSearch_DebugOptions - */ - public function getDebugOptions() - { - return $this->debugOptions; - } - public function setQueue($queue) - { - $this->queue = $queue; - } - public function getQueue() - { - return $this->queue; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/DisplayedProperty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/DisplayedProperty.php deleted file mode 100644 index af740568..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/DisplayedProperty.php +++ /dev/null @@ -1,30 +0,0 @@ -propertyName = $propertyName; - } - public function getPropertyName() - { - return $this->propertyName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/DoubleOperatorOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/DoubleOperatorOptions.php deleted file mode 100644 index 06574329..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/DoubleOperatorOptions.php +++ /dev/null @@ -1,30 +0,0 @@ -operatorName = $operatorName; - } - public function getOperatorName() - { - return $this->operatorName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/DoublePropertyOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/DoublePropertyOptions.php deleted file mode 100644 index 8448bc2a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/DoublePropertyOptions.php +++ /dev/null @@ -1,37 +0,0 @@ -operatorOptions = $operatorOptions; - } - /** - * @return Google_Service_CloudSearch_DoubleOperatorOptions - */ - public function getOperatorOptions() - { - return $this->operatorOptions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/DoubleValues.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/DoubleValues.php deleted file mode 100644 index 04624879..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/DoubleValues.php +++ /dev/null @@ -1,31 +0,0 @@ -values = $values; - } - public function getValues() - { - return $this->values; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/DriveFollowUpRestrict.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/DriveFollowUpRestrict.php deleted file mode 100644 index 9c6c62a6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/DriveFollowUpRestrict.php +++ /dev/null @@ -1,30 +0,0 @@ -type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/DriveLocationRestrict.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/DriveLocationRestrict.php deleted file mode 100644 index 515c9bfd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/DriveLocationRestrict.php +++ /dev/null @@ -1,30 +0,0 @@ -type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/DriveMimeTypeRestrict.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/DriveMimeTypeRestrict.php deleted file mode 100644 index 3a4d51a8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/DriveMimeTypeRestrict.php +++ /dev/null @@ -1,30 +0,0 @@ -type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/DriveTimeSpanRestrict.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/DriveTimeSpanRestrict.php deleted file mode 100644 index 18e87ef5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/DriveTimeSpanRestrict.php +++ /dev/null @@ -1,30 +0,0 @@ -type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/EmailAddress.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/EmailAddress.php deleted file mode 100644 index ba2ed8eb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/EmailAddress.php +++ /dev/null @@ -1,30 +0,0 @@ -emailAddress = $emailAddress; - } - public function getEmailAddress() - { - return $this->emailAddress; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/EnumOperatorOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/EnumOperatorOptions.php deleted file mode 100644 index ee7f8283..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/EnumOperatorOptions.php +++ /dev/null @@ -1,30 +0,0 @@ -operatorName = $operatorName; - } - public function getOperatorName() - { - return $this->operatorName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/EnumPropertyOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/EnumPropertyOptions.php deleted file mode 100644 index 1017155f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/EnumPropertyOptions.php +++ /dev/null @@ -1,63 +0,0 @@ -operatorOptions = $operatorOptions; - } - /** - * @return Google_Service_CloudSearch_EnumOperatorOptions - */ - public function getOperatorOptions() - { - return $this->operatorOptions; - } - public function setOrderedRanking($orderedRanking) - { - $this->orderedRanking = $orderedRanking; - } - public function getOrderedRanking() - { - return $this->orderedRanking; - } - /** - * @param Google_Service_CloudSearch_EnumValuePair - */ - public function setPossibleValues($possibleValues) - { - $this->possibleValues = $possibleValues; - } - /** - * @return Google_Service_CloudSearch_EnumValuePair - */ - public function getPossibleValues() - { - return $this->possibleValues; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/EnumValuePair.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/EnumValuePair.php deleted file mode 100644 index acd4e55a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/EnumValuePair.php +++ /dev/null @@ -1,39 +0,0 @@ -integerValue = $integerValue; - } - public function getIntegerValue() - { - return $this->integerValue; - } - public function setStringValue($stringValue) - { - $this->stringValue = $stringValue; - } - public function getStringValue() - { - return $this->stringValue; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/EnumValues.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/EnumValues.php deleted file mode 100644 index 2d7b3556..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/EnumValues.php +++ /dev/null @@ -1,31 +0,0 @@ -values = $values; - } - public function getValues() - { - return $this->values; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ErrorInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ErrorInfo.php deleted file mode 100644 index 85d19455..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ErrorInfo.php +++ /dev/null @@ -1,38 +0,0 @@ -errorMessages = $errorMessages; - } - /** - * @return Google_Service_CloudSearch_ErrorMessage - */ - public function getErrorMessages() - { - return $this->errorMessages; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ErrorMessage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ErrorMessage.php deleted file mode 100644 index 48e7ad64..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ErrorMessage.php +++ /dev/null @@ -1,46 +0,0 @@ -errorMessage = $errorMessage; - } - public function getErrorMessage() - { - return $this->errorMessage; - } - /** - * @param Google_Service_CloudSearch_Source - */ - public function setSource(Google_Service_CloudSearch_Source $source) - { - $this->source = $source; - } - /** - * @return Google_Service_CloudSearch_Source - */ - public function getSource() - { - return $this->source; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/FacetBucket.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/FacetBucket.php deleted file mode 100644 index cc7243f2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/FacetBucket.php +++ /dev/null @@ -1,55 +0,0 @@ -count = $count; - } - public function getCount() - { - return $this->count; - } - public function setPercentage($percentage) - { - $this->percentage = $percentage; - } - public function getPercentage() - { - return $this->percentage; - } - /** - * @param Google_Service_CloudSearch_Value - */ - public function setValue(Google_Service_CloudSearch_Value $value) - { - $this->value = $value; - } - /** - * @return Google_Service_CloudSearch_Value - */ - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/FacetOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/FacetOptions.php deleted file mode 100644 index 7114bdf3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/FacetOptions.php +++ /dev/null @@ -1,57 +0,0 @@ -numFacetBuckets = $numFacetBuckets; - } - public function getNumFacetBuckets() - { - return $this->numFacetBuckets; - } - public function setObjectType($objectType) - { - $this->objectType = $objectType; - } - public function getObjectType() - { - return $this->objectType; - } - public function setOperatorName($operatorName) - { - $this->operatorName = $operatorName; - } - public function getOperatorName() - { - return $this->operatorName; - } - public function setSourceName($sourceName) - { - $this->sourceName = $sourceName; - } - public function getSourceName() - { - return $this->sourceName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/FacetResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/FacetResult.php deleted file mode 100644 index 21de1778..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/FacetResult.php +++ /dev/null @@ -1,65 +0,0 @@ -buckets = $buckets; - } - /** - * @return Google_Service_CloudSearch_FacetBucket - */ - public function getBuckets() - { - return $this->buckets; - } - public function setObjectType($objectType) - { - $this->objectType = $objectType; - } - public function getObjectType() - { - return $this->objectType; - } - public function setOperatorName($operatorName) - { - $this->operatorName = $operatorName; - } - public function getOperatorName() - { - return $this->operatorName; - } - public function setSourceName($sourceName) - { - $this->sourceName = $sourceName; - } - public function getSourceName() - { - return $this->sourceName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/FieldViolation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/FieldViolation.php deleted file mode 100644 index 9361ec63..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/FieldViolation.php +++ /dev/null @@ -1,39 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setField($field) - { - $this->field = $field; - } - public function getField() - { - return $this->field; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Filter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Filter.php deleted file mode 100644 index 1cfd86f6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Filter.php +++ /dev/null @@ -1,53 +0,0 @@ -compositeFilter = $compositeFilter; - } - /** - * @return Google_Service_CloudSearch_CompositeFilter - */ - public function getCompositeFilter() - { - return $this->compositeFilter; - } - /** - * @param Google_Service_CloudSearch_ValueFilter - */ - public function setValueFilter(Google_Service_CloudSearch_ValueFilter $valueFilter) - { - $this->valueFilter = $valueFilter; - } - /** - * @return Google_Service_CloudSearch_ValueFilter - */ - public function getValueFilter() - { - return $this->valueFilter; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/FilterOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/FilterOptions.php deleted file mode 100644 index e1c7fb33..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/FilterOptions.php +++ /dev/null @@ -1,46 +0,0 @@ -filter = $filter; - } - /** - * @return Google_Service_CloudSearch_Filter - */ - public function getFilter() - { - return $this->filter; - } - public function setObjectType($objectType) - { - $this->objectType = $objectType; - } - public function getObjectType() - { - return $this->objectType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/FreshnessOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/FreshnessOptions.php deleted file mode 100644 index c1d8c8a0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/FreshnessOptions.php +++ /dev/null @@ -1,39 +0,0 @@ -freshnessDuration = $freshnessDuration; - } - public function getFreshnessDuration() - { - return $this->freshnessDuration; - } - public function setFreshnessProperty($freshnessProperty) - { - $this->freshnessProperty = $freshnessProperty; - } - public function getFreshnessProperty() - { - return $this->freshnessProperty; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/GSuitePrincipal.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/GSuitePrincipal.php deleted file mode 100644 index 9c92ad18..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/GSuitePrincipal.php +++ /dev/null @@ -1,48 +0,0 @@ -gsuiteDomain = $gsuiteDomain; - } - public function getGsuiteDomain() - { - return $this->gsuiteDomain; - } - public function setGsuiteGroupEmail($gsuiteGroupEmail) - { - $this->gsuiteGroupEmail = $gsuiteGroupEmail; - } - public function getGsuiteGroupEmail() - { - return $this->gsuiteGroupEmail; - } - public function setGsuiteUserEmail($gsuiteUserEmail) - { - $this->gsuiteUserEmail = $gsuiteUserEmail; - } - public function getGsuiteUserEmail() - { - return $this->gsuiteUserEmail; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/GetCustomerIndexStatsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/GetCustomerIndexStatsResponse.php deleted file mode 100644 index 784c71b3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/GetCustomerIndexStatsResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -stats = $stats; - } - /** - * @return Google_Service_CloudSearch_CustomerIndexStats - */ - public function getStats() - { - return $this->stats; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/GetCustomerQueryStatsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/GetCustomerQueryStatsResponse.php deleted file mode 100644 index 5a4ca241..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/GetCustomerQueryStatsResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -stats = $stats; - } - /** - * @return Google_Service_CloudSearch_CustomerQueryStats - */ - public function getStats() - { - return $this->stats; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/GetCustomerSessionStatsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/GetCustomerSessionStatsResponse.php deleted file mode 100644 index 176095b6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/GetCustomerSessionStatsResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -stats = $stats; - } - /** - * @return Google_Service_CloudSearch_CustomerSessionStats - */ - public function getStats() - { - return $this->stats; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/GetCustomerUserStatsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/GetCustomerUserStatsResponse.php deleted file mode 100644 index 021fe211..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/GetCustomerUserStatsResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -stats = $stats; - } - /** - * @return Google_Service_CloudSearch_CustomerUserStats - */ - public function getStats() - { - return $this->stats; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/GetDataSourceIndexStatsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/GetDataSourceIndexStatsResponse.php deleted file mode 100644 index 5bb7837f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/GetDataSourceIndexStatsResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -stats = $stats; - } - /** - * @return Google_Service_CloudSearch_DataSourceIndexStats - */ - public function getStats() - { - return $this->stats; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/GetSearchApplicationQueryStatsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/GetSearchApplicationQueryStatsResponse.php deleted file mode 100644 index 4e651df9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/GetSearchApplicationQueryStatsResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -stats = $stats; - } - /** - * @return Google_Service_CloudSearch_SearchApplicationQueryStats - */ - public function getStats() - { - return $this->stats; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/GetSearchApplicationSessionStatsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/GetSearchApplicationSessionStatsResponse.php deleted file mode 100644 index 0545c3b7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/GetSearchApplicationSessionStatsResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -stats = $stats; - } - /** - * @return Google_Service_CloudSearch_SearchApplicationSessionStats - */ - public function getStats() - { - return $this->stats; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/GetSearchApplicationUserStatsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/GetSearchApplicationUserStatsResponse.php deleted file mode 100644 index dee347a6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/GetSearchApplicationUserStatsResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -stats = $stats; - } - /** - * @return Google_Service_CloudSearch_SearchApplicationUserStats - */ - public function getStats() - { - return $this->stats; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/HtmlOperatorOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/HtmlOperatorOptions.php deleted file mode 100644 index f513baaa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/HtmlOperatorOptions.php +++ /dev/null @@ -1,30 +0,0 @@ -operatorName = $operatorName; - } - public function getOperatorName() - { - return $this->operatorName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/HtmlPropertyOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/HtmlPropertyOptions.php deleted file mode 100644 index 42dfd116..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/HtmlPropertyOptions.php +++ /dev/null @@ -1,53 +0,0 @@ -operatorOptions = $operatorOptions; - } - /** - * @return Google_Service_CloudSearch_HtmlOperatorOptions - */ - public function getOperatorOptions() - { - return $this->operatorOptions; - } - /** - * @param Google_Service_CloudSearch_RetrievalImportance - */ - public function setRetrievalImportance(Google_Service_CloudSearch_RetrievalImportance $retrievalImportance) - { - $this->retrievalImportance = $retrievalImportance; - } - /** - * @return Google_Service_CloudSearch_RetrievalImportance - */ - public function getRetrievalImportance() - { - return $this->retrievalImportance; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/HtmlValues.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/HtmlValues.php deleted file mode 100644 index 98e5e56e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/HtmlValues.php +++ /dev/null @@ -1,31 +0,0 @@ -values = $values; - } - public function getValues() - { - return $this->values; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/IndexItemOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/IndexItemOptions.php deleted file mode 100644 index 33057e0b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/IndexItemOptions.php +++ /dev/null @@ -1,30 +0,0 @@ -allowUnknownGsuitePrincipals = $allowUnknownGsuitePrincipals; - } - public function getAllowUnknownGsuitePrincipals() - { - return $this->allowUnknownGsuitePrincipals; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/IndexItemRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/IndexItemRequest.php deleted file mode 100644 index c1665ff6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/IndexItemRequest.php +++ /dev/null @@ -1,87 +0,0 @@ -connectorName = $connectorName; - } - public function getConnectorName() - { - return $this->connectorName; - } - /** - * @param Google_Service_CloudSearch_DebugOptions - */ - public function setDebugOptions(Google_Service_CloudSearch_DebugOptions $debugOptions) - { - $this->debugOptions = $debugOptions; - } - /** - * @return Google_Service_CloudSearch_DebugOptions - */ - public function getDebugOptions() - { - return $this->debugOptions; - } - /** - * @param Google_Service_CloudSearch_IndexItemOptions - */ - public function setIndexItemOptions(Google_Service_CloudSearch_IndexItemOptions $indexItemOptions) - { - $this->indexItemOptions = $indexItemOptions; - } - /** - * @return Google_Service_CloudSearch_IndexItemOptions - */ - public function getIndexItemOptions() - { - return $this->indexItemOptions; - } - /** - * @param Google_Service_CloudSearch_Item - */ - public function setItem(Google_Service_CloudSearch_Item $item) - { - $this->item = $item; - } - /** - * @return Google_Service_CloudSearch_Item - */ - public function getItem() - { - return $this->item; - } - public function setMode($mode) - { - $this->mode = $mode; - } - public function getMode() - { - return $this->mode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/IntegerOperatorOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/IntegerOperatorOptions.php deleted file mode 100644 index e4894271..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/IntegerOperatorOptions.php +++ /dev/null @@ -1,48 +0,0 @@ -greaterThanOperatorName = $greaterThanOperatorName; - } - public function getGreaterThanOperatorName() - { - return $this->greaterThanOperatorName; - } - public function setLessThanOperatorName($lessThanOperatorName) - { - $this->lessThanOperatorName = $lessThanOperatorName; - } - public function getLessThanOperatorName() - { - return $this->lessThanOperatorName; - } - public function setOperatorName($operatorName) - { - $this->operatorName = $operatorName; - } - public function getOperatorName() - { - return $this->operatorName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/IntegerPropertyOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/IntegerPropertyOptions.php deleted file mode 100644 index da50bc57..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/IntegerPropertyOptions.php +++ /dev/null @@ -1,64 +0,0 @@ -maximumValue = $maximumValue; - } - public function getMaximumValue() - { - return $this->maximumValue; - } - public function setMinimumValue($minimumValue) - { - $this->minimumValue = $minimumValue; - } - public function getMinimumValue() - { - return $this->minimumValue; - } - /** - * @param Google_Service_CloudSearch_IntegerOperatorOptions - */ - public function setOperatorOptions(Google_Service_CloudSearch_IntegerOperatorOptions $operatorOptions) - { - $this->operatorOptions = $operatorOptions; - } - /** - * @return Google_Service_CloudSearch_IntegerOperatorOptions - */ - public function getOperatorOptions() - { - return $this->operatorOptions; - } - public function setOrderedRanking($orderedRanking) - { - $this->orderedRanking = $orderedRanking; - } - public function getOrderedRanking() - { - return $this->orderedRanking; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/IntegerValues.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/IntegerValues.php deleted file mode 100644 index 6a6aaf17..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/IntegerValues.php +++ /dev/null @@ -1,31 +0,0 @@ -values = $values; - } - public function getValues() - { - return $this->values; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Interaction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Interaction.php deleted file mode 100644 index 68a0b39b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Interaction.php +++ /dev/null @@ -1,55 +0,0 @@ -interactionTime = $interactionTime; - } - public function getInteractionTime() - { - return $this->interactionTime; - } - /** - * @param Google_Service_CloudSearch_Principal - */ - public function setPrincipal(Google_Service_CloudSearch_Principal $principal) - { - $this->principal = $principal; - } - /** - * @return Google_Service_CloudSearch_Principal - */ - public function getPrincipal() - { - return $this->principal; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Item.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Item.php deleted file mode 100644 index 69b0b2c0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Item.php +++ /dev/null @@ -1,146 +0,0 @@ -acl = $acl; - } - /** - * @return Google_Service_CloudSearch_ItemAcl - */ - public function getAcl() - { - return $this->acl; - } - /** - * @param Google_Service_CloudSearch_ItemContent - */ - public function setContent(Google_Service_CloudSearch_ItemContent $content) - { - $this->content = $content; - } - /** - * @return Google_Service_CloudSearch_ItemContent - */ - public function getContent() - { - return $this->content; - } - public function setItemType($itemType) - { - $this->itemType = $itemType; - } - public function getItemType() - { - return $this->itemType; - } - /** - * @param Google_Service_CloudSearch_ItemMetadata - */ - public function setMetadata(Google_Service_CloudSearch_ItemMetadata $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_CloudSearch_ItemMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPayload($payload) - { - $this->payload = $payload; - } - public function getPayload() - { - return $this->payload; - } - public function setQueue($queue) - { - $this->queue = $queue; - } - public function getQueue() - { - return $this->queue; - } - /** - * @param Google_Service_CloudSearch_ItemStatus - */ - public function setStatus(Google_Service_CloudSearch_ItemStatus $status) - { - $this->status = $status; - } - /** - * @return Google_Service_CloudSearch_ItemStatus - */ - public function getStatus() - { - return $this->status; - } - /** - * @param Google_Service_CloudSearch_ItemStructuredData - */ - public function setStructuredData(Google_Service_CloudSearch_ItemStructuredData $structuredData) - { - $this->structuredData = $structuredData; - } - /** - * @return Google_Service_CloudSearch_ItemStructuredData - */ - public function getStructuredData() - { - return $this->structuredData; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ItemAcl.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ItemAcl.php deleted file mode 100644 index 540138e3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ItemAcl.php +++ /dev/null @@ -1,88 +0,0 @@ -aclInheritanceType = $aclInheritanceType; - } - public function getAclInheritanceType() - { - return $this->aclInheritanceType; - } - /** - * @param Google_Service_CloudSearch_Principal - */ - public function setDeniedReaders($deniedReaders) - { - $this->deniedReaders = $deniedReaders; - } - /** - * @return Google_Service_CloudSearch_Principal - */ - public function getDeniedReaders() - { - return $this->deniedReaders; - } - public function setInheritAclFrom($inheritAclFrom) - { - $this->inheritAclFrom = $inheritAclFrom; - } - public function getInheritAclFrom() - { - return $this->inheritAclFrom; - } - /** - * @param Google_Service_CloudSearch_Principal - */ - public function setOwners($owners) - { - $this->owners = $owners; - } - /** - * @return Google_Service_CloudSearch_Principal - */ - public function getOwners() - { - return $this->owners; - } - /** - * @param Google_Service_CloudSearch_Principal - */ - public function setReaders($readers) - { - $this->readers = $readers; - } - /** - * @return Google_Service_CloudSearch_Principal - */ - public function getReaders() - { - return $this->readers; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ItemContent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ItemContent.php deleted file mode 100644 index eec9a77c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ItemContent.php +++ /dev/null @@ -1,64 +0,0 @@ -contentDataRef = $contentDataRef; - } - /** - * @return Google_Service_CloudSearch_UploadItemRef - */ - public function getContentDataRef() - { - return $this->contentDataRef; - } - public function setContentFormat($contentFormat) - { - $this->contentFormat = $contentFormat; - } - public function getContentFormat() - { - return $this->contentFormat; - } - public function setHash($hash) - { - $this->hash = $hash; - } - public function getHash() - { - return $this->hash; - } - public function setInlineContent($inlineContent) - { - $this->inlineContent = $inlineContent; - } - public function getInlineContent() - { - return $this->inlineContent; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ItemCountByStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ItemCountByStatus.php deleted file mode 100644 index a67386f7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ItemCountByStatus.php +++ /dev/null @@ -1,39 +0,0 @@ -count = $count; - } - public function getCount() - { - return $this->count; - } - public function setStatusCode($statusCode) - { - $this->statusCode = $statusCode; - } - public function getStatusCode() - { - return $this->statusCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ItemMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ItemMetadata.php deleted file mode 100644 index 5df5fd25..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ItemMetadata.php +++ /dev/null @@ -1,144 +0,0 @@ -containerName = $containerName; - } - public function getContainerName() - { - return $this->containerName; - } - public function setContentLanguage($contentLanguage) - { - $this->contentLanguage = $contentLanguage; - } - public function getContentLanguage() - { - return $this->contentLanguage; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setHash($hash) - { - $this->hash = $hash; - } - public function getHash() - { - return $this->hash; - } - /** - * @param Google_Service_CloudSearch_Interaction - */ - public function setInteractions($interactions) - { - $this->interactions = $interactions; - } - /** - * @return Google_Service_CloudSearch_Interaction - */ - public function getInteractions() - { - return $this->interactions; - } - public function setKeywords($keywords) - { - $this->keywords = $keywords; - } - public function getKeywords() - { - return $this->keywords; - } - public function setMimeType($mimeType) - { - $this->mimeType = $mimeType; - } - public function getMimeType() - { - return $this->mimeType; - } - public function setObjectType($objectType) - { - $this->objectType = $objectType; - } - public function getObjectType() - { - return $this->objectType; - } - /** - * @param Google_Service_CloudSearch_SearchQualityMetadata - */ - public function setSearchQualityMetadata(Google_Service_CloudSearch_SearchQualityMetadata $searchQualityMetadata) - { - $this->searchQualityMetadata = $searchQualityMetadata; - } - /** - * @return Google_Service_CloudSearch_SearchQualityMetadata - */ - public function getSearchQualityMetadata() - { - return $this->searchQualityMetadata; - } - public function setSourceRepositoryUrl($sourceRepositoryUrl) - { - $this->sourceRepositoryUrl = $sourceRepositoryUrl; - } - public function getSourceRepositoryUrl() - { - return $this->sourceRepositoryUrl; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ItemStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ItemStatus.php deleted file mode 100644 index d3fa8148..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ItemStatus.php +++ /dev/null @@ -1,63 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_CloudSearch_ProcessingError - */ - public function setProcessingErrors($processingErrors) - { - $this->processingErrors = $processingErrors; - } - /** - * @return Google_Service_CloudSearch_ProcessingError - */ - public function getProcessingErrors() - { - return $this->processingErrors; - } - /** - * @param Google_Service_CloudSearch_RepositoryError - */ - public function setRepositoryErrors($repositoryErrors) - { - $this->repositoryErrors = $repositoryErrors; - } - /** - * @return Google_Service_CloudSearch_RepositoryError - */ - public function getRepositoryErrors() - { - return $this->repositoryErrors; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ItemStructuredData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ItemStructuredData.php deleted file mode 100644 index 349ea4bc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ItemStructuredData.php +++ /dev/null @@ -1,46 +0,0 @@ -hash = $hash; - } - public function getHash() - { - return $this->hash; - } - /** - * @param Google_Service_CloudSearch_StructuredDataObject - */ - public function setObject(Google_Service_CloudSearch_StructuredDataObject $object) - { - $this->object = $object; - } - /** - * @return Google_Service_CloudSearch_StructuredDataObject - */ - public function getObject() - { - return $this->object; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ListDataSourceResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ListDataSourceResponse.php deleted file mode 100644 index d84ce261..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ListDataSourceResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_CloudSearch_DataSource - */ - public function setSources($sources) - { - $this->sources = $sources; - } - /** - * @return Google_Service_CloudSearch_DataSource - */ - public function getSources() - { - return $this->sources; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ListItemNamesForUnmappedIdentityResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ListItemNamesForUnmappedIdentityResponse.php deleted file mode 100644 index 842f1b15..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ListItemNamesForUnmappedIdentityResponse.php +++ /dev/null @@ -1,40 +0,0 @@ -itemNames = $itemNames; - } - public function getItemNames() - { - return $this->itemNames; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ListItemsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ListItemsResponse.php deleted file mode 100644 index 532527d8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ListItemsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_CloudSearch_Item - */ - public function getItems() - { - return $this->items; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ListQuerySourcesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ListQuerySourcesResponse.php deleted file mode 100644 index 4071a0db..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ListQuerySourcesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_CloudSearch_QuerySource - */ - public function setSources($sources) - { - $this->sources = $sources; - } - /** - * @return Google_Service_CloudSearch_QuerySource - */ - public function getSources() - { - return $this->sources; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ListSearchApplicationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ListSearchApplicationsResponse.php deleted file mode 100644 index 5fc93ea2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ListSearchApplicationsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_CloudSearch_SearchApplication - */ - public function setSearchApplications($searchApplications) - { - $this->searchApplications = $searchApplications; - } - /** - * @return Google_Service_CloudSearch_SearchApplication - */ - public function getSearchApplications() - { - return $this->searchApplications; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ListUnmappedIdentitiesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ListUnmappedIdentitiesResponse.php deleted file mode 100644 index 031bcc62..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ListUnmappedIdentitiesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_CloudSearch_UnmappedIdentity - */ - public function setUnmappedIdentities($unmappedIdentities) - { - $this->unmappedIdentities = $unmappedIdentities; - } - /** - * @return Google_Service_CloudSearch_UnmappedIdentity - */ - public function getUnmappedIdentities() - { - return $this->unmappedIdentities; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/MatchRange.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/MatchRange.php deleted file mode 100644 index 6a69e2e2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/MatchRange.php +++ /dev/null @@ -1,39 +0,0 @@ -end = $end; - } - public function getEnd() - { - return $this->end; - } - public function setStart($start) - { - $this->start = $start; - } - public function getStart() - { - return $this->start; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Media.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Media.php deleted file mode 100644 index b464238d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Media.php +++ /dev/null @@ -1,30 +0,0 @@ -resourceName = $resourceName; - } - public function getResourceName() - { - return $this->resourceName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Metadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Metadata.php deleted file mode 100644 index a8accbc4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Metadata.php +++ /dev/null @@ -1,122 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - /** - * @param Google_Service_CloudSearch_ResultDisplayMetadata - */ - public function setDisplayOptions(Google_Service_CloudSearch_ResultDisplayMetadata $displayOptions) - { - $this->displayOptions = $displayOptions; - } - /** - * @return Google_Service_CloudSearch_ResultDisplayMetadata - */ - public function getDisplayOptions() - { - return $this->displayOptions; - } - /** - * @param Google_Service_CloudSearch_NamedProperty - */ - public function setFields($fields) - { - $this->fields = $fields; - } - /** - * @return Google_Service_CloudSearch_NamedProperty - */ - public function getFields() - { - return $this->fields; - } - public function setMimeType($mimeType) - { - $this->mimeType = $mimeType; - } - public function getMimeType() - { - return $this->mimeType; - } - public function setObjectType($objectType) - { - $this->objectType = $objectType; - } - public function getObjectType() - { - return $this->objectType; - } - /** - * @param Google_Service_CloudSearch_Person - */ - public function setOwner(Google_Service_CloudSearch_Person $owner) - { - $this->owner = $owner; - } - /** - * @return Google_Service_CloudSearch_Person - */ - public function getOwner() - { - return $this->owner; - } - /** - * @param Google_Service_CloudSearch_Source - */ - public function setSource(Google_Service_CloudSearch_Source $source) - { - $this->source = $source; - } - /** - * @return Google_Service_CloudSearch_Source - */ - public function getSource() - { - return $this->source; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Metaline.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Metaline.php deleted file mode 100644 index 52cb8955..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Metaline.php +++ /dev/null @@ -1,38 +0,0 @@ -properties = $properties; - } - /** - * @return Google_Service_CloudSearch_DisplayedProperty - */ - public function getProperties() - { - return $this->properties; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Name.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Name.php deleted file mode 100644 index 3eeb3484..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Name.php +++ /dev/null @@ -1,30 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/NamedProperty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/NamedProperty.php deleted file mode 100644 index b5082ab4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/NamedProperty.php +++ /dev/null @@ -1,167 +0,0 @@ -booleanValue = $booleanValue; - } - public function getBooleanValue() - { - return $this->booleanValue; - } - /** - * @param Google_Service_CloudSearch_DateValues - */ - public function setDateValues(Google_Service_CloudSearch_DateValues $dateValues) - { - $this->dateValues = $dateValues; - } - /** - * @return Google_Service_CloudSearch_DateValues - */ - public function getDateValues() - { - return $this->dateValues; - } - /** - * @param Google_Service_CloudSearch_DoubleValues - */ - public function setDoubleValues(Google_Service_CloudSearch_DoubleValues $doubleValues) - { - $this->doubleValues = $doubleValues; - } - /** - * @return Google_Service_CloudSearch_DoubleValues - */ - public function getDoubleValues() - { - return $this->doubleValues; - } - /** - * @param Google_Service_CloudSearch_EnumValues - */ - public function setEnumValues(Google_Service_CloudSearch_EnumValues $enumValues) - { - $this->enumValues = $enumValues; - } - /** - * @return Google_Service_CloudSearch_EnumValues - */ - public function getEnumValues() - { - return $this->enumValues; - } - /** - * @param Google_Service_CloudSearch_HtmlValues - */ - public function setHtmlValues(Google_Service_CloudSearch_HtmlValues $htmlValues) - { - $this->htmlValues = $htmlValues; - } - /** - * @return Google_Service_CloudSearch_HtmlValues - */ - public function getHtmlValues() - { - return $this->htmlValues; - } - /** - * @param Google_Service_CloudSearch_IntegerValues - */ - public function setIntegerValues(Google_Service_CloudSearch_IntegerValues $integerValues) - { - $this->integerValues = $integerValues; - } - /** - * @return Google_Service_CloudSearch_IntegerValues - */ - public function getIntegerValues() - { - return $this->integerValues; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_CloudSearch_ObjectValues - */ - public function setObjectValues(Google_Service_CloudSearch_ObjectValues $objectValues) - { - $this->objectValues = $objectValues; - } - /** - * @return Google_Service_CloudSearch_ObjectValues - */ - public function getObjectValues() - { - return $this->objectValues; - } - /** - * @param Google_Service_CloudSearch_TextValues - */ - public function setTextValues(Google_Service_CloudSearch_TextValues $textValues) - { - $this->textValues = $textValues; - } - /** - * @return Google_Service_CloudSearch_TextValues - */ - public function getTextValues() - { - return $this->textValues; - } - /** - * @param Google_Service_CloudSearch_TimestampValues - */ - public function setTimestampValues(Google_Service_CloudSearch_TimestampValues $timestampValues) - { - $this->timestampValues = $timestampValues; - } - /** - * @return Google_Service_CloudSearch_TimestampValues - */ - public function getTimestampValues() - { - return $this->timestampValues; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ObjectDefinition.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ObjectDefinition.php deleted file mode 100644 index f040a1d2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ObjectDefinition.php +++ /dev/null @@ -1,63 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_CloudSearch_ObjectOptions - */ - public function setOptions(Google_Service_CloudSearch_ObjectOptions $options) - { - $this->options = $options; - } - /** - * @return Google_Service_CloudSearch_ObjectOptions - */ - public function getOptions() - { - return $this->options; - } - /** - * @param Google_Service_CloudSearch_PropertyDefinition - */ - public function setPropertyDefinitions($propertyDefinitions) - { - $this->propertyDefinitions = $propertyDefinitions; - } - /** - * @return Google_Service_CloudSearch_PropertyDefinition - */ - public function getPropertyDefinitions() - { - return $this->propertyDefinitions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ObjectDisplayOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ObjectDisplayOptions.php deleted file mode 100644 index 0bc90b75..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ObjectDisplayOptions.php +++ /dev/null @@ -1,47 +0,0 @@ -metalines = $metalines; - } - /** - * @return Google_Service_CloudSearch_Metaline - */ - public function getMetalines() - { - return $this->metalines; - } - public function setObjectDisplayLabel($objectDisplayLabel) - { - $this->objectDisplayLabel = $objectDisplayLabel; - } - public function getObjectDisplayLabel() - { - return $this->objectDisplayLabel; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ObjectOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ObjectOptions.php deleted file mode 100644 index 0b8d0434..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ObjectOptions.php +++ /dev/null @@ -1,53 +0,0 @@ -displayOptions = $displayOptions; - } - /** - * @return Google_Service_CloudSearch_ObjectDisplayOptions - */ - public function getDisplayOptions() - { - return $this->displayOptions; - } - /** - * @param Google_Service_CloudSearch_FreshnessOptions - */ - public function setFreshnessOptions(Google_Service_CloudSearch_FreshnessOptions $freshnessOptions) - { - $this->freshnessOptions = $freshnessOptions; - } - /** - * @return Google_Service_CloudSearch_FreshnessOptions - */ - public function getFreshnessOptions() - { - return $this->freshnessOptions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ObjectPropertyOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ObjectPropertyOptions.php deleted file mode 100644 index 040de80c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ObjectPropertyOptions.php +++ /dev/null @@ -1,38 +0,0 @@ -subobjectProperties = $subobjectProperties; - } - /** - * @return Google_Service_CloudSearch_PropertyDefinition - */ - public function getSubobjectProperties() - { - return $this->subobjectProperties; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ObjectValues.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ObjectValues.php deleted file mode 100644 index cde3db14..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ObjectValues.php +++ /dev/null @@ -1,38 +0,0 @@ -values = $values; - } - /** - * @return Google_Service_CloudSearch_StructuredDataObject - */ - public function getValues() - { - return $this->values; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Operation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Operation.php deleted file mode 100644 index 9383d4d9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Operation.php +++ /dev/null @@ -1,73 +0,0 @@ -done = $done; - } - public function getDone() - { - return $this->done; - } - /** - * @param Google_Service_CloudSearch_Status - */ - public function setError(Google_Service_CloudSearch_Status $error) - { - $this->error = $error; - } - /** - * @return Google_Service_CloudSearch_Status - */ - public function getError() - { - return $this->error; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/PeopleSuggestion.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/PeopleSuggestion.php deleted file mode 100644 index 4c4585c3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/PeopleSuggestion.php +++ /dev/null @@ -1,37 +0,0 @@ -person = $person; - } - /** - * @return Google_Service_CloudSearch_Person - */ - public function getPerson() - { - return $this->person; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Person.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Person.php deleted file mode 100644 index ce54d4d0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Person.php +++ /dev/null @@ -1,88 +0,0 @@ -emailAddresses = $emailAddresses; - } - /** - * @return Google_Service_CloudSearch_EmailAddress - */ - public function getEmailAddresses() - { - return $this->emailAddresses; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setObfuscatedId($obfuscatedId) - { - $this->obfuscatedId = $obfuscatedId; - } - public function getObfuscatedId() - { - return $this->obfuscatedId; - } - /** - * @param Google_Service_CloudSearch_Name - */ - public function setPersonNames($personNames) - { - $this->personNames = $personNames; - } - /** - * @return Google_Service_CloudSearch_Name - */ - public function getPersonNames() - { - return $this->personNames; - } - /** - * @param Google_Service_CloudSearch_Photo - */ - public function setPhotos($photos) - { - $this->photos = $photos; - } - /** - * @return Google_Service_CloudSearch_Photo - */ - public function getPhotos() - { - return $this->photos; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Photo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Photo.php deleted file mode 100644 index 5190d409..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Photo.php +++ /dev/null @@ -1,30 +0,0 @@ -url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/PollItemsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/PollItemsRequest.php deleted file mode 100644 index cfdb9d9c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/PollItemsRequest.php +++ /dev/null @@ -1,74 +0,0 @@ -connectorName = $connectorName; - } - public function getConnectorName() - { - return $this->connectorName; - } - /** - * @param Google_Service_CloudSearch_DebugOptions - */ - public function setDebugOptions(Google_Service_CloudSearch_DebugOptions $debugOptions) - { - $this->debugOptions = $debugOptions; - } - /** - * @return Google_Service_CloudSearch_DebugOptions - */ - public function getDebugOptions() - { - return $this->debugOptions; - } - public function setLimit($limit) - { - $this->limit = $limit; - } - public function getLimit() - { - return $this->limit; - } - public function setQueue($queue) - { - $this->queue = $queue; - } - public function getQueue() - { - return $this->queue; - } - public function setStatusCodes($statusCodes) - { - $this->statusCodes = $statusCodes; - } - public function getStatusCodes() - { - return $this->statusCodes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/PollItemsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/PollItemsResponse.php deleted file mode 100644 index d32a8e43..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/PollItemsResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_CloudSearch_Item - */ - public function getItems() - { - return $this->items; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Principal.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Principal.php deleted file mode 100644 index dd551085..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Principal.php +++ /dev/null @@ -1,55 +0,0 @@ -groupResourceName = $groupResourceName; - } - public function getGroupResourceName() - { - return $this->groupResourceName; - } - /** - * @param Google_Service_CloudSearch_GSuitePrincipal - */ - public function setGsuitePrincipal(Google_Service_CloudSearch_GSuitePrincipal $gsuitePrincipal) - { - $this->gsuitePrincipal = $gsuitePrincipal; - } - /** - * @return Google_Service_CloudSearch_GSuitePrincipal - */ - public function getGsuitePrincipal() - { - return $this->gsuitePrincipal; - } - public function setUserResourceName($userResourceName) - { - $this->userResourceName = $userResourceName; - } - public function getUserResourceName() - { - return $this->userResourceName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ProcessingError.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ProcessingError.php deleted file mode 100644 index b6b322d2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ProcessingError.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setErrorMessage($errorMessage) - { - $this->errorMessage = $errorMessage; - } - public function getErrorMessage() - { - return $this->errorMessage; - } - /** - * @param Google_Service_CloudSearch_FieldViolation - */ - public function setFieldViolations($fieldViolations) - { - $this->fieldViolations = $fieldViolations; - } - /** - * @return Google_Service_CloudSearch_FieldViolation - */ - public function getFieldViolations() - { - return $this->fieldViolations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/PropertyDefinition.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/PropertyDefinition.php deleted file mode 100644 index d3ac145a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/PropertyDefinition.php +++ /dev/null @@ -1,244 +0,0 @@ -booleanPropertyOptions = $booleanPropertyOptions; - } - /** - * @return Google_Service_CloudSearch_BooleanPropertyOptions - */ - public function getBooleanPropertyOptions() - { - return $this->booleanPropertyOptions; - } - /** - * @param Google_Service_CloudSearch_DatePropertyOptions - */ - public function setDatePropertyOptions(Google_Service_CloudSearch_DatePropertyOptions $datePropertyOptions) - { - $this->datePropertyOptions = $datePropertyOptions; - } - /** - * @return Google_Service_CloudSearch_DatePropertyOptions - */ - public function getDatePropertyOptions() - { - return $this->datePropertyOptions; - } - /** - * @param Google_Service_CloudSearch_PropertyDisplayOptions - */ - public function setDisplayOptions(Google_Service_CloudSearch_PropertyDisplayOptions $displayOptions) - { - $this->displayOptions = $displayOptions; - } - /** - * @return Google_Service_CloudSearch_PropertyDisplayOptions - */ - public function getDisplayOptions() - { - return $this->displayOptions; - } - /** - * @param Google_Service_CloudSearch_DoublePropertyOptions - */ - public function setDoublePropertyOptions(Google_Service_CloudSearch_DoublePropertyOptions $doublePropertyOptions) - { - $this->doublePropertyOptions = $doublePropertyOptions; - } - /** - * @return Google_Service_CloudSearch_DoublePropertyOptions - */ - public function getDoublePropertyOptions() - { - return $this->doublePropertyOptions; - } - /** - * @param Google_Service_CloudSearch_EnumPropertyOptions - */ - public function setEnumPropertyOptions(Google_Service_CloudSearch_EnumPropertyOptions $enumPropertyOptions) - { - $this->enumPropertyOptions = $enumPropertyOptions; - } - /** - * @return Google_Service_CloudSearch_EnumPropertyOptions - */ - public function getEnumPropertyOptions() - { - return $this->enumPropertyOptions; - } - /** - * @param Google_Service_CloudSearch_HtmlPropertyOptions - */ - public function setHtmlPropertyOptions(Google_Service_CloudSearch_HtmlPropertyOptions $htmlPropertyOptions) - { - $this->htmlPropertyOptions = $htmlPropertyOptions; - } - /** - * @return Google_Service_CloudSearch_HtmlPropertyOptions - */ - public function getHtmlPropertyOptions() - { - return $this->htmlPropertyOptions; - } - /** - * @param Google_Service_CloudSearch_IntegerPropertyOptions - */ - public function setIntegerPropertyOptions(Google_Service_CloudSearch_IntegerPropertyOptions $integerPropertyOptions) - { - $this->integerPropertyOptions = $integerPropertyOptions; - } - /** - * @return Google_Service_CloudSearch_IntegerPropertyOptions - */ - public function getIntegerPropertyOptions() - { - return $this->integerPropertyOptions; - } - public function setIsFacetable($isFacetable) - { - $this->isFacetable = $isFacetable; - } - public function getIsFacetable() - { - return $this->isFacetable; - } - public function setIsRepeatable($isRepeatable) - { - $this->isRepeatable = $isRepeatable; - } - public function getIsRepeatable() - { - return $this->isRepeatable; - } - public function setIsReturnable($isReturnable) - { - $this->isReturnable = $isReturnable; - } - public function getIsReturnable() - { - return $this->isReturnable; - } - public function setIsSortable($isSortable) - { - $this->isSortable = $isSortable; - } - public function getIsSortable() - { - return $this->isSortable; - } - public function setIsSuggestable($isSuggestable) - { - $this->isSuggestable = $isSuggestable; - } - public function getIsSuggestable() - { - return $this->isSuggestable; - } - public function setIsWildcardSearchable($isWildcardSearchable) - { - $this->isWildcardSearchable = $isWildcardSearchable; - } - public function getIsWildcardSearchable() - { - return $this->isWildcardSearchable; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_CloudSearch_ObjectPropertyOptions - */ - public function setObjectPropertyOptions(Google_Service_CloudSearch_ObjectPropertyOptions $objectPropertyOptions) - { - $this->objectPropertyOptions = $objectPropertyOptions; - } - /** - * @return Google_Service_CloudSearch_ObjectPropertyOptions - */ - public function getObjectPropertyOptions() - { - return $this->objectPropertyOptions; - } - /** - * @param Google_Service_CloudSearch_TextPropertyOptions - */ - public function setTextPropertyOptions(Google_Service_CloudSearch_TextPropertyOptions $textPropertyOptions) - { - $this->textPropertyOptions = $textPropertyOptions; - } - /** - * @return Google_Service_CloudSearch_TextPropertyOptions - */ - public function getTextPropertyOptions() - { - return $this->textPropertyOptions; - } - /** - * @param Google_Service_CloudSearch_TimestampPropertyOptions - */ - public function setTimestampPropertyOptions(Google_Service_CloudSearch_TimestampPropertyOptions $timestampPropertyOptions) - { - $this->timestampPropertyOptions = $timestampPropertyOptions; - } - /** - * @return Google_Service_CloudSearch_TimestampPropertyOptions - */ - public function getTimestampPropertyOptions() - { - return $this->timestampPropertyOptions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/PropertyDisplayOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/PropertyDisplayOptions.php deleted file mode 100644 index 3904c0cb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/PropertyDisplayOptions.php +++ /dev/null @@ -1,30 +0,0 @@ -displayLabel = $displayLabel; - } - public function getDisplayLabel() - { - return $this->displayLabel; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/PushItem.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/PushItem.php deleted file mode 100644 index 7389d01e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/PushItem.php +++ /dev/null @@ -1,91 +0,0 @@ -contentHash = $contentHash; - } - public function getContentHash() - { - return $this->contentHash; - } - public function setMetadataHash($metadataHash) - { - $this->metadataHash = $metadataHash; - } - public function getMetadataHash() - { - return $this->metadataHash; - } - public function setPayload($payload) - { - $this->payload = $payload; - } - public function getPayload() - { - return $this->payload; - } - public function setQueue($queue) - { - $this->queue = $queue; - } - public function getQueue() - { - return $this->queue; - } - /** - * @param Google_Service_CloudSearch_RepositoryError - */ - public function setRepositoryError(Google_Service_CloudSearch_RepositoryError $repositoryError) - { - $this->repositoryError = $repositoryError; - } - /** - * @return Google_Service_CloudSearch_RepositoryError - */ - public function getRepositoryError() - { - return $this->repositoryError; - } - public function setStructuredDataHash($structuredDataHash) - { - $this->structuredDataHash = $structuredDataHash; - } - public function getStructuredDataHash() - { - return $this->structuredDataHash; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/PushItemRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/PushItemRequest.php deleted file mode 100644 index 9b149c54..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/PushItemRequest.php +++ /dev/null @@ -1,62 +0,0 @@ -connectorName = $connectorName; - } - public function getConnectorName() - { - return $this->connectorName; - } - /** - * @param Google_Service_CloudSearch_DebugOptions - */ - public function setDebugOptions(Google_Service_CloudSearch_DebugOptions $debugOptions) - { - $this->debugOptions = $debugOptions; - } - /** - * @return Google_Service_CloudSearch_DebugOptions - */ - public function getDebugOptions() - { - return $this->debugOptions; - } - /** - * @param Google_Service_CloudSearch_PushItem - */ - public function setItem(Google_Service_CloudSearch_PushItem $item) - { - $this->item = $item; - } - /** - * @return Google_Service_CloudSearch_PushItem - */ - public function getItem() - { - return $this->item; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/QueryCountByStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/QueryCountByStatus.php deleted file mode 100644 index ed94dae5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/QueryCountByStatus.php +++ /dev/null @@ -1,39 +0,0 @@ -count = $count; - } - public function getCount() - { - return $this->count; - } - public function setStatusCode($statusCode) - { - $this->statusCode = $statusCode; - } - public function getStatusCode() - { - return $this->statusCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/QueryInterpretation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/QueryInterpretation.php deleted file mode 100644 index 8f2af707..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/QueryInterpretation.php +++ /dev/null @@ -1,48 +0,0 @@ -interpretationType = $interpretationType; - } - public function getInterpretationType() - { - return $this->interpretationType; - } - public function setInterpretedQuery($interpretedQuery) - { - $this->interpretedQuery = $interpretedQuery; - } - public function getInterpretedQuery() - { - return $this->interpretedQuery; - } - public function setReason($reason) - { - $this->reason = $reason; - } - public function getReason() - { - return $this->reason; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/QueryInterpretationOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/QueryInterpretationOptions.php deleted file mode 100644 index bbf255cc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/QueryInterpretationOptions.php +++ /dev/null @@ -1,39 +0,0 @@ -disableNlInterpretation = $disableNlInterpretation; - } - public function getDisableNlInterpretation() - { - return $this->disableNlInterpretation; - } - public function setEnableVerbatimMode($enableVerbatimMode) - { - $this->enableVerbatimMode = $enableVerbatimMode; - } - public function getEnableVerbatimMode() - { - return $this->enableVerbatimMode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/QueryItem.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/QueryItem.php deleted file mode 100644 index 7748eedb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/QueryItem.php +++ /dev/null @@ -1,30 +0,0 @@ -isSynthetic = $isSynthetic; - } - public function getIsSynthetic() - { - return $this->isSynthetic; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/QueryOperator.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/QueryOperator.php deleted file mode 100644 index 011a0fbd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/QueryOperator.php +++ /dev/null @@ -1,130 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setEnumValues($enumValues) - { - $this->enumValues = $enumValues; - } - public function getEnumValues() - { - return $this->enumValues; - } - public function setGreaterThanOperatorName($greaterThanOperatorName) - { - $this->greaterThanOperatorName = $greaterThanOperatorName; - } - public function getGreaterThanOperatorName() - { - return $this->greaterThanOperatorName; - } - public function setIsFacetable($isFacetable) - { - $this->isFacetable = $isFacetable; - } - public function getIsFacetable() - { - return $this->isFacetable; - } - public function setIsRepeatable($isRepeatable) - { - $this->isRepeatable = $isRepeatable; - } - public function getIsRepeatable() - { - return $this->isRepeatable; - } - public function setIsReturnable($isReturnable) - { - $this->isReturnable = $isReturnable; - } - public function getIsReturnable() - { - return $this->isReturnable; - } - public function setIsSortable($isSortable) - { - $this->isSortable = $isSortable; - } - public function getIsSortable() - { - return $this->isSortable; - } - public function setIsSuggestable($isSuggestable) - { - $this->isSuggestable = $isSuggestable; - } - public function getIsSuggestable() - { - return $this->isSuggestable; - } - public function setLessThanOperatorName($lessThanOperatorName) - { - $this->lessThanOperatorName = $lessThanOperatorName; - } - public function getLessThanOperatorName() - { - return $this->lessThanOperatorName; - } - public function setObjectType($objectType) - { - $this->objectType = $objectType; - } - public function getObjectType() - { - return $this->objectType; - } - public function setOperatorName($operatorName) - { - $this->operatorName = $operatorName; - } - public function getOperatorName() - { - return $this->operatorName; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/QuerySource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/QuerySource.php deleted file mode 100644 index 1cb21640..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/QuerySource.php +++ /dev/null @@ -1,72 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - /** - * @param Google_Service_CloudSearch_QueryOperator - */ - public function setOperators($operators) - { - $this->operators = $operators; - } - /** - * @return Google_Service_CloudSearch_QueryOperator - */ - public function getOperators() - { - return $this->operators; - } - public function setShortName($shortName) - { - $this->shortName = $shortName; - } - public function getShortName() - { - return $this->shortName; - } - /** - * @param Google_Service_CloudSearch_Source - */ - public function setSource(Google_Service_CloudSearch_Source $source) - { - $this->source = $source; - } - /** - * @return Google_Service_CloudSearch_Source - */ - public function getSource() - { - return $this->source; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/QuerySuggestion.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/QuerySuggestion.php deleted file mode 100644 index f6fbe78f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/QuerySuggestion.php +++ /dev/null @@ -1,20 +0,0 @@ -errorMessage = $errorMessage; - } - public function getErrorMessage() - { - return $this->errorMessage; - } - public function setHttpStatusCode($httpStatusCode) - { - $this->httpStatusCode = $httpStatusCode; - } - public function getHttpStatusCode() - { - return $this->httpStatusCode; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/RequestOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/RequestOptions.php deleted file mode 100644 index df65c5aa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/RequestOptions.php +++ /dev/null @@ -1,64 +0,0 @@ -debugOptions = $debugOptions; - } - /** - * @return Google_Service_CloudSearch_DebugOptions - */ - public function getDebugOptions() - { - return $this->debugOptions; - } - public function setLanguageCode($languageCode) - { - $this->languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } - public function setSearchApplicationId($searchApplicationId) - { - $this->searchApplicationId = $searchApplicationId; - } - public function getSearchApplicationId() - { - return $this->searchApplicationId; - } - public function setTimeZone($timeZone) - { - $this->timeZone = $timeZone; - } - public function getTimeZone() - { - return $this->timeZone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ResetSearchApplicationRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ResetSearchApplicationRequest.php deleted file mode 100644 index 20e4ecdc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ResetSearchApplicationRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -debugOptions = $debugOptions; - } - /** - * @return Google_Service_CloudSearch_DebugOptions - */ - public function getDebugOptions() - { - return $this->debugOptions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/Debug.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/Debug.php deleted file mode 100644 index e9a97cce..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/Debug.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $cloudsearchService = new Google_Service_CloudSearch(...); - * $debug = $cloudsearchService->debug; - * - */ -class Google_Service_CloudSearch_Resource_Debug extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/DebugDatasources.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/DebugDatasources.php deleted file mode 100644 index 560bae7a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/DebugDatasources.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $cloudsearchService = new Google_Service_CloudSearch(...); - * $datasources = $cloudsearchService->datasources; - * - */ -class Google_Service_CloudSearch_Resource_DebugDatasources extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/DebugDatasourcesItems.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/DebugDatasourcesItems.php deleted file mode 100644 index 12a52c28..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/DebugDatasourcesItems.php +++ /dev/null @@ -1,66 +0,0 @@ - - * $cloudsearchService = new Google_Service_CloudSearch(...); - * $items = $cloudsearchService->items; - * - */ -class Google_Service_CloudSearch_Resource_DebugDatasourcesItems extends Google_Service_Resource -{ - /** - * Checks whether an item is accessible by specified principal. - * - * **Note:** This API requires an admin account to execute. (items.checkAccess) - * - * @param string $name Item name, format: - * datasources/{source_id}/items/{item_id} - * @param Google_Service_CloudSearch_Principal $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool debugOptions.enableDebugging If you are asked by Google to - * help with debugging, set this field. Otherwise, ignore this field. - * @return Google_Service_CloudSearch_CheckAccessResponse - */ - public function checkAccess($name, Google_Service_CloudSearch_Principal $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('checkAccess', array($params), "Google_Service_CloudSearch_CheckAccessResponse"); - } - /** - * Fetches the item whose viewUrl exactly matches that of the URL provided in - * the request. - * - * **Note:** This API requires an admin account to execute. - * (items.searchByViewUrl) - * - * @param string $name Source name, format: datasources/{source_id} - * @param Google_Service_CloudSearch_SearchItemsByViewUrlRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudSearch_SearchItemsByViewUrlResponse - */ - public function searchByViewUrl($name, Google_Service_CloudSearch_SearchItemsByViewUrlRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('searchByViewUrl', array($params), "Google_Service_CloudSearch_SearchItemsByViewUrlResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/DebugDatasourcesItemsUnmappedids.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/DebugDatasourcesItemsUnmappedids.php deleted file mode 100644 index c6cd85b4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/DebugDatasourcesItemsUnmappedids.php +++ /dev/null @@ -1,52 +0,0 @@ - - * $cloudsearchService = new Google_Service_CloudSearch(...); - * $unmappedids = $cloudsearchService->unmappedids; - * - */ -class Google_Service_CloudSearch_Resource_DebugDatasourcesItemsUnmappedids extends Google_Service_Resource -{ - /** - * List all unmapped identities for a specific item. - * - * **Note:** This API requires an admin account to execute. - * (unmappedids.listDebugDatasourcesItemsUnmappedids) - * - * @param string $parent The name of the item, in the following format: - * datasources/{source_id}/items/{ID} - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The next_page_token value returned from a - * previous List request, if any. - * @opt_param int pageSize Maximum number of items to fetch in a request. - * Defaults to 100. - * @opt_param bool debugOptions.enableDebugging If you are asked by Google to - * help with debugging, set this field. Otherwise, ignore this field. - * @return Google_Service_CloudSearch_ListUnmappedIdentitiesResponse - */ - public function listDebugDatasourcesItemsUnmappedids($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudSearch_ListUnmappedIdentitiesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/DebugIdentitysources.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/DebugIdentitysources.php deleted file mode 100644 index e517b5fd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/DebugIdentitysources.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $cloudsearchService = new Google_Service_CloudSearch(...); - * $identitysources = $cloudsearchService->identitysources; - * - */ -class Google_Service_CloudSearch_Resource_DebugIdentitysources extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/DebugIdentitysourcesItems.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/DebugIdentitysourcesItems.php deleted file mode 100644 index 7c56c91d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/DebugIdentitysourcesItems.php +++ /dev/null @@ -1,54 +0,0 @@ - - * $cloudsearchService = new Google_Service_CloudSearch(...); - * $items = $cloudsearchService->items; - * - */ -class Google_Service_CloudSearch_Resource_DebugIdentitysourcesItems extends Google_Service_Resource -{ - /** - * Lists names of items associated with an unmapped identity. - * - * **Note:** This API requires an admin account to execute. - * (items.listForunmappedidentity) - * - * @param string $parent The name of the identity source, in the following - * format: identitysources/{source_id}} - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The next_page_token value returned from a - * previous List request, if any. - * @opt_param int pageSize Maximum number of items to fetch in a request. - * Defaults to 100. - * @opt_param bool debugOptions.enableDebugging If you are asked by Google to - * help with debugging, set this field. Otherwise, ignore this field. - * @opt_param string groupResourceName - * @opt_param string userResourceName - * @return Google_Service_CloudSearch_ListItemNamesForUnmappedIdentityResponse - */ - public function listForunmappedidentity($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('listForunmappedidentity', array($params), "Google_Service_CloudSearch_ListItemNamesForUnmappedIdentityResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/DebugIdentitysourcesUnmappedids.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/DebugIdentitysourcesUnmappedids.php deleted file mode 100644 index d6b4576e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/DebugIdentitysourcesUnmappedids.php +++ /dev/null @@ -1,53 +0,0 @@ - - * $cloudsearchService = new Google_Service_CloudSearch(...); - * $unmappedids = $cloudsearchService->unmappedids; - * - */ -class Google_Service_CloudSearch_Resource_DebugIdentitysourcesUnmappedids extends Google_Service_Resource -{ - /** - * Lists unmapped user identities for an identity source. - * - * **Note:** This API requires an admin account to execute. - * (unmappedids.listDebugIdentitysourcesUnmappedids) - * - * @param string $parent The name of the identity source, in the following - * format: identitysources/{source_id} - * @param array $optParams Optional parameters. - * - * @opt_param string resolutionStatusCode Limit users selection to this status. - * @opt_param bool debugOptions.enableDebugging If you are asked by Google to - * help with debugging, set this field. Otherwise, ignore this field. - * @opt_param string pageToken The next_page_token value returned from a - * previous List request, if any. - * @opt_param int pageSize Maximum number of items to fetch in a request. - * Defaults to 100. - * @return Google_Service_CloudSearch_ListUnmappedIdentitiesResponse - */ - public function listDebugIdentitysourcesUnmappedids($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudSearch_ListUnmappedIdentitiesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/Indexing.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/Indexing.php deleted file mode 100644 index 499ee523..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/Indexing.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $cloudsearchService = new Google_Service_CloudSearch(...); - * $indexing = $cloudsearchService->indexing; - * - */ -class Google_Service_CloudSearch_Resource_Indexing extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/IndexingDatasources.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/IndexingDatasources.php deleted file mode 100644 index 4673f44b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/IndexingDatasources.php +++ /dev/null @@ -1,88 +0,0 @@ - - * $cloudsearchService = new Google_Service_CloudSearch(...); - * $datasources = $cloudsearchService->datasources; - * - */ -class Google_Service_CloudSearch_Resource_IndexingDatasources extends Google_Service_Resource -{ - /** - * Deletes the schema of a data source. - * - * **Note:** This API requires an admin or service account to execute. - * (datasources.deleteSchema) - * - * @param string $name Name of the data source to delete Schema. Format: - * datasources/{source_id} - * @param array $optParams Optional parameters. - * - * @opt_param bool debugOptions.enableDebugging If you are asked by Google to - * help with debugging, set this field. Otherwise, ignore this field. - * @return Google_Service_CloudSearch_Operation - */ - public function deleteSchema($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('deleteSchema', array($params), "Google_Service_CloudSearch_Operation"); - } - /** - * Gets the schema of a data source. - * - * **Note:** This API requires an admin or service account to execute. - * (datasources.getSchema) - * - * @param string $name Name of the data source to get Schema. Format: - * datasources/{source_id} - * @param array $optParams Optional parameters. - * - * @opt_param bool debugOptions.enableDebugging If you are asked by Google to - * help with debugging, set this field. Otherwise, ignore this field. - * @return Google_Service_CloudSearch_Schema - */ - public function getSchema($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('getSchema', array($params), "Google_Service_CloudSearch_Schema"); - } - /** - * Updates the schema of a data source. This method does not perform incremental - * updates to the schema. Instead, this method updates the schema by overwriting - * the entire schema. - * - * **Note:** This API requires an admin or service account to execute. - * (datasources.updateSchema) - * - * @param string $name Name of the data source to update Schema. Format: - * datasources/{source_id} - * @param Google_Service_CloudSearch_UpdateSchemaRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudSearch_Operation - */ - public function updateSchema($name, Google_Service_CloudSearch_UpdateSchemaRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updateSchema', array($params), "Google_Service_CloudSearch_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/IndexingDatasourcesItems.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/IndexingDatasourcesItems.php deleted file mode 100644 index 8a030558..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/IndexingDatasourcesItems.php +++ /dev/null @@ -1,251 +0,0 @@ - - * $cloudsearchService = new Google_Service_CloudSearch(...); - * $items = $cloudsearchService->items; - * - */ -class Google_Service_CloudSearch_Resource_IndexingDatasourcesItems extends Google_Service_Resource -{ - /** - * Deletes Item resource for the specified resource name. This API requires an - * admin or service account to execute. The service account used is the one - * whitelisted in the corresponding data source. (items.delete) - * - * @param string $name Required. Name of the item to delete. Format: - * datasources/{source_id}/items/{item_id} - * @param array $optParams Optional parameters. - * - * @opt_param string connectorName Name of connector making this call. Format: - * datasources/{source_id}/connectors/{ID} - * @opt_param string version Required. The incremented version of the item to - * delete from the index. The indexing system stores the version from the - * datasource as a byte string and compares the Item version in the index to the - * version of the queued Item using lexical ordering. - * - * Cloud Search Indexing won't delete any queued item with a version value that - * is less than or equal to the version of the currently indexed item. The - * maximum length for this field is 1024 bytes. - * @opt_param bool debugOptions.enableDebugging If you are asked by Google to - * help with debugging, set this field. Otherwise, ignore this field. - * @opt_param string mode Required. The RequestMode for this request. - * @return Google_Service_CloudSearch_Operation - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudSearch_Operation"); - } - /** - * Deletes all items in a queue. This method is useful for deleting stale items. - * - * This API requires an admin or service account to execute. The service account - * used is the one whitelisted in the corresponding data source. - * (items.deleteQueueItems) - * - * @param string $name Name of the Data Source to delete items in a queue. - * Format: datasources/{source_id} - * @param Google_Service_CloudSearch_DeleteQueueItemsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudSearch_Operation - */ - public function deleteQueueItems($name, Google_Service_CloudSearch_DeleteQueueItemsRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('deleteQueueItems', array($params), "Google_Service_CloudSearch_Operation"); - } - /** - * Gets Item resource by item name. - * - * This API requires an admin or service account to execute. The service - * account used is the one whitelisted in the corresponding data source. - * (items.get) - * - * @param string $name Name of the item to get info. Format: - * datasources/{source_id}/items/{item_id} - * @param array $optParams Optional parameters. - * - * @opt_param string connectorName Name of connector making this call. Format: - * datasources/{source_id}/connectors/{ID} - * @opt_param bool debugOptions.enableDebugging If you are asked by Google to - * help with debugging, set this field. Otherwise, ignore this field. - * @return Google_Service_CloudSearch_Item - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudSearch_Item"); - } - /** - * Updates Item ACL, metadata, and content. It will insert the Item if it does - * not exist. This method does not support partial updates. Fields with no - * provided values are cleared out in the Cloud Search index. - * - * This API requires an admin or service account to execute. The service account - * used is the one whitelisted in the corresponding data source. (items.index) - * - * @param string $name Name of the Item. Format: - * datasources/{source_id}/items/{item_id} This is a required field. The maximum - * length is 1536 characters. - * @param Google_Service_CloudSearch_IndexItemRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudSearch_Operation - */ - public function index($name, Google_Service_CloudSearch_IndexItemRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('index', array($params), "Google_Service_CloudSearch_Operation"); - } - /** - * Lists all or a subset of Item resources. - * - * This API requires an admin or service account to execute. The service account - * used is the one whitelisted in the corresponding data source. - * (items.listIndexingDatasourcesItems) - * - * @param string $name Name of the Data Source to list Items. Format: - * datasources/{source_id} - * @param array $optParams Optional parameters. - * - * @opt_param int pageSize Maximum number of items to fetch in a request. The - * max value is 1000 when brief is true. The max value is 10 if brief is false. - * The default value is 10 - * @opt_param bool debugOptions.enableDebugging If you are asked by Google to - * help with debugging, set this field. Otherwise, ignore this field. - * @opt_param string connectorName Name of connector making this call. Format: - * datasources/{source_id}/connectors/{ID} - * @opt_param bool brief When set to true, the indexing system only populates - * the following fields: name, version, queue. metadata.hash, metadata.title, - * metadata.sourceRepositoryURL, metadata.objectType, metadata.createTime, - * metadata.updateTime, metadata.contentLanguage, metadata.mimeType, - * structured_data.hash, content.hash, itemType, itemStatus.code, - * itemStatus.processingError.code, itemStatus.repositoryError.type, If this - * value is false, then all the fields are populated in Item. - * @opt_param string pageToken The next_page_token value returned from a - * previous List request, if any. - * @return Google_Service_CloudSearch_ListItemsResponse - */ - public function listIndexingDatasourcesItems($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudSearch_ListItemsResponse"); - } - /** - * Polls for unreserved items from the indexing queue and marks a set as - * reserved, starting with items that have the oldest timestamp from the highest - * priority ItemStatus. The priority order is as follows: ERROR - * - * MODIFIED - * - * NEW_ITEM - * - * ACCEPTED - * - * Reserving items ensures that polling from other threads cannot create - * overlapping sets. - * - * After handling the reserved items, the client should put items back into the - * unreserved state, either by calling index, or by calling push with the type - * REQUEUE. - * - * Items automatically become available (unreserved) after 4 hours even if no - * update or push method is called. - * - * This API requires an admin or service account to execute. The service account - * used is the one whitelisted in the corresponding data source. (items.poll) - * - * @param string $name Name of the Data Source to poll items. Format: - * datasources/{source_id} - * @param Google_Service_CloudSearch_PollItemsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudSearch_PollItemsResponse - */ - public function poll($name, Google_Service_CloudSearch_PollItemsRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('poll', array($params), "Google_Service_CloudSearch_PollItemsResponse"); - } - /** - * Pushes an item onto a queue for later polling and updating. - * - * This API requires an admin or service account to execute. The service account - * used is the one whitelisted in the corresponding data source. (items.push) - * - * @param string $name Name of the item to push into the indexing queue. Format: - * datasources/{source_id}/items/{ID} This is a required field. The maximum - * length is 1536 characters. - * @param Google_Service_CloudSearch_PushItemRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudSearch_Item - */ - public function push($name, Google_Service_CloudSearch_PushItemRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('push', array($params), "Google_Service_CloudSearch_Item"); - } - /** - * Unreserves all items from a queue, making them all eligible to be polled. - * This method is useful for resetting the indexing queue after a connector has - * been restarted. - * - * This API requires an admin or service account to execute. The service account - * used is the one whitelisted in the corresponding data source. - * (items.unreserve) - * - * @param string $name Name of the Data Source to unreserve all items. Format: - * datasources/{source_id} - * @param Google_Service_CloudSearch_UnreserveItemsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudSearch_Operation - */ - public function unreserve($name, Google_Service_CloudSearch_UnreserveItemsRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('unreserve', array($params), "Google_Service_CloudSearch_Operation"); - } - /** - * Creates an upload session for uploading item content. For items smaller than - * 100 KB, it's easier to embed the content inline within an index request. - * - * This API requires an admin or service account to execute. The service account - * used is the one whitelisted in the corresponding data source. (items.upload) - * - * @param string $name Name of the Item to start a resumable upload. Format: - * datasources/{source_id}/items/{item_id}. - * @param Google_Service_CloudSearch_StartUploadItemRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudSearch_UploadItemRef - */ - public function upload($name, Google_Service_CloudSearch_StartUploadItemRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('upload', array($params), "Google_Service_CloudSearch_UploadItemRef"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/Media.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/Media.php deleted file mode 100644 index 4a1418d6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/Media.php +++ /dev/null @@ -1,63 +0,0 @@ - - * $cloudsearchService = new Google_Service_CloudSearch(...); - * $media = $cloudsearchService->media; - * - */ -class Google_Service_CloudSearch_Resource_Media extends Google_Service_Resource -{ - /** - * Uploads media for indexing. - * - * The upload endpoint supports direct and resumable upload protocols and is - * intended for large items that can not be [inlined during index - * requests](https://developers.google.com/cloud- - * search/docs/reference/rest/v1/indexing.datasources.items#itemcontent). To - * index large content: - * - * 1. Call indexing.datasources.items.upload with the resource name to - * begin an upload session and retrieve the UploadItemRef. 1. Call - * media.upload to upload the content using the same resource name from step 1. - * 1. Call indexing.datasources.items.index to index the item. Populate the - * [ItemContent](/cloud- - * search/docs/reference/rest/v1/indexing.datasources.items#ItemContent) with - * the UploadItemRef from step 1. - * - * For additional information, see [Create a content connector using the REST - * API](https://developers.google.com/cloud-search/docs/guides/content- - * connector#rest). - * - * **Note:** This API requires a service account to execute. (media.upload) - * - * @param string $resourceName Name of the media that is being downloaded. See - * ReadRequest.resource_name. - * @param Google_Service_CloudSearch_Media $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudSearch_Media - */ - public function upload($resourceName, Google_Service_CloudSearch_Media $postBody, $optParams = array()) - { - $params = array('resourceName' => $resourceName, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('upload', array($params), "Google_Service_CloudSearch_Media"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/Operations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/Operations.php deleted file mode 100644 index b00d0f91..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/Operations.php +++ /dev/null @@ -1,43 +0,0 @@ - - * $cloudsearchService = new Google_Service_CloudSearch(...); - * $operations = $cloudsearchService->operations; - * - */ -class Google_Service_CloudSearch_Resource_Operations extends Google_Service_Resource -{ - /** - * Gets the latest state of a long-running operation. Clients can use this - * method to poll the operation result at intervals as recommended by the API - * service. (operations.get) - * - * @param string $name The name of the operation resource. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudSearch_Operation - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudSearch_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/Query.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/Query.php deleted file mode 100644 index c639b836..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/Query.php +++ /dev/null @@ -1,63 +0,0 @@ - - * $cloudsearchService = new Google_Service_CloudSearch(...); - * $query = $cloudsearchService->query; - * - */ -class Google_Service_CloudSearch_Resource_Query extends Google_Service_Resource -{ - /** - * The Cloud Search Query API provides the search method, which returns the most - * relevant results from a user query. The results can come from G Suite Apps, - * such as Gmail or Google Drive, or they can come from data that you have - * indexed from a third party. - * - * **Note:** This API requires a standard end user account to execute. - * (query.search) - * - * @param Google_Service_CloudSearch_SearchRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudSearch_SearchResponse - */ - public function search(Google_Service_CloudSearch_SearchRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('search', array($params), "Google_Service_CloudSearch_SearchResponse"); - } - /** - * Provides suggestions for autocompleting the query. - * - * **Note:** This API requires a standard end user account to execute. - * (query.suggest) - * - * @param Google_Service_CloudSearch_SuggestRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudSearch_SuggestResponse - */ - public function suggest(Google_Service_CloudSearch_SuggestRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('suggest', array($params), "Google_Service_CloudSearch_SuggestResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/QuerySources.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/QuerySources.php deleted file mode 100644 index 30ae1f7d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/QuerySources.php +++ /dev/null @@ -1,71 +0,0 @@ - - * $cloudsearchService = new Google_Service_CloudSearch(...); - * $sources = $cloudsearchService->sources; - * - */ -class Google_Service_CloudSearch_Resource_QuerySources extends Google_Service_Resource -{ - /** - * Returns list of sources that user can use for Search and Suggest APIs. - * - * **Note:** This API requires a standard end user account to execute. - * (sources.listQuerySources) - * - * @param array $optParams Optional parameters. - * - * @opt_param string requestOptions.searchApplicationId Id of the application - * created using SearchApplicationsService. - * @opt_param string requestOptions.timeZone Current user's time zone id, such - * as "America/Los_Angeles" or "Australia/Sydney". These IDs are defined by - * [Unicode Common Locale Data Repository (CLDR)](http://cldr.unicode.org/) - * project, and currently available in the file [timezone.xml](http://unicode.or - * g/repos/cldr/trunk/common/bcp47/timezone.xml). This field is used to - * correctly interpret date and time queries. If this field is not specified, - * the default time zone (UTC) is used. - * @opt_param string pageToken Number of sources to return in the response. - * @opt_param bool requestOptions.debugOptions.enableDebugging If you are asked - * by Google to help with debugging, set this field. Otherwise, ignore this - * field. - * @opt_param string requestOptions.languageCode The BCP-47 language code, such - * as "en-US" or "sr-Latn". For more information, see - * http://www.unicode.org/reports/tr35/#Unicode_locale_identifier. For - * translations. - * - * Set this field using the language set in browser or for the page. In the - * event that the user's language preference is known, set this field to the - * known user language. - * - * When specified, the documents in search results are biased towards the - * specified language. - * - * The suggest API does not use this parameter. Instead, suggest autocompletes - * only based on characters in the query. - * @return Google_Service_CloudSearch_ListQuerySourcesResponse - */ - public function listQuerySources($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudSearch_ListQuerySourcesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/Settings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/Settings.php deleted file mode 100644 index 40ef3c56..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/Settings.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $cloudsearchService = new Google_Service_CloudSearch(...); - * $settings = $cloudsearchService->settings; - * - */ -class Google_Service_CloudSearch_Resource_Settings extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/SettingsDatasources.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/SettingsDatasources.php deleted file mode 100644 index e5e0c320..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/SettingsDatasources.php +++ /dev/null @@ -1,118 +0,0 @@ - - * $cloudsearchService = new Google_Service_CloudSearch(...); - * $datasources = $cloudsearchService->datasources; - * - */ -class Google_Service_CloudSearch_Resource_SettingsDatasources extends Google_Service_Resource -{ - /** - * Creates a datasource. - * - * **Note:** This API requires an admin account to execute. (datasources.create) - * - * @param Google_Service_CloudSearch_DataSource $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudSearch_Operation - */ - public function create(Google_Service_CloudSearch_DataSource $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_CloudSearch_Operation"); - } - /** - * Deletes a datasource. - * - * **Note:** This API requires an admin account to execute. (datasources.delete) - * - * @param string $name Name of the datasource. Format: datasources/{source_id}. - * @param array $optParams Optional parameters. - * - * @opt_param bool debugOptions.enableDebugging If you are asked by Google to - * help with debugging, set this field. Otherwise, ignore this field. - * @return Google_Service_CloudSearch_Operation - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudSearch_Operation"); - } - /** - * Gets a datasource. - * - * **Note:** This API requires an admin account to execute. (datasources.get) - * - * @param string $name Name of the datasource resource. Format: - * datasources/{source_id}. - * @param array $optParams Optional parameters. - * - * @opt_param bool debugOptions.enableDebugging If you are asked by Google to - * help with debugging, set this field. Otherwise, ignore this field. - * @return Google_Service_CloudSearch_DataSource - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudSearch_DataSource"); - } - /** - * Lists datasources. - * - * **Note:** This API requires an admin account to execute. - * (datasources.listSettingsDatasources) - * - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Starting index of the results. - * @opt_param int pageSize Maximum number of datasources to fetch in a request. - * The max value is 100. The default value is 10 - * @opt_param bool debugOptions.enableDebugging If you are asked by Google to - * help with debugging, set this field. Otherwise, ignore this field. - * @return Google_Service_CloudSearch_ListDataSourceResponse - */ - public function listSettingsDatasources($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudSearch_ListDataSourceResponse"); - } - /** - * Updates a datasource. - * - * **Note:** This API requires an admin account to execute. (datasources.update) - * - * @param string $name Name of the datasource resource. Format: - * datasources/{source_id}. The name is ignored when creating a datasource. - * @param Google_Service_CloudSearch_UpdateDataSourceRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudSearch_Operation - */ - public function update($name, Google_Service_CloudSearch_UpdateDataSourceRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_CloudSearch_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/SettingsSearchapplications.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/SettingsSearchapplications.php deleted file mode 100644 index 657b5410..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/SettingsSearchapplications.php +++ /dev/null @@ -1,142 +0,0 @@ - - * $cloudsearchService = new Google_Service_CloudSearch(...); - * $searchapplications = $cloudsearchService->searchapplications; - * - */ -class Google_Service_CloudSearch_Resource_SettingsSearchapplications extends Google_Service_Resource -{ - /** - * Creates a search application. - * - * **Note:** This API requires an admin account to execute. - * (searchapplications.create) - * - * @param Google_Service_CloudSearch_SearchApplication $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudSearch_Operation - */ - public function create(Google_Service_CloudSearch_SearchApplication $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_CloudSearch_Operation"); - } - /** - * Deletes a search application. - * - * **Note:** This API requires an admin account to execute. - * (searchapplications.delete) - * - * @param string $name The name of the search application to be deleted. Format: - * applications/{application_id}. - * @param array $optParams Optional parameters. - * - * @opt_param bool debugOptions.enableDebugging If you are asked by Google to - * help with debugging, set this field. Otherwise, ignore this field. - * @return Google_Service_CloudSearch_Operation - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudSearch_Operation"); - } - /** - * Gets the specified search application. - * - * **Note:** This API requires an admin account to execute. - * (searchapplications.get) - * - * @param string $name Name of the search application. Format: - * applications/{application_id}. - * @param array $optParams Optional parameters. - * - * @opt_param bool debugOptions.enableDebugging If you are asked by Google to - * help with debugging, set this field. Otherwise, ignore this field. - * @return Google_Service_CloudSearch_SearchApplication - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudSearch_SearchApplication"); - } - /** - * Lists all search applications. - * - * **Note:** This API requires an admin account to execute. - * (searchapplications.listSettingsSearchapplications) - * - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The next_page_token value returned from a - * previous List request, if any. The default value is 10 - * @opt_param int pageSize The maximum number of items to return. - * @opt_param bool debugOptions.enableDebugging If you are asked by Google to - * help with debugging, set this field. Otherwise, ignore this field. - * @return Google_Service_CloudSearch_ListSearchApplicationsResponse - */ - public function listSettingsSearchapplications($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudSearch_ListSearchApplicationsResponse"); - } - /** - * Resets a search application to default settings. This will return an empty - * response. - * - * **Note:** This API requires an admin account to execute. - * (searchapplications.reset) - * - * @param string $name The name of the search application to be reset. Format: - * applications/{application_id}. - * @param Google_Service_CloudSearch_ResetSearchApplicationRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudSearch_Operation - */ - public function reset($name, Google_Service_CloudSearch_ResetSearchApplicationRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('reset', array($params), "Google_Service_CloudSearch_Operation"); - } - /** - * Updates a search application. - * - * **Note:** This API requires an admin account to execute. - * (searchapplications.update) - * - * @param string $name Name of the Search Application. Format: - * searchapplications/{application_id}. - * @param Google_Service_CloudSearch_SearchApplication $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudSearch_Operation - */ - public function update($name, Google_Service_CloudSearch_SearchApplication $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_CloudSearch_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/Stats.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/Stats.php deleted file mode 100644 index 60916abc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/Stats.php +++ /dev/null @@ -1,127 +0,0 @@ - - * $cloudsearchService = new Google_Service_CloudSearch(...); - * $stats = $cloudsearchService->stats; - * - */ -class Google_Service_CloudSearch_Resource_Stats extends Google_Service_Resource -{ - /** - * Gets indexed item statistics aggreggated across all data sources. This API - * only returns statistics for previous dates; it doesn't return statistics for - * the current day. - * - * **Note:** This API requires a standard end user account to execute. - * (stats.getIndex) - * - * @param array $optParams Optional parameters. - * - * @opt_param int toDate.day Day of month. Must be from 1 to 31 and valid for - * the year and month. - * @opt_param int toDate.month Month of date. Must be from 1 to 12. - * @opt_param int toDate.year Year of date. Must be from 1 to 9999. - * @opt_param int fromDate.month Month of date. Must be from 1 to 12. - * @opt_param int fromDate.day Day of month. Must be from 1 to 31 and valid for - * the year and month. - * @opt_param int fromDate.year Year of date. Must be from 1 to 9999. - * @return Google_Service_CloudSearch_GetCustomerIndexStatsResponse - */ - public function getIndex($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('getIndex', array($params), "Google_Service_CloudSearch_GetCustomerIndexStatsResponse"); - } - /** - * Get the query statistics for customer. - * - * **Note:** This API requires a standard end user account to execute. - * (stats.getQuery) - * - * @param array $optParams Optional parameters. - * - * @opt_param int toDate.day Day of month. Must be from 1 to 31 and valid for - * the year and month. - * @opt_param int toDate.month Month of date. Must be from 1 to 12. - * @opt_param int toDate.year Year of date. Must be from 1 to 9999. - * @opt_param int fromDate.month Month of date. Must be from 1 to 12. - * @opt_param int fromDate.day Day of month. Must be from 1 to 31 and valid for - * the year and month. - * @opt_param int fromDate.year Year of date. Must be from 1 to 9999. - * @return Google_Service_CloudSearch_GetCustomerQueryStatsResponse - */ - public function getQuery($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('getQuery', array($params), "Google_Service_CloudSearch_GetCustomerQueryStatsResponse"); - } - /** - * Get the # of search sessions, % of successful sessions with a click query - * statistics for customer. - * - * **Note:** This API requires a standard end user account to execute. - * (stats.getSession) - * - * @param array $optParams Optional parameters. - * - * @opt_param int toDate.day Day of month. Must be from 1 to 31 and valid for - * the year and month. - * @opt_param int toDate.month Month of date. Must be from 1 to 12. - * @opt_param int toDate.year Year of date. Must be from 1 to 9999. - * @opt_param int fromDate.month Month of date. Must be from 1 to 12. - * @opt_param int fromDate.day Day of month. Must be from 1 to 31 and valid for - * the year and month. - * @opt_param int fromDate.year Year of date. Must be from 1 to 9999. - * @return Google_Service_CloudSearch_GetCustomerSessionStatsResponse - */ - public function getSession($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('getSession', array($params), "Google_Service_CloudSearch_GetCustomerSessionStatsResponse"); - } - /** - * Get the users statistics for customer. - * - * **Note:** This API requires a standard end user account to execute. - * (stats.getUser) - * - * @param array $optParams Optional parameters. - * - * @opt_param int toDate.month Month of date. Must be from 1 to 12. - * @opt_param int toDate.year Year of date. Must be from 1 to 9999. - * @opt_param int fromDate.month Month of date. Must be from 1 to 12. - * @opt_param int fromDate.day Day of month. Must be from 1 to 31 and valid for - * the year and month. - * @opt_param int fromDate.year Year of date. Must be from 1 to 9999. - * @opt_param int toDate.day Day of month. Must be from 1 to 31 and valid for - * the year and month. - * @return Google_Service_CloudSearch_GetCustomerUserStatsResponse - */ - public function getUser($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('getUser', array($params), "Google_Service_CloudSearch_GetCustomerUserStatsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/StatsIndex.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/StatsIndex.php deleted file mode 100644 index b8585bb1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/StatsIndex.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $cloudsearchService = new Google_Service_CloudSearch(...); - * $index = $cloudsearchService->index; - * - */ -class Google_Service_CloudSearch_Resource_StatsIndex extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/StatsIndexDatasources.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/StatsIndexDatasources.php deleted file mode 100644 index 7304efbf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/StatsIndexDatasources.php +++ /dev/null @@ -1,54 +0,0 @@ - - * $cloudsearchService = new Google_Service_CloudSearch(...); - * $datasources = $cloudsearchService->datasources; - * - */ -class Google_Service_CloudSearch_Resource_StatsIndexDatasources extends Google_Service_Resource -{ - /** - * Gets indexed item statistics for a single data source. - * - * **Note:** This API requires a standard end user account to execute. - * (datasources.get) - * - * @param string $name The resource id of the data source to retrieve statistics - * for, in the following format: "datasources/{source_id}" - * @param array $optParams Optional parameters. - * - * @opt_param int fromDate.year Year of date. Must be from 1 to 9999. - * @opt_param int toDate.day Day of month. Must be from 1 to 31 and valid for - * the year and month. - * @opt_param int toDate.month Month of date. Must be from 1 to 12. - * @opt_param int toDate.year Year of date. Must be from 1 to 9999. - * @opt_param int fromDate.month Month of date. Must be from 1 to 12. - * @opt_param int fromDate.day Day of month. Must be from 1 to 31 and valid for - * the year and month. - * @return Google_Service_CloudSearch_GetDataSourceIndexStatsResponse - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudSearch_GetDataSourceIndexStatsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/StatsQuery.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/StatsQuery.php deleted file mode 100644 index 15309dfb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/StatsQuery.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $cloudsearchService = new Google_Service_CloudSearch(...); - * $query = $cloudsearchService->query; - * - */ -class Google_Service_CloudSearch_Resource_StatsQuery extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/StatsQuerySearchapplications.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/StatsQuerySearchapplications.php deleted file mode 100644 index 6d9f8478..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/StatsQuerySearchapplications.php +++ /dev/null @@ -1,54 +0,0 @@ - - * $cloudsearchService = new Google_Service_CloudSearch(...); - * $searchapplications = $cloudsearchService->searchapplications; - * - */ -class Google_Service_CloudSearch_Resource_StatsQuerySearchapplications extends Google_Service_Resource -{ - /** - * Get the query statistics for search application. - * - * **Note:** This API requires a standard end user account to execute. - * (searchapplications.get) - * - * @param string $name The resource id of the search application query stats, in - * the following format: searchapplications/{application_id} - * @param array $optParams Optional parameters. - * - * @opt_param int fromDate.year Year of date. Must be from 1 to 9999. - * @opt_param int toDate.day Day of month. Must be from 1 to 31 and valid for - * the year and month. - * @opt_param int toDate.month Month of date. Must be from 1 to 12. - * @opt_param int toDate.year Year of date. Must be from 1 to 9999. - * @opt_param int fromDate.month Month of date. Must be from 1 to 12. - * @opt_param int fromDate.day Day of month. Must be from 1 to 31 and valid for - * the year and month. - * @return Google_Service_CloudSearch_GetSearchApplicationQueryStatsResponse - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudSearch_GetSearchApplicationQueryStatsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/StatsSession.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/StatsSession.php deleted file mode 100644 index 5b3dec9c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/StatsSession.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $cloudsearchService = new Google_Service_CloudSearch(...); - * $session = $cloudsearchService->session; - * - */ -class Google_Service_CloudSearch_Resource_StatsSession extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/StatsSessionSearchapplications.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/StatsSessionSearchapplications.php deleted file mode 100644 index cc808a65..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/StatsSessionSearchapplications.php +++ /dev/null @@ -1,55 +0,0 @@ - - * $cloudsearchService = new Google_Service_CloudSearch(...); - * $searchapplications = $cloudsearchService->searchapplications; - * - */ -class Google_Service_CloudSearch_Resource_StatsSessionSearchapplications extends Google_Service_Resource -{ - /** - * Get the # of search sessions, % of successful sessions with a click query - * statistics for search application. - * - * **Note:** This API requires a standard end user account to execute. - * (searchapplications.get) - * - * @param string $name The resource id of the search application session stats, - * in the following format: searchapplications/{application_id} - * @param array $optParams Optional parameters. - * - * @opt_param int fromDate.year Year of date. Must be from 1 to 9999. - * @opt_param int toDate.day Day of month. Must be from 1 to 31 and valid for - * the year and month. - * @opt_param int toDate.month Month of date. Must be from 1 to 12. - * @opt_param int toDate.year Year of date. Must be from 1 to 9999. - * @opt_param int fromDate.month Month of date. Must be from 1 to 12. - * @opt_param int fromDate.day Day of month. Must be from 1 to 31 and valid for - * the year and month. - * @return Google_Service_CloudSearch_GetSearchApplicationSessionStatsResponse - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudSearch_GetSearchApplicationSessionStatsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/StatsUser.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/StatsUser.php deleted file mode 100644 index 22ab01a9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/StatsUser.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $cloudsearchService = new Google_Service_CloudSearch(...); - * $user = $cloudsearchService->user; - * - */ -class Google_Service_CloudSearch_Resource_StatsUser extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/StatsUserSearchapplications.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/StatsUserSearchapplications.php deleted file mode 100644 index 52ed85f6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Resource/StatsUserSearchapplications.php +++ /dev/null @@ -1,54 +0,0 @@ - - * $cloudsearchService = new Google_Service_CloudSearch(...); - * $searchapplications = $cloudsearchService->searchapplications; - * - */ -class Google_Service_CloudSearch_Resource_StatsUserSearchapplications extends Google_Service_Resource -{ - /** - * Get the users statistics for search application. - * - * **Note:** This API requires a standard end user account to execute. - * (searchapplications.get) - * - * @param string $name The resource id of the search application session stats, - * in the following format: searchapplications/{application_id} - * @param array $optParams Optional parameters. - * - * @opt_param int toDate.month Month of date. Must be from 1 to 12. - * @opt_param int toDate.year Year of date. Must be from 1 to 9999. - * @opt_param int fromDate.month Month of date. Must be from 1 to 12. - * @opt_param int fromDate.day Day of month. Must be from 1 to 31 and valid for - * the year and month. - * @opt_param int fromDate.year Year of date. Must be from 1 to 9999. - * @opt_param int toDate.day Day of month. Must be from 1 to 31 and valid for - * the year and month. - * @return Google_Service_CloudSearch_GetSearchApplicationUserStatsResponse - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudSearch_GetSearchApplicationUserStatsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ResponseDebugInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ResponseDebugInfo.php deleted file mode 100644 index e0d37955..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ResponseDebugInfo.php +++ /dev/null @@ -1,30 +0,0 @@ -formattedDebugInfo = $formattedDebugInfo; - } - public function getFormattedDebugInfo() - { - return $this->formattedDebugInfo; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/RestrictItem.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/RestrictItem.php deleted file mode 100644 index f2254546..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/RestrictItem.php +++ /dev/null @@ -1,94 +0,0 @@ -driveFollowUpRestrict = $driveFollowUpRestrict; - } - /** - * @return Google_Service_CloudSearch_DriveFollowUpRestrict - */ - public function getDriveFollowUpRestrict() - { - return $this->driveFollowUpRestrict; - } - /** - * @param Google_Service_CloudSearch_DriveLocationRestrict - */ - public function setDriveLocationRestrict(Google_Service_CloudSearch_DriveLocationRestrict $driveLocationRestrict) - { - $this->driveLocationRestrict = $driveLocationRestrict; - } - /** - * @return Google_Service_CloudSearch_DriveLocationRestrict - */ - public function getDriveLocationRestrict() - { - return $this->driveLocationRestrict; - } - /** - * @param Google_Service_CloudSearch_DriveMimeTypeRestrict - */ - public function setDriveMimeTypeRestrict(Google_Service_CloudSearch_DriveMimeTypeRestrict $driveMimeTypeRestrict) - { - $this->driveMimeTypeRestrict = $driveMimeTypeRestrict; - } - /** - * @return Google_Service_CloudSearch_DriveMimeTypeRestrict - */ - public function getDriveMimeTypeRestrict() - { - return $this->driveMimeTypeRestrict; - } - /** - * @param Google_Service_CloudSearch_DriveTimeSpanRestrict - */ - public function setDriveTimeSpanRestrict(Google_Service_CloudSearch_DriveTimeSpanRestrict $driveTimeSpanRestrict) - { - $this->driveTimeSpanRestrict = $driveTimeSpanRestrict; - } - /** - * @return Google_Service_CloudSearch_DriveTimeSpanRestrict - */ - public function getDriveTimeSpanRestrict() - { - return $this->driveTimeSpanRestrict; - } - public function setSearchOperator($searchOperator) - { - $this->searchOperator = $searchOperator; - } - public function getSearchOperator() - { - return $this->searchOperator; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ResultCounts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ResultCounts.php deleted file mode 100644 index 18f6b3af..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ResultCounts.php +++ /dev/null @@ -1,38 +0,0 @@ -sourceResultCounts = $sourceResultCounts; - } - /** - * @return Google_Service_CloudSearch_SourceResultCount - */ - public function getSourceResultCounts() - { - return $this->sourceResultCounts; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ResultDebugInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ResultDebugInfo.php deleted file mode 100644 index 6dbca527..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ResultDebugInfo.php +++ /dev/null @@ -1,30 +0,0 @@ -formattedDebugInfo = $formattedDebugInfo; - } - public function getFormattedDebugInfo() - { - return $this->formattedDebugInfo; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ResultDisplayField.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ResultDisplayField.php deleted file mode 100644 index 1fc4c704..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ResultDisplayField.php +++ /dev/null @@ -1,55 +0,0 @@ -label = $label; - } - public function getLabel() - { - return $this->label; - } - public function setOperatorName($operatorName) - { - $this->operatorName = $operatorName; - } - public function getOperatorName() - { - return $this->operatorName; - } - /** - * @param Google_Service_CloudSearch_NamedProperty - */ - public function setProperty(Google_Service_CloudSearch_NamedProperty $property) - { - $this->property = $property; - } - /** - * @return Google_Service_CloudSearch_NamedProperty - */ - public function getProperty() - { - return $this->property; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ResultDisplayLine.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ResultDisplayLine.php deleted file mode 100644 index e83d137c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ResultDisplayLine.php +++ /dev/null @@ -1,38 +0,0 @@ -fields = $fields; - } - /** - * @return Google_Service_CloudSearch_ResultDisplayField - */ - public function getFields() - { - return $this->fields; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ResultDisplayMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ResultDisplayMetadata.php deleted file mode 100644 index 3ecab4a1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ResultDisplayMetadata.php +++ /dev/null @@ -1,47 +0,0 @@ -metalines = $metalines; - } - /** - * @return Google_Service_CloudSearch_ResultDisplayLine - */ - public function getMetalines() - { - return $this->metalines; - } - public function setObjectTypeLabel($objectTypeLabel) - { - $this->objectTypeLabel = $objectTypeLabel; - } - public function getObjectTypeLabel() - { - return $this->objectTypeLabel; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/RetrievalImportance.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/RetrievalImportance.php deleted file mode 100644 index ace066ab..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/RetrievalImportance.php +++ /dev/null @@ -1,30 +0,0 @@ -importance = $importance; - } - public function getImportance() - { - return $this->importance; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Schema.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Schema.php deleted file mode 100644 index 90cc4616..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Schema.php +++ /dev/null @@ -1,47 +0,0 @@ -objectDefinitions = $objectDefinitions; - } - /** - * @return Google_Service_CloudSearch_ObjectDefinition - */ - public function getObjectDefinitions() - { - return $this->objectDefinitions; - } - public function setOperationIds($operationIds) - { - $this->operationIds = $operationIds; - } - public function getOperationIds() - { - return $this->operationIds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ScoringConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ScoringConfig.php deleted file mode 100644 index b6448f21..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ScoringConfig.php +++ /dev/null @@ -1,39 +0,0 @@ -disableFreshness = $disableFreshness; - } - public function getDisableFreshness() - { - return $this->disableFreshness; - } - public function setDisablePersonalization($disablePersonalization) - { - $this->disablePersonalization = $disablePersonalization; - } - public function getDisablePersonalization() - { - return $this->disablePersonalization; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SearchApplication.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SearchApplication.php deleted file mode 100644 index 72e9cbaa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SearchApplication.php +++ /dev/null @@ -1,129 +0,0 @@ -dataSourceRestrictions = $dataSourceRestrictions; - } - /** - * @return Google_Service_CloudSearch_DataSourceRestriction - */ - public function getDataSourceRestrictions() - { - return $this->dataSourceRestrictions; - } - /** - * @param Google_Service_CloudSearch_FacetOptions - */ - public function setDefaultFacetOptions($defaultFacetOptions) - { - $this->defaultFacetOptions = $defaultFacetOptions; - } - /** - * @return Google_Service_CloudSearch_FacetOptions - */ - public function getDefaultFacetOptions() - { - return $this->defaultFacetOptions; - } - /** - * @param Google_Service_CloudSearch_SortOptions - */ - public function setDefaultSortOptions(Google_Service_CloudSearch_SortOptions $defaultSortOptions) - { - $this->defaultSortOptions = $defaultSortOptions; - } - /** - * @return Google_Service_CloudSearch_SortOptions - */ - public function getDefaultSortOptions() - { - return $this->defaultSortOptions; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOperationIds($operationIds) - { - $this->operationIds = $operationIds; - } - public function getOperationIds() - { - return $this->operationIds; - } - /** - * @param Google_Service_CloudSearch_ScoringConfig - */ - public function setScoringConfig(Google_Service_CloudSearch_ScoringConfig $scoringConfig) - { - $this->scoringConfig = $scoringConfig; - } - /** - * @return Google_Service_CloudSearch_ScoringConfig - */ - public function getScoringConfig() - { - return $this->scoringConfig; - } - /** - * @param Google_Service_CloudSearch_SourceConfig - */ - public function setSourceConfig($sourceConfig) - { - $this->sourceConfig = $sourceConfig; - } - /** - * @return Google_Service_CloudSearch_SourceConfig - */ - public function getSourceConfig() - { - return $this->sourceConfig; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SearchApplicationQueryStats.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SearchApplicationQueryStats.php deleted file mode 100644 index 38bbb131..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SearchApplicationQueryStats.php +++ /dev/null @@ -1,54 +0,0 @@ -date = $date; - } - /** - * @return Google_Service_CloudSearch_Date - */ - public function getDate() - { - return $this->date; - } - /** - * @param Google_Service_CloudSearch_QueryCountByStatus - */ - public function setQueryCountByStatus($queryCountByStatus) - { - $this->queryCountByStatus = $queryCountByStatus; - } - /** - * @return Google_Service_CloudSearch_QueryCountByStatus - */ - public function getQueryCountByStatus() - { - return $this->queryCountByStatus; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SearchApplicationSessionStats.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SearchApplicationSessionStats.php deleted file mode 100644 index 6d03d44c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SearchApplicationSessionStats.php +++ /dev/null @@ -1,46 +0,0 @@ -date = $date; - } - /** - * @return Google_Service_CloudSearch_Date - */ - public function getDate() - { - return $this->date; - } - public function setSearchSessionsCount($searchSessionsCount) - { - $this->searchSessionsCount = $searchSessionsCount; - } - public function getSearchSessionsCount() - { - return $this->searchSessionsCount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SearchApplicationUserStats.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SearchApplicationUserStats.php deleted file mode 100644 index 31a923e7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SearchApplicationUserStats.php +++ /dev/null @@ -1,64 +0,0 @@ -date = $date; - } - /** - * @return Google_Service_CloudSearch_Date - */ - public function getDate() - { - return $this->date; - } - public function setOneDayActiveUsersCount($oneDayActiveUsersCount) - { - $this->oneDayActiveUsersCount = $oneDayActiveUsersCount; - } - public function getOneDayActiveUsersCount() - { - return $this->oneDayActiveUsersCount; - } - public function setSevenDaysActiveUsersCount($sevenDaysActiveUsersCount) - { - $this->sevenDaysActiveUsersCount = $sevenDaysActiveUsersCount; - } - public function getSevenDaysActiveUsersCount() - { - return $this->sevenDaysActiveUsersCount; - } - public function setThirtyDaysActiveUsersCount($thirtyDaysActiveUsersCount) - { - $this->thirtyDaysActiveUsersCount = $thirtyDaysActiveUsersCount; - } - public function getThirtyDaysActiveUsersCount() - { - return $this->thirtyDaysActiveUsersCount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SearchItemsByViewUrlRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SearchItemsByViewUrlRequest.php deleted file mode 100644 index 5086abbd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SearchItemsByViewUrlRequest.php +++ /dev/null @@ -1,55 +0,0 @@ -debugOptions = $debugOptions; - } - /** - * @return Google_Service_CloudSearch_DebugOptions - */ - public function getDebugOptions() - { - return $this->debugOptions; - } - public function setPageToken($pageToken) - { - $this->pageToken = $pageToken; - } - public function getPageToken() - { - return $this->pageToken; - } - public function setViewUrl($viewUrl) - { - $this->viewUrl = $viewUrl; - } - public function getViewUrl() - { - return $this->viewUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SearchItemsByViewUrlResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SearchItemsByViewUrlResponse.php deleted file mode 100644 index 1a7d58f6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SearchItemsByViewUrlResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_CloudSearch_Item - */ - public function getItems() - { - return $this->items; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SearchQualityMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SearchQualityMetadata.php deleted file mode 100644 index bc30280a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SearchQualityMetadata.php +++ /dev/null @@ -1,30 +0,0 @@ -quality = $quality; - } - public function getQuality() - { - return $this->quality; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SearchRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SearchRequest.php deleted file mode 100644 index becc1d04..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SearchRequest.php +++ /dev/null @@ -1,129 +0,0 @@ -dataSourceRestrictions = $dataSourceRestrictions; - } - /** - * @return Google_Service_CloudSearch_DataSourceRestriction - */ - public function getDataSourceRestrictions() - { - return $this->dataSourceRestrictions; - } - /** - * @param Google_Service_CloudSearch_FacetOptions - */ - public function setFacetOptions($facetOptions) - { - $this->facetOptions = $facetOptions; - } - /** - * @return Google_Service_CloudSearch_FacetOptions - */ - public function getFacetOptions() - { - return $this->facetOptions; - } - public function setPageSize($pageSize) - { - $this->pageSize = $pageSize; - } - public function getPageSize() - { - return $this->pageSize; - } - public function setQuery($query) - { - $this->query = $query; - } - public function getQuery() - { - return $this->query; - } - /** - * @param Google_Service_CloudSearch_QueryInterpretationOptions - */ - public function setQueryInterpretationOptions(Google_Service_CloudSearch_QueryInterpretationOptions $queryInterpretationOptions) - { - $this->queryInterpretationOptions = $queryInterpretationOptions; - } - /** - * @return Google_Service_CloudSearch_QueryInterpretationOptions - */ - public function getQueryInterpretationOptions() - { - return $this->queryInterpretationOptions; - } - /** - * @param Google_Service_CloudSearch_RequestOptions - */ - public function setRequestOptions(Google_Service_CloudSearch_RequestOptions $requestOptions) - { - $this->requestOptions = $requestOptions; - } - /** - * @return Google_Service_CloudSearch_RequestOptions - */ - public function getRequestOptions() - { - return $this->requestOptions; - } - /** - * @param Google_Service_CloudSearch_SortOptions - */ - public function setSortOptions(Google_Service_CloudSearch_SortOptions $sortOptions) - { - $this->sortOptions = $sortOptions; - } - /** - * @return Google_Service_CloudSearch_SortOptions - */ - public function getSortOptions() - { - return $this->sortOptions; - } - public function setStart($start) - { - $this->start = $start; - } - public function getStart() - { - return $this->start; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SearchResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SearchResponse.php deleted file mode 100644 index 3d9864c4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SearchResponse.php +++ /dev/null @@ -1,177 +0,0 @@ -debugInfo = $debugInfo; - } - /** - * @return Google_Service_CloudSearch_ResponseDebugInfo - */ - public function getDebugInfo() - { - return $this->debugInfo; - } - /** - * @param Google_Service_CloudSearch_ErrorInfo - */ - public function setErrorInfo(Google_Service_CloudSearch_ErrorInfo $errorInfo) - { - $this->errorInfo = $errorInfo; - } - /** - * @return Google_Service_CloudSearch_ErrorInfo - */ - public function getErrorInfo() - { - return $this->errorInfo; - } - /** - * @param Google_Service_CloudSearch_FacetResult - */ - public function setFacetResults($facetResults) - { - $this->facetResults = $facetResults; - } - /** - * @return Google_Service_CloudSearch_FacetResult - */ - public function getFacetResults() - { - return $this->facetResults; - } - public function setHasMoreResults($hasMoreResults) - { - $this->hasMoreResults = $hasMoreResults; - } - public function getHasMoreResults() - { - return $this->hasMoreResults; - } - /** - * @param Google_Service_CloudSearch_QueryInterpretation - */ - public function setQueryInterpretation(Google_Service_CloudSearch_QueryInterpretation $queryInterpretation) - { - $this->queryInterpretation = $queryInterpretation; - } - /** - * @return Google_Service_CloudSearch_QueryInterpretation - */ - public function getQueryInterpretation() - { - return $this->queryInterpretation; - } - public function setResultCountEstimate($resultCountEstimate) - { - $this->resultCountEstimate = $resultCountEstimate; - } - public function getResultCountEstimate() - { - return $this->resultCountEstimate; - } - public function setResultCountExact($resultCountExact) - { - $this->resultCountExact = $resultCountExact; - } - public function getResultCountExact() - { - return $this->resultCountExact; - } - /** - * @param Google_Service_CloudSearch_ResultCounts - */ - public function setResultCounts(Google_Service_CloudSearch_ResultCounts $resultCounts) - { - $this->resultCounts = $resultCounts; - } - /** - * @return Google_Service_CloudSearch_ResultCounts - */ - public function getResultCounts() - { - return $this->resultCounts; - } - /** - * @param Google_Service_CloudSearch_SearchResult - */ - public function setResults($results) - { - $this->results = $results; - } - /** - * @return Google_Service_CloudSearch_SearchResult - */ - public function getResults() - { - return $this->results; - } - /** - * @param Google_Service_CloudSearch_SpellResult - */ - public function setSpellResults($spellResults) - { - $this->spellResults = $spellResults; - } - /** - * @return Google_Service_CloudSearch_SpellResult - */ - public function getSpellResults() - { - return $this->spellResults; - } - /** - * @param Google_Service_CloudSearch_StructuredResult - */ - public function setStructuredResults($structuredResults) - { - $this->structuredResults = $structuredResults; - } - /** - * @return Google_Service_CloudSearch_StructuredResult - */ - public function getStructuredResults() - { - return $this->structuredResults; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SearchResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SearchResult.php deleted file mode 100644 index cf217dfa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SearchResult.php +++ /dev/null @@ -1,104 +0,0 @@ -clusteredResults = $clusteredResults; - } - /** - * @return Google_Service_CloudSearch_SearchResult - */ - public function getClusteredResults() - { - return $this->clusteredResults; - } - /** - * @param Google_Service_CloudSearch_ResultDebugInfo - */ - public function setDebugInfo(Google_Service_CloudSearch_ResultDebugInfo $debugInfo) - { - $this->debugInfo = $debugInfo; - } - /** - * @return Google_Service_CloudSearch_ResultDebugInfo - */ - public function getDebugInfo() - { - return $this->debugInfo; - } - /** - * @param Google_Service_CloudSearch_Metadata - */ - public function setMetadata(Google_Service_CloudSearch_Metadata $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_CloudSearch_Metadata - */ - public function getMetadata() - { - return $this->metadata; - } - /** - * @param Google_Service_CloudSearch_Snippet - */ - public function setSnippet(Google_Service_CloudSearch_Snippet $snippet) - { - $this->snippet = $snippet; - } - /** - * @return Google_Service_CloudSearch_Snippet - */ - public function getSnippet() - { - return $this->snippet; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Snippet.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Snippet.php deleted file mode 100644 index 48eaedd3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Snippet.php +++ /dev/null @@ -1,47 +0,0 @@ -matchRanges = $matchRanges; - } - /** - * @return Google_Service_CloudSearch_MatchRange - */ - public function getMatchRanges() - { - return $this->matchRanges; - } - public function setSnippet($snippet) - { - $this->snippet = $snippet; - } - public function getSnippet() - { - return $this->snippet; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SortOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SortOptions.php deleted file mode 100644 index 1c97d826..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SortOptions.php +++ /dev/null @@ -1,39 +0,0 @@ -operatorName = $operatorName; - } - public function getOperatorName() - { - return $this->operatorName; - } - public function setSortOrder($sortOrder) - { - $this->sortOrder = $sortOrder; - } - public function getSortOrder() - { - return $this->sortOrder; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Source.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Source.php deleted file mode 100644 index a942029b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Source.php +++ /dev/null @@ -1,39 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setPredefinedSource($predefinedSource) - { - $this->predefinedSource = $predefinedSource; - } - public function getPredefinedSource() - { - return $this->predefinedSource; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SourceConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SourceConfig.php deleted file mode 100644 index c94fdd12..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SourceConfig.php +++ /dev/null @@ -1,69 +0,0 @@ -crowdingConfig = $crowdingConfig; - } - /** - * @return Google_Service_CloudSearch_SourceCrowdingConfig - */ - public function getCrowdingConfig() - { - return $this->crowdingConfig; - } - /** - * @param Google_Service_CloudSearch_SourceScoringConfig - */ - public function setScoringConfig(Google_Service_CloudSearch_SourceScoringConfig $scoringConfig) - { - $this->scoringConfig = $scoringConfig; - } - /** - * @return Google_Service_CloudSearch_SourceScoringConfig - */ - public function getScoringConfig() - { - return $this->scoringConfig; - } - /** - * @param Google_Service_CloudSearch_Source - */ - public function setSource(Google_Service_CloudSearch_Source $source) - { - $this->source = $source; - } - /** - * @return Google_Service_CloudSearch_Source - */ - public function getSource() - { - return $this->source; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SourceCrowdingConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SourceCrowdingConfig.php deleted file mode 100644 index 773074f0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SourceCrowdingConfig.php +++ /dev/null @@ -1,39 +0,0 @@ -numResults = $numResults; - } - public function getNumResults() - { - return $this->numResults; - } - public function setNumSuggestions($numSuggestions) - { - $this->numSuggestions = $numSuggestions; - } - public function getNumSuggestions() - { - return $this->numSuggestions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SourceResultCount.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SourceResultCount.php deleted file mode 100644 index 9ee33279..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SourceResultCount.php +++ /dev/null @@ -1,64 +0,0 @@ -hasMoreResults = $hasMoreResults; - } - public function getHasMoreResults() - { - return $this->hasMoreResults; - } - public function setResultCountEstimate($resultCountEstimate) - { - $this->resultCountEstimate = $resultCountEstimate; - } - public function getResultCountEstimate() - { - return $this->resultCountEstimate; - } - public function setResultCountExact($resultCountExact) - { - $this->resultCountExact = $resultCountExact; - } - public function getResultCountExact() - { - return $this->resultCountExact; - } - /** - * @param Google_Service_CloudSearch_Source - */ - public function setSource(Google_Service_CloudSearch_Source $source) - { - $this->source = $source; - } - /** - * @return Google_Service_CloudSearch_Source - */ - public function getSource() - { - return $this->source; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SourceScoringConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SourceScoringConfig.php deleted file mode 100644 index 228f8de1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SourceScoringConfig.php +++ /dev/null @@ -1,30 +0,0 @@ -sourceImportance = $sourceImportance; - } - public function getSourceImportance() - { - return $this->sourceImportance; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SpellResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SpellResult.php deleted file mode 100644 index 547e447c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SpellResult.php +++ /dev/null @@ -1,30 +0,0 @@ -suggestedQuery = $suggestedQuery; - } - public function getSuggestedQuery() - { - return $this->suggestedQuery; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/StartUploadItemRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/StartUploadItemRequest.php deleted file mode 100644 index b4b85acf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/StartUploadItemRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -connectorName = $connectorName; - } - public function getConnectorName() - { - return $this->connectorName; - } - /** - * @param Google_Service_CloudSearch_DebugOptions - */ - public function setDebugOptions(Google_Service_CloudSearch_DebugOptions $debugOptions) - { - $this->debugOptions = $debugOptions; - } - /** - * @return Google_Service_CloudSearch_DebugOptions - */ - public function getDebugOptions() - { - return $this->debugOptions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Status.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Status.php deleted file mode 100644 index 34ed26a9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Status.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/StructuredDataObject.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/StructuredDataObject.php deleted file mode 100644 index 7626df8a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/StructuredDataObject.php +++ /dev/null @@ -1,38 +0,0 @@ -properties = $properties; - } - /** - * @return Google_Service_CloudSearch_NamedProperty - */ - public function getProperties() - { - return $this->properties; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/StructuredResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/StructuredResult.php deleted file mode 100644 index 84d55ea4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/StructuredResult.php +++ /dev/null @@ -1,37 +0,0 @@ -person = $person; - } - /** - * @return Google_Service_CloudSearch_Person - */ - public function getPerson() - { - return $this->person; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SuggestRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SuggestRequest.php deleted file mode 100644 index b7385ac0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SuggestRequest.php +++ /dev/null @@ -1,63 +0,0 @@ -dataSourceRestrictions = $dataSourceRestrictions; - } - /** - * @return Google_Service_CloudSearch_DataSourceRestriction - */ - public function getDataSourceRestrictions() - { - return $this->dataSourceRestrictions; - } - public function setQuery($query) - { - $this->query = $query; - } - public function getQuery() - { - return $this->query; - } - /** - * @param Google_Service_CloudSearch_RequestOptions - */ - public function setRequestOptions(Google_Service_CloudSearch_RequestOptions $requestOptions) - { - $this->requestOptions = $requestOptions; - } - /** - * @return Google_Service_CloudSearch_RequestOptions - */ - public function getRequestOptions() - { - return $this->requestOptions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SuggestResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SuggestResponse.php deleted file mode 100644 index 1bfcee4c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SuggestResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -suggestResults = $suggestResults; - } - /** - * @return Google_Service_CloudSearch_SuggestResult - */ - public function getSuggestResults() - { - return $this->suggestResults; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SuggestResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SuggestResult.php deleted file mode 100644 index 19b1f4a2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/SuggestResult.php +++ /dev/null @@ -1,78 +0,0 @@ -peopleSuggestion = $peopleSuggestion; - } - /** - * @return Google_Service_CloudSearch_PeopleSuggestion - */ - public function getPeopleSuggestion() - { - return $this->peopleSuggestion; - } - /** - * @param Google_Service_CloudSearch_QuerySuggestion - */ - public function setQuerySuggestion(Google_Service_CloudSearch_QuerySuggestion $querySuggestion) - { - $this->querySuggestion = $querySuggestion; - } - /** - * @return Google_Service_CloudSearch_QuerySuggestion - */ - public function getQuerySuggestion() - { - return $this->querySuggestion; - } - /** - * @param Google_Service_CloudSearch_Source - */ - public function setSource(Google_Service_CloudSearch_Source $source) - { - $this->source = $source; - } - /** - * @return Google_Service_CloudSearch_Source - */ - public function getSource() - { - return $this->source; - } - public function setSuggestedQuery($suggestedQuery) - { - $this->suggestedQuery = $suggestedQuery; - } - public function getSuggestedQuery() - { - return $this->suggestedQuery; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/TextOperatorOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/TextOperatorOptions.php deleted file mode 100644 index c64f5c17..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/TextOperatorOptions.php +++ /dev/null @@ -1,39 +0,0 @@ -exactMatchWithOperator = $exactMatchWithOperator; - } - public function getExactMatchWithOperator() - { - return $this->exactMatchWithOperator; - } - public function setOperatorName($operatorName) - { - $this->operatorName = $operatorName; - } - public function getOperatorName() - { - return $this->operatorName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/TextPropertyOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/TextPropertyOptions.php deleted file mode 100644 index c2c017c5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/TextPropertyOptions.php +++ /dev/null @@ -1,53 +0,0 @@ -operatorOptions = $operatorOptions; - } - /** - * @return Google_Service_CloudSearch_TextOperatorOptions - */ - public function getOperatorOptions() - { - return $this->operatorOptions; - } - /** - * @param Google_Service_CloudSearch_RetrievalImportance - */ - public function setRetrievalImportance(Google_Service_CloudSearch_RetrievalImportance $retrievalImportance) - { - $this->retrievalImportance = $retrievalImportance; - } - /** - * @return Google_Service_CloudSearch_RetrievalImportance - */ - public function getRetrievalImportance() - { - return $this->retrievalImportance; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/TextValues.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/TextValues.php deleted file mode 100644 index 78f3523d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/TextValues.php +++ /dev/null @@ -1,31 +0,0 @@ -values = $values; - } - public function getValues() - { - return $this->values; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/TimestampOperatorOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/TimestampOperatorOptions.php deleted file mode 100644 index 9cccec75..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/TimestampOperatorOptions.php +++ /dev/null @@ -1,48 +0,0 @@ -greaterThanOperatorName = $greaterThanOperatorName; - } - public function getGreaterThanOperatorName() - { - return $this->greaterThanOperatorName; - } - public function setLessThanOperatorName($lessThanOperatorName) - { - $this->lessThanOperatorName = $lessThanOperatorName; - } - public function getLessThanOperatorName() - { - return $this->lessThanOperatorName; - } - public function setOperatorName($operatorName) - { - $this->operatorName = $operatorName; - } - public function getOperatorName() - { - return $this->operatorName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/TimestampPropertyOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/TimestampPropertyOptions.php deleted file mode 100644 index ecc82d8d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/TimestampPropertyOptions.php +++ /dev/null @@ -1,37 +0,0 @@ -operatorOptions = $operatorOptions; - } - /** - * @return Google_Service_CloudSearch_TimestampOperatorOptions - */ - public function getOperatorOptions() - { - return $this->operatorOptions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/TimestampValues.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/TimestampValues.php deleted file mode 100644 index 633755d6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/TimestampValues.php +++ /dev/null @@ -1,31 +0,0 @@ -values = $values; - } - public function getValues() - { - return $this->values; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/UnmappedIdentity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/UnmappedIdentity.php deleted file mode 100644 index db82ba99..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/UnmappedIdentity.php +++ /dev/null @@ -1,46 +0,0 @@ -externalIdentity = $externalIdentity; - } - /** - * @return Google_Service_CloudSearch_Principal - */ - public function getExternalIdentity() - { - return $this->externalIdentity; - } - public function setResolutionStatusCode($resolutionStatusCode) - { - $this->resolutionStatusCode = $resolutionStatusCode; - } - public function getResolutionStatusCode() - { - return $this->resolutionStatusCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/UnreserveItemsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/UnreserveItemsRequest.php deleted file mode 100644 index 295349ee..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/UnreserveItemsRequest.php +++ /dev/null @@ -1,55 +0,0 @@ -connectorName = $connectorName; - } - public function getConnectorName() - { - return $this->connectorName; - } - /** - * @param Google_Service_CloudSearch_DebugOptions - */ - public function setDebugOptions(Google_Service_CloudSearch_DebugOptions $debugOptions) - { - $this->debugOptions = $debugOptions; - } - /** - * @return Google_Service_CloudSearch_DebugOptions - */ - public function getDebugOptions() - { - return $this->debugOptions; - } - public function setQueue($queue) - { - $this->queue = $queue; - } - public function getQueue() - { - return $this->queue; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/UpdateDataSourceRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/UpdateDataSourceRequest.php deleted file mode 100644 index a5e83590..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/UpdateDataSourceRequest.php +++ /dev/null @@ -1,53 +0,0 @@ -debugOptions = $debugOptions; - } - /** - * @return Google_Service_CloudSearch_DebugOptions - */ - public function getDebugOptions() - { - return $this->debugOptions; - } - /** - * @param Google_Service_CloudSearch_DataSource - */ - public function setSource(Google_Service_CloudSearch_DataSource $source) - { - $this->source = $source; - } - /** - * @return Google_Service_CloudSearch_DataSource - */ - public function getSource() - { - return $this->source; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/UpdateSchemaRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/UpdateSchemaRequest.php deleted file mode 100644 index 6bdb32f4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/UpdateSchemaRequest.php +++ /dev/null @@ -1,62 +0,0 @@ -debugOptions = $debugOptions; - } - /** - * @return Google_Service_CloudSearch_DebugOptions - */ - public function getDebugOptions() - { - return $this->debugOptions; - } - /** - * @param Google_Service_CloudSearch_Schema - */ - public function setSchema(Google_Service_CloudSearch_Schema $schema) - { - $this->schema = $schema; - } - /** - * @return Google_Service_CloudSearch_Schema - */ - public function getSchema() - { - return $this->schema; - } - public function setValidateOnly($validateOnly) - { - $this->validateOnly = $validateOnly; - } - public function getValidateOnly() - { - return $this->validateOnly; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/UploadItemRef.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/UploadItemRef.php deleted file mode 100644 index 17092055..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/UploadItemRef.php +++ /dev/null @@ -1,30 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Value.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Value.php deleted file mode 100644 index fe3dcb32..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/Value.php +++ /dev/null @@ -1,82 +0,0 @@ -booleanValue = $booleanValue; - } - public function getBooleanValue() - { - return $this->booleanValue; - } - /** - * @param Google_Service_CloudSearch_Date - */ - public function setDateValue(Google_Service_CloudSearch_Date $dateValue) - { - $this->dateValue = $dateValue; - } - /** - * @return Google_Service_CloudSearch_Date - */ - public function getDateValue() - { - return $this->dateValue; - } - public function setDoubleValue($doubleValue) - { - $this->doubleValue = $doubleValue; - } - public function getDoubleValue() - { - return $this->doubleValue; - } - public function setIntegerValue($integerValue) - { - $this->integerValue = $integerValue; - } - public function getIntegerValue() - { - return $this->integerValue; - } - public function setStringValue($stringValue) - { - $this->stringValue = $stringValue; - } - public function getStringValue() - { - return $this->stringValue; - } - public function setTimestampValue($timestampValue) - { - $this->timestampValue = $timestampValue; - } - public function getTimestampValue() - { - return $this->timestampValue; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ValueFilter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ValueFilter.php deleted file mode 100644 index 44f01253..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSearch/ValueFilter.php +++ /dev/null @@ -1,46 +0,0 @@ -operatorName = $operatorName; - } - public function getOperatorName() - { - return $this->operatorName; - } - /** - * @param Google_Service_CloudSearch_Value - */ - public function setValue(Google_Service_CloudSearch_Value $value) - { - $this->value = $value; - } - /** - * @return Google_Service_CloudSearch_Value - */ - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudShell.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudShell.php deleted file mode 100644 index 117dc614..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudShell.php +++ /dev/null @@ -1,118 +0,0 @@ - - * Allows users to start, configure, and connect to interactive shell sessions - * running in the cloud.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_CloudShell extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - - public $operations; - - /** - * Constructs the internal representation of the CloudShell service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://cloudshell.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'cloudshell'; - - $this->operations = new Google_Service_CloudShell_Resource_Operations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'cancel' => array( - 'path' => 'v1/{+name}:cancel', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudShell/CancelOperationRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudShell/CancelOperationRequest.php deleted file mode 100644 index ffa2b630..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudShell/CancelOperationRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -dockerImage = $dockerImage; - } - public function getDockerImage() - { - return $this->dockerImage; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_CloudShell_PublicKey - */ - public function setPublicKeys($publicKeys) - { - $this->publicKeys = $publicKeys; - } - /** - * @return Google_Service_CloudShell_PublicKey - */ - public function getPublicKeys() - { - return $this->publicKeys; - } - public function setSize($size) - { - $this->size = $size; - } - public function getSize() - { - return $this->size; - } - public function setSshHost($sshHost) - { - $this->sshHost = $sshHost; - } - public function getSshHost() - { - return $this->sshHost; - } - public function setSshPort($sshPort) - { - $this->sshPort = $sshPort; - } - public function getSshPort() - { - return $this->sshPort; - } - public function setSshUsername($sshUsername) - { - $this->sshUsername = $sshUsername; - } - public function getSshUsername() - { - return $this->sshUsername; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setVmSizeExpireTime($vmSizeExpireTime) - { - $this->vmSizeExpireTime = $vmSizeExpireTime; - } - public function getVmSizeExpireTime() - { - return $this->vmSizeExpireTime; - } - public function setWebHost($webHost) - { - $this->webHost = $webHost; - } - public function getWebHost() - { - return $this->webHost; - } - public function setWebPorts($webPorts) - { - $this->webPorts = $webPorts; - } - public function getWebPorts() - { - return $this->webPorts; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudShell/ListOperationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudShell/ListOperationsResponse.php deleted file mode 100644 index 3e0e7522..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudShell/ListOperationsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_CloudShell_Operation - */ - public function setOperations($operations) - { - $this->operations = $operations; - } - /** - * @return Google_Service_CloudShell_Operation - */ - public function getOperations() - { - return $this->operations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudShell/Operation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudShell/Operation.php deleted file mode 100644 index 5de91cae..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudShell/Operation.php +++ /dev/null @@ -1,73 +0,0 @@ -done = $done; - } - public function getDone() - { - return $this->done; - } - /** - * @param Google_Service_CloudShell_Status - */ - public function setError(Google_Service_CloudShell_Status $error) - { - $this->error = $error; - } - /** - * @return Google_Service_CloudShell_Status - */ - public function getError() - { - return $this->error; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudShell/PublicKey.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudShell/PublicKey.php deleted file mode 100644 index 550d4281..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudShell/PublicKey.php +++ /dev/null @@ -1,48 +0,0 @@ -format = $format; - } - public function getFormat() - { - return $this->format; - } - public function setKey($key) - { - $this->key = $key; - } - public function getKey() - { - return $this->key; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudShell/Resource/Operations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudShell/Resource/Operations.php deleted file mode 100644 index 12f0b098..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudShell/Resource/Operations.php +++ /dev/null @@ -1,107 +0,0 @@ - - * $cloudshellService = new Google_Service_CloudShell(...); - * $operations = $cloudshellService->operations; - * - */ -class Google_Service_CloudShell_Resource_Operations extends Google_Service_Resource -{ - /** - * Starts asynchronous cancellation on a long-running operation. The server - * makes a best effort to cancel the operation, but success is not guaranteed. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or - * other methods to check whether the cancellation succeeded or whether the - * operation completed despite cancellation. On successful cancellation, the - * operation is not deleted; instead, it becomes an operation with an - * Operation.error value with a google.rpc.Status.code of 1, corresponding to - * `Code.CANCELLED`. (operations.cancel) - * - * @param string $name The name of the operation resource to be cancelled. - * @param Google_Service_CloudShell_CancelOperationRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudShell_CloudshellEmpty - */ - public function cancel($name, Google_Service_CloudShell_CancelOperationRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('cancel', array($params), "Google_Service_CloudShell_CloudshellEmpty"); - } - /** - * Deletes a long-running operation. This method indicates that the client is no - * longer interested in the operation result. It does not cancel the operation. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. (operations.delete) - * - * @param string $name The name of the operation resource to be deleted. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudShell_CloudshellEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudShell_CloudshellEmpty"); - } - /** - * Gets the latest state of a long-running operation. Clients can use this - * method to poll the operation result at intervals as recommended by the API - * service. (operations.get) - * - * @param string $name The name of the operation resource. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudShell_Operation - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudShell_Operation"); - } - /** - * Lists operations that match the specified filter in the request. If the - * server doesn't support this method, it returns `UNIMPLEMENTED`. - * - * NOTE: the `name` binding allows API services to override the binding to use - * different resource name schemes, such as `users/operations`. To override the - * binding, API services can add a binding such as - * `"/v1/{name=users}/operations"` to their service configuration. For backwards - * compatibility, the default name includes the operations collection id, - * however overriding users must ensure the name binding is the parent resource, - * without the operations collection id. (operations.listOperations) - * - * @param string $name The name of the operation's parent resource. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The standard list page token. - * @opt_param int pageSize The standard list page size. - * @opt_param string filter The standard list filter. - * @return Google_Service_CloudShell_ListOperationsResponse - */ - public function listOperations($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudShell_ListOperationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudShell/StartEnvironmentMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudShell/StartEnvironmentMetadata.php deleted file mode 100644 index 43d28db5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudShell/StartEnvironmentMetadata.php +++ /dev/null @@ -1,30 +0,0 @@ -state = $state; - } - public function getState() - { - return $this->state; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudShell/StartEnvironmentResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudShell/StartEnvironmentResponse.php deleted file mode 100644 index cca4057a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudShell/StartEnvironmentResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -environment = $environment; - } - /** - * @return Google_Service_CloudShell_Environment - */ - public function getEnvironment() - { - return $this->environment; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudShell/Status.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudShell/Status.php deleted file mode 100644 index 744e8d00..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudShell/Status.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories.php deleted file mode 100644 index cbe98b7c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories.php +++ /dev/null @@ -1,208 +0,0 @@ - - * Accesses source code repositories hosted by Google.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_CloudSourceRepositories extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** Manage your source code repositories. */ - const SOURCE_FULL_CONTROL = - "https://www.googleapis.com/auth/source.full_control"; - /** View the contents of your source code repositories. */ - const SOURCE_READ_ONLY = - "https://www.googleapis.com/auth/source.read_only"; - /** Manage the contents of your source code repositories. */ - const SOURCE_READ_WRITE = - "https://www.googleapis.com/auth/source.read_write"; - - public $projects; - public $projects_repos; - - /** - * Constructs the internal representation of the CloudSourceRepositories - * service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://sourcerepo.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'sourcerepo'; - - $this->projects = new Google_Service_CloudSourceRepositories_Resource_Projects( - $this, - $this->serviceName, - 'projects', - array( - 'methods' => array( - 'getConfig' => array( - 'path' => 'v1/{+name}/config', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'updateConfig' => array( - 'path' => 'v1/{+name}/config', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_repos = new Google_Service_CloudSourceRepositories_Resource_ProjectsRepos( - $this, - $this->serviceName, - 'repos', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/repos', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getIamPolicy' => array( - 'path' => 'v1/{+resource}:getIamPolicy', - 'httpMethod' => 'GET', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'options.requestedPolicyVersion' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'list' => array( - 'path' => 'v1/{+name}/repos', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setIamPolicy' => array( - 'path' => 'v1/{+resource}:setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'sync' => array( - 'path' => 'v1/{+name}:sync', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => 'v1/{+resource}:testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/AuditConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/AuditConfig.php deleted file mode 100644 index d3617593..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/AuditConfig.php +++ /dev/null @@ -1,47 +0,0 @@ -auditLogConfigs = $auditLogConfigs; - } - /** - * @return Google_Service_CloudSourceRepositories_AuditLogConfig - */ - public function getAuditLogConfigs() - { - return $this->auditLogConfigs; - } - public function setService($service) - { - $this->service = $service; - } - public function getService() - { - return $this->service; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/AuditLogConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/AuditLogConfig.php deleted file mode 100644 index 7506d5fc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/AuditLogConfig.php +++ /dev/null @@ -1,40 +0,0 @@ -exemptedMembers = $exemptedMembers; - } - public function getExemptedMembers() - { - return $this->exemptedMembers; - } - public function setLogType($logType) - { - $this->logType = $logType; - } - public function getLogType() - { - return $this->logType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/Binding.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/Binding.php deleted file mode 100644 index d0b3ce30..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/Binding.php +++ /dev/null @@ -1,56 +0,0 @@ -condition = $condition; - } - /** - * @return Google_Service_CloudSourceRepositories_Expr - */ - public function getCondition() - { - return $this->condition; - } - public function setMembers($members) - { - $this->members = $members; - } - public function getMembers() - { - return $this->members; - } - public function setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/Expr.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/Expr.php deleted file mode 100644 index 3ce2627a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/Expr.php +++ /dev/null @@ -1,57 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setExpression($expression) - { - $this->expression = $expression; - } - public function getExpression() - { - return $this->expression; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/ListReposResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/ListReposResponse.php deleted file mode 100644 index 5c9257be..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/ListReposResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_CloudSourceRepositories_Repo - */ - public function setRepos($repos) - { - $this->repos = $repos; - } - /** - * @return Google_Service_CloudSourceRepositories_Repo - */ - public function getRepos() - { - return $this->repos; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/MirrorConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/MirrorConfig.php deleted file mode 100644 index 6d2fd260..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/MirrorConfig.php +++ /dev/null @@ -1,48 +0,0 @@ -deployKeyId = $deployKeyId; - } - public function getDeployKeyId() - { - return $this->deployKeyId; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } - public function setWebhookId($webhookId) - { - $this->webhookId = $webhookId; - } - public function getWebhookId() - { - return $this->webhookId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/Operation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/Operation.php deleted file mode 100644 index 4d150699..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/Operation.php +++ /dev/null @@ -1,73 +0,0 @@ -done = $done; - } - public function getDone() - { - return $this->done; - } - /** - * @param Google_Service_CloudSourceRepositories_Status - */ - public function setError(Google_Service_CloudSourceRepositories_Status $error) - { - $this->error = $error; - } - /** - * @return Google_Service_CloudSourceRepositories_Status - */ - public function getError() - { - return $this->error; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/Policy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/Policy.php deleted file mode 100644 index 0de6b0a6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/Policy.php +++ /dev/null @@ -1,72 +0,0 @@ -auditConfigs = $auditConfigs; - } - /** - * @return Google_Service_CloudSourceRepositories_AuditConfig - */ - public function getAuditConfigs() - { - return $this->auditConfigs; - } - /** - * @param Google_Service_CloudSourceRepositories_Binding - */ - public function setBindings($bindings) - { - $this->bindings = $bindings; - } - /** - * @return Google_Service_CloudSourceRepositories_Binding - */ - public function getBindings() - { - return $this->bindings; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/ProjectConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/ProjectConfig.php deleted file mode 100644 index 5f5b2921..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/ProjectConfig.php +++ /dev/null @@ -1,55 +0,0 @@ -enablePrivateKeyCheck = $enablePrivateKeyCheck; - } - public function getEnablePrivateKeyCheck() - { - return $this->enablePrivateKeyCheck; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_CloudSourceRepositories_PubsubConfig - */ - public function setPubsubConfigs($pubsubConfigs) - { - $this->pubsubConfigs = $pubsubConfigs; - } - /** - * @return Google_Service_CloudSourceRepositories_PubsubConfig - */ - public function getPubsubConfigs() - { - return $this->pubsubConfigs; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/PubsubConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/PubsubConfig.php deleted file mode 100644 index 2c372e42..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/PubsubConfig.php +++ /dev/null @@ -1,48 +0,0 @@ -messageFormat = $messageFormat; - } - public function getMessageFormat() - { - return $this->messageFormat; - } - public function setServiceAccountEmail($serviceAccountEmail) - { - $this->serviceAccountEmail = $serviceAccountEmail; - } - public function getServiceAccountEmail() - { - return $this->serviceAccountEmail; - } - public function setTopic($topic) - { - $this->topic = $topic; - } - public function getTopic() - { - return $this->topic; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/Repo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/Repo.php deleted file mode 100644 index 82142167..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/Repo.php +++ /dev/null @@ -1,80 +0,0 @@ -mirrorConfig = $mirrorConfig; - } - /** - * @return Google_Service_CloudSourceRepositories_MirrorConfig - */ - public function getMirrorConfig() - { - return $this->mirrorConfig; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_CloudSourceRepositories_PubsubConfig - */ - public function setPubsubConfigs($pubsubConfigs) - { - $this->pubsubConfigs = $pubsubConfigs; - } - /** - * @return Google_Service_CloudSourceRepositories_PubsubConfig - */ - public function getPubsubConfigs() - { - return $this->pubsubConfigs; - } - public function setSize($size) - { - $this->size = $size; - } - public function getSize() - { - return $this->size; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/Resource/Projects.php deleted file mode 100644 index 56a0733b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/Resource/Projects.php +++ /dev/null @@ -1,59 +0,0 @@ - - * $sourcerepoService = new Google_Service_CloudSourceRepositories(...); - * $projects = $sourcerepoService->projects; - * - */ -class Google_Service_CloudSourceRepositories_Resource_Projects extends Google_Service_Resource -{ - /** - * Returns the Cloud Source Repositories configuration of the project. - * (projects.getConfig) - * - * @param string $name The name of the requested project. Values are of the form - * `projects/`. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudSourceRepositories_ProjectConfig - */ - public function getConfig($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('getConfig', array($params), "Google_Service_CloudSourceRepositories_ProjectConfig"); - } - /** - * Updates the Cloud Source Repositories configuration of the project. - * (projects.updateConfig) - * - * @param string $name The name of the requested project. Values are of the form - * `projects/`. - * @param Google_Service_CloudSourceRepositories_UpdateProjectConfigRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudSourceRepositories_ProjectConfig - */ - public function updateConfig($name, Google_Service_CloudSourceRepositories_UpdateProjectConfigRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updateConfig', array($params), "Google_Service_CloudSourceRepositories_ProjectConfig"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/Resource/ProjectsRepos.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/Resource/ProjectsRepos.php deleted file mode 100644 index 76b13dd2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/Resource/ProjectsRepos.php +++ /dev/null @@ -1,189 +0,0 @@ - - * $sourcerepoService = new Google_Service_CloudSourceRepositories(...); - * $repos = $sourcerepoService->repos; - * - */ -class Google_Service_CloudSourceRepositories_Resource_ProjectsRepos extends Google_Service_Resource -{ - /** - * Creates a repo in the given project with the given name. - * - * If the named repository already exists, `CreateRepo` returns - * `ALREADY_EXISTS`. (repos.create) - * - * @param string $parent The project in which to create the repo. Values are of - * the form `projects/`. - * @param Google_Service_CloudSourceRepositories_Repo $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudSourceRepositories_Repo - */ - public function create($parent, Google_Service_CloudSourceRepositories_Repo $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_CloudSourceRepositories_Repo"); - } - /** - * Deletes a repo. (repos.delete) - * - * @param string $name The name of the repo to delete. Values are of the form - * `projects//repos/`. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudSourceRepositories_SourcerepoEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudSourceRepositories_SourcerepoEmpty"); - } - /** - * Returns information about a repo. (repos.get) - * - * @param string $name The name of the requested repository. Values are of the - * form `projects//repos/`. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudSourceRepositories_Repo - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudSourceRepositories_Repo"); - } - /** - * Gets the access control policy for a resource. Returns an empty policy if the - * resource exists and does not have a policy set. (repos.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. - * @return Google_Service_CloudSourceRepositories_Policy - */ - public function getIamPolicy($resource, $optParams = array()) - { - $params = array('resource' => $resource); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_CloudSourceRepositories_Policy"); - } - /** - * Returns all repos belonging to a project. The sizes of the repos are not set - * by ListRepos. To get the size of a repo, use GetRepo. - * (repos.listProjectsRepos) - * - * @param string $name The project ID whose repos should be listed. Values are - * of the form `projects/`. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Resume listing repositories where a prior - * ListReposResponse left off. This is an opaque token that must be obtained - * from a recent, prior ListReposResponse's next_page_token field. - * @opt_param int pageSize Maximum number of repositories to return; between 1 - * and 500. If not set or zero, defaults to 100 at the server. - * @return Google_Service_CloudSourceRepositories_ListReposResponse - */ - public function listProjectsRepos($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudSourceRepositories_ListReposResponse"); - } - /** - * Updates information about a repo. (repos.patch) - * - * @param string $name The name of the requested repository. Values are of the - * form `projects//repos/`. - * @param Google_Service_CloudSourceRepositories_UpdateRepoRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudSourceRepositories_Repo - */ - public function patch($name, Google_Service_CloudSourceRepositories_UpdateRepoRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_CloudSourceRepositories_Repo"); - } - /** - * Sets the access control policy on the specified resource. Replaces any - * existing policy. (repos.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_CloudSourceRepositories_SetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudSourceRepositories_Policy - */ - public function setIamPolicy($resource, Google_Service_CloudSourceRepositories_SetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_CloudSourceRepositories_Policy"); - } - /** - * Synchronize a connected repo. - * - * The response contains SyncRepoMetadata in the metadata field. (repos.sync) - * - * @param string $name The name of the repo to synchronize. Values are of the - * form `projects//repos/`. - * @param Google_Service_CloudSourceRepositories_SyncRepoRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudSourceRepositories_Operation - */ - public function sync($name, Google_Service_CloudSourceRepositories_SyncRepoRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('sync', array($params), "Google_Service_CloudSourceRepositories_Operation"); - } - /** - * 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. (repos.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_CloudSourceRepositories_TestIamPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudSourceRepositories_TestIamPermissionsResponse - */ - public function testIamPermissions($resource, Google_Service_CloudSourceRepositories_TestIamPermissionsRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_CloudSourceRepositories_TestIamPermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/SetIamPolicyRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/SetIamPolicyRequest.php deleted file mode 100644 index 0014ead6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/SetIamPolicyRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -policy = $policy; - } - /** - * @return Google_Service_CloudSourceRepositories_Policy - */ - public function getPolicy() - { - return $this->policy; - } - public function setUpdateMask($updateMask) - { - $this->updateMask = $updateMask; - } - public function getUpdateMask() - { - return $this->updateMask; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/SourcerepoEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/SourcerepoEmpty.php deleted file mode 100644 index beba1b08..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/SourcerepoEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/SyncRepoMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/SyncRepoMetadata.php deleted file mode 100644 index db3bbe95..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/SyncRepoMetadata.php +++ /dev/null @@ -1,57 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } - public function setStatusMessage($statusMessage) - { - $this->statusMessage = $statusMessage; - } - public function getStatusMessage() - { - return $this->statusMessage; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/SyncRepoRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/SyncRepoRequest.php deleted file mode 100644 index e3c93bc1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/SyncRepoRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/TestIamPermissionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/TestIamPermissionsResponse.php deleted file mode 100644 index 5644b14f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/TestIamPermissionsResponse.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/UpdateProjectConfigRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/UpdateProjectConfigRequest.php deleted file mode 100644 index cded5ef2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/UpdateProjectConfigRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -projectConfig = $projectConfig; - } - /** - * @return Google_Service_CloudSourceRepositories_ProjectConfig - */ - public function getProjectConfig() - { - return $this->projectConfig; - } - public function setUpdateMask($updateMask) - { - $this->updateMask = $updateMask; - } - public function getUpdateMask() - { - return $this->updateMask; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/UpdateRepoRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/UpdateRepoRequest.php deleted file mode 100644 index b77ef986..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSourceRepositories/UpdateRepoRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -repo = $repo; - } - /** - * @return Google_Service_CloudSourceRepositories_Repo - */ - public function getRepo() - { - return $this->repo; - } - public function setUpdateMask($updateMask) - { - $this->updateMask = $updateMask; - } - public function getUpdateMask() - { - return $this->updateMask; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSpeechAPI.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSpeechAPI.php deleted file mode 100644 index a1c64d1c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSpeechAPI.php +++ /dev/null @@ -1,133 +0,0 @@ - - * Google Cloud Speech API.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_CloudSpeechAPI extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - - public $operations; - public $speech; - - /** - * Constructs the internal representation of the CloudSpeechAPI service. - * - * @param Google_Client $client - */ - public function __construct(Google_Client $client) - { - parent::__construct($client); - $this->rootUrl = 'https://speech.googleapis.com/'; - $this->servicePath = ''; - $this->version = 'v1beta1'; - $this->serviceName = 'speech'; - - $this->operations = new Google_Service_CloudSpeechAPI_Resource_Operations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'cancel' => array( - 'path' => 'v1beta1/operations/{+name}:cancel', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1beta1/operations/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1beta1/operations/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1beta1/operations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'name' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->speech = new Google_Service_CloudSpeechAPI_Resource_Speech( - $this, - $this->serviceName, - 'speech', - array( - 'methods' => array( - 'asyncrecognize' => array( - 'path' => 'v1beta1/speech:asyncrecognize', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'syncrecognize' => array( - 'path' => 'v1beta1/speech:syncrecognize', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSpeechAPI/AsyncRecognizeRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSpeechAPI/AsyncRecognizeRequest.php deleted file mode 100644 index d5df511a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSpeechAPI/AsyncRecognizeRequest.php +++ /dev/null @@ -1,41 +0,0 @@ -audio = $audio; - } - public function getAudio() - { - return $this->audio; - } - public function setConfig(Google_Service_CloudSpeechAPI_RecognitionConfig $config) - { - $this->config = $config; - } - public function getConfig() - { - return $this->config; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSpeechAPI/CancelOperationRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSpeechAPI/CancelOperationRequest.php deleted file mode 100644 index 6b66258b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSpeechAPI/CancelOperationRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setOperations($operations) - { - $this->operations = $operations; - } - public function getOperations() - { - return $this->operations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSpeechAPI/Operation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSpeechAPI/Operation.php deleted file mode 100644 index 93d90ac7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSpeechAPI/Operation.php +++ /dev/null @@ -1,67 +0,0 @@ -done = $done; - } - public function getDone() - { - return $this->done; - } - public function setError(Google_Service_CloudSpeechAPI_Status $error) - { - $this->error = $error; - } - public function getError() - { - return $this->error; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSpeechAPI/RecognitionAudio.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSpeechAPI/RecognitionAudio.php deleted file mode 100644 index 92355b67..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSpeechAPI/RecognitionAudio.php +++ /dev/null @@ -1,39 +0,0 @@ -content = $content; - } - public function getContent() - { - return $this->content; - } - public function setUri($uri) - { - $this->uri = $uri; - } - public function getUri() - { - return $this->uri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSpeechAPI/RecognitionConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSpeechAPI/RecognitionConfig.php deleted file mode 100644 index 45580ae1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSpeechAPI/RecognitionConfig.php +++ /dev/null @@ -1,76 +0,0 @@ -encoding = $encoding; - } - public function getEncoding() - { - return $this->encoding; - } - public function setLanguageCode($languageCode) - { - $this->languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } - public function setMaxAlternatives($maxAlternatives) - { - $this->maxAlternatives = $maxAlternatives; - } - public function getMaxAlternatives() - { - return $this->maxAlternatives; - } - public function setProfanityFilter($profanityFilter) - { - $this->profanityFilter = $profanityFilter; - } - public function getProfanityFilter() - { - return $this->profanityFilter; - } - public function setSampleRate($sampleRate) - { - $this->sampleRate = $sampleRate; - } - public function getSampleRate() - { - return $this->sampleRate; - } - public function setSpeechContext(Google_Service_CloudSpeechAPI_SpeechContext $speechContext) - { - $this->speechContext = $speechContext; - } - public function getSpeechContext() - { - return $this->speechContext; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSpeechAPI/Resource/Operations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSpeechAPI/Resource/Operations.php deleted file mode 100644 index 7e96ff67..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSpeechAPI/Resource/Operations.php +++ /dev/null @@ -1,100 +0,0 @@ - - * $speechService = new Google_Service_CloudSpeechAPI(...); - * $operations = $speechService->operations; - * - */ -class Google_Service_CloudSpeechAPI_Resource_Operations extends Google_Service_Resource -{ - /** - * Starts asynchronous cancellation on a long-running operation. The server - * makes a best effort to cancel the operation, but success is not guaranteed. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or - * other methods to check whether the cancellation succeeded or whether the - * operation completed despite cancellation. (operations.cancel) - * - * @param string $name The name of the operation resource to be cancelled. - * @param Google_Service_CloudSpeechAPI_CancelOperationRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudSpeechAPI_SpeechEmpty - */ - public function cancel($name, Google_Service_CloudSpeechAPI_CancelOperationRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('cancel', array($params), "Google_Service_CloudSpeechAPI_SpeechEmpty"); - } - /** - * Deletes a long-running operation. This method indicates that the client is no - * longer interested in the operation result. It does not cancel the operation. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. (operations.delete) - * - * @param string $name The name of the operation resource to be deleted. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudSpeechAPI_SpeechEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudSpeechAPI_SpeechEmpty"); - } - /** - * Gets the latest state of a long-running operation. Clients can use this - * method to poll the operation result at intervals as recommended by the API - * service. (operations.get) - * - * @param string $name The name of the operation resource. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudSpeechAPI_Operation - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudSpeechAPI_Operation"); - } - /** - * Lists operations that match the specified filter in the request. If the - * server doesn't support this method, it returns `UNIMPLEMENTED`. - * - * NOTE: the `name` binding below allows API services to override the binding to - * use different resource name schemes, such as `users/operations`. - * (operations.listOperations) - * - * @param array $optParams Optional parameters. - * - * @opt_param int pageSize The standard list page size. - * @opt_param string filter The standard list filter. - * @opt_param string name The name of the operation collection. - * @opt_param string pageToken The standard list page token. - * @return Google_Service_CloudSpeechAPI_ListOperationsResponse - */ - public function listOperations($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudSpeechAPI_ListOperationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSpeechAPI/Resource/Speech.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSpeechAPI/Resource/Speech.php deleted file mode 100644 index c672b45d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSpeechAPI/Resource/Speech.php +++ /dev/null @@ -1,58 +0,0 @@ - - * $speechService = new Google_Service_CloudSpeechAPI(...); - * $speech = $speechService->speech; - * - */ -class Google_Service_CloudSpeechAPI_Resource_Speech extends Google_Service_Resource -{ - /** - * Perform asynchronous speech-recognition: receive results via the - * google.longrunning.Operations interface. Returns either an `Operation.error` - * or an `Operation.response` which contains an `AsyncRecognizeResponse` - * message. (speech.asyncrecognize) - * - * @param Google_Service_CloudSpeechAPI_AsyncRecognizeRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudSpeechAPI_Operation - */ - public function asyncrecognize(Google_Service_CloudSpeechAPI_AsyncRecognizeRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('asyncrecognize', array($params), "Google_Service_CloudSpeechAPI_Operation"); - } - /** - * Perform synchronous speech-recognition: receive results after all audio has - * been sent and processed. (speech.syncrecognize) - * - * @param Google_Service_CloudSpeechAPI_SyncRecognizeRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudSpeechAPI_SyncRecognizeResponse - */ - public function syncrecognize(Google_Service_CloudSpeechAPI_SyncRecognizeRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('syncrecognize', array($params), "Google_Service_CloudSpeechAPI_SyncRecognizeResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSpeechAPI/SpeechContext.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSpeechAPI/SpeechContext.php deleted file mode 100644 index 41f67648..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSpeechAPI/SpeechContext.php +++ /dev/null @@ -1,31 +0,0 @@ -phrases = $phrases; - } - public function getPhrases() - { - return $this->phrases; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSpeechAPI/SpeechEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSpeechAPI/SpeechEmpty.php deleted file mode 100644 index 3f1a1d6a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSpeechAPI/SpeechEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - public function setTranscript($transcript) - { - $this->transcript = $transcript; - } - public function getTranscript() - { - return $this->transcript; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSpeechAPI/SpeechRecognitionResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSpeechAPI/SpeechRecognitionResult.php deleted file mode 100644 index 0049544c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSpeechAPI/SpeechRecognitionResult.php +++ /dev/null @@ -1,32 +0,0 @@ -alternatives = $alternatives; - } - public function getAlternatives() - { - return $this->alternatives; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSpeechAPI/Status.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSpeechAPI/Status.php deleted file mode 100644 index 52164291..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSpeechAPI/Status.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSpeechAPI/SyncRecognizeRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSpeechAPI/SyncRecognizeRequest.php deleted file mode 100644 index d7c39230..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSpeechAPI/SyncRecognizeRequest.php +++ /dev/null @@ -1,41 +0,0 @@ -audio = $audio; - } - public function getAudio() - { - return $this->audio; - } - public function setConfig(Google_Service_CloudSpeechAPI_RecognitionConfig $config) - { - $this->config = $config; - } - public function getConfig() - { - return $this->config; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSpeechAPI/SyncRecognizeResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSpeechAPI/SyncRecognizeResponse.php deleted file mode 100644 index 1bc29e90..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudSpeechAPI/SyncRecognizeResponse.php +++ /dev/null @@ -1,32 +0,0 @@ -results = $results; - } - public function getResults() - { - return $this->results; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution.php deleted file mode 100644 index 195ceb98..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution.php +++ /dev/null @@ -1,309 +0,0 @@ - - * Cloud Talent Solution provides the capability to create, read, update, and - * delete job postings, as well as search jobs based on keywords and filters.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_CloudTalentSolution extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** Manage job postings. */ - const JOBS = - "https://www.googleapis.com/auth/jobs"; - - public $projects; - public $projects_clientEvents; - public $projects_companies; - public $projects_jobs; - - /** - * Constructs the internal representation of the CloudTalentSolution service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://jobs.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v3'; - $this->serviceName = 'jobs'; - - $this->projects = new Google_Service_CloudTalentSolution_Resource_Projects( - $this, - $this->serviceName, - 'projects', - array( - 'methods' => array( - 'complete' => array( - 'path' => 'v3/{+name}:complete', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'type' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'languageCodes' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'scope' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'companyName' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'query' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'languageCode' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_clientEvents = new Google_Service_CloudTalentSolution_Resource_ProjectsClientEvents( - $this, - $this->serviceName, - 'clientEvents', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v3/{+parent}/clientEvents', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_companies = new Google_Service_CloudTalentSolution_Resource_ProjectsCompanies( - $this, - $this->serviceName, - 'companies', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v3/{+parent}/companies', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v3/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v3/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v3/{+parent}/companies', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'requireOpenJobs' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'patch' => array( - 'path' => 'v3/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_jobs = new Google_Service_CloudTalentSolution_Resource_ProjectsJobs( - $this, - $this->serviceName, - 'jobs', - array( - 'methods' => array( - 'batchDelete' => array( - 'path' => 'v3/{+parent}/jobs:batchDelete', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'create' => array( - 'path' => 'v3/{+parent}/jobs', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v3/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v3/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v3/{+parent}/jobs', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'jobView' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'v3/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'search' => array( - 'path' => 'v3/{+parent}/jobs:search', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'searchForAlert' => array( - 'path' => 'v3/{+parent}/jobs:searchForAlert', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/ApplicationInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/ApplicationInfo.php deleted file mode 100644 index 82281738..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/ApplicationInfo.php +++ /dev/null @@ -1,49 +0,0 @@ -emails = $emails; - } - public function getEmails() - { - return $this->emails; - } - public function setInstruction($instruction) - { - $this->instruction = $instruction; - } - public function getInstruction() - { - return $this->instruction; - } - public function setUris($uris) - { - $this->uris = $uris; - } - public function getUris() - { - return $this->uris; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/BatchDeleteJobsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/BatchDeleteJobsRequest.php deleted file mode 100644 index bdb71169..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/BatchDeleteJobsRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -filter = $filter; - } - public function getFilter() - { - return $this->filter; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/BucketRange.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/BucketRange.php deleted file mode 100644 index a7db67ee..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/BucketRange.php +++ /dev/null @@ -1,39 +0,0 @@ -from = $from; - } - public function getFrom() - { - return $this->from; - } - public function setTo($to) - { - $this->to = $to; - } - public function getTo() - { - return $this->to; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/BucketizedCount.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/BucketizedCount.php deleted file mode 100644 index 91f00e7a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/BucketizedCount.php +++ /dev/null @@ -1,46 +0,0 @@ -count = $count; - } - public function getCount() - { - return $this->count; - } - /** - * @param Google_Service_CloudTalentSolution_BucketRange - */ - public function setRange(Google_Service_CloudTalentSolution_BucketRange $range) - { - $this->range = $range; - } - /** - * @return Google_Service_CloudTalentSolution_BucketRange - */ - public function getRange() - { - return $this->range; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/ClientEvent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/ClientEvent.php deleted file mode 100644 index 738886b5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/ClientEvent.php +++ /dev/null @@ -1,82 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setEventId($eventId) - { - $this->eventId = $eventId; - } - public function getEventId() - { - return $this->eventId; - } - public function setExtraInfo($extraInfo) - { - $this->extraInfo = $extraInfo; - } - public function getExtraInfo() - { - return $this->extraInfo; - } - /** - * @param Google_Service_CloudTalentSolution_JobEvent - */ - public function setJobEvent(Google_Service_CloudTalentSolution_JobEvent $jobEvent) - { - $this->jobEvent = $jobEvent; - } - /** - * @return Google_Service_CloudTalentSolution_JobEvent - */ - public function getJobEvent() - { - return $this->jobEvent; - } - public function setParentEventId($parentEventId) - { - $this->parentEventId = $parentEventId; - } - public function getParentEventId() - { - return $this->parentEventId; - } - public function setRequestId($requestId) - { - $this->requestId = $requestId; - } - public function getRequestId() - { - return $this->requestId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/CommuteFilter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/CommuteFilter.php deleted file mode 100644 index dee18f0a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/CommuteFilter.php +++ /dev/null @@ -1,89 +0,0 @@ -allowImpreciseAddresses = $allowImpreciseAddresses; - } - public function getAllowImpreciseAddresses() - { - return $this->allowImpreciseAddresses; - } - public function setCommuteMethod($commuteMethod) - { - $this->commuteMethod = $commuteMethod; - } - public function getCommuteMethod() - { - return $this->commuteMethod; - } - /** - * @param Google_Service_CloudTalentSolution_TimeOfDay - */ - public function setDepartureTime(Google_Service_CloudTalentSolution_TimeOfDay $departureTime) - { - $this->departureTime = $departureTime; - } - /** - * @return Google_Service_CloudTalentSolution_TimeOfDay - */ - public function getDepartureTime() - { - return $this->departureTime; - } - public function setRoadTraffic($roadTraffic) - { - $this->roadTraffic = $roadTraffic; - } - public function getRoadTraffic() - { - return $this->roadTraffic; - } - /** - * @param Google_Service_CloudTalentSolution_LatLng - */ - public function setStartCoordinates(Google_Service_CloudTalentSolution_LatLng $startCoordinates) - { - $this->startCoordinates = $startCoordinates; - } - /** - * @return Google_Service_CloudTalentSolution_LatLng - */ - public function getStartCoordinates() - { - return $this->startCoordinates; - } - public function setTravelDuration($travelDuration) - { - $this->travelDuration = $travelDuration; - } - public function getTravelDuration() - { - return $this->travelDuration; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/CommuteInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/CommuteInfo.php deleted file mode 100644 index 4a2d0b4f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/CommuteInfo.php +++ /dev/null @@ -1,46 +0,0 @@ -jobLocation = $jobLocation; - } - /** - * @return Google_Service_CloudTalentSolution_Location - */ - public function getJobLocation() - { - return $this->jobLocation; - } - public function setTravelDuration($travelDuration) - { - $this->travelDuration = $travelDuration; - } - public function getTravelDuration() - { - return $this->travelDuration; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/Company.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/Company.php deleted file mode 100644 index a37fd8ae..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/Company.php +++ /dev/null @@ -1,146 +0,0 @@ -careerSiteUri = $careerSiteUri; - } - public function getCareerSiteUri() - { - return $this->careerSiteUri; - } - /** - * @param Google_Service_CloudTalentSolution_CompanyDerivedInfo - */ - public function setDerivedInfo(Google_Service_CloudTalentSolution_CompanyDerivedInfo $derivedInfo) - { - $this->derivedInfo = $derivedInfo; - } - /** - * @return Google_Service_CloudTalentSolution_CompanyDerivedInfo - */ - public function getDerivedInfo() - { - return $this->derivedInfo; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setEeoText($eeoText) - { - $this->eeoText = $eeoText; - } - public function getEeoText() - { - return $this->eeoText; - } - public function setExternalId($externalId) - { - $this->externalId = $externalId; - } - public function getExternalId() - { - return $this->externalId; - } - public function setHeadquartersAddress($headquartersAddress) - { - $this->headquartersAddress = $headquartersAddress; - } - public function getHeadquartersAddress() - { - return $this->headquartersAddress; - } - public function setHiringAgency($hiringAgency) - { - $this->hiringAgency = $hiringAgency; - } - public function getHiringAgency() - { - return $this->hiringAgency; - } - public function setImageUri($imageUri) - { - $this->imageUri = $imageUri; - } - public function getImageUri() - { - return $this->imageUri; - } - public function setKeywordSearchableJobCustomAttributes($keywordSearchableJobCustomAttributes) - { - $this->keywordSearchableJobCustomAttributes = $keywordSearchableJobCustomAttributes; - } - public function getKeywordSearchableJobCustomAttributes() - { - return $this->keywordSearchableJobCustomAttributes; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setSize($size) - { - $this->size = $size; - } - public function getSize() - { - return $this->size; - } - public function setSuspended($suspended) - { - $this->suspended = $suspended; - } - public function getSuspended() - { - return $this->suspended; - } - public function setWebsiteUri($websiteUri) - { - $this->websiteUri = $websiteUri; - } - public function getWebsiteUri() - { - return $this->websiteUri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/CompanyDerivedInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/CompanyDerivedInfo.php deleted file mode 100644 index b313f0b7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/CompanyDerivedInfo.php +++ /dev/null @@ -1,37 +0,0 @@ -headquartersLocation = $headquartersLocation; - } - /** - * @return Google_Service_CloudTalentSolution_Location - */ - public function getHeadquartersLocation() - { - return $this->headquartersLocation; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/CompensationEntry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/CompensationEntry.php deleted file mode 100644 index 4f0a9c37..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/CompensationEntry.php +++ /dev/null @@ -1,89 +0,0 @@ -amount = $amount; - } - /** - * @return Google_Service_CloudTalentSolution_Money - */ - public function getAmount() - { - return $this->amount; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setExpectedUnitsPerYear($expectedUnitsPerYear) - { - $this->expectedUnitsPerYear = $expectedUnitsPerYear; - } - public function getExpectedUnitsPerYear() - { - return $this->expectedUnitsPerYear; - } - /** - * @param Google_Service_CloudTalentSolution_CompensationRange - */ - public function setRange(Google_Service_CloudTalentSolution_CompensationRange $range) - { - $this->range = $range; - } - /** - * @return Google_Service_CloudTalentSolution_CompensationRange - */ - public function getRange() - { - return $this->range; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setUnit($unit) - { - $this->unit = $unit; - } - public function getUnit() - { - return $this->unit; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/CompensationFilter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/CompensationFilter.php deleted file mode 100644 index a8d144c2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/CompensationFilter.php +++ /dev/null @@ -1,65 +0,0 @@ -includeJobsWithUnspecifiedCompensationRange = $includeJobsWithUnspecifiedCompensationRange; - } - public function getIncludeJobsWithUnspecifiedCompensationRange() - { - return $this->includeJobsWithUnspecifiedCompensationRange; - } - /** - * @param Google_Service_CloudTalentSolution_CompensationRange - */ - public function setRange(Google_Service_CloudTalentSolution_CompensationRange $range) - { - $this->range = $range; - } - /** - * @return Google_Service_CloudTalentSolution_CompensationRange - */ - public function getRange() - { - return $this->range; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setUnits($units) - { - $this->units = $units; - } - public function getUnits() - { - return $this->units; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/CompensationHistogramRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/CompensationHistogramRequest.php deleted file mode 100644 index 8b602bd4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/CompensationHistogramRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -bucketingOption = $bucketingOption; - } - /** - * @return Google_Service_CloudTalentSolution_NumericBucketingOption - */ - public function getBucketingOption() - { - return $this->bucketingOption; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/CompensationHistogramResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/CompensationHistogramResult.php deleted file mode 100644 index 41aeada7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/CompensationHistogramResult.php +++ /dev/null @@ -1,46 +0,0 @@ -result = $result; - } - /** - * @return Google_Service_CloudTalentSolution_NumericBucketingResult - */ - public function getResult() - { - return $this->result; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/CompensationInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/CompensationInfo.php deleted file mode 100644 index 08149ff2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/CompensationInfo.php +++ /dev/null @@ -1,70 +0,0 @@ -annualizedBaseCompensationRange = $annualizedBaseCompensationRange; - } - /** - * @return Google_Service_CloudTalentSolution_CompensationRange - */ - public function getAnnualizedBaseCompensationRange() - { - return $this->annualizedBaseCompensationRange; - } - /** - * @param Google_Service_CloudTalentSolution_CompensationRange - */ - public function setAnnualizedTotalCompensationRange(Google_Service_CloudTalentSolution_CompensationRange $annualizedTotalCompensationRange) - { - $this->annualizedTotalCompensationRange = $annualizedTotalCompensationRange; - } - /** - * @return Google_Service_CloudTalentSolution_CompensationRange - */ - public function getAnnualizedTotalCompensationRange() - { - return $this->annualizedTotalCompensationRange; - } - /** - * @param Google_Service_CloudTalentSolution_CompensationEntry - */ - public function setEntries($entries) - { - $this->entries = $entries; - } - /** - * @return Google_Service_CloudTalentSolution_CompensationEntry - */ - public function getEntries() - { - return $this->entries; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/CompensationRange.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/CompensationRange.php deleted file mode 100644 index ab9bbf27..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/CompensationRange.php +++ /dev/null @@ -1,53 +0,0 @@ -maxCompensation = $maxCompensation; - } - /** - * @return Google_Service_CloudTalentSolution_Money - */ - public function getMaxCompensation() - { - return $this->maxCompensation; - } - /** - * @param Google_Service_CloudTalentSolution_Money - */ - public function setMinCompensation(Google_Service_CloudTalentSolution_Money $minCompensation) - { - $this->minCompensation = $minCompensation; - } - /** - * @return Google_Service_CloudTalentSolution_Money - */ - public function getMinCompensation() - { - return $this->minCompensation; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/CompleteQueryResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/CompleteQueryResponse.php deleted file mode 100644 index 973f5501..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/CompleteQueryResponse.php +++ /dev/null @@ -1,54 +0,0 @@ -completionResults = $completionResults; - } - /** - * @return Google_Service_CloudTalentSolution_CompletionResult - */ - public function getCompletionResults() - { - return $this->completionResults; - } - /** - * @param Google_Service_CloudTalentSolution_ResponseMetadata - */ - public function setMetadata(Google_Service_CloudTalentSolution_ResponseMetadata $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_CloudTalentSolution_ResponseMetadata - */ - public function getMetadata() - { - return $this->metadata; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/CompletionResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/CompletionResult.php deleted file mode 100644 index 51f8abab..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/CompletionResult.php +++ /dev/null @@ -1,48 +0,0 @@ -imageUri = $imageUri; - } - public function getImageUri() - { - return $this->imageUri; - } - public function setSuggestion($suggestion) - { - $this->suggestion = $suggestion; - } - public function getSuggestion() - { - return $this->suggestion; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/CreateClientEventRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/CreateClientEventRequest.php deleted file mode 100644 index 4b1f2e6f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/CreateClientEventRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -clientEvent = $clientEvent; - } - /** - * @return Google_Service_CloudTalentSolution_ClientEvent - */ - public function getClientEvent() - { - return $this->clientEvent; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/CreateCompanyRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/CreateCompanyRequest.php deleted file mode 100644 index f0a8a0b7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/CreateCompanyRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -company = $company; - } - /** - * @return Google_Service_CloudTalentSolution_Company - */ - public function getCompany() - { - return $this->company; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/CreateJobRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/CreateJobRequest.php deleted file mode 100644 index c07069c8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/CreateJobRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -job = $job; - } - /** - * @return Google_Service_CloudTalentSolution_Job - */ - public function getJob() - { - return $this->job; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/CustomAttribute.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/CustomAttribute.php deleted file mode 100644 index cd267d9d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/CustomAttribute.php +++ /dev/null @@ -1,49 +0,0 @@ -filterable = $filterable; - } - public function getFilterable() - { - return $this->filterable; - } - public function setLongValues($longValues) - { - $this->longValues = $longValues; - } - public function getLongValues() - { - return $this->longValues; - } - public function setStringValues($stringValues) - { - $this->stringValues = $stringValues; - } - public function getStringValues() - { - return $this->stringValues; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/CustomAttributeHistogramRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/CustomAttributeHistogramRequest.php deleted file mode 100644 index 36c4b68c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/CustomAttributeHistogramRequest.php +++ /dev/null @@ -1,55 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - /** - * @param Google_Service_CloudTalentSolution_NumericBucketingOption - */ - public function setLongValueHistogramBucketingOption(Google_Service_CloudTalentSolution_NumericBucketingOption $longValueHistogramBucketingOption) - { - $this->longValueHistogramBucketingOption = $longValueHistogramBucketingOption; - } - /** - * @return Google_Service_CloudTalentSolution_NumericBucketingOption - */ - public function getLongValueHistogramBucketingOption() - { - return $this->longValueHistogramBucketingOption; - } - public function setStringValueHistogram($stringValueHistogram) - { - $this->stringValueHistogram = $stringValueHistogram; - } - public function getStringValueHistogram() - { - return $this->stringValueHistogram; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/CustomAttributeHistogramResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/CustomAttributeHistogramResult.php deleted file mode 100644 index 3bae46d6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/CustomAttributeHistogramResult.php +++ /dev/null @@ -1,55 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - /** - * @param Google_Service_CloudTalentSolution_NumericBucketingResult - */ - public function setLongValueHistogramResult(Google_Service_CloudTalentSolution_NumericBucketingResult $longValueHistogramResult) - { - $this->longValueHistogramResult = $longValueHistogramResult; - } - /** - * @return Google_Service_CloudTalentSolution_NumericBucketingResult - */ - public function getLongValueHistogramResult() - { - return $this->longValueHistogramResult; - } - public function setStringValueHistogramResult($stringValueHistogramResult) - { - $this->stringValueHistogramResult = $stringValueHistogramResult; - } - public function getStringValueHistogramResult() - { - return $this->stringValueHistogramResult; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/DeviceInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/DeviceInfo.php deleted file mode 100644 index e6ca35a0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/DeviceInfo.php +++ /dev/null @@ -1,39 +0,0 @@ -deviceType = $deviceType; - } - public function getDeviceType() - { - return $this->deviceType; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/HistogramFacets.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/HistogramFacets.php deleted file mode 100644 index fefca583..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/HistogramFacets.php +++ /dev/null @@ -1,63 +0,0 @@ -compensationHistogramFacets = $compensationHistogramFacets; - } - /** - * @return Google_Service_CloudTalentSolution_CompensationHistogramRequest - */ - public function getCompensationHistogramFacets() - { - return $this->compensationHistogramFacets; - } - /** - * @param Google_Service_CloudTalentSolution_CustomAttributeHistogramRequest - */ - public function setCustomAttributeHistogramFacets($customAttributeHistogramFacets) - { - $this->customAttributeHistogramFacets = $customAttributeHistogramFacets; - } - /** - * @return Google_Service_CloudTalentSolution_CustomAttributeHistogramRequest - */ - public function getCustomAttributeHistogramFacets() - { - return $this->customAttributeHistogramFacets; - } - public function setSimpleHistogramFacets($simpleHistogramFacets) - { - $this->simpleHistogramFacets = $simpleHistogramFacets; - } - public function getSimpleHistogramFacets() - { - return $this->simpleHistogramFacets; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/HistogramResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/HistogramResult.php deleted file mode 100644 index 1999bafc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/HistogramResult.php +++ /dev/null @@ -1,39 +0,0 @@ -searchType = $searchType; - } - public function getSearchType() - { - return $this->searchType; - } - public function setValues($values) - { - $this->values = $values; - } - public function getValues() - { - return $this->values; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/HistogramResults.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/HistogramResults.php deleted file mode 100644 index 419d39df..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/HistogramResults.php +++ /dev/null @@ -1,70 +0,0 @@ -compensationHistogramResults = $compensationHistogramResults; - } - /** - * @return Google_Service_CloudTalentSolution_CompensationHistogramResult - */ - public function getCompensationHistogramResults() - { - return $this->compensationHistogramResults; - } - /** - * @param Google_Service_CloudTalentSolution_CustomAttributeHistogramResult - */ - public function setCustomAttributeHistogramResults($customAttributeHistogramResults) - { - $this->customAttributeHistogramResults = $customAttributeHistogramResults; - } - /** - * @return Google_Service_CloudTalentSolution_CustomAttributeHistogramResult - */ - public function getCustomAttributeHistogramResults() - { - return $this->customAttributeHistogramResults; - } - /** - * @param Google_Service_CloudTalentSolution_HistogramResult - */ - public function setSimpleHistogramResults($simpleHistogramResults) - { - $this->simpleHistogramResults = $simpleHistogramResults; - } - /** - * @return Google_Service_CloudTalentSolution_HistogramResult - */ - public function getSimpleHistogramResults() - { - return $this->simpleHistogramResults; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/Job.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/Job.php deleted file mode 100644 index fcba92f6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/Job.php +++ /dev/null @@ -1,327 +0,0 @@ -addresses = $addresses; - } - public function getAddresses() - { - return $this->addresses; - } - /** - * @param Google_Service_CloudTalentSolution_ApplicationInfo - */ - public function setApplicationInfo(Google_Service_CloudTalentSolution_ApplicationInfo $applicationInfo) - { - $this->applicationInfo = $applicationInfo; - } - /** - * @return Google_Service_CloudTalentSolution_ApplicationInfo - */ - public function getApplicationInfo() - { - return $this->applicationInfo; - } - public function setCompanyDisplayName($companyDisplayName) - { - $this->companyDisplayName = $companyDisplayName; - } - public function getCompanyDisplayName() - { - return $this->companyDisplayName; - } - public function setCompanyName($companyName) - { - $this->companyName = $companyName; - } - public function getCompanyName() - { - return $this->companyName; - } - /** - * @param Google_Service_CloudTalentSolution_CompensationInfo - */ - public function setCompensationInfo(Google_Service_CloudTalentSolution_CompensationInfo $compensationInfo) - { - $this->compensationInfo = $compensationInfo; - } - /** - * @return Google_Service_CloudTalentSolution_CompensationInfo - */ - public function getCompensationInfo() - { - return $this->compensationInfo; - } - /** - * @param Google_Service_CloudTalentSolution_CustomAttribute - */ - public function setCustomAttributes($customAttributes) - { - $this->customAttributes = $customAttributes; - } - /** - * @return Google_Service_CloudTalentSolution_CustomAttribute - */ - public function getCustomAttributes() - { - return $this->customAttributes; - } - public function setDegreeTypes($degreeTypes) - { - $this->degreeTypes = $degreeTypes; - } - public function getDegreeTypes() - { - return $this->degreeTypes; - } - public function setDepartment($department) - { - $this->department = $department; - } - public function getDepartment() - { - return $this->department; - } - /** - * @param Google_Service_CloudTalentSolution_JobDerivedInfo - */ - public function setDerivedInfo(Google_Service_CloudTalentSolution_JobDerivedInfo $derivedInfo) - { - $this->derivedInfo = $derivedInfo; - } - /** - * @return Google_Service_CloudTalentSolution_JobDerivedInfo - */ - public function getDerivedInfo() - { - return $this->derivedInfo; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setEmploymentTypes($employmentTypes) - { - $this->employmentTypes = $employmentTypes; - } - public function getEmploymentTypes() - { - return $this->employmentTypes; - } - public function setIncentives($incentives) - { - $this->incentives = $incentives; - } - public function getIncentives() - { - return $this->incentives; - } - public function setJobBenefits($jobBenefits) - { - $this->jobBenefits = $jobBenefits; - } - public function getJobBenefits() - { - return $this->jobBenefits; - } - public function setJobEndTime($jobEndTime) - { - $this->jobEndTime = $jobEndTime; - } - public function getJobEndTime() - { - return $this->jobEndTime; - } - public function setJobLevel($jobLevel) - { - $this->jobLevel = $jobLevel; - } - public function getJobLevel() - { - return $this->jobLevel; - } - public function setJobStartTime($jobStartTime) - { - $this->jobStartTime = $jobStartTime; - } - public function getJobStartTime() - { - return $this->jobStartTime; - } - public function setLanguageCode($languageCode) - { - $this->languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPostingCreateTime($postingCreateTime) - { - $this->postingCreateTime = $postingCreateTime; - } - public function getPostingCreateTime() - { - return $this->postingCreateTime; - } - public function setPostingExpireTime($postingExpireTime) - { - $this->postingExpireTime = $postingExpireTime; - } - public function getPostingExpireTime() - { - return $this->postingExpireTime; - } - public function setPostingPublishTime($postingPublishTime) - { - $this->postingPublishTime = $postingPublishTime; - } - public function getPostingPublishTime() - { - return $this->postingPublishTime; - } - public function setPostingRegion($postingRegion) - { - $this->postingRegion = $postingRegion; - } - public function getPostingRegion() - { - return $this->postingRegion; - } - public function setPostingUpdateTime($postingUpdateTime) - { - $this->postingUpdateTime = $postingUpdateTime; - } - public function getPostingUpdateTime() - { - return $this->postingUpdateTime; - } - /** - * @param Google_Service_CloudTalentSolution_ProcessingOptions - */ - public function setProcessingOptions(Google_Service_CloudTalentSolution_ProcessingOptions $processingOptions) - { - $this->processingOptions = $processingOptions; - } - /** - * @return Google_Service_CloudTalentSolution_ProcessingOptions - */ - public function getProcessingOptions() - { - return $this->processingOptions; - } - public function setPromotionValue($promotionValue) - { - $this->promotionValue = $promotionValue; - } - public function getPromotionValue() - { - return $this->promotionValue; - } - public function setQualifications($qualifications) - { - $this->qualifications = $qualifications; - } - public function getQualifications() - { - return $this->qualifications; - } - public function setRequisitionId($requisitionId) - { - $this->requisitionId = $requisitionId; - } - public function getRequisitionId() - { - return $this->requisitionId; - } - public function setResponsibilities($responsibilities) - { - $this->responsibilities = $responsibilities; - } - public function getResponsibilities() - { - return $this->responsibilities; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setVisibility($visibility) - { - $this->visibility = $visibility; - } - public function getVisibility() - { - return $this->visibility; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/JobDerivedInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/JobDerivedInfo.php deleted file mode 100644 index 75b5cd1c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/JobDerivedInfo.php +++ /dev/null @@ -1,47 +0,0 @@ -jobCategories = $jobCategories; - } - public function getJobCategories() - { - return $this->jobCategories; - } - /** - * @param Google_Service_CloudTalentSolution_Location - */ - public function setLocations($locations) - { - $this->locations = $locations; - } - /** - * @return Google_Service_CloudTalentSolution_Location - */ - public function getLocations() - { - return $this->locations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/JobEvent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/JobEvent.php deleted file mode 100644 index 356abaaa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/JobEvent.php +++ /dev/null @@ -1,40 +0,0 @@ -jobs = $jobs; - } - public function getJobs() - { - return $this->jobs; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/JobQuery.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/JobQuery.php deleted file mode 100644 index 191bf00a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/JobQuery.php +++ /dev/null @@ -1,167 +0,0 @@ -commuteFilter = $commuteFilter; - } - /** - * @return Google_Service_CloudTalentSolution_CommuteFilter - */ - public function getCommuteFilter() - { - return $this->commuteFilter; - } - public function setCompanyDisplayNames($companyDisplayNames) - { - $this->companyDisplayNames = $companyDisplayNames; - } - public function getCompanyDisplayNames() - { - return $this->companyDisplayNames; - } - public function setCompanyNames($companyNames) - { - $this->companyNames = $companyNames; - } - public function getCompanyNames() - { - return $this->companyNames; - } - /** - * @param Google_Service_CloudTalentSolution_CompensationFilter - */ - public function setCompensationFilter(Google_Service_CloudTalentSolution_CompensationFilter $compensationFilter) - { - $this->compensationFilter = $compensationFilter; - } - /** - * @return Google_Service_CloudTalentSolution_CompensationFilter - */ - public function getCompensationFilter() - { - return $this->compensationFilter; - } - public function setCustomAttributeFilter($customAttributeFilter) - { - $this->customAttributeFilter = $customAttributeFilter; - } - public function getCustomAttributeFilter() - { - return $this->customAttributeFilter; - } - public function setDisableSpellCheck($disableSpellCheck) - { - $this->disableSpellCheck = $disableSpellCheck; - } - public function getDisableSpellCheck() - { - return $this->disableSpellCheck; - } - public function setEmploymentTypes($employmentTypes) - { - $this->employmentTypes = $employmentTypes; - } - public function getEmploymentTypes() - { - return $this->employmentTypes; - } - public function setJobCategories($jobCategories) - { - $this->jobCategories = $jobCategories; - } - public function getJobCategories() - { - return $this->jobCategories; - } - public function setLanguageCodes($languageCodes) - { - $this->languageCodes = $languageCodes; - } - public function getLanguageCodes() - { - return $this->languageCodes; - } - /** - * @param Google_Service_CloudTalentSolution_LocationFilter - */ - public function setLocationFilters($locationFilters) - { - $this->locationFilters = $locationFilters; - } - /** - * @return Google_Service_CloudTalentSolution_LocationFilter - */ - public function getLocationFilters() - { - return $this->locationFilters; - } - /** - * @param Google_Service_CloudTalentSolution_TimestampRange - */ - public function setPublishTimeRange(Google_Service_CloudTalentSolution_TimestampRange $publishTimeRange) - { - $this->publishTimeRange = $publishTimeRange; - } - /** - * @return Google_Service_CloudTalentSolution_TimestampRange - */ - public function getPublishTimeRange() - { - return $this->publishTimeRange; - } - public function setQuery($query) - { - $this->query = $query; - } - public function getQuery() - { - return $this->query; - } - public function setQueryLanguageCode($queryLanguageCode) - { - $this->queryLanguageCode = $queryLanguageCode; - } - public function getQueryLanguageCode() - { - return $this->queryLanguageCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/JobsEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/JobsEmpty.php deleted file mode 100644 index 93603d49..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/JobsEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -latitude = $latitude; - } - public function getLatitude() - { - return $this->latitude; - } - public function setLongitude($longitude) - { - $this->longitude = $longitude; - } - public function getLongitude() - { - return $this->longitude; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/ListCompaniesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/ListCompaniesResponse.php deleted file mode 100644 index d18ebac3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/ListCompaniesResponse.php +++ /dev/null @@ -1,63 +0,0 @@ -companies = $companies; - } - /** - * @return Google_Service_CloudTalentSolution_Company - */ - public function getCompanies() - { - return $this->companies; - } - /** - * @param Google_Service_CloudTalentSolution_ResponseMetadata - */ - public function setMetadata(Google_Service_CloudTalentSolution_ResponseMetadata $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_CloudTalentSolution_ResponseMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/ListJobsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/ListJobsResponse.php deleted file mode 100644 index 8fc24821..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/ListJobsResponse.php +++ /dev/null @@ -1,63 +0,0 @@ -jobs = $jobs; - } - /** - * @return Google_Service_CloudTalentSolution_Job - */ - public function getJobs() - { - return $this->jobs; - } - /** - * @param Google_Service_CloudTalentSolution_ResponseMetadata - */ - public function setMetadata(Google_Service_CloudTalentSolution_ResponseMetadata $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_CloudTalentSolution_ResponseMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/Location.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/Location.php deleted file mode 100644 index 5280dcec..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/Location.php +++ /dev/null @@ -1,71 +0,0 @@ -latLng = $latLng; - } - /** - * @return Google_Service_CloudTalentSolution_LatLng - */ - public function getLatLng() - { - return $this->latLng; - } - public function setLocationType($locationType) - { - $this->locationType = $locationType; - } - public function getLocationType() - { - return $this->locationType; - } - /** - * @param Google_Service_CloudTalentSolution_PostalAddress - */ - public function setPostalAddress(Google_Service_CloudTalentSolution_PostalAddress $postalAddress) - { - $this->postalAddress = $postalAddress; - } - /** - * @return Google_Service_CloudTalentSolution_PostalAddress - */ - public function getPostalAddress() - { - return $this->postalAddress; - } - public function setRadiusInMiles($radiusInMiles) - { - $this->radiusInMiles = $radiusInMiles; - } - public function getRadiusInMiles() - { - return $this->radiusInMiles; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/LocationFilter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/LocationFilter.php deleted file mode 100644 index ef7a2484..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/LocationFilter.php +++ /dev/null @@ -1,73 +0,0 @@ -address = $address; - } - public function getAddress() - { - return $this->address; - } - public function setDistanceInMiles($distanceInMiles) - { - $this->distanceInMiles = $distanceInMiles; - } - public function getDistanceInMiles() - { - return $this->distanceInMiles; - } - /** - * @param Google_Service_CloudTalentSolution_LatLng - */ - public function setLatLng(Google_Service_CloudTalentSolution_LatLng $latLng) - { - $this->latLng = $latLng; - } - /** - * @return Google_Service_CloudTalentSolution_LatLng - */ - public function getLatLng() - { - return $this->latLng; - } - public function setRegionCode($regionCode) - { - $this->regionCode = $regionCode; - } - public function getRegionCode() - { - return $this->regionCode; - } - public function setTelecommutePreference($telecommutePreference) - { - $this->telecommutePreference = $telecommutePreference; - } - public function getTelecommutePreference() - { - return $this->telecommutePreference; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/MatchingJob.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/MatchingJob.php deleted file mode 100644 index 9cfb8e1e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/MatchingJob.php +++ /dev/null @@ -1,80 +0,0 @@ -commuteInfo = $commuteInfo; - } - /** - * @return Google_Service_CloudTalentSolution_CommuteInfo - */ - public function getCommuteInfo() - { - return $this->commuteInfo; - } - /** - * @param Google_Service_CloudTalentSolution_Job - */ - public function setJob(Google_Service_CloudTalentSolution_Job $job) - { - $this->job = $job; - } - /** - * @return Google_Service_CloudTalentSolution_Job - */ - public function getJob() - { - return $this->job; - } - public function setJobSummary($jobSummary) - { - $this->jobSummary = $jobSummary; - } - public function getJobSummary() - { - return $this->jobSummary; - } - public function setJobTitleSnippet($jobTitleSnippet) - { - $this->jobTitleSnippet = $jobTitleSnippet; - } - public function getJobTitleSnippet() - { - return $this->jobTitleSnippet; - } - public function setSearchTextSnippet($searchTextSnippet) - { - $this->searchTextSnippet = $searchTextSnippet; - } - public function getSearchTextSnippet() - { - return $this->searchTextSnippet; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/MendelDebugInput.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/MendelDebugInput.php deleted file mode 100644 index 71dfd41e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/MendelDebugInput.php +++ /dev/null @@ -1,37 +0,0 @@ -namespacedDebugInput = $namespacedDebugInput; - } - /** - * @return Google_Service_CloudTalentSolution_NamespacedDebugInput - */ - public function getNamespacedDebugInput() - { - return $this->namespacedDebugInput; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/Money.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/Money.php deleted file mode 100644 index 19c6621f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/Money.php +++ /dev/null @@ -1,48 +0,0 @@ -currencyCode = $currencyCode; - } - public function getCurrencyCode() - { - return $this->currencyCode; - } - public function setNanos($nanos) - { - $this->nanos = $nanos; - } - public function getNanos() - { - return $this->nanos; - } - public function setUnits($units) - { - $this->units = $units; - } - public function getUnits() - { - return $this->units; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/NamespacedDebugInput.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/NamespacedDebugInput.php deleted file mode 100644 index d46e47bf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/NamespacedDebugInput.php +++ /dev/null @@ -1,148 +0,0 @@ -absolutelyForcedExpNames = $absolutelyForcedExpNames; - } - public function getAbsolutelyForcedExpNames() - { - return $this->absolutelyForcedExpNames; - } - public function setAbsolutelyForcedExpTags($absolutelyForcedExpTags) - { - $this->absolutelyForcedExpTags = $absolutelyForcedExpTags; - } - public function getAbsolutelyForcedExpTags() - { - return $this->absolutelyForcedExpTags; - } - public function setAbsolutelyForcedExps($absolutelyForcedExps) - { - $this->absolutelyForcedExps = $absolutelyForcedExps; - } - public function getAbsolutelyForcedExps() - { - return $this->absolutelyForcedExps; - } - public function setConditionallyForcedExpNames($conditionallyForcedExpNames) - { - $this->conditionallyForcedExpNames = $conditionallyForcedExpNames; - } - public function getConditionallyForcedExpNames() - { - return $this->conditionallyForcedExpNames; - } - public function setConditionallyForcedExpTags($conditionallyForcedExpTags) - { - $this->conditionallyForcedExpTags = $conditionallyForcedExpTags; - } - public function getConditionallyForcedExpTags() - { - return $this->conditionallyForcedExpTags; - } - public function setConditionallyForcedExps($conditionallyForcedExps) - { - $this->conditionallyForcedExps = $conditionallyForcedExps; - } - public function getConditionallyForcedExps() - { - return $this->conditionallyForcedExps; - } - public function setDisableAutomaticEnrollmentSelection($disableAutomaticEnrollmentSelection) - { - $this->disableAutomaticEnrollmentSelection = $disableAutomaticEnrollmentSelection; - } - public function getDisableAutomaticEnrollmentSelection() - { - return $this->disableAutomaticEnrollmentSelection; - } - public function setDisableExpNames($disableExpNames) - { - $this->disableExpNames = $disableExpNames; - } - public function getDisableExpNames() - { - return $this->disableExpNames; - } - public function setDisableExpTags($disableExpTags) - { - $this->disableExpTags = $disableExpTags; - } - public function getDisableExpTags() - { - return $this->disableExpTags; - } - public function setDisableExps($disableExps) - { - $this->disableExps = $disableExps; - } - public function getDisableExps() - { - return $this->disableExps; - } - public function setDisableManualEnrollmentSelection($disableManualEnrollmentSelection) - { - $this->disableManualEnrollmentSelection = $disableManualEnrollmentSelection; - } - public function getDisableManualEnrollmentSelection() - { - return $this->disableManualEnrollmentSelection; - } - public function setDisableOrganicSelection($disableOrganicSelection) - { - $this->disableOrganicSelection = $disableOrganicSelection; - } - public function getDisableOrganicSelection() - { - return $this->disableOrganicSelection; - } - public function setForcedFlags($forcedFlags) - { - $this->forcedFlags = $forcedFlags; - } - public function getForcedFlags() - { - return $this->forcedFlags; - } - public function setForcedRollouts($forcedRollouts) - { - $this->forcedRollouts = $forcedRollouts; - } - public function getForcedRollouts() - { - return $this->forcedRollouts; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/NumericBucketingOption.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/NumericBucketingOption.php deleted file mode 100644 index fbc00e2b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/NumericBucketingOption.php +++ /dev/null @@ -1,40 +0,0 @@ -bucketBounds = $bucketBounds; - } - public function getBucketBounds() - { - return $this->bucketBounds; - } - public function setRequiresMinMax($requiresMinMax) - { - $this->requiresMinMax = $requiresMinMax; - } - public function getRequiresMinMax() - { - return $this->requiresMinMax; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/NumericBucketingResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/NumericBucketingResult.php deleted file mode 100644 index 1c5b5b80..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/NumericBucketingResult.php +++ /dev/null @@ -1,56 +0,0 @@ -counts = $counts; - } - /** - * @return Google_Service_CloudTalentSolution_BucketizedCount - */ - public function getCounts() - { - return $this->counts; - } - public function setMaxValue($maxValue) - { - $this->maxValue = $maxValue; - } - public function getMaxValue() - { - return $this->maxValue; - } - public function setMinValue($minValue) - { - $this->minValue = $minValue; - } - public function getMinValue() - { - return $this->minValue; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/PostalAddress.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/PostalAddress.php deleted file mode 100644 index 02a8f2f7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/PostalAddress.php +++ /dev/null @@ -1,121 +0,0 @@ -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 setOrganization($organization) - { - $this->organization = $organization; - } - public function getOrganization() - { - return $this->organization; - } - public function setPostalCode($postalCode) - { - $this->postalCode = $postalCode; - } - public function getPostalCode() - { - return $this->postalCode; - } - public function setRecipients($recipients) - { - $this->recipients = $recipients; - } - public function getRecipients() - { - return $this->recipients; - } - public function setRegionCode($regionCode) - { - $this->regionCode = $regionCode; - } - public function getRegionCode() - { - return $this->regionCode; - } - public function setRevision($revision) - { - $this->revision = $revision; - } - public function getRevision() - { - return $this->revision; - } - public function setSortingCode($sortingCode) - { - $this->sortingCode = $sortingCode; - } - public function getSortingCode() - { - return $this->sortingCode; - } - public function setSublocality($sublocality) - { - $this->sublocality = $sublocality; - } - public function getSublocality() - { - return $this->sublocality; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/ProcessingOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/ProcessingOptions.php deleted file mode 100644 index 63aec5f8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/ProcessingOptions.php +++ /dev/null @@ -1,39 +0,0 @@ -disableStreetAddressResolution = $disableStreetAddressResolution; - } - public function getDisableStreetAddressResolution() - { - return $this->disableStreetAddressResolution; - } - public function setHtmlSanitization($htmlSanitization) - { - $this->htmlSanitization = $htmlSanitization; - } - public function getHtmlSanitization() - { - return $this->htmlSanitization; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/RequestMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/RequestMetadata.php deleted file mode 100644 index 6adf0d6a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/RequestMetadata.php +++ /dev/null @@ -1,64 +0,0 @@ -deviceInfo = $deviceInfo; - } - /** - * @return Google_Service_CloudTalentSolution_DeviceInfo - */ - public function getDeviceInfo() - { - return $this->deviceInfo; - } - public function setDomain($domain) - { - $this->domain = $domain; - } - public function getDomain() - { - return $this->domain; - } - public function setSessionId($sessionId) - { - $this->sessionId = $sessionId; - } - public function getSessionId() - { - return $this->sessionId; - } - public function setUserId($userId) - { - $this->userId = $userId; - } - public function getUserId() - { - return $this->userId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/Resource/Projects.php deleted file mode 100644 index 99c4d13f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/Resource/Projects.php +++ /dev/null @@ -1,95 +0,0 @@ - - * $jobsService = new Google_Service_CloudTalentSolution(...); - * $projects = $jobsService->projects; - * - */ -class Google_Service_CloudTalentSolution_Resource_Projects extends Google_Service_Resource -{ - /** - * Completes the specified prefix with keyword suggestions. Intended for use by - * a job search auto-complete search box. (projects.complete) - * - * @param string $name Required. Resource name of project the completion is - * performed within. - * - * The format is "projects/{project_id}", for example, "projects/api-test- - * project". - * @param array $optParams Optional parameters. - * - * @opt_param string type Optional. The completion topic. The default is - * CompletionType.COMBINED. - * @opt_param string languageCodes Optional. The list of languages of the query. - * This is the BCP-47 language code, such as "en-US" or "sr-Latn". For more - * information, see [Tags for Identifying - * Languages](https://tools.ietf.org/html/bcp47). - * - * For CompletionType.JOB_TITLE type, only open jobs with the same - * language_codes are returned. - * - * For CompletionType.COMPANY_NAME type, only companies having open jobs with - * the same language_codes are returned. - * - * For CompletionType.COMBINED type, only open jobs with the same language_codes - * or companies having open jobs with the same language_codes are returned. - * - * The maximum number of allowed characters is 255. - * @opt_param string scope Optional. The scope of the completion. The defaults - * is CompletionScope.PUBLIC. - * @opt_param string companyName Optional. If provided, restricts completion to - * specified company. - * - * The format is "projects/{project_id}/companies/{company_id}", for example, - * "projects/api-test-project/companies/foo". - * @opt_param int pageSize Required. Completion result count. - * - * The maximum allowed page size is 10. - * @opt_param string query Required. The query used to generate suggestions. - * - * The maximum number of allowed characters is 255. - * @opt_param string languageCode Deprecated. Use language_codes instead. - * - * Optional. - * - * The language of the query. This is the BCP-47 language code, such as "en-US" - * or "sr-Latn". For more information, see [Tags for Identifying - * Languages](https://tools.ietf.org/html/bcp47). - * - * For CompletionType.JOB_TITLE type, only open jobs with the same language_code - * are returned. - * - * For CompletionType.COMPANY_NAME type, only companies having open jobs with - * the same language_code are returned. - * - * For CompletionType.COMBINED type, only open jobs with the same language_code - * or companies having open jobs with the same language_code are returned. - * - * The maximum number of allowed characters is 255. - * @return Google_Service_CloudTalentSolution_CompleteQueryResponse - */ - public function complete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('complete', array($params), "Google_Service_CloudTalentSolution_CompleteQueryResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/Resource/ProjectsClientEvents.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/Resource/ProjectsClientEvents.php deleted file mode 100644 index ac61e6d8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/Resource/ProjectsClientEvents.php +++ /dev/null @@ -1,46 +0,0 @@ - - * $jobsService = new Google_Service_CloudTalentSolution(...); - * $clientEvents = $jobsService->clientEvents; - * - */ -class Google_Service_CloudTalentSolution_Resource_ProjectsClientEvents extends Google_Service_Resource -{ - /** - * Report events issued when end user interacts with customer's application that - * uses Cloud Talent Solution. You may inspect the created events in [self - * service tools](https://console.cloud.google.com/talent-solution/overview). - * [Learn more](https://cloud.google.com/talent-solution/docs/management-tools) - * about self service tools. (clientEvents.create) - * - * @param string $parent Parent project name. - * @param Google_Service_CloudTalentSolution_CreateClientEventRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudTalentSolution_ClientEvent - */ - public function create($parent, Google_Service_CloudTalentSolution_CreateClientEventRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_CloudTalentSolution_ClientEvent"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/Resource/ProjectsCompanies.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/Resource/ProjectsCompanies.php deleted file mode 100644 index 52363974..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/Resource/ProjectsCompanies.php +++ /dev/null @@ -1,132 +0,0 @@ - - * $jobsService = new Google_Service_CloudTalentSolution(...); - * $companies = $jobsService->companies; - * - */ -class Google_Service_CloudTalentSolution_Resource_ProjectsCompanies extends Google_Service_Resource -{ - /** - * Creates a new company entity. (companies.create) - * - * @param string $parent Required. Resource name of the project under which the - * company is created. - * - * The format is "projects/{project_id}", for example, "projects/api-test- - * project". - * @param Google_Service_CloudTalentSolution_CreateCompanyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudTalentSolution_Company - */ - public function create($parent, Google_Service_CloudTalentSolution_CreateCompanyRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_CloudTalentSolution_Company"); - } - /** - * Deletes specified company. Prerequisite: The company has no jobs associated - * with it. (companies.delete) - * - * @param string $name Required. The resource name of the company to be deleted. - * - * The format is "projects/{project_id}/companies/{company_id}", for example, - * "projects/api-test-project/companies/foo". - * @param array $optParams Optional parameters. - * @return Google_Service_CloudTalentSolution_JobsEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudTalentSolution_JobsEmpty"); - } - /** - * Retrieves specified company. (companies.get) - * - * @param string $name Required. The resource name of the company to be - * retrieved. - * - * The format is "projects/{project_id}/companies/{company_id}", for example, - * "projects/api-test-project/companies/foo". - * @param array $optParams Optional parameters. - * @return Google_Service_CloudTalentSolution_Company - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudTalentSolution_Company"); - } - /** - * Lists all companies associated with the service account. - * (companies.listProjectsCompanies) - * - * @param string $parent Required. Resource name of the project under which the - * company is created. - * - * The format is "projects/{project_id}", for example, "projects/api-test- - * project". - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Optional. The starting indicator from which to - * return results. - * @opt_param int pageSize Optional. The maximum number of companies to be - * returned, at most 100. Default is 100 if a non-positive number is provided. - * @opt_param bool requireOpenJobs Optional. Set to true if the companies - * requested must have open jobs. - * - * Defaults to false. - * - * If true, at most page_size of companies are fetched, among which only those - * with open jobs are returned. - * @return Google_Service_CloudTalentSolution_ListCompaniesResponse - */ - public function listProjectsCompanies($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudTalentSolution_ListCompaniesResponse"); - } - /** - * Updates specified company. Company names can't be updated. To update a - * company name, delete the company and all jobs associated with it, and only - * then re-create them. (companies.patch) - * - * @param string $name Required during company update. - * - * The resource name for a company. This is generated by the service when a - * company is created. - * - * The format is "projects/{project_id}/companies/{company_id}", for example, - * "projects/api-test-project/companies/foo". - * @param Google_Service_CloudTalentSolution_UpdateCompanyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudTalentSolution_Company - */ - public function patch($name, Google_Service_CloudTalentSolution_UpdateCompanyRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_CloudTalentSolution_Company"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/Resource/ProjectsJobs.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/Resource/ProjectsJobs.php deleted file mode 100644 index 9aeb6044..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/Resource/ProjectsJobs.php +++ /dev/null @@ -1,219 +0,0 @@ - - * $jobsService = new Google_Service_CloudTalentSolution(...); - * $jobs = $jobsService->jobs; - * - */ -class Google_Service_CloudTalentSolution_Resource_ProjectsJobs extends Google_Service_Resource -{ - /** - * Deletes a list of Jobs by filter. (jobs.batchDelete) - * - * @param string $parent Required. The resource name of the project under which - * the job is created. - * - * The format is "projects/{project_id}", for example, "projects/api-test- - * project". - * @param Google_Service_CloudTalentSolution_BatchDeleteJobsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudTalentSolution_JobsEmpty - */ - public function batchDelete($parent, Google_Service_CloudTalentSolution_BatchDeleteJobsRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('batchDelete', array($params), "Google_Service_CloudTalentSolution_JobsEmpty"); - } - /** - * Creates a new job. - * - * Typically, the job becomes searchable within 10 seconds, but it may take up - * to 5 minutes. (jobs.create) - * - * @param string $parent Required. The resource name of the project under which - * the job is created. - * - * The format is "projects/{project_id}", for example, "projects/api-test- - * project". - * @param Google_Service_CloudTalentSolution_CreateJobRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudTalentSolution_Job - */ - public function create($parent, Google_Service_CloudTalentSolution_CreateJobRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_CloudTalentSolution_Job"); - } - /** - * Deletes the specified job. - * - * Typically, the job becomes unsearchable within 10 seconds, but it may take up - * to 5 minutes. (jobs.delete) - * - * @param string $name Required. The resource name of the job to be deleted. - * - * The format is "projects/{project_id}/jobs/{job_id}", for example, "projects - * /api-test-project/jobs/1234". - * @param array $optParams Optional parameters. - * @return Google_Service_CloudTalentSolution_JobsEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudTalentSolution_JobsEmpty"); - } - /** - * Retrieves the specified job, whose status is OPEN or recently EXPIRED within - * the last 90 days. (jobs.get) - * - * @param string $name Required. The resource name of the job to retrieve. - * - * The format is "projects/{project_id}/jobs/{job_id}", for example, "projects - * /api-test-project/jobs/1234". - * @param array $optParams Optional parameters. - * @return Google_Service_CloudTalentSolution_Job - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudTalentSolution_Job"); - } - /** - * Lists jobs by filter. (jobs.listProjectsJobs) - * - * @param string $parent Required. The resource name of the project under which - * the job is created. - * - * The format is "projects/{project_id}", for example, "projects/api-test- - * project". - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Optional. The starting point of a query result. - * @opt_param int pageSize Optional. The maximum number of jobs to be returned - * per page of results. - * - * If job_view is set to JobView.JOB_VIEW_ID_ONLY, the maximum allowed page size - * is 1000. Otherwise, the maximum allowed page size is 100. - * - * Default is 100 if empty or a number < 1 is specified. - * @opt_param string filter Required. The filter string specifies the jobs to be - * enumerated. - * - * Supported operator: =, AND - * - * The fields eligible for filtering are: - * - * * `companyName` (Required) * `requisitionId` (Optional) - * - * Sample Query: - * - * * companyName = "projects/api-test-project/companies/123" * companyName = - * "projects/api-test-project/companies/123" AND requisitionId = "req-1" - * @opt_param string jobView Optional. The desired job attributes returned for - * jobs in the search response. Defaults to JobView.JOB_VIEW_FULL if no value is - * specified. - * @return Google_Service_CloudTalentSolution_ListJobsResponse - */ - public function listProjectsJobs($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudTalentSolution_ListJobsResponse"); - } - /** - * Updates specified job. - * - * Typically, updated contents become visible in search results within 10 - * seconds, but it may take up to 5 minutes. (jobs.patch) - * - * @param string $name Required during job update. - * - * The resource name for the job. This is generated by the service when a job is - * created. - * - * The format is "projects/{project_id}/jobs/{job_id}", for example, "projects - * /api-test-project/jobs/1234". - * - * Use of this field in job queries and API calls is preferred over the use of - * requisition_id since this value is unique. - * @param Google_Service_CloudTalentSolution_UpdateJobRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudTalentSolution_Job - */ - public function patch($name, Google_Service_CloudTalentSolution_UpdateJobRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_CloudTalentSolution_Job"); - } - /** - * Searches for jobs using the provided SearchJobsRequest. - * - * This call constrains the visibility of jobs present in the database, and only - * returns jobs that the caller has permission to search against. (jobs.search) - * - * @param string $parent Required. The resource name of the project to search - * within. - * - * The format is "projects/{project_id}", for example, "projects/api-test- - * project". - * @param Google_Service_CloudTalentSolution_SearchJobsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudTalentSolution_SearchJobsResponse - */ - public function search($parent, Google_Service_CloudTalentSolution_SearchJobsRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('search', array($params), "Google_Service_CloudTalentSolution_SearchJobsResponse"); - } - /** - * Searches for jobs using the provided SearchJobsRequest. - * - * This API call is intended for the use case of targeting passive job seekers - * (for example, job seekers who have signed up to receive email alerts about - * potential job opportunities), and has different algorithmic adjustments that - * are targeted to passive job seekers. - * - * This call constrains the visibility of jobs present in the database, and only - * returns jobs the caller has permission to search against. - * (jobs.searchForAlert) - * - * @param string $parent Required. The resource name of the project to search - * within. - * - * The format is "projects/{project_id}", for example, "projects/api-test- - * project". - * @param Google_Service_CloudTalentSolution_SearchJobsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudTalentSolution_SearchJobsResponse - */ - public function searchForAlert($parent, Google_Service_CloudTalentSolution_SearchJobsRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('searchForAlert', array($params), "Google_Service_CloudTalentSolution_SearchJobsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/ResponseMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/ResponseMetadata.php deleted file mode 100644 index 23b11a5f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/ResponseMetadata.php +++ /dev/null @@ -1,30 +0,0 @@ -requestId = $requestId; - } - public function getRequestId() - { - return $this->requestId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/SearchJobsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/SearchJobsRequest.php deleted file mode 100644 index 48d54f8f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/SearchJobsRequest.php +++ /dev/null @@ -1,159 +0,0 @@ -disableKeywordMatch = $disableKeywordMatch; - } - public function getDisableKeywordMatch() - { - return $this->disableKeywordMatch; - } - public function setDiversificationLevel($diversificationLevel) - { - $this->diversificationLevel = $diversificationLevel; - } - public function getDiversificationLevel() - { - return $this->diversificationLevel; - } - public function setEnableBroadening($enableBroadening) - { - $this->enableBroadening = $enableBroadening; - } - public function getEnableBroadening() - { - return $this->enableBroadening; - } - /** - * @param Google_Service_CloudTalentSolution_HistogramFacets - */ - public function setHistogramFacets(Google_Service_CloudTalentSolution_HistogramFacets $histogramFacets) - { - $this->histogramFacets = $histogramFacets; - } - /** - * @return Google_Service_CloudTalentSolution_HistogramFacets - */ - public function getHistogramFacets() - { - return $this->histogramFacets; - } - /** - * @param Google_Service_CloudTalentSolution_JobQuery - */ - public function setJobQuery(Google_Service_CloudTalentSolution_JobQuery $jobQuery) - { - $this->jobQuery = $jobQuery; - } - /** - * @return Google_Service_CloudTalentSolution_JobQuery - */ - public function getJobQuery() - { - return $this->jobQuery; - } - public function setJobView($jobView) - { - $this->jobView = $jobView; - } - public function getJobView() - { - return $this->jobView; - } - public function setOffset($offset) - { - $this->offset = $offset; - } - public function getOffset() - { - return $this->offset; - } - public function setOrderBy($orderBy) - { - $this->orderBy = $orderBy; - } - public function getOrderBy() - { - return $this->orderBy; - } - public function setPageSize($pageSize) - { - $this->pageSize = $pageSize; - } - public function getPageSize() - { - return $this->pageSize; - } - public function setPageToken($pageToken) - { - $this->pageToken = $pageToken; - } - public function getPageToken() - { - return $this->pageToken; - } - /** - * @param Google_Service_CloudTalentSolution_RequestMetadata - */ - public function setRequestMetadata(Google_Service_CloudTalentSolution_RequestMetadata $requestMetadata) - { - $this->requestMetadata = $requestMetadata; - } - /** - * @return Google_Service_CloudTalentSolution_RequestMetadata - */ - public function getRequestMetadata() - { - return $this->requestMetadata; - } - public function setRequirePreciseResultSize($requirePreciseResultSize) - { - $this->requirePreciseResultSize = $requirePreciseResultSize; - } - public function getRequirePreciseResultSize() - { - return $this->requirePreciseResultSize; - } - public function setSearchMode($searchMode) - { - $this->searchMode = $searchMode; - } - public function getSearchMode() - { - return $this->searchMode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/SearchJobsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/SearchJobsResponse.php deleted file mode 100644 index d8b397b7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/SearchJobsResponse.php +++ /dev/null @@ -1,138 +0,0 @@ -broadenedQueryJobsCount = $broadenedQueryJobsCount; - } - public function getBroadenedQueryJobsCount() - { - return $this->broadenedQueryJobsCount; - } - public function setEstimatedTotalSize($estimatedTotalSize) - { - $this->estimatedTotalSize = $estimatedTotalSize; - } - public function getEstimatedTotalSize() - { - return $this->estimatedTotalSize; - } - /** - * @param Google_Service_CloudTalentSolution_HistogramResults - */ - public function setHistogramResults(Google_Service_CloudTalentSolution_HistogramResults $histogramResults) - { - $this->histogramResults = $histogramResults; - } - /** - * @return Google_Service_CloudTalentSolution_HistogramResults - */ - public function getHistogramResults() - { - return $this->histogramResults; - } - /** - * @param Google_Service_CloudTalentSolution_Location - */ - public function setLocationFilters($locationFilters) - { - $this->locationFilters = $locationFilters; - } - /** - * @return Google_Service_CloudTalentSolution_Location - */ - public function getLocationFilters() - { - return $this->locationFilters; - } - /** - * @param Google_Service_CloudTalentSolution_MatchingJob - */ - public function setMatchingJobs($matchingJobs) - { - $this->matchingJobs = $matchingJobs; - } - /** - * @return Google_Service_CloudTalentSolution_MatchingJob - */ - public function getMatchingJobs() - { - return $this->matchingJobs; - } - /** - * @param Google_Service_CloudTalentSolution_ResponseMetadata - */ - public function setMetadata(Google_Service_CloudTalentSolution_ResponseMetadata $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_CloudTalentSolution_ResponseMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_CloudTalentSolution_SpellingCorrection - */ - public function setSpellCorrection(Google_Service_CloudTalentSolution_SpellingCorrection $spellCorrection) - { - $this->spellCorrection = $spellCorrection; - } - /** - * @return Google_Service_CloudTalentSolution_SpellingCorrection - */ - public function getSpellCorrection() - { - return $this->spellCorrection; - } - public function setTotalSize($totalSize) - { - $this->totalSize = $totalSize; - } - public function getTotalSize() - { - return $this->totalSize; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/SpellingCorrection.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/SpellingCorrection.php deleted file mode 100644 index bbc10a3a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/SpellingCorrection.php +++ /dev/null @@ -1,39 +0,0 @@ -corrected = $corrected; - } - public function getCorrected() - { - return $this->corrected; - } - public function setCorrectedText($correctedText) - { - $this->correctedText = $correctedText; - } - public function getCorrectedText() - { - return $this->correctedText; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/TimeOfDay.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/TimeOfDay.php deleted file mode 100644 index 88da7f49..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/TimeOfDay.php +++ /dev/null @@ -1,57 +0,0 @@ -hours = $hours; - } - public function getHours() - { - return $this->hours; - } - public function setMinutes($minutes) - { - $this->minutes = $minutes; - } - public function getMinutes() - { - return $this->minutes; - } - public function setNanos($nanos) - { - $this->nanos = $nanos; - } - public function getNanos() - { - return $this->nanos; - } - public function setSeconds($seconds) - { - $this->seconds = $seconds; - } - public function getSeconds() - { - return $this->seconds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/TimestampRange.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/TimestampRange.php deleted file mode 100644 index 211c7976..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/TimestampRange.php +++ /dev/null @@ -1,39 +0,0 @@ -endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/UpdateCompanyRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/UpdateCompanyRequest.php deleted file mode 100644 index 323e0f7b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/UpdateCompanyRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -company = $company; - } - /** - * @return Google_Service_CloudTalentSolution_Company - */ - public function getCompany() - { - return $this->company; - } - public function setUpdateMask($updateMask) - { - $this->updateMask = $updateMask; - } - public function getUpdateMask() - { - return $this->updateMask; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/UpdateJobRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/UpdateJobRequest.php deleted file mode 100644 index 59e1eb2f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTalentSolution/UpdateJobRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -job = $job; - } - /** - * @return Google_Service_CloudTalentSolution_Job - */ - public function getJob() - { - return $this->job; - } - public function setUpdateMask($updateMask) - { - $this->updateMask = $updateMask; - } - public function getUpdateMask() - { - return $this->updateMask; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks.php deleted file mode 100644 index 720d515d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks.php +++ /dev/null @@ -1,311 +0,0 @@ - - * Manages the execution of large numbers of distributed requests.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_CloudTasks extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - - public $projects_locations; - public $projects_locations_queues; - public $projects_locations_queues_tasks; - - /** - * Constructs the internal representation of the CloudTasks service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://cloudtasks.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v2'; - $this->serviceName = 'cloudtasks'; - - $this->projects_locations = new Google_Service_CloudTasks_Resource_ProjectsLocations( - $this, - $this->serviceName, - 'locations', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2/{+name}/locations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->projects_locations_queues = new Google_Service_CloudTasks_Resource_ProjectsLocationsQueues( - $this, - $this->serviceName, - 'queues', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v2/{+parent}/queues', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getIamPolicy' => array( - 'path' => 'v2/{+resource}:getIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2/{+parent}/queues', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'pause' => array( - 'path' => 'v2/{+name}:pause', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'purge' => array( - 'path' => 'v2/{+name}:purge', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'resume' => array( - 'path' => 'v2/{+name}:resume', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setIamPolicy' => array( - 'path' => 'v2/{+resource}:setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => 'v2/{+resource}:testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_locations_queues_tasks = new Google_Service_CloudTasks_Resource_ProjectsLocationsQueuesTasks( - $this, - $this->serviceName, - 'tasks', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v2/{+parent}/tasks', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'responseView' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'v2/{+parent}/tasks', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'responseView' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'run' => array( - 'path' => 'v2/{+name}:run', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/AppEngineHttpRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/AppEngineHttpRequest.php deleted file mode 100644 index c1f296ff..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/AppEngineHttpRequest.php +++ /dev/null @@ -1,73 +0,0 @@ -appEngineRouting = $appEngineRouting; - } - /** - * @return Google_Service_CloudTasks_AppEngineRouting - */ - public function getAppEngineRouting() - { - return $this->appEngineRouting; - } - public function setBody($body) - { - $this->body = $body; - } - public function getBody() - { - return $this->body; - } - public function setHeaders($headers) - { - $this->headers = $headers; - } - public function getHeaders() - { - return $this->headers; - } - public function setHttpMethod($httpMethod) - { - $this->httpMethod = $httpMethod; - } - public function getHttpMethod() - { - return $this->httpMethod; - } - public function setRelativeUri($relativeUri) - { - $this->relativeUri = $relativeUri; - } - public function getRelativeUri() - { - return $this->relativeUri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/AppEngineRouting.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/AppEngineRouting.php deleted file mode 100644 index 27c0fbff..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/AppEngineRouting.php +++ /dev/null @@ -1,57 +0,0 @@ -host = $host; - } - public function getHost() - { - return $this->host; - } - public function setInstance($instance) - { - $this->instance = $instance; - } - public function getInstance() - { - return $this->instance; - } - public function setService($service) - { - $this->service = $service; - } - public function getService() - { - return $this->service; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/Attempt.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/Attempt.php deleted file mode 100644 index 82da1f7d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/Attempt.php +++ /dev/null @@ -1,64 +0,0 @@ -dispatchTime = $dispatchTime; - } - public function getDispatchTime() - { - return $this->dispatchTime; - } - /** - * @param Google_Service_CloudTasks_Status - */ - public function setResponseStatus(Google_Service_CloudTasks_Status $responseStatus) - { - $this->responseStatus = $responseStatus; - } - /** - * @return Google_Service_CloudTasks_Status - */ - public function getResponseStatus() - { - return $this->responseStatus; - } - public function setResponseTime($responseTime) - { - $this->responseTime = $responseTime; - } - public function getResponseTime() - { - return $this->responseTime; - } - public function setScheduleTime($scheduleTime) - { - $this->scheduleTime = $scheduleTime; - } - public function getScheduleTime() - { - return $this->scheduleTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/Binding.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/Binding.php deleted file mode 100644 index 17205e8d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/Binding.php +++ /dev/null @@ -1,56 +0,0 @@ -condition = $condition; - } - /** - * @return Google_Service_CloudTasks_Expr - */ - public function getCondition() - { - return $this->condition; - } - public function setMembers($members) - { - $this->members = $members; - } - public function getMembers() - { - return $this->members; - } - public function setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/CloudtasksEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/CloudtasksEmpty.php deleted file mode 100644 index e4a897e7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/CloudtasksEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -responseView = $responseView; - } - public function getResponseView() - { - return $this->responseView; - } - /** - * @param Google_Service_CloudTasks_Task - */ - public function setTask(Google_Service_CloudTasks_Task $task) - { - $this->task = $task; - } - /** - * @return Google_Service_CloudTasks_Task - */ - public function getTask() - { - return $this->task; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/Expr.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/Expr.php deleted file mode 100644 index c63e5542..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/Expr.php +++ /dev/null @@ -1,57 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setExpression($expression) - { - $this->expression = $expression; - } - public function getExpression() - { - return $this->expression; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/GetIamPolicyRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/GetIamPolicyRequest.php deleted file mode 100644 index 83f704db..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/GetIamPolicyRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -options = $options; - } - /** - * @return Google_Service_CloudTasks_GetPolicyOptions - */ - public function getOptions() - { - return $this->options; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/GetPolicyOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/GetPolicyOptions.php deleted file mode 100644 index bf679eff..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/GetPolicyOptions.php +++ /dev/null @@ -1,30 +0,0 @@ -requestedPolicyVersion = $requestedPolicyVersion; - } - public function getRequestedPolicyVersion() - { - return $this->requestedPolicyVersion; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/HttpRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/HttpRequest.php deleted file mode 100644 index 28ae9156..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/HttpRequest.php +++ /dev/null @@ -1,89 +0,0 @@ -body = $body; - } - public function getBody() - { - return $this->body; - } - public function setHeaders($headers) - { - $this->headers = $headers; - } - public function getHeaders() - { - return $this->headers; - } - public function setHttpMethod($httpMethod) - { - $this->httpMethod = $httpMethod; - } - public function getHttpMethod() - { - return $this->httpMethod; - } - /** - * @param Google_Service_CloudTasks_OAuthToken - */ - public function setOauthToken(Google_Service_CloudTasks_OAuthToken $oauthToken) - { - $this->oauthToken = $oauthToken; - } - /** - * @return Google_Service_CloudTasks_OAuthToken - */ - public function getOauthToken() - { - return $this->oauthToken; - } - /** - * @param Google_Service_CloudTasks_OidcToken - */ - public function setOidcToken(Google_Service_CloudTasks_OidcToken $oidcToken) - { - $this->oidcToken = $oidcToken; - } - /** - * @return Google_Service_CloudTasks_OidcToken - */ - public function getOidcToken() - { - return $this->oidcToken; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/ListLocationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/ListLocationsResponse.php deleted file mode 100644 index 2f5c2977..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/ListLocationsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -locations = $locations; - } - /** - * @return Google_Service_CloudTasks_Location - */ - public function getLocations() - { - return $this->locations; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/ListQueuesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/ListQueuesResponse.php deleted file mode 100644 index c8b4f328..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/ListQueuesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_CloudTasks_Queue - */ - public function setQueues($queues) - { - $this->queues = $queues; - } - /** - * @return Google_Service_CloudTasks_Queue - */ - public function getQueues() - { - return $this->queues; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/ListTasksResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/ListTasksResponse.php deleted file mode 100644 index c1f3a87b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/ListTasksResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_CloudTasks_Task - */ - public function setTasks($tasks) - { - $this->tasks = $tasks; - } - /** - * @return Google_Service_CloudTasks_Task - */ - public function getTasks() - { - return $this->tasks; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/Location.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/Location.php deleted file mode 100644 index 1785fe11..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/Location.php +++ /dev/null @@ -1,66 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setLocationId($locationId) - { - $this->locationId = $locationId; - } - public function getLocationId() - { - return $this->locationId; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/OAuthToken.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/OAuthToken.php deleted file mode 100644 index 191e5033..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/OAuthToken.php +++ /dev/null @@ -1,39 +0,0 @@ -scope = $scope; - } - public function getScope() - { - return $this->scope; - } - public function setServiceAccountEmail($serviceAccountEmail) - { - $this->serviceAccountEmail = $serviceAccountEmail; - } - public function getServiceAccountEmail() - { - return $this->serviceAccountEmail; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/OidcToken.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/OidcToken.php deleted file mode 100644 index ec81102f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/OidcToken.php +++ /dev/null @@ -1,39 +0,0 @@ -audience = $audience; - } - public function getAudience() - { - return $this->audience; - } - public function setServiceAccountEmail($serviceAccountEmail) - { - $this->serviceAccountEmail = $serviceAccountEmail; - } - public function getServiceAccountEmail() - { - return $this->serviceAccountEmail; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/PauseQueueRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/PauseQueueRequest.php deleted file mode 100644 index 49858eb1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/PauseQueueRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -bindings = $bindings; - } - /** - * @return Google_Service_CloudTasks_Binding - */ - public function getBindings() - { - return $this->bindings; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/PurgeQueueRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/PurgeQueueRequest.php deleted file mode 100644 index d21297eb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/PurgeQueueRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -appEngineRoutingOverride = $appEngineRoutingOverride; - } - /** - * @return Google_Service_CloudTasks_AppEngineRouting - */ - public function getAppEngineRoutingOverride() - { - return $this->appEngineRoutingOverride; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPurgeTime($purgeTime) - { - $this->purgeTime = $purgeTime; - } - public function getPurgeTime() - { - return $this->purgeTime; - } - /** - * @param Google_Service_CloudTasks_RateLimits - */ - public function setRateLimits(Google_Service_CloudTasks_RateLimits $rateLimits) - { - $this->rateLimits = $rateLimits; - } - /** - * @return Google_Service_CloudTasks_RateLimits - */ - public function getRateLimits() - { - return $this->rateLimits; - } - /** - * @param Google_Service_CloudTasks_RetryConfig - */ - public function setRetryConfig(Google_Service_CloudTasks_RetryConfig $retryConfig) - { - $this->retryConfig = $retryConfig; - } - /** - * @return Google_Service_CloudTasks_RetryConfig - */ - public function getRetryConfig() - { - return $this->retryConfig; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/RateLimits.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/RateLimits.php deleted file mode 100644 index 7a19a10d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/RateLimits.php +++ /dev/null @@ -1,48 +0,0 @@ -maxBurstSize = $maxBurstSize; - } - public function getMaxBurstSize() - { - return $this->maxBurstSize; - } - public function setMaxConcurrentDispatches($maxConcurrentDispatches) - { - $this->maxConcurrentDispatches = $maxConcurrentDispatches; - } - public function getMaxConcurrentDispatches() - { - return $this->maxConcurrentDispatches; - } - public function setMaxDispatchesPerSecond($maxDispatchesPerSecond) - { - $this->maxDispatchesPerSecond = $maxDispatchesPerSecond; - } - public function getMaxDispatchesPerSecond() - { - return $this->maxDispatchesPerSecond; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/Resource/Projects.php deleted file mode 100644 index be1aea86..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/Resource/Projects.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $cloudtasksService = new Google_Service_CloudTasks(...); - * $projects = $cloudtasksService->projects; - * - */ -class Google_Service_CloudTasks_Resource_Projects extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/Resource/ProjectsLocations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/Resource/ProjectsLocations.php deleted file mode 100644 index 2029bd72..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/Resource/ProjectsLocations.php +++ /dev/null @@ -1,60 +0,0 @@ - - * $cloudtasksService = new Google_Service_CloudTasks(...); - * $locations = $cloudtasksService->locations; - * - */ -class Google_Service_CloudTasks_Resource_ProjectsLocations extends Google_Service_Resource -{ - /** - * Gets information about a location. (locations.get) - * - * @param string $name Resource name for the location. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudTasks_Location - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudTasks_Location"); - } - /** - * Lists information about the supported locations for this service. - * (locations.listProjectsLocations) - * - * @param string $name The resource that owns the locations collection, if - * applicable. - * @param array $optParams Optional parameters. - * - * @opt_param string filter The standard list filter. - * @opt_param string pageToken The standard list page token. - * @opt_param int pageSize The standard list page size. - * @return Google_Service_CloudTasks_ListLocationsResponse - */ - public function listProjectsLocations($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudTasks_ListLocationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/Resource/ProjectsLocationsQueues.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/Resource/ProjectsLocationsQueues.php deleted file mode 100644 index 23df23b5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/Resource/ProjectsLocationsQueues.php +++ /dev/null @@ -1,318 +0,0 @@ - - * $cloudtasksService = new Google_Service_CloudTasks(...); - * $queues = $cloudtasksService->queues; - * - */ -class Google_Service_CloudTasks_Resource_ProjectsLocationsQueues extends Google_Service_Resource -{ - /** - * Creates a queue. - * - * Queues created with this method allow tasks to live for a maximum of 31 days. - * After a task is 31 days old, the task will be deleted regardless of whether - * it was dispatched or not. - * - * WARNING: Using this method may have unintended side effects if you are using - * an App Engine `queue.yaml` or `queue.xml` file to manage your queues. Read - * [Overview of Queue Management and - * queue.yaml](https://cloud.google.com/tasks/docs/queue-yaml) before using this - * method. (queues.create) - * - * @param string $parent Required. The location name in which the queue will be - * created. For example: `projects/PROJECT_ID/locations/LOCATION_ID` - * - * The list of allowed locations can be obtained by calling Cloud Tasks' - * implementation of ListLocations. - * @param Google_Service_CloudTasks_Queue $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudTasks_Queue - */ - public function create($parent, Google_Service_CloudTasks_Queue $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_CloudTasks_Queue"); - } - /** - * Deletes a queue. - * - * This command will delete the queue even if it has tasks in it. - * - * Note: If you delete a queue, a queue with the same name can't be created for - * 7 days. - * - * WARNING: Using this method may have unintended side effects if you are using - * an App Engine `queue.yaml` or `queue.xml` file to manage your queues. Read - * [Overview of Queue Management and - * queue.yaml](https://cloud.google.com/tasks/docs/queue-yaml) before using this - * method. (queues.delete) - * - * @param string $name Required. The queue name. For example: - * `projects/PROJECT_ID/locations/LOCATION_ID/queues/QUEUE_ID` - * @param array $optParams Optional parameters. - * @return Google_Service_CloudTasks_CloudtasksEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudTasks_CloudtasksEmpty"); - } - /** - * Gets a queue. (queues.get) - * - * @param string $name Required. The resource name of the queue. For example: - * `projects/PROJECT_ID/locations/LOCATION_ID/queues/QUEUE_ID` - * @param array $optParams Optional parameters. - * @return Google_Service_CloudTasks_Queue - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudTasks_Queue"); - } - /** - * Gets the access control policy for a Queue. Returns an empty policy if the - * resource exists and does not have a policy set. - * - * Authorization requires the following [Google - * IAM](https://cloud.google.com/iam) permission on the specified resource - * parent: - * - * * `cloudtasks.queues.getIamPolicy` (queues.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 Google_Service_CloudTasks_GetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudTasks_Policy - */ - public function getIamPolicy($resource, Google_Service_CloudTasks_GetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_CloudTasks_Policy"); - } - /** - * Lists queues. - * - * Queues are returned in lexicographical order. - * (queues.listProjectsLocationsQueues) - * - * @param string $parent Required. The location name. For example: - * `projects/PROJECT_ID/locations/LOCATION_ID` - * @param array $optParams Optional parameters. - * - * @opt_param string filter `filter` can be used to specify a subset of queues. - * Any Queue field can be used as a filter and several operators as supported. - * For example: `<=, <, >=, >, !=, =, :`. The filter syntax is the same as - * described in [Stackdriver's Advanced Logs - * Filters](https://cloud.google.com/logging/docs/view/advanced_filters). - * - * Sample filter "state: PAUSED". - * - * Note that using filters might cause fewer queues than the requested page_size - * to be returned. - * @opt_param string pageToken A token identifying the page of results to - * return. - * - * To request the first page results, page_token must be empty. To request the - * next page of results, page_token must be the value of next_page_token - * returned from the previous call to ListQueues method. It is an error to - * switch the value of the filter while iterating through pages. - * @opt_param int pageSize Requested page size. - * - * The maximum page size is 9800. If unspecified, the page size will be the - * maximum. Fewer queues than requested might be returned, even if more queues - * exist; use the next_page_token in the response to determine if more queues - * exist. - * @return Google_Service_CloudTasks_ListQueuesResponse - */ - public function listProjectsLocationsQueues($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudTasks_ListQueuesResponse"); - } - /** - * Updates a queue. - * - * This method creates the queue if it does not exist and updates the queue if - * it does exist. - * - * Queues created with this method allow tasks to live for a maximum of 31 days. - * After a task is 31 days old, the task will be deleted regardless of whether - * it was dispatched or not. - * - * WARNING: Using this method may have unintended side effects if you are using - * an App Engine `queue.yaml` or `queue.xml` file to manage your queues. Read - * [Overview of Queue Management and - * queue.yaml](https://cloud.google.com/tasks/docs/queue-yaml) before using this - * method. (queues.patch) - * - * @param string $name Caller-specified and required in CreateQueue, after which - * it becomes output only. - * - * The queue name. - * - * The queue name must have the following format: - * `projects/PROJECT_ID/locations/LOCATION_ID/queues/QUEUE_ID` - * - * * `PROJECT_ID` can contain letters ([A-Za-z]), numbers ([0-9]), hyphens - * (-), colons (:), or periods (.). For more information, see [Identifying - * projects](https://cloud.google.com/resource-manager/docs/creating-managing- - * projects#identifying_projects) * `LOCATION_ID` is the canonical ID for the - * queue's location. The list of available locations can be obtained by - * calling ListLocations. For more information, see - * https://cloud.google.com/about/locations/. * `QUEUE_ID` can contain letters - * ([A-Za-z]), numbers ([0-9]), or hyphens (-). The maximum length is 100 - * characters. - * @param Google_Service_CloudTasks_Queue $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask A mask used to specify which fields of the queue - * are being updated. - * - * If empty, then all fields will be updated. - * @return Google_Service_CloudTasks_Queue - */ - public function patch($name, Google_Service_CloudTasks_Queue $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_CloudTasks_Queue"); - } - /** - * Pauses the queue. - * - * If a queue is paused then the system will stop dispatching tasks until the - * queue is resumed via ResumeQueue. Tasks can still be added when the queue is - * paused. A queue is paused if its state is PAUSED. (queues.pause) - * - * @param string $name Required. The queue name. For example: - * `projects/PROJECT_ID/location/LOCATION_ID/queues/QUEUE_ID` - * @param Google_Service_CloudTasks_PauseQueueRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudTasks_Queue - */ - public function pause($name, Google_Service_CloudTasks_PauseQueueRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('pause', array($params), "Google_Service_CloudTasks_Queue"); - } - /** - * Purges a queue by deleting all of its tasks. - * - * All tasks created before this method is called are permanently deleted. - * - * Purge operations can take up to one minute to take effect. Tasks might be - * dispatched before the purge takes effect. A purge is irreversible. - * (queues.purge) - * - * @param string $name Required. The queue name. For example: - * `projects/PROJECT_ID/location/LOCATION_ID/queues/QUEUE_ID` - * @param Google_Service_CloudTasks_PurgeQueueRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudTasks_Queue - */ - public function purge($name, Google_Service_CloudTasks_PurgeQueueRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('purge', array($params), "Google_Service_CloudTasks_Queue"); - } - /** - * Resume a queue. - * - * This method resumes a queue after it has been PAUSED or DISABLED. The state - * of a queue is stored in the queue's state; after calling this method it will - * be set to RUNNING. - * - * WARNING: Resuming many high-QPS queues at the same time can lead to target - * overloading. If you are resuming high-QPS queues, follow the 500/50/5 pattern - * described in [Managing Cloud Tasks Scaling - * Risks](https://cloud.google.com/tasks/docs/manage-cloud-task-scaling). - * (queues.resume) - * - * @param string $name Required. The queue name. For example: - * `projects/PROJECT_ID/location/LOCATION_ID/queues/QUEUE_ID` - * @param Google_Service_CloudTasks_ResumeQueueRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudTasks_Queue - */ - public function resume($name, Google_Service_CloudTasks_ResumeQueueRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('resume', array($params), "Google_Service_CloudTasks_Queue"); - } - /** - * Sets the access control policy for a Queue. Replaces any existing policy. - * - * Note: The Cloud Console does not check queue-level IAM permissions yet. - * Project-level permissions are required to use the Cloud Console. - * - * Authorization requires the following [Google - * IAM](https://cloud.google.com/iam) permission on the specified resource - * parent: - * - * * `cloudtasks.queues.setIamPolicy` (queues.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_CloudTasks_SetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudTasks_Policy - */ - public function setIamPolicy($resource, Google_Service_CloudTasks_SetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_CloudTasks_Policy"); - } - /** - * Returns permissions that a caller has on a Queue. 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. (queues.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_CloudTasks_TestIamPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudTasks_TestIamPermissionsResponse - */ - public function testIamPermissions($resource, Google_Service_CloudTasks_TestIamPermissionsRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_CloudTasks_TestIamPermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/Resource/ProjectsLocationsQueuesTasks.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/Resource/ProjectsLocationsQueuesTasks.php deleted file mode 100644 index ac20c7aa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/Resource/ProjectsLocationsQueuesTasks.php +++ /dev/null @@ -1,172 +0,0 @@ - - * $cloudtasksService = new Google_Service_CloudTasks(...); - * $tasks = $cloudtasksService->tasks; - * - */ -class Google_Service_CloudTasks_Resource_ProjectsLocationsQueuesTasks extends Google_Service_Resource -{ - /** - * Creates a task and adds it to a queue. - * - * Tasks cannot be updated after creation; there is no UpdateTask command. - * - * * The maximum task size is 100KB. (tasks.create) - * - * @param string $parent Required. The queue name. For example: - * `projects/PROJECT_ID/locations/LOCATION_ID/queues/QUEUE_ID` - * - * The queue must already exist. - * @param Google_Service_CloudTasks_CreateTaskRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudTasks_Task - */ - public function create($parent, Google_Service_CloudTasks_CreateTaskRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_CloudTasks_Task"); - } - /** - * Deletes a task. - * - * A task can be deleted if it is scheduled or dispatched. A task cannot be - * deleted if it has executed successfully or permanently failed. (tasks.delete) - * - * @param string $name Required. The task name. For example: - * `projects/PROJECT_ID/locations/LOCATION_ID/queues/QUEUE_ID/tasks/TASK_ID` - * @param array $optParams Optional parameters. - * @return Google_Service_CloudTasks_CloudtasksEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudTasks_CloudtasksEmpty"); - } - /** - * Gets a task. (tasks.get) - * - * @param string $name Required. The task name. For example: - * `projects/PROJECT_ID/locations/LOCATION_ID/queues/QUEUE_ID/tasks/TASK_ID` - * @param array $optParams Optional parameters. - * - * @opt_param string responseView The response_view specifies which subset of - * the Task will be returned. - * - * By default response_view is BASIC; not all information is retrieved by - * default because some data, such as payloads, might be desirable to return - * only when needed because of its large size or because of the sensitivity of - * data that it contains. - * - * Authorization for FULL requires `cloudtasks.tasks.fullView` [Google - * IAM](https://cloud.google.com/iam/) permission on the Task resource. - * @return Google_Service_CloudTasks_Task - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudTasks_Task"); - } - /** - * Lists the tasks in a queue. - * - * By default, only the BASIC view is retrieved due to performance - * considerations; response_view controls the subset of information which is - * returned. - * - * The tasks may be returned in any order. The ordering may change at any time. - * (tasks.listProjectsLocationsQueuesTasks) - * - * @param string $parent Required. The queue name. For example: - * `projects/PROJECT_ID/locations/LOCATION_ID/queues/QUEUE_ID` - * @param array $optParams Optional parameters. - * - * @opt_param string responseView The response_view specifies which subset of - * the Task will be returned. - * - * By default response_view is BASIC; not all information is retrieved by - * default because some data, such as payloads, might be desirable to return - * only when needed because of its large size or because of the sensitivity of - * data that it contains. - * - * Authorization for FULL requires `cloudtasks.tasks.fullView` [Google - * IAM](https://cloud.google.com/iam/) permission on the Task resource. - * @opt_param string pageToken A token identifying the page of results to - * return. - * - * To request the first page results, page_token must be empty. To request the - * next page of results, page_token must be the value of next_page_token - * returned from the previous call to ListTasks method. - * - * The page token is valid for only 2 hours. - * @opt_param int pageSize Maximum page size. - * - * Fewer tasks than requested might be returned, even if more tasks exist; use - * next_page_token in the response to determine if more tasks exist. - * - * The maximum page size is 1000. If unspecified, the page size will be the - * maximum. - * @return Google_Service_CloudTasks_ListTasksResponse - */ - public function listProjectsLocationsQueuesTasks($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudTasks_ListTasksResponse"); - } - /** - * Forces a task to run now. - * - * When this method is called, Cloud Tasks will dispatch the task, even if the - * task is already running, the queue has reached its RateLimits or is PAUSED. - * - * This command is meant to be used for manual debugging. For example, RunTask - * can be used to retry a failed task after a fix has been made or to manually - * force a task to be dispatched now. - * - * The dispatched task is returned. That is, the task that is returned contains - * the status after the task is dispatched but before the task is received by - * its target. - * - * If Cloud Tasks receives a successful response from the task's target, then - * the task will be deleted; otherwise the task's schedule_time will be reset to - * the time that RunTask was called plus the retry delay specified in the - * queue's RetryConfig. - * - * RunTask returns NOT_FOUND when it is called on a task that has already - * succeeded or permanently failed. (tasks.run) - * - * @param string $name Required. The task name. For example: - * `projects/PROJECT_ID/locations/LOCATION_ID/queues/QUEUE_ID/tasks/TASK_ID` - * @param Google_Service_CloudTasks_RunTaskRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudTasks_Task - */ - public function run($name, Google_Service_CloudTasks_RunTaskRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('run', array($params), "Google_Service_CloudTasks_Task"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/ResumeQueueRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/ResumeQueueRequest.php deleted file mode 100644 index b3171b50..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/ResumeQueueRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -maxAttempts = $maxAttempts; - } - public function getMaxAttempts() - { - return $this->maxAttempts; - } - public function setMaxBackoff($maxBackoff) - { - $this->maxBackoff = $maxBackoff; - } - public function getMaxBackoff() - { - return $this->maxBackoff; - } - public function setMaxDoublings($maxDoublings) - { - $this->maxDoublings = $maxDoublings; - } - public function getMaxDoublings() - { - return $this->maxDoublings; - } - public function setMaxRetryDuration($maxRetryDuration) - { - $this->maxRetryDuration = $maxRetryDuration; - } - public function getMaxRetryDuration() - { - return $this->maxRetryDuration; - } - public function setMinBackoff($minBackoff) - { - $this->minBackoff = $minBackoff; - } - public function getMinBackoff() - { - return $this->minBackoff; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/RunTaskRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/RunTaskRequest.php deleted file mode 100644 index 84304c9d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/RunTaskRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -responseView = $responseView; - } - public function getResponseView() - { - return $this->responseView; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/SetIamPolicyRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/SetIamPolicyRequest.php deleted file mode 100644 index 74bdbfbb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/SetIamPolicyRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -policy = $policy; - } - /** - * @return Google_Service_CloudTasks_Policy - */ - public function getPolicy() - { - return $this->policy; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/Status.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/Status.php deleted file mode 100644 index 495d702b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/Status.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/Task.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/Task.php deleted file mode 100644 index 71925566..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/Task.php +++ /dev/null @@ -1,148 +0,0 @@ -appEngineHttpRequest = $appEngineHttpRequest; - } - /** - * @return Google_Service_CloudTasks_AppEngineHttpRequest - */ - public function getAppEngineHttpRequest() - { - return $this->appEngineHttpRequest; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setDispatchCount($dispatchCount) - { - $this->dispatchCount = $dispatchCount; - } - public function getDispatchCount() - { - return $this->dispatchCount; - } - public function setDispatchDeadline($dispatchDeadline) - { - $this->dispatchDeadline = $dispatchDeadline; - } - public function getDispatchDeadline() - { - return $this->dispatchDeadline; - } - /** - * @param Google_Service_CloudTasks_Attempt - */ - public function setFirstAttempt(Google_Service_CloudTasks_Attempt $firstAttempt) - { - $this->firstAttempt = $firstAttempt; - } - /** - * @return Google_Service_CloudTasks_Attempt - */ - public function getFirstAttempt() - { - return $this->firstAttempt; - } - /** - * @param Google_Service_CloudTasks_HttpRequest - */ - public function setHttpRequest(Google_Service_CloudTasks_HttpRequest $httpRequest) - { - $this->httpRequest = $httpRequest; - } - /** - * @return Google_Service_CloudTasks_HttpRequest - */ - public function getHttpRequest() - { - return $this->httpRequest; - } - /** - * @param Google_Service_CloudTasks_Attempt - */ - public function setLastAttempt(Google_Service_CloudTasks_Attempt $lastAttempt) - { - $this->lastAttempt = $lastAttempt; - } - /** - * @return Google_Service_CloudTasks_Attempt - */ - public function getLastAttempt() - { - return $this->lastAttempt; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setResponseCount($responseCount) - { - $this->responseCount = $responseCount; - } - public function getResponseCount() - { - return $this->responseCount; - } - public function setScheduleTime($scheduleTime) - { - $this->scheduleTime = $scheduleTime; - } - public function getScheduleTime() - { - return $this->scheduleTime; - } - public function setView($view) - { - $this->view = $view; - } - public function getView() - { - return $this->view; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/TestIamPermissionsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/TestIamPermissionsRequest.php deleted file mode 100644 index 07c4d6d6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/TestIamPermissionsRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/TestIamPermissionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/TestIamPermissionsResponse.php deleted file mode 100644 index 8476f51d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTasks/TestIamPermissionsResponse.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace.php deleted file mode 100644 index 9dc1dcc6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace.php +++ /dev/null @@ -1,103 +0,0 @@ - - * Sends application trace data to Stackdriver Trace for viewing. Trace data is - * collected for all App Engine applications by default. Trace data from other - * applications can be provided using this API. This library is used to interact - * with the Trace API directly. If you are looking to instrument your - * application for Stackdriver Trace, we recommend using OpenCensus.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_CloudTrace extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** Write Trace data for a project or application. */ - const TRACE_APPEND = - "https://www.googleapis.com/auth/trace.append"; - - public $projects_traces; - public $projects_traces_spans; - - /** - * Constructs the internal representation of the CloudTrace service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://cloudtrace.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v2'; - $this->serviceName = 'cloudtrace'; - - $this->projects_traces = new Google_Service_CloudTrace_Resource_ProjectsTraces( - $this, - $this->serviceName, - 'traces', - array( - 'methods' => array( - 'batchWrite' => array( - 'path' => 'v2/{+name}/traces:batchWrite', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_traces_spans = new Google_Service_CloudTrace_Resource_ProjectsTracesSpans( - $this, - $this->serviceName, - 'spans', - array( - 'methods' => array( - 'createSpan' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/Annotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/Annotation.php deleted file mode 100644 index 4b67d64c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/Annotation.php +++ /dev/null @@ -1,53 +0,0 @@ -attributes = $attributes; - } - /** - * @return Google_Service_CloudTrace_Attributes - */ - public function getAttributes() - { - return $this->attributes; - } - /** - * @param Google_Service_CloudTrace_TruncatableString - */ - public function setDescription(Google_Service_CloudTrace_TruncatableString $description) - { - $this->description = $description; - } - /** - * @return Google_Service_CloudTrace_TruncatableString - */ - public function getDescription() - { - return $this->description; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/AttributeValue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/AttributeValue.php deleted file mode 100644 index 586646dd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/AttributeValue.php +++ /dev/null @@ -1,55 +0,0 @@ -boolValue = $boolValue; - } - public function getBoolValue() - { - return $this->boolValue; - } - public function setIntValue($intValue) - { - $this->intValue = $intValue; - } - public function getIntValue() - { - return $this->intValue; - } - /** - * @param Google_Service_CloudTrace_TruncatableString - */ - public function setStringValue(Google_Service_CloudTrace_TruncatableString $stringValue) - { - $this->stringValue = $stringValue; - } - /** - * @return Google_Service_CloudTrace_TruncatableString - */ - public function getStringValue() - { - return $this->stringValue; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/Attributes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/Attributes.php deleted file mode 100644 index d93afbda..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/Attributes.php +++ /dev/null @@ -1,46 +0,0 @@ -attributeMap = $attributeMap; - } - /** - * @return Google_Service_CloudTrace_AttributeValue - */ - public function getAttributeMap() - { - return $this->attributeMap; - } - public function setDroppedAttributesCount($droppedAttributesCount) - { - $this->droppedAttributesCount = $droppedAttributesCount; - } - public function getDroppedAttributesCount() - { - return $this->droppedAttributesCount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/BatchWriteSpansRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/BatchWriteSpansRequest.php deleted file mode 100644 index 41a2b49e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/BatchWriteSpansRequest.php +++ /dev/null @@ -1,38 +0,0 @@ -spans = $spans; - } - /** - * @return Google_Service_CloudTrace_Span - */ - public function getSpans() - { - return $this->spans; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/CloudtraceEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/CloudtraceEmpty.php deleted file mode 100644 index 04ad88a3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/CloudtraceEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -attributes = $attributes; - } - /** - * @return Google_Service_CloudTrace_Attributes - */ - public function getAttributes() - { - return $this->attributes; - } - public function setSpanId($spanId) - { - $this->spanId = $spanId; - } - public function getSpanId() - { - return $this->spanId; - } - public function setTraceId($traceId) - { - $this->traceId = $traceId; - } - public function getTraceId() - { - return $this->traceId; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/Links.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/Links.php deleted file mode 100644 index 312937ee..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/Links.php +++ /dev/null @@ -1,47 +0,0 @@ -droppedLinksCount = $droppedLinksCount; - } - public function getDroppedLinksCount() - { - return $this->droppedLinksCount; - } - /** - * @param Google_Service_CloudTrace_Link - */ - public function setLink($link) - { - $this->link = $link; - } - /** - * @return Google_Service_CloudTrace_Link - */ - public function getLink() - { - return $this->link; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/MessageEvent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/MessageEvent.php deleted file mode 100644 index 252b2ec7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/MessageEvent.php +++ /dev/null @@ -1,57 +0,0 @@ -compressedSizeBytes = $compressedSizeBytes; - } - public function getCompressedSizeBytes() - { - return $this->compressedSizeBytes; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setUncompressedSizeBytes($uncompressedSizeBytes) - { - $this->uncompressedSizeBytes = $uncompressedSizeBytes; - } - public function getUncompressedSizeBytes() - { - return $this->uncompressedSizeBytes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/Module.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/Module.php deleted file mode 100644 index fb3b6323..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/Module.php +++ /dev/null @@ -1,53 +0,0 @@ -buildId = $buildId; - } - /** - * @return Google_Service_CloudTrace_TruncatableString - */ - public function getBuildId() - { - return $this->buildId; - } - /** - * @param Google_Service_CloudTrace_TruncatableString - */ - public function setModule(Google_Service_CloudTrace_TruncatableString $module) - { - $this->module = $module; - } - /** - * @return Google_Service_CloudTrace_TruncatableString - */ - public function getModule() - { - return $this->module; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/Resource/Projects.php deleted file mode 100644 index c7e0476e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/Resource/Projects.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $cloudtraceService = new Google_Service_CloudTrace(...); - * $projects = $cloudtraceService->projects; - * - */ -class Google_Service_CloudTrace_Resource_Projects extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/Resource/ProjectsTraces.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/Resource/ProjectsTraces.php deleted file mode 100644 index 84766f0c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/Resource/ProjectsTraces.php +++ /dev/null @@ -1,45 +0,0 @@ - - * $cloudtraceService = new Google_Service_CloudTrace(...); - * $traces = $cloudtraceService->traces; - * - */ -class Google_Service_CloudTrace_Resource_ProjectsTraces extends Google_Service_Resource -{ - /** - * Sends new spans to new or existing traces. You cannot update existing spans. - * In this case, writing traces is not considered an active developer method - * since traces are machine generated. (traces.batchWrite) - * - * @param string $name Required. The name of the project where the spans belong. - * The format is `projects/[PROJECT_ID]`. - * @param Google_Service_CloudTrace_BatchWriteSpansRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudTrace_CloudtraceEmpty - */ - public function batchWrite($name, Google_Service_CloudTrace_BatchWriteSpansRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('batchWrite', array($params), "Google_Service_CloudTrace_CloudtraceEmpty"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/Resource/ProjectsTracesSpans.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/Resource/ProjectsTracesSpans.php deleted file mode 100644 index 0c22f9b2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/Resource/ProjectsTracesSpans.php +++ /dev/null @@ -1,50 +0,0 @@ - - * $cloudtraceService = new Google_Service_CloudTrace(...); - * $spans = $cloudtraceService->spans; - * - */ -class Google_Service_CloudTrace_Resource_ProjectsTracesSpans extends Google_Service_Resource -{ - /** - * Creates a new span. In this case, writing traces is not considered an active - * developer method since traces are machine generated. (spans.createSpan) - * - * @param string $name The resource name of the span in the following format: - * - * projects/[PROJECT_ID]/traces/[TRACE_ID]/spans/SPAN_ID is a unique - * identifier for a trace within a project; it is a 32-character hexadecimal - * encoding of a 16-byte array. - * - * [SPAN_ID] is a unique identifier for a span within a trace; it is a - * 16-character hexadecimal encoding of an 8-byte array. - * @param Google_Service_CloudTrace_Span $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudTrace_Span - */ - public function createSpan($name, Google_Service_CloudTrace_Span $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('createSpan', array($params), "Google_Service_CloudTrace_Span"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/Span.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/Span.php deleted file mode 100644 index 7a45f010..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/Span.php +++ /dev/null @@ -1,189 +0,0 @@ -attributes = $attributes; - } - /** - * @return Google_Service_CloudTrace_Attributes - */ - public function getAttributes() - { - return $this->attributes; - } - public function setChildSpanCount($childSpanCount) - { - $this->childSpanCount = $childSpanCount; - } - public function getChildSpanCount() - { - return $this->childSpanCount; - } - /** - * @param Google_Service_CloudTrace_TruncatableString - */ - public function setDisplayName(Google_Service_CloudTrace_TruncatableString $displayName) - { - $this->displayName = $displayName; - } - /** - * @return Google_Service_CloudTrace_TruncatableString - */ - public function getDisplayName() - { - return $this->displayName; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - /** - * @param Google_Service_CloudTrace_Links - */ - public function setLinks(Google_Service_CloudTrace_Links $links) - { - $this->links = $links; - } - /** - * @return Google_Service_CloudTrace_Links - */ - public function getLinks() - { - return $this->links; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setParentSpanId($parentSpanId) - { - $this->parentSpanId = $parentSpanId; - } - public function getParentSpanId() - { - return $this->parentSpanId; - } - public function setSameProcessAsParentSpan($sameProcessAsParentSpan) - { - $this->sameProcessAsParentSpan = $sameProcessAsParentSpan; - } - public function getSameProcessAsParentSpan() - { - return $this->sameProcessAsParentSpan; - } - public function setSpanId($spanId) - { - $this->spanId = $spanId; - } - public function getSpanId() - { - return $this->spanId; - } - public function setSpanKind($spanKind) - { - $this->spanKind = $spanKind; - } - public function getSpanKind() - { - return $this->spanKind; - } - /** - * @param Google_Service_CloudTrace_StackTrace - */ - public function setStackTrace(Google_Service_CloudTrace_StackTrace $stackTrace) - { - $this->stackTrace = $stackTrace; - } - /** - * @return Google_Service_CloudTrace_StackTrace - */ - public function getStackTrace() - { - return $this->stackTrace; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } - /** - * @param Google_Service_CloudTrace_Status - */ - public function setStatus(Google_Service_CloudTrace_Status $status) - { - $this->status = $status; - } - /** - * @return Google_Service_CloudTrace_Status - */ - public function getStatus() - { - return $this->status; - } - /** - * @param Google_Service_CloudTrace_TimeEvents - */ - public function setTimeEvents(Google_Service_CloudTrace_TimeEvents $timeEvents) - { - $this->timeEvents = $timeEvents; - } - /** - * @return Google_Service_CloudTrace_TimeEvents - */ - public function getTimeEvents() - { - return $this->timeEvents; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/StackFrame.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/StackFrame.php deleted file mode 100644 index 628df1b2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/StackFrame.php +++ /dev/null @@ -1,119 +0,0 @@ -columnNumber = $columnNumber; - } - public function getColumnNumber() - { - return $this->columnNumber; - } - /** - * @param Google_Service_CloudTrace_TruncatableString - */ - public function setFileName(Google_Service_CloudTrace_TruncatableString $fileName) - { - $this->fileName = $fileName; - } - /** - * @return Google_Service_CloudTrace_TruncatableString - */ - public function getFileName() - { - return $this->fileName; - } - /** - * @param Google_Service_CloudTrace_TruncatableString - */ - public function setFunctionName(Google_Service_CloudTrace_TruncatableString $functionName) - { - $this->functionName = $functionName; - } - /** - * @return Google_Service_CloudTrace_TruncatableString - */ - public function getFunctionName() - { - return $this->functionName; - } - public function setLineNumber($lineNumber) - { - $this->lineNumber = $lineNumber; - } - public function getLineNumber() - { - return $this->lineNumber; - } - /** - * @param Google_Service_CloudTrace_Module - */ - public function setLoadModule(Google_Service_CloudTrace_Module $loadModule) - { - $this->loadModule = $loadModule; - } - /** - * @return Google_Service_CloudTrace_Module - */ - public function getLoadModule() - { - return $this->loadModule; - } - /** - * @param Google_Service_CloudTrace_TruncatableString - */ - public function setOriginalFunctionName(Google_Service_CloudTrace_TruncatableString $originalFunctionName) - { - $this->originalFunctionName = $originalFunctionName; - } - /** - * @return Google_Service_CloudTrace_TruncatableString - */ - public function getOriginalFunctionName() - { - return $this->originalFunctionName; - } - /** - * @param Google_Service_CloudTrace_TruncatableString - */ - public function setSourceVersion(Google_Service_CloudTrace_TruncatableString $sourceVersion) - { - $this->sourceVersion = $sourceVersion; - } - /** - * @return Google_Service_CloudTrace_TruncatableString - */ - public function getSourceVersion() - { - return $this->sourceVersion; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/StackFrames.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/StackFrames.php deleted file mode 100644 index cd632cba..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/StackFrames.php +++ /dev/null @@ -1,47 +0,0 @@ -droppedFramesCount = $droppedFramesCount; - } - public function getDroppedFramesCount() - { - return $this->droppedFramesCount; - } - /** - * @param Google_Service_CloudTrace_StackFrame - */ - public function setFrame($frame) - { - $this->frame = $frame; - } - /** - * @return Google_Service_CloudTrace_StackFrame - */ - public function getFrame() - { - return $this->frame; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/StackTrace.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/StackTrace.php deleted file mode 100644 index 61b4381c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/StackTrace.php +++ /dev/null @@ -1,46 +0,0 @@ -stackFrames = $stackFrames; - } - /** - * @return Google_Service_CloudTrace_StackFrames - */ - public function getStackFrames() - { - return $this->stackFrames; - } - public function setStackTraceHashId($stackTraceHashId) - { - $this->stackTraceHashId = $stackTraceHashId; - } - public function getStackTraceHashId() - { - return $this->stackTraceHashId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/Status.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/Status.php deleted file mode 100644 index 8381c9af..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/Status.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/TimeEvent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/TimeEvent.php deleted file mode 100644 index 25fa1461..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/TimeEvent.php +++ /dev/null @@ -1,62 +0,0 @@ -annotation = $annotation; - } - /** - * @return Google_Service_CloudTrace_Annotation - */ - public function getAnnotation() - { - return $this->annotation; - } - /** - * @param Google_Service_CloudTrace_MessageEvent - */ - public function setMessageEvent(Google_Service_CloudTrace_MessageEvent $messageEvent) - { - $this->messageEvent = $messageEvent; - } - /** - * @return Google_Service_CloudTrace_MessageEvent - */ - public function getMessageEvent() - { - return $this->messageEvent; - } - public function setTime($time) - { - $this->time = $time; - } - public function getTime() - { - return $this->time; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/TimeEvents.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/TimeEvents.php deleted file mode 100644 index c133cfb2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/TimeEvents.php +++ /dev/null @@ -1,56 +0,0 @@ -droppedAnnotationsCount = $droppedAnnotationsCount; - } - public function getDroppedAnnotationsCount() - { - return $this->droppedAnnotationsCount; - } - public function setDroppedMessageEventsCount($droppedMessageEventsCount) - { - $this->droppedMessageEventsCount = $droppedMessageEventsCount; - } - public function getDroppedMessageEventsCount() - { - return $this->droppedMessageEventsCount; - } - /** - * @param Google_Service_CloudTrace_TimeEvent - */ - public function setTimeEvent($timeEvent) - { - $this->timeEvent = $timeEvent; - } - /** - * @return Google_Service_CloudTrace_TimeEvent - */ - public function getTimeEvent() - { - return $this->timeEvent; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/TruncatableString.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/TruncatableString.php deleted file mode 100644 index 5f06252d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudTrace/TruncatableString.php +++ /dev/null @@ -1,39 +0,0 @@ -truncatedByteCount = $truncatedByteCount; - } - public function getTruncatedByteCount() - { - return $this->truncatedByteCount; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts.php deleted file mode 100644 index 9aef68b2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts.php +++ /dev/null @@ -1,514 +0,0 @@ - - * Creates and manages users and groups for accessing Google Compute Engine - * virtual machines.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_CloudUserAccounts extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** View your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM_READ_ONLY = - "https://www.googleapis.com/auth/cloud-platform.read-only"; - /** Manage your Google Cloud User Accounts. */ - const CLOUD_USERACCOUNTS = - "https://www.googleapis.com/auth/cloud.useraccounts"; - /** View your Google Cloud User Accounts. */ - const CLOUD_USERACCOUNTS_READONLY = - "https://www.googleapis.com/auth/cloud.useraccounts.readonly"; - - public $globalAccountsOperations; - public $groups; - public $linux; - public $users; - - /** - * Constructs the internal representation of the CloudUserAccounts service. - * - * @param Google_Client $client - */ - public function __construct(Google_Client $client) - { - parent::__construct($client); - $this->rootUrl = 'https://www.googleapis.com/'; - $this->servicePath = 'clouduseraccounts/vm_alpha/projects/'; - $this->version = 'vm_alpha'; - $this->serviceName = 'clouduseraccounts'; - - $this->globalAccountsOperations = new Google_Service_CloudUserAccounts_Resource_GlobalAccountsOperations( - $this, - $this->serviceName, - 'globalAccountsOperations', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{project}/global/operations/{operation}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'operation' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{project}/global/operations/{operation}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'operation' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/global/operations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->groups = new Google_Service_CloudUserAccounts_Resource_Groups( - $this, - $this->serviceName, - 'groups', - array( - 'methods' => array( - 'addMember' => array( - 'path' => '{project}/global/groups/{groupName}/addMember', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'groupName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => '{project}/global/groups/{groupName}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'groupName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{project}/global/groups/{groupName}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'groupName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getIamPolicy' => array( - 'path' => '{project}/global/groups/{resource}/getIamPolicy', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/global/groups', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/global/groups', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'removeMember' => array( - 'path' => '{project}/global/groups/{groupName}/removeMember', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'groupName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setIamPolicy' => array( - 'path' => '{project}/global/groups/{resource}/setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => '{project}/global/groups/{resource}/testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->linux = new Google_Service_CloudUserAccounts_Resource_Linux( - $this, - $this->serviceName, - 'linux', - array( - 'methods' => array( - 'getAuthorizedKeysView' => array( - 'path' => '{project}/zones/{zone}/authorizedKeysView/{user}', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'user' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'login' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'getLinuxAccountViews' => array( - 'path' => '{project}/zones/{zone}/linuxAccountViews', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->users = new Google_Service_CloudUserAccounts_Resource_Users( - $this, - $this->serviceName, - 'users', - array( - 'methods' => array( - 'addPublicKey' => array( - 'path' => '{project}/global/users/{user}/addPublicKey', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'user' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => '{project}/global/users/{user}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'user' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{project}/global/users/{user}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'user' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getIamPolicy' => array( - 'path' => '{project}/global/users/{resource}/getIamPolicy', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/global/users', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/global/users', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'removePublicKey' => array( - 'path' => '{project}/global/users/{user}/removePublicKey', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'user' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'fingerprint' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setIamPolicy' => array( - 'path' => '{project}/global/users/{resource}/setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => '{project}/global/users/{resource}/testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/AuditConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/AuditConfig.php deleted file mode 100644 index 19dad3ea..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/AuditConfig.php +++ /dev/null @@ -1,40 +0,0 @@ -exemptedMembers = $exemptedMembers; - } - public function getExemptedMembers() - { - return $this->exemptedMembers; - } - public function setService($service) - { - $this->service = $service; - } - public function getService() - { - return $this->service; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/AuthorizedKeysView.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/AuthorizedKeysView.php deleted file mode 100644 index 14f76898..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/AuthorizedKeysView.php +++ /dev/null @@ -1,40 +0,0 @@ -keys = $keys; - } - public function getKeys() - { - return $this->keys; - } - public function setSudoer($sudoer) - { - $this->sudoer = $sudoer; - } - public function getSudoer() - { - return $this->sudoer; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/Binding.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/Binding.php deleted file mode 100644 index b9282cbe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/Binding.php +++ /dev/null @@ -1,40 +0,0 @@ -members = $members; - } - public function getMembers() - { - return $this->members; - } - public function setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/Condition.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/Condition.php deleted file mode 100644 index a3fedfe3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/Condition.php +++ /dev/null @@ -1,76 +0,0 @@ -iam = $iam; - } - public function getIam() - { - return $this->iam; - } - public function setOp($op) - { - $this->op = $op; - } - public function getOp() - { - return $this->op; - } - public function setSvc($svc) - { - $this->svc = $svc; - } - public function getSvc() - { - return $this->svc; - } - public function setSys($sys) - { - $this->sys = $sys; - } - public function getSys() - { - return $this->sys; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } - public function setValues($values) - { - $this->values = $values; - } - public function getValues() - { - return $this->values; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/Group.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/Group.php deleted file mode 100644 index 79175525..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/Group.php +++ /dev/null @@ -1,85 +0,0 @@ -creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - 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 setMembers($members) - { - $this->members = $members; - } - public function getMembers() - { - return $this->members; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/GroupList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/GroupList.php deleted file mode 100644 index 27c2c115..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/GroupList.php +++ /dev/null @@ -1,74 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_CloudUserAccounts_Group - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_CloudUserAccounts_Group - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/GroupsAddMemberRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/GroupsAddMemberRequest.php deleted file mode 100644 index 3f1e5b04..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/GroupsAddMemberRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -users = $users; - } - public function getUsers() - { - return $this->users; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/GroupsRemoveMemberRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/GroupsRemoveMemberRequest.php deleted file mode 100644 index c5c58c0f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/GroupsRemoveMemberRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -users = $users; - } - public function getUsers() - { - return $this->users; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/LinuxAccountViews.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/LinuxAccountViews.php deleted file mode 100644 index 9de4d78f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/LinuxAccountViews.php +++ /dev/null @@ -1,63 +0,0 @@ -groupViews = $groupViews; - } - /** - * @return Google_Service_CloudUserAccounts_LinuxGroupView - */ - public function getGroupViews() - { - return $this->groupViews; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_CloudUserAccounts_LinuxUserView - */ - public function setUserViews($userViews) - { - $this->userViews = $userViews; - } - /** - * @return Google_Service_CloudUserAccounts_LinuxUserView - */ - public function getUserViews() - { - return $this->userViews; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/LinuxGetAuthorizedKeysViewResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/LinuxGetAuthorizedKeysViewResponse.php deleted file mode 100644 index 69d3ce18..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/LinuxGetAuthorizedKeysViewResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -resource = $resource; - } - /** - * @return Google_Service_CloudUserAccounts_AuthorizedKeysView - */ - public function getResource() - { - return $this->resource; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/LinuxGetLinuxAccountViewsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/LinuxGetLinuxAccountViewsResponse.php deleted file mode 100644 index ba60618c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/LinuxGetLinuxAccountViewsResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -resource = $resource; - } - /** - * @return Google_Service_CloudUserAccounts_LinuxAccountViews - */ - public function getResource() - { - return $this->resource; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/LinuxGroupView.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/LinuxGroupView.php deleted file mode 100644 index 5df235e8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/LinuxGroupView.php +++ /dev/null @@ -1,49 +0,0 @@ -gid = $gid; - } - public function getGid() - { - return $this->gid; - } - public function setGroupName($groupName) - { - $this->groupName = $groupName; - } - public function getGroupName() - { - return $this->groupName; - } - public function setMembers($members) - { - $this->members = $members; - } - public function getMembers() - { - return $this->members; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/LinuxUserView.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/LinuxUserView.php deleted file mode 100644 index 17748c3f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/LinuxUserView.php +++ /dev/null @@ -1,75 +0,0 @@ -gecos = $gecos; - } - public function getGecos() - { - return $this->gecos; - } - public function setGid($gid) - { - $this->gid = $gid; - } - public function getGid() - { - return $this->gid; - } - public function setHomeDirectory($homeDirectory) - { - $this->homeDirectory = $homeDirectory; - } - public function getHomeDirectory() - { - return $this->homeDirectory; - } - public function setShell($shell) - { - $this->shell = $shell; - } - public function getShell() - { - return $this->shell; - } - public function setUid($uid) - { - $this->uid = $uid; - } - public function getUid() - { - return $this->uid; - } - public function setUsername($username) - { - $this->username = $username; - } - public function getUsername() - { - return $this->username; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/LogConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/LogConfig.php deleted file mode 100644 index 0b9675e2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/LogConfig.php +++ /dev/null @@ -1,37 +0,0 @@ -counter = $counter; - } - /** - * @return Google_Service_CloudUserAccounts_LogConfigCounterOptions - */ - public function getCounter() - { - return $this->counter; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/LogConfigCounterOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/LogConfigCounterOptions.php deleted file mode 100644 index 5bc06df8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/LogConfigCounterOptions.php +++ /dev/null @@ -1,39 +0,0 @@ -field = $field; - } - public function getField() - { - return $this->field; - } - public function setMetric($metric) - { - $this->metric = $metric; - } - public function getMetric() - { - return $this->metric; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/Operation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/Operation.php deleted file mode 100644 index 51b06d95..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/Operation.php +++ /dev/null @@ -1,243 +0,0 @@ -clientOperationId = $clientOperationId; - } - public function getClientOperationId() - { - return $this->clientOperationId; - } - public function setCreationTimestamp($creationTimestamp) - { - $this->creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - /** - * @param Google_Service_CloudUserAccounts_OperationError - */ - public function setError(Google_Service_CloudUserAccounts_OperationError $error) - { - $this->error = $error; - } - /** - * @return Google_Service_CloudUserAccounts_OperationError - */ - public function getError() - { - return $this->error; - } - public function setHttpErrorMessage($httpErrorMessage) - { - $this->httpErrorMessage = $httpErrorMessage; - } - public function getHttpErrorMessage() - { - return $this->httpErrorMessage; - } - public function setHttpErrorStatusCode($httpErrorStatusCode) - { - $this->httpErrorStatusCode = $httpErrorStatusCode; - } - public function getHttpErrorStatusCode() - { - return $this->httpErrorStatusCode; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setInsertTime($insertTime) - { - $this->insertTime = $insertTime; - } - public function getInsertTime() - { - return $this->insertTime; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOperationType($operationType) - { - $this->operationType = $operationType; - } - public function getOperationType() - { - return $this->operationType; - } - public function setProgress($progress) - { - $this->progress = $progress; - } - public function getProgress() - { - return $this->progress; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - 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 setStatusMessage($statusMessage) - { - $this->statusMessage = $statusMessage; - } - public function getStatusMessage() - { - return $this->statusMessage; - } - public function setTargetId($targetId) - { - $this->targetId = $targetId; - } - public function getTargetId() - { - return $this->targetId; - } - public function setTargetLink($targetLink) - { - $this->targetLink = $targetLink; - } - public function getTargetLink() - { - return $this->targetLink; - } - public function setUser($user) - { - $this->user = $user; - } - public function getUser() - { - return $this->user; - } - /** - * @param Google_Service_CloudUserAccounts_OperationWarnings - */ - public function setWarnings($warnings) - { - $this->warnings = $warnings; - } - /** - * @return Google_Service_CloudUserAccounts_OperationWarnings - */ - public function getWarnings() - { - return $this->warnings; - } - public function setZone($zone) - { - $this->zone = $zone; - } - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/OperationError.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/OperationError.php deleted file mode 100644 index 8a62e27a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/OperationError.php +++ /dev/null @@ -1,38 +0,0 @@ -errors = $errors; - } - /** - * @return Google_Service_CloudUserAccounts_OperationErrorErrors - */ - public function getErrors() - { - return $this->errors; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/OperationErrorErrors.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/OperationErrorErrors.php deleted file mode 100644 index eb69c369..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/OperationErrorErrors.php +++ /dev/null @@ -1,48 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/OperationList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/OperationList.php deleted file mode 100644 index 2f9058fa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/OperationList.php +++ /dev/null @@ -1,74 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_CloudUserAccounts_Operation - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_CloudUserAccounts_Operation - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/OperationWarnings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/OperationWarnings.php deleted file mode 100644 index bb167a1b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/OperationWarnings.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_CloudUserAccounts_OperationWarningsData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_CloudUserAccounts_OperationWarningsData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/OperationWarningsData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/OperationWarningsData.php deleted file mode 100644 index b55c528f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/OperationWarningsData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/Policy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/Policy.php deleted file mode 100644 index a8381191..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/Policy.php +++ /dev/null @@ -1,97 +0,0 @@ -auditConfigs = $auditConfigs; - } - /** - * @return Google_Service_CloudUserAccounts_AuditConfig - */ - public function getAuditConfigs() - { - return $this->auditConfigs; - } - /** - * @param Google_Service_CloudUserAccounts_Binding - */ - public function setBindings($bindings) - { - $this->bindings = $bindings; - } - /** - * @return Google_Service_CloudUserAccounts_Binding - */ - public function getBindings() - { - return $this->bindings; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setIamOwned($iamOwned) - { - $this->iamOwned = $iamOwned; - } - public function getIamOwned() - { - return $this->iamOwned; - } - /** - * @param Google_Service_CloudUserAccounts_Rule - */ - public function setRules($rules) - { - $this->rules = $rules; - } - /** - * @return Google_Service_CloudUserAccounts_Rule - */ - public function getRules() - { - return $this->rules; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/PublicKey.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/PublicKey.php deleted file mode 100644 index e244b355..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/PublicKey.php +++ /dev/null @@ -1,66 +0,0 @@ -creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setExpirationTimestamp($expirationTimestamp) - { - $this->expirationTimestamp = $expirationTimestamp; - } - public function getExpirationTimestamp() - { - return $this->expirationTimestamp; - } - public function setFingerprint($fingerprint) - { - $this->fingerprint = $fingerprint; - } - public function getFingerprint() - { - return $this->fingerprint; - } - public function setKey($key) - { - $this->key = $key; - } - public function getKey() - { - return $this->key; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/Resource/GlobalAccountsOperations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/Resource/GlobalAccountsOperations.php deleted file mode 100644 index 2b8901e0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/Resource/GlobalAccountsOperations.php +++ /dev/null @@ -1,113 +0,0 @@ - - * $clouduseraccountsService = new Google_Service_CloudUserAccounts(...); - * $globalAccountsOperations = $clouduseraccountsService->globalAccountsOperations; - * - */ -class Google_Service_CloudUserAccounts_Resource_GlobalAccountsOperations extends Google_Service_Resource -{ - /** - * Deletes the specified operation resource. (globalAccountsOperations.delete) - * - * @param string $project Project ID for this request. - * @param string $operation Name of the Operations resource to delete. - * @param array $optParams Optional parameters. - */ - public function delete($project, $operation, $optParams = array()) - { - $params = array('project' => $project, 'operation' => $operation); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Retrieves the specified operation resource. (globalAccountsOperations.get) - * - * @param string $project Project ID for this request. - * @param string $operation Name of the Operations resource to return. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudUserAccounts_Operation - */ - public function get($project, $operation, $optParams = array()) - { - $params = array('project' => $project, 'operation' => $operation); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudUserAccounts_Operation"); - } - /** - * Retrieves the list of operation resources contained within the specified - * project. (globalAccountsOperations.listGlobalAccountsOperations) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter Sets a filter expression for filtering listed - * resources, in the form filter={expression}. Your {expression} must be in the - * format: field_name comparison_string literal_string. - * - * The field_name is the name of the field you want to compare. Only atomic - * field types are supported (string, number, boolean). The comparison_string - * must be either eq (equals) or ne (not equals). The literal_string is the - * string value to filter to. The literal value must be valid for the type of - * field you are filtering by (string, number, boolean). For string fields, the - * literal value is interpreted as a regular expression using RE2 syntax. The - * literal value must match the entire field. - * - * For example, to filter for instances that do not have a name of example- - * instance, you would use filter=name ne example-instance. - * - * Compute Engine Beta API Only: If you use filtering in the Beta API, you can - * also filter on nested fields. For example, you could filter on instances that - * have set the scheduling.automaticRestart field to true. In particular, use - * filtering on nested fields to take advantage of instance labels to organize - * and filter results based on label values. - * - * The Beta API also supports filtering on multiple expressions by providing - * each separate expression within parentheses. For example, - * (scheduling.automaticRestart eq true) (zone eq us-central1-f). Multiple - * expressions are treated as AND expressions, meaning that resources must match - * all expressions to pass the filters. - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_CloudUserAccounts_OperationList - */ - public function listGlobalAccountsOperations($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudUserAccounts_OperationList"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/Resource/Groups.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/Resource/Groups.php deleted file mode 100644 index 25268189..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/Resource/Groups.php +++ /dev/null @@ -1,206 +0,0 @@ - - * $clouduseraccountsService = new Google_Service_CloudUserAccounts(...); - * $groups = $clouduseraccountsService->groups; - * - */ -class Google_Service_CloudUserAccounts_Resource_Groups extends Google_Service_Resource -{ - /** - * Adds users to the specified group. (groups.addMember) - * - * @param string $project Project ID for this request. - * @param string $groupName Name of the group for this request. - * @param Google_Service_CloudUserAccounts_GroupsAddMemberRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudUserAccounts_Operation - */ - public function addMember($project, $groupName, Google_Service_CloudUserAccounts_GroupsAddMemberRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'groupName' => $groupName, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('addMember', array($params), "Google_Service_CloudUserAccounts_Operation"); - } - /** - * Deletes the specified Group resource. (groups.delete) - * - * @param string $project Project ID for this request. - * @param string $groupName Name of the Group resource to delete. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudUserAccounts_Operation - */ - public function delete($project, $groupName, $optParams = array()) - { - $params = array('project' => $project, 'groupName' => $groupName); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudUserAccounts_Operation"); - } - /** - * Returns the specified Group resource. (groups.get) - * - * @param string $project Project ID for this request. - * @param string $groupName Name of the Group resource to return. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudUserAccounts_Group - */ - public function get($project, $groupName, $optParams = array()) - { - $params = array('project' => $project, 'groupName' => $groupName); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudUserAccounts_Group"); - } - /** - * Gets the access control policy for a resource. May be empty if no such policy - * or resource exists. (groups.getIamPolicy) - * - * @param string $project Project ID for this request. - * @param string $resource Name of the resource for this request. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudUserAccounts_Policy - */ - public function getIamPolicy($project, $resource, $optParams = array()) - { - $params = array('project' => $project, 'resource' => $resource); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_CloudUserAccounts_Policy"); - } - /** - * Creates a Group resource in the specified project using the data included in - * the request. (groups.insert) - * - * @param string $project Project ID for this request. - * @param Google_Service_CloudUserAccounts_Group $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudUserAccounts_Operation - */ - public function insert($project, Google_Service_CloudUserAccounts_Group $postBody, $optParams = array()) - { - $params = array('project' => $project, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_CloudUserAccounts_Operation"); - } - /** - * Retrieves the list of groups contained within the specified project. - * (groups.listGroups) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter Sets a filter expression for filtering listed - * resources, in the form filter={expression}. Your {expression} must be in the - * format: field_name comparison_string literal_string. - * - * The field_name is the name of the field you want to compare. Only atomic - * field types are supported (string, number, boolean). The comparison_string - * must be either eq (equals) or ne (not equals). The literal_string is the - * string value to filter to. The literal value must be valid for the type of - * field you are filtering by (string, number, boolean). For string fields, the - * literal value is interpreted as a regular expression using RE2 syntax. The - * literal value must match the entire field. - * - * For example, to filter for instances that do not have a name of example- - * instance, you would use filter=name ne example-instance. - * - * Compute Engine Beta API Only: If you use filtering in the Beta API, you can - * also filter on nested fields. For example, you could filter on instances that - * have set the scheduling.automaticRestart field to true. In particular, use - * filtering on nested fields to take advantage of instance labels to organize - * and filter results based on label values. - * - * The Beta API also supports filtering on multiple expressions by providing - * each separate expression within parentheses. For example, - * (scheduling.automaticRestart eq true) (zone eq us-central1-f). Multiple - * expressions are treated as AND expressions, meaning that resources must match - * all expressions to pass the filters. - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_CloudUserAccounts_GroupList - */ - public function listGroups($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudUserAccounts_GroupList"); - } - /** - * Removes users from the specified group. (groups.removeMember) - * - * @param string $project Project ID for this request. - * @param string $groupName Name of the group for this request. - * @param Google_Service_CloudUserAccounts_GroupsRemoveMemberRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudUserAccounts_Operation - */ - public function removeMember($project, $groupName, Google_Service_CloudUserAccounts_GroupsRemoveMemberRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'groupName' => $groupName, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('removeMember', array($params), "Google_Service_CloudUserAccounts_Operation"); - } - /** - * Sets the access control policy on the specified resource. Replaces any - * existing policy. (groups.setIamPolicy) - * - * @param string $project Project ID for this request. - * @param string $resource Name of the resource for this request. - * @param Google_Service_CloudUserAccounts_Policy $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudUserAccounts_Policy - */ - public function setIamPolicy($project, $resource, Google_Service_CloudUserAccounts_Policy $postBody, $optParams = array()) - { - $params = array('project' => $project, 'resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_CloudUserAccounts_Policy"); - } - /** - * Returns permissions that a caller has on the specified resource. - * (groups.testIamPermissions) - * - * @param string $project Project ID for this request. - * @param string $resource Name of the resource for this request. - * @param Google_Service_CloudUserAccounts_TestPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudUserAccounts_TestPermissionsResponse - */ - public function testIamPermissions($project, $resource, Google_Service_CloudUserAccounts_TestPermissionsRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_CloudUserAccounts_TestPermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/Resource/Linux.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/Resource/Linux.php deleted file mode 100644 index 1ee13670..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/Resource/Linux.php +++ /dev/null @@ -1,111 +0,0 @@ - - * $clouduseraccountsService = new Google_Service_CloudUserAccounts(...); - * $linux = $clouduseraccountsService->linux; - * - */ -class Google_Service_CloudUserAccounts_Resource_Linux extends Google_Service_Resource -{ - /** - * Returns a list of authorized public keys for a specific user account. - * (linux.getAuthorizedKeysView) - * - * @param string $project Project ID for this request. - * @param string $zone Name of the zone for this request. - * @param string $user The user account for which you want to get a list of - * authorized public keys. - * @param string $instance The fully-qualified URL of the virtual machine - * requesting the view. - * @param array $optParams Optional parameters. - * - * @opt_param bool login Whether the view was requested as part of a user- - * initiated login. - * @return Google_Service_CloudUserAccounts_LinuxGetAuthorizedKeysViewResponse - */ - public function getAuthorizedKeysView($project, $zone, $user, $instance, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'user' => $user, 'instance' => $instance); - $params = array_merge($params, $optParams); - return $this->call('getAuthorizedKeysView', array($params), "Google_Service_CloudUserAccounts_LinuxGetAuthorizedKeysViewResponse"); - } - /** - * Retrieves a list of user accounts for an instance within a specific project. - * (linux.getLinuxAccountViews) - * - * @param string $project Project ID for this request. - * @param string $zone Name of the zone for this request. - * @param string $instance The fully-qualified URL of the virtual machine - * requesting the views. - * @param array $optParams Optional parameters. - * - * @opt_param string filter Sets a filter expression for filtering listed - * resources, in the form filter={expression}. Your {expression} must be in the - * format: field_name comparison_string literal_string. - * - * The field_name is the name of the field you want to compare. Only atomic - * field types are supported (string, number, boolean). The comparison_string - * must be either eq (equals) or ne (not equals). The literal_string is the - * string value to filter to. The literal value must be valid for the type of - * field you are filtering by (string, number, boolean). For string fields, the - * literal value is interpreted as a regular expression using RE2 syntax. The - * literal value must match the entire field. - * - * For example, to filter for instances that do not have a name of example- - * instance, you would use filter=name ne example-instance. - * - * Compute Engine Beta API Only: If you use filtering in the Beta API, you can - * also filter on nested fields. For example, you could filter on instances that - * have set the scheduling.automaticRestart field to true. In particular, use - * filtering on nested fields to take advantage of instance labels to organize - * and filter results based on label values. - * - * The Beta API also supports filtering on multiple expressions by providing - * each separate expression within parentheses. For example, - * (scheduling.automaticRestart eq true) (zone eq us-central1-f). Multiple - * expressions are treated as AND expressions, meaning that resources must match - * all expressions to pass the filters. - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_CloudUserAccounts_LinuxGetLinuxAccountViewsResponse - */ - public function getLinuxAccountViews($project, $zone, $instance, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'instance' => $instance); - $params = array_merge($params, $optParams); - return $this->call('getLinuxAccountViews', array($params), "Google_Service_CloudUserAccounts_LinuxGetLinuxAccountViewsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/Resource/Users.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/Resource/Users.php deleted file mode 100644 index 0df85e24..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/Resource/Users.php +++ /dev/null @@ -1,209 +0,0 @@ - - * $clouduseraccountsService = new Google_Service_CloudUserAccounts(...); - * $users = $clouduseraccountsService->users; - * - */ -class Google_Service_CloudUserAccounts_Resource_Users extends Google_Service_Resource -{ - /** - * Adds a public key to the specified User resource with the data included in - * the request. (users.addPublicKey) - * - * @param string $project Project ID for this request. - * @param string $user Name of the user for this request. - * @param Google_Service_CloudUserAccounts_PublicKey $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudUserAccounts_Operation - */ - public function addPublicKey($project, $user, Google_Service_CloudUserAccounts_PublicKey $postBody, $optParams = array()) - { - $params = array('project' => $project, 'user' => $user, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('addPublicKey', array($params), "Google_Service_CloudUserAccounts_Operation"); - } - /** - * Deletes the specified User resource. (users.delete) - * - * @param string $project Project ID for this request. - * @param string $user Name of the user resource to delete. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudUserAccounts_Operation - */ - public function delete($project, $user, $optParams = array()) - { - $params = array('project' => $project, 'user' => $user); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudUserAccounts_Operation"); - } - /** - * Returns the specified User resource. (users.get) - * - * @param string $project Project ID for this request. - * @param string $user Name of the user resource to return. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudUserAccounts_User - */ - public function get($project, $user, $optParams = array()) - { - $params = array('project' => $project, 'user' => $user); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudUserAccounts_User"); - } - /** - * Gets the access control policy for a resource. May be empty if no such policy - * or resource exists. (users.getIamPolicy) - * - * @param string $project Project ID for this request. - * @param string $resource Name of the resource for this request. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudUserAccounts_Policy - */ - public function getIamPolicy($project, $resource, $optParams = array()) - { - $params = array('project' => $project, 'resource' => $resource); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_CloudUserAccounts_Policy"); - } - /** - * Creates a User resource in the specified project using the data included in - * the request. (users.insert) - * - * @param string $project Project ID for this request. - * @param Google_Service_CloudUserAccounts_User $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudUserAccounts_Operation - */ - public function insert($project, Google_Service_CloudUserAccounts_User $postBody, $optParams = array()) - { - $params = array('project' => $project, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_CloudUserAccounts_Operation"); - } - /** - * Retrieves a list of users contained within the specified project. - * (users.listUsers) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter Sets a filter expression for filtering listed - * resources, in the form filter={expression}. Your {expression} must be in the - * format: field_name comparison_string literal_string. - * - * The field_name is the name of the field you want to compare. Only atomic - * field types are supported (string, number, boolean). The comparison_string - * must be either eq (equals) or ne (not equals). The literal_string is the - * string value to filter to. The literal value must be valid for the type of - * field you are filtering by (string, number, boolean). For string fields, the - * literal value is interpreted as a regular expression using RE2 syntax. The - * literal value must match the entire field. - * - * For example, to filter for instances that do not have a name of example- - * instance, you would use filter=name ne example-instance. - * - * Compute Engine Beta API Only: If you use filtering in the Beta API, you can - * also filter on nested fields. For example, you could filter on instances that - * have set the scheduling.automaticRestart field to true. In particular, use - * filtering on nested fields to take advantage of instance labels to organize - * and filter results based on label values. - * - * The Beta API also supports filtering on multiple expressions by providing - * each separate expression within parentheses. For example, - * (scheduling.automaticRestart eq true) (zone eq us-central1-f). Multiple - * expressions are treated as AND expressions, meaning that resources must match - * all expressions to pass the filters. - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_CloudUserAccounts_UserList - */ - public function listUsers($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudUserAccounts_UserList"); - } - /** - * Removes the specified public key from the user. (users.removePublicKey) - * - * @param string $project Project ID for this request. - * @param string $user Name of the user for this request. - * @param string $fingerprint The fingerprint of the public key to delete. - * Public keys are identified by their fingerprint, which is defined by RFC4716 - * to be the MD5 digest of the public key. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudUserAccounts_Operation - */ - public function removePublicKey($project, $user, $fingerprint, $optParams = array()) - { - $params = array('project' => $project, 'user' => $user, 'fingerprint' => $fingerprint); - $params = array_merge($params, $optParams); - return $this->call('removePublicKey', array($params), "Google_Service_CloudUserAccounts_Operation"); - } - /** - * Sets the access control policy on the specified resource. Replaces any - * existing policy. (users.setIamPolicy) - * - * @param string $project Project ID for this request. - * @param string $resource Name of the resource for this request. - * @param Google_Service_CloudUserAccounts_Policy $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudUserAccounts_Policy - */ - public function setIamPolicy($project, $resource, Google_Service_CloudUserAccounts_Policy $postBody, $optParams = array()) - { - $params = array('project' => $project, 'resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_CloudUserAccounts_Policy"); - } - /** - * Returns permissions that a caller has on the specified resource. - * (users.testIamPermissions) - * - * @param string $project Project ID for this request. - * @param string $resource Name of the resource for this request. - * @param Google_Service_CloudUserAccounts_TestPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudUserAccounts_TestPermissionsResponse - */ - public function testIamPermissions($project, $resource, Google_Service_CloudUserAccounts_TestPermissionsRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_CloudUserAccounts_TestPermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/Rule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/Rule.php deleted file mode 100644 index 8fdfe1aa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/Rule.php +++ /dev/null @@ -1,99 +0,0 @@ -action = $action; - } - public function getAction() - { - return $this->action; - } - /** - * @param Google_Service_CloudUserAccounts_Condition - */ - public function setConditions($conditions) - { - $this->conditions = $conditions; - } - /** - * @return Google_Service_CloudUserAccounts_Condition - */ - public function getConditions() - { - return $this->conditions; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setIns($ins) - { - $this->ins = $ins; - } - public function getIns() - { - return $this->ins; - } - /** - * @param Google_Service_CloudUserAccounts_LogConfig - */ - public function setLogConfigs($logConfigs) - { - $this->logConfigs = $logConfigs; - } - /** - * @return Google_Service_CloudUserAccounts_LogConfig - */ - public function getLogConfigs() - { - return $this->logConfigs; - } - public function setNotIns($notIns) - { - $this->notIns = $notIns; - } - public function getNotIns() - { - return $this->notIns; - } - public function setPermissions($permissions) - { - $this->permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/TestPermissionsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/TestPermissionsRequest.php deleted file mode 100644 index e920c7e0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/TestPermissionsRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/TestPermissionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/TestPermissionsResponse.php deleted file mode 100644 index b21e0e86..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/TestPermissionsResponse.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/User.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/User.php deleted file mode 100644 index 72b27b95..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/User.php +++ /dev/null @@ -1,110 +0,0 @@ -creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setGroups($groups) - { - $this->groups = $groups; - } - public function getGroups() - { - return $this->groups; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOwner($owner) - { - $this->owner = $owner; - } - public function getOwner() - { - return $this->owner; - } - /** - * @param Google_Service_CloudUserAccounts_PublicKey - */ - public function setPublicKeys($publicKeys) - { - $this->publicKeys = $publicKeys; - } - /** - * @return Google_Service_CloudUserAccounts_PublicKey - */ - public function getPublicKeys() - { - return $this->publicKeys; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/UserList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/UserList.php deleted file mode 100644 index 80cbd699..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudUserAccounts/UserList.php +++ /dev/null @@ -1,74 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_CloudUserAccounts_User - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_CloudUserAccounts_User - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence.php deleted file mode 100644 index b3b356c1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence.php +++ /dev/null @@ -1,176 +0,0 @@ - - * Detects objects, explicit content, and scene changes in videos. It also - * specifies the region for annotation and transcribes speech to text. Supports - * both asynchronous API and streaming API.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_CloudVideoIntelligence extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - - public $operations_projects_locations_operations; - public $projects_locations_operations; - public $videos; - - /** - * Constructs the internal representation of the CloudVideoIntelligence - * service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://videointelligence.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'videointelligence'; - - $this->operations_projects_locations_operations = new Google_Service_CloudVideoIntelligence_Resource_OperationsProjectsLocationsOperations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'cancel' => array( - 'path' => 'v1/operations/{+name}:cancel', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/operations/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/operations/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_locations_operations = new Google_Service_CloudVideoIntelligence_Resource_ProjectsLocationsOperations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'cancel' => array( - 'path' => 'v1/{+name}:cancel', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+name}/operations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->videos = new Google_Service_CloudVideoIntelligence_Resource_Videos( - $this, - $this->serviceName, - 'videos', - array( - 'methods' => array( - 'annotate' => array( - 'path' => 'v1/videos:annotate', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1AnnotateVideoProgress.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1AnnotateVideoProgress.php deleted file mode 100644 index 6559acbf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1AnnotateVideoProgress.php +++ /dev/null @@ -1,38 +0,0 @@ -annotationProgress = $annotationProgress; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1VideoAnnotationProgress - */ - public function getAnnotationProgress() - { - return $this->annotationProgress; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1AnnotateVideoRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1AnnotateVideoRequest.php deleted file mode 100644 index 70370a46..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1AnnotateVideoRequest.php +++ /dev/null @@ -1,83 +0,0 @@ -features = $features; - } - public function getFeatures() - { - return $this->features; - } - public function setInputContent($inputContent) - { - $this->inputContent = $inputContent; - } - public function getInputContent() - { - return $this->inputContent; - } - public function setInputUri($inputUri) - { - $this->inputUri = $inputUri; - } - public function getInputUri() - { - return $this->inputUri; - } - public function setLocationId($locationId) - { - $this->locationId = $locationId; - } - public function getLocationId() - { - return $this->locationId; - } - public function setOutputUri($outputUri) - { - $this->outputUri = $outputUri; - } - public function getOutputUri() - { - return $this->outputUri; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1VideoContext - */ - public function setVideoContext(Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1VideoContext $videoContext) - { - $this->videoContext = $videoContext; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1VideoContext - */ - public function getVideoContext() - { - return $this->videoContext; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1AnnotateVideoResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1AnnotateVideoResponse.php deleted file mode 100644 index 87d673c5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1AnnotateVideoResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -annotationResults = $annotationResults; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1VideoAnnotationResults - */ - public function getAnnotationResults() - { - return $this->annotationResults; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1Entity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1Entity.php deleted file mode 100644 index 36c705df..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1Entity.php +++ /dev/null @@ -1,48 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setEntityId($entityId) - { - $this->entityId = $entityId; - } - public function getEntityId() - { - return $this->entityId; - } - public function setLanguageCode($languageCode) - { - $this->languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1ExplicitContentAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1ExplicitContentAnnotation.php deleted file mode 100644 index fcb47598..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1ExplicitContentAnnotation.php +++ /dev/null @@ -1,38 +0,0 @@ -frames = $frames; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1ExplicitContentFrame - */ - public function getFrames() - { - return $this->frames; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1ExplicitContentDetectionConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1ExplicitContentDetectionConfig.php deleted file mode 100644 index 3f8558ea..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1ExplicitContentDetectionConfig.php +++ /dev/null @@ -1,30 +0,0 @@ -model = $model; - } - public function getModel() - { - return $this->model; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1ExplicitContentFrame.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1ExplicitContentFrame.php deleted file mode 100644 index 9a35df51..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1ExplicitContentFrame.php +++ /dev/null @@ -1,39 +0,0 @@ -pornographyLikelihood = $pornographyLikelihood; - } - public function getPornographyLikelihood() - { - return $this->pornographyLikelihood; - } - public function setTimeOffset($timeOffset) - { - $this->timeOffset = $timeOffset; - } - public function getTimeOffset() - { - return $this->timeOffset; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1LabelAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1LabelAnnotation.php deleted file mode 100644 index 2f99409e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1LabelAnnotation.php +++ /dev/null @@ -1,86 +0,0 @@ -categoryEntities = $categoryEntities; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1Entity - */ - public function getCategoryEntities() - { - return $this->categoryEntities; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1Entity - */ - public function setEntity(Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1Entity $entity) - { - $this->entity = $entity; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1Entity - */ - public function getEntity() - { - return $this->entity; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1LabelFrame - */ - public function setFrames($frames) - { - $this->frames = $frames; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1LabelFrame - */ - public function getFrames() - { - return $this->frames; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1LabelSegment - */ - public function setSegments($segments) - { - $this->segments = $segments; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1LabelSegment - */ - public function getSegments() - { - return $this->segments; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1LabelDetectionConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1LabelDetectionConfig.php deleted file mode 100644 index bffb3583..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1LabelDetectionConfig.php +++ /dev/null @@ -1,66 +0,0 @@ -frameConfidenceThreshold = $frameConfidenceThreshold; - } - public function getFrameConfidenceThreshold() - { - return $this->frameConfidenceThreshold; - } - public function setLabelDetectionMode($labelDetectionMode) - { - $this->labelDetectionMode = $labelDetectionMode; - } - public function getLabelDetectionMode() - { - return $this->labelDetectionMode; - } - public function setModel($model) - { - $this->model = $model; - } - public function getModel() - { - return $this->model; - } - public function setStationaryCamera($stationaryCamera) - { - $this->stationaryCamera = $stationaryCamera; - } - public function getStationaryCamera() - { - return $this->stationaryCamera; - } - public function setVideoConfidenceThreshold($videoConfidenceThreshold) - { - $this->videoConfidenceThreshold = $videoConfidenceThreshold; - } - public function getVideoConfidenceThreshold() - { - return $this->videoConfidenceThreshold; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1LabelFrame.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1LabelFrame.php deleted file mode 100644 index 6758cc92..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1LabelFrame.php +++ /dev/null @@ -1,39 +0,0 @@ -confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - public function setTimeOffset($timeOffset) - { - $this->timeOffset = $timeOffset; - } - public function getTimeOffset() - { - return $this->timeOffset; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1LabelSegment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1LabelSegment.php deleted file mode 100644 index 0dbc13f1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1LabelSegment.php +++ /dev/null @@ -1,46 +0,0 @@ -confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1VideoSegment - */ - public function setSegment(Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1VideoSegment $segment) - { - $this->segment = $segment; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1VideoSegment - */ - public function getSegment() - { - return $this->segment; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1NormalizedBoundingBox.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1NormalizedBoundingBox.php deleted file mode 100644 index f768a845..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1NormalizedBoundingBox.php +++ /dev/null @@ -1,57 +0,0 @@ -bottom = $bottom; - } - public function getBottom() - { - return $this->bottom; - } - public function setLeft($left) - { - $this->left = $left; - } - public function getLeft() - { - return $this->left; - } - public function setRight($right) - { - $this->right = $right; - } - public function getRight() - { - return $this->right; - } - public function setTop($top) - { - $this->top = $top; - } - public function getTop() - { - return $this->top; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1NormalizedBoundingPoly.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1NormalizedBoundingPoly.php deleted file mode 100644 index 0ee791ca..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1NormalizedBoundingPoly.php +++ /dev/null @@ -1,38 +0,0 @@ -vertices = $vertices; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1NormalizedVertex - */ - public function getVertices() - { - return $this->vertices; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1NormalizedVertex.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1NormalizedVertex.php deleted file mode 100644 index aa00d40f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1NormalizedVertex.php +++ /dev/null @@ -1,39 +0,0 @@ -x = $x; - } - public function getX() - { - return $this->x; - } - public function setY($y) - { - $this->y = $y; - } - public function getY() - { - return $this->y; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1ObjectTrackingAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1ObjectTrackingAnnotation.php deleted file mode 100644 index 1a125fcb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1ObjectTrackingAnnotation.php +++ /dev/null @@ -1,88 +0,0 @@ -confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1Entity - */ - public function setEntity(Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1Entity $entity) - { - $this->entity = $entity; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1Entity - */ - public function getEntity() - { - return $this->entity; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1ObjectTrackingFrame - */ - public function setFrames($frames) - { - $this->frames = $frames; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1ObjectTrackingFrame - */ - public function getFrames() - { - return $this->frames; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1VideoSegment - */ - public function setSegment(Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1VideoSegment $segment) - { - $this->segment = $segment; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1VideoSegment - */ - public function getSegment() - { - return $this->segment; - } - public function setTrackId($trackId) - { - $this->trackId = $trackId; - } - public function getTrackId() - { - return $this->trackId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1ObjectTrackingConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1ObjectTrackingConfig.php deleted file mode 100644 index 14b6d343..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1ObjectTrackingConfig.php +++ /dev/null @@ -1,30 +0,0 @@ -model = $model; - } - public function getModel() - { - return $this->model; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1ObjectTrackingFrame.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1ObjectTrackingFrame.php deleted file mode 100644 index ce7273bd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1ObjectTrackingFrame.php +++ /dev/null @@ -1,46 +0,0 @@ -normalizedBoundingBox = $normalizedBoundingBox; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1NormalizedBoundingBox - */ - public function getNormalizedBoundingBox() - { - return $this->normalizedBoundingBox; - } - public function setTimeOffset($timeOffset) - { - $this->timeOffset = $timeOffset; - } - public function getTimeOffset() - { - return $this->timeOffset; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1ShotChangeDetectionConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1ShotChangeDetectionConfig.php deleted file mode 100644 index 9d98aa46..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1ShotChangeDetectionConfig.php +++ /dev/null @@ -1,30 +0,0 @@ -model = $model; - } - public function getModel() - { - return $this->model; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1SpeechContext.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1SpeechContext.php deleted file mode 100644 index 473eda4d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1SpeechContext.php +++ /dev/null @@ -1,31 +0,0 @@ -phrases = $phrases; - } - public function getPhrases() - { - return $this->phrases; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1SpeechRecognitionAlternative.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1SpeechRecognitionAlternative.php deleted file mode 100644 index 3720f1c9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1SpeechRecognitionAlternative.php +++ /dev/null @@ -1,56 +0,0 @@ -confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - public function setTranscript($transcript) - { - $this->transcript = $transcript; - } - public function getTranscript() - { - return $this->transcript; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1WordInfo - */ - public function setWords($words) - { - $this->words = $words; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1WordInfo - */ - public function getWords() - { - return $this->words; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1SpeechTranscription.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1SpeechTranscription.php deleted file mode 100644 index 95240ded..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1SpeechTranscription.php +++ /dev/null @@ -1,47 +0,0 @@ -alternatives = $alternatives; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1SpeechRecognitionAlternative - */ - public function getAlternatives() - { - return $this->alternatives; - } - public function setLanguageCode($languageCode) - { - $this->languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1SpeechTranscriptionConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1SpeechTranscriptionConfig.php deleted file mode 100644 index a5612dd0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1SpeechTranscriptionConfig.php +++ /dev/null @@ -1,110 +0,0 @@ -audioTracks = $audioTracks; - } - public function getAudioTracks() - { - return $this->audioTracks; - } - public function setDiarizationSpeakerCount($diarizationSpeakerCount) - { - $this->diarizationSpeakerCount = $diarizationSpeakerCount; - } - public function getDiarizationSpeakerCount() - { - return $this->diarizationSpeakerCount; - } - public function setEnableAutomaticPunctuation($enableAutomaticPunctuation) - { - $this->enableAutomaticPunctuation = $enableAutomaticPunctuation; - } - public function getEnableAutomaticPunctuation() - { - return $this->enableAutomaticPunctuation; - } - public function setEnableSpeakerDiarization($enableSpeakerDiarization) - { - $this->enableSpeakerDiarization = $enableSpeakerDiarization; - } - public function getEnableSpeakerDiarization() - { - return $this->enableSpeakerDiarization; - } - public function setEnableWordConfidence($enableWordConfidence) - { - $this->enableWordConfidence = $enableWordConfidence; - } - public function getEnableWordConfidence() - { - return $this->enableWordConfidence; - } - public function setFilterProfanity($filterProfanity) - { - $this->filterProfanity = $filterProfanity; - } - public function getFilterProfanity() - { - return $this->filterProfanity; - } - public function setLanguageCode($languageCode) - { - $this->languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } - public function setMaxAlternatives($maxAlternatives) - { - $this->maxAlternatives = $maxAlternatives; - } - public function getMaxAlternatives() - { - return $this->maxAlternatives; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1SpeechContext - */ - public function setSpeechContexts($speechContexts) - { - $this->speechContexts = $speechContexts; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1SpeechContext - */ - public function getSpeechContexts() - { - return $this->speechContexts; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1TextAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1TextAnnotation.php deleted file mode 100644 index c711d768..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1TextAnnotation.php +++ /dev/null @@ -1,47 +0,0 @@ -segments = $segments; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1TextSegment - */ - public function getSegments() - { - return $this->segments; - } - public function setText($text) - { - $this->text = $text; - } - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1TextDetectionConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1TextDetectionConfig.php deleted file mode 100644 index a9bcefb8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1TextDetectionConfig.php +++ /dev/null @@ -1,40 +0,0 @@ -languageHints = $languageHints; - } - public function getLanguageHints() - { - return $this->languageHints; - } - public function setModel($model) - { - $this->model = $model; - } - public function getModel() - { - return $this->model; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1TextFrame.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1TextFrame.php deleted file mode 100644 index 3244407f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1TextFrame.php +++ /dev/null @@ -1,46 +0,0 @@ -rotatedBoundingBox = $rotatedBoundingBox; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1NormalizedBoundingPoly - */ - public function getRotatedBoundingBox() - { - return $this->rotatedBoundingBox; - } - public function setTimeOffset($timeOffset) - { - $this->timeOffset = $timeOffset; - } - public function getTimeOffset() - { - return $this->timeOffset; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1TextSegment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1TextSegment.php deleted file mode 100644 index 6d4d8b42..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1TextSegment.php +++ /dev/null @@ -1,63 +0,0 @@ -confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1TextFrame - */ - public function setFrames($frames) - { - $this->frames = $frames; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1TextFrame - */ - public function getFrames() - { - return $this->frames; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1VideoSegment - */ - public function setSegment(Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1VideoSegment $segment) - { - $this->segment = $segment; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1VideoSegment - */ - public function getSegment() - { - return $this->segment; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1VideoAnnotationProgress.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1VideoAnnotationProgress.php deleted file mode 100644 index 9be2b4f8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1VideoAnnotationProgress.php +++ /dev/null @@ -1,82 +0,0 @@ -feature = $feature; - } - public function getFeature() - { - return $this->feature; - } - public function setInputUri($inputUri) - { - $this->inputUri = $inputUri; - } - public function getInputUri() - { - return $this->inputUri; - } - public function setProgressPercent($progressPercent) - { - $this->progressPercent = $progressPercent; - } - public function getProgressPercent() - { - return $this->progressPercent; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1VideoSegment - */ - public function setSegment(Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1VideoSegment $segment) - { - $this->segment = $segment; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1VideoSegment - */ - public function getSegment() - { - return $this->segment; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1VideoAnnotationResults.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1VideoAnnotationResults.php deleted file mode 100644 index 93e2f9da..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1VideoAnnotationResults.php +++ /dev/null @@ -1,223 +0,0 @@ -error = $error; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleRpcStatus - */ - public function getError() - { - return $this->error; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1ExplicitContentAnnotation - */ - public function setExplicitAnnotation(Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1ExplicitContentAnnotation $explicitAnnotation) - { - $this->explicitAnnotation = $explicitAnnotation; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1ExplicitContentAnnotation - */ - public function getExplicitAnnotation() - { - return $this->explicitAnnotation; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1LabelAnnotation - */ - public function setFrameLabelAnnotations($frameLabelAnnotations) - { - $this->frameLabelAnnotations = $frameLabelAnnotations; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1LabelAnnotation - */ - public function getFrameLabelAnnotations() - { - return $this->frameLabelAnnotations; - } - public function setInputUri($inputUri) - { - $this->inputUri = $inputUri; - } - public function getInputUri() - { - return $this->inputUri; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1ObjectTrackingAnnotation - */ - public function setObjectAnnotations($objectAnnotations) - { - $this->objectAnnotations = $objectAnnotations; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1ObjectTrackingAnnotation - */ - public function getObjectAnnotations() - { - return $this->objectAnnotations; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1VideoSegment - */ - public function setSegment(Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1VideoSegment $segment) - { - $this->segment = $segment; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1VideoSegment - */ - public function getSegment() - { - return $this->segment; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1LabelAnnotation - */ - public function setSegmentLabelAnnotations($segmentLabelAnnotations) - { - $this->segmentLabelAnnotations = $segmentLabelAnnotations; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1LabelAnnotation - */ - public function getSegmentLabelAnnotations() - { - return $this->segmentLabelAnnotations; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1LabelAnnotation - */ - public function setSegmentPresenceLabelAnnotations($segmentPresenceLabelAnnotations) - { - $this->segmentPresenceLabelAnnotations = $segmentPresenceLabelAnnotations; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1LabelAnnotation - */ - public function getSegmentPresenceLabelAnnotations() - { - return $this->segmentPresenceLabelAnnotations; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1VideoSegment - */ - public function setShotAnnotations($shotAnnotations) - { - $this->shotAnnotations = $shotAnnotations; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1VideoSegment - */ - public function getShotAnnotations() - { - return $this->shotAnnotations; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1LabelAnnotation - */ - public function setShotLabelAnnotations($shotLabelAnnotations) - { - $this->shotLabelAnnotations = $shotLabelAnnotations; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1LabelAnnotation - */ - public function getShotLabelAnnotations() - { - return $this->shotLabelAnnotations; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1LabelAnnotation - */ - public function setShotPresenceLabelAnnotations($shotPresenceLabelAnnotations) - { - $this->shotPresenceLabelAnnotations = $shotPresenceLabelAnnotations; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1LabelAnnotation - */ - public function getShotPresenceLabelAnnotations() - { - return $this->shotPresenceLabelAnnotations; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1SpeechTranscription - */ - public function setSpeechTranscriptions($speechTranscriptions) - { - $this->speechTranscriptions = $speechTranscriptions; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1SpeechTranscription - */ - public function getSpeechTranscriptions() - { - return $this->speechTranscriptions; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1TextAnnotation - */ - public function setTextAnnotations($textAnnotations) - { - $this->textAnnotations = $textAnnotations; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1TextAnnotation - */ - public function getTextAnnotations() - { - return $this->textAnnotations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1VideoContext.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1VideoContext.php deleted file mode 100644 index 0971a398..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1VideoContext.php +++ /dev/null @@ -1,134 +0,0 @@ -explicitContentDetectionConfig = $explicitContentDetectionConfig; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1ExplicitContentDetectionConfig - */ - public function getExplicitContentDetectionConfig() - { - return $this->explicitContentDetectionConfig; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1LabelDetectionConfig - */ - public function setLabelDetectionConfig(Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1LabelDetectionConfig $labelDetectionConfig) - { - $this->labelDetectionConfig = $labelDetectionConfig; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1LabelDetectionConfig - */ - public function getLabelDetectionConfig() - { - return $this->labelDetectionConfig; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1ObjectTrackingConfig - */ - public function setObjectTrackingConfig(Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1ObjectTrackingConfig $objectTrackingConfig) - { - $this->objectTrackingConfig = $objectTrackingConfig; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1ObjectTrackingConfig - */ - public function getObjectTrackingConfig() - { - return $this->objectTrackingConfig; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1VideoSegment - */ - public function setSegments($segments) - { - $this->segments = $segments; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1VideoSegment - */ - public function getSegments() - { - return $this->segments; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1ShotChangeDetectionConfig - */ - public function setShotChangeDetectionConfig(Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1ShotChangeDetectionConfig $shotChangeDetectionConfig) - { - $this->shotChangeDetectionConfig = $shotChangeDetectionConfig; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1ShotChangeDetectionConfig - */ - public function getShotChangeDetectionConfig() - { - return $this->shotChangeDetectionConfig; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1SpeechTranscriptionConfig - */ - public function setSpeechTranscriptionConfig(Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1SpeechTranscriptionConfig $speechTranscriptionConfig) - { - $this->speechTranscriptionConfig = $speechTranscriptionConfig; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1SpeechTranscriptionConfig - */ - public function getSpeechTranscriptionConfig() - { - return $this->speechTranscriptionConfig; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1TextDetectionConfig - */ - public function setTextDetectionConfig(Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1TextDetectionConfig $textDetectionConfig) - { - $this->textDetectionConfig = $textDetectionConfig; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1TextDetectionConfig - */ - public function getTextDetectionConfig() - { - return $this->textDetectionConfig; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1VideoSegment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1VideoSegment.php deleted file mode 100644 index 981170cb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1VideoSegment.php +++ /dev/null @@ -1,39 +0,0 @@ -endTimeOffset = $endTimeOffset; - } - public function getEndTimeOffset() - { - return $this->endTimeOffset; - } - public function setStartTimeOffset($startTimeOffset) - { - $this->startTimeOffset = $startTimeOffset; - } - public function getStartTimeOffset() - { - return $this->startTimeOffset; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1WordInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1WordInfo.php deleted file mode 100644 index ac20f76c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1WordInfo.php +++ /dev/null @@ -1,66 +0,0 @@ -confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setSpeakerTag($speakerTag) - { - $this->speakerTag = $speakerTag; - } - public function getSpeakerTag() - { - return $this->speakerTag; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } - public function setWord($word) - { - $this->word = $word; - } - public function getWord() - { - return $this->word; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2AnnotateVideoProgress.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2AnnotateVideoProgress.php deleted file mode 100644 index 94389da4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2AnnotateVideoProgress.php +++ /dev/null @@ -1,38 +0,0 @@ -annotationProgress = $annotationProgress; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2VideoAnnotationProgress - */ - public function getAnnotationProgress() - { - return $this->annotationProgress; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2AnnotateVideoResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2AnnotateVideoResponse.php deleted file mode 100644 index 7e57bc75..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2AnnotateVideoResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -annotationResults = $annotationResults; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2VideoAnnotationResults - */ - public function getAnnotationResults() - { - return $this->annotationResults; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2Entity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2Entity.php deleted file mode 100644 index 6e143250..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2Entity.php +++ /dev/null @@ -1,48 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setEntityId($entityId) - { - $this->entityId = $entityId; - } - public function getEntityId() - { - return $this->entityId; - } - public function setLanguageCode($languageCode) - { - $this->languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2ExplicitContentAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2ExplicitContentAnnotation.php deleted file mode 100644 index 2458ac06..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2ExplicitContentAnnotation.php +++ /dev/null @@ -1,38 +0,0 @@ -frames = $frames; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2ExplicitContentFrame - */ - public function getFrames() - { - return $this->frames; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2ExplicitContentFrame.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2ExplicitContentFrame.php deleted file mode 100644 index 771578e3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2ExplicitContentFrame.php +++ /dev/null @@ -1,39 +0,0 @@ -pornographyLikelihood = $pornographyLikelihood; - } - public function getPornographyLikelihood() - { - return $this->pornographyLikelihood; - } - public function setTimeOffset($timeOffset) - { - $this->timeOffset = $timeOffset; - } - public function getTimeOffset() - { - return $this->timeOffset; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2LabelAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2LabelAnnotation.php deleted file mode 100644 index 3b10c99c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2LabelAnnotation.php +++ /dev/null @@ -1,86 +0,0 @@ -categoryEntities = $categoryEntities; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2Entity - */ - public function getCategoryEntities() - { - return $this->categoryEntities; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2Entity - */ - public function setEntity(Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2Entity $entity) - { - $this->entity = $entity; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2Entity - */ - public function getEntity() - { - return $this->entity; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2LabelFrame - */ - public function setFrames($frames) - { - $this->frames = $frames; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2LabelFrame - */ - public function getFrames() - { - return $this->frames; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2LabelSegment - */ - public function setSegments($segments) - { - $this->segments = $segments; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2LabelSegment - */ - public function getSegments() - { - return $this->segments; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2LabelFrame.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2LabelFrame.php deleted file mode 100644 index 59675082..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2LabelFrame.php +++ /dev/null @@ -1,39 +0,0 @@ -confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - public function setTimeOffset($timeOffset) - { - $this->timeOffset = $timeOffset; - } - public function getTimeOffset() - { - return $this->timeOffset; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2LabelSegment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2LabelSegment.php deleted file mode 100644 index 168205fc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2LabelSegment.php +++ /dev/null @@ -1,46 +0,0 @@ -confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2VideoSegment - */ - public function setSegment(Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2VideoSegment $segment) - { - $this->segment = $segment; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2VideoSegment - */ - public function getSegment() - { - return $this->segment; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2NormalizedBoundingBox.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2NormalizedBoundingBox.php deleted file mode 100644 index 426e8fda..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2NormalizedBoundingBox.php +++ /dev/null @@ -1,57 +0,0 @@ -bottom = $bottom; - } - public function getBottom() - { - return $this->bottom; - } - public function setLeft($left) - { - $this->left = $left; - } - public function getLeft() - { - return $this->left; - } - public function setRight($right) - { - $this->right = $right; - } - public function getRight() - { - return $this->right; - } - public function setTop($top) - { - $this->top = $top; - } - public function getTop() - { - return $this->top; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2NormalizedBoundingPoly.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2NormalizedBoundingPoly.php deleted file mode 100644 index 82467447..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2NormalizedBoundingPoly.php +++ /dev/null @@ -1,38 +0,0 @@ -vertices = $vertices; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2NormalizedVertex - */ - public function getVertices() - { - return $this->vertices; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2NormalizedVertex.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2NormalizedVertex.php deleted file mode 100644 index 79837ee7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2NormalizedVertex.php +++ /dev/null @@ -1,39 +0,0 @@ -x = $x; - } - public function getX() - { - return $this->x; - } - public function setY($y) - { - $this->y = $y; - } - public function getY() - { - return $this->y; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2ObjectTrackingAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2ObjectTrackingAnnotation.php deleted file mode 100644 index d6c669b9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2ObjectTrackingAnnotation.php +++ /dev/null @@ -1,88 +0,0 @@ -confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2Entity - */ - public function setEntity(Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2Entity $entity) - { - $this->entity = $entity; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2Entity - */ - public function getEntity() - { - return $this->entity; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2ObjectTrackingFrame - */ - public function setFrames($frames) - { - $this->frames = $frames; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2ObjectTrackingFrame - */ - public function getFrames() - { - return $this->frames; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2VideoSegment - */ - public function setSegment(Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2VideoSegment $segment) - { - $this->segment = $segment; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2VideoSegment - */ - public function getSegment() - { - return $this->segment; - } - public function setTrackId($trackId) - { - $this->trackId = $trackId; - } - public function getTrackId() - { - return $this->trackId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2ObjectTrackingFrame.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2ObjectTrackingFrame.php deleted file mode 100644 index 649049d1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2ObjectTrackingFrame.php +++ /dev/null @@ -1,46 +0,0 @@ -normalizedBoundingBox = $normalizedBoundingBox; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2NormalizedBoundingBox - */ - public function getNormalizedBoundingBox() - { - return $this->normalizedBoundingBox; - } - public function setTimeOffset($timeOffset) - { - $this->timeOffset = $timeOffset; - } - public function getTimeOffset() - { - return $this->timeOffset; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2SpeechRecognitionAlternative.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2SpeechRecognitionAlternative.php deleted file mode 100644 index d92210da..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2SpeechRecognitionAlternative.php +++ /dev/null @@ -1,56 +0,0 @@ -confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - public function setTranscript($transcript) - { - $this->transcript = $transcript; - } - public function getTranscript() - { - return $this->transcript; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2WordInfo - */ - public function setWords($words) - { - $this->words = $words; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2WordInfo - */ - public function getWords() - { - return $this->words; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2SpeechTranscription.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2SpeechTranscription.php deleted file mode 100644 index a7e62e78..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2SpeechTranscription.php +++ /dev/null @@ -1,47 +0,0 @@ -alternatives = $alternatives; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2SpeechRecognitionAlternative - */ - public function getAlternatives() - { - return $this->alternatives; - } - public function setLanguageCode($languageCode) - { - $this->languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2TextAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2TextAnnotation.php deleted file mode 100644 index a13887c5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2TextAnnotation.php +++ /dev/null @@ -1,47 +0,0 @@ -segments = $segments; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2TextSegment - */ - public function getSegments() - { - return $this->segments; - } - public function setText($text) - { - $this->text = $text; - } - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2TextFrame.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2TextFrame.php deleted file mode 100644 index c328ddef..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2TextFrame.php +++ /dev/null @@ -1,46 +0,0 @@ -rotatedBoundingBox = $rotatedBoundingBox; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2NormalizedBoundingPoly - */ - public function getRotatedBoundingBox() - { - return $this->rotatedBoundingBox; - } - public function setTimeOffset($timeOffset) - { - $this->timeOffset = $timeOffset; - } - public function getTimeOffset() - { - return $this->timeOffset; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2TextSegment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2TextSegment.php deleted file mode 100644 index 864f25ed..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2TextSegment.php +++ /dev/null @@ -1,63 +0,0 @@ -confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2TextFrame - */ - public function setFrames($frames) - { - $this->frames = $frames; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2TextFrame - */ - public function getFrames() - { - return $this->frames; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2VideoSegment - */ - public function setSegment(Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2VideoSegment $segment) - { - $this->segment = $segment; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2VideoSegment - */ - public function getSegment() - { - return $this->segment; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2VideoAnnotationProgress.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2VideoAnnotationProgress.php deleted file mode 100644 index 90da278e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2VideoAnnotationProgress.php +++ /dev/null @@ -1,82 +0,0 @@ -feature = $feature; - } - public function getFeature() - { - return $this->feature; - } - public function setInputUri($inputUri) - { - $this->inputUri = $inputUri; - } - public function getInputUri() - { - return $this->inputUri; - } - public function setProgressPercent($progressPercent) - { - $this->progressPercent = $progressPercent; - } - public function getProgressPercent() - { - return $this->progressPercent; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2VideoSegment - */ - public function setSegment(Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2VideoSegment $segment) - { - $this->segment = $segment; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2VideoSegment - */ - public function getSegment() - { - return $this->segment; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2VideoAnnotationResults.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2VideoAnnotationResults.php deleted file mode 100644 index eb543197..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2VideoAnnotationResults.php +++ /dev/null @@ -1,223 +0,0 @@ -error = $error; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleRpcStatus - */ - public function getError() - { - return $this->error; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2ExplicitContentAnnotation - */ - public function setExplicitAnnotation(Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2ExplicitContentAnnotation $explicitAnnotation) - { - $this->explicitAnnotation = $explicitAnnotation; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2ExplicitContentAnnotation - */ - public function getExplicitAnnotation() - { - return $this->explicitAnnotation; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2LabelAnnotation - */ - public function setFrameLabelAnnotations($frameLabelAnnotations) - { - $this->frameLabelAnnotations = $frameLabelAnnotations; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2LabelAnnotation - */ - public function getFrameLabelAnnotations() - { - return $this->frameLabelAnnotations; - } - public function setInputUri($inputUri) - { - $this->inputUri = $inputUri; - } - public function getInputUri() - { - return $this->inputUri; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2ObjectTrackingAnnotation - */ - public function setObjectAnnotations($objectAnnotations) - { - $this->objectAnnotations = $objectAnnotations; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2ObjectTrackingAnnotation - */ - public function getObjectAnnotations() - { - return $this->objectAnnotations; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2VideoSegment - */ - public function setSegment(Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2VideoSegment $segment) - { - $this->segment = $segment; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2VideoSegment - */ - public function getSegment() - { - return $this->segment; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2LabelAnnotation - */ - public function setSegmentLabelAnnotations($segmentLabelAnnotations) - { - $this->segmentLabelAnnotations = $segmentLabelAnnotations; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2LabelAnnotation - */ - public function getSegmentLabelAnnotations() - { - return $this->segmentLabelAnnotations; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2LabelAnnotation - */ - public function setSegmentPresenceLabelAnnotations($segmentPresenceLabelAnnotations) - { - $this->segmentPresenceLabelAnnotations = $segmentPresenceLabelAnnotations; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2LabelAnnotation - */ - public function getSegmentPresenceLabelAnnotations() - { - return $this->segmentPresenceLabelAnnotations; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2VideoSegment - */ - public function setShotAnnotations($shotAnnotations) - { - $this->shotAnnotations = $shotAnnotations; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2VideoSegment - */ - public function getShotAnnotations() - { - return $this->shotAnnotations; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2LabelAnnotation - */ - public function setShotLabelAnnotations($shotLabelAnnotations) - { - $this->shotLabelAnnotations = $shotLabelAnnotations; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2LabelAnnotation - */ - public function getShotLabelAnnotations() - { - return $this->shotLabelAnnotations; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2LabelAnnotation - */ - public function setShotPresenceLabelAnnotations($shotPresenceLabelAnnotations) - { - $this->shotPresenceLabelAnnotations = $shotPresenceLabelAnnotations; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2LabelAnnotation - */ - public function getShotPresenceLabelAnnotations() - { - return $this->shotPresenceLabelAnnotations; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2SpeechTranscription - */ - public function setSpeechTranscriptions($speechTranscriptions) - { - $this->speechTranscriptions = $speechTranscriptions; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2SpeechTranscription - */ - public function getSpeechTranscriptions() - { - return $this->speechTranscriptions; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2TextAnnotation - */ - public function setTextAnnotations($textAnnotations) - { - $this->textAnnotations = $textAnnotations; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1beta2TextAnnotation - */ - public function getTextAnnotations() - { - return $this->textAnnotations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2VideoSegment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2VideoSegment.php deleted file mode 100644 index e9ee745b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2VideoSegment.php +++ /dev/null @@ -1,39 +0,0 @@ -endTimeOffset = $endTimeOffset; - } - public function getEndTimeOffset() - { - return $this->endTimeOffset; - } - public function setStartTimeOffset($startTimeOffset) - { - $this->startTimeOffset = $startTimeOffset; - } - public function getStartTimeOffset() - { - return $this->startTimeOffset; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2WordInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2WordInfo.php deleted file mode 100644 index 547f6fa3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1beta2WordInfo.php +++ /dev/null @@ -1,66 +0,0 @@ -confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setSpeakerTag($speakerTag) - { - $this->speakerTag = $speakerTag; - } - public function getSpeakerTag() - { - return $this->speakerTag; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } - public function setWord($word) - { - $this->word = $word; - } - public function getWord() - { - return $this->word; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1AnnotateVideoProgress.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1AnnotateVideoProgress.php deleted file mode 100644 index 018e151a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1AnnotateVideoProgress.php +++ /dev/null @@ -1,38 +0,0 @@ -annotationProgress = $annotationProgress; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1VideoAnnotationProgress - */ - public function getAnnotationProgress() - { - return $this->annotationProgress; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1AnnotateVideoResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1AnnotateVideoResponse.php deleted file mode 100644 index 881c3b1e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1AnnotateVideoResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -annotationResults = $annotationResults; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1VideoAnnotationResults - */ - public function getAnnotationResults() - { - return $this->annotationResults; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1Entity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1Entity.php deleted file mode 100644 index f2f8f3df..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1Entity.php +++ /dev/null @@ -1,48 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setEntityId($entityId) - { - $this->entityId = $entityId; - } - public function getEntityId() - { - return $this->entityId; - } - public function setLanguageCode($languageCode) - { - $this->languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1ExplicitContentAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1ExplicitContentAnnotation.php deleted file mode 100644 index 93747458..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1ExplicitContentAnnotation.php +++ /dev/null @@ -1,38 +0,0 @@ -frames = $frames; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1ExplicitContentFrame - */ - public function getFrames() - { - return $this->frames; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1ExplicitContentFrame.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1ExplicitContentFrame.php deleted file mode 100644 index 7e04cdaf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1ExplicitContentFrame.php +++ /dev/null @@ -1,39 +0,0 @@ -pornographyLikelihood = $pornographyLikelihood; - } - public function getPornographyLikelihood() - { - return $this->pornographyLikelihood; - } - public function setTimeOffset($timeOffset) - { - $this->timeOffset = $timeOffset; - } - public function getTimeOffset() - { - return $this->timeOffset; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1LabelAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1LabelAnnotation.php deleted file mode 100644 index cdbc3e97..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1LabelAnnotation.php +++ /dev/null @@ -1,86 +0,0 @@ -categoryEntities = $categoryEntities; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1Entity - */ - public function getCategoryEntities() - { - return $this->categoryEntities; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1Entity - */ - public function setEntity(Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1Entity $entity) - { - $this->entity = $entity; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1Entity - */ - public function getEntity() - { - return $this->entity; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1LabelFrame - */ - public function setFrames($frames) - { - $this->frames = $frames; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1LabelFrame - */ - public function getFrames() - { - return $this->frames; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1LabelSegment - */ - public function setSegments($segments) - { - $this->segments = $segments; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1LabelSegment - */ - public function getSegments() - { - return $this->segments; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1LabelFrame.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1LabelFrame.php deleted file mode 100644 index 576dfb9e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1LabelFrame.php +++ /dev/null @@ -1,39 +0,0 @@ -confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - public function setTimeOffset($timeOffset) - { - $this->timeOffset = $timeOffset; - } - public function getTimeOffset() - { - return $this->timeOffset; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1LabelSegment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1LabelSegment.php deleted file mode 100644 index 52d2d49a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1LabelSegment.php +++ /dev/null @@ -1,46 +0,0 @@ -confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1VideoSegment - */ - public function setSegment(Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1VideoSegment $segment) - { - $this->segment = $segment; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1VideoSegment - */ - public function getSegment() - { - return $this->segment; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1NormalizedBoundingBox.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1NormalizedBoundingBox.php deleted file mode 100644 index 269bb20d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1NormalizedBoundingBox.php +++ /dev/null @@ -1,57 +0,0 @@ -bottom = $bottom; - } - public function getBottom() - { - return $this->bottom; - } - public function setLeft($left) - { - $this->left = $left; - } - public function getLeft() - { - return $this->left; - } - public function setRight($right) - { - $this->right = $right; - } - public function getRight() - { - return $this->right; - } - public function setTop($top) - { - $this->top = $top; - } - public function getTop() - { - return $this->top; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1NormalizedBoundingPoly.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1NormalizedBoundingPoly.php deleted file mode 100644 index 5935d21c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1NormalizedBoundingPoly.php +++ /dev/null @@ -1,38 +0,0 @@ -vertices = $vertices; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1NormalizedVertex - */ - public function getVertices() - { - return $this->vertices; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1NormalizedVertex.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1NormalizedVertex.php deleted file mode 100644 index c2420ff5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1NormalizedVertex.php +++ /dev/null @@ -1,39 +0,0 @@ -x = $x; - } - public function getX() - { - return $this->x; - } - public function setY($y) - { - $this->y = $y; - } - public function getY() - { - return $this->y; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1ObjectTrackingAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1ObjectTrackingAnnotation.php deleted file mode 100644 index ea10527d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1ObjectTrackingAnnotation.php +++ /dev/null @@ -1,88 +0,0 @@ -confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1Entity - */ - public function setEntity(Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1Entity $entity) - { - $this->entity = $entity; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1Entity - */ - public function getEntity() - { - return $this->entity; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1ObjectTrackingFrame - */ - public function setFrames($frames) - { - $this->frames = $frames; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1ObjectTrackingFrame - */ - public function getFrames() - { - return $this->frames; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1VideoSegment - */ - public function setSegment(Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1VideoSegment $segment) - { - $this->segment = $segment; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1VideoSegment - */ - public function getSegment() - { - return $this->segment; - } - public function setTrackId($trackId) - { - $this->trackId = $trackId; - } - public function getTrackId() - { - return $this->trackId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1ObjectTrackingFrame.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1ObjectTrackingFrame.php deleted file mode 100644 index f1be842d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1ObjectTrackingFrame.php +++ /dev/null @@ -1,46 +0,0 @@ -normalizedBoundingBox = $normalizedBoundingBox; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1NormalizedBoundingBox - */ - public function getNormalizedBoundingBox() - { - return $this->normalizedBoundingBox; - } - public function setTimeOffset($timeOffset) - { - $this->timeOffset = $timeOffset; - } - public function getTimeOffset() - { - return $this->timeOffset; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1SpeechRecognitionAlternative.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1SpeechRecognitionAlternative.php deleted file mode 100644 index efa943d2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1SpeechRecognitionAlternative.php +++ /dev/null @@ -1,56 +0,0 @@ -confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - public function setTranscript($transcript) - { - $this->transcript = $transcript; - } - public function getTranscript() - { - return $this->transcript; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1WordInfo - */ - public function setWords($words) - { - $this->words = $words; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1WordInfo - */ - public function getWords() - { - return $this->words; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1SpeechTranscription.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1SpeechTranscription.php deleted file mode 100644 index eefb8ff6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1SpeechTranscription.php +++ /dev/null @@ -1,47 +0,0 @@ -alternatives = $alternatives; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1SpeechRecognitionAlternative - */ - public function getAlternatives() - { - return $this->alternatives; - } - public function setLanguageCode($languageCode) - { - $this->languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1TextAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1TextAnnotation.php deleted file mode 100644 index dc27c3cc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1TextAnnotation.php +++ /dev/null @@ -1,47 +0,0 @@ -segments = $segments; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1TextSegment - */ - public function getSegments() - { - return $this->segments; - } - public function setText($text) - { - $this->text = $text; - } - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1TextFrame.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1TextFrame.php deleted file mode 100644 index d6ec8c6b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1TextFrame.php +++ /dev/null @@ -1,46 +0,0 @@ -rotatedBoundingBox = $rotatedBoundingBox; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1NormalizedBoundingPoly - */ - public function getRotatedBoundingBox() - { - return $this->rotatedBoundingBox; - } - public function setTimeOffset($timeOffset) - { - $this->timeOffset = $timeOffset; - } - public function getTimeOffset() - { - return $this->timeOffset; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1TextSegment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1TextSegment.php deleted file mode 100644 index 25e9b098..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1TextSegment.php +++ /dev/null @@ -1,63 +0,0 @@ -confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1TextFrame - */ - public function setFrames($frames) - { - $this->frames = $frames; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1TextFrame - */ - public function getFrames() - { - return $this->frames; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1VideoSegment - */ - public function setSegment(Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1VideoSegment $segment) - { - $this->segment = $segment; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1VideoSegment - */ - public function getSegment() - { - return $this->segment; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1VideoAnnotationProgress.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1VideoAnnotationProgress.php deleted file mode 100644 index 7cdd1974..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1VideoAnnotationProgress.php +++ /dev/null @@ -1,82 +0,0 @@ -feature = $feature; - } - public function getFeature() - { - return $this->feature; - } - public function setInputUri($inputUri) - { - $this->inputUri = $inputUri; - } - public function getInputUri() - { - return $this->inputUri; - } - public function setProgressPercent($progressPercent) - { - $this->progressPercent = $progressPercent; - } - public function getProgressPercent() - { - return $this->progressPercent; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1VideoSegment - */ - public function setSegment(Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1VideoSegment $segment) - { - $this->segment = $segment; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1VideoSegment - */ - public function getSegment() - { - return $this->segment; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1VideoAnnotationResults.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1VideoAnnotationResults.php deleted file mode 100644 index b8dd823c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1VideoAnnotationResults.php +++ /dev/null @@ -1,223 +0,0 @@ -error = $error; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleRpcStatus - */ - public function getError() - { - return $this->error; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1ExplicitContentAnnotation - */ - public function setExplicitAnnotation(Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1ExplicitContentAnnotation $explicitAnnotation) - { - $this->explicitAnnotation = $explicitAnnotation; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1ExplicitContentAnnotation - */ - public function getExplicitAnnotation() - { - return $this->explicitAnnotation; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1LabelAnnotation - */ - public function setFrameLabelAnnotations($frameLabelAnnotations) - { - $this->frameLabelAnnotations = $frameLabelAnnotations; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1LabelAnnotation - */ - public function getFrameLabelAnnotations() - { - return $this->frameLabelAnnotations; - } - public function setInputUri($inputUri) - { - $this->inputUri = $inputUri; - } - public function getInputUri() - { - return $this->inputUri; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1ObjectTrackingAnnotation - */ - public function setObjectAnnotations($objectAnnotations) - { - $this->objectAnnotations = $objectAnnotations; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1ObjectTrackingAnnotation - */ - public function getObjectAnnotations() - { - return $this->objectAnnotations; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1VideoSegment - */ - public function setSegment(Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1VideoSegment $segment) - { - $this->segment = $segment; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1VideoSegment - */ - public function getSegment() - { - return $this->segment; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1LabelAnnotation - */ - public function setSegmentLabelAnnotations($segmentLabelAnnotations) - { - $this->segmentLabelAnnotations = $segmentLabelAnnotations; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1LabelAnnotation - */ - public function getSegmentLabelAnnotations() - { - return $this->segmentLabelAnnotations; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1LabelAnnotation - */ - public function setSegmentPresenceLabelAnnotations($segmentPresenceLabelAnnotations) - { - $this->segmentPresenceLabelAnnotations = $segmentPresenceLabelAnnotations; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1LabelAnnotation - */ - public function getSegmentPresenceLabelAnnotations() - { - return $this->segmentPresenceLabelAnnotations; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1VideoSegment - */ - public function setShotAnnotations($shotAnnotations) - { - $this->shotAnnotations = $shotAnnotations; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1VideoSegment - */ - public function getShotAnnotations() - { - return $this->shotAnnotations; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1LabelAnnotation - */ - public function setShotLabelAnnotations($shotLabelAnnotations) - { - $this->shotLabelAnnotations = $shotLabelAnnotations; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1LabelAnnotation - */ - public function getShotLabelAnnotations() - { - return $this->shotLabelAnnotations; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1LabelAnnotation - */ - public function setShotPresenceLabelAnnotations($shotPresenceLabelAnnotations) - { - $this->shotPresenceLabelAnnotations = $shotPresenceLabelAnnotations; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1LabelAnnotation - */ - public function getShotPresenceLabelAnnotations() - { - return $this->shotPresenceLabelAnnotations; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1SpeechTranscription - */ - public function setSpeechTranscriptions($speechTranscriptions) - { - $this->speechTranscriptions = $speechTranscriptions; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1SpeechTranscription - */ - public function getSpeechTranscriptions() - { - return $this->speechTranscriptions; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1TextAnnotation - */ - public function setTextAnnotations($textAnnotations) - { - $this->textAnnotations = $textAnnotations; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p1beta1TextAnnotation - */ - public function getTextAnnotations() - { - return $this->textAnnotations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1VideoSegment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1VideoSegment.php deleted file mode 100644 index 7292540f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1VideoSegment.php +++ /dev/null @@ -1,39 +0,0 @@ -endTimeOffset = $endTimeOffset; - } - public function getEndTimeOffset() - { - return $this->endTimeOffset; - } - public function setStartTimeOffset($startTimeOffset) - { - $this->startTimeOffset = $startTimeOffset; - } - public function getStartTimeOffset() - { - return $this->startTimeOffset; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1WordInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1WordInfo.php deleted file mode 100644 index 846fb56b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p1beta1WordInfo.php +++ /dev/null @@ -1,66 +0,0 @@ -confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setSpeakerTag($speakerTag) - { - $this->speakerTag = $speakerTag; - } - public function getSpeakerTag() - { - return $this->speakerTag; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } - public function setWord($word) - { - $this->word = $word; - } - public function getWord() - { - return $this->word; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1AnnotateVideoProgress.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1AnnotateVideoProgress.php deleted file mode 100644 index 27918517..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1AnnotateVideoProgress.php +++ /dev/null @@ -1,38 +0,0 @@ -annotationProgress = $annotationProgress; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1VideoAnnotationProgress - */ - public function getAnnotationProgress() - { - return $this->annotationProgress; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1AnnotateVideoResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1AnnotateVideoResponse.php deleted file mode 100644 index 39a5de91..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1AnnotateVideoResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -annotationResults = $annotationResults; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1VideoAnnotationResults - */ - public function getAnnotationResults() - { - return $this->annotationResults; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1Entity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1Entity.php deleted file mode 100644 index b9e63000..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1Entity.php +++ /dev/null @@ -1,48 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setEntityId($entityId) - { - $this->entityId = $entityId; - } - public function getEntityId() - { - return $this->entityId; - } - public function setLanguageCode($languageCode) - { - $this->languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1ExplicitContentAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1ExplicitContentAnnotation.php deleted file mode 100644 index 042733f7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1ExplicitContentAnnotation.php +++ /dev/null @@ -1,38 +0,0 @@ -frames = $frames; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1ExplicitContentFrame - */ - public function getFrames() - { - return $this->frames; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1ExplicitContentFrame.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1ExplicitContentFrame.php deleted file mode 100644 index 4d93867b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1ExplicitContentFrame.php +++ /dev/null @@ -1,39 +0,0 @@ -pornographyLikelihood = $pornographyLikelihood; - } - public function getPornographyLikelihood() - { - return $this->pornographyLikelihood; - } - public function setTimeOffset($timeOffset) - { - $this->timeOffset = $timeOffset; - } - public function getTimeOffset() - { - return $this->timeOffset; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1LabelAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1LabelAnnotation.php deleted file mode 100644 index a0012c7d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1LabelAnnotation.php +++ /dev/null @@ -1,86 +0,0 @@ -categoryEntities = $categoryEntities; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1Entity - */ - public function getCategoryEntities() - { - return $this->categoryEntities; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1Entity - */ - public function setEntity(Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1Entity $entity) - { - $this->entity = $entity; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1Entity - */ - public function getEntity() - { - return $this->entity; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1LabelFrame - */ - public function setFrames($frames) - { - $this->frames = $frames; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1LabelFrame - */ - public function getFrames() - { - return $this->frames; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1LabelSegment - */ - public function setSegments($segments) - { - $this->segments = $segments; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1LabelSegment - */ - public function getSegments() - { - return $this->segments; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1LabelFrame.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1LabelFrame.php deleted file mode 100644 index f8a9e3d5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1LabelFrame.php +++ /dev/null @@ -1,39 +0,0 @@ -confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - public function setTimeOffset($timeOffset) - { - $this->timeOffset = $timeOffset; - } - public function getTimeOffset() - { - return $this->timeOffset; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1LabelSegment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1LabelSegment.php deleted file mode 100644 index 4f8150b2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1LabelSegment.php +++ /dev/null @@ -1,46 +0,0 @@ -confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1VideoSegment - */ - public function setSegment(Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1VideoSegment $segment) - { - $this->segment = $segment; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1VideoSegment - */ - public function getSegment() - { - return $this->segment; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1NormalizedBoundingBox.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1NormalizedBoundingBox.php deleted file mode 100644 index 52fdc9c6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1NormalizedBoundingBox.php +++ /dev/null @@ -1,57 +0,0 @@ -bottom = $bottom; - } - public function getBottom() - { - return $this->bottom; - } - public function setLeft($left) - { - $this->left = $left; - } - public function getLeft() - { - return $this->left; - } - public function setRight($right) - { - $this->right = $right; - } - public function getRight() - { - return $this->right; - } - public function setTop($top) - { - $this->top = $top; - } - public function getTop() - { - return $this->top; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1NormalizedBoundingPoly.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1NormalizedBoundingPoly.php deleted file mode 100644 index 9ffaa748..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1NormalizedBoundingPoly.php +++ /dev/null @@ -1,38 +0,0 @@ -vertices = $vertices; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1NormalizedVertex - */ - public function getVertices() - { - return $this->vertices; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1NormalizedVertex.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1NormalizedVertex.php deleted file mode 100644 index 096b6ba9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1NormalizedVertex.php +++ /dev/null @@ -1,39 +0,0 @@ -x = $x; - } - public function getX() - { - return $this->x; - } - public function setY($y) - { - $this->y = $y; - } - public function getY() - { - return $this->y; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1ObjectTrackingAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1ObjectTrackingAnnotation.php deleted file mode 100644 index cca869d2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1ObjectTrackingAnnotation.php +++ /dev/null @@ -1,88 +0,0 @@ -confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1Entity - */ - public function setEntity(Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1Entity $entity) - { - $this->entity = $entity; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1Entity - */ - public function getEntity() - { - return $this->entity; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1ObjectTrackingFrame - */ - public function setFrames($frames) - { - $this->frames = $frames; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1ObjectTrackingFrame - */ - public function getFrames() - { - return $this->frames; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1VideoSegment - */ - public function setSegment(Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1VideoSegment $segment) - { - $this->segment = $segment; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1VideoSegment - */ - public function getSegment() - { - return $this->segment; - } - public function setTrackId($trackId) - { - $this->trackId = $trackId; - } - public function getTrackId() - { - return $this->trackId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1ObjectTrackingFrame.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1ObjectTrackingFrame.php deleted file mode 100644 index b05eaa0f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1ObjectTrackingFrame.php +++ /dev/null @@ -1,46 +0,0 @@ -normalizedBoundingBox = $normalizedBoundingBox; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1NormalizedBoundingBox - */ - public function getNormalizedBoundingBox() - { - return $this->normalizedBoundingBox; - } - public function setTimeOffset($timeOffset) - { - $this->timeOffset = $timeOffset; - } - public function getTimeOffset() - { - return $this->timeOffset; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1SpeechRecognitionAlternative.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1SpeechRecognitionAlternative.php deleted file mode 100644 index ae7c2f77..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1SpeechRecognitionAlternative.php +++ /dev/null @@ -1,56 +0,0 @@ -confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - public function setTranscript($transcript) - { - $this->transcript = $transcript; - } - public function getTranscript() - { - return $this->transcript; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1WordInfo - */ - public function setWords($words) - { - $this->words = $words; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1WordInfo - */ - public function getWords() - { - return $this->words; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1SpeechTranscription.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1SpeechTranscription.php deleted file mode 100644 index 6fa78260..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1SpeechTranscription.php +++ /dev/null @@ -1,47 +0,0 @@ -alternatives = $alternatives; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1SpeechRecognitionAlternative - */ - public function getAlternatives() - { - return $this->alternatives; - } - public function setLanguageCode($languageCode) - { - $this->languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1TextAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1TextAnnotation.php deleted file mode 100644 index b63910a5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1TextAnnotation.php +++ /dev/null @@ -1,47 +0,0 @@ -segments = $segments; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1TextSegment - */ - public function getSegments() - { - return $this->segments; - } - public function setText($text) - { - $this->text = $text; - } - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1TextFrame.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1TextFrame.php deleted file mode 100644 index fc66110b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1TextFrame.php +++ /dev/null @@ -1,46 +0,0 @@ -rotatedBoundingBox = $rotatedBoundingBox; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1NormalizedBoundingPoly - */ - public function getRotatedBoundingBox() - { - return $this->rotatedBoundingBox; - } - public function setTimeOffset($timeOffset) - { - $this->timeOffset = $timeOffset; - } - public function getTimeOffset() - { - return $this->timeOffset; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1TextSegment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1TextSegment.php deleted file mode 100644 index 4d7e2036..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1TextSegment.php +++ /dev/null @@ -1,63 +0,0 @@ -confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1TextFrame - */ - public function setFrames($frames) - { - $this->frames = $frames; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1TextFrame - */ - public function getFrames() - { - return $this->frames; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1VideoSegment - */ - public function setSegment(Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1VideoSegment $segment) - { - $this->segment = $segment; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1VideoSegment - */ - public function getSegment() - { - return $this->segment; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1VideoAnnotationProgress.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1VideoAnnotationProgress.php deleted file mode 100644 index 3cd098bf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1VideoAnnotationProgress.php +++ /dev/null @@ -1,82 +0,0 @@ -feature = $feature; - } - public function getFeature() - { - return $this->feature; - } - public function setInputUri($inputUri) - { - $this->inputUri = $inputUri; - } - public function getInputUri() - { - return $this->inputUri; - } - public function setProgressPercent($progressPercent) - { - $this->progressPercent = $progressPercent; - } - public function getProgressPercent() - { - return $this->progressPercent; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1VideoSegment - */ - public function setSegment(Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1VideoSegment $segment) - { - $this->segment = $segment; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1VideoSegment - */ - public function getSegment() - { - return $this->segment; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1VideoAnnotationResults.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1VideoAnnotationResults.php deleted file mode 100644 index e91ab332..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1VideoAnnotationResults.php +++ /dev/null @@ -1,223 +0,0 @@ -error = $error; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleRpcStatus - */ - public function getError() - { - return $this->error; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1ExplicitContentAnnotation - */ - public function setExplicitAnnotation(Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1ExplicitContentAnnotation $explicitAnnotation) - { - $this->explicitAnnotation = $explicitAnnotation; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1ExplicitContentAnnotation - */ - public function getExplicitAnnotation() - { - return $this->explicitAnnotation; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1LabelAnnotation - */ - public function setFrameLabelAnnotations($frameLabelAnnotations) - { - $this->frameLabelAnnotations = $frameLabelAnnotations; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1LabelAnnotation - */ - public function getFrameLabelAnnotations() - { - return $this->frameLabelAnnotations; - } - public function setInputUri($inputUri) - { - $this->inputUri = $inputUri; - } - public function getInputUri() - { - return $this->inputUri; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1ObjectTrackingAnnotation - */ - public function setObjectAnnotations($objectAnnotations) - { - $this->objectAnnotations = $objectAnnotations; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1ObjectTrackingAnnotation - */ - public function getObjectAnnotations() - { - return $this->objectAnnotations; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1VideoSegment - */ - public function setSegment(Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1VideoSegment $segment) - { - $this->segment = $segment; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1VideoSegment - */ - public function getSegment() - { - return $this->segment; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1LabelAnnotation - */ - public function setSegmentLabelAnnotations($segmentLabelAnnotations) - { - $this->segmentLabelAnnotations = $segmentLabelAnnotations; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1LabelAnnotation - */ - public function getSegmentLabelAnnotations() - { - return $this->segmentLabelAnnotations; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1LabelAnnotation - */ - public function setSegmentPresenceLabelAnnotations($segmentPresenceLabelAnnotations) - { - $this->segmentPresenceLabelAnnotations = $segmentPresenceLabelAnnotations; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1LabelAnnotation - */ - public function getSegmentPresenceLabelAnnotations() - { - return $this->segmentPresenceLabelAnnotations; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1VideoSegment - */ - public function setShotAnnotations($shotAnnotations) - { - $this->shotAnnotations = $shotAnnotations; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1VideoSegment - */ - public function getShotAnnotations() - { - return $this->shotAnnotations; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1LabelAnnotation - */ - public function setShotLabelAnnotations($shotLabelAnnotations) - { - $this->shotLabelAnnotations = $shotLabelAnnotations; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1LabelAnnotation - */ - public function getShotLabelAnnotations() - { - return $this->shotLabelAnnotations; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1LabelAnnotation - */ - public function setShotPresenceLabelAnnotations($shotPresenceLabelAnnotations) - { - $this->shotPresenceLabelAnnotations = $shotPresenceLabelAnnotations; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1LabelAnnotation - */ - public function getShotPresenceLabelAnnotations() - { - return $this->shotPresenceLabelAnnotations; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1SpeechTranscription - */ - public function setSpeechTranscriptions($speechTranscriptions) - { - $this->speechTranscriptions = $speechTranscriptions; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1SpeechTranscription - */ - public function getSpeechTranscriptions() - { - return $this->speechTranscriptions; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1TextAnnotation - */ - public function setTextAnnotations($textAnnotations) - { - $this->textAnnotations = $textAnnotations; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p2beta1TextAnnotation - */ - public function getTextAnnotations() - { - return $this->textAnnotations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1VideoSegment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1VideoSegment.php deleted file mode 100644 index 1608c7d2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1VideoSegment.php +++ /dev/null @@ -1,39 +0,0 @@ -endTimeOffset = $endTimeOffset; - } - public function getEndTimeOffset() - { - return $this->endTimeOffset; - } - public function setStartTimeOffset($startTimeOffset) - { - $this->startTimeOffset = $startTimeOffset; - } - public function getStartTimeOffset() - { - return $this->startTimeOffset; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1WordInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1WordInfo.php deleted file mode 100644 index 8e67e91b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p2beta1WordInfo.php +++ /dev/null @@ -1,66 +0,0 @@ -confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setSpeakerTag($speakerTag) - { - $this->speakerTag = $speakerTag; - } - public function getSpeakerTag() - { - return $this->speakerTag; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } - public function setWord($word) - { - $this->word = $word; - } - public function getWord() - { - return $this->word; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1AnnotateVideoProgress.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1AnnotateVideoProgress.php deleted file mode 100644 index 1f221972..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1AnnotateVideoProgress.php +++ /dev/null @@ -1,38 +0,0 @@ -annotationProgress = $annotationProgress; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1VideoAnnotationProgress - */ - public function getAnnotationProgress() - { - return $this->annotationProgress; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1AnnotateVideoResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1AnnotateVideoResponse.php deleted file mode 100644 index f0b49bec..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1AnnotateVideoResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -annotationResults = $annotationResults; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1VideoAnnotationResults - */ - public function getAnnotationResults() - { - return $this->annotationResults; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1Celebrity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1Celebrity.php deleted file mode 100644 index 383e713d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1Celebrity.php +++ /dev/null @@ -1,48 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1CelebrityRecognitionAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1CelebrityRecognitionAnnotation.php deleted file mode 100644 index a60efc36..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1CelebrityRecognitionAnnotation.php +++ /dev/null @@ -1,38 +0,0 @@ -celebrityTracks = $celebrityTracks; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1CelebrityTrack - */ - public function getCelebrityTracks() - { - return $this->celebrityTracks; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1CelebrityTrack.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1CelebrityTrack.php deleted file mode 100644 index 3d502f11..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1CelebrityTrack.php +++ /dev/null @@ -1,54 +0,0 @@ -celebrities = $celebrities; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1RecognizedCelebrity - */ - public function getCelebrities() - { - return $this->celebrities; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1Track - */ - public function setFaceTrack(Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1Track $faceTrack) - { - $this->faceTrack = $faceTrack; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1Track - */ - public function getFaceTrack() - { - return $this->faceTrack; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1DetectedAttribute.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1DetectedAttribute.php deleted file mode 100644 index 2ab3c1cb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1DetectedAttribute.php +++ /dev/null @@ -1,48 +0,0 @@ -confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1DetectedLandmark.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1DetectedLandmark.php deleted file mode 100644 index b9cc378e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1DetectedLandmark.php +++ /dev/null @@ -1,55 +0,0 @@ -confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1NormalizedVertex - */ - public function setPoint(Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1NormalizedVertex $point) - { - $this->point = $point; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1NormalizedVertex - */ - public function getPoint() - { - return $this->point; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1Entity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1Entity.php deleted file mode 100644 index 5b7f1cbe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1Entity.php +++ /dev/null @@ -1,48 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setEntityId($entityId) - { - $this->entityId = $entityId; - } - public function getEntityId() - { - return $this->entityId; - } - public function setLanguageCode($languageCode) - { - $this->languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1ExplicitContentAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1ExplicitContentAnnotation.php deleted file mode 100644 index ab4d09b1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1ExplicitContentAnnotation.php +++ /dev/null @@ -1,38 +0,0 @@ -frames = $frames; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1ExplicitContentFrame - */ - public function getFrames() - { - return $this->frames; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1ExplicitContentFrame.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1ExplicitContentFrame.php deleted file mode 100644 index e1e3028e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1ExplicitContentFrame.php +++ /dev/null @@ -1,39 +0,0 @@ -pornographyLikelihood = $pornographyLikelihood; - } - public function getPornographyLikelihood() - { - return $this->pornographyLikelihood; - } - public function setTimeOffset($timeOffset) - { - $this->timeOffset = $timeOffset; - } - public function getTimeOffset() - { - return $this->timeOffset; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1FaceDetectionAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1FaceDetectionAnnotation.php deleted file mode 100644 index 006201ec..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1FaceDetectionAnnotation.php +++ /dev/null @@ -1,47 +0,0 @@ -thumbnail = $thumbnail; - } - public function getThumbnail() - { - return $this->thumbnail; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1Track - */ - public function setTracks($tracks) - { - $this->tracks = $tracks; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1Track - */ - public function getTracks() - { - return $this->tracks; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1LabelAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1LabelAnnotation.php deleted file mode 100644 index 33c5435a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1LabelAnnotation.php +++ /dev/null @@ -1,86 +0,0 @@ -categoryEntities = $categoryEntities; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1Entity - */ - public function getCategoryEntities() - { - return $this->categoryEntities; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1Entity - */ - public function setEntity(Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1Entity $entity) - { - $this->entity = $entity; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1Entity - */ - public function getEntity() - { - return $this->entity; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1LabelFrame - */ - public function setFrames($frames) - { - $this->frames = $frames; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1LabelFrame - */ - public function getFrames() - { - return $this->frames; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1LabelSegment - */ - public function setSegments($segments) - { - $this->segments = $segments; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1LabelSegment - */ - public function getSegments() - { - return $this->segments; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1LabelFrame.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1LabelFrame.php deleted file mode 100644 index 967d08e3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1LabelFrame.php +++ /dev/null @@ -1,39 +0,0 @@ -confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - public function setTimeOffset($timeOffset) - { - $this->timeOffset = $timeOffset; - } - public function getTimeOffset() - { - return $this->timeOffset; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1LabelSegment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1LabelSegment.php deleted file mode 100644 index 01ab3a20..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1LabelSegment.php +++ /dev/null @@ -1,46 +0,0 @@ -confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1VideoSegment - */ - public function setSegment(Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1VideoSegment $segment) - { - $this->segment = $segment; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1VideoSegment - */ - public function getSegment() - { - return $this->segment; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1LogoRecognitionAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1LogoRecognitionAnnotation.php deleted file mode 100644 index 183c9dc3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1LogoRecognitionAnnotation.php +++ /dev/null @@ -1,70 +0,0 @@ -entity = $entity; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1Entity - */ - public function getEntity() - { - return $this->entity; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1VideoSegment - */ - public function setSegments($segments) - { - $this->segments = $segments; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1VideoSegment - */ - public function getSegments() - { - return $this->segments; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1Track - */ - public function setTracks($tracks) - { - $this->tracks = $tracks; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1Track - */ - public function getTracks() - { - return $this->tracks; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1NormalizedBoundingBox.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1NormalizedBoundingBox.php deleted file mode 100644 index 3a2319af..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1NormalizedBoundingBox.php +++ /dev/null @@ -1,57 +0,0 @@ -bottom = $bottom; - } - public function getBottom() - { - return $this->bottom; - } - public function setLeft($left) - { - $this->left = $left; - } - public function getLeft() - { - return $this->left; - } - public function setRight($right) - { - $this->right = $right; - } - public function getRight() - { - return $this->right; - } - public function setTop($top) - { - $this->top = $top; - } - public function getTop() - { - return $this->top; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1NormalizedBoundingPoly.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1NormalizedBoundingPoly.php deleted file mode 100644 index fa7ebcec..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1NormalizedBoundingPoly.php +++ /dev/null @@ -1,38 +0,0 @@ -vertices = $vertices; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1NormalizedVertex - */ - public function getVertices() - { - return $this->vertices; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1NormalizedVertex.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1NormalizedVertex.php deleted file mode 100644 index 1592cdfd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1NormalizedVertex.php +++ /dev/null @@ -1,39 +0,0 @@ -x = $x; - } - public function getX() - { - return $this->x; - } - public function setY($y) - { - $this->y = $y; - } - public function getY() - { - return $this->y; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1ObjectTrackingAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1ObjectTrackingAnnotation.php deleted file mode 100644 index 2770d9a3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1ObjectTrackingAnnotation.php +++ /dev/null @@ -1,88 +0,0 @@ -confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1Entity - */ - public function setEntity(Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1Entity $entity) - { - $this->entity = $entity; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1Entity - */ - public function getEntity() - { - return $this->entity; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1ObjectTrackingFrame - */ - public function setFrames($frames) - { - $this->frames = $frames; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1ObjectTrackingFrame - */ - public function getFrames() - { - return $this->frames; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1VideoSegment - */ - public function setSegment(Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1VideoSegment $segment) - { - $this->segment = $segment; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1VideoSegment - */ - public function getSegment() - { - return $this->segment; - } - public function setTrackId($trackId) - { - $this->trackId = $trackId; - } - public function getTrackId() - { - return $this->trackId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1ObjectTrackingFrame.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1ObjectTrackingFrame.php deleted file mode 100644 index 1ef5eeec..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1ObjectTrackingFrame.php +++ /dev/null @@ -1,46 +0,0 @@ -normalizedBoundingBox = $normalizedBoundingBox; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1NormalizedBoundingBox - */ - public function getNormalizedBoundingBox() - { - return $this->normalizedBoundingBox; - } - public function setTimeOffset($timeOffset) - { - $this->timeOffset = $timeOffset; - } - public function getTimeOffset() - { - return $this->timeOffset; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1PersonDetectionAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1PersonDetectionAnnotation.php deleted file mode 100644 index 3980a9e1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1PersonDetectionAnnotation.php +++ /dev/null @@ -1,38 +0,0 @@ -tracks = $tracks; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1Track - */ - public function getTracks() - { - return $this->tracks; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1RecognizedCelebrity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1RecognizedCelebrity.php deleted file mode 100644 index 3c414062..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1RecognizedCelebrity.php +++ /dev/null @@ -1,46 +0,0 @@ -celebrity = $celebrity; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1Celebrity - */ - public function getCelebrity() - { - return $this->celebrity; - } - public function setConfidence($confidence) - { - $this->confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1SpeechRecognitionAlternative.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1SpeechRecognitionAlternative.php deleted file mode 100644 index 1295ffbb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1SpeechRecognitionAlternative.php +++ /dev/null @@ -1,56 +0,0 @@ -confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - public function setTranscript($transcript) - { - $this->transcript = $transcript; - } - public function getTranscript() - { - return $this->transcript; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1WordInfo - */ - public function setWords($words) - { - $this->words = $words; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1WordInfo - */ - public function getWords() - { - return $this->words; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1SpeechTranscription.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1SpeechTranscription.php deleted file mode 100644 index f8417b22..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1SpeechTranscription.php +++ /dev/null @@ -1,47 +0,0 @@ -alternatives = $alternatives; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1SpeechRecognitionAlternative - */ - public function getAlternatives() - { - return $this->alternatives; - } - public function setLanguageCode($languageCode) - { - $this->languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1StreamingAnnotateVideoResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1StreamingAnnotateVideoResponse.php deleted file mode 100644 index d3bbfeca..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1StreamingAnnotateVideoResponse.php +++ /dev/null @@ -1,62 +0,0 @@ -annotationResults = $annotationResults; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1StreamingVideoAnnotationResults - */ - public function getAnnotationResults() - { - return $this->annotationResults; - } - public function setAnnotationResultsUri($annotationResultsUri) - { - $this->annotationResultsUri = $annotationResultsUri; - } - public function getAnnotationResultsUri() - { - return $this->annotationResultsUri; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleRpcStatus - */ - public function setError(Google_Service_CloudVideoIntelligence_GoogleRpcStatus $error) - { - $this->error = $error; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleRpcStatus - */ - public function getError() - { - return $this->error; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1StreamingVideoAnnotationResults.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1StreamingVideoAnnotationResults.php deleted file mode 100644 index 892d4183..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1StreamingVideoAnnotationResults.php +++ /dev/null @@ -1,86 +0,0 @@ -explicitAnnotation = $explicitAnnotation; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1ExplicitContentAnnotation - */ - public function getExplicitAnnotation() - { - return $this->explicitAnnotation; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1LabelAnnotation - */ - public function setLabelAnnotations($labelAnnotations) - { - $this->labelAnnotations = $labelAnnotations; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1LabelAnnotation - */ - public function getLabelAnnotations() - { - return $this->labelAnnotations; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1ObjectTrackingAnnotation - */ - public function setObjectAnnotations($objectAnnotations) - { - $this->objectAnnotations = $objectAnnotations; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1ObjectTrackingAnnotation - */ - public function getObjectAnnotations() - { - return $this->objectAnnotations; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1VideoSegment - */ - public function setShotAnnotations($shotAnnotations) - { - $this->shotAnnotations = $shotAnnotations; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1VideoSegment - */ - public function getShotAnnotations() - { - return $this->shotAnnotations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1TextAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1TextAnnotation.php deleted file mode 100644 index f1fc592b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1TextAnnotation.php +++ /dev/null @@ -1,47 +0,0 @@ -segments = $segments; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1TextSegment - */ - public function getSegments() - { - return $this->segments; - } - public function setText($text) - { - $this->text = $text; - } - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1TextFrame.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1TextFrame.php deleted file mode 100644 index 273cbc2f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1TextFrame.php +++ /dev/null @@ -1,46 +0,0 @@ -rotatedBoundingBox = $rotatedBoundingBox; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1NormalizedBoundingPoly - */ - public function getRotatedBoundingBox() - { - return $this->rotatedBoundingBox; - } - public function setTimeOffset($timeOffset) - { - $this->timeOffset = $timeOffset; - } - public function getTimeOffset() - { - return $this->timeOffset; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1TextSegment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1TextSegment.php deleted file mode 100644 index ee81e993..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1TextSegment.php +++ /dev/null @@ -1,63 +0,0 @@ -confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1TextFrame - */ - public function setFrames($frames) - { - $this->frames = $frames; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1TextFrame - */ - public function getFrames() - { - return $this->frames; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1VideoSegment - */ - public function setSegment(Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1VideoSegment $segment) - { - $this->segment = $segment; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1VideoSegment - */ - public function getSegment() - { - return $this->segment; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1TimestampedObject.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1TimestampedObject.php deleted file mode 100644 index 9397057b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1TimestampedObject.php +++ /dev/null @@ -1,79 +0,0 @@ -attributes = $attributes; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1DetectedAttribute - */ - public function getAttributes() - { - return $this->attributes; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1DetectedLandmark - */ - public function setLandmarks($landmarks) - { - $this->landmarks = $landmarks; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1DetectedLandmark - */ - public function getLandmarks() - { - return $this->landmarks; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1NormalizedBoundingBox - */ - public function setNormalizedBoundingBox(Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1NormalizedBoundingBox $normalizedBoundingBox) - { - $this->normalizedBoundingBox = $normalizedBoundingBox; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1NormalizedBoundingBox - */ - public function getNormalizedBoundingBox() - { - return $this->normalizedBoundingBox; - } - public function setTimeOffset($timeOffset) - { - $this->timeOffset = $timeOffset; - } - public function getTimeOffset() - { - return $this->timeOffset; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1Track.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1Track.php deleted file mode 100644 index 3772f2eb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1Track.php +++ /dev/null @@ -1,79 +0,0 @@ -attributes = $attributes; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1DetectedAttribute - */ - public function getAttributes() - { - return $this->attributes; - } - public function setConfidence($confidence) - { - $this->confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1VideoSegment - */ - public function setSegment(Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1VideoSegment $segment) - { - $this->segment = $segment; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1VideoSegment - */ - public function getSegment() - { - return $this->segment; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1TimestampedObject - */ - public function setTimestampedObjects($timestampedObjects) - { - $this->timestampedObjects = $timestampedObjects; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1TimestampedObject - */ - public function getTimestampedObjects() - { - return $this->timestampedObjects; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1VideoAnnotationProgress.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1VideoAnnotationProgress.php deleted file mode 100644 index d8138fa7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1VideoAnnotationProgress.php +++ /dev/null @@ -1,82 +0,0 @@ -feature = $feature; - } - public function getFeature() - { - return $this->feature; - } - public function setInputUri($inputUri) - { - $this->inputUri = $inputUri; - } - public function getInputUri() - { - return $this->inputUri; - } - public function setProgressPercent($progressPercent) - { - $this->progressPercent = $progressPercent; - } - public function getProgressPercent() - { - return $this->progressPercent; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1VideoSegment - */ - public function setSegment(Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1VideoSegment $segment) - { - $this->segment = $segment; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1VideoSegment - */ - public function getSegment() - { - return $this->segment; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1VideoAnnotationResults.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1VideoAnnotationResults.php deleted file mode 100644 index 27c65a82..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1VideoAnnotationResults.php +++ /dev/null @@ -1,287 +0,0 @@ -celebrityRecognitionAnnotations = $celebrityRecognitionAnnotations; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1CelebrityRecognitionAnnotation - */ - public function getCelebrityRecognitionAnnotations() - { - return $this->celebrityRecognitionAnnotations; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleRpcStatus - */ - public function setError(Google_Service_CloudVideoIntelligence_GoogleRpcStatus $error) - { - $this->error = $error; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleRpcStatus - */ - public function getError() - { - return $this->error; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1ExplicitContentAnnotation - */ - public function setExplicitAnnotation(Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1ExplicitContentAnnotation $explicitAnnotation) - { - $this->explicitAnnotation = $explicitAnnotation; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1ExplicitContentAnnotation - */ - public function getExplicitAnnotation() - { - return $this->explicitAnnotation; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1FaceDetectionAnnotation - */ - public function setFaceDetectionAnnotations($faceDetectionAnnotations) - { - $this->faceDetectionAnnotations = $faceDetectionAnnotations; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1FaceDetectionAnnotation - */ - public function getFaceDetectionAnnotations() - { - return $this->faceDetectionAnnotations; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1LabelAnnotation - */ - public function setFrameLabelAnnotations($frameLabelAnnotations) - { - $this->frameLabelAnnotations = $frameLabelAnnotations; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1LabelAnnotation - */ - public function getFrameLabelAnnotations() - { - return $this->frameLabelAnnotations; - } - public function setInputUri($inputUri) - { - $this->inputUri = $inputUri; - } - public function getInputUri() - { - return $this->inputUri; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1LogoRecognitionAnnotation - */ - public function setLogoRecognitionAnnotations($logoRecognitionAnnotations) - { - $this->logoRecognitionAnnotations = $logoRecognitionAnnotations; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1LogoRecognitionAnnotation - */ - public function getLogoRecognitionAnnotations() - { - return $this->logoRecognitionAnnotations; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1ObjectTrackingAnnotation - */ - public function setObjectAnnotations($objectAnnotations) - { - $this->objectAnnotations = $objectAnnotations; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1ObjectTrackingAnnotation - */ - public function getObjectAnnotations() - { - return $this->objectAnnotations; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1PersonDetectionAnnotation - */ - public function setPersonDetectionAnnotations($personDetectionAnnotations) - { - $this->personDetectionAnnotations = $personDetectionAnnotations; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1PersonDetectionAnnotation - */ - public function getPersonDetectionAnnotations() - { - return $this->personDetectionAnnotations; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1VideoSegment - */ - public function setSegment(Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1VideoSegment $segment) - { - $this->segment = $segment; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1VideoSegment - */ - public function getSegment() - { - return $this->segment; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1LabelAnnotation - */ - public function setSegmentLabelAnnotations($segmentLabelAnnotations) - { - $this->segmentLabelAnnotations = $segmentLabelAnnotations; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1LabelAnnotation - */ - public function getSegmentLabelAnnotations() - { - return $this->segmentLabelAnnotations; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1LabelAnnotation - */ - public function setSegmentPresenceLabelAnnotations($segmentPresenceLabelAnnotations) - { - $this->segmentPresenceLabelAnnotations = $segmentPresenceLabelAnnotations; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1LabelAnnotation - */ - public function getSegmentPresenceLabelAnnotations() - { - return $this->segmentPresenceLabelAnnotations; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1VideoSegment - */ - public function setShotAnnotations($shotAnnotations) - { - $this->shotAnnotations = $shotAnnotations; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1VideoSegment - */ - public function getShotAnnotations() - { - return $this->shotAnnotations; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1LabelAnnotation - */ - public function setShotLabelAnnotations($shotLabelAnnotations) - { - $this->shotLabelAnnotations = $shotLabelAnnotations; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1LabelAnnotation - */ - public function getShotLabelAnnotations() - { - return $this->shotLabelAnnotations; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1LabelAnnotation - */ - public function setShotPresenceLabelAnnotations($shotPresenceLabelAnnotations) - { - $this->shotPresenceLabelAnnotations = $shotPresenceLabelAnnotations; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1LabelAnnotation - */ - public function getShotPresenceLabelAnnotations() - { - return $this->shotPresenceLabelAnnotations; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1SpeechTranscription - */ - public function setSpeechTranscriptions($speechTranscriptions) - { - $this->speechTranscriptions = $speechTranscriptions; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1SpeechTranscription - */ - public function getSpeechTranscriptions() - { - return $this->speechTranscriptions; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1TextAnnotation - */ - public function setTextAnnotations($textAnnotations) - { - $this->textAnnotations = $textAnnotations; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1p3beta1TextAnnotation - */ - public function getTextAnnotations() - { - return $this->textAnnotations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1VideoSegment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1VideoSegment.php deleted file mode 100644 index 5ee52cdf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1VideoSegment.php +++ /dev/null @@ -1,39 +0,0 @@ -endTimeOffset = $endTimeOffset; - } - public function getEndTimeOffset() - { - return $this->endTimeOffset; - } - public function setStartTimeOffset($startTimeOffset) - { - $this->startTimeOffset = $startTimeOffset; - } - public function getStartTimeOffset() - { - return $this->startTimeOffset; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1WordInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1WordInfo.php deleted file mode 100644 index 7b59ffbe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleCloudVideointelligenceV1p3beta1WordInfo.php +++ /dev/null @@ -1,66 +0,0 @@ -confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setSpeakerTag($speakerTag) - { - $this->speakerTag = $speakerTag; - } - public function getSpeakerTag() - { - return $this->speakerTag; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } - public function setWord($word) - { - $this->word = $word; - } - public function getWord() - { - return $this->word; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleLongrunningCancelOperationRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleLongrunningCancelOperationRequest.php deleted file mode 100644 index 4757d79d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleLongrunningCancelOperationRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleLongrunningOperation - */ - public function setOperations($operations) - { - $this->operations = $operations; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleLongrunningOperation - */ - public function getOperations() - { - return $this->operations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleLongrunningOperation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleLongrunningOperation.php deleted file mode 100644 index e2f7381b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleLongrunningOperation.php +++ /dev/null @@ -1,73 +0,0 @@ -done = $done; - } - public function getDone() - { - return $this->done; - } - /** - * @param Google_Service_CloudVideoIntelligence_GoogleRpcStatus - */ - public function setError(Google_Service_CloudVideoIntelligence_GoogleRpcStatus $error) - { - $this->error = $error; - } - /** - * @return Google_Service_CloudVideoIntelligence_GoogleRpcStatus - */ - public function getError() - { - return $this->error; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleProtobufEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleProtobufEmpty.php deleted file mode 100644 index 906618b1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/GoogleProtobufEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/Resource/Operations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/Resource/Operations.php deleted file mode 100644 index ee209716..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/Resource/Operations.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $videointelligenceService = new Google_Service_CloudVideoIntelligence(...); - * $operations = $videointelligenceService->operations; - * - */ -class Google_Service_CloudVideoIntelligence_Resource_Operations extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/Resource/OperationsProjects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/Resource/OperationsProjects.php deleted file mode 100644 index b8695623..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/Resource/OperationsProjects.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $videointelligenceService = new Google_Service_CloudVideoIntelligence(...); - * $projects = $videointelligenceService->projects; - * - */ -class Google_Service_CloudVideoIntelligence_Resource_OperationsProjects extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/Resource/OperationsProjectsLocations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/Resource/OperationsProjectsLocations.php deleted file mode 100644 index d02a3293..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/Resource/OperationsProjectsLocations.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $videointelligenceService = new Google_Service_CloudVideoIntelligence(...); - * $locations = $videointelligenceService->locations; - * - */ -class Google_Service_CloudVideoIntelligence_Resource_OperationsProjectsLocations extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/Resource/OperationsProjectsLocationsOperations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/Resource/OperationsProjectsLocationsOperations.php deleted file mode 100644 index b64e67e1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/Resource/OperationsProjectsLocationsOperations.php +++ /dev/null @@ -1,80 +0,0 @@ - - * $videointelligenceService = new Google_Service_CloudVideoIntelligence(...); - * $operations = $videointelligenceService->operations; - * - */ -class Google_Service_CloudVideoIntelligence_Resource_OperationsProjectsLocationsOperations extends Google_Service_Resource -{ - /** - * Starts asynchronous cancellation on a long-running operation. The server - * makes a best effort to cancel the operation, but success is not guaranteed. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or - * other methods to check whether the cancellation succeeded or whether the - * operation completed despite cancellation. On successful cancellation, the - * operation is not deleted; instead, it becomes an operation with an - * Operation.error value with a google.rpc.Status.code of 1, corresponding to - * `Code.CANCELLED`. (operations.cancel) - * - * @param string $name The name of the operation resource to be cancelled. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudVideoIntelligence_GoogleProtobufEmpty - */ - public function cancel($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('cancel', array($params), "Google_Service_CloudVideoIntelligence_GoogleProtobufEmpty"); - } - /** - * Deletes a long-running operation. This method indicates that the client is no - * longer interested in the operation result. It does not cancel the operation. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. (operations.delete) - * - * @param string $name The name of the operation resource to be deleted. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudVideoIntelligence_GoogleProtobufEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudVideoIntelligence_GoogleProtobufEmpty"); - } - /** - * Gets the latest state of a long-running operation. Clients can use this - * method to poll the operation result at intervals as recommended by the API - * service. (operations.get) - * - * @param string $name The name of the operation resource. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudVideoIntelligence_GoogleLongrunningOperation - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudVideoIntelligence_GoogleLongrunningOperation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/Resource/Projects.php deleted file mode 100644 index 6dec1ff9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/Resource/Projects.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $videointelligenceService = new Google_Service_CloudVideoIntelligence(...); - * $projects = $videointelligenceService->projects; - * - */ -class Google_Service_CloudVideoIntelligence_Resource_Projects extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/Resource/ProjectsLocations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/Resource/ProjectsLocations.php deleted file mode 100644 index 89ce3f0d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/Resource/ProjectsLocations.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $videointelligenceService = new Google_Service_CloudVideoIntelligence(...); - * $locations = $videointelligenceService->locations; - * - */ -class Google_Service_CloudVideoIntelligence_Resource_ProjectsLocations extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/Resource/ProjectsLocationsOperations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/Resource/ProjectsLocationsOperations.php deleted file mode 100644 index 3ce0a75b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/Resource/ProjectsLocationsOperations.php +++ /dev/null @@ -1,108 +0,0 @@ - - * $videointelligenceService = new Google_Service_CloudVideoIntelligence(...); - * $operations = $videointelligenceService->operations; - * - */ -class Google_Service_CloudVideoIntelligence_Resource_ProjectsLocationsOperations extends Google_Service_Resource -{ - /** - * Starts asynchronous cancellation on a long-running operation. The server - * makes a best effort to cancel the operation, but success is not guaranteed. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or - * other methods to check whether the cancellation succeeded or whether the - * operation completed despite cancellation. On successful cancellation, the - * operation is not deleted; instead, it becomes an operation with an - * Operation.error value with a google.rpc.Status.code of 1, corresponding to - * `Code.CANCELLED`. (operations.cancel) - * - * @param string $name The name of the operation resource to be cancelled. - * @param Google_Service_CloudVideoIntelligence_GoogleLongrunningCancelOperationRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudVideoIntelligence_GoogleProtobufEmpty - */ - public function cancel($name, Google_Service_CloudVideoIntelligence_GoogleLongrunningCancelOperationRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('cancel', array($params), "Google_Service_CloudVideoIntelligence_GoogleProtobufEmpty"); - } - /** - * Deletes a long-running operation. This method indicates that the client is no - * longer interested in the operation result. It does not cancel the operation. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. (operations.delete) - * - * @param string $name The name of the operation resource to be deleted. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudVideoIntelligence_GoogleProtobufEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_CloudVideoIntelligence_GoogleProtobufEmpty"); - } - /** - * Gets the latest state of a long-running operation. Clients can use this - * method to poll the operation result at intervals as recommended by the API - * service. (operations.get) - * - * @param string $name The name of the operation resource. - * @param array $optParams Optional parameters. - * @return Google_Service_CloudVideoIntelligence_GoogleLongrunningOperation - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_CloudVideoIntelligence_GoogleLongrunningOperation"); - } - /** - * Lists operations that match the specified filter in the request. If the - * server doesn't support this method, it returns `UNIMPLEMENTED`. - * - * NOTE: the `name` binding allows API services to override the binding to use - * different resource name schemes, such as `users/operations`. To override the - * binding, API services can add a binding such as - * `"/v1/{name=users}/operations"` to their service configuration. For backwards - * compatibility, the default name includes the operations collection id, - * however overriding users must ensure the name binding is the parent resource, - * without the operations collection id. - * (operations.listProjectsLocationsOperations) - * - * @param string $name The name of the operation's parent resource. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The standard list page token. - * @opt_param int pageSize The standard list page size. - * @opt_param string filter The standard list filter. - * @return Google_Service_CloudVideoIntelligence_GoogleLongrunningListOperationsResponse - */ - public function listProjectsLocationsOperations($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_CloudVideoIntelligence_GoogleLongrunningListOperationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/Resource/Videos.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/Resource/Videos.php deleted file mode 100644 index a36806b6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CloudVideoIntelligence/Resource/Videos.php +++ /dev/null @@ -1,44 +0,0 @@ - - * $videointelligenceService = new Google_Service_CloudVideoIntelligence(...); - * $videos = $videointelligenceService->videos; - * - */ -class Google_Service_CloudVideoIntelligence_Resource_Videos extends Google_Service_Resource -{ - /** - * Performs asynchronous video annotation. Progress and results can be retrieved - * through the `google.longrunning.Operations` interface. `Operation.metadata` - * contains `AnnotateVideoProgress` (progress). `Operation.response` contains - * `AnnotateVideoResponse` (results). (videos.annotate) - * - * @param Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1AnnotateVideoRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CloudVideoIntelligence_GoogleLongrunningOperation - */ - public function annotate(Google_Service_CloudVideoIntelligence_GoogleCloudVideointelligenceV1AnnotateVideoRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('annotate', array($params), "Google_Service_CloudVideoIntelligence_GoogleLongrunningOperation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling.php deleted file mode 100644 index da6262aa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling.php +++ /dev/null @@ -1,270 +0,0 @@ - - * Allows developers to manage billing for their Google Cloud Platform projects - * programmatically.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Cloudbilling extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - - public $billingAccounts; - public $billingAccounts_projects; - public $projects; - public $services; - public $services_skus; - - /** - * Constructs the internal representation of the Cloudbilling service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://cloudbilling.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'cloudbilling'; - - $this->billingAccounts = new Google_Service_Cloudbilling_Resource_BillingAccounts( - $this, - $this->serviceName, - 'billingAccounts', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/billingAccounts', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getIamPolicy' => array( - 'path' => 'v1/{+resource}:getIamPolicy', - 'httpMethod' => 'GET', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'options.requestedPolicyVersion' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'list' => array( - 'path' => 'v1/billingAccounts', - 'httpMethod' => 'GET', - 'parameters' => array( - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setIamPolicy' => array( - 'path' => 'v1/{+resource}:setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => 'v1/{+resource}:testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->billingAccounts_projects = new Google_Service_Cloudbilling_Resource_BillingAccountsProjects( - $this, - $this->serviceName, - 'projects', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1/{+name}/projects', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects = new Google_Service_Cloudbilling_Resource_Projects( - $this, - $this->serviceName, - 'projects', - array( - 'methods' => array( - 'getBillingInfo' => array( - 'path' => 'v1/{+name}/billingInfo', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'updateBillingInfo' => array( - 'path' => 'v1/{+name}/billingInfo', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->services = new Google_Service_Cloudbilling_Resource_Services( - $this, - $this->serviceName, - 'services', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1/services', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->services_skus = new Google_Service_Cloudbilling_Resource_ServicesSkus( - $this, - $this->serviceName, - 'skus', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1/{+parent}/skus', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'startTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'currencyCode' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'endTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/AggregationInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/AggregationInfo.php deleted file mode 100644 index 59628932..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/AggregationInfo.php +++ /dev/null @@ -1,48 +0,0 @@ -aggregationCount = $aggregationCount; - } - public function getAggregationCount() - { - return $this->aggregationCount; - } - public function setAggregationInterval($aggregationInterval) - { - $this->aggregationInterval = $aggregationInterval; - } - public function getAggregationInterval() - { - return $this->aggregationInterval; - } - public function setAggregationLevel($aggregationLevel) - { - $this->aggregationLevel = $aggregationLevel; - } - public function getAggregationLevel() - { - return $this->aggregationLevel; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/AuditConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/AuditConfig.php deleted file mode 100644 index 3175afb2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/AuditConfig.php +++ /dev/null @@ -1,47 +0,0 @@ -auditLogConfigs = $auditLogConfigs; - } - /** - * @return Google_Service_Cloudbilling_AuditLogConfig - */ - public function getAuditLogConfigs() - { - return $this->auditLogConfigs; - } - public function setService($service) - { - $this->service = $service; - } - public function getService() - { - return $this->service; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/AuditLogConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/AuditLogConfig.php deleted file mode 100644 index f0c91e88..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/AuditLogConfig.php +++ /dev/null @@ -1,40 +0,0 @@ -exemptedMembers = $exemptedMembers; - } - public function getExemptedMembers() - { - return $this->exemptedMembers; - } - public function setLogType($logType) - { - $this->logType = $logType; - } - public function getLogType() - { - return $this->logType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/BillingAccount.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/BillingAccount.php deleted file mode 100644 index 79b89b44..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/BillingAccount.php +++ /dev/null @@ -1,57 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setMasterBillingAccount($masterBillingAccount) - { - $this->masterBillingAccount = $masterBillingAccount; - } - public function getMasterBillingAccount() - { - return $this->masterBillingAccount; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOpen($open) - { - $this->open = $open; - } - public function getOpen() - { - return $this->open; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/Binding.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/Binding.php deleted file mode 100644 index 35f7bf5f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/Binding.php +++ /dev/null @@ -1,56 +0,0 @@ -condition = $condition; - } - /** - * @return Google_Service_Cloudbilling_Expr - */ - public function getCondition() - { - return $this->condition; - } - public function setMembers($members) - { - $this->members = $members; - } - public function getMembers() - { - return $this->members; - } - public function setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/Category.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/Category.php deleted file mode 100644 index 7288d285..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/Category.php +++ /dev/null @@ -1,57 +0,0 @@ -resourceFamily = $resourceFamily; - } - public function getResourceFamily() - { - return $this->resourceFamily; - } - public function setResourceGroup($resourceGroup) - { - $this->resourceGroup = $resourceGroup; - } - public function getResourceGroup() - { - return $this->resourceGroup; - } - public function setServiceDisplayName($serviceDisplayName) - { - $this->serviceDisplayName = $serviceDisplayName; - } - public function getServiceDisplayName() - { - return $this->serviceDisplayName; - } - public function setUsageType($usageType) - { - $this->usageType = $usageType; - } - public function getUsageType() - { - return $this->usageType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/Expr.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/Expr.php deleted file mode 100644 index 7c7316ed..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/Expr.php +++ /dev/null @@ -1,57 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setExpression($expression) - { - $this->expression = $expression; - } - public function getExpression() - { - return $this->expression; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/ListBillingAccountsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/ListBillingAccountsResponse.php deleted file mode 100644 index a6987a1e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/ListBillingAccountsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -billingAccounts = $billingAccounts; - } - /** - * @return Google_Service_Cloudbilling_BillingAccount - */ - public function getBillingAccounts() - { - return $this->billingAccounts; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/ListProjectBillingInfoResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/ListProjectBillingInfoResponse.php deleted file mode 100644 index d211694b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/ListProjectBillingInfoResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Cloudbilling_ProjectBillingInfo - */ - public function setProjectBillingInfo($projectBillingInfo) - { - $this->projectBillingInfo = $projectBillingInfo; - } - /** - * @return Google_Service_Cloudbilling_ProjectBillingInfo - */ - public function getProjectBillingInfo() - { - return $this->projectBillingInfo; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/ListServicesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/ListServicesResponse.php deleted file mode 100644 index 5d874da4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/ListServicesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Cloudbilling_Service - */ - public function setServices($services) - { - $this->services = $services; - } - /** - * @return Google_Service_Cloudbilling_Service - */ - public function getServices() - { - return $this->services; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/ListSkusResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/ListSkusResponse.php deleted file mode 100644 index cbcaf86e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/ListSkusResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Cloudbilling_Sku - */ - public function setSkus($skus) - { - $this->skus = $skus; - } - /** - * @return Google_Service_Cloudbilling_Sku - */ - public function getSkus() - { - return $this->skus; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/Money.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/Money.php deleted file mode 100644 index bdd7d6a9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/Money.php +++ /dev/null @@ -1,48 +0,0 @@ -currencyCode = $currencyCode; - } - public function getCurrencyCode() - { - return $this->currencyCode; - } - public function setNanos($nanos) - { - $this->nanos = $nanos; - } - public function getNanos() - { - return $this->nanos; - } - public function setUnits($units) - { - $this->units = $units; - } - public function getUnits() - { - return $this->units; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/Policy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/Policy.php deleted file mode 100644 index 542c12c5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/Policy.php +++ /dev/null @@ -1,72 +0,0 @@ -auditConfigs = $auditConfigs; - } - /** - * @return Google_Service_Cloudbilling_AuditConfig - */ - public function getAuditConfigs() - { - return $this->auditConfigs; - } - /** - * @param Google_Service_Cloudbilling_Binding - */ - public function setBindings($bindings) - { - $this->bindings = $bindings; - } - /** - * @return Google_Service_Cloudbilling_Binding - */ - public function getBindings() - { - return $this->bindings; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/PricingExpression.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/PricingExpression.php deleted file mode 100644 index 08983dc0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/PricingExpression.php +++ /dev/null @@ -1,92 +0,0 @@ -baseUnit = $baseUnit; - } - public function getBaseUnit() - { - return $this->baseUnit; - } - public function setBaseUnitConversionFactor($baseUnitConversionFactor) - { - $this->baseUnitConversionFactor = $baseUnitConversionFactor; - } - public function getBaseUnitConversionFactor() - { - return $this->baseUnitConversionFactor; - } - public function setBaseUnitDescription($baseUnitDescription) - { - $this->baseUnitDescription = $baseUnitDescription; - } - public function getBaseUnitDescription() - { - return $this->baseUnitDescription; - } - public function setDisplayQuantity($displayQuantity) - { - $this->displayQuantity = $displayQuantity; - } - public function getDisplayQuantity() - { - return $this->displayQuantity; - } - /** - * @param Google_Service_Cloudbilling_TierRate - */ - public function setTieredRates($tieredRates) - { - $this->tieredRates = $tieredRates; - } - /** - * @return Google_Service_Cloudbilling_TierRate - */ - public function getTieredRates() - { - return $this->tieredRates; - } - public function setUsageUnit($usageUnit) - { - $this->usageUnit = $usageUnit; - } - public function getUsageUnit() - { - return $this->usageUnit; - } - public function setUsageUnitDescription($usageUnitDescription) - { - $this->usageUnitDescription = $usageUnitDescription; - } - public function getUsageUnitDescription() - { - return $this->usageUnitDescription; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/PricingInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/PricingInfo.php deleted file mode 100644 index 156e039d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/PricingInfo.php +++ /dev/null @@ -1,80 +0,0 @@ -aggregationInfo = $aggregationInfo; - } - /** - * @return Google_Service_Cloudbilling_AggregationInfo - */ - public function getAggregationInfo() - { - return $this->aggregationInfo; - } - public function setCurrencyConversionRate($currencyConversionRate) - { - $this->currencyConversionRate = $currencyConversionRate; - } - public function getCurrencyConversionRate() - { - return $this->currencyConversionRate; - } - public function setEffectiveTime($effectiveTime) - { - $this->effectiveTime = $effectiveTime; - } - public function getEffectiveTime() - { - return $this->effectiveTime; - } - /** - * @param Google_Service_Cloudbilling_PricingExpression - */ - public function setPricingExpression(Google_Service_Cloudbilling_PricingExpression $pricingExpression) - { - $this->pricingExpression = $pricingExpression; - } - /** - * @return Google_Service_Cloudbilling_PricingExpression - */ - public function getPricingExpression() - { - return $this->pricingExpression; - } - public function setSummary($summary) - { - $this->summary = $summary; - } - public function getSummary() - { - return $this->summary; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/ProjectBillingInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/ProjectBillingInfo.php deleted file mode 100644 index f797839e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/ProjectBillingInfo.php +++ /dev/null @@ -1,57 +0,0 @@ -billingAccountName = $billingAccountName; - } - public function getBillingAccountName() - { - return $this->billingAccountName; - } - public function setBillingEnabled($billingEnabled) - { - $this->billingEnabled = $billingEnabled; - } - public function getBillingEnabled() - { - return $this->billingEnabled; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/Resource/BillingAccounts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/Resource/BillingAccounts.php deleted file mode 100644 index 1a766c34..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/Resource/BillingAccounts.php +++ /dev/null @@ -1,180 +0,0 @@ - - * $cloudbillingService = new Google_Service_Cloudbilling(...); - * $billingAccounts = $cloudbillingService->billingAccounts; - * - */ -class Google_Service_Cloudbilling_Resource_BillingAccounts extends Google_Service_Resource -{ - /** - * Creates a billing account. This method can only be used to create [billing - * subaccounts](https://cloud.google.com/billing/docs/concepts) by GCP - * resellers. When creating a subaccount, the current authenticated user must - * have the `billing.accounts.update` IAM permission on the master account, - * which is typically given to billing account - * [administrators](https://cloud.google.com/billing/docs/how-to/billing- - * access). This method will return an error if the master account has not been - * provisioned as a reseller account. (billingAccounts.create) - * - * @param Google_Service_Cloudbilling_BillingAccount $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Cloudbilling_BillingAccount - */ - public function create(Google_Service_Cloudbilling_BillingAccount $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Cloudbilling_BillingAccount"); - } - /** - * Gets information about a billing account. The current authenticated user must - * be a [viewer of the billing account](https://cloud.google.com/billing/docs - * /how-to/billing-access). (billingAccounts.get) - * - * @param string $name Required. The resource name of the billing account to - * retrieve. For example, `billingAccounts/012345-567890-ABCDEF`. - * @param array $optParams Optional parameters. - * @return Google_Service_Cloudbilling_BillingAccount - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Cloudbilling_BillingAccount"); - } - /** - * Gets the access control policy for a billing account. The caller must have - * the `billing.accounts.getIamPolicy` permission on the account, which is often - * given to billing account [viewers](https://cloud.google.com/billing/docs/how- - * to/billing-access). (billingAccounts.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. - * @return Google_Service_Cloudbilling_Policy - */ - public function getIamPolicy($resource, $optParams = array()) - { - $params = array('resource' => $resource); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_Cloudbilling_Policy"); - } - /** - * Lists the billing accounts that the current authenticated user has permission - * to [view](https://cloud.google.com/billing/docs/how-to/billing-access). - * (billingAccounts.listBillingAccounts) - * - * @param array $optParams Optional parameters. - * - * @opt_param string filter Options for how to filter the returned billing - * accounts. Currently this only supports filtering for - * [subaccounts](https://cloud.google.com/billing/docs/concepts) under a single - * provided reseller billing account. (e.g. - * "master_billing_account=billingAccounts/012345-678901-ABCDEF"). Boolean - * algebra and other fields are not currently supported. - * @opt_param string pageToken A token identifying a page of results to return. - * This should be a `next_page_token` value returned from a previous - * `ListBillingAccounts` call. If unspecified, the first page of results is - * returned. - * @opt_param int pageSize Requested page size. The maximum page size is 100; - * this is also the default. - * @return Google_Service_Cloudbilling_ListBillingAccountsResponse - */ - public function listBillingAccounts($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Cloudbilling_ListBillingAccountsResponse"); - } - /** - * Updates a billing account's fields. Currently the only field that can be - * edited is `display_name`. The current authenticated user must have the - * `billing.accounts.update` IAM permission, which is typically given to the - * [administrator](https://cloud.google.com/billing/docs/how-to/billing-access) - * of the billing account. (billingAccounts.patch) - * - * @param string $name Required. The name of the billing account resource to be - * updated. - * @param Google_Service_Cloudbilling_BillingAccount $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask The update mask applied to the resource. Only - * "display_name" is currently supported. - * @return Google_Service_Cloudbilling_BillingAccount - */ - public function patch($name, Google_Service_Cloudbilling_BillingAccount $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Cloudbilling_BillingAccount"); - } - /** - * Sets the access control policy for a billing account. Replaces any existing - * policy. The caller must have the `billing.accounts.setIamPolicy` permission - * on the account, which is often given to billing account - * [administrators](https://cloud.google.com/billing/docs/how-to/billing- - * access). (billingAccounts.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_Cloudbilling_SetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Cloudbilling_Policy - */ - public function setIamPolicy($resource, Google_Service_Cloudbilling_SetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_Cloudbilling_Policy"); - } - /** - * Tests the access control policy for a billing account. This method takes the - * resource and a set of permissions as input and returns the subset of the - * input permissions that the caller is allowed for that resource. - * (billingAccounts.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_Cloudbilling_TestIamPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Cloudbilling_TestIamPermissionsResponse - */ - public function testIamPermissions($resource, Google_Service_Cloudbilling_TestIamPermissionsRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_Cloudbilling_TestIamPermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/Resource/BillingAccountsProjects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/Resource/BillingAccountsProjects.php deleted file mode 100644 index 04d45736..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/Resource/BillingAccountsProjects.php +++ /dev/null @@ -1,54 +0,0 @@ - - * $cloudbillingService = new Google_Service_Cloudbilling(...); - * $projects = $cloudbillingService->projects; - * - */ -class Google_Service_Cloudbilling_Resource_BillingAccountsProjects extends Google_Service_Resource -{ - /** - * Lists the projects associated with a billing account. The current - * authenticated user must have the `billing.resourceAssociations.list` IAM - * permission, which is often given to billing account - * [viewers](https://cloud.google.com/billing/docs/how-to/billing-access). - * (projects.listBillingAccountsProjects) - * - * @param string $name Required. The resource name of the billing account - * associated with the projects that you want to list. For example, - * `billingAccounts/012345-567890-ABCDEF`. - * @param array $optParams Optional parameters. - * - * @opt_param int pageSize Requested page size. The maximum page size is 100; - * this is also the default. - * @opt_param string pageToken A token identifying a page of results to be - * returned. This should be a `next_page_token` value returned from a previous - * `ListProjectBillingInfo` call. If unspecified, the first page of results is - * returned. - * @return Google_Service_Cloudbilling_ListProjectBillingInfoResponse - */ - public function listBillingAccountsProjects($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Cloudbilling_ListProjectBillingInfoResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/Resource/Projects.php deleted file mode 100644 index fe276509..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/Resource/Projects.php +++ /dev/null @@ -1,90 +0,0 @@ - - * $cloudbillingService = new Google_Service_Cloudbilling(...); - * $projects = $cloudbillingService->projects; - * - */ -class Google_Service_Cloudbilling_Resource_Projects extends Google_Service_Resource -{ - /** - * Gets the billing information for a project. The current authenticated user - * must have [permission to view the project](https://cloud.google.com/docs - * /permissions-overview#h.bgs0oxofvnoo ). (projects.getBillingInfo) - * - * @param string $name Required. The resource name of the project for which - * billing information is retrieved. For example, `projects/tokyo-rain-123`. - * @param array $optParams Optional parameters. - * @return Google_Service_Cloudbilling_ProjectBillingInfo - */ - public function getBillingInfo($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('getBillingInfo', array($params), "Google_Service_Cloudbilling_ProjectBillingInfo"); - } - /** - * Sets or updates the billing account associated with a project. You specify - * the new billing account by setting the `billing_account_name` in the - * `ProjectBillingInfo` resource to the resource name of a billing account. - * Associating a project with an open billing account enables billing on the - * project and allows charges for resource usage. If the project already had a - * billing account, this method changes the billing account used for resource - * usage charges. - * - * *Note:* Incurred charges that have not yet been reported in the transaction - * history of the GCP Console might be billed to the new billing account, even - * if the charge occurred before the new billing account was assigned to the - * project. - * - * The current authenticated user must have ownership privileges for both the - * [project](https://cloud.google.com/docs/permissions-overview#h.bgs0oxofvnoo ) - * and the [billing account](https://cloud.google.com/billing/docs/how-to - * /billing-access). - * - * You can disable billing on the project by setting the `billing_account_name` - * field to empty. This action disassociates the current billing account from - * the project. Any billable activity of your in-use services will stop, and - * your application could stop functioning as expected. Any unbilled charges to - * date will be billed to the previously associated account. The current - * authenticated user must be either an owner of the project or an owner of the - * billing account for the project. - * - * Note that associating a project with a *closed* billing account will have - * much the same effect as disabling billing on the project: any paid resources - * used by the project will be shut down. Thus, unless you wish to disable - * billing, you should always call this method with the name of an *open* - * billing account. (projects.updateBillingInfo) - * - * @param string $name Required. The resource name of the project associated - * with the billing information that you want to update. For example, `projects - * /tokyo-rain-123`. - * @param Google_Service_Cloudbilling_ProjectBillingInfo $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Cloudbilling_ProjectBillingInfo - */ - public function updateBillingInfo($name, Google_Service_Cloudbilling_ProjectBillingInfo $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updateBillingInfo', array($params), "Google_Service_Cloudbilling_ProjectBillingInfo"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/Resource/Services.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/Resource/Services.php deleted file mode 100644 index aed2e4f7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/Resource/Services.php +++ /dev/null @@ -1,45 +0,0 @@ - - * $cloudbillingService = new Google_Service_Cloudbilling(...); - * $services = $cloudbillingService->services; - * - */ -class Google_Service_Cloudbilling_Resource_Services extends Google_Service_Resource -{ - /** - * Lists all public cloud services. (services.listServices) - * - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A token identifying a page of results to return. - * This should be a `next_page_token` value returned from a previous - * `ListServices` call. If unspecified, the first page of results is returned. - * @opt_param int pageSize Requested page size. Defaults to 5000. - * @return Google_Service_Cloudbilling_ListServicesResponse - */ - public function listServices($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Cloudbilling_ListServicesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/Resource/ServicesSkus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/Resource/ServicesSkus.php deleted file mode 100644 index 1891d90f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/Resource/ServicesSkus.php +++ /dev/null @@ -1,61 +0,0 @@ - - * $cloudbillingService = new Google_Service_Cloudbilling(...); - * $skus = $cloudbillingService->skus; - * - */ -class Google_Service_Cloudbilling_Resource_ServicesSkus extends Google_Service_Resource -{ - /** - * Lists all publicly available SKUs for a given cloud service. - * (skus.listServicesSkus) - * - * @param string $parent Required. The name of the service. Example: - * "services/DA34-426B-A397" - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A token identifying a page of results to return. - * This should be a `next_page_token` value returned from a previous `ListSkus` - * call. If unspecified, the first page of results is returned. - * @opt_param string startTime Optional inclusive start time of the time range - * for which the pricing versions will be returned. Timestamps in the future are - * not allowed. The time range has to be within a single calendar month in - * America/Los_Angeles timezone. Time range as a whole is optional. If not - * specified, the latest pricing will be returned (up to 12 hours old at most). - * @opt_param int pageSize Requested page size. Defaults to 5000. - * @opt_param string currencyCode The ISO 4217 currency code for the pricing - * info in the response proto. Will use the conversion rate as of start_time. - * Optional. If not specified USD will be used. - * @opt_param string endTime Optional exclusive end time of the time range for - * which the pricing versions will be returned. Timestamps in the future are not - * allowed. The time range has to be within a single calendar month in - * America/Los_Angeles timezone. Time range as a whole is optional. If not - * specified, the latest pricing will be returned (up to 12 hours old at most). - * @return Google_Service_Cloudbilling_ListSkusResponse - */ - public function listServicesSkus($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Cloudbilling_ListSkusResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/Service.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/Service.php deleted file mode 100644 index 526ebf85..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/Service.php +++ /dev/null @@ -1,57 +0,0 @@ -businessEntityName = $businessEntityName; - } - public function getBusinessEntityName() - { - return $this->businessEntityName; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setServiceId($serviceId) - { - $this->serviceId = $serviceId; - } - public function getServiceId() - { - return $this->serviceId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/SetIamPolicyRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/SetIamPolicyRequest.php deleted file mode 100644 index 5a81d5b4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/SetIamPolicyRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -policy = $policy; - } - /** - * @return Google_Service_Cloudbilling_Policy - */ - public function getPolicy() - { - return $this->policy; - } - public function setUpdateMask($updateMask) - { - $this->updateMask = $updateMask; - } - public function getUpdateMask() - { - return $this->updateMask; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/Sku.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/Sku.php deleted file mode 100644 index e07424b0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/Sku.php +++ /dev/null @@ -1,99 +0,0 @@ -category = $category; - } - /** - * @return Google_Service_Cloudbilling_Category - */ - public function getCategory() - { - return $this->category; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Cloudbilling_PricingInfo - */ - public function setPricingInfo($pricingInfo) - { - $this->pricingInfo = $pricingInfo; - } - /** - * @return Google_Service_Cloudbilling_PricingInfo - */ - public function getPricingInfo() - { - return $this->pricingInfo; - } - public function setServiceProviderName($serviceProviderName) - { - $this->serviceProviderName = $serviceProviderName; - } - public function getServiceProviderName() - { - return $this->serviceProviderName; - } - public function setServiceRegions($serviceRegions) - { - $this->serviceRegions = $serviceRegions; - } - public function getServiceRegions() - { - return $this->serviceRegions; - } - public function setSkuId($skuId) - { - $this->skuId = $skuId; - } - public function getSkuId() - { - return $this->skuId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/TestIamPermissionsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/TestIamPermissionsRequest.php deleted file mode 100644 index f04b17e1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/TestIamPermissionsRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/TestIamPermissionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/TestIamPermissionsResponse.php deleted file mode 100644 index 551d093d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/TestIamPermissionsResponse.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/TierRate.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/TierRate.php deleted file mode 100644 index 748ce9a7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudbilling/TierRate.php +++ /dev/null @@ -1,46 +0,0 @@ -startUsageAmount = $startUsageAmount; - } - public function getStartUsageAmount() - { - return $this->startUsageAmount; - } - /** - * @param Google_Service_Cloudbilling_Money - */ - public function setUnitPrice(Google_Service_Cloudbilling_Money $unitPrice) - { - $this->unitPrice = $unitPrice; - } - /** - * @return Google_Service_Cloudbilling_Money - */ - public function getUnitPrice() - { - return $this->unitPrice; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Clouderrorreporting.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Clouderrorreporting.php deleted file mode 100644 index a126fc0c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Clouderrorreporting.php +++ /dev/null @@ -1,233 +0,0 @@ - - * Groups and counts similar errors from cloud services and applications, - * reports new errors, and provides access to error groups and their associated - * errors.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Clouderrorreporting extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - - public $projects; - public $projects_events; - public $projects_groupStats; - public $projects_groups; - - /** - * Constructs the internal representation of the Clouderrorreporting service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://clouderrorreporting.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1beta1'; - $this->serviceName = 'clouderrorreporting'; - - $this->projects = new Google_Service_Clouderrorreporting_Resource_Projects( - $this, - $this->serviceName, - 'projects', - array( - 'methods' => array( - 'deleteEvents' => array( - 'path' => 'v1beta1/{+projectName}/events', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'projectName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_events = new Google_Service_Clouderrorreporting_Resource_ProjectsEvents( - $this, - $this->serviceName, - 'events', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1beta1/{+projectName}/events', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'serviceFilter.version' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'serviceFilter.resourceType' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'timeRange.period' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'groupId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'serviceFilter.service' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'report' => array( - 'path' => 'v1beta1/{+projectName}/events:report', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_groupStats = new Google_Service_Clouderrorreporting_Resource_ProjectsGroupStats( - $this, - $this->serviceName, - 'groupStats', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1beta1/{+projectName}/groupStats', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'groupId' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'serviceFilter.service' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'serviceFilter.version' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'order' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'serviceFilter.resourceType' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'alignmentTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'timedCountDuration' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'timeRange.period' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'alignment' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_groups = new Google_Service_Clouderrorreporting_Resource_ProjectsGroups( - $this, - $this->serviceName, - 'groups', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1beta1/{+groupName}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'groupName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Clouderrorreporting/DeleteEventsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Clouderrorreporting/DeleteEventsResponse.php deleted file mode 100644 index 788ef7cd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Clouderrorreporting/DeleteEventsResponse.php +++ /dev/null @@ -1,20 +0,0 @@ -httpRequest = $httpRequest; - } - /** - * @return Google_Service_Clouderrorreporting_HttpRequestContext - */ - public function getHttpRequest() - { - return $this->httpRequest; - } - /** - * @param Google_Service_Clouderrorreporting_SourceLocation - */ - public function setReportLocation(Google_Service_Clouderrorreporting_SourceLocation $reportLocation) - { - $this->reportLocation = $reportLocation; - } - /** - * @return Google_Service_Clouderrorreporting_SourceLocation - */ - public function getReportLocation() - { - return $this->reportLocation; - } - /** - * @param Google_Service_Clouderrorreporting_SourceReference - */ - public function setSourceReferences($sourceReferences) - { - $this->sourceReferences = $sourceReferences; - } - /** - * @return Google_Service_Clouderrorreporting_SourceReference - */ - public function getSourceReferences() - { - return $this->sourceReferences; - } - public function setUser($user) - { - $this->user = $user; - } - public function getUser() - { - return $this->user; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Clouderrorreporting/ErrorEvent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Clouderrorreporting/ErrorEvent.php deleted file mode 100644 index 8d9754d2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Clouderrorreporting/ErrorEvent.php +++ /dev/null @@ -1,71 +0,0 @@ -context = $context; - } - /** - * @return Google_Service_Clouderrorreporting_ErrorContext - */ - public function getContext() - { - return $this->context; - } - public function setEventTime($eventTime) - { - $this->eventTime = $eventTime; - } - public function getEventTime() - { - return $this->eventTime; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } - /** - * @param Google_Service_Clouderrorreporting_ServiceContext - */ - public function setServiceContext(Google_Service_Clouderrorreporting_ServiceContext $serviceContext) - { - $this->serviceContext = $serviceContext; - } - /** - * @return Google_Service_Clouderrorreporting_ServiceContext - */ - public function getServiceContext() - { - return $this->serviceContext; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Clouderrorreporting/ErrorGroup.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Clouderrorreporting/ErrorGroup.php deleted file mode 100644 index 9bd58ad2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Clouderrorreporting/ErrorGroup.php +++ /dev/null @@ -1,56 +0,0 @@ -groupId = $groupId; - } - public function getGroupId() - { - return $this->groupId; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Clouderrorreporting_TrackingIssue - */ - public function setTrackingIssues($trackingIssues) - { - $this->trackingIssues = $trackingIssues; - } - /** - * @return Google_Service_Clouderrorreporting_TrackingIssue - */ - public function getTrackingIssues() - { - return $this->trackingIssues; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Clouderrorreporting/ErrorGroupStats.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Clouderrorreporting/ErrorGroupStats.php deleted file mode 100644 index 2563f785..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Clouderrorreporting/ErrorGroupStats.php +++ /dev/null @@ -1,131 +0,0 @@ -affectedServices = $affectedServices; - } - /** - * @return Google_Service_Clouderrorreporting_ServiceContext - */ - public function getAffectedServices() - { - return $this->affectedServices; - } - public function setAffectedUsersCount($affectedUsersCount) - { - $this->affectedUsersCount = $affectedUsersCount; - } - public function getAffectedUsersCount() - { - return $this->affectedUsersCount; - } - public function setCount($count) - { - $this->count = $count; - } - public function getCount() - { - return $this->count; - } - public function setFirstSeenTime($firstSeenTime) - { - $this->firstSeenTime = $firstSeenTime; - } - public function getFirstSeenTime() - { - return $this->firstSeenTime; - } - /** - * @param Google_Service_Clouderrorreporting_ErrorGroup - */ - public function setGroup(Google_Service_Clouderrorreporting_ErrorGroup $group) - { - $this->group = $group; - } - /** - * @return Google_Service_Clouderrorreporting_ErrorGroup - */ - public function getGroup() - { - return $this->group; - } - public function setLastSeenTime($lastSeenTime) - { - $this->lastSeenTime = $lastSeenTime; - } - public function getLastSeenTime() - { - return $this->lastSeenTime; - } - public function setNumAffectedServices($numAffectedServices) - { - $this->numAffectedServices = $numAffectedServices; - } - public function getNumAffectedServices() - { - return $this->numAffectedServices; - } - /** - * @param Google_Service_Clouderrorreporting_ErrorEvent - */ - public function setRepresentative(Google_Service_Clouderrorreporting_ErrorEvent $representative) - { - $this->representative = $representative; - } - /** - * @return Google_Service_Clouderrorreporting_ErrorEvent - */ - public function getRepresentative() - { - return $this->representative; - } - /** - * @param Google_Service_Clouderrorreporting_TimedCount - */ - public function setTimedCounts($timedCounts) - { - $this->timedCounts = $timedCounts; - } - /** - * @return Google_Service_Clouderrorreporting_TimedCount - */ - public function getTimedCounts() - { - return $this->timedCounts; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Clouderrorreporting/HttpRequestContext.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Clouderrorreporting/HttpRequestContext.php deleted file mode 100644 index 86a89076..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Clouderrorreporting/HttpRequestContext.php +++ /dev/null @@ -1,75 +0,0 @@ -method = $method; - } - public function getMethod() - { - return $this->method; - } - public function setReferrer($referrer) - { - $this->referrer = $referrer; - } - public function getReferrer() - { - return $this->referrer; - } - public function setRemoteIp($remoteIp) - { - $this->remoteIp = $remoteIp; - } - public function getRemoteIp() - { - return $this->remoteIp; - } - public function setResponseStatusCode($responseStatusCode) - { - $this->responseStatusCode = $responseStatusCode; - } - public function getResponseStatusCode() - { - return $this->responseStatusCode; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } - public function setUserAgent($userAgent) - { - $this->userAgent = $userAgent; - } - public function getUserAgent() - { - return $this->userAgent; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Clouderrorreporting/ListEventsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Clouderrorreporting/ListEventsResponse.php deleted file mode 100644 index 29385751..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Clouderrorreporting/ListEventsResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -errorEvents = $errorEvents; - } - /** - * @return Google_Service_Clouderrorreporting_ErrorEvent - */ - public function getErrorEvents() - { - return $this->errorEvents; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setTimeRangeBegin($timeRangeBegin) - { - $this->timeRangeBegin = $timeRangeBegin; - } - public function getTimeRangeBegin() - { - return $this->timeRangeBegin; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Clouderrorreporting/ListGroupStatsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Clouderrorreporting/ListGroupStatsResponse.php deleted file mode 100644 index 98ff447a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Clouderrorreporting/ListGroupStatsResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -errorGroupStats = $errorGroupStats; - } - /** - * @return Google_Service_Clouderrorreporting_ErrorGroupStats - */ - public function getErrorGroupStats() - { - return $this->errorGroupStats; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setTimeRangeBegin($timeRangeBegin) - { - $this->timeRangeBegin = $timeRangeBegin; - } - public function getTimeRangeBegin() - { - return $this->timeRangeBegin; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Clouderrorreporting/ReportErrorEventResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Clouderrorreporting/ReportErrorEventResponse.php deleted file mode 100644 index 97d427c8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Clouderrorreporting/ReportErrorEventResponse.php +++ /dev/null @@ -1,20 +0,0 @@ -context = $context; - } - /** - * @return Google_Service_Clouderrorreporting_ErrorContext - */ - public function getContext() - { - return $this->context; - } - public function setEventTime($eventTime) - { - $this->eventTime = $eventTime; - } - public function getEventTime() - { - return $this->eventTime; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } - /** - * @param Google_Service_Clouderrorreporting_ServiceContext - */ - public function setServiceContext(Google_Service_Clouderrorreporting_ServiceContext $serviceContext) - { - $this->serviceContext = $serviceContext; - } - /** - * @return Google_Service_Clouderrorreporting_ServiceContext - */ - public function getServiceContext() - { - return $this->serviceContext; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Clouderrorreporting/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Clouderrorreporting/Resource/Projects.php deleted file mode 100644 index d89a9027..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Clouderrorreporting/Resource/Projects.php +++ /dev/null @@ -1,46 +0,0 @@ - - * $clouderrorreportingService = new Google_Service_Clouderrorreporting(...); - * $projects = $clouderrorreportingService->projects; - * - */ -class Google_Service_Clouderrorreporting_Resource_Projects extends Google_Service_Resource -{ - /** - * Deletes all error events of a given project. (projects.deleteEvents) - * - * @param string $projectName Required. The resource name of the Google Cloud - * Platform project. Written as `projects/{projectID}`, where `{projectID}` is - * the [Google Cloud Platform project - * ID](https://support.google.com/cloud/answer/6158840). - * - * Example: `projects/my-project-123`. - * @param array $optParams Optional parameters. - * @return Google_Service_Clouderrorreporting_DeleteEventsResponse - */ - public function deleteEvents($projectName, $optParams = array()) - { - $params = array('projectName' => $projectName); - $params = array_merge($params, $optParams); - return $this->call('deleteEvents', array($params), "Google_Service_Clouderrorreporting_DeleteEventsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Clouderrorreporting/Resource/ProjectsEvents.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Clouderrorreporting/Resource/ProjectsEvents.php deleted file mode 100644 index 3ace436c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Clouderrorreporting/Resource/ProjectsEvents.php +++ /dev/null @@ -1,91 +0,0 @@ - - * $clouderrorreportingService = new Google_Service_Clouderrorreporting(...); - * $events = $clouderrorreportingService->events; - * - */ -class Google_Service_Clouderrorreporting_Resource_ProjectsEvents extends Google_Service_Resource -{ - /** - * Lists the specified events. (events.listProjectsEvents) - * - * @param string $projectName Required. The resource name of the Google Cloud - * Platform project. Written as `projects/{projectID}`, where `{projectID}` is - * the [Google Cloud Platform project - * ID](https://support.google.com/cloud/answer/6158840). - * - * Example: `projects/my-project-123`. - * @param array $optParams Optional parameters. - * - * @opt_param string serviceFilter.version Optional. The exact value to match - * against [`ServiceContext.version`](/error- - * reporting/reference/rest/v1beta1/ServiceContext#FIELDS.version). - * @opt_param string serviceFilter.resourceType Optional. The exact value to - * match against [`ServiceContext.resource_type`](/error- - * reporting/reference/rest/v1beta1/ServiceContext#FIELDS.resource_type). - * @opt_param string timeRange.period Restricts the query to the specified time - * range. - * @opt_param string groupId Required. The group for which events shall be - * returned. - * @opt_param string pageToken Optional. A `next_page_token` provided by a - * previous response. - * @opt_param string serviceFilter.service Optional. The exact value to match - * against [`ServiceContext.service`](/error- - * reporting/reference/rest/v1beta1/ServiceContext#FIELDS.service). - * @opt_param int pageSize Optional. The maximum number of results to return per - * response. - * @return Google_Service_Clouderrorreporting_ListEventsResponse - */ - public function listProjectsEvents($projectName, $optParams = array()) - { - $params = array('projectName' => $projectName); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Clouderrorreporting_ListEventsResponse"); - } - /** - * Report an individual error event. - * - * This endpoint accepts **either** an OAuth token, **or** an [API - * key](https://support.google.com/cloud/answer/6158862) for authentication. To - * use an API key, append it to the URL as the value of a `key` parameter. For - * example: - * - * `POST https://clouderrorreporting.googleapis.com/v1beta1/{projectName}/events - * :report?key=123ABC456` (events.report) - * - * @param string $projectName Required. The resource name of the Google Cloud - * Platform project. Written as `projects/{projectId}`, where `{projectId}` is - * the [Google Cloud Platform project - * ID](https://support.google.com/cloud/answer/6158840). - * - * Example: // `projects/my-project-123`. - * @param Google_Service_Clouderrorreporting_ReportedErrorEvent $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Clouderrorreporting_ReportErrorEventResponse - */ - public function report($projectName, Google_Service_Clouderrorreporting_ReportedErrorEvent $postBody, $optParams = array()) - { - $params = array('projectName' => $projectName, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('report', array($params), "Google_Service_Clouderrorreporting_ReportErrorEventResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Clouderrorreporting/Resource/ProjectsGroupStats.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Clouderrorreporting/Resource/ProjectsGroupStats.php deleted file mode 100644 index 66214b84..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Clouderrorreporting/Resource/ProjectsGroupStats.php +++ /dev/null @@ -1,72 +0,0 @@ - - * $clouderrorreportingService = new Google_Service_Clouderrorreporting(...); - * $groupStats = $clouderrorreportingService->groupStats; - * - */ -class Google_Service_Clouderrorreporting_Resource_ProjectsGroupStats extends Google_Service_Resource -{ - /** - * Lists the specified groups. (groupStats.listProjectsGroupStats) - * - * @param string $projectName Required. The resource name of the Google Cloud - * Platform project. Written as `projects/{projectID}`, where `{projectID}` is - * the [Google Cloud Platform project - * ID](https://support.google.com/cloud/answer/6158840). - * - * Example: `projects/my-project-123`. - * @param array $optParams Optional parameters. - * - * @opt_param string groupId Optional. List all ErrorGroupStats with these IDs. - * @opt_param string serviceFilter.service Optional. The exact value to match - * against [`ServiceContext.service`](/error- - * reporting/reference/rest/v1beta1/ServiceContext#FIELDS.service). - * @opt_param int pageSize Optional. The maximum number of results to return per - * response. Default is 20. - * @opt_param string serviceFilter.version Optional. The exact value to match - * against [`ServiceContext.version`](/error- - * reporting/reference/rest/v1beta1/ServiceContext#FIELDS.version). - * @opt_param string order Optional. The sort order in which the results are - * returned. Default is `COUNT_DESC`. - * @opt_param string serviceFilter.resourceType Optional. The exact value to - * match against [`ServiceContext.resource_type`](/error- - * reporting/reference/rest/v1beta1/ServiceContext#FIELDS.resource_type). - * @opt_param string alignmentTime Optional. Time where the timed counts shall - * be aligned if rounded alignment is chosen. Default is 00:00 UTC. - * @opt_param string timedCountDuration Optional. The preferred duration for a - * single returned `TimedCount`. If not set, no timed counts are returned. - * @opt_param string pageToken Optional. A `next_page_token` provided by a - * previous response. To view additional results, pass this token along with the - * identical query parameters as the first request. - * @opt_param string timeRange.period Restricts the query to the specified time - * range. - * @opt_param string alignment Optional. The alignment of the timed counts to be - * returned. Default is `ALIGNMENT_EQUAL_AT_END`. - * @return Google_Service_Clouderrorreporting_ListGroupStatsResponse - */ - public function listProjectsGroupStats($projectName, $optParams = array()) - { - $params = array('projectName' => $projectName); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Clouderrorreporting_ListGroupStatsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Clouderrorreporting/Resource/ProjectsGroups.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Clouderrorreporting/Resource/ProjectsGroups.php deleted file mode 100644 index 44bf421d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Clouderrorreporting/Resource/ProjectsGroups.php +++ /dev/null @@ -1,62 +0,0 @@ - - * $clouderrorreportingService = new Google_Service_Clouderrorreporting(...); - * $groups = $clouderrorreportingService->groups; - * - */ -class Google_Service_Clouderrorreporting_Resource_ProjectsGroups extends Google_Service_Resource -{ - /** - * Get the specified group. (groups.get) - * - * @param string $groupName Required. The group resource name. Written as - * projects/projectID/groups/group_name. Call - * - * groupStats.list to return a list of groups belonging to this project. - * - * Example: projects/my-project-123/groups/my-group - * @param array $optParams Optional parameters. - * @return Google_Service_Clouderrorreporting_ErrorGroup - */ - public function get($groupName, $optParams = array()) - { - $params = array('groupName' => $groupName); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Clouderrorreporting_ErrorGroup"); - } - /** - * Replace the data for the specified group. Fails if the group does not exist. - * (groups.update) - * - * @param string $name The group resource name. Example: projects/my- - * project-123/groups/CNSgkpnppqKCUw - * @param Google_Service_Clouderrorreporting_ErrorGroup $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Clouderrorreporting_ErrorGroup - */ - public function update($name, Google_Service_Clouderrorreporting_ErrorGroup $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Clouderrorreporting_ErrorGroup"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Clouderrorreporting/ServiceContext.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Clouderrorreporting/ServiceContext.php deleted file mode 100644 index 3abdf1e9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Clouderrorreporting/ServiceContext.php +++ /dev/null @@ -1,48 +0,0 @@ -resourceType = $resourceType; - } - public function getResourceType() - { - return $this->resourceType; - } - public function setService($service) - { - $this->service = $service; - } - public function getService() - { - return $this->service; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Clouderrorreporting/SourceLocation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Clouderrorreporting/SourceLocation.php deleted file mode 100644 index 5ed8fc6c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Clouderrorreporting/SourceLocation.php +++ /dev/null @@ -1,48 +0,0 @@ -filePath = $filePath; - } - public function getFilePath() - { - return $this->filePath; - } - public function setFunctionName($functionName) - { - $this->functionName = $functionName; - } - public function getFunctionName() - { - return $this->functionName; - } - public function setLineNumber($lineNumber) - { - $this->lineNumber = $lineNumber; - } - public function getLineNumber() - { - return $this->lineNumber; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Clouderrorreporting/SourceReference.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Clouderrorreporting/SourceReference.php deleted file mode 100644 index fd8db16e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Clouderrorreporting/SourceReference.php +++ /dev/null @@ -1,39 +0,0 @@ -repository = $repository; - } - public function getRepository() - { - return $this->repository; - } - public function setRevisionId($revisionId) - { - $this->revisionId = $revisionId; - } - public function getRevisionId() - { - return $this->revisionId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Clouderrorreporting/TimedCount.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Clouderrorreporting/TimedCount.php deleted file mode 100644 index b4bb7d57..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Clouderrorreporting/TimedCount.php +++ /dev/null @@ -1,48 +0,0 @@ -count = $count; - } - public function getCount() - { - return $this->count; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Clouderrorreporting/TrackingIssue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Clouderrorreporting/TrackingIssue.php deleted file mode 100644 index cee00138..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Clouderrorreporting/TrackingIssue.php +++ /dev/null @@ -1,30 +0,0 @@ -url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudlatencytest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudlatencytest.php deleted file mode 100644 index e5765b45..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudlatencytest.php +++ /dev/null @@ -1,71 +0,0 @@ - - * Reports latency data.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Cloudlatencytest extends Google_Service -{ - /** View monitoring data for all of your Google Cloud and API projects. */ - const MONITORING_READONLY = - "https://www.googleapis.com/auth/monitoring.readonly"; - - public $statscollection; - - /** - * Constructs the internal representation of the Cloudlatencytest service. - * - * @param Google_Client $client - */ - public function __construct(Google_Client $client) - { - parent::__construct($client); - $this->rootUrl = 'https://cloudlatencytest-pa.googleapis.com/'; - $this->servicePath = 'v2/statscollection/'; - $this->version = 'v2'; - $this->serviceName = 'cloudlatencytest'; - - $this->statscollection = new Google_Service_Cloudlatencytest_StatscollectionResource( - $this, - $this->serviceName, - 'statscollection', - array( - 'methods' => array( - 'updateaggregatedstats' => array( - 'path' => 'updateaggregatedstats', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'updatestats' => array( - 'path' => 'updatestats', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudlatencytest/AggregatedStats.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudlatencytest/AggregatedStats.php deleted file mode 100644 index e4780ec6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudlatencytest/AggregatedStats.php +++ /dev/null @@ -1,32 +0,0 @@ -stats = $stats; - } - public function getStats() - { - return $this->stats; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudlatencytest/AggregatedStatsReply.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudlatencytest/AggregatedStatsReply.php deleted file mode 100644 index cadfbc95..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudlatencytest/AggregatedStatsReply.php +++ /dev/null @@ -1,30 +0,0 @@ -testValue = $testValue; - } - public function getTestValue() - { - return $this->testValue; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudlatencytest/DoubleValue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudlatencytest/DoubleValue.php deleted file mode 100644 index 18a19851..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudlatencytest/DoubleValue.php +++ /dev/null @@ -1,39 +0,0 @@ -label = $label; - } - public function getLabel() - { - return $this->label; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudlatencytest/IntValue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudlatencytest/IntValue.php deleted file mode 100644 index 3071ca11..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudlatencytest/IntValue.php +++ /dev/null @@ -1,39 +0,0 @@ -label = $label; - } - public function getLabel() - { - return $this->label; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudlatencytest/Stats.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudlatencytest/Stats.php deleted file mode 100644 index 1536b5e6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudlatencytest/Stats.php +++ /dev/null @@ -1,61 +0,0 @@ -doubleValues = $doubleValues; - } - public function getDoubleValues() - { - return $this->doubleValues; - } - public function setIntValues($intValues) - { - $this->intValues = $intValues; - } - public function getIntValues() - { - return $this->intValues; - } - public function setStringValues($stringValues) - { - $this->stringValues = $stringValues; - } - public function getStringValues() - { - return $this->stringValues; - } - public function setTime($time) - { - $this->time = $time; - } - public function getTime() - { - return $this->time; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudlatencytest/StatsReply.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudlatencytest/StatsReply.php deleted file mode 100644 index ec0970c3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudlatencytest/StatsReply.php +++ /dev/null @@ -1,30 +0,0 @@ -testValue = $testValue; - } - public function getTestValue() - { - return $this->testValue; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudlatencytest/StatscollectionResource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudlatencytest/StatscollectionResource.php deleted file mode 100644 index de3a3a17..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudlatencytest/StatscollectionResource.php +++ /dev/null @@ -1,54 +0,0 @@ - - * $cloudlatencytestService = new Google_Service_Cloudlatencytest(...); - * $statscollection = $cloudlatencytestService->statscollection; - * - */ -class Google_Service_Cloudlatencytest_StatscollectionResource extends Google_Service_Resource -{ - /** - * RPC to update the new TCP stats. (statscollection.updateaggregatedstats) - * - * @param Google_Service_Cloudlatencytest_AggregatedStats $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Cloudlatencytest_AggregatedStatsReply - */ - public function updateaggregatedstats(Google_Service_Cloudlatencytest_AggregatedStats $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updateaggregatedstats', array($params), "Google_Service_Cloudlatencytest_AggregatedStatsReply"); - } - /** - * RPC to update the new TCP stats. (statscollection.updatestats) - * - * @param Google_Service_Cloudlatencytest_Stats $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Cloudlatencytest_StatsReply - */ - public function updatestats(Google_Service_Cloudlatencytest_Stats $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updatestats', array($params), "Google_Service_Cloudlatencytest_StatsReply"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudlatencytest/StringValue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudlatencytest/StringValue.php deleted file mode 100644 index 0e5c540a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Cloudlatencytest/StringValue.php +++ /dev/null @@ -1,39 +0,0 @@ -label = $label; - } - public function getLabel() - { - return $this->label; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CommentAnalyzer.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CommentAnalyzer.php deleted file mode 100644 index d0a2fb93..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CommentAnalyzer.php +++ /dev/null @@ -1,78 +0,0 @@ - - * The Perspective Comment Analyzer API provides information about the potential - * impact of a comment on a conversation (e.g. it can provide a score for the - * "toxicity" of a comment). Users can leverage the "SuggestCommentScore" method - * to submit corrections to improve Perspective over time. Users can set the - * "doNotStore" flag to ensure that all submitted comments are automatically - * deleted after scores are returned.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_CommentAnalyzer extends Google_Service -{ - /** View your email address. */ - const USERINFO_EMAIL = - "https://www.googleapis.com/auth/userinfo.email"; - - public $comments; - - /** - * Constructs the internal representation of the CommentAnalyzer service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://commentanalyzer.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1alpha1'; - $this->serviceName = 'commentanalyzer'; - - $this->comments = new Google_Service_CommentAnalyzer_Resource_Comments( - $this, - $this->serviceName, - 'comments', - array( - 'methods' => array( - 'analyze' => array( - 'path' => 'v1alpha1/comments:analyze', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'suggestscore' => array( - 'path' => 'v1alpha1/comments:suggestscore', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CommentAnalyzer/AnalyzeCommentRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CommentAnalyzer/AnalyzeCommentRequest.php deleted file mode 100644 index dcbb7b4a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CommentAnalyzer/AnalyzeCommentRequest.php +++ /dev/null @@ -1,124 +0,0 @@ -clientToken = $clientToken; - } - public function getClientToken() - { - return $this->clientToken; - } - /** - * @param Google_Service_CommentAnalyzer_TextEntry - */ - public function setComment(Google_Service_CommentAnalyzer_TextEntry $comment) - { - $this->comment = $comment; - } - /** - * @return Google_Service_CommentAnalyzer_TextEntry - */ - public function getComment() - { - return $this->comment; - } - public function setCommunityId($communityId) - { - $this->communityId = $communityId; - } - public function getCommunityId() - { - return $this->communityId; - } - /** - * @param Google_Service_CommentAnalyzer_Context - */ - public function setContext(Google_Service_CommentAnalyzer_Context $context) - { - $this->context = $context; - } - /** - * @return Google_Service_CommentAnalyzer_Context - */ - public function getContext() - { - return $this->context; - } - public function setDoNotStore($doNotStore) - { - $this->doNotStore = $doNotStore; - } - public function getDoNotStore() - { - return $this->doNotStore; - } - public function setLanguages($languages) - { - $this->languages = $languages; - } - public function getLanguages() - { - return $this->languages; - } - /** - * @param Google_Service_CommentAnalyzer_AttributeParameters - */ - public function setRequestedAttributes($requestedAttributes) - { - $this->requestedAttributes = $requestedAttributes; - } - /** - * @return Google_Service_CommentAnalyzer_AttributeParameters - */ - public function getRequestedAttributes() - { - return $this->requestedAttributes; - } - public function setSessionId($sessionId) - { - $this->sessionId = $sessionId; - } - public function getSessionId() - { - return $this->sessionId; - } - public function setSpanAnnotations($spanAnnotations) - { - $this->spanAnnotations = $spanAnnotations; - } - public function getSpanAnnotations() - { - return $this->spanAnnotations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CommentAnalyzer/AnalyzeCommentResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CommentAnalyzer/AnalyzeCommentResponse.php deleted file mode 100644 index 0a99d750..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CommentAnalyzer/AnalyzeCommentResponse.php +++ /dev/null @@ -1,65 +0,0 @@ -attributeScores = $attributeScores; - } - /** - * @return Google_Service_CommentAnalyzer_AttributeScores - */ - public function getAttributeScores() - { - return $this->attributeScores; - } - public function setClientToken($clientToken) - { - $this->clientToken = $clientToken; - } - public function getClientToken() - { - return $this->clientToken; - } - public function setDetectedLanguages($detectedLanguages) - { - $this->detectedLanguages = $detectedLanguages; - } - public function getDetectedLanguages() - { - return $this->detectedLanguages; - } - public function setLanguages($languages) - { - $this->languages = $languages; - } - public function getLanguages() - { - return $this->languages; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CommentAnalyzer/ArticleAndParentComment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CommentAnalyzer/ArticleAndParentComment.php deleted file mode 100644 index a6e2cc14..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CommentAnalyzer/ArticleAndParentComment.php +++ /dev/null @@ -1,53 +0,0 @@ -article = $article; - } - /** - * @return Google_Service_CommentAnalyzer_TextEntry - */ - public function getArticle() - { - return $this->article; - } - /** - * @param Google_Service_CommentAnalyzer_TextEntry - */ - public function setParentComment(Google_Service_CommentAnalyzer_TextEntry $parentComment) - { - $this->parentComment = $parentComment; - } - /** - * @return Google_Service_CommentAnalyzer_TextEntry - */ - public function getParentComment() - { - return $this->parentComment; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CommentAnalyzer/AttributeParameters.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CommentAnalyzer/AttributeParameters.php deleted file mode 100644 index 55219e52..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CommentAnalyzer/AttributeParameters.php +++ /dev/null @@ -1,39 +0,0 @@ -scoreThreshold = $scoreThreshold; - } - public function getScoreThreshold() - { - return $this->scoreThreshold; - } - public function setScoreType($scoreType) - { - $this->scoreType = $scoreType; - } - public function getScoreType() - { - return $this->scoreType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CommentAnalyzer/AttributeScores.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CommentAnalyzer/AttributeScores.php deleted file mode 100644 index 6678a1bd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CommentAnalyzer/AttributeScores.php +++ /dev/null @@ -1,54 +0,0 @@ -spanScores = $spanScores; - } - /** - * @return Google_Service_CommentAnalyzer_SpanScore - */ - public function getSpanScores() - { - return $this->spanScores; - } - /** - * @param Google_Service_CommentAnalyzer_Score - */ - public function setSummaryScore(Google_Service_CommentAnalyzer_Score $summaryScore) - { - $this->summaryScore = $summaryScore; - } - /** - * @return Google_Service_CommentAnalyzer_Score - */ - public function getSummaryScore() - { - return $this->summaryScore; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CommentAnalyzer/Context.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CommentAnalyzer/Context.php deleted file mode 100644 index f06d0fa2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CommentAnalyzer/Context.php +++ /dev/null @@ -1,54 +0,0 @@ -articleAndParentComment = $articleAndParentComment; - } - /** - * @return Google_Service_CommentAnalyzer_ArticleAndParentComment - */ - public function getArticleAndParentComment() - { - return $this->articleAndParentComment; - } - /** - * @param Google_Service_CommentAnalyzer_TextEntry - */ - public function setEntries($entries) - { - $this->entries = $entries; - } - /** - * @return Google_Service_CommentAnalyzer_TextEntry - */ - public function getEntries() - { - return $this->entries; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CommentAnalyzer/Resource/Comments.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CommentAnalyzer/Resource/Comments.php deleted file mode 100644 index 44f32f39..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CommentAnalyzer/Resource/Comments.php +++ /dev/null @@ -1,55 +0,0 @@ - - * $commentanalyzerService = new Google_Service_CommentAnalyzer(...); - * $comments = $commentanalyzerService->comments; - * - */ -class Google_Service_CommentAnalyzer_Resource_Comments extends Google_Service_Resource -{ - /** - * Analyzes the provided text and returns scores for requested attributes. - * (comments.analyze) - * - * @param Google_Service_CommentAnalyzer_AnalyzeCommentRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CommentAnalyzer_AnalyzeCommentResponse - */ - public function analyze(Google_Service_CommentAnalyzer_AnalyzeCommentRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('analyze', array($params), "Google_Service_CommentAnalyzer_AnalyzeCommentResponse"); - } - /** - * Suggest comment scores as training data. (comments.suggestscore) - * - * @param Google_Service_CommentAnalyzer_SuggestCommentScoreRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_CommentAnalyzer_SuggestCommentScoreResponse - */ - public function suggestscore(Google_Service_CommentAnalyzer_SuggestCommentScoreRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('suggestscore', array($params), "Google_Service_CommentAnalyzer_SuggestCommentScoreResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CommentAnalyzer/Score.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CommentAnalyzer/Score.php deleted file mode 100644 index 60ae828e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CommentAnalyzer/Score.php +++ /dev/null @@ -1,39 +0,0 @@ -type = $type; - } - public function getType() - { - return $this->type; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CommentAnalyzer/SpanScore.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CommentAnalyzer/SpanScore.php deleted file mode 100644 index 75d7d882..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CommentAnalyzer/SpanScore.php +++ /dev/null @@ -1,55 +0,0 @@ -begin = $begin; - } - public function getBegin() - { - return $this->begin; - } - public function setEnd($end) - { - $this->end = $end; - } - public function getEnd() - { - return $this->end; - } - /** - * @param Google_Service_CommentAnalyzer_Score - */ - public function setScore(Google_Service_CommentAnalyzer_Score $score) - { - $this->score = $score; - } - /** - * @return Google_Service_CommentAnalyzer_Score - */ - public function getScore() - { - return $this->score; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CommentAnalyzer/SuggestCommentScoreRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CommentAnalyzer/SuggestCommentScoreRequest.php deleted file mode 100644 index 6497dedf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CommentAnalyzer/SuggestCommentScoreRequest.php +++ /dev/null @@ -1,106 +0,0 @@ -attributeScores = $attributeScores; - } - /** - * @return Google_Service_CommentAnalyzer_AttributeScores - */ - public function getAttributeScores() - { - return $this->attributeScores; - } - public function setClientToken($clientToken) - { - $this->clientToken = $clientToken; - } - public function getClientToken() - { - return $this->clientToken; - } - /** - * @param Google_Service_CommentAnalyzer_TextEntry - */ - public function setComment(Google_Service_CommentAnalyzer_TextEntry $comment) - { - $this->comment = $comment; - } - /** - * @return Google_Service_CommentAnalyzer_TextEntry - */ - public function getComment() - { - return $this->comment; - } - public function setCommunityId($communityId) - { - $this->communityId = $communityId; - } - public function getCommunityId() - { - return $this->communityId; - } - /** - * @param Google_Service_CommentAnalyzer_Context - */ - public function setContext(Google_Service_CommentAnalyzer_Context $context) - { - $this->context = $context; - } - /** - * @return Google_Service_CommentAnalyzer_Context - */ - public function getContext() - { - return $this->context; - } - public function setLanguages($languages) - { - $this->languages = $languages; - } - public function getLanguages() - { - return $this->languages; - } - public function setSessionId($sessionId) - { - $this->sessionId = $sessionId; - } - public function getSessionId() - { - return $this->sessionId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CommentAnalyzer/SuggestCommentScoreResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CommentAnalyzer/SuggestCommentScoreResponse.php deleted file mode 100644 index d1faf76e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CommentAnalyzer/SuggestCommentScoreResponse.php +++ /dev/null @@ -1,49 +0,0 @@ -clientToken = $clientToken; - } - public function getClientToken() - { - return $this->clientToken; - } - public function setDetectedLanguages($detectedLanguages) - { - $this->detectedLanguages = $detectedLanguages; - } - public function getDetectedLanguages() - { - return $this->detectedLanguages; - } - public function setRequestedLanguages($requestedLanguages) - { - $this->requestedLanguages = $requestedLanguages; - } - public function getRequestedLanguages() - { - return $this->requestedLanguages; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CommentAnalyzer/TextEntry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CommentAnalyzer/TextEntry.php deleted file mode 100644 index ab3174bc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/CommentAnalyzer/TextEntry.php +++ /dev/null @@ -1,39 +0,0 @@ -text = $text; - } - public function getText() - { - return $this->text; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute.php deleted file mode 100644 index 15bca3af..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute.php +++ /dev/null @@ -1,11746 +0,0 @@ - - * Creates and runs virtual machines on Google Cloud Platform.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Compute extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** View and manage your Google Compute Engine resources. */ - const COMPUTE = - "https://www.googleapis.com/auth/compute"; - /** View your Google Compute Engine resources. */ - const COMPUTE_READONLY = - "https://www.googleapis.com/auth/compute.readonly"; - /** Manage your data and permissions in Google Cloud Storage. */ - const DEVSTORAGE_FULL_CONTROL = - "https://www.googleapis.com/auth/devstorage.full_control"; - /** View your data in Google Cloud Storage. */ - const DEVSTORAGE_READ_ONLY = - "https://www.googleapis.com/auth/devstorage.read_only"; - /** Manage your data in Google Cloud Storage. */ - const DEVSTORAGE_READ_WRITE = - "https://www.googleapis.com/auth/devstorage.read_write"; - - public $acceleratorTypes; - public $addresses; - public $autoscalers; - public $backendBuckets; - public $backendServices; - public $diskTypes; - public $disks; - public $externalVpnGateways; - public $firewalls; - public $forwardingRules; - public $globalAddresses; - public $globalForwardingRules; - public $globalOperations; - public $healthChecks; - public $httpHealthChecks; - public $httpsHealthChecks; - public $images; - public $instanceGroupManagers; - public $instanceGroups; - public $instanceTemplates; - public $instances; - public $interconnectAttachments; - public $interconnectLocations; - public $interconnects; - public $licenseCodes; - public $licenses; - public $machineTypes; - public $networkEndpointGroups; - public $networks; - public $nodeGroups; - public $nodeTemplates; - public $nodeTypes; - public $packetMirrorings; - public $projects; - public $regionAutoscalers; - public $regionBackendServices; - public $regionCommitments; - public $regionDiskTypes; - public $regionDisks; - public $regionHealthChecks; - public $regionInstanceGroupManagers; - public $regionInstanceGroups; - public $regionOperations; - public $regionSslCertificates; - public $regionTargetHttpProxies; - public $regionTargetHttpsProxies; - public $regionUrlMaps; - public $regions; - public $reservations; - public $resourcePolicies; - public $routers; - public $routes; - public $securityPolicies; - public $snapshots; - public $sslCertificates; - public $sslPolicies; - public $subnetworks; - public $targetHttpProxies; - public $targetHttpsProxies; - public $targetInstances; - public $targetPools; - public $targetSslProxies; - public $targetTcpProxies; - public $targetVpnGateways; - public $urlMaps; - public $vpnGateways; - public $vpnTunnels; - public $zoneOperations; - public $zones; - - /** - * Constructs the internal representation of the Compute service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://compute.googleapis.com/'; - $this->servicePath = 'compute/v1/projects/'; - $this->batchPath = 'batch/compute/v1'; - $this->version = 'v1'; - $this->serviceName = 'compute'; - - $this->acceleratorTypes = new Google_Service_Compute_Resource_AcceleratorTypes( - $this, - $this->serviceName, - 'acceleratorTypes', - array( - 'methods' => array( - 'aggregatedList' => array( - 'path' => '{project}/aggregated/acceleratorTypes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/zones/{zone}/acceleratorTypes/{acceleratorType}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'acceleratorType' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/zones/{zone}/acceleratorTypes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->addresses = new Google_Service_Compute_Resource_Addresses( - $this, - $this->serviceName, - 'addresses', - array( - 'methods' => array( - 'aggregatedList' => array( - 'path' => '{project}/aggregated/addresses', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => '{project}/regions/{region}/addresses/{address}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'address' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/regions/{region}/addresses/{address}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'address' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/regions/{region}/addresses', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/regions/{region}/addresses', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->autoscalers = new Google_Service_Compute_Resource_Autoscalers( - $this, - $this->serviceName, - 'autoscalers', - array( - 'methods' => array( - 'aggregatedList' => array( - 'path' => '{project}/aggregated/autoscalers', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => '{project}/zones/{zone}/autoscalers/{autoscaler}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'autoscaler' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/zones/{zone}/autoscalers/{autoscaler}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'autoscaler' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/zones/{zone}/autoscalers', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/zones/{zone}/autoscalers', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => '{project}/zones/{zone}/autoscalers', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'autoscaler' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => '{project}/zones/{zone}/autoscalers', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'autoscaler' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->backendBuckets = new Google_Service_Compute_Resource_BackendBuckets( - $this, - $this->serviceName, - 'backendBuckets', - array( - 'methods' => array( - 'addSignedUrlKey' => array( - 'path' => '{project}/global/backendBuckets/{backendBucket}/addSignedUrlKey', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'backendBucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => '{project}/global/backendBuckets/{backendBucket}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'backendBucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'deleteSignedUrlKey' => array( - 'path' => '{project}/global/backendBuckets/{backendBucket}/deleteSignedUrlKey', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'backendBucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'keyName' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/global/backendBuckets/{backendBucket}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'backendBucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/global/backendBuckets', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/global/backendBuckets', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => '{project}/global/backendBuckets/{backendBucket}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'backendBucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => '{project}/global/backendBuckets/{backendBucket}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'backendBucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->backendServices = new Google_Service_Compute_Resource_BackendServices( - $this, - $this->serviceName, - 'backendServices', - array( - 'methods' => array( - 'addSignedUrlKey' => array( - 'path' => '{project}/global/backendServices/{backendService}/addSignedUrlKey', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'backendService' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'aggregatedList' => array( - 'path' => '{project}/aggregated/backendServices', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => '{project}/global/backendServices/{backendService}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'backendService' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'deleteSignedUrlKey' => array( - 'path' => '{project}/global/backendServices/{backendService}/deleteSignedUrlKey', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'backendService' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'keyName' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/global/backendServices/{backendService}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'backendService' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getHealth' => array( - 'path' => '{project}/global/backendServices/{backendService}/getHealth', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'backendService' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/global/backendServices', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/global/backendServices', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => '{project}/global/backendServices/{backendService}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'backendService' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setSecurityPolicy' => array( - 'path' => '{project}/global/backendServices/{backendService}/setSecurityPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'backendService' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => '{project}/global/backendServices/{backendService}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'backendService' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->diskTypes = new Google_Service_Compute_Resource_DiskTypes( - $this, - $this->serviceName, - 'diskTypes', - array( - 'methods' => array( - 'aggregatedList' => array( - 'path' => '{project}/aggregated/diskTypes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/zones/{zone}/diskTypes/{diskType}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'diskType' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/zones/{zone}/diskTypes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->disks = new Google_Service_Compute_Resource_Disks( - $this, - $this->serviceName, - 'disks', - array( - 'methods' => array( - 'addResourcePolicies' => array( - 'path' => '{project}/zones/{zone}/disks/{disk}/addResourcePolicies', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'disk' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'aggregatedList' => array( - 'path' => '{project}/aggregated/disks', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'createSnapshot' => array( - 'path' => '{project}/zones/{zone}/disks/{disk}/createSnapshot', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'disk' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'guestFlush' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => '{project}/zones/{zone}/disks/{disk}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'disk' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/zones/{zone}/disks/{disk}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'disk' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getIamPolicy' => array( - 'path' => '{project}/zones/{zone}/disks/{resource}/getIamPolicy', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/zones/{zone}/disks', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sourceImage' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/zones/{zone}/disks', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'removeResourcePolicies' => array( - 'path' => '{project}/zones/{zone}/disks/{disk}/removeResourcePolicies', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'disk' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'resize' => array( - 'path' => '{project}/zones/{zone}/disks/{disk}/resize', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'disk' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setIamPolicy' => array( - 'path' => '{project}/zones/{zone}/disks/{resource}/setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setLabels' => array( - 'path' => '{project}/zones/{zone}/disks/{resource}/setLabels', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'testIamPermissions' => array( - 'path' => '{project}/zones/{zone}/disks/{resource}/testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->externalVpnGateways = new Google_Service_Compute_Resource_ExternalVpnGateways( - $this, - $this->serviceName, - 'externalVpnGateways', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{project}/global/externalVpnGateways/{externalVpnGateway}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'externalVpnGateway' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/global/externalVpnGateways/{externalVpnGateway}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'externalVpnGateway' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/global/externalVpnGateways', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/global/externalVpnGateways', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setLabels' => array( - 'path' => '{project}/global/externalVpnGateways/{resource}/setLabels', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => '{project}/global/externalVpnGateways/{resource}/testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->firewalls = new Google_Service_Compute_Resource_Firewalls( - $this, - $this->serviceName, - 'firewalls', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{project}/global/firewalls/{firewall}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'firewall' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/global/firewalls/{firewall}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'firewall' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/global/firewalls', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/global/firewalls', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => '{project}/global/firewalls/{firewall}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'firewall' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => '{project}/global/firewalls/{firewall}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'firewall' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->forwardingRules = new Google_Service_Compute_Resource_ForwardingRules( - $this, - $this->serviceName, - 'forwardingRules', - array( - 'methods' => array( - 'aggregatedList' => array( - 'path' => '{project}/aggregated/forwardingRules', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => '{project}/regions/{region}/forwardingRules/{forwardingRule}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'forwardingRule' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/regions/{region}/forwardingRules/{forwardingRule}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'forwardingRule' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/regions/{region}/forwardingRules', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/regions/{region}/forwardingRules', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => '{project}/regions/{region}/forwardingRules/{forwardingRule}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'forwardingRule' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setTarget' => array( - 'path' => '{project}/regions/{region}/forwardingRules/{forwardingRule}/setTarget', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'forwardingRule' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->globalAddresses = new Google_Service_Compute_Resource_GlobalAddresses( - $this, - $this->serviceName, - 'globalAddresses', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{project}/global/addresses/{address}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'address' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/global/addresses/{address}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'address' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/global/addresses', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/global/addresses', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->globalForwardingRules = new Google_Service_Compute_Resource_GlobalForwardingRules( - $this, - $this->serviceName, - 'globalForwardingRules', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{project}/global/forwardingRules/{forwardingRule}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'forwardingRule' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/global/forwardingRules/{forwardingRule}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'forwardingRule' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/global/forwardingRules', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/global/forwardingRules', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => '{project}/global/forwardingRules/{forwardingRule}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'forwardingRule' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setTarget' => array( - 'path' => '{project}/global/forwardingRules/{forwardingRule}/setTarget', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'forwardingRule' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->globalOperations = new Google_Service_Compute_Resource_GlobalOperations( - $this, - $this->serviceName, - 'globalOperations', - array( - 'methods' => array( - 'aggregatedList' => array( - 'path' => '{project}/aggregated/operations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => '{project}/global/operations/{operation}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'operation' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{project}/global/operations/{operation}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'operation' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/global/operations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'wait' => array( - 'path' => '{project}/global/operations/{operation}/wait', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'operation' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->healthChecks = new Google_Service_Compute_Resource_HealthChecks( - $this, - $this->serviceName, - 'healthChecks', - array( - 'methods' => array( - 'aggregatedList' => array( - 'path' => '{project}/aggregated/healthChecks', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => '{project}/global/healthChecks/{healthCheck}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'healthCheck' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/global/healthChecks/{healthCheck}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'healthCheck' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/global/healthChecks', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/global/healthChecks', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => '{project}/global/healthChecks/{healthCheck}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'healthCheck' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => '{project}/global/healthChecks/{healthCheck}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'healthCheck' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->httpHealthChecks = new Google_Service_Compute_Resource_HttpHealthChecks( - $this, - $this->serviceName, - 'httpHealthChecks', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{project}/global/httpHealthChecks/{httpHealthCheck}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'httpHealthCheck' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/global/httpHealthChecks/{httpHealthCheck}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'httpHealthCheck' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/global/httpHealthChecks', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/global/httpHealthChecks', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => '{project}/global/httpHealthChecks/{httpHealthCheck}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'httpHealthCheck' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => '{project}/global/httpHealthChecks/{httpHealthCheck}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'httpHealthCheck' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->httpsHealthChecks = new Google_Service_Compute_Resource_HttpsHealthChecks( - $this, - $this->serviceName, - 'httpsHealthChecks', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{project}/global/httpsHealthChecks/{httpsHealthCheck}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'httpsHealthCheck' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/global/httpsHealthChecks/{httpsHealthCheck}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'httpsHealthCheck' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/global/httpsHealthChecks', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/global/httpsHealthChecks', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => '{project}/global/httpsHealthChecks/{httpsHealthCheck}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'httpsHealthCheck' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => '{project}/global/httpsHealthChecks/{httpsHealthCheck}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'httpsHealthCheck' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->images = new Google_Service_Compute_Resource_Images( - $this, - $this->serviceName, - 'images', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{project}/global/images/{image}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'image' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'deprecate' => array( - 'path' => '{project}/global/images/{image}/deprecate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'image' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/global/images/{image}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'image' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getFromFamily' => array( - 'path' => '{project}/global/images/family/{family}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'family' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getIamPolicy' => array( - 'path' => '{project}/global/images/{resource}/getIamPolicy', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/global/images', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'forceCreate' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/global/images', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setIamPolicy' => array( - 'path' => '{project}/global/images/{resource}/setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setLabels' => array( - 'path' => '{project}/global/images/{resource}/setLabels', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => '{project}/global/images/{resource}/testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->instanceGroupManagers = new Google_Service_Compute_Resource_InstanceGroupManagers( - $this, - $this->serviceName, - 'instanceGroupManagers', - array( - 'methods' => array( - 'abandonInstances' => array( - 'path' => '{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}/abandonInstances', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instanceGroupManager' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'aggregatedList' => array( - 'path' => '{project}/aggregated/instanceGroupManagers', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'applyUpdatesToInstances' => array( - 'path' => '{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}/applyUpdatesToInstances', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instanceGroupManager' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'createInstances' => array( - 'path' => '{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}/createInstances', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instanceGroupManager' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => '{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instanceGroupManager' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'deleteInstances' => array( - 'path' => '{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}/deleteInstances', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instanceGroupManager' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instanceGroupManager' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/zones/{zone}/instanceGroupManagers', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/zones/{zone}/instanceGroupManagers', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'listManagedInstances' => array( - 'path' => '{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}/listManagedInstances', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instanceGroupManager' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'order_by' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => '{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instanceGroupManager' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'recreateInstances' => array( - 'path' => '{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}/recreateInstances', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instanceGroupManager' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'resize' => array( - 'path' => '{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}/resize', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instanceGroupManager' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'size' => array( - 'location' => 'query', - 'type' => 'integer', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setInstanceTemplate' => array( - 'path' => '{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}/setInstanceTemplate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instanceGroupManager' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setTargetPools' => array( - 'path' => '{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}/setTargetPools', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instanceGroupManager' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->instanceGroups = new Google_Service_Compute_Resource_InstanceGroups( - $this, - $this->serviceName, - 'instanceGroups', - array( - 'methods' => array( - 'addInstances' => array( - 'path' => '{project}/zones/{zone}/instanceGroups/{instanceGroup}/addInstances', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instanceGroup' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'aggregatedList' => array( - 'path' => '{project}/aggregated/instanceGroups', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => '{project}/zones/{zone}/instanceGroups/{instanceGroup}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instanceGroup' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/zones/{zone}/instanceGroups/{instanceGroup}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instanceGroup' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/zones/{zone}/instanceGroups', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/zones/{zone}/instanceGroups', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'listInstances' => array( - 'path' => '{project}/zones/{zone}/instanceGroups/{instanceGroup}/listInstances', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instanceGroup' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'removeInstances' => array( - 'path' => '{project}/zones/{zone}/instanceGroups/{instanceGroup}/removeInstances', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instanceGroup' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setNamedPorts' => array( - 'path' => '{project}/zones/{zone}/instanceGroups/{instanceGroup}/setNamedPorts', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instanceGroup' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->instanceTemplates = new Google_Service_Compute_Resource_InstanceTemplates( - $this, - $this->serviceName, - 'instanceTemplates', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{project}/global/instanceTemplates/{instanceTemplate}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instanceTemplate' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/global/instanceTemplates/{instanceTemplate}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instanceTemplate' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getIamPolicy' => array( - 'path' => '{project}/global/instanceTemplates/{resource}/getIamPolicy', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/global/instanceTemplates', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/global/instanceTemplates', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setIamPolicy' => array( - 'path' => '{project}/global/instanceTemplates/{resource}/setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => '{project}/global/instanceTemplates/{resource}/testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->instances = new Google_Service_Compute_Resource_Instances( - $this, - $this->serviceName, - 'instances', - array( - 'methods' => array( - 'addAccessConfig' => array( - 'path' => '{project}/zones/{zone}/instances/{instance}/addAccessConfig', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'networkInterface' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'aggregatedList' => array( - 'path' => '{project}/aggregated/instances', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'attachDisk' => array( - 'path' => '{project}/zones/{zone}/instances/{instance}/attachDisk', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'forceAttach' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => '{project}/zones/{zone}/instances/{instance}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'deleteAccessConfig' => array( - 'path' => '{project}/zones/{zone}/instances/{instance}/deleteAccessConfig', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'accessConfig' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'networkInterface' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'detachDisk' => array( - 'path' => '{project}/zones/{zone}/instances/{instance}/detachDisk', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'deviceName' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/zones/{zone}/instances/{instance}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getGuestAttributes' => array( - 'path' => '{project}/zones/{zone}/instances/{instance}/getGuestAttributes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'queryPath' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'variableKey' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'getIamPolicy' => array( - 'path' => '{project}/zones/{zone}/instances/{resource}/getIamPolicy', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getSerialPortOutput' => array( - 'path' => '{project}/zones/{zone}/instances/{instance}/serialPort', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'port' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'start' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'getShieldedInstanceIdentity' => array( - 'path' => '{project}/zones/{zone}/instances/{instance}/getShieldedInstanceIdentity', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/zones/{zone}/instances', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sourceInstanceTemplate' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/zones/{zone}/instances', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'listReferrers' => array( - 'path' => '{project}/zones/{zone}/instances/{instance}/referrers', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'reset' => array( - 'path' => '{project}/zones/{zone}/instances/{instance}/reset', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setDeletionProtection' => array( - 'path' => '{project}/zones/{zone}/instances/{resource}/setDeletionProtection', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'deletionProtection' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setDiskAutoDelete' => array( - 'path' => '{project}/zones/{zone}/instances/{instance}/setDiskAutoDelete', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'autoDelete' => array( - 'location' => 'query', - 'type' => 'boolean', - 'required' => true, - ), - 'deviceName' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setIamPolicy' => array( - 'path' => '{project}/zones/{zone}/instances/{resource}/setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setLabels' => array( - 'path' => '{project}/zones/{zone}/instances/{instance}/setLabels', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setMachineResources' => array( - 'path' => '{project}/zones/{zone}/instances/{instance}/setMachineResources', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setMachineType' => array( - 'path' => '{project}/zones/{zone}/instances/{instance}/setMachineType', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setMetadata' => array( - 'path' => '{project}/zones/{zone}/instances/{instance}/setMetadata', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setMinCpuPlatform' => array( - 'path' => '{project}/zones/{zone}/instances/{instance}/setMinCpuPlatform', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setScheduling' => array( - 'path' => '{project}/zones/{zone}/instances/{instance}/setScheduling', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setServiceAccount' => array( - 'path' => '{project}/zones/{zone}/instances/{instance}/setServiceAccount', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setShieldedInstanceIntegrityPolicy' => array( - 'path' => '{project}/zones/{zone}/instances/{instance}/setShieldedInstanceIntegrityPolicy', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setTags' => array( - 'path' => '{project}/zones/{zone}/instances/{instance}/setTags', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'simulateMaintenanceEvent' => array( - 'path' => '{project}/zones/{zone}/instances/{instance}/simulateMaintenanceEvent', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'start' => array( - 'path' => '{project}/zones/{zone}/instances/{instance}/start', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'startWithEncryptionKey' => array( - 'path' => '{project}/zones/{zone}/instances/{instance}/startWithEncryptionKey', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'stop' => array( - 'path' => '{project}/zones/{zone}/instances/{instance}/stop', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'testIamPermissions' => array( - 'path' => '{project}/zones/{zone}/instances/{resource}/testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'updateAccessConfig' => array( - 'path' => '{project}/zones/{zone}/instances/{instance}/updateAccessConfig', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'networkInterface' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'updateDisplayDevice' => array( - 'path' => '{project}/zones/{zone}/instances/{instance}/updateDisplayDevice', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'updateNetworkInterface' => array( - 'path' => '{project}/zones/{zone}/instances/{instance}/updateNetworkInterface', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'networkInterface' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'updateShieldedInstanceConfig' => array( - 'path' => '{project}/zones/{zone}/instances/{instance}/updateShieldedInstanceConfig', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->interconnectAttachments = new Google_Service_Compute_Resource_InterconnectAttachments( - $this, - $this->serviceName, - 'interconnectAttachments', - array( - 'methods' => array( - 'aggregatedList' => array( - 'path' => '{project}/aggregated/interconnectAttachments', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => '{project}/regions/{region}/interconnectAttachments/{interconnectAttachment}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'interconnectAttachment' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/regions/{region}/interconnectAttachments/{interconnectAttachment}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'interconnectAttachment' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/regions/{region}/interconnectAttachments', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'validateOnly' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'list' => array( - 'path' => '{project}/regions/{region}/interconnectAttachments', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => '{project}/regions/{region}/interconnectAttachments/{interconnectAttachment}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'interconnectAttachment' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->interconnectLocations = new Google_Service_Compute_Resource_InterconnectLocations( - $this, - $this->serviceName, - 'interconnectLocations', - array( - 'methods' => array( - 'get' => array( - 'path' => '{project}/global/interconnectLocations/{interconnectLocation}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'interconnectLocation' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/global/interconnectLocations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->interconnects = new Google_Service_Compute_Resource_Interconnects( - $this, - $this->serviceName, - 'interconnects', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{project}/global/interconnects/{interconnect}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'interconnect' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/global/interconnects/{interconnect}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'interconnect' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getDiagnostics' => array( - 'path' => '{project}/global/interconnects/{interconnect}/getDiagnostics', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'interconnect' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/global/interconnects', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/global/interconnects', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => '{project}/global/interconnects/{interconnect}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'interconnect' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->licenseCodes = new Google_Service_Compute_Resource_LicenseCodes( - $this, - $this->serviceName, - 'licenseCodes', - array( - 'methods' => array( - 'get' => array( - 'path' => '{project}/global/licenseCodes/{licenseCode}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'licenseCode' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => '{project}/global/licenseCodes/{resource}/testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->licenses = new Google_Service_Compute_Resource_Licenses( - $this, - $this->serviceName, - 'licenses', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{project}/global/licenses/{license}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'license' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/global/licenses/{license}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'license' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getIamPolicy' => array( - 'path' => '{project}/global/licenses/{resource}/getIamPolicy', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/global/licenses', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/global/licenses', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setIamPolicy' => array( - 'path' => '{project}/global/licenses/{resource}/setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => '{project}/global/licenses/{resource}/testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->machineTypes = new Google_Service_Compute_Resource_MachineTypes( - $this, - $this->serviceName, - 'machineTypes', - array( - 'methods' => array( - 'aggregatedList' => array( - 'path' => '{project}/aggregated/machineTypes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/zones/{zone}/machineTypes/{machineType}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'machineType' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/zones/{zone}/machineTypes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->networkEndpointGroups = new Google_Service_Compute_Resource_NetworkEndpointGroups( - $this, - $this->serviceName, - 'networkEndpointGroups', - array( - 'methods' => array( - 'aggregatedList' => array( - 'path' => '{project}/aggregated/networkEndpointGroups', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'attachNetworkEndpoints' => array( - 'path' => '{project}/zones/{zone}/networkEndpointGroups/{networkEndpointGroup}/attachNetworkEndpoints', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'networkEndpointGroup' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => '{project}/zones/{zone}/networkEndpointGroups/{networkEndpointGroup}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'networkEndpointGroup' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'detachNetworkEndpoints' => array( - 'path' => '{project}/zones/{zone}/networkEndpointGroups/{networkEndpointGroup}/detachNetworkEndpoints', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'networkEndpointGroup' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/zones/{zone}/networkEndpointGroups/{networkEndpointGroup}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'networkEndpointGroup' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/zones/{zone}/networkEndpointGroups', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/zones/{zone}/networkEndpointGroups', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'listNetworkEndpoints' => array( - 'path' => '{project}/zones/{zone}/networkEndpointGroups/{networkEndpointGroup}/listNetworkEndpoints', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'networkEndpointGroup' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'testIamPermissions' => array( - 'path' => '{project}/zones/{zone}/networkEndpointGroups/{resource}/testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->networks = new Google_Service_Compute_Resource_Networks( - $this, - $this->serviceName, - 'networks', - array( - 'methods' => array( - 'addPeering' => array( - 'path' => '{project}/global/networks/{network}/addPeering', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'network' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => '{project}/global/networks/{network}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'network' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/global/networks/{network}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'network' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/global/networks', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/global/networks', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'listPeeringRoutes' => array( - 'path' => '{project}/global/networks/{network}/listPeeringRoutes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'network' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'direction' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'peeringName' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'region' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => '{project}/global/networks/{network}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'network' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'removePeering' => array( - 'path' => '{project}/global/networks/{network}/removePeering', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'network' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'switchToCustomMode' => array( - 'path' => '{project}/global/networks/{network}/switchToCustomMode', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'network' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'updatePeering' => array( - 'path' => '{project}/global/networks/{network}/updatePeering', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'network' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->nodeGroups = new Google_Service_Compute_Resource_NodeGroups( - $this, - $this->serviceName, - 'nodeGroups', - array( - 'methods' => array( - 'addNodes' => array( - 'path' => '{project}/zones/{zone}/nodeGroups/{nodeGroup}/addNodes', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'nodeGroup' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'aggregatedList' => array( - 'path' => '{project}/aggregated/nodeGroups', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => '{project}/zones/{zone}/nodeGroups/{nodeGroup}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'nodeGroup' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'deleteNodes' => array( - 'path' => '{project}/zones/{zone}/nodeGroups/{nodeGroup}/deleteNodes', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'nodeGroup' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/zones/{zone}/nodeGroups/{nodeGroup}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'nodeGroup' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getIamPolicy' => array( - 'path' => '{project}/zones/{zone}/nodeGroups/{resource}/getIamPolicy', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/zones/{zone}/nodeGroups', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'initialNodeCount' => array( - 'location' => 'query', - 'type' => 'integer', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/zones/{zone}/nodeGroups', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'listNodes' => array( - 'path' => '{project}/zones/{zone}/nodeGroups/{nodeGroup}/listNodes', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'nodeGroup' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setIamPolicy' => array( - 'path' => '{project}/zones/{zone}/nodeGroups/{resource}/setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setNodeTemplate' => array( - 'path' => '{project}/zones/{zone}/nodeGroups/{nodeGroup}/setNodeTemplate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'nodeGroup' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'testIamPermissions' => array( - 'path' => '{project}/zones/{zone}/nodeGroups/{resource}/testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->nodeTemplates = new Google_Service_Compute_Resource_NodeTemplates( - $this, - $this->serviceName, - 'nodeTemplates', - array( - 'methods' => array( - 'aggregatedList' => array( - 'path' => '{project}/aggregated/nodeTemplates', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => '{project}/regions/{region}/nodeTemplates/{nodeTemplate}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'nodeTemplate' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/regions/{region}/nodeTemplates/{nodeTemplate}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'nodeTemplate' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getIamPolicy' => array( - 'path' => '{project}/regions/{region}/nodeTemplates/{resource}/getIamPolicy', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/regions/{region}/nodeTemplates', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/regions/{region}/nodeTemplates', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setIamPolicy' => array( - 'path' => '{project}/regions/{region}/nodeTemplates/{resource}/setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => '{project}/regions/{region}/nodeTemplates/{resource}/testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->nodeTypes = new Google_Service_Compute_Resource_NodeTypes( - $this, - $this->serviceName, - 'nodeTypes', - array( - 'methods' => array( - 'aggregatedList' => array( - 'path' => '{project}/aggregated/nodeTypes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/zones/{zone}/nodeTypes/{nodeType}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'nodeType' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/zones/{zone}/nodeTypes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->packetMirrorings = new Google_Service_Compute_Resource_PacketMirrorings( - $this, - $this->serviceName, - 'packetMirrorings', - array( - 'methods' => array( - 'aggregatedList' => array( - 'path' => '{project}/aggregated/packetMirrorings', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => '{project}/regions/{region}/packetMirrorings/{packetMirroring}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'packetMirroring' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/regions/{region}/packetMirrorings/{packetMirroring}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'packetMirroring' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/regions/{region}/packetMirrorings', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/regions/{region}/packetMirrorings', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => '{project}/regions/{region}/packetMirrorings/{packetMirroring}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'packetMirroring' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'testIamPermissions' => array( - 'path' => '{project}/regions/{region}/packetMirrorings/{resource}/testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects = new Google_Service_Compute_Resource_Projects( - $this, - $this->serviceName, - 'projects', - array( - 'methods' => array( - 'disableXpnHost' => array( - 'path' => '{project}/disableXpnHost', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'disableXpnResource' => array( - 'path' => '{project}/disableXpnResource', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'enableXpnHost' => array( - 'path' => '{project}/enableXpnHost', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'enableXpnResource' => array( - 'path' => '{project}/enableXpnResource', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getXpnHost' => array( - 'path' => '{project}/getXpnHost', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getXpnResources' => array( - 'path' => '{project}/getXpnResources', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'order_by' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'listXpnHosts' => array( - 'path' => '{project}/listXpnHosts', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'order_by' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'moveDisk' => array( - 'path' => '{project}/moveDisk', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'moveInstance' => array( - 'path' => '{project}/moveInstance', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setCommonInstanceMetadata' => array( - 'path' => '{project}/setCommonInstanceMetadata', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setDefaultNetworkTier' => array( - 'path' => '{project}/setDefaultNetworkTier', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setUsageExportBucket' => array( - 'path' => '{project}/setUsageExportBucket', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->regionAutoscalers = new Google_Service_Compute_Resource_RegionAutoscalers( - $this, - $this->serviceName, - 'regionAutoscalers', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{project}/regions/{region}/autoscalers/{autoscaler}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'autoscaler' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/regions/{region}/autoscalers/{autoscaler}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'autoscaler' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/regions/{region}/autoscalers', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/regions/{region}/autoscalers', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => '{project}/regions/{region}/autoscalers', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'autoscaler' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => '{project}/regions/{region}/autoscalers', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'autoscaler' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->regionBackendServices = new Google_Service_Compute_Resource_RegionBackendServices( - $this, - $this->serviceName, - 'regionBackendServices', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{project}/regions/{region}/backendServices/{backendService}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'backendService' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/regions/{region}/backendServices/{backendService}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'backendService' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getHealth' => array( - 'path' => '{project}/regions/{region}/backendServices/{backendService}/getHealth', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'backendService' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/regions/{region}/backendServices', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/regions/{region}/backendServices', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => '{project}/regions/{region}/backendServices/{backendService}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'backendService' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => '{project}/regions/{region}/backendServices/{backendService}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'backendService' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->regionCommitments = new Google_Service_Compute_Resource_RegionCommitments( - $this, - $this->serviceName, - 'regionCommitments', - array( - 'methods' => array( - 'aggregatedList' => array( - 'path' => '{project}/aggregated/commitments', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/regions/{region}/commitments/{commitment}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'commitment' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/regions/{region}/commitments', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/regions/{region}/commitments', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->regionDiskTypes = new Google_Service_Compute_Resource_RegionDiskTypes( - $this, - $this->serviceName, - 'regionDiskTypes', - array( - 'methods' => array( - 'get' => array( - 'path' => '{project}/regions/{region}/diskTypes/{diskType}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'diskType' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/regions/{region}/diskTypes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->regionDisks = new Google_Service_Compute_Resource_RegionDisks( - $this, - $this->serviceName, - 'regionDisks', - array( - 'methods' => array( - 'addResourcePolicies' => array( - 'path' => '{project}/regions/{region}/disks/{disk}/addResourcePolicies', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'disk' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'createSnapshot' => array( - 'path' => '{project}/regions/{region}/disks/{disk}/createSnapshot', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'disk' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => '{project}/regions/{region}/disks/{disk}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'disk' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/regions/{region}/disks/{disk}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'disk' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/regions/{region}/disks', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sourceImage' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/regions/{region}/disks', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'removeResourcePolicies' => array( - 'path' => '{project}/regions/{region}/disks/{disk}/removeResourcePolicies', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'disk' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'resize' => array( - 'path' => '{project}/regions/{region}/disks/{disk}/resize', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'disk' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setLabels' => array( - 'path' => '{project}/regions/{region}/disks/{resource}/setLabels', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'testIamPermissions' => array( - 'path' => '{project}/regions/{region}/disks/{resource}/testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->regionHealthChecks = new Google_Service_Compute_Resource_RegionHealthChecks( - $this, - $this->serviceName, - 'regionHealthChecks', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{project}/regions/{region}/healthChecks/{healthCheck}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'healthCheck' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/regions/{region}/healthChecks/{healthCheck}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'healthCheck' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/regions/{region}/healthChecks', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/regions/{region}/healthChecks', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => '{project}/regions/{region}/healthChecks/{healthCheck}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'healthCheck' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => '{project}/regions/{region}/healthChecks/{healthCheck}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'healthCheck' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->regionInstanceGroupManagers = new Google_Service_Compute_Resource_RegionInstanceGroupManagers( - $this, - $this->serviceName, - 'regionInstanceGroupManagers', - array( - 'methods' => array( - 'abandonInstances' => array( - 'path' => '{project}/regions/{region}/instanceGroupManagers/{instanceGroupManager}/abandonInstances', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instanceGroupManager' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'applyUpdatesToInstances' => array( - 'path' => '{project}/regions/{region}/instanceGroupManagers/{instanceGroupManager}/applyUpdatesToInstances', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instanceGroupManager' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'createInstances' => array( - 'path' => '{project}/regions/{region}/instanceGroupManagers/{instanceGroupManager}/createInstances', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instanceGroupManager' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => '{project}/regions/{region}/instanceGroupManagers/{instanceGroupManager}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instanceGroupManager' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'deleteInstances' => array( - 'path' => '{project}/regions/{region}/instanceGroupManagers/{instanceGroupManager}/deleteInstances', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instanceGroupManager' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/regions/{region}/instanceGroupManagers/{instanceGroupManager}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instanceGroupManager' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/regions/{region}/instanceGroupManagers', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/regions/{region}/instanceGroupManagers', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'listManagedInstances' => array( - 'path' => '{project}/regions/{region}/instanceGroupManagers/{instanceGroupManager}/listManagedInstances', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instanceGroupManager' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'order_by' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => '{project}/regions/{region}/instanceGroupManagers/{instanceGroupManager}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instanceGroupManager' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'recreateInstances' => array( - 'path' => '{project}/regions/{region}/instanceGroupManagers/{instanceGroupManager}/recreateInstances', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instanceGroupManager' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'resize' => array( - 'path' => '{project}/regions/{region}/instanceGroupManagers/{instanceGroupManager}/resize', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instanceGroupManager' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'size' => array( - 'location' => 'query', - 'type' => 'integer', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setInstanceTemplate' => array( - 'path' => '{project}/regions/{region}/instanceGroupManagers/{instanceGroupManager}/setInstanceTemplate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instanceGroupManager' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setTargetPools' => array( - 'path' => '{project}/regions/{region}/instanceGroupManagers/{instanceGroupManager}/setTargetPools', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instanceGroupManager' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->regionInstanceGroups = new Google_Service_Compute_Resource_RegionInstanceGroups( - $this, - $this->serviceName, - 'regionInstanceGroups', - array( - 'methods' => array( - 'get' => array( - 'path' => '{project}/regions/{region}/instanceGroups/{instanceGroup}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instanceGroup' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/regions/{region}/instanceGroups', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'listInstances' => array( - 'path' => '{project}/regions/{region}/instanceGroups/{instanceGroup}/listInstances', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instanceGroup' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setNamedPorts' => array( - 'path' => '{project}/regions/{region}/instanceGroups/{instanceGroup}/setNamedPorts', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instanceGroup' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->regionOperations = new Google_Service_Compute_Resource_RegionOperations( - $this, - $this->serviceName, - 'regionOperations', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{project}/regions/{region}/operations/{operation}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'operation' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{project}/regions/{region}/operations/{operation}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'operation' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/regions/{region}/operations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'wait' => array( - 'path' => '{project}/regions/{region}/operations/{operation}/wait', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'operation' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->regionSslCertificates = new Google_Service_Compute_Resource_RegionSslCertificates( - $this, - $this->serviceName, - 'regionSslCertificates', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{project}/regions/{region}/sslCertificates/{sslCertificate}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sslCertificate' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/regions/{region}/sslCertificates/{sslCertificate}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sslCertificate' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/regions/{region}/sslCertificates', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/regions/{region}/sslCertificates', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->regionTargetHttpProxies = new Google_Service_Compute_Resource_RegionTargetHttpProxies( - $this, - $this->serviceName, - 'regionTargetHttpProxies', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{project}/regions/{region}/targetHttpProxies/{targetHttpProxy}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetHttpProxy' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/regions/{region}/targetHttpProxies/{targetHttpProxy}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetHttpProxy' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/regions/{region}/targetHttpProxies', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/regions/{region}/targetHttpProxies', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setUrlMap' => array( - 'path' => '{project}/regions/{region}/targetHttpProxies/{targetHttpProxy}/setUrlMap', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetHttpProxy' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->regionTargetHttpsProxies = new Google_Service_Compute_Resource_RegionTargetHttpsProxies( - $this, - $this->serviceName, - 'regionTargetHttpsProxies', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{project}/regions/{region}/targetHttpsProxies/{targetHttpsProxy}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetHttpsProxy' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/regions/{region}/targetHttpsProxies/{targetHttpsProxy}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetHttpsProxy' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/regions/{region}/targetHttpsProxies', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/regions/{region}/targetHttpsProxies', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setSslCertificates' => array( - 'path' => '{project}/regions/{region}/targetHttpsProxies/{targetHttpsProxy}/setSslCertificates', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetHttpsProxy' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setUrlMap' => array( - 'path' => '{project}/regions/{region}/targetHttpsProxies/{targetHttpsProxy}/setUrlMap', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetHttpsProxy' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->regionUrlMaps = new Google_Service_Compute_Resource_RegionUrlMaps( - $this, - $this->serviceName, - 'regionUrlMaps', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{project}/regions/{region}/urlMaps/{urlMap}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'urlMap' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/regions/{region}/urlMaps/{urlMap}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'urlMap' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/regions/{region}/urlMaps', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/regions/{region}/urlMaps', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => '{project}/regions/{region}/urlMaps/{urlMap}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'urlMap' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => '{project}/regions/{region}/urlMaps/{urlMap}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'urlMap' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'validate' => array( - 'path' => '{project}/regions/{region}/urlMaps/{urlMap}/validate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'urlMap' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->regions = new Google_Service_Compute_Resource_Regions( - $this, - $this->serviceName, - 'regions', - array( - 'methods' => array( - 'get' => array( - 'path' => '{project}/regions/{region}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/regions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->reservations = new Google_Service_Compute_Resource_Reservations( - $this, - $this->serviceName, - 'reservations', - array( - 'methods' => array( - 'aggregatedList' => array( - 'path' => '{project}/aggregated/reservations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => '{project}/zones/{zone}/reservations/{reservation}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'reservation' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/zones/{zone}/reservations/{reservation}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'reservation' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getIamPolicy' => array( - 'path' => '{project}/zones/{zone}/reservations/{resource}/getIamPolicy', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/zones/{zone}/reservations', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/zones/{zone}/reservations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'resize' => array( - 'path' => '{project}/zones/{zone}/reservations/{reservation}/resize', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'reservation' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setIamPolicy' => array( - 'path' => '{project}/zones/{zone}/reservations/{resource}/setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => '{project}/zones/{zone}/reservations/{resource}/testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->resourcePolicies = new Google_Service_Compute_Resource_ResourcePolicies( - $this, - $this->serviceName, - 'resourcePolicies', - array( - 'methods' => array( - 'aggregatedList' => array( - 'path' => '{project}/aggregated/resourcePolicies', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => '{project}/regions/{region}/resourcePolicies/{resourcePolicy}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resourcePolicy' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/regions/{region}/resourcePolicies/{resourcePolicy}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resourcePolicy' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getIamPolicy' => array( - 'path' => '{project}/regions/{region}/resourcePolicies/{resource}/getIamPolicy', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/regions/{region}/resourcePolicies', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/regions/{region}/resourcePolicies', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setIamPolicy' => array( - 'path' => '{project}/regions/{region}/resourcePolicies/{resource}/setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => '{project}/regions/{region}/resourcePolicies/{resource}/testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->routers = new Google_Service_Compute_Resource_Routers( - $this, - $this->serviceName, - 'routers', - array( - 'methods' => array( - 'aggregatedList' => array( - 'path' => '{project}/aggregated/routers', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => '{project}/regions/{region}/routers/{router}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'router' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/regions/{region}/routers/{router}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'router' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getNatMappingInfo' => array( - 'path' => '{project}/regions/{region}/routers/{router}/getNatMappingInfo', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'router' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'getRouterStatus' => array( - 'path' => '{project}/regions/{region}/routers/{router}/getRouterStatus', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'router' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/regions/{region}/routers', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/regions/{region}/routers', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => '{project}/regions/{region}/routers/{router}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'router' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'preview' => array( - 'path' => '{project}/regions/{region}/routers/{router}/preview', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'router' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => '{project}/regions/{region}/routers/{router}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'router' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->routes = new Google_Service_Compute_Resource_Routes( - $this, - $this->serviceName, - 'routes', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{project}/global/routes/{route}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'route' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/global/routes/{route}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'route' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/global/routes', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/global/routes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->securityPolicies = new Google_Service_Compute_Resource_SecurityPolicies( - $this, - $this->serviceName, - 'securityPolicies', - array( - 'methods' => array( - 'addRule' => array( - 'path' => '{project}/global/securityPolicies/{securityPolicy}/addRule', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'securityPolicy' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => '{project}/global/securityPolicies/{securityPolicy}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'securityPolicy' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/global/securityPolicies/{securityPolicy}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'securityPolicy' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getRule' => array( - 'path' => '{project}/global/securityPolicies/{securityPolicy}/getRule', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'securityPolicy' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'priority' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'insert' => array( - 'path' => '{project}/global/securityPolicies', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/global/securityPolicies', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => '{project}/global/securityPolicies/{securityPolicy}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'securityPolicy' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patchRule' => array( - 'path' => '{project}/global/securityPolicies/{securityPolicy}/patchRule', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'securityPolicy' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'priority' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'removeRule' => array( - 'path' => '{project}/global/securityPolicies/{securityPolicy}/removeRule', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'securityPolicy' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'priority' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->snapshots = new Google_Service_Compute_Resource_Snapshots( - $this, - $this->serviceName, - 'snapshots', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{project}/global/snapshots/{snapshot}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'snapshot' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/global/snapshots/{snapshot}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'snapshot' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getIamPolicy' => array( - 'path' => '{project}/global/snapshots/{resource}/getIamPolicy', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/global/snapshots', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setIamPolicy' => array( - 'path' => '{project}/global/snapshots/{resource}/setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setLabels' => array( - 'path' => '{project}/global/snapshots/{resource}/setLabels', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => '{project}/global/snapshots/{resource}/testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->sslCertificates = new Google_Service_Compute_Resource_SslCertificates( - $this, - $this->serviceName, - 'sslCertificates', - array( - 'methods' => array( - 'aggregatedList' => array( - 'path' => '{project}/aggregated/sslCertificates', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => '{project}/global/sslCertificates/{sslCertificate}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sslCertificate' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/global/sslCertificates/{sslCertificate}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sslCertificate' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/global/sslCertificates', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/global/sslCertificates', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->sslPolicies = new Google_Service_Compute_Resource_SslPolicies( - $this, - $this->serviceName, - 'sslPolicies', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{project}/global/sslPolicies/{sslPolicy}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sslPolicy' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/global/sslPolicies/{sslPolicy}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sslPolicy' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/global/sslPolicies', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/global/sslPolicies', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'listAvailableFeatures' => array( - 'path' => '{project}/global/sslPolicies/listAvailableFeatures', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => '{project}/global/sslPolicies/{sslPolicy}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sslPolicy' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->subnetworks = new Google_Service_Compute_Resource_Subnetworks( - $this, - $this->serviceName, - 'subnetworks', - array( - 'methods' => array( - 'aggregatedList' => array( - 'path' => '{project}/aggregated/subnetworks', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => '{project}/regions/{region}/subnetworks/{subnetwork}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'subnetwork' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'expandIpCidrRange' => array( - 'path' => '{project}/regions/{region}/subnetworks/{subnetwork}/expandIpCidrRange', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'subnetwork' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/regions/{region}/subnetworks/{subnetwork}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'subnetwork' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getIamPolicy' => array( - 'path' => '{project}/regions/{region}/subnetworks/{resource}/getIamPolicy', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/regions/{region}/subnetworks', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/regions/{region}/subnetworks', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'listUsable' => array( - 'path' => '{project}/aggregated/subnetworks/listUsable', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => '{project}/regions/{region}/subnetworks/{subnetwork}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'subnetwork' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'drainTimeoutSeconds' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setIamPolicy' => array( - 'path' => '{project}/regions/{region}/subnetworks/{resource}/setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setPrivateIpGoogleAccess' => array( - 'path' => '{project}/regions/{region}/subnetworks/{subnetwork}/setPrivateIpGoogleAccess', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'subnetwork' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'testIamPermissions' => array( - 'path' => '{project}/regions/{region}/subnetworks/{resource}/testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->targetHttpProxies = new Google_Service_Compute_Resource_TargetHttpProxies( - $this, - $this->serviceName, - 'targetHttpProxies', - array( - 'methods' => array( - 'aggregatedList' => array( - 'path' => '{project}/aggregated/targetHttpProxies', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => '{project}/global/targetHttpProxies/{targetHttpProxy}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetHttpProxy' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/global/targetHttpProxies/{targetHttpProxy}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetHttpProxy' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/global/targetHttpProxies', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/global/targetHttpProxies', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setUrlMap' => array( - 'path' => '{project}/targetHttpProxies/{targetHttpProxy}/setUrlMap', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetHttpProxy' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->targetHttpsProxies = new Google_Service_Compute_Resource_TargetHttpsProxies( - $this, - $this->serviceName, - 'targetHttpsProxies', - array( - 'methods' => array( - 'aggregatedList' => array( - 'path' => '{project}/aggregated/targetHttpsProxies', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => '{project}/global/targetHttpsProxies/{targetHttpsProxy}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetHttpsProxy' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/global/targetHttpsProxies/{targetHttpsProxy}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetHttpsProxy' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/global/targetHttpsProxies', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/global/targetHttpsProxies', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setQuicOverride' => array( - 'path' => '{project}/global/targetHttpsProxies/{targetHttpsProxy}/setQuicOverride', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetHttpsProxy' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setSslCertificates' => array( - 'path' => '{project}/targetHttpsProxies/{targetHttpsProxy}/setSslCertificates', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetHttpsProxy' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setSslPolicy' => array( - 'path' => '{project}/global/targetHttpsProxies/{targetHttpsProxy}/setSslPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetHttpsProxy' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setUrlMap' => array( - 'path' => '{project}/targetHttpsProxies/{targetHttpsProxy}/setUrlMap', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetHttpsProxy' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->targetInstances = new Google_Service_Compute_Resource_TargetInstances( - $this, - $this->serviceName, - 'targetInstances', - array( - 'methods' => array( - 'aggregatedList' => array( - 'path' => '{project}/aggregated/targetInstances', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => '{project}/zones/{zone}/targetInstances/{targetInstance}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetInstance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/zones/{zone}/targetInstances/{targetInstance}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetInstance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/zones/{zone}/targetInstances', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/zones/{zone}/targetInstances', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->targetPools = new Google_Service_Compute_Resource_TargetPools( - $this, - $this->serviceName, - 'targetPools', - array( - 'methods' => array( - 'addHealthCheck' => array( - 'path' => '{project}/regions/{region}/targetPools/{targetPool}/addHealthCheck', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetPool' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'addInstance' => array( - 'path' => '{project}/regions/{region}/targetPools/{targetPool}/addInstance', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetPool' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'aggregatedList' => array( - 'path' => '{project}/aggregated/targetPools', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => '{project}/regions/{region}/targetPools/{targetPool}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetPool' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/regions/{region}/targetPools/{targetPool}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetPool' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getHealth' => array( - 'path' => '{project}/regions/{region}/targetPools/{targetPool}/getHealth', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetPool' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/regions/{region}/targetPools', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/regions/{region}/targetPools', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'removeHealthCheck' => array( - 'path' => '{project}/regions/{region}/targetPools/{targetPool}/removeHealthCheck', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetPool' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'removeInstance' => array( - 'path' => '{project}/regions/{region}/targetPools/{targetPool}/removeInstance', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetPool' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setBackup' => array( - 'path' => '{project}/regions/{region}/targetPools/{targetPool}/setBackup', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetPool' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'failoverRatio' => array( - 'location' => 'query', - 'type' => 'number', - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->targetSslProxies = new Google_Service_Compute_Resource_TargetSslProxies( - $this, - $this->serviceName, - 'targetSslProxies', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{project}/global/targetSslProxies/{targetSslProxy}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetSslProxy' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/global/targetSslProxies/{targetSslProxy}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetSslProxy' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/global/targetSslProxies', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/global/targetSslProxies', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setBackendService' => array( - 'path' => '{project}/global/targetSslProxies/{targetSslProxy}/setBackendService', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetSslProxy' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setProxyHeader' => array( - 'path' => '{project}/global/targetSslProxies/{targetSslProxy}/setProxyHeader', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetSslProxy' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setSslCertificates' => array( - 'path' => '{project}/global/targetSslProxies/{targetSslProxy}/setSslCertificates', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetSslProxy' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setSslPolicy' => array( - 'path' => '{project}/global/targetSslProxies/{targetSslProxy}/setSslPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetSslProxy' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->targetTcpProxies = new Google_Service_Compute_Resource_TargetTcpProxies( - $this, - $this->serviceName, - 'targetTcpProxies', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{project}/global/targetTcpProxies/{targetTcpProxy}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetTcpProxy' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/global/targetTcpProxies/{targetTcpProxy}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetTcpProxy' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/global/targetTcpProxies', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/global/targetTcpProxies', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setBackendService' => array( - 'path' => '{project}/global/targetTcpProxies/{targetTcpProxy}/setBackendService', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetTcpProxy' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setProxyHeader' => array( - 'path' => '{project}/global/targetTcpProxies/{targetTcpProxy}/setProxyHeader', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetTcpProxy' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->targetVpnGateways = new Google_Service_Compute_Resource_TargetVpnGateways( - $this, - $this->serviceName, - 'targetVpnGateways', - array( - 'methods' => array( - 'aggregatedList' => array( - 'path' => '{project}/aggregated/targetVpnGateways', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => '{project}/regions/{region}/targetVpnGateways/{targetVpnGateway}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetVpnGateway' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/regions/{region}/targetVpnGateways/{targetVpnGateway}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetVpnGateway' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/regions/{region}/targetVpnGateways', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/regions/{region}/targetVpnGateways', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->urlMaps = new Google_Service_Compute_Resource_UrlMaps( - $this, - $this->serviceName, - 'urlMaps', - array( - 'methods' => array( - 'aggregatedList' => array( - 'path' => '{project}/aggregated/urlMaps', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => '{project}/global/urlMaps/{urlMap}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'urlMap' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/global/urlMaps/{urlMap}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'urlMap' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/global/urlMaps', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'invalidateCache' => array( - 'path' => '{project}/global/urlMaps/{urlMap}/invalidateCache', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'urlMap' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/global/urlMaps', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => '{project}/global/urlMaps/{urlMap}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'urlMap' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => '{project}/global/urlMaps/{urlMap}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'urlMap' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'validate' => array( - 'path' => '{project}/global/urlMaps/{urlMap}/validate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'urlMap' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->vpnGateways = new Google_Service_Compute_Resource_VpnGateways( - $this, - $this->serviceName, - 'vpnGateways', - array( - 'methods' => array( - 'aggregatedList' => array( - 'path' => '{project}/aggregated/vpnGateways', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => '{project}/regions/{region}/vpnGateways/{vpnGateway}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'vpnGateway' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/regions/{region}/vpnGateways/{vpnGateway}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'vpnGateway' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getStatus' => array( - 'path' => '{project}/regions/{region}/vpnGateways/{vpnGateway}/getStatus', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'vpnGateway' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/regions/{region}/vpnGateways', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/regions/{region}/vpnGateways', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setLabels' => array( - 'path' => '{project}/regions/{region}/vpnGateways/{resource}/setLabels', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'testIamPermissions' => array( - 'path' => '{project}/regions/{region}/vpnGateways/{resource}/testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->vpnTunnels = new Google_Service_Compute_Resource_VpnTunnels( - $this, - $this->serviceName, - 'vpnTunnels', - array( - 'methods' => array( - 'aggregatedList' => array( - 'path' => '{project}/aggregated/vpnTunnels', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => '{project}/regions/{region}/vpnTunnels/{vpnTunnel}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'vpnTunnel' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/regions/{region}/vpnTunnels/{vpnTunnel}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'vpnTunnel' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/regions/{region}/vpnTunnels', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/regions/{region}/vpnTunnels', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->zoneOperations = new Google_Service_Compute_Resource_ZoneOperations( - $this, - $this->serviceName, - 'zoneOperations', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{project}/zones/{zone}/operations/{operation}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'operation' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{project}/zones/{zone}/operations/{operation}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'operation' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/zones/{zone}/operations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'wait' => array( - 'path' => '{project}/zones/{zone}/operations/{operation}/wait', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'operation' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->zones = new Google_Service_Compute_Resource_Zones( - $this, - $this->serviceName, - 'zones', - array( - 'methods' => array( - 'get' => array( - 'path' => '{project}/zones/{zone}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/zones', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AcceleratorConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AcceleratorConfig.php deleted file mode 100644 index d584e10f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AcceleratorConfig.php +++ /dev/null @@ -1,39 +0,0 @@ -acceleratorCount = $acceleratorCount; - } - public function getAcceleratorCount() - { - return $this->acceleratorCount; - } - public function setAcceleratorType($acceleratorType) - { - $this->acceleratorType = $acceleratorType; - } - public function getAcceleratorType() - { - return $this->acceleratorType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AcceleratorType.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AcceleratorType.php deleted file mode 100644 index 47594629..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AcceleratorType.php +++ /dev/null @@ -1,109 +0,0 @@ -creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - /** - * @param Google_Service_Compute_DeprecationStatus - */ - public function setDeprecated(Google_Service_Compute_DeprecationStatus $deprecated) - { - $this->deprecated = $deprecated; - } - /** - * @return Google_Service_Compute_DeprecationStatus - */ - public function getDeprecated() - { - return $this->deprecated; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - 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 setMaximumCardsPerInstance($maximumCardsPerInstance) - { - $this->maximumCardsPerInstance = $maximumCardsPerInstance; - } - public function getMaximumCardsPerInstance() - { - return $this->maximumCardsPerInstance; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setZone($zone) - { - $this->zone = $zone; - } - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AcceleratorTypeAggregatedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AcceleratorTypeAggregatedList.php deleted file mode 100644 index 1bdee89e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AcceleratorTypeAggregatedList.php +++ /dev/null @@ -1,89 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_AcceleratorTypesScopedList - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_AcceleratorTypesScopedList - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_AcceleratorTypeAggregatedListWarning - */ - public function setWarning(Google_Service_Compute_AcceleratorTypeAggregatedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_AcceleratorTypeAggregatedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AcceleratorTypeAggregatedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AcceleratorTypeAggregatedListWarning.php deleted file mode 100644 index 59745aae..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AcceleratorTypeAggregatedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_AcceleratorTypeAggregatedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_AcceleratorTypeAggregatedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AcceleratorTypeAggregatedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AcceleratorTypeAggregatedListWarningData.php deleted file mode 100644 index edc6c958..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AcceleratorTypeAggregatedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AcceleratorTypeList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AcceleratorTypeList.php deleted file mode 100644 index 82cc9d5f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AcceleratorTypeList.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_AcceleratorType - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_AcceleratorType - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_AcceleratorTypeListWarning - */ - public function setWarning(Google_Service_Compute_AcceleratorTypeListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_AcceleratorTypeListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AcceleratorTypeListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AcceleratorTypeListWarning.php deleted file mode 100644 index b855274b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AcceleratorTypeListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_AcceleratorTypeListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_AcceleratorTypeListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AcceleratorTypeListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AcceleratorTypeListWarningData.php deleted file mode 100644 index 94014622..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AcceleratorTypeListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AcceleratorTypesScopedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AcceleratorTypesScopedList.php deleted file mode 100644 index ab84d0d5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AcceleratorTypesScopedList.php +++ /dev/null @@ -1,54 +0,0 @@ -acceleratorTypes = $acceleratorTypes; - } - /** - * @return Google_Service_Compute_AcceleratorType - */ - public function getAcceleratorTypes() - { - return $this->acceleratorTypes; - } - /** - * @param Google_Service_Compute_AcceleratorTypesScopedListWarning - */ - public function setWarning(Google_Service_Compute_AcceleratorTypesScopedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_AcceleratorTypesScopedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AcceleratorTypesScopedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AcceleratorTypesScopedListWarning.php deleted file mode 100644 index c487d2e2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AcceleratorTypesScopedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_AcceleratorTypesScopedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_AcceleratorTypesScopedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AcceleratorTypesScopedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AcceleratorTypesScopedListWarningData.php deleted file mode 100644 index 5b127a10..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AcceleratorTypesScopedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AccessConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AccessConfig.php deleted file mode 100644 index 4969fc67..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AccessConfig.php +++ /dev/null @@ -1,84 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNatIP($natIP) - { - $this->natIP = $natIP; - } - public function getNatIP() - { - return $this->natIP; - } - public function setNetworkTier($networkTier) - { - $this->networkTier = $networkTier; - } - public function getNetworkTier() - { - return $this->networkTier; - } - public function setPublicPtrDomainName($publicPtrDomainName) - { - $this->publicPtrDomainName = $publicPtrDomainName; - } - public function getPublicPtrDomainName() - { - return $this->publicPtrDomainName; - } - public function setSetPublicPtr($setPublicPtr) - { - $this->setPublicPtr = $setPublicPtr; - } - public function getSetPublicPtr() - { - return $this->setPublicPtr; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Address.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Address.php deleted file mode 100644 index 9442f4fe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Address.php +++ /dev/null @@ -1,175 +0,0 @@ -address = $address; - } - public function getAddress() - { - return $this->address; - } - public function setAddressType($addressType) - { - $this->addressType = $addressType; - } - public function getAddressType() - { - return $this->addressType; - } - public function setCreationTimestamp($creationTimestamp) - { - $this->creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setIpVersion($ipVersion) - { - $this->ipVersion = $ipVersion; - } - public function getIpVersion() - { - return $this->ipVersion; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNetwork($network) - { - $this->network = $network; - } - public function getNetwork() - { - return $this->network; - } - public function setNetworkTier($networkTier) - { - $this->networkTier = $networkTier; - } - public function getNetworkTier() - { - return $this->networkTier; - } - public function setPrefixLength($prefixLength) - { - $this->prefixLength = $prefixLength; - } - public function getPrefixLength() - { - return $this->prefixLength; - } - public function setPurpose($purpose) - { - $this->purpose = $purpose; - } - public function getPurpose() - { - return $this->purpose; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setSubnetwork($subnetwork) - { - $this->subnetwork = $subnetwork; - } - public function getSubnetwork() - { - return $this->subnetwork; - } - public function setUsers($users) - { - $this->users = $users; - } - public function getUsers() - { - return $this->users; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AddressAggregatedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AddressAggregatedList.php deleted file mode 100644 index 48f465dd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AddressAggregatedList.php +++ /dev/null @@ -1,89 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_AddressesScopedList - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_AddressesScopedList - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_AddressAggregatedListWarning - */ - public function setWarning(Google_Service_Compute_AddressAggregatedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_AddressAggregatedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AddressAggregatedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AddressAggregatedListWarning.php deleted file mode 100644 index ea3e9c5b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AddressAggregatedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_AddressAggregatedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_AddressAggregatedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AddressAggregatedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AddressAggregatedListWarningData.php deleted file mode 100644 index 7e4d81b9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AddressAggregatedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AddressList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AddressList.php deleted file mode 100644 index 0fee6e07..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AddressList.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_Address - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_Address - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_AddressListWarning - */ - public function setWarning(Google_Service_Compute_AddressListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_AddressListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AddressListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AddressListWarning.php deleted file mode 100644 index 999ffddb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AddressListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_AddressListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_AddressListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AddressListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AddressListWarningData.php deleted file mode 100644 index 2bc69517..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AddressListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AddressesScopedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AddressesScopedList.php deleted file mode 100644 index 02d8b6fe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AddressesScopedList.php +++ /dev/null @@ -1,54 +0,0 @@ -addresses = $addresses; - } - /** - * @return Google_Service_Compute_Address - */ - public function getAddresses() - { - return $this->addresses; - } - /** - * @param Google_Service_Compute_AddressesScopedListWarning - */ - public function setWarning(Google_Service_Compute_AddressesScopedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_AddressesScopedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AddressesScopedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AddressesScopedListWarning.php deleted file mode 100644 index 48f02235..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AddressesScopedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_AddressesScopedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_AddressesScopedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AddressesScopedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AddressesScopedListWarningData.php deleted file mode 100644 index ea50a45e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AddressesScopedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AliasIpRange.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AliasIpRange.php deleted file mode 100644 index 909e5366..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AliasIpRange.php +++ /dev/null @@ -1,39 +0,0 @@ -ipCidrRange = $ipCidrRange; - } - public function getIpCidrRange() - { - return $this->ipCidrRange; - } - public function setSubnetworkRangeName($subnetworkRangeName) - { - $this->subnetworkRangeName = $subnetworkRangeName; - } - public function getSubnetworkRangeName() - { - return $this->subnetworkRangeName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDisk.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDisk.php deleted file mode 100644 index ab060b54..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDisk.php +++ /dev/null @@ -1,39 +0,0 @@ -diskSizeGb = $diskSizeGb; - } - public function getDiskSizeGb() - { - return $this->diskSizeGb; - } - public function setInterface($interface) - { - $this->interface = $interface; - } - public function getInterface() - { - return $this->interface; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AllocationSpecificSKUAllocationReservedInstanceProperties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AllocationSpecificSKUAllocationReservedInstanceProperties.php deleted file mode 100644 index 3bf80ba4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AllocationSpecificSKUAllocationReservedInstanceProperties.php +++ /dev/null @@ -1,72 +0,0 @@ -guestAccelerators = $guestAccelerators; - } - /** - * @return Google_Service_Compute_AcceleratorConfig - */ - public function getGuestAccelerators() - { - return $this->guestAccelerators; - } - /** - * @param Google_Service_Compute_AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDisk - */ - public function setLocalSsds($localSsds) - { - $this->localSsds = $localSsds; - } - /** - * @return Google_Service_Compute_AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDisk - */ - public function getLocalSsds() - { - return $this->localSsds; - } - public function setMachineType($machineType) - { - $this->machineType = $machineType; - } - public function getMachineType() - { - return $this->machineType; - } - public function setMinCpuPlatform($minCpuPlatform) - { - $this->minCpuPlatform = $minCpuPlatform; - } - public function getMinCpuPlatform() - { - return $this->minCpuPlatform; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AllocationSpecificSKUReservation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AllocationSpecificSKUReservation.php deleted file mode 100644 index 6e517842..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AllocationSpecificSKUReservation.php +++ /dev/null @@ -1,55 +0,0 @@ -count = $count; - } - public function getCount() - { - return $this->count; - } - public function setInUseCount($inUseCount) - { - $this->inUseCount = $inUseCount; - } - public function getInUseCount() - { - return $this->inUseCount; - } - /** - * @param Google_Service_Compute_AllocationSpecificSKUAllocationReservedInstanceProperties - */ - public function setInstanceProperties(Google_Service_Compute_AllocationSpecificSKUAllocationReservedInstanceProperties $instanceProperties) - { - $this->instanceProperties = $instanceProperties; - } - /** - * @return Google_Service_Compute_AllocationSpecificSKUAllocationReservedInstanceProperties - */ - public function getInstanceProperties() - { - return $this->instanceProperties; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AttachedDisk.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AttachedDisk.php deleted file mode 100644 index 038d5cad..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AttachedDisk.php +++ /dev/null @@ -1,169 +0,0 @@ -autoDelete = $autoDelete; - } - public function getAutoDelete() - { - return $this->autoDelete; - } - public function setBoot($boot) - { - $this->boot = $boot; - } - public function getBoot() - { - return $this->boot; - } - public function setDeviceName($deviceName) - { - $this->deviceName = $deviceName; - } - public function getDeviceName() - { - return $this->deviceName; - } - /** - * @param Google_Service_Compute_CustomerEncryptionKey - */ - public function setDiskEncryptionKey(Google_Service_Compute_CustomerEncryptionKey $diskEncryptionKey) - { - $this->diskEncryptionKey = $diskEncryptionKey; - } - /** - * @return Google_Service_Compute_CustomerEncryptionKey - */ - public function getDiskEncryptionKey() - { - return $this->diskEncryptionKey; - } - public function setDiskSizeGb($diskSizeGb) - { - $this->diskSizeGb = $diskSizeGb; - } - public function getDiskSizeGb() - { - return $this->diskSizeGb; - } - /** - * @param Google_Service_Compute_GuestOsFeature - */ - public function setGuestOsFeatures($guestOsFeatures) - { - $this->guestOsFeatures = $guestOsFeatures; - } - /** - * @return Google_Service_Compute_GuestOsFeature - */ - public function getGuestOsFeatures() - { - return $this->guestOsFeatures; - } - public function setIndex($index) - { - $this->index = $index; - } - public function getIndex() - { - return $this->index; - } - /** - * @param Google_Service_Compute_AttachedDiskInitializeParams - */ - public function setInitializeParams(Google_Service_Compute_AttachedDiskInitializeParams $initializeParams) - { - $this->initializeParams = $initializeParams; - } - /** - * @return Google_Service_Compute_AttachedDiskInitializeParams - */ - public function getInitializeParams() - { - return $this->initializeParams; - } - public function setInterface($interface) - { - $this->interface = $interface; - } - public function getInterface() - { - return $this->interface; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLicenses($licenses) - { - $this->licenses = $licenses; - } - public function getLicenses() - { - return $this->licenses; - } - public function setMode($mode) - { - $this->mode = $mode; - } - public function getMode() - { - return $this->mode; - } - public function setSource($source) - { - $this->source = $source; - } - public function getSource() - { - return $this->source; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AttachedDiskInitializeParams.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AttachedDiskInitializeParams.php deleted file mode 100644 index ae0563d8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AttachedDiskInitializeParams.php +++ /dev/null @@ -1,126 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDiskName($diskName) - { - $this->diskName = $diskName; - } - public function getDiskName() - { - return $this->diskName; - } - public function setDiskSizeGb($diskSizeGb) - { - $this->diskSizeGb = $diskSizeGb; - } - public function getDiskSizeGb() - { - return $this->diskSizeGb; - } - public function setDiskType($diskType) - { - $this->diskType = $diskType; - } - public function getDiskType() - { - return $this->diskType; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setResourcePolicies($resourcePolicies) - { - $this->resourcePolicies = $resourcePolicies; - } - public function getResourcePolicies() - { - return $this->resourcePolicies; - } - public function setSourceImage($sourceImage) - { - $this->sourceImage = $sourceImage; - } - public function getSourceImage() - { - return $this->sourceImage; - } - /** - * @param Google_Service_Compute_CustomerEncryptionKey - */ - public function setSourceImageEncryptionKey(Google_Service_Compute_CustomerEncryptionKey $sourceImageEncryptionKey) - { - $this->sourceImageEncryptionKey = $sourceImageEncryptionKey; - } - /** - * @return Google_Service_Compute_CustomerEncryptionKey - */ - public function getSourceImageEncryptionKey() - { - return $this->sourceImageEncryptionKey; - } - public function setSourceSnapshot($sourceSnapshot) - { - $this->sourceSnapshot = $sourceSnapshot; - } - public function getSourceSnapshot() - { - return $this->sourceSnapshot; - } - /** - * @param Google_Service_Compute_CustomerEncryptionKey - */ - public function setSourceSnapshotEncryptionKey(Google_Service_Compute_CustomerEncryptionKey $sourceSnapshotEncryptionKey) - { - $this->sourceSnapshotEncryptionKey = $sourceSnapshotEncryptionKey; - } - /** - * @return Google_Service_Compute_CustomerEncryptionKey - */ - public function getSourceSnapshotEncryptionKey() - { - return $this->sourceSnapshotEncryptionKey; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AuditConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AuditConfig.php deleted file mode 100644 index 33e40f5b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AuditConfig.php +++ /dev/null @@ -1,56 +0,0 @@ -auditLogConfigs = $auditLogConfigs; - } - /** - * @return Google_Service_Compute_AuditLogConfig - */ - public function getAuditLogConfigs() - { - return $this->auditLogConfigs; - } - public function setExemptedMembers($exemptedMembers) - { - $this->exemptedMembers = $exemptedMembers; - } - public function getExemptedMembers() - { - return $this->exemptedMembers; - } - public function setService($service) - { - $this->service = $service; - } - public function getService() - { - return $this->service; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AuditLogConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AuditLogConfig.php deleted file mode 100644 index 008caba9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AuditLogConfig.php +++ /dev/null @@ -1,49 +0,0 @@ -exemptedMembers = $exemptedMembers; - } - public function getExemptedMembers() - { - return $this->exemptedMembers; - } - public function setIgnoreChildExemptions($ignoreChildExemptions) - { - $this->ignoreChildExemptions = $ignoreChildExemptions; - } - public function getIgnoreChildExemptions() - { - return $this->ignoreChildExemptions; - } - public function setLogType($logType) - { - $this->logType = $logType; - } - public function getLogType() - { - return $this->logType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AuthorizationLoggingOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AuthorizationLoggingOptions.php deleted file mode 100644 index 182ffb09..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AuthorizationLoggingOptions.php +++ /dev/null @@ -1,30 +0,0 @@ -permissionType = $permissionType; - } - public function getPermissionType() - { - return $this->permissionType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Autoscaler.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Autoscaler.php deleted file mode 100644 index 49b238fb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Autoscaler.php +++ /dev/null @@ -1,153 +0,0 @@ -autoscalingPolicy = $autoscalingPolicy; - } - /** - * @return Google_Service_Compute_AutoscalingPolicy - */ - public function getAutoscalingPolicy() - { - return $this->autoscalingPolicy; - } - public function setCreationTimestamp($creationTimestamp) - { - $this->creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setRecommendedSize($recommendedSize) - { - $this->recommendedSize = $recommendedSize; - } - public function getRecommendedSize() - { - return $this->recommendedSize; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - /** - * @param Google_Service_Compute_AutoscalerStatusDetails - */ - public function setStatusDetails($statusDetails) - { - $this->statusDetails = $statusDetails; - } - /** - * @return Google_Service_Compute_AutoscalerStatusDetails - */ - public function getStatusDetails() - { - return $this->statusDetails; - } - public function setTarget($target) - { - $this->target = $target; - } - public function getTarget() - { - return $this->target; - } - public function setZone($zone) - { - $this->zone = $zone; - } - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AutoscalerAggregatedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AutoscalerAggregatedList.php deleted file mode 100644 index b2f7a3ca..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AutoscalerAggregatedList.php +++ /dev/null @@ -1,89 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_AutoscalersScopedList - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_AutoscalersScopedList - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_AutoscalerAggregatedListWarning - */ - public function setWarning(Google_Service_Compute_AutoscalerAggregatedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_AutoscalerAggregatedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AutoscalerAggregatedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AutoscalerAggregatedListWarning.php deleted file mode 100644 index dad6e538..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AutoscalerAggregatedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_AutoscalerAggregatedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_AutoscalerAggregatedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AutoscalerAggregatedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AutoscalerAggregatedListWarningData.php deleted file mode 100644 index 76f0a24e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AutoscalerAggregatedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AutoscalerList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AutoscalerList.php deleted file mode 100644 index 5f0165f8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AutoscalerList.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_Autoscaler - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_Autoscaler - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_AutoscalerListWarning - */ - public function setWarning(Google_Service_Compute_AutoscalerListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_AutoscalerListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AutoscalerListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AutoscalerListWarning.php deleted file mode 100644 index 7b42c700..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AutoscalerListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_AutoscalerListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_AutoscalerListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AutoscalerListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AutoscalerListWarningData.php deleted file mode 100644 index 68223110..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AutoscalerListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AutoscalerStatusDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AutoscalerStatusDetails.php deleted file mode 100644 index 86394a91..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AutoscalerStatusDetails.php +++ /dev/null @@ -1,39 +0,0 @@ -message = $message; - } - public function getMessage() - { - return $this->message; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AutoscalersScopedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AutoscalersScopedList.php deleted file mode 100644 index f7c2d660..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AutoscalersScopedList.php +++ /dev/null @@ -1,54 +0,0 @@ -autoscalers = $autoscalers; - } - /** - * @return Google_Service_Compute_Autoscaler - */ - public function getAutoscalers() - { - return $this->autoscalers; - } - /** - * @param Google_Service_Compute_AutoscalersScopedListWarning - */ - public function setWarning(Google_Service_Compute_AutoscalersScopedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_AutoscalersScopedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AutoscalersScopedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AutoscalersScopedListWarning.php deleted file mode 100644 index a60a5409..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AutoscalersScopedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_AutoscalersScopedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_AutoscalersScopedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AutoscalersScopedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AutoscalersScopedListWarningData.php deleted file mode 100644 index e082c90e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AutoscalersScopedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AutoscalingPolicy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AutoscalingPolicy.php deleted file mode 100644 index c6ae113c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AutoscalingPolicy.php +++ /dev/null @@ -1,106 +0,0 @@ -coolDownPeriodSec = $coolDownPeriodSec; - } - public function getCoolDownPeriodSec() - { - return $this->coolDownPeriodSec; - } - /** - * @param Google_Service_Compute_AutoscalingPolicyCpuUtilization - */ - public function setCpuUtilization(Google_Service_Compute_AutoscalingPolicyCpuUtilization $cpuUtilization) - { - $this->cpuUtilization = $cpuUtilization; - } - /** - * @return Google_Service_Compute_AutoscalingPolicyCpuUtilization - */ - public function getCpuUtilization() - { - return $this->cpuUtilization; - } - /** - * @param Google_Service_Compute_AutoscalingPolicyCustomMetricUtilization - */ - public function setCustomMetricUtilizations($customMetricUtilizations) - { - $this->customMetricUtilizations = $customMetricUtilizations; - } - /** - * @return Google_Service_Compute_AutoscalingPolicyCustomMetricUtilization - */ - public function getCustomMetricUtilizations() - { - return $this->customMetricUtilizations; - } - /** - * @param Google_Service_Compute_AutoscalingPolicyLoadBalancingUtilization - */ - public function setLoadBalancingUtilization(Google_Service_Compute_AutoscalingPolicyLoadBalancingUtilization $loadBalancingUtilization) - { - $this->loadBalancingUtilization = $loadBalancingUtilization; - } - /** - * @return Google_Service_Compute_AutoscalingPolicyLoadBalancingUtilization - */ - public function getLoadBalancingUtilization() - { - return $this->loadBalancingUtilization; - } - public function setMaxNumReplicas($maxNumReplicas) - { - $this->maxNumReplicas = $maxNumReplicas; - } - public function getMaxNumReplicas() - { - return $this->maxNumReplicas; - } - public function setMinNumReplicas($minNumReplicas) - { - $this->minNumReplicas = $minNumReplicas; - } - public function getMinNumReplicas() - { - return $this->minNumReplicas; - } - public function setMode($mode) - { - $this->mode = $mode; - } - public function getMode() - { - return $this->mode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AutoscalingPolicyCpuUtilization.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AutoscalingPolicyCpuUtilization.php deleted file mode 100644 index 704a6edf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AutoscalingPolicyCpuUtilization.php +++ /dev/null @@ -1,30 +0,0 @@ -utilizationTarget = $utilizationTarget; - } - public function getUtilizationTarget() - { - return $this->utilizationTarget; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AutoscalingPolicyCustomMetricUtilization.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AutoscalingPolicyCustomMetricUtilization.php deleted file mode 100644 index a385bd8d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AutoscalingPolicyCustomMetricUtilization.php +++ /dev/null @@ -1,48 +0,0 @@ -metric = $metric; - } - public function getMetric() - { - return $this->metric; - } - public function setUtilizationTarget($utilizationTarget) - { - $this->utilizationTarget = $utilizationTarget; - } - public function getUtilizationTarget() - { - return $this->utilizationTarget; - } - public function setUtilizationTargetType($utilizationTargetType) - { - $this->utilizationTargetType = $utilizationTargetType; - } - public function getUtilizationTargetType() - { - return $this->utilizationTargetType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AutoscalingPolicyLoadBalancingUtilization.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AutoscalingPolicyLoadBalancingUtilization.php deleted file mode 100644 index c2c6755b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/AutoscalingPolicyLoadBalancingUtilization.php +++ /dev/null @@ -1,30 +0,0 @@ -utilizationTarget = $utilizationTarget; - } - public function getUtilizationTarget() - { - return $this->utilizationTarget; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Backend.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Backend.php deleted file mode 100644 index ea6735c0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Backend.php +++ /dev/null @@ -1,120 +0,0 @@ -balancingMode = $balancingMode; - } - public function getBalancingMode() - { - return $this->balancingMode; - } - public function setCapacityScaler($capacityScaler) - { - $this->capacityScaler = $capacityScaler; - } - public function getCapacityScaler() - { - return $this->capacityScaler; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setGroup($group) - { - $this->group = $group; - } - public function getGroup() - { - return $this->group; - } - public function setMaxConnections($maxConnections) - { - $this->maxConnections = $maxConnections; - } - public function getMaxConnections() - { - return $this->maxConnections; - } - public function setMaxConnectionsPerEndpoint($maxConnectionsPerEndpoint) - { - $this->maxConnectionsPerEndpoint = $maxConnectionsPerEndpoint; - } - public function getMaxConnectionsPerEndpoint() - { - return $this->maxConnectionsPerEndpoint; - } - public function setMaxConnectionsPerInstance($maxConnectionsPerInstance) - { - $this->maxConnectionsPerInstance = $maxConnectionsPerInstance; - } - public function getMaxConnectionsPerInstance() - { - return $this->maxConnectionsPerInstance; - } - public function setMaxRate($maxRate) - { - $this->maxRate = $maxRate; - } - public function getMaxRate() - { - return $this->maxRate; - } - public function setMaxRatePerEndpoint($maxRatePerEndpoint) - { - $this->maxRatePerEndpoint = $maxRatePerEndpoint; - } - public function getMaxRatePerEndpoint() - { - return $this->maxRatePerEndpoint; - } - public function setMaxRatePerInstance($maxRatePerInstance) - { - $this->maxRatePerInstance = $maxRatePerInstance; - } - public function getMaxRatePerInstance() - { - return $this->maxRatePerInstance; - } - public function setMaxUtilization($maxUtilization) - { - $this->maxUtilization = $maxUtilization; - } - public function getMaxUtilization() - { - return $this->maxUtilization; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendBucket.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendBucket.php deleted file mode 100644 index b3b39247..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendBucket.php +++ /dev/null @@ -1,109 +0,0 @@ -bucketName = $bucketName; - } - public function getBucketName() - { - return $this->bucketName; - } - /** - * @param Google_Service_Compute_BackendBucketCdnPolicy - */ - public function setCdnPolicy(Google_Service_Compute_BackendBucketCdnPolicy $cdnPolicy) - { - $this->cdnPolicy = $cdnPolicy; - } - /** - * @return Google_Service_Compute_BackendBucketCdnPolicy - */ - public function getCdnPolicy() - { - return $this->cdnPolicy; - } - public function setCreationTimestamp($creationTimestamp) - { - $this->creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setEnableCdn($enableCdn) - { - $this->enableCdn = $enableCdn; - } - public function getEnableCdn() - { - return $this->enableCdn; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendBucketCdnPolicy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendBucketCdnPolicy.php deleted file mode 100644 index 2d5e1e91..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendBucketCdnPolicy.php +++ /dev/null @@ -1,40 +0,0 @@ -signedUrlCacheMaxAgeSec = $signedUrlCacheMaxAgeSec; - } - public function getSignedUrlCacheMaxAgeSec() - { - return $this->signedUrlCacheMaxAgeSec; - } - public function setSignedUrlKeyNames($signedUrlKeyNames) - { - $this->signedUrlKeyNames = $signedUrlKeyNames; - } - public function getSignedUrlKeyNames() - { - return $this->signedUrlKeyNames; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendBucketList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendBucketList.php deleted file mode 100644 index ad521281..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendBucketList.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_BackendBucket - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_BackendBucket - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_BackendBucketListWarning - */ - public function setWarning(Google_Service_Compute_BackendBucketListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_BackendBucketListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendBucketListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendBucketListWarning.php deleted file mode 100644 index 9f430843..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendBucketListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_BackendBucketListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_BackendBucketListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendBucketListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendBucketListWarningData.php deleted file mode 100644 index 0dafcdbb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendBucketListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendService.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendService.php deleted file mode 100644 index 6b48bd6b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendService.php +++ /dev/null @@ -1,314 +0,0 @@ -affinityCookieTtlSec = $affinityCookieTtlSec; - } - public function getAffinityCookieTtlSec() - { - return $this->affinityCookieTtlSec; - } - /** - * @param Google_Service_Compute_Backend - */ - public function setBackends($backends) - { - $this->backends = $backends; - } - /** - * @return Google_Service_Compute_Backend - */ - public function getBackends() - { - return $this->backends; - } - /** - * @param Google_Service_Compute_BackendServiceCdnPolicy - */ - public function setCdnPolicy(Google_Service_Compute_BackendServiceCdnPolicy $cdnPolicy) - { - $this->cdnPolicy = $cdnPolicy; - } - /** - * @return Google_Service_Compute_BackendServiceCdnPolicy - */ - public function getCdnPolicy() - { - return $this->cdnPolicy; - } - /** - * @param Google_Service_Compute_CircuitBreakers - */ - public function setCircuitBreakers(Google_Service_Compute_CircuitBreakers $circuitBreakers) - { - $this->circuitBreakers = $circuitBreakers; - } - /** - * @return Google_Service_Compute_CircuitBreakers - */ - public function getCircuitBreakers() - { - return $this->circuitBreakers; - } - /** - * @param Google_Service_Compute_ConnectionDraining - */ - public function setConnectionDraining(Google_Service_Compute_ConnectionDraining $connectionDraining) - { - $this->connectionDraining = $connectionDraining; - } - /** - * @return Google_Service_Compute_ConnectionDraining - */ - public function getConnectionDraining() - { - return $this->connectionDraining; - } - /** - * @param Google_Service_Compute_ConsistentHashLoadBalancerSettings - */ - public function setConsistentHash(Google_Service_Compute_ConsistentHashLoadBalancerSettings $consistentHash) - { - $this->consistentHash = $consistentHash; - } - /** - * @return Google_Service_Compute_ConsistentHashLoadBalancerSettings - */ - public function getConsistentHash() - { - return $this->consistentHash; - } - public function setCreationTimestamp($creationTimestamp) - { - $this->creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setCustomRequestHeaders($customRequestHeaders) - { - $this->customRequestHeaders = $customRequestHeaders; - } - public function getCustomRequestHeaders() - { - return $this->customRequestHeaders; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setEnableCDN($enableCDN) - { - $this->enableCDN = $enableCDN; - } - public function getEnableCDN() - { - return $this->enableCDN; - } - public function setFingerprint($fingerprint) - { - $this->fingerprint = $fingerprint; - } - public function getFingerprint() - { - return $this->fingerprint; - } - public function setHealthChecks($healthChecks) - { - $this->healthChecks = $healthChecks; - } - public function getHealthChecks() - { - return $this->healthChecks; - } - /** - * @param Google_Service_Compute_BackendServiceIAP - */ - public function setIap(Google_Service_Compute_BackendServiceIAP $iap) - { - $this->iap = $iap; - } - /** - * @return Google_Service_Compute_BackendServiceIAP - */ - public function getIap() - { - return $this->iap; - } - 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 setLoadBalancingScheme($loadBalancingScheme) - { - $this->loadBalancingScheme = $loadBalancingScheme; - } - public function getLoadBalancingScheme() - { - return $this->loadBalancingScheme; - } - public function setLocalityLbPolicy($localityLbPolicy) - { - $this->localityLbPolicy = $localityLbPolicy; - } - public function getLocalityLbPolicy() - { - return $this->localityLbPolicy; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Compute_OutlierDetection - */ - public function setOutlierDetection(Google_Service_Compute_OutlierDetection $outlierDetection) - { - $this->outlierDetection = $outlierDetection; - } - /** - * @return Google_Service_Compute_OutlierDetection - */ - public function getOutlierDetection() - { - return $this->outlierDetection; - } - public function setPort($port) - { - $this->port = $port; - } - public function getPort() - { - return $this->port; - } - public function setPortName($portName) - { - $this->portName = $portName; - } - public function getPortName() - { - return $this->portName; - } - public function setProtocol($protocol) - { - $this->protocol = $protocol; - } - public function getProtocol() - { - return $this->protocol; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - public function setSecurityPolicy($securityPolicy) - { - $this->securityPolicy = $securityPolicy; - } - public function getSecurityPolicy() - { - return $this->securityPolicy; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setSessionAffinity($sessionAffinity) - { - $this->sessionAffinity = $sessionAffinity; - } - public function getSessionAffinity() - { - return $this->sessionAffinity; - } - public function setTimeoutSec($timeoutSec) - { - $this->timeoutSec = $timeoutSec; - } - public function getTimeoutSec() - { - return $this->timeoutSec; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendServiceAggregatedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendServiceAggregatedList.php deleted file mode 100644 index 1de63229..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendServiceAggregatedList.php +++ /dev/null @@ -1,89 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_BackendServicesScopedList - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_BackendServicesScopedList - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_BackendServiceAggregatedListWarning - */ - public function setWarning(Google_Service_Compute_BackendServiceAggregatedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_BackendServiceAggregatedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendServiceAggregatedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendServiceAggregatedListWarning.php deleted file mode 100644 index 3932c0fc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendServiceAggregatedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_BackendServiceAggregatedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_BackendServiceAggregatedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendServiceAggregatedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendServiceAggregatedListWarningData.php deleted file mode 100644 index c64c79eb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendServiceAggregatedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendServiceCdnPolicy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendServiceCdnPolicy.php deleted file mode 100644 index a1cd3a3a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendServiceCdnPolicy.php +++ /dev/null @@ -1,56 +0,0 @@ -cacheKeyPolicy = $cacheKeyPolicy; - } - /** - * @return Google_Service_Compute_CacheKeyPolicy - */ - public function getCacheKeyPolicy() - { - return $this->cacheKeyPolicy; - } - public function setSignedUrlCacheMaxAgeSec($signedUrlCacheMaxAgeSec) - { - $this->signedUrlCacheMaxAgeSec = $signedUrlCacheMaxAgeSec; - } - public function getSignedUrlCacheMaxAgeSec() - { - return $this->signedUrlCacheMaxAgeSec; - } - public function setSignedUrlKeyNames($signedUrlKeyNames) - { - $this->signedUrlKeyNames = $signedUrlKeyNames; - } - public function getSignedUrlKeyNames() - { - return $this->signedUrlKeyNames; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendServiceGroupHealth.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendServiceGroupHealth.php deleted file mode 100644 index 40f9e3fc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendServiceGroupHealth.php +++ /dev/null @@ -1,47 +0,0 @@ -healthStatus = $healthStatus; - } - /** - * @return Google_Service_Compute_HealthStatus - */ - public function getHealthStatus() - { - return $this->healthStatus; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendServiceIAP.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendServiceIAP.php deleted file mode 100644 index 13931e1d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendServiceIAP.php +++ /dev/null @@ -1,57 +0,0 @@ -enabled = $enabled; - } - public function getEnabled() - { - return $this->enabled; - } - public function setOauth2ClientId($oauth2ClientId) - { - $this->oauth2ClientId = $oauth2ClientId; - } - public function getOauth2ClientId() - { - return $this->oauth2ClientId; - } - public function setOauth2ClientSecret($oauth2ClientSecret) - { - $this->oauth2ClientSecret = $oauth2ClientSecret; - } - public function getOauth2ClientSecret() - { - return $this->oauth2ClientSecret; - } - public function setOauth2ClientSecretSha256($oauth2ClientSecretSha256) - { - $this->oauth2ClientSecretSha256 = $oauth2ClientSecretSha256; - } - public function getOauth2ClientSecretSha256() - { - return $this->oauth2ClientSecretSha256; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendServiceList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendServiceList.php deleted file mode 100644 index 7377b4f7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendServiceList.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_BackendService - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_BackendService - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_BackendServiceListWarning - */ - public function setWarning(Google_Service_Compute_BackendServiceListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_BackendServiceListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendServiceListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendServiceListWarning.php deleted file mode 100644 index ddb07458..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendServiceListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_BackendServiceListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_BackendServiceListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendServiceListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendServiceListWarningData.php deleted file mode 100644 index 59a93127..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendServiceListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendServiceReference.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendServiceReference.php deleted file mode 100644 index 95136cae..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendServiceReference.php +++ /dev/null @@ -1,30 +0,0 @@ -backendService = $backendService; - } - public function getBackendService() - { - return $this->backendService; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendServicesScopedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendServicesScopedList.php deleted file mode 100644 index 49b238ff..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendServicesScopedList.php +++ /dev/null @@ -1,54 +0,0 @@ -backendServices = $backendServices; - } - /** - * @return Google_Service_Compute_BackendService - */ - public function getBackendServices() - { - return $this->backendServices; - } - /** - * @param Google_Service_Compute_BackendServicesScopedListWarning - */ - public function setWarning(Google_Service_Compute_BackendServicesScopedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_BackendServicesScopedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendServicesScopedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendServicesScopedListWarning.php deleted file mode 100644 index 50a0a939..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendServicesScopedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_BackendServicesScopedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_BackendServicesScopedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendServicesScopedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendServicesScopedListWarningData.php deleted file mode 100644 index 6038130f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/BackendServicesScopedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Binding.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Binding.php deleted file mode 100644 index 8930d822..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Binding.php +++ /dev/null @@ -1,56 +0,0 @@ -condition = $condition; - } - /** - * @return Google_Service_Compute_Expr - */ - public function getCondition() - { - return $this->condition; - } - public function setMembers($members) - { - $this->members = $members; - } - public function getMembers() - { - return $this->members; - } - public function setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/CacheInvalidationRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/CacheInvalidationRule.php deleted file mode 100644 index 9f7f104f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/CacheInvalidationRule.php +++ /dev/null @@ -1,39 +0,0 @@ -host = $host; - } - public function getHost() - { - return $this->host; - } - public function setPath($path) - { - $this->path = $path; - } - public function getPath() - { - return $this->path; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/CacheKeyPolicy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/CacheKeyPolicy.php deleted file mode 100644 index aefbabbf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/CacheKeyPolicy.php +++ /dev/null @@ -1,67 +0,0 @@ -includeHost = $includeHost; - } - public function getIncludeHost() - { - return $this->includeHost; - } - public function setIncludeProtocol($includeProtocol) - { - $this->includeProtocol = $includeProtocol; - } - public function getIncludeProtocol() - { - return $this->includeProtocol; - } - public function setIncludeQueryString($includeQueryString) - { - $this->includeQueryString = $includeQueryString; - } - public function getIncludeQueryString() - { - return $this->includeQueryString; - } - public function setQueryStringBlacklist($queryStringBlacklist) - { - $this->queryStringBlacklist = $queryStringBlacklist; - } - public function getQueryStringBlacklist() - { - return $this->queryStringBlacklist; - } - public function setQueryStringWhitelist($queryStringWhitelist) - { - $this->queryStringWhitelist = $queryStringWhitelist; - } - public function getQueryStringWhitelist() - { - return $this->queryStringWhitelist; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/CircuitBreakers.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/CircuitBreakers.php deleted file mode 100644 index 5b587ec6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/CircuitBreakers.php +++ /dev/null @@ -1,66 +0,0 @@ -maxConnections = $maxConnections; - } - public function getMaxConnections() - { - return $this->maxConnections; - } - public function setMaxPendingRequests($maxPendingRequests) - { - $this->maxPendingRequests = $maxPendingRequests; - } - public function getMaxPendingRequests() - { - return $this->maxPendingRequests; - } - public function setMaxRequests($maxRequests) - { - $this->maxRequests = $maxRequests; - } - public function getMaxRequests() - { - return $this->maxRequests; - } - public function setMaxRequestsPerConnection($maxRequestsPerConnection) - { - $this->maxRequestsPerConnection = $maxRequestsPerConnection; - } - public function getMaxRequestsPerConnection() - { - return $this->maxRequestsPerConnection; - } - public function setMaxRetries($maxRetries) - { - $this->maxRetries = $maxRetries; - } - public function getMaxRetries() - { - return $this->maxRetries; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Commitment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Commitment.php deleted file mode 100644 index 71f917c5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Commitment.php +++ /dev/null @@ -1,162 +0,0 @@ -creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setEndTimestamp($endTimestamp) - { - $this->endTimestamp = $endTimestamp; - } - public function getEndTimestamp() - { - return $this->endTimestamp; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPlan($plan) - { - $this->plan = $plan; - } - public function getPlan() - { - return $this->plan; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - /** - * @param Google_Service_Compute_Reservation - */ - public function setReservations($reservations) - { - $this->reservations = $reservations; - } - /** - * @return Google_Service_Compute_Reservation - */ - public function getReservations() - { - return $this->reservations; - } - /** - * @param Google_Service_Compute_ResourceCommitment - */ - public function setResources($resources) - { - $this->resources = $resources; - } - /** - * @return Google_Service_Compute_ResourceCommitment - */ - public function getResources() - { - return $this->resources; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setStartTimestamp($startTimestamp) - { - $this->startTimestamp = $startTimestamp; - } - public function getStartTimestamp() - { - return $this->startTimestamp; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setStatusMessage($statusMessage) - { - $this->statusMessage = $statusMessage; - } - public function getStatusMessage() - { - return $this->statusMessage; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/CommitmentAggregatedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/CommitmentAggregatedList.php deleted file mode 100644 index f8854a0a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/CommitmentAggregatedList.php +++ /dev/null @@ -1,89 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_CommitmentsScopedList - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_CommitmentsScopedList - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_CommitmentAggregatedListWarning - */ - public function setWarning(Google_Service_Compute_CommitmentAggregatedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_CommitmentAggregatedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/CommitmentAggregatedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/CommitmentAggregatedListWarning.php deleted file mode 100644 index a9de8f3b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/CommitmentAggregatedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_CommitmentAggregatedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_CommitmentAggregatedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/CommitmentAggregatedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/CommitmentAggregatedListWarningData.php deleted file mode 100644 index 56a365ee..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/CommitmentAggregatedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/CommitmentList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/CommitmentList.php deleted file mode 100644 index 85bb0244..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/CommitmentList.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_Commitment - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_Commitment - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_CommitmentListWarning - */ - public function setWarning(Google_Service_Compute_CommitmentListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_CommitmentListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/CommitmentListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/CommitmentListWarning.php deleted file mode 100644 index e152e1c3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/CommitmentListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_CommitmentListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_CommitmentListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/CommitmentListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/CommitmentListWarningData.php deleted file mode 100644 index 62d856d1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/CommitmentListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/CommitmentsScopedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/CommitmentsScopedList.php deleted file mode 100644 index 6d860492..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/CommitmentsScopedList.php +++ /dev/null @@ -1,54 +0,0 @@ -commitments = $commitments; - } - /** - * @return Google_Service_Compute_Commitment - */ - public function getCommitments() - { - return $this->commitments; - } - /** - * @param Google_Service_Compute_CommitmentsScopedListWarning - */ - public function setWarning(Google_Service_Compute_CommitmentsScopedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_CommitmentsScopedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/CommitmentsScopedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/CommitmentsScopedListWarning.php deleted file mode 100644 index c84f72ba..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/CommitmentsScopedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_CommitmentsScopedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_CommitmentsScopedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/CommitmentsScopedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/CommitmentsScopedListWarningData.php deleted file mode 100644 index 8787b091..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/CommitmentsScopedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Condition.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Condition.php deleted file mode 100644 index a32b82b5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Condition.php +++ /dev/null @@ -1,67 +0,0 @@ -iam = $iam; - } - public function getIam() - { - return $this->iam; - } - public function setOp($op) - { - $this->op = $op; - } - public function getOp() - { - return $this->op; - } - public function setSvc($svc) - { - $this->svc = $svc; - } - public function getSvc() - { - return $this->svc; - } - public function setSys($sys) - { - $this->sys = $sys; - } - public function getSys() - { - return $this->sys; - } - public function setValues($values) - { - $this->values = $values; - } - public function getValues() - { - return $this->values; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ConnectionDraining.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ConnectionDraining.php deleted file mode 100644 index 981a096c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ConnectionDraining.php +++ /dev/null @@ -1,30 +0,0 @@ -drainingTimeoutSec = $drainingTimeoutSec; - } - public function getDrainingTimeoutSec() - { - return $this->drainingTimeoutSec; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ConsistentHashLoadBalancerSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ConsistentHashLoadBalancerSettings.php deleted file mode 100644 index 11b21148..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ConsistentHashLoadBalancerSettings.php +++ /dev/null @@ -1,55 +0,0 @@ -httpCookie = $httpCookie; - } - /** - * @return Google_Service_Compute_ConsistentHashLoadBalancerSettingsHttpCookie - */ - public function getHttpCookie() - { - return $this->httpCookie; - } - public function setHttpHeaderName($httpHeaderName) - { - $this->httpHeaderName = $httpHeaderName; - } - public function getHttpHeaderName() - { - return $this->httpHeaderName; - } - public function setMinimumRingSize($minimumRingSize) - { - $this->minimumRingSize = $minimumRingSize; - } - public function getMinimumRingSize() - { - return $this->minimumRingSize; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ConsistentHashLoadBalancerSettingsHttpCookie.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ConsistentHashLoadBalancerSettingsHttpCookie.php deleted file mode 100644 index b1d49f7a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ConsistentHashLoadBalancerSettingsHttpCookie.php +++ /dev/null @@ -1,55 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setPath($path) - { - $this->path = $path; - } - public function getPath() - { - return $this->path; - } - /** - * @param Google_Service_Compute_Duration - */ - public function setTtl(Google_Service_Compute_Duration $ttl) - { - $this->ttl = $ttl; - } - /** - * @return Google_Service_Compute_Duration - */ - public function getTtl() - { - return $this->ttl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/CorsPolicy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/CorsPolicy.php deleted file mode 100644 index b68ed1c0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/CorsPolicy.php +++ /dev/null @@ -1,94 +0,0 @@ -allowCredentials = $allowCredentials; - } - public function getAllowCredentials() - { - return $this->allowCredentials; - } - public function setAllowHeaders($allowHeaders) - { - $this->allowHeaders = $allowHeaders; - } - public function getAllowHeaders() - { - return $this->allowHeaders; - } - public function setAllowMethods($allowMethods) - { - $this->allowMethods = $allowMethods; - } - public function getAllowMethods() - { - return $this->allowMethods; - } - public function setAllowOriginRegexes($allowOriginRegexes) - { - $this->allowOriginRegexes = $allowOriginRegexes; - } - public function getAllowOriginRegexes() - { - return $this->allowOriginRegexes; - } - public function setAllowOrigins($allowOrigins) - { - $this->allowOrigins = $allowOrigins; - } - public function getAllowOrigins() - { - return $this->allowOrigins; - } - public function setDisabled($disabled) - { - $this->disabled = $disabled; - } - public function getDisabled() - { - return $this->disabled; - } - public function setExposeHeaders($exposeHeaders) - { - $this->exposeHeaders = $exposeHeaders; - } - public function getExposeHeaders() - { - return $this->exposeHeaders; - } - public function setMaxAge($maxAge) - { - $this->maxAge = $maxAge; - } - public function getMaxAge() - { - return $this->maxAge; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/CustomerEncryptionKey.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/CustomerEncryptionKey.php deleted file mode 100644 index 5db5a9f3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/CustomerEncryptionKey.php +++ /dev/null @@ -1,48 +0,0 @@ -kmsKeyName = $kmsKeyName; - } - public function getKmsKeyName() - { - return $this->kmsKeyName; - } - public function setRawKey($rawKey) - { - $this->rawKey = $rawKey; - } - public function getRawKey() - { - return $this->rawKey; - } - public function setSha256($sha256) - { - $this->sha256 = $sha256; - } - public function getSha256() - { - return $this->sha256; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/CustomerEncryptionKeyProtectedDisk.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/CustomerEncryptionKeyProtectedDisk.php deleted file mode 100644 index 1da2ab98..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/CustomerEncryptionKeyProtectedDisk.php +++ /dev/null @@ -1,46 +0,0 @@ -diskEncryptionKey = $diskEncryptionKey; - } - /** - * @return Google_Service_Compute_CustomerEncryptionKey - */ - public function getDiskEncryptionKey() - { - return $this->diskEncryptionKey; - } - public function setSource($source) - { - $this->source = $source; - } - public function getSource() - { - return $this->source; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DeprecationStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DeprecationStatus.php deleted file mode 100644 index 903b1dd9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DeprecationStatus.php +++ /dev/null @@ -1,66 +0,0 @@ -deleted = $deleted; - } - public function getDeleted() - { - return $this->deleted; - } - public function setDeprecated($deprecated) - { - $this->deprecated = $deprecated; - } - public function getDeprecated() - { - return $this->deprecated; - } - public function setObsolete($obsolete) - { - $this->obsolete = $obsolete; - } - public function getObsolete() - { - return $this->obsolete; - } - public function setReplacement($replacement) - { - $this->replacement = $replacement; - } - public function getReplacement() - { - return $this->replacement; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Disk.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Disk.php deleted file mode 100644 index d6370d43..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Disk.php +++ /dev/null @@ -1,320 +0,0 @@ -creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - /** - * @param Google_Service_Compute_CustomerEncryptionKey - */ - public function setDiskEncryptionKey(Google_Service_Compute_CustomerEncryptionKey $diskEncryptionKey) - { - $this->diskEncryptionKey = $diskEncryptionKey; - } - /** - * @return Google_Service_Compute_CustomerEncryptionKey - */ - public function getDiskEncryptionKey() - { - return $this->diskEncryptionKey; - } - /** - * @param Google_Service_Compute_GuestOsFeature - */ - public function setGuestOsFeatures($guestOsFeatures) - { - $this->guestOsFeatures = $guestOsFeatures; - } - /** - * @return Google_Service_Compute_GuestOsFeature - */ - public function getGuestOsFeatures() - { - return $this->guestOsFeatures; - } - 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 setLabelFingerprint($labelFingerprint) - { - $this->labelFingerprint = $labelFingerprint; - } - public function getLabelFingerprint() - { - return $this->labelFingerprint; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setLastAttachTimestamp($lastAttachTimestamp) - { - $this->lastAttachTimestamp = $lastAttachTimestamp; - } - public function getLastAttachTimestamp() - { - return $this->lastAttachTimestamp; - } - public function setLastDetachTimestamp($lastDetachTimestamp) - { - $this->lastDetachTimestamp = $lastDetachTimestamp; - } - public function getLastDetachTimestamp() - { - return $this->lastDetachTimestamp; - } - public function setLicenseCodes($licenseCodes) - { - $this->licenseCodes = $licenseCodes; - } - public function getLicenseCodes() - { - return $this->licenseCodes; - } - public function setLicenses($licenses) - { - $this->licenses = $licenses; - } - public function getLicenses() - { - return $this->licenses; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOptions($options) - { - $this->options = $options; - } - public function getOptions() - { - return $this->options; - } - public function setPhysicalBlockSizeBytes($physicalBlockSizeBytes) - { - $this->physicalBlockSizeBytes = $physicalBlockSizeBytes; - } - public function getPhysicalBlockSizeBytes() - { - return $this->physicalBlockSizeBytes; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - public function setReplicaZones($replicaZones) - { - $this->replicaZones = $replicaZones; - } - public function getReplicaZones() - { - return $this->replicaZones; - } - public function setResourcePolicies($resourcePolicies) - { - $this->resourcePolicies = $resourcePolicies; - } - public function getResourcePolicies() - { - return $this->resourcePolicies; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setSizeGb($sizeGb) - { - $this->sizeGb = $sizeGb; - } - public function getSizeGb() - { - return $this->sizeGb; - } - public function setSourceImage($sourceImage) - { - $this->sourceImage = $sourceImage; - } - public function getSourceImage() - { - return $this->sourceImage; - } - /** - * @param Google_Service_Compute_CustomerEncryptionKey - */ - public function setSourceImageEncryptionKey(Google_Service_Compute_CustomerEncryptionKey $sourceImageEncryptionKey) - { - $this->sourceImageEncryptionKey = $sourceImageEncryptionKey; - } - /** - * @return Google_Service_Compute_CustomerEncryptionKey - */ - public function getSourceImageEncryptionKey() - { - return $this->sourceImageEncryptionKey; - } - public function setSourceImageId($sourceImageId) - { - $this->sourceImageId = $sourceImageId; - } - public function getSourceImageId() - { - return $this->sourceImageId; - } - public function setSourceSnapshot($sourceSnapshot) - { - $this->sourceSnapshot = $sourceSnapshot; - } - public function getSourceSnapshot() - { - return $this->sourceSnapshot; - } - /** - * @param Google_Service_Compute_CustomerEncryptionKey - */ - public function setSourceSnapshotEncryptionKey(Google_Service_Compute_CustomerEncryptionKey $sourceSnapshotEncryptionKey) - { - $this->sourceSnapshotEncryptionKey = $sourceSnapshotEncryptionKey; - } - /** - * @return Google_Service_Compute_CustomerEncryptionKey - */ - public function getSourceSnapshotEncryptionKey() - { - return $this->sourceSnapshotEncryptionKey; - } - public function setSourceSnapshotId($sourceSnapshotId) - { - $this->sourceSnapshotId = $sourceSnapshotId; - } - public function getSourceSnapshotId() - { - return $this->sourceSnapshotId; - } - 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 setUsers($users) - { - $this->users = $users; - } - public function getUsers() - { - return $this->users; - } - public function setZone($zone) - { - $this->zone = $zone; - } - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DiskAggregatedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DiskAggregatedList.php deleted file mode 100644 index 483f9c90..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DiskAggregatedList.php +++ /dev/null @@ -1,89 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_DisksScopedList - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_DisksScopedList - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_DiskAggregatedListWarning - */ - public function setWarning(Google_Service_Compute_DiskAggregatedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_DiskAggregatedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DiskAggregatedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DiskAggregatedListWarning.php deleted file mode 100644 index 25018a16..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DiskAggregatedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_DiskAggregatedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_DiskAggregatedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DiskAggregatedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DiskAggregatedListWarningData.php deleted file mode 100644 index ed88be28..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DiskAggregatedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DiskInstantiationConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DiskInstantiationConfig.php deleted file mode 100644 index 7c328ff2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DiskInstantiationConfig.php +++ /dev/null @@ -1,57 +0,0 @@ -autoDelete = $autoDelete; - } - public function getAutoDelete() - { - return $this->autoDelete; - } - public function setCustomImage($customImage) - { - $this->customImage = $customImage; - } - public function getCustomImage() - { - return $this->customImage; - } - public function setDeviceName($deviceName) - { - $this->deviceName = $deviceName; - } - public function getDeviceName() - { - return $this->deviceName; - } - public function setInstantiateFrom($instantiateFrom) - { - $this->instantiateFrom = $instantiateFrom; - } - public function getInstantiateFrom() - { - return $this->instantiateFrom; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DiskList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DiskList.php deleted file mode 100644 index 7fd3d344..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DiskList.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_Disk - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_Disk - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_DiskListWarning - */ - public function setWarning(Google_Service_Compute_DiskListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_DiskListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DiskListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DiskListWarning.php deleted file mode 100644 index 7fd2272d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DiskListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_DiskListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_DiskListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DiskListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DiskListWarningData.php deleted file mode 100644 index 19d93d27..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DiskListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DiskMoveRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DiskMoveRequest.php deleted file mode 100644 index e3aa299e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DiskMoveRequest.php +++ /dev/null @@ -1,39 +0,0 @@ -destinationZone = $destinationZone; - } - public function getDestinationZone() - { - return $this->destinationZone; - } - public function setTargetDisk($targetDisk) - { - $this->targetDisk = $targetDisk; - } - public function getTargetDisk() - { - return $this->targetDisk; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DiskType.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DiskType.php deleted file mode 100644 index 9d9f6854..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DiskType.php +++ /dev/null @@ -1,127 +0,0 @@ -creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setDefaultDiskSizeGb($defaultDiskSizeGb) - { - $this->defaultDiskSizeGb = $defaultDiskSizeGb; - } - public function getDefaultDiskSizeGb() - { - return $this->defaultDiskSizeGb; - } - /** - * @param Google_Service_Compute_DeprecationStatus - */ - public function setDeprecated(Google_Service_Compute_DeprecationStatus $deprecated) - { - $this->deprecated = $deprecated; - } - /** - * @return Google_Service_Compute_DeprecationStatus - */ - public function getDeprecated() - { - return $this->deprecated; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setValidDiskSize($validDiskSize) - { - $this->validDiskSize = $validDiskSize; - } - public function getValidDiskSize() - { - return $this->validDiskSize; - } - public function setZone($zone) - { - $this->zone = $zone; - } - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DiskTypeAggregatedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DiskTypeAggregatedList.php deleted file mode 100644 index c376ecff..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DiskTypeAggregatedList.php +++ /dev/null @@ -1,89 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_DiskTypesScopedList - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_DiskTypesScopedList - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_DiskTypeAggregatedListWarning - */ - public function setWarning(Google_Service_Compute_DiskTypeAggregatedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_DiskTypeAggregatedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DiskTypeAggregatedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DiskTypeAggregatedListWarning.php deleted file mode 100644 index 2d856967..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DiskTypeAggregatedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_DiskTypeAggregatedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_DiskTypeAggregatedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DiskTypeAggregatedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DiskTypeAggregatedListWarningData.php deleted file mode 100644 index 4f6ce00c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DiskTypeAggregatedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DiskTypeList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DiskTypeList.php deleted file mode 100644 index 74595334..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DiskTypeList.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_DiskType - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_DiskType - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_DiskTypeListWarning - */ - public function setWarning(Google_Service_Compute_DiskTypeListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_DiskTypeListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DiskTypeListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DiskTypeListWarning.php deleted file mode 100644 index e72689d8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DiskTypeListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_DiskTypeListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_DiskTypeListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DiskTypeListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DiskTypeListWarningData.php deleted file mode 100644 index 37d7892c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DiskTypeListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DiskTypesScopedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DiskTypesScopedList.php deleted file mode 100644 index 1c09f8db..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DiskTypesScopedList.php +++ /dev/null @@ -1,54 +0,0 @@ -diskTypes = $diskTypes; - } - /** - * @return Google_Service_Compute_DiskType - */ - public function getDiskTypes() - { - return $this->diskTypes; - } - /** - * @param Google_Service_Compute_DiskTypesScopedListWarning - */ - public function setWarning(Google_Service_Compute_DiskTypesScopedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_DiskTypesScopedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DiskTypesScopedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DiskTypesScopedListWarning.php deleted file mode 100644 index 60117c53..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DiskTypesScopedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_DiskTypesScopedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_DiskTypesScopedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DiskTypesScopedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DiskTypesScopedListWarningData.php deleted file mode 100644 index b722d827..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DiskTypesScopedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DisksAddResourcePoliciesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DisksAddResourcePoliciesRequest.php deleted file mode 100644 index 8f208939..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DisksAddResourcePoliciesRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -resourcePolicies = $resourcePolicies; - } - public function getResourcePolicies() - { - return $this->resourcePolicies; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DisksRemoveResourcePoliciesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DisksRemoveResourcePoliciesRequest.php deleted file mode 100644 index 8adbf3cf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DisksRemoveResourcePoliciesRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -resourcePolicies = $resourcePolicies; - } - public function getResourcePolicies() - { - return $this->resourcePolicies; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DisksResizeRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DisksResizeRequest.php deleted file mode 100644 index e8e07e48..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DisksResizeRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -sizeGb = $sizeGb; - } - public function getSizeGb() - { - return $this->sizeGb; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DisksScopedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DisksScopedList.php deleted file mode 100644 index 7dc2f789..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DisksScopedList.php +++ /dev/null @@ -1,54 +0,0 @@ -disks = $disks; - } - /** - * @return Google_Service_Compute_Disk - */ - public function getDisks() - { - return $this->disks; - } - /** - * @param Google_Service_Compute_DisksScopedListWarning - */ - public function setWarning(Google_Service_Compute_DisksScopedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_DisksScopedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DisksScopedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DisksScopedListWarning.php deleted file mode 100644 index ab02084d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DisksScopedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_DisksScopedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_DisksScopedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DisksScopedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DisksScopedListWarningData.php deleted file mode 100644 index 8f2d776e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DisksScopedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DisplayDevice.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DisplayDevice.php deleted file mode 100644 index 0b291b93..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DisplayDevice.php +++ /dev/null @@ -1,30 +0,0 @@ -enableDisplay = $enableDisplay; - } - public function getEnableDisplay() - { - return $this->enableDisplay; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DistributionPolicy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DistributionPolicy.php deleted file mode 100644 index fdf6895f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DistributionPolicy.php +++ /dev/null @@ -1,38 +0,0 @@ -zones = $zones; - } - /** - * @return Google_Service_Compute_DistributionPolicyZoneConfiguration - */ - public function getZones() - { - return $this->zones; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DistributionPolicyZoneConfiguration.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DistributionPolicyZoneConfiguration.php deleted file mode 100644 index 3dc8532e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/DistributionPolicyZoneConfiguration.php +++ /dev/null @@ -1,30 +0,0 @@ -zone = $zone; - } - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Duration.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Duration.php deleted file mode 100644 index 2d0c5dd8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Duration.php +++ /dev/null @@ -1,39 +0,0 @@ -nanos = $nanos; - } - public function getNanos() - { - return $this->nanos; - } - public function setSeconds($seconds) - { - $this->seconds = $seconds; - } - public function getSeconds() - { - return $this->seconds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ExchangedPeeringRoute.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ExchangedPeeringRoute.php deleted file mode 100644 index 55a85c09..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ExchangedPeeringRoute.php +++ /dev/null @@ -1,66 +0,0 @@ -destRange = $destRange; - } - public function getDestRange() - { - return $this->destRange; - } - public function setImported($imported) - { - $this->imported = $imported; - } - public function getImported() - { - return $this->imported; - } - public function setNextHopRegion($nextHopRegion) - { - $this->nextHopRegion = $nextHopRegion; - } - public function getNextHopRegion() - { - return $this->nextHopRegion; - } - public function setPriority($priority) - { - $this->priority = $priority; - } - public function getPriority() - { - return $this->priority; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ExchangedPeeringRoutesList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ExchangedPeeringRoutesList.php deleted file mode 100644 index 6ede2971..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ExchangedPeeringRoutesList.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_ExchangedPeeringRoute - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_ExchangedPeeringRoute - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_ExchangedPeeringRoutesListWarning - */ - public function setWarning(Google_Service_Compute_ExchangedPeeringRoutesListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_ExchangedPeeringRoutesListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ExchangedPeeringRoutesListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ExchangedPeeringRoutesListWarning.php deleted file mode 100644 index 75e93c7d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ExchangedPeeringRoutesListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_ExchangedPeeringRoutesListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_ExchangedPeeringRoutesListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ExchangedPeeringRoutesListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ExchangedPeeringRoutesListWarningData.php deleted file mode 100644 index 5663dfd4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ExchangedPeeringRoutesListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Expr.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Expr.php deleted file mode 100644 index 810251cd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Expr.php +++ /dev/null @@ -1,57 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setExpression($expression) - { - $this->expression = $expression; - } - public function getExpression() - { - return $this->expression; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ExternalVpnGateway.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ExternalVpnGateway.php deleted file mode 100644 index edd3e425..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ExternalVpnGateway.php +++ /dev/null @@ -1,119 +0,0 @@ -creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_ExternalVpnGatewayInterface - */ - public function setInterfaces($interfaces) - { - $this->interfaces = $interfaces; - } - /** - * @return Google_Service_Compute_ExternalVpnGatewayInterface - */ - public function getInterfaces() - { - return $this->interfaces; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLabelFingerprint($labelFingerprint) - { - $this->labelFingerprint = $labelFingerprint; - } - public function getLabelFingerprint() - { - return $this->labelFingerprint; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setRedundancyType($redundancyType) - { - $this->redundancyType = $redundancyType; - } - public function getRedundancyType() - { - return $this->redundancyType; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ExternalVpnGatewayInterface.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ExternalVpnGatewayInterface.php deleted file mode 100644 index 2a625c40..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ExternalVpnGatewayInterface.php +++ /dev/null @@ -1,39 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setIpAddress($ipAddress) - { - $this->ipAddress = $ipAddress; - } - public function getIpAddress() - { - return $this->ipAddress; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ExternalVpnGatewayList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ExternalVpnGatewayList.php deleted file mode 100644 index e6d72cf8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ExternalVpnGatewayList.php +++ /dev/null @@ -1,99 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_ExternalVpnGateway - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_ExternalVpnGateway - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_ExternalVpnGatewayListWarning - */ - public function setWarning(Google_Service_Compute_ExternalVpnGatewayListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_ExternalVpnGatewayListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ExternalVpnGatewayListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ExternalVpnGatewayListWarning.php deleted file mode 100644 index 4248f416..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ExternalVpnGatewayListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_ExternalVpnGatewayListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_ExternalVpnGatewayListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ExternalVpnGatewayListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ExternalVpnGatewayListWarningData.php deleted file mode 100644 index bfdf1a12..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ExternalVpnGatewayListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Firewall.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Firewall.php deleted file mode 100644 index 246ce250..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Firewall.php +++ /dev/null @@ -1,214 +0,0 @@ -allowed = $allowed; - } - /** - * @return Google_Service_Compute_FirewallAllowed - */ - public function getAllowed() - { - return $this->allowed; - } - public function setCreationTimestamp($creationTimestamp) - { - $this->creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - /** - * @param Google_Service_Compute_FirewallDenied - */ - public function setDenied($denied) - { - $this->denied = $denied; - } - /** - * @return Google_Service_Compute_FirewallDenied - */ - public function getDenied() - { - return $this->denied; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDestinationRanges($destinationRanges) - { - $this->destinationRanges = $destinationRanges; - } - public function getDestinationRanges() - { - return $this->destinationRanges; - } - public function setDirection($direction) - { - $this->direction = $direction; - } - public function getDirection() - { - return $this->direction; - } - public function setDisabled($disabled) - { - $this->disabled = $disabled; - } - public function getDisabled() - { - return $this->disabled; - } - 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; - } - /** - * @param Google_Service_Compute_FirewallLogConfig - */ - public function setLogConfig(Google_Service_Compute_FirewallLogConfig $logConfig) - { - $this->logConfig = $logConfig; - } - /** - * @return Google_Service_Compute_FirewallLogConfig - */ - public function getLogConfig() - { - return $this->logConfig; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNetwork($network) - { - $this->network = $network; - } - public function getNetwork() - { - return $this->network; - } - public function setPriority($priority) - { - $this->priority = $priority; - } - public function getPriority() - { - return $this->priority; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setSourceRanges($sourceRanges) - { - $this->sourceRanges = $sourceRanges; - } - public function getSourceRanges() - { - return $this->sourceRanges; - } - public function setSourceServiceAccounts($sourceServiceAccounts) - { - $this->sourceServiceAccounts = $sourceServiceAccounts; - } - public function getSourceServiceAccounts() - { - return $this->sourceServiceAccounts; - } - public function setSourceTags($sourceTags) - { - $this->sourceTags = $sourceTags; - } - public function getSourceTags() - { - return $this->sourceTags; - } - public function setTargetServiceAccounts($targetServiceAccounts) - { - $this->targetServiceAccounts = $targetServiceAccounts; - } - public function getTargetServiceAccounts() - { - return $this->targetServiceAccounts; - } - public function setTargetTags($targetTags) - { - $this->targetTags = $targetTags; - } - public function getTargetTags() - { - return $this->targetTags; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/FirewallAllowed.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/FirewallAllowed.php deleted file mode 100644 index 8c7f3058..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/FirewallAllowed.php +++ /dev/null @@ -1,43 +0,0 @@ - "IPProtocol", - ); - public $iPProtocol; - public $ports; - - public function setIPProtocol($iPProtocol) - { - $this->iPProtocol = $iPProtocol; - } - public function getIPProtocol() - { - return $this->iPProtocol; - } - public function setPorts($ports) - { - $this->ports = $ports; - } - public function getPorts() - { - return $this->ports; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/FirewallDenied.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/FirewallDenied.php deleted file mode 100644 index faeff114..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/FirewallDenied.php +++ /dev/null @@ -1,43 +0,0 @@ - "IPProtocol", - ); - public $iPProtocol; - public $ports; - - public function setIPProtocol($iPProtocol) - { - $this->iPProtocol = $iPProtocol; - } - public function getIPProtocol() - { - return $this->iPProtocol; - } - public function setPorts($ports) - { - $this->ports = $ports; - } - public function getPorts() - { - return $this->ports; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/FirewallList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/FirewallList.php deleted file mode 100644 index 7c180018..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/FirewallList.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_Firewall - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_Firewall - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_FirewallListWarning - */ - public function setWarning(Google_Service_Compute_FirewallListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_FirewallListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/FirewallListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/FirewallListWarning.php deleted file mode 100644 index 486fdb92..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/FirewallListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_FirewallListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_FirewallListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/FirewallListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/FirewallListWarningData.php deleted file mode 100644 index e706413e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/FirewallListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/FirewallLogConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/FirewallLogConfig.php deleted file mode 100644 index 81bde6bb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/FirewallLogConfig.php +++ /dev/null @@ -1,30 +0,0 @@ -enable = $enable; - } - public function getEnable() - { - return $this->enable; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/FixedOrPercent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/FixedOrPercent.php deleted file mode 100644 index acf3254c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/FixedOrPercent.php +++ /dev/null @@ -1,48 +0,0 @@ -calculated = $calculated; - } - public function getCalculated() - { - return $this->calculated; - } - public function setFixed($fixed) - { - $this->fixed = $fixed; - } - public function getFixed() - { - return $this->fixed; - } - public function setPercent($percent) - { - $this->percent = $percent; - } - public function getPercent() - { - return $this->percent; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ForwardingRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ForwardingRule.php deleted file mode 100644 index 815e095c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ForwardingRule.php +++ /dev/null @@ -1,258 +0,0 @@ - "IPAddress", - "iPProtocol" => "IPProtocol", - ); - public $iPAddress; - public $iPProtocol; - public $allPorts; - public $allowGlobalAccess; - public $backendService; - public $creationTimestamp; - public $description; - public $fingerprint; - public $id; - public $ipVersion; - public $isMirroringCollector; - public $kind; - public $loadBalancingScheme; - protected $metadataFiltersType = 'Google_Service_Compute_MetadataFilter'; - protected $metadataFiltersDataType = 'array'; - public $name; - public $network; - public $networkTier; - public $portRange; - public $ports; - public $region; - public $selfLink; - public $serviceLabel; - public $serviceName; - public $subnetwork; - public $target; - - public function setIPAddress($iPAddress) - { - $this->iPAddress = $iPAddress; - } - public function getIPAddress() - { - return $this->iPAddress; - } - public function setIPProtocol($iPProtocol) - { - $this->iPProtocol = $iPProtocol; - } - public function getIPProtocol() - { - return $this->iPProtocol; - } - public function setAllPorts($allPorts) - { - $this->allPorts = $allPorts; - } - public function getAllPorts() - { - return $this->allPorts; - } - public function setAllowGlobalAccess($allowGlobalAccess) - { - $this->allowGlobalAccess = $allowGlobalAccess; - } - public function getAllowGlobalAccess() - { - return $this->allowGlobalAccess; - } - public function setBackendService($backendService) - { - $this->backendService = $backendService; - } - public function getBackendService() - { - return $this->backendService; - } - public function setCreationTimestamp($creationTimestamp) - { - $this->creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setFingerprint($fingerprint) - { - $this->fingerprint = $fingerprint; - } - public function getFingerprint() - { - return $this->fingerprint; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setIpVersion($ipVersion) - { - $this->ipVersion = $ipVersion; - } - public function getIpVersion() - { - return $this->ipVersion; - } - public function setIsMirroringCollector($isMirroringCollector) - { - $this->isMirroringCollector = $isMirroringCollector; - } - public function getIsMirroringCollector() - { - return $this->isMirroringCollector; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLoadBalancingScheme($loadBalancingScheme) - { - $this->loadBalancingScheme = $loadBalancingScheme; - } - public function getLoadBalancingScheme() - { - return $this->loadBalancingScheme; - } - /** - * @param Google_Service_Compute_MetadataFilter - */ - public function setMetadataFilters($metadataFilters) - { - $this->metadataFilters = $metadataFilters; - } - /** - * @return Google_Service_Compute_MetadataFilter - */ - public function getMetadataFilters() - { - return $this->metadataFilters; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNetwork($network) - { - $this->network = $network; - } - public function getNetwork() - { - return $this->network; - } - public function setNetworkTier($networkTier) - { - $this->networkTier = $networkTier; - } - public function getNetworkTier() - { - return $this->networkTier; - } - public function setPortRange($portRange) - { - $this->portRange = $portRange; - } - public function getPortRange() - { - return $this->portRange; - } - public function setPorts($ports) - { - $this->ports = $ports; - } - public function getPorts() - { - return $this->ports; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setServiceLabel($serviceLabel) - { - $this->serviceLabel = $serviceLabel; - } - public function getServiceLabel() - { - return $this->serviceLabel; - } - public function setServiceName($serviceName) - { - $this->serviceName = $serviceName; - } - public function getServiceName() - { - return $this->serviceName; - } - public function setSubnetwork($subnetwork) - { - $this->subnetwork = $subnetwork; - } - public function getSubnetwork() - { - return $this->subnetwork; - } - public function setTarget($target) - { - $this->target = $target; - } - public function getTarget() - { - return $this->target; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ForwardingRuleAggregatedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ForwardingRuleAggregatedList.php deleted file mode 100644 index 0c36ea07..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ForwardingRuleAggregatedList.php +++ /dev/null @@ -1,89 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_ForwardingRulesScopedList - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_ForwardingRulesScopedList - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_ForwardingRuleAggregatedListWarning - */ - public function setWarning(Google_Service_Compute_ForwardingRuleAggregatedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_ForwardingRuleAggregatedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ForwardingRuleAggregatedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ForwardingRuleAggregatedListWarning.php deleted file mode 100644 index 1b85793e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ForwardingRuleAggregatedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_ForwardingRuleAggregatedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_ForwardingRuleAggregatedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ForwardingRuleAggregatedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ForwardingRuleAggregatedListWarningData.php deleted file mode 100644 index ac13e3e2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ForwardingRuleAggregatedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ForwardingRuleList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ForwardingRuleList.php deleted file mode 100644 index 9405c4e4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ForwardingRuleList.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_ForwardingRule - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_ForwardingRule - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_ForwardingRuleListWarning - */ - public function setWarning(Google_Service_Compute_ForwardingRuleListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_ForwardingRuleListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ForwardingRuleListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ForwardingRuleListWarning.php deleted file mode 100644 index b1c800ca..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ForwardingRuleListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_ForwardingRuleListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_ForwardingRuleListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ForwardingRuleListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ForwardingRuleListWarningData.php deleted file mode 100644 index 2b99ac4d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ForwardingRuleListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ForwardingRuleReference.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ForwardingRuleReference.php deleted file mode 100644 index b4eca3f0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ForwardingRuleReference.php +++ /dev/null @@ -1,30 +0,0 @@ -forwardingRule = $forwardingRule; - } - public function getForwardingRule() - { - return $this->forwardingRule; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ForwardingRulesScopedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ForwardingRulesScopedList.php deleted file mode 100644 index d941af69..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ForwardingRulesScopedList.php +++ /dev/null @@ -1,54 +0,0 @@ -forwardingRules = $forwardingRules; - } - /** - * @return Google_Service_Compute_ForwardingRule - */ - public function getForwardingRules() - { - return $this->forwardingRules; - } - /** - * @param Google_Service_Compute_ForwardingRulesScopedListWarning - */ - public function setWarning(Google_Service_Compute_ForwardingRulesScopedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_ForwardingRulesScopedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ForwardingRulesScopedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ForwardingRulesScopedListWarning.php deleted file mode 100644 index df944740..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ForwardingRulesScopedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_ForwardingRulesScopedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_ForwardingRulesScopedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ForwardingRulesScopedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ForwardingRulesScopedListWarningData.php deleted file mode 100644 index 16a6a744..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ForwardingRulesScopedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/GlobalSetLabelsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/GlobalSetLabelsRequest.php deleted file mode 100644 index cb58d82c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/GlobalSetLabelsRequest.php +++ /dev/null @@ -1,39 +0,0 @@ -labelFingerprint = $labelFingerprint; - } - public function getLabelFingerprint() - { - return $this->labelFingerprint; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/GlobalSetPolicyRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/GlobalSetPolicyRequest.php deleted file mode 100644 index db5bbf74..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/GlobalSetPolicyRequest.php +++ /dev/null @@ -1,63 +0,0 @@ -bindings = $bindings; - } - /** - * @return Google_Service_Compute_Binding - */ - public function getBindings() - { - return $this->bindings; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_Compute_Policy - */ - public function setPolicy(Google_Service_Compute_Policy $policy) - { - $this->policy = $policy; - } - /** - * @return Google_Service_Compute_Policy - */ - public function getPolicy() - { - return $this->policy; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/GuestAttributes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/GuestAttributes.php deleted file mode 100644 index 2e17813e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/GuestAttributes.php +++ /dev/null @@ -1,82 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setQueryPath($queryPath) - { - $this->queryPath = $queryPath; - } - public function getQueryPath() - { - return $this->queryPath; - } - /** - * @param Google_Service_Compute_GuestAttributesValue - */ - public function setQueryValue(Google_Service_Compute_GuestAttributesValue $queryValue) - { - $this->queryValue = $queryValue; - } - /** - * @return Google_Service_Compute_GuestAttributesValue - */ - public function getQueryValue() - { - return $this->queryValue; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setVariableKey($variableKey) - { - $this->variableKey = $variableKey; - } - public function getVariableKey() - { - return $this->variableKey; - } - public function setVariableValue($variableValue) - { - $this->variableValue = $variableValue; - } - public function getVariableValue() - { - return $this->variableValue; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/GuestAttributesEntry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/GuestAttributesEntry.php deleted file mode 100644 index 577217de..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/GuestAttributesEntry.php +++ /dev/null @@ -1,48 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setNamespace($namespace) - { - $this->namespace = $namespace; - } - public function getNamespace() - { - return $this->namespace; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/GuestAttributesValue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/GuestAttributesValue.php deleted file mode 100644 index f68ee794..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/GuestAttributesValue.php +++ /dev/null @@ -1,38 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Compute_GuestAttributesEntry - */ - public function getItems() - { - return $this->items; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/GuestOsFeature.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/GuestOsFeature.php deleted file mode 100644 index c3a78653..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/GuestOsFeature.php +++ /dev/null @@ -1,30 +0,0 @@ -type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HTTP2HealthCheck.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HTTP2HealthCheck.php deleted file mode 100644 index 3fc199c8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HTTP2HealthCheck.php +++ /dev/null @@ -1,84 +0,0 @@ -host = $host; - } - public function getHost() - { - return $this->host; - } - public function setPort($port) - { - $this->port = $port; - } - public function getPort() - { - return $this->port; - } - public function setPortName($portName) - { - $this->portName = $portName; - } - public function getPortName() - { - return $this->portName; - } - public function setPortSpecification($portSpecification) - { - $this->portSpecification = $portSpecification; - } - public function getPortSpecification() - { - return $this->portSpecification; - } - public function setProxyHeader($proxyHeader) - { - $this->proxyHeader = $proxyHeader; - } - public function getProxyHeader() - { - return $this->proxyHeader; - } - public function setRequestPath($requestPath) - { - $this->requestPath = $requestPath; - } - public function getRequestPath() - { - return $this->requestPath; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HealthCheck.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HealthCheck.php deleted file mode 100644 index 10c68917..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HealthCheck.php +++ /dev/null @@ -1,209 +0,0 @@ -checkIntervalSec = $checkIntervalSec; - } - public function getCheckIntervalSec() - { - return $this->checkIntervalSec; - } - public function setCreationTimestamp($creationTimestamp) - { - $this->creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setHealthyThreshold($healthyThreshold) - { - $this->healthyThreshold = $healthyThreshold; - } - public function getHealthyThreshold() - { - return $this->healthyThreshold; - } - /** - * @param Google_Service_Compute_HTTP2HealthCheck - */ - public function setHttp2HealthCheck(Google_Service_Compute_HTTP2HealthCheck $http2HealthCheck) - { - $this->http2HealthCheck = $http2HealthCheck; - } - /** - * @return Google_Service_Compute_HTTP2HealthCheck - */ - public function getHttp2HealthCheck() - { - return $this->http2HealthCheck; - } - /** - * @param Google_Service_Compute_HTTPHealthCheck - */ - public function setHttpHealthCheck(Google_Service_Compute_HTTPHealthCheck $httpHealthCheck) - { - $this->httpHealthCheck = $httpHealthCheck; - } - /** - * @return Google_Service_Compute_HTTPHealthCheck - */ - public function getHttpHealthCheck() - { - return $this->httpHealthCheck; - } - /** - * @param Google_Service_Compute_HTTPSHealthCheck - */ - public function setHttpsHealthCheck(Google_Service_Compute_HTTPSHealthCheck $httpsHealthCheck) - { - $this->httpsHealthCheck = $httpsHealthCheck; - } - /** - * @return Google_Service_Compute_HTTPSHealthCheck - */ - public function getHttpsHealthCheck() - { - return $this->httpsHealthCheck; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_SSLHealthCheck - */ - public function setSslHealthCheck(Google_Service_Compute_SSLHealthCheck $sslHealthCheck) - { - $this->sslHealthCheck = $sslHealthCheck; - } - /** - * @return Google_Service_Compute_SSLHealthCheck - */ - public function getSslHealthCheck() - { - return $this->sslHealthCheck; - } - /** - * @param Google_Service_Compute_TCPHealthCheck - */ - public function setTcpHealthCheck(Google_Service_Compute_TCPHealthCheck $tcpHealthCheck) - { - $this->tcpHealthCheck = $tcpHealthCheck; - } - /** - * @return Google_Service_Compute_TCPHealthCheck - */ - public function getTcpHealthCheck() - { - return $this->tcpHealthCheck; - } - public function setTimeoutSec($timeoutSec) - { - $this->timeoutSec = $timeoutSec; - } - public function getTimeoutSec() - { - return $this->timeoutSec; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setUnhealthyThreshold($unhealthyThreshold) - { - $this->unhealthyThreshold = $unhealthyThreshold; - } - public function getUnhealthyThreshold() - { - return $this->unhealthyThreshold; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HealthCheckList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HealthCheckList.php deleted file mode 100644 index c1e95edc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HealthCheckList.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_HealthCheck - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_HealthCheck - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_HealthCheckListWarning - */ - public function setWarning(Google_Service_Compute_HealthCheckListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_HealthCheckListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HealthCheckListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HealthCheckListWarning.php deleted file mode 100644 index 252f4415..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HealthCheckListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_HealthCheckListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_HealthCheckListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HealthCheckListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HealthCheckListWarningData.php deleted file mode 100644 index 5edae67e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HealthCheckListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HealthCheckReference.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HealthCheckReference.php deleted file mode 100644 index 600ddfe3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HealthCheckReference.php +++ /dev/null @@ -1,30 +0,0 @@ -healthCheck = $healthCheck; - } - public function getHealthCheck() - { - return $this->healthCheck; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HealthChecksAggregatedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HealthChecksAggregatedList.php deleted file mode 100644 index 0e12d586..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HealthChecksAggregatedList.php +++ /dev/null @@ -1,89 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_HealthChecksScopedList - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_HealthChecksScopedList - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_HealthChecksAggregatedListWarning - */ - public function setWarning(Google_Service_Compute_HealthChecksAggregatedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_HealthChecksAggregatedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HealthChecksAggregatedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HealthChecksAggregatedListWarning.php deleted file mode 100644 index 381b0f46..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HealthChecksAggregatedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_HealthChecksAggregatedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_HealthChecksAggregatedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HealthChecksAggregatedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HealthChecksAggregatedListWarningData.php deleted file mode 100644 index 7f9952a9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HealthChecksAggregatedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HealthChecksScopedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HealthChecksScopedList.php deleted file mode 100644 index 9494fe78..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HealthChecksScopedList.php +++ /dev/null @@ -1,54 +0,0 @@ -healthChecks = $healthChecks; - } - /** - * @return Google_Service_Compute_HealthCheck - */ - public function getHealthChecks() - { - return $this->healthChecks; - } - /** - * @param Google_Service_Compute_HealthChecksScopedListWarning - */ - public function setWarning(Google_Service_Compute_HealthChecksScopedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_HealthChecksScopedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HealthChecksScopedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HealthChecksScopedListWarning.php deleted file mode 100644 index 8877ceb0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HealthChecksScopedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_HealthChecksScopedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_HealthChecksScopedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HealthChecksScopedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HealthChecksScopedListWarningData.php deleted file mode 100644 index 4dbd9473..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HealthChecksScopedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HealthStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HealthStatus.php deleted file mode 100644 index 76c8ae8d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HealthStatus.php +++ /dev/null @@ -1,57 +0,0 @@ -healthState = $healthState; - } - public function getHealthState() - { - return $this->healthState; - } - public function setInstance($instance) - { - $this->instance = $instance; - } - public function getInstance() - { - return $this->instance; - } - public function setIpAddress($ipAddress) - { - $this->ipAddress = $ipAddress; - } - public function getIpAddress() - { - return $this->ipAddress; - } - public function setPort($port) - { - $this->port = $port; - } - public function getPort() - { - return $this->port; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HealthStatusForNetworkEndpoint.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HealthStatusForNetworkEndpoint.php deleted file mode 100644 index 133177bc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HealthStatusForNetworkEndpoint.php +++ /dev/null @@ -1,78 +0,0 @@ -backendService = $backendService; - } - /** - * @return Google_Service_Compute_BackendServiceReference - */ - public function getBackendService() - { - return $this->backendService; - } - /** - * @param Google_Service_Compute_ForwardingRuleReference - */ - public function setForwardingRule(Google_Service_Compute_ForwardingRuleReference $forwardingRule) - { - $this->forwardingRule = $forwardingRule; - } - /** - * @return Google_Service_Compute_ForwardingRuleReference - */ - public function getForwardingRule() - { - return $this->forwardingRule; - } - /** - * @param Google_Service_Compute_HealthCheckReference - */ - public function setHealthCheck(Google_Service_Compute_HealthCheckReference $healthCheck) - { - $this->healthCheck = $healthCheck; - } - /** - * @return Google_Service_Compute_HealthCheckReference - */ - public function getHealthCheck() - { - return $this->healthCheck; - } - public function setHealthState($healthState) - { - $this->healthState = $healthState; - } - public function getHealthState() - { - return $this->healthState; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HostRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HostRule.php deleted file mode 100644 index 95bb9850..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HostRule.php +++ /dev/null @@ -1,49 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setHosts($hosts) - { - $this->hosts = $hosts; - } - public function getHosts() - { - return $this->hosts; - } - public function setPathMatcher($pathMatcher) - { - $this->pathMatcher = $pathMatcher; - } - public function getPathMatcher() - { - return $this->pathMatcher; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpFaultAbort.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpFaultAbort.php deleted file mode 100644 index e6af2a38..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpFaultAbort.php +++ /dev/null @@ -1,39 +0,0 @@ -httpStatus = $httpStatus; - } - public function getHttpStatus() - { - return $this->httpStatus; - } - public function setPercentage($percentage) - { - $this->percentage = $percentage; - } - public function getPercentage() - { - return $this->percentage; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpFaultDelay.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpFaultDelay.php deleted file mode 100644 index 8859a30d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpFaultDelay.php +++ /dev/null @@ -1,46 +0,0 @@ -fixedDelay = $fixedDelay; - } - /** - * @return Google_Service_Compute_Duration - */ - public function getFixedDelay() - { - return $this->fixedDelay; - } - public function setPercentage($percentage) - { - $this->percentage = $percentage; - } - public function getPercentage() - { - return $this->percentage; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpFaultInjection.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpFaultInjection.php deleted file mode 100644 index 3877497a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpFaultInjection.php +++ /dev/null @@ -1,53 +0,0 @@ -abort = $abort; - } - /** - * @return Google_Service_Compute_HttpFaultAbort - */ - public function getAbort() - { - return $this->abort; - } - /** - * @param Google_Service_Compute_HttpFaultDelay - */ - public function setDelay(Google_Service_Compute_HttpFaultDelay $delay) - { - $this->delay = $delay; - } - /** - * @return Google_Service_Compute_HttpFaultDelay - */ - public function getDelay() - { - return $this->delay; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpHeaderAction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpHeaderAction.php deleted file mode 100644 index 37f5d0d6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpHeaderAction.php +++ /dev/null @@ -1,72 +0,0 @@ -requestHeadersToAdd = $requestHeadersToAdd; - } - /** - * @return Google_Service_Compute_HttpHeaderOption - */ - public function getRequestHeadersToAdd() - { - return $this->requestHeadersToAdd; - } - public function setRequestHeadersToRemove($requestHeadersToRemove) - { - $this->requestHeadersToRemove = $requestHeadersToRemove; - } - public function getRequestHeadersToRemove() - { - return $this->requestHeadersToRemove; - } - /** - * @param Google_Service_Compute_HttpHeaderOption - */ - public function setResponseHeadersToAdd($responseHeadersToAdd) - { - $this->responseHeadersToAdd = $responseHeadersToAdd; - } - /** - * @return Google_Service_Compute_HttpHeaderOption - */ - public function getResponseHeadersToAdd() - { - return $this->responseHeadersToAdd; - } - public function setResponseHeadersToRemove($responseHeadersToRemove) - { - $this->responseHeadersToRemove = $responseHeadersToRemove; - } - public function getResponseHeadersToRemove() - { - return $this->responseHeadersToRemove; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpHeaderMatch.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpHeaderMatch.php deleted file mode 100644 index e038d3c0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpHeaderMatch.php +++ /dev/null @@ -1,100 +0,0 @@ -exactMatch = $exactMatch; - } - public function getExactMatch() - { - return $this->exactMatch; - } - public function setHeaderName($headerName) - { - $this->headerName = $headerName; - } - public function getHeaderName() - { - return $this->headerName; - } - public function setInvertMatch($invertMatch) - { - $this->invertMatch = $invertMatch; - } - public function getInvertMatch() - { - return $this->invertMatch; - } - public function setPrefixMatch($prefixMatch) - { - $this->prefixMatch = $prefixMatch; - } - public function getPrefixMatch() - { - return $this->prefixMatch; - } - public function setPresentMatch($presentMatch) - { - $this->presentMatch = $presentMatch; - } - public function getPresentMatch() - { - return $this->presentMatch; - } - /** - * @param Google_Service_Compute_Int64RangeMatch - */ - public function setRangeMatch(Google_Service_Compute_Int64RangeMatch $rangeMatch) - { - $this->rangeMatch = $rangeMatch; - } - /** - * @return Google_Service_Compute_Int64RangeMatch - */ - public function getRangeMatch() - { - return $this->rangeMatch; - } - public function setRegexMatch($regexMatch) - { - $this->regexMatch = $regexMatch; - } - public function getRegexMatch() - { - return $this->regexMatch; - } - public function setSuffixMatch($suffixMatch) - { - $this->suffixMatch = $suffixMatch; - } - public function getSuffixMatch() - { - return $this->suffixMatch; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpHeaderOption.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpHeaderOption.php deleted file mode 100644 index ee1432e5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpHeaderOption.php +++ /dev/null @@ -1,48 +0,0 @@ -headerName = $headerName; - } - public function getHeaderName() - { - return $this->headerName; - } - public function setHeaderValue($headerValue) - { - $this->headerValue = $headerValue; - } - public function getHeaderValue() - { - return $this->headerValue; - } - public function setReplace($replace) - { - $this->replace = $replace; - } - public function getReplace() - { - return $this->replace; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpHealthCheck.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpHealthCheck.php deleted file mode 100644 index d30d08bb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpHealthCheck.php +++ /dev/null @@ -1,138 +0,0 @@ -checkIntervalSec = $checkIntervalSec; - } - public function getCheckIntervalSec() - { - return $this->checkIntervalSec; - } - public function setCreationTimestamp($creationTimestamp) - { - $this->creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setHealthyThreshold($healthyThreshold) - { - $this->healthyThreshold = $healthyThreshold; - } - public function getHealthyThreshold() - { - return $this->healthyThreshold; - } - public function setHost($host) - { - $this->host = $host; - } - public function getHost() - { - return $this->host; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPort($port) - { - $this->port = $port; - } - public function getPort() - { - return $this->port; - } - public function setRequestPath($requestPath) - { - $this->requestPath = $requestPath; - } - public function getRequestPath() - { - return $this->requestPath; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setTimeoutSec($timeoutSec) - { - $this->timeoutSec = $timeoutSec; - } - public function getTimeoutSec() - { - return $this->timeoutSec; - } - public function setUnhealthyThreshold($unhealthyThreshold) - { - $this->unhealthyThreshold = $unhealthyThreshold; - } - public function getUnhealthyThreshold() - { - return $this->unhealthyThreshold; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpHealthCheckList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpHealthCheckList.php deleted file mode 100644 index fe982c19..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpHealthCheckList.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_HttpHealthCheck - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_HttpHealthCheck - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_HttpHealthCheckListWarning - */ - public function setWarning(Google_Service_Compute_HttpHealthCheckListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_HttpHealthCheckListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpHealthCheckListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpHealthCheckListWarning.php deleted file mode 100644 index e323c4a7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpHealthCheckListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_HttpHealthCheckListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_HttpHealthCheckListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpHealthCheckListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpHealthCheckListWarningData.php deleted file mode 100644 index 0a3d8b71..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpHealthCheckListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpQueryParameterMatch.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpQueryParameterMatch.php deleted file mode 100644 index 47be76f5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpQueryParameterMatch.php +++ /dev/null @@ -1,57 +0,0 @@ -exactMatch = $exactMatch; - } - public function getExactMatch() - { - return $this->exactMatch; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPresentMatch($presentMatch) - { - $this->presentMatch = $presentMatch; - } - public function getPresentMatch() - { - return $this->presentMatch; - } - public function setRegexMatch($regexMatch) - { - $this->regexMatch = $regexMatch; - } - public function getRegexMatch() - { - return $this->regexMatch; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpRedirectAction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpRedirectAction.php deleted file mode 100644 index 348031e4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpRedirectAction.php +++ /dev/null @@ -1,75 +0,0 @@ -hostRedirect = $hostRedirect; - } - public function getHostRedirect() - { - return $this->hostRedirect; - } - public function setHttpsRedirect($httpsRedirect) - { - $this->httpsRedirect = $httpsRedirect; - } - public function getHttpsRedirect() - { - return $this->httpsRedirect; - } - public function setPathRedirect($pathRedirect) - { - $this->pathRedirect = $pathRedirect; - } - public function getPathRedirect() - { - return $this->pathRedirect; - } - public function setPrefixRedirect($prefixRedirect) - { - $this->prefixRedirect = $prefixRedirect; - } - public function getPrefixRedirect() - { - return $this->prefixRedirect; - } - public function setRedirectResponseCode($redirectResponseCode) - { - $this->redirectResponseCode = $redirectResponseCode; - } - public function getRedirectResponseCode() - { - return $this->redirectResponseCode; - } - public function setStripQuery($stripQuery) - { - $this->stripQuery = $stripQuery; - } - public function getStripQuery() - { - return $this->stripQuery; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpRetryPolicy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpRetryPolicy.php deleted file mode 100644 index 659115e3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpRetryPolicy.php +++ /dev/null @@ -1,56 +0,0 @@ -numRetries = $numRetries; - } - public function getNumRetries() - { - return $this->numRetries; - } - /** - * @param Google_Service_Compute_Duration - */ - public function setPerTryTimeout(Google_Service_Compute_Duration $perTryTimeout) - { - $this->perTryTimeout = $perTryTimeout; - } - /** - * @return Google_Service_Compute_Duration - */ - public function getPerTryTimeout() - { - return $this->perTryTimeout; - } - public function setRetryConditions($retryConditions) - { - $this->retryConditions = $retryConditions; - } - public function getRetryConditions() - { - return $this->retryConditions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpRouteAction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpRouteAction.php deleted file mode 100644 index cfb7b769..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpRouteAction.php +++ /dev/null @@ -1,134 +0,0 @@ -corsPolicy = $corsPolicy; - } - /** - * @return Google_Service_Compute_CorsPolicy - */ - public function getCorsPolicy() - { - return $this->corsPolicy; - } - /** - * @param Google_Service_Compute_HttpFaultInjection - */ - public function setFaultInjectionPolicy(Google_Service_Compute_HttpFaultInjection $faultInjectionPolicy) - { - $this->faultInjectionPolicy = $faultInjectionPolicy; - } - /** - * @return Google_Service_Compute_HttpFaultInjection - */ - public function getFaultInjectionPolicy() - { - return $this->faultInjectionPolicy; - } - /** - * @param Google_Service_Compute_RequestMirrorPolicy - */ - public function setRequestMirrorPolicy(Google_Service_Compute_RequestMirrorPolicy $requestMirrorPolicy) - { - $this->requestMirrorPolicy = $requestMirrorPolicy; - } - /** - * @return Google_Service_Compute_RequestMirrorPolicy - */ - public function getRequestMirrorPolicy() - { - return $this->requestMirrorPolicy; - } - /** - * @param Google_Service_Compute_HttpRetryPolicy - */ - public function setRetryPolicy(Google_Service_Compute_HttpRetryPolicy $retryPolicy) - { - $this->retryPolicy = $retryPolicy; - } - /** - * @return Google_Service_Compute_HttpRetryPolicy - */ - public function getRetryPolicy() - { - return $this->retryPolicy; - } - /** - * @param Google_Service_Compute_Duration - */ - public function setTimeout(Google_Service_Compute_Duration $timeout) - { - $this->timeout = $timeout; - } - /** - * @return Google_Service_Compute_Duration - */ - public function getTimeout() - { - return $this->timeout; - } - /** - * @param Google_Service_Compute_UrlRewrite - */ - public function setUrlRewrite(Google_Service_Compute_UrlRewrite $urlRewrite) - { - $this->urlRewrite = $urlRewrite; - } - /** - * @return Google_Service_Compute_UrlRewrite - */ - public function getUrlRewrite() - { - return $this->urlRewrite; - } - /** - * @param Google_Service_Compute_WeightedBackendService - */ - public function setWeightedBackendServices($weightedBackendServices) - { - $this->weightedBackendServices = $weightedBackendServices; - } - /** - * @return Google_Service_Compute_WeightedBackendService - */ - public function getWeightedBackendServices() - { - return $this->weightedBackendServices; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpRouteRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpRouteRule.php deleted file mode 100644 index 0949daf7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpRouteRule.php +++ /dev/null @@ -1,113 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - /** - * @param Google_Service_Compute_HttpHeaderAction - */ - public function setHeaderAction(Google_Service_Compute_HttpHeaderAction $headerAction) - { - $this->headerAction = $headerAction; - } - /** - * @return Google_Service_Compute_HttpHeaderAction - */ - public function getHeaderAction() - { - return $this->headerAction; - } - /** - * @param Google_Service_Compute_HttpRouteRuleMatch - */ - public function setMatchRules($matchRules) - { - $this->matchRules = $matchRules; - } - /** - * @return Google_Service_Compute_HttpRouteRuleMatch - */ - public function getMatchRules() - { - return $this->matchRules; - } - public function setPriority($priority) - { - $this->priority = $priority; - } - public function getPriority() - { - return $this->priority; - } - /** - * @param Google_Service_Compute_HttpRouteAction - */ - public function setRouteAction(Google_Service_Compute_HttpRouteAction $routeAction) - { - $this->routeAction = $routeAction; - } - /** - * @return Google_Service_Compute_HttpRouteAction - */ - public function getRouteAction() - { - return $this->routeAction; - } - public function setService($service) - { - $this->service = $service; - } - public function getService() - { - return $this->service; - } - /** - * @param Google_Service_Compute_HttpRedirectAction - */ - public function setUrlRedirect(Google_Service_Compute_HttpRedirectAction $urlRedirect) - { - $this->urlRedirect = $urlRedirect; - } - /** - * @return Google_Service_Compute_HttpRedirectAction - */ - public function getUrlRedirect() - { - return $this->urlRedirect; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpRouteRuleMatch.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpRouteRuleMatch.php deleted file mode 100644 index 2d9986e8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpRouteRuleMatch.php +++ /dev/null @@ -1,106 +0,0 @@ -fullPathMatch = $fullPathMatch; - } - public function getFullPathMatch() - { - return $this->fullPathMatch; - } - /** - * @param Google_Service_Compute_HttpHeaderMatch - */ - public function setHeaderMatches($headerMatches) - { - $this->headerMatches = $headerMatches; - } - /** - * @return Google_Service_Compute_HttpHeaderMatch - */ - public function getHeaderMatches() - { - return $this->headerMatches; - } - public function setIgnoreCase($ignoreCase) - { - $this->ignoreCase = $ignoreCase; - } - public function getIgnoreCase() - { - return $this->ignoreCase; - } - /** - * @param Google_Service_Compute_MetadataFilter - */ - public function setMetadataFilters($metadataFilters) - { - $this->metadataFilters = $metadataFilters; - } - /** - * @return Google_Service_Compute_MetadataFilter - */ - public function getMetadataFilters() - { - return $this->metadataFilters; - } - public function setPrefixMatch($prefixMatch) - { - $this->prefixMatch = $prefixMatch; - } - public function getPrefixMatch() - { - return $this->prefixMatch; - } - /** - * @param Google_Service_Compute_HttpQueryParameterMatch - */ - public function setQueryParameterMatches($queryParameterMatches) - { - $this->queryParameterMatches = $queryParameterMatches; - } - /** - * @return Google_Service_Compute_HttpQueryParameterMatch - */ - public function getQueryParameterMatches() - { - return $this->queryParameterMatches; - } - public function setRegexMatch($regexMatch) - { - $this->regexMatch = $regexMatch; - } - public function getRegexMatch() - { - return $this->regexMatch; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpsHealthCheck.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpsHealthCheck.php deleted file mode 100644 index 193a09b2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpsHealthCheck.php +++ /dev/null @@ -1,138 +0,0 @@ -checkIntervalSec = $checkIntervalSec; - } - public function getCheckIntervalSec() - { - return $this->checkIntervalSec; - } - public function setCreationTimestamp($creationTimestamp) - { - $this->creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setHealthyThreshold($healthyThreshold) - { - $this->healthyThreshold = $healthyThreshold; - } - public function getHealthyThreshold() - { - return $this->healthyThreshold; - } - public function setHost($host) - { - $this->host = $host; - } - public function getHost() - { - return $this->host; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPort($port) - { - $this->port = $port; - } - public function getPort() - { - return $this->port; - } - public function setRequestPath($requestPath) - { - $this->requestPath = $requestPath; - } - public function getRequestPath() - { - return $this->requestPath; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setTimeoutSec($timeoutSec) - { - $this->timeoutSec = $timeoutSec; - } - public function getTimeoutSec() - { - return $this->timeoutSec; - } - public function setUnhealthyThreshold($unhealthyThreshold) - { - $this->unhealthyThreshold = $unhealthyThreshold; - } - public function getUnhealthyThreshold() - { - return $this->unhealthyThreshold; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpsHealthCheckList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpsHealthCheckList.php deleted file mode 100644 index 5066f559..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpsHealthCheckList.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_HttpsHealthCheck - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_HttpsHealthCheck - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_HttpsHealthCheckListWarning - */ - public function setWarning(Google_Service_Compute_HttpsHealthCheckListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_HttpsHealthCheckListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpsHealthCheckListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpsHealthCheckListWarning.php deleted file mode 100644 index 3884d6e1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpsHealthCheckListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_HttpsHealthCheckListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_HttpsHealthCheckListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpsHealthCheckListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpsHealthCheckListWarningData.php deleted file mode 100644 index be2780b1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/HttpsHealthCheckListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Image.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Image.php deleted file mode 100644 index 21048072..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Image.php +++ /dev/null @@ -1,332 +0,0 @@ -archiveSizeBytes = $archiveSizeBytes; - } - public function getArchiveSizeBytes() - { - return $this->archiveSizeBytes; - } - public function setCreationTimestamp($creationTimestamp) - { - $this->creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - /** - * @param Google_Service_Compute_DeprecationStatus - */ - public function setDeprecated(Google_Service_Compute_DeprecationStatus $deprecated) - { - $this->deprecated = $deprecated; - } - /** - * @return Google_Service_Compute_DeprecationStatus - */ - public function getDeprecated() - { - return $this->deprecated; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDiskSizeGb($diskSizeGb) - { - $this->diskSizeGb = $diskSizeGb; - } - public function getDiskSizeGb() - { - return $this->diskSizeGb; - } - public function setFamily($family) - { - $this->family = $family; - } - public function getFamily() - { - return $this->family; - } - /** - * @param Google_Service_Compute_GuestOsFeature - */ - public function setGuestOsFeatures($guestOsFeatures) - { - $this->guestOsFeatures = $guestOsFeatures; - } - /** - * @return Google_Service_Compute_GuestOsFeature - */ - public function getGuestOsFeatures() - { - return $this->guestOsFeatures; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_CustomerEncryptionKey - */ - public function setImageEncryptionKey(Google_Service_Compute_CustomerEncryptionKey $imageEncryptionKey) - { - $this->imageEncryptionKey = $imageEncryptionKey; - } - /** - * @return Google_Service_Compute_CustomerEncryptionKey - */ - public function getImageEncryptionKey() - { - return $this->imageEncryptionKey; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLabelFingerprint($labelFingerprint) - { - $this->labelFingerprint = $labelFingerprint; - } - public function getLabelFingerprint() - { - return $this->labelFingerprint; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setLicenseCodes($licenseCodes) - { - $this->licenseCodes = $licenseCodes; - } - public function getLicenseCodes() - { - return $this->licenseCodes; - } - public function setLicenses($licenses) - { - $this->licenses = $licenses; - } - public function getLicenses() - { - return $this->licenses; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Compute_ImageRawDisk - */ - public function setRawDisk(Google_Service_Compute_ImageRawDisk $rawDisk) - { - $this->rawDisk = $rawDisk; - } - /** - * @return Google_Service_Compute_ImageRawDisk - */ - public function getRawDisk() - { - return $this->rawDisk; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setSourceDisk($sourceDisk) - { - $this->sourceDisk = $sourceDisk; - } - public function getSourceDisk() - { - return $this->sourceDisk; - } - /** - * @param Google_Service_Compute_CustomerEncryptionKey - */ - public function setSourceDiskEncryptionKey(Google_Service_Compute_CustomerEncryptionKey $sourceDiskEncryptionKey) - { - $this->sourceDiskEncryptionKey = $sourceDiskEncryptionKey; - } - /** - * @return Google_Service_Compute_CustomerEncryptionKey - */ - public function getSourceDiskEncryptionKey() - { - return $this->sourceDiskEncryptionKey; - } - public function setSourceDiskId($sourceDiskId) - { - $this->sourceDiskId = $sourceDiskId; - } - public function getSourceDiskId() - { - return $this->sourceDiskId; - } - public function setSourceImage($sourceImage) - { - $this->sourceImage = $sourceImage; - } - public function getSourceImage() - { - return $this->sourceImage; - } - /** - * @param Google_Service_Compute_CustomerEncryptionKey - */ - public function setSourceImageEncryptionKey(Google_Service_Compute_CustomerEncryptionKey $sourceImageEncryptionKey) - { - $this->sourceImageEncryptionKey = $sourceImageEncryptionKey; - } - /** - * @return Google_Service_Compute_CustomerEncryptionKey - */ - public function getSourceImageEncryptionKey() - { - return $this->sourceImageEncryptionKey; - } - public function setSourceImageId($sourceImageId) - { - $this->sourceImageId = $sourceImageId; - } - public function getSourceImageId() - { - return $this->sourceImageId; - } - public function setSourceSnapshot($sourceSnapshot) - { - $this->sourceSnapshot = $sourceSnapshot; - } - public function getSourceSnapshot() - { - return $this->sourceSnapshot; - } - /** - * @param Google_Service_Compute_CustomerEncryptionKey - */ - public function setSourceSnapshotEncryptionKey(Google_Service_Compute_CustomerEncryptionKey $sourceSnapshotEncryptionKey) - { - $this->sourceSnapshotEncryptionKey = $sourceSnapshotEncryptionKey; - } - /** - * @return Google_Service_Compute_CustomerEncryptionKey - */ - public function getSourceSnapshotEncryptionKey() - { - return $this->sourceSnapshotEncryptionKey; - } - public function setSourceSnapshotId($sourceSnapshotId) - { - $this->sourceSnapshotId = $sourceSnapshotId; - } - public function getSourceSnapshotId() - { - return $this->sourceSnapshotId; - } - public function setSourceType($sourceType) - { - $this->sourceType = $sourceType; - } - public function getSourceType() - { - return $this->sourceType; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setStorageLocations($storageLocations) - { - $this->storageLocations = $storageLocations; - } - public function getStorageLocations() - { - return $this->storageLocations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ImageList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ImageList.php deleted file mode 100644 index e651257d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ImageList.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_Image - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_Image - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_ImageListWarning - */ - public function setWarning(Google_Service_Compute_ImageListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_ImageListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ImageListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ImageListWarning.php deleted file mode 100644 index bdc847cb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ImageListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_ImageListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_ImageListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ImageListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ImageListWarningData.php deleted file mode 100644 index 9be397d5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ImageListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ImageRawDisk.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ImageRawDisk.php deleted file mode 100644 index a23d4845..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ImageRawDisk.php +++ /dev/null @@ -1,48 +0,0 @@ -containerType = $containerType; - } - public function getContainerType() - { - return $this->containerType; - } - public function setSha1Checksum($sha1Checksum) - { - $this->sha1Checksum = $sha1Checksum; - } - public function getSha1Checksum() - { - return $this->sha1Checksum; - } - public function setSource($source) - { - $this->source = $source; - } - public function getSource() - { - return $this->source; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Instance.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Instance.php deleted file mode 100644 index cf484390..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Instance.php +++ /dev/null @@ -1,360 +0,0 @@ -canIpForward = $canIpForward; - } - public function getCanIpForward() - { - return $this->canIpForward; - } - public function setCpuPlatform($cpuPlatform) - { - $this->cpuPlatform = $cpuPlatform; - } - public function getCpuPlatform() - { - return $this->cpuPlatform; - } - public function setCreationTimestamp($creationTimestamp) - { - $this->creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setDeletionProtection($deletionProtection) - { - $this->deletionProtection = $deletionProtection; - } - public function getDeletionProtection() - { - return $this->deletionProtection; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - /** - * @param Google_Service_Compute_AttachedDisk - */ - public function setDisks($disks) - { - $this->disks = $disks; - } - /** - * @return Google_Service_Compute_AttachedDisk - */ - public function getDisks() - { - return $this->disks; - } - /** - * @param Google_Service_Compute_DisplayDevice - */ - public function setDisplayDevice(Google_Service_Compute_DisplayDevice $displayDevice) - { - $this->displayDevice = $displayDevice; - } - /** - * @return Google_Service_Compute_DisplayDevice - */ - public function getDisplayDevice() - { - return $this->displayDevice; - } - /** - * @param Google_Service_Compute_AcceleratorConfig - */ - public function setGuestAccelerators($guestAccelerators) - { - $this->guestAccelerators = $guestAccelerators; - } - /** - * @return Google_Service_Compute_AcceleratorConfig - */ - public function getGuestAccelerators() - { - return $this->guestAccelerators; - } - public function setHostname($hostname) - { - $this->hostname = $hostname; - } - public function getHostname() - { - return $this->hostname; - } - 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 setLabelFingerprint($labelFingerprint) - { - $this->labelFingerprint = $labelFingerprint; - } - public function getLabelFingerprint() - { - return $this->labelFingerprint; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setMachineType($machineType) - { - $this->machineType = $machineType; - } - public function getMachineType() - { - return $this->machineType; - } - /** - * @param Google_Service_Compute_Metadata - */ - public function setMetadata(Google_Service_Compute_Metadata $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_Compute_Metadata - */ - public function getMetadata() - { - return $this->metadata; - } - public function setMinCpuPlatform($minCpuPlatform) - { - $this->minCpuPlatform = $minCpuPlatform; - } - public function getMinCpuPlatform() - { - return $this->minCpuPlatform; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Compute_NetworkInterface - */ - public function setNetworkInterfaces($networkInterfaces) - { - $this->networkInterfaces = $networkInterfaces; - } - /** - * @return Google_Service_Compute_NetworkInterface - */ - public function getNetworkInterfaces() - { - return $this->networkInterfaces; - } - /** - * @param Google_Service_Compute_ReservationAffinity - */ - public function setReservationAffinity(Google_Service_Compute_ReservationAffinity $reservationAffinity) - { - $this->reservationAffinity = $reservationAffinity; - } - /** - * @return Google_Service_Compute_ReservationAffinity - */ - public function getReservationAffinity() - { - return $this->reservationAffinity; - } - /** - * @param Google_Service_Compute_Scheduling - */ - public function setScheduling(Google_Service_Compute_Scheduling $scheduling) - { - $this->scheduling = $scheduling; - } - /** - * @return Google_Service_Compute_Scheduling - */ - public function getScheduling() - { - return $this->scheduling; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_ServiceAccount - */ - public function setServiceAccounts($serviceAccounts) - { - $this->serviceAccounts = $serviceAccounts; - } - /** - * @return Google_Service_Compute_ServiceAccount - */ - public function getServiceAccounts() - { - return $this->serviceAccounts; - } - /** - * @param Google_Service_Compute_ShieldedInstanceConfig - */ - public function setShieldedInstanceConfig(Google_Service_Compute_ShieldedInstanceConfig $shieldedInstanceConfig) - { - $this->shieldedInstanceConfig = $shieldedInstanceConfig; - } - /** - * @return Google_Service_Compute_ShieldedInstanceConfig - */ - public function getShieldedInstanceConfig() - { - return $this->shieldedInstanceConfig; - } - /** - * @param Google_Service_Compute_ShieldedInstanceIntegrityPolicy - */ - public function setShieldedInstanceIntegrityPolicy(Google_Service_Compute_ShieldedInstanceIntegrityPolicy $shieldedInstanceIntegrityPolicy) - { - $this->shieldedInstanceIntegrityPolicy = $shieldedInstanceIntegrityPolicy; - } - /** - * @return Google_Service_Compute_ShieldedInstanceIntegrityPolicy - */ - public function getShieldedInstanceIntegrityPolicy() - { - return $this->shieldedInstanceIntegrityPolicy; - } - public function setStartRestricted($startRestricted) - { - $this->startRestricted = $startRestricted; - } - public function getStartRestricted() - { - return $this->startRestricted; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setStatusMessage($statusMessage) - { - $this->statusMessage = $statusMessage; - } - public function getStatusMessage() - { - return $this->statusMessage; - } - /** - * @param Google_Service_Compute_Tags - */ - public function setTags(Google_Service_Compute_Tags $tags) - { - $this->tags = $tags; - } - /** - * @return Google_Service_Compute_Tags - */ - public function getTags() - { - return $this->tags; - } - public function setZone($zone) - { - $this->zone = $zone; - } - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceAggregatedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceAggregatedList.php deleted file mode 100644 index 4cb7a0dc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceAggregatedList.php +++ /dev/null @@ -1,89 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_InstancesScopedList - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_InstancesScopedList - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_InstanceAggregatedListWarning - */ - public function setWarning(Google_Service_Compute_InstanceAggregatedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_InstanceAggregatedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceAggregatedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceAggregatedListWarning.php deleted file mode 100644 index 8ef31ee7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceAggregatedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_InstanceAggregatedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_InstanceAggregatedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceAggregatedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceAggregatedListWarningData.php deleted file mode 100644 index c315e01e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceAggregatedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroup.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroup.php deleted file mode 100644 index b5ff5937..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroup.php +++ /dev/null @@ -1,146 +0,0 @@ -creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setFingerprint($fingerprint) - { - $this->fingerprint = $fingerprint; - } - public function getFingerprint() - { - return $this->fingerprint; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Compute_NamedPort - */ - public function setNamedPorts($namedPorts) - { - $this->namedPorts = $namedPorts; - } - /** - * @return Google_Service_Compute_NamedPort - */ - public function getNamedPorts() - { - return $this->namedPorts; - } - public function setNetwork($network) - { - $this->network = $network; - } - public function getNetwork() - { - return $this->network; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setSize($size) - { - $this->size = $size; - } - public function getSize() - { - return $this->size; - } - public function setSubnetwork($subnetwork) - { - $this->subnetwork = $subnetwork; - } - public function getSubnetwork() - { - return $this->subnetwork; - } - public function setZone($zone) - { - $this->zone = $zone; - } - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupAggregatedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupAggregatedList.php deleted file mode 100644 index eb70c635..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupAggregatedList.php +++ /dev/null @@ -1,89 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_InstanceGroupsScopedList - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_InstanceGroupsScopedList - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_InstanceGroupAggregatedListWarning - */ - public function setWarning(Google_Service_Compute_InstanceGroupAggregatedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_InstanceGroupAggregatedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupAggregatedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupAggregatedListWarning.php deleted file mode 100644 index ad91f3d2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupAggregatedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_InstanceGroupAggregatedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_InstanceGroupAggregatedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupAggregatedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupAggregatedListWarningData.php deleted file mode 100644 index e1e9624c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupAggregatedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupList.php deleted file mode 100644 index 7240d92e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupList.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_InstanceGroup - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_InstanceGroup - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_InstanceGroupListWarning - */ - public function setWarning(Google_Service_Compute_InstanceGroupListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_InstanceGroupListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupListWarning.php deleted file mode 100644 index 23dcdbd5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_InstanceGroupListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_InstanceGroupListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupListWarningData.php deleted file mode 100644 index af79c589..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManager.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManager.php deleted file mode 100644 index e65c64c7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManager.php +++ /dev/null @@ -1,260 +0,0 @@ -autoHealingPolicies = $autoHealingPolicies; - } - /** - * @return Google_Service_Compute_InstanceGroupManagerAutoHealingPolicy - */ - public function getAutoHealingPolicies() - { - return $this->autoHealingPolicies; - } - public function setBaseInstanceName($baseInstanceName) - { - $this->baseInstanceName = $baseInstanceName; - } - public function getBaseInstanceName() - { - return $this->baseInstanceName; - } - public function setCreationTimestamp($creationTimestamp) - { - $this->creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - /** - * @param Google_Service_Compute_InstanceGroupManagerActionsSummary - */ - public function setCurrentActions(Google_Service_Compute_InstanceGroupManagerActionsSummary $currentActions) - { - $this->currentActions = $currentActions; - } - /** - * @return Google_Service_Compute_InstanceGroupManagerActionsSummary - */ - public function getCurrentActions() - { - return $this->currentActions; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - /** - * @param Google_Service_Compute_DistributionPolicy - */ - public function setDistributionPolicy(Google_Service_Compute_DistributionPolicy $distributionPolicy) - { - $this->distributionPolicy = $distributionPolicy; - } - /** - * @return Google_Service_Compute_DistributionPolicy - */ - public function getDistributionPolicy() - { - return $this->distributionPolicy; - } - public function setFingerprint($fingerprint) - { - $this->fingerprint = $fingerprint; - } - public function getFingerprint() - { - return $this->fingerprint; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setInstanceGroup($instanceGroup) - { - $this->instanceGroup = $instanceGroup; - } - public function getInstanceGroup() - { - return $this->instanceGroup; - } - public function setInstanceTemplate($instanceTemplate) - { - $this->instanceTemplate = $instanceTemplate; - } - public function getInstanceTemplate() - { - return $this->instanceTemplate; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Compute_NamedPort - */ - public function setNamedPorts($namedPorts) - { - $this->namedPorts = $namedPorts; - } - /** - * @return Google_Service_Compute_NamedPort - */ - public function getNamedPorts() - { - return $this->namedPorts; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_InstanceGroupManagerStatus - */ - public function setStatus(Google_Service_Compute_InstanceGroupManagerStatus $status) - { - $this->status = $status; - } - /** - * @return Google_Service_Compute_InstanceGroupManagerStatus - */ - public function getStatus() - { - return $this->status; - } - public function setTargetPools($targetPools) - { - $this->targetPools = $targetPools; - } - public function getTargetPools() - { - return $this->targetPools; - } - public function setTargetSize($targetSize) - { - $this->targetSize = $targetSize; - } - public function getTargetSize() - { - return $this->targetSize; - } - /** - * @param Google_Service_Compute_InstanceGroupManagerUpdatePolicy - */ - public function setUpdatePolicy(Google_Service_Compute_InstanceGroupManagerUpdatePolicy $updatePolicy) - { - $this->updatePolicy = $updatePolicy; - } - /** - * @return Google_Service_Compute_InstanceGroupManagerUpdatePolicy - */ - public function getUpdatePolicy() - { - return $this->updatePolicy; - } - /** - * @param Google_Service_Compute_InstanceGroupManagerVersion - */ - public function setVersions($versions) - { - $this->versions = $versions; - } - /** - * @return Google_Service_Compute_InstanceGroupManagerVersion - */ - public function getVersions() - { - return $this->versions; - } - public function setZone($zone) - { - $this->zone = $zone; - } - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagerActionsSummary.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagerActionsSummary.php deleted file mode 100644 index 202dd91c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagerActionsSummary.php +++ /dev/null @@ -1,102 +0,0 @@ -abandoning = $abandoning; - } - public function getAbandoning() - { - return $this->abandoning; - } - public function setCreating($creating) - { - $this->creating = $creating; - } - public function getCreating() - { - return $this->creating; - } - public function setCreatingWithoutRetries($creatingWithoutRetries) - { - $this->creatingWithoutRetries = $creatingWithoutRetries; - } - public function getCreatingWithoutRetries() - { - return $this->creatingWithoutRetries; - } - public function setDeleting($deleting) - { - $this->deleting = $deleting; - } - public function getDeleting() - { - return $this->deleting; - } - public function setNone($none) - { - $this->none = $none; - } - public function getNone() - { - return $this->none; - } - public function setRecreating($recreating) - { - $this->recreating = $recreating; - } - public function getRecreating() - { - return $this->recreating; - } - public function setRefreshing($refreshing) - { - $this->refreshing = $refreshing; - } - public function getRefreshing() - { - return $this->refreshing; - } - public function setRestarting($restarting) - { - $this->restarting = $restarting; - } - public function getRestarting() - { - return $this->restarting; - } - public function setVerifying($verifying) - { - $this->verifying = $verifying; - } - public function getVerifying() - { - return $this->verifying; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagerAggregatedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagerAggregatedList.php deleted file mode 100644 index 32db1b12..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagerAggregatedList.php +++ /dev/null @@ -1,89 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_InstanceGroupManagersScopedList - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_InstanceGroupManagersScopedList - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_InstanceGroupManagerAggregatedListWarning - */ - public function setWarning(Google_Service_Compute_InstanceGroupManagerAggregatedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_InstanceGroupManagerAggregatedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagerAggregatedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagerAggregatedListWarning.php deleted file mode 100644 index 34158a43..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagerAggregatedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_InstanceGroupManagerAggregatedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_InstanceGroupManagerAggregatedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagerAggregatedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagerAggregatedListWarningData.php deleted file mode 100644 index d9d8eace..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagerAggregatedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagerAutoHealingPolicy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagerAutoHealingPolicy.php deleted file mode 100644 index 1f97c3c4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagerAutoHealingPolicy.php +++ /dev/null @@ -1,39 +0,0 @@ -healthCheck = $healthCheck; - } - public function getHealthCheck() - { - return $this->healthCheck; - } - public function setInitialDelaySec($initialDelaySec) - { - $this->initialDelaySec = $initialDelaySec; - } - public function getInitialDelaySec() - { - return $this->initialDelaySec; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagerList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagerList.php deleted file mode 100644 index 2d00d73e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagerList.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_InstanceGroupManager - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_InstanceGroupManager - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_InstanceGroupManagerListWarning - */ - public function setWarning(Google_Service_Compute_InstanceGroupManagerListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_InstanceGroupManagerListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagerListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagerListWarning.php deleted file mode 100644 index 5c0d7812..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagerListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_InstanceGroupManagerListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_InstanceGroupManagerListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagerListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagerListWarningData.php deleted file mode 100644 index f4f84706..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagerListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagerStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagerStatus.php deleted file mode 100644 index df1bc4ac..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagerStatus.php +++ /dev/null @@ -1,46 +0,0 @@ -isStable = $isStable; - } - public function getIsStable() - { - return $this->isStable; - } - /** - * @param Google_Service_Compute_InstanceGroupManagerStatusVersionTarget - */ - public function setVersionTarget(Google_Service_Compute_InstanceGroupManagerStatusVersionTarget $versionTarget) - { - $this->versionTarget = $versionTarget; - } - /** - * @return Google_Service_Compute_InstanceGroupManagerStatusVersionTarget - */ - public function getVersionTarget() - { - return $this->versionTarget; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagerStatusVersionTarget.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagerStatusVersionTarget.php deleted file mode 100644 index 2d92296a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagerStatusVersionTarget.php +++ /dev/null @@ -1,30 +0,0 @@ -isReached = $isReached; - } - public function getIsReached() - { - return $this->isReached; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagerUpdatePolicy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagerUpdatePolicy.php deleted file mode 100644 index be9e8b56..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagerUpdatePolicy.php +++ /dev/null @@ -1,80 +0,0 @@ -instanceRedistributionType = $instanceRedistributionType; - } - public function getInstanceRedistributionType() - { - return $this->instanceRedistributionType; - } - /** - * @param Google_Service_Compute_FixedOrPercent - */ - public function setMaxSurge(Google_Service_Compute_FixedOrPercent $maxSurge) - { - $this->maxSurge = $maxSurge; - } - /** - * @return Google_Service_Compute_FixedOrPercent - */ - public function getMaxSurge() - { - return $this->maxSurge; - } - /** - * @param Google_Service_Compute_FixedOrPercent - */ - public function setMaxUnavailable(Google_Service_Compute_FixedOrPercent $maxUnavailable) - { - $this->maxUnavailable = $maxUnavailable; - } - /** - * @return Google_Service_Compute_FixedOrPercent - */ - public function getMaxUnavailable() - { - return $this->maxUnavailable; - } - public function setMinimalAction($minimalAction) - { - $this->minimalAction = $minimalAction; - } - public function getMinimalAction() - { - return $this->minimalAction; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagerVersion.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagerVersion.php deleted file mode 100644 index d8b4d4cc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagerVersion.php +++ /dev/null @@ -1,55 +0,0 @@ -instanceTemplate = $instanceTemplate; - } - public function getInstanceTemplate() - { - return $this->instanceTemplate; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Compute_FixedOrPercent - */ - public function setTargetSize(Google_Service_Compute_FixedOrPercent $targetSize) - { - $this->targetSize = $targetSize; - } - /** - * @return Google_Service_Compute_FixedOrPercent - */ - public function getTargetSize() - { - return $this->targetSize; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagersAbandonInstancesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagersAbandonInstancesRequest.php deleted file mode 100644 index 447ff78b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagersAbandonInstancesRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -instances = $instances; - } - public function getInstances() - { - return $this->instances; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagersApplyUpdatesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagersApplyUpdatesRequest.php deleted file mode 100644 index 902a0d96..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagersApplyUpdatesRequest.php +++ /dev/null @@ -1,49 +0,0 @@ -instances = $instances; - } - public function getInstances() - { - return $this->instances; - } - public function setMinimalAction($minimalAction) - { - $this->minimalAction = $minimalAction; - } - public function getMinimalAction() - { - return $this->minimalAction; - } - public function setMostDisruptiveAllowedAction($mostDisruptiveAllowedAction) - { - $this->mostDisruptiveAllowedAction = $mostDisruptiveAllowedAction; - } - public function getMostDisruptiveAllowedAction() - { - return $this->mostDisruptiveAllowedAction; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagersCreateInstancesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagersCreateInstancesRequest.php deleted file mode 100644 index d55fc64d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagersCreateInstancesRequest.php +++ /dev/null @@ -1,38 +0,0 @@ -instances = $instances; - } - /** - * @return Google_Service_Compute_PerInstanceConfig - */ - public function getInstances() - { - return $this->instances; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagersDeleteInstancesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagersDeleteInstancesRequest.php deleted file mode 100644 index a9bbeea7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagersDeleteInstancesRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -instances = $instances; - } - public function getInstances() - { - return $this->instances; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagersListManagedInstancesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagersListManagedInstancesResponse.php deleted file mode 100644 index c80745e2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagersListManagedInstancesResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -managedInstances = $managedInstances; - } - /** - * @return Google_Service_Compute_ManagedInstance - */ - public function getManagedInstances() - { - return $this->managedInstances; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagersRecreateInstancesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagersRecreateInstancesRequest.php deleted file mode 100644 index 9db407b7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagersRecreateInstancesRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -instances = $instances; - } - public function getInstances() - { - return $this->instances; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagersScopedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagersScopedList.php deleted file mode 100644 index 0b89ee8d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagersScopedList.php +++ /dev/null @@ -1,54 +0,0 @@ -instanceGroupManagers = $instanceGroupManagers; - } - /** - * @return Google_Service_Compute_InstanceGroupManager - */ - public function getInstanceGroupManagers() - { - return $this->instanceGroupManagers; - } - /** - * @param Google_Service_Compute_InstanceGroupManagersScopedListWarning - */ - public function setWarning(Google_Service_Compute_InstanceGroupManagersScopedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_InstanceGroupManagersScopedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagersScopedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagersScopedListWarning.php deleted file mode 100644 index aeb3595d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagersScopedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_InstanceGroupManagersScopedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_InstanceGroupManagersScopedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagersScopedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagersScopedListWarningData.php deleted file mode 100644 index f4f3d804..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagersScopedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagersSetInstanceTemplateRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagersSetInstanceTemplateRequest.php deleted file mode 100644 index b2f0a15b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagersSetInstanceTemplateRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -instanceTemplate = $instanceTemplate; - } - public function getInstanceTemplate() - { - return $this->instanceTemplate; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagersSetTargetPoolsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagersSetTargetPoolsRequest.php deleted file mode 100644 index a72c3c9e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupManagersSetTargetPoolsRequest.php +++ /dev/null @@ -1,40 +0,0 @@ -fingerprint = $fingerprint; - } - public function getFingerprint() - { - return $this->fingerprint; - } - public function setTargetPools($targetPools) - { - $this->targetPools = $targetPools; - } - public function getTargetPools() - { - return $this->targetPools; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupsAddInstancesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupsAddInstancesRequest.php deleted file mode 100644 index 51d63463..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupsAddInstancesRequest.php +++ /dev/null @@ -1,38 +0,0 @@ -instances = $instances; - } - /** - * @return Google_Service_Compute_InstanceReference - */ - public function getInstances() - { - return $this->instances; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupsListInstances.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupsListInstances.php deleted file mode 100644 index 0dd0cfbf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupsListInstances.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_InstanceWithNamedPorts - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_InstanceWithNamedPorts - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_InstanceGroupsListInstancesWarning - */ - public function setWarning(Google_Service_Compute_InstanceGroupsListInstancesWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_InstanceGroupsListInstancesWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupsListInstancesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupsListInstancesRequest.php deleted file mode 100644 index 68c65c31..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupsListInstancesRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -instanceState = $instanceState; - } - public function getInstanceState() - { - return $this->instanceState; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupsListInstancesWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupsListInstancesWarning.php deleted file mode 100644 index 205c6a49..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupsListInstancesWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_InstanceGroupsListInstancesWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_InstanceGroupsListInstancesWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupsListInstancesWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupsListInstancesWarningData.php deleted file mode 100644 index 10ede841..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupsListInstancesWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupsRemoveInstancesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupsRemoveInstancesRequest.php deleted file mode 100644 index a82ed648..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupsRemoveInstancesRequest.php +++ /dev/null @@ -1,38 +0,0 @@ -instances = $instances; - } - /** - * @return Google_Service_Compute_InstanceReference - */ - public function getInstances() - { - return $this->instances; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupsScopedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupsScopedList.php deleted file mode 100644 index e37d1442..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupsScopedList.php +++ /dev/null @@ -1,54 +0,0 @@ -instanceGroups = $instanceGroups; - } - /** - * @return Google_Service_Compute_InstanceGroup - */ - public function getInstanceGroups() - { - return $this->instanceGroups; - } - /** - * @param Google_Service_Compute_InstanceGroupsScopedListWarning - */ - public function setWarning(Google_Service_Compute_InstanceGroupsScopedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_InstanceGroupsScopedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupsScopedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupsScopedListWarning.php deleted file mode 100644 index 63a94fdb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupsScopedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_InstanceGroupsScopedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_InstanceGroupsScopedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupsScopedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupsScopedListWarningData.php deleted file mode 100644 index 74e90408..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupsScopedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupsSetNamedPortsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupsSetNamedPortsRequest.php deleted file mode 100644 index 4f19d4e2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceGroupsSetNamedPortsRequest.php +++ /dev/null @@ -1,47 +0,0 @@ -fingerprint = $fingerprint; - } - public function getFingerprint() - { - return $this->fingerprint; - } - /** - * @param Google_Service_Compute_NamedPort - */ - public function setNamedPorts($namedPorts) - { - $this->namedPorts = $namedPorts; - } - /** - * @return Google_Service_Compute_NamedPort - */ - public function getNamedPorts() - { - return $this->namedPorts; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceList.php deleted file mode 100644 index 0dc42375..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceList.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_Instance - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_Instance - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_InstanceListWarning - */ - public function setWarning(Google_Service_Compute_InstanceListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_InstanceListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceListReferrers.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceListReferrers.php deleted file mode 100644 index 78648830..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceListReferrers.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_Reference - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_Reference - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_InstanceListReferrersWarning - */ - public function setWarning(Google_Service_Compute_InstanceListReferrersWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_InstanceListReferrersWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceListReferrersWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceListReferrersWarning.php deleted file mode 100644 index ce839e2b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceListReferrersWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_InstanceListReferrersWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_InstanceListReferrersWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceListReferrersWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceListReferrersWarningData.php deleted file mode 100644 index c7b6d259..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceListReferrersWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceListWarning.php deleted file mode 100644 index 360e18a1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_InstanceListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_InstanceListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceListWarningData.php deleted file mode 100644 index 5f8227f0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceMoveRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceMoveRequest.php deleted file mode 100644 index 7f4e5467..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceMoveRequest.php +++ /dev/null @@ -1,39 +0,0 @@ -destinationZone = $destinationZone; - } - public function getDestinationZone() - { - return $this->destinationZone; - } - public function setTargetInstance($targetInstance) - { - $this->targetInstance = $targetInstance; - } - public function getTargetInstance() - { - return $this->targetInstance; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceProperties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceProperties.php deleted file mode 100644 index fd220601..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceProperties.php +++ /dev/null @@ -1,211 +0,0 @@ -canIpForward = $canIpForward; - } - public function getCanIpForward() - { - return $this->canIpForward; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - /** - * @param Google_Service_Compute_AttachedDisk - */ - public function setDisks($disks) - { - $this->disks = $disks; - } - /** - * @return Google_Service_Compute_AttachedDisk - */ - public function getDisks() - { - return $this->disks; - } - /** - * @param Google_Service_Compute_AcceleratorConfig - */ - public function setGuestAccelerators($guestAccelerators) - { - $this->guestAccelerators = $guestAccelerators; - } - /** - * @return Google_Service_Compute_AcceleratorConfig - */ - public function getGuestAccelerators() - { - return $this->guestAccelerators; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setMachineType($machineType) - { - $this->machineType = $machineType; - } - public function getMachineType() - { - return $this->machineType; - } - /** - * @param Google_Service_Compute_Metadata - */ - public function setMetadata(Google_Service_Compute_Metadata $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_Compute_Metadata - */ - public function getMetadata() - { - return $this->metadata; - } - public function setMinCpuPlatform($minCpuPlatform) - { - $this->minCpuPlatform = $minCpuPlatform; - } - public function getMinCpuPlatform() - { - return $this->minCpuPlatform; - } - /** - * @param Google_Service_Compute_NetworkInterface - */ - public function setNetworkInterfaces($networkInterfaces) - { - $this->networkInterfaces = $networkInterfaces; - } - /** - * @return Google_Service_Compute_NetworkInterface - */ - public function getNetworkInterfaces() - { - return $this->networkInterfaces; - } - /** - * @param Google_Service_Compute_ReservationAffinity - */ - public function setReservationAffinity(Google_Service_Compute_ReservationAffinity $reservationAffinity) - { - $this->reservationAffinity = $reservationAffinity; - } - /** - * @return Google_Service_Compute_ReservationAffinity - */ - public function getReservationAffinity() - { - return $this->reservationAffinity; - } - /** - * @param Google_Service_Compute_Scheduling - */ - public function setScheduling(Google_Service_Compute_Scheduling $scheduling) - { - $this->scheduling = $scheduling; - } - /** - * @return Google_Service_Compute_Scheduling - */ - public function getScheduling() - { - return $this->scheduling; - } - /** - * @param Google_Service_Compute_ServiceAccount - */ - public function setServiceAccounts($serviceAccounts) - { - $this->serviceAccounts = $serviceAccounts; - } - /** - * @return Google_Service_Compute_ServiceAccount - */ - public function getServiceAccounts() - { - return $this->serviceAccounts; - } - /** - * @param Google_Service_Compute_ShieldedInstanceConfig - */ - public function setShieldedInstanceConfig(Google_Service_Compute_ShieldedInstanceConfig $shieldedInstanceConfig) - { - $this->shieldedInstanceConfig = $shieldedInstanceConfig; - } - /** - * @return Google_Service_Compute_ShieldedInstanceConfig - */ - public function getShieldedInstanceConfig() - { - return $this->shieldedInstanceConfig; - } - /** - * @param Google_Service_Compute_Tags - */ - public function setTags(Google_Service_Compute_Tags $tags) - { - $this->tags = $tags; - } - /** - * @return Google_Service_Compute_Tags - */ - public function getTags() - { - return $this->tags; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceReference.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceReference.php deleted file mode 100644 index 98284666..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceReference.php +++ /dev/null @@ -1,30 +0,0 @@ -instance = $instance; - } - public function getInstance() - { - return $this->instance; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceTemplate.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceTemplate.php deleted file mode 100644 index 0c4157d4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceTemplate.php +++ /dev/null @@ -1,116 +0,0 @@ -creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Compute_InstanceProperties - */ - public function setProperties(Google_Service_Compute_InstanceProperties $properties) - { - $this->properties = $properties; - } - /** - * @return Google_Service_Compute_InstanceProperties - */ - public function getProperties() - { - return $this->properties; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setSourceInstance($sourceInstance) - { - $this->sourceInstance = $sourceInstance; - } - public function getSourceInstance() - { - return $this->sourceInstance; - } - /** - * @param Google_Service_Compute_SourceInstanceParams - */ - public function setSourceInstanceParams(Google_Service_Compute_SourceInstanceParams $sourceInstanceParams) - { - $this->sourceInstanceParams = $sourceInstanceParams; - } - /** - * @return Google_Service_Compute_SourceInstanceParams - */ - public function getSourceInstanceParams() - { - return $this->sourceInstanceParams; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceTemplateList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceTemplateList.php deleted file mode 100644 index dedb958b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceTemplateList.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_InstanceTemplate - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_InstanceTemplate - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_InstanceTemplateListWarning - */ - public function setWarning(Google_Service_Compute_InstanceTemplateListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_InstanceTemplateListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceTemplateListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceTemplateListWarning.php deleted file mode 100644 index 33515e38..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceTemplateListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_InstanceTemplateListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_InstanceTemplateListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceTemplateListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceTemplateListWarningData.php deleted file mode 100644 index 8da5beff..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceTemplateListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceWithNamedPorts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceWithNamedPorts.php deleted file mode 100644 index bc333c79..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstanceWithNamedPorts.php +++ /dev/null @@ -1,56 +0,0 @@ -instance = $instance; - } - public function getInstance() - { - return $this->instance; - } - /** - * @param Google_Service_Compute_NamedPort - */ - public function setNamedPorts($namedPorts) - { - $this->namedPorts = $namedPorts; - } - /** - * @return Google_Service_Compute_NamedPort - */ - public function getNamedPorts() - { - return $this->namedPorts; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstancesScopedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstancesScopedList.php deleted file mode 100644 index a64b8604..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstancesScopedList.php +++ /dev/null @@ -1,54 +0,0 @@ -instances = $instances; - } - /** - * @return Google_Service_Compute_Instance - */ - public function getInstances() - { - return $this->instances; - } - /** - * @param Google_Service_Compute_InstancesScopedListWarning - */ - public function setWarning(Google_Service_Compute_InstancesScopedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_InstancesScopedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstancesScopedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstancesScopedListWarning.php deleted file mode 100644 index c8333f94..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstancesScopedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_InstancesScopedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_InstancesScopedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstancesScopedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstancesScopedListWarningData.php deleted file mode 100644 index 56638cd5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstancesScopedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstancesSetLabelsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstancesSetLabelsRequest.php deleted file mode 100644 index d2bed34f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstancesSetLabelsRequest.php +++ /dev/null @@ -1,39 +0,0 @@ -labelFingerprint = $labelFingerprint; - } - public function getLabelFingerprint() - { - return $this->labelFingerprint; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstancesSetMachineResourcesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstancesSetMachineResourcesRequest.php deleted file mode 100644 index 049b79ff..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstancesSetMachineResourcesRequest.php +++ /dev/null @@ -1,38 +0,0 @@ -guestAccelerators = $guestAccelerators; - } - /** - * @return Google_Service_Compute_AcceleratorConfig - */ - public function getGuestAccelerators() - { - return $this->guestAccelerators; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstancesSetMachineTypeRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstancesSetMachineTypeRequest.php deleted file mode 100644 index 4b973cb9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstancesSetMachineTypeRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -machineType = $machineType; - } - public function getMachineType() - { - return $this->machineType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstancesSetMinCpuPlatformRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstancesSetMinCpuPlatformRequest.php deleted file mode 100644 index 11941063..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstancesSetMinCpuPlatformRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -minCpuPlatform = $minCpuPlatform; - } - public function getMinCpuPlatform() - { - return $this->minCpuPlatform; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstancesSetServiceAccountRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstancesSetServiceAccountRequest.php deleted file mode 100644 index 4c33a459..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstancesSetServiceAccountRequest.php +++ /dev/null @@ -1,40 +0,0 @@ -email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setScopes($scopes) - { - $this->scopes = $scopes; - } - public function getScopes() - { - return $this->scopes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstancesStartWithEncryptionKeyRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstancesStartWithEncryptionKeyRequest.php deleted file mode 100644 index e96bf580..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InstancesStartWithEncryptionKeyRequest.php +++ /dev/null @@ -1,38 +0,0 @@ -disks = $disks; - } - /** - * @return Google_Service_Compute_CustomerEncryptionKeyProtectedDisk - */ - public function getDisks() - { - return $this->disks; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Int64RangeMatch.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Int64RangeMatch.php deleted file mode 100644 index 213e5788..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Int64RangeMatch.php +++ /dev/null @@ -1,39 +0,0 @@ -rangeEnd = $rangeEnd; - } - public function getRangeEnd() - { - return $this->rangeEnd; - } - public function setRangeStart($rangeStart) - { - $this->rangeStart = $rangeStart; - } - public function getRangeStart() - { - return $this->rangeStart; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Interconnect.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Interconnect.php deleted file mode 100644 index 235ea660..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Interconnect.php +++ /dev/null @@ -1,234 +0,0 @@ -adminEnabled = $adminEnabled; - } - public function getAdminEnabled() - { - return $this->adminEnabled; - } - /** - * @param Google_Service_Compute_InterconnectCircuitInfo - */ - public function setCircuitInfos($circuitInfos) - { - $this->circuitInfos = $circuitInfos; - } - /** - * @return Google_Service_Compute_InterconnectCircuitInfo - */ - public function getCircuitInfos() - { - return $this->circuitInfos; - } - public function setCreationTimestamp($creationTimestamp) - { - $this->creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setCustomerName($customerName) - { - $this->customerName = $customerName; - } - public function getCustomerName() - { - return $this->customerName; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - /** - * @param Google_Service_Compute_InterconnectOutageNotification - */ - public function setExpectedOutages($expectedOutages) - { - $this->expectedOutages = $expectedOutages; - } - /** - * @return Google_Service_Compute_InterconnectOutageNotification - */ - public function getExpectedOutages() - { - return $this->expectedOutages; - } - public function setGoogleIpAddress($googleIpAddress) - { - $this->googleIpAddress = $googleIpAddress; - } - public function getGoogleIpAddress() - { - return $this->googleIpAddress; - } - public function setGoogleReferenceId($googleReferenceId) - { - $this->googleReferenceId = $googleReferenceId; - } - public function getGoogleReferenceId() - { - return $this->googleReferenceId; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setInterconnectAttachments($interconnectAttachments) - { - $this->interconnectAttachments = $interconnectAttachments; - } - public function getInterconnectAttachments() - { - return $this->interconnectAttachments; - } - public function setInterconnectType($interconnectType) - { - $this->interconnectType = $interconnectType; - } - public function getInterconnectType() - { - return $this->interconnectType; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLinkType($linkType) - { - $this->linkType = $linkType; - } - public function getLinkType() - { - return $this->linkType; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNocContactEmail($nocContactEmail) - { - $this->nocContactEmail = $nocContactEmail; - } - public function getNocContactEmail() - { - return $this->nocContactEmail; - } - public function setOperationalStatus($operationalStatus) - { - $this->operationalStatus = $operationalStatus; - } - public function getOperationalStatus() - { - return $this->operationalStatus; - } - public function setPeerIpAddress($peerIpAddress) - { - $this->peerIpAddress = $peerIpAddress; - } - public function getPeerIpAddress() - { - return $this->peerIpAddress; - } - public function setProvisionedLinkCount($provisionedLinkCount) - { - $this->provisionedLinkCount = $provisionedLinkCount; - } - public function getProvisionedLinkCount() - { - return $this->provisionedLinkCount; - } - public function setRequestedLinkCount($requestedLinkCount) - { - $this->requestedLinkCount = $requestedLinkCount; - } - public function getRequestedLinkCount() - { - return $this->requestedLinkCount; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectAttachment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectAttachment.php deleted file mode 100644 index 65094dc0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectAttachment.php +++ /dev/null @@ -1,252 +0,0 @@ -adminEnabled = $adminEnabled; - } - public function getAdminEnabled() - { - return $this->adminEnabled; - } - public function setBandwidth($bandwidth) - { - $this->bandwidth = $bandwidth; - } - public function getBandwidth() - { - return $this->bandwidth; - } - public function setCandidateSubnets($candidateSubnets) - { - $this->candidateSubnets = $candidateSubnets; - } - public function getCandidateSubnets() - { - return $this->candidateSubnets; - } - public function setCloudRouterIpAddress($cloudRouterIpAddress) - { - $this->cloudRouterIpAddress = $cloudRouterIpAddress; - } - public function getCloudRouterIpAddress() - { - return $this->cloudRouterIpAddress; - } - public function setCreationTimestamp($creationTimestamp) - { - $this->creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setCustomerRouterIpAddress($customerRouterIpAddress) - { - $this->customerRouterIpAddress = $customerRouterIpAddress; - } - public function getCustomerRouterIpAddress() - { - return $this->customerRouterIpAddress; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setEdgeAvailabilityDomain($edgeAvailabilityDomain) - { - $this->edgeAvailabilityDomain = $edgeAvailabilityDomain; - } - public function getEdgeAvailabilityDomain() - { - return $this->edgeAvailabilityDomain; - } - public function setGoogleReferenceId($googleReferenceId) - { - $this->googleReferenceId = $googleReferenceId; - } - public function getGoogleReferenceId() - { - return $this->googleReferenceId; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setInterconnect($interconnect) - { - $this->interconnect = $interconnect; - } - public function getInterconnect() - { - return $this->interconnect; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOperationalStatus($operationalStatus) - { - $this->operationalStatus = $operationalStatus; - } - public function getOperationalStatus() - { - return $this->operationalStatus; - } - public function setPairingKey($pairingKey) - { - $this->pairingKey = $pairingKey; - } - public function getPairingKey() - { - return $this->pairingKey; - } - public function setPartnerAsn($partnerAsn) - { - $this->partnerAsn = $partnerAsn; - } - public function getPartnerAsn() - { - return $this->partnerAsn; - } - /** - * @param Google_Service_Compute_InterconnectAttachmentPartnerMetadata - */ - public function setPartnerMetadata(Google_Service_Compute_InterconnectAttachmentPartnerMetadata $partnerMetadata) - { - $this->partnerMetadata = $partnerMetadata; - } - /** - * @return Google_Service_Compute_InterconnectAttachmentPartnerMetadata - */ - public function getPartnerMetadata() - { - return $this->partnerMetadata; - } - /** - * @param Google_Service_Compute_InterconnectAttachmentPrivateInfo - */ - public function setPrivateInterconnectInfo(Google_Service_Compute_InterconnectAttachmentPrivateInfo $privateInterconnectInfo) - { - $this->privateInterconnectInfo = $privateInterconnectInfo; - } - /** - * @return Google_Service_Compute_InterconnectAttachmentPrivateInfo - */ - public function getPrivateInterconnectInfo() - { - return $this->privateInterconnectInfo; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - public function setRouter($router) - { - $this->router = $router; - } - public function getRouter() - { - return $this->router; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setVlanTag8021q($vlanTag8021q) - { - $this->vlanTag8021q = $vlanTag8021q; - } - public function getVlanTag8021q() - { - return $this->vlanTag8021q; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectAttachmentAggregatedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectAttachmentAggregatedList.php deleted file mode 100644 index f2c706c2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectAttachmentAggregatedList.php +++ /dev/null @@ -1,89 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_InterconnectAttachmentsScopedList - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_InterconnectAttachmentsScopedList - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_InterconnectAttachmentAggregatedListWarning - */ - public function setWarning(Google_Service_Compute_InterconnectAttachmentAggregatedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_InterconnectAttachmentAggregatedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectAttachmentAggregatedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectAttachmentAggregatedListWarning.php deleted file mode 100644 index 14b9ae8a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectAttachmentAggregatedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_InterconnectAttachmentAggregatedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_InterconnectAttachmentAggregatedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectAttachmentAggregatedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectAttachmentAggregatedListWarningData.php deleted file mode 100644 index cb2f5a34..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectAttachmentAggregatedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectAttachmentList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectAttachmentList.php deleted file mode 100644 index 82af5340..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectAttachmentList.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_InterconnectAttachment - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_InterconnectAttachment - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_InterconnectAttachmentListWarning - */ - public function setWarning(Google_Service_Compute_InterconnectAttachmentListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_InterconnectAttachmentListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectAttachmentListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectAttachmentListWarning.php deleted file mode 100644 index 6a73bd45..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectAttachmentListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_InterconnectAttachmentListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_InterconnectAttachmentListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectAttachmentListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectAttachmentListWarningData.php deleted file mode 100644 index effc5956..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectAttachmentListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectAttachmentPartnerMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectAttachmentPartnerMetadata.php deleted file mode 100644 index 0496df58..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectAttachmentPartnerMetadata.php +++ /dev/null @@ -1,48 +0,0 @@ -interconnectName = $interconnectName; - } - public function getInterconnectName() - { - return $this->interconnectName; - } - public function setPartnerName($partnerName) - { - $this->partnerName = $partnerName; - } - public function getPartnerName() - { - return $this->partnerName; - } - public function setPortalUrl($portalUrl) - { - $this->portalUrl = $portalUrl; - } - public function getPortalUrl() - { - return $this->portalUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectAttachmentPrivateInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectAttachmentPrivateInfo.php deleted file mode 100644 index 8a9e0c3f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectAttachmentPrivateInfo.php +++ /dev/null @@ -1,30 +0,0 @@ -tag8021q = $tag8021q; - } - public function getTag8021q() - { - return $this->tag8021q; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectAttachmentsScopedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectAttachmentsScopedList.php deleted file mode 100644 index ee1b015c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectAttachmentsScopedList.php +++ /dev/null @@ -1,54 +0,0 @@ -interconnectAttachments = $interconnectAttachments; - } - /** - * @return Google_Service_Compute_InterconnectAttachment - */ - public function getInterconnectAttachments() - { - return $this->interconnectAttachments; - } - /** - * @param Google_Service_Compute_InterconnectAttachmentsScopedListWarning - */ - public function setWarning(Google_Service_Compute_InterconnectAttachmentsScopedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_InterconnectAttachmentsScopedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectAttachmentsScopedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectAttachmentsScopedListWarning.php deleted file mode 100644 index fcb66f65..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectAttachmentsScopedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_InterconnectAttachmentsScopedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_InterconnectAttachmentsScopedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectAttachmentsScopedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectAttachmentsScopedListWarningData.php deleted file mode 100644 index 1286bf61..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectAttachmentsScopedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectCircuitInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectCircuitInfo.php deleted file mode 100644 index 4b09aafc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectCircuitInfo.php +++ /dev/null @@ -1,48 +0,0 @@ -customerDemarcId = $customerDemarcId; - } - public function getCustomerDemarcId() - { - return $this->customerDemarcId; - } - public function setGoogleCircuitId($googleCircuitId) - { - $this->googleCircuitId = $googleCircuitId; - } - public function getGoogleCircuitId() - { - return $this->googleCircuitId; - } - public function setGoogleDemarcId($googleDemarcId) - { - $this->googleDemarcId = $googleDemarcId; - } - public function getGoogleDemarcId() - { - return $this->googleDemarcId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectDiagnostics.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectDiagnostics.php deleted file mode 100644 index 2e03e1e4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectDiagnostics.php +++ /dev/null @@ -1,63 +0,0 @@ -arpCaches = $arpCaches; - } - /** - * @return Google_Service_Compute_InterconnectDiagnosticsARPEntry - */ - public function getArpCaches() - { - return $this->arpCaches; - } - /** - * @param Google_Service_Compute_InterconnectDiagnosticsLinkStatus - */ - public function setLinks($links) - { - $this->links = $links; - } - /** - * @return Google_Service_Compute_InterconnectDiagnosticsLinkStatus - */ - public function getLinks() - { - return $this->links; - } - public function setMacAddress($macAddress) - { - $this->macAddress = $macAddress; - } - public function getMacAddress() - { - return $this->macAddress; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectDiagnosticsARPEntry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectDiagnosticsARPEntry.php deleted file mode 100644 index c969fe48..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectDiagnosticsARPEntry.php +++ /dev/null @@ -1,39 +0,0 @@ -ipAddress = $ipAddress; - } - public function getIpAddress() - { - return $this->ipAddress; - } - public function setMacAddress($macAddress) - { - $this->macAddress = $macAddress; - } - public function getMacAddress() - { - return $this->macAddress; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectDiagnosticsLinkLACPStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectDiagnosticsLinkLACPStatus.php deleted file mode 100644 index 189518e9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectDiagnosticsLinkLACPStatus.php +++ /dev/null @@ -1,48 +0,0 @@ -googleSystemId = $googleSystemId; - } - public function getGoogleSystemId() - { - return $this->googleSystemId; - } - public function setNeighborSystemId($neighborSystemId) - { - $this->neighborSystemId = $neighborSystemId; - } - public function getNeighborSystemId() - { - return $this->neighborSystemId; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectDiagnosticsLinkOpticalPower.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectDiagnosticsLinkOpticalPower.php deleted file mode 100644 index 1b7d7f23..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectDiagnosticsLinkOpticalPower.php +++ /dev/null @@ -1,39 +0,0 @@ -state = $state; - } - public function getState() - { - return $this->state; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectDiagnosticsLinkStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectDiagnosticsLinkStatus.php deleted file mode 100644 index 478fb996..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectDiagnosticsLinkStatus.php +++ /dev/null @@ -1,104 +0,0 @@ -arpCaches = $arpCaches; - } - /** - * @return Google_Service_Compute_InterconnectDiagnosticsARPEntry - */ - public function getArpCaches() - { - return $this->arpCaches; - } - public function setCircuitId($circuitId) - { - $this->circuitId = $circuitId; - } - public function getCircuitId() - { - return $this->circuitId; - } - public function setGoogleDemarc($googleDemarc) - { - $this->googleDemarc = $googleDemarc; - } - public function getGoogleDemarc() - { - return $this->googleDemarc; - } - /** - * @param Google_Service_Compute_InterconnectDiagnosticsLinkLACPStatus - */ - public function setLacpStatus(Google_Service_Compute_InterconnectDiagnosticsLinkLACPStatus $lacpStatus) - { - $this->lacpStatus = $lacpStatus; - } - /** - * @return Google_Service_Compute_InterconnectDiagnosticsLinkLACPStatus - */ - public function getLacpStatus() - { - return $this->lacpStatus; - } - /** - * @param Google_Service_Compute_InterconnectDiagnosticsLinkOpticalPower - */ - public function setReceivingOpticalPower(Google_Service_Compute_InterconnectDiagnosticsLinkOpticalPower $receivingOpticalPower) - { - $this->receivingOpticalPower = $receivingOpticalPower; - } - /** - * @return Google_Service_Compute_InterconnectDiagnosticsLinkOpticalPower - */ - public function getReceivingOpticalPower() - { - return $this->receivingOpticalPower; - } - /** - * @param Google_Service_Compute_InterconnectDiagnosticsLinkOpticalPower - */ - public function setTransmittingOpticalPower(Google_Service_Compute_InterconnectDiagnosticsLinkOpticalPower $transmittingOpticalPower) - { - $this->transmittingOpticalPower = $transmittingOpticalPower; - } - /** - * @return Google_Service_Compute_InterconnectDiagnosticsLinkOpticalPower - */ - public function getTransmittingOpticalPower() - { - return $this->transmittingOpticalPower; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectList.php deleted file mode 100644 index 99c701fa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectList.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_Interconnect - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_Interconnect - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_InterconnectListWarning - */ - public function setWarning(Google_Service_Compute_InterconnectListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_InterconnectListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectListWarning.php deleted file mode 100644 index 77399ce9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_InterconnectListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_InterconnectListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectListWarningData.php deleted file mode 100644 index 21cdab89..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectLocation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectLocation.php deleted file mode 100644 index be142862..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectLocation.php +++ /dev/null @@ -1,164 +0,0 @@ -address = $address; - } - public function getAddress() - { - return $this->address; - } - public function setAvailabilityZone($availabilityZone) - { - $this->availabilityZone = $availabilityZone; - } - public function getAvailabilityZone() - { - return $this->availabilityZone; - } - public function setCity($city) - { - $this->city = $city; - } - public function getCity() - { - return $this->city; - } - public function setContinent($continent) - { - $this->continent = $continent; - } - public function getContinent() - { - return $this->continent; - } - public function setCreationTimestamp($creationTimestamp) - { - $this->creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setFacilityProvider($facilityProvider) - { - $this->facilityProvider = $facilityProvider; - } - public function getFacilityProvider() - { - return $this->facilityProvider; - } - public function setFacilityProviderFacilityId($facilityProviderFacilityId) - { - $this->facilityProviderFacilityId = $facilityProviderFacilityId; - } - public function getFacilityProviderFacilityId() - { - return $this->facilityProviderFacilityId; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPeeringdbFacilityId($peeringdbFacilityId) - { - $this->peeringdbFacilityId = $peeringdbFacilityId; - } - public function getPeeringdbFacilityId() - { - return $this->peeringdbFacilityId; - } - /** - * @param Google_Service_Compute_InterconnectLocationRegionInfo - */ - public function setRegionInfos($regionInfos) - { - $this->regionInfos = $regionInfos; - } - /** - * @return Google_Service_Compute_InterconnectLocationRegionInfo - */ - public function getRegionInfos() - { - return $this->regionInfos; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectLocationList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectLocationList.php deleted file mode 100644 index ca095a0e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectLocationList.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_InterconnectLocation - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_InterconnectLocation - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_InterconnectLocationListWarning - */ - public function setWarning(Google_Service_Compute_InterconnectLocationListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_InterconnectLocationListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectLocationListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectLocationListWarning.php deleted file mode 100644 index 3c49796b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectLocationListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_InterconnectLocationListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_InterconnectLocationListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectLocationListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectLocationListWarningData.php deleted file mode 100644 index cdb823d9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectLocationListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectLocationRegionInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectLocationRegionInfo.php deleted file mode 100644 index 2f9c4ad6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectLocationRegionInfo.php +++ /dev/null @@ -1,48 +0,0 @@ -expectedRttMs = $expectedRttMs; - } - public function getExpectedRttMs() - { - return $this->expectedRttMs; - } - public function setLocationPresence($locationPresence) - { - $this->locationPresence = $locationPresence; - } - public function getLocationPresence() - { - return $this->locationPresence; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectOutageNotification.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectOutageNotification.php deleted file mode 100644 index 2838dee2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectOutageNotification.php +++ /dev/null @@ -1,94 +0,0 @@ -affectedCircuits = $affectedCircuits; - } - public function getAffectedCircuits() - { - return $this->affectedCircuits; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setIssueType($issueType) - { - $this->issueType = $issueType; - } - public function getIssueType() - { - return $this->issueType; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setSource($source) - { - $this->source = $source; - } - public function getSource() - { - return $this->source; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectsGetDiagnosticsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectsGetDiagnosticsResponse.php deleted file mode 100644 index 4ae08548..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/InterconnectsGetDiagnosticsResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -result = $result; - } - /** - * @return Google_Service_Compute_InterconnectDiagnostics - */ - public function getResult() - { - return $this->result; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/License.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/License.php deleted file mode 100644 index 13e5219c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/License.php +++ /dev/null @@ -1,118 +0,0 @@ -chargesUseFee = $chargesUseFee; - } - public function getChargesUseFee() - { - return $this->chargesUseFee; - } - public function setCreationTimestamp($creationTimestamp) - { - $this->creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - 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 setLicenseCode($licenseCode) - { - $this->licenseCode = $licenseCode; - } - public function getLicenseCode() - { - return $this->licenseCode; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Compute_LicenseResourceRequirements - */ - public function setResourceRequirements(Google_Service_Compute_LicenseResourceRequirements $resourceRequirements) - { - $this->resourceRequirements = $resourceRequirements; - } - /** - * @return Google_Service_Compute_LicenseResourceRequirements - */ - public function getResourceRequirements() - { - return $this->resourceRequirements; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setTransferable($transferable) - { - $this->transferable = $transferable; - } - public function getTransferable() - { - return $this->transferable; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/LicenseCode.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/LicenseCode.php deleted file mode 100644 index 02531b08..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/LicenseCode.php +++ /dev/null @@ -1,110 +0,0 @@ -creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - 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; - } - /** - * @param Google_Service_Compute_LicenseCodeLicenseAlias - */ - public function setLicenseAlias($licenseAlias) - { - $this->licenseAlias = $licenseAlias; - } - /** - * @return Google_Service_Compute_LicenseCodeLicenseAlias - */ - public function getLicenseAlias() - { - return $this->licenseAlias; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setTransferable($transferable) - { - $this->transferable = $transferable; - } - public function getTransferable() - { - return $this->transferable; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/LicenseCodeLicenseAlias.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/LicenseCodeLicenseAlias.php deleted file mode 100644 index 1a6b79b8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/LicenseCodeLicenseAlias.php +++ /dev/null @@ -1,39 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/LicenseResourceRequirements.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/LicenseResourceRequirements.php deleted file mode 100644 index 6de19987..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/LicenseResourceRequirements.php +++ /dev/null @@ -1,39 +0,0 @@ -minGuestCpuCount = $minGuestCpuCount; - } - public function getMinGuestCpuCount() - { - return $this->minGuestCpuCount; - } - public function setMinMemoryMb($minMemoryMb) - { - $this->minMemoryMb = $minMemoryMb; - } - public function getMinMemoryMb() - { - return $this->minMemoryMb; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/LicensesListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/LicensesListResponse.php deleted file mode 100644 index eeb5b085..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/LicensesListResponse.php +++ /dev/null @@ -1,81 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_License - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_License - */ - public function getItems() - { - return $this->items; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_LicensesListResponseWarning - */ - public function setWarning(Google_Service_Compute_LicensesListResponseWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_LicensesListResponseWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/LicensesListResponseWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/LicensesListResponseWarning.php deleted file mode 100644 index e9e5503a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/LicensesListResponseWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_LicensesListResponseWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_LicensesListResponseWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/LicensesListResponseWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/LicensesListResponseWarningData.php deleted file mode 100644 index 8755e722..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/LicensesListResponseWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/LogConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/LogConfig.php deleted file mode 100644 index 7e09fbf1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/LogConfig.php +++ /dev/null @@ -1,69 +0,0 @@ -cloudAudit = $cloudAudit; - } - /** - * @return Google_Service_Compute_LogConfigCloudAuditOptions - */ - public function getCloudAudit() - { - return $this->cloudAudit; - } - /** - * @param Google_Service_Compute_LogConfigCounterOptions - */ - public function setCounter(Google_Service_Compute_LogConfigCounterOptions $counter) - { - $this->counter = $counter; - } - /** - * @return Google_Service_Compute_LogConfigCounterOptions - */ - public function getCounter() - { - return $this->counter; - } - /** - * @param Google_Service_Compute_LogConfigDataAccessOptions - */ - public function setDataAccess(Google_Service_Compute_LogConfigDataAccessOptions $dataAccess) - { - $this->dataAccess = $dataAccess; - } - /** - * @return Google_Service_Compute_LogConfigDataAccessOptions - */ - public function getDataAccess() - { - return $this->dataAccess; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/LogConfigCloudAuditOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/LogConfigCloudAuditOptions.php deleted file mode 100644 index f6654456..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/LogConfigCloudAuditOptions.php +++ /dev/null @@ -1,46 +0,0 @@ -authorizationLoggingOptions = $authorizationLoggingOptions; - } - /** - * @return Google_Service_Compute_AuthorizationLoggingOptions - */ - public function getAuthorizationLoggingOptions() - { - return $this->authorizationLoggingOptions; - } - public function setLogName($logName) - { - $this->logName = $logName; - } - public function getLogName() - { - return $this->logName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/LogConfigCounterOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/LogConfigCounterOptions.php deleted file mode 100644 index 8ec7daa8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/LogConfigCounterOptions.php +++ /dev/null @@ -1,56 +0,0 @@ -customFields = $customFields; - } - /** - * @return Google_Service_Compute_LogConfigCounterOptionsCustomField - */ - public function getCustomFields() - { - return $this->customFields; - } - public function setField($field) - { - $this->field = $field; - } - public function getField() - { - return $this->field; - } - public function setMetric($metric) - { - $this->metric = $metric; - } - public function getMetric() - { - return $this->metric; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/LogConfigCounterOptionsCustomField.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/LogConfigCounterOptionsCustomField.php deleted file mode 100644 index bd6650a9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/LogConfigCounterOptionsCustomField.php +++ /dev/null @@ -1,39 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/LogConfigDataAccessOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/LogConfigDataAccessOptions.php deleted file mode 100644 index 7a692c3a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/LogConfigDataAccessOptions.php +++ /dev/null @@ -1,30 +0,0 @@ -logMode = $logMode; - } - public function getLogMode() - { - return $this->logMode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/MachineType.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/MachineType.php deleted file mode 100644 index c2d2a141..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/MachineType.php +++ /dev/null @@ -1,171 +0,0 @@ -creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - /** - * @param Google_Service_Compute_DeprecationStatus - */ - public function setDeprecated(Google_Service_Compute_DeprecationStatus $deprecated) - { - $this->deprecated = $deprecated; - } - /** - * @return Google_Service_Compute_DeprecationStatus - */ - public function getDeprecated() - { - return $this->deprecated; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setGuestCpus($guestCpus) - { - $this->guestCpus = $guestCpus; - } - public function getGuestCpus() - { - return $this->guestCpus; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setImageSpaceGb($imageSpaceGb) - { - $this->imageSpaceGb = $imageSpaceGb; - } - public function getImageSpaceGb() - { - return $this->imageSpaceGb; - } - public function setIsSharedCpu($isSharedCpu) - { - $this->isSharedCpu = $isSharedCpu; - } - public function getIsSharedCpu() - { - return $this->isSharedCpu; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setMaximumPersistentDisks($maximumPersistentDisks) - { - $this->maximumPersistentDisks = $maximumPersistentDisks; - } - public function getMaximumPersistentDisks() - { - return $this->maximumPersistentDisks; - } - public function setMaximumPersistentDisksSizeGb($maximumPersistentDisksSizeGb) - { - $this->maximumPersistentDisksSizeGb = $maximumPersistentDisksSizeGb; - } - public function getMaximumPersistentDisksSizeGb() - { - return $this->maximumPersistentDisksSizeGb; - } - public function setMemoryMb($memoryMb) - { - $this->memoryMb = $memoryMb; - } - public function getMemoryMb() - { - return $this->memoryMb; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Compute_MachineTypeScratchDisks - */ - public function setScratchDisks($scratchDisks) - { - $this->scratchDisks = $scratchDisks; - } - /** - * @return Google_Service_Compute_MachineTypeScratchDisks - */ - public function getScratchDisks() - { - return $this->scratchDisks; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setZone($zone) - { - $this->zone = $zone; - } - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/MachineTypeAggregatedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/MachineTypeAggregatedList.php deleted file mode 100644 index b2c68bdc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/MachineTypeAggregatedList.php +++ /dev/null @@ -1,89 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_MachineTypesScopedList - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_MachineTypesScopedList - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_MachineTypeAggregatedListWarning - */ - public function setWarning(Google_Service_Compute_MachineTypeAggregatedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_MachineTypeAggregatedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/MachineTypeAggregatedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/MachineTypeAggregatedListWarning.php deleted file mode 100644 index 9d717284..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/MachineTypeAggregatedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_MachineTypeAggregatedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_MachineTypeAggregatedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/MachineTypeAggregatedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/MachineTypeAggregatedListWarningData.php deleted file mode 100644 index 508711d3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/MachineTypeAggregatedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/MachineTypeList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/MachineTypeList.php deleted file mode 100644 index 1666682f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/MachineTypeList.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_MachineType - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_MachineType - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_MachineTypeListWarning - */ - public function setWarning(Google_Service_Compute_MachineTypeListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_MachineTypeListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/MachineTypeListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/MachineTypeListWarning.php deleted file mode 100644 index 9d24ea09..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/MachineTypeListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_MachineTypeListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_MachineTypeListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/MachineTypeListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/MachineTypeListWarningData.php deleted file mode 100644 index b06906b7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/MachineTypeListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/MachineTypeScratchDisks.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/MachineTypeScratchDisks.php deleted file mode 100644 index ba4e5dc4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/MachineTypeScratchDisks.php +++ /dev/null @@ -1,30 +0,0 @@ -diskGb = $diskGb; - } - public function getDiskGb() - { - return $this->diskGb; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/MachineTypesScopedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/MachineTypesScopedList.php deleted file mode 100644 index 06ce4f55..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/MachineTypesScopedList.php +++ /dev/null @@ -1,54 +0,0 @@ -machineTypes = $machineTypes; - } - /** - * @return Google_Service_Compute_MachineType - */ - public function getMachineTypes() - { - return $this->machineTypes; - } - /** - * @param Google_Service_Compute_MachineTypesScopedListWarning - */ - public function setWarning(Google_Service_Compute_MachineTypesScopedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_MachineTypesScopedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/MachineTypesScopedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/MachineTypesScopedListWarning.php deleted file mode 100644 index ae54ac58..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/MachineTypesScopedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_MachineTypesScopedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_MachineTypesScopedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/MachineTypesScopedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/MachineTypesScopedListWarningData.php deleted file mode 100644 index cad9db03..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/MachineTypesScopedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ManagedInstance.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ManagedInstance.php deleted file mode 100644 index 89fa3632..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ManagedInstance.php +++ /dev/null @@ -1,106 +0,0 @@ -currentAction = $currentAction; - } - public function getCurrentAction() - { - return $this->currentAction; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setInstance($instance) - { - $this->instance = $instance; - } - public function getInstance() - { - return $this->instance; - } - /** - * @param Google_Service_Compute_ManagedInstanceInstanceHealth - */ - public function setInstanceHealth($instanceHealth) - { - $this->instanceHealth = $instanceHealth; - } - /** - * @return Google_Service_Compute_ManagedInstanceInstanceHealth - */ - public function getInstanceHealth() - { - return $this->instanceHealth; - } - public function setInstanceStatus($instanceStatus) - { - $this->instanceStatus = $instanceStatus; - } - public function getInstanceStatus() - { - return $this->instanceStatus; - } - /** - * @param Google_Service_Compute_ManagedInstanceLastAttempt - */ - public function setLastAttempt(Google_Service_Compute_ManagedInstanceLastAttempt $lastAttempt) - { - $this->lastAttempt = $lastAttempt; - } - /** - * @return Google_Service_Compute_ManagedInstanceLastAttempt - */ - public function getLastAttempt() - { - return $this->lastAttempt; - } - /** - * @param Google_Service_Compute_ManagedInstanceVersion - */ - public function setVersion(Google_Service_Compute_ManagedInstanceVersion $version) - { - $this->version = $version; - } - /** - * @return Google_Service_Compute_ManagedInstanceVersion - */ - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ManagedInstanceInstanceHealth.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ManagedInstanceInstanceHealth.php deleted file mode 100644 index 031225a9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ManagedInstanceInstanceHealth.php +++ /dev/null @@ -1,39 +0,0 @@ -detailedHealthState = $detailedHealthState; - } - public function getDetailedHealthState() - { - return $this->detailedHealthState; - } - public function setHealthCheck($healthCheck) - { - $this->healthCheck = $healthCheck; - } - public function getHealthCheck() - { - return $this->healthCheck; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ManagedInstanceLastAttempt.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ManagedInstanceLastAttempt.php deleted file mode 100644 index 0410a5a2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ManagedInstanceLastAttempt.php +++ /dev/null @@ -1,37 +0,0 @@ -errors = $errors; - } - /** - * @return Google_Service_Compute_ManagedInstanceLastAttemptErrors - */ - public function getErrors() - { - return $this->errors; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ManagedInstanceLastAttemptErrors.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ManagedInstanceLastAttemptErrors.php deleted file mode 100644 index b14612fa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ManagedInstanceLastAttemptErrors.php +++ /dev/null @@ -1,38 +0,0 @@ -errors = $errors; - } - /** - * @return Google_Service_Compute_ManagedInstanceLastAttemptErrorsErrors - */ - public function getErrors() - { - return $this->errors; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ManagedInstanceLastAttemptErrorsErrors.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ManagedInstanceLastAttemptErrorsErrors.php deleted file mode 100644 index 3ba16925..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ManagedInstanceLastAttemptErrorsErrors.php +++ /dev/null @@ -1,48 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ManagedInstanceVersion.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ManagedInstanceVersion.php deleted file mode 100644 index 94b8ba98..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ManagedInstanceVersion.php +++ /dev/null @@ -1,39 +0,0 @@ -instanceTemplate = $instanceTemplate; - } - public function getInstanceTemplate() - { - return $this->instanceTemplate; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Metadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Metadata.php deleted file mode 100644 index a335c4a1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Metadata.php +++ /dev/null @@ -1,56 +0,0 @@ -fingerprint = $fingerprint; - } - public function getFingerprint() - { - return $this->fingerprint; - } - /** - * @param Google_Service_Compute_MetadataItems - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_MetadataItems - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/MetadataFilter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/MetadataFilter.php deleted file mode 100644 index 377a0b9b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/MetadataFilter.php +++ /dev/null @@ -1,47 +0,0 @@ -filterLabels = $filterLabels; - } - /** - * @return Google_Service_Compute_MetadataFilterLabelMatch - */ - public function getFilterLabels() - { - return $this->filterLabels; - } - public function setFilterMatchCriteria($filterMatchCriteria) - { - $this->filterMatchCriteria = $filterMatchCriteria; - } - public function getFilterMatchCriteria() - { - return $this->filterMatchCriteria; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/MetadataFilterLabelMatch.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/MetadataFilterLabelMatch.php deleted file mode 100644 index 71540a21..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/MetadataFilterLabelMatch.php +++ /dev/null @@ -1,39 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/MetadataItems.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/MetadataItems.php deleted file mode 100644 index 74e3ee00..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/MetadataItems.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NamedPort.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NamedPort.php deleted file mode 100644 index fa03484a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NamedPort.php +++ /dev/null @@ -1,39 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setPort($port) - { - $this->port = $port; - } - public function getPort() - { - return $this->port; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Network.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Network.php deleted file mode 100644 index e590fac2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Network.php +++ /dev/null @@ -1,147 +0,0 @@ - "IPv4Range", - ); - public $iPv4Range; - public $autoCreateSubnetworks; - public $creationTimestamp; - public $description; - public $gatewayIPv4; - public $id; - public $kind; - public $name; - protected $peeringsType = 'Google_Service_Compute_NetworkPeering'; - protected $peeringsDataType = 'array'; - protected $routingConfigType = 'Google_Service_Compute_NetworkRoutingConfig'; - protected $routingConfigDataType = ''; - public $selfLink; - public $subnetworks; - - public function setIPv4Range($iPv4Range) - { - $this->iPv4Range = $iPv4Range; - } - public function getIPv4Range() - { - return $this->iPv4Range; - } - public function setAutoCreateSubnetworks($autoCreateSubnetworks) - { - $this->autoCreateSubnetworks = $autoCreateSubnetworks; - } - public function getAutoCreateSubnetworks() - { - return $this->autoCreateSubnetworks; - } - public function setCreationTimestamp($creationTimestamp) - { - $this->creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setGatewayIPv4($gatewayIPv4) - { - $this->gatewayIPv4 = $gatewayIPv4; - } - public function getGatewayIPv4() - { - return $this->gatewayIPv4; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Compute_NetworkPeering - */ - public function setPeerings($peerings) - { - $this->peerings = $peerings; - } - /** - * @return Google_Service_Compute_NetworkPeering - */ - public function getPeerings() - { - return $this->peerings; - } - /** - * @param Google_Service_Compute_NetworkRoutingConfig - */ - public function setRoutingConfig(Google_Service_Compute_NetworkRoutingConfig $routingConfig) - { - $this->routingConfig = $routingConfig; - } - /** - * @return Google_Service_Compute_NetworkRoutingConfig - */ - public function getRoutingConfig() - { - return $this->routingConfig; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setSubnetworks($subnetworks) - { - $this->subnetworks = $subnetworks; - } - public function getSubnetworks() - { - return $this->subnetworks; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkEndpoint.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkEndpoint.php deleted file mode 100644 index cf54481c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkEndpoint.php +++ /dev/null @@ -1,48 +0,0 @@ -instance = $instance; - } - public function getInstance() - { - return $this->instance; - } - public function setIpAddress($ipAddress) - { - $this->ipAddress = $ipAddress; - } - public function getIpAddress() - { - return $this->ipAddress; - } - public function setPort($port) - { - $this->port = $port; - } - public function getPort() - { - return $this->port; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkEndpointGroup.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkEndpointGroup.php deleted file mode 100644 index 0bc24f56..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkEndpointGroup.php +++ /dev/null @@ -1,129 +0,0 @@ -creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setDefaultPort($defaultPort) - { - $this->defaultPort = $defaultPort; - } - public function getDefaultPort() - { - return $this->defaultPort; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNetwork($network) - { - $this->network = $network; - } - public function getNetwork() - { - return $this->network; - } - public function setNetworkEndpointType($networkEndpointType) - { - $this->networkEndpointType = $networkEndpointType; - } - public function getNetworkEndpointType() - { - return $this->networkEndpointType; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setSize($size) - { - $this->size = $size; - } - public function getSize() - { - return $this->size; - } - public function setSubnetwork($subnetwork) - { - $this->subnetwork = $subnetwork; - } - public function getSubnetwork() - { - return $this->subnetwork; - } - public function setZone($zone) - { - $this->zone = $zone; - } - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkEndpointGroupAggregatedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkEndpointGroupAggregatedList.php deleted file mode 100644 index 2bade0f9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkEndpointGroupAggregatedList.php +++ /dev/null @@ -1,89 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_NetworkEndpointGroupsScopedList - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_NetworkEndpointGroupsScopedList - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_NetworkEndpointGroupAggregatedListWarning - */ - public function setWarning(Google_Service_Compute_NetworkEndpointGroupAggregatedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_NetworkEndpointGroupAggregatedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkEndpointGroupAggregatedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkEndpointGroupAggregatedListWarning.php deleted file mode 100644 index e2779852..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkEndpointGroupAggregatedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_NetworkEndpointGroupAggregatedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_NetworkEndpointGroupAggregatedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkEndpointGroupAggregatedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkEndpointGroupAggregatedListWarningData.php deleted file mode 100644 index 42d01959..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkEndpointGroupAggregatedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkEndpointGroupList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkEndpointGroupList.php deleted file mode 100644 index 6ea8b5e4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkEndpointGroupList.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_NetworkEndpointGroup - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_NetworkEndpointGroup - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_NetworkEndpointGroupListWarning - */ - public function setWarning(Google_Service_Compute_NetworkEndpointGroupListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_NetworkEndpointGroupListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkEndpointGroupListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkEndpointGroupListWarning.php deleted file mode 100644 index 09d3e6f2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkEndpointGroupListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_NetworkEndpointGroupListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_NetworkEndpointGroupListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkEndpointGroupListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkEndpointGroupListWarningData.php deleted file mode 100644 index fde6d03f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkEndpointGroupListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkEndpointGroupsAttachEndpointsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkEndpointGroupsAttachEndpointsRequest.php deleted file mode 100644 index a604765e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkEndpointGroupsAttachEndpointsRequest.php +++ /dev/null @@ -1,38 +0,0 @@ -networkEndpoints = $networkEndpoints; - } - /** - * @return Google_Service_Compute_NetworkEndpoint - */ - public function getNetworkEndpoints() - { - return $this->networkEndpoints; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkEndpointGroupsDetachEndpointsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkEndpointGroupsDetachEndpointsRequest.php deleted file mode 100644 index d45dea0e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkEndpointGroupsDetachEndpointsRequest.php +++ /dev/null @@ -1,38 +0,0 @@ -networkEndpoints = $networkEndpoints; - } - /** - * @return Google_Service_Compute_NetworkEndpoint - */ - public function getNetworkEndpoints() - { - return $this->networkEndpoints; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkEndpointGroupsListEndpointsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkEndpointGroupsListEndpointsRequest.php deleted file mode 100644 index a96c945d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkEndpointGroupsListEndpointsRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -healthStatus = $healthStatus; - } - public function getHealthStatus() - { - return $this->healthStatus; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkEndpointGroupsListNetworkEndpoints.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkEndpointGroupsListNetworkEndpoints.php deleted file mode 100644 index c7ac7c0c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkEndpointGroupsListNetworkEndpoints.php +++ /dev/null @@ -1,81 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_NetworkEndpointWithHealthStatus - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_NetworkEndpointWithHealthStatus - */ - public function getItems() - { - return $this->items; - } - 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_Compute_NetworkEndpointGroupsListNetworkEndpointsWarning - */ - public function setWarning(Google_Service_Compute_NetworkEndpointGroupsListNetworkEndpointsWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_NetworkEndpointGroupsListNetworkEndpointsWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkEndpointGroupsListNetworkEndpointsWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkEndpointGroupsListNetworkEndpointsWarning.php deleted file mode 100644 index 06ab9b82..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkEndpointGroupsListNetworkEndpointsWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_NetworkEndpointGroupsListNetworkEndpointsWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_NetworkEndpointGroupsListNetworkEndpointsWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkEndpointGroupsListNetworkEndpointsWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkEndpointGroupsListNetworkEndpointsWarningData.php deleted file mode 100644 index 4ee94371..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkEndpointGroupsListNetworkEndpointsWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkEndpointGroupsScopedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkEndpointGroupsScopedList.php deleted file mode 100644 index 181d0409..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkEndpointGroupsScopedList.php +++ /dev/null @@ -1,54 +0,0 @@ -networkEndpointGroups = $networkEndpointGroups; - } - /** - * @return Google_Service_Compute_NetworkEndpointGroup - */ - public function getNetworkEndpointGroups() - { - return $this->networkEndpointGroups; - } - /** - * @param Google_Service_Compute_NetworkEndpointGroupsScopedListWarning - */ - public function setWarning(Google_Service_Compute_NetworkEndpointGroupsScopedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_NetworkEndpointGroupsScopedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkEndpointGroupsScopedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkEndpointGroupsScopedListWarning.php deleted file mode 100644 index 61276d10..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkEndpointGroupsScopedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_NetworkEndpointGroupsScopedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_NetworkEndpointGroupsScopedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkEndpointGroupsScopedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkEndpointGroupsScopedListWarningData.php deleted file mode 100644 index 7b0d95dc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkEndpointGroupsScopedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkEndpointWithHealthStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkEndpointWithHealthStatus.php deleted file mode 100644 index d918523a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkEndpointWithHealthStatus.php +++ /dev/null @@ -1,54 +0,0 @@ -healths = $healths; - } - /** - * @return Google_Service_Compute_HealthStatusForNetworkEndpoint - */ - public function getHealths() - { - return $this->healths; - } - /** - * @param Google_Service_Compute_NetworkEndpoint - */ - public function setNetworkEndpoint(Google_Service_Compute_NetworkEndpoint $networkEndpoint) - { - $this->networkEndpoint = $networkEndpoint; - } - /** - * @return Google_Service_Compute_NetworkEndpoint - */ - public function getNetworkEndpoint() - { - return $this->networkEndpoint; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkInterface.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkInterface.php deleted file mode 100644 index 832169d1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkInterface.php +++ /dev/null @@ -1,108 +0,0 @@ -accessConfigs = $accessConfigs; - } - /** - * @return Google_Service_Compute_AccessConfig - */ - public function getAccessConfigs() - { - return $this->accessConfigs; - } - /** - * @param Google_Service_Compute_AliasIpRange - */ - public function setAliasIpRanges($aliasIpRanges) - { - $this->aliasIpRanges = $aliasIpRanges; - } - /** - * @return Google_Service_Compute_AliasIpRange - */ - public function getAliasIpRanges() - { - return $this->aliasIpRanges; - } - public function setFingerprint($fingerprint) - { - $this->fingerprint = $fingerprint; - } - public function getFingerprint() - { - return $this->fingerprint; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNetwork($network) - { - $this->network = $network; - } - public function getNetwork() - { - return $this->network; - } - public function setNetworkIP($networkIP) - { - $this->networkIP = $networkIP; - } - public function getNetworkIP() - { - return $this->networkIP; - } - public function setSubnetwork($subnetwork) - { - $this->subnetwork = $subnetwork; - } - public function getSubnetwork() - { - return $this->subnetwork; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkList.php deleted file mode 100644 index e478db66..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkList.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_Network - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_Network - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_NetworkListWarning - */ - public function setWarning(Google_Service_Compute_NetworkListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_NetworkListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkListWarning.php deleted file mode 100644 index 3db81864..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_NetworkListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_NetworkListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkListWarningData.php deleted file mode 100644 index 51c5f52b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkPeering.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkPeering.php deleted file mode 100644 index 3119c2d8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkPeering.php +++ /dev/null @@ -1,93 +0,0 @@ -autoCreateRoutes = $autoCreateRoutes; - } - public function getAutoCreateRoutes() - { - return $this->autoCreateRoutes; - } - public function setExchangeSubnetRoutes($exchangeSubnetRoutes) - { - $this->exchangeSubnetRoutes = $exchangeSubnetRoutes; - } - public function getExchangeSubnetRoutes() - { - return $this->exchangeSubnetRoutes; - } - public function setExportCustomRoutes($exportCustomRoutes) - { - $this->exportCustomRoutes = $exportCustomRoutes; - } - public function getExportCustomRoutes() - { - return $this->exportCustomRoutes; - } - public function setImportCustomRoutes($importCustomRoutes) - { - $this->importCustomRoutes = $importCustomRoutes; - } - public function getImportCustomRoutes() - { - return $this->importCustomRoutes; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNetwork($network) - { - $this->network = $network; - } - public function getNetwork() - { - return $this->network; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setStateDetails($stateDetails) - { - $this->stateDetails = $stateDetails; - } - public function getStateDetails() - { - return $this->stateDetails; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkRoutingConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkRoutingConfig.php deleted file mode 100644 index 8c59dd9f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworkRoutingConfig.php +++ /dev/null @@ -1,30 +0,0 @@ -routingMode = $routingMode; - } - public function getRoutingMode() - { - return $this->routingMode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworksAddPeeringRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworksAddPeeringRequest.php deleted file mode 100644 index 9c8b5a59..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworksAddPeeringRequest.php +++ /dev/null @@ -1,64 +0,0 @@ -autoCreateRoutes = $autoCreateRoutes; - } - public function getAutoCreateRoutes() - { - return $this->autoCreateRoutes; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Compute_NetworkPeering - */ - public function setNetworkPeering(Google_Service_Compute_NetworkPeering $networkPeering) - { - $this->networkPeering = $networkPeering; - } - /** - * @return Google_Service_Compute_NetworkPeering - */ - public function getNetworkPeering() - { - return $this->networkPeering; - } - public function setPeerNetwork($peerNetwork) - { - $this->peerNetwork = $peerNetwork; - } - public function getPeerNetwork() - { - return $this->peerNetwork; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworksRemovePeeringRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworksRemovePeeringRequest.php deleted file mode 100644 index b2192bd8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworksRemovePeeringRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworksUpdatePeeringRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworksUpdatePeeringRequest.php deleted file mode 100644 index 2426b509..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NetworksUpdatePeeringRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -networkPeering = $networkPeering; - } - /** - * @return Google_Service_Compute_NetworkPeering - */ - public function getNetworkPeering() - { - return $this->networkPeering; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeGroup.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeGroup.php deleted file mode 100644 index 0afcb119..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeGroup.php +++ /dev/null @@ -1,111 +0,0 @@ -creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNodeTemplate($nodeTemplate) - { - $this->nodeTemplate = $nodeTemplate; - } - public function getNodeTemplate() - { - return $this->nodeTemplate; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setSize($size) - { - $this->size = $size; - } - public function getSize() - { - return $this->size; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setZone($zone) - { - $this->zone = $zone; - } - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeGroupAggregatedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeGroupAggregatedList.php deleted file mode 100644 index 620845ce..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeGroupAggregatedList.php +++ /dev/null @@ -1,89 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_NodeGroupsScopedList - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_NodeGroupsScopedList - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_NodeGroupAggregatedListWarning - */ - public function setWarning(Google_Service_Compute_NodeGroupAggregatedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_NodeGroupAggregatedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeGroupAggregatedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeGroupAggregatedListWarning.php deleted file mode 100644 index 884d15aa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeGroupAggregatedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_NodeGroupAggregatedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_NodeGroupAggregatedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeGroupAggregatedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeGroupAggregatedListWarningData.php deleted file mode 100644 index c0f1a78b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeGroupAggregatedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeGroupList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeGroupList.php deleted file mode 100644 index f7047a8e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeGroupList.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_NodeGroup - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_NodeGroup - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_NodeGroupListWarning - */ - public function setWarning(Google_Service_Compute_NodeGroupListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_NodeGroupListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeGroupListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeGroupListWarning.php deleted file mode 100644 index 6cf0ec05..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeGroupListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_NodeGroupListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_NodeGroupListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeGroupListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeGroupListWarningData.php deleted file mode 100644 index 917c4cc7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeGroupListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeGroupNode.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeGroupNode.php deleted file mode 100644 index 334d1577..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeGroupNode.php +++ /dev/null @@ -1,74 +0,0 @@ -instances = $instances; - } - public function getInstances() - { - return $this->instances; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNodeType($nodeType) - { - $this->nodeType = $nodeType; - } - public function getNodeType() - { - return $this->nodeType; - } - /** - * @param Google_Service_Compute_ServerBinding - */ - public function setServerBinding(Google_Service_Compute_ServerBinding $serverBinding) - { - $this->serverBinding = $serverBinding; - } - /** - * @return Google_Service_Compute_ServerBinding - */ - public function getServerBinding() - { - return $this->serverBinding; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeGroupsAddNodesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeGroupsAddNodesRequest.php deleted file mode 100644 index 6a41fe4a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeGroupsAddNodesRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -additionalNodeCount = $additionalNodeCount; - } - public function getAdditionalNodeCount() - { - return $this->additionalNodeCount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeGroupsDeleteNodesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeGroupsDeleteNodesRequest.php deleted file mode 100644 index 76d146dd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeGroupsDeleteNodesRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -nodes = $nodes; - } - public function getNodes() - { - return $this->nodes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeGroupsListNodes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeGroupsListNodes.php deleted file mode 100644 index a8b2d1c3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeGroupsListNodes.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_NodeGroupNode - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_NodeGroupNode - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_NodeGroupsListNodesWarning - */ - public function setWarning(Google_Service_Compute_NodeGroupsListNodesWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_NodeGroupsListNodesWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeGroupsListNodesWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeGroupsListNodesWarning.php deleted file mode 100644 index 7b950850..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeGroupsListNodesWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_NodeGroupsListNodesWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_NodeGroupsListNodesWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeGroupsListNodesWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeGroupsListNodesWarningData.php deleted file mode 100644 index 817b76a9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeGroupsListNodesWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeGroupsScopedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeGroupsScopedList.php deleted file mode 100644 index 3de4d919..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeGroupsScopedList.php +++ /dev/null @@ -1,54 +0,0 @@ -nodeGroups = $nodeGroups; - } - /** - * @return Google_Service_Compute_NodeGroup - */ - public function getNodeGroups() - { - return $this->nodeGroups; - } - /** - * @param Google_Service_Compute_NodeGroupsScopedListWarning - */ - public function setWarning(Google_Service_Compute_NodeGroupsScopedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_NodeGroupsScopedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeGroupsScopedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeGroupsScopedListWarning.php deleted file mode 100644 index f9e2ce06..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeGroupsScopedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_NodeGroupsScopedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_NodeGroupsScopedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeGroupsScopedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeGroupsScopedListWarningData.php deleted file mode 100644 index 65e8b6b9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeGroupsScopedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeGroupsSetNodeTemplateRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeGroupsSetNodeTemplateRequest.php deleted file mode 100644 index 2115b542..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeGroupsSetNodeTemplateRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -nodeTemplate = $nodeTemplate; - } - public function getNodeTemplate() - { - return $this->nodeTemplate; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTemplate.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTemplate.php deleted file mode 100644 index 6a6aa818..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTemplate.php +++ /dev/null @@ -1,152 +0,0 @@ -creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNodeAffinityLabels($nodeAffinityLabels) - { - $this->nodeAffinityLabels = $nodeAffinityLabels; - } - public function getNodeAffinityLabels() - { - return $this->nodeAffinityLabels; - } - public function setNodeType($nodeType) - { - $this->nodeType = $nodeType; - } - public function getNodeType() - { - return $this->nodeType; - } - /** - * @param Google_Service_Compute_NodeTemplateNodeTypeFlexibility - */ - public function setNodeTypeFlexibility(Google_Service_Compute_NodeTemplateNodeTypeFlexibility $nodeTypeFlexibility) - { - $this->nodeTypeFlexibility = $nodeTypeFlexibility; - } - /** - * @return Google_Service_Compute_NodeTemplateNodeTypeFlexibility - */ - public function getNodeTypeFlexibility() - { - return $this->nodeTypeFlexibility; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_ServerBinding - */ - public function setServerBinding(Google_Service_Compute_ServerBinding $serverBinding) - { - $this->serverBinding = $serverBinding; - } - /** - * @return Google_Service_Compute_ServerBinding - */ - public function getServerBinding() - { - return $this->serverBinding; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setStatusMessage($statusMessage) - { - $this->statusMessage = $statusMessage; - } - public function getStatusMessage() - { - return $this->statusMessage; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTemplateAggregatedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTemplateAggregatedList.php deleted file mode 100644 index 80940ff3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTemplateAggregatedList.php +++ /dev/null @@ -1,89 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_NodeTemplatesScopedList - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_NodeTemplatesScopedList - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_NodeTemplateAggregatedListWarning - */ - public function setWarning(Google_Service_Compute_NodeTemplateAggregatedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_NodeTemplateAggregatedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTemplateAggregatedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTemplateAggregatedListWarning.php deleted file mode 100644 index cd6702ba..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTemplateAggregatedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_NodeTemplateAggregatedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_NodeTemplateAggregatedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTemplateAggregatedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTemplateAggregatedListWarningData.php deleted file mode 100644 index a5298ab3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTemplateAggregatedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTemplateList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTemplateList.php deleted file mode 100644 index 9841f352..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTemplateList.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_NodeTemplate - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_NodeTemplate - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_NodeTemplateListWarning - */ - public function setWarning(Google_Service_Compute_NodeTemplateListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_NodeTemplateListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTemplateListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTemplateListWarning.php deleted file mode 100644 index 9b19d01c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTemplateListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_NodeTemplateListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_NodeTemplateListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTemplateListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTemplateListWarningData.php deleted file mode 100644 index 17fdb7c4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTemplateListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTemplateNodeTypeFlexibility.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTemplateNodeTypeFlexibility.php deleted file mode 100644 index 0775f3c9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTemplateNodeTypeFlexibility.php +++ /dev/null @@ -1,48 +0,0 @@ -cpus = $cpus; - } - public function getCpus() - { - return $this->cpus; - } - public function setLocalSsd($localSsd) - { - $this->localSsd = $localSsd; - } - public function getLocalSsd() - { - return $this->localSsd; - } - public function setMemory($memory) - { - $this->memory = $memory; - } - public function getMemory() - { - return $this->memory; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTemplatesScopedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTemplatesScopedList.php deleted file mode 100644 index 7d6fdd03..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTemplatesScopedList.php +++ /dev/null @@ -1,54 +0,0 @@ -nodeTemplates = $nodeTemplates; - } - /** - * @return Google_Service_Compute_NodeTemplate - */ - public function getNodeTemplates() - { - return $this->nodeTemplates; - } - /** - * @param Google_Service_Compute_NodeTemplatesScopedListWarning - */ - public function setWarning(Google_Service_Compute_NodeTemplatesScopedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_NodeTemplatesScopedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTemplatesScopedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTemplatesScopedListWarning.php deleted file mode 100644 index c077b7ed..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTemplatesScopedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_NodeTemplatesScopedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_NodeTemplatesScopedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTemplatesScopedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTemplatesScopedListWarningData.php deleted file mode 100644 index 0c9f04cb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTemplatesScopedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeType.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeType.php deleted file mode 100644 index 8dd40a8e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeType.php +++ /dev/null @@ -1,136 +0,0 @@ -cpuPlatform = $cpuPlatform; - } - public function getCpuPlatform() - { - return $this->cpuPlatform; - } - public function setCreationTimestamp($creationTimestamp) - { - $this->creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - /** - * @param Google_Service_Compute_DeprecationStatus - */ - public function setDeprecated(Google_Service_Compute_DeprecationStatus $deprecated) - { - $this->deprecated = $deprecated; - } - /** - * @return Google_Service_Compute_DeprecationStatus - */ - public function getDeprecated() - { - return $this->deprecated; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setGuestCpus($guestCpus) - { - $this->guestCpus = $guestCpus; - } - public function getGuestCpus() - { - return $this->guestCpus; - } - 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 setLocalSsdGb($localSsdGb) - { - $this->localSsdGb = $localSsdGb; - } - public function getLocalSsdGb() - { - return $this->localSsdGb; - } - public function setMemoryMb($memoryMb) - { - $this->memoryMb = $memoryMb; - } - public function getMemoryMb() - { - return $this->memoryMb; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setZone($zone) - { - $this->zone = $zone; - } - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTypeAggregatedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTypeAggregatedList.php deleted file mode 100644 index 129b0d1a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTypeAggregatedList.php +++ /dev/null @@ -1,89 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_NodeTypesScopedList - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_NodeTypesScopedList - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_NodeTypeAggregatedListWarning - */ - public function setWarning(Google_Service_Compute_NodeTypeAggregatedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_NodeTypeAggregatedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTypeAggregatedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTypeAggregatedListWarning.php deleted file mode 100644 index a5819cc7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTypeAggregatedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_NodeTypeAggregatedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_NodeTypeAggregatedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTypeAggregatedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTypeAggregatedListWarningData.php deleted file mode 100644 index 3ed12133..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTypeAggregatedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTypeList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTypeList.php deleted file mode 100644 index 459fbef6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTypeList.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_NodeType - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_NodeType - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_NodeTypeListWarning - */ - public function setWarning(Google_Service_Compute_NodeTypeListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_NodeTypeListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTypeListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTypeListWarning.php deleted file mode 100644 index eb7a8bea..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTypeListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_NodeTypeListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_NodeTypeListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTypeListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTypeListWarningData.php deleted file mode 100644 index 2b1f882b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTypeListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTypesScopedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTypesScopedList.php deleted file mode 100644 index 5463d843..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTypesScopedList.php +++ /dev/null @@ -1,54 +0,0 @@ -nodeTypes = $nodeTypes; - } - /** - * @return Google_Service_Compute_NodeType - */ - public function getNodeTypes() - { - return $this->nodeTypes; - } - /** - * @param Google_Service_Compute_NodeTypesScopedListWarning - */ - public function setWarning(Google_Service_Compute_NodeTypesScopedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_NodeTypesScopedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTypesScopedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTypesScopedListWarning.php deleted file mode 100644 index 5ba2f1ae..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTypesScopedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_NodeTypesScopedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_NodeTypesScopedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTypesScopedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTypesScopedListWarningData.php deleted file mode 100644 index a5603e0e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/NodeTypesScopedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Operation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Operation.php deleted file mode 100644 index e613bd79..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Operation.php +++ /dev/null @@ -1,243 +0,0 @@ -clientOperationId = $clientOperationId; - } - public function getClientOperationId() - { - return $this->clientOperationId; - } - public function setCreationTimestamp($creationTimestamp) - { - $this->creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - /** - * @param Google_Service_Compute_OperationError - */ - public function setError(Google_Service_Compute_OperationError $error) - { - $this->error = $error; - } - /** - * @return Google_Service_Compute_OperationError - */ - public function getError() - { - return $this->error; - } - public function setHttpErrorMessage($httpErrorMessage) - { - $this->httpErrorMessage = $httpErrorMessage; - } - public function getHttpErrorMessage() - { - return $this->httpErrorMessage; - } - public function setHttpErrorStatusCode($httpErrorStatusCode) - { - $this->httpErrorStatusCode = $httpErrorStatusCode; - } - public function getHttpErrorStatusCode() - { - return $this->httpErrorStatusCode; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setInsertTime($insertTime) - { - $this->insertTime = $insertTime; - } - public function getInsertTime() - { - return $this->insertTime; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOperationType($operationType) - { - $this->operationType = $operationType; - } - public function getOperationType() - { - return $this->operationType; - } - public function setProgress($progress) - { - $this->progress = $progress; - } - public function getProgress() - { - return $this->progress; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - 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 setStatusMessage($statusMessage) - { - $this->statusMessage = $statusMessage; - } - public function getStatusMessage() - { - return $this->statusMessage; - } - public function setTargetId($targetId) - { - $this->targetId = $targetId; - } - public function getTargetId() - { - return $this->targetId; - } - public function setTargetLink($targetLink) - { - $this->targetLink = $targetLink; - } - public function getTargetLink() - { - return $this->targetLink; - } - public function setUser($user) - { - $this->user = $user; - } - public function getUser() - { - return $this->user; - } - /** - * @param Google_Service_Compute_OperationWarnings - */ - public function setWarnings($warnings) - { - $this->warnings = $warnings; - } - /** - * @return Google_Service_Compute_OperationWarnings - */ - public function getWarnings() - { - return $this->warnings; - } - public function setZone($zone) - { - $this->zone = $zone; - } - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/OperationAggregatedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/OperationAggregatedList.php deleted file mode 100644 index 678b4602..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/OperationAggregatedList.php +++ /dev/null @@ -1,89 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_OperationsScopedList - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_OperationsScopedList - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_OperationAggregatedListWarning - */ - public function setWarning(Google_Service_Compute_OperationAggregatedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_OperationAggregatedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/OperationAggregatedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/OperationAggregatedListWarning.php deleted file mode 100644 index 9a3ad91a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/OperationAggregatedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_OperationAggregatedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_OperationAggregatedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/OperationAggregatedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/OperationAggregatedListWarningData.php deleted file mode 100644 index 437bfea5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/OperationAggregatedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/OperationError.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/OperationError.php deleted file mode 100644 index 4efaa5c9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/OperationError.php +++ /dev/null @@ -1,38 +0,0 @@ -errors = $errors; - } - /** - * @return Google_Service_Compute_OperationErrorErrors - */ - public function getErrors() - { - return $this->errors; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/OperationErrorErrors.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/OperationErrorErrors.php deleted file mode 100644 index c5a5b806..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/OperationErrorErrors.php +++ /dev/null @@ -1,48 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/OperationList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/OperationList.php deleted file mode 100644 index d2a4e666..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/OperationList.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_Operation - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_Operation - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_OperationListWarning - */ - public function setWarning(Google_Service_Compute_OperationListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_OperationListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/OperationListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/OperationListWarning.php deleted file mode 100644 index fe1fd853..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/OperationListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_OperationListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_OperationListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/OperationListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/OperationListWarningData.php deleted file mode 100644 index 106619de..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/OperationListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/OperationWarnings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/OperationWarnings.php deleted file mode 100644 index 9738ae9f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/OperationWarnings.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_OperationWarningsData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_OperationWarningsData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/OperationWarningsData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/OperationWarningsData.php deleted file mode 100644 index 504c07ba..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/OperationWarningsData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/OperationsScopedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/OperationsScopedList.php deleted file mode 100644 index e1416aad..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/OperationsScopedList.php +++ /dev/null @@ -1,54 +0,0 @@ -operations = $operations; - } - /** - * @return Google_Service_Compute_Operation - */ - public function getOperations() - { - return $this->operations; - } - /** - * @param Google_Service_Compute_OperationsScopedListWarning - */ - public function setWarning(Google_Service_Compute_OperationsScopedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_OperationsScopedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/OperationsScopedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/OperationsScopedListWarning.php deleted file mode 100644 index 12d8e71f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/OperationsScopedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_OperationsScopedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_OperationsScopedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/OperationsScopedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/OperationsScopedListWarningData.php deleted file mode 100644 index a35a03c2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/OperationsScopedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/OutlierDetection.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/OutlierDetection.php deleted file mode 100644 index de05f3b0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/OutlierDetection.php +++ /dev/null @@ -1,134 +0,0 @@ -baseEjectionTime = $baseEjectionTime; - } - /** - * @return Google_Service_Compute_Duration - */ - public function getBaseEjectionTime() - { - return $this->baseEjectionTime; - } - public function setConsecutiveErrors($consecutiveErrors) - { - $this->consecutiveErrors = $consecutiveErrors; - } - public function getConsecutiveErrors() - { - return $this->consecutiveErrors; - } - public function setConsecutiveGatewayFailure($consecutiveGatewayFailure) - { - $this->consecutiveGatewayFailure = $consecutiveGatewayFailure; - } - public function getConsecutiveGatewayFailure() - { - return $this->consecutiveGatewayFailure; - } - public function setEnforcingConsecutiveErrors($enforcingConsecutiveErrors) - { - $this->enforcingConsecutiveErrors = $enforcingConsecutiveErrors; - } - public function getEnforcingConsecutiveErrors() - { - return $this->enforcingConsecutiveErrors; - } - public function setEnforcingConsecutiveGatewayFailure($enforcingConsecutiveGatewayFailure) - { - $this->enforcingConsecutiveGatewayFailure = $enforcingConsecutiveGatewayFailure; - } - public function getEnforcingConsecutiveGatewayFailure() - { - return $this->enforcingConsecutiveGatewayFailure; - } - public function setEnforcingSuccessRate($enforcingSuccessRate) - { - $this->enforcingSuccessRate = $enforcingSuccessRate; - } - public function getEnforcingSuccessRate() - { - return $this->enforcingSuccessRate; - } - /** - * @param Google_Service_Compute_Duration - */ - public function setInterval(Google_Service_Compute_Duration $interval) - { - $this->interval = $interval; - } - /** - * @return Google_Service_Compute_Duration - */ - public function getInterval() - { - return $this->interval; - } - public function setMaxEjectionPercent($maxEjectionPercent) - { - $this->maxEjectionPercent = $maxEjectionPercent; - } - public function getMaxEjectionPercent() - { - return $this->maxEjectionPercent; - } - public function setSuccessRateMinimumHosts($successRateMinimumHosts) - { - $this->successRateMinimumHosts = $successRateMinimumHosts; - } - public function getSuccessRateMinimumHosts() - { - return $this->successRateMinimumHosts; - } - public function setSuccessRateRequestVolume($successRateRequestVolume) - { - $this->successRateRequestVolume = $successRateRequestVolume; - } - public function getSuccessRateRequestVolume() - { - return $this->successRateRequestVolume; - } - public function setSuccessRateStdevFactor($successRateStdevFactor) - { - $this->successRateStdevFactor = $successRateStdevFactor; - } - public function getSuccessRateStdevFactor() - { - return $this->successRateStdevFactor; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PacketMirroring.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PacketMirroring.php deleted file mode 100644 index b51ed360..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PacketMirroring.php +++ /dev/null @@ -1,166 +0,0 @@ -collectorIlb = $collectorIlb; - } - /** - * @return Google_Service_Compute_PacketMirroringForwardingRuleInfo - */ - public function getCollectorIlb() - { - return $this->collectorIlb; - } - public function setCreationTimestamp($creationTimestamp) - { - $this->creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setEnable($enable) - { - $this->enable = $enable; - } - public function getEnable() - { - return $this->enable; - } - /** - * @param Google_Service_Compute_PacketMirroringFilter - */ - public function setFilter(Google_Service_Compute_PacketMirroringFilter $filter) - { - $this->filter = $filter; - } - /** - * @return Google_Service_Compute_PacketMirroringFilter - */ - public function getFilter() - { - return $this->filter; - } - 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; - } - /** - * @param Google_Service_Compute_PacketMirroringMirroredResourceInfo - */ - public function setMirroredResources(Google_Service_Compute_PacketMirroringMirroredResourceInfo $mirroredResources) - { - $this->mirroredResources = $mirroredResources; - } - /** - * @return Google_Service_Compute_PacketMirroringMirroredResourceInfo - */ - public function getMirroredResources() - { - return $this->mirroredResources; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Compute_PacketMirroringNetworkInfo - */ - public function setNetwork(Google_Service_Compute_PacketMirroringNetworkInfo $network) - { - $this->network = $network; - } - /** - * @return Google_Service_Compute_PacketMirroringNetworkInfo - */ - public function getNetwork() - { - return $this->network; - } - public function setPriority($priority) - { - $this->priority = $priority; - } - public function getPriority() - { - return $this->priority; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PacketMirroringAggregatedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PacketMirroringAggregatedList.php deleted file mode 100644 index ab0148eb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PacketMirroringAggregatedList.php +++ /dev/null @@ -1,89 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_PacketMirroringsScopedList - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_PacketMirroringsScopedList - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_PacketMirroringAggregatedListWarning - */ - public function setWarning(Google_Service_Compute_PacketMirroringAggregatedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_PacketMirroringAggregatedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PacketMirroringAggregatedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PacketMirroringAggregatedListWarning.php deleted file mode 100644 index 4a6c47cf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PacketMirroringAggregatedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_PacketMirroringAggregatedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_PacketMirroringAggregatedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PacketMirroringAggregatedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PacketMirroringAggregatedListWarningData.php deleted file mode 100644 index e1752e21..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PacketMirroringAggregatedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PacketMirroringFilter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PacketMirroringFilter.php deleted file mode 100644 index 4730467d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PacketMirroringFilter.php +++ /dev/null @@ -1,43 +0,0 @@ - "IPProtocols", - ); - public $iPProtocols; - public $cidrRanges; - - public function setIPProtocols($iPProtocols) - { - $this->iPProtocols = $iPProtocols; - } - public function getIPProtocols() - { - return $this->iPProtocols; - } - public function setCidrRanges($cidrRanges) - { - $this->cidrRanges = $cidrRanges; - } - public function getCidrRanges() - { - return $this->cidrRanges; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PacketMirroringForwardingRuleInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PacketMirroringForwardingRuleInfo.php deleted file mode 100644 index 64928de7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PacketMirroringForwardingRuleInfo.php +++ /dev/null @@ -1,39 +0,0 @@ -canonicalUrl = $canonicalUrl; - } - public function getCanonicalUrl() - { - return $this->canonicalUrl; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PacketMirroringList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PacketMirroringList.php deleted file mode 100644 index d6e3459a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PacketMirroringList.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_PacketMirroring - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_PacketMirroring - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_PacketMirroringListWarning - */ - public function setWarning(Google_Service_Compute_PacketMirroringListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_PacketMirroringListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PacketMirroringListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PacketMirroringListWarning.php deleted file mode 100644 index 9ac6ed8c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PacketMirroringListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_PacketMirroringListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_PacketMirroringListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PacketMirroringListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PacketMirroringListWarningData.php deleted file mode 100644 index b2c4ce6f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PacketMirroringListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PacketMirroringMirroredResourceInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PacketMirroringMirroredResourceInfo.php deleted file mode 100644 index 7432829d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PacketMirroringMirroredResourceInfo.php +++ /dev/null @@ -1,63 +0,0 @@ -instances = $instances; - } - /** - * @return Google_Service_Compute_PacketMirroringMirroredResourceInfoInstanceInfo - */ - public function getInstances() - { - return $this->instances; - } - /** - * @param Google_Service_Compute_PacketMirroringMirroredResourceInfoSubnetInfo - */ - public function setSubnetworks($subnetworks) - { - $this->subnetworks = $subnetworks; - } - /** - * @return Google_Service_Compute_PacketMirroringMirroredResourceInfoSubnetInfo - */ - public function getSubnetworks() - { - return $this->subnetworks; - } - public function setTags($tags) - { - $this->tags = $tags; - } - public function getTags() - { - return $this->tags; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PacketMirroringMirroredResourceInfoInstanceInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PacketMirroringMirroredResourceInfoInstanceInfo.php deleted file mode 100644 index c002e447..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PacketMirroringMirroredResourceInfoInstanceInfo.php +++ /dev/null @@ -1,39 +0,0 @@ -canonicalUrl = $canonicalUrl; - } - public function getCanonicalUrl() - { - return $this->canonicalUrl; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PacketMirroringMirroredResourceInfoSubnetInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PacketMirroringMirroredResourceInfoSubnetInfo.php deleted file mode 100644 index 18d7b3b5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PacketMirroringMirroredResourceInfoSubnetInfo.php +++ /dev/null @@ -1,39 +0,0 @@ -canonicalUrl = $canonicalUrl; - } - public function getCanonicalUrl() - { - return $this->canonicalUrl; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PacketMirroringNetworkInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PacketMirroringNetworkInfo.php deleted file mode 100644 index 88e15923..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PacketMirroringNetworkInfo.php +++ /dev/null @@ -1,39 +0,0 @@ -canonicalUrl = $canonicalUrl; - } - public function getCanonicalUrl() - { - return $this->canonicalUrl; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PacketMirroringsScopedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PacketMirroringsScopedList.php deleted file mode 100644 index b66277ab..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PacketMirroringsScopedList.php +++ /dev/null @@ -1,54 +0,0 @@ -packetMirrorings = $packetMirrorings; - } - /** - * @return Google_Service_Compute_PacketMirroring - */ - public function getPacketMirrorings() - { - return $this->packetMirrorings; - } - /** - * @param Google_Service_Compute_PacketMirroringsScopedListWarning - */ - public function setWarning(Google_Service_Compute_PacketMirroringsScopedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_PacketMirroringsScopedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PacketMirroringsScopedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PacketMirroringsScopedListWarning.php deleted file mode 100644 index b28d2877..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PacketMirroringsScopedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_PacketMirroringsScopedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_PacketMirroringsScopedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PacketMirroringsScopedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PacketMirroringsScopedListWarningData.php deleted file mode 100644 index d0f35039..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PacketMirroringsScopedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PathMatcher.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PathMatcher.php deleted file mode 100644 index fefdc3df..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PathMatcher.php +++ /dev/null @@ -1,129 +0,0 @@ -defaultRouteAction = $defaultRouteAction; - } - /** - * @return Google_Service_Compute_HttpRouteAction - */ - public function getDefaultRouteAction() - { - return $this->defaultRouteAction; - } - public function setDefaultService($defaultService) - { - $this->defaultService = $defaultService; - } - public function getDefaultService() - { - return $this->defaultService; - } - /** - * @param Google_Service_Compute_HttpRedirectAction - */ - public function setDefaultUrlRedirect(Google_Service_Compute_HttpRedirectAction $defaultUrlRedirect) - { - $this->defaultUrlRedirect = $defaultUrlRedirect; - } - /** - * @return Google_Service_Compute_HttpRedirectAction - */ - public function getDefaultUrlRedirect() - { - return $this->defaultUrlRedirect; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - /** - * @param Google_Service_Compute_HttpHeaderAction - */ - public function setHeaderAction(Google_Service_Compute_HttpHeaderAction $headerAction) - { - $this->headerAction = $headerAction; - } - /** - * @return Google_Service_Compute_HttpHeaderAction - */ - public function getHeaderAction() - { - return $this->headerAction; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Compute_PathRule - */ - public function setPathRules($pathRules) - { - $this->pathRules = $pathRules; - } - /** - * @return Google_Service_Compute_PathRule - */ - public function getPathRules() - { - return $this->pathRules; - } - /** - * @param Google_Service_Compute_HttpRouteRule - */ - public function setRouteRules($routeRules) - { - $this->routeRules = $routeRules; - } - /** - * @return Google_Service_Compute_HttpRouteRule - */ - public function getRouteRules() - { - return $this->routeRules; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PathRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PathRule.php deleted file mode 100644 index 227f29b0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PathRule.php +++ /dev/null @@ -1,72 +0,0 @@ -paths = $paths; - } - public function getPaths() - { - return $this->paths; - } - /** - * @param Google_Service_Compute_HttpRouteAction - */ - public function setRouteAction(Google_Service_Compute_HttpRouteAction $routeAction) - { - $this->routeAction = $routeAction; - } - /** - * @return Google_Service_Compute_HttpRouteAction - */ - public function getRouteAction() - { - return $this->routeAction; - } - public function setService($service) - { - $this->service = $service; - } - public function getService() - { - return $this->service; - } - /** - * @param Google_Service_Compute_HttpRedirectAction - */ - public function setUrlRedirect(Google_Service_Compute_HttpRedirectAction $urlRedirect) - { - $this->urlRedirect = $urlRedirect; - } - /** - * @return Google_Service_Compute_HttpRedirectAction - */ - public function getUrlRedirect() - { - return $this->urlRedirect; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PerInstanceConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PerInstanceConfig.php deleted file mode 100644 index eebf31b8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/PerInstanceConfig.php +++ /dev/null @@ -1,39 +0,0 @@ -fingerprint = $fingerprint; - } - public function getFingerprint() - { - return $this->fingerprint; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Policy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Policy.php deleted file mode 100644 index fc685752..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Policy.php +++ /dev/null @@ -1,97 +0,0 @@ -auditConfigs = $auditConfigs; - } - /** - * @return Google_Service_Compute_AuditConfig - */ - public function getAuditConfigs() - { - return $this->auditConfigs; - } - /** - * @param Google_Service_Compute_Binding - */ - public function setBindings($bindings) - { - $this->bindings = $bindings; - } - /** - * @return Google_Service_Compute_Binding - */ - public function getBindings() - { - return $this->bindings; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setIamOwned($iamOwned) - { - $this->iamOwned = $iamOwned; - } - public function getIamOwned() - { - return $this->iamOwned; - } - /** - * @param Google_Service_Compute_Rule - */ - public function setRules($rules) - { - $this->rules = $rules; - } - /** - * @return Google_Service_Compute_Rule - */ - public function getRules() - { - return $this->rules; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Project.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Project.php deleted file mode 100644 index 8f1e2630..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Project.php +++ /dev/null @@ -1,160 +0,0 @@ -commonInstanceMetadata = $commonInstanceMetadata; - } - /** - * @return Google_Service_Compute_Metadata - */ - public function getCommonInstanceMetadata() - { - return $this->commonInstanceMetadata; - } - public function setCreationTimestamp($creationTimestamp) - { - $this->creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setDefaultNetworkTier($defaultNetworkTier) - { - $this->defaultNetworkTier = $defaultNetworkTier; - } - public function getDefaultNetworkTier() - { - return $this->defaultNetworkTier; - } - public function setDefaultServiceAccount($defaultServiceAccount) - { - $this->defaultServiceAccount = $defaultServiceAccount; - } - public function getDefaultServiceAccount() - { - return $this->defaultServiceAccount; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setEnabledFeatures($enabledFeatures) - { - $this->enabledFeatures = $enabledFeatures; - } - public function getEnabledFeatures() - { - return $this->enabledFeatures; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Compute_Quota - */ - public function setQuotas($quotas) - { - $this->quotas = $quotas; - } - /** - * @return Google_Service_Compute_Quota - */ - public function getQuotas() - { - return $this->quotas; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_UsageExportLocation - */ - public function setUsageExportLocation(Google_Service_Compute_UsageExportLocation $usageExportLocation) - { - $this->usageExportLocation = $usageExportLocation; - } - /** - * @return Google_Service_Compute_UsageExportLocation - */ - public function getUsageExportLocation() - { - return $this->usageExportLocation; - } - public function setXpnProjectStatus($xpnProjectStatus) - { - $this->xpnProjectStatus = $xpnProjectStatus; - } - public function getXpnProjectStatus() - { - return $this->xpnProjectStatus; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ProjectsDisableXpnResourceRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ProjectsDisableXpnResourceRequest.php deleted file mode 100644 index 98eaf265..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ProjectsDisableXpnResourceRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -xpnResource = $xpnResource; - } - /** - * @return Google_Service_Compute_XpnResourceId - */ - public function getXpnResource() - { - return $this->xpnResource; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ProjectsEnableXpnResourceRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ProjectsEnableXpnResourceRequest.php deleted file mode 100644 index 9217b278..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ProjectsEnableXpnResourceRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -xpnResource = $xpnResource; - } - /** - * @return Google_Service_Compute_XpnResourceId - */ - public function getXpnResource() - { - return $this->xpnResource; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ProjectsGetXpnResources.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ProjectsGetXpnResources.php deleted file mode 100644 index d48f668a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ProjectsGetXpnResources.php +++ /dev/null @@ -1,56 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Compute_XpnResourceId - */ - public function setResources($resources) - { - $this->resources = $resources; - } - /** - * @return Google_Service_Compute_XpnResourceId - */ - public function getResources() - { - return $this->resources; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ProjectsListXpnHostsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ProjectsListXpnHostsRequest.php deleted file mode 100644 index 28596c61..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ProjectsListXpnHostsRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -organization = $organization; - } - public function getOrganization() - { - return $this->organization; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ProjectsSetDefaultNetworkTierRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ProjectsSetDefaultNetworkTierRequest.php deleted file mode 100644 index 83a25bbc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ProjectsSetDefaultNetworkTierRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -networkTier = $networkTier; - } - public function getNetworkTier() - { - return $this->networkTier; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Quota.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Quota.php deleted file mode 100644 index f9b5a919..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Quota.php +++ /dev/null @@ -1,57 +0,0 @@ -limit = $limit; - } - public function getLimit() - { - return $this->limit; - } - public function setMetric($metric) - { - $this->metric = $metric; - } - public function getMetric() - { - return $this->metric; - } - public function setOwner($owner) - { - $this->owner = $owner; - } - public function getOwner() - { - return $this->owner; - } - public function setUsage($usage) - { - $this->usage = $usage; - } - public function getUsage() - { - return $this->usage; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Reference.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Reference.php deleted file mode 100644 index a662e849..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Reference.php +++ /dev/null @@ -1,57 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setReferenceType($referenceType) - { - $this->referenceType = $referenceType; - } - public function getReferenceType() - { - return $this->referenceType; - } - public function setReferrer($referrer) - { - $this->referrer = $referrer; - } - public function getReferrer() - { - return $this->referrer; - } - public function setTarget($target) - { - $this->target = $target; - } - public function getTarget() - { - return $this->target; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Region.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Region.php deleted file mode 100644 index f9b4d549..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Region.php +++ /dev/null @@ -1,126 +0,0 @@ -creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - /** - * @param Google_Service_Compute_DeprecationStatus - */ - public function setDeprecated(Google_Service_Compute_DeprecationStatus $deprecated) - { - $this->deprecated = $deprecated; - } - /** - * @return Google_Service_Compute_DeprecationStatus - */ - public function getDeprecated() - { - return $this->deprecated; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Compute_Quota - */ - public function setQuotas($quotas) - { - $this->quotas = $quotas; - } - /** - * @return Google_Service_Compute_Quota - */ - public function getQuotas() - { - return $this->quotas; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setZones($zones) - { - $this->zones = $zones; - } - public function getZones() - { - return $this->zones; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionAutoscalerList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionAutoscalerList.php deleted file mode 100644 index 5c3ad492..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionAutoscalerList.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_Autoscaler - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_Autoscaler - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_RegionAutoscalerListWarning - */ - public function setWarning(Google_Service_Compute_RegionAutoscalerListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_RegionAutoscalerListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionAutoscalerListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionAutoscalerListWarning.php deleted file mode 100644 index f5b61799..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionAutoscalerListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_RegionAutoscalerListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_RegionAutoscalerListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionAutoscalerListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionAutoscalerListWarningData.php deleted file mode 100644 index a1c2a08b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionAutoscalerListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionDiskTypeList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionDiskTypeList.php deleted file mode 100644 index 08417838..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionDiskTypeList.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_DiskType - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_DiskType - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_RegionDiskTypeListWarning - */ - public function setWarning(Google_Service_Compute_RegionDiskTypeListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_RegionDiskTypeListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionDiskTypeListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionDiskTypeListWarning.php deleted file mode 100644 index b0074909..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionDiskTypeListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_RegionDiskTypeListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_RegionDiskTypeListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionDiskTypeListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionDiskTypeListWarningData.php deleted file mode 100644 index b0eb12d2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionDiskTypeListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionDisksAddResourcePoliciesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionDisksAddResourcePoliciesRequest.php deleted file mode 100644 index ad52d3d7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionDisksAddResourcePoliciesRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -resourcePolicies = $resourcePolicies; - } - public function getResourcePolicies() - { - return $this->resourcePolicies; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionDisksRemoveResourcePoliciesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionDisksRemoveResourcePoliciesRequest.php deleted file mode 100644 index f08326de..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionDisksRemoveResourcePoliciesRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -resourcePolicies = $resourcePolicies; - } - public function getResourcePolicies() - { - return $this->resourcePolicies; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionDisksResizeRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionDisksResizeRequest.php deleted file mode 100644 index 0216f22a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionDisksResizeRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -sizeGb = $sizeGb; - } - public function getSizeGb() - { - return $this->sizeGb; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupList.php deleted file mode 100644 index 1e6f213c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupList.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_InstanceGroup - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_InstanceGroup - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_RegionInstanceGroupListWarning - */ - public function setWarning(Google_Service_Compute_RegionInstanceGroupListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_RegionInstanceGroupListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupListWarning.php deleted file mode 100644 index 89593ef3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_RegionInstanceGroupListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_RegionInstanceGroupListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupListWarningData.php deleted file mode 100644 index 7dd0549e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupManagerList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupManagerList.php deleted file mode 100644 index f2b97a51..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupManagerList.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_InstanceGroupManager - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_InstanceGroupManager - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_RegionInstanceGroupManagerListWarning - */ - public function setWarning(Google_Service_Compute_RegionInstanceGroupManagerListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_RegionInstanceGroupManagerListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupManagerListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupManagerListWarning.php deleted file mode 100644 index 0fb85d5f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupManagerListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_RegionInstanceGroupManagerListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_RegionInstanceGroupManagerListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupManagerListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupManagerListWarningData.php deleted file mode 100644 index b96a6643..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupManagerListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupManagersAbandonInstancesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupManagersAbandonInstancesRequest.php deleted file mode 100644 index fff3feca..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupManagersAbandonInstancesRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -instances = $instances; - } - public function getInstances() - { - return $this->instances; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupManagersApplyUpdatesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupManagersApplyUpdatesRequest.php deleted file mode 100644 index 8795c9bc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupManagersApplyUpdatesRequest.php +++ /dev/null @@ -1,49 +0,0 @@ -instances = $instances; - } - public function getInstances() - { - return $this->instances; - } - public function setMinimalAction($minimalAction) - { - $this->minimalAction = $minimalAction; - } - public function getMinimalAction() - { - return $this->minimalAction; - } - public function setMostDisruptiveAllowedAction($mostDisruptiveAllowedAction) - { - $this->mostDisruptiveAllowedAction = $mostDisruptiveAllowedAction; - } - public function getMostDisruptiveAllowedAction() - { - return $this->mostDisruptiveAllowedAction; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupManagersCreateInstancesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupManagersCreateInstancesRequest.php deleted file mode 100644 index 1c62646c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupManagersCreateInstancesRequest.php +++ /dev/null @@ -1,38 +0,0 @@ -instances = $instances; - } - /** - * @return Google_Service_Compute_PerInstanceConfig - */ - public function getInstances() - { - return $this->instances; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupManagersDeleteInstancesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupManagersDeleteInstancesRequest.php deleted file mode 100644 index 52633a82..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupManagersDeleteInstancesRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -instances = $instances; - } - public function getInstances() - { - return $this->instances; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupManagersListInstancesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupManagersListInstancesResponse.php deleted file mode 100644 index ea05cc6b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupManagersListInstancesResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -managedInstances = $managedInstances; - } - /** - * @return Google_Service_Compute_ManagedInstance - */ - public function getManagedInstances() - { - return $this->managedInstances; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupManagersRecreateRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupManagersRecreateRequest.php deleted file mode 100644 index 8e12caf3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupManagersRecreateRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -instances = $instances; - } - public function getInstances() - { - return $this->instances; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupManagersSetTargetPoolsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupManagersSetTargetPoolsRequest.php deleted file mode 100644 index 3ef0b6a9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupManagersSetTargetPoolsRequest.php +++ /dev/null @@ -1,40 +0,0 @@ -fingerprint = $fingerprint; - } - public function getFingerprint() - { - return $this->fingerprint; - } - public function setTargetPools($targetPools) - { - $this->targetPools = $targetPools; - } - public function getTargetPools() - { - return $this->targetPools; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupManagersSetTemplateRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupManagersSetTemplateRequest.php deleted file mode 100644 index 6803bbc5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupManagersSetTemplateRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -instanceTemplate = $instanceTemplate; - } - public function getInstanceTemplate() - { - return $this->instanceTemplate; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupsListInstances.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupsListInstances.php deleted file mode 100644 index 694f302c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupsListInstances.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_InstanceWithNamedPorts - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_InstanceWithNamedPorts - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_RegionInstanceGroupsListInstancesWarning - */ - public function setWarning(Google_Service_Compute_RegionInstanceGroupsListInstancesWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_RegionInstanceGroupsListInstancesWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupsListInstancesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupsListInstancesRequest.php deleted file mode 100644 index f1c4248c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupsListInstancesRequest.php +++ /dev/null @@ -1,39 +0,0 @@ -instanceState = $instanceState; - } - public function getInstanceState() - { - return $this->instanceState; - } - public function setPortName($portName) - { - $this->portName = $portName; - } - public function getPortName() - { - return $this->portName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupsListInstancesWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupsListInstancesWarning.php deleted file mode 100644 index b6d075e2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupsListInstancesWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_RegionInstanceGroupsListInstancesWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_RegionInstanceGroupsListInstancesWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupsListInstancesWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupsListInstancesWarningData.php deleted file mode 100644 index bb2d8181..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupsListInstancesWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupsSetNamedPortsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupsSetNamedPortsRequest.php deleted file mode 100644 index c511f173..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionInstanceGroupsSetNamedPortsRequest.php +++ /dev/null @@ -1,47 +0,0 @@ -fingerprint = $fingerprint; - } - public function getFingerprint() - { - return $this->fingerprint; - } - /** - * @param Google_Service_Compute_NamedPort - */ - public function setNamedPorts($namedPorts) - { - $this->namedPorts = $namedPorts; - } - /** - * @return Google_Service_Compute_NamedPort - */ - public function getNamedPorts() - { - return $this->namedPorts; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionList.php deleted file mode 100644 index 57f0ba1b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionList.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_Region - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_Region - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_RegionListWarning - */ - public function setWarning(Google_Service_Compute_RegionListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_RegionListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionListWarning.php deleted file mode 100644 index 025075e7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_RegionListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_RegionListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionListWarningData.php deleted file mode 100644 index 1d7fdee9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionSetLabelsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionSetLabelsRequest.php deleted file mode 100644 index 427e1feb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionSetLabelsRequest.php +++ /dev/null @@ -1,39 +0,0 @@ -labelFingerprint = $labelFingerprint; - } - public function getLabelFingerprint() - { - return $this->labelFingerprint; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionSetPolicyRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionSetPolicyRequest.php deleted file mode 100644 index 0a05aa33..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionSetPolicyRequest.php +++ /dev/null @@ -1,63 +0,0 @@ -bindings = $bindings; - } - /** - * @return Google_Service_Compute_Binding - */ - public function getBindings() - { - return $this->bindings; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_Compute_Policy - */ - public function setPolicy(Google_Service_Compute_Policy $policy) - { - $this->policy = $policy; - } - /** - * @return Google_Service_Compute_Policy - */ - public function getPolicy() - { - return $this->policy; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionTargetHttpsProxiesSetSslCertificatesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionTargetHttpsProxiesSetSslCertificatesRequest.php deleted file mode 100644 index 215fc40a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionTargetHttpsProxiesSetSslCertificatesRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -sslCertificates = $sslCertificates; - } - public function getSslCertificates() - { - return $this->sslCertificates; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionUrlMapsValidateRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionUrlMapsValidateRequest.php deleted file mode 100644 index 425d1498..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RegionUrlMapsValidateRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -resource = $resource; - } - /** - * @return Google_Service_Compute_UrlMap - */ - public function getResource() - { - return $this->resource; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RequestMirrorPolicy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RequestMirrorPolicy.php deleted file mode 100644 index 17f568b3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RequestMirrorPolicy.php +++ /dev/null @@ -1,30 +0,0 @@ -backendService = $backendService; - } - public function getBackendService() - { - return $this->backendService; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Reservation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Reservation.php deleted file mode 100644 index 51a4f2e9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Reservation.php +++ /dev/null @@ -1,127 +0,0 @@ -commitment = $commitment; - } - public function getCommitment() - { - return $this->commitment; - } - public function setCreationTimestamp($creationTimestamp) - { - $this->creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_AllocationSpecificSKUReservation - */ - public function setSpecificReservation(Google_Service_Compute_AllocationSpecificSKUReservation $specificReservation) - { - $this->specificReservation = $specificReservation; - } - /** - * @return Google_Service_Compute_AllocationSpecificSKUReservation - */ - public function getSpecificReservation() - { - return $this->specificReservation; - } - public function setSpecificReservationRequired($specificReservationRequired) - { - $this->specificReservationRequired = $specificReservationRequired; - } - public function getSpecificReservationRequired() - { - return $this->specificReservationRequired; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setZone($zone) - { - $this->zone = $zone; - } - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ReservationAffinity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ReservationAffinity.php deleted file mode 100644 index f2af71ad..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ReservationAffinity.php +++ /dev/null @@ -1,49 +0,0 @@ -consumeReservationType = $consumeReservationType; - } - public function getConsumeReservationType() - { - return $this->consumeReservationType; - } - public function setKey($key) - { - $this->key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValues($values) - { - $this->values = $values; - } - public function getValues() - { - return $this->values; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ReservationAggregatedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ReservationAggregatedList.php deleted file mode 100644 index 67c5d84a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ReservationAggregatedList.php +++ /dev/null @@ -1,89 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_ReservationsScopedList - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_ReservationsScopedList - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_ReservationAggregatedListWarning - */ - public function setWarning(Google_Service_Compute_ReservationAggregatedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_ReservationAggregatedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ReservationAggregatedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ReservationAggregatedListWarning.php deleted file mode 100644 index 63ccffac..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ReservationAggregatedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_ReservationAggregatedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_ReservationAggregatedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ReservationAggregatedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ReservationAggregatedListWarningData.php deleted file mode 100644 index b92352a1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ReservationAggregatedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ReservationList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ReservationList.php deleted file mode 100644 index 67645b35..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ReservationList.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_Reservation - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_Reservation - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_ReservationListWarning - */ - public function setWarning(Google_Service_Compute_ReservationListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_ReservationListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ReservationListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ReservationListWarning.php deleted file mode 100644 index 88a6fddc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ReservationListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_ReservationListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_ReservationListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ReservationListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ReservationListWarningData.php deleted file mode 100644 index 0f10c51e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ReservationListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ReservationsResizeRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ReservationsResizeRequest.php deleted file mode 100644 index 74407990..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ReservationsResizeRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -specificSkuCount = $specificSkuCount; - } - public function getSpecificSkuCount() - { - return $this->specificSkuCount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ReservationsScopedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ReservationsScopedList.php deleted file mode 100644 index 8151bad5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ReservationsScopedList.php +++ /dev/null @@ -1,54 +0,0 @@ -reservations = $reservations; - } - /** - * @return Google_Service_Compute_Reservation - */ - public function getReservations() - { - return $this->reservations; - } - /** - * @param Google_Service_Compute_ReservationsScopedListWarning - */ - public function setWarning(Google_Service_Compute_ReservationsScopedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_ReservationsScopedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ReservationsScopedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ReservationsScopedListWarning.php deleted file mode 100644 index a163ee06..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ReservationsScopedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_ReservationsScopedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_ReservationsScopedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ReservationsScopedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ReservationsScopedListWarningData.php deleted file mode 100644 index a4e55b6a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ReservationsScopedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/AcceleratorTypes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/AcceleratorTypes.php deleted file mode 100644 index 5a3c0c51..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/AcceleratorTypes.php +++ /dev/null @@ -1,150 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $acceleratorTypes = $computeService->acceleratorTypes; - * - */ -class Google_Service_Compute_Resource_AcceleratorTypes extends Google_Service_Resource -{ - /** - * Retrieves an aggregated list of accelerator types. - * (acceleratorTypes.aggregatedList) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_AcceleratorTypeAggregatedList - */ - public function aggregatedList($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('aggregatedList', array($params), "Google_Service_Compute_AcceleratorTypeAggregatedList"); - } - /** - * Returns the specified accelerator type. (acceleratorTypes.get) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $acceleratorType Name of the accelerator type to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_AcceleratorType - */ - public function get($project, $zone, $acceleratorType, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'acceleratorType' => $acceleratorType); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_AcceleratorType"); - } - /** - * Retrieves a list of accelerator types available to the specified project. - * (acceleratorTypes.listAcceleratorTypes) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_AcceleratorTypeList - */ - public function listAcceleratorTypes($project, $zone, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_AcceleratorTypeList"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/Addresses.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/Addresses.php deleted file mode 100644 index 639cb4c2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/Addresses.php +++ /dev/null @@ -1,206 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $addresses = $computeService->addresses; - * - */ -class Google_Service_Compute_Resource_Addresses extends Google_Service_Resource -{ - /** - * Retrieves an aggregated list of addresses. (addresses.aggregatedList) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_AddressAggregatedList - */ - public function aggregatedList($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('aggregatedList', array($params), "Google_Service_Compute_AddressAggregatedList"); - } - /** - * Deletes the specified address resource. (addresses.delete) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region for this request. - * @param string $address Name of the address resource to delete. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function delete($project, $region, $address, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'address' => $address); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns the specified address resource. (addresses.get) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region for this request. - * @param string $address Name of the address resource to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Address - */ - public function get($project, $region, $address, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'address' => $address); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_Address"); - } - /** - * Creates an address resource in the specified project by using the data - * included in the request. (addresses.insert) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region for this request. - * @param Google_Service_Compute_Address $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function insert($project, $region, Google_Service_Compute_Address $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves a list of addresses contained within the specified region. - * (addresses.listAddresses) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_AddressList - */ - public function listAddresses($project, $region, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_AddressList"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/Autoscalers.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/Autoscalers.php deleted file mode 100644 index 3c1c9974..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/Autoscalers.php +++ /dev/null @@ -1,268 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $autoscalers = $computeService->autoscalers; - * - */ -class Google_Service_Compute_Resource_Autoscalers extends Google_Service_Resource -{ - /** - * Retrieves an aggregated list of autoscalers. (autoscalers.aggregatedList) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_AutoscalerAggregatedList - */ - public function aggregatedList($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('aggregatedList', array($params), "Google_Service_Compute_AutoscalerAggregatedList"); - } - /** - * Deletes the specified autoscaler. (autoscalers.delete) - * - * @param string $project Project ID for this request. - * @param string $zone Name of the zone for this request. - * @param string $autoscaler Name of the autoscaler to delete. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function delete($project, $zone, $autoscaler, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'autoscaler' => $autoscaler); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns the specified autoscaler resource. Gets a list of available - * autoscalers by making a list() request. (autoscalers.get) - * - * @param string $project Project ID for this request. - * @param string $zone Name of the zone for this request. - * @param string $autoscaler Name of the autoscaler to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Autoscaler - */ - public function get($project, $zone, $autoscaler, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'autoscaler' => $autoscaler); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_Autoscaler"); - } - /** - * Creates an autoscaler in the specified project using the data included in the - * request. (autoscalers.insert) - * - * @param string $project Project ID for this request. - * @param string $zone Name of the zone for this request. - * @param Google_Service_Compute_Autoscaler $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function insert($project, $zone, Google_Service_Compute_Autoscaler $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves a list of autoscalers contained within the specified zone. - * (autoscalers.listAutoscalers) - * - * @param string $project Project ID for this request. - * @param string $zone Name of the zone for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_AutoscalerList - */ - public function listAutoscalers($project, $zone, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_AutoscalerList"); - } - /** - * Updates an autoscaler in the specified project using the data included in the - * request. This method supports PATCH semantics and uses the JSON merge patch - * format and processing rules. (autoscalers.patch) - * - * @param string $project Project ID for this request. - * @param string $zone Name of the zone for this request. - * @param Google_Service_Compute_Autoscaler $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string autoscaler Name of the autoscaler to patch. - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function patch($project, $zone, Google_Service_Compute_Autoscaler $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Compute_Operation"); - } - /** - * Updates an autoscaler in the specified project using the data included in the - * request. (autoscalers.update) - * - * @param string $project Project ID for this request. - * @param string $zone Name of the zone for this request. - * @param Google_Service_Compute_Autoscaler $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string autoscaler Name of the autoscaler to update. - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function update($project, $zone, Google_Service_Compute_Autoscaler $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Compute_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/BackendBuckets.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/BackendBuckets.php deleted file mode 100644 index 31e30ccc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/BackendBuckets.php +++ /dev/null @@ -1,270 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $backendBuckets = $computeService->backendBuckets; - * - */ -class Google_Service_Compute_Resource_BackendBuckets extends Google_Service_Resource -{ - /** - * Adds a key for validating requests with signed URLs for this backend bucket. - * (backendBuckets.addSignedUrlKey) - * - * @param string $project Project ID for this request. - * @param string $backendBucket Name of the BackendBucket resource to which the - * Signed URL Key should be added. The name should conform to RFC1035. - * @param Google_Service_Compute_SignedUrlKey $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function addSignedUrlKey($project, $backendBucket, Google_Service_Compute_SignedUrlKey $postBody, $optParams = array()) - { - $params = array('project' => $project, 'backendBucket' => $backendBucket, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('addSignedUrlKey', array($params), "Google_Service_Compute_Operation"); - } - /** - * Deletes the specified BackendBucket resource. (backendBuckets.delete) - * - * @param string $project Project ID for this request. - * @param string $backendBucket Name of the BackendBucket resource to delete. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function delete($project, $backendBucket, $optParams = array()) - { - $params = array('project' => $project, 'backendBucket' => $backendBucket); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Compute_Operation"); - } - /** - * Deletes a key for validating requests with signed URLs for this backend - * bucket. (backendBuckets.deleteSignedUrlKey) - * - * @param string $project Project ID for this request. - * @param string $backendBucket Name of the BackendBucket resource to which the - * Signed URL Key should be added. The name should conform to RFC1035. - * @param string $keyName The name of the Signed URL Key to delete. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function deleteSignedUrlKey($project, $backendBucket, $keyName, $optParams = array()) - { - $params = array('project' => $project, 'backendBucket' => $backendBucket, 'keyName' => $keyName); - $params = array_merge($params, $optParams); - return $this->call('deleteSignedUrlKey', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns the specified BackendBucket resource. Gets a list of available - * backend buckets by making a list() request. (backendBuckets.get) - * - * @param string $project Project ID for this request. - * @param string $backendBucket Name of the BackendBucket resource to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_BackendBucket - */ - public function get($project, $backendBucket, $optParams = array()) - { - $params = array('project' => $project, 'backendBucket' => $backendBucket); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_BackendBucket"); - } - /** - * Creates a BackendBucket resource in the specified project using the data - * included in the request. (backendBuckets.insert) - * - * @param string $project Project ID for this request. - * @param Google_Service_Compute_BackendBucket $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function insert($project, Google_Service_Compute_BackendBucket $postBody, $optParams = array()) - { - $params = array('project' => $project, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves the list of BackendBucket resources available to the specified - * project. (backendBuckets.listBackendBuckets) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_BackendBucketList - */ - public function listBackendBuckets($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_BackendBucketList"); - } - /** - * Updates the specified BackendBucket resource with the data included in the - * request. This method supports PATCH semantics and uses the JSON merge patch - * format and processing rules. (backendBuckets.patch) - * - * @param string $project Project ID for this request. - * @param string $backendBucket Name of the BackendBucket resource to patch. - * @param Google_Service_Compute_BackendBucket $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function patch($project, $backendBucket, Google_Service_Compute_BackendBucket $postBody, $optParams = array()) - { - $params = array('project' => $project, 'backendBucket' => $backendBucket, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Compute_Operation"); - } - /** - * Updates the specified BackendBucket resource with the data included in the - * request. (backendBuckets.update) - * - * @param string $project Project ID for this request. - * @param string $backendBucket Name of the BackendBucket resource to update. - * @param Google_Service_Compute_BackendBucket $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function update($project, $backendBucket, Google_Service_Compute_BackendBucket $postBody, $optParams = array()) - { - $params = array('project' => $project, 'backendBucket' => $backendBucket, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Compute_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/BackendServices.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/BackendServices.php deleted file mode 100644 index 92de2fcc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/BackendServices.php +++ /dev/null @@ -1,376 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $backendServices = $computeService->backendServices; - * - */ -class Google_Service_Compute_Resource_BackendServices extends Google_Service_Resource -{ - /** - * Adds a key for validating requests with signed URLs for this backend service. - * (backendServices.addSignedUrlKey) - * - * @param string $project Project ID for this request. - * @param string $backendService Name of the BackendService resource to which - * the Signed URL Key should be added. The name should conform to RFC1035. - * @param Google_Service_Compute_SignedUrlKey $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function addSignedUrlKey($project, $backendService, Google_Service_Compute_SignedUrlKey $postBody, $optParams = array()) - { - $params = array('project' => $project, 'backendService' => $backendService, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('addSignedUrlKey', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves the list of all BackendService resources, regional and global, - * available to the specified project. (backendServices.aggregatedList) - * - * @param string $project Name of the project scoping this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_BackendServiceAggregatedList - */ - public function aggregatedList($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('aggregatedList', array($params), "Google_Service_Compute_BackendServiceAggregatedList"); - } - /** - * Deletes the specified BackendService resource. (backendServices.delete) - * - * @param string $project Project ID for this request. - * @param string $backendService Name of the BackendService resource to delete. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function delete($project, $backendService, $optParams = array()) - { - $params = array('project' => $project, 'backendService' => $backendService); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Compute_Operation"); - } - /** - * Deletes a key for validating requests with signed URLs for this backend - * service. (backendServices.deleteSignedUrlKey) - * - * @param string $project Project ID for this request. - * @param string $backendService Name of the BackendService resource to which - * the Signed URL Key should be added. The name should conform to RFC1035. - * @param string $keyName The name of the Signed URL Key to delete. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function deleteSignedUrlKey($project, $backendService, $keyName, $optParams = array()) - { - $params = array('project' => $project, 'backendService' => $backendService, 'keyName' => $keyName); - $params = array_merge($params, $optParams); - return $this->call('deleteSignedUrlKey', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns the specified BackendService resource. Gets a list of available - * backend services. (backendServices.get) - * - * @param string $project Project ID for this request. - * @param string $backendService Name of the BackendService resource to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_BackendService - */ - public function get($project, $backendService, $optParams = array()) - { - $params = array('project' => $project, 'backendService' => $backendService); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_BackendService"); - } - /** - * Gets the most recent health check results for this BackendService. - * (backendServices.getHealth) - * - * @param string $project - * @param string $backendService Name of the BackendService resource to which - * the queried instance belongs. - * @param Google_Service_Compute_ResourceGroupReference $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_BackendServiceGroupHealth - */ - public function getHealth($project, $backendService, Google_Service_Compute_ResourceGroupReference $postBody, $optParams = array()) - { - $params = array('project' => $project, 'backendService' => $backendService, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('getHealth', array($params), "Google_Service_Compute_BackendServiceGroupHealth"); - } - /** - * Creates a BackendService resource in the specified project using the data - * included in the request. There are several restrictions and guidelines to - * keep in mind when creating a backend service. Read Restrictions and - * Guidelines for more information. (backendServices.insert) - * - * @param string $project Project ID for this request. - * @param Google_Service_Compute_BackendService $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function insert($project, Google_Service_Compute_BackendService $postBody, $optParams = array()) - { - $params = array('project' => $project, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves the list of BackendService resources available to the specified - * project. (backendServices.listBackendServices) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_BackendServiceList - */ - public function listBackendServices($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_BackendServiceList"); - } - /** - * Patches the specified BackendService resource with the data included in the - * request. There are several restrictions and guidelines to keep in mind when - * updating a backend service. Read Restrictions and Guidelines for more - * information. This method supports PATCH semantics and uses the JSON merge - * patch format and processing rules. (backendServices.patch) - * - * @param string $project Project ID for this request. - * @param string $backendService Name of the BackendService resource to patch. - * @param Google_Service_Compute_BackendService $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function patch($project, $backendService, Google_Service_Compute_BackendService $postBody, $optParams = array()) - { - $params = array('project' => $project, 'backendService' => $backendService, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Compute_Operation"); - } - /** - * Sets the security policy for the specified backend service. - * (backendServices.setSecurityPolicy) - * - * @param string $project Project ID for this request. - * @param string $backendService Name of the BackendService resource to which - * the security policy should be set. The name should conform to RFC1035. - * @param Google_Service_Compute_SecurityPolicyReference $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function setSecurityPolicy($project, $backendService, Google_Service_Compute_SecurityPolicyReference $postBody, $optParams = array()) - { - $params = array('project' => $project, 'backendService' => $backendService, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setSecurityPolicy', array($params), "Google_Service_Compute_Operation"); - } - /** - * Updates the specified BackendService resource with the data included in the - * request. There are several restrictions and guidelines to keep in mind when - * updating a backend service. Read Restrictions and Guidelines for more - * information. (backendServices.update) - * - * @param string $project Project ID for this request. - * @param string $backendService Name of the BackendService resource to update. - * @param Google_Service_Compute_BackendService $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function update($project, $backendService, Google_Service_Compute_BackendService $postBody, $optParams = array()) - { - $params = array('project' => $project, 'backendService' => $backendService, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Compute_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/DiskTypes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/DiskTypes.php deleted file mode 100644 index fa62043e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/DiskTypes.php +++ /dev/null @@ -1,150 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $diskTypes = $computeService->diskTypes; - * - */ -class Google_Service_Compute_Resource_DiskTypes extends Google_Service_Resource -{ - /** - * Retrieves an aggregated list of disk types. (diskTypes.aggregatedList) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_DiskTypeAggregatedList - */ - public function aggregatedList($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('aggregatedList', array($params), "Google_Service_Compute_DiskTypeAggregatedList"); - } - /** - * Returns the specified disk type. Gets a list of available disk types by - * making a list() request. (diskTypes.get) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $diskType Name of the disk type to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_DiskType - */ - public function get($project, $zone, $diskType, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'diskType' => $diskType); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_DiskType"); - } - /** - * Retrieves a list of disk types available to the specified project. - * (diskTypes.listDiskTypes) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_DiskTypeList - */ - public function listDiskTypes($project, $zone, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_DiskTypeList"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/Disks.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/Disks.php deleted file mode 100644 index a6035050..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/Disks.php +++ /dev/null @@ -1,417 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $disks = $computeService->disks; - * - */ -class Google_Service_Compute_Resource_Disks extends Google_Service_Resource -{ - /** - * Adds existing resource policies to a disk. You can only add one policy which - * will be applied to this disk for scheduling snapshot creation. - * (disks.addResourcePolicies) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $disk The disk name for this request. - * @param Google_Service_Compute_DisksAddResourcePoliciesRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function addResourcePolicies($project, $zone, $disk, Google_Service_Compute_DisksAddResourcePoliciesRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'disk' => $disk, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('addResourcePolicies', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves an aggregated list of persistent disks. (disks.aggregatedList) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_DiskAggregatedList - */ - public function aggregatedList($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('aggregatedList', array($params), "Google_Service_Compute_DiskAggregatedList"); - } - /** - * Creates a snapshot of a specified persistent disk. (disks.createSnapshot) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $disk Name of the persistent disk to snapshot. - * @param Google_Service_Compute_Snapshot $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool guestFlush [Input Only] Specifies to create an application - * consistent snapshot by informing the OS to prepare for the snapshot process. - * Currently only supported on Windows instances using the Volume Shadow Copy - * Service (VSS). - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function createSnapshot($project, $zone, $disk, Google_Service_Compute_Snapshot $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'disk' => $disk, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('createSnapshot', array($params), "Google_Service_Compute_Operation"); - } - /** - * Deletes the specified persistent disk. Deleting a disk removes its data - * permanently and is irreversible. However, deleting a disk does not delete any - * snapshots previously made from the disk. You must separately delete - * snapshots. (disks.delete) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $disk Name of the persistent disk to delete. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function delete($project, $zone, $disk, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'disk' => $disk); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns a specified persistent disk. Gets a list of available persistent - * disks by making a list() request. (disks.get) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $disk Name of the persistent disk to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Disk - */ - public function get($project, $zone, $disk, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'disk' => $disk); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_Disk"); - } - /** - * Gets the access control policy for a resource. May be empty if no such policy - * or resource exists. (disks.getIamPolicy) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $resource Name or id of the resource for this request. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Policy - */ - public function getIamPolicy($project, $zone, $resource, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'resource' => $resource); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_Compute_Policy"); - } - /** - * Creates a persistent disk in the specified project using the data in the - * request. You can create a disk with a sourceImage, a sourceSnapshot, or - * create an empty 500 GB data disk by omitting all properties. You can also - * create a disk that is larger than the default size by specifying the sizeGb - * property. (disks.insert) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param Google_Service_Compute_Disk $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @opt_param string sourceImage Optional. Source image to restore onto a disk. - * @return Google_Service_Compute_Operation - */ - public function insert($project, $zone, Google_Service_Compute_Disk $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves a list of persistent disks contained within the specified zone. - * (disks.listDisks) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_DiskList - */ - public function listDisks($project, $zone, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_DiskList"); - } - /** - * Removes resource policies from a disk. (disks.removeResourcePolicies) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $disk The disk name for this request. - * @param Google_Service_Compute_DisksRemoveResourcePoliciesRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function removeResourcePolicies($project, $zone, $disk, Google_Service_Compute_DisksRemoveResourcePoliciesRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'disk' => $disk, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('removeResourcePolicies', array($params), "Google_Service_Compute_Operation"); - } - /** - * Resizes the specified persistent disk. You can only increase the size of the - * disk. (disks.resize) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $disk The name of the persistent disk. - * @param Google_Service_Compute_DisksResizeRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function resize($project, $zone, $disk, Google_Service_Compute_DisksResizeRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'disk' => $disk, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('resize', array($params), "Google_Service_Compute_Operation"); - } - /** - * Sets the access control policy on the specified resource. Replaces any - * existing policy. (disks.setIamPolicy) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $resource Name or id of the resource for this request. - * @param Google_Service_Compute_ZoneSetPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Policy - */ - public function setIamPolicy($project, $zone, $resource, Google_Service_Compute_ZoneSetPolicyRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_Compute_Policy"); - } - /** - * Sets the labels on a disk. To learn more about labels, read the Labeling - * Resources documentation. (disks.setLabels) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $resource Name or id of the resource for this request. - * @param Google_Service_Compute_ZoneSetLabelsRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function setLabels($project, $zone, $resource, Google_Service_Compute_ZoneSetLabelsRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setLabels', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns permissions that a caller has on the specified resource. - * (disks.testIamPermissions) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $resource Name or id of the resource for this request. - * @param Google_Service_Compute_TestPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_TestPermissionsResponse - */ - public function testIamPermissions($project, $zone, $resource, Google_Service_Compute_TestPermissionsRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_Compute_TestPermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/ExternalVpnGateways.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/ExternalVpnGateways.php deleted file mode 100644 index b0de49dd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/ExternalVpnGateways.php +++ /dev/null @@ -1,183 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $externalVpnGateways = $computeService->externalVpnGateways; - * - */ -class Google_Service_Compute_Resource_ExternalVpnGateways extends Google_Service_Resource -{ - /** - * Deletes the specified externalVpnGateway. (externalVpnGateways.delete) - * - * @param string $project Project ID for this request. - * @param string $externalVpnGateway Name of the externalVpnGateways to delete. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function delete($project, $externalVpnGateway, $optParams = array()) - { - $params = array('project' => $project, 'externalVpnGateway' => $externalVpnGateway); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns the specified externalVpnGateway. Get a list of available - * externalVpnGateways by making a list() request. (externalVpnGateways.get) - * - * @param string $project Project ID for this request. - * @param string $externalVpnGateway Name of the externalVpnGateway to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_ExternalVpnGateway - */ - public function get($project, $externalVpnGateway, $optParams = array()) - { - $params = array('project' => $project, 'externalVpnGateway' => $externalVpnGateway); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_ExternalVpnGateway"); - } - /** - * Creates a ExternalVpnGateway in the specified project using the data included - * in the request. (externalVpnGateways.insert) - * - * @param string $project Project ID for this request. - * @param Google_Service_Compute_ExternalVpnGateway $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function insert($project, Google_Service_Compute_ExternalVpnGateway $postBody, $optParams = array()) - { - $params = array('project' => $project, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves the list of ExternalVpnGateway available to the specified project. - * (externalVpnGateways.listExternalVpnGateways) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_ExternalVpnGatewayList - */ - public function listExternalVpnGateways($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_ExternalVpnGatewayList"); - } - /** - * Sets the labels on an ExternalVpnGateway. To learn more about labels, read - * the Labeling Resources documentation. (externalVpnGateways.setLabels) - * - * @param string $project Project ID for this request. - * @param string $resource Name or id of the resource for this request. - * @param Google_Service_Compute_GlobalSetLabelsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Operation - */ - public function setLabels($project, $resource, Google_Service_Compute_GlobalSetLabelsRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setLabels', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns permissions that a caller has on the specified resource. - * (externalVpnGateways.testIamPermissions) - * - * @param string $project Project ID for this request. - * @param string $resource Name or id of the resource for this request. - * @param Google_Service_Compute_TestPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_TestPermissionsResponse - */ - public function testIamPermissions($project, $resource, Google_Service_Compute_TestPermissionsRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_Compute_TestPermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/Firewalls.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/Firewalls.php deleted file mode 100644 index ca872da8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/Firewalls.php +++ /dev/null @@ -1,211 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $firewalls = $computeService->firewalls; - * - */ -class Google_Service_Compute_Resource_Firewalls extends Google_Service_Resource -{ - /** - * Deletes the specified firewall. (firewalls.delete) - * - * @param string $project Project ID for this request. - * @param string $firewall Name of the firewall rule to delete. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function delete($project, $firewall, $optParams = array()) - { - $params = array('project' => $project, 'firewall' => $firewall); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns the specified firewall. (firewalls.get) - * - * @param string $project Project ID for this request. - * @param string $firewall Name of the firewall rule to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Firewall - */ - public function get($project, $firewall, $optParams = array()) - { - $params = array('project' => $project, 'firewall' => $firewall); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_Firewall"); - } - /** - * Creates a firewall rule in the specified project using the data included in - * the request. (firewalls.insert) - * - * @param string $project Project ID for this request. - * @param Google_Service_Compute_Firewall $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function insert($project, Google_Service_Compute_Firewall $postBody, $optParams = array()) - { - $params = array('project' => $project, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves the list of firewall rules available to the specified project. - * (firewalls.listFirewalls) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_FirewallList - */ - public function listFirewalls($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_FirewallList"); - } - /** - * Updates the specified firewall rule with the data included in the request. - * This method supports PATCH semantics and uses the JSON merge patch format and - * processing rules. (firewalls.patch) - * - * @param string $project Project ID for this request. - * @param string $firewall Name of the firewall rule to patch. - * @param Google_Service_Compute_Firewall $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function patch($project, $firewall, Google_Service_Compute_Firewall $postBody, $optParams = array()) - { - $params = array('project' => $project, 'firewall' => $firewall, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Compute_Operation"); - } - /** - * Updates the specified firewall rule with the data included in the request. - * Note that all fields will be updated if using PUT, even fields that are not - * specified. To update individual fields, please use PATCH instead. - * (firewalls.update) - * - * @param string $project Project ID for this request. - * @param string $firewall Name of the firewall rule to update. - * @param Google_Service_Compute_Firewall $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function update($project, $firewall, Google_Service_Compute_Firewall $postBody, $optParams = array()) - { - $params = array('project' => $project, 'firewall' => $firewall, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Compute_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/ForwardingRules.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/ForwardingRules.php deleted file mode 100644 index 7e5e5f1c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/ForwardingRules.php +++ /dev/null @@ -1,270 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $forwardingRules = $computeService->forwardingRules; - * - */ -class Google_Service_Compute_Resource_ForwardingRules extends Google_Service_Resource -{ - /** - * Retrieves an aggregated list of forwarding rules. - * (forwardingRules.aggregatedList) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_ForwardingRuleAggregatedList - */ - public function aggregatedList($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('aggregatedList', array($params), "Google_Service_Compute_ForwardingRuleAggregatedList"); - } - /** - * Deletes the specified ForwardingRule resource. (forwardingRules.delete) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param string $forwardingRule Name of the ForwardingRule resource to delete. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function delete($project, $region, $forwardingRule, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'forwardingRule' => $forwardingRule); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns the specified ForwardingRule resource. (forwardingRules.get) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param string $forwardingRule Name of the ForwardingRule resource to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_ForwardingRule - */ - public function get($project, $region, $forwardingRule, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'forwardingRule' => $forwardingRule); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_ForwardingRule"); - } - /** - * Creates a ForwardingRule resource in the specified project and region using - * the data included in the request. (forwardingRules.insert) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param Google_Service_Compute_ForwardingRule $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function insert($project, $region, Google_Service_Compute_ForwardingRule $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves a list of ForwardingRule resources available to the specified - * project and region. (forwardingRules.listForwardingRules) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_ForwardingRuleList - */ - public function listForwardingRules($project, $region, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_ForwardingRuleList"); - } - /** - * Updates the specified forwarding rule with the data included in the request. - * This method supports PATCH semantics and uses the JSON merge patch format and - * processing rules. Currently, you can only patch the network_tier field. - * (forwardingRules.patch) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param string $forwardingRule Name of the ForwardingRule resource to patch. - * @param Google_Service_Compute_ForwardingRule $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function patch($project, $region, $forwardingRule, Google_Service_Compute_ForwardingRule $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'forwardingRule' => $forwardingRule, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Compute_Operation"); - } - /** - * Changes target URL for forwarding rule. The new target should be of the same - * type as the old target. (forwardingRules.setTarget) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param string $forwardingRule Name of the ForwardingRule resource in which - * target is to be set. - * @param Google_Service_Compute_TargetReference $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function setTarget($project, $region, $forwardingRule, Google_Service_Compute_TargetReference $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'forwardingRule' => $forwardingRule, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setTarget', array($params), "Google_Service_Compute_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/GlobalAddresses.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/GlobalAddresses.php deleted file mode 100644 index 14f85081..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/GlobalAddresses.php +++ /dev/null @@ -1,150 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $globalAddresses = $computeService->globalAddresses; - * - */ -class Google_Service_Compute_Resource_GlobalAddresses extends Google_Service_Resource -{ - /** - * Deletes the specified address resource. (globalAddresses.delete) - * - * @param string $project Project ID for this request. - * @param string $address Name of the address resource to delete. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function delete($project, $address, $optParams = array()) - { - $params = array('project' => $project, 'address' => $address); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns the specified address resource. Gets a list of available addresses by - * making a list() request. (globalAddresses.get) - * - * @param string $project Project ID for this request. - * @param string $address Name of the address resource to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Address - */ - public function get($project, $address, $optParams = array()) - { - $params = array('project' => $project, 'address' => $address); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_Address"); - } - /** - * Creates an address resource in the specified project by using the data - * included in the request. (globalAddresses.insert) - * - * @param string $project Project ID for this request. - * @param Google_Service_Compute_Address $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function insert($project, Google_Service_Compute_Address $postBody, $optParams = array()) - { - $params = array('project' => $project, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves a list of global addresses. (globalAddresses.listGlobalAddresses) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_AddressList - */ - public function listGlobalAddresses($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_AddressList"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/GlobalForwardingRules.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/GlobalForwardingRules.php deleted file mode 100644 index 32bd5e11..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/GlobalForwardingRules.php +++ /dev/null @@ -1,214 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $globalForwardingRules = $computeService->globalForwardingRules; - * - */ -class Google_Service_Compute_Resource_GlobalForwardingRules extends Google_Service_Resource -{ - /** - * Deletes the specified GlobalForwardingRule resource. - * (globalForwardingRules.delete) - * - * @param string $project Project ID for this request. - * @param string $forwardingRule Name of the ForwardingRule resource to delete. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function delete($project, $forwardingRule, $optParams = array()) - { - $params = array('project' => $project, 'forwardingRule' => $forwardingRule); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns the specified GlobalForwardingRule resource. Gets a list of available - * forwarding rules by making a list() request. (globalForwardingRules.get) - * - * @param string $project Project ID for this request. - * @param string $forwardingRule Name of the ForwardingRule resource to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_ForwardingRule - */ - public function get($project, $forwardingRule, $optParams = array()) - { - $params = array('project' => $project, 'forwardingRule' => $forwardingRule); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_ForwardingRule"); - } - /** - * Creates a GlobalForwardingRule resource in the specified project using the - * data included in the request. (globalForwardingRules.insert) - * - * @param string $project Project ID for this request. - * @param Google_Service_Compute_ForwardingRule $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function insert($project, Google_Service_Compute_ForwardingRule $postBody, $optParams = array()) - { - $params = array('project' => $project, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves a list of GlobalForwardingRule resources available to the specified - * project. (globalForwardingRules.listGlobalForwardingRules) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_ForwardingRuleList - */ - public function listGlobalForwardingRules($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_ForwardingRuleList"); - } - /** - * Updates the specified forwarding rule with the data included in the request. - * This method supports PATCH semantics and uses the JSON merge patch format and - * processing rules. Currently, you can only patch the network_tier field. - * (globalForwardingRules.patch) - * - * @param string $project Project ID for this request. - * @param string $forwardingRule Name of the ForwardingRule resource to patch. - * @param Google_Service_Compute_ForwardingRule $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function patch($project, $forwardingRule, Google_Service_Compute_ForwardingRule $postBody, $optParams = array()) - { - $params = array('project' => $project, 'forwardingRule' => $forwardingRule, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Compute_Operation"); - } - /** - * Changes target URL for the GlobalForwardingRule resource. The new target - * should be of the same type as the old target. - * (globalForwardingRules.setTarget) - * - * @param string $project Project ID for this request. - * @param string $forwardingRule Name of the ForwardingRule resource in which - * target is to be set. - * @param Google_Service_Compute_TargetReference $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function setTarget($project, $forwardingRule, Google_Service_Compute_TargetReference $postBody, $optParams = array()) - { - $params = array('project' => $project, 'forwardingRule' => $forwardingRule, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setTarget', array($params), "Google_Service_Compute_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/GlobalOperations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/GlobalOperations.php deleted file mode 100644 index e4482af8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/GlobalOperations.php +++ /dev/null @@ -1,187 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $globalOperations = $computeService->globalOperations; - * - */ -class Google_Service_Compute_Resource_GlobalOperations extends Google_Service_Resource -{ - /** - * Retrieves an aggregated list of all operations. - * (globalOperations.aggregatedList) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_OperationAggregatedList - */ - public function aggregatedList($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('aggregatedList', array($params), "Google_Service_Compute_OperationAggregatedList"); - } - /** - * Deletes the specified Operations resource. (globalOperations.delete) - * - * @param string $project Project ID for this request. - * @param string $operation Name of the Operations resource to delete. - * @param array $optParams Optional parameters. - */ - public function delete($project, $operation, $optParams = array()) - { - $params = array('project' => $project, 'operation' => $operation); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Retrieves the specified Operations resource. Gets a list of operations by - * making a list() request. (globalOperations.get) - * - * @param string $project Project ID for this request. - * @param string $operation Name of the Operations resource to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Operation - */ - public function get($project, $operation, $optParams = array()) - { - $params = array('project' => $project, 'operation' => $operation); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves a list of Operation resources contained within the specified - * project. (globalOperations.listGlobalOperations) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_OperationList - */ - public function listGlobalOperations($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_OperationList"); - } - /** - * Waits for the specified Operation resource to return as DONE or for the - * request to approach the 2 minute deadline, and retrieves the specified - * Operation resource. This method differs from the GET method in that it waits - * for no more than the default deadline (2 minutes) and then returns the - * current state of the operation, which might be DONE or still in progress. - * - * This method is called on a best-effort basis. Specifically: - In uncommon - * cases, when the server is overloaded, the request might return before the - * default deadline is reached, or might return after zero seconds. - If the - * default deadline is reached, there is no guarantee that the operation is - * actually done when the method returns. Be prepared to retry if the operation - * is not DONE. (globalOperations.wait) - * - * @param string $project Project ID for this request. - * @param string $operation Name of the Operations resource to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Operation - */ - public function wait($project, $operation, $optParams = array()) - { - $params = array('project' => $project, 'operation' => $operation); - $params = array_merge($params, $optParams); - return $this->call('wait', array($params), "Google_Service_Compute_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/HealthChecks.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/HealthChecks.php deleted file mode 100644 index 2917d735..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/HealthChecks.php +++ /dev/null @@ -1,263 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $healthChecks = $computeService->healthChecks; - * - */ -class Google_Service_Compute_Resource_HealthChecks extends Google_Service_Resource -{ - /** - * Retrieves the list of all HealthCheck resources, regional and global, - * available to the specified project. (healthChecks.aggregatedList) - * - * @param string $project Name of the project scoping this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_HealthChecksAggregatedList - */ - public function aggregatedList($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('aggregatedList', array($params), "Google_Service_Compute_HealthChecksAggregatedList"); - } - /** - * Deletes the specified HealthCheck resource. (healthChecks.delete) - * - * @param string $project Project ID for this request. - * @param string $healthCheck Name of the HealthCheck resource to delete. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function delete($project, $healthCheck, $optParams = array()) - { - $params = array('project' => $project, 'healthCheck' => $healthCheck); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns the specified HealthCheck resource. Gets a list of available health - * checks by making a list() request. (healthChecks.get) - * - * @param string $project Project ID for this request. - * @param string $healthCheck Name of the HealthCheck resource to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_HealthCheck - */ - public function get($project, $healthCheck, $optParams = array()) - { - $params = array('project' => $project, 'healthCheck' => $healthCheck); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_HealthCheck"); - } - /** - * Creates a HealthCheck resource in the specified project using the data - * included in the request. (healthChecks.insert) - * - * @param string $project Project ID for this request. - * @param Google_Service_Compute_HealthCheck $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function insert($project, Google_Service_Compute_HealthCheck $postBody, $optParams = array()) - { - $params = array('project' => $project, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves the list of HealthCheck resources available to the specified - * project. (healthChecks.listHealthChecks) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_HealthCheckList - */ - public function listHealthChecks($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_HealthCheckList"); - } - /** - * Updates a HealthCheck resource in the specified project using the data - * included in the request. This method supports PATCH semantics and uses the - * JSON merge patch format and processing rules. (healthChecks.patch) - * - * @param string $project Project ID for this request. - * @param string $healthCheck Name of the HealthCheck resource to patch. - * @param Google_Service_Compute_HealthCheck $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function patch($project, $healthCheck, Google_Service_Compute_HealthCheck $postBody, $optParams = array()) - { - $params = array('project' => $project, 'healthCheck' => $healthCheck, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Compute_Operation"); - } - /** - * Updates a HealthCheck resource in the specified project using the data - * included in the request. (healthChecks.update) - * - * @param string $project Project ID for this request. - * @param string $healthCheck Name of the HealthCheck resource to update. - * @param Google_Service_Compute_HealthCheck $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function update($project, $healthCheck, Google_Service_Compute_HealthCheck $postBody, $optParams = array()) - { - $params = array('project' => $project, 'healthCheck' => $healthCheck, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Compute_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/HttpHealthChecks.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/HttpHealthChecks.php deleted file mode 100644 index 4511b123..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/HttpHealthChecks.php +++ /dev/null @@ -1,213 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $httpHealthChecks = $computeService->httpHealthChecks; - * - */ -class Google_Service_Compute_Resource_HttpHealthChecks extends Google_Service_Resource -{ - /** - * Deletes the specified HttpHealthCheck resource. (httpHealthChecks.delete) - * - * @param string $project Project ID for this request. - * @param string $httpHealthCheck Name of the HttpHealthCheck resource to - * delete. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function delete($project, $httpHealthCheck, $optParams = array()) - { - $params = array('project' => $project, 'httpHealthCheck' => $httpHealthCheck); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns the specified HttpHealthCheck resource. Gets a list of available HTTP - * health checks by making a list() request. (httpHealthChecks.get) - * - * @param string $project Project ID for this request. - * @param string $httpHealthCheck Name of the HttpHealthCheck resource to - * return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_HttpHealthCheck - */ - public function get($project, $httpHealthCheck, $optParams = array()) - { - $params = array('project' => $project, 'httpHealthCheck' => $httpHealthCheck); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_HttpHealthCheck"); - } - /** - * Creates a HttpHealthCheck resource in the specified project using the data - * included in the request. (httpHealthChecks.insert) - * - * @param string $project Project ID for this request. - * @param Google_Service_Compute_HttpHealthCheck $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function insert($project, Google_Service_Compute_HttpHealthCheck $postBody, $optParams = array()) - { - $params = array('project' => $project, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves the list of HttpHealthCheck resources available to the specified - * project. (httpHealthChecks.listHttpHealthChecks) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_HttpHealthCheckList - */ - public function listHttpHealthChecks($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_HttpHealthCheckList"); - } - /** - * Updates a HttpHealthCheck resource in the specified project using the data - * included in the request. This method supports PATCH semantics and uses the - * JSON merge patch format and processing rules. (httpHealthChecks.patch) - * - * @param string $project Project ID for this request. - * @param string $httpHealthCheck Name of the HttpHealthCheck resource to patch. - * @param Google_Service_Compute_HttpHealthCheck $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function patch($project, $httpHealthCheck, Google_Service_Compute_HttpHealthCheck $postBody, $optParams = array()) - { - $params = array('project' => $project, 'httpHealthCheck' => $httpHealthCheck, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Compute_Operation"); - } - /** - * Updates a HttpHealthCheck resource in the specified project using the data - * included in the request. (httpHealthChecks.update) - * - * @param string $project Project ID for this request. - * @param string $httpHealthCheck Name of the HttpHealthCheck resource to - * update. - * @param Google_Service_Compute_HttpHealthCheck $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function update($project, $httpHealthCheck, Google_Service_Compute_HttpHealthCheck $postBody, $optParams = array()) - { - $params = array('project' => $project, 'httpHealthCheck' => $httpHealthCheck, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Compute_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/HttpsHealthChecks.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/HttpsHealthChecks.php deleted file mode 100644 index e6683174..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/HttpsHealthChecks.php +++ /dev/null @@ -1,214 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $httpsHealthChecks = $computeService->httpsHealthChecks; - * - */ -class Google_Service_Compute_Resource_HttpsHealthChecks extends Google_Service_Resource -{ - /** - * Deletes the specified HttpsHealthCheck resource. (httpsHealthChecks.delete) - * - * @param string $project Project ID for this request. - * @param string $httpsHealthCheck Name of the HttpsHealthCheck resource to - * delete. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function delete($project, $httpsHealthCheck, $optParams = array()) - { - $params = array('project' => $project, 'httpsHealthCheck' => $httpsHealthCheck); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns the specified HttpsHealthCheck resource. Gets a list of available - * HTTPS health checks by making a list() request. (httpsHealthChecks.get) - * - * @param string $project Project ID for this request. - * @param string $httpsHealthCheck Name of the HttpsHealthCheck resource to - * return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_HttpsHealthCheck - */ - public function get($project, $httpsHealthCheck, $optParams = array()) - { - $params = array('project' => $project, 'httpsHealthCheck' => $httpsHealthCheck); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_HttpsHealthCheck"); - } - /** - * Creates a HttpsHealthCheck resource in the specified project using the data - * included in the request. (httpsHealthChecks.insert) - * - * @param string $project Project ID for this request. - * @param Google_Service_Compute_HttpsHealthCheck $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function insert($project, Google_Service_Compute_HttpsHealthCheck $postBody, $optParams = array()) - { - $params = array('project' => $project, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves the list of HttpsHealthCheck resources available to the specified - * project. (httpsHealthChecks.listHttpsHealthChecks) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_HttpsHealthCheckList - */ - public function listHttpsHealthChecks($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_HttpsHealthCheckList"); - } - /** - * Updates a HttpsHealthCheck resource in the specified project using the data - * included in the request. This method supports PATCH semantics and uses the - * JSON merge patch format and processing rules. (httpsHealthChecks.patch) - * - * @param string $project Project ID for this request. - * @param string $httpsHealthCheck Name of the HttpsHealthCheck resource to - * patch. - * @param Google_Service_Compute_HttpsHealthCheck $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function patch($project, $httpsHealthCheck, Google_Service_Compute_HttpsHealthCheck $postBody, $optParams = array()) - { - $params = array('project' => $project, 'httpsHealthCheck' => $httpsHealthCheck, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Compute_Operation"); - } - /** - * Updates a HttpsHealthCheck resource in the specified project using the data - * included in the request. (httpsHealthChecks.update) - * - * @param string $project Project ID for this request. - * @param string $httpsHealthCheck Name of the HttpsHealthCheck resource to - * update. - * @param Google_Service_Compute_HttpsHealthCheck $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function update($project, $httpsHealthCheck, Google_Service_Compute_HttpsHealthCheck $postBody, $optParams = array()) - { - $params = array('project' => $project, 'httpsHealthCheck' => $httpsHealthCheck, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Compute_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/Images.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/Images.php deleted file mode 100644 index c7bef4e7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/Images.php +++ /dev/null @@ -1,265 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $images = $computeService->images; - * - */ -class Google_Service_Compute_Resource_Images extends Google_Service_Resource -{ - /** - * Deletes the specified image. (images.delete) - * - * @param string $project Project ID for this request. - * @param string $image Name of the image resource to delete. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function delete($project, $image, $optParams = array()) - { - $params = array('project' => $project, 'image' => $image); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Compute_Operation"); - } - /** - * Sets the deprecation status of an image. - * - * If an empty request body is given, clears the deprecation status instead. - * (images.deprecate) - * - * @param string $project Project ID for this request. - * @param string $image Image name. - * @param Google_Service_Compute_DeprecationStatus $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function deprecate($project, $image, Google_Service_Compute_DeprecationStatus $postBody, $optParams = array()) - { - $params = array('project' => $project, 'image' => $image, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('deprecate', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns the specified image. Gets a list of available images by making a - * list() request. (images.get) - * - * @param string $project Project ID for this request. - * @param string $image Name of the image resource to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Image - */ - public function get($project, $image, $optParams = array()) - { - $params = array('project' => $project, 'image' => $image); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_Image"); - } - /** - * Returns the latest image that is part of an image family and is not - * deprecated. (images.getFromFamily) - * - * @param string $project Project ID for this request. - * @param string $family Name of the image family to search for. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Image - */ - public function getFromFamily($project, $family, $optParams = array()) - { - $params = array('project' => $project, 'family' => $family); - $params = array_merge($params, $optParams); - return $this->call('getFromFamily', array($params), "Google_Service_Compute_Image"); - } - /** - * Gets the access control policy for a resource. May be empty if no such policy - * or resource exists. (images.getIamPolicy) - * - * @param string $project Project ID for this request. - * @param string $resource Name or id of the resource for this request. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Policy - */ - public function getIamPolicy($project, $resource, $optParams = array()) - { - $params = array('project' => $project, 'resource' => $resource); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_Compute_Policy"); - } - /** - * Creates an image in the specified project using the data included in the - * request. (images.insert) - * - * @param string $project Project ID for this request. - * @param Google_Service_Compute_Image $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool forceCreate Force image creation if true. - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function insert($project, Google_Service_Compute_Image $postBody, $optParams = array()) - { - $params = array('project' => $project, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves the list of custom images available to the specified project. - * Custom images are images you create that belong to your project. This method - * does not get any images that belong to other projects, including publicly- - * available images, like Debian 8. If you want to get a list of publicly- - * available images, use this method to make a request to the respective image - * project, such as debian-cloud or windows-cloud. (images.listImages) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_ImageList - */ - public function listImages($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_ImageList"); - } - /** - * Sets the access control policy on the specified resource. Replaces any - * existing policy. (images.setIamPolicy) - * - * @param string $project Project ID for this request. - * @param string $resource Name or id of the resource for this request. - * @param Google_Service_Compute_GlobalSetPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Policy - */ - public function setIamPolicy($project, $resource, Google_Service_Compute_GlobalSetPolicyRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_Compute_Policy"); - } - /** - * Sets the labels on an image. To learn more about labels, read the Labeling - * Resources documentation. (images.setLabels) - * - * @param string $project Project ID for this request. - * @param string $resource Name or id of the resource for this request. - * @param Google_Service_Compute_GlobalSetLabelsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Operation - */ - public function setLabels($project, $resource, Google_Service_Compute_GlobalSetLabelsRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setLabels', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns permissions that a caller has on the specified resource. - * (images.testIamPermissions) - * - * @param string $project Project ID for this request. - * @param string $resource Name or id of the resource for this request. - * @param Google_Service_Compute_TestPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_TestPermissionsResponse - */ - public function testIamPermissions($project, $resource, Google_Service_Compute_TestPermissionsRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_Compute_TestPermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/InstanceGroupManagers.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/InstanceGroupManagers.php deleted file mode 100644 index ee67b2ec..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/InstanceGroupManagers.php +++ /dev/null @@ -1,626 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $instanceGroupManagers = $computeService->instanceGroupManagers; - * - */ -class Google_Service_Compute_Resource_InstanceGroupManagers extends Google_Service_Resource -{ - /** - * Flags the specified instances to be removed from the managed instance group. - * Abandoning an instance does not delete the instance, but it does remove the - * instance from any target pools that are applied by the managed instance - * group. This method reduces the targetSize of the managed instance group by - * the number of instances that you abandon. This operation is marked as DONE - * when the action is scheduled even if the instances have not yet been removed - * from the group. You must separately verify the status of the abandoning - * action with the listmanagedinstances method. - * - * If the group is part of a backend service that has enabled connection - * draining, it can take up to 60 seconds after the connection draining duration - * has elapsed before the VM instance is removed or deleted. - * - * You can specify a maximum of 1000 instances with this method per request. - * (instanceGroupManagers.abandonInstances) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone where the managed instance group is - * located. - * @param string $instanceGroupManager The name of the managed instance group. - * @param Google_Service_Compute_InstanceGroupManagersAbandonInstancesRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function abandonInstances($project, $zone, $instanceGroupManager, Google_Service_Compute_InstanceGroupManagersAbandonInstancesRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'instanceGroupManager' => $instanceGroupManager, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('abandonInstances', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves the list of managed instance groups and groups them by zone. - * (instanceGroupManagers.aggregatedList) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_InstanceGroupManagerAggregatedList - */ - public function aggregatedList($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('aggregatedList', array($params), "Google_Service_Compute_InstanceGroupManagerAggregatedList"); - } - /** - * Apply changes to selected instances on the managed instance group. This - * method can be used to apply new overrides and/or new versions. - * (instanceGroupManagers.applyUpdatesToInstances) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone where the managed instance group is - * located. Should conform to RFC1035. - * @param string $instanceGroupManager The name of the managed instance group, - * should conform to RFC1035. - * @param Google_Service_Compute_InstanceGroupManagersApplyUpdatesRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Operation - */ - public function applyUpdatesToInstances($project, $zone, $instanceGroupManager, Google_Service_Compute_InstanceGroupManagersApplyUpdatesRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'instanceGroupManager' => $instanceGroupManager, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('applyUpdatesToInstances', array($params), "Google_Service_Compute_Operation"); - } - /** - * Creates instances with per-instance configs in this managed instance group. - * Instances are created using the current instance template. The create - * instances operation is marked DONE if the createInstances request is - * successful. The underlying actions take additional time. You must separately - * verify the status of the creating or actions with the listmanagedinstances - * method. (instanceGroupManagers.createInstances) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone where the managed instance group is - * located. It should conform to RFC1035. - * @param string $instanceGroupManager The name of the managed instance group. - * It should conform to RFC1035. - * @param Google_Service_Compute_InstanceGroupManagersCreateInstancesRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function createInstances($project, $zone, $instanceGroupManager, Google_Service_Compute_InstanceGroupManagersCreateInstancesRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'instanceGroupManager' => $instanceGroupManager, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('createInstances', array($params), "Google_Service_Compute_Operation"); - } - /** - * Deletes the specified managed instance group and all of the instances in that - * group. Note that the instance group must not belong to a backend service. - * Read Deleting an instance group for more information. - * (instanceGroupManagers.delete) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone where the managed instance group is - * located. - * @param string $instanceGroupManager The name of the managed instance group to - * delete. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function delete($project, $zone, $instanceGroupManager, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'instanceGroupManager' => $instanceGroupManager); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Compute_Operation"); - } - /** - * Flags the specified instances in the managed instance group for immediate - * deletion. The instances are also removed from any target pools of which they - * were a member. This method reduces the targetSize of the managed instance - * group by the number of instances that you delete. This operation is marked as - * DONE when the action is scheduled even if the instances are still being - * deleted. You must separately verify the status of the deleting action with - * the listmanagedinstances method. - * - * If the group is part of a backend service that has enabled connection - * draining, it can take up to 60 seconds after the connection draining duration - * has elapsed before the VM instance is removed or deleted. - * - * You can specify a maximum of 1000 instances with this method per request. - * (instanceGroupManagers.deleteInstances) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone where the managed instance group is - * located. - * @param string $instanceGroupManager The name of the managed instance group. - * @param Google_Service_Compute_InstanceGroupManagersDeleteInstancesRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function deleteInstances($project, $zone, $instanceGroupManager, Google_Service_Compute_InstanceGroupManagersDeleteInstancesRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'instanceGroupManager' => $instanceGroupManager, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('deleteInstances', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns all of the details about the specified managed instance group. Gets a - * list of available managed instance groups by making a list() request. - * (instanceGroupManagers.get) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone where the managed instance group is - * located. - * @param string $instanceGroupManager The name of the managed instance group. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_InstanceGroupManager - */ - public function get($project, $zone, $instanceGroupManager, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'instanceGroupManager' => $instanceGroupManager); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_InstanceGroupManager"); - } - /** - * Creates a managed instance group using the information that you specify in - * the request. After the group is created, instances in the group are created - * using the specified instance template. This operation is marked as DONE when - * the group is created even if the instances in the group have not yet been - * created. You must separately verify the status of the individual instances - * with the listmanagedinstances method. - * - * A managed instance group can have up to 1000 VM instances per group. Please - * contact Cloud Support if you need an increase in this limit. - * (instanceGroupManagers.insert) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone where you want to create the managed - * instance group. - * @param Google_Service_Compute_InstanceGroupManager $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function insert($project, $zone, Google_Service_Compute_InstanceGroupManager $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves a list of managed instance groups that are contained within the - * specified project and zone. (instanceGroupManagers.listInstanceGroupManagers) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone where the managed instance group is - * located. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_InstanceGroupManagerList - */ - public function listInstanceGroupManagers($project, $zone, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_InstanceGroupManagerList"); - } - /** - * Lists all of the instances in the managed instance group. Each instance in - * the list has a currentAction, which indicates the action that the managed - * instance group is performing on the instance. For example, if the group is - * still creating an instance, the currentAction is CREATING. If a previous - * action failed, the list displays the errors for that failed action. - * (instanceGroupManagers.listManagedInstances) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone where the managed instance group is - * located. - * @param string $instanceGroupManager The name of the managed instance group. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string order_by Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_InstanceGroupManagersListManagedInstancesResponse - */ - public function listManagedInstances($project, $zone, $instanceGroupManager, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'instanceGroupManager' => $instanceGroupManager); - $params = array_merge($params, $optParams); - return $this->call('listManagedInstances', array($params), "Google_Service_Compute_InstanceGroupManagersListManagedInstancesResponse"); - } - /** - * Updates a managed instance group using the information that you specify in - * the request. This operation is marked as DONE when the group is patched even - * if the instances in the group are still in the process of being patched. You - * must separately verify the status of the individual instances with the - * listManagedInstances method. This method supports PATCH semantics and uses - * the JSON merge patch format and processing rules. - * (instanceGroupManagers.patch) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone where you want to create the managed - * instance group. - * @param string $instanceGroupManager The name of the instance group manager. - * @param Google_Service_Compute_InstanceGroupManager $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function patch($project, $zone, $instanceGroupManager, Google_Service_Compute_InstanceGroupManager $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'instanceGroupManager' => $instanceGroupManager, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Compute_Operation"); - } - /** - * Flags the specified instances in the managed instance group to be immediately - * recreated. The instances are deleted and recreated using the current instance - * template for the managed instance group. This operation is marked as DONE - * when the flag is set even if the instances have not yet been recreated. You - * must separately verify the status of the recreating action with the - * listmanagedinstances method. - * - * If the group is part of a backend service that has enabled connection - * draining, it can take up to 60 seconds after the connection draining duration - * has elapsed before the VM instance is removed or deleted. - * - * You can specify a maximum of 1000 instances with this method per request. - * (instanceGroupManagers.recreateInstances) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone where the managed instance group is - * located. - * @param string $instanceGroupManager The name of the managed instance group. - * @param Google_Service_Compute_InstanceGroupManagersRecreateInstancesRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function recreateInstances($project, $zone, $instanceGroupManager, Google_Service_Compute_InstanceGroupManagersRecreateInstancesRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'instanceGroupManager' => $instanceGroupManager, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('recreateInstances', array($params), "Google_Service_Compute_Operation"); - } - /** - * Resizes the managed instance group. If you increase the size, the group - * creates new instances using the current instance template. If you decrease - * the size, the group deletes instances. The resize operation is marked DONE - * when the resize actions are scheduled even if the group has not yet added or - * deleted any instances. You must separately verify the status of the creating - * or deleting actions with the listmanagedinstances method. - * - * When resizing down, the instance group arbitrarily chooses the order in which - * VMs are deleted. The group takes into account some VM attributes when making - * the selection including: - * - * + The status of the VM instance. + The health of the VM instance. + The - * instance template version the VM is based on. + For regional managed instance - * groups, the location of the VM instance. - * - * This list is subject to change. - * - * If the group is part of a backend service that has enabled connection - * draining, it can take up to 60 seconds after the connection draining duration - * has elapsed before the VM instance is removed or deleted. - * (instanceGroupManagers.resize) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone where the managed instance group is - * located. - * @param string $instanceGroupManager The name of the managed instance group. - * @param int $size The number of running instances that the managed instance - * group should maintain at any given time. The group automatically adds or - * removes instances to maintain the number of instances specified by this - * parameter. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function resize($project, $zone, $instanceGroupManager, $size, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'instanceGroupManager' => $instanceGroupManager, 'size' => $size); - $params = array_merge($params, $optParams); - return $this->call('resize', array($params), "Google_Service_Compute_Operation"); - } - /** - * Specifies the instance template to use when creating new instances in this - * group. The templates for existing instances in the group do not change unless - * you recreate them. (instanceGroupManagers.setInstanceTemplate) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone where the managed instance group is - * located. - * @param string $instanceGroupManager The name of the managed instance group. - * @param Google_Service_Compute_InstanceGroupManagersSetInstanceTemplateRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function setInstanceTemplate($project, $zone, $instanceGroupManager, Google_Service_Compute_InstanceGroupManagersSetInstanceTemplateRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'instanceGroupManager' => $instanceGroupManager, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setInstanceTemplate', array($params), "Google_Service_Compute_Operation"); - } - /** - * Modifies the target pools to which all instances in this managed instance - * group are assigned. The target pools automatically apply to all of the - * instances in the managed instance group. This operation is marked DONE when - * you make the request even if the instances have not yet been added to their - * target pools. The change might take some time to apply to all of the - * instances in the group depending on the size of the group. - * (instanceGroupManagers.setTargetPools) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone where the managed instance group is - * located. - * @param string $instanceGroupManager The name of the managed instance group. - * @param Google_Service_Compute_InstanceGroupManagersSetTargetPoolsRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function setTargetPools($project, $zone, $instanceGroupManager, Google_Service_Compute_InstanceGroupManagersSetTargetPoolsRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'instanceGroupManager' => $instanceGroupManager, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setTargetPools', array($params), "Google_Service_Compute_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/InstanceGroups.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/InstanceGroups.php deleted file mode 100644 index e5ba6217..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/InstanceGroups.php +++ /dev/null @@ -1,367 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $instanceGroups = $computeService->instanceGroups; - * - */ -class Google_Service_Compute_Resource_InstanceGroups extends Google_Service_Resource -{ - /** - * Adds a list of instances to the specified instance group. All of the - * instances in the instance group must be in the same network/subnetwork. Read - * Adding instances for more information. (instanceGroups.addInstances) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone where the instance group is located. - * @param string $instanceGroup The name of the instance group where you are - * adding instances. - * @param Google_Service_Compute_InstanceGroupsAddInstancesRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function addInstances($project, $zone, $instanceGroup, Google_Service_Compute_InstanceGroupsAddInstancesRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'instanceGroup' => $instanceGroup, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('addInstances', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves the list of instance groups and sorts them by zone. - * (instanceGroups.aggregatedList) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_InstanceGroupAggregatedList - */ - public function aggregatedList($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('aggregatedList', array($params), "Google_Service_Compute_InstanceGroupAggregatedList"); - } - /** - * Deletes the specified instance group. The instances in the group are not - * deleted. Note that instance group must not belong to a backend service. Read - * Deleting an instance group for more information. (instanceGroups.delete) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone where the instance group is located. - * @param string $instanceGroup The name of the instance group to delete. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function delete($project, $zone, $instanceGroup, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'instanceGroup' => $instanceGroup); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns the specified instance group. Gets a list of available instance - * groups by making a list() request. (instanceGroups.get) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone where the instance group is located. - * @param string $instanceGroup The name of the instance group. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_InstanceGroup - */ - public function get($project, $zone, $instanceGroup, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'instanceGroup' => $instanceGroup); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_InstanceGroup"); - } - /** - * Creates an instance group in the specified project using the parameters that - * are included in the request. (instanceGroups.insert) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone where you want to create the - * instance group. - * @param Google_Service_Compute_InstanceGroup $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function insert($project, $zone, Google_Service_Compute_InstanceGroup $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves the list of instance groups that are located in the specified - * project and zone. (instanceGroups.listInstanceGroups) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone where the instance group is located. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_InstanceGroupList - */ - public function listInstanceGroups($project, $zone, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_InstanceGroupList"); - } - /** - * Lists the instances in the specified instance group. - * (instanceGroups.listInstances) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone where the instance group is located. - * @param string $instanceGroup The name of the instance group from which you - * want to generate a list of included instances. - * @param Google_Service_Compute_InstanceGroupsListInstancesRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_InstanceGroupsListInstances - */ - public function listInstances($project, $zone, $instanceGroup, Google_Service_Compute_InstanceGroupsListInstancesRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'instanceGroup' => $instanceGroup, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('listInstances', array($params), "Google_Service_Compute_InstanceGroupsListInstances"); - } - /** - * Removes one or more instances from the specified instance group, but does not - * delete those instances. - * - * If the group is part of a backend service that has enabled connection - * draining, it can take up to 60 seconds after the connection draining duration - * before the VM instance is removed or deleted. - * (instanceGroups.removeInstances) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone where the instance group is located. - * @param string $instanceGroup The name of the instance group where the - * specified instances will be removed. - * @param Google_Service_Compute_InstanceGroupsRemoveInstancesRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function removeInstances($project, $zone, $instanceGroup, Google_Service_Compute_InstanceGroupsRemoveInstancesRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'instanceGroup' => $instanceGroup, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('removeInstances', array($params), "Google_Service_Compute_Operation"); - } - /** - * Sets the named ports for the specified instance group. - * (instanceGroups.setNamedPorts) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone where the instance group is located. - * @param string $instanceGroup The name of the instance group where the named - * ports are updated. - * @param Google_Service_Compute_InstanceGroupsSetNamedPortsRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function setNamedPorts($project, $zone, $instanceGroup, Google_Service_Compute_InstanceGroupsSetNamedPortsRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'instanceGroup' => $instanceGroup, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setNamedPorts', array($params), "Google_Service_Compute_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/InstanceTemplates.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/InstanceTemplates.php deleted file mode 100644 index bed57981..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/InstanceTemplates.php +++ /dev/null @@ -1,203 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $instanceTemplates = $computeService->instanceTemplates; - * - */ -class Google_Service_Compute_Resource_InstanceTemplates extends Google_Service_Resource -{ - /** - * Deletes the specified instance template. Deleting an instance template is - * permanent and cannot be undone. It is not possible to delete templates that - * are already in use by a managed instance group. (instanceTemplates.delete) - * - * @param string $project Project ID for this request. - * @param string $instanceTemplate The name of the instance template to delete. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function delete($project, $instanceTemplate, $optParams = array()) - { - $params = array('project' => $project, 'instanceTemplate' => $instanceTemplate); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns the specified instance template. Gets a list of available instance - * templates by making a list() request. (instanceTemplates.get) - * - * @param string $project Project ID for this request. - * @param string $instanceTemplate The name of the instance template. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_InstanceTemplate - */ - public function get($project, $instanceTemplate, $optParams = array()) - { - $params = array('project' => $project, 'instanceTemplate' => $instanceTemplate); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_InstanceTemplate"); - } - /** - * Gets the access control policy for a resource. May be empty if no such policy - * or resource exists. (instanceTemplates.getIamPolicy) - * - * @param string $project Project ID for this request. - * @param string $resource Name or id of the resource for this request. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Policy - */ - public function getIamPolicy($project, $resource, $optParams = array()) - { - $params = array('project' => $project, 'resource' => $resource); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_Compute_Policy"); - } - /** - * Creates an instance template in the specified project using the data that is - * included in the request. If you are creating a new template to update an - * existing instance group, your new instance template must use the same network - * or, if applicable, the same subnetwork as the original template. - * (instanceTemplates.insert) - * - * @param string $project Project ID for this request. - * @param Google_Service_Compute_InstanceTemplate $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function insert($project, Google_Service_Compute_InstanceTemplate $postBody, $optParams = array()) - { - $params = array('project' => $project, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves a list of instance templates that are contained within the - * specified project. (instanceTemplates.listInstanceTemplates) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_InstanceTemplateList - */ - public function listInstanceTemplates($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_InstanceTemplateList"); - } - /** - * Sets the access control policy on the specified resource. Replaces any - * existing policy. (instanceTemplates.setIamPolicy) - * - * @param string $project Project ID for this request. - * @param string $resource Name or id of the resource for this request. - * @param Google_Service_Compute_GlobalSetPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Policy - */ - public function setIamPolicy($project, $resource, Google_Service_Compute_GlobalSetPolicyRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_Compute_Policy"); - } - /** - * Returns permissions that a caller has on the specified resource. - * (instanceTemplates.testIamPermissions) - * - * @param string $project Project ID for this request. - * @param string $resource Name or id of the resource for this request. - * @param Google_Service_Compute_TestPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_TestPermissionsResponse - */ - public function testIamPermissions($project, $resource, Google_Service_Compute_TestPermissionsRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_Compute_TestPermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/Instances.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/Instances.php deleted file mode 100644 index 517ca56b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/Instances.php +++ /dev/null @@ -1,1112 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $instances = $computeService->instances; - * - */ -class Google_Service_Compute_Resource_Instances extends Google_Service_Resource -{ - /** - * Adds an access config to an instance's network interface. - * (instances.addAccessConfig) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $instance The instance name for this request. - * @param string $networkInterface The name of the network interface to add to - * this instance. - * @param Google_Service_Compute_AccessConfig $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function addAccessConfig($project, $zone, $instance, $networkInterface, Google_Service_Compute_AccessConfig $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'instance' => $instance, 'networkInterface' => $networkInterface, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('addAccessConfig', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves aggregated list of all of the instances in your project across all - * regions and zones. (instances.aggregatedList) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_InstanceAggregatedList - */ - public function aggregatedList($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('aggregatedList', array($params), "Google_Service_Compute_InstanceAggregatedList"); - } - /** - * Attaches an existing Disk resource to an instance. You must first create the - * disk before you can attach it. It is not possible to create and attach a disk - * at the same time. For more information, read Adding a persistent disk to your - * instance. (instances.attachDisk) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $instance The instance name for this request. - * @param Google_Service_Compute_AttachedDisk $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool forceAttach Whether to force attach the disk even if it's - * currently attached to another instance. - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function attachDisk($project, $zone, $instance, Google_Service_Compute_AttachedDisk $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'instance' => $instance, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('attachDisk', array($params), "Google_Service_Compute_Operation"); - } - /** - * Deletes the specified Instance resource. For more information, see Stopping - * or Deleting an Instance. (instances.delete) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $instance Name of the instance resource to delete. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function delete($project, $zone, $instance, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'instance' => $instance); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Compute_Operation"); - } - /** - * Deletes an access config from an instance's network interface. - * (instances.deleteAccessConfig) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $instance The instance name for this request. - * @param string $accessConfig The name of the access config to delete. - * @param string $networkInterface The name of the network interface. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function deleteAccessConfig($project, $zone, $instance, $accessConfig, $networkInterface, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'instance' => $instance, 'accessConfig' => $accessConfig, 'networkInterface' => $networkInterface); - $params = array_merge($params, $optParams); - return $this->call('deleteAccessConfig', array($params), "Google_Service_Compute_Operation"); - } - /** - * Detaches a disk from an instance. (instances.detachDisk) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $instance Instance name for this request. - * @param string $deviceName The device name of the disk to detach. Make a get() - * request on the instance to view currently attached disks and device names. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function detachDisk($project, $zone, $instance, $deviceName, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'instance' => $instance, 'deviceName' => $deviceName); - $params = array_merge($params, $optParams); - return $this->call('detachDisk', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns the specified Instance resource. Gets a list of available instances - * by making a list() request. (instances.get) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $instance Name of the instance resource to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Instance - */ - public function get($project, $zone, $instance, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'instance' => $instance); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_Instance"); - } - /** - * Returns the specified guest attributes entry. (instances.getGuestAttributes) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $instance Name of the instance scoping this request. - * @param array $optParams Optional parameters. - * - * @opt_param string queryPath Specifies the guest attributes path to be - * queried. - * @opt_param string variableKey Specifies the key for the guest attributes - * entry. - * @return Google_Service_Compute_GuestAttributes - */ - public function getGuestAttributes($project, $zone, $instance, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'instance' => $instance); - $params = array_merge($params, $optParams); - return $this->call('getGuestAttributes', array($params), "Google_Service_Compute_GuestAttributes"); - } - /** - * Gets the access control policy for a resource. May be empty if no such policy - * or resource exists. (instances.getIamPolicy) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $resource Name or id of the resource for this request. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Policy - */ - public function getIamPolicy($project, $zone, $resource, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'resource' => $resource); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_Compute_Policy"); - } - /** - * Returns the last 1 MB of serial port output from the specified instance. - * (instances.getSerialPortOutput) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $instance Name of the instance scoping this request. - * @param array $optParams Optional parameters. - * - * @opt_param int port Specifies which COM or serial port to retrieve data from. - * @opt_param string start Returns output starting from a specific byte - * position. Use this to page through output when the output is too large to - * return in a single request. For the initial request, leave this field - * unspecified. For subsequent calls, this field should be set to the next value - * returned in the previous call. - * @return Google_Service_Compute_SerialPortOutput - */ - public function getSerialPortOutput($project, $zone, $instance, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'instance' => $instance); - $params = array_merge($params, $optParams); - return $this->call('getSerialPortOutput', array($params), "Google_Service_Compute_SerialPortOutput"); - } - /** - * Returns the Shielded Instance Identity of an instance - * (instances.getShieldedInstanceIdentity) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $instance Name or id of the instance scoping this request. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_ShieldedInstanceIdentity - */ - public function getShieldedInstanceIdentity($project, $zone, $instance, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'instance' => $instance); - $params = array_merge($params, $optParams); - return $this->call('getShieldedInstanceIdentity', array($params), "Google_Service_Compute_ShieldedInstanceIdentity"); - } - /** - * Creates an instance resource in the specified project using the data included - * in the request. (instances.insert) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param Google_Service_Compute_Instance $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @opt_param string sourceInstanceTemplate Specifies instance template to - * create the instance. - * - * This field is optional. It can be a full or partial URL. For example, the - * following are all valid URLs to an instance template: - https://www.googlea - * pis.com/compute/v1/projects/project/global/instanceTemplates/instanceTemplate - * - projects/project/global/instanceTemplates/instanceTemplate - - * global/instanceTemplates/instanceTemplate - * @return Google_Service_Compute_Operation - */ - public function insert($project, $zone, Google_Service_Compute_Instance $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves the list of instances contained within the specified zone. - * (instances.listInstances) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_InstanceList - */ - public function listInstances($project, $zone, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_InstanceList"); - } - /** - * Retrieves the list of referrers to instances contained within the specified - * zone. For more information, read Viewing Referrers to VM Instances. - * (instances.listReferrers) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $instance Name of the target instance scoping this request, or - * '-' if the request should span over all instances in the container. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_InstanceListReferrers - */ - public function listReferrers($project, $zone, $instance, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'instance' => $instance); - $params = array_merge($params, $optParams); - return $this->call('listReferrers', array($params), "Google_Service_Compute_InstanceListReferrers"); - } - /** - * Performs a reset on the instance. This is a hard reset the VM does not do a - * graceful shutdown. For more information, see Resetting an instance. - * (instances.reset) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $instance Name of the instance scoping this request. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function reset($project, $zone, $instance, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'instance' => $instance); - $params = array_merge($params, $optParams); - return $this->call('reset', array($params), "Google_Service_Compute_Operation"); - } - /** - * Sets deletion protection on the instance. (instances.setDeletionProtection) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $resource Name or id of the resource for this request. - * @param array $optParams Optional parameters. - * - * @opt_param bool deletionProtection Whether the resource should be protected - * against deletion. - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function setDeletionProtection($project, $zone, $resource, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'resource' => $resource); - $params = array_merge($params, $optParams); - return $this->call('setDeletionProtection', array($params), "Google_Service_Compute_Operation"); - } - /** - * Sets the auto-delete flag for a disk attached to an instance. - * (instances.setDiskAutoDelete) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $instance The instance name for this request. - * @param bool $autoDelete Whether to auto-delete the disk when the instance is - * deleted. - * @param string $deviceName The device name of the disk to modify. Make a get() - * request on the instance to view currently attached disks and device names. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function setDiskAutoDelete($project, $zone, $instance, $autoDelete, $deviceName, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'instance' => $instance, 'autoDelete' => $autoDelete, 'deviceName' => $deviceName); - $params = array_merge($params, $optParams); - return $this->call('setDiskAutoDelete', array($params), "Google_Service_Compute_Operation"); - } - /** - * Sets the access control policy on the specified resource. Replaces any - * existing policy. (instances.setIamPolicy) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $resource Name or id of the resource for this request. - * @param Google_Service_Compute_ZoneSetPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Policy - */ - public function setIamPolicy($project, $zone, $resource, Google_Service_Compute_ZoneSetPolicyRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_Compute_Policy"); - } - /** - * Sets labels on an instance. To learn more about labels, read the Labeling - * Resources documentation. (instances.setLabels) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $instance Name of the instance scoping this request. - * @param Google_Service_Compute_InstancesSetLabelsRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function setLabels($project, $zone, $instance, Google_Service_Compute_InstancesSetLabelsRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'instance' => $instance, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setLabels', array($params), "Google_Service_Compute_Operation"); - } - /** - * Changes the number and/or type of accelerator for a stopped instance to the - * values specified in the request. (instances.setMachineResources) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $instance Name of the instance scoping this request. - * @param Google_Service_Compute_InstancesSetMachineResourcesRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function setMachineResources($project, $zone, $instance, Google_Service_Compute_InstancesSetMachineResourcesRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'instance' => $instance, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setMachineResources', array($params), "Google_Service_Compute_Operation"); - } - /** - * Changes the machine type for a stopped instance to the machine type specified - * in the request. (instances.setMachineType) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $instance Name of the instance scoping this request. - * @param Google_Service_Compute_InstancesSetMachineTypeRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function setMachineType($project, $zone, $instance, Google_Service_Compute_InstancesSetMachineTypeRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'instance' => $instance, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setMachineType', array($params), "Google_Service_Compute_Operation"); - } - /** - * Sets metadata for the specified instance to the data included in the request. - * (instances.setMetadata) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $instance Name of the instance scoping this request. - * @param Google_Service_Compute_Metadata $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function setMetadata($project, $zone, $instance, Google_Service_Compute_Metadata $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'instance' => $instance, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setMetadata', array($params), "Google_Service_Compute_Operation"); - } - /** - * Changes the minimum CPU platform that this instance should use. This method - * can only be called on a stopped instance. For more information, read - * Specifying a Minimum CPU Platform. (instances.setMinCpuPlatform) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $instance Name of the instance scoping this request. - * @param Google_Service_Compute_InstancesSetMinCpuPlatformRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function setMinCpuPlatform($project, $zone, $instance, Google_Service_Compute_InstancesSetMinCpuPlatformRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'instance' => $instance, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setMinCpuPlatform', array($params), "Google_Service_Compute_Operation"); - } - /** - * Sets an instance's scheduling options. (instances.setScheduling) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $instance Instance name for this request. - * @param Google_Service_Compute_Scheduling $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function setScheduling($project, $zone, $instance, Google_Service_Compute_Scheduling $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'instance' => $instance, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setScheduling', array($params), "Google_Service_Compute_Operation"); - } - /** - * Sets the service account on the instance. For more information, read Changing - * the service account and access scopes for an instance. - * (instances.setServiceAccount) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $instance Name of the instance resource to start. - * @param Google_Service_Compute_InstancesSetServiceAccountRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function setServiceAccount($project, $zone, $instance, Google_Service_Compute_InstancesSetServiceAccountRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'instance' => $instance, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setServiceAccount', array($params), "Google_Service_Compute_Operation"); - } - /** - * Sets the Shielded Instance integrity policy for an instance. You can only use - * this method on a running instance. This method supports PATCH semantics and - * uses the JSON merge patch format and processing rules. - * (instances.setShieldedInstanceIntegrityPolicy) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $instance Name or id of the instance scoping this request. - * @param Google_Service_Compute_ShieldedInstanceIntegrityPolicy $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function setShieldedInstanceIntegrityPolicy($project, $zone, $instance, Google_Service_Compute_ShieldedInstanceIntegrityPolicy $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'instance' => $instance, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setShieldedInstanceIntegrityPolicy', array($params), "Google_Service_Compute_Operation"); - } - /** - * Sets network tags for the specified instance to the data included in the - * request. (instances.setTags) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $instance Name of the instance scoping this request. - * @param Google_Service_Compute_Tags $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function setTags($project, $zone, $instance, Google_Service_Compute_Tags $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'instance' => $instance, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setTags', array($params), "Google_Service_Compute_Operation"); - } - /** - * Simulates a maintenance event on the instance. - * (instances.simulateMaintenanceEvent) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $instance Name of the instance scoping this request. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Operation - */ - public function simulateMaintenanceEvent($project, $zone, $instance, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'instance' => $instance); - $params = array_merge($params, $optParams); - return $this->call('simulateMaintenanceEvent', array($params), "Google_Service_Compute_Operation"); - } - /** - * Starts an instance that was stopped using the instances().stop method. For - * more information, see Restart an instance. (instances.start) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $instance Name of the instance resource to start. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function start($project, $zone, $instance, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'instance' => $instance); - $params = array_merge($params, $optParams); - return $this->call('start', array($params), "Google_Service_Compute_Operation"); - } - /** - * Starts an instance that was stopped using the instances().stop method. For - * more information, see Restart an instance. (instances.startWithEncryptionKey) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $instance Name of the instance resource to start. - * @param Google_Service_Compute_InstancesStartWithEncryptionKeyRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function startWithEncryptionKey($project, $zone, $instance, Google_Service_Compute_InstancesStartWithEncryptionKeyRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'instance' => $instance, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('startWithEncryptionKey', array($params), "Google_Service_Compute_Operation"); - } - /** - * Stops a running instance, shutting it down cleanly, and allows you to restart - * the instance at a later time. Stopped instances do not incur VM usage charges - * while they are stopped. However, resources that the VM is using, such as - * persistent disks and static IP addresses, will continue to be charged until - * they are deleted. For more information, see Stopping an instance. - * (instances.stop) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $instance Name of the instance resource to stop. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function stop($project, $zone, $instance, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'instance' => $instance); - $params = array_merge($params, $optParams); - return $this->call('stop', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns permissions that a caller has on the specified resource. - * (instances.testIamPermissions) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $resource Name or id of the resource for this request. - * @param Google_Service_Compute_TestPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_TestPermissionsResponse - */ - public function testIamPermissions($project, $zone, $resource, Google_Service_Compute_TestPermissionsRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_Compute_TestPermissionsResponse"); - } - /** - * Updates the specified access config from an instance's network interface with - * the data included in the request. This method supports PATCH semantics and - * uses the JSON merge patch format and processing rules. - * (instances.updateAccessConfig) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $instance The instance name for this request. - * @param string $networkInterface The name of the network interface where the - * access config is attached. - * @param Google_Service_Compute_AccessConfig $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function updateAccessConfig($project, $zone, $instance, $networkInterface, Google_Service_Compute_AccessConfig $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'instance' => $instance, 'networkInterface' => $networkInterface, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updateAccessConfig', array($params), "Google_Service_Compute_Operation"); - } - /** - * Updates the Display config for a VM instance. You can only use this method on - * a stopped VM instance. This method supports PATCH semantics and uses the JSON - * merge patch format and processing rules. (instances.updateDisplayDevice) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $instance Name of the instance scoping this request. - * @param Google_Service_Compute_DisplayDevice $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function updateDisplayDevice($project, $zone, $instance, Google_Service_Compute_DisplayDevice $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'instance' => $instance, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updateDisplayDevice', array($params), "Google_Service_Compute_Operation"); - } - /** - * Updates an instance's network interface. This method follows PATCH semantics. - * (instances.updateNetworkInterface) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $instance The instance name for this request. - * @param string $networkInterface The name of the network interface to update. - * @param Google_Service_Compute_NetworkInterface $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function updateNetworkInterface($project, $zone, $instance, $networkInterface, Google_Service_Compute_NetworkInterface $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'instance' => $instance, 'networkInterface' => $networkInterface, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updateNetworkInterface', array($params), "Google_Service_Compute_Operation"); - } - /** - * Updates the Shielded Instance config for an instance. You can only use this - * method on a stopped instance. This method supports PATCH semantics and uses - * the JSON merge patch format and processing rules. - * (instances.updateShieldedInstanceConfig) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $instance Name or id of the instance scoping this request. - * @param Google_Service_Compute_ShieldedInstanceConfig $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function updateShieldedInstanceConfig($project, $zone, $instance, Google_Service_Compute_ShieldedInstanceConfig $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'instance' => $instance, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updateShieldedInstanceConfig', array($params), "Google_Service_Compute_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/InterconnectAttachments.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/InterconnectAttachments.php deleted file mode 100644 index 458525a3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/InterconnectAttachments.php +++ /dev/null @@ -1,243 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $interconnectAttachments = $computeService->interconnectAttachments; - * - */ -class Google_Service_Compute_Resource_InterconnectAttachments extends Google_Service_Resource -{ - /** - * Retrieves an aggregated list of interconnect attachments. - * (interconnectAttachments.aggregatedList) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_InterconnectAttachmentAggregatedList - */ - public function aggregatedList($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('aggregatedList', array($params), "Google_Service_Compute_InterconnectAttachmentAggregatedList"); - } - /** - * Deletes the specified interconnect attachment. - * (interconnectAttachments.delete) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region for this request. - * @param string $interconnectAttachment Name of the interconnect attachment to - * delete. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function delete($project, $region, $interconnectAttachment, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'interconnectAttachment' => $interconnectAttachment); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns the specified interconnect attachment. (interconnectAttachments.get) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region for this request. - * @param string $interconnectAttachment Name of the interconnect attachment to - * return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_InterconnectAttachment - */ - public function get($project, $region, $interconnectAttachment, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'interconnectAttachment' => $interconnectAttachment); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_InterconnectAttachment"); - } - /** - * Creates an InterconnectAttachment in the specified project using the data - * included in the request. (interconnectAttachments.insert) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region for this request. - * @param Google_Service_Compute_InterconnectAttachment $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @opt_param bool validateOnly If true, the request will not be committed. - * @return Google_Service_Compute_Operation - */ - public function insert($project, $region, Google_Service_Compute_InterconnectAttachment $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves the list of interconnect attachments contained within the specified - * region. (interconnectAttachments.listInterconnectAttachments) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_InterconnectAttachmentList - */ - public function listInterconnectAttachments($project, $region, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_InterconnectAttachmentList"); - } - /** - * Updates the specified interconnect attachment with the data included in the - * request. This method supports PATCH semantics and uses the JSON merge patch - * format and processing rules. (interconnectAttachments.patch) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param string $interconnectAttachment Name of the interconnect attachment to - * patch. - * @param Google_Service_Compute_InterconnectAttachment $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function patch($project, $region, $interconnectAttachment, Google_Service_Compute_InterconnectAttachment $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'interconnectAttachment' => $interconnectAttachment, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Compute_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/InterconnectLocations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/InterconnectLocations.php deleted file mode 100644 index da06afac..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/InterconnectLocations.php +++ /dev/null @@ -1,98 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $interconnectLocations = $computeService->interconnectLocations; - * - */ -class Google_Service_Compute_Resource_InterconnectLocations extends Google_Service_Resource -{ - /** - * Returns the details for the specified interconnect location. Gets a list of - * available interconnect locations by making a list() request. - * (interconnectLocations.get) - * - * @param string $project Project ID for this request. - * @param string $interconnectLocation Name of the interconnect location to - * return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_InterconnectLocation - */ - public function get($project, $interconnectLocation, $optParams = array()) - { - $params = array('project' => $project, 'interconnectLocation' => $interconnectLocation); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_InterconnectLocation"); - } - /** - * Retrieves the list of interconnect locations available to the specified - * project. (interconnectLocations.listInterconnectLocations) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_InterconnectLocationList - */ - public function listInterconnectLocations($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_InterconnectLocationList"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/Interconnects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/Interconnects.php deleted file mode 100644 index 36e0fc33..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/Interconnects.php +++ /dev/null @@ -1,196 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $interconnects = $computeService->interconnects; - * - */ -class Google_Service_Compute_Resource_Interconnects extends Google_Service_Resource -{ - /** - * Deletes the specified interconnect. (interconnects.delete) - * - * @param string $project Project ID for this request. - * @param string $interconnect Name of the interconnect to delete. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function delete($project, $interconnect, $optParams = array()) - { - $params = array('project' => $project, 'interconnect' => $interconnect); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns the specified interconnect. Get a list of available interconnects by - * making a list() request. (interconnects.get) - * - * @param string $project Project ID for this request. - * @param string $interconnect Name of the interconnect to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Interconnect - */ - public function get($project, $interconnect, $optParams = array()) - { - $params = array('project' => $project, 'interconnect' => $interconnect); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_Interconnect"); - } - /** - * Returns the interconnectDiagnostics for the specified interconnect. - * (interconnects.getDiagnostics) - * - * @param string $project Project ID for this request. - * @param string $interconnect Name of the interconnect resource to query. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_InterconnectsGetDiagnosticsResponse - */ - public function getDiagnostics($project, $interconnect, $optParams = array()) - { - $params = array('project' => $project, 'interconnect' => $interconnect); - $params = array_merge($params, $optParams); - return $this->call('getDiagnostics', array($params), "Google_Service_Compute_InterconnectsGetDiagnosticsResponse"); - } - /** - * Creates a Interconnect in the specified project using the data included in - * the request. (interconnects.insert) - * - * @param string $project Project ID for this request. - * @param Google_Service_Compute_Interconnect $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function insert($project, Google_Service_Compute_Interconnect $postBody, $optParams = array()) - { - $params = array('project' => $project, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves the list of interconnect available to the specified project. - * (interconnects.listInterconnects) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_InterconnectList - */ - public function listInterconnects($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_InterconnectList"); - } - /** - * Updates the specified interconnect with the data included in the request. - * This method supports PATCH semantics and uses the JSON merge patch format and - * processing rules. (interconnects.patch) - * - * @param string $project Project ID for this request. - * @param string $interconnect Name of the interconnect to update. - * @param Google_Service_Compute_Interconnect $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function patch($project, $interconnect, Google_Service_Compute_Interconnect $postBody, $optParams = array()) - { - $params = array('project' => $project, 'interconnect' => $interconnect, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Compute_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/LicenseCodes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/LicenseCodes.php deleted file mode 100644 index e94856b5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/LicenseCodes.php +++ /dev/null @@ -1,60 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $licenseCodes = $computeService->licenseCodes; - * - */ -class Google_Service_Compute_Resource_LicenseCodes extends Google_Service_Resource -{ - /** - * Return a specified license code. License codes are mirrored across all - * projects that have permissions to read the License Code. (licenseCodes.get) - * - * @param string $project Project ID for this request. - * @param string $licenseCode Number corresponding to the License code resource - * to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_LicenseCode - */ - public function get($project, $licenseCode, $optParams = array()) - { - $params = array('project' => $project, 'licenseCode' => $licenseCode); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_LicenseCode"); - } - /** - * Returns permissions that a caller has on the specified resource. - * (licenseCodes.testIamPermissions) - * - * @param string $project Project ID for this request. - * @param string $resource Name or id of the resource for this request. - * @param Google_Service_Compute_TestPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_TestPermissionsResponse - */ - public function testIamPermissions($project, $resource, Google_Service_Compute_TestPermissionsRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_Compute_TestPermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/Licenses.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/Licenses.php deleted file mode 100644 index e2ef9885..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/Licenses.php +++ /dev/null @@ -1,200 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $licenses = $computeService->licenses; - * - */ -class Google_Service_Compute_Resource_Licenses extends Google_Service_Resource -{ - /** - * Deletes the specified license. (licenses.delete) - * - * @param string $project Project ID for this request. - * @param string $license Name of the license resource to delete. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function delete($project, $license, $optParams = array()) - { - $params = array('project' => $project, 'license' => $license); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns the specified License resource. (licenses.get) - * - * @param string $project Project ID for this request. - * @param string $license Name of the License resource to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_License - */ - public function get($project, $license, $optParams = array()) - { - $params = array('project' => $project, 'license' => $license); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_License"); - } - /** - * Gets the access control policy for a resource. May be empty if no such policy - * or resource exists. (licenses.getIamPolicy) - * - * @param string $project Project ID for this request. - * @param string $resource Name or id of the resource for this request. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Policy - */ - public function getIamPolicy($project, $resource, $optParams = array()) - { - $params = array('project' => $project, 'resource' => $resource); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_Compute_Policy"); - } - /** - * Create a License resource in the specified project. (licenses.insert) - * - * @param string $project Project ID for this request. - * @param Google_Service_Compute_License $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function insert($project, Google_Service_Compute_License $postBody, $optParams = array()) - { - $params = array('project' => $project, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves the list of licenses available in the specified project. This - * method does not get any licenses that belong to other projects, including - * licenses attached to publicly-available images, like Debian 9. If you want to - * get a list of publicly-available licenses, use this method to make a request - * to the respective image project, such as debian-cloud or windows-cloud. - * (licenses.listLicenses) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_LicensesListResponse - */ - public function listLicenses($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_LicensesListResponse"); - } - /** - * Sets the access control policy on the specified resource. Replaces any - * existing policy. (licenses.setIamPolicy) - * - * @param string $project Project ID for this request. - * @param string $resource Name or id of the resource for this request. - * @param Google_Service_Compute_GlobalSetPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Policy - */ - public function setIamPolicy($project, $resource, Google_Service_Compute_GlobalSetPolicyRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_Compute_Policy"); - } - /** - * Returns permissions that a caller has on the specified resource. - * (licenses.testIamPermissions) - * - * @param string $project Project ID for this request. - * @param string $resource Name or id of the resource for this request. - * @param Google_Service_Compute_TestPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_TestPermissionsResponse - */ - public function testIamPermissions($project, $resource, Google_Service_Compute_TestPermissionsRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_Compute_TestPermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/MachineTypes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/MachineTypes.php deleted file mode 100644 index b27795ba..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/MachineTypes.php +++ /dev/null @@ -1,150 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $machineTypes = $computeService->machineTypes; - * - */ -class Google_Service_Compute_Resource_MachineTypes extends Google_Service_Resource -{ - /** - * Retrieves an aggregated list of machine types. (machineTypes.aggregatedList) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_MachineTypeAggregatedList - */ - public function aggregatedList($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('aggregatedList', array($params), "Google_Service_Compute_MachineTypeAggregatedList"); - } - /** - * Returns the specified machine type. Gets a list of available machine types by - * making a list() request. (machineTypes.get) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $machineType Name of the machine type to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_MachineType - */ - public function get($project, $zone, $machineType, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'machineType' => $machineType); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_MachineType"); - } - /** - * Retrieves a list of machine types available to the specified project. - * (machineTypes.listMachineTypes) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_MachineTypeList - */ - public function listMachineTypes($project, $zone, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_MachineTypeList"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/NetworkEndpointGroups.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/NetworkEndpointGroups.php deleted file mode 100644 index 2cef315b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/NetworkEndpointGroups.php +++ /dev/null @@ -1,358 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $networkEndpointGroups = $computeService->networkEndpointGroups; - * - */ -class Google_Service_Compute_Resource_NetworkEndpointGroups extends Google_Service_Resource -{ - /** - * Retrieves the list of network endpoint groups and sorts them by zone. - * (networkEndpointGroups.aggregatedList) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_NetworkEndpointGroupAggregatedList - */ - public function aggregatedList($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('aggregatedList', array($params), "Google_Service_Compute_NetworkEndpointGroupAggregatedList"); - } - /** - * Attach a list of network endpoints to the specified network endpoint group. - * (networkEndpointGroups.attachNetworkEndpoints) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone where the network endpoint group is - * located. It should comply with RFC1035. - * @param string $networkEndpointGroup The name of the network endpoint group - * where you are attaching network endpoints to. It should comply with RFC1035. - * @param Google_Service_Compute_NetworkEndpointGroupsAttachEndpointsRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function attachNetworkEndpoints($project, $zone, $networkEndpointGroup, Google_Service_Compute_NetworkEndpointGroupsAttachEndpointsRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'networkEndpointGroup' => $networkEndpointGroup, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('attachNetworkEndpoints', array($params), "Google_Service_Compute_Operation"); - } - /** - * Deletes the specified network endpoint group. The network endpoints in the - * NEG and the VM instances they belong to are not terminated when the NEG is - * deleted. Note that the NEG cannot be deleted if there are backend services - * referencing it. (networkEndpointGroups.delete) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone where the network endpoint group is - * located. It should comply with RFC1035. - * @param string $networkEndpointGroup The name of the network endpoint group to - * delete. It should comply with RFC1035. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function delete($project, $zone, $networkEndpointGroup, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'networkEndpointGroup' => $networkEndpointGroup); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Compute_Operation"); - } - /** - * Detach a list of network endpoints from the specified network endpoint group. - * (networkEndpointGroups.detachNetworkEndpoints) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone where the network endpoint group is - * located. It should comply with RFC1035. - * @param string $networkEndpointGroup The name of the network endpoint group - * where you are removing network endpoints. It should comply with RFC1035. - * @param Google_Service_Compute_NetworkEndpointGroupsDetachEndpointsRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function detachNetworkEndpoints($project, $zone, $networkEndpointGroup, Google_Service_Compute_NetworkEndpointGroupsDetachEndpointsRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'networkEndpointGroup' => $networkEndpointGroup, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('detachNetworkEndpoints', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns the specified network endpoint group. Gets a list of available - * network endpoint groups by making a list() request. - * (networkEndpointGroups.get) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone where the network endpoint group is - * located. It should comply with RFC1035. - * @param string $networkEndpointGroup The name of the network endpoint group. - * It should comply with RFC1035. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_NetworkEndpointGroup - */ - public function get($project, $zone, $networkEndpointGroup, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'networkEndpointGroup' => $networkEndpointGroup); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_NetworkEndpointGroup"); - } - /** - * Creates a network endpoint group in the specified project using the - * parameters that are included in the request. (networkEndpointGroups.insert) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone where you want to create the network - * endpoint group. It should comply with RFC1035. - * @param Google_Service_Compute_NetworkEndpointGroup $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function insert($project, $zone, Google_Service_Compute_NetworkEndpointGroup $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves the list of network endpoint groups that are located in the - * specified project and zone. (networkEndpointGroups.listNetworkEndpointGroups) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone where the network endpoint group is - * located. It should comply with RFC1035. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_NetworkEndpointGroupList - */ - public function listNetworkEndpointGroups($project, $zone, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_NetworkEndpointGroupList"); - } - /** - * Lists the network endpoints in the specified network endpoint group. - * (networkEndpointGroups.listNetworkEndpoints) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone where the network endpoint group is - * located. It should comply with RFC1035. - * @param string $networkEndpointGroup The name of the network endpoint group - * from which you want to generate a list of included network endpoints. It - * should comply with RFC1035. - * @param Google_Service_Compute_NetworkEndpointGroupsListEndpointsRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_NetworkEndpointGroupsListNetworkEndpoints - */ - public function listNetworkEndpoints($project, $zone, $networkEndpointGroup, Google_Service_Compute_NetworkEndpointGroupsListEndpointsRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'networkEndpointGroup' => $networkEndpointGroup, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('listNetworkEndpoints', array($params), "Google_Service_Compute_NetworkEndpointGroupsListNetworkEndpoints"); - } - /** - * Returns permissions that a caller has on the specified resource. - * (networkEndpointGroups.testIamPermissions) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $resource Name or id of the resource for this request. - * @param Google_Service_Compute_TestPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_TestPermissionsResponse - */ - public function testIamPermissions($project, $zone, $resource, Google_Service_Compute_TestPermissionsRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_Compute_TestPermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/Networks.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/Networks.php deleted file mode 100644 index 41b18077..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/Networks.php +++ /dev/null @@ -1,355 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $networks = $computeService->networks; - * - */ -class Google_Service_Compute_Resource_Networks extends Google_Service_Resource -{ - /** - * Adds a peering to the specified network. (networks.addPeering) - * - * @param string $project Project ID for this request. - * @param string $network Name of the network resource to add peering to. - * @param Google_Service_Compute_NetworksAddPeeringRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function addPeering($project, $network, Google_Service_Compute_NetworksAddPeeringRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'network' => $network, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('addPeering', array($params), "Google_Service_Compute_Operation"); - } - /** - * Deletes the specified network. (networks.delete) - * - * @param string $project Project ID for this request. - * @param string $network Name of the network to delete. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function delete($project, $network, $optParams = array()) - { - $params = array('project' => $project, 'network' => $network); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns the specified network. Gets a list of available networks by making a - * list() request. (networks.get) - * - * @param string $project Project ID for this request. - * @param string $network Name of the network to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Network - */ - public function get($project, $network, $optParams = array()) - { - $params = array('project' => $project, 'network' => $network); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_Network"); - } - /** - * Creates a network in the specified project using the data included in the - * request. (networks.insert) - * - * @param string $project Project ID for this request. - * @param Google_Service_Compute_Network $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function insert($project, Google_Service_Compute_Network $postBody, $optParams = array()) - { - $params = array('project' => $project, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves the list of networks available to the specified project. - * (networks.listNetworks) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_NetworkList - */ - public function listNetworks($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_NetworkList"); - } - /** - * Lists the peering routes exchanged over peering connection. - * (networks.listPeeringRoutes) - * - * @param string $project Project ID for this request. - * @param string $network Name of the network for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string direction The direction of the exchanged routes. - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @opt_param string peeringName The response will show routes exchanged over - * the given peering connection. - * @opt_param string region The region of the request. The response will include - * all subnet routes, static routes and dynamic routes in the region. - * @return Google_Service_Compute_ExchangedPeeringRoutesList - */ - public function listPeeringRoutes($project, $network, $optParams = array()) - { - $params = array('project' => $project, 'network' => $network); - $params = array_merge($params, $optParams); - return $this->call('listPeeringRoutes', array($params), "Google_Service_Compute_ExchangedPeeringRoutesList"); - } - /** - * Patches the specified network with the data included in the request. Only the - * following fields can be modified: routingConfig.routingMode. (networks.patch) - * - * @param string $project Project ID for this request. - * @param string $network Name of the network to update. - * @param Google_Service_Compute_Network $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function patch($project, $network, Google_Service_Compute_Network $postBody, $optParams = array()) - { - $params = array('project' => $project, 'network' => $network, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Compute_Operation"); - } - /** - * Removes a peering from the specified network. (networks.removePeering) - * - * @param string $project Project ID for this request. - * @param string $network Name of the network resource to remove peering from. - * @param Google_Service_Compute_NetworksRemovePeeringRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function removePeering($project, $network, Google_Service_Compute_NetworksRemovePeeringRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'network' => $network, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('removePeering', array($params), "Google_Service_Compute_Operation"); - } - /** - * Switches the network mode from auto subnet mode to custom subnet mode. - * (networks.switchToCustomMode) - * - * @param string $project Project ID for this request. - * @param string $network Name of the network to be updated. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function switchToCustomMode($project, $network, $optParams = array()) - { - $params = array('project' => $project, 'network' => $network); - $params = array_merge($params, $optParams); - return $this->call('switchToCustomMode', array($params), "Google_Service_Compute_Operation"); - } - /** - * Updates the specified network peering with the data included in the request - * Only the following fields can be modified: - * NetworkPeering.export_custom_routes, and NetworkPeering.import_custom_routes - * (networks.updatePeering) - * - * @param string $project Project ID for this request. - * @param string $network Name of the network resource which the updated peering - * is belonging to. - * @param Google_Service_Compute_NetworksUpdatePeeringRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function updatePeering($project, $network, Google_Service_Compute_NetworksUpdatePeeringRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'network' => $network, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updatePeering', array($params), "Google_Service_Compute_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/NodeGroups.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/NodeGroups.php deleted file mode 100644 index 2e213918..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/NodeGroups.php +++ /dev/null @@ -1,404 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $nodeGroups = $computeService->nodeGroups; - * - */ -class Google_Service_Compute_Resource_NodeGroups extends Google_Service_Resource -{ - /** - * Adds specified number of nodes to the node group. (nodeGroups.addNodes) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $nodeGroup Name of the NodeGroup resource. - * @param Google_Service_Compute_NodeGroupsAddNodesRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function addNodes($project, $zone, $nodeGroup, Google_Service_Compute_NodeGroupsAddNodesRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'nodeGroup' => $nodeGroup, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('addNodes', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves an aggregated list of node groups. Note: use nodeGroups.listNodes - * for more details about each group. (nodeGroups.aggregatedList) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_NodeGroupAggregatedList - */ - public function aggregatedList($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('aggregatedList', array($params), "Google_Service_Compute_NodeGroupAggregatedList"); - } - /** - * Deletes the specified NodeGroup resource. (nodeGroups.delete) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $nodeGroup Name of the NodeGroup resource to delete. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function delete($project, $zone, $nodeGroup, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'nodeGroup' => $nodeGroup); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Compute_Operation"); - } - /** - * Deletes specified nodes from the node group. (nodeGroups.deleteNodes) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $nodeGroup Name of the NodeGroup resource whose nodes will be - * deleted. - * @param Google_Service_Compute_NodeGroupsDeleteNodesRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function deleteNodes($project, $zone, $nodeGroup, Google_Service_Compute_NodeGroupsDeleteNodesRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'nodeGroup' => $nodeGroup, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('deleteNodes', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns the specified NodeGroup. Get a list of available NodeGroups by making - * a list() request. Note: the "nodes" field should not be used. Use - * nodeGroups.listNodes instead. (nodeGroups.get) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $nodeGroup Name of the node group to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_NodeGroup - */ - public function get($project, $zone, $nodeGroup, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'nodeGroup' => $nodeGroup); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_NodeGroup"); - } - /** - * Gets the access control policy for a resource. May be empty if no such policy - * or resource exists. (nodeGroups.getIamPolicy) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $resource Name or id of the resource for this request. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Policy - */ - public function getIamPolicy($project, $zone, $resource, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'resource' => $resource); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_Compute_Policy"); - } - /** - * Creates a NodeGroup resource in the specified project using the data included - * in the request. (nodeGroups.insert) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param int $initialNodeCount Initial count of nodes in the node group. - * @param Google_Service_Compute_NodeGroup $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function insert($project, $zone, $initialNodeCount, Google_Service_Compute_NodeGroup $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'initialNodeCount' => $initialNodeCount, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves a list of node groups available to the specified project. Note: use - * nodeGroups.listNodes for more details about each group. - * (nodeGroups.listNodeGroups) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_NodeGroupList - */ - public function listNodeGroups($project, $zone, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_NodeGroupList"); - } - /** - * Lists nodes in the node group. (nodeGroups.listNodes) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $nodeGroup Name of the NodeGroup resource whose nodes you want - * to list. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_NodeGroupsListNodes - */ - public function listNodes($project, $zone, $nodeGroup, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'nodeGroup' => $nodeGroup); - $params = array_merge($params, $optParams); - return $this->call('listNodes', array($params), "Google_Service_Compute_NodeGroupsListNodes"); - } - /** - * Sets the access control policy on the specified resource. Replaces any - * existing policy. (nodeGroups.setIamPolicy) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $resource Name or id of the resource for this request. - * @param Google_Service_Compute_ZoneSetPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Policy - */ - public function setIamPolicy($project, $zone, $resource, Google_Service_Compute_ZoneSetPolicyRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_Compute_Policy"); - } - /** - * Updates the node template of the node group. (nodeGroups.setNodeTemplate) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $nodeGroup Name of the NodeGroup resource to update. - * @param Google_Service_Compute_NodeGroupsSetNodeTemplateRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function setNodeTemplate($project, $zone, $nodeGroup, Google_Service_Compute_NodeGroupsSetNodeTemplateRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'nodeGroup' => $nodeGroup, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setNodeTemplate', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns permissions that a caller has on the specified resource. - * (nodeGroups.testIamPermissions) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $resource Name or id of the resource for this request. - * @param Google_Service_Compute_TestPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_TestPermissionsResponse - */ - public function testIamPermissions($project, $zone, $resource, Google_Service_Compute_TestPermissionsRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_Compute_TestPermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/NodeTemplates.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/NodeTemplates.php deleted file mode 100644 index c043338f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/NodeTemplates.php +++ /dev/null @@ -1,258 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $nodeTemplates = $computeService->nodeTemplates; - * - */ -class Google_Service_Compute_Resource_NodeTemplates extends Google_Service_Resource -{ - /** - * Retrieves an aggregated list of node templates. - * (nodeTemplates.aggregatedList) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_NodeTemplateAggregatedList - */ - public function aggregatedList($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('aggregatedList', array($params), "Google_Service_Compute_NodeTemplateAggregatedList"); - } - /** - * Deletes the specified NodeTemplate resource. (nodeTemplates.delete) - * - * @param string $project Project ID for this request. - * @param string $region The name of the region for this request. - * @param string $nodeTemplate Name of the NodeTemplate resource to delete. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function delete($project, $region, $nodeTemplate, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'nodeTemplate' => $nodeTemplate); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns the specified node template. Gets a list of available node templates - * by making a list() request. (nodeTemplates.get) - * - * @param string $project Project ID for this request. - * @param string $region The name of the region for this request. - * @param string $nodeTemplate Name of the node template to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_NodeTemplate - */ - public function get($project, $region, $nodeTemplate, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'nodeTemplate' => $nodeTemplate); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_NodeTemplate"); - } - /** - * Gets the access control policy for a resource. May be empty if no such policy - * or resource exists. (nodeTemplates.getIamPolicy) - * - * @param string $project Project ID for this request. - * @param string $region The name of the region for this request. - * @param string $resource Name or id of the resource for this request. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Policy - */ - public function getIamPolicy($project, $region, $resource, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'resource' => $resource); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_Compute_Policy"); - } - /** - * Creates a NodeTemplate resource in the specified project using the data - * included in the request. (nodeTemplates.insert) - * - * @param string $project Project ID for this request. - * @param string $region The name of the region for this request. - * @param Google_Service_Compute_NodeTemplate $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function insert($project, $region, Google_Service_Compute_NodeTemplate $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves a list of node templates available to the specified project. - * (nodeTemplates.listNodeTemplates) - * - * @param string $project Project ID for this request. - * @param string $region The name of the region for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_NodeTemplateList - */ - public function listNodeTemplates($project, $region, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_NodeTemplateList"); - } - /** - * Sets the access control policy on the specified resource. Replaces any - * existing policy. (nodeTemplates.setIamPolicy) - * - * @param string $project Project ID for this request. - * @param string $region The name of the region for this request. - * @param string $resource Name or id of the resource for this request. - * @param Google_Service_Compute_RegionSetPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Policy - */ - public function setIamPolicy($project, $region, $resource, Google_Service_Compute_RegionSetPolicyRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_Compute_Policy"); - } - /** - * Returns permissions that a caller has on the specified resource. - * (nodeTemplates.testIamPermissions) - * - * @param string $project Project ID for this request. - * @param string $region The name of the region for this request. - * @param string $resource Name or id of the resource for this request. - * @param Google_Service_Compute_TestPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_TestPermissionsResponse - */ - public function testIamPermissions($project, $region, $resource, Google_Service_Compute_TestPermissionsRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_Compute_TestPermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/NodeTypes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/NodeTypes.php deleted file mode 100644 index b441258f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/NodeTypes.php +++ /dev/null @@ -1,150 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $nodeTypes = $computeService->nodeTypes; - * - */ -class Google_Service_Compute_Resource_NodeTypes extends Google_Service_Resource -{ - /** - * Retrieves an aggregated list of node types. (nodeTypes.aggregatedList) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_NodeTypeAggregatedList - */ - public function aggregatedList($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('aggregatedList', array($params), "Google_Service_Compute_NodeTypeAggregatedList"); - } - /** - * Returns the specified node type. Gets a list of available node types by - * making a list() request. (nodeTypes.get) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $nodeType Name of the node type to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_NodeType - */ - public function get($project, $zone, $nodeType, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'nodeType' => $nodeType); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_NodeType"); - } - /** - * Retrieves a list of node types available to the specified project. - * (nodeTypes.listNodeTypes) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_NodeTypeList - */ - public function listNodeTypes($project, $zone, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_NodeTypeList"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/PacketMirrorings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/PacketMirrorings.php deleted file mode 100644 index 1f7351d2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/PacketMirrorings.php +++ /dev/null @@ -1,257 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $packetMirrorings = $computeService->packetMirrorings; - * - */ -class Google_Service_Compute_Resource_PacketMirrorings extends Google_Service_Resource -{ - /** - * Retrieves an aggregated list of packetMirrorings. - * (packetMirrorings.aggregatedList) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_PacketMirroringAggregatedList - */ - public function aggregatedList($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('aggregatedList', array($params), "Google_Service_Compute_PacketMirroringAggregatedList"); - } - /** - * Deletes the specified PacketMirroring resource. (packetMirrorings.delete) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region for this request. - * @param string $packetMirroring Name of the PacketMirroring resource to - * delete. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function delete($project, $region, $packetMirroring, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'packetMirroring' => $packetMirroring); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns the specified PacketMirroring resource. (packetMirrorings.get) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region for this request. - * @param string $packetMirroring Name of the PacketMirroring resource to - * return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_PacketMirroring - */ - public function get($project, $region, $packetMirroring, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'packetMirroring' => $packetMirroring); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_PacketMirroring"); - } - /** - * Creates a PacketMirroring resource in the specified project and region using - * the data included in the request. (packetMirrorings.insert) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region for this request. - * @param Google_Service_Compute_PacketMirroring $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function insert($project, $region, Google_Service_Compute_PacketMirroring $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves a list of PacketMirroring resources available to the specified - * project and region. (packetMirrorings.listPacketMirrorings) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_PacketMirroringList - */ - public function listPacketMirrorings($project, $region, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_PacketMirroringList"); - } - /** - * Patches the specified PacketMirroring resource with the data included in the - * request. This method supports PATCH semantics and uses JSON merge patch - * format and processing rules. (packetMirrorings.patch) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region for this request. - * @param string $packetMirroring Name of the PacketMirroring resource to patch. - * @param Google_Service_Compute_PacketMirroring $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function patch($project, $region, $packetMirroring, Google_Service_Compute_PacketMirroring $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'packetMirroring' => $packetMirroring, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns permissions that a caller has on the specified resource. - * (packetMirrorings.testIamPermissions) - * - * @param string $project Project ID for this request. - * @param string $region The name of the region for this request. - * @param string $resource Name or id of the resource for this request. - * @param Google_Service_Compute_TestPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_TestPermissionsResponse - */ - public function testIamPermissions($project, $region, $resource, Google_Service_Compute_TestPermissionsRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_Compute_TestPermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/Projects.php deleted file mode 100644 index 1c029ad8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/Projects.php +++ /dev/null @@ -1,412 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $projects = $computeService->projects; - * - */ -class Google_Service_Compute_Resource_Projects extends Google_Service_Resource -{ - /** - * Disable this project as a shared VPC host project. (projects.disableXpnHost) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function disableXpnHost($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('disableXpnHost', array($params), "Google_Service_Compute_Operation"); - } - /** - * Disable a service resource (also known as service project) associated with - * this host project. (projects.disableXpnResource) - * - * @param string $project Project ID for this request. - * @param Google_Service_Compute_ProjectsDisableXpnResourceRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function disableXpnResource($project, Google_Service_Compute_ProjectsDisableXpnResourceRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('disableXpnResource', array($params), "Google_Service_Compute_Operation"); - } - /** - * Enable this project as a shared VPC host project. (projects.enableXpnHost) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function enableXpnHost($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('enableXpnHost', array($params), "Google_Service_Compute_Operation"); - } - /** - * Enable service resource (a.k.a service project) for a host project, so that - * subnets in the host project can be used by instances in the service project. - * (projects.enableXpnResource) - * - * @param string $project Project ID for this request. - * @param Google_Service_Compute_ProjectsEnableXpnResourceRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function enableXpnResource($project, Google_Service_Compute_ProjectsEnableXpnResourceRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('enableXpnResource', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns the specified Project resource. (projects.get) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Project - */ - public function get($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_Project"); - } - /** - * Gets the shared VPC host project that this project links to. May be empty if - * no link exists. (projects.getXpnHost) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Project - */ - public function getXpnHost($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('getXpnHost', array($params), "Google_Service_Compute_Project"); - } - /** - * Gets service resources (a.k.a service project) associated with this host - * project. (projects.getXpnResources) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string order_by Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_ProjectsGetXpnResources - */ - public function getXpnResources($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('getXpnResources', array($params), "Google_Service_Compute_ProjectsGetXpnResources"); - } - /** - * Lists all shared VPC host projects visible to the user in an organization. - * (projects.listXpnHosts) - * - * @param string $project Project ID for this request. - * @param Google_Service_Compute_ProjectsListXpnHostsRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string order_by Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_XpnHostList - */ - public function listXpnHosts($project, Google_Service_Compute_ProjectsListXpnHostsRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('listXpnHosts', array($params), "Google_Service_Compute_XpnHostList"); - } - /** - * Moves a persistent disk from one zone to another. (projects.moveDisk) - * - * @param string $project Project ID for this request. - * @param Google_Service_Compute_DiskMoveRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function moveDisk($project, Google_Service_Compute_DiskMoveRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('moveDisk', array($params), "Google_Service_Compute_Operation"); - } - /** - * Moves an instance and its attached persistent disks from one zone to another. - * (projects.moveInstance) - * - * @param string $project Project ID for this request. - * @param Google_Service_Compute_InstanceMoveRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function moveInstance($project, Google_Service_Compute_InstanceMoveRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('moveInstance', array($params), "Google_Service_Compute_Operation"); - } - /** - * Sets metadata common to all instances within the specified project using the - * data included in the request. (projects.setCommonInstanceMetadata) - * - * @param string $project Project ID for this request. - * @param Google_Service_Compute_Metadata $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function setCommonInstanceMetadata($project, Google_Service_Compute_Metadata $postBody, $optParams = array()) - { - $params = array('project' => $project, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setCommonInstanceMetadata', array($params), "Google_Service_Compute_Operation"); - } - /** - * Sets the default network tier of the project. The default network tier is - * used when an address/forwardingRule/instance is created without specifying - * the network tier field. (projects.setDefaultNetworkTier) - * - * @param string $project Project ID for this request. - * @param Google_Service_Compute_ProjectsSetDefaultNetworkTierRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function setDefaultNetworkTier($project, Google_Service_Compute_ProjectsSetDefaultNetworkTierRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setDefaultNetworkTier', array($params), "Google_Service_Compute_Operation"); - } - /** - * Enables the usage export feature and sets the usage export bucket where - * reports are stored. If you provide an empty request body using this method, - * the usage export feature will be disabled. (projects.setUsageExportBucket) - * - * @param string $project Project ID for this request. - * @param Google_Service_Compute_UsageExportLocation $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function setUsageExportBucket($project, Google_Service_Compute_UsageExportLocation $postBody, $optParams = array()) - { - $params = array('project' => $project, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setUsageExportBucket', array($params), "Google_Service_Compute_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/RegionAutoscalers.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/RegionAutoscalers.php deleted file mode 100644 index 4ae3524b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/RegionAutoscalers.php +++ /dev/null @@ -1,215 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $regionAutoscalers = $computeService->regionAutoscalers; - * - */ -class Google_Service_Compute_Resource_RegionAutoscalers extends Google_Service_Resource -{ - /** - * Deletes the specified autoscaler. (regionAutoscalers.delete) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param string $autoscaler Name of the autoscaler to delete. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function delete($project, $region, $autoscaler, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'autoscaler' => $autoscaler); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns the specified autoscaler. (regionAutoscalers.get) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param string $autoscaler Name of the autoscaler to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Autoscaler - */ - public function get($project, $region, $autoscaler, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'autoscaler' => $autoscaler); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_Autoscaler"); - } - /** - * Creates an autoscaler in the specified project using the data included in the - * request. (regionAutoscalers.insert) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param Google_Service_Compute_Autoscaler $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function insert($project, $region, Google_Service_Compute_Autoscaler $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves a list of autoscalers contained within the specified region. - * (regionAutoscalers.listRegionAutoscalers) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_RegionAutoscalerList - */ - public function listRegionAutoscalers($project, $region, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_RegionAutoscalerList"); - } - /** - * Updates an autoscaler in the specified project using the data included in the - * request. This method supports PATCH semantics and uses the JSON merge patch - * format and processing rules. (regionAutoscalers.patch) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param Google_Service_Compute_Autoscaler $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string autoscaler Name of the autoscaler to patch. - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function patch($project, $region, Google_Service_Compute_Autoscaler $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Compute_Operation"); - } - /** - * Updates an autoscaler in the specified project using the data included in the - * request. (regionAutoscalers.update) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param Google_Service_Compute_Autoscaler $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string autoscaler Name of the autoscaler to update. - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function update($project, $region, Google_Service_Compute_Autoscaler $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Compute_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/RegionBackendServices.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/RegionBackendServices.php deleted file mode 100644 index e3a9defb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/RegionBackendServices.php +++ /dev/null @@ -1,242 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $regionBackendServices = $computeService->regionBackendServices; - * - */ -class Google_Service_Compute_Resource_RegionBackendServices extends Google_Service_Resource -{ - /** - * Deletes the specified regional BackendService resource. - * (regionBackendServices.delete) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param string $backendService Name of the BackendService resource to delete. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function delete($project, $region, $backendService, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'backendService' => $backendService); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns the specified regional BackendService resource. - * (regionBackendServices.get) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param string $backendService Name of the BackendService resource to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_BackendService - */ - public function get($project, $region, $backendService, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'backendService' => $backendService); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_BackendService"); - } - /** - * Gets the most recent health check results for this regional BackendService. - * (regionBackendServices.getHealth) - * - * @param string $project - * @param string $region Name of the region scoping this request. - * @param string $backendService Name of the BackendService resource for which - * to get health. - * @param Google_Service_Compute_ResourceGroupReference $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_BackendServiceGroupHealth - */ - public function getHealth($project, $region, $backendService, Google_Service_Compute_ResourceGroupReference $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'backendService' => $backendService, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('getHealth', array($params), "Google_Service_Compute_BackendServiceGroupHealth"); - } - /** - * Creates a regional BackendService resource in the specified project using the - * data included in the request. There are several restrictions and guidelines - * to keep in mind when creating a regional backend service. Read Restrictions - * and Guidelines for more information. (regionBackendServices.insert) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param Google_Service_Compute_BackendService $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function insert($project, $region, Google_Service_Compute_BackendService $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves the list of regional BackendService resources available to the - * specified project in the given region. - * (regionBackendServices.listRegionBackendServices) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_BackendServiceList - */ - public function listRegionBackendServices($project, $region, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_BackendServiceList"); - } - /** - * Updates the specified regional BackendService resource with the data included - * in the request. There are several restrictions and guidelines to keep in mind - * when updating a backend service. Read Restrictions and Guidelines for more - * information. This method supports PATCH semantics and uses the JSON merge - * patch format and processing rules. (regionBackendServices.patch) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param string $backendService Name of the BackendService resource to patch. - * @param Google_Service_Compute_BackendService $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function patch($project, $region, $backendService, Google_Service_Compute_BackendService $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'backendService' => $backendService, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Compute_Operation"); - } - /** - * Updates the specified regional BackendService resource with the data included - * in the request. There are several restrictions and guidelines to keep in mind - * when updating a backend service. Read Restrictions and Guidelines for more - * information. (regionBackendServices.update) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param string $backendService Name of the BackendService resource to update. - * @param Google_Service_Compute_BackendService $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function update($project, $region, $backendService, Google_Service_Compute_BackendService $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'backendService' => $backendService, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Compute_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/RegionCommitments.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/RegionCommitments.php deleted file mode 100644 index a2a0587b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/RegionCommitments.php +++ /dev/null @@ -1,180 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $regionCommitments = $computeService->regionCommitments; - * - */ -class Google_Service_Compute_Resource_RegionCommitments extends Google_Service_Resource -{ - /** - * Retrieves an aggregated list of commitments. - * (regionCommitments.aggregatedList) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_CommitmentAggregatedList - */ - public function aggregatedList($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('aggregatedList', array($params), "Google_Service_Compute_CommitmentAggregatedList"); - } - /** - * Returns the specified commitment resource. Gets a list of available - * commitments by making a list() request. (regionCommitments.get) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region for this request. - * @param string $commitment Name of the commitment to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Commitment - */ - public function get($project, $region, $commitment, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'commitment' => $commitment); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_Commitment"); - } - /** - * Creates a commitment in the specified project using the data included in the - * request. (regionCommitments.insert) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region for this request. - * @param Google_Service_Compute_Commitment $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function insert($project, $region, Google_Service_Compute_Commitment $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves a list of commitments contained within the specified region. - * (regionCommitments.listRegionCommitments) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_CommitmentList - */ - public function listRegionCommitments($project, $region, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_CommitmentList"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/RegionDiskTypes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/RegionDiskTypes.php deleted file mode 100644 index 5b7972ce..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/RegionDiskTypes.php +++ /dev/null @@ -1,98 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $regionDiskTypes = $computeService->regionDiskTypes; - * - */ -class Google_Service_Compute_Resource_RegionDiskTypes extends Google_Service_Resource -{ - /** - * Returns the specified regional disk type. Gets a list of available disk types - * by making a list() request. (regionDiskTypes.get) - * - * @param string $project Project ID for this request. - * @param string $region The name of the region for this request. - * @param string $diskType Name of the disk type to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_DiskType - */ - public function get($project, $region, $diskType, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'diskType' => $diskType); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_DiskType"); - } - /** - * Retrieves a list of regional disk types available to the specified project. - * (regionDiskTypes.listRegionDiskTypes) - * - * @param string $project Project ID for this request. - * @param string $region The name of the region for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_RegionDiskTypeList - */ - public function listRegionDiskTypes($project, $region, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_RegionDiskTypeList"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/RegionDisks.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/RegionDisks.php deleted file mode 100644 index 0f088eec..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/RegionDisks.php +++ /dev/null @@ -1,323 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $regionDisks = $computeService->regionDisks; - * - */ -class Google_Service_Compute_Resource_RegionDisks extends Google_Service_Resource -{ - /** - * Adds existing resource policies to a regional disk. You can only add one - * policy which will be applied to this disk for scheduling snapshot creation. - * (regionDisks.addResourcePolicies) - * - * @param string $project Project ID for this request. - * @param string $region The name of the region for this request. - * @param string $disk The disk name for this request. - * @param Google_Service_Compute_RegionDisksAddResourcePoliciesRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function addResourcePolicies($project, $region, $disk, Google_Service_Compute_RegionDisksAddResourcePoliciesRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'disk' => $disk, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('addResourcePolicies', array($params), "Google_Service_Compute_Operation"); - } - /** - * Creates a snapshot of this regional disk. (regionDisks.createSnapshot) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region for this request. - * @param string $disk Name of the regional persistent disk to snapshot. - * @param Google_Service_Compute_Snapshot $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function createSnapshot($project, $region, $disk, Google_Service_Compute_Snapshot $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'disk' => $disk, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('createSnapshot', array($params), "Google_Service_Compute_Operation"); - } - /** - * Deletes the specified regional persistent disk. Deleting a regional disk - * removes all the replicas of its data permanently and is irreversible. - * However, deleting a disk does not delete any snapshots previously made from - * the disk. You must separately delete snapshots. (regionDisks.delete) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region for this request. - * @param string $disk Name of the regional persistent disk to delete. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function delete($project, $region, $disk, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'disk' => $disk); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns a specified regional persistent disk. (regionDisks.get) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region for this request. - * @param string $disk Name of the regional persistent disk to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Disk - */ - public function get($project, $region, $disk, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'disk' => $disk); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_Disk"); - } - /** - * Creates a persistent regional disk in the specified project using the data - * included in the request. (regionDisks.insert) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region for this request. - * @param Google_Service_Compute_Disk $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @opt_param string sourceImage Optional. Source image to restore onto a disk. - * @return Google_Service_Compute_Operation - */ - public function insert($project, $region, Google_Service_Compute_Disk $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves the list of persistent disks contained within the specified region. - * (regionDisks.listRegionDisks) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_DiskList - */ - public function listRegionDisks($project, $region, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_DiskList"); - } - /** - * Removes resource policies from a regional disk. - * (regionDisks.removeResourcePolicies) - * - * @param string $project Project ID for this request. - * @param string $region The name of the region for this request. - * @param string $disk The disk name for this request. - * @param Google_Service_Compute_RegionDisksRemoveResourcePoliciesRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function removeResourcePolicies($project, $region, $disk, Google_Service_Compute_RegionDisksRemoveResourcePoliciesRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'disk' => $disk, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('removeResourcePolicies', array($params), "Google_Service_Compute_Operation"); - } - /** - * Resizes the specified regional persistent disk. (regionDisks.resize) - * - * @param string $project The project ID for this request. - * @param string $region Name of the region for this request. - * @param string $disk Name of the regional persistent disk. - * @param Google_Service_Compute_RegionDisksResizeRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function resize($project, $region, $disk, Google_Service_Compute_RegionDisksResizeRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'disk' => $disk, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('resize', array($params), "Google_Service_Compute_Operation"); - } - /** - * Sets the labels on the target regional disk. (regionDisks.setLabels) - * - * @param string $project Project ID for this request. - * @param string $region The region for this request. - * @param string $resource Name or id of the resource for this request. - * @param Google_Service_Compute_RegionSetLabelsRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function setLabels($project, $region, $resource, Google_Service_Compute_RegionSetLabelsRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setLabels', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns permissions that a caller has on the specified resource. - * (regionDisks.testIamPermissions) - * - * @param string $project Project ID for this request. - * @param string $region The name of the region for this request. - * @param string $resource Name or id of the resource for this request. - * @param Google_Service_Compute_TestPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_TestPermissionsResponse - */ - public function testIamPermissions($project, $region, $resource, Google_Service_Compute_TestPermissionsRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_Compute_TestPermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/RegionHealthChecks.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/RegionHealthChecks.php deleted file mode 100644 index 7e04a768..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/RegionHealthChecks.php +++ /dev/null @@ -1,216 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $regionHealthChecks = $computeService->regionHealthChecks; - * - */ -class Google_Service_Compute_Resource_RegionHealthChecks extends Google_Service_Resource -{ - /** - * Deletes the specified HealthCheck resource. (regionHealthChecks.delete) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param string $healthCheck Name of the HealthCheck resource to delete. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function delete($project, $region, $healthCheck, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'healthCheck' => $healthCheck); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns the specified HealthCheck resource. Gets a list of available health - * checks by making a list() request. (regionHealthChecks.get) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param string $healthCheck Name of the HealthCheck resource to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_HealthCheck - */ - public function get($project, $region, $healthCheck, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'healthCheck' => $healthCheck); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_HealthCheck"); - } - /** - * Creates a HealthCheck resource in the specified project using the data - * included in the request. (regionHealthChecks.insert) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param Google_Service_Compute_HealthCheck $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function insert($project, $region, Google_Service_Compute_HealthCheck $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves the list of HealthCheck resources available to the specified - * project. (regionHealthChecks.listRegionHealthChecks) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_HealthCheckList - */ - public function listRegionHealthChecks($project, $region, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_HealthCheckList"); - } - /** - * Updates a HealthCheck resource in the specified project using the data - * included in the request. This method supports PATCH semantics and uses the - * JSON merge patch format and processing rules. (regionHealthChecks.patch) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param string $healthCheck Name of the HealthCheck resource to patch. - * @param Google_Service_Compute_HealthCheck $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function patch($project, $region, $healthCheck, Google_Service_Compute_HealthCheck $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'healthCheck' => $healthCheck, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Compute_Operation"); - } - /** - * Updates a HealthCheck resource in the specified project using the data - * included in the request. (regionHealthChecks.update) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param string $healthCheck Name of the HealthCheck resource to update. - * @param Google_Service_Compute_HealthCheck $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function update($project, $region, $healthCheck, Google_Service_Compute_HealthCheck $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'healthCheck' => $healthCheck, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Compute_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/RegionInstanceGroupManagers.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/RegionInstanceGroupManagers.php deleted file mode 100644 index ddb18ad2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/RegionInstanceGroupManagers.php +++ /dev/null @@ -1,542 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $regionInstanceGroupManagers = $computeService->regionInstanceGroupManagers; - * - */ -class Google_Service_Compute_Resource_RegionInstanceGroupManagers extends Google_Service_Resource -{ - /** - * Flags the specified instances to be immediately removed from the managed - * instance group. Abandoning an instance does not delete the instance, but it - * does remove the instance from any target pools that are applied by the - * managed instance group. This method reduces the targetSize of the managed - * instance group by the number of instances that you abandon. This operation is - * marked as DONE when the action is scheduled even if the instances have not - * yet been removed from the group. You must separately verify the status of the - * abandoning action with the listmanagedinstances method. - * - * If the group is part of a backend service that has enabled connection - * draining, it can take up to 60 seconds after the connection draining duration - * has elapsed before the VM instance is removed or deleted. - * - * You can specify a maximum of 1000 instances with this method per request. - * (regionInstanceGroupManagers.abandonInstances) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param string $instanceGroupManager Name of the managed instance group. - * @param Google_Service_Compute_RegionInstanceGroupManagersAbandonInstancesRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function abandonInstances($project, $region, $instanceGroupManager, Google_Service_Compute_RegionInstanceGroupManagersAbandonInstancesRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'instanceGroupManager' => $instanceGroupManager, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('abandonInstances', array($params), "Google_Service_Compute_Operation"); - } - /** - * Apply updates to selected instances the managed instance group. - * (regionInstanceGroupManagers.applyUpdatesToInstances) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request, should conform - * to RFC1035. - * @param string $instanceGroupManager The name of the managed instance group, - * should conform to RFC1035. - * @param Google_Service_Compute_RegionInstanceGroupManagersApplyUpdatesRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Operation - */ - public function applyUpdatesToInstances($project, $region, $instanceGroupManager, Google_Service_Compute_RegionInstanceGroupManagersApplyUpdatesRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'instanceGroupManager' => $instanceGroupManager, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('applyUpdatesToInstances', array($params), "Google_Service_Compute_Operation"); - } - /** - * Creates instances with per-instance configs in this regional managed instance - * group. Instances are created using the current instance template. The create - * instances operation is marked DONE if the createInstances request is - * successful. The underlying actions take additional time. You must separately - * verify the status of the creating or actions with the listmanagedinstances - * method. (regionInstanceGroupManagers.createInstances) - * - * @param string $project Project ID for this request. - * @param string $region The name of the region where the managed instance group - * is located. It should conform to RFC1035. - * @param string $instanceGroupManager The name of the managed instance group. - * It should conform to RFC1035. - * @param Google_Service_Compute_RegionInstanceGroupManagersCreateInstancesRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function createInstances($project, $region, $instanceGroupManager, Google_Service_Compute_RegionInstanceGroupManagersCreateInstancesRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'instanceGroupManager' => $instanceGroupManager, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('createInstances', array($params), "Google_Service_Compute_Operation"); - } - /** - * Deletes the specified managed instance group and all of the instances in that - * group. (regionInstanceGroupManagers.delete) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param string $instanceGroupManager Name of the managed instance group to - * delete. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function delete($project, $region, $instanceGroupManager, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'instanceGroupManager' => $instanceGroupManager); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Compute_Operation"); - } - /** - * Flags the specified instances in the managed instance group to be immediately - * deleted. The instances are also removed from any target pools of which they - * were a member. This method reduces the targetSize of the managed instance - * group by the number of instances that you delete. The deleteInstances - * operation is marked DONE if the deleteInstances request is successful. The - * underlying actions take additional time. You must separately verify the - * status of the deleting action with the listmanagedinstances method. - * - * If the group is part of a backend service that has enabled connection - * draining, it can take up to 60 seconds after the connection draining duration - * has elapsed before the VM instance is removed or deleted. - * - * You can specify a maximum of 1000 instances with this method per request. - * (regionInstanceGroupManagers.deleteInstances) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param string $instanceGroupManager Name of the managed instance group. - * @param Google_Service_Compute_RegionInstanceGroupManagersDeleteInstancesRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function deleteInstances($project, $region, $instanceGroupManager, Google_Service_Compute_RegionInstanceGroupManagersDeleteInstancesRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'instanceGroupManager' => $instanceGroupManager, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('deleteInstances', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns all of the details about the specified managed instance group. - * (regionInstanceGroupManagers.get) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param string $instanceGroupManager Name of the managed instance group to - * return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_InstanceGroupManager - */ - public function get($project, $region, $instanceGroupManager, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'instanceGroupManager' => $instanceGroupManager); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_InstanceGroupManager"); - } - /** - * Creates a managed instance group using the information that you specify in - * the request. After the group is created, instances in the group are created - * using the specified instance template. This operation is marked as DONE when - * the group is created even if the instances in the group have not yet been - * created. You must separately verify the status of the individual instances - * with the listmanagedinstances method. - * - * A regional managed instance group can contain up to 2000 instances. - * (regionInstanceGroupManagers.insert) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param Google_Service_Compute_InstanceGroupManager $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function insert($project, $region, Google_Service_Compute_InstanceGroupManager $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves the list of managed instance groups that are contained within the - * specified region. - * (regionInstanceGroupManagers.listRegionInstanceGroupManagers) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_RegionInstanceGroupManagerList - */ - public function listRegionInstanceGroupManagers($project, $region, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_RegionInstanceGroupManagerList"); - } - /** - * Lists the instances in the managed instance group and instances that are - * scheduled to be created. The list includes any current actions that the group - * has scheduled for its instances. - * (regionInstanceGroupManagers.listManagedInstances) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param string $instanceGroupManager The name of the managed instance group. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string order_by Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_RegionInstanceGroupManagersListInstancesResponse - */ - public function listManagedInstances($project, $region, $instanceGroupManager, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'instanceGroupManager' => $instanceGroupManager); - $params = array_merge($params, $optParams); - return $this->call('listManagedInstances', array($params), "Google_Service_Compute_RegionInstanceGroupManagersListInstancesResponse"); - } - /** - * Updates a managed instance group using the information that you specify in - * the request. This operation is marked as DONE when the group is patched even - * if the instances in the group are still in the process of being patched. You - * must separately verify the status of the individual instances with the - * listmanagedinstances method. This method supports PATCH semantics and uses - * the JSON merge patch format and processing rules. - * (regionInstanceGroupManagers.patch) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param string $instanceGroupManager The name of the instance group manager. - * @param Google_Service_Compute_InstanceGroupManager $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function patch($project, $region, $instanceGroupManager, Google_Service_Compute_InstanceGroupManager $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'instanceGroupManager' => $instanceGroupManager, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Compute_Operation"); - } - /** - * Flags the specified instances in the managed instance group to be immediately - * recreated. The instances are deleted and recreated using the current instance - * template for the managed instance group. This operation is marked as DONE - * when the flag is set even if the instances have not yet been recreated. You - * must separately verify the status of the recreating action with the - * listmanagedinstances method. - * - * If the group is part of a backend service that has enabled connection - * draining, it can take up to 60 seconds after the connection draining duration - * has elapsed before the VM instance is removed or deleted. - * - * You can specify a maximum of 1000 instances with this method per request. - * (regionInstanceGroupManagers.recreateInstances) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param string $instanceGroupManager Name of the managed instance group. - * @param Google_Service_Compute_RegionInstanceGroupManagersRecreateRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function recreateInstances($project, $region, $instanceGroupManager, Google_Service_Compute_RegionInstanceGroupManagersRecreateRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'instanceGroupManager' => $instanceGroupManager, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('recreateInstances', array($params), "Google_Service_Compute_Operation"); - } - /** - * Changes the intended size of the managed instance group. If you increase the - * size, the group creates new instances using the current instance template. If - * you decrease the size, the group deletes one or more instances. - * - * The resize operation is marked DONE if the resize request is successful. The - * underlying actions take additional time. You must separately verify the - * status of the creating or deleting actions with the listmanagedinstances - * method. - * - * If the group is part of a backend service that has enabled connection - * draining, it can take up to 60 seconds after the connection draining duration - * has elapsed before the VM instance is removed or deleted. - * (regionInstanceGroupManagers.resize) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param string $instanceGroupManager Name of the managed instance group. - * @param int $size Number of instances that should exist in this instance group - * manager. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function resize($project, $region, $instanceGroupManager, $size, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'instanceGroupManager' => $instanceGroupManager, 'size' => $size); - $params = array_merge($params, $optParams); - return $this->call('resize', array($params), "Google_Service_Compute_Operation"); - } - /** - * Sets the instance template to use when creating new instances or recreating - * instances in this group. Existing instances are not affected. - * (regionInstanceGroupManagers.setInstanceTemplate) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param string $instanceGroupManager The name of the managed instance group. - * @param Google_Service_Compute_RegionInstanceGroupManagersSetTemplateRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function setInstanceTemplate($project, $region, $instanceGroupManager, Google_Service_Compute_RegionInstanceGroupManagersSetTemplateRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'instanceGroupManager' => $instanceGroupManager, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setInstanceTemplate', array($params), "Google_Service_Compute_Operation"); - } - /** - * Modifies the target pools to which all new instances in this group are - * assigned. Existing instances in the group are not affected. - * (regionInstanceGroupManagers.setTargetPools) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param string $instanceGroupManager Name of the managed instance group. - * @param Google_Service_Compute_RegionInstanceGroupManagersSetTargetPoolsRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function setTargetPools($project, $region, $instanceGroupManager, Google_Service_Compute_RegionInstanceGroupManagersSetTargetPoolsRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'instanceGroupManager' => $instanceGroupManager, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setTargetPools', array($params), "Google_Service_Compute_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/RegionInstanceGroups.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/RegionInstanceGroups.php deleted file mode 100644 index 537d1cc5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/RegionInstanceGroups.php +++ /dev/null @@ -1,187 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $regionInstanceGroups = $computeService->regionInstanceGroups; - * - */ -class Google_Service_Compute_Resource_RegionInstanceGroups extends Google_Service_Resource -{ - /** - * Returns the specified instance group resource. (regionInstanceGroups.get) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param string $instanceGroup Name of the instance group resource to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_InstanceGroup - */ - public function get($project, $region, $instanceGroup, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'instanceGroup' => $instanceGroup); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_InstanceGroup"); - } - /** - * Retrieves the list of instance group resources contained within the specified - * region. (regionInstanceGroups.listRegionInstanceGroups) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_RegionInstanceGroupList - */ - public function listRegionInstanceGroups($project, $region, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_RegionInstanceGroupList"); - } - /** - * Lists the instances in the specified instance group and displays information - * about the named ports. Depending on the specified options, this method can - * list all instances or only the instances that are running. - * (regionInstanceGroups.listInstances) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param string $instanceGroup Name of the regional instance group for which we - * want to list the instances. - * @param Google_Service_Compute_RegionInstanceGroupsListInstancesRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_RegionInstanceGroupsListInstances - */ - public function listInstances($project, $region, $instanceGroup, Google_Service_Compute_RegionInstanceGroupsListInstancesRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'instanceGroup' => $instanceGroup, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('listInstances', array($params), "Google_Service_Compute_RegionInstanceGroupsListInstances"); - } - /** - * Sets the named ports for the specified regional instance group. - * (regionInstanceGroups.setNamedPorts) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param string $instanceGroup The name of the regional instance group where - * the named ports are updated. - * @param Google_Service_Compute_RegionInstanceGroupsSetNamedPortsRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function setNamedPorts($project, $region, $instanceGroup, Google_Service_Compute_RegionInstanceGroupsSetNamedPortsRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'instanceGroup' => $instanceGroup, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setNamedPorts', array($params), "Google_Service_Compute_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/RegionOperations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/RegionOperations.php deleted file mode 100644 index 0533b952..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/RegionOperations.php +++ /dev/null @@ -1,139 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $regionOperations = $computeService->regionOperations; - * - */ -class Google_Service_Compute_Resource_RegionOperations extends Google_Service_Resource -{ - /** - * Deletes the specified region-specific Operations resource. - * (regionOperations.delete) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region for this request. - * @param string $operation Name of the Operations resource to delete. - * @param array $optParams Optional parameters. - */ - public function delete($project, $region, $operation, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'operation' => $operation); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Retrieves the specified region-specific Operations resource. - * (regionOperations.get) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region for this request. - * @param string $operation Name of the Operations resource to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Operation - */ - public function get($project, $region, $operation, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'operation' => $operation); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves a list of Operation resources contained within the specified - * region. (regionOperations.listRegionOperations) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_OperationList - */ - public function listRegionOperations($project, $region, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_OperationList"); - } - /** - * Waits for the specified Operation resource to return as DONE or for the - * request to approach the 2 minute deadline, and retrieves the specified - * Operation resource. This method differs from the GET method in that it waits - * for no more than the default deadline (2 minutes) and then returns the - * current state of the operation, which might be DONE or still in progress. - * - * This method is called on a best-effort basis. Specifically: - In uncommon - * cases, when the server is overloaded, the request might return before the - * default deadline is reached, or might return after zero seconds. - If the - * default deadline is reached, there is no guarantee that the operation is - * actually done when the method returns. Be prepared to retry if the operation - * is not DONE. (regionOperations.wait) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region for this request. - * @param string $operation Name of the Operations resource to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Operation - */ - public function wait($project, $region, $operation, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'operation' => $operation); - $params = array_merge($params, $optParams); - return $this->call('wait', array($params), "Google_Service_Compute_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/RegionSslCertificates.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/RegionSslCertificates.php deleted file mode 100644 index b7eb0250..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/RegionSslCertificates.php +++ /dev/null @@ -1,158 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $regionSslCertificates = $computeService->regionSslCertificates; - * - */ -class Google_Service_Compute_Resource_RegionSslCertificates extends Google_Service_Resource -{ - /** - * Deletes the specified SslCertificate resource in the region. - * (regionSslCertificates.delete) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param string $sslCertificate Name of the SslCertificate resource to delete. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function delete($project, $region, $sslCertificate, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'sslCertificate' => $sslCertificate); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns the specified SslCertificate resource in the specified region. Get a - * list of available SSL certificates by making a list() request. - * (regionSslCertificates.get) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param string $sslCertificate Name of the SslCertificate resource to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_SslCertificate - */ - public function get($project, $region, $sslCertificate, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'sslCertificate' => $sslCertificate); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_SslCertificate"); - } - /** - * Creates a SslCertificate resource in the specified project and region using - * the data included in the request (regionSslCertificates.insert) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param Google_Service_Compute_SslCertificate $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function insert($project, $region, Google_Service_Compute_SslCertificate $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves the list of SslCertificate resources available to the specified - * project in the specified region. - * (regionSslCertificates.listRegionSslCertificates) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_SslCertificateList - */ - public function listRegionSslCertificates($project, $region, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_SslCertificateList"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/RegionTargetHttpProxies.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/RegionTargetHttpProxies.php deleted file mode 100644 index 5968a1c2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/RegionTargetHttpProxies.php +++ /dev/null @@ -1,190 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $regionTargetHttpProxies = $computeService->regionTargetHttpProxies; - * - */ -class Google_Service_Compute_Resource_RegionTargetHttpProxies extends Google_Service_Resource -{ - /** - * Deletes the specified TargetHttpProxy resource. - * (regionTargetHttpProxies.delete) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param string $targetHttpProxy Name of the TargetHttpProxy resource to - * delete. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function delete($project, $region, $targetHttpProxy, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'targetHttpProxy' => $targetHttpProxy); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns the specified TargetHttpProxy resource in the specified region. Gets - * a list of available target HTTP proxies by making a list() request. - * (regionTargetHttpProxies.get) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param string $targetHttpProxy Name of the TargetHttpProxy resource to - * return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_TargetHttpProxy - */ - public function get($project, $region, $targetHttpProxy, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'targetHttpProxy' => $targetHttpProxy); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_TargetHttpProxy"); - } - /** - * Creates a TargetHttpProxy resource in the specified project and region using - * the data included in the request. (regionTargetHttpProxies.insert) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param Google_Service_Compute_TargetHttpProxy $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function insert($project, $region, Google_Service_Compute_TargetHttpProxy $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves the list of TargetHttpProxy resources available to the specified - * project in the specified region. - * (regionTargetHttpProxies.listRegionTargetHttpProxies) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_TargetHttpProxyList - */ - public function listRegionTargetHttpProxies($project, $region, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_TargetHttpProxyList"); - } - /** - * Changes the URL map for TargetHttpProxy. (regionTargetHttpProxies.setUrlMap) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param string $targetHttpProxy Name of the TargetHttpProxy to set a URL map - * for. - * @param Google_Service_Compute_UrlMapReference $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function setUrlMap($project, $region, $targetHttpProxy, Google_Service_Compute_UrlMapReference $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'targetHttpProxy' => $targetHttpProxy, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setUrlMap', array($params), "Google_Service_Compute_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/RegionTargetHttpsProxies.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/RegionTargetHttpsProxies.php deleted file mode 100644 index 7729477f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/RegionTargetHttpsProxies.php +++ /dev/null @@ -1,222 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $regionTargetHttpsProxies = $computeService->regionTargetHttpsProxies; - * - */ -class Google_Service_Compute_Resource_RegionTargetHttpsProxies extends Google_Service_Resource -{ - /** - * Deletes the specified TargetHttpsProxy resource. - * (regionTargetHttpsProxies.delete) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param string $targetHttpsProxy Name of the TargetHttpsProxy resource to - * delete. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function delete($project, $region, $targetHttpsProxy, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'targetHttpsProxy' => $targetHttpsProxy); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns the specified TargetHttpsProxy resource in the specified region. Gets - * a list of available target HTTP proxies by making a list() request. - * (regionTargetHttpsProxies.get) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param string $targetHttpsProxy Name of the TargetHttpsProxy resource to - * return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_TargetHttpsProxy - */ - public function get($project, $region, $targetHttpsProxy, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'targetHttpsProxy' => $targetHttpsProxy); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_TargetHttpsProxy"); - } - /** - * Creates a TargetHttpsProxy resource in the specified project and region using - * the data included in the request. (regionTargetHttpsProxies.insert) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param Google_Service_Compute_TargetHttpsProxy $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function insert($project, $region, Google_Service_Compute_TargetHttpsProxy $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves the list of TargetHttpsProxy resources available to the specified - * project in the specified region. - * (regionTargetHttpsProxies.listRegionTargetHttpsProxies) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_TargetHttpsProxyList - */ - public function listRegionTargetHttpsProxies($project, $region, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_TargetHttpsProxyList"); - } - /** - * Replaces SslCertificates for TargetHttpsProxy. - * (regionTargetHttpsProxies.setSslCertificates) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param string $targetHttpsProxy Name of the TargetHttpsProxy resource to set - * an SslCertificates resource for. - * @param Google_Service_Compute_RegionTargetHttpsProxiesSetSslCertificatesRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function setSslCertificates($project, $region, $targetHttpsProxy, Google_Service_Compute_RegionTargetHttpsProxiesSetSslCertificatesRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'targetHttpsProxy' => $targetHttpsProxy, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setSslCertificates', array($params), "Google_Service_Compute_Operation"); - } - /** - * Changes the URL map for TargetHttpsProxy. - * (regionTargetHttpsProxies.setUrlMap) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param string $targetHttpsProxy Name of the TargetHttpsProxy to set a URL map - * for. - * @param Google_Service_Compute_UrlMapReference $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function setUrlMap($project, $region, $targetHttpsProxy, Google_Service_Compute_UrlMapReference $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'targetHttpsProxy' => $targetHttpsProxy, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setUrlMap', array($params), "Google_Service_Compute_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/RegionUrlMaps.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/RegionUrlMaps.php deleted file mode 100644 index d23f94cb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/RegionUrlMaps.php +++ /dev/null @@ -1,194 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $regionUrlMaps = $computeService->regionUrlMaps; - * - */ -class Google_Service_Compute_Resource_RegionUrlMaps extends Google_Service_Resource -{ - /** - * Deletes the specified UrlMap resource. (regionUrlMaps.delete) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param string $urlMap Name of the UrlMap resource to delete. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId begin_interface: MixerMutationRequestBuilder - * Request ID to support idempotency. - * @return Google_Service_Compute_Operation - */ - public function delete($project, $region, $urlMap, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'urlMap' => $urlMap); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns the specified UrlMap resource. Gets a list of available URL maps by - * making a list() request. (regionUrlMaps.get) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param string $urlMap Name of the UrlMap resource to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_UrlMap - */ - public function get($project, $region, $urlMap, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'urlMap' => $urlMap); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_UrlMap"); - } - /** - * Creates a UrlMap resource in the specified project using the data included in - * the request. (regionUrlMaps.insert) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param Google_Service_Compute_UrlMap $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId begin_interface: MixerMutationRequestBuilder - * Request ID to support idempotency. - * @return Google_Service_Compute_Operation - */ - public function insert($project, $region, Google_Service_Compute_UrlMap $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves the list of UrlMap resources available to the specified project in - * the specified region. (regionUrlMaps.listRegionUrlMaps) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_UrlMapList - */ - public function listRegionUrlMaps($project, $region, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_UrlMapList"); - } - /** - * Patches the specified UrlMap resource with the data included in the request. - * This method supports PATCH semantics and uses JSON merge patch format and - * processing rules. (regionUrlMaps.patch) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param string $urlMap Name of the UrlMap resource to patch. - * @param Google_Service_Compute_UrlMap $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId begin_interface: MixerMutationRequestBuilder - * Request ID to support idempotency. - * @return Google_Service_Compute_Operation - */ - public function patch($project, $region, $urlMap, Google_Service_Compute_UrlMap $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'urlMap' => $urlMap, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Compute_Operation"); - } - /** - * Updates the specified UrlMap resource with the data included in the request. - * (regionUrlMaps.update) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param string $urlMap Name of the UrlMap resource to update. - * @param Google_Service_Compute_UrlMap $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId begin_interface: MixerMutationRequestBuilder - * Request ID to support idempotency. - * @return Google_Service_Compute_Operation - */ - public function update($project, $region, $urlMap, Google_Service_Compute_UrlMap $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'urlMap' => $urlMap, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Compute_Operation"); - } - /** - * Runs static validation for the UrlMap. In particular, the tests of the - * provided UrlMap will be run. Calling this method does NOT create the UrlMap. - * (regionUrlMaps.validate) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param string $urlMap Name of the UrlMap resource to be validated as. - * @param Google_Service_Compute_RegionUrlMapsValidateRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_UrlMapsValidateResponse - */ - public function validate($project, $region, $urlMap, Google_Service_Compute_RegionUrlMapsValidateRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'urlMap' => $urlMap, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('validate', array($params), "Google_Service_Compute_UrlMapsValidateResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/Regions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/Regions.php deleted file mode 100644 index cb6a7580..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/Regions.php +++ /dev/null @@ -1,96 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $regions = $computeService->regions; - * - */ -class Google_Service_Compute_Resource_Regions extends Google_Service_Resource -{ - /** - * Returns the specified Region resource. Gets a list of available regions by - * making a list() request. (regions.get) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region resource to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Region - */ - public function get($project, $region, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_Region"); - } - /** - * Retrieves the list of region resources available to the specified project. - * (regions.listRegions) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_RegionList - */ - public function listRegions($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_RegionList"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/Reservations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/Reservations.php deleted file mode 100644 index ca32fd73..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/Reservations.php +++ /dev/null @@ -1,286 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $reservations = $computeService->reservations; - * - */ -class Google_Service_Compute_Resource_Reservations extends Google_Service_Resource -{ - /** - * Retrieves an aggregated list of reservations. (reservations.aggregatedList) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_ReservationAggregatedList - */ - public function aggregatedList($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('aggregatedList', array($params), "Google_Service_Compute_ReservationAggregatedList"); - } - /** - * Deletes the specified reservation. (reservations.delete) - * - * @param string $project Project ID for this request. - * @param string $zone Name of the zone for this request. - * @param string $reservation Name of the reservation to delete. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function delete($project, $zone, $reservation, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'reservation' => $reservation); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves information about the specified reservation. (reservations.get) - * - * @param string $project Project ID for this request. - * @param string $zone Name of the zone for this request. - * @param string $reservation Name of the reservation to retrieve. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Reservation - */ - public function get($project, $zone, $reservation, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'reservation' => $reservation); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_Reservation"); - } - /** - * Gets the access control policy for a resource. May be empty if no such policy - * or resource exists. (reservations.getIamPolicy) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $resource Name or id of the resource for this request. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Policy - */ - public function getIamPolicy($project, $zone, $resource, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'resource' => $resource); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_Compute_Policy"); - } - /** - * Creates a new reservation. For more information, read Reserving zonal - * resources. (reservations.insert) - * - * @param string $project Project ID for this request. - * @param string $zone Name of the zone for this request. - * @param Google_Service_Compute_Reservation $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function insert($project, $zone, Google_Service_Compute_Reservation $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Compute_Operation"); - } - /** - * A list of all the reservations that have been configured for the specified - * project in specified zone. (reservations.listReservations) - * - * @param string $project Project ID for this request. - * @param string $zone Name of the zone for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_ReservationList - */ - public function listReservations($project, $zone, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_ReservationList"); - } - /** - * Resizes the reservation (applicable to standalone reservations only). For - * more information, read Modifying reservations. (reservations.resize) - * - * @param string $project Project ID for this request. - * @param string $zone Name of the zone for this request. - * @param string $reservation Name of the reservation to update. - * @param Google_Service_Compute_ReservationsResizeRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function resize($project, $zone, $reservation, Google_Service_Compute_ReservationsResizeRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'reservation' => $reservation, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('resize', array($params), "Google_Service_Compute_Operation"); - } - /** - * Sets the access control policy on the specified resource. Replaces any - * existing policy. (reservations.setIamPolicy) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $resource Name or id of the resource for this request. - * @param Google_Service_Compute_ZoneSetPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Policy - */ - public function setIamPolicy($project, $zone, $resource, Google_Service_Compute_ZoneSetPolicyRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_Compute_Policy"); - } - /** - * Returns permissions that a caller has on the specified resource. - * (reservations.testIamPermissions) - * - * @param string $project Project ID for this request. - * @param string $zone The name of the zone for this request. - * @param string $resource Name or id of the resource for this request. - * @param Google_Service_Compute_TestPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_TestPermissionsResponse - */ - public function testIamPermissions($project, $zone, $resource, Google_Service_Compute_TestPermissionsRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_Compute_TestPermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/ResourcePolicies.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/ResourcePolicies.php deleted file mode 100644 index b14707c1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/ResourcePolicies.php +++ /dev/null @@ -1,257 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $resourcePolicies = $computeService->resourcePolicies; - * - */ -class Google_Service_Compute_Resource_ResourcePolicies extends Google_Service_Resource -{ - /** - * Retrieves an aggregated list of resource policies. - * (resourcePolicies.aggregatedList) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_ResourcePolicyAggregatedList - */ - public function aggregatedList($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('aggregatedList', array($params), "Google_Service_Compute_ResourcePolicyAggregatedList"); - } - /** - * Deletes the specified resource policy. (resourcePolicies.delete) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region for this request. - * @param string $resourcePolicy Name of the resource policy to delete. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function delete($project, $region, $resourcePolicy, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'resourcePolicy' => $resourcePolicy); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves all information of the specified resource policy. - * (resourcePolicies.get) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region for this request. - * @param string $resourcePolicy Name of the resource policy to retrieve. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_ResourcePolicy - */ - public function get($project, $region, $resourcePolicy, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'resourcePolicy' => $resourcePolicy); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_ResourcePolicy"); - } - /** - * Gets the access control policy for a resource. May be empty if no such policy - * or resource exists. (resourcePolicies.getIamPolicy) - * - * @param string $project Project ID for this request. - * @param string $region The name of the region for this request. - * @param string $resource Name or id of the resource for this request. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Policy - */ - public function getIamPolicy($project, $region, $resource, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'resource' => $resource); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_Compute_Policy"); - } - /** - * Creates a new resource policy. (resourcePolicies.insert) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region for this request. - * @param Google_Service_Compute_ResourcePolicy $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function insert($project, $region, Google_Service_Compute_ResourcePolicy $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Compute_Operation"); - } - /** - * A list all the resource policies that have been configured for the specified - * project in specified region. (resourcePolicies.listResourcePolicies) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_ResourcePolicyList - */ - public function listResourcePolicies($project, $region, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_ResourcePolicyList"); - } - /** - * Sets the access control policy on the specified resource. Replaces any - * existing policy. (resourcePolicies.setIamPolicy) - * - * @param string $project Project ID for this request. - * @param string $region The name of the region for this request. - * @param string $resource Name or id of the resource for this request. - * @param Google_Service_Compute_RegionSetPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Policy - */ - public function setIamPolicy($project, $region, $resource, Google_Service_Compute_RegionSetPolicyRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_Compute_Policy"); - } - /** - * Returns permissions that a caller has on the specified resource. - * (resourcePolicies.testIamPermissions) - * - * @param string $project Project ID for this request. - * @param string $region The name of the region for this request. - * @param string $resource Name or id of the resource for this request. - * @param Google_Service_Compute_TestPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_TestPermissionsResponse - */ - public function testIamPermissions($project, $region, $resource, Google_Service_Compute_TestPermissionsRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_Compute_TestPermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/Routers.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/Routers.php deleted file mode 100644 index 94b1cc6d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/Routers.php +++ /dev/null @@ -1,359 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $routers = $computeService->routers; - * - */ -class Google_Service_Compute_Resource_Routers extends Google_Service_Resource -{ - /** - * Retrieves an aggregated list of routers. (routers.aggregatedList) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_RouterAggregatedList - */ - public function aggregatedList($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('aggregatedList', array($params), "Google_Service_Compute_RouterAggregatedList"); - } - /** - * Deletes the specified Router resource. (routers.delete) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region for this request. - * @param string $router Name of the Router resource to delete. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function delete($project, $region, $router, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'router' => $router); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns the specified Router resource. Gets a list of available routers by - * making a list() request. (routers.get) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region for this request. - * @param string $router Name of the Router resource to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Router - */ - public function get($project, $region, $router, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'router' => $router); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_Router"); - } - /** - * Retrieves runtime Nat mapping information of VM endpoints. - * (routers.getNatMappingInfo) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region for this request. - * @param string $router Name of the Router resource to query for Nat Mapping - * information of VM endpoints. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_VmEndpointNatMappingsList - */ - public function getNatMappingInfo($project, $region, $router, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'router' => $router); - $params = array_merge($params, $optParams); - return $this->call('getNatMappingInfo', array($params), "Google_Service_Compute_VmEndpointNatMappingsList"); - } - /** - * Retrieves runtime information of the specified router. - * (routers.getRouterStatus) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region for this request. - * @param string $router Name of the Router resource to query. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_RouterStatusResponse - */ - public function getRouterStatus($project, $region, $router, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'router' => $router); - $params = array_merge($params, $optParams); - return $this->call('getRouterStatus', array($params), "Google_Service_Compute_RouterStatusResponse"); - } - /** - * Creates a Router resource in the specified project and region using the data - * included in the request. (routers.insert) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region for this request. - * @param Google_Service_Compute_Router $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function insert($project, $region, Google_Service_Compute_Router $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves a list of Router resources available to the specified project. - * (routers.listRouters) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_RouterList - */ - public function listRouters($project, $region, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_RouterList"); - } - /** - * Patches the specified Router resource with the data included in the request. - * This method supports PATCH semantics and uses JSON merge patch format and - * processing rules. (routers.patch) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region for this request. - * @param string $router Name of the Router resource to patch. - * @param Google_Service_Compute_Router $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function patch($project, $region, $router, Google_Service_Compute_Router $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'router' => $router, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Compute_Operation"); - } - /** - * Preview fields auto-generated during router create and update operations. - * Calling this method does NOT create or update the router. (routers.preview) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region for this request. - * @param string $router Name of the Router resource to query. - * @param Google_Service_Compute_Router $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_RoutersPreviewResponse - */ - public function preview($project, $region, $router, Google_Service_Compute_Router $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'router' => $router, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('preview', array($params), "Google_Service_Compute_RoutersPreviewResponse"); - } - /** - * Updates the specified Router resource with the data included in the request. - * This method conforms to PUT semantics, which requests that the state of the - * target resource be created or replaced with the state defined by the - * representation enclosed in the request message payload. (routers.update) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region for this request. - * @param string $router Name of the Router resource to update. - * @param Google_Service_Compute_Router $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function update($project, $region, $router, Google_Service_Compute_Router $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'router' => $router, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Compute_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/Routes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/Routes.php deleted file mode 100644 index d006af9b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/Routes.php +++ /dev/null @@ -1,151 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $routes = $computeService->routes; - * - */ -class Google_Service_Compute_Resource_Routes extends Google_Service_Resource -{ - /** - * Deletes the specified Route resource. (routes.delete) - * - * @param string $project Project ID for this request. - * @param string $route Name of the Route resource to delete. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function delete($project, $route, $optParams = array()) - { - $params = array('project' => $project, 'route' => $route); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns the specified Route resource. Gets a list of available routes by - * making a list() request. (routes.get) - * - * @param string $project Project ID for this request. - * @param string $route Name of the Route resource to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Route - */ - public function get($project, $route, $optParams = array()) - { - $params = array('project' => $project, 'route' => $route); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_Route"); - } - /** - * Creates a Route resource in the specified project using the data included in - * the request. (routes.insert) - * - * @param string $project Project ID for this request. - * @param Google_Service_Compute_Route $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function insert($project, Google_Service_Compute_Route $postBody, $optParams = array()) - { - $params = array('project' => $project, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves the list of Route resources available to the specified project. - * (routes.listRoutes) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_RouteList - */ - public function listRoutes($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_RouteList"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/SecurityPolicies.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/SecurityPolicies.php deleted file mode 100644 index 227b8c03..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/SecurityPolicies.php +++ /dev/null @@ -1,247 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $securityPolicies = $computeService->securityPolicies; - * - */ -class Google_Service_Compute_Resource_SecurityPolicies extends Google_Service_Resource -{ - /** - * Inserts a rule into a security policy. (securityPolicies.addRule) - * - * @param string $project Project ID for this request. - * @param string $securityPolicy Name of the security policy to update. - * @param Google_Service_Compute_SecurityPolicyRule $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Operation - */ - public function addRule($project, $securityPolicy, Google_Service_Compute_SecurityPolicyRule $postBody, $optParams = array()) - { - $params = array('project' => $project, 'securityPolicy' => $securityPolicy, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('addRule', array($params), "Google_Service_Compute_Operation"); - } - /** - * Deletes the specified policy. (securityPolicies.delete) - * - * @param string $project Project ID for this request. - * @param string $securityPolicy Name of the security policy to delete. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function delete($project, $securityPolicy, $optParams = array()) - { - $params = array('project' => $project, 'securityPolicy' => $securityPolicy); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Compute_Operation"); - } - /** - * List all of the ordered rules present in a single specified policy. - * (securityPolicies.get) - * - * @param string $project Project ID for this request. - * @param string $securityPolicy Name of the security policy to get. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_SecurityPolicy - */ - public function get($project, $securityPolicy, $optParams = array()) - { - $params = array('project' => $project, 'securityPolicy' => $securityPolicy); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_SecurityPolicy"); - } - /** - * Gets a rule at the specified priority. (securityPolicies.getRule) - * - * @param string $project Project ID for this request. - * @param string $securityPolicy Name of the security policy to which the - * queried rule belongs. - * @param array $optParams Optional parameters. - * - * @opt_param int priority The priority of the rule to get from the security - * policy. - * @return Google_Service_Compute_SecurityPolicyRule - */ - public function getRule($project, $securityPolicy, $optParams = array()) - { - $params = array('project' => $project, 'securityPolicy' => $securityPolicy); - $params = array_merge($params, $optParams); - return $this->call('getRule', array($params), "Google_Service_Compute_SecurityPolicyRule"); - } - /** - * Creates a new policy in the specified project using the data included in the - * request. (securityPolicies.insert) - * - * @param string $project Project ID for this request. - * @param Google_Service_Compute_SecurityPolicy $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function insert($project, Google_Service_Compute_SecurityPolicy $postBody, $optParams = array()) - { - $params = array('project' => $project, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Compute_Operation"); - } - /** - * List all the policies that have been configured for the specified project. - * (securityPolicies.listSecurityPolicies) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_SecurityPolicyList - */ - public function listSecurityPolicies($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_SecurityPolicyList"); - } - /** - * Patches the specified policy with the data included in the request. - * (securityPolicies.patch) - * - * @param string $project Project ID for this request. - * @param string $securityPolicy Name of the security policy to update. - * @param Google_Service_Compute_SecurityPolicy $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function patch($project, $securityPolicy, Google_Service_Compute_SecurityPolicy $postBody, $optParams = array()) - { - $params = array('project' => $project, 'securityPolicy' => $securityPolicy, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Compute_Operation"); - } - /** - * Patches a rule at the specified priority. (securityPolicies.patchRule) - * - * @param string $project Project ID for this request. - * @param string $securityPolicy Name of the security policy to update. - * @param Google_Service_Compute_SecurityPolicyRule $postBody - * @param array $optParams Optional parameters. - * - * @opt_param int priority The priority of the rule to patch. - * @return Google_Service_Compute_Operation - */ - public function patchRule($project, $securityPolicy, Google_Service_Compute_SecurityPolicyRule $postBody, $optParams = array()) - { - $params = array('project' => $project, 'securityPolicy' => $securityPolicy, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patchRule', array($params), "Google_Service_Compute_Operation"); - } - /** - * Deletes a rule at the specified priority. (securityPolicies.removeRule) - * - * @param string $project Project ID for this request. - * @param string $securityPolicy Name of the security policy to update. - * @param array $optParams Optional parameters. - * - * @opt_param int priority The priority of the rule to remove from the security - * policy. - * @return Google_Service_Compute_Operation - */ - public function removeRule($project, $securityPolicy, $optParams = array()) - { - $params = array('project' => $project, 'securityPolicy' => $securityPolicy); - $params = array_merge($params, $optParams); - return $this->call('removeRule', array($params), "Google_Service_Compute_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/Snapshots.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/Snapshots.php deleted file mode 100644 index b3cd54e9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/Snapshots.php +++ /dev/null @@ -1,191 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $snapshots = $computeService->snapshots; - * - */ -class Google_Service_Compute_Resource_Snapshots extends Google_Service_Resource -{ - /** - * Deletes the specified Snapshot resource. Keep in mind that deleting a single - * snapshot might not necessarily delete all the data on that snapshot. If any - * data on the snapshot that is marked for deletion is needed for subsequent - * snapshots, the data will be moved to the next corresponding snapshot. - * - * For more information, see Deleting snapshots. (snapshots.delete) - * - * @param string $project Project ID for this request. - * @param string $snapshot Name of the Snapshot resource to delete. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function delete($project, $snapshot, $optParams = array()) - { - $params = array('project' => $project, 'snapshot' => $snapshot); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns the specified Snapshot resource. Gets a list of available snapshots - * by making a list() request. (snapshots.get) - * - * @param string $project Project ID for this request. - * @param string $snapshot Name of the Snapshot resource to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Snapshot - */ - public function get($project, $snapshot, $optParams = array()) - { - $params = array('project' => $project, 'snapshot' => $snapshot); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_Snapshot"); - } - /** - * Gets the access control policy for a resource. May be empty if no such policy - * or resource exists. (snapshots.getIamPolicy) - * - * @param string $project Project ID for this request. - * @param string $resource Name or id of the resource for this request. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Policy - */ - public function getIamPolicy($project, $resource, $optParams = array()) - { - $params = array('project' => $project, 'resource' => $resource); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_Compute_Policy"); - } - /** - * Retrieves the list of Snapshot resources contained within the specified - * project. (snapshots.listSnapshots) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_SnapshotList - */ - public function listSnapshots($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_SnapshotList"); - } - /** - * Sets the access control policy on the specified resource. Replaces any - * existing policy. (snapshots.setIamPolicy) - * - * @param string $project Project ID for this request. - * @param string $resource Name or id of the resource for this request. - * @param Google_Service_Compute_GlobalSetPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Policy - */ - public function setIamPolicy($project, $resource, Google_Service_Compute_GlobalSetPolicyRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_Compute_Policy"); - } - /** - * Sets the labels on a snapshot. To learn more about labels, read the Labeling - * Resources documentation. (snapshots.setLabels) - * - * @param string $project Project ID for this request. - * @param string $resource Name or id of the resource for this request. - * @param Google_Service_Compute_GlobalSetLabelsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Operation - */ - public function setLabels($project, $resource, Google_Service_Compute_GlobalSetLabelsRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setLabels', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns permissions that a caller has on the specified resource. - * (snapshots.testIamPermissions) - * - * @param string $project Project ID for this request. - * @param string $resource Name or id of the resource for this request. - * @param Google_Service_Compute_TestPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_TestPermissionsResponse - */ - public function testIamPermissions($project, $resource, Google_Service_Compute_TestPermissionsRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_Compute_TestPermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/SslCertificates.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/SslCertificates.php deleted file mode 100644 index 496b6de1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/SslCertificates.php +++ /dev/null @@ -1,204 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $sslCertificates = $computeService->sslCertificates; - * - */ -class Google_Service_Compute_Resource_SslCertificates extends Google_Service_Resource -{ - /** - * Retrieves the list of all SslCertificate resources, regional and global, - * available to the specified project. (sslCertificates.aggregatedList) - * - * @param string $project Name of the project scoping this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_SslCertificateAggregatedList - */ - public function aggregatedList($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('aggregatedList', array($params), "Google_Service_Compute_SslCertificateAggregatedList"); - } - /** - * Deletes the specified SslCertificate resource. (sslCertificates.delete) - * - * @param string $project Project ID for this request. - * @param string $sslCertificate Name of the SslCertificate resource to delete. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function delete($project, $sslCertificate, $optParams = array()) - { - $params = array('project' => $project, 'sslCertificate' => $sslCertificate); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns the specified SslCertificate resource. Gets a list of available SSL - * certificates by making a list() request. (sslCertificates.get) - * - * @param string $project Project ID for this request. - * @param string $sslCertificate Name of the SslCertificate resource to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_SslCertificate - */ - public function get($project, $sslCertificate, $optParams = array()) - { - $params = array('project' => $project, 'sslCertificate' => $sslCertificate); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_SslCertificate"); - } - /** - * Creates a SslCertificate resource in the specified project using the data - * included in the request. (sslCertificates.insert) - * - * @param string $project Project ID for this request. - * @param Google_Service_Compute_SslCertificate $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function insert($project, Google_Service_Compute_SslCertificate $postBody, $optParams = array()) - { - $params = array('project' => $project, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves the list of SslCertificate resources available to the specified - * project. (sslCertificates.listSslCertificates) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_SslCertificateList - */ - public function listSslCertificates($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_SslCertificateList"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/SslPolicies.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/SslPolicies.php deleted file mode 100644 index ddd8d9d6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/SslPolicies.php +++ /dev/null @@ -1,238 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $sslPolicies = $computeService->sslPolicies; - * - */ -class Google_Service_Compute_Resource_SslPolicies extends Google_Service_Resource -{ - /** - * Deletes the specified SSL policy. The SSL policy resource can be deleted only - * if it is not in use by any TargetHttpsProxy or TargetSslProxy resources. - * (sslPolicies.delete) - * - * @param string $project Project ID for this request. - * @param string $sslPolicy Name of the SSL policy to delete. The name must be - * 1-63 characters long, and comply with RFC1035. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function delete($project, $sslPolicy, $optParams = array()) - { - $params = array('project' => $project, 'sslPolicy' => $sslPolicy); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Compute_Operation"); - } - /** - * Lists all of the ordered rules present in a single specified policy. - * (sslPolicies.get) - * - * @param string $project Project ID for this request. - * @param string $sslPolicy Name of the SSL policy to update. The name must be - * 1-63 characters long, and comply with RFC1035. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_SslPolicy - */ - public function get($project, $sslPolicy, $optParams = array()) - { - $params = array('project' => $project, 'sslPolicy' => $sslPolicy); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_SslPolicy"); - } - /** - * Returns the specified SSL policy resource. Gets a list of available SSL - * policies by making a list() request. (sslPolicies.insert) - * - * @param string $project Project ID for this request. - * @param Google_Service_Compute_SslPolicy $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function insert($project, Google_Service_Compute_SslPolicy $postBody, $optParams = array()) - { - $params = array('project' => $project, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Compute_Operation"); - } - /** - * Lists all the SSL policies that have been configured for the specified - * project. (sslPolicies.listSslPolicies) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_SslPoliciesList - */ - public function listSslPolicies($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_SslPoliciesList"); - } - /** - * Lists all features that can be specified in the SSL policy when using custom - * profile. (sslPolicies.listAvailableFeatures) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_SslPoliciesListAvailableFeaturesResponse - */ - public function listAvailableFeatures($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('listAvailableFeatures', array($params), "Google_Service_Compute_SslPoliciesListAvailableFeaturesResponse"); - } - /** - * Patches the specified SSL policy with the data included in the request. - * (sslPolicies.patch) - * - * @param string $project Project ID for this request. - * @param string $sslPolicy Name of the SSL policy to update. The name must be - * 1-63 characters long, and comply with RFC1035. - * @param Google_Service_Compute_SslPolicy $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function patch($project, $sslPolicy, Google_Service_Compute_SslPolicy $postBody, $optParams = array()) - { - $params = array('project' => $project, 'sslPolicy' => $sslPolicy, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Compute_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/Subnetworks.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/Subnetworks.php deleted file mode 100644 index 02820ac3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/Subnetworks.php +++ /dev/null @@ -1,412 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $subnetworks = $computeService->subnetworks; - * - */ -class Google_Service_Compute_Resource_Subnetworks extends Google_Service_Resource -{ - /** - * Retrieves an aggregated list of subnetworks. (subnetworks.aggregatedList) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_SubnetworkAggregatedList - */ - public function aggregatedList($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('aggregatedList', array($params), "Google_Service_Compute_SubnetworkAggregatedList"); - } - /** - * Deletes the specified subnetwork. (subnetworks.delete) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param string $subnetwork Name of the Subnetwork resource to delete. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function delete($project, $region, $subnetwork, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'subnetwork' => $subnetwork); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Compute_Operation"); - } - /** - * Expands the IP CIDR range of the subnetwork to a specified value. - * (subnetworks.expandIpCidrRange) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param string $subnetwork Name of the Subnetwork resource to update. - * @param Google_Service_Compute_SubnetworksExpandIpCidrRangeRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function expandIpCidrRange($project, $region, $subnetwork, Google_Service_Compute_SubnetworksExpandIpCidrRangeRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'subnetwork' => $subnetwork, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('expandIpCidrRange', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns the specified subnetwork. Gets a list of available subnetworks list() - * request. (subnetworks.get) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param string $subnetwork Name of the Subnetwork resource to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Subnetwork - */ - public function get($project, $region, $subnetwork, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'subnetwork' => $subnetwork); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_Subnetwork"); - } - /** - * Gets the access control policy for a resource. May be empty if no such policy - * or resource exists. (subnetworks.getIamPolicy) - * - * @param string $project Project ID for this request. - * @param string $region The name of the region for this request. - * @param string $resource Name or id of the resource for this request. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Policy - */ - public function getIamPolicy($project, $region, $resource, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'resource' => $resource); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_Compute_Policy"); - } - /** - * Creates a subnetwork in the specified project using the data included in the - * request. (subnetworks.insert) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param Google_Service_Compute_Subnetwork $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function insert($project, $region, Google_Service_Compute_Subnetwork $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves a list of subnetworks available to the specified project. - * (subnetworks.listSubnetworks) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_SubnetworkList - */ - public function listSubnetworks($project, $region, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_SubnetworkList"); - } - /** - * Retrieves an aggregated list of all usable subnetworks in the project. The - * list contains all of the subnetworks in the project and the subnetworks that - * were shared by a Shared VPC host project. (subnetworks.listUsable) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_UsableSubnetworksAggregatedList - */ - public function listUsable($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('listUsable', array($params), "Google_Service_Compute_UsableSubnetworksAggregatedList"); - } - /** - * Patches the specified subnetwork with the data included in the request. Only - * certain fields can up updated with a patch request as indicated in the field - * descriptions. You must specify the current fingeprint of the subnetwork - * resource being patched. (subnetworks.patch) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param string $subnetwork Name of the Subnetwork resource to patch. - * @param Google_Service_Compute_Subnetwork $postBody - * @param array $optParams Optional parameters. - * - * @opt_param int drainTimeoutSeconds The drain timeout specifies the upper - * bound in seconds on the amount of time allowed to drain connections from the - * current ACTIVE subnetwork to the current BACKUP subnetwork. The drain timeout - * is only applicable when the following conditions are true: - the subnetwork - * being patched has purpose = INTERNAL_HTTPS_LOAD_BALANCER - the subnetwork - * being patched has role = BACKUP - the patch request is setting the role to - * ACTIVE. Note that after this patch operation the roles of the ACTIVE and - * BACKUP subnetworks will be swapped. - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function patch($project, $region, $subnetwork, Google_Service_Compute_Subnetwork $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'subnetwork' => $subnetwork, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Compute_Operation"); - } - /** - * Sets the access control policy on the specified resource. Replaces any - * existing policy. (subnetworks.setIamPolicy) - * - * @param string $project Project ID for this request. - * @param string $region The name of the region for this request. - * @param string $resource Name or id of the resource for this request. - * @param Google_Service_Compute_RegionSetPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Policy - */ - public function setIamPolicy($project, $region, $resource, Google_Service_Compute_RegionSetPolicyRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_Compute_Policy"); - } - /** - * Set whether VMs in this subnet can access Google services without assigning - * external IP addresses through Private Google Access. - * (subnetworks.setPrivateIpGoogleAccess) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param string $subnetwork Name of the Subnetwork resource. - * @param Google_Service_Compute_SubnetworksSetPrivateIpGoogleAccessRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function setPrivateIpGoogleAccess($project, $region, $subnetwork, Google_Service_Compute_SubnetworksSetPrivateIpGoogleAccessRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'subnetwork' => $subnetwork, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setPrivateIpGoogleAccess', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns permissions that a caller has on the specified resource. - * (subnetworks.testIamPermissions) - * - * @param string $project Project ID for this request. - * @param string $region The name of the region for this request. - * @param string $resource Name or id of the resource for this request. - * @param Google_Service_Compute_TestPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_TestPermissionsResponse - */ - public function testIamPermissions($project, $region, $resource, Google_Service_Compute_TestPermissionsRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_Compute_TestPermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/TargetHttpProxies.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/TargetHttpProxies.php deleted file mode 100644 index 8bae1cc3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/TargetHttpProxies.php +++ /dev/null @@ -1,235 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $targetHttpProxies = $computeService->targetHttpProxies; - * - */ -class Google_Service_Compute_Resource_TargetHttpProxies extends Google_Service_Resource -{ - /** - * Retrieves the list of all TargetHttpProxy resources, regional and global, - * available to the specified project. (targetHttpProxies.aggregatedList) - * - * @param string $project Name of the project scoping this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_TargetHttpProxyAggregatedList - */ - public function aggregatedList($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('aggregatedList', array($params), "Google_Service_Compute_TargetHttpProxyAggregatedList"); - } - /** - * Deletes the specified TargetHttpProxy resource. (targetHttpProxies.delete) - * - * @param string $project Project ID for this request. - * @param string $targetHttpProxy Name of the TargetHttpProxy resource to - * delete. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function delete($project, $targetHttpProxy, $optParams = array()) - { - $params = array('project' => $project, 'targetHttpProxy' => $targetHttpProxy); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns the specified TargetHttpProxy resource. Gets a list of available - * target HTTP proxies by making a list() request. (targetHttpProxies.get) - * - * @param string $project Project ID for this request. - * @param string $targetHttpProxy Name of the TargetHttpProxy resource to - * return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_TargetHttpProxy - */ - public function get($project, $targetHttpProxy, $optParams = array()) - { - $params = array('project' => $project, 'targetHttpProxy' => $targetHttpProxy); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_TargetHttpProxy"); - } - /** - * Creates a TargetHttpProxy resource in the specified project using the data - * included in the request. (targetHttpProxies.insert) - * - * @param string $project Project ID for this request. - * @param Google_Service_Compute_TargetHttpProxy $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function insert($project, Google_Service_Compute_TargetHttpProxy $postBody, $optParams = array()) - { - $params = array('project' => $project, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves the list of TargetHttpProxy resources available to the specified - * project. (targetHttpProxies.listTargetHttpProxies) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_TargetHttpProxyList - */ - public function listTargetHttpProxies($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_TargetHttpProxyList"); - } - /** - * Changes the URL map for TargetHttpProxy. (targetHttpProxies.setUrlMap) - * - * @param string $project Project ID for this request. - * @param string $targetHttpProxy Name of the TargetHttpProxy to set a URL map - * for. - * @param Google_Service_Compute_UrlMapReference $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function setUrlMap($project, $targetHttpProxy, Google_Service_Compute_UrlMapReference $postBody, $optParams = array()) - { - $params = array('project' => $project, 'targetHttpProxy' => $targetHttpProxy, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setUrlMap', array($params), "Google_Service_Compute_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/TargetHttpsProxies.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/TargetHttpsProxies.php deleted file mode 100644 index 01f3d765..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/TargetHttpsProxies.php +++ /dev/null @@ -1,328 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $targetHttpsProxies = $computeService->targetHttpsProxies; - * - */ -class Google_Service_Compute_Resource_TargetHttpsProxies extends Google_Service_Resource -{ - /** - * Retrieves the list of all TargetHttpsProxy resources, regional and global, - * available to the specified project. (targetHttpsProxies.aggregatedList) - * - * @param string $project Name of the project scoping this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_TargetHttpsProxyAggregatedList - */ - public function aggregatedList($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('aggregatedList', array($params), "Google_Service_Compute_TargetHttpsProxyAggregatedList"); - } - /** - * Deletes the specified TargetHttpsProxy resource. (targetHttpsProxies.delete) - * - * @param string $project Project ID for this request. - * @param string $targetHttpsProxy Name of the TargetHttpsProxy resource to - * delete. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function delete($project, $targetHttpsProxy, $optParams = array()) - { - $params = array('project' => $project, 'targetHttpsProxy' => $targetHttpsProxy); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns the specified TargetHttpsProxy resource. Gets a list of available - * target HTTPS proxies by making a list() request. (targetHttpsProxies.get) - * - * @param string $project Project ID for this request. - * @param string $targetHttpsProxy Name of the TargetHttpsProxy resource to - * return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_TargetHttpsProxy - */ - public function get($project, $targetHttpsProxy, $optParams = array()) - { - $params = array('project' => $project, 'targetHttpsProxy' => $targetHttpsProxy); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_TargetHttpsProxy"); - } - /** - * Creates a TargetHttpsProxy resource in the specified project using the data - * included in the request. (targetHttpsProxies.insert) - * - * @param string $project Project ID for this request. - * @param Google_Service_Compute_TargetHttpsProxy $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function insert($project, Google_Service_Compute_TargetHttpsProxy $postBody, $optParams = array()) - { - $params = array('project' => $project, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves the list of TargetHttpsProxy resources available to the specified - * project. (targetHttpsProxies.listTargetHttpsProxies) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_TargetHttpsProxyList - */ - public function listTargetHttpsProxies($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_TargetHttpsProxyList"); - } - /** - * Sets the QUIC override policy for TargetHttpsProxy. - * (targetHttpsProxies.setQuicOverride) - * - * @param string $project Project ID for this request. - * @param string $targetHttpsProxy Name of the TargetHttpsProxy resource to set - * the QUIC override policy for. The name should conform to RFC1035. - * @param Google_Service_Compute_TargetHttpsProxiesSetQuicOverrideRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function setQuicOverride($project, $targetHttpsProxy, Google_Service_Compute_TargetHttpsProxiesSetQuicOverrideRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'targetHttpsProxy' => $targetHttpsProxy, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setQuicOverride', array($params), "Google_Service_Compute_Operation"); - } - /** - * Replaces SslCertificates for TargetHttpsProxy. - * (targetHttpsProxies.setSslCertificates) - * - * @param string $project Project ID for this request. - * @param string $targetHttpsProxy Name of the TargetHttpsProxy resource to set - * an SslCertificates resource for. - * @param Google_Service_Compute_TargetHttpsProxiesSetSslCertificatesRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function setSslCertificates($project, $targetHttpsProxy, Google_Service_Compute_TargetHttpsProxiesSetSslCertificatesRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'targetHttpsProxy' => $targetHttpsProxy, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setSslCertificates', array($params), "Google_Service_Compute_Operation"); - } - /** - * Sets the SSL policy for TargetHttpsProxy. The SSL policy specifies the - * server-side support for SSL features. This affects connections between - * clients and the HTTPS proxy load balancer. They do not affect the connection - * between the load balancer and the backends. (targetHttpsProxies.setSslPolicy) - * - * @param string $project Project ID for this request. - * @param string $targetHttpsProxy Name of the TargetHttpsProxy resource whose - * SSL policy is to be set. The name must be 1-63 characters long, and comply - * with RFC1035. - * @param Google_Service_Compute_SslPolicyReference $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function setSslPolicy($project, $targetHttpsProxy, Google_Service_Compute_SslPolicyReference $postBody, $optParams = array()) - { - $params = array('project' => $project, 'targetHttpsProxy' => $targetHttpsProxy, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setSslPolicy', array($params), "Google_Service_Compute_Operation"); - } - /** - * Changes the URL map for TargetHttpsProxy. (targetHttpsProxies.setUrlMap) - * - * @param string $project Project ID for this request. - * @param string $targetHttpsProxy Name of the TargetHttpsProxy resource whose - * URL map is to be set. - * @param Google_Service_Compute_UrlMapReference $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function setUrlMap($project, $targetHttpsProxy, Google_Service_Compute_UrlMapReference $postBody, $optParams = array()) - { - $params = array('project' => $project, 'targetHttpsProxy' => $targetHttpsProxy, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setUrlMap', array($params), "Google_Service_Compute_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/TargetInstances.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/TargetInstances.php deleted file mode 100644 index deddd70e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/TargetInstances.php +++ /dev/null @@ -1,208 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $targetInstances = $computeService->targetInstances; - * - */ -class Google_Service_Compute_Resource_TargetInstances extends Google_Service_Resource -{ - /** - * Retrieves an aggregated list of target instances. - * (targetInstances.aggregatedList) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_TargetInstanceAggregatedList - */ - public function aggregatedList($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('aggregatedList', array($params), "Google_Service_Compute_TargetInstanceAggregatedList"); - } - /** - * Deletes the specified TargetInstance resource. (targetInstances.delete) - * - * @param string $project Project ID for this request. - * @param string $zone Name of the zone scoping this request. - * @param string $targetInstance Name of the TargetInstance resource to delete. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function delete($project, $zone, $targetInstance, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'targetInstance' => $targetInstance); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns the specified TargetInstance resource. Gets a list of available - * target instances by making a list() request. (targetInstances.get) - * - * @param string $project Project ID for this request. - * @param string $zone Name of the zone scoping this request. - * @param string $targetInstance Name of the TargetInstance resource to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_TargetInstance - */ - public function get($project, $zone, $targetInstance, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'targetInstance' => $targetInstance); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_TargetInstance"); - } - /** - * Creates a TargetInstance resource in the specified project and zone using the - * data included in the request. (targetInstances.insert) - * - * @param string $project Project ID for this request. - * @param string $zone Name of the zone scoping this request. - * @param Google_Service_Compute_TargetInstance $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function insert($project, $zone, Google_Service_Compute_TargetInstance $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves a list of TargetInstance resources available to the specified - * project and zone. (targetInstances.listTargetInstances) - * - * @param string $project Project ID for this request. - * @param string $zone Name of the zone scoping this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_TargetInstanceList - */ - public function listTargetInstances($project, $zone, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_TargetInstanceList"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/TargetPools.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/TargetPools.php deleted file mode 100644 index 29b77e33..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/TargetPools.php +++ /dev/null @@ -1,375 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $targetPools = $computeService->targetPools; - * - */ -class Google_Service_Compute_Resource_TargetPools extends Google_Service_Resource -{ - /** - * Adds health check URLs to a target pool. (targetPools.addHealthCheck) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param string $targetPool Name of the target pool to add a health check to. - * @param Google_Service_Compute_TargetPoolsAddHealthCheckRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function addHealthCheck($project, $region, $targetPool, Google_Service_Compute_TargetPoolsAddHealthCheckRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'targetPool' => $targetPool, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('addHealthCheck', array($params), "Google_Service_Compute_Operation"); - } - /** - * Adds an instance to a target pool. (targetPools.addInstance) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param string $targetPool Name of the TargetPool resource to add instances - * to. - * @param Google_Service_Compute_TargetPoolsAddInstanceRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function addInstance($project, $region, $targetPool, Google_Service_Compute_TargetPoolsAddInstanceRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'targetPool' => $targetPool, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('addInstance', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves an aggregated list of target pools. (targetPools.aggregatedList) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_TargetPoolAggregatedList - */ - public function aggregatedList($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('aggregatedList', array($params), "Google_Service_Compute_TargetPoolAggregatedList"); - } - /** - * Deletes the specified target pool. (targetPools.delete) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param string $targetPool Name of the TargetPool resource to delete. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function delete($project, $region, $targetPool, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'targetPool' => $targetPool); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns the specified target pool. Gets a list of available target pools by - * making a list() request. (targetPools.get) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param string $targetPool Name of the TargetPool resource to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_TargetPool - */ - public function get($project, $region, $targetPool, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'targetPool' => $targetPool); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_TargetPool"); - } - /** - * Gets the most recent health check results for each IP for the instance that - * is referenced by the given target pool. (targetPools.getHealth) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param string $targetPool Name of the TargetPool resource to which the - * queried instance belongs. - * @param Google_Service_Compute_InstanceReference $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_TargetPoolInstanceHealth - */ - public function getHealth($project, $region, $targetPool, Google_Service_Compute_InstanceReference $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'targetPool' => $targetPool, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('getHealth', array($params), "Google_Service_Compute_TargetPoolInstanceHealth"); - } - /** - * Creates a target pool in the specified project and region using the data - * included in the request. (targetPools.insert) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param Google_Service_Compute_TargetPool $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function insert($project, $region, Google_Service_Compute_TargetPool $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves a list of target pools available to the specified project and - * region. (targetPools.listTargetPools) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_TargetPoolList - */ - public function listTargetPools($project, $region, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_TargetPoolList"); - } - /** - * Removes health check URL from a target pool. (targetPools.removeHealthCheck) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region for this request. - * @param string $targetPool Name of the target pool to remove health checks - * from. - * @param Google_Service_Compute_TargetPoolsRemoveHealthCheckRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function removeHealthCheck($project, $region, $targetPool, Google_Service_Compute_TargetPoolsRemoveHealthCheckRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'targetPool' => $targetPool, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('removeHealthCheck', array($params), "Google_Service_Compute_Operation"); - } - /** - * Removes instance URL from a target pool. (targetPools.removeInstance) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param string $targetPool Name of the TargetPool resource to remove instances - * from. - * @param Google_Service_Compute_TargetPoolsRemoveInstanceRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function removeInstance($project, $region, $targetPool, Google_Service_Compute_TargetPoolsRemoveInstanceRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'targetPool' => $targetPool, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('removeInstance', array($params), "Google_Service_Compute_Operation"); - } - /** - * Changes a backup target pool's configurations. (targetPools.setBackup) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region scoping this request. - * @param string $targetPool Name of the TargetPool resource to set a backup - * pool for. - * @param Google_Service_Compute_TargetReference $postBody - * @param array $optParams Optional parameters. - * - * @opt_param float failoverRatio New failoverRatio value for the target pool. - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function setBackup($project, $region, $targetPool, Google_Service_Compute_TargetReference $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'targetPool' => $targetPool, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setBackup', array($params), "Google_Service_Compute_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/TargetSslProxies.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/TargetSslProxies.php deleted file mode 100644 index c3a85f19..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/TargetSslProxies.php +++ /dev/null @@ -1,274 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $targetSslProxies = $computeService->targetSslProxies; - * - */ -class Google_Service_Compute_Resource_TargetSslProxies extends Google_Service_Resource -{ - /** - * Deletes the specified TargetSslProxy resource. (targetSslProxies.delete) - * - * @param string $project Project ID for this request. - * @param string $targetSslProxy Name of the TargetSslProxy resource to delete. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function delete($project, $targetSslProxy, $optParams = array()) - { - $params = array('project' => $project, 'targetSslProxy' => $targetSslProxy); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns the specified TargetSslProxy resource. Gets a list of available - * target SSL proxies by making a list() request. (targetSslProxies.get) - * - * @param string $project Project ID for this request. - * @param string $targetSslProxy Name of the TargetSslProxy resource to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_TargetSslProxy - */ - public function get($project, $targetSslProxy, $optParams = array()) - { - $params = array('project' => $project, 'targetSslProxy' => $targetSslProxy); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_TargetSslProxy"); - } - /** - * Creates a TargetSslProxy resource in the specified project using the data - * included in the request. (targetSslProxies.insert) - * - * @param string $project Project ID for this request. - * @param Google_Service_Compute_TargetSslProxy $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function insert($project, Google_Service_Compute_TargetSslProxy $postBody, $optParams = array()) - { - $params = array('project' => $project, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves the list of TargetSslProxy resources available to the specified - * project. (targetSslProxies.listTargetSslProxies) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_TargetSslProxyList - */ - public function listTargetSslProxies($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_TargetSslProxyList"); - } - /** - * Changes the BackendService for TargetSslProxy. - * (targetSslProxies.setBackendService) - * - * @param string $project Project ID for this request. - * @param string $targetSslProxy Name of the TargetSslProxy resource whose - * BackendService resource is to be set. - * @param Google_Service_Compute_TargetSslProxiesSetBackendServiceRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function setBackendService($project, $targetSslProxy, Google_Service_Compute_TargetSslProxiesSetBackendServiceRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'targetSslProxy' => $targetSslProxy, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setBackendService', array($params), "Google_Service_Compute_Operation"); - } - /** - * Changes the ProxyHeaderType for TargetSslProxy. - * (targetSslProxies.setProxyHeader) - * - * @param string $project Project ID for this request. - * @param string $targetSslProxy Name of the TargetSslProxy resource whose - * ProxyHeader is to be set. - * @param Google_Service_Compute_TargetSslProxiesSetProxyHeaderRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function setProxyHeader($project, $targetSslProxy, Google_Service_Compute_TargetSslProxiesSetProxyHeaderRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'targetSslProxy' => $targetSslProxy, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setProxyHeader', array($params), "Google_Service_Compute_Operation"); - } - /** - * Changes SslCertificates for TargetSslProxy. - * (targetSslProxies.setSslCertificates) - * - * @param string $project Project ID for this request. - * @param string $targetSslProxy Name of the TargetSslProxy resource whose - * SslCertificate resource is to be set. - * @param Google_Service_Compute_TargetSslProxiesSetSslCertificatesRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function setSslCertificates($project, $targetSslProxy, Google_Service_Compute_TargetSslProxiesSetSslCertificatesRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'targetSslProxy' => $targetSslProxy, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setSslCertificates', array($params), "Google_Service_Compute_Operation"); - } - /** - * Sets the SSL policy for TargetSslProxy. The SSL policy specifies the server- - * side support for SSL features. This affects connections between clients and - * the SSL proxy load balancer. They do not affect the connection between the - * load balancer and the backends. (targetSslProxies.setSslPolicy) - * - * @param string $project Project ID for this request. - * @param string $targetSslProxy Name of the TargetSslProxy resource whose SSL - * policy is to be set. The name must be 1-63 characters long, and comply with - * RFC1035. - * @param Google_Service_Compute_SslPolicyReference $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function setSslPolicy($project, $targetSslProxy, Google_Service_Compute_SslPolicyReference $postBody, $optParams = array()) - { - $params = array('project' => $project, 'targetSslProxy' => $targetSslProxy, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setSslPolicy', array($params), "Google_Service_Compute_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/TargetTcpProxies.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/TargetTcpProxies.php deleted file mode 100644 index f53094cb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/TargetTcpProxies.php +++ /dev/null @@ -1,211 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $targetTcpProxies = $computeService->targetTcpProxies; - * - */ -class Google_Service_Compute_Resource_TargetTcpProxies extends Google_Service_Resource -{ - /** - * Deletes the specified TargetTcpProxy resource. (targetTcpProxies.delete) - * - * @param string $project Project ID for this request. - * @param string $targetTcpProxy Name of the TargetTcpProxy resource to delete. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function delete($project, $targetTcpProxy, $optParams = array()) - { - $params = array('project' => $project, 'targetTcpProxy' => $targetTcpProxy); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns the specified TargetTcpProxy resource. Gets a list of available - * target TCP proxies by making a list() request. (targetTcpProxies.get) - * - * @param string $project Project ID for this request. - * @param string $targetTcpProxy Name of the TargetTcpProxy resource to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_TargetTcpProxy - */ - public function get($project, $targetTcpProxy, $optParams = array()) - { - $params = array('project' => $project, 'targetTcpProxy' => $targetTcpProxy); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_TargetTcpProxy"); - } - /** - * Creates a TargetTcpProxy resource in the specified project using the data - * included in the request. (targetTcpProxies.insert) - * - * @param string $project Project ID for this request. - * @param Google_Service_Compute_TargetTcpProxy $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function insert($project, Google_Service_Compute_TargetTcpProxy $postBody, $optParams = array()) - { - $params = array('project' => $project, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves the list of TargetTcpProxy resources available to the specified - * project. (targetTcpProxies.listTargetTcpProxies) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_TargetTcpProxyList - */ - public function listTargetTcpProxies($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_TargetTcpProxyList"); - } - /** - * Changes the BackendService for TargetTcpProxy. - * (targetTcpProxies.setBackendService) - * - * @param string $project Project ID for this request. - * @param string $targetTcpProxy Name of the TargetTcpProxy resource whose - * BackendService resource is to be set. - * @param Google_Service_Compute_TargetTcpProxiesSetBackendServiceRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function setBackendService($project, $targetTcpProxy, Google_Service_Compute_TargetTcpProxiesSetBackendServiceRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'targetTcpProxy' => $targetTcpProxy, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setBackendService', array($params), "Google_Service_Compute_Operation"); - } - /** - * Changes the ProxyHeaderType for TargetTcpProxy. - * (targetTcpProxies.setProxyHeader) - * - * @param string $project Project ID for this request. - * @param string $targetTcpProxy Name of the TargetTcpProxy resource whose - * ProxyHeader is to be set. - * @param Google_Service_Compute_TargetTcpProxiesSetProxyHeaderRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function setProxyHeader($project, $targetTcpProxy, Google_Service_Compute_TargetTcpProxiesSetProxyHeaderRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'targetTcpProxy' => $targetTcpProxy, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setProxyHeader', array($params), "Google_Service_Compute_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/TargetVpnGateways.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/TargetVpnGateways.php deleted file mode 100644 index ae3a242f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/TargetVpnGateways.php +++ /dev/null @@ -1,208 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $targetVpnGateways = $computeService->targetVpnGateways; - * - */ -class Google_Service_Compute_Resource_TargetVpnGateways extends Google_Service_Resource -{ - /** - * Retrieves an aggregated list of target VPN gateways. - * (targetVpnGateways.aggregatedList) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_TargetVpnGatewayAggregatedList - */ - public function aggregatedList($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('aggregatedList', array($params), "Google_Service_Compute_TargetVpnGatewayAggregatedList"); - } - /** - * Deletes the specified target VPN gateway. (targetVpnGateways.delete) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region for this request. - * @param string $targetVpnGateway Name of the target VPN gateway to delete. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function delete($project, $region, $targetVpnGateway, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'targetVpnGateway' => $targetVpnGateway); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns the specified target VPN gateway. Gets a list of available target VPN - * gateways by making a list() request. (targetVpnGateways.get) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region for this request. - * @param string $targetVpnGateway Name of the target VPN gateway to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_TargetVpnGateway - */ - public function get($project, $region, $targetVpnGateway, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'targetVpnGateway' => $targetVpnGateway); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_TargetVpnGateway"); - } - /** - * Creates a target VPN gateway in the specified project and region using the - * data included in the request. (targetVpnGateways.insert) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region for this request. - * @param Google_Service_Compute_TargetVpnGateway $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function insert($project, $region, Google_Service_Compute_TargetVpnGateway $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves a list of target VPN gateways available to the specified project - * and region. (targetVpnGateways.listTargetVpnGateways) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_TargetVpnGatewayList - */ - public function listTargetVpnGateways($project, $region, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_TargetVpnGatewayList"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/UrlMaps.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/UrlMaps.php deleted file mode 100644 index 35d53c4d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/UrlMaps.php +++ /dev/null @@ -1,309 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $urlMaps = $computeService->urlMaps; - * - */ -class Google_Service_Compute_Resource_UrlMaps extends Google_Service_Resource -{ - /** - * Retrieves the list of all UrlMap resources, regional and global, available to - * the specified project. (urlMaps.aggregatedList) - * - * @param string $project Name of the project scoping this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_UrlMapsAggregatedList - */ - public function aggregatedList($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('aggregatedList', array($params), "Google_Service_Compute_UrlMapsAggregatedList"); - } - /** - * Deletes the specified UrlMap resource. (urlMaps.delete) - * - * @param string $project Project ID for this request. - * @param string $urlMap Name of the UrlMap resource to delete. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function delete($project, $urlMap, $optParams = array()) - { - $params = array('project' => $project, 'urlMap' => $urlMap); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns the specified UrlMap resource. Gets a list of available URL maps by - * making a list() request. (urlMaps.get) - * - * @param string $project Project ID for this request. - * @param string $urlMap Name of the UrlMap resource to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_UrlMap - */ - public function get($project, $urlMap, $optParams = array()) - { - $params = array('project' => $project, 'urlMap' => $urlMap); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_UrlMap"); - } - /** - * Creates a UrlMap resource in the specified project using the data included in - * the request. (urlMaps.insert) - * - * @param string $project Project ID for this request. - * @param Google_Service_Compute_UrlMap $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function insert($project, Google_Service_Compute_UrlMap $postBody, $optParams = array()) - { - $params = array('project' => $project, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Compute_Operation"); - } - /** - * Initiates a cache invalidation operation, invalidating the specified path, - * scoped to the specified UrlMap. (urlMaps.invalidateCache) - * - * @param string $project Project ID for this request. - * @param string $urlMap Name of the UrlMap scoping this request. - * @param Google_Service_Compute_CacheInvalidationRule $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function invalidateCache($project, $urlMap, Google_Service_Compute_CacheInvalidationRule $postBody, $optParams = array()) - { - $params = array('project' => $project, 'urlMap' => $urlMap, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('invalidateCache', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves the list of UrlMap resources available to the specified project. - * (urlMaps.listUrlMaps) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_UrlMapList - */ - public function listUrlMaps($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_UrlMapList"); - } - /** - * Patches the specified UrlMap resource with the data included in the request. - * This method supports PATCH semantics and uses the JSON merge patch format and - * processing rules. (urlMaps.patch) - * - * @param string $project Project ID for this request. - * @param string $urlMap Name of the UrlMap resource to patch. - * @param Google_Service_Compute_UrlMap $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function patch($project, $urlMap, Google_Service_Compute_UrlMap $postBody, $optParams = array()) - { - $params = array('project' => $project, 'urlMap' => $urlMap, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Compute_Operation"); - } - /** - * Updates the specified UrlMap resource with the data included in the request. - * (urlMaps.update) - * - * @param string $project Project ID for this request. - * @param string $urlMap Name of the UrlMap resource to update. - * @param Google_Service_Compute_UrlMap $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function update($project, $urlMap, Google_Service_Compute_UrlMap $postBody, $optParams = array()) - { - $params = array('project' => $project, 'urlMap' => $urlMap, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Compute_Operation"); - } - /** - * Runs static validation for the UrlMap. In particular, the tests of the - * provided UrlMap will be run. Calling this method does NOT create the UrlMap. - * (urlMaps.validate) - * - * @param string $project Project ID for this request. - * @param string $urlMap Name of the UrlMap resource to be validated as. - * @param Google_Service_Compute_UrlMapsValidateRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_UrlMapsValidateResponse - */ - public function validate($project, $urlMap, Google_Service_Compute_UrlMapsValidateRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'urlMap' => $urlMap, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('validate', array($params), "Google_Service_Compute_UrlMapsValidateResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/VpnGateways.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/VpnGateways.php deleted file mode 100644 index b710b71b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/VpnGateways.php +++ /dev/null @@ -1,269 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $vpnGateways = $computeService->vpnGateways; - * - */ -class Google_Service_Compute_Resource_VpnGateways extends Google_Service_Resource -{ - /** - * Retrieves an aggregated list of VPN gateways. (vpnGateways.aggregatedList) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_VpnGatewayAggregatedList - */ - public function aggregatedList($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('aggregatedList', array($params), "Google_Service_Compute_VpnGatewayAggregatedList"); - } - /** - * Deletes the specified VPN gateway. (vpnGateways.delete) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region for this request. - * @param string $vpnGateway Name of the VPN gateway to delete. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function delete($project, $region, $vpnGateway, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'vpnGateway' => $vpnGateway); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns the specified VPN gateway. Gets a list of available VPN gateways by - * making a list() request. (vpnGateways.get) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region for this request. - * @param string $vpnGateway Name of the VPN gateway to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_VpnGateway - */ - public function get($project, $region, $vpnGateway, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'vpnGateway' => $vpnGateway); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_VpnGateway"); - } - /** - * Returns the status for the specified VPN gateway. (vpnGateways.getStatus) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region for this request. - * @param string $vpnGateway Name of the VPN gateway to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_VpnGatewaysGetStatusResponse - */ - public function getStatus($project, $region, $vpnGateway, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'vpnGateway' => $vpnGateway); - $params = array_merge($params, $optParams); - return $this->call('getStatus', array($params), "Google_Service_Compute_VpnGatewaysGetStatusResponse"); - } - /** - * Creates a VPN gateway in the specified project and region using the data - * included in the request. (vpnGateways.insert) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region for this request. - * @param Google_Service_Compute_VpnGateway $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function insert($project, $region, Google_Service_Compute_VpnGateway $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves a list of VPN gateways available to the specified project and - * region. (vpnGateways.listVpnGateways) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_VpnGatewayList - */ - public function listVpnGateways($project, $region, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_VpnGatewayList"); - } - /** - * Sets the labels on a VpnGateway. To learn more about labels, read the - * Labeling Resources documentation. (vpnGateways.setLabels) - * - * @param string $project Project ID for this request. - * @param string $region The region for this request. - * @param string $resource Name or id of the resource for this request. - * @param Google_Service_Compute_RegionSetLabelsRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function setLabels($project, $region, $resource, Google_Service_Compute_RegionSetLabelsRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setLabels', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns permissions that a caller has on the specified resource. - * (vpnGateways.testIamPermissions) - * - * @param string $project Project ID for this request. - * @param string $region The name of the region for this request. - * @param string $resource Name or id of the resource for this request. - * @param Google_Service_Compute_TestPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_TestPermissionsResponse - */ - public function testIamPermissions($project, $region, $resource, Google_Service_Compute_TestPermissionsRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_Compute_TestPermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/VpnTunnels.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/VpnTunnels.php deleted file mode 100644 index 375acde7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/VpnTunnels.php +++ /dev/null @@ -1,207 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $vpnTunnels = $computeService->vpnTunnels; - * - */ -class Google_Service_Compute_Resource_VpnTunnels extends Google_Service_Resource -{ - /** - * Retrieves an aggregated list of VPN tunnels. (vpnTunnels.aggregatedList) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_VpnTunnelAggregatedList - */ - public function aggregatedList($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('aggregatedList', array($params), "Google_Service_Compute_VpnTunnelAggregatedList"); - } - /** - * Deletes the specified VpnTunnel resource. (vpnTunnels.delete) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region for this request. - * @param string $vpnTunnel Name of the VpnTunnel resource to delete. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function delete($project, $region, $vpnTunnel, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'vpnTunnel' => $vpnTunnel); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Compute_Operation"); - } - /** - * Returns the specified VpnTunnel resource. Gets a list of available VPN - * tunnels by making a list() request. (vpnTunnels.get) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region for this request. - * @param string $vpnTunnel Name of the VpnTunnel resource to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_VpnTunnel - */ - public function get($project, $region, $vpnTunnel, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'vpnTunnel' => $vpnTunnel); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_VpnTunnel"); - } - /** - * Creates a VpnTunnel resource in the specified project and region using the - * data included in the request. (vpnTunnels.insert) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region for this request. - * @param Google_Service_Compute_VpnTunnel $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId An optional request ID to identify requests. - * Specify a unique request ID so that if you must retry your request, the - * server will know to ignore the request if it has already been completed. - * - * For example, consider a situation where you make an initial request and the - * request times out. If you make the request again with the same request ID, - * the server can check if original operation with the same request ID was - * received, and if so, will ignore the second request. This prevents clients - * from accidentally creating duplicate commitments. - * - * The request ID must be a valid UUID with the exception that zero UUID is not - * supported (00000000-0000-0000-0000-000000000000). - * @return Google_Service_Compute_Operation - */ - public function insert($project, $region, Google_Service_Compute_VpnTunnel $postBody, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves a list of VpnTunnel resources contained in the specified project - * and region. (vpnTunnels.listVpnTunnels) - * - * @param string $project Project ID for this request. - * @param string $region Name of the region for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_VpnTunnelList - */ - public function listVpnTunnels($project, $region, $optParams = array()) - { - $params = array('project' => $project, 'region' => $region); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_VpnTunnelList"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/ZoneOperations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/ZoneOperations.php deleted file mode 100644 index d7dad06f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/ZoneOperations.php +++ /dev/null @@ -1,139 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $zoneOperations = $computeService->zoneOperations; - * - */ -class Google_Service_Compute_Resource_ZoneOperations extends Google_Service_Resource -{ - /** - * Deletes the specified zone-specific Operations resource. - * (zoneOperations.delete) - * - * @param string $project Project ID for this request. - * @param string $zone Name of the zone for this request. - * @param string $operation Name of the Operations resource to delete. - * @param array $optParams Optional parameters. - */ - public function delete($project, $zone, $operation, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'operation' => $operation); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Retrieves the specified zone-specific Operations resource. - * (zoneOperations.get) - * - * @param string $project Project ID for this request. - * @param string $zone Name of the zone for this request. - * @param string $operation Name of the Operations resource to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Operation - */ - public function get($project, $zone, $operation, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'operation' => $operation); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_Operation"); - } - /** - * Retrieves a list of Operation resources contained within the specified zone. - * (zoneOperations.listZoneOperations) - * - * @param string $project Project ID for this request. - * @param string $zone Name of the zone for request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_OperationList - */ - public function listZoneOperations($project, $zone, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_OperationList"); - } - /** - * Waits for the specified Operation resource to return as DONE or for the - * request to approach the 2 minute deadline, and retrieves the specified - * Operation resource. This method differs from the GET method in that it waits - * for no more than the default deadline (2 minutes) and then returns the - * current state of the operation, which might be DONE or still in progress. - * - * This method is called on a best-effort basis. Specifically: - In uncommon - * cases, when the server is overloaded, the request might return before the - * default deadline is reached, or might return after zero seconds. - If the - * default deadline is reached, there is no guarantee that the operation is - * actually done when the method returns. Be prepared to retry if the operation - * is not DONE. (zoneOperations.wait) - * - * @param string $project Project ID for this request. - * @param string $zone Name of the zone for this request. - * @param string $operation Name of the Operations resource to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Operation - */ - public function wait($project, $zone, $operation, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'operation' => $operation); - $params = array_merge($params, $optParams); - return $this->call('wait', array($params), "Google_Service_Compute_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/Zones.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/Zones.php deleted file mode 100644 index b4b61f8d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Resource/Zones.php +++ /dev/null @@ -1,96 +0,0 @@ - - * $computeService = new Google_Service_Compute(...); - * $zones = $computeService->zones; - * - */ -class Google_Service_Compute_Resource_Zones extends Google_Service_Resource -{ - /** - * Returns the specified Zone resource. Gets a list of available zones by making - * a list() request. (zones.get) - * - * @param string $project Project ID for this request. - * @param string $zone Name of the zone resource to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Compute_Zone - */ - public function get($project, $zone, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Compute_Zone"); - } - /** - * Retrieves the list of Zone resources available to the specified project. - * (zones.listZones) - * - * @param string $project Project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_Compute_ZoneList - */ - public function listZones($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Compute_ZoneList"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourceCommitment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourceCommitment.php deleted file mode 100644 index af186f34..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourceCommitment.php +++ /dev/null @@ -1,48 +0,0 @@ -acceleratorType = $acceleratorType; - } - public function getAcceleratorType() - { - return $this->acceleratorType; - } - public function setAmount($amount) - { - $this->amount = $amount; - } - public function getAmount() - { - return $this->amount; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourceGroupReference.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourceGroupReference.php deleted file mode 100644 index 67cb61e3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourceGroupReference.php +++ /dev/null @@ -1,30 +0,0 @@ -group = $group; - } - public function getGroup() - { - return $this->group; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourcePoliciesScopedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourcePoliciesScopedList.php deleted file mode 100644 index f9fdaa73..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourcePoliciesScopedList.php +++ /dev/null @@ -1,54 +0,0 @@ -resourcePolicies = $resourcePolicies; - } - /** - * @return Google_Service_Compute_ResourcePolicy - */ - public function getResourcePolicies() - { - return $this->resourcePolicies; - } - /** - * @param Google_Service_Compute_ResourcePoliciesScopedListWarning - */ - public function setWarning(Google_Service_Compute_ResourcePoliciesScopedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_ResourcePoliciesScopedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourcePoliciesScopedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourcePoliciesScopedListWarning.php deleted file mode 100644 index a174e1e7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourcePoliciesScopedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_ResourcePoliciesScopedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_ResourcePoliciesScopedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourcePoliciesScopedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourcePoliciesScopedListWarningData.php deleted file mode 100644 index 092af167..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourcePoliciesScopedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourcePolicy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourcePolicy.php deleted file mode 100644 index c6f43c1e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourcePolicy.php +++ /dev/null @@ -1,109 +0,0 @@ -creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_ResourcePolicySnapshotSchedulePolicy - */ - public function setSnapshotSchedulePolicy(Google_Service_Compute_ResourcePolicySnapshotSchedulePolicy $snapshotSchedulePolicy) - { - $this->snapshotSchedulePolicy = $snapshotSchedulePolicy; - } - /** - * @return Google_Service_Compute_ResourcePolicySnapshotSchedulePolicy - */ - public function getSnapshotSchedulePolicy() - { - return $this->snapshotSchedulePolicy; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourcePolicyAggregatedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourcePolicyAggregatedList.php deleted file mode 100644 index ff6374a2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourcePolicyAggregatedList.php +++ /dev/null @@ -1,98 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_ResourcePoliciesScopedList - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_ResourcePoliciesScopedList - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_ResourcePolicyAggregatedListWarning - */ - public function setWarning(Google_Service_Compute_ResourcePolicyAggregatedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_ResourcePolicyAggregatedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourcePolicyAggregatedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourcePolicyAggregatedListWarning.php deleted file mode 100644 index a8a8a7f0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourcePolicyAggregatedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_ResourcePolicyAggregatedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_ResourcePolicyAggregatedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourcePolicyAggregatedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourcePolicyAggregatedListWarningData.php deleted file mode 100644 index bb702aa1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourcePolicyAggregatedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourcePolicyDailyCycle.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourcePolicyDailyCycle.php deleted file mode 100644 index fafbeff8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourcePolicyDailyCycle.php +++ /dev/null @@ -1,48 +0,0 @@ -daysInCycle = $daysInCycle; - } - public function getDaysInCycle() - { - return $this->daysInCycle; - } - public function setDuration($duration) - { - $this->duration = $duration; - } - public function getDuration() - { - return $this->duration; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourcePolicyHourlyCycle.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourcePolicyHourlyCycle.php deleted file mode 100644 index d657f0e1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourcePolicyHourlyCycle.php +++ /dev/null @@ -1,48 +0,0 @@ -duration = $duration; - } - public function getDuration() - { - return $this->duration; - } - public function setHoursInCycle($hoursInCycle) - { - $this->hoursInCycle = $hoursInCycle; - } - public function getHoursInCycle() - { - return $this->hoursInCycle; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourcePolicyList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourcePolicyList.php deleted file mode 100644 index a97f5dc2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourcePolicyList.php +++ /dev/null @@ -1,99 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_ResourcePolicy - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_ResourcePolicy - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_ResourcePolicyListWarning - */ - public function setWarning(Google_Service_Compute_ResourcePolicyListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_ResourcePolicyListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourcePolicyListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourcePolicyListWarning.php deleted file mode 100644 index 2959448e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourcePolicyListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_ResourcePolicyListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_ResourcePolicyListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourcePolicyListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourcePolicyListWarningData.php deleted file mode 100644 index eb59844d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourcePolicyListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourcePolicySnapshotSchedulePolicy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourcePolicySnapshotSchedulePolicy.php deleted file mode 100644 index 34d9de14..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourcePolicySnapshotSchedulePolicy.php +++ /dev/null @@ -1,69 +0,0 @@ -retentionPolicy = $retentionPolicy; - } - /** - * @return Google_Service_Compute_ResourcePolicySnapshotSchedulePolicyRetentionPolicy - */ - public function getRetentionPolicy() - { - return $this->retentionPolicy; - } - /** - * @param Google_Service_Compute_ResourcePolicySnapshotSchedulePolicySchedule - */ - public function setSchedule(Google_Service_Compute_ResourcePolicySnapshotSchedulePolicySchedule $schedule) - { - $this->schedule = $schedule; - } - /** - * @return Google_Service_Compute_ResourcePolicySnapshotSchedulePolicySchedule - */ - public function getSchedule() - { - return $this->schedule; - } - /** - * @param Google_Service_Compute_ResourcePolicySnapshotSchedulePolicySnapshotProperties - */ - public function setSnapshotProperties(Google_Service_Compute_ResourcePolicySnapshotSchedulePolicySnapshotProperties $snapshotProperties) - { - $this->snapshotProperties = $snapshotProperties; - } - /** - * @return Google_Service_Compute_ResourcePolicySnapshotSchedulePolicySnapshotProperties - */ - public function getSnapshotProperties() - { - return $this->snapshotProperties; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourcePolicySnapshotSchedulePolicyRetentionPolicy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourcePolicySnapshotSchedulePolicyRetentionPolicy.php deleted file mode 100644 index 7fa2fad9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourcePolicySnapshotSchedulePolicyRetentionPolicy.php +++ /dev/null @@ -1,39 +0,0 @@ -maxRetentionDays = $maxRetentionDays; - } - public function getMaxRetentionDays() - { - return $this->maxRetentionDays; - } - public function setOnSourceDiskDelete($onSourceDiskDelete) - { - $this->onSourceDiskDelete = $onSourceDiskDelete; - } - public function getOnSourceDiskDelete() - { - return $this->onSourceDiskDelete; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourcePolicySnapshotSchedulePolicySchedule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourcePolicySnapshotSchedulePolicySchedule.php deleted file mode 100644 index 30bfffd2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourcePolicySnapshotSchedulePolicySchedule.php +++ /dev/null @@ -1,69 +0,0 @@ -dailySchedule = $dailySchedule; - } - /** - * @return Google_Service_Compute_ResourcePolicyDailyCycle - */ - public function getDailySchedule() - { - return $this->dailySchedule; - } - /** - * @param Google_Service_Compute_ResourcePolicyHourlyCycle - */ - public function setHourlySchedule(Google_Service_Compute_ResourcePolicyHourlyCycle $hourlySchedule) - { - $this->hourlySchedule = $hourlySchedule; - } - /** - * @return Google_Service_Compute_ResourcePolicyHourlyCycle - */ - public function getHourlySchedule() - { - return $this->hourlySchedule; - } - /** - * @param Google_Service_Compute_ResourcePolicyWeeklyCycle - */ - public function setWeeklySchedule(Google_Service_Compute_ResourcePolicyWeeklyCycle $weeklySchedule) - { - $this->weeklySchedule = $weeklySchedule; - } - /** - * @return Google_Service_Compute_ResourcePolicyWeeklyCycle - */ - public function getWeeklySchedule() - { - return $this->weeklySchedule; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourcePolicySnapshotSchedulePolicySnapshotProperties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourcePolicySnapshotSchedulePolicySnapshotProperties.php deleted file mode 100644 index bb848ffd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourcePolicySnapshotSchedulePolicySnapshotProperties.php +++ /dev/null @@ -1,49 +0,0 @@ -guestFlush = $guestFlush; - } - public function getGuestFlush() - { - return $this->guestFlush; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setStorageLocations($storageLocations) - { - $this->storageLocations = $storageLocations; - } - public function getStorageLocations() - { - return $this->storageLocations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourcePolicyWeeklyCycle.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourcePolicyWeeklyCycle.php deleted file mode 100644 index 83875f8c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourcePolicyWeeklyCycle.php +++ /dev/null @@ -1,38 +0,0 @@ -dayOfWeeks = $dayOfWeeks; - } - /** - * @return Google_Service_Compute_ResourcePolicyWeeklyCycleDayOfWeek - */ - public function getDayOfWeeks() - { - return $this->dayOfWeeks; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourcePolicyWeeklyCycleDayOfWeek.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourcePolicyWeeklyCycleDayOfWeek.php deleted file mode 100644 index 0b239dc6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ResourcePolicyWeeklyCycleDayOfWeek.php +++ /dev/null @@ -1,48 +0,0 @@ -day = $day; - } - public function getDay() - { - return $this->day; - } - public function setDuration($duration) - { - $this->duration = $duration; - } - public function getDuration() - { - return $this->duration; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Route.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Route.php deleted file mode 100644 index 006344a9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Route.php +++ /dev/null @@ -1,191 +0,0 @@ -creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDestRange($destRange) - { - $this->destRange = $destRange; - } - public function getDestRange() - { - return $this->destRange; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNetwork($network) - { - $this->network = $network; - } - public function getNetwork() - { - return $this->network; - } - public function setNextHopGateway($nextHopGateway) - { - $this->nextHopGateway = $nextHopGateway; - } - public function getNextHopGateway() - { - return $this->nextHopGateway; - } - public function setNextHopIlb($nextHopIlb) - { - $this->nextHopIlb = $nextHopIlb; - } - public function getNextHopIlb() - { - return $this->nextHopIlb; - } - public function setNextHopInstance($nextHopInstance) - { - $this->nextHopInstance = $nextHopInstance; - } - public function getNextHopInstance() - { - return $this->nextHopInstance; - } - public function setNextHopIp($nextHopIp) - { - $this->nextHopIp = $nextHopIp; - } - public function getNextHopIp() - { - return $this->nextHopIp; - } - public function setNextHopNetwork($nextHopNetwork) - { - $this->nextHopNetwork = $nextHopNetwork; - } - public function getNextHopNetwork() - { - return $this->nextHopNetwork; - } - public function setNextHopPeering($nextHopPeering) - { - $this->nextHopPeering = $nextHopPeering; - } - public function getNextHopPeering() - { - return $this->nextHopPeering; - } - public function setNextHopVpnTunnel($nextHopVpnTunnel) - { - $this->nextHopVpnTunnel = $nextHopVpnTunnel; - } - public function getNextHopVpnTunnel() - { - return $this->nextHopVpnTunnel; - } - public function setPriority($priority) - { - $this->priority = $priority; - } - public function getPriority() - { - return $this->priority; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setTags($tags) - { - $this->tags = $tags; - } - public function getTags() - { - return $this->tags; - } - /** - * @param Google_Service_Compute_RouteWarnings - */ - public function setWarnings($warnings) - { - $this->warnings = $warnings; - } - /** - * @return Google_Service_Compute_RouteWarnings - */ - public function getWarnings() - { - return $this->warnings; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouteList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouteList.php deleted file mode 100644 index 92d32d15..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouteList.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_Route - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_Route - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_RouteListWarning - */ - public function setWarning(Google_Service_Compute_RouteListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_RouteListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouteListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouteListWarning.php deleted file mode 100644 index 9c1bf3e0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouteListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_RouteListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_RouteListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouteListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouteListWarningData.php deleted file mode 100644 index ea474686..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouteListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouteWarnings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouteWarnings.php deleted file mode 100644 index 3cfd15a2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouteWarnings.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_RouteWarningsData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_RouteWarningsData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouteWarningsData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouteWarningsData.php deleted file mode 100644 index af28845f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouteWarningsData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Router.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Router.php deleted file mode 100644 index 96ec068d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Router.php +++ /dev/null @@ -1,158 +0,0 @@ -bgp = $bgp; - } - /** - * @return Google_Service_Compute_RouterBgp - */ - public function getBgp() - { - return $this->bgp; - } - /** - * @param Google_Service_Compute_RouterBgpPeer - */ - public function setBgpPeers($bgpPeers) - { - $this->bgpPeers = $bgpPeers; - } - /** - * @return Google_Service_Compute_RouterBgpPeer - */ - public function getBgpPeers() - { - return $this->bgpPeers; - } - public function setCreationTimestamp($creationTimestamp) - { - $this->creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_RouterInterface - */ - public function setInterfaces($interfaces) - { - $this->interfaces = $interfaces; - } - /** - * @return Google_Service_Compute_RouterInterface - */ - public function getInterfaces() - { - return $this->interfaces; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Compute_RouterNat - */ - public function setNats($nats) - { - $this->nats = $nats; - } - /** - * @return Google_Service_Compute_RouterNat - */ - public function getNats() - { - return $this->nats; - } - public function setNetwork($network) - { - $this->network = $network; - } - public function getNetwork() - { - return $this->network; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouterAdvertisedIpRange.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouterAdvertisedIpRange.php deleted file mode 100644 index f85fe43b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouterAdvertisedIpRange.php +++ /dev/null @@ -1,39 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setRange($range) - { - $this->range = $range; - } - public function getRange() - { - return $this->range; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouterAggregatedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouterAggregatedList.php deleted file mode 100644 index d277eeab..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouterAggregatedList.php +++ /dev/null @@ -1,89 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_RoutersScopedList - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_RoutersScopedList - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_RouterAggregatedListWarning - */ - public function setWarning(Google_Service_Compute_RouterAggregatedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_RouterAggregatedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouterAggregatedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouterAggregatedListWarning.php deleted file mode 100644 index b9739164..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouterAggregatedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_RouterAggregatedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_RouterAggregatedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouterAggregatedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouterAggregatedListWarningData.php deleted file mode 100644 index e0ead888..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouterAggregatedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouterBgp.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouterBgp.php deleted file mode 100644 index 7c181d2a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouterBgp.php +++ /dev/null @@ -1,65 +0,0 @@ -advertiseMode = $advertiseMode; - } - public function getAdvertiseMode() - { - return $this->advertiseMode; - } - public function setAdvertisedGroups($advertisedGroups) - { - $this->advertisedGroups = $advertisedGroups; - } - public function getAdvertisedGroups() - { - return $this->advertisedGroups; - } - /** - * @param Google_Service_Compute_RouterAdvertisedIpRange - */ - public function setAdvertisedIpRanges($advertisedIpRanges) - { - $this->advertisedIpRanges = $advertisedIpRanges; - } - /** - * @return Google_Service_Compute_RouterAdvertisedIpRange - */ - public function getAdvertisedIpRanges() - { - return $this->advertisedIpRanges; - } - public function setAsn($asn) - { - $this->asn = $asn; - } - public function getAsn() - { - return $this->asn; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouterBgpPeer.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouterBgpPeer.php deleted file mode 100644 index e4d71cc0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouterBgpPeer.php +++ /dev/null @@ -1,119 +0,0 @@ -advertiseMode = $advertiseMode; - } - public function getAdvertiseMode() - { - return $this->advertiseMode; - } - public function setAdvertisedGroups($advertisedGroups) - { - $this->advertisedGroups = $advertisedGroups; - } - public function getAdvertisedGroups() - { - return $this->advertisedGroups; - } - /** - * @param Google_Service_Compute_RouterAdvertisedIpRange - */ - public function setAdvertisedIpRanges($advertisedIpRanges) - { - $this->advertisedIpRanges = $advertisedIpRanges; - } - /** - * @return Google_Service_Compute_RouterAdvertisedIpRange - */ - public function getAdvertisedIpRanges() - { - return $this->advertisedIpRanges; - } - public function setAdvertisedRoutePriority($advertisedRoutePriority) - { - $this->advertisedRoutePriority = $advertisedRoutePriority; - } - public function getAdvertisedRoutePriority() - { - return $this->advertisedRoutePriority; - } - public function setInterfaceName($interfaceName) - { - $this->interfaceName = $interfaceName; - } - public function getInterfaceName() - { - return $this->interfaceName; - } - public function setIpAddress($ipAddress) - { - $this->ipAddress = $ipAddress; - } - public function getIpAddress() - { - return $this->ipAddress; - } - public function setManagementType($managementType) - { - $this->managementType = $managementType; - } - public function getManagementType() - { - return $this->managementType; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPeerAsn($peerAsn) - { - $this->peerAsn = $peerAsn; - } - public function getPeerAsn() - { - return $this->peerAsn; - } - public function setPeerIpAddress($peerIpAddress) - { - $this->peerIpAddress = $peerIpAddress; - } - public function getPeerIpAddress() - { - return $this->peerIpAddress; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouterInterface.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouterInterface.php deleted file mode 100644 index d39f8d4c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouterInterface.php +++ /dev/null @@ -1,66 +0,0 @@ -ipRange = $ipRange; - } - public function getIpRange() - { - return $this->ipRange; - } - public function setLinkedInterconnectAttachment($linkedInterconnectAttachment) - { - $this->linkedInterconnectAttachment = $linkedInterconnectAttachment; - } - public function getLinkedInterconnectAttachment() - { - return $this->linkedInterconnectAttachment; - } - public function setLinkedVpnTunnel($linkedVpnTunnel) - { - $this->linkedVpnTunnel = $linkedVpnTunnel; - } - public function getLinkedVpnTunnel() - { - return $this->linkedVpnTunnel; - } - public function setManagementType($managementType) - { - $this->managementType = $managementType; - } - public function getManagementType() - { - return $this->managementType; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouterList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouterList.php deleted file mode 100644 index 28e49ad4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouterList.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_Router - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_Router - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_RouterListWarning - */ - public function setWarning(Google_Service_Compute_RouterListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_RouterListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouterListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouterListWarning.php deleted file mode 100644 index db19edee..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouterListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_RouterListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_RouterListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouterListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouterListWarningData.php deleted file mode 100644 index 1994f721..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouterListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouterNat.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouterNat.php deleted file mode 100644 index d005fe8f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouterNat.php +++ /dev/null @@ -1,144 +0,0 @@ -drainNatIps = $drainNatIps; - } - public function getDrainNatIps() - { - return $this->drainNatIps; - } - public function setIcmpIdleTimeoutSec($icmpIdleTimeoutSec) - { - $this->icmpIdleTimeoutSec = $icmpIdleTimeoutSec; - } - public function getIcmpIdleTimeoutSec() - { - return $this->icmpIdleTimeoutSec; - } - /** - * @param Google_Service_Compute_RouterNatLogConfig - */ - public function setLogConfig(Google_Service_Compute_RouterNatLogConfig $logConfig) - { - $this->logConfig = $logConfig; - } - /** - * @return Google_Service_Compute_RouterNatLogConfig - */ - public function getLogConfig() - { - return $this->logConfig; - } - public function setMinPortsPerVm($minPortsPerVm) - { - $this->minPortsPerVm = $minPortsPerVm; - } - public function getMinPortsPerVm() - { - return $this->minPortsPerVm; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNatIpAllocateOption($natIpAllocateOption) - { - $this->natIpAllocateOption = $natIpAllocateOption; - } - public function getNatIpAllocateOption() - { - return $this->natIpAllocateOption; - } - public function setNatIps($natIps) - { - $this->natIps = $natIps; - } - public function getNatIps() - { - return $this->natIps; - } - public function setSourceSubnetworkIpRangesToNat($sourceSubnetworkIpRangesToNat) - { - $this->sourceSubnetworkIpRangesToNat = $sourceSubnetworkIpRangesToNat; - } - public function getSourceSubnetworkIpRangesToNat() - { - return $this->sourceSubnetworkIpRangesToNat; - } - /** - * @param Google_Service_Compute_RouterNatSubnetworkToNat - */ - public function setSubnetworks($subnetworks) - { - $this->subnetworks = $subnetworks; - } - /** - * @return Google_Service_Compute_RouterNatSubnetworkToNat - */ - public function getSubnetworks() - { - return $this->subnetworks; - } - public function setTcpEstablishedIdleTimeoutSec($tcpEstablishedIdleTimeoutSec) - { - $this->tcpEstablishedIdleTimeoutSec = $tcpEstablishedIdleTimeoutSec; - } - public function getTcpEstablishedIdleTimeoutSec() - { - return $this->tcpEstablishedIdleTimeoutSec; - } - public function setTcpTransitoryIdleTimeoutSec($tcpTransitoryIdleTimeoutSec) - { - $this->tcpTransitoryIdleTimeoutSec = $tcpTransitoryIdleTimeoutSec; - } - public function getTcpTransitoryIdleTimeoutSec() - { - return $this->tcpTransitoryIdleTimeoutSec; - } - public function setUdpIdleTimeoutSec($udpIdleTimeoutSec) - { - $this->udpIdleTimeoutSec = $udpIdleTimeoutSec; - } - public function getUdpIdleTimeoutSec() - { - return $this->udpIdleTimeoutSec; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouterNatLogConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouterNatLogConfig.php deleted file mode 100644 index 17d1d0a8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouterNatLogConfig.php +++ /dev/null @@ -1,39 +0,0 @@ -enable = $enable; - } - public function getEnable() - { - return $this->enable; - } - public function setFilter($filter) - { - $this->filter = $filter; - } - public function getFilter() - { - return $this->filter; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouterNatSubnetworkToNat.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouterNatSubnetworkToNat.php deleted file mode 100644 index e9de8a88..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouterNatSubnetworkToNat.php +++ /dev/null @@ -1,49 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setSecondaryIpRangeNames($secondaryIpRangeNames) - { - $this->secondaryIpRangeNames = $secondaryIpRangeNames; - } - public function getSecondaryIpRangeNames() - { - return $this->secondaryIpRangeNames; - } - public function setSourceIpRangesToNat($sourceIpRangesToNat) - { - $this->sourceIpRangesToNat = $sourceIpRangesToNat; - } - public function getSourceIpRangesToNat() - { - return $this->sourceIpRangesToNat; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouterStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouterStatus.php deleted file mode 100644 index b8d62ef1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouterStatus.php +++ /dev/null @@ -1,95 +0,0 @@ -bestRoutes = $bestRoutes; - } - /** - * @return Google_Service_Compute_Route - */ - public function getBestRoutes() - { - return $this->bestRoutes; - } - /** - * @param Google_Service_Compute_Route - */ - public function setBestRoutesForRouter($bestRoutesForRouter) - { - $this->bestRoutesForRouter = $bestRoutesForRouter; - } - /** - * @return Google_Service_Compute_Route - */ - public function getBestRoutesForRouter() - { - return $this->bestRoutesForRouter; - } - /** - * @param Google_Service_Compute_RouterStatusBgpPeerStatus - */ - public function setBgpPeerStatus($bgpPeerStatus) - { - $this->bgpPeerStatus = $bgpPeerStatus; - } - /** - * @return Google_Service_Compute_RouterStatusBgpPeerStatus - */ - public function getBgpPeerStatus() - { - return $this->bgpPeerStatus; - } - /** - * @param Google_Service_Compute_RouterStatusNatStatus - */ - public function setNatStatus($natStatus) - { - $this->natStatus = $natStatus; - } - /** - * @return Google_Service_Compute_RouterStatusNatStatus - */ - public function getNatStatus() - { - return $this->natStatus; - } - public function setNetwork($network) - { - $this->network = $network; - } - public function getNetwork() - { - return $this->network; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouterStatusBgpPeerStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouterStatusBgpPeerStatus.php deleted file mode 100644 index 98290f8d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouterStatusBgpPeerStatus.php +++ /dev/null @@ -1,119 +0,0 @@ -advertisedRoutes = $advertisedRoutes; - } - /** - * @return Google_Service_Compute_Route - */ - public function getAdvertisedRoutes() - { - return $this->advertisedRoutes; - } - public function setIpAddress($ipAddress) - { - $this->ipAddress = $ipAddress; - } - public function getIpAddress() - { - return $this->ipAddress; - } - public function setLinkedVpnTunnel($linkedVpnTunnel) - { - $this->linkedVpnTunnel = $linkedVpnTunnel; - } - public function getLinkedVpnTunnel() - { - return $this->linkedVpnTunnel; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNumLearnedRoutes($numLearnedRoutes) - { - $this->numLearnedRoutes = $numLearnedRoutes; - } - public function getNumLearnedRoutes() - { - return $this->numLearnedRoutes; - } - public function setPeerIpAddress($peerIpAddress) - { - $this->peerIpAddress = $peerIpAddress; - } - public function getPeerIpAddress() - { - return $this->peerIpAddress; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setUptime($uptime) - { - $this->uptime = $uptime; - } - public function getUptime() - { - return $this->uptime; - } - public function setUptimeSeconds($uptimeSeconds) - { - $this->uptimeSeconds = $uptimeSeconds; - } - public function getUptimeSeconds() - { - return $this->uptimeSeconds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouterStatusNatStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouterStatusNatStatus.php deleted file mode 100644 index 42457a49..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouterStatusNatStatus.php +++ /dev/null @@ -1,94 +0,0 @@ -autoAllocatedNatIps = $autoAllocatedNatIps; - } - public function getAutoAllocatedNatIps() - { - return $this->autoAllocatedNatIps; - } - public function setDrainAutoAllocatedNatIps($drainAutoAllocatedNatIps) - { - $this->drainAutoAllocatedNatIps = $drainAutoAllocatedNatIps; - } - public function getDrainAutoAllocatedNatIps() - { - return $this->drainAutoAllocatedNatIps; - } - public function setDrainUserAllocatedNatIps($drainUserAllocatedNatIps) - { - $this->drainUserAllocatedNatIps = $drainUserAllocatedNatIps; - } - public function getDrainUserAllocatedNatIps() - { - return $this->drainUserAllocatedNatIps; - } - public function setMinExtraNatIpsNeeded($minExtraNatIpsNeeded) - { - $this->minExtraNatIpsNeeded = $minExtraNatIpsNeeded; - } - public function getMinExtraNatIpsNeeded() - { - return $this->minExtraNatIpsNeeded; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNumVmEndpointsWithNatMappings($numVmEndpointsWithNatMappings) - { - $this->numVmEndpointsWithNatMappings = $numVmEndpointsWithNatMappings; - } - public function getNumVmEndpointsWithNatMappings() - { - return $this->numVmEndpointsWithNatMappings; - } - public function setUserAllocatedNatIpResources($userAllocatedNatIpResources) - { - $this->userAllocatedNatIpResources = $userAllocatedNatIpResources; - } - public function getUserAllocatedNatIpResources() - { - return $this->userAllocatedNatIpResources; - } - public function setUserAllocatedNatIps($userAllocatedNatIps) - { - $this->userAllocatedNatIps = $userAllocatedNatIps; - } - public function getUserAllocatedNatIps() - { - return $this->userAllocatedNatIps; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouterStatusResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouterStatusResponse.php deleted file mode 100644 index 3e99478b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RouterStatusResponse.php +++ /dev/null @@ -1,46 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Compute_RouterStatus - */ - public function setResult(Google_Service_Compute_RouterStatus $result) - { - $this->result = $result; - } - /** - * @return Google_Service_Compute_RouterStatus - */ - public function getResult() - { - return $this->result; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RoutersPreviewResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RoutersPreviewResponse.php deleted file mode 100644 index eb8d6a93..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RoutersPreviewResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -resource = $resource; - } - /** - * @return Google_Service_Compute_Router - */ - public function getResource() - { - return $this->resource; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RoutersScopedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RoutersScopedList.php deleted file mode 100644 index d5f6ed89..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RoutersScopedList.php +++ /dev/null @@ -1,54 +0,0 @@ -routers = $routers; - } - /** - * @return Google_Service_Compute_Router - */ - public function getRouters() - { - return $this->routers; - } - /** - * @param Google_Service_Compute_RoutersScopedListWarning - */ - public function setWarning(Google_Service_Compute_RoutersScopedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_RoutersScopedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RoutersScopedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RoutersScopedListWarning.php deleted file mode 100644 index bac404c6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RoutersScopedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_RoutersScopedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_RoutersScopedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RoutersScopedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RoutersScopedListWarningData.php deleted file mode 100644 index 2a340746..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/RoutersScopedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Rule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Rule.php deleted file mode 100644 index 4b9b41ab..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Rule.php +++ /dev/null @@ -1,99 +0,0 @@ -action = $action; - } - public function getAction() - { - return $this->action; - } - /** - * @param Google_Service_Compute_Condition - */ - public function setConditions($conditions) - { - $this->conditions = $conditions; - } - /** - * @return Google_Service_Compute_Condition - */ - public function getConditions() - { - return $this->conditions; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setIns($ins) - { - $this->ins = $ins; - } - public function getIns() - { - return $this->ins; - } - /** - * @param Google_Service_Compute_LogConfig - */ - public function setLogConfigs($logConfigs) - { - $this->logConfigs = $logConfigs; - } - /** - * @return Google_Service_Compute_LogConfig - */ - public function getLogConfigs() - { - return $this->logConfigs; - } - public function setNotIns($notIns) - { - $this->notIns = $notIns; - } - public function getNotIns() - { - return $this->notIns; - } - public function setPermissions($permissions) - { - $this->permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SSLHealthCheck.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SSLHealthCheck.php deleted file mode 100644 index 963fd7c5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SSLHealthCheck.php +++ /dev/null @@ -1,75 +0,0 @@ -port = $port; - } - public function getPort() - { - return $this->port; - } - public function setPortName($portName) - { - $this->portName = $portName; - } - public function getPortName() - { - return $this->portName; - } - public function setPortSpecification($portSpecification) - { - $this->portSpecification = $portSpecification; - } - public function getPortSpecification() - { - return $this->portSpecification; - } - public function setProxyHeader($proxyHeader) - { - $this->proxyHeader = $proxyHeader; - } - public function getProxyHeader() - { - return $this->proxyHeader; - } - public function setRequest($request) - { - $this->request = $request; - } - public function getRequest() - { - return $this->request; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Scheduling.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Scheduling.php deleted file mode 100644 index a08fda49..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Scheduling.php +++ /dev/null @@ -1,65 +0,0 @@ -automaticRestart = $automaticRestart; - } - public function getAutomaticRestart() - { - return $this->automaticRestart; - } - /** - * @param Google_Service_Compute_SchedulingNodeAffinity - */ - public function setNodeAffinities($nodeAffinities) - { - $this->nodeAffinities = $nodeAffinities; - } - /** - * @return Google_Service_Compute_SchedulingNodeAffinity - */ - public function getNodeAffinities() - { - return $this->nodeAffinities; - } - public function setOnHostMaintenance($onHostMaintenance) - { - $this->onHostMaintenance = $onHostMaintenance; - } - public function getOnHostMaintenance() - { - return $this->onHostMaintenance; - } - public function setPreemptible($preemptible) - { - $this->preemptible = $preemptible; - } - public function getPreemptible() - { - return $this->preemptible; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SchedulingNodeAffinity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SchedulingNodeAffinity.php deleted file mode 100644 index af793801..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SchedulingNodeAffinity.php +++ /dev/null @@ -1,49 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setOperator($operator) - { - $this->operator = $operator; - } - public function getOperator() - { - return $this->operator; - } - public function setValues($values) - { - $this->values = $values; - } - public function getValues() - { - return $this->values; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SecurityPolicy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SecurityPolicy.php deleted file mode 100644 index 1c7ed616..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SecurityPolicy.php +++ /dev/null @@ -1,101 +0,0 @@ -creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setFingerprint($fingerprint) - { - $this->fingerprint = $fingerprint; - } - public function getFingerprint() - { - return $this->fingerprint; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Compute_SecurityPolicyRule - */ - public function setRules($rules) - { - $this->rules = $rules; - } - /** - * @return Google_Service_Compute_SecurityPolicyRule - */ - public function getRules() - { - return $this->rules; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SecurityPolicyList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SecurityPolicyList.php deleted file mode 100644 index 1b5cea5d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SecurityPolicyList.php +++ /dev/null @@ -1,81 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_SecurityPolicy - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_SecurityPolicy - */ - public function getItems() - { - return $this->items; - } - 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_Compute_SecurityPolicyListWarning - */ - public function setWarning(Google_Service_Compute_SecurityPolicyListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_SecurityPolicyListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SecurityPolicyListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SecurityPolicyListWarning.php deleted file mode 100644 index e096bfd7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SecurityPolicyListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_SecurityPolicyListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_SecurityPolicyListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SecurityPolicyListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SecurityPolicyListWarningData.php deleted file mode 100644 index 47cf3c06..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SecurityPolicyListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SecurityPolicyReference.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SecurityPolicyReference.php deleted file mode 100644 index c77eb596..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SecurityPolicyReference.php +++ /dev/null @@ -1,30 +0,0 @@ -securityPolicy = $securityPolicy; - } - public function getSecurityPolicy() - { - return $this->securityPolicy; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SecurityPolicyRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SecurityPolicyRule.php deleted file mode 100644 index 508765f7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SecurityPolicyRule.php +++ /dev/null @@ -1,82 +0,0 @@ -action = $action; - } - public function getAction() - { - return $this->action; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Compute_SecurityPolicyRuleMatcher - */ - public function setMatch(Google_Service_Compute_SecurityPolicyRuleMatcher $match) - { - $this->match = $match; - } - /** - * @return Google_Service_Compute_SecurityPolicyRuleMatcher - */ - public function getMatch() - { - return $this->match; - } - public function setPreview($preview) - { - $this->preview = $preview; - } - public function getPreview() - { - return $this->preview; - } - public function setPriority($priority) - { - $this->priority = $priority; - } - public function getPriority() - { - return $this->priority; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SecurityPolicyRuleMatcher.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SecurityPolicyRuleMatcher.php deleted file mode 100644 index eb11787f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SecurityPolicyRuleMatcher.php +++ /dev/null @@ -1,46 +0,0 @@ -config = $config; - } - /** - * @return Google_Service_Compute_SecurityPolicyRuleMatcherConfig - */ - public function getConfig() - { - return $this->config; - } - public function setVersionedExpr($versionedExpr) - { - $this->versionedExpr = $versionedExpr; - } - public function getVersionedExpr() - { - return $this->versionedExpr; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SecurityPolicyRuleMatcherConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SecurityPolicyRuleMatcherConfig.php deleted file mode 100644 index 3975c37c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SecurityPolicyRuleMatcherConfig.php +++ /dev/null @@ -1,31 +0,0 @@ -srcIpRanges = $srcIpRanges; - } - public function getSrcIpRanges() - { - return $this->srcIpRanges; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SerialPortOutput.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SerialPortOutput.php deleted file mode 100644 index 2e965a38..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SerialPortOutput.php +++ /dev/null @@ -1,66 +0,0 @@ -contents = $contents; - } - public function getContents() - { - return $this->contents; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNext($next) - { - $this->next = $next; - } - public function getNext() - { - return $this->next; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setStart($start) - { - $this->start = $start; - } - public function getStart() - { - return $this->start; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ServerBinding.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ServerBinding.php deleted file mode 100644 index c0e525b9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ServerBinding.php +++ /dev/null @@ -1,30 +0,0 @@ -type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ServiceAccount.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ServiceAccount.php deleted file mode 100644 index 6a6b470f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ServiceAccount.php +++ /dev/null @@ -1,40 +0,0 @@ -email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setScopes($scopes) - { - $this->scopes = $scopes; - } - public function getScopes() - { - return $this->scopes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ShieldedInstanceConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ShieldedInstanceConfig.php deleted file mode 100644 index d832bf89..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ShieldedInstanceConfig.php +++ /dev/null @@ -1,48 +0,0 @@ -enableIntegrityMonitoring = $enableIntegrityMonitoring; - } - public function getEnableIntegrityMonitoring() - { - return $this->enableIntegrityMonitoring; - } - public function setEnableSecureBoot($enableSecureBoot) - { - $this->enableSecureBoot = $enableSecureBoot; - } - public function getEnableSecureBoot() - { - return $this->enableSecureBoot; - } - public function setEnableVtpm($enableVtpm) - { - $this->enableVtpm = $enableVtpm; - } - public function getEnableVtpm() - { - return $this->enableVtpm; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ShieldedInstanceIdentity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ShieldedInstanceIdentity.php deleted file mode 100644 index fdf66e41..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ShieldedInstanceIdentity.php +++ /dev/null @@ -1,62 +0,0 @@ -encryptionKey = $encryptionKey; - } - /** - * @return Google_Service_Compute_ShieldedInstanceIdentityEntry - */ - public function getEncryptionKey() - { - return $this->encryptionKey; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Compute_ShieldedInstanceIdentityEntry - */ - public function setSigningKey(Google_Service_Compute_ShieldedInstanceIdentityEntry $signingKey) - { - $this->signingKey = $signingKey; - } - /** - * @return Google_Service_Compute_ShieldedInstanceIdentityEntry - */ - public function getSigningKey() - { - return $this->signingKey; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ShieldedInstanceIdentityEntry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ShieldedInstanceIdentityEntry.php deleted file mode 100644 index fd53f836..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ShieldedInstanceIdentityEntry.php +++ /dev/null @@ -1,39 +0,0 @@ -ekCert = $ekCert; - } - public function getEkCert() - { - return $this->ekCert; - } - public function setEkPub($ekPub) - { - $this->ekPub = $ekPub; - } - public function getEkPub() - { - return $this->ekPub; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ShieldedInstanceIntegrityPolicy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ShieldedInstanceIntegrityPolicy.php deleted file mode 100644 index 26798c56..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ShieldedInstanceIntegrityPolicy.php +++ /dev/null @@ -1,30 +0,0 @@ -updateAutoLearnPolicy = $updateAutoLearnPolicy; - } - public function getUpdateAutoLearnPolicy() - { - return $this->updateAutoLearnPolicy; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SignedUrlKey.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SignedUrlKey.php deleted file mode 100644 index fd32efff..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SignedUrlKey.php +++ /dev/null @@ -1,39 +0,0 @@ -keyName = $keyName; - } - public function getKeyName() - { - return $this->keyName; - } - public function setKeyValue($keyValue) - { - $this->keyValue = $keyValue; - } - public function getKeyValue() - { - return $this->keyValue; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Snapshot.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Snapshot.php deleted file mode 100644 index bcde9883..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Snapshot.php +++ /dev/null @@ -1,225 +0,0 @@ -autoCreated = $autoCreated; - } - public function getAutoCreated() - { - return $this->autoCreated; - } - public function setCreationTimestamp($creationTimestamp) - { - $this->creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDiskSizeGb($diskSizeGb) - { - $this->diskSizeGb = $diskSizeGb; - } - public function getDiskSizeGb() - { - return $this->diskSizeGb; - } - public function setDownloadBytes($downloadBytes) - { - $this->downloadBytes = $downloadBytes; - } - public function getDownloadBytes() - { - return $this->downloadBytes; - } - 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 setLabelFingerprint($labelFingerprint) - { - $this->labelFingerprint = $labelFingerprint; - } - public function getLabelFingerprint() - { - return $this->labelFingerprint; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setLicenseCodes($licenseCodes) - { - $this->licenseCodes = $licenseCodes; - } - public function getLicenseCodes() - { - return $this->licenseCodes; - } - public function setLicenses($licenses) - { - $this->licenses = $licenses; - } - public function getLicenses() - { - return $this->licenses; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_CustomerEncryptionKey - */ - public function setSnapshotEncryptionKey(Google_Service_Compute_CustomerEncryptionKey $snapshotEncryptionKey) - { - $this->snapshotEncryptionKey = $snapshotEncryptionKey; - } - /** - * @return Google_Service_Compute_CustomerEncryptionKey - */ - public function getSnapshotEncryptionKey() - { - return $this->snapshotEncryptionKey; - } - public function setSourceDisk($sourceDisk) - { - $this->sourceDisk = $sourceDisk; - } - public function getSourceDisk() - { - return $this->sourceDisk; - } - /** - * @param Google_Service_Compute_CustomerEncryptionKey - */ - public function setSourceDiskEncryptionKey(Google_Service_Compute_CustomerEncryptionKey $sourceDiskEncryptionKey) - { - $this->sourceDiskEncryptionKey = $sourceDiskEncryptionKey; - } - /** - * @return Google_Service_Compute_CustomerEncryptionKey - */ - public function getSourceDiskEncryptionKey() - { - return $this->sourceDiskEncryptionKey; - } - public function setSourceDiskId($sourceDiskId) - { - $this->sourceDiskId = $sourceDiskId; - } - public function getSourceDiskId() - { - return $this->sourceDiskId; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setStorageBytes($storageBytes) - { - $this->storageBytes = $storageBytes; - } - public function getStorageBytes() - { - return $this->storageBytes; - } - public function setStorageBytesStatus($storageBytesStatus) - { - $this->storageBytesStatus = $storageBytesStatus; - } - public function getStorageBytesStatus() - { - return $this->storageBytesStatus; - } - public function setStorageLocations($storageLocations) - { - $this->storageLocations = $storageLocations; - } - public function getStorageLocations() - { - return $this->storageLocations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SnapshotList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SnapshotList.php deleted file mode 100644 index cb620785..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SnapshotList.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_Snapshot - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_Snapshot - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_SnapshotListWarning - */ - public function setWarning(Google_Service_Compute_SnapshotListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_SnapshotListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SnapshotListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SnapshotListWarning.php deleted file mode 100644 index 99713a0e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SnapshotListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_SnapshotListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_SnapshotListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SnapshotListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SnapshotListWarningData.php deleted file mode 100644 index ac093efd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SnapshotListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SourceInstanceParams.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SourceInstanceParams.php deleted file mode 100644 index 0dd513df..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SourceInstanceParams.php +++ /dev/null @@ -1,38 +0,0 @@ -diskConfigs = $diskConfigs; - } - /** - * @return Google_Service_Compute_DiskInstantiationConfig - */ - public function getDiskConfigs() - { - return $this->diskConfigs; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SslCertificate.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SslCertificate.php deleted file mode 100644 index 2fffaecc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SslCertificate.php +++ /dev/null @@ -1,102 +0,0 @@ -certificate = $certificate; - } - public function getCertificate() - { - return $this->certificate; - } - public function setCreationTimestamp($creationTimestamp) - { - $this->creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPrivateKey($privateKey) - { - $this->privateKey = $privateKey; - } - public function getPrivateKey() - { - return $this->privateKey; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SslCertificateAggregatedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SslCertificateAggregatedList.php deleted file mode 100644 index 6b32abbf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SslCertificateAggregatedList.php +++ /dev/null @@ -1,89 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_SslCertificatesScopedList - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_SslCertificatesScopedList - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_SslCertificateAggregatedListWarning - */ - public function setWarning(Google_Service_Compute_SslCertificateAggregatedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_SslCertificateAggregatedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SslCertificateAggregatedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SslCertificateAggregatedListWarning.php deleted file mode 100644 index 1d9b6825..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SslCertificateAggregatedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_SslCertificateAggregatedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_SslCertificateAggregatedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SslCertificateAggregatedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SslCertificateAggregatedListWarningData.php deleted file mode 100644 index 2b0ae802..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SslCertificateAggregatedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SslCertificateList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SslCertificateList.php deleted file mode 100644 index 3331b1dc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SslCertificateList.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_SslCertificate - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_SslCertificate - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_SslCertificateListWarning - */ - public function setWarning(Google_Service_Compute_SslCertificateListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_SslCertificateListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SslCertificateListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SslCertificateListWarning.php deleted file mode 100644 index bdc6d3bd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SslCertificateListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_SslCertificateListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_SslCertificateListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SslCertificateListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SslCertificateListWarningData.php deleted file mode 100644 index bdd2996b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SslCertificateListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SslCertificatesScopedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SslCertificatesScopedList.php deleted file mode 100644 index 9798ad4c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SslCertificatesScopedList.php +++ /dev/null @@ -1,54 +0,0 @@ -sslCertificates = $sslCertificates; - } - /** - * @return Google_Service_Compute_SslCertificate - */ - public function getSslCertificates() - { - return $this->sslCertificates; - } - /** - * @param Google_Service_Compute_SslCertificatesScopedListWarning - */ - public function setWarning(Google_Service_Compute_SslCertificatesScopedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_SslCertificatesScopedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SslCertificatesScopedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SslCertificatesScopedListWarning.php deleted file mode 100644 index 7a691c49..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SslCertificatesScopedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_SslCertificatesScopedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_SslCertificatesScopedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SslCertificatesScopedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SslCertificatesScopedListWarningData.php deleted file mode 100644 index a52f70ca..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SslCertificatesScopedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SslPoliciesList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SslPoliciesList.php deleted file mode 100644 index 5e5aede0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SslPoliciesList.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_SslPolicy - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_SslPolicy - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_SslPoliciesListWarning - */ - public function setWarning(Google_Service_Compute_SslPoliciesListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_SslPoliciesListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SslPoliciesListAvailableFeaturesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SslPoliciesListAvailableFeaturesResponse.php deleted file mode 100644 index 87c11165..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SslPoliciesListAvailableFeaturesResponse.php +++ /dev/null @@ -1,31 +0,0 @@ -features = $features; - } - public function getFeatures() - { - return $this->features; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SslPoliciesListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SslPoliciesListWarning.php deleted file mode 100644 index faa32dba..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SslPoliciesListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_SslPoliciesListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_SslPoliciesListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SslPoliciesListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SslPoliciesListWarningData.php deleted file mode 100644 index 8b2aa46f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SslPoliciesListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SslPolicy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SslPolicy.php deleted file mode 100644 index 718cd62d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SslPolicy.php +++ /dev/null @@ -1,137 +0,0 @@ -creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setCustomFeatures($customFeatures) - { - $this->customFeatures = $customFeatures; - } - public function getCustomFeatures() - { - return $this->customFeatures; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setEnabledFeatures($enabledFeatures) - { - $this->enabledFeatures = $enabledFeatures; - } - public function getEnabledFeatures() - { - return $this->enabledFeatures; - } - public function setFingerprint($fingerprint) - { - $this->fingerprint = $fingerprint; - } - public function getFingerprint() - { - return $this->fingerprint; - } - 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 setMinTlsVersion($minTlsVersion) - { - $this->minTlsVersion = $minTlsVersion; - } - public function getMinTlsVersion() - { - return $this->minTlsVersion; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setProfile($profile) - { - $this->profile = $profile; - } - public function getProfile() - { - return $this->profile; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_SslPolicyWarnings - */ - public function setWarnings($warnings) - { - $this->warnings = $warnings; - } - /** - * @return Google_Service_Compute_SslPolicyWarnings - */ - public function getWarnings() - { - return $this->warnings; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SslPolicyReference.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SslPolicyReference.php deleted file mode 100644 index 95068ffe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SslPolicyReference.php +++ /dev/null @@ -1,30 +0,0 @@ -sslPolicy = $sslPolicy; - } - public function getSslPolicy() - { - return $this->sslPolicy; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SslPolicyWarnings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SslPolicyWarnings.php deleted file mode 100644 index 577bb21d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SslPolicyWarnings.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_SslPolicyWarningsData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_SslPolicyWarningsData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SslPolicyWarningsData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SslPolicyWarningsData.php deleted file mode 100644 index 8c2ea5f2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SslPolicyWarningsData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Subnetwork.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Subnetwork.php deleted file mode 100644 index e0c6be0e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Subnetwork.php +++ /dev/null @@ -1,198 +0,0 @@ -creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setEnableFlowLogs($enableFlowLogs) - { - $this->enableFlowLogs = $enableFlowLogs; - } - public function getEnableFlowLogs() - { - return $this->enableFlowLogs; - } - public function setFingerprint($fingerprint) - { - $this->fingerprint = $fingerprint; - } - public function getFingerprint() - { - return $this->fingerprint; - } - public function setGatewayAddress($gatewayAddress) - { - $this->gatewayAddress = $gatewayAddress; - } - public function getGatewayAddress() - { - return $this->gatewayAddress; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setIpCidrRange($ipCidrRange) - { - $this->ipCidrRange = $ipCidrRange; - } - public function getIpCidrRange() - { - return $this->ipCidrRange; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Compute_SubnetworkLogConfig - */ - public function setLogConfig(Google_Service_Compute_SubnetworkLogConfig $logConfig) - { - $this->logConfig = $logConfig; - } - /** - * @return Google_Service_Compute_SubnetworkLogConfig - */ - public function getLogConfig() - { - return $this->logConfig; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNetwork($network) - { - $this->network = $network; - } - public function getNetwork() - { - return $this->network; - } - public function setPrivateIpGoogleAccess($privateIpGoogleAccess) - { - $this->privateIpGoogleAccess = $privateIpGoogleAccess; - } - public function getPrivateIpGoogleAccess() - { - return $this->privateIpGoogleAccess; - } - public function setPurpose($purpose) - { - $this->purpose = $purpose; - } - public function getPurpose() - { - return $this->purpose; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - public function setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } - /** - * @param Google_Service_Compute_SubnetworkSecondaryRange - */ - public function setSecondaryIpRanges($secondaryIpRanges) - { - $this->secondaryIpRanges = $secondaryIpRanges; - } - /** - * @return Google_Service_Compute_SubnetworkSecondaryRange - */ - public function getSecondaryIpRanges() - { - return $this->secondaryIpRanges; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SubnetworkAggregatedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SubnetworkAggregatedList.php deleted file mode 100644 index 9fee5e27..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SubnetworkAggregatedList.php +++ /dev/null @@ -1,89 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_SubnetworksScopedList - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_SubnetworksScopedList - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_SubnetworkAggregatedListWarning - */ - public function setWarning(Google_Service_Compute_SubnetworkAggregatedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_SubnetworkAggregatedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SubnetworkAggregatedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SubnetworkAggregatedListWarning.php deleted file mode 100644 index 6805d18b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SubnetworkAggregatedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_SubnetworkAggregatedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_SubnetworkAggregatedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SubnetworkAggregatedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SubnetworkAggregatedListWarningData.php deleted file mode 100644 index 028e0a77..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SubnetworkAggregatedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SubnetworkList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SubnetworkList.php deleted file mode 100644 index f71803cc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SubnetworkList.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_Subnetwork - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_Subnetwork - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_SubnetworkListWarning - */ - public function setWarning(Google_Service_Compute_SubnetworkListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_SubnetworkListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SubnetworkListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SubnetworkListWarning.php deleted file mode 100644 index ee8cc583..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SubnetworkListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_SubnetworkListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_SubnetworkListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SubnetworkListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SubnetworkListWarningData.php deleted file mode 100644 index d9a30c48..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SubnetworkListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SubnetworkLogConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SubnetworkLogConfig.php deleted file mode 100644 index 0f57e1b8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SubnetworkLogConfig.php +++ /dev/null @@ -1,57 +0,0 @@ -aggregationInterval = $aggregationInterval; - } - public function getAggregationInterval() - { - return $this->aggregationInterval; - } - public function setEnable($enable) - { - $this->enable = $enable; - } - public function getEnable() - { - return $this->enable; - } - public function setFlowSampling($flowSampling) - { - $this->flowSampling = $flowSampling; - } - public function getFlowSampling() - { - return $this->flowSampling; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SubnetworkSecondaryRange.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SubnetworkSecondaryRange.php deleted file mode 100644 index 3fa157e0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SubnetworkSecondaryRange.php +++ /dev/null @@ -1,39 +0,0 @@ -ipCidrRange = $ipCidrRange; - } - public function getIpCidrRange() - { - return $this->ipCidrRange; - } - public function setRangeName($rangeName) - { - $this->rangeName = $rangeName; - } - public function getRangeName() - { - return $this->rangeName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SubnetworksExpandIpCidrRangeRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SubnetworksExpandIpCidrRangeRequest.php deleted file mode 100644 index 1c0da11f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SubnetworksExpandIpCidrRangeRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -ipCidrRange = $ipCidrRange; - } - public function getIpCidrRange() - { - return $this->ipCidrRange; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SubnetworksScopedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SubnetworksScopedList.php deleted file mode 100644 index fd4e5051..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SubnetworksScopedList.php +++ /dev/null @@ -1,54 +0,0 @@ -subnetworks = $subnetworks; - } - /** - * @return Google_Service_Compute_Subnetwork - */ - public function getSubnetworks() - { - return $this->subnetworks; - } - /** - * @param Google_Service_Compute_SubnetworksScopedListWarning - */ - public function setWarning(Google_Service_Compute_SubnetworksScopedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_SubnetworksScopedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SubnetworksScopedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SubnetworksScopedListWarning.php deleted file mode 100644 index d4e5144a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SubnetworksScopedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_SubnetworksScopedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_SubnetworksScopedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SubnetworksScopedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SubnetworksScopedListWarningData.php deleted file mode 100644 index 2753a2bd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SubnetworksScopedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SubnetworksSetPrivateIpGoogleAccessRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SubnetworksSetPrivateIpGoogleAccessRequest.php deleted file mode 100644 index cb9254df..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/SubnetworksSetPrivateIpGoogleAccessRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -privateIpGoogleAccess = $privateIpGoogleAccess; - } - public function getPrivateIpGoogleAccess() - { - return $this->privateIpGoogleAccess; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TCPHealthCheck.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TCPHealthCheck.php deleted file mode 100644 index e354297b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TCPHealthCheck.php +++ /dev/null @@ -1,75 +0,0 @@ -port = $port; - } - public function getPort() - { - return $this->port; - } - public function setPortName($portName) - { - $this->portName = $portName; - } - public function getPortName() - { - return $this->portName; - } - public function setPortSpecification($portSpecification) - { - $this->portSpecification = $portSpecification; - } - public function getPortSpecification() - { - return $this->portSpecification; - } - public function setProxyHeader($proxyHeader) - { - $this->proxyHeader = $proxyHeader; - } - public function getProxyHeader() - { - return $this->proxyHeader; - } - public function setRequest($request) - { - $this->request = $request; - } - public function getRequest() - { - return $this->request; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Tags.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Tags.php deleted file mode 100644 index 5f2e9078..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Tags.php +++ /dev/null @@ -1,40 +0,0 @@ -fingerprint = $fingerprint; - } - public function getFingerprint() - { - return $this->fingerprint; - } - public function setItems($items) - { - $this->items = $items; - } - public function getItems() - { - return $this->items; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpProxiesScopedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpProxiesScopedList.php deleted file mode 100644 index aa8a517c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpProxiesScopedList.php +++ /dev/null @@ -1,54 +0,0 @@ -targetHttpProxies = $targetHttpProxies; - } - /** - * @return Google_Service_Compute_TargetHttpProxy - */ - public function getTargetHttpProxies() - { - return $this->targetHttpProxies; - } - /** - * @param Google_Service_Compute_TargetHttpProxiesScopedListWarning - */ - public function setWarning(Google_Service_Compute_TargetHttpProxiesScopedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_TargetHttpProxiesScopedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpProxiesScopedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpProxiesScopedListWarning.php deleted file mode 100644 index 263210b2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpProxiesScopedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_TargetHttpProxiesScopedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_TargetHttpProxiesScopedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpProxiesScopedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpProxiesScopedListWarningData.php deleted file mode 100644 index 6ed204c1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpProxiesScopedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpProxy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpProxy.php deleted file mode 100644 index b8abd607..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpProxy.php +++ /dev/null @@ -1,93 +0,0 @@ -creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setUrlMap($urlMap) - { - $this->urlMap = $urlMap; - } - public function getUrlMap() - { - return $this->urlMap; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpProxyAggregatedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpProxyAggregatedList.php deleted file mode 100644 index 1960122e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpProxyAggregatedList.php +++ /dev/null @@ -1,73 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_TargetHttpProxiesScopedList - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_TargetHttpProxiesScopedList - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpProxyList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpProxyList.php deleted file mode 100644 index c64f3836..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpProxyList.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_TargetHttpProxy - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_TargetHttpProxy - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_TargetHttpProxyListWarning - */ - public function setWarning(Google_Service_Compute_TargetHttpProxyListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_TargetHttpProxyListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpProxyListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpProxyListWarning.php deleted file mode 100644 index 7d47e9df..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpProxyListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_TargetHttpProxyListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_TargetHttpProxyListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpProxyListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpProxyListWarningData.php deleted file mode 100644 index 3c3b924f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpProxyListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpsProxiesScopedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpsProxiesScopedList.php deleted file mode 100644 index b049fb58..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpsProxiesScopedList.php +++ /dev/null @@ -1,54 +0,0 @@ -targetHttpsProxies = $targetHttpsProxies; - } - /** - * @return Google_Service_Compute_TargetHttpsProxy - */ - public function getTargetHttpsProxies() - { - return $this->targetHttpsProxies; - } - /** - * @param Google_Service_Compute_TargetHttpsProxiesScopedListWarning - */ - public function setWarning(Google_Service_Compute_TargetHttpsProxiesScopedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_TargetHttpsProxiesScopedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpsProxiesScopedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpsProxiesScopedListWarning.php deleted file mode 100644 index e9089cdf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpsProxiesScopedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_TargetHttpsProxiesScopedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_TargetHttpsProxiesScopedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpsProxiesScopedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpsProxiesScopedListWarningData.php deleted file mode 100644 index a2e91d0e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpsProxiesScopedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpsProxiesSetQuicOverrideRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpsProxiesSetQuicOverrideRequest.php deleted file mode 100644 index 74953669..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpsProxiesSetQuicOverrideRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -quicOverride = $quicOverride; - } - public function getQuicOverride() - { - return $this->quicOverride; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpsProxiesSetSslCertificatesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpsProxiesSetSslCertificatesRequest.php deleted file mode 100644 index 3e884d2b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpsProxiesSetSslCertificatesRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -sslCertificates = $sslCertificates; - } - public function getSslCertificates() - { - return $this->sslCertificates; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpsProxy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpsProxy.php deleted file mode 100644 index 5dabd3d7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpsProxy.php +++ /dev/null @@ -1,121 +0,0 @@ -creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setQuicOverride($quicOverride) - { - $this->quicOverride = $quicOverride; - } - public function getQuicOverride() - { - return $this->quicOverride; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setSslCertificates($sslCertificates) - { - $this->sslCertificates = $sslCertificates; - } - public function getSslCertificates() - { - return $this->sslCertificates; - } - public function setSslPolicy($sslPolicy) - { - $this->sslPolicy = $sslPolicy; - } - public function getSslPolicy() - { - return $this->sslPolicy; - } - public function setUrlMap($urlMap) - { - $this->urlMap = $urlMap; - } - public function getUrlMap() - { - return $this->urlMap; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpsProxyAggregatedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpsProxyAggregatedList.php deleted file mode 100644 index 7b87a6a8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpsProxyAggregatedList.php +++ /dev/null @@ -1,89 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_TargetHttpsProxiesScopedList - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_TargetHttpsProxiesScopedList - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_TargetHttpsProxyAggregatedListWarning - */ - public function setWarning(Google_Service_Compute_TargetHttpsProxyAggregatedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_TargetHttpsProxyAggregatedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpsProxyAggregatedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpsProxyAggregatedListWarning.php deleted file mode 100644 index b57520dc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpsProxyAggregatedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_TargetHttpsProxyAggregatedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_TargetHttpsProxyAggregatedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpsProxyAggregatedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpsProxyAggregatedListWarningData.php deleted file mode 100644 index 2fbd3104..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpsProxyAggregatedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpsProxyList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpsProxyList.php deleted file mode 100644 index 30144bc6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpsProxyList.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_TargetHttpsProxy - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_TargetHttpsProxy - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_TargetHttpsProxyListWarning - */ - public function setWarning(Google_Service_Compute_TargetHttpsProxyListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_TargetHttpsProxyListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpsProxyListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpsProxyListWarning.php deleted file mode 100644 index 798160b6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpsProxyListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_TargetHttpsProxyListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_TargetHttpsProxyListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpsProxyListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpsProxyListWarningData.php deleted file mode 100644 index 23f81b8c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetHttpsProxyListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetInstance.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetInstance.php deleted file mode 100644 index 6724218b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetInstance.php +++ /dev/null @@ -1,102 +0,0 @@ -creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setInstance($instance) - { - $this->instance = $instance; - } - public function getInstance() - { - return $this->instance; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNatPolicy($natPolicy) - { - $this->natPolicy = $natPolicy; - } - public function getNatPolicy() - { - return $this->natPolicy; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setZone($zone) - { - $this->zone = $zone; - } - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetInstanceAggregatedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetInstanceAggregatedList.php deleted file mode 100644 index 2845bee6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetInstanceAggregatedList.php +++ /dev/null @@ -1,89 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_TargetInstancesScopedList - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_TargetInstancesScopedList - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_TargetInstanceAggregatedListWarning - */ - public function setWarning(Google_Service_Compute_TargetInstanceAggregatedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_TargetInstanceAggregatedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetInstanceAggregatedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetInstanceAggregatedListWarning.php deleted file mode 100644 index 4034e4b7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetInstanceAggregatedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_TargetInstanceAggregatedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_TargetInstanceAggregatedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetInstanceAggregatedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetInstanceAggregatedListWarningData.php deleted file mode 100644 index 4f03961a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetInstanceAggregatedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetInstanceList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetInstanceList.php deleted file mode 100644 index 76f16843..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetInstanceList.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_TargetInstance - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_TargetInstance - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_TargetInstanceListWarning - */ - public function setWarning(Google_Service_Compute_TargetInstanceListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_TargetInstanceListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetInstanceListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetInstanceListWarning.php deleted file mode 100644 index 1cc6c67c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetInstanceListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_TargetInstanceListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_TargetInstanceListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetInstanceListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetInstanceListWarningData.php deleted file mode 100644 index 7666b676..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetInstanceListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetInstancesScopedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetInstancesScopedList.php deleted file mode 100644 index a17f5582..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetInstancesScopedList.php +++ /dev/null @@ -1,54 +0,0 @@ -targetInstances = $targetInstances; - } - /** - * @return Google_Service_Compute_TargetInstance - */ - public function getTargetInstances() - { - return $this->targetInstances; - } - /** - * @param Google_Service_Compute_TargetInstancesScopedListWarning - */ - public function setWarning(Google_Service_Compute_TargetInstancesScopedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_TargetInstancesScopedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetInstancesScopedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetInstancesScopedListWarning.php deleted file mode 100644 index a5e00264..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetInstancesScopedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_TargetInstancesScopedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_TargetInstancesScopedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetInstancesScopedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetInstancesScopedListWarningData.php deleted file mode 100644 index cd753404..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetInstancesScopedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetPool.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetPool.php deleted file mode 100644 index 97be72dc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetPool.php +++ /dev/null @@ -1,130 +0,0 @@ -backupPool = $backupPool; - } - public function getBackupPool() - { - return $this->backupPool; - } - public function setCreationTimestamp($creationTimestamp) - { - $this->creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setFailoverRatio($failoverRatio) - { - $this->failoverRatio = $failoverRatio; - } - public function getFailoverRatio() - { - return $this->failoverRatio; - } - public function setHealthChecks($healthChecks) - { - $this->healthChecks = $healthChecks; - } - public function getHealthChecks() - { - return $this->healthChecks; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setInstances($instances) - { - $this->instances = $instances; - } - public function getInstances() - { - return $this->instances; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setSessionAffinity($sessionAffinity) - { - $this->sessionAffinity = $sessionAffinity; - } - public function getSessionAffinity() - { - return $this->sessionAffinity; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetPoolAggregatedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetPoolAggregatedList.php deleted file mode 100644 index 9e4904a0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetPoolAggregatedList.php +++ /dev/null @@ -1,89 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_TargetPoolsScopedList - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_TargetPoolsScopedList - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_TargetPoolAggregatedListWarning - */ - public function setWarning(Google_Service_Compute_TargetPoolAggregatedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_TargetPoolAggregatedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetPoolAggregatedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetPoolAggregatedListWarning.php deleted file mode 100644 index 4b00b18b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetPoolAggregatedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_TargetPoolAggregatedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_TargetPoolAggregatedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetPoolAggregatedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetPoolAggregatedListWarningData.php deleted file mode 100644 index f6206070..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetPoolAggregatedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetPoolInstanceHealth.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetPoolInstanceHealth.php deleted file mode 100644 index 4a25052f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetPoolInstanceHealth.php +++ /dev/null @@ -1,47 +0,0 @@ -healthStatus = $healthStatus; - } - /** - * @return Google_Service_Compute_HealthStatus - */ - public function getHealthStatus() - { - return $this->healthStatus; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetPoolList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetPoolList.php deleted file mode 100644 index 75159222..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetPoolList.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_TargetPool - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_TargetPool - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_TargetPoolListWarning - */ - public function setWarning(Google_Service_Compute_TargetPoolListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_TargetPoolListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetPoolListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetPoolListWarning.php deleted file mode 100644 index c5d2b975..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetPoolListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_TargetPoolListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_TargetPoolListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetPoolListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetPoolListWarningData.php deleted file mode 100644 index 1525d758..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetPoolListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetPoolsAddHealthCheckRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetPoolsAddHealthCheckRequest.php deleted file mode 100644 index 9983616b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetPoolsAddHealthCheckRequest.php +++ /dev/null @@ -1,38 +0,0 @@ -healthChecks = $healthChecks; - } - /** - * @return Google_Service_Compute_HealthCheckReference - */ - public function getHealthChecks() - { - return $this->healthChecks; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetPoolsAddInstanceRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetPoolsAddInstanceRequest.php deleted file mode 100644 index 9a3ba212..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetPoolsAddInstanceRequest.php +++ /dev/null @@ -1,38 +0,0 @@ -instances = $instances; - } - /** - * @return Google_Service_Compute_InstanceReference - */ - public function getInstances() - { - return $this->instances; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetPoolsRemoveHealthCheckRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetPoolsRemoveHealthCheckRequest.php deleted file mode 100644 index 93d07427..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetPoolsRemoveHealthCheckRequest.php +++ /dev/null @@ -1,38 +0,0 @@ -healthChecks = $healthChecks; - } - /** - * @return Google_Service_Compute_HealthCheckReference - */ - public function getHealthChecks() - { - return $this->healthChecks; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetPoolsRemoveInstanceRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetPoolsRemoveInstanceRequest.php deleted file mode 100644 index 01badaa2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetPoolsRemoveInstanceRequest.php +++ /dev/null @@ -1,38 +0,0 @@ -instances = $instances; - } - /** - * @return Google_Service_Compute_InstanceReference - */ - public function getInstances() - { - return $this->instances; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetPoolsScopedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetPoolsScopedList.php deleted file mode 100644 index 9ef8f20d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetPoolsScopedList.php +++ /dev/null @@ -1,54 +0,0 @@ -targetPools = $targetPools; - } - /** - * @return Google_Service_Compute_TargetPool - */ - public function getTargetPools() - { - return $this->targetPools; - } - /** - * @param Google_Service_Compute_TargetPoolsScopedListWarning - */ - public function setWarning(Google_Service_Compute_TargetPoolsScopedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_TargetPoolsScopedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetPoolsScopedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetPoolsScopedListWarning.php deleted file mode 100644 index 40a07a7d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetPoolsScopedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_TargetPoolsScopedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_TargetPoolsScopedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetPoolsScopedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetPoolsScopedListWarningData.php deleted file mode 100644 index efe6be68..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetPoolsScopedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetReference.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetReference.php deleted file mode 100644 index 39e8ed65..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetReference.php +++ /dev/null @@ -1,30 +0,0 @@ -target = $target; - } - public function getTarget() - { - return $this->target; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetSslProxiesSetBackendServiceRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetSslProxiesSetBackendServiceRequest.php deleted file mode 100644 index 1795aafc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetSslProxiesSetBackendServiceRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -service = $service; - } - public function getService() - { - return $this->service; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetSslProxiesSetProxyHeaderRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetSslProxiesSetProxyHeaderRequest.php deleted file mode 100644 index f15b906e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetSslProxiesSetProxyHeaderRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -proxyHeader = $proxyHeader; - } - public function getProxyHeader() - { - return $this->proxyHeader; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetSslProxiesSetSslCertificatesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetSslProxiesSetSslCertificatesRequest.php deleted file mode 100644 index 6deda489..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetSslProxiesSetSslCertificatesRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -sslCertificates = $sslCertificates; - } - public function getSslCertificates() - { - return $this->sslCertificates; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetSslProxy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetSslProxy.php deleted file mode 100644 index ddd492db..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetSslProxy.php +++ /dev/null @@ -1,112 +0,0 @@ -creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setProxyHeader($proxyHeader) - { - $this->proxyHeader = $proxyHeader; - } - public function getProxyHeader() - { - return $this->proxyHeader; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setService($service) - { - $this->service = $service; - } - public function getService() - { - return $this->service; - } - public function setSslCertificates($sslCertificates) - { - $this->sslCertificates = $sslCertificates; - } - public function getSslCertificates() - { - return $this->sslCertificates; - } - public function setSslPolicy($sslPolicy) - { - $this->sslPolicy = $sslPolicy; - } - public function getSslPolicy() - { - return $this->sslPolicy; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetSslProxyList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetSslProxyList.php deleted file mode 100644 index fedb9097..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetSslProxyList.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_TargetSslProxy - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_TargetSslProxy - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_TargetSslProxyListWarning - */ - public function setWarning(Google_Service_Compute_TargetSslProxyListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_TargetSslProxyListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetSslProxyListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetSslProxyListWarning.php deleted file mode 100644 index 5e2c1dce..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetSslProxyListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_TargetSslProxyListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_TargetSslProxyListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetSslProxyListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetSslProxyListWarningData.php deleted file mode 100644 index b308166b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetSslProxyListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetTcpProxiesSetBackendServiceRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetTcpProxiesSetBackendServiceRequest.php deleted file mode 100644 index 728cc915..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetTcpProxiesSetBackendServiceRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -service = $service; - } - public function getService() - { - return $this->service; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetTcpProxiesSetProxyHeaderRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetTcpProxiesSetProxyHeaderRequest.php deleted file mode 100644 index ded513da..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetTcpProxiesSetProxyHeaderRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -proxyHeader = $proxyHeader; - } - public function getProxyHeader() - { - return $this->proxyHeader; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetTcpProxy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetTcpProxy.php deleted file mode 100644 index a4849aff..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetTcpProxy.php +++ /dev/null @@ -1,93 +0,0 @@ -creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setProxyHeader($proxyHeader) - { - $this->proxyHeader = $proxyHeader; - } - public function getProxyHeader() - { - return $this->proxyHeader; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setService($service) - { - $this->service = $service; - } - public function getService() - { - return $this->service; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetTcpProxyList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetTcpProxyList.php deleted file mode 100644 index d47431a0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetTcpProxyList.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_TargetTcpProxy - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_TargetTcpProxy - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_TargetTcpProxyListWarning - */ - public function setWarning(Google_Service_Compute_TargetTcpProxyListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_TargetTcpProxyListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetTcpProxyListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetTcpProxyListWarning.php deleted file mode 100644 index 7153f452..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetTcpProxyListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_TargetTcpProxyListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_TargetTcpProxyListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetTcpProxyListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetTcpProxyListWarningData.php deleted file mode 100644 index 3cf38434..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetTcpProxyListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetVpnGateway.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetVpnGateway.php deleted file mode 100644 index e62a9bf9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetVpnGateway.php +++ /dev/null @@ -1,121 +0,0 @@ -creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setForwardingRules($forwardingRules) - { - $this->forwardingRules = $forwardingRules; - } - public function getForwardingRules() - { - return $this->forwardingRules; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNetwork($network) - { - $this->network = $network; - } - public function getNetwork() - { - return $this->network; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setTunnels($tunnels) - { - $this->tunnels = $tunnels; - } - public function getTunnels() - { - return $this->tunnels; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetVpnGatewayAggregatedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetVpnGatewayAggregatedList.php deleted file mode 100644 index ac95ef9c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetVpnGatewayAggregatedList.php +++ /dev/null @@ -1,89 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_TargetVpnGatewaysScopedList - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_TargetVpnGatewaysScopedList - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_TargetVpnGatewayAggregatedListWarning - */ - public function setWarning(Google_Service_Compute_TargetVpnGatewayAggregatedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_TargetVpnGatewayAggregatedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetVpnGatewayAggregatedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetVpnGatewayAggregatedListWarning.php deleted file mode 100644 index cef0c4d6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetVpnGatewayAggregatedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_TargetVpnGatewayAggregatedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_TargetVpnGatewayAggregatedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetVpnGatewayAggregatedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetVpnGatewayAggregatedListWarningData.php deleted file mode 100644 index 2e2ca40c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetVpnGatewayAggregatedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetVpnGatewayList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetVpnGatewayList.php deleted file mode 100644 index 724425ab..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetVpnGatewayList.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_TargetVpnGateway - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_TargetVpnGateway - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_TargetVpnGatewayListWarning - */ - public function setWarning(Google_Service_Compute_TargetVpnGatewayListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_TargetVpnGatewayListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetVpnGatewayListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetVpnGatewayListWarning.php deleted file mode 100644 index 7a899fe8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetVpnGatewayListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_TargetVpnGatewayListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_TargetVpnGatewayListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetVpnGatewayListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetVpnGatewayListWarningData.php deleted file mode 100644 index 7bff6a48..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetVpnGatewayListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetVpnGatewaysScopedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetVpnGatewaysScopedList.php deleted file mode 100644 index 263d7081..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetVpnGatewaysScopedList.php +++ /dev/null @@ -1,54 +0,0 @@ -targetVpnGateways = $targetVpnGateways; - } - /** - * @return Google_Service_Compute_TargetVpnGateway - */ - public function getTargetVpnGateways() - { - return $this->targetVpnGateways; - } - /** - * @param Google_Service_Compute_TargetVpnGatewaysScopedListWarning - */ - public function setWarning(Google_Service_Compute_TargetVpnGatewaysScopedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_TargetVpnGatewaysScopedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetVpnGatewaysScopedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetVpnGatewaysScopedListWarning.php deleted file mode 100644 index c1dce485..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetVpnGatewaysScopedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_TargetVpnGatewaysScopedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_TargetVpnGatewaysScopedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetVpnGatewaysScopedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetVpnGatewaysScopedListWarningData.php deleted file mode 100644 index 69c3cb28..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TargetVpnGatewaysScopedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TestFailure.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TestFailure.php deleted file mode 100644 index a9728ce5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TestFailure.php +++ /dev/null @@ -1,57 +0,0 @@ -actualService = $actualService; - } - public function getActualService() - { - return $this->actualService; - } - public function setExpectedService($expectedService) - { - $this->expectedService = $expectedService; - } - public function getExpectedService() - { - return $this->expectedService; - } - public function setHost($host) - { - $this->host = $host; - } - public function getHost() - { - return $this->host; - } - public function setPath($path) - { - $this->path = $path; - } - public function getPath() - { - return $this->path; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TestPermissionsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TestPermissionsRequest.php deleted file mode 100644 index d463b00e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TestPermissionsRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TestPermissionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TestPermissionsResponse.php deleted file mode 100644 index a1df903d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/TestPermissionsResponse.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UrlMap.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UrlMap.php deleted file mode 100644 index b0803d69..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UrlMap.php +++ /dev/null @@ -1,199 +0,0 @@ -creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - /** - * @param Google_Service_Compute_HttpRouteAction - */ - public function setDefaultRouteAction(Google_Service_Compute_HttpRouteAction $defaultRouteAction) - { - $this->defaultRouteAction = $defaultRouteAction; - } - /** - * @return Google_Service_Compute_HttpRouteAction - */ - public function getDefaultRouteAction() - { - return $this->defaultRouteAction; - } - public function setDefaultService($defaultService) - { - $this->defaultService = $defaultService; - } - public function getDefaultService() - { - return $this->defaultService; - } - /** - * @param Google_Service_Compute_HttpRedirectAction - */ - public function setDefaultUrlRedirect(Google_Service_Compute_HttpRedirectAction $defaultUrlRedirect) - { - $this->defaultUrlRedirect = $defaultUrlRedirect; - } - /** - * @return Google_Service_Compute_HttpRedirectAction - */ - public function getDefaultUrlRedirect() - { - return $this->defaultUrlRedirect; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setFingerprint($fingerprint) - { - $this->fingerprint = $fingerprint; - } - public function getFingerprint() - { - return $this->fingerprint; - } - /** - * @param Google_Service_Compute_HttpHeaderAction - */ - public function setHeaderAction(Google_Service_Compute_HttpHeaderAction $headerAction) - { - $this->headerAction = $headerAction; - } - /** - * @return Google_Service_Compute_HttpHeaderAction - */ - public function getHeaderAction() - { - return $this->headerAction; - } - /** - * @param Google_Service_Compute_HostRule - */ - public function setHostRules($hostRules) - { - $this->hostRules = $hostRules; - } - /** - * @return Google_Service_Compute_HostRule - */ - public function getHostRules() - { - return $this->hostRules; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Compute_PathMatcher - */ - public function setPathMatchers($pathMatchers) - { - $this->pathMatchers = $pathMatchers; - } - /** - * @return Google_Service_Compute_PathMatcher - */ - public function getPathMatchers() - { - return $this->pathMatchers; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_UrlMapTest - */ - public function setTests($tests) - { - $this->tests = $tests; - } - /** - * @return Google_Service_Compute_UrlMapTest - */ - public function getTests() - { - return $this->tests; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UrlMapList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UrlMapList.php deleted file mode 100644 index 7545e635..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UrlMapList.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_UrlMap - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_UrlMap - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_UrlMapListWarning - */ - public function setWarning(Google_Service_Compute_UrlMapListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_UrlMapListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UrlMapListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UrlMapListWarning.php deleted file mode 100644 index 92cc3201..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UrlMapListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_UrlMapListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_UrlMapListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UrlMapListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UrlMapListWarningData.php deleted file mode 100644 index d6de639a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UrlMapListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UrlMapReference.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UrlMapReference.php deleted file mode 100644 index eea15cec..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UrlMapReference.php +++ /dev/null @@ -1,30 +0,0 @@ -urlMap = $urlMap; - } - public function getUrlMap() - { - return $this->urlMap; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UrlMapTest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UrlMapTest.php deleted file mode 100644 index 8849b268..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UrlMapTest.php +++ /dev/null @@ -1,57 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setHost($host) - { - $this->host = $host; - } - public function getHost() - { - return $this->host; - } - public function setPath($path) - { - $this->path = $path; - } - public function getPath() - { - return $this->path; - } - public function setService($service) - { - $this->service = $service; - } - public function getService() - { - return $this->service; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UrlMapValidationResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UrlMapValidationResult.php deleted file mode 100644 index 4864bb17..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UrlMapValidationResult.php +++ /dev/null @@ -1,65 +0,0 @@ -loadErrors = $loadErrors; - } - public function getLoadErrors() - { - return $this->loadErrors; - } - public function setLoadSucceeded($loadSucceeded) - { - $this->loadSucceeded = $loadSucceeded; - } - public function getLoadSucceeded() - { - return $this->loadSucceeded; - } - /** - * @param Google_Service_Compute_TestFailure - */ - public function setTestFailures($testFailures) - { - $this->testFailures = $testFailures; - } - /** - * @return Google_Service_Compute_TestFailure - */ - public function getTestFailures() - { - return $this->testFailures; - } - public function setTestPassed($testPassed) - { - $this->testPassed = $testPassed; - } - public function getTestPassed() - { - return $this->testPassed; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UrlMapsAggregatedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UrlMapsAggregatedList.php deleted file mode 100644 index 21ebeb5b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UrlMapsAggregatedList.php +++ /dev/null @@ -1,89 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_UrlMapsScopedList - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_UrlMapsScopedList - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_UrlMapsAggregatedListWarning - */ - public function setWarning(Google_Service_Compute_UrlMapsAggregatedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_UrlMapsAggregatedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UrlMapsAggregatedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UrlMapsAggregatedListWarning.php deleted file mode 100644 index eb3ff083..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UrlMapsAggregatedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_UrlMapsAggregatedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_UrlMapsAggregatedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UrlMapsAggregatedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UrlMapsAggregatedListWarningData.php deleted file mode 100644 index 3c5ce79b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UrlMapsAggregatedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UrlMapsScopedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UrlMapsScopedList.php deleted file mode 100644 index 3a02765d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UrlMapsScopedList.php +++ /dev/null @@ -1,54 +0,0 @@ -urlMaps = $urlMaps; - } - /** - * @return Google_Service_Compute_UrlMap - */ - public function getUrlMaps() - { - return $this->urlMaps; - } - /** - * @param Google_Service_Compute_UrlMapsScopedListWarning - */ - public function setWarning(Google_Service_Compute_UrlMapsScopedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_UrlMapsScopedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UrlMapsScopedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UrlMapsScopedListWarning.php deleted file mode 100644 index 50f8f8d7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UrlMapsScopedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_UrlMapsScopedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_UrlMapsScopedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UrlMapsScopedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UrlMapsScopedListWarningData.php deleted file mode 100644 index b7ff18ea..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UrlMapsScopedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UrlMapsValidateRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UrlMapsValidateRequest.php deleted file mode 100644 index 9f79acc7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UrlMapsValidateRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -resource = $resource; - } - /** - * @return Google_Service_Compute_UrlMap - */ - public function getResource() - { - return $this->resource; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UrlMapsValidateResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UrlMapsValidateResponse.php deleted file mode 100644 index 4ac29199..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UrlMapsValidateResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -result = $result; - } - /** - * @return Google_Service_Compute_UrlMapValidationResult - */ - public function getResult() - { - return $this->result; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UrlRewrite.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UrlRewrite.php deleted file mode 100644 index 5bdbd482..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UrlRewrite.php +++ /dev/null @@ -1,39 +0,0 @@ -hostRewrite = $hostRewrite; - } - public function getHostRewrite() - { - return $this->hostRewrite; - } - public function setPathPrefixRewrite($pathPrefixRewrite) - { - $this->pathPrefixRewrite = $pathPrefixRewrite; - } - public function getPathPrefixRewrite() - { - return $this->pathPrefixRewrite; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UsableSubnetwork.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UsableSubnetwork.php deleted file mode 100644 index 5124a454..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UsableSubnetwork.php +++ /dev/null @@ -1,65 +0,0 @@ -ipCidrRange = $ipCidrRange; - } - public function getIpCidrRange() - { - return $this->ipCidrRange; - } - public function setNetwork($network) - { - $this->network = $network; - } - public function getNetwork() - { - return $this->network; - } - /** - * @param Google_Service_Compute_UsableSubnetworkSecondaryRange - */ - public function setSecondaryIpRanges($secondaryIpRanges) - { - $this->secondaryIpRanges = $secondaryIpRanges; - } - /** - * @return Google_Service_Compute_UsableSubnetworkSecondaryRange - */ - public function getSecondaryIpRanges() - { - return $this->secondaryIpRanges; - } - public function setSubnetwork($subnetwork) - { - $this->subnetwork = $subnetwork; - } - public function getSubnetwork() - { - return $this->subnetwork; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UsableSubnetworkSecondaryRange.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UsableSubnetworkSecondaryRange.php deleted file mode 100644 index e7403a25..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UsableSubnetworkSecondaryRange.php +++ /dev/null @@ -1,39 +0,0 @@ -ipCidrRange = $ipCidrRange; - } - public function getIpCidrRange() - { - return $this->ipCidrRange; - } - public function setRangeName($rangeName) - { - $this->rangeName = $rangeName; - } - public function getRangeName() - { - return $this->rangeName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UsableSubnetworksAggregatedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UsableSubnetworksAggregatedList.php deleted file mode 100644 index 28ac4685..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UsableSubnetworksAggregatedList.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_UsableSubnetwork - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_UsableSubnetwork - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_UsableSubnetworksAggregatedListWarning - */ - public function setWarning(Google_Service_Compute_UsableSubnetworksAggregatedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_UsableSubnetworksAggregatedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UsableSubnetworksAggregatedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UsableSubnetworksAggregatedListWarning.php deleted file mode 100644 index 0b8858cf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UsableSubnetworksAggregatedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_UsableSubnetworksAggregatedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_UsableSubnetworksAggregatedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UsableSubnetworksAggregatedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UsableSubnetworksAggregatedListWarningData.php deleted file mode 100644 index 16bb6556..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UsableSubnetworksAggregatedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UsageExportLocation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UsageExportLocation.php deleted file mode 100644 index b5b6ff6d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/UsageExportLocation.php +++ /dev/null @@ -1,39 +0,0 @@ -bucketName = $bucketName; - } - public function getBucketName() - { - return $this->bucketName; - } - public function setReportNamePrefix($reportNamePrefix) - { - $this->reportNamePrefix = $reportNamePrefix; - } - public function getReportNamePrefix() - { - return $this->reportNamePrefix; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VmEndpointNatMappings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VmEndpointNatMappings.php deleted file mode 100644 index fdaf6253..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VmEndpointNatMappings.php +++ /dev/null @@ -1,47 +0,0 @@ -instanceName = $instanceName; - } - public function getInstanceName() - { - return $this->instanceName; - } - /** - * @param Google_Service_Compute_VmEndpointNatMappingsInterfaceNatMappings - */ - public function setInterfaceNatMappings($interfaceNatMappings) - { - $this->interfaceNatMappings = $interfaceNatMappings; - } - /** - * @return Google_Service_Compute_VmEndpointNatMappingsInterfaceNatMappings - */ - public function getInterfaceNatMappings() - { - return $this->interfaceNatMappings; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VmEndpointNatMappingsInterfaceNatMappings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VmEndpointNatMappingsInterfaceNatMappings.php deleted file mode 100644 index c8591f5e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VmEndpointNatMappingsInterfaceNatMappings.php +++ /dev/null @@ -1,76 +0,0 @@ -drainNatIpPortRanges = $drainNatIpPortRanges; - } - public function getDrainNatIpPortRanges() - { - return $this->drainNatIpPortRanges; - } - public function setNatIpPortRanges($natIpPortRanges) - { - $this->natIpPortRanges = $natIpPortRanges; - } - public function getNatIpPortRanges() - { - return $this->natIpPortRanges; - } - public function setNumTotalDrainNatPorts($numTotalDrainNatPorts) - { - $this->numTotalDrainNatPorts = $numTotalDrainNatPorts; - } - public function getNumTotalDrainNatPorts() - { - return $this->numTotalDrainNatPorts; - } - public function setNumTotalNatPorts($numTotalNatPorts) - { - $this->numTotalNatPorts = $numTotalNatPorts; - } - public function getNumTotalNatPorts() - { - return $this->numTotalNatPorts; - } - public function setSourceAliasIpRange($sourceAliasIpRange) - { - $this->sourceAliasIpRange = $sourceAliasIpRange; - } - public function getSourceAliasIpRange() - { - return $this->sourceAliasIpRange; - } - public function setSourceVirtualIp($sourceVirtualIp) - { - $this->sourceVirtualIp = $sourceVirtualIp; - } - public function getSourceVirtualIp() - { - return $this->sourceVirtualIp; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VmEndpointNatMappingsList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VmEndpointNatMappingsList.php deleted file mode 100644 index 94bfef86..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VmEndpointNatMappingsList.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - 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_Compute_VmEndpointNatMappings - */ - public function setResult($result) - { - $this->result = $result; - } - /** - * @return Google_Service_Compute_VmEndpointNatMappings - */ - public function getResult() - { - return $this->result; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_VmEndpointNatMappingsListWarning - */ - public function setWarning(Google_Service_Compute_VmEndpointNatMappingsListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_VmEndpointNatMappingsListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VmEndpointNatMappingsListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VmEndpointNatMappingsListWarning.php deleted file mode 100644 index 901ee68b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VmEndpointNatMappingsListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_VmEndpointNatMappingsListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_VmEndpointNatMappingsListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VmEndpointNatMappingsListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VmEndpointNatMappingsListWarningData.php deleted file mode 100644 index 11e6edd6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VmEndpointNatMappingsListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnGateway.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnGateway.php deleted file mode 100644 index 25048f34..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnGateway.php +++ /dev/null @@ -1,128 +0,0 @@ -creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - 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 setLabelFingerprint($labelFingerprint) - { - $this->labelFingerprint = $labelFingerprint; - } - public function getLabelFingerprint() - { - return $this->labelFingerprint; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNetwork($network) - { - $this->network = $network; - } - public function getNetwork() - { - return $this->network; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_VpnGatewayVpnGatewayInterface - */ - public function setVpnInterfaces($vpnInterfaces) - { - $this->vpnInterfaces = $vpnInterfaces; - } - /** - * @return Google_Service_Compute_VpnGatewayVpnGatewayInterface - */ - public function getVpnInterfaces() - { - return $this->vpnInterfaces; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnGatewayAggregatedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnGatewayAggregatedList.php deleted file mode 100644 index f2046f82..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnGatewayAggregatedList.php +++ /dev/null @@ -1,89 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_VpnGatewaysScopedList - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_VpnGatewaysScopedList - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_VpnGatewayAggregatedListWarning - */ - public function setWarning(Google_Service_Compute_VpnGatewayAggregatedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_VpnGatewayAggregatedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnGatewayAggregatedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnGatewayAggregatedListWarning.php deleted file mode 100644 index db6208aa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnGatewayAggregatedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_VpnGatewayAggregatedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_VpnGatewayAggregatedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnGatewayAggregatedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnGatewayAggregatedListWarningData.php deleted file mode 100644 index fd9b91aa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnGatewayAggregatedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnGatewayList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnGatewayList.php deleted file mode 100644 index fbad4695..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnGatewayList.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_VpnGateway - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_VpnGateway - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_VpnGatewayListWarning - */ - public function setWarning(Google_Service_Compute_VpnGatewayListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_VpnGatewayListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnGatewayListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnGatewayListWarning.php deleted file mode 100644 index 09705766..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnGatewayListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_VpnGatewayListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_VpnGatewayListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnGatewayListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnGatewayListWarningData.php deleted file mode 100644 index d22fd766..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnGatewayListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnGatewayStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnGatewayStatus.php deleted file mode 100644 index 72defb3a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnGatewayStatus.php +++ /dev/null @@ -1,38 +0,0 @@ -vpnConnections = $vpnConnections; - } - /** - * @return Google_Service_Compute_VpnGatewayStatusVpnConnection - */ - public function getVpnConnections() - { - return $this->vpnConnections; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnGatewayStatusHighAvailabilityRequirementState.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnGatewayStatusHighAvailabilityRequirementState.php deleted file mode 100644 index b8eeaf93..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnGatewayStatusHighAvailabilityRequirementState.php +++ /dev/null @@ -1,39 +0,0 @@ -state = $state; - } - public function getState() - { - return $this->state; - } - public function setUnsatisfiedReason($unsatisfiedReason) - { - $this->unsatisfiedReason = $unsatisfiedReason; - } - public function getUnsatisfiedReason() - { - return $this->unsatisfiedReason; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnGatewayStatusTunnel.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnGatewayStatusTunnel.php deleted file mode 100644 index 5bbf7c40..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnGatewayStatusTunnel.php +++ /dev/null @@ -1,48 +0,0 @@ -localGatewayInterface = $localGatewayInterface; - } - public function getLocalGatewayInterface() - { - return $this->localGatewayInterface; - } - public function setPeerGatewayInterface($peerGatewayInterface) - { - $this->peerGatewayInterface = $peerGatewayInterface; - } - public function getPeerGatewayInterface() - { - return $this->peerGatewayInterface; - } - public function setTunnelUrl($tunnelUrl) - { - $this->tunnelUrl = $tunnelUrl; - } - public function getTunnelUrl() - { - return $this->tunnelUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnGatewayStatusVpnConnection.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnGatewayStatusVpnConnection.php deleted file mode 100644 index 8b6ff9f9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnGatewayStatusVpnConnection.php +++ /dev/null @@ -1,72 +0,0 @@ -peerExternalGateway = $peerExternalGateway; - } - public function getPeerExternalGateway() - { - return $this->peerExternalGateway; - } - public function setPeerGcpGateway($peerGcpGateway) - { - $this->peerGcpGateway = $peerGcpGateway; - } - public function getPeerGcpGateway() - { - return $this->peerGcpGateway; - } - /** - * @param Google_Service_Compute_VpnGatewayStatusHighAvailabilityRequirementState - */ - public function setState(Google_Service_Compute_VpnGatewayStatusHighAvailabilityRequirementState $state) - { - $this->state = $state; - } - /** - * @return Google_Service_Compute_VpnGatewayStatusHighAvailabilityRequirementState - */ - public function getState() - { - return $this->state; - } - /** - * @param Google_Service_Compute_VpnGatewayStatusTunnel - */ - public function setTunnels($tunnels) - { - $this->tunnels = $tunnels; - } - /** - * @return Google_Service_Compute_VpnGatewayStatusTunnel - */ - public function getTunnels() - { - return $this->tunnels; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnGatewayVpnGatewayInterface.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnGatewayVpnGatewayInterface.php deleted file mode 100644 index d1ebea63..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnGatewayVpnGatewayInterface.php +++ /dev/null @@ -1,39 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setIpAddress($ipAddress) - { - $this->ipAddress = $ipAddress; - } - public function getIpAddress() - { - return $this->ipAddress; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnGatewaysGetStatusResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnGatewaysGetStatusResponse.php deleted file mode 100644 index 11d79a93..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnGatewaysGetStatusResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -result = $result; - } - /** - * @return Google_Service_Compute_VpnGatewayStatus - */ - public function getResult() - { - return $this->result; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnGatewaysScopedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnGatewaysScopedList.php deleted file mode 100644 index 41ea76c8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnGatewaysScopedList.php +++ /dev/null @@ -1,54 +0,0 @@ -vpnGateways = $vpnGateways; - } - /** - * @return Google_Service_Compute_VpnGateway - */ - public function getVpnGateways() - { - return $this->vpnGateways; - } - /** - * @param Google_Service_Compute_VpnGatewaysScopedListWarning - */ - public function setWarning(Google_Service_Compute_VpnGatewaysScopedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_VpnGatewaysScopedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnGatewaysScopedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnGatewaysScopedListWarning.php deleted file mode 100644 index e775fdba..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnGatewaysScopedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_VpnGatewaysScopedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_VpnGatewaysScopedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnGatewaysScopedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnGatewaysScopedListWarningData.php deleted file mode 100644 index 687a8ec9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnGatewaysScopedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnTunnel.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnTunnel.php deleted file mode 100644 index aa738f5a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnTunnel.php +++ /dev/null @@ -1,220 +0,0 @@ -creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDetailedStatus($detailedStatus) - { - $this->detailedStatus = $detailedStatus; - } - public function getDetailedStatus() - { - return $this->detailedStatus; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setIkeVersion($ikeVersion) - { - $this->ikeVersion = $ikeVersion; - } - public function getIkeVersion() - { - return $this->ikeVersion; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLocalTrafficSelector($localTrafficSelector) - { - $this->localTrafficSelector = $localTrafficSelector; - } - public function getLocalTrafficSelector() - { - return $this->localTrafficSelector; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPeerExternalGateway($peerExternalGateway) - { - $this->peerExternalGateway = $peerExternalGateway; - } - public function getPeerExternalGateway() - { - return $this->peerExternalGateway; - } - public function setPeerExternalGatewayInterface($peerExternalGatewayInterface) - { - $this->peerExternalGatewayInterface = $peerExternalGatewayInterface; - } - public function getPeerExternalGatewayInterface() - { - return $this->peerExternalGatewayInterface; - } - public function setPeerGcpGateway($peerGcpGateway) - { - $this->peerGcpGateway = $peerGcpGateway; - } - public function getPeerGcpGateway() - { - return $this->peerGcpGateway; - } - public function setPeerIp($peerIp) - { - $this->peerIp = $peerIp; - } - public function getPeerIp() - { - return $this->peerIp; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - public function setRemoteTrafficSelector($remoteTrafficSelector) - { - $this->remoteTrafficSelector = $remoteTrafficSelector; - } - public function getRemoteTrafficSelector() - { - return $this->remoteTrafficSelector; - } - public function setRouter($router) - { - $this->router = $router; - } - public function getRouter() - { - return $this->router; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setSharedSecret($sharedSecret) - { - $this->sharedSecret = $sharedSecret; - } - public function getSharedSecret() - { - return $this->sharedSecret; - } - public function setSharedSecretHash($sharedSecretHash) - { - $this->sharedSecretHash = $sharedSecretHash; - } - public function getSharedSecretHash() - { - return $this->sharedSecretHash; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setTargetVpnGateway($targetVpnGateway) - { - $this->targetVpnGateway = $targetVpnGateway; - } - public function getTargetVpnGateway() - { - return $this->targetVpnGateway; - } - public function setVpnGateway($vpnGateway) - { - $this->vpnGateway = $vpnGateway; - } - public function getVpnGateway() - { - return $this->vpnGateway; - } - public function setVpnGatewayInterface($vpnGatewayInterface) - { - $this->vpnGatewayInterface = $vpnGatewayInterface; - } - public function getVpnGatewayInterface() - { - return $this->vpnGatewayInterface; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnTunnelAggregatedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnTunnelAggregatedList.php deleted file mode 100644 index 0a74343b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnTunnelAggregatedList.php +++ /dev/null @@ -1,89 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_VpnTunnelsScopedList - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_VpnTunnelsScopedList - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_VpnTunnelAggregatedListWarning - */ - public function setWarning(Google_Service_Compute_VpnTunnelAggregatedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_VpnTunnelAggregatedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnTunnelAggregatedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnTunnelAggregatedListWarning.php deleted file mode 100644 index 08a3cbc3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnTunnelAggregatedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_VpnTunnelAggregatedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_VpnTunnelAggregatedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnTunnelAggregatedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnTunnelAggregatedListWarningData.php deleted file mode 100644 index cb408855..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnTunnelAggregatedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnTunnelList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnTunnelList.php deleted file mode 100644 index 530182f8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnTunnelList.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_VpnTunnel - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_VpnTunnel - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_VpnTunnelListWarning - */ - public function setWarning(Google_Service_Compute_VpnTunnelListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_VpnTunnelListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnTunnelListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnTunnelListWarning.php deleted file mode 100644 index 1b0ea285..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnTunnelListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_VpnTunnelListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_VpnTunnelListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnTunnelListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnTunnelListWarningData.php deleted file mode 100644 index 8ca02828..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnTunnelListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnTunnelsScopedList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnTunnelsScopedList.php deleted file mode 100644 index fc8df83e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnTunnelsScopedList.php +++ /dev/null @@ -1,54 +0,0 @@ -vpnTunnels = $vpnTunnels; - } - /** - * @return Google_Service_Compute_VpnTunnel - */ - public function getVpnTunnels() - { - return $this->vpnTunnels; - } - /** - * @param Google_Service_Compute_VpnTunnelsScopedListWarning - */ - public function setWarning(Google_Service_Compute_VpnTunnelsScopedListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_VpnTunnelsScopedListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnTunnelsScopedListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnTunnelsScopedListWarning.php deleted file mode 100644 index b4856ba4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnTunnelsScopedListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_VpnTunnelsScopedListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_VpnTunnelsScopedListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnTunnelsScopedListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnTunnelsScopedListWarningData.php deleted file mode 100644 index 4a1437cb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/VpnTunnelsScopedListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/WeightedBackendService.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/WeightedBackendService.php deleted file mode 100644 index 28e78c9f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/WeightedBackendService.php +++ /dev/null @@ -1,55 +0,0 @@ -backendService = $backendService; - } - public function getBackendService() - { - return $this->backendService; - } - /** - * @param Google_Service_Compute_HttpHeaderAction - */ - public function setHeaderAction(Google_Service_Compute_HttpHeaderAction $headerAction) - { - $this->headerAction = $headerAction; - } - /** - * @return Google_Service_Compute_HttpHeaderAction - */ - public function getHeaderAction() - { - return $this->headerAction; - } - public function setWeight($weight) - { - $this->weight = $weight; - } - public function getWeight() - { - return $this->weight; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/XpnHostList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/XpnHostList.php deleted file mode 100644 index a3495e94..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/XpnHostList.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_Project - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_Project - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_XpnHostListWarning - */ - public function setWarning(Google_Service_Compute_XpnHostListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_XpnHostListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/XpnHostListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/XpnHostListWarning.php deleted file mode 100644 index 5b50af95..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/XpnHostListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_XpnHostListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_XpnHostListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/XpnHostListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/XpnHostListWarningData.php deleted file mode 100644 index a6cbd6eb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/XpnHostListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/XpnResourceId.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/XpnResourceId.php deleted file mode 100644 index 06761302..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/XpnResourceId.php +++ /dev/null @@ -1,39 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Zone.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Zone.php deleted file mode 100644 index b1bedd8d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/Zone.php +++ /dev/null @@ -1,119 +0,0 @@ -availableCpuPlatforms = $availableCpuPlatforms; - } - public function getAvailableCpuPlatforms() - { - return $this->availableCpuPlatforms; - } - public function setCreationTimestamp($creationTimestamp) - { - $this->creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - /** - * @param Google_Service_Compute_DeprecationStatus - */ - public function setDeprecated(Google_Service_Compute_DeprecationStatus $deprecated) - { - $this->deprecated = $deprecated; - } - /** - * @return Google_Service_Compute_DeprecationStatus - */ - public function getDeprecated() - { - return $this->deprecated; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ZoneList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ZoneList.php deleted file mode 100644 index 68225c41..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ZoneList.php +++ /dev/null @@ -1,90 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Compute_Zone - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Compute_Zone - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Compute_ZoneListWarning - */ - public function setWarning(Google_Service_Compute_ZoneListWarning $warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_Compute_ZoneListWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ZoneListWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ZoneListWarning.php deleted file mode 100644 index 7b42f82c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ZoneListWarning.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Compute_ZoneListWarningData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Compute_ZoneListWarningData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ZoneListWarningData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ZoneListWarningData.php deleted file mode 100644 index 0297c0c1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ZoneListWarningData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ZoneSetLabelsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ZoneSetLabelsRequest.php deleted file mode 100644 index 3b838d6a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ZoneSetLabelsRequest.php +++ /dev/null @@ -1,39 +0,0 @@ -labelFingerprint = $labelFingerprint; - } - public function getLabelFingerprint() - { - return $this->labelFingerprint; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ZoneSetPolicyRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ZoneSetPolicyRequest.php deleted file mode 100644 index 05c3f96d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Compute/ZoneSetPolicyRequest.php +++ /dev/null @@ -1,63 +0,0 @@ -bindings = $bindings; - } - /** - * @return Google_Service_Compute_Binding - */ - public function getBindings() - { - return $this->bindings; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_Compute_Policy - */ - public function setPolicy(Google_Service_Compute_Policy $policy) - { - $this->policy = $policy; - } - /** - * @return Google_Service_Compute_Policy - */ - public function getPolicy() - { - return $this->policy; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys.php deleted file mode 100644 index db5e29b9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys.php +++ /dev/null @@ -1,210 +0,0 @@ - - * Creates and conducts surveys, lists the surveys that an authenticated user - * owns, and retrieves survey results and information about specified surveys.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_ConsumerSurveys extends Google_Service -{ - /** View and edit your surveys and results. */ - const CONSUMERSURVEYS = - "https://www.googleapis.com/auth/consumersurveys"; - /** View the results for your surveys. */ - const CONSUMERSURVEYS_READONLY = - "https://www.googleapis.com/auth/consumersurveys.readonly"; - /** View your email address. */ - const USERINFO_EMAIL = - "https://www.googleapis.com/auth/userinfo.email"; - - public $mobileapppanels; - public $results; - public $surveys; - - /** - * Constructs the internal representation of the ConsumerSurveys service. - * - * @param Google_Client $client - */ - public function __construct(Google_Client $client) - { - parent::__construct($client); - $this->rootUrl = 'https://www.googleapis.com/'; - $this->servicePath = 'consumersurveys/v2/'; - $this->version = 'v2'; - $this->serviceName = 'consumersurveys'; - - $this->mobileapppanels = new Google_Service_ConsumerSurveys_Resource_Mobileapppanels( - $this, - $this->serviceName, - 'mobileapppanels', - array( - 'methods' => array( - 'get' => array( - 'path' => 'mobileAppPanels/{panelId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'panelId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'mobileAppPanels', - 'httpMethod' => 'GET', - 'parameters' => array( - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'startIndex' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'token' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'mobileAppPanels/{panelId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'panelId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->results = new Google_Service_ConsumerSurveys_Resource_Results( - $this, - $this->serviceName, - 'results', - array( - 'methods' => array( - 'get' => array( - 'path' => 'surveys/{surveyUrlId}/results', - 'httpMethod' => 'GET', - 'parameters' => array( - 'surveyUrlId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->surveys = new Google_Service_ConsumerSurveys_Resource_Surveys( - $this, - $this->serviceName, - 'surveys', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'surveys/{surveyUrlId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'surveyUrlId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'surveys/{surveyUrlId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'surveyUrlId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'surveys', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'list' => array( - 'path' => 'surveys', - 'httpMethod' => 'GET', - 'parameters' => array( - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'startIndex' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'token' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'start' => array( - 'path' => 'surveys/{resourceId}/start', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resourceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'stop' => array( - 'path' => 'surveys/{resourceId}/stop', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resourceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'surveys/{surveyUrlId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'surveyUrlId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/FieldMask.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/FieldMask.php deleted file mode 100644 index 4ec900da..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/FieldMask.php +++ /dev/null @@ -1,47 +0,0 @@ -fields = $fields; - } - /** - * @return Google_Service_ConsumerSurveys_FieldMask - */ - public function getFields() - { - return $this->fields; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/MobileAppPanel.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/MobileAppPanel.php deleted file mode 100644 index a357b49d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/MobileAppPanel.php +++ /dev/null @@ -1,76 +0,0 @@ -country = $country; - } - public function getCountry() - { - return $this->country; - } - public function setIsPublicPanel($isPublicPanel) - { - $this->isPublicPanel = $isPublicPanel; - } - public function getIsPublicPanel() - { - return $this->isPublicPanel; - } - public function setLanguage($language) - { - $this->language = $language; - } - public function getLanguage() - { - return $this->language; - } - public function setMobileAppPanelId($mobileAppPanelId) - { - $this->mobileAppPanelId = $mobileAppPanelId; - } - public function getMobileAppPanelId() - { - return $this->mobileAppPanelId; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOwners($owners) - { - $this->owners = $owners; - } - public function getOwners() - { - return $this->owners; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/MobileAppPanelsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/MobileAppPanelsListResponse.php deleted file mode 100644 index c08e51c7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/MobileAppPanelsListResponse.php +++ /dev/null @@ -1,79 +0,0 @@ -pageInfo = $pageInfo; - } - /** - * @return Google_Service_ConsumerSurveys_PageInfo - */ - public function getPageInfo() - { - return $this->pageInfo; - } - public function setRequestId($requestId) - { - $this->requestId = $requestId; - } - public function getRequestId() - { - return $this->requestId; - } - /** - * @param Google_Service_ConsumerSurveys_MobileAppPanel - */ - public function setResources($resources) - { - $this->resources = $resources; - } - /** - * @return Google_Service_ConsumerSurveys_MobileAppPanel - */ - public function getResources() - { - return $this->resources; - } - /** - * @param Google_Service_ConsumerSurveys_TokenPagination - */ - public function setTokenPagination(Google_Service_ConsumerSurveys_TokenPagination $tokenPagination) - { - $this->tokenPagination = $tokenPagination; - } - /** - * @return Google_Service_ConsumerSurveys_TokenPagination - */ - public function getTokenPagination() - { - return $this->tokenPagination; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/PageInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/PageInfo.php deleted file mode 100644 index 821786d6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/PageInfo.php +++ /dev/null @@ -1,48 +0,0 @@ -resultPerPage = $resultPerPage; - } - public function getResultPerPage() - { - return $this->resultPerPage; - } - public function setStartIndex($startIndex) - { - $this->startIndex = $startIndex; - } - public function getStartIndex() - { - return $this->startIndex; - } - public function setTotalResults($totalResults) - { - $this->totalResults = $totalResults; - } - public function getTotalResults() - { - return $this->totalResults; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/Resource/Mobileapppanels.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/Resource/Mobileapppanels.php deleted file mode 100644 index e9e18275..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/Resource/Mobileapppanels.php +++ /dev/null @@ -1,74 +0,0 @@ - - * $consumersurveysService = new Google_Service_ConsumerSurveys(...); - * $mobileapppanels = $consumersurveysService->mobileapppanels; - * - */ -class Google_Service_ConsumerSurveys_Resource_Mobileapppanels extends Google_Service_Resource -{ - /** - * Retrieves a MobileAppPanel that is available to the authenticated user. - * (mobileapppanels.get) - * - * @param string $panelId External URL ID for the panel. - * @param array $optParams Optional parameters. - * @return Google_Service_ConsumerSurveys_MobileAppPanel - */ - public function get($panelId, $optParams = array()) - { - $params = array('panelId' => $panelId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_ConsumerSurveys_MobileAppPanel"); - } - /** - * Lists the MobileAppPanels available to the authenticated user. - * (mobileapppanels.listMobileapppanels) - * - * @param array $optParams Optional parameters. - * - * @opt_param string maxResults - * @opt_param string startIndex - * @opt_param string token - * @return Google_Service_ConsumerSurveys_MobileAppPanelsListResponse - */ - public function listMobileapppanels($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_ConsumerSurveys_MobileAppPanelsListResponse"); - } - /** - * Updates a MobileAppPanel. Currently the only property that can be updated is - * the owners property. (mobileapppanels.update) - * - * @param string $panelId External URL ID for the panel. - * @param Google_Service_ConsumerSurveys_MobileAppPanel $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ConsumerSurveys_MobileAppPanel - */ - public function update($panelId, Google_Service_ConsumerSurveys_MobileAppPanel $postBody, $optParams = array()) - { - $params = array('panelId' => $panelId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_ConsumerSurveys_MobileAppPanel"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/Resource/Results.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/Resource/Results.php deleted file mode 100644 index 561b7c82..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/Resource/Results.php +++ /dev/null @@ -1,43 +0,0 @@ - - * $consumersurveysService = new Google_Service_ConsumerSurveys(...); - * $results = $consumersurveysService->results; - * - */ -class Google_Service_ConsumerSurveys_Resource_Results extends Google_Service_Resource -{ - /** - * Retrieves any survey results that have been produced so far. Results are - * formatted as an Excel file. You must add "?alt=media" to the URL as an - * argument to get results. (results.get) - * - * @param string $surveyUrlId External URL ID for the survey. - * @param array $optParams Optional parameters. - * @return Google_Service_ConsumerSurveys_SurveyResults - */ - public function get($surveyUrlId, $optParams = array()) - { - $params = array('surveyUrlId' => $surveyUrlId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_ConsumerSurveys_SurveyResults"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/Resource/Surveys.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/Resource/Surveys.php deleted file mode 100644 index 4f4f7171..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/Resource/Surveys.php +++ /dev/null @@ -1,125 +0,0 @@ - - * $consumersurveysService = new Google_Service_ConsumerSurveys(...); - * $surveys = $consumersurveysService->surveys; - * - */ -class Google_Service_ConsumerSurveys_Resource_Surveys extends Google_Service_Resource -{ - /** - * Removes a survey from view in all user GET requests. (surveys.delete) - * - * @param string $surveyUrlId External URL ID for the survey. - * @param array $optParams Optional parameters. - * @return Google_Service_ConsumerSurveys_SurveysDeleteResponse - */ - public function delete($surveyUrlId, $optParams = array()) - { - $params = array('surveyUrlId' => $surveyUrlId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_ConsumerSurveys_SurveysDeleteResponse"); - } - /** - * Retrieves information about the specified survey. (surveys.get) - * - * @param string $surveyUrlId External URL ID for the survey. - * @param array $optParams Optional parameters. - * @return Google_Service_ConsumerSurveys_Survey - */ - public function get($surveyUrlId, $optParams = array()) - { - $params = array('surveyUrlId' => $surveyUrlId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_ConsumerSurveys_Survey"); - } - /** - * Creates a survey. (surveys.insert) - * - * @param Google_Service_ConsumerSurveys_Survey $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ConsumerSurveys_Survey - */ - public function insert(Google_Service_ConsumerSurveys_Survey $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_ConsumerSurveys_Survey"); - } - /** - * Lists the surveys owned by the authenticated user. (surveys.listSurveys) - * - * @param array $optParams Optional parameters. - * - * @opt_param string maxResults - * @opt_param string startIndex - * @opt_param string token - * @return Google_Service_ConsumerSurveys_SurveysListResponse - */ - public function listSurveys($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_ConsumerSurveys_SurveysListResponse"); - } - /** - * Begins running a survey. (surveys.start) - * - * @param string $resourceId - * @param Google_Service_ConsumerSurveys_SurveysStartRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ConsumerSurveys_SurveysStartResponse - */ - public function start($resourceId, Google_Service_ConsumerSurveys_SurveysStartRequest $postBody, $optParams = array()) - { - $params = array('resourceId' => $resourceId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('start', array($params), "Google_Service_ConsumerSurveys_SurveysStartResponse"); - } - /** - * Stops a running survey. (surveys.stop) - * - * @param string $resourceId - * @param array $optParams Optional parameters. - * @return Google_Service_ConsumerSurveys_SurveysStopResponse - */ - public function stop($resourceId, $optParams = array()) - { - $params = array('resourceId' => $resourceId); - $params = array_merge($params, $optParams); - return $this->call('stop', array($params), "Google_Service_ConsumerSurveys_SurveysStopResponse"); - } - /** - * Updates a survey. Currently the only property that can be updated is the - * owners property. (surveys.update) - * - * @param string $surveyUrlId External URL ID for the survey. - * @param Google_Service_ConsumerSurveys_Survey $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ConsumerSurveys_Survey - */ - public function update($surveyUrlId, Google_Service_ConsumerSurveys_Survey $postBody, $optParams = array()) - { - $params = array('surveyUrlId' => $surveyUrlId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_ConsumerSurveys_Survey"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/ResultsGetRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/ResultsGetRequest.php deleted file mode 100644 index dfd16d90..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/ResultsGetRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -resultMask = $resultMask; - } - /** - * @return Google_Service_ConsumerSurveys_ResultsMask - */ - public function getResultMask() - { - return $this->resultMask; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/ResultsMask.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/ResultsMask.php deleted file mode 100644 index a19d8f77..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/ResultsMask.php +++ /dev/null @@ -1,47 +0,0 @@ -fields = $fields; - } - /** - * @return Google_Service_ConsumerSurveys_FieldMask - */ - public function getFields() - { - return $this->fields; - } - public function setProjection($projection) - { - $this->projection = $projection; - } - public function getProjection() - { - return $this->projection; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/Survey.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/Survey.php deleted file mode 100644 index 405ab261..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/Survey.php +++ /dev/null @@ -1,149 +0,0 @@ -audience = $audience; - } - /** - * @return Google_Service_ConsumerSurveys_SurveyAudience - */ - public function getAudience() - { - return $this->audience; - } - /** - * @param Google_Service_ConsumerSurveys_SurveyCost - */ - public function setCost(Google_Service_ConsumerSurveys_SurveyCost $cost) - { - $this->cost = $cost; - } - /** - * @return Google_Service_ConsumerSurveys_SurveyCost - */ - public function getCost() - { - return $this->cost; - } - public function setCustomerData($customerData) - { - $this->customerData = $customerData; - } - public function getCustomerData() - { - return $this->customerData; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setOwners($owners) - { - $this->owners = $owners; - } - public function getOwners() - { - return $this->owners; - } - /** - * @param Google_Service_ConsumerSurveys_SurveyQuestion - */ - public function setQuestions($questions) - { - $this->questions = $questions; - } - /** - * @return Google_Service_ConsumerSurveys_SurveyQuestion - */ - public function getQuestions() - { - return $this->questions; - } - /** - * @param Google_Service_ConsumerSurveys_SurveyRejection - */ - public function setRejectionReason(Google_Service_ConsumerSurveys_SurveyRejection $rejectionReason) - { - $this->rejectionReason = $rejectionReason; - } - /** - * @return Google_Service_ConsumerSurveys_SurveyRejection - */ - public function getRejectionReason() - { - return $this->rejectionReason; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setSurveyUrlId($surveyUrlId) - { - $this->surveyUrlId = $surveyUrlId; - } - public function getSurveyUrlId() - { - return $this->surveyUrlId; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setWantedResponseCount($wantedResponseCount) - { - $this->wantedResponseCount = $wantedResponseCount; - } - public function getWantedResponseCount() - { - return $this->wantedResponseCount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/SurveyAudience.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/SurveyAudience.php deleted file mode 100644 index 5eb8715e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/SurveyAudience.php +++ /dev/null @@ -1,85 +0,0 @@ -ages = $ages; - } - public function getAges() - { - return $this->ages; - } - public function setCountry($country) - { - $this->country = $country; - } - public function getCountry() - { - return $this->country; - } - public function setCountrySubdivision($countrySubdivision) - { - $this->countrySubdivision = $countrySubdivision; - } - public function getCountrySubdivision() - { - return $this->countrySubdivision; - } - public function setGender($gender) - { - $this->gender = $gender; - } - public function getGender() - { - return $this->gender; - } - public function setLanguages($languages) - { - $this->languages = $languages; - } - public function getLanguages() - { - return $this->languages; - } - public function setMobileAppPanelId($mobileAppPanelId) - { - $this->mobileAppPanelId = $mobileAppPanelId; - } - public function getMobileAppPanelId() - { - return $this->mobileAppPanelId; - } - public function setPopulationSource($populationSource) - { - $this->populationSource = $populationSource; - } - public function getPopulationSource() - { - return $this->populationSource; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/SurveyCost.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/SurveyCost.php deleted file mode 100644 index d33acae7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/SurveyCost.php +++ /dev/null @@ -1,57 +0,0 @@ -costPerResponseNanos = $costPerResponseNanos; - } - public function getCostPerResponseNanos() - { - return $this->costPerResponseNanos; - } - public function setCurrencyCode($currencyCode) - { - $this->currencyCode = $currencyCode; - } - public function getCurrencyCode() - { - return $this->currencyCode; - } - public function setMaxCostPerResponseNanos($maxCostPerResponseNanos) - { - $this->maxCostPerResponseNanos = $maxCostPerResponseNanos; - } - public function getMaxCostPerResponseNanos() - { - return $this->maxCostPerResponseNanos; - } - public function setNanos($nanos) - { - $this->nanos = $nanos; - } - public function getNanos() - { - return $this->nanos; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/SurveyQuestion.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/SurveyQuestion.php deleted file mode 100644 index 4280a32f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/SurveyQuestion.php +++ /dev/null @@ -1,191 +0,0 @@ -answerOrder = $answerOrder; - } - public function getAnswerOrder() - { - return $this->answerOrder; - } - public function setAnswers($answers) - { - $this->answers = $answers; - } - public function getAnswers() - { - return $this->answers; - } - public function setHasOther($hasOther) - { - $this->hasOther = $hasOther; - } - public function getHasOther() - { - return $this->hasOther; - } - public function setHighValueLabel($highValueLabel) - { - $this->highValueLabel = $highValueLabel; - } - public function getHighValueLabel() - { - return $this->highValueLabel; - } - /** - * @param Google_Service_ConsumerSurveys_SurveyQuestionImage - */ - public function setImages($images) - { - $this->images = $images; - } - /** - * @return Google_Service_ConsumerSurveys_SurveyQuestionImage - */ - public function getImages() - { - return $this->images; - } - public function setLastAnswerPositionPinned($lastAnswerPositionPinned) - { - $this->lastAnswerPositionPinned = $lastAnswerPositionPinned; - } - public function getLastAnswerPositionPinned() - { - return $this->lastAnswerPositionPinned; - } - public function setLowValueLabel($lowValueLabel) - { - $this->lowValueLabel = $lowValueLabel; - } - public function getLowValueLabel() - { - return $this->lowValueLabel; - } - public function setMustPickSuggestion($mustPickSuggestion) - { - $this->mustPickSuggestion = $mustPickSuggestion; - } - public function getMustPickSuggestion() - { - return $this->mustPickSuggestion; - } - public function setNumStars($numStars) - { - $this->numStars = $numStars; - } - public function getNumStars() - { - return $this->numStars; - } - public function setOpenTextPlaceholder($openTextPlaceholder) - { - $this->openTextPlaceholder = $openTextPlaceholder; - } - public function getOpenTextPlaceholder() - { - return $this->openTextPlaceholder; - } - public function setOpenTextSuggestions($openTextSuggestions) - { - $this->openTextSuggestions = $openTextSuggestions; - } - public function getOpenTextSuggestions() - { - return $this->openTextSuggestions; - } - public function setQuestion($question) - { - $this->question = $question; - } - public function getQuestion() - { - return $this->question; - } - public function setSentimentText($sentimentText) - { - $this->sentimentText = $sentimentText; - } - public function getSentimentText() - { - return $this->sentimentText; - } - public function setSingleLineResponse($singleLineResponse) - { - $this->singleLineResponse = $singleLineResponse; - } - public function getSingleLineResponse() - { - return $this->singleLineResponse; - } - public function setThresholdAnswers($thresholdAnswers) - { - $this->thresholdAnswers = $thresholdAnswers; - } - public function getThresholdAnswers() - { - return $this->thresholdAnswers; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setUnitOfMeasurementLabel($unitOfMeasurementLabel) - { - $this->unitOfMeasurementLabel = $unitOfMeasurementLabel; - } - public function getUnitOfMeasurementLabel() - { - return $this->unitOfMeasurementLabel; - } - public function setVideoId($videoId) - { - $this->videoId = $videoId; - } - public function getVideoId() - { - return $this->videoId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/SurveyQuestionImage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/SurveyQuestionImage.php deleted file mode 100644 index e802f673..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/SurveyQuestionImage.php +++ /dev/null @@ -1,48 +0,0 @@ -altText = $altText; - } - public function getAltText() - { - return $this->altText; - } - public function setData($data) - { - $this->data = $data; - } - public function getData() - { - return $this->data; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/SurveyRejection.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/SurveyRejection.php deleted file mode 100644 index af299239..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/SurveyRejection.php +++ /dev/null @@ -1,39 +0,0 @@ -explanation = $explanation; - } - public function getExplanation() - { - return $this->explanation; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/SurveyResults.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/SurveyResults.php deleted file mode 100644 index a5fae0b5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/SurveyResults.php +++ /dev/null @@ -1,39 +0,0 @@ -status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setSurveyUrlId($surveyUrlId) - { - $this->surveyUrlId = $surveyUrlId; - } - public function getSurveyUrlId() - { - return $this->surveyUrlId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/SurveysDeleteResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/SurveysDeleteResponse.php deleted file mode 100644 index 079b1058..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/SurveysDeleteResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -requestId = $requestId; - } - public function getRequestId() - { - return $this->requestId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/SurveysListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/SurveysListResponse.php deleted file mode 100644 index e3a8c72b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/SurveysListResponse.php +++ /dev/null @@ -1,79 +0,0 @@ -pageInfo = $pageInfo; - } - /** - * @return Google_Service_ConsumerSurveys_PageInfo - */ - public function getPageInfo() - { - return $this->pageInfo; - } - public function setRequestId($requestId) - { - $this->requestId = $requestId; - } - public function getRequestId() - { - return $this->requestId; - } - /** - * @param Google_Service_ConsumerSurveys_Survey - */ - public function setResources($resources) - { - $this->resources = $resources; - } - /** - * @return Google_Service_ConsumerSurveys_Survey - */ - public function getResources() - { - return $this->resources; - } - /** - * @param Google_Service_ConsumerSurveys_TokenPagination - */ - public function setTokenPagination(Google_Service_ConsumerSurveys_TokenPagination $tokenPagination) - { - $this->tokenPagination = $tokenPagination; - } - /** - * @return Google_Service_ConsumerSurveys_TokenPagination - */ - public function getTokenPagination() - { - return $this->tokenPagination; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/SurveysStartRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/SurveysStartRequest.php deleted file mode 100644 index de11ae44..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/SurveysStartRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -maxCostPerResponseNanos = $maxCostPerResponseNanos; - } - public function getMaxCostPerResponseNanos() - { - return $this->maxCostPerResponseNanos; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/SurveysStartResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/SurveysStartResponse.php deleted file mode 100644 index 8627be48..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/SurveysStartResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -requestId = $requestId; - } - public function getRequestId() - { - return $this->requestId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/SurveysStopResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/SurveysStopResponse.php deleted file mode 100644 index 93807287..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/SurveysStopResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -requestId = $requestId; - } - public function getRequestId() - { - return $this->requestId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/TokenPagination.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/TokenPagination.php deleted file mode 100644 index 61567fda..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ConsumerSurveys/TokenPagination.php +++ /dev/null @@ -1,39 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setPreviousPageToken($previousPageToken) - { - $this->previousPageToken = $previousPageToken; - } - public function getPreviousPageToken() - { - return $this->previousPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container.php deleted file mode 100644 index 4e3d1cbb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container.php +++ /dev/null @@ -1,1262 +0,0 @@ - - * Builds and manages container-based applications, powered by the open source - * Kubernetes technology.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Container extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - - public $projects_aggregated_usableSubnetworks; - public $projects_locations; - public $projects_locations_clusters; - public $projects_locations_clusters_nodePools; - public $projects_locations_clusters_well_known; - public $projects_locations_operations; - public $projects_zones; - public $projects_zones_clusters; - public $projects_zones_clusters_nodePools; - public $projects_zones_operations; - - /** - * Constructs the internal representation of the Container service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://container.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'container'; - - $this->projects_aggregated_usableSubnetworks = new Google_Service_Container_Resource_ProjectsAggregatedUsableSubnetworks( - $this, - $this->serviceName, - 'usableSubnetworks', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1/{+parent}/aggregated/usableSubnetworks', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_locations = new Google_Service_Container_Resource_ProjectsLocations( - $this, - $this->serviceName, - 'locations', - array( - 'methods' => array( - 'getServerConfig' => array( - 'path' => 'v1/{+name}/serverConfig', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'projectId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'zone' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_locations_clusters = new Google_Service_Container_Resource_ProjectsLocationsClusters( - $this, - $this->serviceName, - 'clusters', - array( - 'methods' => array( - 'completeIpRotation' => array( - 'path' => 'v1/{+name}:completeIpRotation', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'create' => array( - 'path' => 'v1/{+parent}/clusters', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'projectId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'zone' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'clusterId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'projectId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'zone' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'clusterId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'getJwks' => array( - 'path' => 'v1/{+parent}/jwks', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/clusters', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'projectId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'zone' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setAddons' => array( - 'path' => 'v1/{+name}:setAddons', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setLegacyAbac' => array( - 'path' => 'v1/{+name}:setLegacyAbac', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setLocations' => array( - 'path' => 'v1/{+name}:setLocations', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setLogging' => array( - 'path' => 'v1/{+name}:setLogging', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setMaintenancePolicy' => array( - 'path' => 'v1/{+name}:setMaintenancePolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setMasterAuth' => array( - 'path' => 'v1/{+name}:setMasterAuth', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setMonitoring' => array( - 'path' => 'v1/{+name}:setMonitoring', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setNetworkPolicy' => array( - 'path' => 'v1/{+name}:setNetworkPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setResourceLabels' => array( - 'path' => 'v1/{+name}:setResourceLabels', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'startIpRotation' => array( - 'path' => 'v1/{+name}:startIpRotation', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'updateMaster' => array( - 'path' => 'v1/{+name}:updateMaster', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_locations_clusters_nodePools = new Google_Service_Container_Resource_ProjectsLocationsClustersNodePools( - $this, - $this->serviceName, - 'nodePools', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/nodePools', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'projectId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'zone' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'clusterId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'nodePoolId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'projectId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'zone' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'clusterId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'nodePoolId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/nodePools', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'projectId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'zone' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'clusterId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'rollback' => array( - 'path' => 'v1/{+name}:rollback', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setAutoscaling' => array( - 'path' => 'v1/{+name}:setAutoscaling', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setManagement' => array( - 'path' => 'v1/{+name}:setManagement', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setSize' => array( - 'path' => 'v1/{+name}:setSize', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_locations_clusters_well_known = new Google_Service_Container_Resource_ProjectsLocationsClustersWellKnown( - $this, - $this->serviceName, - 'well_known', - array( - 'methods' => array( - 'getOpenid-configuration' => array( - 'path' => 'v1/{+parent}/.well-known/openid-configuration', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_locations_operations = new Google_Service_Container_Resource_ProjectsLocationsOperations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'cancel' => array( - 'path' => 'v1/{+name}:cancel', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'operationId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'projectId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'zone' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/operations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'projectId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_zones = new Google_Service_Container_Resource_ProjectsZones( - $this, - $this->serviceName, - 'zones', - array( - 'methods' => array( - 'getServerconfig' => array( - 'path' => 'v1/projects/{projectId}/zones/{zone}/serverconfig', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'name' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_zones_clusters = new Google_Service_Container_Resource_ProjectsZonesClusters( - $this, - $this->serviceName, - 'clusters', - array( - 'methods' => array( - 'addons' => array( - 'path' => 'v1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/addons', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clusterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'completeIpRotation' => array( - 'path' => 'v1/projects/{projectId}/zones/{zone}/clusters/{clusterId}:completeIpRotation', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clusterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'create' => array( - 'path' => 'v1/projects/{projectId}/zones/{zone}/clusters', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/projects/{projectId}/zones/{zone}/clusters/{clusterId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clusterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'name' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'v1/projects/{projectId}/zones/{zone}/clusters/{clusterId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clusterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'name' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'legacyAbac' => array( - 'path' => 'v1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/legacyAbac', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clusterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/projects/{projectId}/zones/{zone}/clusters', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'parent' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'locations' => array( - 'path' => 'v1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/locations', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clusterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'logging' => array( - 'path' => 'v1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/logging', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clusterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'master' => array( - 'path' => 'v1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/master', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clusterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'monitoring' => array( - 'path' => 'v1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/monitoring', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clusterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'resourceLabels' => array( - 'path' => 'v1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/resourceLabels', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clusterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setMaintenancePolicy' => array( - 'path' => 'v1/projects/{projectId}/zones/{zone}/clusters/{clusterId}:setMaintenancePolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clusterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setMasterAuth' => array( - 'path' => 'v1/projects/{projectId}/zones/{zone}/clusters/{clusterId}:setMasterAuth', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clusterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setNetworkPolicy' => array( - 'path' => 'v1/projects/{projectId}/zones/{zone}/clusters/{clusterId}:setNetworkPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clusterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'startIpRotation' => array( - 'path' => 'v1/projects/{projectId}/zones/{zone}/clusters/{clusterId}:startIpRotation', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clusterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'v1/projects/{projectId}/zones/{zone}/clusters/{clusterId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clusterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_zones_clusters_nodePools = new Google_Service_Container_Resource_ProjectsZonesClustersNodePools( - $this, - $this->serviceName, - 'nodePools', - array( - 'methods' => array( - 'autoscaling' => array( - 'path' => 'v1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/nodePools/{nodePoolId}/autoscaling', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clusterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'nodePoolId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'create' => array( - 'path' => 'v1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/nodePools', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clusterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/nodePools/{nodePoolId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clusterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'nodePoolId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'name' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'v1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/nodePools/{nodePoolId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clusterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'nodePoolId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'name' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'v1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/nodePools', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clusterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'parent' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'rollback' => array( - 'path' => 'v1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/nodePools/{nodePoolId}:rollback', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clusterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'nodePoolId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setManagement' => array( - 'path' => 'v1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/nodePools/{nodePoolId}/setManagement', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clusterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'nodePoolId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setSize' => array( - 'path' => 'v1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/nodePools/{nodePoolId}/setSize', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clusterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'nodePoolId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'v1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/nodePools/{nodePoolId}/update', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clusterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'nodePoolId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_zones_operations = new Google_Service_Container_Resource_ProjectsZonesOperations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'cancel' => array( - 'path' => 'v1/projects/{projectId}/zones/{zone}/operations/{operationId}:cancel', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'operationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/projects/{projectId}/zones/{zone}/operations/{operationId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'operationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'name' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'v1/projects/{projectId}/zones/{zone}/operations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'parent' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/AcceleratorConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/AcceleratorConfig.php deleted file mode 100644 index 9896cba3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/AcceleratorConfig.php +++ /dev/null @@ -1,39 +0,0 @@ -acceleratorCount = $acceleratorCount; - } - public function getAcceleratorCount() - { - return $this->acceleratorCount; - } - public function setAcceleratorType($acceleratorType) - { - $this->acceleratorType = $acceleratorType; - } - public function getAcceleratorType() - { - return $this->acceleratorType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/AddonsConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/AddonsConfig.php deleted file mode 100644 index 7db7f987..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/AddonsConfig.php +++ /dev/null @@ -1,101 +0,0 @@ -cloudRunConfig = $cloudRunConfig; - } - /** - * @return Google_Service_Container_CloudRunConfig - */ - public function getCloudRunConfig() - { - return $this->cloudRunConfig; - } - /** - * @param Google_Service_Container_HorizontalPodAutoscaling - */ - public function setHorizontalPodAutoscaling(Google_Service_Container_HorizontalPodAutoscaling $horizontalPodAutoscaling) - { - $this->horizontalPodAutoscaling = $horizontalPodAutoscaling; - } - /** - * @return Google_Service_Container_HorizontalPodAutoscaling - */ - public function getHorizontalPodAutoscaling() - { - return $this->horizontalPodAutoscaling; - } - /** - * @param Google_Service_Container_HttpLoadBalancing - */ - public function setHttpLoadBalancing(Google_Service_Container_HttpLoadBalancing $httpLoadBalancing) - { - $this->httpLoadBalancing = $httpLoadBalancing; - } - /** - * @return Google_Service_Container_HttpLoadBalancing - */ - public function getHttpLoadBalancing() - { - return $this->httpLoadBalancing; - } - /** - * @param Google_Service_Container_KubernetesDashboard - */ - public function setKubernetesDashboard(Google_Service_Container_KubernetesDashboard $kubernetesDashboard) - { - $this->kubernetesDashboard = $kubernetesDashboard; - } - /** - * @return Google_Service_Container_KubernetesDashboard - */ - public function getKubernetesDashboard() - { - return $this->kubernetesDashboard; - } - /** - * @param Google_Service_Container_NetworkPolicyConfig - */ - public function setNetworkPolicyConfig(Google_Service_Container_NetworkPolicyConfig $networkPolicyConfig) - { - $this->networkPolicyConfig = $networkPolicyConfig; - } - /** - * @return Google_Service_Container_NetworkPolicyConfig - */ - public function getNetworkPolicyConfig() - { - return $this->networkPolicyConfig; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/AuthenticatorGroupsConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/AuthenticatorGroupsConfig.php deleted file mode 100644 index 00e3ce52..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/AuthenticatorGroupsConfig.php +++ /dev/null @@ -1,39 +0,0 @@ -enabled = $enabled; - } - public function getEnabled() - { - return $this->enabled; - } - public function setSecurityGroup($securityGroup) - { - $this->securityGroup = $securityGroup; - } - public function getSecurityGroup() - { - return $this->securityGroup; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/AutoUpgradeOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/AutoUpgradeOptions.php deleted file mode 100644 index 05e96a26..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/AutoUpgradeOptions.php +++ /dev/null @@ -1,39 +0,0 @@ -autoUpgradeStartTime = $autoUpgradeStartTime; - } - public function getAutoUpgradeStartTime() - { - return $this->autoUpgradeStartTime; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/AutoprovisioningNodePoolDefaults.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/AutoprovisioningNodePoolDefaults.php deleted file mode 100644 index 9a002557..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/AutoprovisioningNodePoolDefaults.php +++ /dev/null @@ -1,72 +0,0 @@ -management = $management; - } - /** - * @return Google_Service_Container_NodeManagement - */ - public function getManagement() - { - return $this->management; - } - public function setOauthScopes($oauthScopes) - { - $this->oauthScopes = $oauthScopes; - } - public function getOauthScopes() - { - return $this->oauthScopes; - } - public function setServiceAccount($serviceAccount) - { - $this->serviceAccount = $serviceAccount; - } - public function getServiceAccount() - { - return $this->serviceAccount; - } - /** - * @param Google_Service_Container_UpgradeSettings - */ - public function setUpgradeSettings(Google_Service_Container_UpgradeSettings $upgradeSettings) - { - $this->upgradeSettings = $upgradeSettings; - } - /** - * @return Google_Service_Container_UpgradeSettings - */ - public function getUpgradeSettings() - { - return $this->upgradeSettings; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/BigQueryDestination.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/BigQueryDestination.php deleted file mode 100644 index 834ebaf8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/BigQueryDestination.php +++ /dev/null @@ -1,30 +0,0 @@ -datasetId = $datasetId; - } - public function getDatasetId() - { - return $this->datasetId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/BinaryAuthorization.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/BinaryAuthorization.php deleted file mode 100644 index 4a8c095f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/BinaryAuthorization.php +++ /dev/null @@ -1,30 +0,0 @@ -enabled = $enabled; - } - public function getEnabled() - { - return $this->enabled; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/CancelOperationRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/CancelOperationRequest.php deleted file mode 100644 index 4a3d2957..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/CancelOperationRequest.php +++ /dev/null @@ -1,57 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setOperationId($operationId) - { - $this->operationId = $operationId; - } - public function getOperationId() - { - return $this->operationId; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } - public function setZone($zone) - { - $this->zone = $zone; - } - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/CidrBlock.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/CidrBlock.php deleted file mode 100644 index db4c75ca..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/CidrBlock.php +++ /dev/null @@ -1,39 +0,0 @@ -cidrBlock = $cidrBlock; - } - public function getCidrBlock() - { - return $this->cidrBlock; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/ClientCertificateConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/ClientCertificateConfig.php deleted file mode 100644 index 54e4519d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/ClientCertificateConfig.php +++ /dev/null @@ -1,30 +0,0 @@ -issueClientCertificate = $issueClientCertificate; - } - public function getIssueClientCertificate() - { - return $this->issueClientCertificate; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/CloudRunConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/CloudRunConfig.php deleted file mode 100644 index e542342e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/CloudRunConfig.php +++ /dev/null @@ -1,30 +0,0 @@ -disabled = $disabled; - } - public function getDisabled() - { - return $this->disabled; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/Cluster.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/Cluster.php deleted file mode 100644 index cf35c042..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/Cluster.php +++ /dev/null @@ -1,603 +0,0 @@ -addonsConfig = $addonsConfig; - } - /** - * @return Google_Service_Container_AddonsConfig - */ - public function getAddonsConfig() - { - return $this->addonsConfig; - } - /** - * @param Google_Service_Container_AuthenticatorGroupsConfig - */ - public function setAuthenticatorGroupsConfig(Google_Service_Container_AuthenticatorGroupsConfig $authenticatorGroupsConfig) - { - $this->authenticatorGroupsConfig = $authenticatorGroupsConfig; - } - /** - * @return Google_Service_Container_AuthenticatorGroupsConfig - */ - public function getAuthenticatorGroupsConfig() - { - return $this->authenticatorGroupsConfig; - } - /** - * @param Google_Service_Container_ClusterAutoscaling - */ - public function setAutoscaling(Google_Service_Container_ClusterAutoscaling $autoscaling) - { - $this->autoscaling = $autoscaling; - } - /** - * @return Google_Service_Container_ClusterAutoscaling - */ - public function getAutoscaling() - { - return $this->autoscaling; - } - /** - * @param Google_Service_Container_BinaryAuthorization - */ - public function setBinaryAuthorization(Google_Service_Container_BinaryAuthorization $binaryAuthorization) - { - $this->binaryAuthorization = $binaryAuthorization; - } - /** - * @return Google_Service_Container_BinaryAuthorization - */ - public function getBinaryAuthorization() - { - return $this->binaryAuthorization; - } - public function setClusterIpv4Cidr($clusterIpv4Cidr) - { - $this->clusterIpv4Cidr = $clusterIpv4Cidr; - } - public function getClusterIpv4Cidr() - { - return $this->clusterIpv4Cidr; - } - /** - * @param Google_Service_Container_StatusCondition - */ - public function setConditions($conditions) - { - $this->conditions = $conditions; - } - /** - * @return Google_Service_Container_StatusCondition - */ - public function getConditions() - { - return $this->conditions; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setCurrentMasterVersion($currentMasterVersion) - { - $this->currentMasterVersion = $currentMasterVersion; - } - public function getCurrentMasterVersion() - { - return $this->currentMasterVersion; - } - public function setCurrentNodeCount($currentNodeCount) - { - $this->currentNodeCount = $currentNodeCount; - } - public function getCurrentNodeCount() - { - return $this->currentNodeCount; - } - public function setCurrentNodeVersion($currentNodeVersion) - { - $this->currentNodeVersion = $currentNodeVersion; - } - public function getCurrentNodeVersion() - { - return $this->currentNodeVersion; - } - /** - * @param Google_Service_Container_DatabaseEncryption - */ - public function setDatabaseEncryption(Google_Service_Container_DatabaseEncryption $databaseEncryption) - { - $this->databaseEncryption = $databaseEncryption; - } - /** - * @return Google_Service_Container_DatabaseEncryption - */ - public function getDatabaseEncryption() - { - return $this->databaseEncryption; - } - /** - * @param Google_Service_Container_MaxPodsConstraint - */ - public function setDefaultMaxPodsConstraint(Google_Service_Container_MaxPodsConstraint $defaultMaxPodsConstraint) - { - $this->defaultMaxPodsConstraint = $defaultMaxPodsConstraint; - } - /** - * @return Google_Service_Container_MaxPodsConstraint - */ - public function getDefaultMaxPodsConstraint() - { - return $this->defaultMaxPodsConstraint; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setEnableKubernetesAlpha($enableKubernetesAlpha) - { - $this->enableKubernetesAlpha = $enableKubernetesAlpha; - } - public function getEnableKubernetesAlpha() - { - return $this->enableKubernetesAlpha; - } - public function setEnableTpu($enableTpu) - { - $this->enableTpu = $enableTpu; - } - public function getEnableTpu() - { - return $this->enableTpu; - } - public function setEndpoint($endpoint) - { - $this->endpoint = $endpoint; - } - public function getEndpoint() - { - return $this->endpoint; - } - public function setExpireTime($expireTime) - { - $this->expireTime = $expireTime; - } - public function getExpireTime() - { - return $this->expireTime; - } - public function setInitialClusterVersion($initialClusterVersion) - { - $this->initialClusterVersion = $initialClusterVersion; - } - public function getInitialClusterVersion() - { - return $this->initialClusterVersion; - } - public function setInitialNodeCount($initialNodeCount) - { - $this->initialNodeCount = $initialNodeCount; - } - public function getInitialNodeCount() - { - return $this->initialNodeCount; - } - public function setInstanceGroupUrls($instanceGroupUrls) - { - $this->instanceGroupUrls = $instanceGroupUrls; - } - public function getInstanceGroupUrls() - { - return $this->instanceGroupUrls; - } - /** - * @param Google_Service_Container_IPAllocationPolicy - */ - public function setIpAllocationPolicy(Google_Service_Container_IPAllocationPolicy $ipAllocationPolicy) - { - $this->ipAllocationPolicy = $ipAllocationPolicy; - } - /** - * @return Google_Service_Container_IPAllocationPolicy - */ - public function getIpAllocationPolicy() - { - return $this->ipAllocationPolicy; - } - public function setLabelFingerprint($labelFingerprint) - { - $this->labelFingerprint = $labelFingerprint; - } - public function getLabelFingerprint() - { - return $this->labelFingerprint; - } - /** - * @param Google_Service_Container_LegacyAbac - */ - public function setLegacyAbac(Google_Service_Container_LegacyAbac $legacyAbac) - { - $this->legacyAbac = $legacyAbac; - } - /** - * @return Google_Service_Container_LegacyAbac - */ - public function getLegacyAbac() - { - return $this->legacyAbac; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setLocations($locations) - { - $this->locations = $locations; - } - public function getLocations() - { - return $this->locations; - } - public function setLoggingService($loggingService) - { - $this->loggingService = $loggingService; - } - public function getLoggingService() - { - return $this->loggingService; - } - /** - * @param Google_Service_Container_MaintenancePolicy - */ - public function setMaintenancePolicy(Google_Service_Container_MaintenancePolicy $maintenancePolicy) - { - $this->maintenancePolicy = $maintenancePolicy; - } - /** - * @return Google_Service_Container_MaintenancePolicy - */ - public function getMaintenancePolicy() - { - return $this->maintenancePolicy; - } - /** - * @param Google_Service_Container_MasterAuth - */ - public function setMasterAuth(Google_Service_Container_MasterAuth $masterAuth) - { - $this->masterAuth = $masterAuth; - } - /** - * @return Google_Service_Container_MasterAuth - */ - public function getMasterAuth() - { - return $this->masterAuth; - } - /** - * @param Google_Service_Container_MasterAuthorizedNetworksConfig - */ - public function setMasterAuthorizedNetworksConfig(Google_Service_Container_MasterAuthorizedNetworksConfig $masterAuthorizedNetworksConfig) - { - $this->masterAuthorizedNetworksConfig = $masterAuthorizedNetworksConfig; - } - /** - * @return Google_Service_Container_MasterAuthorizedNetworksConfig - */ - public function getMasterAuthorizedNetworksConfig() - { - return $this->masterAuthorizedNetworksConfig; - } - public function setMonitoringService($monitoringService) - { - $this->monitoringService = $monitoringService; - } - public function getMonitoringService() - { - return $this->monitoringService; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNetwork($network) - { - $this->network = $network; - } - public function getNetwork() - { - return $this->network; - } - /** - * @param Google_Service_Container_NetworkConfig - */ - public function setNetworkConfig(Google_Service_Container_NetworkConfig $networkConfig) - { - $this->networkConfig = $networkConfig; - } - /** - * @return Google_Service_Container_NetworkConfig - */ - public function getNetworkConfig() - { - return $this->networkConfig; - } - /** - * @param Google_Service_Container_NetworkPolicy - */ - public function setNetworkPolicy(Google_Service_Container_NetworkPolicy $networkPolicy) - { - $this->networkPolicy = $networkPolicy; - } - /** - * @return Google_Service_Container_NetworkPolicy - */ - public function getNetworkPolicy() - { - return $this->networkPolicy; - } - /** - * @param Google_Service_Container_NodeConfig - */ - public function setNodeConfig(Google_Service_Container_NodeConfig $nodeConfig) - { - $this->nodeConfig = $nodeConfig; - } - /** - * @return Google_Service_Container_NodeConfig - */ - public function getNodeConfig() - { - return $this->nodeConfig; - } - public function setNodeIpv4CidrSize($nodeIpv4CidrSize) - { - $this->nodeIpv4CidrSize = $nodeIpv4CidrSize; - } - public function getNodeIpv4CidrSize() - { - return $this->nodeIpv4CidrSize; - } - /** - * @param Google_Service_Container_NodePool - */ - public function setNodePools($nodePools) - { - $this->nodePools = $nodePools; - } - /** - * @return Google_Service_Container_NodePool - */ - public function getNodePools() - { - return $this->nodePools; - } - /** - * @param Google_Service_Container_PrivateClusterConfig - */ - public function setPrivateClusterConfig(Google_Service_Container_PrivateClusterConfig $privateClusterConfig) - { - $this->privateClusterConfig = $privateClusterConfig; - } - /** - * @return Google_Service_Container_PrivateClusterConfig - */ - public function getPrivateClusterConfig() - { - return $this->privateClusterConfig; - } - public function setResourceLabels($resourceLabels) - { - $this->resourceLabels = $resourceLabels; - } - public function getResourceLabels() - { - return $this->resourceLabels; - } - /** - * @param Google_Service_Container_ResourceUsageExportConfig - */ - public function setResourceUsageExportConfig(Google_Service_Container_ResourceUsageExportConfig $resourceUsageExportConfig) - { - $this->resourceUsageExportConfig = $resourceUsageExportConfig; - } - /** - * @return Google_Service_Container_ResourceUsageExportConfig - */ - public function getResourceUsageExportConfig() - { - return $this->resourceUsageExportConfig; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setServicesIpv4Cidr($servicesIpv4Cidr) - { - $this->servicesIpv4Cidr = $servicesIpv4Cidr; - } - public function getServicesIpv4Cidr() - { - return $this->servicesIpv4Cidr; - } - /** - * @param Google_Service_Container_ShieldedNodes - */ - public function setShieldedNodes(Google_Service_Container_ShieldedNodes $shieldedNodes) - { - $this->shieldedNodes = $shieldedNodes; - } - /** - * @return Google_Service_Container_ShieldedNodes - */ - public function getShieldedNodes() - { - return $this->shieldedNodes; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setStatusMessage($statusMessage) - { - $this->statusMessage = $statusMessage; - } - public function getStatusMessage() - { - return $this->statusMessage; - } - public function setSubnetwork($subnetwork) - { - $this->subnetwork = $subnetwork; - } - public function getSubnetwork() - { - return $this->subnetwork; - } - public function setTpuIpv4CidrBlock($tpuIpv4CidrBlock) - { - $this->tpuIpv4CidrBlock = $tpuIpv4CidrBlock; - } - public function getTpuIpv4CidrBlock() - { - return $this->tpuIpv4CidrBlock; - } - /** - * @param Google_Service_Container_VerticalPodAutoscaling - */ - public function setVerticalPodAutoscaling(Google_Service_Container_VerticalPodAutoscaling $verticalPodAutoscaling) - { - $this->verticalPodAutoscaling = $verticalPodAutoscaling; - } - /** - * @return Google_Service_Container_VerticalPodAutoscaling - */ - public function getVerticalPodAutoscaling() - { - return $this->verticalPodAutoscaling; - } - public function setZone($zone) - { - $this->zone = $zone; - } - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/ClusterAutoscaling.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/ClusterAutoscaling.php deleted file mode 100644 index 83345b17..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/ClusterAutoscaling.php +++ /dev/null @@ -1,72 +0,0 @@ -autoprovisioningLocations = $autoprovisioningLocations; - } - public function getAutoprovisioningLocations() - { - return $this->autoprovisioningLocations; - } - /** - * @param Google_Service_Container_AutoprovisioningNodePoolDefaults - */ - public function setAutoprovisioningNodePoolDefaults(Google_Service_Container_AutoprovisioningNodePoolDefaults $autoprovisioningNodePoolDefaults) - { - $this->autoprovisioningNodePoolDefaults = $autoprovisioningNodePoolDefaults; - } - /** - * @return Google_Service_Container_AutoprovisioningNodePoolDefaults - */ - public function getAutoprovisioningNodePoolDefaults() - { - return $this->autoprovisioningNodePoolDefaults; - } - public function setEnableNodeAutoprovisioning($enableNodeAutoprovisioning) - { - $this->enableNodeAutoprovisioning = $enableNodeAutoprovisioning; - } - public function getEnableNodeAutoprovisioning() - { - return $this->enableNodeAutoprovisioning; - } - /** - * @param Google_Service_Container_ResourceLimit - */ - public function setResourceLimits($resourceLimits) - { - $this->resourceLimits = $resourceLimits; - } - /** - * @return Google_Service_Container_ResourceLimit - */ - public function getResourceLimits() - { - return $this->resourceLimits; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/ClusterUpdate.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/ClusterUpdate.php deleted file mode 100644 index 5a2aed2b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/ClusterUpdate.php +++ /dev/null @@ -1,245 +0,0 @@ -desiredAddonsConfig = $desiredAddonsConfig; - } - /** - * @return Google_Service_Container_AddonsConfig - */ - public function getDesiredAddonsConfig() - { - return $this->desiredAddonsConfig; - } - /** - * @param Google_Service_Container_BinaryAuthorization - */ - public function setDesiredBinaryAuthorization(Google_Service_Container_BinaryAuthorization $desiredBinaryAuthorization) - { - $this->desiredBinaryAuthorization = $desiredBinaryAuthorization; - } - /** - * @return Google_Service_Container_BinaryAuthorization - */ - public function getDesiredBinaryAuthorization() - { - return $this->desiredBinaryAuthorization; - } - /** - * @param Google_Service_Container_ClusterAutoscaling - */ - public function setDesiredClusterAutoscaling(Google_Service_Container_ClusterAutoscaling $desiredClusterAutoscaling) - { - $this->desiredClusterAutoscaling = $desiredClusterAutoscaling; - } - /** - * @return Google_Service_Container_ClusterAutoscaling - */ - public function getDesiredClusterAutoscaling() - { - return $this->desiredClusterAutoscaling; - } - /** - * @param Google_Service_Container_DatabaseEncryption - */ - public function setDesiredDatabaseEncryption(Google_Service_Container_DatabaseEncryption $desiredDatabaseEncryption) - { - $this->desiredDatabaseEncryption = $desiredDatabaseEncryption; - } - /** - * @return Google_Service_Container_DatabaseEncryption - */ - public function getDesiredDatabaseEncryption() - { - return $this->desiredDatabaseEncryption; - } - public function setDesiredImageType($desiredImageType) - { - $this->desiredImageType = $desiredImageType; - } - public function getDesiredImageType() - { - return $this->desiredImageType; - } - /** - * @param Google_Service_Container_IntraNodeVisibilityConfig - */ - public function setDesiredIntraNodeVisibilityConfig(Google_Service_Container_IntraNodeVisibilityConfig $desiredIntraNodeVisibilityConfig) - { - $this->desiredIntraNodeVisibilityConfig = $desiredIntraNodeVisibilityConfig; - } - /** - * @return Google_Service_Container_IntraNodeVisibilityConfig - */ - public function getDesiredIntraNodeVisibilityConfig() - { - return $this->desiredIntraNodeVisibilityConfig; - } - public function setDesiredLocations($desiredLocations) - { - $this->desiredLocations = $desiredLocations; - } - public function getDesiredLocations() - { - return $this->desiredLocations; - } - public function setDesiredLoggingService($desiredLoggingService) - { - $this->desiredLoggingService = $desiredLoggingService; - } - public function getDesiredLoggingService() - { - return $this->desiredLoggingService; - } - /** - * @param Google_Service_Container_MasterAuthorizedNetworksConfig - */ - public function setDesiredMasterAuthorizedNetworksConfig(Google_Service_Container_MasterAuthorizedNetworksConfig $desiredMasterAuthorizedNetworksConfig) - { - $this->desiredMasterAuthorizedNetworksConfig = $desiredMasterAuthorizedNetworksConfig; - } - /** - * @return Google_Service_Container_MasterAuthorizedNetworksConfig - */ - public function getDesiredMasterAuthorizedNetworksConfig() - { - return $this->desiredMasterAuthorizedNetworksConfig; - } - public function setDesiredMasterVersion($desiredMasterVersion) - { - $this->desiredMasterVersion = $desiredMasterVersion; - } - public function getDesiredMasterVersion() - { - return $this->desiredMasterVersion; - } - public function setDesiredMonitoringService($desiredMonitoringService) - { - $this->desiredMonitoringService = $desiredMonitoringService; - } - public function getDesiredMonitoringService() - { - return $this->desiredMonitoringService; - } - /** - * @param Google_Service_Container_NodePoolAutoscaling - */ - public function setDesiredNodePoolAutoscaling(Google_Service_Container_NodePoolAutoscaling $desiredNodePoolAutoscaling) - { - $this->desiredNodePoolAutoscaling = $desiredNodePoolAutoscaling; - } - /** - * @return Google_Service_Container_NodePoolAutoscaling - */ - public function getDesiredNodePoolAutoscaling() - { - return $this->desiredNodePoolAutoscaling; - } - public function setDesiredNodePoolId($desiredNodePoolId) - { - $this->desiredNodePoolId = $desiredNodePoolId; - } - public function getDesiredNodePoolId() - { - return $this->desiredNodePoolId; - } - public function setDesiredNodeVersion($desiredNodeVersion) - { - $this->desiredNodeVersion = $desiredNodeVersion; - } - public function getDesiredNodeVersion() - { - return $this->desiredNodeVersion; - } - /** - * @param Google_Service_Container_ResourceUsageExportConfig - */ - public function setDesiredResourceUsageExportConfig(Google_Service_Container_ResourceUsageExportConfig $desiredResourceUsageExportConfig) - { - $this->desiredResourceUsageExportConfig = $desiredResourceUsageExportConfig; - } - /** - * @return Google_Service_Container_ResourceUsageExportConfig - */ - public function getDesiredResourceUsageExportConfig() - { - return $this->desiredResourceUsageExportConfig; - } - /** - * @param Google_Service_Container_ShieldedNodes - */ - public function setDesiredShieldedNodes(Google_Service_Container_ShieldedNodes $desiredShieldedNodes) - { - $this->desiredShieldedNodes = $desiredShieldedNodes; - } - /** - * @return Google_Service_Container_ShieldedNodes - */ - public function getDesiredShieldedNodes() - { - return $this->desiredShieldedNodes; - } - /** - * @param Google_Service_Container_VerticalPodAutoscaling - */ - public function setDesiredVerticalPodAutoscaling(Google_Service_Container_VerticalPodAutoscaling $desiredVerticalPodAutoscaling) - { - $this->desiredVerticalPodAutoscaling = $desiredVerticalPodAutoscaling; - } - /** - * @return Google_Service_Container_VerticalPodAutoscaling - */ - public function getDesiredVerticalPodAutoscaling() - { - return $this->desiredVerticalPodAutoscaling; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/CompleteIPRotationRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/CompleteIPRotationRequest.php deleted file mode 100644 index 224d9a7a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/CompleteIPRotationRequest.php +++ /dev/null @@ -1,57 +0,0 @@ -clusterId = $clusterId; - } - public function getClusterId() - { - return $this->clusterId; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } - public function setZone($zone) - { - $this->zone = $zone; - } - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/ConsumptionMeteringConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/ConsumptionMeteringConfig.php deleted file mode 100644 index 4507a17e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/ConsumptionMeteringConfig.php +++ /dev/null @@ -1,30 +0,0 @@ -enabled = $enabled; - } - public function getEnabled() - { - return $this->enabled; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/ContainerEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/ContainerEmpty.php deleted file mode 100644 index 815eefab..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/ContainerEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -cluster = $cluster; - } - /** - * @return Google_Service_Container_Cluster - */ - public function getCluster() - { - return $this->cluster; - } - public function setParent($parent) - { - $this->parent = $parent; - } - public function getParent() - { - return $this->parent; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } - public function setZone($zone) - { - $this->zone = $zone; - } - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/CreateNodePoolRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/CreateNodePoolRequest.php deleted file mode 100644 index 9482bb93..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/CreateNodePoolRequest.php +++ /dev/null @@ -1,73 +0,0 @@ -clusterId = $clusterId; - } - public function getClusterId() - { - return $this->clusterId; - } - /** - * @param Google_Service_Container_NodePool - */ - public function setNodePool(Google_Service_Container_NodePool $nodePool) - { - $this->nodePool = $nodePool; - } - /** - * @return Google_Service_Container_NodePool - */ - public function getNodePool() - { - return $this->nodePool; - } - public function setParent($parent) - { - $this->parent = $parent; - } - public function getParent() - { - return $this->parent; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } - public function setZone($zone) - { - $this->zone = $zone; - } - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/DailyMaintenanceWindow.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/DailyMaintenanceWindow.php deleted file mode 100644 index 8a8c46b5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/DailyMaintenanceWindow.php +++ /dev/null @@ -1,39 +0,0 @@ -duration = $duration; - } - public function getDuration() - { - return $this->duration; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/DatabaseEncryption.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/DatabaseEncryption.php deleted file mode 100644 index d1ebc46c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/DatabaseEncryption.php +++ /dev/null @@ -1,39 +0,0 @@ -keyName = $keyName; - } - public function getKeyName() - { - return $this->keyName; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/GetJSONWebKeysResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/GetJSONWebKeysResponse.php deleted file mode 100644 index fc1234df..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/GetJSONWebKeysResponse.php +++ /dev/null @@ -1,54 +0,0 @@ -cacheHeader = $cacheHeader; - } - /** - * @return Google_Service_Container_HttpCacheControlResponseHeader - */ - public function getCacheHeader() - { - return $this->cacheHeader; - } - /** - * @param Google_Service_Container_Jwk - */ - public function setKeys($keys) - { - $this->keys = $keys; - } - /** - * @return Google_Service_Container_Jwk - */ - public function getKeys() - { - return $this->keys; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/GetOpenIDConfigResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/GetOpenIDConfigResponse.php deleted file mode 100644 index 389963f7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/GetOpenIDConfigResponse.php +++ /dev/null @@ -1,109 +0,0 @@ - "claims_supported", - "grantTypes" => "grant_types", - "idTokenSigningAlgValuesSupported" => "id_token_signing_alg_values_supported", - "jwksUri" => "jwks_uri", - "responseTypesSupported" => "response_types_supported", - "subjectTypesSupported" => "subject_types_supported", - ); - protected $cacheHeaderType = 'Google_Service_Container_HttpCacheControlResponseHeader'; - protected $cacheHeaderDataType = ''; - public $claimsSupported; - public $grantTypes; - public $idTokenSigningAlgValuesSupported; - public $issuer; - public $jwksUri; - public $responseTypesSupported; - public $subjectTypesSupported; - - /** - * @param Google_Service_Container_HttpCacheControlResponseHeader - */ - public function setCacheHeader(Google_Service_Container_HttpCacheControlResponseHeader $cacheHeader) - { - $this->cacheHeader = $cacheHeader; - } - /** - * @return Google_Service_Container_HttpCacheControlResponseHeader - */ - public function getCacheHeader() - { - return $this->cacheHeader; - } - public function setClaimsSupported($claimsSupported) - { - $this->claimsSupported = $claimsSupported; - } - public function getClaimsSupported() - { - return $this->claimsSupported; - } - public function setGrantTypes($grantTypes) - { - $this->grantTypes = $grantTypes; - } - public function getGrantTypes() - { - return $this->grantTypes; - } - public function setIdTokenSigningAlgValuesSupported($idTokenSigningAlgValuesSupported) - { - $this->idTokenSigningAlgValuesSupported = $idTokenSigningAlgValuesSupported; - } - public function getIdTokenSigningAlgValuesSupported() - { - return $this->idTokenSigningAlgValuesSupported; - } - public function setIssuer($issuer) - { - $this->issuer = $issuer; - } - public function getIssuer() - { - return $this->issuer; - } - public function setJwksUri($jwksUri) - { - $this->jwksUri = $jwksUri; - } - public function getJwksUri() - { - return $this->jwksUri; - } - public function setResponseTypesSupported($responseTypesSupported) - { - $this->responseTypesSupported = $responseTypesSupported; - } - public function getResponseTypesSupported() - { - return $this->responseTypesSupported; - } - public function setSubjectTypesSupported($subjectTypesSupported) - { - $this->subjectTypesSupported = $subjectTypesSupported; - } - public function getSubjectTypesSupported() - { - return $this->subjectTypesSupported; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/HorizontalPodAutoscaling.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/HorizontalPodAutoscaling.php deleted file mode 100644 index 2cd97799..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/HorizontalPodAutoscaling.php +++ /dev/null @@ -1,30 +0,0 @@ -disabled = $disabled; - } - public function getDisabled() - { - return $this->disabled; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/HttpCacheControlResponseHeader.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/HttpCacheControlResponseHeader.php deleted file mode 100644 index 1dd8b1ef..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/HttpCacheControlResponseHeader.php +++ /dev/null @@ -1,48 +0,0 @@ -age = $age; - } - public function getAge() - { - return $this->age; - } - public function setDirective($directive) - { - $this->directive = $directive; - } - public function getDirective() - { - return $this->directive; - } - public function setExpires($expires) - { - $this->expires = $expires; - } - public function getExpires() - { - return $this->expires; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/HttpLoadBalancing.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/HttpLoadBalancing.php deleted file mode 100644 index 73479751..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/HttpLoadBalancing.php +++ /dev/null @@ -1,30 +0,0 @@ -disabled = $disabled; - } - public function getDisabled() - { - return $this->disabled; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/IPAllocationPolicy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/IPAllocationPolicy.php deleted file mode 100644 index a9dd57ea..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/IPAllocationPolicy.php +++ /dev/null @@ -1,129 +0,0 @@ -clusterIpv4Cidr = $clusterIpv4Cidr; - } - public function getClusterIpv4Cidr() - { - return $this->clusterIpv4Cidr; - } - public function setClusterIpv4CidrBlock($clusterIpv4CidrBlock) - { - $this->clusterIpv4CidrBlock = $clusterIpv4CidrBlock; - } - public function getClusterIpv4CidrBlock() - { - return $this->clusterIpv4CidrBlock; - } - public function setClusterSecondaryRangeName($clusterSecondaryRangeName) - { - $this->clusterSecondaryRangeName = $clusterSecondaryRangeName; - } - public function getClusterSecondaryRangeName() - { - return $this->clusterSecondaryRangeName; - } - public function setCreateSubnetwork($createSubnetwork) - { - $this->createSubnetwork = $createSubnetwork; - } - public function getCreateSubnetwork() - { - return $this->createSubnetwork; - } - public function setNodeIpv4Cidr($nodeIpv4Cidr) - { - $this->nodeIpv4Cidr = $nodeIpv4Cidr; - } - public function getNodeIpv4Cidr() - { - return $this->nodeIpv4Cidr; - } - public function setNodeIpv4CidrBlock($nodeIpv4CidrBlock) - { - $this->nodeIpv4CidrBlock = $nodeIpv4CidrBlock; - } - public function getNodeIpv4CidrBlock() - { - return $this->nodeIpv4CidrBlock; - } - public function setServicesIpv4Cidr($servicesIpv4Cidr) - { - $this->servicesIpv4Cidr = $servicesIpv4Cidr; - } - public function getServicesIpv4Cidr() - { - return $this->servicesIpv4Cidr; - } - public function setServicesIpv4CidrBlock($servicesIpv4CidrBlock) - { - $this->servicesIpv4CidrBlock = $servicesIpv4CidrBlock; - } - public function getServicesIpv4CidrBlock() - { - return $this->servicesIpv4CidrBlock; - } - public function setServicesSecondaryRangeName($servicesSecondaryRangeName) - { - $this->servicesSecondaryRangeName = $servicesSecondaryRangeName; - } - public function getServicesSecondaryRangeName() - { - return $this->servicesSecondaryRangeName; - } - public function setSubnetworkName($subnetworkName) - { - $this->subnetworkName = $subnetworkName; - } - public function getSubnetworkName() - { - return $this->subnetworkName; - } - public function setTpuIpv4CidrBlock($tpuIpv4CidrBlock) - { - $this->tpuIpv4CidrBlock = $tpuIpv4CidrBlock; - } - public function getTpuIpv4CidrBlock() - { - return $this->tpuIpv4CidrBlock; - } - public function setUseIpAliases($useIpAliases) - { - $this->useIpAliases = $useIpAliases; - } - public function getUseIpAliases() - { - return $this->useIpAliases; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/IntraNodeVisibilityConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/IntraNodeVisibilityConfig.php deleted file mode 100644 index 19ed2e81..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/IntraNodeVisibilityConfig.php +++ /dev/null @@ -1,30 +0,0 @@ -enabled = $enabled; - } - public function getEnabled() - { - return $this->enabled; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/Jwk.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/Jwk.php deleted file mode 100644 index 74de6078..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/Jwk.php +++ /dev/null @@ -1,102 +0,0 @@ -alg = $alg; - } - public function getAlg() - { - return $this->alg; - } - public function setCrv($crv) - { - $this->crv = $crv; - } - public function getCrv() - { - return $this->crv; - } - public function setE($e) - { - $this->e = $e; - } - public function getE() - { - return $this->e; - } - public function setKid($kid) - { - $this->kid = $kid; - } - public function getKid() - { - return $this->kid; - } - public function setKty($kty) - { - $this->kty = $kty; - } - public function getKty() - { - return $this->kty; - } - public function setN($n) - { - $this->n = $n; - } - public function getN() - { - return $this->n; - } - public function setUse($use) - { - $this->use = $use; - } - public function getUse() - { - return $this->use; - } - public function setX($x) - { - $this->x = $x; - } - public function getX() - { - return $this->x; - } - public function setY($y) - { - $this->y = $y; - } - public function getY() - { - return $this->y; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/KubernetesDashboard.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/KubernetesDashboard.php deleted file mode 100644 index 9354ad98..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/KubernetesDashboard.php +++ /dev/null @@ -1,30 +0,0 @@ -disabled = $disabled; - } - public function getDisabled() - { - return $this->disabled; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/LegacyAbac.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/LegacyAbac.php deleted file mode 100644 index c11727ec..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/LegacyAbac.php +++ /dev/null @@ -1,30 +0,0 @@ -enabled = $enabled; - } - public function getEnabled() - { - return $this->enabled; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/ListClustersResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/ListClustersResponse.php deleted file mode 100644 index b0a2dcf8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/ListClustersResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -clusters = $clusters; - } - /** - * @return Google_Service_Container_Cluster - */ - public function getClusters() - { - return $this->clusters; - } - public function setMissingZones($missingZones) - { - $this->missingZones = $missingZones; - } - public function getMissingZones() - { - return $this->missingZones; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/ListNodePoolsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/ListNodePoolsResponse.php deleted file mode 100644 index 15f87fda..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/ListNodePoolsResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -nodePools = $nodePools; - } - /** - * @return Google_Service_Container_NodePool - */ - public function getNodePools() - { - return $this->nodePools; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/ListOperationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/ListOperationsResponse.php deleted file mode 100644 index 2757b21f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/ListOperationsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -missingZones = $missingZones; - } - public function getMissingZones() - { - return $this->missingZones; - } - /** - * @param Google_Service_Container_Operation - */ - public function setOperations($operations) - { - $this->operations = $operations; - } - /** - * @return Google_Service_Container_Operation - */ - public function getOperations() - { - return $this->operations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/ListUsableSubnetworksResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/ListUsableSubnetworksResponse.php deleted file mode 100644 index fa46ae72..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/ListUsableSubnetworksResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Container_UsableSubnetwork - */ - public function setSubnetworks($subnetworks) - { - $this->subnetworks = $subnetworks; - } - /** - * @return Google_Service_Container_UsableSubnetwork - */ - public function getSubnetworks() - { - return $this->subnetworks; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/MaintenancePolicy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/MaintenancePolicy.php deleted file mode 100644 index d56b64f1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/MaintenancePolicy.php +++ /dev/null @@ -1,46 +0,0 @@ -resourceVersion = $resourceVersion; - } - public function getResourceVersion() - { - return $this->resourceVersion; - } - /** - * @param Google_Service_Container_MaintenanceWindow - */ - public function setWindow(Google_Service_Container_MaintenanceWindow $window) - { - $this->window = $window; - } - /** - * @return Google_Service_Container_MaintenanceWindow - */ - public function getWindow() - { - return $this->window; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/MaintenanceWindow.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/MaintenanceWindow.php deleted file mode 100644 index 14affe78..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/MaintenanceWindow.php +++ /dev/null @@ -1,69 +0,0 @@ -dailyMaintenanceWindow = $dailyMaintenanceWindow; - } - /** - * @return Google_Service_Container_DailyMaintenanceWindow - */ - public function getDailyMaintenanceWindow() - { - return $this->dailyMaintenanceWindow; - } - /** - * @param Google_Service_Container_TimeWindow - */ - public function setMaintenanceExclusions($maintenanceExclusions) - { - $this->maintenanceExclusions = $maintenanceExclusions; - } - /** - * @return Google_Service_Container_TimeWindow - */ - public function getMaintenanceExclusions() - { - return $this->maintenanceExclusions; - } - /** - * @param Google_Service_Container_RecurringTimeWindow - */ - public function setRecurringWindow(Google_Service_Container_RecurringTimeWindow $recurringWindow) - { - $this->recurringWindow = $recurringWindow; - } - /** - * @return Google_Service_Container_RecurringTimeWindow - */ - public function getRecurringWindow() - { - return $this->recurringWindow; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/MasterAuth.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/MasterAuth.php deleted file mode 100644 index af404e53..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/MasterAuth.php +++ /dev/null @@ -1,82 +0,0 @@ -clientCertificate = $clientCertificate; - } - public function getClientCertificate() - { - return $this->clientCertificate; - } - /** - * @param Google_Service_Container_ClientCertificateConfig - */ - public function setClientCertificateConfig(Google_Service_Container_ClientCertificateConfig $clientCertificateConfig) - { - $this->clientCertificateConfig = $clientCertificateConfig; - } - /** - * @return Google_Service_Container_ClientCertificateConfig - */ - public function getClientCertificateConfig() - { - return $this->clientCertificateConfig; - } - public function setClientKey($clientKey) - { - $this->clientKey = $clientKey; - } - public function getClientKey() - { - return $this->clientKey; - } - public function setClusterCaCertificate($clusterCaCertificate) - { - $this->clusterCaCertificate = $clusterCaCertificate; - } - public function getClusterCaCertificate() - { - return $this->clusterCaCertificate; - } - public function setPassword($password) - { - $this->password = $password; - } - public function getPassword() - { - return $this->password; - } - public function setUsername($username) - { - $this->username = $username; - } - public function getUsername() - { - return $this->username; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/MasterAuthorizedNetworksConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/MasterAuthorizedNetworksConfig.php deleted file mode 100644 index 57242753..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/MasterAuthorizedNetworksConfig.php +++ /dev/null @@ -1,47 +0,0 @@ -cidrBlocks = $cidrBlocks; - } - /** - * @return Google_Service_Container_CidrBlock - */ - public function getCidrBlocks() - { - return $this->cidrBlocks; - } - public function setEnabled($enabled) - { - $this->enabled = $enabled; - } - public function getEnabled() - { - return $this->enabled; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/MaxPodsConstraint.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/MaxPodsConstraint.php deleted file mode 100644 index a138c04c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/MaxPodsConstraint.php +++ /dev/null @@ -1,30 +0,0 @@ -maxPodsPerNode = $maxPodsPerNode; - } - public function getMaxPodsPerNode() - { - return $this->maxPodsPerNode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/NetworkConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/NetworkConfig.php deleted file mode 100644 index 2628d8b4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/NetworkConfig.php +++ /dev/null @@ -1,48 +0,0 @@ -enableIntraNodeVisibility = $enableIntraNodeVisibility; - } - public function getEnableIntraNodeVisibility() - { - return $this->enableIntraNodeVisibility; - } - public function setNetwork($network) - { - $this->network = $network; - } - public function getNetwork() - { - return $this->network; - } - public function setSubnetwork($subnetwork) - { - $this->subnetwork = $subnetwork; - } - public function getSubnetwork() - { - return $this->subnetwork; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/NetworkPolicy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/NetworkPolicy.php deleted file mode 100644 index 37cc9ec3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/NetworkPolicy.php +++ /dev/null @@ -1,39 +0,0 @@ -enabled = $enabled; - } - public function getEnabled() - { - return $this->enabled; - } - public function setProvider($provider) - { - $this->provider = $provider; - } - public function getProvider() - { - return $this->provider; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/NetworkPolicyConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/NetworkPolicyConfig.php deleted file mode 100644 index 5a3c74d1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/NetworkPolicyConfig.php +++ /dev/null @@ -1,30 +0,0 @@ -disabled = $disabled; - } - public function getDisabled() - { - return $this->disabled; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/NodeConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/NodeConfig.php deleted file mode 100644 index 94540a1b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/NodeConfig.php +++ /dev/null @@ -1,210 +0,0 @@ -accelerators = $accelerators; - } - /** - * @return Google_Service_Container_AcceleratorConfig - */ - public function getAccelerators() - { - return $this->accelerators; - } - public function setDiskSizeGb($diskSizeGb) - { - $this->diskSizeGb = $diskSizeGb; - } - public function getDiskSizeGb() - { - return $this->diskSizeGb; - } - public function setDiskType($diskType) - { - $this->diskType = $diskType; - } - public function getDiskType() - { - return $this->diskType; - } - public function setImageType($imageType) - { - $this->imageType = $imageType; - } - public function getImageType() - { - return $this->imageType; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setLocalSsdCount($localSsdCount) - { - $this->localSsdCount = $localSsdCount; - } - public function getLocalSsdCount() - { - return $this->localSsdCount; - } - public function setMachineType($machineType) - { - $this->machineType = $machineType; - } - public function getMachineType() - { - return $this->machineType; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setMinCpuPlatform($minCpuPlatform) - { - $this->minCpuPlatform = $minCpuPlatform; - } - public function getMinCpuPlatform() - { - return $this->minCpuPlatform; - } - public function setOauthScopes($oauthScopes) - { - $this->oauthScopes = $oauthScopes; - } - public function getOauthScopes() - { - return $this->oauthScopes; - } - public function setPreemptible($preemptible) - { - $this->preemptible = $preemptible; - } - public function getPreemptible() - { - return $this->preemptible; - } - /** - * @param Google_Service_Container_ReservationAffinity - */ - public function setReservationAffinity(Google_Service_Container_ReservationAffinity $reservationAffinity) - { - $this->reservationAffinity = $reservationAffinity; - } - /** - * @return Google_Service_Container_ReservationAffinity - */ - public function getReservationAffinity() - { - return $this->reservationAffinity; - } - /** - * @param Google_Service_Container_SandboxConfig - */ - public function setSandboxConfig(Google_Service_Container_SandboxConfig $sandboxConfig) - { - $this->sandboxConfig = $sandboxConfig; - } - /** - * @return Google_Service_Container_SandboxConfig - */ - public function getSandboxConfig() - { - return $this->sandboxConfig; - } - public function setServiceAccount($serviceAccount) - { - $this->serviceAccount = $serviceAccount; - } - public function getServiceAccount() - { - return $this->serviceAccount; - } - /** - * @param Google_Service_Container_ShieldedInstanceConfig - */ - public function setShieldedInstanceConfig(Google_Service_Container_ShieldedInstanceConfig $shieldedInstanceConfig) - { - $this->shieldedInstanceConfig = $shieldedInstanceConfig; - } - /** - * @return Google_Service_Container_ShieldedInstanceConfig - */ - public function getShieldedInstanceConfig() - { - return $this->shieldedInstanceConfig; - } - public function setTags($tags) - { - $this->tags = $tags; - } - public function getTags() - { - return $this->tags; - } - /** - * @param Google_Service_Container_NodeTaint - */ - public function setTaints($taints) - { - $this->taints = $taints; - } - /** - * @return Google_Service_Container_NodeTaint - */ - public function getTaints() - { - return $this->taints; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/NodeManagement.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/NodeManagement.php deleted file mode 100644 index 85bf8712..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/NodeManagement.php +++ /dev/null @@ -1,55 +0,0 @@ -autoRepair = $autoRepair; - } - public function getAutoRepair() - { - return $this->autoRepair; - } - public function setAutoUpgrade($autoUpgrade) - { - $this->autoUpgrade = $autoUpgrade; - } - public function getAutoUpgrade() - { - return $this->autoUpgrade; - } - /** - * @param Google_Service_Container_AutoUpgradeOptions - */ - public function setUpgradeOptions(Google_Service_Container_AutoUpgradeOptions $upgradeOptions) - { - $this->upgradeOptions = $upgradeOptions; - } - /** - * @return Google_Service_Container_AutoUpgradeOptions - */ - public function getUpgradeOptions() - { - return $this->upgradeOptions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/NodePool.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/NodePool.php deleted file mode 100644 index 42069f35..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/NodePool.php +++ /dev/null @@ -1,199 +0,0 @@ -autoscaling = $autoscaling; - } - /** - * @return Google_Service_Container_NodePoolAutoscaling - */ - public function getAutoscaling() - { - return $this->autoscaling; - } - /** - * @param Google_Service_Container_StatusCondition - */ - public function setConditions($conditions) - { - $this->conditions = $conditions; - } - /** - * @return Google_Service_Container_StatusCondition - */ - public function getConditions() - { - return $this->conditions; - } - /** - * @param Google_Service_Container_NodeConfig - */ - public function setConfig(Google_Service_Container_NodeConfig $config) - { - $this->config = $config; - } - /** - * @return Google_Service_Container_NodeConfig - */ - public function getConfig() - { - return $this->config; - } - public function setInitialNodeCount($initialNodeCount) - { - $this->initialNodeCount = $initialNodeCount; - } - public function getInitialNodeCount() - { - return $this->initialNodeCount; - } - public function setInstanceGroupUrls($instanceGroupUrls) - { - $this->instanceGroupUrls = $instanceGroupUrls; - } - public function getInstanceGroupUrls() - { - return $this->instanceGroupUrls; - } - public function setLocations($locations) - { - $this->locations = $locations; - } - public function getLocations() - { - return $this->locations; - } - /** - * @param Google_Service_Container_NodeManagement - */ - public function setManagement(Google_Service_Container_NodeManagement $management) - { - $this->management = $management; - } - /** - * @return Google_Service_Container_NodeManagement - */ - public function getManagement() - { - return $this->management; - } - /** - * @param Google_Service_Container_MaxPodsConstraint - */ - public function setMaxPodsConstraint(Google_Service_Container_MaxPodsConstraint $maxPodsConstraint) - { - $this->maxPodsConstraint = $maxPodsConstraint; - } - /** - * @return Google_Service_Container_MaxPodsConstraint - */ - public function getMaxPodsConstraint() - { - return $this->maxPodsConstraint; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPodIpv4CidrSize($podIpv4CidrSize) - { - $this->podIpv4CidrSize = $podIpv4CidrSize; - } - public function getPodIpv4CidrSize() - { - return $this->podIpv4CidrSize; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setStatusMessage($statusMessage) - { - $this->statusMessage = $statusMessage; - } - public function getStatusMessage() - { - return $this->statusMessage; - } - /** - * @param Google_Service_Container_UpgradeSettings - */ - public function setUpgradeSettings(Google_Service_Container_UpgradeSettings $upgradeSettings) - { - $this->upgradeSettings = $upgradeSettings; - } - /** - * @return Google_Service_Container_UpgradeSettings - */ - public function getUpgradeSettings() - { - return $this->upgradeSettings; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/NodePoolAutoscaling.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/NodePoolAutoscaling.php deleted file mode 100644 index 926e00ab..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/NodePoolAutoscaling.php +++ /dev/null @@ -1,57 +0,0 @@ -autoprovisioned = $autoprovisioned; - } - public function getAutoprovisioned() - { - return $this->autoprovisioned; - } - public function setEnabled($enabled) - { - $this->enabled = $enabled; - } - public function getEnabled() - { - return $this->enabled; - } - public function setMaxNodeCount($maxNodeCount) - { - $this->maxNodeCount = $maxNodeCount; - } - public function getMaxNodeCount() - { - return $this->maxNodeCount; - } - public function setMinNodeCount($minNodeCount) - { - $this->minNodeCount = $minNodeCount; - } - public function getMinNodeCount() - { - return $this->minNodeCount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/NodeTaint.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/NodeTaint.php deleted file mode 100644 index 7332d4a7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/NodeTaint.php +++ /dev/null @@ -1,48 +0,0 @@ -effect = $effect; - } - public function getEffect() - { - return $this->effect; - } - public function setKey($key) - { - $this->key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/Operation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/Operation.php deleted file mode 100644 index 8353f5db..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/Operation.php +++ /dev/null @@ -1,153 +0,0 @@ -clusterConditions = $clusterConditions; - } - /** - * @return Google_Service_Container_StatusCondition - */ - public function getClusterConditions() - { - return $this->clusterConditions; - } - public function setDetail($detail) - { - $this->detail = $detail; - } - public function getDetail() - { - return $this->detail; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Container_StatusCondition - */ - public function setNodepoolConditions($nodepoolConditions) - { - $this->nodepoolConditions = $nodepoolConditions; - } - /** - * @return Google_Service_Container_StatusCondition - */ - public function getNodepoolConditions() - { - return $this->nodepoolConditions; - } - public function setOperationType($operationType) - { - $this->operationType = $operationType; - } - public function getOperationType() - { - return $this->operationType; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - 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 setStatusMessage($statusMessage) - { - $this->statusMessage = $statusMessage; - } - public function getStatusMessage() - { - return $this->statusMessage; - } - public function setTargetLink($targetLink) - { - $this->targetLink = $targetLink; - } - public function getTargetLink() - { - return $this->targetLink; - } - public function setZone($zone) - { - $this->zone = $zone; - } - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/PrivateClusterConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/PrivateClusterConfig.php deleted file mode 100644 index 74029e92..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/PrivateClusterConfig.php +++ /dev/null @@ -1,75 +0,0 @@ -enablePrivateEndpoint = $enablePrivateEndpoint; - } - public function getEnablePrivateEndpoint() - { - return $this->enablePrivateEndpoint; - } - public function setEnablePrivateNodes($enablePrivateNodes) - { - $this->enablePrivateNodes = $enablePrivateNodes; - } - public function getEnablePrivateNodes() - { - return $this->enablePrivateNodes; - } - public function setMasterIpv4CidrBlock($masterIpv4CidrBlock) - { - $this->masterIpv4CidrBlock = $masterIpv4CidrBlock; - } - public function getMasterIpv4CidrBlock() - { - return $this->masterIpv4CidrBlock; - } - public function setPeeringName($peeringName) - { - $this->peeringName = $peeringName; - } - public function getPeeringName() - { - return $this->peeringName; - } - public function setPrivateEndpoint($privateEndpoint) - { - $this->privateEndpoint = $privateEndpoint; - } - public function getPrivateEndpoint() - { - return $this->privateEndpoint; - } - public function setPublicEndpoint($publicEndpoint) - { - $this->publicEndpoint = $publicEndpoint; - } - public function getPublicEndpoint() - { - return $this->publicEndpoint; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/RecurringTimeWindow.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/RecurringTimeWindow.php deleted file mode 100644 index 89875867..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/RecurringTimeWindow.php +++ /dev/null @@ -1,46 +0,0 @@ -recurrence = $recurrence; - } - public function getRecurrence() - { - return $this->recurrence; - } - /** - * @param Google_Service_Container_TimeWindow - */ - public function setWindow(Google_Service_Container_TimeWindow $window) - { - $this->window = $window; - } - /** - * @return Google_Service_Container_TimeWindow - */ - public function getWindow() - { - return $this->window; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/ReservationAffinity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/ReservationAffinity.php deleted file mode 100644 index c89f4e6c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/ReservationAffinity.php +++ /dev/null @@ -1,49 +0,0 @@ -consumeReservationType = $consumeReservationType; - } - public function getConsumeReservationType() - { - return $this->consumeReservationType; - } - public function setKey($key) - { - $this->key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValues($values) - { - $this->values = $values; - } - public function getValues() - { - return $this->values; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/Resource/Projects.php deleted file mode 100644 index bd624316..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/Resource/Projects.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $containerService = new Google_Service_Container(...); - * $projects = $containerService->projects; - * - */ -class Google_Service_Container_Resource_Projects extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/Resource/ProjectsAggregated.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/Resource/ProjectsAggregated.php deleted file mode 100644 index 93a7e336..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/Resource/ProjectsAggregated.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $containerService = new Google_Service_Container(...); - * $aggregated = $containerService->aggregated; - * - */ -class Google_Service_Container_Resource_ProjectsAggregated extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/Resource/ProjectsAggregatedUsableSubnetworks.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/Resource/ProjectsAggregatedUsableSubnetworks.php deleted file mode 100644 index 524d636c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/Resource/ProjectsAggregatedUsableSubnetworks.php +++ /dev/null @@ -1,56 +0,0 @@ - - * $containerService = new Google_Service_Container(...); - * $usableSubnetworks = $containerService->usableSubnetworks; - * - */ -class Google_Service_Container_Resource_ProjectsAggregatedUsableSubnetworks extends Google_Service_Resource -{ - /** - * Lists subnetworks that are usable for creating clusters in a project. - * (usableSubnetworks.listProjectsAggregatedUsableSubnetworks) - * - * @param string $parent The parent project where subnetworks are usable. - * Specified in the format 'projects'. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Specifies a page token to use. Set this to the - * nextPageToken returned by previous list requests to get the next page of - * results. - * @opt_param int pageSize The max number of results per page that should be - * returned. If the number of available results is larger than `page_size`, a - * `next_page_token` is returned which can be used to get the next page of - * results in subsequent requests. Acceptable values are 0 to 500, inclusive. - * (Default: 500) - * @opt_param string filter Filtering currently only supports equality on the - * networkProjectId and must be in the form: "networkProjectId=[PROJECTID]", - * where `networkProjectId` is the project which owns the listed subnetworks. - * This defaults to the parent project ID. - * @return Google_Service_Container_ListUsableSubnetworksResponse - */ - public function listProjectsAggregatedUsableSubnetworks($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Container_ListUsableSubnetworksResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/Resource/ProjectsLocations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/Resource/ProjectsLocations.php deleted file mode 100644 index d4d7e81b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/Resource/ProjectsLocations.php +++ /dev/null @@ -1,51 +0,0 @@ - - * $containerService = new Google_Service_Container(...); - * $locations = $containerService->locations; - * - */ -class Google_Service_Container_Resource_ProjectsLocations extends Google_Service_Resource -{ - /** - * Returns configuration info about the Google Kubernetes Engine service. - * (locations.getServerConfig) - * - * @param string $name The name (project and location) of the server config to - * get, specified in the format 'projects/locations'. - * @param array $optParams Optional parameters. - * - * @opt_param string projectId Required. Deprecated. The Google Developers - * Console [project ID or project - * number](https://support.google.com/cloud/answer/6158840). This field has been - * deprecated and replaced by the name field. - * @opt_param string zone Required. Deprecated. The name of the Google Compute - * Engine [zone](/compute/docs/zones#available) to return operations for. This - * field has been deprecated and replaced by the name field. - * @return Google_Service_Container_ServerConfig - */ - public function getServerConfig($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('getServerConfig', array($params), "Google_Service_Container_ServerConfig"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/Resource/ProjectsLocationsClusters.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/Resource/ProjectsLocationsClusters.php deleted file mode 100644 index 6a9d14e7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/Resource/ProjectsLocationsClusters.php +++ /dev/null @@ -1,354 +0,0 @@ - - * $containerService = new Google_Service_Container(...); - * $clusters = $containerService->clusters; - * - */ -class Google_Service_Container_Resource_ProjectsLocationsClusters extends Google_Service_Resource -{ - /** - * Completes master IP rotation. (clusters.completeIpRotation) - * - * @param string $name The name (project, location, cluster id) of the cluster - * to complete IP rotation. Specified in the format - * 'projects/locations/clusters'. - * @param Google_Service_Container_CompleteIPRotationRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Container_Operation - */ - public function completeIpRotation($name, Google_Service_Container_CompleteIPRotationRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('completeIpRotation', array($params), "Google_Service_Container_Operation"); - } - /** - * Creates a cluster, consisting of the specified number and type of Google - * Compute Engine instances. - * - * By default, the cluster is created in the project's [default - * network](/compute/docs/networks-and-firewalls#networks). - * - * One firewall is added for the cluster. After cluster creation, the Kubelet - * creates routes for each node to allow the containers on that node to - * communicate with all other instances in the cluster. - * - * Finally, an entry is added to the project's global metadata indicating which - * CIDR range the cluster is using. (clusters.create) - * - * @param string $parent The parent (project and location) where the cluster - * will be created. Specified in the format 'projects/locations'. - * @param Google_Service_Container_CreateClusterRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Container_Operation - */ - public function create($parent, Google_Service_Container_CreateClusterRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Container_Operation"); - } - /** - * Deletes the cluster, including the Kubernetes endpoint and all worker nodes. - * - * Firewalls and routes that were configured during cluster creation are also - * deleted. - * - * Other Google Compute Engine resources that might be in use by the cluster, - * such as load balancer resources, are not deleted if they weren't present when - * the cluster was initially created. (clusters.delete) - * - * @param string $name The name (project, location, cluster) of the cluster to - * delete. Specified in the format 'projects/locations/clusters'. - * @param array $optParams Optional parameters. - * - * @opt_param string projectId Required. Deprecated. The Google Developers - * Console [project ID or project - * number](https://support.google.com/cloud/answer/6158840). This field has been - * deprecated and replaced by the name field. - * @opt_param string zone Required. Deprecated. The name of the Google Compute - * Engine [zone](/compute/docs/zones#available) in which the cluster resides. - * This field has been deprecated and replaced by the name field. - * @opt_param string clusterId Required. Deprecated. The name of the cluster to - * delete. This field has been deprecated and replaced by the name field. - * @return Google_Service_Container_Operation - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Container_Operation"); - } - /** - * Gets the details of a specific cluster. (clusters.get) - * - * @param string $name The name (project, location, cluster) of the cluster to - * retrieve. Specified in the format 'projects/locations/clusters'. - * @param array $optParams Optional parameters. - * - * @opt_param string projectId Required. Deprecated. The Google Developers - * Console [project ID or project - * number](https://support.google.com/cloud/answer/6158840). This field has been - * deprecated and replaced by the name field. - * @opt_param string zone Required. Deprecated. The name of the Google Compute - * Engine [zone](/compute/docs/zones#available) in which the cluster resides. - * This field has been deprecated and replaced by the name field. - * @opt_param string clusterId Required. Deprecated. The name of the cluster to - * retrieve. This field has been deprecated and replaced by the name field. - * @return Google_Service_Container_Cluster - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Container_Cluster"); - } - /** - * Gets the public component of the cluster signing keys in JSON Web Key format. - * This API is not yet intended for general use, and is not available for all - * clusters. (clusters.getJwks) - * - * @param string $parent The cluster (project, location, cluster id) to get keys - * for. Specified in the format 'projects/locations/clusters'. - * @param array $optParams Optional parameters. - * @return Google_Service_Container_GetJSONWebKeysResponse - */ - public function getJwks($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('getJwks', array($params), "Google_Service_Container_GetJSONWebKeysResponse"); - } - /** - * Lists all clusters owned by a project in either the specified zone or all - * zones. (clusters.listProjectsLocationsClusters) - * - * @param string $parent The parent (project and location) where the clusters - * will be listed. Specified in the format 'projects/locations'. Location "-" - * matches all zones and all regions. - * @param array $optParams Optional parameters. - * - * @opt_param string projectId Required. Deprecated. The Google Developers - * Console [project ID or project - * number](https://support.google.com/cloud/answer/6158840). This field has been - * deprecated and replaced by the parent field. - * @opt_param string zone Required. Deprecated. The name of the Google Compute - * Engine [zone](/compute/docs/zones#available) in which the cluster resides, or - * "-" for all zones. This field has been deprecated and replaced by the parent - * field. - * @return Google_Service_Container_ListClustersResponse - */ - public function listProjectsLocationsClusters($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Container_ListClustersResponse"); - } - /** - * Sets the addons for a specific cluster. (clusters.setAddons) - * - * @param string $name The name (project, location, cluster) of the cluster to - * set addons. Specified in the format 'projects/locations/clusters'. - * @param Google_Service_Container_SetAddonsConfigRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Container_Operation - */ - public function setAddons($name, Google_Service_Container_SetAddonsConfigRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setAddons', array($params), "Google_Service_Container_Operation"); - } - /** - * Enables or disables the ABAC authorization mechanism on a cluster. - * (clusters.setLegacyAbac) - * - * @param string $name The name (project, location, cluster id) of the cluster - * to set legacy abac. Specified in the format 'projects/locations/clusters'. - * @param Google_Service_Container_SetLegacyAbacRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Container_Operation - */ - public function setLegacyAbac($name, Google_Service_Container_SetLegacyAbacRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setLegacyAbac', array($params), "Google_Service_Container_Operation"); - } - /** - * Sets the locations for a specific cluster. Deprecated. Use - * [projects.locations.clusters.update](/kubernetes- - * engine/docs/reference/rest/v1/projects.locations.clusters.update) instead. - * (clusters.setLocations) - * - * @param string $name The name (project, location, cluster) of the cluster to - * set locations. Specified in the format 'projects/locations/clusters'. - * @param Google_Service_Container_SetLocationsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Container_Operation - */ - public function setLocations($name, Google_Service_Container_SetLocationsRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setLocations', array($params), "Google_Service_Container_Operation"); - } - /** - * Sets the logging service for a specific cluster. (clusters.setLogging) - * - * @param string $name The name (project, location, cluster) of the cluster to - * set logging. Specified in the format 'projects/locations/clusters'. - * @param Google_Service_Container_SetLoggingServiceRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Container_Operation - */ - public function setLogging($name, Google_Service_Container_SetLoggingServiceRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setLogging', array($params), "Google_Service_Container_Operation"); - } - /** - * Sets the maintenance policy for a cluster. (clusters.setMaintenancePolicy) - * - * @param string $name The name (project, location, cluster id) of the cluster - * to set maintenance policy. Specified in the format - * 'projects/locations/clusters'. - * @param Google_Service_Container_SetMaintenancePolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Container_Operation - */ - public function setMaintenancePolicy($name, Google_Service_Container_SetMaintenancePolicyRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setMaintenancePolicy', array($params), "Google_Service_Container_Operation"); - } - /** - * Sets master auth materials. Currently supports changing the admin password or - * a specific cluster, either via password generation or explicitly setting the - * password. (clusters.setMasterAuth) - * - * @param string $name The name (project, location, cluster) of the cluster to - * set auth. Specified in the format 'projects/locations/clusters'. - * @param Google_Service_Container_SetMasterAuthRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Container_Operation - */ - public function setMasterAuth($name, Google_Service_Container_SetMasterAuthRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setMasterAuth', array($params), "Google_Service_Container_Operation"); - } - /** - * Sets the monitoring service for a specific cluster. (clusters.setMonitoring) - * - * @param string $name The name (project, location, cluster) of the cluster to - * set monitoring. Specified in the format 'projects/locations/clusters'. - * @param Google_Service_Container_SetMonitoringServiceRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Container_Operation - */ - public function setMonitoring($name, Google_Service_Container_SetMonitoringServiceRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setMonitoring', array($params), "Google_Service_Container_Operation"); - } - /** - * Enables or disables Network Policy for a cluster. (clusters.setNetworkPolicy) - * - * @param string $name The name (project, location, cluster id) of the cluster - * to set networking policy. Specified in the format - * 'projects/locations/clusters'. - * @param Google_Service_Container_SetNetworkPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Container_Operation - */ - public function setNetworkPolicy($name, Google_Service_Container_SetNetworkPolicyRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setNetworkPolicy', array($params), "Google_Service_Container_Operation"); - } - /** - * Sets labels on a cluster. (clusters.setResourceLabels) - * - * @param string $name The name (project, location, cluster id) of the cluster - * to set labels. Specified in the format 'projects/locations/clusters'. - * @param Google_Service_Container_SetLabelsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Container_Operation - */ - public function setResourceLabels($name, Google_Service_Container_SetLabelsRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setResourceLabels', array($params), "Google_Service_Container_Operation"); - } - /** - * Starts master IP rotation. (clusters.startIpRotation) - * - * @param string $name The name (project, location, cluster id) of the cluster - * to start IP rotation. Specified in the format 'projects/locations/clusters'. - * @param Google_Service_Container_StartIPRotationRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Container_Operation - */ - public function startIpRotation($name, Google_Service_Container_StartIPRotationRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('startIpRotation', array($params), "Google_Service_Container_Operation"); - } - /** - * Updates the settings of a specific cluster. (clusters.update) - * - * @param string $name The name (project, location, cluster) of the cluster to - * update. Specified in the format 'projects/locations/clusters'. - * @param Google_Service_Container_UpdateClusterRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Container_Operation - */ - public function update($name, Google_Service_Container_UpdateClusterRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Container_Operation"); - } - /** - * Updates the master for a specific cluster. (clusters.updateMaster) - * - * @param string $name The name (project, location, cluster) of the cluster to - * update. Specified in the format 'projects/locations/clusters'. - * @param Google_Service_Container_UpdateMasterRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Container_Operation - */ - public function updateMaster($name, Google_Service_Container_UpdateMasterRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updateMaster', array($params), "Google_Service_Container_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/Resource/ProjectsLocationsClustersNodePools.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/Resource/ProjectsLocationsClustersNodePools.php deleted file mode 100644 index 0e67c46a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/Resource/ProjectsLocationsClustersNodePools.php +++ /dev/null @@ -1,207 +0,0 @@ - - * $containerService = new Google_Service_Container(...); - * $nodePools = $containerService->nodePools; - * - */ -class Google_Service_Container_Resource_ProjectsLocationsClustersNodePools extends Google_Service_Resource -{ - /** - * Creates a node pool for a cluster. (nodePools.create) - * - * @param string $parent The parent (project, location, cluster id) where the - * node pool will be created. Specified in the format - * 'projects/locations/clusters'. - * @param Google_Service_Container_CreateNodePoolRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Container_Operation - */ - public function create($parent, Google_Service_Container_CreateNodePoolRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Container_Operation"); - } - /** - * Deletes a node pool from a cluster. (nodePools.delete) - * - * @param string $name The name (project, location, cluster, node pool id) of - * the node pool to delete. Specified in the format - * 'projects/locations/clusters/nodePools'. - * @param array $optParams Optional parameters. - * - * @opt_param string projectId Required. Deprecated. The Google Developers - * Console [project ID or project - * number](https://developers.google.com/console/help/new/#projectnumber). This - * field has been deprecated and replaced by the name field. - * @opt_param string zone Required. Deprecated. The name of the Google Compute - * Engine [zone](/compute/docs/zones#available) in which the cluster resides. - * This field has been deprecated and replaced by the name field. - * @opt_param string clusterId Required. Deprecated. The name of the cluster. - * This field has been deprecated and replaced by the name field. - * @opt_param string nodePoolId Required. Deprecated. The name of the node pool - * to delete. This field has been deprecated and replaced by the name field. - * @return Google_Service_Container_Operation - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Container_Operation"); - } - /** - * Retrieves the requested node pool. (nodePools.get) - * - * @param string $name The name (project, location, cluster, node pool id) of - * the node pool to get. Specified in the format - * 'projects/locations/clusters/nodePools'. - * @param array $optParams Optional parameters. - * - * @opt_param string projectId Required. Deprecated. The Google Developers - * Console [project ID or project - * number](https://developers.google.com/console/help/new/#projectnumber). This - * field has been deprecated and replaced by the name field. - * @opt_param string zone Required. Deprecated. The name of the Google Compute - * Engine [zone](/compute/docs/zones#available) in which the cluster resides. - * This field has been deprecated and replaced by the name field. - * @opt_param string clusterId Required. Deprecated. The name of the cluster. - * This field has been deprecated and replaced by the name field. - * @opt_param string nodePoolId Required. Deprecated. The name of the node pool. - * This field has been deprecated and replaced by the name field. - * @return Google_Service_Container_NodePool - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Container_NodePool"); - } - /** - * Lists the node pools for a cluster. - * (nodePools.listProjectsLocationsClustersNodePools) - * - * @param string $parent The parent (project, location, cluster id) where the - * node pools will be listed. Specified in the format - * 'projects/locations/clusters'. - * @param array $optParams Optional parameters. - * - * @opt_param string projectId Required. Deprecated. The Google Developers - * Console [project ID or project - * number](https://developers.google.com/console/help/new/#projectnumber). This - * field has been deprecated and replaced by the parent field. - * @opt_param string zone Required. Deprecated. The name of the Google Compute - * Engine [zone](/compute/docs/zones#available) in which the cluster resides. - * This field has been deprecated and replaced by the parent field. - * @opt_param string clusterId Required. Deprecated. The name of the cluster. - * This field has been deprecated and replaced by the parent field. - * @return Google_Service_Container_ListNodePoolsResponse - */ - public function listProjectsLocationsClustersNodePools($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Container_ListNodePoolsResponse"); - } - /** - * Rolls back a previously Aborted or Failed NodePool upgrade. This makes no - * changes if the last upgrade successfully completed. (nodePools.rollback) - * - * @param string $name The name (project, location, cluster, node pool id) of - * the node poll to rollback upgrade. Specified in the format - * 'projects/locations/clusters/nodePools'. - * @param Google_Service_Container_RollbackNodePoolUpgradeRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Container_Operation - */ - public function rollback($name, Google_Service_Container_RollbackNodePoolUpgradeRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('rollback', array($params), "Google_Service_Container_Operation"); - } - /** - * Sets the autoscaling settings for the specified node pool. - * (nodePools.setAutoscaling) - * - * @param string $name The name (project, location, cluster, node pool) of the - * node pool to set autoscaler settings. Specified in the format - * 'projects/locations/clusters/nodePools'. - * @param Google_Service_Container_SetNodePoolAutoscalingRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Container_Operation - */ - public function setAutoscaling($name, Google_Service_Container_SetNodePoolAutoscalingRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setAutoscaling', array($params), "Google_Service_Container_Operation"); - } - /** - * Sets the NodeManagement options for a node pool. (nodePools.setManagement) - * - * @param string $name The name (project, location, cluster, node pool id) of - * the node pool to set management properties. Specified in the format - * 'projects/locations/clusters/nodePools'. - * @param Google_Service_Container_SetNodePoolManagementRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Container_Operation - */ - public function setManagement($name, Google_Service_Container_SetNodePoolManagementRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setManagement', array($params), "Google_Service_Container_Operation"); - } - /** - * Sets the size for a specific node pool. (nodePools.setSize) - * - * @param string $name The name (project, location, cluster, node pool id) of - * the node pool to set size. Specified in the format - * 'projects/locations/clusters/nodePools'. - * @param Google_Service_Container_SetNodePoolSizeRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Container_Operation - */ - public function setSize($name, Google_Service_Container_SetNodePoolSizeRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setSize', array($params), "Google_Service_Container_Operation"); - } - /** - * Updates the version and/or image type for the specified node pool. - * (nodePools.update) - * - * @param string $name The name (project, location, cluster, node pool) of the - * node pool to update. Specified in the format - * 'projects/locations/clusters/nodePools'. - * @param Google_Service_Container_UpdateNodePoolRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Container_Operation - */ - public function update($name, Google_Service_Container_UpdateNodePoolRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Container_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/Resource/ProjectsLocationsClustersWellKnown.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/Resource/ProjectsLocationsClustersWellKnown.php deleted file mode 100644 index afb9eb5e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/Resource/ProjectsLocationsClustersWellKnown.php +++ /dev/null @@ -1,47 +0,0 @@ - - * $containerService = new Google_Service_Container(...); - * $well_known = $containerService->well_known; - * - */ -class Google_Service_Container_Resource_ProjectsLocationsClustersWellKnown extends Google_Service_Resource -{ - /** - * Gets the OIDC discovery document for the cluster. See the [OpenID Connect - * Discovery 1.0 specification](https://openid.net/specs/openid-connect- - * discovery-1_0.html) for details. This API is not yet intended for general - * use, and is not available for all clusters. (well- - * known.getOpenidConfiguration) - * - * @param string $parent The cluster (project, location, cluster id) to get the - * discovery document for. Specified in the format - * 'projects/locations/clusters'. - * @param array $optParams Optional parameters. - * @return Google_Service_Container_GetOpenIDConfigResponse - */ - public function getOpenidConfiguration($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('getOpenid-configuration', array($params), "Google_Service_Container_GetOpenIDConfigResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/Resource/ProjectsLocationsOperations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/Resource/ProjectsLocationsOperations.php deleted file mode 100644 index 3ec1c8f6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/Resource/ProjectsLocationsOperations.php +++ /dev/null @@ -1,93 +0,0 @@ - - * $containerService = new Google_Service_Container(...); - * $operations = $containerService->operations; - * - */ -class Google_Service_Container_Resource_ProjectsLocationsOperations extends Google_Service_Resource -{ - /** - * Cancels the specified operation. (operations.cancel) - * - * @param string $name The name (project, location, operation id) of the - * operation to cancel. Specified in the format 'projects/locations/operations'. - * @param Google_Service_Container_CancelOperationRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Container_ContainerEmpty - */ - public function cancel($name, Google_Service_Container_CancelOperationRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('cancel', array($params), "Google_Service_Container_ContainerEmpty"); - } - /** - * Gets the specified operation. (operations.get) - * - * @param string $name The name (project, location, operation id) of the - * operation to get. Specified in the format 'projects/locations/operations'. - * @param array $optParams Optional parameters. - * - * @opt_param string operationId Required. Deprecated. The server-assigned - * `name` of the operation. This field has been deprecated and replaced by the - * name field. - * @opt_param string projectId Required. Deprecated. The Google Developers - * Console [project ID or project - * number](https://support.google.com/cloud/answer/6158840). This field has been - * deprecated and replaced by the name field. - * @opt_param string zone Required. Deprecated. The name of the Google Compute - * Engine [zone](/compute/docs/zones#available) in which the cluster resides. - * This field has been deprecated and replaced by the name field. - * @return Google_Service_Container_Operation - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Container_Operation"); - } - /** - * Lists all operations in a project in a specific zone or all zones. - * (operations.listProjectsLocationsOperations) - * - * @param string $parent The parent (project and location) where the operations - * will be listed. Specified in the format 'projects/locations'. Location "-" - * matches all zones and all regions. - * @param array $optParams Optional parameters. - * - * @opt_param string zone Required. Deprecated. The name of the Google Compute - * Engine [zone](/compute/docs/zones#available) to return operations for, or `-` - * for all zones. This field has been deprecated and replaced by the parent - * field. - * @opt_param string projectId Required. Deprecated. The Google Developers - * Console [project ID or project - * number](https://support.google.com/cloud/answer/6158840). This field has been - * deprecated and replaced by the parent field. - * @return Google_Service_Container_ListOperationsResponse - */ - public function listProjectsLocationsOperations($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Container_ListOperationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/Resource/ProjectsZones.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/Resource/ProjectsZones.php deleted file mode 100644 index 90deb92b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/Resource/ProjectsZones.php +++ /dev/null @@ -1,51 +0,0 @@ - - * $containerService = new Google_Service_Container(...); - * $zones = $containerService->zones; - * - */ -class Google_Service_Container_Resource_ProjectsZones extends Google_Service_Resource -{ - /** - * Returns configuration info about the Google Kubernetes Engine service. - * (zones.getServerconfig) - * - * @param string $projectId Required. Deprecated. The Google Developers Console - * [project ID or project - * number](https://support.google.com/cloud/answer/6158840). This field has been - * deprecated and replaced by the name field. - * @param string $zone Required. Deprecated. The name of the Google Compute - * Engine [zone](/compute/docs/zones#available) to return operations for. This - * field has been deprecated and replaced by the name field. - * @param array $optParams Optional parameters. - * - * @opt_param string name The name (project and location) of the server config - * to get, specified in the format 'projects/locations'. - * @return Google_Service_Container_ServerConfig - */ - public function getServerconfig($projectId, $zone, $optParams = array()) - { - $params = array('projectId' => $projectId, 'zone' => $zone); - $params = array_merge($params, $optParams); - return $this->call('getServerconfig', array($params), "Google_Service_Container_ServerConfig"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/Resource/ProjectsZonesClusters.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/Resource/ProjectsZonesClusters.php deleted file mode 100644 index a2e298c8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/Resource/ProjectsZonesClusters.php +++ /dev/null @@ -1,427 +0,0 @@ - - * $containerService = new Google_Service_Container(...); - * $clusters = $containerService->clusters; - * - */ -class Google_Service_Container_Resource_ProjectsZonesClusters extends Google_Service_Resource -{ - /** - * Sets the addons for a specific cluster. (clusters.addons) - * - * @param string $projectId Required. Deprecated. The Google Developers Console - * [project ID or project - * number](https://support.google.com/cloud/answer/6158840). This field has been - * deprecated and replaced by the name field. - * @param string $zone Required. Deprecated. The name of the Google Compute - * Engine [zone](/compute/docs/zones#available) in which the cluster resides. - * This field has been deprecated and replaced by the name field. - * @param string $clusterId Required. Deprecated. The name of the cluster to - * upgrade. This field has been deprecated and replaced by the name field. - * @param Google_Service_Container_SetAddonsConfigRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Container_Operation - */ - public function addons($projectId, $zone, $clusterId, Google_Service_Container_SetAddonsConfigRequest $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'zone' => $zone, 'clusterId' => $clusterId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('addons', array($params), "Google_Service_Container_Operation"); - } - /** - * Completes master IP rotation. (clusters.completeIpRotation) - * - * @param string $projectId Required. Deprecated. The Google Developers Console - * [project ID or project - * number](https://developers.google.com/console/help/new/#projectnumber). This - * field has been deprecated and replaced by the name field. - * @param string $zone Required. Deprecated. The name of the Google Compute - * Engine [zone](/compute/docs/zones#available) in which the cluster resides. - * This field has been deprecated and replaced by the name field. - * @param string $clusterId Required. Deprecated. The name of the cluster. This - * field has been deprecated and replaced by the name field. - * @param Google_Service_Container_CompleteIPRotationRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Container_Operation - */ - public function completeIpRotation($projectId, $zone, $clusterId, Google_Service_Container_CompleteIPRotationRequest $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'zone' => $zone, 'clusterId' => $clusterId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('completeIpRotation', array($params), "Google_Service_Container_Operation"); - } - /** - * Creates a cluster, consisting of the specified number and type of Google - * Compute Engine instances. - * - * By default, the cluster is created in the project's [default - * network](/compute/docs/networks-and-firewalls#networks). - * - * One firewall is added for the cluster. After cluster creation, the Kubelet - * creates routes for each node to allow the containers on that node to - * communicate with all other instances in the cluster. - * - * Finally, an entry is added to the project's global metadata indicating which - * CIDR range the cluster is using. (clusters.create) - * - * @param string $projectId Required. Deprecated. The Google Developers Console - * [project ID or project - * number](https://support.google.com/cloud/answer/6158840). This field has been - * deprecated and replaced by the parent field. - * @param string $zone Required. Deprecated. The name of the Google Compute - * Engine [zone](/compute/docs/zones#available) in which the cluster resides. - * This field has been deprecated and replaced by the parent field. - * @param Google_Service_Container_CreateClusterRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Container_Operation - */ - public function create($projectId, $zone, Google_Service_Container_CreateClusterRequest $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'zone' => $zone, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Container_Operation"); - } - /** - * Deletes the cluster, including the Kubernetes endpoint and all worker nodes. - * - * Firewalls and routes that were configured during cluster creation are also - * deleted. - * - * Other Google Compute Engine resources that might be in use by the cluster, - * such as load balancer resources, are not deleted if they weren't present when - * the cluster was initially created. (clusters.delete) - * - * @param string $projectId Required. Deprecated. The Google Developers Console - * [project ID or project - * number](https://support.google.com/cloud/answer/6158840). This field has been - * deprecated and replaced by the name field. - * @param string $zone Required. Deprecated. The name of the Google Compute - * Engine [zone](/compute/docs/zones#available) in which the cluster resides. - * This field has been deprecated and replaced by the name field. - * @param string $clusterId Required. Deprecated. The name of the cluster to - * delete. This field has been deprecated and replaced by the name field. - * @param array $optParams Optional parameters. - * - * @opt_param string name The name (project, location, cluster) of the cluster - * to delete. Specified in the format 'projects/locations/clusters'. - * @return Google_Service_Container_Operation - */ - public function delete($projectId, $zone, $clusterId, $optParams = array()) - { - $params = array('projectId' => $projectId, 'zone' => $zone, 'clusterId' => $clusterId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Container_Operation"); - } - /** - * Gets the details of a specific cluster. (clusters.get) - * - * @param string $projectId Required. Deprecated. The Google Developers Console - * [project ID or project - * number](https://support.google.com/cloud/answer/6158840). This field has been - * deprecated and replaced by the name field. - * @param string $zone Required. Deprecated. The name of the Google Compute - * Engine [zone](/compute/docs/zones#available) in which the cluster resides. - * This field has been deprecated and replaced by the name field. - * @param string $clusterId Required. Deprecated. The name of the cluster to - * retrieve. This field has been deprecated and replaced by the name field. - * @param array $optParams Optional parameters. - * - * @opt_param string name The name (project, location, cluster) of the cluster - * to retrieve. Specified in the format 'projects/locations/clusters'. - * @return Google_Service_Container_Cluster - */ - public function get($projectId, $zone, $clusterId, $optParams = array()) - { - $params = array('projectId' => $projectId, 'zone' => $zone, 'clusterId' => $clusterId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Container_Cluster"); - } - /** - * Enables or disables the ABAC authorization mechanism on a cluster. - * (clusters.legacyAbac) - * - * @param string $projectId Required. Deprecated. The Google Developers Console - * [project ID or project - * number](https://support.google.com/cloud/answer/6158840). This field has been - * deprecated and replaced by the name field. - * @param string $zone Required. Deprecated. The name of the Google Compute - * Engine [zone](/compute/docs/zones#available) in which the cluster resides. - * This field has been deprecated and replaced by the name field. - * @param string $clusterId Required. Deprecated. The name of the cluster to - * update. This field has been deprecated and replaced by the name field. - * @param Google_Service_Container_SetLegacyAbacRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Container_Operation - */ - public function legacyAbac($projectId, $zone, $clusterId, Google_Service_Container_SetLegacyAbacRequest $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'zone' => $zone, 'clusterId' => $clusterId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('legacyAbac', array($params), "Google_Service_Container_Operation"); - } - /** - * Lists all clusters owned by a project in either the specified zone or all - * zones. (clusters.listProjectsZonesClusters) - * - * @param string $projectId Required. Deprecated. The Google Developers Console - * [project ID or project - * number](https://support.google.com/cloud/answer/6158840). This field has been - * deprecated and replaced by the parent field. - * @param string $zone Required. Deprecated. The name of the Google Compute - * Engine [zone](/compute/docs/zones#available) in which the cluster resides, or - * "-" for all zones. This field has been deprecated and replaced by the parent - * field. - * @param array $optParams Optional parameters. - * - * @opt_param string parent The parent (project and location) where the clusters - * will be listed. Specified in the format 'projects/locations'. Location "-" - * matches all zones and all regions. - * @return Google_Service_Container_ListClustersResponse - */ - public function listProjectsZonesClusters($projectId, $zone, $optParams = array()) - { - $params = array('projectId' => $projectId, 'zone' => $zone); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Container_ListClustersResponse"); - } - /** - * Sets the locations for a specific cluster. Deprecated. Use - * [projects.locations.clusters.update](/kubernetes- - * engine/docs/reference/rest/v1/projects.locations.clusters.update) instead. - * (clusters.locations) - * - * @param string $projectId Required. Deprecated. The Google Developers Console - * [project ID or project - * number](https://support.google.com/cloud/answer/6158840). This field has been - * deprecated and replaced by the name field. - * @param string $zone Required. Deprecated. The name of the Google Compute - * Engine [zone](/compute/docs/zones#available) in which the cluster resides. - * This field has been deprecated and replaced by the name field. - * @param string $clusterId Required. Deprecated. The name of the cluster to - * upgrade. This field has been deprecated and replaced by the name field. - * @param Google_Service_Container_SetLocationsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Container_Operation - */ - public function locations($projectId, $zone, $clusterId, Google_Service_Container_SetLocationsRequest $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'zone' => $zone, 'clusterId' => $clusterId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('locations', array($params), "Google_Service_Container_Operation"); - } - /** - * Sets the logging service for a specific cluster. (clusters.logging) - * - * @param string $projectId Required. Deprecated. The Google Developers Console - * [project ID or project - * number](https://support.google.com/cloud/answer/6158840). This field has been - * deprecated and replaced by the name field. - * @param string $zone Required. Deprecated. The name of the Google Compute - * Engine [zone](/compute/docs/zones#available) in which the cluster resides. - * This field has been deprecated and replaced by the name field. - * @param string $clusterId Required. Deprecated. The name of the cluster to - * upgrade. This field has been deprecated and replaced by the name field. - * @param Google_Service_Container_SetLoggingServiceRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Container_Operation - */ - public function logging($projectId, $zone, $clusterId, Google_Service_Container_SetLoggingServiceRequest $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'zone' => $zone, 'clusterId' => $clusterId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('logging', array($params), "Google_Service_Container_Operation"); - } - /** - * Updates the master for a specific cluster. (clusters.master) - * - * @param string $projectId Required. Deprecated. The Google Developers Console - * [project ID or project - * number](https://support.google.com/cloud/answer/6158840). This field has been - * deprecated and replaced by the name field. - * @param string $zone Required. Deprecated. The name of the Google Compute - * Engine [zone](/compute/docs/zones#available) in which the cluster resides. - * This field has been deprecated and replaced by the name field. - * @param string $clusterId Required. Deprecated. The name of the cluster to - * upgrade. This field has been deprecated and replaced by the name field. - * @param Google_Service_Container_UpdateMasterRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Container_Operation - */ - public function master($projectId, $zone, $clusterId, Google_Service_Container_UpdateMasterRequest $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'zone' => $zone, 'clusterId' => $clusterId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('master', array($params), "Google_Service_Container_Operation"); - } - /** - * Sets the monitoring service for a specific cluster. (clusters.monitoring) - * - * @param string $projectId Required. Deprecated. The Google Developers Console - * [project ID or project - * number](https://support.google.com/cloud/answer/6158840). This field has been - * deprecated and replaced by the name field. - * @param string $zone Required. Deprecated. The name of the Google Compute - * Engine [zone](/compute/docs/zones#available) in which the cluster resides. - * This field has been deprecated and replaced by the name field. - * @param string $clusterId Required. Deprecated. The name of the cluster to - * upgrade. This field has been deprecated and replaced by the name field. - * @param Google_Service_Container_SetMonitoringServiceRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Container_Operation - */ - public function monitoring($projectId, $zone, $clusterId, Google_Service_Container_SetMonitoringServiceRequest $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'zone' => $zone, 'clusterId' => $clusterId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('monitoring', array($params), "Google_Service_Container_Operation"); - } - /** - * Sets labels on a cluster. (clusters.resourceLabels) - * - * @param string $projectId Required. Deprecated. The Google Developers Console - * [project ID or project - * number](https://developers.google.com/console/help/new/#projectnumber). This - * field has been deprecated and replaced by the name field. - * @param string $zone Required. Deprecated. The name of the Google Compute - * Engine [zone](/compute/docs/zones#available) in which the cluster resides. - * This field has been deprecated and replaced by the name field. - * @param string $clusterId Required. Deprecated. The name of the cluster. This - * field has been deprecated and replaced by the name field. - * @param Google_Service_Container_SetLabelsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Container_Operation - */ - public function resourceLabels($projectId, $zone, $clusterId, Google_Service_Container_SetLabelsRequest $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'zone' => $zone, 'clusterId' => $clusterId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('resourceLabels', array($params), "Google_Service_Container_Operation"); - } - /** - * Sets the maintenance policy for a cluster. (clusters.setMaintenancePolicy) - * - * @param string $projectId Required. The Google Developers Console [project ID - * or project number](https://support.google.com/cloud/answer/6158840). - * @param string $zone Required. The name of the Google Compute Engine - * [zone](/compute/docs/zones#available) in which the cluster resides. - * @param string $clusterId Required. The name of the cluster to update. - * @param Google_Service_Container_SetMaintenancePolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Container_Operation - */ - public function setMaintenancePolicy($projectId, $zone, $clusterId, Google_Service_Container_SetMaintenancePolicyRequest $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'zone' => $zone, 'clusterId' => $clusterId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setMaintenancePolicy', array($params), "Google_Service_Container_Operation"); - } - /** - * Sets master auth materials. Currently supports changing the admin password or - * a specific cluster, either via password generation or explicitly setting the - * password. (clusters.setMasterAuth) - * - * @param string $projectId Required. Deprecated. The Google Developers Console - * [project ID or project - * number](https://support.google.com/cloud/answer/6158840). This field has been - * deprecated and replaced by the name field. - * @param string $zone Required. Deprecated. The name of the Google Compute - * Engine [zone](/compute/docs/zones#available) in which the cluster resides. - * This field has been deprecated and replaced by the name field. - * @param string $clusterId Required. Deprecated. The name of the cluster to - * upgrade. This field has been deprecated and replaced by the name field. - * @param Google_Service_Container_SetMasterAuthRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Container_Operation - */ - public function setMasterAuth($projectId, $zone, $clusterId, Google_Service_Container_SetMasterAuthRequest $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'zone' => $zone, 'clusterId' => $clusterId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setMasterAuth', array($params), "Google_Service_Container_Operation"); - } - /** - * Enables or disables Network Policy for a cluster. (clusters.setNetworkPolicy) - * - * @param string $projectId Required. Deprecated. The Google Developers Console - * [project ID or project - * number](https://developers.google.com/console/help/new/#projectnumber). This - * field has been deprecated and replaced by the name field. - * @param string $zone Required. Deprecated. The name of the Google Compute - * Engine [zone](/compute/docs/zones#available) in which the cluster resides. - * This field has been deprecated and replaced by the name field. - * @param string $clusterId Required. Deprecated. The name of the cluster. This - * field has been deprecated and replaced by the name field. - * @param Google_Service_Container_SetNetworkPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Container_Operation - */ - public function setNetworkPolicy($projectId, $zone, $clusterId, Google_Service_Container_SetNetworkPolicyRequest $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'zone' => $zone, 'clusterId' => $clusterId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setNetworkPolicy', array($params), "Google_Service_Container_Operation"); - } - /** - * Starts master IP rotation. (clusters.startIpRotation) - * - * @param string $projectId Required. Deprecated. The Google Developers Console - * [project ID or project - * number](https://developers.google.com/console/help/new/#projectnumber). This - * field has been deprecated and replaced by the name field. - * @param string $zone Required. Deprecated. The name of the Google Compute - * Engine [zone](/compute/docs/zones#available) in which the cluster resides. - * This field has been deprecated and replaced by the name field. - * @param string $clusterId Required. Deprecated. The name of the cluster. This - * field has been deprecated and replaced by the name field. - * @param Google_Service_Container_StartIPRotationRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Container_Operation - */ - public function startIpRotation($projectId, $zone, $clusterId, Google_Service_Container_StartIPRotationRequest $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'zone' => $zone, 'clusterId' => $clusterId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('startIpRotation', array($params), "Google_Service_Container_Operation"); - } - /** - * Updates the settings of a specific cluster. (clusters.update) - * - * @param string $projectId Required. Deprecated. The Google Developers Console - * [project ID or project - * number](https://support.google.com/cloud/answer/6158840). This field has been - * deprecated and replaced by the name field. - * @param string $zone Required. Deprecated. The name of the Google Compute - * Engine [zone](/compute/docs/zones#available) in which the cluster resides. - * This field has been deprecated and replaced by the name field. - * @param string $clusterId Required. Deprecated. The name of the cluster to - * upgrade. This field has been deprecated and replaced by the name field. - * @param Google_Service_Container_UpdateClusterRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Container_Operation - */ - public function update($projectId, $zone, $clusterId, Google_Service_Container_UpdateClusterRequest $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'zone' => $zone, 'clusterId' => $clusterId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Container_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/Resource/ProjectsZonesClustersNodePools.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/Resource/ProjectsZonesClustersNodePools.php deleted file mode 100644 index 35aca239..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/Resource/ProjectsZonesClustersNodePools.php +++ /dev/null @@ -1,253 +0,0 @@ - - * $containerService = new Google_Service_Container(...); - * $nodePools = $containerService->nodePools; - * - */ -class Google_Service_Container_Resource_ProjectsZonesClustersNodePools extends Google_Service_Resource -{ - /** - * Sets the autoscaling settings for the specified node pool. - * (nodePools.autoscaling) - * - * @param string $projectId Required. Deprecated. The Google Developers Console - * [project ID or project - * number](https://support.google.com/cloud/answer/6158840). This field has been - * deprecated and replaced by the name field. - * @param string $zone Required. Deprecated. The name of the Google Compute - * Engine [zone](/compute/docs/zones#available) in which the cluster resides. - * This field has been deprecated and replaced by the name field. - * @param string $clusterId Required. Deprecated. The name of the cluster to - * upgrade. This field has been deprecated and replaced by the name field. - * @param string $nodePoolId Required. Deprecated. The name of the node pool to - * upgrade. This field has been deprecated and replaced by the name field. - * @param Google_Service_Container_SetNodePoolAutoscalingRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Container_Operation - */ - public function autoscaling($projectId, $zone, $clusterId, $nodePoolId, Google_Service_Container_SetNodePoolAutoscalingRequest $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'zone' => $zone, 'clusterId' => $clusterId, 'nodePoolId' => $nodePoolId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('autoscaling', array($params), "Google_Service_Container_Operation"); - } - /** - * Creates a node pool for a cluster. (nodePools.create) - * - * @param string $projectId Required. Deprecated. The Google Developers Console - * [project ID or project - * number](https://developers.google.com/console/help/new/#projectnumber). This - * field has been deprecated and replaced by the parent field. - * @param string $zone Required. Deprecated. The name of the Google Compute - * Engine [zone](/compute/docs/zones#available) in which the cluster resides. - * This field has been deprecated and replaced by the parent field. - * @param string $clusterId Required. Deprecated. The name of the cluster. This - * field has been deprecated and replaced by the parent field. - * @param Google_Service_Container_CreateNodePoolRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Container_Operation - */ - public function create($projectId, $zone, $clusterId, Google_Service_Container_CreateNodePoolRequest $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'zone' => $zone, 'clusterId' => $clusterId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Container_Operation"); - } - /** - * Deletes a node pool from a cluster. (nodePools.delete) - * - * @param string $projectId Required. Deprecated. The Google Developers Console - * [project ID or project - * number](https://developers.google.com/console/help/new/#projectnumber). This - * field has been deprecated and replaced by the name field. - * @param string $zone Required. Deprecated. The name of the Google Compute - * Engine [zone](/compute/docs/zones#available) in which the cluster resides. - * This field has been deprecated and replaced by the name field. - * @param string $clusterId Required. Deprecated. The name of the cluster. This - * field has been deprecated and replaced by the name field. - * @param string $nodePoolId Required. Deprecated. The name of the node pool to - * delete. This field has been deprecated and replaced by the name field. - * @param array $optParams Optional parameters. - * - * @opt_param string name The name (project, location, cluster, node pool id) of - * the node pool to delete. Specified in the format - * 'projects/locations/clusters/nodePools'. - * @return Google_Service_Container_Operation - */ - public function delete($projectId, $zone, $clusterId, $nodePoolId, $optParams = array()) - { - $params = array('projectId' => $projectId, 'zone' => $zone, 'clusterId' => $clusterId, 'nodePoolId' => $nodePoolId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Container_Operation"); - } - /** - * Retrieves the requested node pool. (nodePools.get) - * - * @param string $projectId Required. Deprecated. The Google Developers Console - * [project ID or project - * number](https://developers.google.com/console/help/new/#projectnumber). This - * field has been deprecated and replaced by the name field. - * @param string $zone Required. Deprecated. The name of the Google Compute - * Engine [zone](/compute/docs/zones#available) in which the cluster resides. - * This field has been deprecated and replaced by the name field. - * @param string $clusterId Required. Deprecated. The name of the cluster. This - * field has been deprecated and replaced by the name field. - * @param string $nodePoolId Required. Deprecated. The name of the node pool. - * This field has been deprecated and replaced by the name field. - * @param array $optParams Optional parameters. - * - * @opt_param string name The name (project, location, cluster, node pool id) of - * the node pool to get. Specified in the format - * 'projects/locations/clusters/nodePools'. - * @return Google_Service_Container_NodePool - */ - public function get($projectId, $zone, $clusterId, $nodePoolId, $optParams = array()) - { - $params = array('projectId' => $projectId, 'zone' => $zone, 'clusterId' => $clusterId, 'nodePoolId' => $nodePoolId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Container_NodePool"); - } - /** - * Lists the node pools for a cluster. - * (nodePools.listProjectsZonesClustersNodePools) - * - * @param string $projectId Required. Deprecated. The Google Developers Console - * [project ID or project - * number](https://developers.google.com/console/help/new/#projectnumber). This - * field has been deprecated and replaced by the parent field. - * @param string $zone Required. Deprecated. The name of the Google Compute - * Engine [zone](/compute/docs/zones#available) in which the cluster resides. - * This field has been deprecated and replaced by the parent field. - * @param string $clusterId Required. Deprecated. The name of the cluster. This - * field has been deprecated and replaced by the parent field. - * @param array $optParams Optional parameters. - * - * @opt_param string parent The parent (project, location, cluster id) where the - * node pools will be listed. Specified in the format - * 'projects/locations/clusters'. - * @return Google_Service_Container_ListNodePoolsResponse - */ - public function listProjectsZonesClustersNodePools($projectId, $zone, $clusterId, $optParams = array()) - { - $params = array('projectId' => $projectId, 'zone' => $zone, 'clusterId' => $clusterId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Container_ListNodePoolsResponse"); - } - /** - * Rolls back a previously Aborted or Failed NodePool upgrade. This makes no - * changes if the last upgrade successfully completed. (nodePools.rollback) - * - * @param string $projectId Required. Deprecated. The Google Developers Console - * [project ID or project - * number](https://support.google.com/cloud/answer/6158840). This field has been - * deprecated and replaced by the name field. - * @param string $zone Required. Deprecated. The name of the Google Compute - * Engine [zone](/compute/docs/zones#available) in which the cluster resides. - * This field has been deprecated and replaced by the name field. - * @param string $clusterId Required. Deprecated. The name of the cluster to - * rollback. This field has been deprecated and replaced by the name field. - * @param string $nodePoolId Required. Deprecated. The name of the node pool to - * rollback. This field has been deprecated and replaced by the name field. - * @param Google_Service_Container_RollbackNodePoolUpgradeRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Container_Operation - */ - public function rollback($projectId, $zone, $clusterId, $nodePoolId, Google_Service_Container_RollbackNodePoolUpgradeRequest $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'zone' => $zone, 'clusterId' => $clusterId, 'nodePoolId' => $nodePoolId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('rollback', array($params), "Google_Service_Container_Operation"); - } - /** - * Sets the NodeManagement options for a node pool. (nodePools.setManagement) - * - * @param string $projectId Required. Deprecated. The Google Developers Console - * [project ID or project - * number](https://support.google.com/cloud/answer/6158840). This field has been - * deprecated and replaced by the name field. - * @param string $zone Required. Deprecated. The name of the Google Compute - * Engine [zone](/compute/docs/zones#available) in which the cluster resides. - * This field has been deprecated and replaced by the name field. - * @param string $clusterId Required. Deprecated. The name of the cluster to - * update. This field has been deprecated and replaced by the name field. - * @param string $nodePoolId Required. Deprecated. The name of the node pool to - * update. This field has been deprecated and replaced by the name field. - * @param Google_Service_Container_SetNodePoolManagementRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Container_Operation - */ - public function setManagement($projectId, $zone, $clusterId, $nodePoolId, Google_Service_Container_SetNodePoolManagementRequest $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'zone' => $zone, 'clusterId' => $clusterId, 'nodePoolId' => $nodePoolId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setManagement', array($params), "Google_Service_Container_Operation"); - } - /** - * Sets the size for a specific node pool. (nodePools.setSize) - * - * @param string $projectId Required. Deprecated. The Google Developers Console - * [project ID or project - * number](https://support.google.com/cloud/answer/6158840). This field has been - * deprecated and replaced by the name field. - * @param string $zone Required. Deprecated. The name of the Google Compute - * Engine [zone](/compute/docs/zones#available) in which the cluster resides. - * This field has been deprecated and replaced by the name field. - * @param string $clusterId Required. Deprecated. The name of the cluster to - * update. This field has been deprecated and replaced by the name field. - * @param string $nodePoolId Required. Deprecated. The name of the node pool to - * update. This field has been deprecated and replaced by the name field. - * @param Google_Service_Container_SetNodePoolSizeRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Container_Operation - */ - public function setSize($projectId, $zone, $clusterId, $nodePoolId, Google_Service_Container_SetNodePoolSizeRequest $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'zone' => $zone, 'clusterId' => $clusterId, 'nodePoolId' => $nodePoolId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setSize', array($params), "Google_Service_Container_Operation"); - } - /** - * Updates the version and/or image type for the specified node pool. - * (nodePools.update) - * - * @param string $projectId Required. Deprecated. The Google Developers Console - * [project ID or project - * number](https://support.google.com/cloud/answer/6158840). This field has been - * deprecated and replaced by the name field. - * @param string $zone Required. Deprecated. The name of the Google Compute - * Engine [zone](/compute/docs/zones#available) in which the cluster resides. - * This field has been deprecated and replaced by the name field. - * @param string $clusterId Required. Deprecated. The name of the cluster to - * upgrade. This field has been deprecated and replaced by the name field. - * @param string $nodePoolId Required. Deprecated. The name of the node pool to - * upgrade. This field has been deprecated and replaced by the name field. - * @param Google_Service_Container_UpdateNodePoolRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Container_Operation - */ - public function update($projectId, $zone, $clusterId, $nodePoolId, Google_Service_Container_UpdateNodePoolRequest $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'zone' => $zone, 'clusterId' => $clusterId, 'nodePoolId' => $nodePoolId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Container_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/Resource/ProjectsZonesOperations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/Resource/ProjectsZonesOperations.php deleted file mode 100644 index a0203618..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/Resource/ProjectsZonesOperations.php +++ /dev/null @@ -1,101 +0,0 @@ - - * $containerService = new Google_Service_Container(...); - * $operations = $containerService->operations; - * - */ -class Google_Service_Container_Resource_ProjectsZonesOperations extends Google_Service_Resource -{ - /** - * Cancels the specified operation. (operations.cancel) - * - * @param string $projectId Required. Deprecated. The Google Developers Console - * [project ID or project - * number](https://support.google.com/cloud/answer/6158840). This field has been - * deprecated and replaced by the name field. - * @param string $zone Required. Deprecated. The name of the Google Compute - * Engine [zone](/compute/docs/zones#available) in which the operation resides. - * This field has been deprecated and replaced by the name field. - * @param string $operationId Required. Deprecated. The server-assigned `name` - * of the operation. This field has been deprecated and replaced by the name - * field. - * @param Google_Service_Container_CancelOperationRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Container_ContainerEmpty - */ - public function cancel($projectId, $zone, $operationId, Google_Service_Container_CancelOperationRequest $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'zone' => $zone, 'operationId' => $operationId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('cancel', array($params), "Google_Service_Container_ContainerEmpty"); - } - /** - * Gets the specified operation. (operations.get) - * - * @param string $projectId Required. Deprecated. The Google Developers Console - * [project ID or project - * number](https://support.google.com/cloud/answer/6158840). This field has been - * deprecated and replaced by the name field. - * @param string $zone Required. Deprecated. The name of the Google Compute - * Engine [zone](/compute/docs/zones#available) in which the cluster resides. - * This field has been deprecated and replaced by the name field. - * @param string $operationId Required. Deprecated. The server-assigned `name` - * of the operation. This field has been deprecated and replaced by the name - * field. - * @param array $optParams Optional parameters. - * - * @opt_param string name The name (project, location, operation id) of the - * operation to get. Specified in the format 'projects/locations/operations'. - * @return Google_Service_Container_Operation - */ - public function get($projectId, $zone, $operationId, $optParams = array()) - { - $params = array('projectId' => $projectId, 'zone' => $zone, 'operationId' => $operationId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Container_Operation"); - } - /** - * Lists all operations in a project in a specific zone or all zones. - * (operations.listProjectsZonesOperations) - * - * @param string $projectId Required. Deprecated. The Google Developers Console - * [project ID or project - * number](https://support.google.com/cloud/answer/6158840). This field has been - * deprecated and replaced by the parent field. - * @param string $zone Required. Deprecated. The name of the Google Compute - * Engine [zone](/compute/docs/zones#available) to return operations for, or `-` - * for all zones. This field has been deprecated and replaced by the parent - * field. - * @param array $optParams Optional parameters. - * - * @opt_param string parent The parent (project and location) where the - * operations will be listed. Specified in the format 'projects/locations'. - * Location "-" matches all zones and all regions. - * @return Google_Service_Container_ListOperationsResponse - */ - public function listProjectsZonesOperations($projectId, $zone, $optParams = array()) - { - $params = array('projectId' => $projectId, 'zone' => $zone); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Container_ListOperationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/ResourceLimit.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/ResourceLimit.php deleted file mode 100644 index b4f3e37d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/ResourceLimit.php +++ /dev/null @@ -1,48 +0,0 @@ -maximum = $maximum; - } - public function getMaximum() - { - return $this->maximum; - } - public function setMinimum($minimum) - { - $this->minimum = $minimum; - } - public function getMinimum() - { - return $this->minimum; - } - public function setResourceType($resourceType) - { - $this->resourceType = $resourceType; - } - public function getResourceType() - { - return $this->resourceType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/ResourceUsageExportConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/ResourceUsageExportConfig.php deleted file mode 100644 index 9150ad96..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/ResourceUsageExportConfig.php +++ /dev/null @@ -1,62 +0,0 @@ -bigqueryDestination = $bigqueryDestination; - } - /** - * @return Google_Service_Container_BigQueryDestination - */ - public function getBigqueryDestination() - { - return $this->bigqueryDestination; - } - /** - * @param Google_Service_Container_ConsumptionMeteringConfig - */ - public function setConsumptionMeteringConfig(Google_Service_Container_ConsumptionMeteringConfig $consumptionMeteringConfig) - { - $this->consumptionMeteringConfig = $consumptionMeteringConfig; - } - /** - * @return Google_Service_Container_ConsumptionMeteringConfig - */ - public function getConsumptionMeteringConfig() - { - return $this->consumptionMeteringConfig; - } - public function setEnableNetworkEgressMetering($enableNetworkEgressMetering) - { - $this->enableNetworkEgressMetering = $enableNetworkEgressMetering; - } - public function getEnableNetworkEgressMetering() - { - return $this->enableNetworkEgressMetering; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/RollbackNodePoolUpgradeRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/RollbackNodePoolUpgradeRequest.php deleted file mode 100644 index ac2e738c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/RollbackNodePoolUpgradeRequest.php +++ /dev/null @@ -1,66 +0,0 @@ -clusterId = $clusterId; - } - public function getClusterId() - { - return $this->clusterId; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNodePoolId($nodePoolId) - { - $this->nodePoolId = $nodePoolId; - } - public function getNodePoolId() - { - return $this->nodePoolId; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } - public function setZone($zone) - { - $this->zone = $zone; - } - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/SandboxConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/SandboxConfig.php deleted file mode 100644 index a4589c65..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/SandboxConfig.php +++ /dev/null @@ -1,30 +0,0 @@ -type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/ServerConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/ServerConfig.php deleted file mode 100644 index f144761d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/ServerConfig.php +++ /dev/null @@ -1,67 +0,0 @@ -defaultClusterVersion = $defaultClusterVersion; - } - public function getDefaultClusterVersion() - { - return $this->defaultClusterVersion; - } - public function setDefaultImageType($defaultImageType) - { - $this->defaultImageType = $defaultImageType; - } - public function getDefaultImageType() - { - return $this->defaultImageType; - } - public function setValidImageTypes($validImageTypes) - { - $this->validImageTypes = $validImageTypes; - } - public function getValidImageTypes() - { - return $this->validImageTypes; - } - public function setValidMasterVersions($validMasterVersions) - { - $this->validMasterVersions = $validMasterVersions; - } - public function getValidMasterVersions() - { - return $this->validMasterVersions; - } - public function setValidNodeVersions($validNodeVersions) - { - $this->validNodeVersions = $validNodeVersions; - } - public function getValidNodeVersions() - { - return $this->validNodeVersions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/SetAddonsConfigRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/SetAddonsConfigRequest.php deleted file mode 100644 index c7c81564..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/SetAddonsConfigRequest.php +++ /dev/null @@ -1,73 +0,0 @@ -addonsConfig = $addonsConfig; - } - /** - * @return Google_Service_Container_AddonsConfig - */ - public function getAddonsConfig() - { - return $this->addonsConfig; - } - public function setClusterId($clusterId) - { - $this->clusterId = $clusterId; - } - public function getClusterId() - { - return $this->clusterId; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } - public function setZone($zone) - { - $this->zone = $zone; - } - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/SetLabelsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/SetLabelsRequest.php deleted file mode 100644 index 865c7f06..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/SetLabelsRequest.php +++ /dev/null @@ -1,75 +0,0 @@ -clusterId = $clusterId; - } - public function getClusterId() - { - return $this->clusterId; - } - public function setLabelFingerprint($labelFingerprint) - { - $this->labelFingerprint = $labelFingerprint; - } - public function getLabelFingerprint() - { - return $this->labelFingerprint; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } - public function setResourceLabels($resourceLabels) - { - $this->resourceLabels = $resourceLabels; - } - public function getResourceLabels() - { - return $this->resourceLabels; - } - public function setZone($zone) - { - $this->zone = $zone; - } - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/SetLegacyAbacRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/SetLegacyAbacRequest.php deleted file mode 100644 index 612281e4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/SetLegacyAbacRequest.php +++ /dev/null @@ -1,66 +0,0 @@ -clusterId = $clusterId; - } - public function getClusterId() - { - return $this->clusterId; - } - public function setEnabled($enabled) - { - $this->enabled = $enabled; - } - public function getEnabled() - { - return $this->enabled; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } - public function setZone($zone) - { - $this->zone = $zone; - } - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/SetLocationsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/SetLocationsRequest.php deleted file mode 100644 index dfd3f617..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/SetLocationsRequest.php +++ /dev/null @@ -1,67 +0,0 @@ -clusterId = $clusterId; - } - public function getClusterId() - { - return $this->clusterId; - } - public function setLocations($locations) - { - $this->locations = $locations; - } - public function getLocations() - { - return $this->locations; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } - public function setZone($zone) - { - $this->zone = $zone; - } - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/SetLoggingServiceRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/SetLoggingServiceRequest.php deleted file mode 100644 index f6674603..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/SetLoggingServiceRequest.php +++ /dev/null @@ -1,66 +0,0 @@ -clusterId = $clusterId; - } - public function getClusterId() - { - return $this->clusterId; - } - public function setLoggingService($loggingService) - { - $this->loggingService = $loggingService; - } - public function getLoggingService() - { - return $this->loggingService; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } - public function setZone($zone) - { - $this->zone = $zone; - } - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/SetMaintenancePolicyRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/SetMaintenancePolicyRequest.php deleted file mode 100644 index ac682081..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/SetMaintenancePolicyRequest.php +++ /dev/null @@ -1,73 +0,0 @@ -clusterId = $clusterId; - } - public function getClusterId() - { - return $this->clusterId; - } - /** - * @param Google_Service_Container_MaintenancePolicy - */ - public function setMaintenancePolicy(Google_Service_Container_MaintenancePolicy $maintenancePolicy) - { - $this->maintenancePolicy = $maintenancePolicy; - } - /** - * @return Google_Service_Container_MaintenancePolicy - */ - public function getMaintenancePolicy() - { - return $this->maintenancePolicy; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } - public function setZone($zone) - { - $this->zone = $zone; - } - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/SetMasterAuthRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/SetMasterAuthRequest.php deleted file mode 100644 index 4a177e37..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/SetMasterAuthRequest.php +++ /dev/null @@ -1,82 +0,0 @@ -action = $action; - } - public function getAction() - { - return $this->action; - } - public function setClusterId($clusterId) - { - $this->clusterId = $clusterId; - } - public function getClusterId() - { - return $this->clusterId; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } - /** - * @param Google_Service_Container_MasterAuth - */ - public function setUpdate(Google_Service_Container_MasterAuth $update) - { - $this->update = $update; - } - /** - * @return Google_Service_Container_MasterAuth - */ - public function getUpdate() - { - return $this->update; - } - public function setZone($zone) - { - $this->zone = $zone; - } - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/SetMonitoringServiceRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/SetMonitoringServiceRequest.php deleted file mode 100644 index c191ae8a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/SetMonitoringServiceRequest.php +++ /dev/null @@ -1,66 +0,0 @@ -clusterId = $clusterId; - } - public function getClusterId() - { - return $this->clusterId; - } - public function setMonitoringService($monitoringService) - { - $this->monitoringService = $monitoringService; - } - public function getMonitoringService() - { - return $this->monitoringService; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } - public function setZone($zone) - { - $this->zone = $zone; - } - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/SetNetworkPolicyRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/SetNetworkPolicyRequest.php deleted file mode 100644 index d3513e1d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/SetNetworkPolicyRequest.php +++ /dev/null @@ -1,73 +0,0 @@ -clusterId = $clusterId; - } - public function getClusterId() - { - return $this->clusterId; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Container_NetworkPolicy - */ - public function setNetworkPolicy(Google_Service_Container_NetworkPolicy $networkPolicy) - { - $this->networkPolicy = $networkPolicy; - } - /** - * @return Google_Service_Container_NetworkPolicy - */ - public function getNetworkPolicy() - { - return $this->networkPolicy; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } - public function setZone($zone) - { - $this->zone = $zone; - } - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/SetNodePoolAutoscalingRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/SetNodePoolAutoscalingRequest.php deleted file mode 100644 index ecb38619..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/SetNodePoolAutoscalingRequest.php +++ /dev/null @@ -1,82 +0,0 @@ -autoscaling = $autoscaling; - } - /** - * @return Google_Service_Container_NodePoolAutoscaling - */ - public function getAutoscaling() - { - return $this->autoscaling; - } - public function setClusterId($clusterId) - { - $this->clusterId = $clusterId; - } - public function getClusterId() - { - return $this->clusterId; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNodePoolId($nodePoolId) - { - $this->nodePoolId = $nodePoolId; - } - public function getNodePoolId() - { - return $this->nodePoolId; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } - public function setZone($zone) - { - $this->zone = $zone; - } - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/SetNodePoolManagementRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/SetNodePoolManagementRequest.php deleted file mode 100644 index 6c8b01ce..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/SetNodePoolManagementRequest.php +++ /dev/null @@ -1,82 +0,0 @@ -clusterId = $clusterId; - } - public function getClusterId() - { - return $this->clusterId; - } - /** - * @param Google_Service_Container_NodeManagement - */ - public function setManagement(Google_Service_Container_NodeManagement $management) - { - $this->management = $management; - } - /** - * @return Google_Service_Container_NodeManagement - */ - public function getManagement() - { - return $this->management; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNodePoolId($nodePoolId) - { - $this->nodePoolId = $nodePoolId; - } - public function getNodePoolId() - { - return $this->nodePoolId; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } - public function setZone($zone) - { - $this->zone = $zone; - } - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/SetNodePoolSizeRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/SetNodePoolSizeRequest.php deleted file mode 100644 index d5c3a8a9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/SetNodePoolSizeRequest.php +++ /dev/null @@ -1,75 +0,0 @@ -clusterId = $clusterId; - } - public function getClusterId() - { - return $this->clusterId; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNodeCount($nodeCount) - { - $this->nodeCount = $nodeCount; - } - public function getNodeCount() - { - return $this->nodeCount; - } - public function setNodePoolId($nodePoolId) - { - $this->nodePoolId = $nodePoolId; - } - public function getNodePoolId() - { - return $this->nodePoolId; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } - public function setZone($zone) - { - $this->zone = $zone; - } - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/ShieldedInstanceConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/ShieldedInstanceConfig.php deleted file mode 100644 index 263233e3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/ShieldedInstanceConfig.php +++ /dev/null @@ -1,39 +0,0 @@ -enableIntegrityMonitoring = $enableIntegrityMonitoring; - } - public function getEnableIntegrityMonitoring() - { - return $this->enableIntegrityMonitoring; - } - public function setEnableSecureBoot($enableSecureBoot) - { - $this->enableSecureBoot = $enableSecureBoot; - } - public function getEnableSecureBoot() - { - return $this->enableSecureBoot; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/ShieldedNodes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/ShieldedNodes.php deleted file mode 100644 index 849fcf6c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/ShieldedNodes.php +++ /dev/null @@ -1,30 +0,0 @@ -enabled = $enabled; - } - public function getEnabled() - { - return $this->enabled; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/StartIPRotationRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/StartIPRotationRequest.php deleted file mode 100644 index cea4a50e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/StartIPRotationRequest.php +++ /dev/null @@ -1,66 +0,0 @@ -clusterId = $clusterId; - } - public function getClusterId() - { - return $this->clusterId; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } - public function setRotateCredentials($rotateCredentials) - { - $this->rotateCredentials = $rotateCredentials; - } - public function getRotateCredentials() - { - return $this->rotateCredentials; - } - public function setZone($zone) - { - $this->zone = $zone; - } - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/StatusCondition.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/StatusCondition.php deleted file mode 100644 index 9d51d118..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/StatusCondition.php +++ /dev/null @@ -1,39 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/TimeWindow.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/TimeWindow.php deleted file mode 100644 index 8f4dd646..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/TimeWindow.php +++ /dev/null @@ -1,39 +0,0 @@ -endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/UpdateClusterRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/UpdateClusterRequest.php deleted file mode 100644 index a373e95a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/UpdateClusterRequest.php +++ /dev/null @@ -1,73 +0,0 @@ -clusterId = $clusterId; - } - public function getClusterId() - { - return $this->clusterId; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } - /** - * @param Google_Service_Container_ClusterUpdate - */ - public function setUpdate(Google_Service_Container_ClusterUpdate $update) - { - $this->update = $update; - } - /** - * @return Google_Service_Container_ClusterUpdate - */ - public function getUpdate() - { - return $this->update; - } - public function setZone($zone) - { - $this->zone = $zone; - } - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/UpdateMasterRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/UpdateMasterRequest.php deleted file mode 100644 index 4dbca93a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/UpdateMasterRequest.php +++ /dev/null @@ -1,66 +0,0 @@ -clusterId = $clusterId; - } - public function getClusterId() - { - return $this->clusterId; - } - public function setMasterVersion($masterVersion) - { - $this->masterVersion = $masterVersion; - } - public function getMasterVersion() - { - return $this->masterVersion; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } - public function setZone($zone) - { - $this->zone = $zone; - } - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/UpdateNodePoolRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/UpdateNodePoolRequest.php deleted file mode 100644 index e0b79aa6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/UpdateNodePoolRequest.php +++ /dev/null @@ -1,110 +0,0 @@ -clusterId = $clusterId; - } - public function getClusterId() - { - return $this->clusterId; - } - public function setImageType($imageType) - { - $this->imageType = $imageType; - } - public function getImageType() - { - return $this->imageType; - } - public function setLocations($locations) - { - $this->locations = $locations; - } - public function getLocations() - { - return $this->locations; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNodePoolId($nodePoolId) - { - $this->nodePoolId = $nodePoolId; - } - public function getNodePoolId() - { - return $this->nodePoolId; - } - public function setNodeVersion($nodeVersion) - { - $this->nodeVersion = $nodeVersion; - } - public function getNodeVersion() - { - return $this->nodeVersion; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } - /** - * @param Google_Service_Container_UpgradeSettings - */ - public function setUpgradeSettings(Google_Service_Container_UpgradeSettings $upgradeSettings) - { - $this->upgradeSettings = $upgradeSettings; - } - /** - * @return Google_Service_Container_UpgradeSettings - */ - public function getUpgradeSettings() - { - return $this->upgradeSettings; - } - public function setZone($zone) - { - $this->zone = $zone; - } - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/UpgradeSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/UpgradeSettings.php deleted file mode 100644 index 18e8a506..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/UpgradeSettings.php +++ /dev/null @@ -1,39 +0,0 @@ -maxSurge = $maxSurge; - } - public function getMaxSurge() - { - return $this->maxSurge; - } - public function setMaxUnavailable($maxUnavailable) - { - $this->maxUnavailable = $maxUnavailable; - } - public function getMaxUnavailable() - { - return $this->maxUnavailable; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/UsableSubnetwork.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/UsableSubnetwork.php deleted file mode 100644 index 9a42b6d9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/UsableSubnetwork.php +++ /dev/null @@ -1,74 +0,0 @@ -ipCidrRange = $ipCidrRange; - } - public function getIpCidrRange() - { - return $this->ipCidrRange; - } - public function setNetwork($network) - { - $this->network = $network; - } - public function getNetwork() - { - return $this->network; - } - /** - * @param Google_Service_Container_UsableSubnetworkSecondaryRange - */ - public function setSecondaryIpRanges($secondaryIpRanges) - { - $this->secondaryIpRanges = $secondaryIpRanges; - } - /** - * @return Google_Service_Container_UsableSubnetworkSecondaryRange - */ - public function getSecondaryIpRanges() - { - return $this->secondaryIpRanges; - } - public function setStatusMessage($statusMessage) - { - $this->statusMessage = $statusMessage; - } - public function getStatusMessage() - { - return $this->statusMessage; - } - public function setSubnetwork($subnetwork) - { - $this->subnetwork = $subnetwork; - } - public function getSubnetwork() - { - return $this->subnetwork; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/UsableSubnetworkSecondaryRange.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/UsableSubnetworkSecondaryRange.php deleted file mode 100644 index 72277087..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/UsableSubnetworkSecondaryRange.php +++ /dev/null @@ -1,48 +0,0 @@ -ipCidrRange = $ipCidrRange; - } - public function getIpCidrRange() - { - return $this->ipCidrRange; - } - public function setRangeName($rangeName) - { - $this->rangeName = $rangeName; - } - public function getRangeName() - { - return $this->rangeName; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/VerticalPodAutoscaling.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/VerticalPodAutoscaling.php deleted file mode 100644 index 0ec17d08..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Container/VerticalPodAutoscaling.php +++ /dev/null @@ -1,30 +0,0 @@ -enabled = $enabled; - } - public function getEnabled() - { - return $this->enabled; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis.php deleted file mode 100644 index 54cfa5c5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis.php +++ /dev/null @@ -1,590 +0,0 @@ - - * An implementation of the Grafeas API, which stores, and enables querying and - * retrieval of critical metadata about all of your software artifacts.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_ContainerAnalysis extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - - public $projects_notes; - public $projects_notes_occurrences; - public $projects_occurrences; - public $projects_operations; - public $projects_scanConfigs; - public $providers_notes; - public $providers_notes_occurrences; - - /** - * Constructs the internal representation of the ContainerAnalysis service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://containeranalysis.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1alpha1'; - $this->serviceName = 'containeranalysis'; - - $this->projects_notes = new Google_Service_ContainerAnalysis_Resource_ProjectsNotes( - $this, - $this->serviceName, - 'notes', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1alpha1/{+parent}/notes', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'name' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'noteId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => 'v1alpha1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1alpha1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getIamPolicy' => array( - 'path' => 'v1alpha1/{+resource}:getIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1alpha1/{+parent}/notes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'name' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'v1alpha1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setIamPolicy' => array( - 'path' => 'v1alpha1/{+resource}:setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => 'v1alpha1/{+resource}:testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_notes_occurrences = new Google_Service_ContainerAnalysis_Resource_ProjectsNotesOccurrences( - $this, - $this->serviceName, - 'occurrences', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1alpha1/{+name}/occurrences', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_occurrences = new Google_Service_ContainerAnalysis_Resource_ProjectsOccurrences( - $this, - $this->serviceName, - 'occurrences', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1alpha1/{+parent}/occurrences', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'name' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => 'v1alpha1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1alpha1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getIamPolicy' => array( - 'path' => 'v1alpha1/{+resource}:getIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getNotes' => array( - 'path' => 'v1alpha1/{+name}/notes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getVulnerabilitySummary' => array( - 'path' => 'v1alpha1/{+parent}/occurrences:vulnerabilitySummary', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'v1alpha1/{+parent}/occurrences', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'name' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'kind' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v1alpha1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setIamPolicy' => array( - 'path' => 'v1alpha1/{+resource}:setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => 'v1alpha1/{+resource}:testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_operations = new Google_Service_ContainerAnalysis_Resource_ProjectsOperations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1alpha1/{+parent}/operations', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => 'v1alpha1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_scanConfigs = new Google_Service_ContainerAnalysis_Resource_ProjectsScanConfigs( - $this, - $this->serviceName, - 'scanConfigs', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1alpha1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1alpha1/{+parent}/scanConfigs', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'v1alpha1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->providers_notes = new Google_Service_ContainerAnalysis_Resource_ProvidersNotes( - $this, - $this->serviceName, - 'notes', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1alpha1/{+name}/notes', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'parent' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'noteId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => 'v1alpha1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1alpha1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getIamPolicy' => array( - 'path' => 'v1alpha1/{+resource}:getIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1alpha1/{+name}/notes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'parent' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v1alpha1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setIamPolicy' => array( - 'path' => 'v1alpha1/{+resource}:setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => 'v1alpha1/{+resource}:testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->providers_notes_occurrences = new Google_Service_ContainerAnalysis_Resource_ProvidersNotesOccurrences( - $this, - $this->serviceName, - 'occurrences', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1alpha1/{+name}/occurrences', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Artifact.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Artifact.php deleted file mode 100644 index 16d363c9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Artifact.php +++ /dev/null @@ -1,58 +0,0 @@ -checksum = $checksum; - } - public function getChecksum() - { - return $this->checksum; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNames($names) - { - $this->names = $names; - } - public function getNames() - { - return $this->names; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Attestation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Attestation.php deleted file mode 100644 index 0fe1b152..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Attestation.php +++ /dev/null @@ -1,37 +0,0 @@ -pgpSignedAttestation = $pgpSignedAttestation; - } - /** - * @return Google_Service_ContainerAnalysis_PgpSignedAttestation - */ - public function getPgpSignedAttestation() - { - return $this->pgpSignedAttestation; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/AttestationAuthority.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/AttestationAuthority.php deleted file mode 100644 index a543fe03..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/AttestationAuthority.php +++ /dev/null @@ -1,37 +0,0 @@ -hint = $hint; - } - /** - * @return Google_Service_ContainerAnalysis_AttestationAuthorityHint - */ - public function getHint() - { - return $this->hint; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/AttestationAuthorityHint.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/AttestationAuthorityHint.php deleted file mode 100644 index f956c0a9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/AttestationAuthorityHint.php +++ /dev/null @@ -1,30 +0,0 @@ -humanReadableName = $humanReadableName; - } - public function getHumanReadableName() - { - return $this->humanReadableName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Basis.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Basis.php deleted file mode 100644 index 40b9d075..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Basis.php +++ /dev/null @@ -1,46 +0,0 @@ -fingerprint = $fingerprint; - } - /** - * @return Google_Service_ContainerAnalysis_Fingerprint - */ - public function getFingerprint() - { - return $this->fingerprint; - } - public function setResourceUrl($resourceUrl) - { - $this->resourceUrl = $resourceUrl; - } - public function getResourceUrl() - { - return $this->resourceUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Binding.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Binding.php deleted file mode 100644 index af1ed52b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Binding.php +++ /dev/null @@ -1,56 +0,0 @@ -condition = $condition; - } - /** - * @return Google_Service_ContainerAnalysis_Expr - */ - public function getCondition() - { - return $this->condition; - } - public function setMembers($members) - { - $this->members = $members; - } - public function getMembers() - { - return $this->members; - } - public function setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/BuildDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/BuildDetails.php deleted file mode 100644 index 9517a907..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/BuildDetails.php +++ /dev/null @@ -1,46 +0,0 @@ -provenance = $provenance; - } - /** - * @return Google_Service_ContainerAnalysis_BuildProvenance - */ - public function getProvenance() - { - return $this->provenance; - } - public function setProvenanceBytes($provenanceBytes) - { - $this->provenanceBytes = $provenanceBytes; - } - public function getProvenanceBytes() - { - return $this->provenanceBytes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/BuildProvenance.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/BuildProvenance.php deleted file mode 100644 index 1f0c9e45..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/BuildProvenance.php +++ /dev/null @@ -1,160 +0,0 @@ -buildOptions = $buildOptions; - } - public function getBuildOptions() - { - return $this->buildOptions; - } - public function setBuilderVersion($builderVersion) - { - $this->builderVersion = $builderVersion; - } - public function getBuilderVersion() - { - return $this->builderVersion; - } - /** - * @param Google_Service_ContainerAnalysis_Artifact - */ - public function setBuiltArtifacts($builtArtifacts) - { - $this->builtArtifacts = $builtArtifacts; - } - /** - * @return Google_Service_ContainerAnalysis_Artifact - */ - public function getBuiltArtifacts() - { - return $this->builtArtifacts; - } - /** - * @param Google_Service_ContainerAnalysis_Command - */ - public function setCommands($commands) - { - $this->commands = $commands; - } - /** - * @return Google_Service_ContainerAnalysis_Command - */ - public function getCommands() - { - return $this->commands; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setCreator($creator) - { - $this->creator = $creator; - } - public function getCreator() - { - return $this->creator; - } - public function setFinishTime($finishTime) - { - $this->finishTime = $finishTime; - } - public function getFinishTime() - { - return $this->finishTime; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setLogsBucket($logsBucket) - { - $this->logsBucket = $logsBucket; - } - public function getLogsBucket() - { - return $this->logsBucket; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } - /** - * @param Google_Service_ContainerAnalysis_Source - */ - public function setSourceProvenance(Google_Service_ContainerAnalysis_Source $sourceProvenance) - { - $this->sourceProvenance = $sourceProvenance; - } - /** - * @return Google_Service_ContainerAnalysis_Source - */ - public function getSourceProvenance() - { - return $this->sourceProvenance; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } - public function setTriggerId($triggerId) - { - $this->triggerId = $triggerId; - } - public function getTriggerId() - { - return $this->triggerId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/BuildSignature.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/BuildSignature.php deleted file mode 100644 index ae1411de..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/BuildSignature.php +++ /dev/null @@ -1,57 +0,0 @@ -keyId = $keyId; - } - public function getKeyId() - { - return $this->keyId; - } - public function setKeyType($keyType) - { - $this->keyType = $keyType; - } - public function getKeyType() - { - return $this->keyType; - } - public function setPublicKey($publicKey) - { - $this->publicKey = $publicKey; - } - public function getPublicKey() - { - return $this->publicKey; - } - public function setSignature($signature) - { - $this->signature = $signature; - } - public function getSignature() - { - return $this->signature; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/BuildType.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/BuildType.php deleted file mode 100644 index bacf45ae..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/BuildType.php +++ /dev/null @@ -1,46 +0,0 @@ -builderVersion = $builderVersion; - } - public function getBuilderVersion() - { - return $this->builderVersion; - } - /** - * @param Google_Service_ContainerAnalysis_BuildSignature - */ - public function setSignature(Google_Service_ContainerAnalysis_BuildSignature $signature) - { - $this->signature = $signature; - } - /** - * @return Google_Service_ContainerAnalysis_BuildSignature - */ - public function getSignature() - { - return $this->signature; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Command.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Command.php deleted file mode 100644 index 2f1af7e8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Command.php +++ /dev/null @@ -1,76 +0,0 @@ -args = $args; - } - public function getArgs() - { - return $this->args; - } - public function setDir($dir) - { - $this->dir = $dir; - } - public function getDir() - { - return $this->dir; - } - public function setEnv($env) - { - $this->env = $env; - } - public function getEnv() - { - return $this->env; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setWaitFor($waitFor) - { - $this->waitFor = $waitFor; - } - public function getWaitFor() - { - return $this->waitFor; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/ContaineranalysisEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/ContaineranalysisEmpty.php deleted file mode 100644 index ea0fc471..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/ContaineranalysisEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -contentHash = $contentHash; - } - /** - * @return Google_Service_ContainerAnalysis_Hash - */ - public function getContentHash() - { - return $this->contentHash; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setUri($uri) - { - $this->uri = $uri; - } - public function getUri() - { - return $this->uri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/CreateOperationRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/CreateOperationRequest.php deleted file mode 100644 index ceef12f3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/CreateOperationRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -operation = $operation; - } - /** - * @return Google_Service_ContainerAnalysis_Operation - */ - public function getOperation() - { - return $this->operation; - } - public function setOperationId($operationId) - { - $this->operationId = $operationId; - } - public function getOperationId() - { - return $this->operationId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Deployable.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Deployable.php deleted file mode 100644 index 703fcfc0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Deployable.php +++ /dev/null @@ -1,31 +0,0 @@ -resourceUri = $resourceUri; - } - public function getResourceUri() - { - return $this->resourceUri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Deployment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Deployment.php deleted file mode 100644 index da7da8ea..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Deployment.php +++ /dev/null @@ -1,85 +0,0 @@ -address = $address; - } - public function getAddress() - { - return $this->address; - } - public function setConfig($config) - { - $this->config = $config; - } - public function getConfig() - { - return $this->config; - } - public function setDeployTime($deployTime) - { - $this->deployTime = $deployTime; - } - public function getDeployTime() - { - return $this->deployTime; - } - public function setPlatform($platform) - { - $this->platform = $platform; - } - public function getPlatform() - { - return $this->platform; - } - public function setResourceUri($resourceUri) - { - $this->resourceUri = $resourceUri; - } - public function getResourceUri() - { - return $this->resourceUri; - } - public function setUndeployTime($undeployTime) - { - $this->undeployTime = $undeployTime; - } - public function getUndeployTime() - { - return $this->undeployTime; - } - public function setUserEmail($userEmail) - { - $this->userEmail = $userEmail; - } - public function getUserEmail() - { - return $this->userEmail; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Derived.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Derived.php deleted file mode 100644 index 57b2c15f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Derived.php +++ /dev/null @@ -1,72 +0,0 @@ -baseResourceUrl = $baseResourceUrl; - } - public function getBaseResourceUrl() - { - return $this->baseResourceUrl; - } - public function setDistance($distance) - { - $this->distance = $distance; - } - public function getDistance() - { - return $this->distance; - } - /** - * @param Google_Service_ContainerAnalysis_Fingerprint - */ - public function setFingerprint(Google_Service_ContainerAnalysis_Fingerprint $fingerprint) - { - $this->fingerprint = $fingerprint; - } - /** - * @return Google_Service_ContainerAnalysis_Fingerprint - */ - public function getFingerprint() - { - return $this->fingerprint; - } - /** - * @param Google_Service_ContainerAnalysis_Layer - */ - public function setLayerInfo($layerInfo) - { - $this->layerInfo = $layerInfo; - } - /** - * @return Google_Service_ContainerAnalysis_Layer - */ - public function getLayerInfo() - { - return $this->layerInfo; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Detail.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Detail.php deleted file mode 100644 index 4a1ea409..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Detail.php +++ /dev/null @@ -1,123 +0,0 @@ -cpeUri = $cpeUri; - } - public function getCpeUri() - { - return $this->cpeUri; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - /** - * @param Google_Service_ContainerAnalysis_VulnerabilityLocation - */ - public function setFixedLocation(Google_Service_ContainerAnalysis_VulnerabilityLocation $fixedLocation) - { - $this->fixedLocation = $fixedLocation; - } - /** - * @return Google_Service_ContainerAnalysis_VulnerabilityLocation - */ - public function getFixedLocation() - { - return $this->fixedLocation; - } - public function setIsObsolete($isObsolete) - { - $this->isObsolete = $isObsolete; - } - public function getIsObsolete() - { - return $this->isObsolete; - } - /** - * @param Google_Service_ContainerAnalysis_Version - */ - public function setMaxAffectedVersion(Google_Service_ContainerAnalysis_Version $maxAffectedVersion) - { - $this->maxAffectedVersion = $maxAffectedVersion; - } - /** - * @return Google_Service_ContainerAnalysis_Version - */ - public function getMaxAffectedVersion() - { - return $this->maxAffectedVersion; - } - /** - * @param Google_Service_ContainerAnalysis_Version - */ - public function setMinAffectedVersion(Google_Service_ContainerAnalysis_Version $minAffectedVersion) - { - $this->minAffectedVersion = $minAffectedVersion; - } - /** - * @return Google_Service_ContainerAnalysis_Version - */ - public function getMinAffectedVersion() - { - return $this->minAffectedVersion; - } - public function setPackage($package) - { - $this->package = $package; - } - public function getPackage() - { - return $this->package; - } - public function setPackageType($packageType) - { - $this->packageType = $packageType; - } - public function getPackageType() - { - return $this->packageType; - } - public function setSeverityName($severityName) - { - $this->severityName = $severityName; - } - public function getSeverityName() - { - return $this->severityName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Discovered.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Discovered.php deleted file mode 100644 index 37c0524a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Discovered.php +++ /dev/null @@ -1,80 +0,0 @@ -analysisStatus = $analysisStatus; - } - public function getAnalysisStatus() - { - return $this->analysisStatus; - } - /** - * @param Google_Service_ContainerAnalysis_Status - */ - public function setAnalysisStatusError(Google_Service_ContainerAnalysis_Status $analysisStatusError) - { - $this->analysisStatusError = $analysisStatusError; - } - /** - * @return Google_Service_ContainerAnalysis_Status - */ - public function getAnalysisStatusError() - { - return $this->analysisStatusError; - } - public function setContinuousAnalysis($continuousAnalysis) - { - $this->continuousAnalysis = $continuousAnalysis; - } - public function getContinuousAnalysis() - { - return $this->continuousAnalysis; - } - public function setCpe($cpe) - { - $this->cpe = $cpe; - } - public function getCpe() - { - return $this->cpe; - } - /** - * @param Google_Service_ContainerAnalysis_Operation - */ - public function setOperation(Google_Service_ContainerAnalysis_Operation $operation) - { - $this->operation = $operation; - } - /** - * @return Google_Service_ContainerAnalysis_Operation - */ - public function getOperation() - { - return $this->operation; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Discovery.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Discovery.php deleted file mode 100644 index ae50fd59..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Discovery.php +++ /dev/null @@ -1,30 +0,0 @@ -analysisKind = $analysisKind; - } - public function getAnalysisKind() - { - return $this->analysisKind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Distribution.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Distribution.php deleted file mode 100644 index a92eaadf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Distribution.php +++ /dev/null @@ -1,82 +0,0 @@ -architecture = $architecture; - } - public function getArchitecture() - { - return $this->architecture; - } - public function setCpeUri($cpeUri) - { - $this->cpeUri = $cpeUri; - } - public function getCpeUri() - { - return $this->cpeUri; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - /** - * @param Google_Service_ContainerAnalysis_Version - */ - public function setLatestVersion(Google_Service_ContainerAnalysis_Version $latestVersion) - { - $this->latestVersion = $latestVersion; - } - /** - * @return Google_Service_ContainerAnalysis_Version - */ - public function getLatestVersion() - { - return $this->latestVersion; - } - public function setMaintainer($maintainer) - { - $this->maintainer = $maintainer; - } - public function getMaintainer() - { - return $this->maintainer; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Expr.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Expr.php deleted file mode 100644 index 6607c7a5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Expr.php +++ /dev/null @@ -1,57 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setExpression($expression) - { - $this->expression = $expression; - } - public function getExpression() - { - return $this->expression; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/FileHashes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/FileHashes.php deleted file mode 100644 index ceb85cba..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/FileHashes.php +++ /dev/null @@ -1,38 +0,0 @@ -fileHash = $fileHash; - } - /** - * @return Google_Service_ContainerAnalysis_Hash - */ - public function getFileHash() - { - return $this->fileHash; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Fingerprint.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Fingerprint.php deleted file mode 100644 index 3f78d20b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Fingerprint.php +++ /dev/null @@ -1,49 +0,0 @@ -v1Name = $v1Name; - } - public function getV1Name() - { - return $this->v1Name; - } - public function setV2Blob($v2Blob) - { - $this->v2Blob = $v2Blob; - } - public function getV2Blob() - { - return $this->v2Blob; - } - public function setV2Name($v2Name) - { - $this->v2Name = $v2Name; - } - public function getV2Name() - { - return $this->v2Name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/GetIamPolicyRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/GetIamPolicyRequest.php deleted file mode 100644 index eaf51ffe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/GetIamPolicyRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -options = $options; - } - /** - * @return Google_Service_ContainerAnalysis_GetPolicyOptions - */ - public function getOptions() - { - return $this->options; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/GetPolicyOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/GetPolicyOptions.php deleted file mode 100644 index d7ec6abc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/GetPolicyOptions.php +++ /dev/null @@ -1,30 +0,0 @@ -requestedPolicyVersion = $requestedPolicyVersion; - } - public function getRequestedPolicyVersion() - { - return $this->requestedPolicyVersion; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/GetVulnzOccurrencesSummaryResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/GetVulnzOccurrencesSummaryResponse.php deleted file mode 100644 index bfaa2178..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/GetVulnzOccurrencesSummaryResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -counts = $counts; - } - /** - * @return Google_Service_ContainerAnalysis_SeverityCount - */ - public function getCounts() - { - return $this->counts; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/GoogleDevtoolsContaineranalysisV1alpha1AliasContext.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/GoogleDevtoolsContaineranalysisV1alpha1AliasContext.php deleted file mode 100644 index a0090eca..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/GoogleDevtoolsContaineranalysisV1alpha1AliasContext.php +++ /dev/null @@ -1,39 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/GoogleDevtoolsContaineranalysisV1alpha1CloudRepoSourceContext.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/GoogleDevtoolsContaineranalysisV1alpha1CloudRepoSourceContext.php deleted file mode 100644 index d6075dae..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/GoogleDevtoolsContaineranalysisV1alpha1CloudRepoSourceContext.php +++ /dev/null @@ -1,62 +0,0 @@ -aliasContext = $aliasContext; - } - /** - * @return Google_Service_ContainerAnalysis_GoogleDevtoolsContaineranalysisV1alpha1AliasContext - */ - public function getAliasContext() - { - return $this->aliasContext; - } - /** - * @param Google_Service_ContainerAnalysis_GoogleDevtoolsContaineranalysisV1alpha1RepoId - */ - public function setRepoId(Google_Service_ContainerAnalysis_GoogleDevtoolsContaineranalysisV1alpha1RepoId $repoId) - { - $this->repoId = $repoId; - } - /** - * @return Google_Service_ContainerAnalysis_GoogleDevtoolsContaineranalysisV1alpha1RepoId - */ - public function getRepoId() - { - return $this->repoId; - } - public function setRevisionId($revisionId) - { - $this->revisionId = $revisionId; - } - public function getRevisionId() - { - return $this->revisionId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/GoogleDevtoolsContaineranalysisV1alpha1GerritSourceContext.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/GoogleDevtoolsContaineranalysisV1alpha1GerritSourceContext.php deleted file mode 100644 index ceb4b969..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/GoogleDevtoolsContaineranalysisV1alpha1GerritSourceContext.php +++ /dev/null @@ -1,64 +0,0 @@ -aliasContext = $aliasContext; - } - /** - * @return Google_Service_ContainerAnalysis_GoogleDevtoolsContaineranalysisV1alpha1AliasContext - */ - public function getAliasContext() - { - return $this->aliasContext; - } - public function setGerritProject($gerritProject) - { - $this->gerritProject = $gerritProject; - } - public function getGerritProject() - { - return $this->gerritProject; - } - public function setHostUri($hostUri) - { - $this->hostUri = $hostUri; - } - public function getHostUri() - { - return $this->hostUri; - } - public function setRevisionId($revisionId) - { - $this->revisionId = $revisionId; - } - public function getRevisionId() - { - return $this->revisionId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/GoogleDevtoolsContaineranalysisV1alpha1GitSourceContext.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/GoogleDevtoolsContaineranalysisV1alpha1GitSourceContext.php deleted file mode 100644 index ccd1b2e9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/GoogleDevtoolsContaineranalysisV1alpha1GitSourceContext.php +++ /dev/null @@ -1,39 +0,0 @@ -revisionId = $revisionId; - } - public function getRevisionId() - { - return $this->revisionId; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/GoogleDevtoolsContaineranalysisV1alpha1OperationMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/GoogleDevtoolsContaineranalysisV1alpha1OperationMetadata.php deleted file mode 100644 index f8030edc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/GoogleDevtoolsContaineranalysisV1alpha1OperationMetadata.php +++ /dev/null @@ -1,39 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/GoogleDevtoolsContaineranalysisV1alpha1ProjectRepoId.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/GoogleDevtoolsContaineranalysisV1alpha1ProjectRepoId.php deleted file mode 100644 index 22228e81..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/GoogleDevtoolsContaineranalysisV1alpha1ProjectRepoId.php +++ /dev/null @@ -1,39 +0,0 @@ -projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } - public function setRepoName($repoName) - { - $this->repoName = $repoName; - } - public function getRepoName() - { - return $this->repoName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/GoogleDevtoolsContaineranalysisV1alpha1RepoId.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/GoogleDevtoolsContaineranalysisV1alpha1RepoId.php deleted file mode 100644 index b1ddcc8f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/GoogleDevtoolsContaineranalysisV1alpha1RepoId.php +++ /dev/null @@ -1,46 +0,0 @@ -projectRepoId = $projectRepoId; - } - /** - * @return Google_Service_ContainerAnalysis_GoogleDevtoolsContaineranalysisV1alpha1ProjectRepoId - */ - public function getProjectRepoId() - { - return $this->projectRepoId; - } - public function setUid($uid) - { - $this->uid = $uid; - } - public function getUid() - { - return $this->uid; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/GoogleDevtoolsContaineranalysisV1alpha1SourceContext.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/GoogleDevtoolsContaineranalysisV1alpha1SourceContext.php deleted file mode 100644 index bd201b11..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/GoogleDevtoolsContaineranalysisV1alpha1SourceContext.php +++ /dev/null @@ -1,78 +0,0 @@ -cloudRepo = $cloudRepo; - } - /** - * @return Google_Service_ContainerAnalysis_GoogleDevtoolsContaineranalysisV1alpha1CloudRepoSourceContext - */ - public function getCloudRepo() - { - return $this->cloudRepo; - } - /** - * @param Google_Service_ContainerAnalysis_GoogleDevtoolsContaineranalysisV1alpha1GerritSourceContext - */ - public function setGerrit(Google_Service_ContainerAnalysis_GoogleDevtoolsContaineranalysisV1alpha1GerritSourceContext $gerrit) - { - $this->gerrit = $gerrit; - } - /** - * @return Google_Service_ContainerAnalysis_GoogleDevtoolsContaineranalysisV1alpha1GerritSourceContext - */ - public function getGerrit() - { - return $this->gerrit; - } - /** - * @param Google_Service_ContainerAnalysis_GoogleDevtoolsContaineranalysisV1alpha1GitSourceContext - */ - public function setGit(Google_Service_ContainerAnalysis_GoogleDevtoolsContaineranalysisV1alpha1GitSourceContext $git) - { - $this->git = $git; - } - /** - * @return Google_Service_ContainerAnalysis_GoogleDevtoolsContaineranalysisV1alpha1GitSourceContext - */ - public function getGit() - { - return $this->git; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Hash.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Hash.php deleted file mode 100644 index ceaafa23..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Hash.php +++ /dev/null @@ -1,39 +0,0 @@ -type = $type; - } - public function getType() - { - return $this->type; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Installation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Installation.php deleted file mode 100644 index d6d2183d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Installation.php +++ /dev/null @@ -1,47 +0,0 @@ -location = $location; - } - /** - * @return Google_Service_ContainerAnalysis_Location - */ - public function getLocation() - { - return $this->location; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Layer.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Layer.php deleted file mode 100644 index 6be08d46..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Layer.php +++ /dev/null @@ -1,39 +0,0 @@ -arguments = $arguments; - } - public function getArguments() - { - return $this->arguments; - } - public function setDirective($directive) - { - $this->directive = $directive; - } - public function getDirective() - { - return $this->directive; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/ListNoteOccurrencesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/ListNoteOccurrencesResponse.php deleted file mode 100644 index a83fbcae..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/ListNoteOccurrencesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_ContainerAnalysis_Occurrence - */ - public function setOccurrences($occurrences) - { - $this->occurrences = $occurrences; - } - /** - * @return Google_Service_ContainerAnalysis_Occurrence - */ - public function getOccurrences() - { - return $this->occurrences; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/ListNotesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/ListNotesResponse.php deleted file mode 100644 index 3a618ca6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/ListNotesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_ContainerAnalysis_Note - */ - public function setNotes($notes) - { - $this->notes = $notes; - } - /** - * @return Google_Service_ContainerAnalysis_Note - */ - public function getNotes() - { - return $this->notes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/ListOccurrencesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/ListOccurrencesResponse.php deleted file mode 100644 index a997a1d0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/ListOccurrencesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_ContainerAnalysis_Occurrence - */ - public function setOccurrences($occurrences) - { - $this->occurrences = $occurrences; - } - /** - * @return Google_Service_ContainerAnalysis_Occurrence - */ - public function getOccurrences() - { - return $this->occurrences; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/ListScanConfigsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/ListScanConfigsResponse.php deleted file mode 100644 index 08c70b17..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/ListScanConfigsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_ContainerAnalysis_ScanConfig - */ - public function setScanConfigs($scanConfigs) - { - $this->scanConfigs = $scanConfigs; - } - /** - * @return Google_Service_ContainerAnalysis_ScanConfig - */ - public function getScanConfigs() - { - return $this->scanConfigs; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Location.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Location.php deleted file mode 100644 index faaf2394..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Location.php +++ /dev/null @@ -1,55 +0,0 @@ -cpeUri = $cpeUri; - } - public function getCpeUri() - { - return $this->cpeUri; - } - public function setPath($path) - { - $this->path = $path; - } - public function getPath() - { - return $this->path; - } - /** - * @param Google_Service_ContainerAnalysis_Version - */ - public function setVersion(Google_Service_ContainerAnalysis_Version $version) - { - $this->version = $version; - } - /** - * @return Google_Service_ContainerAnalysis_Version - */ - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Note.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Note.php deleted file mode 100644 index ad5b8837..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Note.php +++ /dev/null @@ -1,229 +0,0 @@ -attestationAuthority = $attestationAuthority; - } - /** - * @return Google_Service_ContainerAnalysis_AttestationAuthority - */ - public function getAttestationAuthority() - { - return $this->attestationAuthority; - } - /** - * @param Google_Service_ContainerAnalysis_Basis - */ - public function setBaseImage(Google_Service_ContainerAnalysis_Basis $baseImage) - { - $this->baseImage = $baseImage; - } - /** - * @return Google_Service_ContainerAnalysis_Basis - */ - public function getBaseImage() - { - return $this->baseImage; - } - /** - * @param Google_Service_ContainerAnalysis_BuildType - */ - public function setBuildType(Google_Service_ContainerAnalysis_BuildType $buildType) - { - $this->buildType = $buildType; - } - /** - * @return Google_Service_ContainerAnalysis_BuildType - */ - public function getBuildType() - { - return $this->buildType; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - /** - * @param Google_Service_ContainerAnalysis_Deployable - */ - public function setDeployable(Google_Service_ContainerAnalysis_Deployable $deployable) - { - $this->deployable = $deployable; - } - /** - * @return Google_Service_ContainerAnalysis_Deployable - */ - public function getDeployable() - { - return $this->deployable; - } - /** - * @param Google_Service_ContainerAnalysis_Discovery - */ - public function setDiscovery(Google_Service_ContainerAnalysis_Discovery $discovery) - { - $this->discovery = $discovery; - } - /** - * @return Google_Service_ContainerAnalysis_Discovery - */ - public function getDiscovery() - { - return $this->discovery; - } - public function setExpirationTime($expirationTime) - { - $this->expirationTime = $expirationTime; - } - public function getExpirationTime() - { - return $this->expirationTime; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLongDescription($longDescription) - { - $this->longDescription = $longDescription; - } - public function getLongDescription() - { - return $this->longDescription; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_ContainerAnalysis_Package - */ - public function setPackage(Google_Service_ContainerAnalysis_Package $package) - { - $this->package = $package; - } - /** - * @return Google_Service_ContainerAnalysis_Package - */ - public function getPackage() - { - return $this->package; - } - /** - * @param Google_Service_ContainerAnalysis_RelatedUrl - */ - public function setRelatedUrl($relatedUrl) - { - $this->relatedUrl = $relatedUrl; - } - /** - * @return Google_Service_ContainerAnalysis_RelatedUrl - */ - public function getRelatedUrl() - { - return $this->relatedUrl; - } - public function setShortDescription($shortDescription) - { - $this->shortDescription = $shortDescription; - } - public function getShortDescription() - { - return $this->shortDescription; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } - /** - * @param Google_Service_ContainerAnalysis_UpgradeNote - */ - public function setUpgrade(Google_Service_ContainerAnalysis_UpgradeNote $upgrade) - { - $this->upgrade = $upgrade; - } - /** - * @return Google_Service_ContainerAnalysis_UpgradeNote - */ - public function getUpgrade() - { - return $this->upgrade; - } - /** - * @param Google_Service_ContainerAnalysis_VulnerabilityType - */ - public function setVulnerabilityType(Google_Service_ContainerAnalysis_VulnerabilityType $vulnerabilityType) - { - $this->vulnerabilityType = $vulnerabilityType; - } - /** - * @return Google_Service_ContainerAnalysis_VulnerabilityType - */ - public function getVulnerabilityType() - { - return $this->vulnerabilityType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Occurrence.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Occurrence.php deleted file mode 100644 index c86e5965..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Occurrence.php +++ /dev/null @@ -1,228 +0,0 @@ -attestation = $attestation; - } - /** - * @return Google_Service_ContainerAnalysis_Attestation - */ - public function getAttestation() - { - return $this->attestation; - } - /** - * @param Google_Service_ContainerAnalysis_BuildDetails - */ - public function setBuildDetails(Google_Service_ContainerAnalysis_BuildDetails $buildDetails) - { - $this->buildDetails = $buildDetails; - } - /** - * @return Google_Service_ContainerAnalysis_BuildDetails - */ - public function getBuildDetails() - { - return $this->buildDetails; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - /** - * @param Google_Service_ContainerAnalysis_Deployment - */ - public function setDeployment(Google_Service_ContainerAnalysis_Deployment $deployment) - { - $this->deployment = $deployment; - } - /** - * @return Google_Service_ContainerAnalysis_Deployment - */ - public function getDeployment() - { - return $this->deployment; - } - /** - * @param Google_Service_ContainerAnalysis_Derived - */ - public function setDerivedImage(Google_Service_ContainerAnalysis_Derived $derivedImage) - { - $this->derivedImage = $derivedImage; - } - /** - * @return Google_Service_ContainerAnalysis_Derived - */ - public function getDerivedImage() - { - return $this->derivedImage; - } - /** - * @param Google_Service_ContainerAnalysis_Discovered - */ - public function setDiscovered(Google_Service_ContainerAnalysis_Discovered $discovered) - { - $this->discovered = $discovered; - } - /** - * @return Google_Service_ContainerAnalysis_Discovered - */ - public function getDiscovered() - { - return $this->discovered; - } - /** - * @param Google_Service_ContainerAnalysis_Installation - */ - public function setInstallation(Google_Service_ContainerAnalysis_Installation $installation) - { - $this->installation = $installation; - } - /** - * @return Google_Service_ContainerAnalysis_Installation - */ - public function getInstallation() - { - return $this->installation; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNoteName($noteName) - { - $this->noteName = $noteName; - } - public function getNoteName() - { - return $this->noteName; - } - public function setRemediation($remediation) - { - $this->remediation = $remediation; - } - public function getRemediation() - { - return $this->remediation; - } - /** - * @param Google_Service_ContainerAnalysis_ContaineranalysisResource - */ - public function setResource(Google_Service_ContainerAnalysis_ContaineranalysisResource $resource) - { - $this->resource = $resource; - } - /** - * @return Google_Service_ContainerAnalysis_ContaineranalysisResource - */ - public function getResource() - { - return $this->resource; - } - public function setResourceUrl($resourceUrl) - { - $this->resourceUrl = $resourceUrl; - } - public function getResourceUrl() - { - return $this->resourceUrl; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } - /** - * @param Google_Service_ContainerAnalysis_UpgradeOccurrence - */ - public function setUpgrade(Google_Service_ContainerAnalysis_UpgradeOccurrence $upgrade) - { - $this->upgrade = $upgrade; - } - /** - * @return Google_Service_ContainerAnalysis_UpgradeOccurrence - */ - public function getUpgrade() - { - return $this->upgrade; - } - /** - * @param Google_Service_ContainerAnalysis_VulnerabilityDetails - */ - public function setVulnerabilityDetails(Google_Service_ContainerAnalysis_VulnerabilityDetails $vulnerabilityDetails) - { - $this->vulnerabilityDetails = $vulnerabilityDetails; - } - /** - * @return Google_Service_ContainerAnalysis_VulnerabilityDetails - */ - public function getVulnerabilityDetails() - { - return $this->vulnerabilityDetails; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Operation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Operation.php deleted file mode 100644 index 181939ce..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Operation.php +++ /dev/null @@ -1,73 +0,0 @@ -done = $done; - } - public function getDone() - { - return $this->done; - } - /** - * @param Google_Service_ContainerAnalysis_Status - */ - public function setError(Google_Service_ContainerAnalysis_Status $error) - { - $this->error = $error; - } - /** - * @return Google_Service_ContainerAnalysis_Status - */ - public function getError() - { - return $this->error; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Package.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Package.php deleted file mode 100644 index 9d7a323b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Package.php +++ /dev/null @@ -1,47 +0,0 @@ -distribution = $distribution; - } - /** - * @return Google_Service_ContainerAnalysis_Distribution - */ - public function getDistribution() - { - return $this->distribution; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/PackageIssue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/PackageIssue.php deleted file mode 100644 index f520f42c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/PackageIssue.php +++ /dev/null @@ -1,62 +0,0 @@ -affectedLocation = $affectedLocation; - } - /** - * @return Google_Service_ContainerAnalysis_VulnerabilityLocation - */ - public function getAffectedLocation() - { - return $this->affectedLocation; - } - /** - * @param Google_Service_ContainerAnalysis_VulnerabilityLocation - */ - public function setFixedLocation(Google_Service_ContainerAnalysis_VulnerabilityLocation $fixedLocation) - { - $this->fixedLocation = $fixedLocation; - } - /** - * @return Google_Service_ContainerAnalysis_VulnerabilityLocation - */ - public function getFixedLocation() - { - return $this->fixedLocation; - } - public function setSeverityName($severityName) - { - $this->severityName = $severityName; - } - public function getSeverityName() - { - return $this->severityName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/PgpSignedAttestation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/PgpSignedAttestation.php deleted file mode 100644 index bcb44250..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/PgpSignedAttestation.php +++ /dev/null @@ -1,48 +0,0 @@ -contentType = $contentType; - } - public function getContentType() - { - return $this->contentType; - } - public function setPgpKeyId($pgpKeyId) - { - $this->pgpKeyId = $pgpKeyId; - } - public function getPgpKeyId() - { - return $this->pgpKeyId; - } - public function setSignature($signature) - { - $this->signature = $signature; - } - public function getSignature() - { - return $this->signature; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Policy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Policy.php deleted file mode 100644 index 16404cdc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Policy.php +++ /dev/null @@ -1,56 +0,0 @@ -bindings = $bindings; - } - /** - * @return Google_Service_ContainerAnalysis_Binding - */ - public function getBindings() - { - return $this->bindings; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/RelatedUrl.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/RelatedUrl.php deleted file mode 100644 index 75ed244c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/RelatedUrl.php +++ /dev/null @@ -1,39 +0,0 @@ -label = $label; - } - public function getLabel() - { - return $this->label; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/RepoSource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/RepoSource.php deleted file mode 100644 index 1d60d9be..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/RepoSource.php +++ /dev/null @@ -1,66 +0,0 @@ -branchName = $branchName; - } - public function getBranchName() - { - return $this->branchName; - } - public function setCommitSha($commitSha) - { - $this->commitSha = $commitSha; - } - public function getCommitSha() - { - return $this->commitSha; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } - public function setRepoName($repoName) - { - $this->repoName = $repoName; - } - public function getRepoName() - { - return $this->repoName; - } - public function setTagName($tagName) - { - $this->tagName = $tagName; - } - public function getTagName() - { - return $this->tagName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Resource/Projects.php deleted file mode 100644 index 7a9a8f13..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Resource/Projects.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $containeranalysisService = new Google_Service_ContainerAnalysis(...); - * $projects = $containeranalysisService->projects; - * - */ -class Google_Service_ContainerAnalysis_Resource_Projects extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Resource/ProjectsNotes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Resource/ProjectsNotes.php deleted file mode 100644 index d7d15e8c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Resource/ProjectsNotes.php +++ /dev/null @@ -1,188 +0,0 @@ - - * $containeranalysisService = new Google_Service_ContainerAnalysis(...); - * $notes = $containeranalysisService->notes; - * - */ -class Google_Service_ContainerAnalysis_Resource_ProjectsNotes extends Google_Service_Resource -{ - /** - * Creates a new `Note`. (notes.create) - * - * @param string $parent This field contains the project Id for example: - * "projects/{project_id} - * @param Google_Service_ContainerAnalysis_Note $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string name The name of the project. Should be of the form - * "providers/{provider_id}". @Deprecated - * @opt_param string noteId The ID to use for this note. - * @return Google_Service_ContainerAnalysis_Note - */ - public function create($parent, Google_Service_ContainerAnalysis_Note $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_ContainerAnalysis_Note"); - } - /** - * Deletes the given `Note` from the system. (notes.delete) - * - * @param string $name The name of the note in the form of - * "providers/{provider_id}/notes/{NOTE_ID}" - * @param array $optParams Optional parameters. - * @return Google_Service_ContainerAnalysis_ContaineranalysisEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_ContainerAnalysis_ContaineranalysisEmpty"); - } - /** - * Returns the requested `Note`. (notes.get) - * - * @param string $name The name of the note in the form of - * "providers/{provider_id}/notes/{NOTE_ID}" - * @param array $optParams Optional parameters. - * @return Google_Service_ContainerAnalysis_Note - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_ContainerAnalysis_Note"); - } - /** - * Gets the access control policy for a note or an `Occurrence` resource. - * Requires `containeranalysis.notes.setIamPolicy` or - * `containeranalysis.occurrences.setIamPolicy` permission if the resource is a - * note or occurrence, respectively. Attempting to call this method on a - * resource without the required permission will result in a `PERMISSION_DENIED` - * error. Attempting to call this method on a non-existent resource will result - * in a `NOT_FOUND` error if the user has list permission on the project, or a - * `PERMISSION_DENIED` error otherwise. The resource takes the following - * formats: `projects/{PROJECT_ID}/occurrences/{OCCURRENCE_ID}` for occurrences - * and projects/{PROJECT_ID}/notes/{NOTE_ID} for notes (notes.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 Google_Service_ContainerAnalysis_GetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ContainerAnalysis_Policy - */ - public function getIamPolicy($resource, Google_Service_ContainerAnalysis_GetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_ContainerAnalysis_Policy"); - } - /** - * Lists all `Notes` for a given project. (notes.listProjectsNotes) - * - * @param string $parent This field contains the project Id for example: - * "projects/{PROJECT_ID}". - * @param array $optParams Optional parameters. - * - * @opt_param string name The name field will contain the project Id for - * example: "providers/{provider_id} @Deprecated - * @opt_param string pageToken Token to provide to skip to a particular spot in - * the list. - * @opt_param int pageSize Number of notes to return in the list. - * @opt_param string filter The filter expression. - * @return Google_Service_ContainerAnalysis_ListNotesResponse - */ - public function listProjectsNotes($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_ContainerAnalysis_ListNotesResponse"); - } - /** - * Updates an existing `Note`. (notes.patch) - * - * @param string $name The name of the note. Should be of the form - * "projects/{provider_id}/notes/{note_id}". - * @param Google_Service_ContainerAnalysis_Note $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask The fields to update. - * @return Google_Service_ContainerAnalysis_Note - */ - public function patch($name, Google_Service_ContainerAnalysis_Note $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_ContainerAnalysis_Note"); - } - /** - * Sets the access control policy on the specified `Note` or `Occurrence`. - * Requires `containeranalysis.notes.setIamPolicy` or - * `containeranalysis.occurrences.setIamPolicy` permission if the resource is a - * `Note` or an `Occurrence`, respectively. Attempting to call this method - * without these permissions will result in a ` `PERMISSION_DENIED` error. - * Attempting to call this method on a non-existent resource will result in a - * `NOT_FOUND` error if the user has `containeranalysis.notes.list` permission - * on a `Note` or `containeranalysis.occurrences.list` on an `Occurrence`, or a - * `PERMISSION_DENIED` error otherwise. The resource takes the following - * formats: `projects/{projectid}/occurrences/{occurrenceid}` for occurrences - * and projects/{projectid}/notes/{noteid} for notes (notes.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_ContainerAnalysis_SetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ContainerAnalysis_Policy - */ - public function setIamPolicy($resource, Google_Service_ContainerAnalysis_SetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_ContainerAnalysis_Policy"); - } - /** - * Returns the permissions that a caller has on the specified note or occurrence - * resource. Requires list permission on the project (for example, - * "storage.objects.list" on the containing bucket for testing permission of an - * object). Attempting to call this method on a non-existent resource will - * result in a `NOT_FOUND` error if the user has list permission on the project, - * or a `PERMISSION_DENIED` error otherwise. The resource takes the following - * formats: `projects/{PROJECT_ID}/occurrences/{OCCURRENCE_ID}` for - * `Occurrences` and `projects/{PROJECT_ID}/notes/{NOTE_ID}` for `Notes` - * (notes.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_ContainerAnalysis_TestIamPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ContainerAnalysis_TestIamPermissionsResponse - */ - public function testIamPermissions($resource, Google_Service_ContainerAnalysis_TestIamPermissionsRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_ContainerAnalysis_TestIamPermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Resource/ProjectsNotesOccurrences.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Resource/ProjectsNotesOccurrences.php deleted file mode 100644 index 2eb01f08..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Resource/ProjectsNotesOccurrences.php +++ /dev/null @@ -1,49 +0,0 @@ - - * $containeranalysisService = new Google_Service_ContainerAnalysis(...); - * $occurrences = $containeranalysisService->occurrences; - * - */ -class Google_Service_ContainerAnalysis_Resource_ProjectsNotesOccurrences extends Google_Service_Resource -{ - /** - * Lists `Occurrences` referencing the specified `Note`. Use this method to get - * all occurrences referencing your `Note` across all your customer projects. - * (occurrences.listProjectsNotesOccurrences) - * - * @param string $name The name field will contain the note name for example: - * "provider/{provider_id}/notes/{note_id}" - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Token to provide to skip to a particular spot in - * the list. - * @opt_param int pageSize Number of notes to return in the list. - * @opt_param string filter The filter expression. - * @return Google_Service_ContainerAnalysis_ListNoteOccurrencesResponse - */ - public function listProjectsNotesOccurrences($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_ContainerAnalysis_ListNoteOccurrencesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Resource/ProjectsOccurrences.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Resource/ProjectsOccurrences.php deleted file mode 100644 index 3946fc0c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Resource/ProjectsOccurrences.php +++ /dev/null @@ -1,223 +0,0 @@ - - * $containeranalysisService = new Google_Service_ContainerAnalysis(...); - * $occurrences = $containeranalysisService->occurrences; - * - */ -class Google_Service_ContainerAnalysis_Resource_ProjectsOccurrences extends Google_Service_Resource -{ - /** - * Creates a new `Occurrence`. Use this method to create `Occurrences` for a - * resource. (occurrences.create) - * - * @param string $parent This field contains the project Id for example: - * "projects/{project_id}" - * @param Google_Service_ContainerAnalysis_Occurrence $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string name The name of the project. Should be of the form - * "projects/{project_id}". @Deprecated - * @return Google_Service_ContainerAnalysis_Occurrence - */ - public function create($parent, Google_Service_ContainerAnalysis_Occurrence $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_ContainerAnalysis_Occurrence"); - } - /** - * Deletes the given `Occurrence` from the system. Use this when an `Occurrence` - * is no longer applicable for the given resource. (occurrences.delete) - * - * @param string $name The name of the occurrence in the form of - * "projects/{project_id}/occurrences/{OCCURRENCE_ID}" - * @param array $optParams Optional parameters. - * @return Google_Service_ContainerAnalysis_ContaineranalysisEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_ContainerAnalysis_ContaineranalysisEmpty"); - } - /** - * Returns the requested `Occurrence`. (occurrences.get) - * - * @param string $name The name of the occurrence of the form - * "projects/{project_id}/occurrences/{OCCURRENCE_ID}" - * @param array $optParams Optional parameters. - * @return Google_Service_ContainerAnalysis_Occurrence - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_ContainerAnalysis_Occurrence"); - } - /** - * Gets the access control policy for a note or an `Occurrence` resource. - * Requires `containeranalysis.notes.setIamPolicy` or - * `containeranalysis.occurrences.setIamPolicy` permission if the resource is a - * note or occurrence, respectively. Attempting to call this method on a - * resource without the required permission will result in a `PERMISSION_DENIED` - * error. Attempting to call this method on a non-existent resource will result - * in a `NOT_FOUND` error if the user has list permission on the project, or a - * `PERMISSION_DENIED` error otherwise. The resource takes the following - * formats: `projects/{PROJECT_ID}/occurrences/{OCCURRENCE_ID}` for occurrences - * and projects/{PROJECT_ID}/notes/{NOTE_ID} for notes - * (occurrences.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 Google_Service_ContainerAnalysis_GetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ContainerAnalysis_Policy - */ - public function getIamPolicy($resource, Google_Service_ContainerAnalysis_GetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_ContainerAnalysis_Policy"); - } - /** - * Gets the `Note` attached to the given `Occurrence`. (occurrences.getNotes) - * - * @param string $name The name of the occurrence in the form - * "projects/{project_id}/occurrences/{OCCURRENCE_ID}" - * @param array $optParams Optional parameters. - * @return Google_Service_ContainerAnalysis_Note - */ - public function getNotes($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('getNotes', array($params), "Google_Service_ContainerAnalysis_Note"); - } - /** - * Gets a summary of the number and severity of occurrences. - * (occurrences.getVulnerabilitySummary) - * - * @param string $parent This contains the project Id for example: - * projects/{project_id} - * @param array $optParams Optional parameters. - * - * @opt_param string filter The filter expression. - * @return Google_Service_ContainerAnalysis_GetVulnzOccurrencesSummaryResponse - */ - public function getVulnerabilitySummary($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('getVulnerabilitySummary', array($params), "Google_Service_ContainerAnalysis_GetVulnzOccurrencesSummaryResponse"); - } - /** - * Lists active `Occurrences` for a given project matching the filters. - * (occurrences.listProjectsOccurrences) - * - * @param string $parent This contains the project Id for example: - * projects/{project_id}. - * @param array $optParams Optional parameters. - * - * @opt_param string name The name field contains the project Id. For example: - * "projects/{project_id} @Deprecated - * @opt_param string filter The filter expression. - * @opt_param string pageToken Token to provide to skip to a particular spot in - * the list. - * @opt_param string kind The kind of occurrences to filter on. - * @opt_param int pageSize Number of occurrences to return in the list. - * @return Google_Service_ContainerAnalysis_ListOccurrencesResponse - */ - public function listProjectsOccurrences($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_ContainerAnalysis_ListOccurrencesResponse"); - } - /** - * Updates an existing occurrence. (occurrences.patch) - * - * @param string $name The name of the occurrence. Should be of the form - * "projects/{project_id}/occurrences/{OCCURRENCE_ID}". - * @param Google_Service_ContainerAnalysis_Occurrence $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask The fields to update. - * @return Google_Service_ContainerAnalysis_Occurrence - */ - public function patch($name, Google_Service_ContainerAnalysis_Occurrence $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_ContainerAnalysis_Occurrence"); - } - /** - * Sets the access control policy on the specified `Note` or `Occurrence`. - * Requires `containeranalysis.notes.setIamPolicy` or - * `containeranalysis.occurrences.setIamPolicy` permission if the resource is a - * `Note` or an `Occurrence`, respectively. Attempting to call this method - * without these permissions will result in a ` `PERMISSION_DENIED` error. - * Attempting to call this method on a non-existent resource will result in a - * `NOT_FOUND` error if the user has `containeranalysis.notes.list` permission - * on a `Note` or `containeranalysis.occurrences.list` on an `Occurrence`, or a - * `PERMISSION_DENIED` error otherwise. The resource takes the following - * formats: `projects/{projectid}/occurrences/{occurrenceid}` for occurrences - * and projects/{projectid}/notes/{noteid} for notes (occurrences.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_ContainerAnalysis_SetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ContainerAnalysis_Policy - */ - public function setIamPolicy($resource, Google_Service_ContainerAnalysis_SetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_ContainerAnalysis_Policy"); - } - /** - * Returns the permissions that a caller has on the specified note or occurrence - * resource. Requires list permission on the project (for example, - * "storage.objects.list" on the containing bucket for testing permission of an - * object). Attempting to call this method on a non-existent resource will - * result in a `NOT_FOUND` error if the user has list permission on the project, - * or a `PERMISSION_DENIED` error otherwise. The resource takes the following - * formats: `projects/{PROJECT_ID}/occurrences/{OCCURRENCE_ID}` for - * `Occurrences` and `projects/{PROJECT_ID}/notes/{NOTE_ID}` for `Notes` - * (occurrences.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_ContainerAnalysis_TestIamPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ContainerAnalysis_TestIamPermissionsResponse - */ - public function testIamPermissions($resource, Google_Service_ContainerAnalysis_TestIamPermissionsRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_ContainerAnalysis_TestIamPermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Resource/ProjectsOperations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Resource/ProjectsOperations.php deleted file mode 100644 index 260a7d68..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Resource/ProjectsOperations.php +++ /dev/null @@ -1,60 +0,0 @@ - - * $containeranalysisService = new Google_Service_ContainerAnalysis(...); - * $operations = $containeranalysisService->operations; - * - */ -class Google_Service_ContainerAnalysis_Resource_ProjectsOperations extends Google_Service_Resource -{ - /** - * Creates a new `Operation`. (operations.create) - * - * @param string $parent The project Id that this operation should be created - * under. - * @param Google_Service_ContainerAnalysis_CreateOperationRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ContainerAnalysis_Operation - */ - public function create($parent, Google_Service_ContainerAnalysis_CreateOperationRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_ContainerAnalysis_Operation"); - } - /** - * Updates an existing operation returns an error if operation does not exist. - * The only valid operations are to update mark the done bit change the result. - * (operations.patch) - * - * @param string $name The name of the Operation. Should be of the form - * "projects/{provider_id}/operations/{operation_id}". - * @param Google_Service_ContainerAnalysis_UpdateOperationRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ContainerAnalysis_Operation - */ - public function patch($name, Google_Service_ContainerAnalysis_UpdateOperationRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_ContainerAnalysis_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Resource/ProjectsScanConfigs.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Resource/ProjectsScanConfigs.php deleted file mode 100644 index 6a816dd1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Resource/ProjectsScanConfigs.php +++ /dev/null @@ -1,78 +0,0 @@ - - * $containeranalysisService = new Google_Service_ContainerAnalysis(...); - * $scanConfigs = $containeranalysisService->scanConfigs; - * - */ -class Google_Service_ContainerAnalysis_Resource_ProjectsScanConfigs extends Google_Service_Resource -{ - /** - * Gets a specific scan configuration for a project. (scanConfigs.get) - * - * @param string $name The name of the ScanConfig in the form - * projects/{project_id}/scanConfigs/{scan_config_id} - * @param array $optParams Optional parameters. - * @return Google_Service_ContainerAnalysis_ScanConfig - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_ContainerAnalysis_ScanConfig"); - } - /** - * Lists scan configurations for a project. - * (scanConfigs.listProjectsScanConfigs) - * - * @param string $parent This containers the project Id i.e.: - * projects/{project_id} - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The page token to use for the next request. - * @opt_param int pageSize The number of items to return. - * @opt_param string filter The filter expression. - * @return Google_Service_ContainerAnalysis_ListScanConfigsResponse - */ - public function listProjectsScanConfigs($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_ContainerAnalysis_ListScanConfigsResponse"); - } - /** - * Updates the scan configuration to a new value. (scanConfigs.patch) - * - * @param string $name The scan config to update of the form - * projects/{project_id}/scanConfigs/{scan_config_id}. - * @param Google_Service_ContainerAnalysis_ScanConfig $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask The fields to update. - * @return Google_Service_ContainerAnalysis_ScanConfig - */ - public function patch($name, Google_Service_ContainerAnalysis_ScanConfig $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_ContainerAnalysis_ScanConfig"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Resource/Providers.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Resource/Providers.php deleted file mode 100644 index 99b3b476..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Resource/Providers.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $containeranalysisService = new Google_Service_ContainerAnalysis(...); - * $providers = $containeranalysisService->providers; - * - */ -class Google_Service_ContainerAnalysis_Resource_Providers extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Resource/ProvidersNotes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Resource/ProvidersNotes.php deleted file mode 100644 index 75212818..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Resource/ProvidersNotes.php +++ /dev/null @@ -1,188 +0,0 @@ - - * $containeranalysisService = new Google_Service_ContainerAnalysis(...); - * $notes = $containeranalysisService->notes; - * - */ -class Google_Service_ContainerAnalysis_Resource_ProvidersNotes extends Google_Service_Resource -{ - /** - * Creates a new `Note`. (notes.create) - * - * @param string $name The name of the project. Should be of the form - * "providers/{provider_id}". @Deprecated - * @param Google_Service_ContainerAnalysis_Note $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string parent This field contains the project Id for example: - * "projects/{project_id} - * @opt_param string noteId The ID to use for this note. - * @return Google_Service_ContainerAnalysis_Note - */ - public function create($name, Google_Service_ContainerAnalysis_Note $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_ContainerAnalysis_Note"); - } - /** - * Deletes the given `Note` from the system. (notes.delete) - * - * @param string $name The name of the note in the form of - * "providers/{provider_id}/notes/{NOTE_ID}" - * @param array $optParams Optional parameters. - * @return Google_Service_ContainerAnalysis_ContaineranalysisEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_ContainerAnalysis_ContaineranalysisEmpty"); - } - /** - * Returns the requested `Note`. (notes.get) - * - * @param string $name The name of the note in the form of - * "providers/{provider_id}/notes/{NOTE_ID}" - * @param array $optParams Optional parameters. - * @return Google_Service_ContainerAnalysis_Note - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_ContainerAnalysis_Note"); - } - /** - * Gets the access control policy for a note or an `Occurrence` resource. - * Requires `containeranalysis.notes.setIamPolicy` or - * `containeranalysis.occurrences.setIamPolicy` permission if the resource is a - * note or occurrence, respectively. Attempting to call this method on a - * resource without the required permission will result in a `PERMISSION_DENIED` - * error. Attempting to call this method on a non-existent resource will result - * in a `NOT_FOUND` error if the user has list permission on the project, or a - * `PERMISSION_DENIED` error otherwise. The resource takes the following - * formats: `projects/{PROJECT_ID}/occurrences/{OCCURRENCE_ID}` for occurrences - * and projects/{PROJECT_ID}/notes/{NOTE_ID} for notes (notes.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 Google_Service_ContainerAnalysis_GetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ContainerAnalysis_Policy - */ - public function getIamPolicy($resource, Google_Service_ContainerAnalysis_GetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_ContainerAnalysis_Policy"); - } - /** - * Lists all `Notes` for a given project. (notes.listProvidersNotes) - * - * @param string $name The name field will contain the project Id for example: - * "providers/{provider_id} @Deprecated - * @param array $optParams Optional parameters. - * - * @opt_param string parent This field contains the project Id for example: - * "projects/{PROJECT_ID}". - * @opt_param string filter The filter expression. - * @opt_param string pageToken Token to provide to skip to a particular spot in - * the list. - * @opt_param int pageSize Number of notes to return in the list. - * @return Google_Service_ContainerAnalysis_ListNotesResponse - */ - public function listProvidersNotes($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_ContainerAnalysis_ListNotesResponse"); - } - /** - * Updates an existing `Note`. (notes.patch) - * - * @param string $name The name of the note. Should be of the form - * "projects/{provider_id}/notes/{note_id}". - * @param Google_Service_ContainerAnalysis_Note $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask The fields to update. - * @return Google_Service_ContainerAnalysis_Note - */ - public function patch($name, Google_Service_ContainerAnalysis_Note $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_ContainerAnalysis_Note"); - } - /** - * Sets the access control policy on the specified `Note` or `Occurrence`. - * Requires `containeranalysis.notes.setIamPolicy` or - * `containeranalysis.occurrences.setIamPolicy` permission if the resource is a - * `Note` or an `Occurrence`, respectively. Attempting to call this method - * without these permissions will result in a ` `PERMISSION_DENIED` error. - * Attempting to call this method on a non-existent resource will result in a - * `NOT_FOUND` error if the user has `containeranalysis.notes.list` permission - * on a `Note` or `containeranalysis.occurrences.list` on an `Occurrence`, or a - * `PERMISSION_DENIED` error otherwise. The resource takes the following - * formats: `projects/{projectid}/occurrences/{occurrenceid}` for occurrences - * and projects/{projectid}/notes/{noteid} for notes (notes.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_ContainerAnalysis_SetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ContainerAnalysis_Policy - */ - public function setIamPolicy($resource, Google_Service_ContainerAnalysis_SetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_ContainerAnalysis_Policy"); - } - /** - * Returns the permissions that a caller has on the specified note or occurrence - * resource. Requires list permission on the project (for example, - * "storage.objects.list" on the containing bucket for testing permission of an - * object). Attempting to call this method on a non-existent resource will - * result in a `NOT_FOUND` error if the user has list permission on the project, - * or a `PERMISSION_DENIED` error otherwise. The resource takes the following - * formats: `projects/{PROJECT_ID}/occurrences/{OCCURRENCE_ID}` for - * `Occurrences` and `projects/{PROJECT_ID}/notes/{NOTE_ID}` for `Notes` - * (notes.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_ContainerAnalysis_TestIamPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ContainerAnalysis_TestIamPermissionsResponse - */ - public function testIamPermissions($resource, Google_Service_ContainerAnalysis_TestIamPermissionsRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_ContainerAnalysis_TestIamPermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Resource/ProvidersNotesOccurrences.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Resource/ProvidersNotesOccurrences.php deleted file mode 100644 index a03a7581..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Resource/ProvidersNotesOccurrences.php +++ /dev/null @@ -1,49 +0,0 @@ - - * $containeranalysisService = new Google_Service_ContainerAnalysis(...); - * $occurrences = $containeranalysisService->occurrences; - * - */ -class Google_Service_ContainerAnalysis_Resource_ProvidersNotesOccurrences extends Google_Service_Resource -{ - /** - * Lists `Occurrences` referencing the specified `Note`. Use this method to get - * all occurrences referencing your `Note` across all your customer projects. - * (occurrences.listProvidersNotesOccurrences) - * - * @param string $name The name field will contain the note name for example: - * "provider/{provider_id}/notes/{note_id}" - * @param array $optParams Optional parameters. - * - * @opt_param string filter The filter expression. - * @opt_param string pageToken Token to provide to skip to a particular spot in - * the list. - * @opt_param int pageSize Number of notes to return in the list. - * @return Google_Service_ContainerAnalysis_ListNoteOccurrencesResponse - */ - public function listProvidersNotesOccurrences($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_ContainerAnalysis_ListNoteOccurrencesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/ScanConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/ScanConfig.php deleted file mode 100644 index 1fd30a34..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/ScanConfig.php +++ /dev/null @@ -1,66 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setEnabled($enabled) - { - $this->enabled = $enabled; - } - public function getEnabled() - { - return $this->enabled; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/SetIamPolicyRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/SetIamPolicyRequest.php deleted file mode 100644 index 98525245..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/SetIamPolicyRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -policy = $policy; - } - /** - * @return Google_Service_ContainerAnalysis_Policy - */ - public function getPolicy() - { - return $this->policy; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/SeverityCount.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/SeverityCount.php deleted file mode 100644 index 18eca50a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/SeverityCount.php +++ /dev/null @@ -1,39 +0,0 @@ -count = $count; - } - public function getCount() - { - return $this->count; - } - public function setSeverity($severity) - { - $this->severity = $severity; - } - public function getSeverity() - { - return $this->severity; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Source.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Source.php deleted file mode 100644 index b80c5ad4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Source.php +++ /dev/null @@ -1,118 +0,0 @@ -additionalContexts = $additionalContexts; - } - /** - * @return Google_Service_ContainerAnalysis_GoogleDevtoolsContaineranalysisV1alpha1SourceContext - */ - public function getAdditionalContexts() - { - return $this->additionalContexts; - } - /** - * @param Google_Service_ContainerAnalysis_StorageSource - */ - public function setArtifactStorageSource(Google_Service_ContainerAnalysis_StorageSource $artifactStorageSource) - { - $this->artifactStorageSource = $artifactStorageSource; - } - /** - * @return Google_Service_ContainerAnalysis_StorageSource - */ - public function getArtifactStorageSource() - { - return $this->artifactStorageSource; - } - /** - * @param Google_Service_ContainerAnalysis_GoogleDevtoolsContaineranalysisV1alpha1SourceContext - */ - public function setContext(Google_Service_ContainerAnalysis_GoogleDevtoolsContaineranalysisV1alpha1SourceContext $context) - { - $this->context = $context; - } - /** - * @return Google_Service_ContainerAnalysis_GoogleDevtoolsContaineranalysisV1alpha1SourceContext - */ - public function getContext() - { - return $this->context; - } - /** - * @param Google_Service_ContainerAnalysis_FileHashes - */ - public function setFileHashes($fileHashes) - { - $this->fileHashes = $fileHashes; - } - /** - * @return Google_Service_ContainerAnalysis_FileHashes - */ - public function getFileHashes() - { - return $this->fileHashes; - } - /** - * @param Google_Service_ContainerAnalysis_RepoSource - */ - public function setRepoSource(Google_Service_ContainerAnalysis_RepoSource $repoSource) - { - $this->repoSource = $repoSource; - } - /** - * @return Google_Service_ContainerAnalysis_RepoSource - */ - public function getRepoSource() - { - return $this->repoSource; - } - /** - * @param Google_Service_ContainerAnalysis_StorageSource - */ - public function setStorageSource(Google_Service_ContainerAnalysis_StorageSource $storageSource) - { - $this->storageSource = $storageSource; - } - /** - * @return Google_Service_ContainerAnalysis_StorageSource - */ - public function getStorageSource() - { - return $this->storageSource; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Status.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Status.php deleted file mode 100644 index 8847b229..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Status.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/StorageSource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/StorageSource.php deleted file mode 100644 index eecc6168..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/StorageSource.php +++ /dev/null @@ -1,48 +0,0 @@ -bucket = $bucket; - } - public function getBucket() - { - return $this->bucket; - } - public function setGeneration($generation) - { - $this->generation = $generation; - } - public function getGeneration() - { - return $this->generation; - } - public function setObject($object) - { - $this->object = $object; - } - public function getObject() - { - return $this->object; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/TestIamPermissionsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/TestIamPermissionsRequest.php deleted file mode 100644 index d8567c06..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/TestIamPermissionsRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/TestIamPermissionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/TestIamPermissionsResponse.php deleted file mode 100644 index 7854a3d4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/TestIamPermissionsResponse.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/UpdateOperationRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/UpdateOperationRequest.php deleted file mode 100644 index 4debc9ba..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/UpdateOperationRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -operation = $operation; - } - /** - * @return Google_Service_ContainerAnalysis_Operation - */ - public function getOperation() - { - return $this->operation; - } - public function setUpdateMask($updateMask) - { - $this->updateMask = $updateMask; - } - public function getUpdateMask() - { - return $this->updateMask; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/UpgradeDistribution.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/UpgradeDistribution.php deleted file mode 100644 index 1e47ce82..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/UpgradeDistribution.php +++ /dev/null @@ -1,58 +0,0 @@ -classification = $classification; - } - public function getClassification() - { - return $this->classification; - } - public function setCpeUri($cpeUri) - { - $this->cpeUri = $cpeUri; - } - public function getCpeUri() - { - return $this->cpeUri; - } - public function setCve($cve) - { - $this->cve = $cve; - } - public function getCve() - { - return $this->cve; - } - public function setSeverity($severity) - { - $this->severity = $severity; - } - public function getSeverity() - { - return $this->severity; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/UpgradeNote.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/UpgradeNote.php deleted file mode 100644 index f6fe7d5d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/UpgradeNote.php +++ /dev/null @@ -1,63 +0,0 @@ -distributions = $distributions; - } - /** - * @return Google_Service_ContainerAnalysis_UpgradeDistribution - */ - public function getDistributions() - { - return $this->distributions; - } - public function setPackage($package) - { - $this->package = $package; - } - public function getPackage() - { - return $this->package; - } - /** - * @param Google_Service_ContainerAnalysis_Version - */ - public function setVersion(Google_Service_ContainerAnalysis_Version $version) - { - $this->version = $version; - } - /** - * @return Google_Service_ContainerAnalysis_Version - */ - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/UpgradeOccurrence.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/UpgradeOccurrence.php deleted file mode 100644 index 1da56287..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/UpgradeOccurrence.php +++ /dev/null @@ -1,62 +0,0 @@ -distribution = $distribution; - } - /** - * @return Google_Service_ContainerAnalysis_UpgradeDistribution - */ - public function getDistribution() - { - return $this->distribution; - } - public function setPackage($package) - { - $this->package = $package; - } - public function getPackage() - { - return $this->package; - } - /** - * @param Google_Service_ContainerAnalysis_Version - */ - public function setParsedVersion(Google_Service_ContainerAnalysis_Version $parsedVersion) - { - $this->parsedVersion = $parsedVersion; - } - /** - * @return Google_Service_ContainerAnalysis_Version - */ - public function getParsedVersion() - { - return $this->parsedVersion; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Version.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Version.php deleted file mode 100644 index c3dae707..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/Version.php +++ /dev/null @@ -1,57 +0,0 @@ -epoch = $epoch; - } - public function getEpoch() - { - return $this->epoch; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setRevision($revision) - { - $this->revision = $revision; - } - public function getRevision() - { - return $this->revision; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/VulnerabilityDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/VulnerabilityDetails.php deleted file mode 100644 index 994616fe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/VulnerabilityDetails.php +++ /dev/null @@ -1,74 +0,0 @@ -cvssScore = $cvssScore; - } - public function getCvssScore() - { - return $this->cvssScore; - } - public function setEffectiveSeverity($effectiveSeverity) - { - $this->effectiveSeverity = $effectiveSeverity; - } - public function getEffectiveSeverity() - { - return $this->effectiveSeverity; - } - /** - * @param Google_Service_ContainerAnalysis_PackageIssue - */ - public function setPackageIssue($packageIssue) - { - $this->packageIssue = $packageIssue; - } - /** - * @return Google_Service_ContainerAnalysis_PackageIssue - */ - public function getPackageIssue() - { - return $this->packageIssue; - } - public function setSeverity($severity) - { - $this->severity = $severity; - } - public function getSeverity() - { - return $this->severity; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/VulnerabilityLocation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/VulnerabilityLocation.php deleted file mode 100644 index d713561e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/VulnerabilityLocation.php +++ /dev/null @@ -1,55 +0,0 @@ -cpeUri = $cpeUri; - } - public function getCpeUri() - { - return $this->cpeUri; - } - public function setPackage($package) - { - $this->package = $package; - } - public function getPackage() - { - return $this->package; - } - /** - * @param Google_Service_ContainerAnalysis_Version - */ - public function setVersion(Google_Service_ContainerAnalysis_Version $version) - { - $this->version = $version; - } - /** - * @return Google_Service_ContainerAnalysis_Version - */ - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/VulnerabilityType.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/VulnerabilityType.php deleted file mode 100644 index 96da8193..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ContainerAnalysis/VulnerabilityType.php +++ /dev/null @@ -1,56 +0,0 @@ -cvssScore = $cvssScore; - } - public function getCvssScore() - { - return $this->cvssScore; - } - /** - * @param Google_Service_ContainerAnalysis_Detail - */ - public function setDetails($details) - { - $this->details = $details; - } - /** - * @return Google_Service_ContainerAnalysis_Detail - */ - public function getDetails() - { - return $this->details; - } - public function setSeverity($severity) - { - $this->severity = $severity; - } - public function getSeverity() - { - return $this->severity; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate.php deleted file mode 100644 index a7beaba6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate.php +++ /dev/null @@ -1,467 +0,0 @@ - - * Lets you view and manage jobs in a Coordinate team.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Coordinate extends Google_Service -{ - /** View and manage your Google Maps Coordinate jobs. */ - const COORDINATE = - "https://www.googleapis.com/auth/coordinate"; - /** View your Google Coordinate jobs. */ - const COORDINATE_READONLY = - "https://www.googleapis.com/auth/coordinate.readonly"; - - public $customFieldDef; - public $jobs; - public $location; - public $schedule; - public $team; - public $worker; - - /** - * Constructs the internal representation of the Coordinate service. - * - * @param Google_Client $client - */ - public function __construct(Google_Client $client) - { - parent::__construct($client); - $this->rootUrl = 'https://www.googleapis.com/'; - $this->servicePath = 'coordinate/v1/'; - $this->version = 'v1'; - $this->serviceName = 'coordinate'; - - $this->customFieldDef = new Google_Service_Coordinate_Resource_CustomFieldDef( - $this, - $this->serviceName, - 'customFieldDef', - array( - 'methods' => array( - 'list' => array( - 'path' => 'teams/{teamId}/custom_fields', - 'httpMethod' => 'GET', - 'parameters' => array( - 'teamId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->jobs = new Google_Service_Coordinate_Resource_Jobs( - $this, - $this->serviceName, - 'jobs', - array( - 'methods' => array( - 'get' => array( - 'path' => 'teams/{teamId}/jobs/{jobId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'teamId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'jobId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'teams/{teamId}/jobs', - 'httpMethod' => 'POST', - 'parameters' => array( - 'teamId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'address' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'lat' => array( - 'location' => 'query', - 'type' => 'number', - 'required' => true, - ), - 'lng' => array( - 'location' => 'query', - 'type' => 'number', - 'required' => true, - ), - 'title' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'assignee' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'customField' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'customerName' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'customerPhoneNumber' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'note' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'teams/{teamId}/jobs', - 'httpMethod' => 'GET', - 'parameters' => array( - 'teamId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'minModifiedTimestampMs' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'omitJobChanges' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'teams/{teamId}/jobs/{jobId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'teamId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'jobId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'address' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'assignee' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'customField' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'customerName' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'customerPhoneNumber' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'lat' => array( - 'location' => 'query', - 'type' => 'number', - ), - 'lng' => array( - 'location' => 'query', - 'type' => 'number', - ), - 'note' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'progress' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'title' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'teams/{teamId}/jobs/{jobId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'teamId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'jobId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'address' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'assignee' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'customField' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'customerName' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'customerPhoneNumber' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'lat' => array( - 'location' => 'query', - 'type' => 'number', - ), - 'lng' => array( - 'location' => 'query', - 'type' => 'number', - ), - 'note' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'progress' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'title' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->location = new Google_Service_Coordinate_Resource_Location( - $this, - $this->serviceName, - 'location', - array( - 'methods' => array( - 'list' => array( - 'path' => 'teams/{teamId}/workers/{workerEmail}/locations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'teamId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'workerEmail' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'startTimestampMs' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->schedule = new Google_Service_Coordinate_Resource_Schedule( - $this, - $this->serviceName, - 'schedule', - array( - 'methods' => array( - 'get' => array( - 'path' => 'teams/{teamId}/jobs/{jobId}/schedule', - 'httpMethod' => 'GET', - 'parameters' => array( - 'teamId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'jobId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => 'teams/{teamId}/jobs/{jobId}/schedule', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'teamId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'jobId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'allDay' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'duration' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'endTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'startTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'teams/{teamId}/jobs/{jobId}/schedule', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'teamId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'jobId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'allDay' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'duration' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'endTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'startTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->team = new Google_Service_Coordinate_Resource_Team( - $this, - $this->serviceName, - 'team', - array( - 'methods' => array( - 'list' => array( - 'path' => 'teams', - 'httpMethod' => 'GET', - 'parameters' => array( - 'admin' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'dispatcher' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'worker' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ), - ) - ) - ); - $this->worker = new Google_Service_Coordinate_Resource_Worker( - $this, - $this->serviceName, - 'worker', - array( - 'methods' => array( - 'list' => array( - 'path' => 'teams/{teamId}/workers', - 'httpMethod' => 'GET', - 'parameters' => array( - 'teamId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/CustomField.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/CustomField.php deleted file mode 100644 index 13d6e05a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/CustomField.php +++ /dev/null @@ -1,48 +0,0 @@ -customFieldId = $customFieldId; - } - public function getCustomFieldId() - { - return $this->customFieldId; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/CustomFieldDef.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/CustomFieldDef.php deleted file mode 100644 index 1781a53c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/CustomFieldDef.php +++ /dev/null @@ -1,86 +0,0 @@ -enabled = $enabled; - } - public function getEnabled() - { - return $this->enabled; - } - public function setEnumitems($enumitems) - { - $this->enumitems = $enumitems; - } - public function getEnumitems() - { - return $this->enumitems; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setRequiredForCheckout($requiredForCheckout) - { - $this->requiredForCheckout = $requiredForCheckout; - } - public function getRequiredForCheckout() - { - return $this->requiredForCheckout; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/CustomFieldDefListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/CustomFieldDefListResponse.php deleted file mode 100644 index c33f55dd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/CustomFieldDefListResponse.php +++ /dev/null @@ -1,41 +0,0 @@ -items = $items; - } - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/CustomFields.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/CustomFields.php deleted file mode 100644 index 5b03c714..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/CustomFields.php +++ /dev/null @@ -1,41 +0,0 @@ -customField = $customField; - } - public function getCustomField() - { - return $this->customField; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/EnumItemDef.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/EnumItemDef.php deleted file mode 100644 index bb27a51c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/EnumItemDef.php +++ /dev/null @@ -1,48 +0,0 @@ -active = $active; - } - public function getActive() - { - return $this->active; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/Job.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/Job.php deleted file mode 100644 index 47cc950a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/Job.php +++ /dev/null @@ -1,60 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setJobChange($jobChange) - { - $this->jobChange = $jobChange; - } - public function getJobChange() - { - return $this->jobChange; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setState(Google_Service_Coordinate_JobState $state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/JobChange.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/JobChange.php deleted file mode 100644 index 699e9228..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/JobChange.php +++ /dev/null @@ -1,49 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setState(Google_Service_Coordinate_JobState $state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setTimestamp($timestamp) - { - $this->timestamp = $timestamp; - } - public function getTimestamp() - { - return $this->timestamp; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/JobListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/JobListResponse.php deleted file mode 100644 index fc94c499..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/JobListResponse.php +++ /dev/null @@ -1,50 +0,0 @@ -items = $items; - } - public function getItems() - { - return $this->items; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/JobState.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/JobState.php deleted file mode 100644 index a46c37e0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/JobState.php +++ /dev/null @@ -1,105 +0,0 @@ -assignee = $assignee; - } - public function getAssignee() - { - return $this->assignee; - } - public function setCustomFields(Google_Service_Coordinate_CustomFields $customFields) - { - $this->customFields = $customFields; - } - public function getCustomFields() - { - return $this->customFields; - } - public function setCustomerName($customerName) - { - $this->customerName = $customerName; - } - public function getCustomerName() - { - return $this->customerName; - } - public function setCustomerPhoneNumber($customerPhoneNumber) - { - $this->customerPhoneNumber = $customerPhoneNumber; - } - public function getCustomerPhoneNumber() - { - return $this->customerPhoneNumber; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLocation(Google_Service_Coordinate_Location $location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setNote($note) - { - $this->note = $note; - } - public function getNote() - { - return $this->note; - } - public function setProgress($progress) - { - $this->progress = $progress; - } - public function getProgress() - { - return $this->progress; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/Location.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/Location.php deleted file mode 100644 index 5104bf89..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/Location.php +++ /dev/null @@ -1,58 +0,0 @@ -addressLine = $addressLine; - } - public function getAddressLine() - { - return $this->addressLine; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLat($lat) - { - $this->lat = $lat; - } - public function getLat() - { - return $this->lat; - } - public function setLng($lng) - { - $this->lng = $lng; - } - public function getLng() - { - return $this->lng; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/LocationListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/LocationListResponse.php deleted file mode 100644 index dd2b2b9b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/LocationListResponse.php +++ /dev/null @@ -1,60 +0,0 @@ -items = $items; - } - public function getItems() - { - return $this->items; - } - 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; - } - public function setTokenPagination(Google_Service_Coordinate_TokenPagination $tokenPagination) - { - $this->tokenPagination = $tokenPagination; - } - public function getTokenPagination() - { - return $this->tokenPagination; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/LocationRecord.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/LocationRecord.php deleted file mode 100644 index ab215b88..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/LocationRecord.php +++ /dev/null @@ -1,66 +0,0 @@ -collectionTime = $collectionTime; - } - public function getCollectionTime() - { - return $this->collectionTime; - } - public function setConfidenceRadius($confidenceRadius) - { - $this->confidenceRadius = $confidenceRadius; - } - public function getConfidenceRadius() - { - return $this->confidenceRadius; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLatitude($latitude) - { - $this->latitude = $latitude; - } - public function getLatitude() - { - return $this->latitude; - } - public function setLongitude($longitude) - { - $this->longitude = $longitude; - } - public function getLongitude() - { - return $this->longitude; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/Resource/CustomFieldDef.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/Resource/CustomFieldDef.php deleted file mode 100644 index 520be5f6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/Resource/CustomFieldDef.php +++ /dev/null @@ -1,42 +0,0 @@ - - * $coordinateService = new Google_Service_Coordinate(...); - * $customFieldDef = $coordinateService->customFieldDef; - * - */ -class Google_Service_Coordinate_Resource_CustomFieldDef extends Google_Service_Resource -{ - /** - * Retrieves a list of custom field definitions for a team. - * (customFieldDef.listCustomFieldDef) - * - * @param string $teamId Team ID - * @param array $optParams Optional parameters. - * @return Google_Service_Coordinate_CustomFieldDefListResponse - */ - public function listCustomFieldDef($teamId, $optParams = array()) - { - $params = array('teamId' => $teamId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Coordinate_CustomFieldDefListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/Resource/Jobs.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/Resource/Jobs.php deleted file mode 100644 index 2ec6b01e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/Resource/Jobs.php +++ /dev/null @@ -1,159 +0,0 @@ - - * $coordinateService = new Google_Service_Coordinate(...); - * $jobs = $coordinateService->jobs; - * - */ -class Google_Service_Coordinate_Resource_Jobs extends Google_Service_Resource -{ - /** - * Retrieves a job, including all the changes made to the job. (jobs.get) - * - * @param string $teamId Team ID - * @param string $jobId Job number - * @param array $optParams Optional parameters. - * @return Google_Service_Coordinate_Job - */ - public function get($teamId, $jobId, $optParams = array()) - { - $params = array('teamId' => $teamId, 'jobId' => $jobId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Coordinate_Job"); - } - /** - * Inserts a new job. Only the state field of the job should be set. - * (jobs.insert) - * - * @param string $teamId Team ID - * @param string $address Job address as newline (Unix) separated string - * @param double $lat The latitude coordinate of this job's location. - * @param double $lng The longitude coordinate of this job's location. - * @param string $title Job title - * @param Google_Service_Coordinate_Job $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string assignee Assignee email address, or empty string to - * unassign. - * @opt_param string customField Sets the value of custom fields. To set a - * custom field, pass the field id (from /team/teamId/custom_fields), a URL - * escaped '=' character, and the desired value as a parameter. For example, - * customField=12%3DAlice. Repeat the parameter for each custom field. Note that - * '=' cannot appear in the parameter value. Specifying an invalid, or inactive - * enum field will result in an error 500. - * @opt_param string customerName Customer name - * @opt_param string customerPhoneNumber Customer phone number - * @opt_param string note Job note as newline (Unix) separated string - * @return Google_Service_Coordinate_Job - */ - public function insert($teamId, $address, $lat, $lng, $title, Google_Service_Coordinate_Job $postBody, $optParams = array()) - { - $params = array('teamId' => $teamId, 'address' => $address, 'lat' => $lat, 'lng' => $lng, 'title' => $title, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Coordinate_Job"); - } - /** - * Retrieves jobs created or modified since the given timestamp. (jobs.listJobs) - * - * @param string $teamId Team ID - * @param array $optParams Optional parameters. - * - * @opt_param string maxResults Maximum number of results to return in one page. - * @opt_param string minModifiedTimestampMs Minimum time a job was modified in - * milliseconds since epoch. - * @opt_param bool omitJobChanges Whether to omit detail job history - * information. - * @opt_param string pageToken Continuation token - * @return Google_Service_Coordinate_JobListResponse - */ - public function listJobs($teamId, $optParams = array()) - { - $params = array('teamId' => $teamId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Coordinate_JobListResponse"); - } - /** - * Updates a job. Fields that are set in the job state will be updated. This - * method supports patch semantics. (jobs.patch) - * - * @param string $teamId Team ID - * @param string $jobId Job number - * @param Google_Service_Coordinate_Job $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string address Job address as newline (Unix) separated string - * @opt_param string assignee Assignee email address, or empty string to - * unassign. - * @opt_param string customField Sets the value of custom fields. To set a - * custom field, pass the field id (from /team/teamId/custom_fields), a URL - * escaped '=' character, and the desired value as a parameter. For example, - * customField=12%3DAlice. Repeat the parameter for each custom field. Note that - * '=' cannot appear in the parameter value. Specifying an invalid, or inactive - * enum field will result in an error 500. - * @opt_param string customerName Customer name - * @opt_param string customerPhoneNumber Customer phone number - * @opt_param double lat The latitude coordinate of this job's location. - * @opt_param double lng The longitude coordinate of this job's location. - * @opt_param string note Job note as newline (Unix) separated string - * @opt_param string progress Job progress - * @opt_param string title Job title - * @return Google_Service_Coordinate_Job - */ - public function patch($teamId, $jobId, Google_Service_Coordinate_Job $postBody, $optParams = array()) - { - $params = array('teamId' => $teamId, 'jobId' => $jobId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Coordinate_Job"); - } - /** - * Updates a job. Fields that are set in the job state will be updated. - * (jobs.update) - * - * @param string $teamId Team ID - * @param string $jobId Job number - * @param Google_Service_Coordinate_Job $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string address Job address as newline (Unix) separated string - * @opt_param string assignee Assignee email address, or empty string to - * unassign. - * @opt_param string customField Sets the value of custom fields. To set a - * custom field, pass the field id (from /team/teamId/custom_fields), a URL - * escaped '=' character, and the desired value as a parameter. For example, - * customField=12%3DAlice. Repeat the parameter for each custom field. Note that - * '=' cannot appear in the parameter value. Specifying an invalid, or inactive - * enum field will result in an error 500. - * @opt_param string customerName Customer name - * @opt_param string customerPhoneNumber Customer phone number - * @opt_param double lat The latitude coordinate of this job's location. - * @opt_param double lng The longitude coordinate of this job's location. - * @opt_param string note Job note as newline (Unix) separated string - * @opt_param string progress Job progress - * @opt_param string title Job title - * @return Google_Service_Coordinate_Job - */ - public function update($teamId, $jobId, Google_Service_Coordinate_Job $postBody, $optParams = array()) - { - $params = array('teamId' => $teamId, 'jobId' => $jobId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Coordinate_Job"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/Resource/Location.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/Resource/Location.php deleted file mode 100644 index 5c642d45..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/Resource/Location.php +++ /dev/null @@ -1,47 +0,0 @@ - - * $coordinateService = new Google_Service_Coordinate(...); - * $location = $coordinateService->location; - * - */ -class Google_Service_Coordinate_Resource_Location extends Google_Service_Resource -{ - /** - * Retrieves a list of locations for a worker. (location.listLocation) - * - * @param string $teamId Team ID - * @param string $workerEmail Worker email address. - * @param string $startTimestampMs Start timestamp in milliseconds since the - * epoch. - * @param array $optParams Optional parameters. - * - * @opt_param string maxResults Maximum number of results to return in one page. - * @opt_param string pageToken Continuation token - * @return Google_Service_Coordinate_LocationListResponse - */ - public function listLocation($teamId, $workerEmail, $startTimestampMs, $optParams = array()) - { - $params = array('teamId' => $teamId, 'workerEmail' => $workerEmail, 'startTimestampMs' => $startTimestampMs); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Coordinate_LocationListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/Resource/Schedule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/Resource/Schedule.php deleted file mode 100644 index 7652524b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/Resource/Schedule.php +++ /dev/null @@ -1,85 +0,0 @@ - - * $coordinateService = new Google_Service_Coordinate(...); - * $schedule = $coordinateService->schedule; - * - */ -class Google_Service_Coordinate_Resource_Schedule extends Google_Service_Resource -{ - /** - * Retrieves the schedule for a job. (schedule.get) - * - * @param string $teamId Team ID - * @param string $jobId Job number - * @param array $optParams Optional parameters. - * @return Google_Service_Coordinate_Schedule - */ - public function get($teamId, $jobId, $optParams = array()) - { - $params = array('teamId' => $teamId, 'jobId' => $jobId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Coordinate_Schedule"); - } - /** - * Replaces the schedule of a job with the provided schedule. This method - * supports patch semantics. (schedule.patch) - * - * @param string $teamId Team ID - * @param string $jobId Job number - * @param Google_Service_Coordinate_Schedule $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool allDay Whether the job is scheduled for the whole day. Time - * of day in start/end times is ignored if this is true. - * @opt_param string duration Job duration in milliseconds. - * @opt_param string endTime Scheduled end time in milliseconds since epoch. - * @opt_param string startTime Scheduled start time in milliseconds since epoch. - * @return Google_Service_Coordinate_Schedule - */ - public function patch($teamId, $jobId, Google_Service_Coordinate_Schedule $postBody, $optParams = array()) - { - $params = array('teamId' => $teamId, 'jobId' => $jobId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Coordinate_Schedule"); - } - /** - * Replaces the schedule of a job with the provided schedule. (schedule.update) - * - * @param string $teamId Team ID - * @param string $jobId Job number - * @param Google_Service_Coordinate_Schedule $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool allDay Whether the job is scheduled for the whole day. Time - * of day in start/end times is ignored if this is true. - * @opt_param string duration Job duration in milliseconds. - * @opt_param string endTime Scheduled end time in milliseconds since epoch. - * @opt_param string startTime Scheduled start time in milliseconds since epoch. - * @return Google_Service_Coordinate_Schedule - */ - public function update($teamId, $jobId, Google_Service_Coordinate_Schedule $postBody, $optParams = array()) - { - $params = array('teamId' => $teamId, 'jobId' => $jobId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Coordinate_Schedule"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/Resource/Team.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/Resource/Team.php deleted file mode 100644 index 3c183e2a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/Resource/Team.php +++ /dev/null @@ -1,47 +0,0 @@ - - * $coordinateService = new Google_Service_Coordinate(...); - * $team = $coordinateService->team; - * - */ -class Google_Service_Coordinate_Resource_Team extends Google_Service_Resource -{ - /** - * Retrieves a list of teams for a user. (team.listTeam) - * - * @param array $optParams Optional parameters. - * - * @opt_param bool admin Whether to include teams for which the user has the - * Admin role. - * @opt_param bool dispatcher Whether to include teams for which the user has - * the Dispatcher role. - * @opt_param bool worker Whether to include teams for which the user has the - * Worker role. - * @return Google_Service_Coordinate_TeamListResponse - */ - public function listTeam($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Coordinate_TeamListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/Resource/Worker.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/Resource/Worker.php deleted file mode 100644 index bf0fe3b8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/Resource/Worker.php +++ /dev/null @@ -1,41 +0,0 @@ - - * $coordinateService = new Google_Service_Coordinate(...); - * $worker = $coordinateService->worker; - * - */ -class Google_Service_Coordinate_Resource_Worker extends Google_Service_Resource -{ - /** - * Retrieves a list of workers in a team. (worker.listWorker) - * - * @param string $teamId Team ID - * @param array $optParams Optional parameters. - * @return Google_Service_Coordinate_WorkerListResponse - */ - public function listWorker($teamId, $optParams = array()) - { - $params = array('teamId' => $teamId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Coordinate_WorkerListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/Schedule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/Schedule.php deleted file mode 100644 index 669796d7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/Schedule.php +++ /dev/null @@ -1,66 +0,0 @@ -allDay = $allDay; - } - public function getAllDay() - { - return $this->allDay; - } - public function setDuration($duration) - { - $this->duration = $duration; - } - public function getDuration() - { - return $this->duration; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/Team.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/Team.php deleted file mode 100644 index ff6c0893..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/Team.php +++ /dev/null @@ -1,48 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/TeamListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/TeamListResponse.php deleted file mode 100644 index 43b74622..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/TeamListResponse.php +++ /dev/null @@ -1,41 +0,0 @@ -items = $items; - } - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/TokenPagination.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/TokenPagination.php deleted file mode 100644 index f12e1886..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/TokenPagination.php +++ /dev/null @@ -1,48 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setPreviousPageToken($previousPageToken) - { - $this->previousPageToken = $previousPageToken; - } - public function getPreviousPageToken() - { - return $this->previousPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/Worker.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/Worker.php deleted file mode 100644 index 913499e2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/Worker.php +++ /dev/null @@ -1,39 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/WorkerListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/WorkerListResponse.php deleted file mode 100644 index fa7cb3a6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Coordinate/WorkerListResponse.php +++ /dev/null @@ -1,41 +0,0 @@ -items = $items; - } - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Customsearch.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Customsearch.php deleted file mode 100644 index 113026a2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Customsearch.php +++ /dev/null @@ -1,334 +0,0 @@ - - * Searches over a website or collection of websites

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Customsearch extends Google_Service -{ - - - public $cse; - public $cse_siterestrict; - - /** - * Constructs the internal representation of the Customsearch service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://www.googleapis.com/'; - $this->servicePath = 'customsearch/'; - $this->batchPath = 'batch/customsearch/v1'; - $this->version = 'v1'; - $this->serviceName = 'customsearch'; - - $this->cse = new Google_Service_Customsearch_Resource_Cse( - $this, - $this->serviceName, - 'cse', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1', - 'httpMethod' => 'GET', - 'parameters' => array( - 'q' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'c2coff' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'cr' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'cx' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'dateRestrict' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'exactTerms' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'excludeTerms' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'fileType' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'gl' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'googlehost' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'highRange' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'hl' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'hq' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'imgColorType' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'imgDominantColor' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'imgSize' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'imgType' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'linkSite' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'lowRange' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'lr' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'num' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orTerms' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'relatedSite' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'rights' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'safe' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'searchType' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'siteSearch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'siteSearchFilter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sort' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'start' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->cse_siterestrict = new Google_Service_Customsearch_Resource_CseSiterestrict( - $this, - $this->serviceName, - 'siterestrict', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1/siterestrict', - 'httpMethod' => 'GET', - 'parameters' => array( - 'q' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'c2coff' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'cr' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'cx' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'dateRestrict' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'exactTerms' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'excludeTerms' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'fileType' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'gl' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'googlehost' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'highRange' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'hl' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'hq' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'imgColorType' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'imgDominantColor' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'imgSize' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'imgType' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'linkSite' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'lowRange' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'lr' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'num' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orTerms' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'relatedSite' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'rights' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'safe' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'searchType' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'siteSearch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'siteSearchFilter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sort' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'start' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Customsearch/Context.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Customsearch/Context.php deleted file mode 100644 index 5f1ea448..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Customsearch/Context.php +++ /dev/null @@ -1,47 +0,0 @@ -facets = $facets; - } - /** - * @return Google_Service_Customsearch_ContextFacets - */ - public function getFacets() - { - return $this->facets; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Customsearch/ContextFacets.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Customsearch/ContextFacets.php deleted file mode 100644 index 0ce93e92..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Customsearch/ContextFacets.php +++ /dev/null @@ -1,51 +0,0 @@ - "label_with_op", - ); - public $anchor; - public $label; - public $labelWithOp; - - public function setAnchor($anchor) - { - $this->anchor = $anchor; - } - public function getAnchor() - { - return $this->anchor; - } - public function setLabel($label) - { - $this->label = $label; - } - public function getLabel() - { - return $this->label; - } - public function setLabelWithOp($labelWithOp) - { - $this->labelWithOp = $labelWithOp; - } - public function getLabelWithOp() - { - return $this->labelWithOp; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Customsearch/Promotion.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Customsearch/Promotion.php deleted file mode 100644 index c2a9a1cb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Customsearch/Promotion.php +++ /dev/null @@ -1,90 +0,0 @@ -bodyLines = $bodyLines; - } - /** - * @return Google_Service_Customsearch_PromotionBodyLines - */ - public function getBodyLines() - { - return $this->bodyLines; - } - public function setDisplayLink($displayLink) - { - $this->displayLink = $displayLink; - } - public function getDisplayLink() - { - return $this->displayLink; - } - public function setHtmlTitle($htmlTitle) - { - $this->htmlTitle = $htmlTitle; - } - public function getHtmlTitle() - { - return $this->htmlTitle; - } - /** - * @param Google_Service_Customsearch_PromotionImage - */ - public function setImage(Google_Service_Customsearch_PromotionImage $image) - { - $this->image = $image; - } - /** - * @return Google_Service_Customsearch_PromotionImage - */ - public function getImage() - { - return $this->image; - } - public function setLink($link) - { - $this->link = $link; - } - public function getLink() - { - return $this->link; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Customsearch/PromotionBodyLines.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Customsearch/PromotionBodyLines.php deleted file mode 100644 index 712a77c9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Customsearch/PromotionBodyLines.php +++ /dev/null @@ -1,57 +0,0 @@ -htmlTitle = $htmlTitle; - } - public function getHtmlTitle() - { - return $this->htmlTitle; - } - public function setLink($link) - { - $this->link = $link; - } - public function getLink() - { - return $this->link; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Customsearch/PromotionImage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Customsearch/PromotionImage.php deleted file mode 100644 index 3a088f4d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Customsearch/PromotionImage.php +++ /dev/null @@ -1,48 +0,0 @@ -height = $height; - } - public function getHeight() - { - return $this->height; - } - public function setSource($source) - { - $this->source = $source; - } - public function getSource() - { - return $this->source; - } - public function setWidth($width) - { - $this->width = $width; - } - public function getWidth() - { - return $this->width; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Customsearch/Query.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Customsearch/Query.php deleted file mode 100644 index 889129ea..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Customsearch/Query.php +++ /dev/null @@ -1,345 +0,0 @@ -count = $count; - } - public function getCount() - { - return $this->count; - } - public function setCr($cr) - { - $this->cr = $cr; - } - public function getCr() - { - return $this->cr; - } - public function setCx($cx) - { - $this->cx = $cx; - } - public function getCx() - { - return $this->cx; - } - public function setDateRestrict($dateRestrict) - { - $this->dateRestrict = $dateRestrict; - } - public function getDateRestrict() - { - return $this->dateRestrict; - } - public function setDisableCnTwTranslation($disableCnTwTranslation) - { - $this->disableCnTwTranslation = $disableCnTwTranslation; - } - public function getDisableCnTwTranslation() - { - return $this->disableCnTwTranslation; - } - public function setExactTerms($exactTerms) - { - $this->exactTerms = $exactTerms; - } - public function getExactTerms() - { - return $this->exactTerms; - } - public function setExcludeTerms($excludeTerms) - { - $this->excludeTerms = $excludeTerms; - } - public function getExcludeTerms() - { - return $this->excludeTerms; - } - public function setFileType($fileType) - { - $this->fileType = $fileType; - } - public function getFileType() - { - return $this->fileType; - } - public function setFilter($filter) - { - $this->filter = $filter; - } - public function getFilter() - { - return $this->filter; - } - public function setGl($gl) - { - $this->gl = $gl; - } - public function getGl() - { - return $this->gl; - } - public function setGoogleHost($googleHost) - { - $this->googleHost = $googleHost; - } - public function getGoogleHost() - { - return $this->googleHost; - } - public function setHighRange($highRange) - { - $this->highRange = $highRange; - } - public function getHighRange() - { - return $this->highRange; - } - public function setHl($hl) - { - $this->hl = $hl; - } - public function getHl() - { - return $this->hl; - } - public function setHq($hq) - { - $this->hq = $hq; - } - public function getHq() - { - return $this->hq; - } - public function setImgColorType($imgColorType) - { - $this->imgColorType = $imgColorType; - } - public function getImgColorType() - { - return $this->imgColorType; - } - public function setImgDominantColor($imgDominantColor) - { - $this->imgDominantColor = $imgDominantColor; - } - public function getImgDominantColor() - { - return $this->imgDominantColor; - } - public function setImgSize($imgSize) - { - $this->imgSize = $imgSize; - } - public function getImgSize() - { - return $this->imgSize; - } - public function setImgType($imgType) - { - $this->imgType = $imgType; - } - public function getImgType() - { - return $this->imgType; - } - public function setInputEncoding($inputEncoding) - { - $this->inputEncoding = $inputEncoding; - } - public function getInputEncoding() - { - return $this->inputEncoding; - } - public function setLanguage($language) - { - $this->language = $language; - } - public function getLanguage() - { - return $this->language; - } - public function setLinkSite($linkSite) - { - $this->linkSite = $linkSite; - } - public function getLinkSite() - { - return $this->linkSite; - } - public function setLowRange($lowRange) - { - $this->lowRange = $lowRange; - } - public function getLowRange() - { - return $this->lowRange; - } - public function setOrTerms($orTerms) - { - $this->orTerms = $orTerms; - } - public function getOrTerms() - { - return $this->orTerms; - } - public function setOutputEncoding($outputEncoding) - { - $this->outputEncoding = $outputEncoding; - } - public function getOutputEncoding() - { - return $this->outputEncoding; - } - public function setRelatedSite($relatedSite) - { - $this->relatedSite = $relatedSite; - } - public function getRelatedSite() - { - return $this->relatedSite; - } - public function setRights($rights) - { - $this->rights = $rights; - } - public function getRights() - { - return $this->rights; - } - public function setSafe($safe) - { - $this->safe = $safe; - } - public function getSafe() - { - return $this->safe; - } - public function setSearchTerms($searchTerms) - { - $this->searchTerms = $searchTerms; - } - public function getSearchTerms() - { - return $this->searchTerms; - } - public function setSearchType($searchType) - { - $this->searchType = $searchType; - } - public function getSearchType() - { - return $this->searchType; - } - public function setSiteSearch($siteSearch) - { - $this->siteSearch = $siteSearch; - } - public function getSiteSearch() - { - return $this->siteSearch; - } - public function setSiteSearchFilter($siteSearchFilter) - { - $this->siteSearchFilter = $siteSearchFilter; - } - public function getSiteSearchFilter() - { - return $this->siteSearchFilter; - } - public function setSort($sort) - { - $this->sort = $sort; - } - public function getSort() - { - return $this->sort; - } - public function setStartIndex($startIndex) - { - $this->startIndex = $startIndex; - } - public function getStartIndex() - { - return $this->startIndex; - } - public function setStartPage($startPage) - { - $this->startPage = $startPage; - } - public function getStartPage() - { - return $this->startPage; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setTotalResults($totalResults) - { - $this->totalResults = $totalResults; - } - public function getTotalResults() - { - return $this->totalResults; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Customsearch/Resource/Cse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Customsearch/Resource/Cse.php deleted file mode 100644 index 40b84802..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Customsearch/Resource/Cse.php +++ /dev/null @@ -1,94 +0,0 @@ - - * $customsearchService = new Google_Service_Customsearch(...); - * $cse = $customsearchService->cse; - * - */ -class Google_Service_Customsearch_Resource_Cse extends Google_Service_Resource -{ - /** - * Returns metadata about the search performed, metadata about the custom search - * engine used for the search, and the search results. (cse.listCse) - * - * @param string $q Query - * @param array $optParams Optional parameters. - * - * @opt_param string c2coff Turns off the translation between zh-CN and zh-TW. - * @opt_param string cr Country restrict(s). - * @opt_param string cx The custom search engine ID to scope this search query - * @opt_param string dateRestrict Specifies all search results are from a time - * period - * @opt_param string exactTerms Identifies a phrase that all documents in the - * search results must contain - * @opt_param string excludeTerms Identifies a word or phrase that should not - * appear in any documents in the search results - * @opt_param string fileType Returns images of a specified type. Some of the - * allowed values are: bmp, gif, png, jpg, svg, pdf, ... - * @opt_param string filter Controls turning on or off the duplicate content - * filter. - * @opt_param string gl Geolocation of end user. - * @opt_param string googlehost The local Google domain to use to perform the - * search. - * @opt_param string highRange Creates a range in form as_nlo value..as_nhi - * value and attempts to append it to query - * @opt_param string hl Sets the user interface language. - * @opt_param string hq Appends the extra query terms to the query. - * @opt_param string imgColorType Returns black and white, grayscale, or color - * images: mono, gray, and color. - * @opt_param string imgDominantColor Returns images of a specific dominant - * color: red, orange, yellow, green, teal, blue, purple, pink, white, gray, - * black and brown. - * @opt_param string imgSize Returns images of a specified size, where size can - * be one of: icon, small, medium, large, xlarge, xxlarge, and huge. - * @opt_param string imgType Returns images of a type, which can be one of: - * clipart, face, lineart, news, and photo. - * @opt_param string linkSite Specifies that all search results should contain a - * link to a particular URL - * @opt_param string lowRange Creates a range in form as_nlo value..as_nhi value - * and attempts to append it to query - * @opt_param string lr The language restriction for the search results - * @opt_param string num Number of search results to return - * @opt_param string orTerms Provides additional search terms to check for in a - * document, where each document in the search results must contain at least one - * of the additional search terms - * @opt_param string relatedSite Specifies that all search results should be - * pages that are related to the specified URL - * @opt_param string rights Filters based on licensing. Supported values - * include: cc_publicdomain, cc_attribute, cc_sharealike, cc_noncommercial, - * cc_nonderived and combinations of these. - * @opt_param string safe Search safety level - * @opt_param string searchType Specifies the search type: image. - * @opt_param string siteSearch Specifies all search results should be pages - * from a given site - * @opt_param string siteSearchFilter Controls whether to include or exclude - * results from the site named in the as_sitesearch parameter - * @opt_param string sort The sort expression to apply to the results - * @opt_param string start The index of the first result to return - * @return Google_Service_Customsearch_Search - */ - public function listCse($q, $optParams = array()) - { - $params = array('q' => $q); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Customsearch_Search"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Customsearch/Resource/CseSiterestrict.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Customsearch/Resource/CseSiterestrict.php deleted file mode 100644 index e24cf904..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Customsearch/Resource/CseSiterestrict.php +++ /dev/null @@ -1,95 +0,0 @@ - - * $customsearchService = new Google_Service_Customsearch(...); - * $siterestrict = $customsearchService->siterestrict; - * - */ -class Google_Service_Customsearch_Resource_CseSiterestrict extends Google_Service_Resource -{ - /** - * Returns metadata about the search performed, metadata about the custom search - * engine used for the search, and the search results. Uses a small set of url - * patterns. (siterestrict.listCseSiterestrict) - * - * @param string $q Query - * @param array $optParams Optional parameters. - * - * @opt_param string c2coff Turns off the translation between zh-CN and zh-TW. - * @opt_param string cr Country restrict(s). - * @opt_param string cx The custom search engine ID to scope this search query - * @opt_param string dateRestrict Specifies all search results are from a time - * period - * @opt_param string exactTerms Identifies a phrase that all documents in the - * search results must contain - * @opt_param string excludeTerms Identifies a word or phrase that should not - * appear in any documents in the search results - * @opt_param string fileType Returns images of a specified type. Some of the - * allowed values are: bmp, gif, png, jpg, svg, pdf, ... - * @opt_param string filter Controls turning on or off the duplicate content - * filter. - * @opt_param string gl Geolocation of end user. - * @opt_param string googlehost The local Google domain to use to perform the - * search. - * @opt_param string highRange Creates a range in form as_nlo value..as_nhi - * value and attempts to append it to query - * @opt_param string hl Sets the user interface language. - * @opt_param string hq Appends the extra query terms to the query. - * @opt_param string imgColorType Returns black and white, grayscale, or color - * images: mono, gray, and color. - * @opt_param string imgDominantColor Returns images of a specific dominant - * color: red, orange, yellow, green, teal, blue, purple, pink, white, gray, - * black and brown. - * @opt_param string imgSize Returns images of a specified size, where size can - * be one of: icon, small, medium, large, xlarge, xxlarge, and huge. - * @opt_param string imgType Returns images of a type, which can be one of: - * clipart, face, lineart, news, and photo. - * @opt_param string linkSite Specifies that all search results should contain a - * link to a particular URL - * @opt_param string lowRange Creates a range in form as_nlo value..as_nhi value - * and attempts to append it to query - * @opt_param string lr The language restriction for the search results - * @opt_param string num Number of search results to return - * @opt_param string orTerms Provides additional search terms to check for in a - * document, where each document in the search results must contain at least one - * of the additional search terms - * @opt_param string relatedSite Specifies that all search results should be - * pages that are related to the specified URL - * @opt_param string rights Filters based on licensing. Supported values - * include: cc_publicdomain, cc_attribute, cc_sharealike, cc_noncommercial, - * cc_nonderived and combinations of these. - * @opt_param string safe Search safety level - * @opt_param string searchType Specifies the search type: image. - * @opt_param string siteSearch Specifies all search results should be pages - * from a given site - * @opt_param string siteSearchFilter Controls whether to include or exclude - * results from the site named in the as_sitesearch parameter - * @opt_param string sort The sort expression to apply to the results - * @opt_param string start The index of the first result to return - * @return Google_Service_Customsearch_Search - */ - public function listCseSiterestrict($q, $optParams = array()) - { - $params = array('q' => $q); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Customsearch_Search"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Customsearch/Result.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Customsearch/Result.php deleted file mode 100644 index 14cbe93d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Customsearch/Result.php +++ /dev/null @@ -1,171 +0,0 @@ -cacheId = $cacheId; - } - public function getCacheId() - { - return $this->cacheId; - } - public function setDisplayLink($displayLink) - { - $this->displayLink = $displayLink; - } - public function getDisplayLink() - { - return $this->displayLink; - } - public function setFileFormat($fileFormat) - { - $this->fileFormat = $fileFormat; - } - public function getFileFormat() - { - return $this->fileFormat; - } - public function setFormattedUrl($formattedUrl) - { - $this->formattedUrl = $formattedUrl; - } - public function getFormattedUrl() - { - return $this->formattedUrl; - } - public function setHtmlFormattedUrl($htmlFormattedUrl) - { - $this->htmlFormattedUrl = $htmlFormattedUrl; - } - public function getHtmlFormattedUrl() - { - return $this->htmlFormattedUrl; - } - public function setHtmlSnippet($htmlSnippet) - { - $this->htmlSnippet = $htmlSnippet; - } - public function getHtmlSnippet() - { - return $this->htmlSnippet; - } - public function setHtmlTitle($htmlTitle) - { - $this->htmlTitle = $htmlTitle; - } - public function getHtmlTitle() - { - return $this->htmlTitle; - } - /** - * @param Google_Service_Customsearch_ResultImage - */ - public function setImage(Google_Service_Customsearch_ResultImage $image) - { - $this->image = $image; - } - /** - * @return Google_Service_Customsearch_ResultImage - */ - public function getImage() - { - return $this->image; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Customsearch_ResultLabels - */ - public function setLabels($labels) - { - $this->labels = $labels; - } - /** - * @return Google_Service_Customsearch_ResultLabels - */ - public function getLabels() - { - return $this->labels; - } - public function setLink($link) - { - $this->link = $link; - } - public function getLink() - { - return $this->link; - } - public function setMime($mime) - { - $this->mime = $mime; - } - public function getMime() - { - return $this->mime; - } - public function setPagemap($pagemap) - { - $this->pagemap = $pagemap; - } - public function getPagemap() - { - return $this->pagemap; - } - public function setSnippet($snippet) - { - $this->snippet = $snippet; - } - public function getSnippet() - { - return $this->snippet; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Customsearch/ResultImage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Customsearch/ResultImage.php deleted file mode 100644 index ec4c8f4b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Customsearch/ResultImage.php +++ /dev/null @@ -1,84 +0,0 @@ -byteSize = $byteSize; - } - public function getByteSize() - { - return $this->byteSize; - } - public function setContextLink($contextLink) - { - $this->contextLink = $contextLink; - } - public function getContextLink() - { - return $this->contextLink; - } - public function setHeight($height) - { - $this->height = $height; - } - public function getHeight() - { - return $this->height; - } - public function setThumbnailHeight($thumbnailHeight) - { - $this->thumbnailHeight = $thumbnailHeight; - } - public function getThumbnailHeight() - { - return $this->thumbnailHeight; - } - public function setThumbnailLink($thumbnailLink) - { - $this->thumbnailLink = $thumbnailLink; - } - public function getThumbnailLink() - { - return $this->thumbnailLink; - } - public function setThumbnailWidth($thumbnailWidth) - { - $this->thumbnailWidth = $thumbnailWidth; - } - public function getThumbnailWidth() - { - return $this->thumbnailWidth; - } - public function setWidth($width) - { - $this->width = $width; - } - public function getWidth() - { - return $this->width; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Customsearch/ResultLabels.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Customsearch/ResultLabels.php deleted file mode 100644 index ddd68645..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Customsearch/ResultLabels.php +++ /dev/null @@ -1,51 +0,0 @@ - "label_with_op", - ); - public $displayName; - public $labelWithOp; - public $name; - - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setLabelWithOp($labelWithOp) - { - $this->labelWithOp = $labelWithOp; - } - public function getLabelWithOp() - { - return $this->labelWithOp; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Customsearch/Search.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Customsearch/Search.php deleted file mode 100644 index 6ed22a93..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Customsearch/Search.php +++ /dev/null @@ -1,143 +0,0 @@ -context = $context; - } - /** - * @return Google_Service_Customsearch_Context - */ - public function getContext() - { - return $this->context; - } - /** - * @param Google_Service_Customsearch_Result - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Customsearch_Result - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Customsearch_Promotion - */ - public function setPromotions($promotions) - { - $this->promotions = $promotions; - } - /** - * @return Google_Service_Customsearch_Promotion - */ - public function getPromotions() - { - return $this->promotions; - } - /** - * @param Google_Service_Customsearch_Query - */ - public function setQueries($queries) - { - $this->queries = $queries; - } - /** - * @return Google_Service_Customsearch_Query - */ - public function getQueries() - { - return $this->queries; - } - /** - * @param Google_Service_Customsearch_SearchSearchInformation - */ - public function setSearchInformation(Google_Service_Customsearch_SearchSearchInformation $searchInformation) - { - $this->searchInformation = $searchInformation; - } - /** - * @return Google_Service_Customsearch_SearchSearchInformation - */ - public function getSearchInformation() - { - return $this->searchInformation; - } - /** - * @param Google_Service_Customsearch_SearchSpelling - */ - public function setSpelling(Google_Service_Customsearch_SearchSpelling $spelling) - { - $this->spelling = $spelling; - } - /** - * @return Google_Service_Customsearch_SearchSpelling - */ - public function getSpelling() - { - return $this->spelling; - } - /** - * @param Google_Service_Customsearch_SearchUrl - */ - public function setUrl(Google_Service_Customsearch_SearchUrl $url) - { - $this->url = $url; - } - /** - * @return Google_Service_Customsearch_SearchUrl - */ - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Customsearch/SearchSearchInformation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Customsearch/SearchSearchInformation.php deleted file mode 100644 index 3ec18252..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Customsearch/SearchSearchInformation.php +++ /dev/null @@ -1,57 +0,0 @@ -formattedSearchTime = $formattedSearchTime; - } - public function getFormattedSearchTime() - { - return $this->formattedSearchTime; - } - public function setFormattedTotalResults($formattedTotalResults) - { - $this->formattedTotalResults = $formattedTotalResults; - } - public function getFormattedTotalResults() - { - return $this->formattedTotalResults; - } - public function setSearchTime($searchTime) - { - $this->searchTime = $searchTime; - } - public function getSearchTime() - { - return $this->searchTime; - } - public function setTotalResults($totalResults) - { - $this->totalResults = $totalResults; - } - public function getTotalResults() - { - return $this->totalResults; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Customsearch/SearchSpelling.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Customsearch/SearchSpelling.php deleted file mode 100644 index f8e778a6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Customsearch/SearchSpelling.php +++ /dev/null @@ -1,39 +0,0 @@ -correctedQuery = $correctedQuery; - } - public function getCorrectedQuery() - { - return $this->correctedQuery; - } - public function setHtmlCorrectedQuery($htmlCorrectedQuery) - { - $this->htmlCorrectedQuery = $htmlCorrectedQuery; - } - public function getHtmlCorrectedQuery() - { - return $this->htmlCorrectedQuery; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Customsearch/SearchUrl.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Customsearch/SearchUrl.php deleted file mode 100644 index 302fb42d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Customsearch/SearchUrl.php +++ /dev/null @@ -1,39 +0,0 @@ -template = $template; - } - public function getTemplate() - { - return $this->template; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP.php deleted file mode 100644 index 1a6a6266..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP.php +++ /dev/null @@ -1,1581 +0,0 @@ - - * Provides methods for detection, risk analysis, and de-identification of - * privacy-sensitive fragments in text, images, and Google Cloud Platform - * storage repositories.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_DLP extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - - public $infoTypes; - public $locations_infoTypes; - public $organizations_deidentifyTemplates; - public $organizations_inspectTemplates; - public $organizations_locations_deidentifyTemplates; - public $organizations_locations_inspectTemplates; - public $organizations_locations_storedInfoTypes; - public $organizations_storedInfoTypes; - public $projects_content; - public $projects_deidentifyTemplates; - public $projects_dlpJobs; - public $projects_image; - public $projects_inspectTemplates; - public $projects_jobTriggers; - public $projects_locations_content; - public $projects_locations_deidentifyTemplates; - public $projects_locations_dlpJobs; - public $projects_locations_image; - public $projects_locations_inspectTemplates; - public $projects_locations_jobTriggers; - public $projects_locations_storedInfoTypes; - public $projects_storedInfoTypes; - - /** - * Constructs the internal representation of the DLP service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://dlp.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v2'; - $this->serviceName = 'dlp'; - - $this->infoTypes = new Google_Service_DLP_Resource_InfoTypes( - $this, - $this->serviceName, - 'infoTypes', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v2/infoTypes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'locationId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'languageCode' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->locations_infoTypes = new Google_Service_DLP_Resource_LocationsInfoTypes( - $this, - $this->serviceName, - 'infoTypes', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v2/locations/{locationId}/infoTypes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'locationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'languageCode' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->organizations_deidentifyTemplates = new Google_Service_DLP_Resource_OrganizationsDeidentifyTemplates( - $this, - $this->serviceName, - 'deidentifyTemplates', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v2/{+parent}/deidentifyTemplates', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2/{+parent}/deidentifyTemplates', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'locationId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->organizations_inspectTemplates = new Google_Service_DLP_Resource_OrganizationsInspectTemplates( - $this, - $this->serviceName, - 'inspectTemplates', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v2/{+parent}/inspectTemplates', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2/{+parent}/inspectTemplates', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'locationId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->organizations_locations_deidentifyTemplates = new Google_Service_DLP_Resource_OrganizationsLocationsDeidentifyTemplates( - $this, - $this->serviceName, - 'deidentifyTemplates', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v2/{+parent}/locations/{locationId}/deidentifyTemplates', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'locationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2/{+parent}/locations/{locationId}/deidentifyTemplates', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'locationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->organizations_locations_inspectTemplates = new Google_Service_DLP_Resource_OrganizationsLocationsInspectTemplates( - $this, - $this->serviceName, - 'inspectTemplates', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v2/{+parent}/locations/{locationId}/inspectTemplates', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'locationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2/{+parent}/locations/{locationId}/inspectTemplates', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'locationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->organizations_locations_storedInfoTypes = new Google_Service_DLP_Resource_OrganizationsLocationsStoredInfoTypes( - $this, - $this->serviceName, - 'storedInfoTypes', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v2/{+parent}/locations/{locationId}/storedInfoTypes', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'locationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2/{+parent}/locations/{locationId}/storedInfoTypes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'locationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->organizations_storedInfoTypes = new Google_Service_DLP_Resource_OrganizationsStoredInfoTypes( - $this, - $this->serviceName, - 'storedInfoTypes', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v2/{+parent}/storedInfoTypes', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2/{+parent}/storedInfoTypes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'locationId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_content = new Google_Service_DLP_Resource_ProjectsContent( - $this, - $this->serviceName, - 'content', - array( - 'methods' => array( - 'deidentify' => array( - 'path' => 'v2/{+parent}/content:deidentify', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'inspect' => array( - 'path' => 'v2/{+parent}/content:inspect', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'reidentify' => array( - 'path' => 'v2/{+parent}/content:reidentify', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_deidentifyTemplates = new Google_Service_DLP_Resource_ProjectsDeidentifyTemplates( - $this, - $this->serviceName, - 'deidentifyTemplates', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v2/{+parent}/deidentifyTemplates', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2/{+parent}/deidentifyTemplates', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'locationId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_dlpJobs = new Google_Service_DLP_Resource_ProjectsDlpJobs( - $this, - $this->serviceName, - 'dlpJobs', - array( - 'methods' => array( - 'cancel' => array( - 'path' => 'v2/{+name}:cancel', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'create' => array( - 'path' => 'v2/{+parent}/dlpJobs', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2/{+parent}/dlpJobs', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'locationId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'type' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_image = new Google_Service_DLP_Resource_ProjectsImage( - $this, - $this->serviceName, - 'image', - array( - 'methods' => array( - 'redact' => array( - 'path' => 'v2/{+parent}/image:redact', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_inspectTemplates = new Google_Service_DLP_Resource_ProjectsInspectTemplates( - $this, - $this->serviceName, - 'inspectTemplates', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v2/{+parent}/inspectTemplates', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2/{+parent}/inspectTemplates', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'locationId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_jobTriggers = new Google_Service_DLP_Resource_ProjectsJobTriggers( - $this, - $this->serviceName, - 'jobTriggers', - array( - 'methods' => array( - 'activate' => array( - 'path' => 'v2/{+name}:activate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'create' => array( - 'path' => 'v2/{+parent}/jobTriggers', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2/{+parent}/jobTriggers', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'locationId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_locations_content = new Google_Service_DLP_Resource_ProjectsLocationsContent( - $this, - $this->serviceName, - 'content', - array( - 'methods' => array( - 'deidentify' => array( - 'path' => 'v2/{+parent}/locations/{locationId}/content:deidentify', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'locationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'inspect' => array( - 'path' => 'v2/{+parent}/locations/{locationId}/content:inspect', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'locationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'reidentify' => array( - 'path' => 'v2/{+parent}/locations/{locationId}/content:reidentify', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'locationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_locations_deidentifyTemplates = new Google_Service_DLP_Resource_ProjectsLocationsDeidentifyTemplates( - $this, - $this->serviceName, - 'deidentifyTemplates', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v2/{+parent}/locations/{locationId}/deidentifyTemplates', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'locationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2/{+parent}/locations/{locationId}/deidentifyTemplates', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'locationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_locations_dlpJobs = new Google_Service_DLP_Resource_ProjectsLocationsDlpJobs( - $this, - $this->serviceName, - 'dlpJobs', - array( - 'methods' => array( - 'cancel' => array( - 'path' => 'v2/{+name}:cancel', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'create' => array( - 'path' => 'v2/{+parent}/locations/{locationId}/dlpJobs', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'locationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2/{+parent}/locations/{locationId}/dlpJobs', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'locationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'type' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_locations_image = new Google_Service_DLP_Resource_ProjectsLocationsImage( - $this, - $this->serviceName, - 'image', - array( - 'methods' => array( - 'redact' => array( - 'path' => 'v2/{+parent}/locations/{locationId}/image:redact', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'locationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_locations_inspectTemplates = new Google_Service_DLP_Resource_ProjectsLocationsInspectTemplates( - $this, - $this->serviceName, - 'inspectTemplates', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v2/{+parent}/locations/{locationId}/inspectTemplates', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'locationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2/{+parent}/locations/{locationId}/inspectTemplates', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'locationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_locations_jobTriggers = new Google_Service_DLP_Resource_ProjectsLocationsJobTriggers( - $this, - $this->serviceName, - 'jobTriggers', - array( - 'methods' => array( - 'activate' => array( - 'path' => 'v2/{+name}:activate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'create' => array( - 'path' => 'v2/{+parent}/locations/{locationId}/jobTriggers', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'locationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2/{+parent}/locations/{locationId}/jobTriggers', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'locationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_locations_storedInfoTypes = new Google_Service_DLP_Resource_ProjectsLocationsStoredInfoTypes( - $this, - $this->serviceName, - 'storedInfoTypes', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v2/{+parent}/locations/{locationId}/storedInfoTypes', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'locationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2/{+parent}/locations/{locationId}/storedInfoTypes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'locationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_storedInfoTypes = new Google_Service_DLP_Resource_ProjectsStoredInfoTypes( - $this, - $this->serviceName, - 'storedInfoTypes', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v2/{+parent}/storedInfoTypes', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2/{+parent}/storedInfoTypes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'locationId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Action.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Action.php deleted file mode 100644 index 65f32cb7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Action.php +++ /dev/null @@ -1,117 +0,0 @@ -jobNotificationEmails = $jobNotificationEmails; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2JobNotificationEmails - */ - public function getJobNotificationEmails() - { - return $this->jobNotificationEmails; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2PublishToPubSub - */ - public function setPubSub(Google_Service_DLP_GooglePrivacyDlpV2PublishToPubSub $pubSub) - { - $this->pubSub = $pubSub; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2PublishToPubSub - */ - public function getPubSub() - { - return $this->pubSub; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2PublishFindingsToCloudDataCatalog - */ - public function setPublishFindingsToCloudDataCatalog(Google_Service_DLP_GooglePrivacyDlpV2PublishFindingsToCloudDataCatalog $publishFindingsToCloudDataCatalog) - { - $this->publishFindingsToCloudDataCatalog = $publishFindingsToCloudDataCatalog; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2PublishFindingsToCloudDataCatalog - */ - public function getPublishFindingsToCloudDataCatalog() - { - return $this->publishFindingsToCloudDataCatalog; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2PublishSummaryToCscc - */ - public function setPublishSummaryToCscc(Google_Service_DLP_GooglePrivacyDlpV2PublishSummaryToCscc $publishSummaryToCscc) - { - $this->publishSummaryToCscc = $publishSummaryToCscc; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2PublishSummaryToCscc - */ - public function getPublishSummaryToCscc() - { - return $this->publishSummaryToCscc; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2PublishToStackdriver - */ - public function setPublishToStackdriver(Google_Service_DLP_GooglePrivacyDlpV2PublishToStackdriver $publishToStackdriver) - { - $this->publishToStackdriver = $publishToStackdriver; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2PublishToStackdriver - */ - public function getPublishToStackdriver() - { - return $this->publishToStackdriver; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2SaveFindings - */ - public function setSaveFindings(Google_Service_DLP_GooglePrivacyDlpV2SaveFindings $saveFindings) - { - $this->saveFindings = $saveFindings; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2SaveFindings - */ - public function getSaveFindings() - { - return $this->saveFindings; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ActivateJobTriggerRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ActivateJobTriggerRequest.php deleted file mode 100644 index a840e000..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ActivateJobTriggerRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -categoricalStatsResult = $categoricalStatsResult; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2CategoricalStatsResult - */ - public function getCategoricalStatsResult() - { - return $this->categoricalStatsResult; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2DeltaPresenceEstimationResult - */ - public function setDeltaPresenceEstimationResult(Google_Service_DLP_GooglePrivacyDlpV2DeltaPresenceEstimationResult $deltaPresenceEstimationResult) - { - $this->deltaPresenceEstimationResult = $deltaPresenceEstimationResult; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2DeltaPresenceEstimationResult - */ - public function getDeltaPresenceEstimationResult() - { - return $this->deltaPresenceEstimationResult; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2KAnonymityResult - */ - public function setKAnonymityResult(Google_Service_DLP_GooglePrivacyDlpV2KAnonymityResult $kAnonymityResult) - { - $this->kAnonymityResult = $kAnonymityResult; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2KAnonymityResult - */ - public function getKAnonymityResult() - { - return $this->kAnonymityResult; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2KMapEstimationResult - */ - public function setKMapEstimationResult(Google_Service_DLP_GooglePrivacyDlpV2KMapEstimationResult $kMapEstimationResult) - { - $this->kMapEstimationResult = $kMapEstimationResult; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2KMapEstimationResult - */ - public function getKMapEstimationResult() - { - return $this->kMapEstimationResult; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2LDiversityResult - */ - public function setLDiversityResult(Google_Service_DLP_GooglePrivacyDlpV2LDiversityResult $lDiversityResult) - { - $this->lDiversityResult = $lDiversityResult; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2LDiversityResult - */ - public function getLDiversityResult() - { - return $this->lDiversityResult; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2NumericalStatsResult - */ - public function setNumericalStatsResult(Google_Service_DLP_GooglePrivacyDlpV2NumericalStatsResult $numericalStatsResult) - { - $this->numericalStatsResult = $numericalStatsResult; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2NumericalStatsResult - */ - public function getNumericalStatsResult() - { - return $this->numericalStatsResult; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2PrivacyMetric - */ - public function setRequestedPrivacyMetric(Google_Service_DLP_GooglePrivacyDlpV2PrivacyMetric $requestedPrivacyMetric) - { - $this->requestedPrivacyMetric = $requestedPrivacyMetric; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2PrivacyMetric - */ - public function getRequestedPrivacyMetric() - { - return $this->requestedPrivacyMetric; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2BigQueryTable - */ - public function setRequestedSourceTable(Google_Service_DLP_GooglePrivacyDlpV2BigQueryTable $requestedSourceTable) - { - $this->requestedSourceTable = $requestedSourceTable; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2BigQueryTable - */ - public function getRequestedSourceTable() - { - return $this->requestedSourceTable; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2AuxiliaryTable.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2AuxiliaryTable.php deleted file mode 100644 index 8ad228dd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2AuxiliaryTable.php +++ /dev/null @@ -1,70 +0,0 @@ -quasiIds = $quasiIds; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2QuasiIdField - */ - public function getQuasiIds() - { - return $this->quasiIds; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2FieldId - */ - public function setRelativeFrequency(Google_Service_DLP_GooglePrivacyDlpV2FieldId $relativeFrequency) - { - $this->relativeFrequency = $relativeFrequency; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2FieldId - */ - public function getRelativeFrequency() - { - return $this->relativeFrequency; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2BigQueryTable - */ - public function setTable(Google_Service_DLP_GooglePrivacyDlpV2BigQueryTable $table) - { - $this->table = $table; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2BigQueryTable - */ - public function getTable() - { - return $this->table; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2BigQueryField.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2BigQueryField.php deleted file mode 100644 index 6819d4cf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2BigQueryField.php +++ /dev/null @@ -1,53 +0,0 @@ -field = $field; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2FieldId - */ - public function getField() - { - return $this->field; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2BigQueryTable - */ - public function setTable(Google_Service_DLP_GooglePrivacyDlpV2BigQueryTable $table) - { - $this->table = $table; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2BigQueryTable - */ - public function getTable() - { - return $this->table; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2BigQueryKey.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2BigQueryKey.php deleted file mode 100644 index edd3ea0c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2BigQueryKey.php +++ /dev/null @@ -1,46 +0,0 @@ -rowNumber = $rowNumber; - } - public function getRowNumber() - { - return $this->rowNumber; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2BigQueryTable - */ - public function setTableReference(Google_Service_DLP_GooglePrivacyDlpV2BigQueryTable $tableReference) - { - $this->tableReference = $tableReference; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2BigQueryTable - */ - public function getTableReference() - { - return $this->tableReference; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2BigQueryOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2BigQueryOptions.php deleted file mode 100644 index d67ec17b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2BigQueryOptions.php +++ /dev/null @@ -1,97 +0,0 @@ -excludedFields = $excludedFields; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2FieldId - */ - public function getExcludedFields() - { - return $this->excludedFields; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2FieldId - */ - public function setIdentifyingFields($identifyingFields) - { - $this->identifyingFields = $identifyingFields; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2FieldId - */ - public function getIdentifyingFields() - { - return $this->identifyingFields; - } - public function setRowsLimit($rowsLimit) - { - $this->rowsLimit = $rowsLimit; - } - public function getRowsLimit() - { - return $this->rowsLimit; - } - public function setRowsLimitPercent($rowsLimitPercent) - { - $this->rowsLimitPercent = $rowsLimitPercent; - } - public function getRowsLimitPercent() - { - return $this->rowsLimitPercent; - } - public function setSampleMethod($sampleMethod) - { - $this->sampleMethod = $sampleMethod; - } - public function getSampleMethod() - { - return $this->sampleMethod; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2BigQueryTable - */ - public function setTableReference(Google_Service_DLP_GooglePrivacyDlpV2BigQueryTable $tableReference) - { - $this->tableReference = $tableReference; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2BigQueryTable - */ - public function getTableReference() - { - return $this->tableReference; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2BigQueryTable.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2BigQueryTable.php deleted file mode 100644 index dec983ca..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2BigQueryTable.php +++ /dev/null @@ -1,48 +0,0 @@ -datasetId = $datasetId; - } - public function getDatasetId() - { - return $this->datasetId; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } - public function setTableId($tableId) - { - $this->tableId = $tableId; - } - public function getTableId() - { - return $this->tableId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2BoundingBox.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2BoundingBox.php deleted file mode 100644 index ae443c06..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2BoundingBox.php +++ /dev/null @@ -1,57 +0,0 @@ -height = $height; - } - public function getHeight() - { - return $this->height; - } - public function setLeft($left) - { - $this->left = $left; - } - public function getLeft() - { - return $this->left; - } - public function setTop($top) - { - $this->top = $top; - } - public function getTop() - { - return $this->top; - } - public function setWidth($width) - { - $this->width = $width; - } - public function getWidth() - { - return $this->width; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Bucket.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Bucket.php deleted file mode 100644 index 7bfe3ac0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Bucket.php +++ /dev/null @@ -1,69 +0,0 @@ -max = $max; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2Value - */ - public function getMax() - { - return $this->max; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2Value - */ - public function setMin(Google_Service_DLP_GooglePrivacyDlpV2Value $min) - { - $this->min = $min; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2Value - */ - public function getMin() - { - return $this->min; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2Value - */ - public function setReplacementValue(Google_Service_DLP_GooglePrivacyDlpV2Value $replacementValue) - { - $this->replacementValue = $replacementValue; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2Value - */ - public function getReplacementValue() - { - return $this->replacementValue; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2BucketingConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2BucketingConfig.php deleted file mode 100644 index 265e49ac..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2BucketingConfig.php +++ /dev/null @@ -1,38 +0,0 @@ -buckets = $buckets; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2Bucket - */ - public function getBuckets() - { - return $this->buckets; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ByteContentItem.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ByteContentItem.php deleted file mode 100644 index 296aa2c5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ByteContentItem.php +++ /dev/null @@ -1,39 +0,0 @@ -data = $data; - } - public function getData() - { - return $this->data; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CancelDlpJobRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CancelDlpJobRequest.php deleted file mode 100644 index 48658cdf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CancelDlpJobRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -field = $field; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2FieldId - */ - public function getField() - { - return $this->field; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CategoricalStatsHistogramBucket.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CategoricalStatsHistogramBucket.php deleted file mode 100644 index 9411faaa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CategoricalStatsHistogramBucket.php +++ /dev/null @@ -1,74 +0,0 @@ -bucketSize = $bucketSize; - } - public function getBucketSize() - { - return $this->bucketSize; - } - public function setBucketValueCount($bucketValueCount) - { - $this->bucketValueCount = $bucketValueCount; - } - public function getBucketValueCount() - { - return $this->bucketValueCount; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2ValueFrequency - */ - public function setBucketValues($bucketValues) - { - $this->bucketValues = $bucketValues; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2ValueFrequency - */ - public function getBucketValues() - { - return $this->bucketValues; - } - public function setValueFrequencyLowerBound($valueFrequencyLowerBound) - { - $this->valueFrequencyLowerBound = $valueFrequencyLowerBound; - } - public function getValueFrequencyLowerBound() - { - return $this->valueFrequencyLowerBound; - } - public function setValueFrequencyUpperBound($valueFrequencyUpperBound) - { - $this->valueFrequencyUpperBound = $valueFrequencyUpperBound; - } - public function getValueFrequencyUpperBound() - { - return $this->valueFrequencyUpperBound; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CategoricalStatsResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CategoricalStatsResult.php deleted file mode 100644 index 2ee60c20..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CategoricalStatsResult.php +++ /dev/null @@ -1,38 +0,0 @@ -valueFrequencyHistogramBuckets = $valueFrequencyHistogramBuckets; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2CategoricalStatsHistogramBucket - */ - public function getValueFrequencyHistogramBuckets() - { - return $this->valueFrequencyHistogramBuckets; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CharacterMaskConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CharacterMaskConfig.php deleted file mode 100644 index 9cde1739..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CharacterMaskConfig.php +++ /dev/null @@ -1,65 +0,0 @@ -charactersToIgnore = $charactersToIgnore; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2CharsToIgnore - */ - public function getCharactersToIgnore() - { - return $this->charactersToIgnore; - } - public function setMaskingCharacter($maskingCharacter) - { - $this->maskingCharacter = $maskingCharacter; - } - public function getMaskingCharacter() - { - return $this->maskingCharacter; - } - public function setNumberToMask($numberToMask) - { - $this->numberToMask = $numberToMask; - } - public function getNumberToMask() - { - return $this->numberToMask; - } - public function setReverseOrder($reverseOrder) - { - $this->reverseOrder = $reverseOrder; - } - public function getReverseOrder() - { - return $this->reverseOrder; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CharsToIgnore.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CharsToIgnore.php deleted file mode 100644 index ab1dd558..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CharsToIgnore.php +++ /dev/null @@ -1,39 +0,0 @@ -charactersToSkip = $charactersToSkip; - } - public function getCharactersToSkip() - { - return $this->charactersToSkip; - } - public function setCommonCharactersToIgnore($commonCharactersToIgnore) - { - $this->commonCharactersToIgnore = $commonCharactersToIgnore; - } - public function getCommonCharactersToIgnore() - { - return $this->commonCharactersToIgnore; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CloudStorageFileSet.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CloudStorageFileSet.php deleted file mode 100644 index 1deca8e6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CloudStorageFileSet.php +++ /dev/null @@ -1,30 +0,0 @@ -url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CloudStorageOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CloudStorageOptions.php deleted file mode 100644 index c38ddc7b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CloudStorageOptions.php +++ /dev/null @@ -1,83 +0,0 @@ -bytesLimitPerFile = $bytesLimitPerFile; - } - public function getBytesLimitPerFile() - { - return $this->bytesLimitPerFile; - } - public function setBytesLimitPerFilePercent($bytesLimitPerFilePercent) - { - $this->bytesLimitPerFilePercent = $bytesLimitPerFilePercent; - } - public function getBytesLimitPerFilePercent() - { - return $this->bytesLimitPerFilePercent; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2FileSet - */ - public function setFileSet(Google_Service_DLP_GooglePrivacyDlpV2FileSet $fileSet) - { - $this->fileSet = $fileSet; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2FileSet - */ - public function getFileSet() - { - return $this->fileSet; - } - public function setFileTypes($fileTypes) - { - $this->fileTypes = $fileTypes; - } - public function getFileTypes() - { - return $this->fileTypes; - } - public function setFilesLimitPercent($filesLimitPercent) - { - $this->filesLimitPercent = $filesLimitPercent; - } - public function getFilesLimitPercent() - { - return $this->filesLimitPercent; - } - public function setSampleMethod($sampleMethod) - { - $this->sampleMethod = $sampleMethod; - } - public function getSampleMethod() - { - return $this->sampleMethod; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CloudStoragePath.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CloudStoragePath.php deleted file mode 100644 index ea6e35cb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CloudStoragePath.php +++ /dev/null @@ -1,30 +0,0 @@ -path = $path; - } - public function getPath() - { - return $this->path; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CloudStorageRegexFileSet.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CloudStorageRegexFileSet.php deleted file mode 100644 index a072ad76..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CloudStorageRegexFileSet.php +++ /dev/null @@ -1,49 +0,0 @@ -bucketName = $bucketName; - } - public function getBucketName() - { - return $this->bucketName; - } - public function setExcludeRegex($excludeRegex) - { - $this->excludeRegex = $excludeRegex; - } - public function getExcludeRegex() - { - return $this->excludeRegex; - } - public function setIncludeRegex($includeRegex) - { - $this->includeRegex = $includeRegex; - } - public function getIncludeRegex() - { - return $this->includeRegex; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Color.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Color.php deleted file mode 100644 index 34dfd676..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Color.php +++ /dev/null @@ -1,48 +0,0 @@ -blue = $blue; - } - public function getBlue() - { - return $this->blue; - } - public function setGreen($green) - { - $this->green = $green; - } - public function getGreen() - { - return $this->green; - } - public function setRed($red) - { - $this->red = $red; - } - public function getRed() - { - return $this->red; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Condition.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Condition.php deleted file mode 100644 index 7fe16ffa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Condition.php +++ /dev/null @@ -1,62 +0,0 @@ -field = $field; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2FieldId - */ - public function getField() - { - return $this->field; - } - public function setOperator($operator) - { - $this->operator = $operator; - } - public function getOperator() - { - return $this->operator; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2Value - */ - public function setValue(Google_Service_DLP_GooglePrivacyDlpV2Value $value) - { - $this->value = $value; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2Value - */ - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Conditions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Conditions.php deleted file mode 100644 index 2ac77959..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Conditions.php +++ /dev/null @@ -1,38 +0,0 @@ -conditions = $conditions; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2Condition - */ - public function getConditions() - { - return $this->conditions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ContentItem.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ContentItem.php deleted file mode 100644 index d6933822..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ContentItem.php +++ /dev/null @@ -1,62 +0,0 @@ -byteItem = $byteItem; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2ByteContentItem - */ - public function getByteItem() - { - return $this->byteItem; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2Table - */ - public function setTable(Google_Service_DLP_GooglePrivacyDlpV2Table $table) - { - $this->table = $table; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2Table - */ - public function getTable() - { - return $this->table; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ContentLocation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ContentLocation.php deleted file mode 100644 index 8960369e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ContentLocation.php +++ /dev/null @@ -1,96 +0,0 @@ -containerName = $containerName; - } - public function getContainerName() - { - return $this->containerName; - } - public function setContainerTimestamp($containerTimestamp) - { - $this->containerTimestamp = $containerTimestamp; - } - public function getContainerTimestamp() - { - return $this->containerTimestamp; - } - public function setContainerVersion($containerVersion) - { - $this->containerVersion = $containerVersion; - } - public function getContainerVersion() - { - return $this->containerVersion; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2DocumentLocation - */ - public function setDocumentLocation(Google_Service_DLP_GooglePrivacyDlpV2DocumentLocation $documentLocation) - { - $this->documentLocation = $documentLocation; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2DocumentLocation - */ - public function getDocumentLocation() - { - return $this->documentLocation; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2ImageLocation - */ - public function setImageLocation(Google_Service_DLP_GooglePrivacyDlpV2ImageLocation $imageLocation) - { - $this->imageLocation = $imageLocation; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2ImageLocation - */ - public function getImageLocation() - { - return $this->imageLocation; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2RecordLocation - */ - public function setRecordLocation(Google_Service_DLP_GooglePrivacyDlpV2RecordLocation $recordLocation) - { - $this->recordLocation = $recordLocation; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2RecordLocation - */ - public function getRecordLocation() - { - return $this->recordLocation; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CreateDeidentifyTemplateRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CreateDeidentifyTemplateRequest.php deleted file mode 100644 index cd144eda..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CreateDeidentifyTemplateRequest.php +++ /dev/null @@ -1,55 +0,0 @@ -deidentifyTemplate = $deidentifyTemplate; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2DeidentifyTemplate - */ - public function getDeidentifyTemplate() - { - return $this->deidentifyTemplate; - } - public function setLocationId($locationId) - { - $this->locationId = $locationId; - } - public function getLocationId() - { - return $this->locationId; - } - public function setTemplateId($templateId) - { - $this->templateId = $templateId; - } - public function getTemplateId() - { - return $this->templateId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CreateDlpJobRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CreateDlpJobRequest.php deleted file mode 100644 index dc79cdd8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CreateDlpJobRequest.php +++ /dev/null @@ -1,71 +0,0 @@ -inspectJob = $inspectJob; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2InspectJobConfig - */ - public function getInspectJob() - { - return $this->inspectJob; - } - public function setJobId($jobId) - { - $this->jobId = $jobId; - } - public function getJobId() - { - return $this->jobId; - } - public function setLocationId($locationId) - { - $this->locationId = $locationId; - } - public function getLocationId() - { - return $this->locationId; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2RiskAnalysisJobConfig - */ - public function setRiskJob(Google_Service_DLP_GooglePrivacyDlpV2RiskAnalysisJobConfig $riskJob) - { - $this->riskJob = $riskJob; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2RiskAnalysisJobConfig - */ - public function getRiskJob() - { - return $this->riskJob; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CreateInspectTemplateRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CreateInspectTemplateRequest.php deleted file mode 100644 index be9f3518..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CreateInspectTemplateRequest.php +++ /dev/null @@ -1,55 +0,0 @@ -inspectTemplate = $inspectTemplate; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2InspectTemplate - */ - public function getInspectTemplate() - { - return $this->inspectTemplate; - } - public function setLocationId($locationId) - { - $this->locationId = $locationId; - } - public function getLocationId() - { - return $this->locationId; - } - public function setTemplateId($templateId) - { - $this->templateId = $templateId; - } - public function getTemplateId() - { - return $this->templateId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CreateJobTriggerRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CreateJobTriggerRequest.php deleted file mode 100644 index 335e3c8c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CreateJobTriggerRequest.php +++ /dev/null @@ -1,55 +0,0 @@ -jobTrigger = $jobTrigger; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2JobTrigger - */ - public function getJobTrigger() - { - return $this->jobTrigger; - } - public function setLocationId($locationId) - { - $this->locationId = $locationId; - } - public function getLocationId() - { - return $this->locationId; - } - public function setTriggerId($triggerId) - { - $this->triggerId = $triggerId; - } - public function getTriggerId() - { - return $this->triggerId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CreateStoredInfoTypeRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CreateStoredInfoTypeRequest.php deleted file mode 100644 index 89192f82..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CreateStoredInfoTypeRequest.php +++ /dev/null @@ -1,55 +0,0 @@ -config = $config; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2StoredInfoTypeConfig - */ - public function getConfig() - { - return $this->config; - } - public function setLocationId($locationId) - { - $this->locationId = $locationId; - } - public function getLocationId() - { - return $this->locationId; - } - public function setStoredInfoTypeId($storedInfoTypeId) - { - $this->storedInfoTypeId = $storedInfoTypeId; - } - public function getStoredInfoTypeId() - { - return $this->storedInfoTypeId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CryptoDeterministicConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CryptoDeterministicConfig.php deleted file mode 100644 index a617fcfd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CryptoDeterministicConfig.php +++ /dev/null @@ -1,69 +0,0 @@ -context = $context; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2FieldId - */ - public function getContext() - { - return $this->context; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2CryptoKey - */ - public function setCryptoKey(Google_Service_DLP_GooglePrivacyDlpV2CryptoKey $cryptoKey) - { - $this->cryptoKey = $cryptoKey; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2CryptoKey - */ - public function getCryptoKey() - { - return $this->cryptoKey; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2InfoType - */ - public function setSurrogateInfoType(Google_Service_DLP_GooglePrivacyDlpV2InfoType $surrogateInfoType) - { - $this->surrogateInfoType = $surrogateInfoType; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2InfoType - */ - public function getSurrogateInfoType() - { - return $this->surrogateInfoType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CryptoHashConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CryptoHashConfig.php deleted file mode 100644 index 6f2218a5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CryptoHashConfig.php +++ /dev/null @@ -1,37 +0,0 @@ -cryptoKey = $cryptoKey; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2CryptoKey - */ - public function getCryptoKey() - { - return $this->cryptoKey; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CryptoKey.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CryptoKey.php deleted file mode 100644 index 8bb211e3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CryptoKey.php +++ /dev/null @@ -1,69 +0,0 @@ -kmsWrapped = $kmsWrapped; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2KmsWrappedCryptoKey - */ - public function getKmsWrapped() - { - return $this->kmsWrapped; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2TransientCryptoKey - */ - public function setTransient(Google_Service_DLP_GooglePrivacyDlpV2TransientCryptoKey $transient) - { - $this->transient = $transient; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2TransientCryptoKey - */ - public function getTransient() - { - return $this->transient; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2UnwrappedCryptoKey - */ - public function setUnwrapped(Google_Service_DLP_GooglePrivacyDlpV2UnwrappedCryptoKey $unwrapped) - { - $this->unwrapped = $unwrapped; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2UnwrappedCryptoKey - */ - public function getUnwrapped() - { - return $this->unwrapped; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CryptoReplaceFfxFpeConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CryptoReplaceFfxFpeConfig.php deleted file mode 100644 index b7eca9f1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CryptoReplaceFfxFpeConfig.php +++ /dev/null @@ -1,96 +0,0 @@ -commonAlphabet = $commonAlphabet; - } - public function getCommonAlphabet() - { - return $this->commonAlphabet; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2FieldId - */ - public function setContext(Google_Service_DLP_GooglePrivacyDlpV2FieldId $context) - { - $this->context = $context; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2FieldId - */ - public function getContext() - { - return $this->context; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2CryptoKey - */ - public function setCryptoKey(Google_Service_DLP_GooglePrivacyDlpV2CryptoKey $cryptoKey) - { - $this->cryptoKey = $cryptoKey; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2CryptoKey - */ - public function getCryptoKey() - { - return $this->cryptoKey; - } - public function setCustomAlphabet($customAlphabet) - { - $this->customAlphabet = $customAlphabet; - } - public function getCustomAlphabet() - { - return $this->customAlphabet; - } - public function setRadix($radix) - { - $this->radix = $radix; - } - public function getRadix() - { - return $this->radix; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2InfoType - */ - public function setSurrogateInfoType(Google_Service_DLP_GooglePrivacyDlpV2InfoType $surrogateInfoType) - { - $this->surrogateInfoType = $surrogateInfoType; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2InfoType - */ - public function getSurrogateInfoType() - { - return $this->surrogateInfoType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CustomInfoType.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CustomInfoType.php deleted file mode 100644 index 9ce9c8ca..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2CustomInfoType.php +++ /dev/null @@ -1,136 +0,0 @@ -detectionRules = $detectionRules; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2DetectionRule - */ - public function getDetectionRules() - { - return $this->detectionRules; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2Dictionary - */ - public function setDictionary(Google_Service_DLP_GooglePrivacyDlpV2Dictionary $dictionary) - { - $this->dictionary = $dictionary; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2Dictionary - */ - public function getDictionary() - { - return $this->dictionary; - } - public function setExclusionType($exclusionType) - { - $this->exclusionType = $exclusionType; - } - public function getExclusionType() - { - return $this->exclusionType; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2InfoType - */ - public function setInfoType(Google_Service_DLP_GooglePrivacyDlpV2InfoType $infoType) - { - $this->infoType = $infoType; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2InfoType - */ - public function getInfoType() - { - return $this->infoType; - } - public function setLikelihood($likelihood) - { - $this->likelihood = $likelihood; - } - public function getLikelihood() - { - return $this->likelihood; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2Regex - */ - public function setRegex(Google_Service_DLP_GooglePrivacyDlpV2Regex $regex) - { - $this->regex = $regex; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2Regex - */ - public function getRegex() - { - return $this->regex; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2StoredType - */ - public function setStoredType(Google_Service_DLP_GooglePrivacyDlpV2StoredType $storedType) - { - $this->storedType = $storedType; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2StoredType - */ - public function getStoredType() - { - return $this->storedType; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2SurrogateType - */ - public function setSurrogateType(Google_Service_DLP_GooglePrivacyDlpV2SurrogateType $surrogateType) - { - $this->surrogateType = $surrogateType; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2SurrogateType - */ - public function getSurrogateType() - { - return $this->surrogateType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2DatastoreKey.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2DatastoreKey.php deleted file mode 100644 index 7d1530a5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2DatastoreKey.php +++ /dev/null @@ -1,37 +0,0 @@ -entityKey = $entityKey; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2Key - */ - public function getEntityKey() - { - return $this->entityKey; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2DatastoreOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2DatastoreOptions.php deleted file mode 100644 index 96ad823e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2DatastoreOptions.php +++ /dev/null @@ -1,53 +0,0 @@ -kind = $kind; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2KindExpression - */ - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2PartitionId - */ - public function setPartitionId(Google_Service_DLP_GooglePrivacyDlpV2PartitionId $partitionId) - { - $this->partitionId = $partitionId; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2PartitionId - */ - public function getPartitionId() - { - return $this->partitionId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2DateShiftConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2DateShiftConfig.php deleted file mode 100644 index c268fa01..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2DateShiftConfig.php +++ /dev/null @@ -1,71 +0,0 @@ -context = $context; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2FieldId - */ - public function getContext() - { - return $this->context; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2CryptoKey - */ - public function setCryptoKey(Google_Service_DLP_GooglePrivacyDlpV2CryptoKey $cryptoKey) - { - $this->cryptoKey = $cryptoKey; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2CryptoKey - */ - public function getCryptoKey() - { - return $this->cryptoKey; - } - public function setLowerBoundDays($lowerBoundDays) - { - $this->lowerBoundDays = $lowerBoundDays; - } - public function getLowerBoundDays() - { - return $this->lowerBoundDays; - } - public function setUpperBoundDays($upperBoundDays) - { - $this->upperBoundDays = $upperBoundDays; - } - public function getUpperBoundDays() - { - return $this->upperBoundDays; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2DateTime.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2DateTime.php deleted file mode 100644 index 83e4c0cb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2DateTime.php +++ /dev/null @@ -1,78 +0,0 @@ -date = $date; - } - /** - * @return Google_Service_DLP_GoogleTypeDate - */ - public function getDate() - { - return $this->date; - } - public function setDayOfWeek($dayOfWeek) - { - $this->dayOfWeek = $dayOfWeek; - } - public function getDayOfWeek() - { - return $this->dayOfWeek; - } - /** - * @param Google_Service_DLP_GoogleTypeTimeOfDay - */ - public function setTime(Google_Service_DLP_GoogleTypeTimeOfDay $time) - { - $this->time = $time; - } - /** - * @return Google_Service_DLP_GoogleTypeTimeOfDay - */ - public function getTime() - { - return $this->time; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2TimeZone - */ - public function setTimeZone(Google_Service_DLP_GooglePrivacyDlpV2TimeZone $timeZone) - { - $this->timeZone = $timeZone; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2TimeZone - */ - public function getTimeZone() - { - return $this->timeZone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2DeidentifyConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2DeidentifyConfig.php deleted file mode 100644 index a4fc1e5d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2DeidentifyConfig.php +++ /dev/null @@ -1,69 +0,0 @@ -infoTypeTransformations = $infoTypeTransformations; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2InfoTypeTransformations - */ - public function getInfoTypeTransformations() - { - return $this->infoTypeTransformations; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2RecordTransformations - */ - public function setRecordTransformations(Google_Service_DLP_GooglePrivacyDlpV2RecordTransformations $recordTransformations) - { - $this->recordTransformations = $recordTransformations; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2RecordTransformations - */ - public function getRecordTransformations() - { - return $this->recordTransformations; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2TransformationErrorHandling - */ - public function setTransformationErrorHandling(Google_Service_DLP_GooglePrivacyDlpV2TransformationErrorHandling $transformationErrorHandling) - { - $this->transformationErrorHandling = $transformationErrorHandling; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2TransformationErrorHandling - */ - public function getTransformationErrorHandling() - { - return $this->transformationErrorHandling; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2DeidentifyContentRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2DeidentifyContentRequest.php deleted file mode 100644 index 31294b64..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2DeidentifyContentRequest.php +++ /dev/null @@ -1,96 +0,0 @@ -deidentifyConfig = $deidentifyConfig; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2DeidentifyConfig - */ - public function getDeidentifyConfig() - { - return $this->deidentifyConfig; - } - public function setDeidentifyTemplateName($deidentifyTemplateName) - { - $this->deidentifyTemplateName = $deidentifyTemplateName; - } - public function getDeidentifyTemplateName() - { - return $this->deidentifyTemplateName; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2InspectConfig - */ - public function setInspectConfig(Google_Service_DLP_GooglePrivacyDlpV2InspectConfig $inspectConfig) - { - $this->inspectConfig = $inspectConfig; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2InspectConfig - */ - public function getInspectConfig() - { - return $this->inspectConfig; - } - public function setInspectTemplateName($inspectTemplateName) - { - $this->inspectTemplateName = $inspectTemplateName; - } - public function getInspectTemplateName() - { - return $this->inspectTemplateName; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2ContentItem - */ - public function setItem(Google_Service_DLP_GooglePrivacyDlpV2ContentItem $item) - { - $this->item = $item; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2ContentItem - */ - public function getItem() - { - return $this->item; - } - public function setLocationId($locationId) - { - $this->locationId = $locationId; - } - public function getLocationId() - { - return $this->locationId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2DeidentifyContentResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2DeidentifyContentResponse.php deleted file mode 100644 index d4adf310..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2DeidentifyContentResponse.php +++ /dev/null @@ -1,53 +0,0 @@ -item = $item; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2ContentItem - */ - public function getItem() - { - return $this->item; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2TransformationOverview - */ - public function setOverview(Google_Service_DLP_GooglePrivacyDlpV2TransformationOverview $overview) - { - $this->overview = $overview; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2TransformationOverview - */ - public function getOverview() - { - return $this->overview; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2DeidentifyTemplate.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2DeidentifyTemplate.php deleted file mode 100644 index df58b176..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2DeidentifyTemplate.php +++ /dev/null @@ -1,82 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2DeidentifyConfig - */ - public function setDeidentifyConfig(Google_Service_DLP_GooglePrivacyDlpV2DeidentifyConfig $deidentifyConfig) - { - $this->deidentifyConfig = $deidentifyConfig; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2DeidentifyConfig - */ - public function getDeidentifyConfig() - { - return $this->deidentifyConfig; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2DeltaPresenceEstimationConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2DeltaPresenceEstimationConfig.php deleted file mode 100644 index 4cf39919..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2DeltaPresenceEstimationConfig.php +++ /dev/null @@ -1,63 +0,0 @@ -auxiliaryTables = $auxiliaryTables; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2StatisticalTable - */ - public function getAuxiliaryTables() - { - return $this->auxiliaryTables; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2QuasiId - */ - public function setQuasiIds($quasiIds) - { - $this->quasiIds = $quasiIds; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2QuasiId - */ - public function getQuasiIds() - { - return $this->quasiIds; - } - public function setRegionCode($regionCode) - { - $this->regionCode = $regionCode; - } - public function getRegionCode() - { - return $this->regionCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2DeltaPresenceEstimationHistogramBucket.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2DeltaPresenceEstimationHistogramBucket.php deleted file mode 100644 index 23d15f68..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2DeltaPresenceEstimationHistogramBucket.php +++ /dev/null @@ -1,74 +0,0 @@ -bucketSize = $bucketSize; - } - public function getBucketSize() - { - return $this->bucketSize; - } - public function setBucketValueCount($bucketValueCount) - { - $this->bucketValueCount = $bucketValueCount; - } - public function getBucketValueCount() - { - return $this->bucketValueCount; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2DeltaPresenceEstimationQuasiIdValues - */ - public function setBucketValues($bucketValues) - { - $this->bucketValues = $bucketValues; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2DeltaPresenceEstimationQuasiIdValues - */ - public function getBucketValues() - { - return $this->bucketValues; - } - public function setMaxProbability($maxProbability) - { - $this->maxProbability = $maxProbability; - } - public function getMaxProbability() - { - return $this->maxProbability; - } - public function setMinProbability($minProbability) - { - $this->minProbability = $minProbability; - } - public function getMinProbability() - { - return $this->minProbability; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2DeltaPresenceEstimationQuasiIdValues.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2DeltaPresenceEstimationQuasiIdValues.php deleted file mode 100644 index ffec8dab..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2DeltaPresenceEstimationQuasiIdValues.php +++ /dev/null @@ -1,47 +0,0 @@ -estimatedProbability = $estimatedProbability; - } - public function getEstimatedProbability() - { - return $this->estimatedProbability; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2Value - */ - public function setQuasiIdsValues($quasiIdsValues) - { - $this->quasiIdsValues = $quasiIdsValues; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2Value - */ - public function getQuasiIdsValues() - { - return $this->quasiIdsValues; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2DeltaPresenceEstimationResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2DeltaPresenceEstimationResult.php deleted file mode 100644 index 862283f8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2DeltaPresenceEstimationResult.php +++ /dev/null @@ -1,38 +0,0 @@ -deltaPresenceEstimationHistogram = $deltaPresenceEstimationHistogram; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2DeltaPresenceEstimationHistogramBucket - */ - public function getDeltaPresenceEstimationHistogram() - { - return $this->deltaPresenceEstimationHistogram; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2DetectionRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2DetectionRule.php deleted file mode 100644 index 363e2b4b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2DetectionRule.php +++ /dev/null @@ -1,37 +0,0 @@ -hotwordRule = $hotwordRule; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2HotwordRule - */ - public function getHotwordRule() - { - return $this->hotwordRule; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Dictionary.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Dictionary.php deleted file mode 100644 index 41bca755..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Dictionary.php +++ /dev/null @@ -1,53 +0,0 @@ -cloudStoragePath = $cloudStoragePath; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2CloudStoragePath - */ - public function getCloudStoragePath() - { - return $this->cloudStoragePath; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2WordList - */ - public function setWordList(Google_Service_DLP_GooglePrivacyDlpV2WordList $wordList) - { - $this->wordList = $wordList; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2WordList - */ - public function getWordList() - { - return $this->wordList; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2DlpJob.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2DlpJob.php deleted file mode 100644 index 8401f76e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2DlpJob.php +++ /dev/null @@ -1,133 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2Error - */ - public function setErrors($errors) - { - $this->errors = $errors; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2Error - */ - public function getErrors() - { - return $this->errors; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2InspectDataSourceDetails - */ - public function setInspectDetails(Google_Service_DLP_GooglePrivacyDlpV2InspectDataSourceDetails $inspectDetails) - { - $this->inspectDetails = $inspectDetails; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2InspectDataSourceDetails - */ - public function getInspectDetails() - { - return $this->inspectDetails; - } - public function setJobTriggerName($jobTriggerName) - { - $this->jobTriggerName = $jobTriggerName; - } - public function getJobTriggerName() - { - return $this->jobTriggerName; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2AnalyzeDataSourceRiskDetails - */ - public function setRiskDetails(Google_Service_DLP_GooglePrivacyDlpV2AnalyzeDataSourceRiskDetails $riskDetails) - { - $this->riskDetails = $riskDetails; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2AnalyzeDataSourceRiskDetails - */ - public function getRiskDetails() - { - return $this->riskDetails; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2DocumentLocation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2DocumentLocation.php deleted file mode 100644 index 766b96c8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2DocumentLocation.php +++ /dev/null @@ -1,30 +0,0 @@ -fileOffset = $fileOffset; - } - public function getFileOffset() - { - return $this->fileOffset; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2EntityId.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2EntityId.php deleted file mode 100644 index c38e6b3d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2EntityId.php +++ /dev/null @@ -1,37 +0,0 @@ -field = $field; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2FieldId - */ - public function getField() - { - return $this->field; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Error.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Error.php deleted file mode 100644 index b4c1abb6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Error.php +++ /dev/null @@ -1,47 +0,0 @@ -details = $details; - } - /** - * @return Google_Service_DLP_GoogleRpcStatus - */ - public function getDetails() - { - return $this->details; - } - public function setTimestamps($timestamps) - { - $this->timestamps = $timestamps; - } - public function getTimestamps() - { - return $this->timestamps; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ExcludeInfoTypes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ExcludeInfoTypes.php deleted file mode 100644 index b308ab3e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ExcludeInfoTypes.php +++ /dev/null @@ -1,38 +0,0 @@ -infoTypes = $infoTypes; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2InfoType - */ - public function getInfoTypes() - { - return $this->infoTypes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ExclusionRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ExclusionRule.php deleted file mode 100644 index d55e28ce..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ExclusionRule.php +++ /dev/null @@ -1,78 +0,0 @@ -dictionary = $dictionary; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2Dictionary - */ - public function getDictionary() - { - return $this->dictionary; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2ExcludeInfoTypes - */ - public function setExcludeInfoTypes(Google_Service_DLP_GooglePrivacyDlpV2ExcludeInfoTypes $excludeInfoTypes) - { - $this->excludeInfoTypes = $excludeInfoTypes; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2ExcludeInfoTypes - */ - public function getExcludeInfoTypes() - { - return $this->excludeInfoTypes; - } - public function setMatchingType($matchingType) - { - $this->matchingType = $matchingType; - } - public function getMatchingType() - { - return $this->matchingType; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2Regex - */ - public function setRegex(Google_Service_DLP_GooglePrivacyDlpV2Regex $regex) - { - $this->regex = $regex; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2Regex - */ - public function getRegex() - { - return $this->regex; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Expressions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Expressions.php deleted file mode 100644 index ac78d06a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Expressions.php +++ /dev/null @@ -1,46 +0,0 @@ -conditions = $conditions; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2Conditions - */ - public function getConditions() - { - return $this->conditions; - } - public function setLogicalOperator($logicalOperator) - { - $this->logicalOperator = $logicalOperator; - } - public function getLogicalOperator() - { - return $this->logicalOperator; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2FieldId.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2FieldId.php deleted file mode 100644 index 29022dc3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2FieldId.php +++ /dev/null @@ -1,30 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2FieldTransformation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2FieldTransformation.php deleted file mode 100644 index 527da03b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2FieldTransformation.php +++ /dev/null @@ -1,86 +0,0 @@ -condition = $condition; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2RecordCondition - */ - public function getCondition() - { - return $this->condition; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2FieldId - */ - public function setFields($fields) - { - $this->fields = $fields; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2FieldId - */ - public function getFields() - { - return $this->fields; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2InfoTypeTransformations - */ - public function setInfoTypeTransformations(Google_Service_DLP_GooglePrivacyDlpV2InfoTypeTransformations $infoTypeTransformations) - { - $this->infoTypeTransformations = $infoTypeTransformations; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2InfoTypeTransformations - */ - public function getInfoTypeTransformations() - { - return $this->infoTypeTransformations; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2PrimitiveTransformation - */ - public function setPrimitiveTransformation(Google_Service_DLP_GooglePrivacyDlpV2PrimitiveTransformation $primitiveTransformation) - { - $this->primitiveTransformation = $primitiveTransformation; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2PrimitiveTransformation - */ - public function getPrimitiveTransformation() - { - return $this->primitiveTransformation; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2FileSet.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2FileSet.php deleted file mode 100644 index f309d652..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2FileSet.php +++ /dev/null @@ -1,46 +0,0 @@ -regexFileSet = $regexFileSet; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2CloudStorageRegexFileSet - */ - public function getRegexFileSet() - { - return $this->regexFileSet; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Finding.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Finding.php deleted file mode 100644 index 13857b48..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Finding.php +++ /dev/null @@ -1,96 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2InfoType - */ - public function setInfoType(Google_Service_DLP_GooglePrivacyDlpV2InfoType $infoType) - { - $this->infoType = $infoType; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2InfoType - */ - public function getInfoType() - { - return $this->infoType; - } - public function setLikelihood($likelihood) - { - $this->likelihood = $likelihood; - } - public function getLikelihood() - { - return $this->likelihood; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2Location - */ - public function setLocation(Google_Service_DLP_GooglePrivacyDlpV2Location $location) - { - $this->location = $location; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2Location - */ - public function getLocation() - { - return $this->location; - } - public function setQuote($quote) - { - $this->quote = $quote; - } - public function getQuote() - { - return $this->quote; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2QuoteInfo - */ - public function setQuoteInfo(Google_Service_DLP_GooglePrivacyDlpV2QuoteInfo $quoteInfo) - { - $this->quoteInfo = $quoteInfo; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2QuoteInfo - */ - public function getQuoteInfo() - { - return $this->quoteInfo; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2FindingLimits.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2FindingLimits.php deleted file mode 100644 index 17267418..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2FindingLimits.php +++ /dev/null @@ -1,56 +0,0 @@ -maxFindingsPerInfoType = $maxFindingsPerInfoType; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2InfoTypeLimit - */ - public function getMaxFindingsPerInfoType() - { - return $this->maxFindingsPerInfoType; - } - public function setMaxFindingsPerItem($maxFindingsPerItem) - { - $this->maxFindingsPerItem = $maxFindingsPerItem; - } - public function getMaxFindingsPerItem() - { - return $this->maxFindingsPerItem; - } - public function setMaxFindingsPerRequest($maxFindingsPerRequest) - { - $this->maxFindingsPerRequest = $maxFindingsPerRequest; - } - public function getMaxFindingsPerRequest() - { - return $this->maxFindingsPerRequest; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2FixedSizeBucketingConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2FixedSizeBucketingConfig.php deleted file mode 100644 index 7ced3901..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2FixedSizeBucketingConfig.php +++ /dev/null @@ -1,62 +0,0 @@ -bucketSize = $bucketSize; - } - public function getBucketSize() - { - return $this->bucketSize; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2Value - */ - public function setLowerBound(Google_Service_DLP_GooglePrivacyDlpV2Value $lowerBound) - { - $this->lowerBound = $lowerBound; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2Value - */ - public function getLowerBound() - { - return $this->lowerBound; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2Value - */ - public function setUpperBound(Google_Service_DLP_GooglePrivacyDlpV2Value $upperBound) - { - $this->upperBound = $upperBound; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2Value - */ - public function getUpperBound() - { - return $this->upperBound; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2HotwordRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2HotwordRule.php deleted file mode 100644 index ee7877b0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2HotwordRule.php +++ /dev/null @@ -1,69 +0,0 @@ -hotwordRegex = $hotwordRegex; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2Regex - */ - public function getHotwordRegex() - { - return $this->hotwordRegex; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2LikelihoodAdjustment - */ - public function setLikelihoodAdjustment(Google_Service_DLP_GooglePrivacyDlpV2LikelihoodAdjustment $likelihoodAdjustment) - { - $this->likelihoodAdjustment = $likelihoodAdjustment; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2LikelihoodAdjustment - */ - public function getLikelihoodAdjustment() - { - return $this->likelihoodAdjustment; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2Proximity - */ - public function setProximity(Google_Service_DLP_GooglePrivacyDlpV2Proximity $proximity) - { - $this->proximity = $proximity; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2Proximity - */ - public function getProximity() - { - return $this->proximity; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ImageLocation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ImageLocation.php deleted file mode 100644 index d5baacf3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ImageLocation.php +++ /dev/null @@ -1,38 +0,0 @@ -boundingBoxes = $boundingBoxes; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2BoundingBox - */ - public function getBoundingBoxes() - { - return $this->boundingBoxes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ImageRedactionConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ImageRedactionConfig.php deleted file mode 100644 index 3b5823ea..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ImageRedactionConfig.php +++ /dev/null @@ -1,62 +0,0 @@ -infoType = $infoType; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2InfoType - */ - public function getInfoType() - { - return $this->infoType; - } - public function setRedactAllText($redactAllText) - { - $this->redactAllText = $redactAllText; - } - public function getRedactAllText() - { - return $this->redactAllText; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2Color - */ - public function setRedactionColor(Google_Service_DLP_GooglePrivacyDlpV2Color $redactionColor) - { - $this->redactionColor = $redactionColor; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2Color - */ - public function getRedactionColor() - { - return $this->redactionColor; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2InfoType.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2InfoType.php deleted file mode 100644 index 60de27bb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2InfoType.php +++ /dev/null @@ -1,30 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2InfoTypeDescription.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2InfoTypeDescription.php deleted file mode 100644 index 20c62eb4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2InfoTypeDescription.php +++ /dev/null @@ -1,58 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setSupportedBy($supportedBy) - { - $this->supportedBy = $supportedBy; - } - public function getSupportedBy() - { - return $this->supportedBy; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2InfoTypeLimit.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2InfoTypeLimit.php deleted file mode 100644 index c02a1ac6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2InfoTypeLimit.php +++ /dev/null @@ -1,46 +0,0 @@ -infoType = $infoType; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2InfoType - */ - public function getInfoType() - { - return $this->infoType; - } - public function setMaxFindings($maxFindings) - { - $this->maxFindings = $maxFindings; - } - public function getMaxFindings() - { - return $this->maxFindings; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2InfoTypeStats.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2InfoTypeStats.php deleted file mode 100644 index db04bacc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2InfoTypeStats.php +++ /dev/null @@ -1,46 +0,0 @@ -count = $count; - } - public function getCount() - { - return $this->count; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2InfoType - */ - public function setInfoType(Google_Service_DLP_GooglePrivacyDlpV2InfoType $infoType) - { - $this->infoType = $infoType; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2InfoType - */ - public function getInfoType() - { - return $this->infoType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2InfoTypeTransformation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2InfoTypeTransformation.php deleted file mode 100644 index 42103d61..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2InfoTypeTransformation.php +++ /dev/null @@ -1,54 +0,0 @@ -infoTypes = $infoTypes; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2InfoType - */ - public function getInfoTypes() - { - return $this->infoTypes; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2PrimitiveTransformation - */ - public function setPrimitiveTransformation(Google_Service_DLP_GooglePrivacyDlpV2PrimitiveTransformation $primitiveTransformation) - { - $this->primitiveTransformation = $primitiveTransformation; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2PrimitiveTransformation - */ - public function getPrimitiveTransformation() - { - return $this->primitiveTransformation; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2InfoTypeTransformations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2InfoTypeTransformations.php deleted file mode 100644 index f9428c41..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2InfoTypeTransformations.php +++ /dev/null @@ -1,38 +0,0 @@ -transformations = $transformations; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2InfoTypeTransformation - */ - public function getTransformations() - { - return $this->transformations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2InspectConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2InspectConfig.php deleted file mode 100644 index 59a2d102..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2InspectConfig.php +++ /dev/null @@ -1,122 +0,0 @@ -contentOptions = $contentOptions; - } - public function getContentOptions() - { - return $this->contentOptions; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2CustomInfoType - */ - public function setCustomInfoTypes($customInfoTypes) - { - $this->customInfoTypes = $customInfoTypes; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2CustomInfoType - */ - public function getCustomInfoTypes() - { - return $this->customInfoTypes; - } - public function setExcludeInfoTypes($excludeInfoTypes) - { - $this->excludeInfoTypes = $excludeInfoTypes; - } - public function getExcludeInfoTypes() - { - return $this->excludeInfoTypes; - } - public function setIncludeQuote($includeQuote) - { - $this->includeQuote = $includeQuote; - } - public function getIncludeQuote() - { - return $this->includeQuote; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2InfoType - */ - public function setInfoTypes($infoTypes) - { - $this->infoTypes = $infoTypes; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2InfoType - */ - public function getInfoTypes() - { - return $this->infoTypes; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2FindingLimits - */ - public function setLimits(Google_Service_DLP_GooglePrivacyDlpV2FindingLimits $limits) - { - $this->limits = $limits; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2FindingLimits - */ - public function getLimits() - { - return $this->limits; - } - public function setMinLikelihood($minLikelihood) - { - $this->minLikelihood = $minLikelihood; - } - public function getMinLikelihood() - { - return $this->minLikelihood; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2InspectionRuleSet - */ - public function setRuleSet($ruleSet) - { - $this->ruleSet = $ruleSet; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2InspectionRuleSet - */ - public function getRuleSet() - { - return $this->ruleSet; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2InspectContentRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2InspectContentRequest.php deleted file mode 100644 index 252d2b3d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2InspectContentRequest.php +++ /dev/null @@ -1,71 +0,0 @@ -inspectConfig = $inspectConfig; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2InspectConfig - */ - public function getInspectConfig() - { - return $this->inspectConfig; - } - public function setInspectTemplateName($inspectTemplateName) - { - $this->inspectTemplateName = $inspectTemplateName; - } - public function getInspectTemplateName() - { - return $this->inspectTemplateName; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2ContentItem - */ - public function setItem(Google_Service_DLP_GooglePrivacyDlpV2ContentItem $item) - { - $this->item = $item; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2ContentItem - */ - public function getItem() - { - return $this->item; - } - public function setLocationId($locationId) - { - $this->locationId = $locationId; - } - public function getLocationId() - { - return $this->locationId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2InspectContentResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2InspectContentResponse.php deleted file mode 100644 index 452477f1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2InspectContentResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -result = $result; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2InspectResult - */ - public function getResult() - { - return $this->result; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2InspectDataSourceDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2InspectDataSourceDetails.php deleted file mode 100644 index 6aa2fda1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2InspectDataSourceDetails.php +++ /dev/null @@ -1,53 +0,0 @@ -requestedOptions = $requestedOptions; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2RequestedOptions - */ - public function getRequestedOptions() - { - return $this->requestedOptions; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2Result - */ - public function setResult(Google_Service_DLP_GooglePrivacyDlpV2Result $result) - { - $this->result = $result; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2Result - */ - public function getResult() - { - return $this->result; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2InspectJobConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2InspectJobConfig.php deleted file mode 100644 index 926d8c0e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2InspectJobConfig.php +++ /dev/null @@ -1,79 +0,0 @@ -actions = $actions; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2Action - */ - public function getActions() - { - return $this->actions; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2InspectConfig - */ - public function setInspectConfig(Google_Service_DLP_GooglePrivacyDlpV2InspectConfig $inspectConfig) - { - $this->inspectConfig = $inspectConfig; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2InspectConfig - */ - public function getInspectConfig() - { - return $this->inspectConfig; - } - public function setInspectTemplateName($inspectTemplateName) - { - $this->inspectTemplateName = $inspectTemplateName; - } - public function getInspectTemplateName() - { - return $this->inspectTemplateName; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2StorageConfig - */ - public function setStorageConfig(Google_Service_DLP_GooglePrivacyDlpV2StorageConfig $storageConfig) - { - $this->storageConfig = $storageConfig; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2StorageConfig - */ - public function getStorageConfig() - { - return $this->storageConfig; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2InspectResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2InspectResult.php deleted file mode 100644 index ebc849db..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2InspectResult.php +++ /dev/null @@ -1,47 +0,0 @@ -findings = $findings; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2Finding - */ - public function getFindings() - { - return $this->findings; - } - public function setFindingsTruncated($findingsTruncated) - { - $this->findingsTruncated = $findingsTruncated; - } - public function getFindingsTruncated() - { - return $this->findingsTruncated; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2InspectTemplate.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2InspectTemplate.php deleted file mode 100644 index a1d8fed2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2InspectTemplate.php +++ /dev/null @@ -1,82 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2InspectConfig - */ - public function setInspectConfig(Google_Service_DLP_GooglePrivacyDlpV2InspectConfig $inspectConfig) - { - $this->inspectConfig = $inspectConfig; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2InspectConfig - */ - public function getInspectConfig() - { - return $this->inspectConfig; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2InspectionRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2InspectionRule.php deleted file mode 100644 index 940e9221..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2InspectionRule.php +++ /dev/null @@ -1,53 +0,0 @@ -exclusionRule = $exclusionRule; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2ExclusionRule - */ - public function getExclusionRule() - { - return $this->exclusionRule; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2HotwordRule - */ - public function setHotwordRule(Google_Service_DLP_GooglePrivacyDlpV2HotwordRule $hotwordRule) - { - $this->hotwordRule = $hotwordRule; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2HotwordRule - */ - public function getHotwordRule() - { - return $this->hotwordRule; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2InspectionRuleSet.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2InspectionRuleSet.php deleted file mode 100644 index 0ba50523..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2InspectionRuleSet.php +++ /dev/null @@ -1,54 +0,0 @@ -infoTypes = $infoTypes; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2InfoType - */ - public function getInfoTypes() - { - return $this->infoTypes; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2InspectionRule - */ - public function setRules($rules) - { - $this->rules = $rules; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2InspectionRule - */ - public function getRules() - { - return $this->rules; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2JobNotificationEmails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2JobNotificationEmails.php deleted file mode 100644 index 0cde0321..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2JobNotificationEmails.php +++ /dev/null @@ -1,20 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2Error - */ - public function setErrors($errors) - { - $this->errors = $errors; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2Error - */ - public function getErrors() - { - return $this->errors; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2InspectJobConfig - */ - public function setInspectJob(Google_Service_DLP_GooglePrivacyDlpV2InspectJobConfig $inspectJob) - { - $this->inspectJob = $inspectJob; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2InspectJobConfig - */ - public function getInspectJob() - { - return $this->inspectJob; - } - public function setLastRunTime($lastRunTime) - { - $this->lastRunTime = $lastRunTime; - } - public function getLastRunTime() - { - return $this->lastRunTime; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2Trigger - */ - public function setTriggers($triggers) - { - $this->triggers = $triggers; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2Trigger - */ - public function getTriggers() - { - return $this->triggers; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2KAnonymityConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2KAnonymityConfig.php deleted file mode 100644 index b0292429..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2KAnonymityConfig.php +++ /dev/null @@ -1,54 +0,0 @@ -entityId = $entityId; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2EntityId - */ - public function getEntityId() - { - return $this->entityId; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2FieldId - */ - public function setQuasiIds($quasiIds) - { - $this->quasiIds = $quasiIds; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2FieldId - */ - public function getQuasiIds() - { - return $this->quasiIds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2KAnonymityEquivalenceClass.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2KAnonymityEquivalenceClass.php deleted file mode 100644 index 2f49c012..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2KAnonymityEquivalenceClass.php +++ /dev/null @@ -1,47 +0,0 @@ -equivalenceClassSize = $equivalenceClassSize; - } - public function getEquivalenceClassSize() - { - return $this->equivalenceClassSize; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2Value - */ - public function setQuasiIdsValues($quasiIdsValues) - { - $this->quasiIdsValues = $quasiIdsValues; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2Value - */ - public function getQuasiIdsValues() - { - return $this->quasiIdsValues; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2KAnonymityHistogramBucket.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2KAnonymityHistogramBucket.php deleted file mode 100644 index 97e64f74..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2KAnonymityHistogramBucket.php +++ /dev/null @@ -1,74 +0,0 @@ -bucketSize = $bucketSize; - } - public function getBucketSize() - { - return $this->bucketSize; - } - public function setBucketValueCount($bucketValueCount) - { - $this->bucketValueCount = $bucketValueCount; - } - public function getBucketValueCount() - { - return $this->bucketValueCount; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2KAnonymityEquivalenceClass - */ - public function setBucketValues($bucketValues) - { - $this->bucketValues = $bucketValues; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2KAnonymityEquivalenceClass - */ - public function getBucketValues() - { - return $this->bucketValues; - } - public function setEquivalenceClassSizeLowerBound($equivalenceClassSizeLowerBound) - { - $this->equivalenceClassSizeLowerBound = $equivalenceClassSizeLowerBound; - } - public function getEquivalenceClassSizeLowerBound() - { - return $this->equivalenceClassSizeLowerBound; - } - public function setEquivalenceClassSizeUpperBound($equivalenceClassSizeUpperBound) - { - $this->equivalenceClassSizeUpperBound = $equivalenceClassSizeUpperBound; - } - public function getEquivalenceClassSizeUpperBound() - { - return $this->equivalenceClassSizeUpperBound; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2KAnonymityResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2KAnonymityResult.php deleted file mode 100644 index 6f92d88d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2KAnonymityResult.php +++ /dev/null @@ -1,38 +0,0 @@ -equivalenceClassHistogramBuckets = $equivalenceClassHistogramBuckets; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2KAnonymityHistogramBucket - */ - public function getEquivalenceClassHistogramBuckets() - { - return $this->equivalenceClassHistogramBuckets; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2KMapEstimationConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2KMapEstimationConfig.php deleted file mode 100644 index dc58dd2d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2KMapEstimationConfig.php +++ /dev/null @@ -1,63 +0,0 @@ -auxiliaryTables = $auxiliaryTables; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2AuxiliaryTable - */ - public function getAuxiliaryTables() - { - return $this->auxiliaryTables; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2TaggedField - */ - public function setQuasiIds($quasiIds) - { - $this->quasiIds = $quasiIds; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2TaggedField - */ - public function getQuasiIds() - { - return $this->quasiIds; - } - public function setRegionCode($regionCode) - { - $this->regionCode = $regionCode; - } - public function getRegionCode() - { - return $this->regionCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2KMapEstimationHistogramBucket.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2KMapEstimationHistogramBucket.php deleted file mode 100644 index 97c3e3c4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2KMapEstimationHistogramBucket.php +++ /dev/null @@ -1,74 +0,0 @@ -bucketSize = $bucketSize; - } - public function getBucketSize() - { - return $this->bucketSize; - } - public function setBucketValueCount($bucketValueCount) - { - $this->bucketValueCount = $bucketValueCount; - } - public function getBucketValueCount() - { - return $this->bucketValueCount; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2KMapEstimationQuasiIdValues - */ - public function setBucketValues($bucketValues) - { - $this->bucketValues = $bucketValues; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2KMapEstimationQuasiIdValues - */ - public function getBucketValues() - { - return $this->bucketValues; - } - public function setMaxAnonymity($maxAnonymity) - { - $this->maxAnonymity = $maxAnonymity; - } - public function getMaxAnonymity() - { - return $this->maxAnonymity; - } - public function setMinAnonymity($minAnonymity) - { - $this->minAnonymity = $minAnonymity; - } - public function getMinAnonymity() - { - return $this->minAnonymity; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2KMapEstimationQuasiIdValues.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2KMapEstimationQuasiIdValues.php deleted file mode 100644 index 415f26b5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2KMapEstimationQuasiIdValues.php +++ /dev/null @@ -1,47 +0,0 @@ -estimatedAnonymity = $estimatedAnonymity; - } - public function getEstimatedAnonymity() - { - return $this->estimatedAnonymity; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2Value - */ - public function setQuasiIdsValues($quasiIdsValues) - { - $this->quasiIdsValues = $quasiIdsValues; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2Value - */ - public function getQuasiIdsValues() - { - return $this->quasiIdsValues; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2KMapEstimationResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2KMapEstimationResult.php deleted file mode 100644 index 939e77b4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2KMapEstimationResult.php +++ /dev/null @@ -1,38 +0,0 @@ -kMapEstimationHistogram = $kMapEstimationHistogram; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2KMapEstimationHistogramBucket - */ - public function getKMapEstimationHistogram() - { - return $this->kMapEstimationHistogram; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Key.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Key.php deleted file mode 100644 index 5226405f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Key.php +++ /dev/null @@ -1,54 +0,0 @@ -partitionId = $partitionId; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2PartitionId - */ - public function getPartitionId() - { - return $this->partitionId; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2PathElement - */ - public function setPath($path) - { - $this->path = $path; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2PathElement - */ - public function getPath() - { - return $this->path; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2KindExpression.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2KindExpression.php deleted file mode 100644 index 405034f3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2KindExpression.php +++ /dev/null @@ -1,30 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2KmsWrappedCryptoKey.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2KmsWrappedCryptoKey.php deleted file mode 100644 index 9a6f820b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2KmsWrappedCryptoKey.php +++ /dev/null @@ -1,39 +0,0 @@ -cryptoKeyName = $cryptoKeyName; - } - public function getCryptoKeyName() - { - return $this->cryptoKeyName; - } - public function setWrappedKey($wrappedKey) - { - $this->wrappedKey = $wrappedKey; - } - public function getWrappedKey() - { - return $this->wrappedKey; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2LDiversityConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2LDiversityConfig.php deleted file mode 100644 index bbc458f1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2LDiversityConfig.php +++ /dev/null @@ -1,54 +0,0 @@ -quasiIds = $quasiIds; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2FieldId - */ - public function getQuasiIds() - { - return $this->quasiIds; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2FieldId - */ - public function setSensitiveAttribute(Google_Service_DLP_GooglePrivacyDlpV2FieldId $sensitiveAttribute) - { - $this->sensitiveAttribute = $sensitiveAttribute; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2FieldId - */ - public function getSensitiveAttribute() - { - return $this->sensitiveAttribute; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2LDiversityEquivalenceClass.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2LDiversityEquivalenceClass.php deleted file mode 100644 index 85bdcf08..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2LDiversityEquivalenceClass.php +++ /dev/null @@ -1,72 +0,0 @@ -equivalenceClassSize = $equivalenceClassSize; - } - public function getEquivalenceClassSize() - { - return $this->equivalenceClassSize; - } - public function setNumDistinctSensitiveValues($numDistinctSensitiveValues) - { - $this->numDistinctSensitiveValues = $numDistinctSensitiveValues; - } - public function getNumDistinctSensitiveValues() - { - return $this->numDistinctSensitiveValues; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2Value - */ - public function setQuasiIdsValues($quasiIdsValues) - { - $this->quasiIdsValues = $quasiIdsValues; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2Value - */ - public function getQuasiIdsValues() - { - return $this->quasiIdsValues; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2ValueFrequency - */ - public function setTopSensitiveValues($topSensitiveValues) - { - $this->topSensitiveValues = $topSensitiveValues; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2ValueFrequency - */ - public function getTopSensitiveValues() - { - return $this->topSensitiveValues; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2LDiversityHistogramBucket.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2LDiversityHistogramBucket.php deleted file mode 100644 index 2799cd0d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2LDiversityHistogramBucket.php +++ /dev/null @@ -1,74 +0,0 @@ -bucketSize = $bucketSize; - } - public function getBucketSize() - { - return $this->bucketSize; - } - public function setBucketValueCount($bucketValueCount) - { - $this->bucketValueCount = $bucketValueCount; - } - public function getBucketValueCount() - { - return $this->bucketValueCount; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2LDiversityEquivalenceClass - */ - public function setBucketValues($bucketValues) - { - $this->bucketValues = $bucketValues; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2LDiversityEquivalenceClass - */ - public function getBucketValues() - { - return $this->bucketValues; - } - public function setSensitiveValueFrequencyLowerBound($sensitiveValueFrequencyLowerBound) - { - $this->sensitiveValueFrequencyLowerBound = $sensitiveValueFrequencyLowerBound; - } - public function getSensitiveValueFrequencyLowerBound() - { - return $this->sensitiveValueFrequencyLowerBound; - } - public function setSensitiveValueFrequencyUpperBound($sensitiveValueFrequencyUpperBound) - { - $this->sensitiveValueFrequencyUpperBound = $sensitiveValueFrequencyUpperBound; - } - public function getSensitiveValueFrequencyUpperBound() - { - return $this->sensitiveValueFrequencyUpperBound; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2LDiversityResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2LDiversityResult.php deleted file mode 100644 index eb734883..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2LDiversityResult.php +++ /dev/null @@ -1,38 +0,0 @@ -sensitiveValueFrequencyHistogramBuckets = $sensitiveValueFrequencyHistogramBuckets; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2LDiversityHistogramBucket - */ - public function getSensitiveValueFrequencyHistogramBuckets() - { - return $this->sensitiveValueFrequencyHistogramBuckets; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2LargeCustomDictionaryConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2LargeCustomDictionaryConfig.php deleted file mode 100644 index 07b313e6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2LargeCustomDictionaryConfig.php +++ /dev/null @@ -1,69 +0,0 @@ -bigQueryField = $bigQueryField; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2BigQueryField - */ - public function getBigQueryField() - { - return $this->bigQueryField; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2CloudStorageFileSet - */ - public function setCloudStorageFileSet(Google_Service_DLP_GooglePrivacyDlpV2CloudStorageFileSet $cloudStorageFileSet) - { - $this->cloudStorageFileSet = $cloudStorageFileSet; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2CloudStorageFileSet - */ - public function getCloudStorageFileSet() - { - return $this->cloudStorageFileSet; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2CloudStoragePath - */ - public function setOutputPath(Google_Service_DLP_GooglePrivacyDlpV2CloudStoragePath $outputPath) - { - $this->outputPath = $outputPath; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2CloudStoragePath - */ - public function getOutputPath() - { - return $this->outputPath; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2LargeCustomDictionaryStats.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2LargeCustomDictionaryStats.php deleted file mode 100644 index 84ea4065..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2LargeCustomDictionaryStats.php +++ /dev/null @@ -1,30 +0,0 @@ -approxNumPhrases = $approxNumPhrases; - } - public function getApproxNumPhrases() - { - return $this->approxNumPhrases; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2LeaveUntransformed.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2LeaveUntransformed.php deleted file mode 100644 index 832fef0e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2LeaveUntransformed.php +++ /dev/null @@ -1,20 +0,0 @@ -fixedLikelihood = $fixedLikelihood; - } - public function getFixedLikelihood() - { - return $this->fixedLikelihood; - } - public function setRelativeLikelihood($relativeLikelihood) - { - $this->relativeLikelihood = $relativeLikelihood; - } - public function getRelativeLikelihood() - { - return $this->relativeLikelihood; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ListDeidentifyTemplatesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ListDeidentifyTemplatesResponse.php deleted file mode 100644 index 1566001c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ListDeidentifyTemplatesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -deidentifyTemplates = $deidentifyTemplates; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2DeidentifyTemplate - */ - public function getDeidentifyTemplates() - { - return $this->deidentifyTemplates; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ListDlpJobsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ListDlpJobsResponse.php deleted file mode 100644 index 05cff7af..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ListDlpJobsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -jobs = $jobs; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2DlpJob - */ - public function getJobs() - { - return $this->jobs; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ListInfoTypesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ListInfoTypesResponse.php deleted file mode 100644 index a688efe4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ListInfoTypesResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -infoTypes = $infoTypes; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2InfoTypeDescription - */ - public function getInfoTypes() - { - return $this->infoTypes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ListInspectTemplatesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ListInspectTemplatesResponse.php deleted file mode 100644 index e6a9275d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ListInspectTemplatesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -inspectTemplates = $inspectTemplates; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2InspectTemplate - */ - public function getInspectTemplates() - { - return $this->inspectTemplates; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ListJobTriggersResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ListJobTriggersResponse.php deleted file mode 100644 index fef12d78..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ListJobTriggersResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -jobTriggers = $jobTriggers; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2JobTrigger - */ - public function getJobTriggers() - { - return $this->jobTriggers; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ListStoredInfoTypesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ListStoredInfoTypesResponse.php deleted file mode 100644 index d3003da5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ListStoredInfoTypesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2StoredInfoType - */ - public function setStoredInfoTypes($storedInfoTypes) - { - $this->storedInfoTypes = $storedInfoTypes; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2StoredInfoType - */ - public function getStoredInfoTypes() - { - return $this->storedInfoTypes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Location.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Location.php deleted file mode 100644 index 37b67460..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Location.php +++ /dev/null @@ -1,70 +0,0 @@ -byteRange = $byteRange; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2Range - */ - public function getByteRange() - { - return $this->byteRange; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2Range - */ - public function setCodepointRange(Google_Service_DLP_GooglePrivacyDlpV2Range $codepointRange) - { - $this->codepointRange = $codepointRange; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2Range - */ - public function getCodepointRange() - { - return $this->codepointRange; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2ContentLocation - */ - public function setContentLocations($contentLocations) - { - $this->contentLocations = $contentLocations; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2ContentLocation - */ - public function getContentLocations() - { - return $this->contentLocations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2NumericalStatsConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2NumericalStatsConfig.php deleted file mode 100644 index 7a17bcf3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2NumericalStatsConfig.php +++ /dev/null @@ -1,37 +0,0 @@ -field = $field; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2FieldId - */ - public function getField() - { - return $this->field; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2NumericalStatsResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2NumericalStatsResult.php deleted file mode 100644 index cc18025a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2NumericalStatsResult.php +++ /dev/null @@ -1,70 +0,0 @@ -maxValue = $maxValue; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2Value - */ - public function getMaxValue() - { - return $this->maxValue; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2Value - */ - public function setMinValue(Google_Service_DLP_GooglePrivacyDlpV2Value $minValue) - { - $this->minValue = $minValue; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2Value - */ - public function getMinValue() - { - return $this->minValue; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2Value - */ - public function setQuantileValues($quantileValues) - { - $this->quantileValues = $quantileValues; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2Value - */ - public function getQuantileValues() - { - return $this->quantileValues; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2OutputStorageConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2OutputStorageConfig.php deleted file mode 100644 index 1453c128..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2OutputStorageConfig.php +++ /dev/null @@ -1,46 +0,0 @@ -outputSchema = $outputSchema; - } - public function getOutputSchema() - { - return $this->outputSchema; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2BigQueryTable - */ - public function setTable(Google_Service_DLP_GooglePrivacyDlpV2BigQueryTable $table) - { - $this->table = $table; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2BigQueryTable - */ - public function getTable() - { - return $this->table; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2PartitionId.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2PartitionId.php deleted file mode 100644 index 62d7798a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2PartitionId.php +++ /dev/null @@ -1,39 +0,0 @@ -namespaceId = $namespaceId; - } - public function getNamespaceId() - { - return $this->namespaceId; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2PathElement.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2PathElement.php deleted file mode 100644 index 54b8a633..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2PathElement.php +++ /dev/null @@ -1,48 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2PrimitiveTransformation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2PrimitiveTransformation.php deleted file mode 100644 index 802d4913..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2PrimitiveTransformation.php +++ /dev/null @@ -1,197 +0,0 @@ -bucketingConfig = $bucketingConfig; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2BucketingConfig - */ - public function getBucketingConfig() - { - return $this->bucketingConfig; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2CharacterMaskConfig - */ - public function setCharacterMaskConfig(Google_Service_DLP_GooglePrivacyDlpV2CharacterMaskConfig $characterMaskConfig) - { - $this->characterMaskConfig = $characterMaskConfig; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2CharacterMaskConfig - */ - public function getCharacterMaskConfig() - { - return $this->characterMaskConfig; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2CryptoDeterministicConfig - */ - public function setCryptoDeterministicConfig(Google_Service_DLP_GooglePrivacyDlpV2CryptoDeterministicConfig $cryptoDeterministicConfig) - { - $this->cryptoDeterministicConfig = $cryptoDeterministicConfig; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2CryptoDeterministicConfig - */ - public function getCryptoDeterministicConfig() - { - return $this->cryptoDeterministicConfig; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2CryptoHashConfig - */ - public function setCryptoHashConfig(Google_Service_DLP_GooglePrivacyDlpV2CryptoHashConfig $cryptoHashConfig) - { - $this->cryptoHashConfig = $cryptoHashConfig; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2CryptoHashConfig - */ - public function getCryptoHashConfig() - { - return $this->cryptoHashConfig; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2CryptoReplaceFfxFpeConfig - */ - public function setCryptoReplaceFfxFpeConfig(Google_Service_DLP_GooglePrivacyDlpV2CryptoReplaceFfxFpeConfig $cryptoReplaceFfxFpeConfig) - { - $this->cryptoReplaceFfxFpeConfig = $cryptoReplaceFfxFpeConfig; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2CryptoReplaceFfxFpeConfig - */ - public function getCryptoReplaceFfxFpeConfig() - { - return $this->cryptoReplaceFfxFpeConfig; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2DateShiftConfig - */ - public function setDateShiftConfig(Google_Service_DLP_GooglePrivacyDlpV2DateShiftConfig $dateShiftConfig) - { - $this->dateShiftConfig = $dateShiftConfig; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2DateShiftConfig - */ - public function getDateShiftConfig() - { - return $this->dateShiftConfig; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2FixedSizeBucketingConfig - */ - public function setFixedSizeBucketingConfig(Google_Service_DLP_GooglePrivacyDlpV2FixedSizeBucketingConfig $fixedSizeBucketingConfig) - { - $this->fixedSizeBucketingConfig = $fixedSizeBucketingConfig; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2FixedSizeBucketingConfig - */ - public function getFixedSizeBucketingConfig() - { - return $this->fixedSizeBucketingConfig; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2RedactConfig - */ - public function setRedactConfig(Google_Service_DLP_GooglePrivacyDlpV2RedactConfig $redactConfig) - { - $this->redactConfig = $redactConfig; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2RedactConfig - */ - public function getRedactConfig() - { - return $this->redactConfig; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2ReplaceValueConfig - */ - public function setReplaceConfig(Google_Service_DLP_GooglePrivacyDlpV2ReplaceValueConfig $replaceConfig) - { - $this->replaceConfig = $replaceConfig; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2ReplaceValueConfig - */ - public function getReplaceConfig() - { - return $this->replaceConfig; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2ReplaceWithInfoTypeConfig - */ - public function setReplaceWithInfoTypeConfig(Google_Service_DLP_GooglePrivacyDlpV2ReplaceWithInfoTypeConfig $replaceWithInfoTypeConfig) - { - $this->replaceWithInfoTypeConfig = $replaceWithInfoTypeConfig; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2ReplaceWithInfoTypeConfig - */ - public function getReplaceWithInfoTypeConfig() - { - return $this->replaceWithInfoTypeConfig; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2TimePartConfig - */ - public function setTimePartConfig(Google_Service_DLP_GooglePrivacyDlpV2TimePartConfig $timePartConfig) - { - $this->timePartConfig = $timePartConfig; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2TimePartConfig - */ - public function getTimePartConfig() - { - return $this->timePartConfig; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2PrivacyMetric.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2PrivacyMetric.php deleted file mode 100644 index 0843d82b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2PrivacyMetric.php +++ /dev/null @@ -1,117 +0,0 @@ -categoricalStatsConfig = $categoricalStatsConfig; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2CategoricalStatsConfig - */ - public function getCategoricalStatsConfig() - { - return $this->categoricalStatsConfig; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2DeltaPresenceEstimationConfig - */ - public function setDeltaPresenceEstimationConfig(Google_Service_DLP_GooglePrivacyDlpV2DeltaPresenceEstimationConfig $deltaPresenceEstimationConfig) - { - $this->deltaPresenceEstimationConfig = $deltaPresenceEstimationConfig; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2DeltaPresenceEstimationConfig - */ - public function getDeltaPresenceEstimationConfig() - { - return $this->deltaPresenceEstimationConfig; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2KAnonymityConfig - */ - public function setKAnonymityConfig(Google_Service_DLP_GooglePrivacyDlpV2KAnonymityConfig $kAnonymityConfig) - { - $this->kAnonymityConfig = $kAnonymityConfig; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2KAnonymityConfig - */ - public function getKAnonymityConfig() - { - return $this->kAnonymityConfig; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2KMapEstimationConfig - */ - public function setKMapEstimationConfig(Google_Service_DLP_GooglePrivacyDlpV2KMapEstimationConfig $kMapEstimationConfig) - { - $this->kMapEstimationConfig = $kMapEstimationConfig; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2KMapEstimationConfig - */ - public function getKMapEstimationConfig() - { - return $this->kMapEstimationConfig; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2LDiversityConfig - */ - public function setLDiversityConfig(Google_Service_DLP_GooglePrivacyDlpV2LDiversityConfig $lDiversityConfig) - { - $this->lDiversityConfig = $lDiversityConfig; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2LDiversityConfig - */ - public function getLDiversityConfig() - { - return $this->lDiversityConfig; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2NumericalStatsConfig - */ - public function setNumericalStatsConfig(Google_Service_DLP_GooglePrivacyDlpV2NumericalStatsConfig $numericalStatsConfig) - { - $this->numericalStatsConfig = $numericalStatsConfig; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2NumericalStatsConfig - */ - public function getNumericalStatsConfig() - { - return $this->numericalStatsConfig; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Proximity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Proximity.php deleted file mode 100644 index 918faa4d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Proximity.php +++ /dev/null @@ -1,39 +0,0 @@ -windowAfter = $windowAfter; - } - public function getWindowAfter() - { - return $this->windowAfter; - } - public function setWindowBefore($windowBefore) - { - $this->windowBefore = $windowBefore; - } - public function getWindowBefore() - { - return $this->windowBefore; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2PublishFindingsToCloudDataCatalog.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2PublishFindingsToCloudDataCatalog.php deleted file mode 100644 index bf60b77f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2PublishFindingsToCloudDataCatalog.php +++ /dev/null @@ -1,20 +0,0 @@ -topic = $topic; - } - public function getTopic() - { - return $this->topic; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2PublishToStackdriver.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2PublishToStackdriver.php deleted file mode 100644 index cfe4437f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2PublishToStackdriver.php +++ /dev/null @@ -1,20 +0,0 @@ -customTag = $customTag; - } - public function getCustomTag() - { - return $this->customTag; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2FieldId - */ - public function setField(Google_Service_DLP_GooglePrivacyDlpV2FieldId $field) - { - $this->field = $field; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2FieldId - */ - public function getField() - { - return $this->field; - } - /** - * @param Google_Service_DLP_GoogleProtobufEmpty - */ - public function setInferred(Google_Service_DLP_GoogleProtobufEmpty $inferred) - { - $this->inferred = $inferred; - } - /** - * @return Google_Service_DLP_GoogleProtobufEmpty - */ - public function getInferred() - { - return $this->inferred; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2InfoType - */ - public function setInfoType(Google_Service_DLP_GooglePrivacyDlpV2InfoType $infoType) - { - $this->infoType = $infoType; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2InfoType - */ - public function getInfoType() - { - return $this->infoType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2QuasiIdField.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2QuasiIdField.php deleted file mode 100644 index 635dc98d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2QuasiIdField.php +++ /dev/null @@ -1,46 +0,0 @@ -customTag = $customTag; - } - public function getCustomTag() - { - return $this->customTag; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2FieldId - */ - public function setField(Google_Service_DLP_GooglePrivacyDlpV2FieldId $field) - { - $this->field = $field; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2FieldId - */ - public function getField() - { - return $this->field; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2QuasiIdentifierField.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2QuasiIdentifierField.php deleted file mode 100644 index 896c8921..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2QuasiIdentifierField.php +++ /dev/null @@ -1,46 +0,0 @@ -customTag = $customTag; - } - public function getCustomTag() - { - return $this->customTag; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2FieldId - */ - public function setField(Google_Service_DLP_GooglePrivacyDlpV2FieldId $field) - { - $this->field = $field; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2FieldId - */ - public function getField() - { - return $this->field; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2QuoteInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2QuoteInfo.php deleted file mode 100644 index c8a4b6a7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2QuoteInfo.php +++ /dev/null @@ -1,37 +0,0 @@ -dateTime = $dateTime; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2DateTime - */ - public function getDateTime() - { - return $this->dateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Range.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Range.php deleted file mode 100644 index 0a8a882c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Range.php +++ /dev/null @@ -1,39 +0,0 @@ -end = $end; - } - public function getEnd() - { - return $this->end; - } - public function setStart($start) - { - $this->start = $start; - } - public function getStart() - { - return $this->start; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2RecordCondition.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2RecordCondition.php deleted file mode 100644 index 5d87ce84..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2RecordCondition.php +++ /dev/null @@ -1,37 +0,0 @@ -expressions = $expressions; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2Expressions - */ - public function getExpressions() - { - return $this->expressions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2RecordKey.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2RecordKey.php deleted file mode 100644 index b57e7658..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2RecordKey.php +++ /dev/null @@ -1,63 +0,0 @@ -bigQueryKey = $bigQueryKey; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2BigQueryKey - */ - public function getBigQueryKey() - { - return $this->bigQueryKey; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2DatastoreKey - */ - public function setDatastoreKey(Google_Service_DLP_GooglePrivacyDlpV2DatastoreKey $datastoreKey) - { - $this->datastoreKey = $datastoreKey; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2DatastoreKey - */ - public function getDatastoreKey() - { - return $this->datastoreKey; - } - public function setIdValues($idValues) - { - $this->idValues = $idValues; - } - public function getIdValues() - { - return $this->idValues; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2RecordLocation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2RecordLocation.php deleted file mode 100644 index d02e3944..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2RecordLocation.php +++ /dev/null @@ -1,69 +0,0 @@ -fieldId = $fieldId; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2FieldId - */ - public function getFieldId() - { - return $this->fieldId; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2RecordKey - */ - public function setRecordKey(Google_Service_DLP_GooglePrivacyDlpV2RecordKey $recordKey) - { - $this->recordKey = $recordKey; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2RecordKey - */ - public function getRecordKey() - { - return $this->recordKey; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2TableLocation - */ - public function setTableLocation(Google_Service_DLP_GooglePrivacyDlpV2TableLocation $tableLocation) - { - $this->tableLocation = $tableLocation; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2TableLocation - */ - public function getTableLocation() - { - return $this->tableLocation; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2RecordSuppression.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2RecordSuppression.php deleted file mode 100644 index 3604b3a1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2RecordSuppression.php +++ /dev/null @@ -1,37 +0,0 @@ -condition = $condition; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2RecordCondition - */ - public function getCondition() - { - return $this->condition; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2RecordTransformations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2RecordTransformations.php deleted file mode 100644 index 9d432b63..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2RecordTransformations.php +++ /dev/null @@ -1,54 +0,0 @@ -fieldTransformations = $fieldTransformations; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2FieldTransformation - */ - public function getFieldTransformations() - { - return $this->fieldTransformations; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2RecordSuppression - */ - public function setRecordSuppressions($recordSuppressions) - { - $this->recordSuppressions = $recordSuppressions; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2RecordSuppression - */ - public function getRecordSuppressions() - { - return $this->recordSuppressions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2RedactConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2RedactConfig.php deleted file mode 100644 index 4d986a55..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2RedactConfig.php +++ /dev/null @@ -1,20 +0,0 @@ -byteItem = $byteItem; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2ByteContentItem - */ - public function getByteItem() - { - return $this->byteItem; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2ImageRedactionConfig - */ - public function setImageRedactionConfigs($imageRedactionConfigs) - { - $this->imageRedactionConfigs = $imageRedactionConfigs; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2ImageRedactionConfig - */ - public function getImageRedactionConfigs() - { - return $this->imageRedactionConfigs; - } - public function setIncludeFindings($includeFindings) - { - $this->includeFindings = $includeFindings; - } - public function getIncludeFindings() - { - return $this->includeFindings; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2InspectConfig - */ - public function setInspectConfig(Google_Service_DLP_GooglePrivacyDlpV2InspectConfig $inspectConfig) - { - $this->inspectConfig = $inspectConfig; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2InspectConfig - */ - public function getInspectConfig() - { - return $this->inspectConfig; - } - public function setLocationId($locationId) - { - $this->locationId = $locationId; - } - public function getLocationId() - { - return $this->locationId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2RedactImageResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2RedactImageResponse.php deleted file mode 100644 index c6612fb2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2RedactImageResponse.php +++ /dev/null @@ -1,55 +0,0 @@ -extractedText = $extractedText; - } - public function getExtractedText() - { - return $this->extractedText; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2InspectResult - */ - public function setInspectResult(Google_Service_DLP_GooglePrivacyDlpV2InspectResult $inspectResult) - { - $this->inspectResult = $inspectResult; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2InspectResult - */ - public function getInspectResult() - { - return $this->inspectResult; - } - public function setRedactedImage($redactedImage) - { - $this->redactedImage = $redactedImage; - } - public function getRedactedImage() - { - return $this->redactedImage; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Regex.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Regex.php deleted file mode 100644 index 7594f87a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Regex.php +++ /dev/null @@ -1,40 +0,0 @@ -groupIndexes = $groupIndexes; - } - public function getGroupIndexes() - { - return $this->groupIndexes; - } - public function setPattern($pattern) - { - $this->pattern = $pattern; - } - public function getPattern() - { - return $this->pattern; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ReidentifyContentRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ReidentifyContentRequest.php deleted file mode 100644 index 014354f7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ReidentifyContentRequest.php +++ /dev/null @@ -1,96 +0,0 @@ -inspectConfig = $inspectConfig; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2InspectConfig - */ - public function getInspectConfig() - { - return $this->inspectConfig; - } - public function setInspectTemplateName($inspectTemplateName) - { - $this->inspectTemplateName = $inspectTemplateName; - } - public function getInspectTemplateName() - { - return $this->inspectTemplateName; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2ContentItem - */ - public function setItem(Google_Service_DLP_GooglePrivacyDlpV2ContentItem $item) - { - $this->item = $item; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2ContentItem - */ - public function getItem() - { - return $this->item; - } - public function setLocationId($locationId) - { - $this->locationId = $locationId; - } - public function getLocationId() - { - return $this->locationId; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2DeidentifyConfig - */ - public function setReidentifyConfig(Google_Service_DLP_GooglePrivacyDlpV2DeidentifyConfig $reidentifyConfig) - { - $this->reidentifyConfig = $reidentifyConfig; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2DeidentifyConfig - */ - public function getReidentifyConfig() - { - return $this->reidentifyConfig; - } - public function setReidentifyTemplateName($reidentifyTemplateName) - { - $this->reidentifyTemplateName = $reidentifyTemplateName; - } - public function getReidentifyTemplateName() - { - return $this->reidentifyTemplateName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ReidentifyContentResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ReidentifyContentResponse.php deleted file mode 100644 index c296642a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ReidentifyContentResponse.php +++ /dev/null @@ -1,53 +0,0 @@ -item = $item; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2ContentItem - */ - public function getItem() - { - return $this->item; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2TransformationOverview - */ - public function setOverview(Google_Service_DLP_GooglePrivacyDlpV2TransformationOverview $overview) - { - $this->overview = $overview; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2TransformationOverview - */ - public function getOverview() - { - return $this->overview; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ReplaceValueConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ReplaceValueConfig.php deleted file mode 100644 index 77a1c3d8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ReplaceValueConfig.php +++ /dev/null @@ -1,37 +0,0 @@ -newValue = $newValue; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2Value - */ - public function getNewValue() - { - return $this->newValue; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ReplaceWithInfoTypeConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ReplaceWithInfoTypeConfig.php deleted file mode 100644 index bfe98b48..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ReplaceWithInfoTypeConfig.php +++ /dev/null @@ -1,20 +0,0 @@ -jobConfig = $jobConfig; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2InspectJobConfig - */ - public function getJobConfig() - { - return $this->jobConfig; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2InspectTemplate - */ - public function setSnapshotInspectTemplate(Google_Service_DLP_GooglePrivacyDlpV2InspectTemplate $snapshotInspectTemplate) - { - $this->snapshotInspectTemplate = $snapshotInspectTemplate; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2InspectTemplate - */ - public function getSnapshotInspectTemplate() - { - return $this->snapshotInspectTemplate; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Result.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Result.php deleted file mode 100644 index d08883ae..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Result.php +++ /dev/null @@ -1,56 +0,0 @@ -infoTypeStats = $infoTypeStats; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2InfoTypeStats - */ - public function getInfoTypeStats() - { - return $this->infoTypeStats; - } - public function setProcessedBytes($processedBytes) - { - $this->processedBytes = $processedBytes; - } - public function getProcessedBytes() - { - return $this->processedBytes; - } - public function setTotalEstimatedBytes($totalEstimatedBytes) - { - $this->totalEstimatedBytes = $totalEstimatedBytes; - } - public function getTotalEstimatedBytes() - { - return $this->totalEstimatedBytes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2RiskAnalysisJobConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2RiskAnalysisJobConfig.php deleted file mode 100644 index 97360357..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2RiskAnalysisJobConfig.php +++ /dev/null @@ -1,70 +0,0 @@ -actions = $actions; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2Action - */ - public function getActions() - { - return $this->actions; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2PrivacyMetric - */ - public function setPrivacyMetric(Google_Service_DLP_GooglePrivacyDlpV2PrivacyMetric $privacyMetric) - { - $this->privacyMetric = $privacyMetric; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2PrivacyMetric - */ - public function getPrivacyMetric() - { - return $this->privacyMetric; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2BigQueryTable - */ - public function setSourceTable(Google_Service_DLP_GooglePrivacyDlpV2BigQueryTable $sourceTable) - { - $this->sourceTable = $sourceTable; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2BigQueryTable - */ - public function getSourceTable() - { - return $this->sourceTable; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Row.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Row.php deleted file mode 100644 index 2799f8d4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Row.php +++ /dev/null @@ -1,38 +0,0 @@ -values = $values; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2Value - */ - public function getValues() - { - return $this->values; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2SaveFindings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2SaveFindings.php deleted file mode 100644 index 8e04960e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2SaveFindings.php +++ /dev/null @@ -1,37 +0,0 @@ -outputConfig = $outputConfig; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2OutputStorageConfig - */ - public function getOutputConfig() - { - return $this->outputConfig; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Schedule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Schedule.php deleted file mode 100644 index 53daa7d4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Schedule.php +++ /dev/null @@ -1,30 +0,0 @@ -recurrencePeriodDuration = $recurrencePeriodDuration; - } - public function getRecurrencePeriodDuration() - { - return $this->recurrencePeriodDuration; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2StatisticalTable.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2StatisticalTable.php deleted file mode 100644 index 252f592f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2StatisticalTable.php +++ /dev/null @@ -1,70 +0,0 @@ -quasiIds = $quasiIds; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2QuasiIdentifierField - */ - public function getQuasiIds() - { - return $this->quasiIds; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2FieldId - */ - public function setRelativeFrequency(Google_Service_DLP_GooglePrivacyDlpV2FieldId $relativeFrequency) - { - $this->relativeFrequency = $relativeFrequency; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2FieldId - */ - public function getRelativeFrequency() - { - return $this->relativeFrequency; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2BigQueryTable - */ - public function setTable(Google_Service_DLP_GooglePrivacyDlpV2BigQueryTable $table) - { - $this->table = $table; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2BigQueryTable - */ - public function getTable() - { - return $this->table; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2StorageConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2StorageConfig.php deleted file mode 100644 index ccb73a1d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2StorageConfig.php +++ /dev/null @@ -1,85 +0,0 @@ -bigQueryOptions = $bigQueryOptions; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2BigQueryOptions - */ - public function getBigQueryOptions() - { - return $this->bigQueryOptions; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2CloudStorageOptions - */ - public function setCloudStorageOptions(Google_Service_DLP_GooglePrivacyDlpV2CloudStorageOptions $cloudStorageOptions) - { - $this->cloudStorageOptions = $cloudStorageOptions; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2CloudStorageOptions - */ - public function getCloudStorageOptions() - { - return $this->cloudStorageOptions; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2DatastoreOptions - */ - public function setDatastoreOptions(Google_Service_DLP_GooglePrivacyDlpV2DatastoreOptions $datastoreOptions) - { - $this->datastoreOptions = $datastoreOptions; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2DatastoreOptions - */ - public function getDatastoreOptions() - { - return $this->datastoreOptions; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2TimespanConfig - */ - public function setTimespanConfig(Google_Service_DLP_GooglePrivacyDlpV2TimespanConfig $timespanConfig) - { - $this->timespanConfig = $timespanConfig; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2TimespanConfig - */ - public function getTimespanConfig() - { - return $this->timespanConfig; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2StoredInfoType.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2StoredInfoType.php deleted file mode 100644 index 80f3f037..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2StoredInfoType.php +++ /dev/null @@ -1,63 +0,0 @@ -currentVersion = $currentVersion; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2StoredInfoTypeVersion - */ - public function getCurrentVersion() - { - return $this->currentVersion; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2StoredInfoTypeVersion - */ - public function setPendingVersions($pendingVersions) - { - $this->pendingVersions = $pendingVersions; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2StoredInfoTypeVersion - */ - public function getPendingVersions() - { - return $this->pendingVersions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2StoredInfoTypeConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2StoredInfoTypeConfig.php deleted file mode 100644 index fdc91468..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2StoredInfoTypeConfig.php +++ /dev/null @@ -1,55 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2LargeCustomDictionaryConfig - */ - public function setLargeCustomDictionary(Google_Service_DLP_GooglePrivacyDlpV2LargeCustomDictionaryConfig $largeCustomDictionary) - { - $this->largeCustomDictionary = $largeCustomDictionary; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2LargeCustomDictionaryConfig - */ - public function getLargeCustomDictionary() - { - return $this->largeCustomDictionary; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2StoredInfoTypeStats.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2StoredInfoTypeStats.php deleted file mode 100644 index 8bcbb5b9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2StoredInfoTypeStats.php +++ /dev/null @@ -1,37 +0,0 @@ -largeCustomDictionary = $largeCustomDictionary; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2LargeCustomDictionaryStats - */ - public function getLargeCustomDictionary() - { - return $this->largeCustomDictionary; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2StoredInfoTypeVersion.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2StoredInfoTypeVersion.php deleted file mode 100644 index a438f002..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2StoredInfoTypeVersion.php +++ /dev/null @@ -1,88 +0,0 @@ -config = $config; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2StoredInfoTypeConfig - */ - public function getConfig() - { - return $this->config; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2Error - */ - public function setErrors($errors) - { - $this->errors = $errors; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2Error - */ - public function getErrors() - { - return $this->errors; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2StoredInfoTypeStats - */ - public function setStats(Google_Service_DLP_GooglePrivacyDlpV2StoredInfoTypeStats $stats) - { - $this->stats = $stats; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2StoredInfoTypeStats - */ - public function getStats() - { - return $this->stats; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2StoredType.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2StoredType.php deleted file mode 100644 index 5390e308..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2StoredType.php +++ /dev/null @@ -1,39 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2SummaryResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2SummaryResult.php deleted file mode 100644 index aec5c6ad..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2SummaryResult.php +++ /dev/null @@ -1,48 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setCount($count) - { - $this->count = $count; - } - public function getCount() - { - return $this->count; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2SurrogateType.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2SurrogateType.php deleted file mode 100644 index a8cf2e6b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2SurrogateType.php +++ /dev/null @@ -1,20 +0,0 @@ -headers = $headers; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2FieldId - */ - public function getHeaders() - { - return $this->headers; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2Row - */ - public function setRows($rows) - { - $this->rows = $rows; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2Row - */ - public function getRows() - { - return $this->rows; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2TableLocation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2TableLocation.php deleted file mode 100644 index 6af516aa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2TableLocation.php +++ /dev/null @@ -1,30 +0,0 @@ -rowIndex = $rowIndex; - } - public function getRowIndex() - { - return $this->rowIndex; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2TaggedField.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2TaggedField.php deleted file mode 100644 index 8a9f2654..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2TaggedField.php +++ /dev/null @@ -1,78 +0,0 @@ -customTag = $customTag; - } - public function getCustomTag() - { - return $this->customTag; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2FieldId - */ - public function setField(Google_Service_DLP_GooglePrivacyDlpV2FieldId $field) - { - $this->field = $field; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2FieldId - */ - public function getField() - { - return $this->field; - } - /** - * @param Google_Service_DLP_GoogleProtobufEmpty - */ - public function setInferred(Google_Service_DLP_GoogleProtobufEmpty $inferred) - { - $this->inferred = $inferred; - } - /** - * @return Google_Service_DLP_GoogleProtobufEmpty - */ - public function getInferred() - { - return $this->inferred; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2InfoType - */ - public function setInfoType(Google_Service_DLP_GooglePrivacyDlpV2InfoType $infoType) - { - $this->infoType = $infoType; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2InfoType - */ - public function getInfoType() - { - return $this->infoType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ThrowError.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ThrowError.php deleted file mode 100644 index c85e0465..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ThrowError.php +++ /dev/null @@ -1,20 +0,0 @@ -partToExtract = $partToExtract; - } - public function getPartToExtract() - { - return $this->partToExtract; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2TimeZone.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2TimeZone.php deleted file mode 100644 index 274e23d3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2TimeZone.php +++ /dev/null @@ -1,30 +0,0 @@ -offsetMinutes = $offsetMinutes; - } - public function getOffsetMinutes() - { - return $this->offsetMinutes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2TimespanConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2TimespanConfig.php deleted file mode 100644 index 665f95ad..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2TimespanConfig.php +++ /dev/null @@ -1,64 +0,0 @@ -enableAutoPopulationOfTimespanConfig = $enableAutoPopulationOfTimespanConfig; - } - public function getEnableAutoPopulationOfTimespanConfig() - { - return $this->enableAutoPopulationOfTimespanConfig; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2FieldId - */ - public function setTimestampField(Google_Service_DLP_GooglePrivacyDlpV2FieldId $timestampField) - { - $this->timestampField = $timestampField; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2FieldId - */ - public function getTimestampField() - { - return $this->timestampField; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2TransformationErrorHandling.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2TransformationErrorHandling.php deleted file mode 100644 index 24935a4f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2TransformationErrorHandling.php +++ /dev/null @@ -1,53 +0,0 @@ -leaveUntransformed = $leaveUntransformed; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2LeaveUntransformed - */ - public function getLeaveUntransformed() - { - return $this->leaveUntransformed; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2ThrowError - */ - public function setThrowError(Google_Service_DLP_GooglePrivacyDlpV2ThrowError $throwError) - { - $this->throwError = $throwError; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2ThrowError - */ - public function getThrowError() - { - return $this->throwError; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2TransformationOverview.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2TransformationOverview.php deleted file mode 100644 index b0f15af5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2TransformationOverview.php +++ /dev/null @@ -1,47 +0,0 @@ -transformationSummaries = $transformationSummaries; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2TransformationSummary - */ - public function getTransformationSummaries() - { - return $this->transformationSummaries; - } - public function setTransformedBytes($transformedBytes) - { - $this->transformedBytes = $transformedBytes; - } - public function getTransformedBytes() - { - return $this->transformedBytes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2TransformationSummary.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2TransformationSummary.php deleted file mode 100644 index 6bd352a5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2TransformationSummary.php +++ /dev/null @@ -1,127 +0,0 @@ -field = $field; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2FieldId - */ - public function getField() - { - return $this->field; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2FieldTransformation - */ - public function setFieldTransformations($fieldTransformations) - { - $this->fieldTransformations = $fieldTransformations; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2FieldTransformation - */ - public function getFieldTransformations() - { - return $this->fieldTransformations; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2InfoType - */ - public function setInfoType(Google_Service_DLP_GooglePrivacyDlpV2InfoType $infoType) - { - $this->infoType = $infoType; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2InfoType - */ - public function getInfoType() - { - return $this->infoType; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2RecordSuppression - */ - public function setRecordSuppress(Google_Service_DLP_GooglePrivacyDlpV2RecordSuppression $recordSuppress) - { - $this->recordSuppress = $recordSuppress; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2RecordSuppression - */ - public function getRecordSuppress() - { - return $this->recordSuppress; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2SummaryResult - */ - public function setResults($results) - { - $this->results = $results; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2SummaryResult - */ - public function getResults() - { - return $this->results; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2PrimitiveTransformation - */ - public function setTransformation(Google_Service_DLP_GooglePrivacyDlpV2PrimitiveTransformation $transformation) - { - $this->transformation = $transformation; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2PrimitiveTransformation - */ - public function getTransformation() - { - return $this->transformation; - } - public function setTransformedBytes($transformedBytes) - { - $this->transformedBytes = $transformedBytes; - } - public function getTransformedBytes() - { - return $this->transformedBytes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2TransientCryptoKey.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2TransientCryptoKey.php deleted file mode 100644 index 4cf8ae15..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2TransientCryptoKey.php +++ /dev/null @@ -1,30 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Trigger.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Trigger.php deleted file mode 100644 index f469c7a1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Trigger.php +++ /dev/null @@ -1,37 +0,0 @@ -schedule = $schedule; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2Schedule - */ - public function getSchedule() - { - return $this->schedule; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2UnwrappedCryptoKey.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2UnwrappedCryptoKey.php deleted file mode 100644 index 16ed0e14..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2UnwrappedCryptoKey.php +++ /dev/null @@ -1,30 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2UpdateDeidentifyTemplateRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2UpdateDeidentifyTemplateRequest.php deleted file mode 100644 index 7b592d37..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2UpdateDeidentifyTemplateRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -deidentifyTemplate = $deidentifyTemplate; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2DeidentifyTemplate - */ - public function getDeidentifyTemplate() - { - return $this->deidentifyTemplate; - } - public function setUpdateMask($updateMask) - { - $this->updateMask = $updateMask; - } - public function getUpdateMask() - { - return $this->updateMask; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2UpdateInspectTemplateRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2UpdateInspectTemplateRequest.php deleted file mode 100644 index b8399489..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2UpdateInspectTemplateRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -inspectTemplate = $inspectTemplate; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2InspectTemplate - */ - public function getInspectTemplate() - { - return $this->inspectTemplate; - } - public function setUpdateMask($updateMask) - { - $this->updateMask = $updateMask; - } - public function getUpdateMask() - { - return $this->updateMask; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2UpdateJobTriggerRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2UpdateJobTriggerRequest.php deleted file mode 100644 index 57842ab6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2UpdateJobTriggerRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -jobTrigger = $jobTrigger; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2JobTrigger - */ - public function getJobTrigger() - { - return $this->jobTrigger; - } - public function setUpdateMask($updateMask) - { - $this->updateMask = $updateMask; - } - public function getUpdateMask() - { - return $this->updateMask; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2UpdateStoredInfoTypeRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2UpdateStoredInfoTypeRequest.php deleted file mode 100644 index bbb08ecb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2UpdateStoredInfoTypeRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -config = $config; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2StoredInfoTypeConfig - */ - public function getConfig() - { - return $this->config; - } - public function setUpdateMask($updateMask) - { - $this->updateMask = $updateMask; - } - public function getUpdateMask() - { - return $this->updateMask; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Value.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Value.php deleted file mode 100644 index bfe8251c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2Value.php +++ /dev/null @@ -1,107 +0,0 @@ -booleanValue = $booleanValue; - } - public function getBooleanValue() - { - return $this->booleanValue; - } - /** - * @param Google_Service_DLP_GoogleTypeDate - */ - public function setDateValue(Google_Service_DLP_GoogleTypeDate $dateValue) - { - $this->dateValue = $dateValue; - } - /** - * @return Google_Service_DLP_GoogleTypeDate - */ - public function getDateValue() - { - return $this->dateValue; - } - public function setDayOfWeekValue($dayOfWeekValue) - { - $this->dayOfWeekValue = $dayOfWeekValue; - } - public function getDayOfWeekValue() - { - return $this->dayOfWeekValue; - } - public function setFloatValue($floatValue) - { - $this->floatValue = $floatValue; - } - public function getFloatValue() - { - return $this->floatValue; - } - public function setIntegerValue($integerValue) - { - $this->integerValue = $integerValue; - } - public function getIntegerValue() - { - return $this->integerValue; - } - public function setStringValue($stringValue) - { - $this->stringValue = $stringValue; - } - public function getStringValue() - { - return $this->stringValue; - } - /** - * @param Google_Service_DLP_GoogleTypeTimeOfDay - */ - public function setTimeValue(Google_Service_DLP_GoogleTypeTimeOfDay $timeValue) - { - $this->timeValue = $timeValue; - } - /** - * @return Google_Service_DLP_GoogleTypeTimeOfDay - */ - public function getTimeValue() - { - return $this->timeValue; - } - public function setTimestampValue($timestampValue) - { - $this->timestampValue = $timestampValue; - } - public function getTimestampValue() - { - return $this->timestampValue; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ValueFrequency.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ValueFrequency.php deleted file mode 100644 index f4abe5ed..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2ValueFrequency.php +++ /dev/null @@ -1,46 +0,0 @@ -count = $count; - } - public function getCount() - { - return $this->count; - } - /** - * @param Google_Service_DLP_GooglePrivacyDlpV2Value - */ - public function setValue(Google_Service_DLP_GooglePrivacyDlpV2Value $value) - { - $this->value = $value; - } - /** - * @return Google_Service_DLP_GooglePrivacyDlpV2Value - */ - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2WordList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2WordList.php deleted file mode 100644 index 07cbd9db..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GooglePrivacyDlpV2WordList.php +++ /dev/null @@ -1,31 +0,0 @@ -words = $words; - } - public function getWords() - { - return $this->words; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GoogleProtobufEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GoogleProtobufEmpty.php deleted file mode 100644 index 43aeea43..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GoogleProtobufEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GoogleTypeDate.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GoogleTypeDate.php deleted file mode 100644 index 7e1ef41e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GoogleTypeDate.php +++ /dev/null @@ -1,48 +0,0 @@ -day = $day; - } - public function getDay() - { - return $this->day; - } - public function setMonth($month) - { - $this->month = $month; - } - public function getMonth() - { - return $this->month; - } - public function setYear($year) - { - $this->year = $year; - } - public function getYear() - { - return $this->year; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GoogleTypeTimeOfDay.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GoogleTypeTimeOfDay.php deleted file mode 100644 index 12d99076..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/GoogleTypeTimeOfDay.php +++ /dev/null @@ -1,57 +0,0 @@ -hours = $hours; - } - public function getHours() - { - return $this->hours; - } - public function setMinutes($minutes) - { - $this->minutes = $minutes; - } - public function getMinutes() - { - return $this->minutes; - } - public function setNanos($nanos) - { - $this->nanos = $nanos; - } - public function getNanos() - { - return $this->nanos; - } - public function setSeconds($seconds) - { - $this->seconds = $seconds; - } - public function getSeconds() - { - return $this->seconds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/InfoTypes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/InfoTypes.php deleted file mode 100644 index b9435b6f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/InfoTypes.php +++ /dev/null @@ -1,50 +0,0 @@ - - * $dlpService = new Google_Service_DLP(...); - * $infoTypes = $dlpService->infoTypes; - * - */ -class Google_Service_DLP_Resource_InfoTypes extends Google_Service_Resource -{ - /** - * Returns a list of the sensitive information types that the DLP API supports. - * See https://cloud.google.com/dlp/docs/infotypes-reference to learn more. - * (infoTypes.listInfoTypes) - * - * @param array $optParams Optional parameters. - * - * @opt_param string locationId The geographic location to list info types. - * Reserved for future extensions. - * @opt_param string languageCode BCP-47 language code for localized infoType - * friendly names. If omitted, or if localized strings are not available, en-US - * strings will be returned. - * @opt_param string filter filter to only return infoTypes supported by certain - * parts of the API. Defaults to supported_by=INSPECT. - * @return Google_Service_DLP_GooglePrivacyDlpV2ListInfoTypesResponse - */ - public function listInfoTypes($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_DLP_GooglePrivacyDlpV2ListInfoTypesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/Locations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/Locations.php deleted file mode 100644 index 3f32638f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/Locations.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $dlpService = new Google_Service_DLP(...); - * $locations = $dlpService->locations; - * - */ -class Google_Service_DLP_Resource_Locations extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/LocationsInfoTypes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/LocationsInfoTypes.php deleted file mode 100644 index 66991386..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/LocationsInfoTypes.php +++ /dev/null @@ -1,50 +0,0 @@ - - * $dlpService = new Google_Service_DLP(...); - * $infoTypes = $dlpService->infoTypes; - * - */ -class Google_Service_DLP_Resource_LocationsInfoTypes extends Google_Service_Resource -{ - /** - * Returns a list of the sensitive information types that the DLP API supports. - * See https://cloud.google.com/dlp/docs/infotypes-reference to learn more. - * (infoTypes.listLocationsInfoTypes) - * - * @param string $locationId The geographic location to list info types. - * Reserved for future extensions. - * @param array $optParams Optional parameters. - * - * @opt_param string languageCode BCP-47 language code for localized infoType - * friendly names. If omitted, or if localized strings are not available, en-US - * strings will be returned. - * @opt_param string filter filter to only return infoTypes supported by certain - * parts of the API. Defaults to supported_by=INSPECT. - * @return Google_Service_DLP_GooglePrivacyDlpV2ListInfoTypesResponse - */ - public function listLocationsInfoTypes($locationId, $optParams = array()) - { - $params = array('locationId' => $locationId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_DLP_GooglePrivacyDlpV2ListInfoTypesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/Organizations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/Organizations.php deleted file mode 100644 index fe0cb0c7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/Organizations.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $dlpService = new Google_Service_DLP(...); - * $organizations = $dlpService->organizations; - * - */ -class Google_Service_DLP_Resource_Organizations extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/OrganizationsDeidentifyTemplates.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/OrganizationsDeidentifyTemplates.php deleted file mode 100644 index c817322e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/OrganizationsDeidentifyTemplates.php +++ /dev/null @@ -1,134 +0,0 @@ - - * $dlpService = new Google_Service_DLP(...); - * $deidentifyTemplates = $dlpService->deidentifyTemplates; - * - */ -class Google_Service_DLP_Resource_OrganizationsDeidentifyTemplates extends Google_Service_Resource -{ - /** - * Creates a DeidentifyTemplate for re-using frequently used configuration for - * de-identifying content, images, and storage. See - * https://cloud.google.com/dlp/docs/creating-templates-deid to learn more. - * (deidentifyTemplates.create) - * - * @param string $parent Required. The parent resource name, for example - * projects/my-project-id or organizations/my-org-id. - * @param Google_Service_DLP_GooglePrivacyDlpV2CreateDeidentifyTemplateRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GooglePrivacyDlpV2DeidentifyTemplate - */ - public function create($parent, Google_Service_DLP_GooglePrivacyDlpV2CreateDeidentifyTemplateRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_DLP_GooglePrivacyDlpV2DeidentifyTemplate"); - } - /** - * Deletes a DeidentifyTemplate. See https://cloud.google.com/dlp/docs/creating- - * templates-deid to learn more. (deidentifyTemplates.delete) - * - * @param string $name Required. Resource name of the organization and - * deidentify template to be deleted, for example - * `organizations/433245324/deidentifyTemplates/432452342` or projects/project- - * id/deidentifyTemplates/432452342. - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GoogleProtobufEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_DLP_GoogleProtobufEmpty"); - } - /** - * Gets a DeidentifyTemplate. See https://cloud.google.com/dlp/docs/creating- - * templates-deid to learn more. (deidentifyTemplates.get) - * - * @param string $name Required. Resource name of the organization and - * deidentify template to be read, for example - * `organizations/433245324/deidentifyTemplates/432452342` or projects/project- - * id/deidentifyTemplates/432452342. - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GooglePrivacyDlpV2DeidentifyTemplate - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_DLP_GooglePrivacyDlpV2DeidentifyTemplate"); - } - /** - * Lists DeidentifyTemplates. See https://cloud.google.com/dlp/docs/creating- - * templates-deid to learn more. - * (deidentifyTemplates.listOrganizationsDeidentifyTemplates) - * - * @param string $parent Required. The parent resource name, for example - * projects/my-project-id or organizations/my-org-id. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Page token to continue retrieval. Comes from - * previous call to `ListDeidentifyTemplates`. - * @opt_param string orderBy Comma separated list of fields to order by, - * followed by `asc` or `desc` postfix. This list is case-insensitive, default - * sorting order is ascending, redundant space characters are insignificant. - * - * Example: `name asc,update_time, create_time desc` - * - * Supported fields are: - * - * - `create_time`: corresponds to time the template was created. - - * `update_time`: corresponds to time the template was last updated. - `name`: - * corresponds to template's name. - `display_name`: corresponds to template's - * display name. - * @opt_param int pageSize Size of the page, can be limited by server. If zero - * server returns a page of max size 100. - * @opt_param string locationId The geographic location where deidentifications - * templates will be retrieved from. Use `-` for all locations. Reserved for - * future extensions. - * @return Google_Service_DLP_GooglePrivacyDlpV2ListDeidentifyTemplatesResponse - */ - public function listOrganizationsDeidentifyTemplates($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_DLP_GooglePrivacyDlpV2ListDeidentifyTemplatesResponse"); - } - /** - * Updates the DeidentifyTemplate. See https://cloud.google.com/dlp/docs - * /creating-templates-deid to learn more. (deidentifyTemplates.patch) - * - * @param string $name Required. Resource name of organization and deidentify - * template to be updated, for example - * `organizations/433245324/deidentifyTemplates/432452342` or projects/project- - * id/deidentifyTemplates/432452342. - * @param Google_Service_DLP_GooglePrivacyDlpV2UpdateDeidentifyTemplateRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GooglePrivacyDlpV2DeidentifyTemplate - */ - public function patch($name, Google_Service_DLP_GooglePrivacyDlpV2UpdateDeidentifyTemplateRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_DLP_GooglePrivacyDlpV2DeidentifyTemplate"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/OrganizationsInspectTemplates.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/OrganizationsInspectTemplates.php deleted file mode 100644 index bf4179dc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/OrganizationsInspectTemplates.php +++ /dev/null @@ -1,133 +0,0 @@ - - * $dlpService = new Google_Service_DLP(...); - * $inspectTemplates = $dlpService->inspectTemplates; - * - */ -class Google_Service_DLP_Resource_OrganizationsInspectTemplates extends Google_Service_Resource -{ - /** - * Creates an InspectTemplate for re-using frequently used configuration for - * inspecting content, images, and storage. See - * https://cloud.google.com/dlp/docs/creating-templates to learn more. - * (inspectTemplates.create) - * - * @param string $parent Required. The parent resource name, for example - * projects/my-project-id or organizations/my-org-id. - * @param Google_Service_DLP_GooglePrivacyDlpV2CreateInspectTemplateRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GooglePrivacyDlpV2InspectTemplate - */ - public function create($parent, Google_Service_DLP_GooglePrivacyDlpV2CreateInspectTemplateRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_DLP_GooglePrivacyDlpV2InspectTemplate"); - } - /** - * Deletes an InspectTemplate. See https://cloud.google.com/dlp/docs/creating- - * templates to learn more. (inspectTemplates.delete) - * - * @param string $name Required. Resource name of the organization and - * inspectTemplate to be deleted, for example - * `organizations/433245324/inspectTemplates/432452342` or projects/project- - * id/inspectTemplates/432452342. - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GoogleProtobufEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_DLP_GoogleProtobufEmpty"); - } - /** - * Gets an InspectTemplate. See https://cloud.google.com/dlp/docs/creating- - * templates to learn more. (inspectTemplates.get) - * - * @param string $name Required. Resource name of the organization and - * inspectTemplate to be read, for example - * `organizations/433245324/inspectTemplates/432452342` or projects/project- - * id/inspectTemplates/432452342. - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GooglePrivacyDlpV2InspectTemplate - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_DLP_GooglePrivacyDlpV2InspectTemplate"); - } - /** - * Lists InspectTemplates. See https://cloud.google.com/dlp/docs/creating- - * templates to learn more. (inspectTemplates.listOrganizationsInspectTemplates) - * - * @param string $parent Required. The parent resource name, for example - * projects/my-project-id or organizations/my-org-id. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Page token to continue retrieval. Comes from - * previous call to `ListInspectTemplates`. - * @opt_param string orderBy Comma separated list of fields to order by, - * followed by `asc` or `desc` postfix. This list is case-insensitive, default - * sorting order is ascending, redundant space characters are insignificant. - * - * Example: `name asc,update_time, create_time desc` - * - * Supported fields are: - * - * - `create_time`: corresponds to time the template was created. - - * `update_time`: corresponds to time the template was last updated. - `name`: - * corresponds to template's name. - `display_name`: corresponds to template's - * display name. - * @opt_param int pageSize Size of the page, can be limited by server. If zero - * server returns a page of max size 100. - * @opt_param string locationId The geographic location where inspection - * templates will be retrieved from. Use `-` for all locations. Reserved for - * future extensions. - * @return Google_Service_DLP_GooglePrivacyDlpV2ListInspectTemplatesResponse - */ - public function listOrganizationsInspectTemplates($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_DLP_GooglePrivacyDlpV2ListInspectTemplatesResponse"); - } - /** - * Updates the InspectTemplate. See https://cloud.google.com/dlp/docs/creating- - * templates to learn more. (inspectTemplates.patch) - * - * @param string $name Required. Resource name of organization and - * inspectTemplate to be updated, for example - * `organizations/433245324/inspectTemplates/432452342` or projects/project- - * id/inspectTemplates/432452342. - * @param Google_Service_DLP_GooglePrivacyDlpV2UpdateInspectTemplateRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GooglePrivacyDlpV2InspectTemplate - */ - public function patch($name, Google_Service_DLP_GooglePrivacyDlpV2UpdateInspectTemplateRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_DLP_GooglePrivacyDlpV2InspectTemplate"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/OrganizationsLocations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/OrganizationsLocations.php deleted file mode 100644 index a445993e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/OrganizationsLocations.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $dlpService = new Google_Service_DLP(...); - * $locations = $dlpService->locations; - * - */ -class Google_Service_DLP_Resource_OrganizationsLocations extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/OrganizationsLocationsDeidentifyTemplates.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/OrganizationsLocationsDeidentifyTemplates.php deleted file mode 100644 index a726dca3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/OrganizationsLocationsDeidentifyTemplates.php +++ /dev/null @@ -1,136 +0,0 @@ - - * $dlpService = new Google_Service_DLP(...); - * $deidentifyTemplates = $dlpService->deidentifyTemplates; - * - */ -class Google_Service_DLP_Resource_OrganizationsLocationsDeidentifyTemplates extends Google_Service_Resource -{ - /** - * Creates a DeidentifyTemplate for re-using frequently used configuration for - * de-identifying content, images, and storage. See - * https://cloud.google.com/dlp/docs/creating-templates-deid to learn more. - * (deidentifyTemplates.create) - * - * @param string $parent Required. The parent resource name, for example - * projects/my-project-id or organizations/my-org-id. - * @param string $locationId The geographic location to store the - * deidentification template. Reserved for future extensions. - * @param Google_Service_DLP_GooglePrivacyDlpV2CreateDeidentifyTemplateRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GooglePrivacyDlpV2DeidentifyTemplate - */ - public function create($parent, $locationId, Google_Service_DLP_GooglePrivacyDlpV2CreateDeidentifyTemplateRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'locationId' => $locationId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_DLP_GooglePrivacyDlpV2DeidentifyTemplate"); - } - /** - * Deletes a DeidentifyTemplate. See https://cloud.google.com/dlp/docs/creating- - * templates-deid to learn more. (deidentifyTemplates.delete) - * - * @param string $name Required. Resource name of the organization and - * deidentify template to be deleted, for example - * `organizations/433245324/deidentifyTemplates/432452342` or projects/project- - * id/deidentifyTemplates/432452342. - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GoogleProtobufEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_DLP_GoogleProtobufEmpty"); - } - /** - * Gets a DeidentifyTemplate. See https://cloud.google.com/dlp/docs/creating- - * templates-deid to learn more. (deidentifyTemplates.get) - * - * @param string $name Required. Resource name of the organization and - * deidentify template to be read, for example - * `organizations/433245324/deidentifyTemplates/432452342` or projects/project- - * id/deidentifyTemplates/432452342. - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GooglePrivacyDlpV2DeidentifyTemplate - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_DLP_GooglePrivacyDlpV2DeidentifyTemplate"); - } - /** - * Lists DeidentifyTemplates. See https://cloud.google.com/dlp/docs/creating- - * templates-deid to learn more. - * (deidentifyTemplates.listOrganizationsLocationsDeidentifyTemplates) - * - * @param string $parent Required. The parent resource name, for example - * projects/my-project-id or organizations/my-org-id. - * @param string $locationId The geographic location where deidentifications - * templates will be retrieved from. Use `-` for all locations. Reserved for - * future extensions. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Page token to continue retrieval. Comes from - * previous call to `ListDeidentifyTemplates`. - * @opt_param string orderBy Comma separated list of fields to order by, - * followed by `asc` or `desc` postfix. This list is case-insensitive, default - * sorting order is ascending, redundant space characters are insignificant. - * - * Example: `name asc,update_time, create_time desc` - * - * Supported fields are: - * - * - `create_time`: corresponds to time the template was created. - - * `update_time`: corresponds to time the template was last updated. - `name`: - * corresponds to template's name. - `display_name`: corresponds to template's - * display name. - * @opt_param int pageSize Size of the page, can be limited by server. If zero - * server returns a page of max size 100. - * @return Google_Service_DLP_GooglePrivacyDlpV2ListDeidentifyTemplatesResponse - */ - public function listOrganizationsLocationsDeidentifyTemplates($parent, $locationId, $optParams = array()) - { - $params = array('parent' => $parent, 'locationId' => $locationId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_DLP_GooglePrivacyDlpV2ListDeidentifyTemplatesResponse"); - } - /** - * Updates the DeidentifyTemplate. See https://cloud.google.com/dlp/docs - * /creating-templates-deid to learn more. (deidentifyTemplates.patch) - * - * @param string $name Required. Resource name of organization and deidentify - * template to be updated, for example - * `organizations/433245324/deidentifyTemplates/432452342` or projects/project- - * id/deidentifyTemplates/432452342. - * @param Google_Service_DLP_GooglePrivacyDlpV2UpdateDeidentifyTemplateRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GooglePrivacyDlpV2DeidentifyTemplate - */ - public function patch($name, Google_Service_DLP_GooglePrivacyDlpV2UpdateDeidentifyTemplateRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_DLP_GooglePrivacyDlpV2DeidentifyTemplate"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/OrganizationsLocationsInspectTemplates.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/OrganizationsLocationsInspectTemplates.php deleted file mode 100644 index bda6487b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/OrganizationsLocationsInspectTemplates.php +++ /dev/null @@ -1,136 +0,0 @@ - - * $dlpService = new Google_Service_DLP(...); - * $inspectTemplates = $dlpService->inspectTemplates; - * - */ -class Google_Service_DLP_Resource_OrganizationsLocationsInspectTemplates extends Google_Service_Resource -{ - /** - * Creates an InspectTemplate for re-using frequently used configuration for - * inspecting content, images, and storage. See - * https://cloud.google.com/dlp/docs/creating-templates to learn more. - * (inspectTemplates.create) - * - * @param string $parent Required. The parent resource name, for example - * projects/my-project-id or organizations/my-org-id. - * @param string $locationId The geographic location to store the inspection - * template. Reserved for future extensions. - * @param Google_Service_DLP_GooglePrivacyDlpV2CreateInspectTemplateRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GooglePrivacyDlpV2InspectTemplate - */ - public function create($parent, $locationId, Google_Service_DLP_GooglePrivacyDlpV2CreateInspectTemplateRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'locationId' => $locationId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_DLP_GooglePrivacyDlpV2InspectTemplate"); - } - /** - * Deletes an InspectTemplate. See https://cloud.google.com/dlp/docs/creating- - * templates to learn more. (inspectTemplates.delete) - * - * @param string $name Required. Resource name of the organization and - * inspectTemplate to be deleted, for example - * `organizations/433245324/inspectTemplates/432452342` or projects/project- - * id/inspectTemplates/432452342. - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GoogleProtobufEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_DLP_GoogleProtobufEmpty"); - } - /** - * Gets an InspectTemplate. See https://cloud.google.com/dlp/docs/creating- - * templates to learn more. (inspectTemplates.get) - * - * @param string $name Required. Resource name of the organization and - * inspectTemplate to be read, for example - * `organizations/433245324/inspectTemplates/432452342` or projects/project- - * id/inspectTemplates/432452342. - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GooglePrivacyDlpV2InspectTemplate - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_DLP_GooglePrivacyDlpV2InspectTemplate"); - } - /** - * Lists InspectTemplates. See https://cloud.google.com/dlp/docs/creating- - * templates to learn more. - * (inspectTemplates.listOrganizationsLocationsInspectTemplates) - * - * @param string $parent Required. The parent resource name, for example - * projects/my-project-id or organizations/my-org-id. - * @param string $locationId The geographic location where inspection templates - * will be retrieved from. Use `-` for all locations. Reserved for future - * extensions. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Page token to continue retrieval. Comes from - * previous call to `ListInspectTemplates`. - * @opt_param string orderBy Comma separated list of fields to order by, - * followed by `asc` or `desc` postfix. This list is case-insensitive, default - * sorting order is ascending, redundant space characters are insignificant. - * - * Example: `name asc,update_time, create_time desc` - * - * Supported fields are: - * - * - `create_time`: corresponds to time the template was created. - - * `update_time`: corresponds to time the template was last updated. - `name`: - * corresponds to template's name. - `display_name`: corresponds to template's - * display name. - * @opt_param int pageSize Size of the page, can be limited by server. If zero - * server returns a page of max size 100. - * @return Google_Service_DLP_GooglePrivacyDlpV2ListInspectTemplatesResponse - */ - public function listOrganizationsLocationsInspectTemplates($parent, $locationId, $optParams = array()) - { - $params = array('parent' => $parent, 'locationId' => $locationId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_DLP_GooglePrivacyDlpV2ListInspectTemplatesResponse"); - } - /** - * Updates the InspectTemplate. See https://cloud.google.com/dlp/docs/creating- - * templates to learn more. (inspectTemplates.patch) - * - * @param string $name Required. Resource name of organization and - * inspectTemplate to be updated, for example - * `organizations/433245324/inspectTemplates/432452342` or projects/project- - * id/inspectTemplates/432452342. - * @param Google_Service_DLP_GooglePrivacyDlpV2UpdateInspectTemplateRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GooglePrivacyDlpV2InspectTemplate - */ - public function patch($name, Google_Service_DLP_GooglePrivacyDlpV2UpdateInspectTemplateRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_DLP_GooglePrivacyDlpV2InspectTemplate"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/OrganizationsLocationsStoredInfoTypes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/OrganizationsLocationsStoredInfoTypes.php deleted file mode 100644 index c12b2f55..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/OrganizationsLocationsStoredInfoTypes.php +++ /dev/null @@ -1,136 +0,0 @@ - - * $dlpService = new Google_Service_DLP(...); - * $storedInfoTypes = $dlpService->storedInfoTypes; - * - */ -class Google_Service_DLP_Resource_OrganizationsLocationsStoredInfoTypes extends Google_Service_Resource -{ - /** - * Creates a pre-built stored infoType to be used for inspection. See - * https://cloud.google.com/dlp/docs/creating-stored-infotypes to learn more. - * (storedInfoTypes.create) - * - * @param string $parent Required. The parent resource name, for example - * projects/my-project-id or organizations/my-org-id. - * @param string $locationId The geographic location to store the stored - * infoType. Reserved for future extensions. - * @param Google_Service_DLP_GooglePrivacyDlpV2CreateStoredInfoTypeRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GooglePrivacyDlpV2StoredInfoType - */ - public function create($parent, $locationId, Google_Service_DLP_GooglePrivacyDlpV2CreateStoredInfoTypeRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'locationId' => $locationId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_DLP_GooglePrivacyDlpV2StoredInfoType"); - } - /** - * Deletes a stored infoType. See https://cloud.google.com/dlp/docs/creating- - * stored-infotypes to learn more. (storedInfoTypes.delete) - * - * @param string $name Required. Resource name of the organization and - * storedInfoType to be deleted, for example - * `organizations/433245324/storedInfoTypes/432452342` or projects/project- - * id/storedInfoTypes/432452342. - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GoogleProtobufEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_DLP_GoogleProtobufEmpty"); - } - /** - * Gets a stored infoType. See https://cloud.google.com/dlp/docs/creating- - * stored-infotypes to learn more. (storedInfoTypes.get) - * - * @param string $name Required. Resource name of the organization and - * storedInfoType to be read, for example - * `organizations/433245324/storedInfoTypes/432452342` or projects/project- - * id/storedInfoTypes/432452342. - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GooglePrivacyDlpV2StoredInfoType - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_DLP_GooglePrivacyDlpV2StoredInfoType"); - } - /** - * Lists stored infoTypes. See https://cloud.google.com/dlp/docs/creating- - * stored-infotypes to learn more. - * (storedInfoTypes.listOrganizationsLocationsStoredInfoTypes) - * - * @param string $parent Required. The parent resource name, for example - * projects/my-project-id or organizations/my-org-id. - * @param string $locationId The geographic location where stored infoTypes will - * be retrieved from. Use `-` for all locations. Reserved for future extensions. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Page token to continue retrieval. Comes from - * previous call to `ListStoredInfoTypes`. - * @opt_param string orderBy Comma separated list of fields to order by, - * followed by `asc` or `desc` postfix. This list is case-insensitive, default - * sorting order is ascending, redundant space characters are insignificant. - * - * Example: `name asc, display_name, create_time desc` - * - * Supported fields are: - * - * - `create_time`: corresponds to time the most recent version of the resource - * was created. - `state`: corresponds to the state of the resource. - `name`: - * corresponds to resource name. - `display_name`: corresponds to info type's - * display name. - * @opt_param int pageSize Size of the page, can be limited by server. If zero - * server returns a page of max size 100. - * @return Google_Service_DLP_GooglePrivacyDlpV2ListStoredInfoTypesResponse - */ - public function listOrganizationsLocationsStoredInfoTypes($parent, $locationId, $optParams = array()) - { - $params = array('parent' => $parent, 'locationId' => $locationId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_DLP_GooglePrivacyDlpV2ListStoredInfoTypesResponse"); - } - /** - * Updates the stored infoType by creating a new version. The existing version - * will continue to be used until the new version is ready. See - * https://cloud.google.com/dlp/docs/creating-stored-infotypes to learn more. - * (storedInfoTypes.patch) - * - * @param string $name Required. Resource name of organization and - * storedInfoType to be updated, for example - * `organizations/433245324/storedInfoTypes/432452342` or projects/project- - * id/storedInfoTypes/432452342. - * @param Google_Service_DLP_GooglePrivacyDlpV2UpdateStoredInfoTypeRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GooglePrivacyDlpV2StoredInfoType - */ - public function patch($name, Google_Service_DLP_GooglePrivacyDlpV2UpdateStoredInfoTypeRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_DLP_GooglePrivacyDlpV2StoredInfoType"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/OrganizationsStoredInfoTypes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/OrganizationsStoredInfoTypes.php deleted file mode 100644 index 33086fb3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/OrganizationsStoredInfoTypes.php +++ /dev/null @@ -1,135 +0,0 @@ - - * $dlpService = new Google_Service_DLP(...); - * $storedInfoTypes = $dlpService->storedInfoTypes; - * - */ -class Google_Service_DLP_Resource_OrganizationsStoredInfoTypes extends Google_Service_Resource -{ - /** - * Creates a pre-built stored infoType to be used for inspection. See - * https://cloud.google.com/dlp/docs/creating-stored-infotypes to learn more. - * (storedInfoTypes.create) - * - * @param string $parent Required. The parent resource name, for example - * projects/my-project-id or organizations/my-org-id. - * @param Google_Service_DLP_GooglePrivacyDlpV2CreateStoredInfoTypeRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GooglePrivacyDlpV2StoredInfoType - */ - public function create($parent, Google_Service_DLP_GooglePrivacyDlpV2CreateStoredInfoTypeRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_DLP_GooglePrivacyDlpV2StoredInfoType"); - } - /** - * Deletes a stored infoType. See https://cloud.google.com/dlp/docs/creating- - * stored-infotypes to learn more. (storedInfoTypes.delete) - * - * @param string $name Required. Resource name of the organization and - * storedInfoType to be deleted, for example - * `organizations/433245324/storedInfoTypes/432452342` or projects/project- - * id/storedInfoTypes/432452342. - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GoogleProtobufEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_DLP_GoogleProtobufEmpty"); - } - /** - * Gets a stored infoType. See https://cloud.google.com/dlp/docs/creating- - * stored-infotypes to learn more. (storedInfoTypes.get) - * - * @param string $name Required. Resource name of the organization and - * storedInfoType to be read, for example - * `organizations/433245324/storedInfoTypes/432452342` or projects/project- - * id/storedInfoTypes/432452342. - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GooglePrivacyDlpV2StoredInfoType - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_DLP_GooglePrivacyDlpV2StoredInfoType"); - } - /** - * Lists stored infoTypes. See https://cloud.google.com/dlp/docs/creating- - * stored-infotypes to learn more. - * (storedInfoTypes.listOrganizationsStoredInfoTypes) - * - * @param string $parent Required. The parent resource name, for example - * projects/my-project-id or organizations/my-org-id. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Page token to continue retrieval. Comes from - * previous call to `ListStoredInfoTypes`. - * @opt_param string orderBy Comma separated list of fields to order by, - * followed by `asc` or `desc` postfix. This list is case-insensitive, default - * sorting order is ascending, redundant space characters are insignificant. - * - * Example: `name asc, display_name, create_time desc` - * - * Supported fields are: - * - * - `create_time`: corresponds to time the most recent version of the resource - * was created. - `state`: corresponds to the state of the resource. - `name`: - * corresponds to resource name. - `display_name`: corresponds to info type's - * display name. - * @opt_param int pageSize Size of the page, can be limited by server. If zero - * server returns a page of max size 100. - * @opt_param string locationId The geographic location where stored infoTypes - * will be retrieved from. Use `-` for all locations. Reserved for future - * extensions. - * @return Google_Service_DLP_GooglePrivacyDlpV2ListStoredInfoTypesResponse - */ - public function listOrganizationsStoredInfoTypes($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_DLP_GooglePrivacyDlpV2ListStoredInfoTypesResponse"); - } - /** - * Updates the stored infoType by creating a new version. The existing version - * will continue to be used until the new version is ready. See - * https://cloud.google.com/dlp/docs/creating-stored-infotypes to learn more. - * (storedInfoTypes.patch) - * - * @param string $name Required. Resource name of organization and - * storedInfoType to be updated, for example - * `organizations/433245324/storedInfoTypes/432452342` or projects/project- - * id/storedInfoTypes/432452342. - * @param Google_Service_DLP_GooglePrivacyDlpV2UpdateStoredInfoTypeRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GooglePrivacyDlpV2StoredInfoType - */ - public function patch($name, Google_Service_DLP_GooglePrivacyDlpV2UpdateStoredInfoTypeRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_DLP_GooglePrivacyDlpV2StoredInfoType"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/Projects.php deleted file mode 100644 index 2e875601..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/Projects.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $dlpService = new Google_Service_DLP(...); - * $projects = $dlpService->projects; - * - */ -class Google_Service_DLP_Resource_Projects extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/ProjectsContent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/ProjectsContent.php deleted file mode 100644 index 8f95515d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/ProjectsContent.php +++ /dev/null @@ -1,89 +0,0 @@ - - * $dlpService = new Google_Service_DLP(...); - * $content = $dlpService->content; - * - */ -class Google_Service_DLP_Resource_ProjectsContent extends Google_Service_Resource -{ - /** - * De-identifies potentially sensitive info from a ContentItem. This method has - * limits on input size and output size. See https://cloud.google.com/dlp/docs - * /deidentify-sensitive-data to learn more. - * - * When no InfoTypes or CustomInfoTypes are specified in this request, the - * system will automatically choose what detectors to run. By default this may - * be all types, but may change over time as detectors are updated. - * (content.deidentify) - * - * @param string $parent The parent resource name, for example projects/my- - * project-id. - * @param Google_Service_DLP_GooglePrivacyDlpV2DeidentifyContentRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GooglePrivacyDlpV2DeidentifyContentResponse - */ - public function deidentify($parent, Google_Service_DLP_GooglePrivacyDlpV2DeidentifyContentRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('deidentify', array($params), "Google_Service_DLP_GooglePrivacyDlpV2DeidentifyContentResponse"); - } - /** - * Finds potentially sensitive info in content. This method has limits on input - * size, processing time, and output size. - * - * When no InfoTypes or CustomInfoTypes are specified in this request, the - * system will automatically choose what detectors to run. By default this may - * be all types, but may change over time as detectors are updated. - * - * For how to guides, see https://cloud.google.com/dlp/docs/inspecting-images - * and https://cloud.google.com/dlp/docs/inspecting-text, (content.inspect) - * - * @param string $parent The parent resource name, for example projects/my- - * project-id. - * @param Google_Service_DLP_GooglePrivacyDlpV2InspectContentRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GooglePrivacyDlpV2InspectContentResponse - */ - public function inspect($parent, Google_Service_DLP_GooglePrivacyDlpV2InspectContentRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('inspect', array($params), "Google_Service_DLP_GooglePrivacyDlpV2InspectContentResponse"); - } - /** - * Re-identifies content that has been de-identified. See - * https://cloud.google.com/dlp/docs/pseudonymization#re- - * identification_in_free_text_code_example to learn more. (content.reidentify) - * - * @param string $parent Required. The parent resource name. - * @param Google_Service_DLP_GooglePrivacyDlpV2ReidentifyContentRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GooglePrivacyDlpV2ReidentifyContentResponse - */ - public function reidentify($parent, Google_Service_DLP_GooglePrivacyDlpV2ReidentifyContentRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('reidentify', array($params), "Google_Service_DLP_GooglePrivacyDlpV2ReidentifyContentResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/ProjectsDeidentifyTemplates.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/ProjectsDeidentifyTemplates.php deleted file mode 100644 index 1988e83d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/ProjectsDeidentifyTemplates.php +++ /dev/null @@ -1,134 +0,0 @@ - - * $dlpService = new Google_Service_DLP(...); - * $deidentifyTemplates = $dlpService->deidentifyTemplates; - * - */ -class Google_Service_DLP_Resource_ProjectsDeidentifyTemplates extends Google_Service_Resource -{ - /** - * Creates a DeidentifyTemplate for re-using frequently used configuration for - * de-identifying content, images, and storage. See - * https://cloud.google.com/dlp/docs/creating-templates-deid to learn more. - * (deidentifyTemplates.create) - * - * @param string $parent Required. The parent resource name, for example - * projects/my-project-id or organizations/my-org-id. - * @param Google_Service_DLP_GooglePrivacyDlpV2CreateDeidentifyTemplateRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GooglePrivacyDlpV2DeidentifyTemplate - */ - public function create($parent, Google_Service_DLP_GooglePrivacyDlpV2CreateDeidentifyTemplateRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_DLP_GooglePrivacyDlpV2DeidentifyTemplate"); - } - /** - * Deletes a DeidentifyTemplate. See https://cloud.google.com/dlp/docs/creating- - * templates-deid to learn more. (deidentifyTemplates.delete) - * - * @param string $name Required. Resource name of the organization and - * deidentify template to be deleted, for example - * `organizations/433245324/deidentifyTemplates/432452342` or projects/project- - * id/deidentifyTemplates/432452342. - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GoogleProtobufEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_DLP_GoogleProtobufEmpty"); - } - /** - * Gets a DeidentifyTemplate. See https://cloud.google.com/dlp/docs/creating- - * templates-deid to learn more. (deidentifyTemplates.get) - * - * @param string $name Required. Resource name of the organization and - * deidentify template to be read, for example - * `organizations/433245324/deidentifyTemplates/432452342` or projects/project- - * id/deidentifyTemplates/432452342. - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GooglePrivacyDlpV2DeidentifyTemplate - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_DLP_GooglePrivacyDlpV2DeidentifyTemplate"); - } - /** - * Lists DeidentifyTemplates. See https://cloud.google.com/dlp/docs/creating- - * templates-deid to learn more. - * (deidentifyTemplates.listProjectsDeidentifyTemplates) - * - * @param string $parent Required. The parent resource name, for example - * projects/my-project-id or organizations/my-org-id. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Page token to continue retrieval. Comes from - * previous call to `ListDeidentifyTemplates`. - * @opt_param string orderBy Comma separated list of fields to order by, - * followed by `asc` or `desc` postfix. This list is case-insensitive, default - * sorting order is ascending, redundant space characters are insignificant. - * - * Example: `name asc,update_time, create_time desc` - * - * Supported fields are: - * - * - `create_time`: corresponds to time the template was created. - - * `update_time`: corresponds to time the template was last updated. - `name`: - * corresponds to template's name. - `display_name`: corresponds to template's - * display name. - * @opt_param int pageSize Size of the page, can be limited by server. If zero - * server returns a page of max size 100. - * @opt_param string locationId The geographic location where deidentifications - * templates will be retrieved from. Use `-` for all locations. Reserved for - * future extensions. - * @return Google_Service_DLP_GooglePrivacyDlpV2ListDeidentifyTemplatesResponse - */ - public function listProjectsDeidentifyTemplates($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_DLP_GooglePrivacyDlpV2ListDeidentifyTemplatesResponse"); - } - /** - * Updates the DeidentifyTemplate. See https://cloud.google.com/dlp/docs - * /creating-templates-deid to learn more. (deidentifyTemplates.patch) - * - * @param string $name Required. Resource name of organization and deidentify - * template to be updated, for example - * `organizations/433245324/deidentifyTemplates/432452342` or projects/project- - * id/deidentifyTemplates/432452342. - * @param Google_Service_DLP_GooglePrivacyDlpV2UpdateDeidentifyTemplateRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GooglePrivacyDlpV2DeidentifyTemplate - */ - public function patch($name, Google_Service_DLP_GooglePrivacyDlpV2UpdateDeidentifyTemplateRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_DLP_GooglePrivacyDlpV2DeidentifyTemplate"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/ProjectsDlpJobs.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/ProjectsDlpJobs.php deleted file mode 100644 index 58a450f4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/ProjectsDlpJobs.php +++ /dev/null @@ -1,161 +0,0 @@ - - * $dlpService = new Google_Service_DLP(...); - * $dlpJobs = $dlpService->dlpJobs; - * - */ -class Google_Service_DLP_Resource_ProjectsDlpJobs extends Google_Service_Resource -{ - /** - * Starts asynchronous cancellation on a long-running DlpJob. The server makes a - * best effort to cancel the DlpJob, but success is not guaranteed. See - * https://cloud.google.com/dlp/docs/inspecting-storage and - * https://cloud.google.com/dlp/docs/compute-risk-analysis to learn more. - * (dlpJobs.cancel) - * - * @param string $name Required. The name of the DlpJob resource to be - * cancelled. - * @param Google_Service_DLP_GooglePrivacyDlpV2CancelDlpJobRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GoogleProtobufEmpty - */ - public function cancel($name, Google_Service_DLP_GooglePrivacyDlpV2CancelDlpJobRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('cancel', array($params), "Google_Service_DLP_GoogleProtobufEmpty"); - } - /** - * Creates a new job to inspect storage or calculate risk metrics. See - * https://cloud.google.com/dlp/docs/inspecting-storage and - * https://cloud.google.com/dlp/docs/compute-risk-analysis to learn more. - * - * When no InfoTypes or CustomInfoTypes are specified in inspect jobs, the - * system will automatically choose what detectors to run. By default this may - * be all types, but may change over time as detectors are updated. - * (dlpJobs.create) - * - * @param string $parent Required. The parent resource name, for example - * projects/my-project-id. - * @param Google_Service_DLP_GooglePrivacyDlpV2CreateDlpJobRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GooglePrivacyDlpV2DlpJob - */ - public function create($parent, Google_Service_DLP_GooglePrivacyDlpV2CreateDlpJobRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_DLP_GooglePrivacyDlpV2DlpJob"); - } - /** - * Deletes a long-running DlpJob. This method indicates that the client is no - * longer interested in the DlpJob result. The job will be cancelled if - * possible. See https://cloud.google.com/dlp/docs/inspecting-storage and - * https://cloud.google.com/dlp/docs/compute-risk-analysis to learn more. - * (dlpJobs.delete) - * - * @param string $name Required. The name of the DlpJob resource to be deleted. - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GoogleProtobufEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_DLP_GoogleProtobufEmpty"); - } - /** - * Gets the latest state of a long-running DlpJob. See - * https://cloud.google.com/dlp/docs/inspecting-storage and - * https://cloud.google.com/dlp/docs/compute-risk-analysis to learn more. - * (dlpJobs.get) - * - * @param string $name Required. The name of the DlpJob resource. - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GooglePrivacyDlpV2DlpJob - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_DLP_GooglePrivacyDlpV2DlpJob"); - } - /** - * Lists DlpJobs that match the specified filter in the request. See - * https://cloud.google.com/dlp/docs/inspecting-storage and - * https://cloud.google.com/dlp/docs/compute-risk-analysis to learn more. - * (dlpJobs.listProjectsDlpJobs) - * - * @param string $parent Required. The parent resource name, for example - * projects/my-project-id. - * @param array $optParams Optional parameters. - * - * @opt_param string filter Allows filtering. - * - * Supported syntax: - * - * * Filter expressions are made up of one or more restrictions. * Restrictions - * can be combined by `AND` or `OR` logical operators. A sequence of - * restrictions implicitly uses `AND`. * A restriction has the form of `{field} - * {operator} {value}`. * Supported fields/values for inspect jobs: - - * `state` - PENDING|RUNNING|CANCELED|FINISHED|FAILED - `inspected_storage` - * - DATASTORE|CLOUD_STORAGE|BIGQUERY - `trigger_name` - The resource name - * of the trigger that created job. - 'end_time` - Corresponds to time the - * job finished. - 'start_time` - Corresponds to time the job finished. * - * Supported fields for risk analysis jobs: - `state` - - * RUNNING|CANCELED|FINISHED|FAILED - 'end_time` - Corresponds to time the - * job finished. - 'start_time` - Corresponds to time the job finished. * - * The operator must be `=` or `!=`. - * - * Examples: - * - * * inspected_storage = cloud_storage AND state = done * inspected_storage = - * cloud_storage OR inspected_storage = bigquery * inspected_storage = - * cloud_storage AND (state = done OR state = canceled) * end_time > - * \"2017-12-12T00:00:00+00:00\" - * - * The length of this field should be no more than 500 characters. - * @opt_param string pageToken The standard list page token. - * @opt_param string locationId The geographic location where jobs will be - * retrieved from. Use `-` for all locations. Reserved for future extensions. - * @opt_param int pageSize The standard list page size. - * @opt_param string orderBy Comma separated list of fields to order by, - * followed by `asc` or `desc` postfix. This list is case-insensitive, default - * sorting order is ascending, redundant space characters are insignificant. - * - * Example: `name asc, end_time asc, create_time desc` - * - * Supported fields are: - * - * - `create_time`: corresponds to time the job was created. - `end_time`: - * corresponds to time the job ended. - `name`: corresponds to job's name. - - * `state`: corresponds to `state` - * @opt_param string type The type of job. Defaults to `DlpJobType.INSPECT` - * @return Google_Service_DLP_GooglePrivacyDlpV2ListDlpJobsResponse - */ - public function listProjectsDlpJobs($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_DLP_GooglePrivacyDlpV2ListDlpJobsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/ProjectsImage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/ProjectsImage.php deleted file mode 100644 index 5fb4d633..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/ProjectsImage.php +++ /dev/null @@ -1,51 +0,0 @@ - - * $dlpService = new Google_Service_DLP(...); - * $image = $dlpService->image; - * - */ -class Google_Service_DLP_Resource_ProjectsImage extends Google_Service_Resource -{ - /** - * Redacts potentially sensitive info from an image. This method has limits on - * input size, processing time, and output size. See - * https://cloud.google.com/dlp/docs/redacting-sensitive-data-images to learn - * more. - * - * When no InfoTypes or CustomInfoTypes are specified in this request, the - * system will automatically choose what detectors to run. By default this may - * be all types, but may change over time as detectors are updated. - * (image.redact) - * - * @param string $parent The parent resource name, for example projects/my- - * project-id. - * @param Google_Service_DLP_GooglePrivacyDlpV2RedactImageRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GooglePrivacyDlpV2RedactImageResponse - */ - public function redact($parent, Google_Service_DLP_GooglePrivacyDlpV2RedactImageRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('redact', array($params), "Google_Service_DLP_GooglePrivacyDlpV2RedactImageResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/ProjectsInspectTemplates.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/ProjectsInspectTemplates.php deleted file mode 100644 index 3133137b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/ProjectsInspectTemplates.php +++ /dev/null @@ -1,133 +0,0 @@ - - * $dlpService = new Google_Service_DLP(...); - * $inspectTemplates = $dlpService->inspectTemplates; - * - */ -class Google_Service_DLP_Resource_ProjectsInspectTemplates extends Google_Service_Resource -{ - /** - * Creates an InspectTemplate for re-using frequently used configuration for - * inspecting content, images, and storage. See - * https://cloud.google.com/dlp/docs/creating-templates to learn more. - * (inspectTemplates.create) - * - * @param string $parent Required. The parent resource name, for example - * projects/my-project-id or organizations/my-org-id. - * @param Google_Service_DLP_GooglePrivacyDlpV2CreateInspectTemplateRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GooglePrivacyDlpV2InspectTemplate - */ - public function create($parent, Google_Service_DLP_GooglePrivacyDlpV2CreateInspectTemplateRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_DLP_GooglePrivacyDlpV2InspectTemplate"); - } - /** - * Deletes an InspectTemplate. See https://cloud.google.com/dlp/docs/creating- - * templates to learn more. (inspectTemplates.delete) - * - * @param string $name Required. Resource name of the organization and - * inspectTemplate to be deleted, for example - * `organizations/433245324/inspectTemplates/432452342` or projects/project- - * id/inspectTemplates/432452342. - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GoogleProtobufEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_DLP_GoogleProtobufEmpty"); - } - /** - * Gets an InspectTemplate. See https://cloud.google.com/dlp/docs/creating- - * templates to learn more. (inspectTemplates.get) - * - * @param string $name Required. Resource name of the organization and - * inspectTemplate to be read, for example - * `organizations/433245324/inspectTemplates/432452342` or projects/project- - * id/inspectTemplates/432452342. - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GooglePrivacyDlpV2InspectTemplate - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_DLP_GooglePrivacyDlpV2InspectTemplate"); - } - /** - * Lists InspectTemplates. See https://cloud.google.com/dlp/docs/creating- - * templates to learn more. (inspectTemplates.listProjectsInspectTemplates) - * - * @param string $parent Required. The parent resource name, for example - * projects/my-project-id or organizations/my-org-id. - * @param array $optParams Optional parameters. - * - * @opt_param int pageSize Size of the page, can be limited by server. If zero - * server returns a page of max size 100. - * @opt_param string locationId The geographic location where inspection - * templates will be retrieved from. Use `-` for all locations. Reserved for - * future extensions. - * @opt_param string pageToken Page token to continue retrieval. Comes from - * previous call to `ListInspectTemplates`. - * @opt_param string orderBy Comma separated list of fields to order by, - * followed by `asc` or `desc` postfix. This list is case-insensitive, default - * sorting order is ascending, redundant space characters are insignificant. - * - * Example: `name asc,update_time, create_time desc` - * - * Supported fields are: - * - * - `create_time`: corresponds to time the template was created. - - * `update_time`: corresponds to time the template was last updated. - `name`: - * corresponds to template's name. - `display_name`: corresponds to template's - * display name. - * @return Google_Service_DLP_GooglePrivacyDlpV2ListInspectTemplatesResponse - */ - public function listProjectsInspectTemplates($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_DLP_GooglePrivacyDlpV2ListInspectTemplatesResponse"); - } - /** - * Updates the InspectTemplate. See https://cloud.google.com/dlp/docs/creating- - * templates to learn more. (inspectTemplates.patch) - * - * @param string $name Required. Resource name of organization and - * inspectTemplate to be updated, for example - * `organizations/433245324/inspectTemplates/432452342` or projects/project- - * id/inspectTemplates/432452342. - * @param Google_Service_DLP_GooglePrivacyDlpV2UpdateInspectTemplateRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GooglePrivacyDlpV2InspectTemplate - */ - public function patch($name, Google_Service_DLP_GooglePrivacyDlpV2UpdateInspectTemplateRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_DLP_GooglePrivacyDlpV2InspectTemplate"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/ProjectsJobTriggers.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/ProjectsJobTriggers.php deleted file mode 100644 index 38ad9235..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/ProjectsJobTriggers.php +++ /dev/null @@ -1,166 +0,0 @@ - - * $dlpService = new Google_Service_DLP(...); - * $jobTriggers = $dlpService->jobTriggers; - * - */ -class Google_Service_DLP_Resource_ProjectsJobTriggers extends Google_Service_Resource -{ - /** - * Activate a job trigger. Causes the immediate execute of a trigger instead of - * waiting on the trigger event to occur. (jobTriggers.activate) - * - * @param string $name Required. Resource name of the trigger to activate, for - * example `projects/dlp-test-project/jobTriggers/53234423`. - * @param Google_Service_DLP_GooglePrivacyDlpV2ActivateJobTriggerRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GooglePrivacyDlpV2DlpJob - */ - public function activate($name, Google_Service_DLP_GooglePrivacyDlpV2ActivateJobTriggerRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('activate', array($params), "Google_Service_DLP_GooglePrivacyDlpV2DlpJob"); - } - /** - * Creates a job trigger to run DLP actions such as scanning storage for - * sensitive information on a set schedule. See - * https://cloud.google.com/dlp/docs/creating-job-triggers to learn more. - * (jobTriggers.create) - * - * @param string $parent Required. The parent resource name, for example - * projects/my-project-id. - * @param Google_Service_DLP_GooglePrivacyDlpV2CreateJobTriggerRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GooglePrivacyDlpV2JobTrigger - */ - public function create($parent, Google_Service_DLP_GooglePrivacyDlpV2CreateJobTriggerRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_DLP_GooglePrivacyDlpV2JobTrigger"); - } - /** - * Deletes a job trigger. See https://cloud.google.com/dlp/docs/creating-job- - * triggers to learn more. (jobTriggers.delete) - * - * @param string $name Required. Resource name of the project and the - * triggeredJob, for example `projects/dlp-test-project/jobTriggers/53234423`. - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GoogleProtobufEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_DLP_GoogleProtobufEmpty"); - } - /** - * Gets a job trigger. See https://cloud.google.com/dlp/docs/creating-job- - * triggers to learn more. (jobTriggers.get) - * - * @param string $name Required. Resource name of the project and the - * triggeredJob, for example `projects/dlp-test-project/jobTriggers/53234423`. - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GooglePrivacyDlpV2JobTrigger - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_DLP_GooglePrivacyDlpV2JobTrigger"); - } - /** - * Lists job triggers. See https://cloud.google.com/dlp/docs/creating-job- - * triggers to learn more. (jobTriggers.listProjectsJobTriggers) - * - * @param string $parent Required. The parent resource name, for example - * `projects/my-project-id`. - * @param array $optParams Optional parameters. - * - * @opt_param string filter Allows filtering. - * - * Supported syntax: - * - * * Filter expressions are made up of one or more restrictions. * Restrictions - * can be combined by `AND` or `OR` logical operators. A sequence of - * restrictions implicitly uses `AND`. * A restriction has the form of `{field} - * {operator} {value}`. * Supported fields/values for inspect jobs: - - * `status` - HEALTHY|PAUSED|CANCELLED - `inspected_storage` - - * DATASTORE|CLOUD_STORAGE|BIGQUERY - 'last_run_time` - RFC 3339 formatted - * timestamp, surrounded by quotation marks. Nanoseconds are ignored. - - * 'error_count' - Number of errors that have occurred while running. * The - * operator must be `=` or `!=` for status and inspected_storage. - * - * Examples: - * - * * inspected_storage = cloud_storage AND status = HEALTHY * inspected_storage - * = cloud_storage OR inspected_storage = bigquery * inspected_storage = - * cloud_storage AND (state = PAUSED OR state = HEALTHY) * last_run_time > - * \"2017-12-12T00:00:00+00:00\" - * - * The length of this field should be no more than 500 characters. - * @opt_param string pageToken Page token to continue retrieval. Comes from - * previous call to ListJobTriggers. `order_by` field must not change for - * subsequent calls. - * @opt_param string locationId The geographic location where job triggers will - * be retrieved from. Use `-` for all locations. Reserved for future extensions. - * @opt_param int pageSize Size of the page, can be limited by a server. - * @opt_param string orderBy Comma separated list of triggeredJob fields to - * order by, followed by `asc` or `desc` postfix. This list is case-insensitive, - * default sorting order is ascending, redundant space characters are - * insignificant. - * - * Example: `name asc,update_time, create_time desc` - * - * Supported fields are: - * - * - `create_time`: corresponds to time the JobTrigger was created. - - * `update_time`: corresponds to time the JobTrigger was last updated. - - * `last_run_time`: corresponds to the last time the JobTrigger ran. - `name`: - * corresponds to JobTrigger's name. - `display_name`: corresponds to - * JobTrigger's display name. - `status`: corresponds to JobTrigger's status. - * @return Google_Service_DLP_GooglePrivacyDlpV2ListJobTriggersResponse - */ - public function listProjectsJobTriggers($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_DLP_GooglePrivacyDlpV2ListJobTriggersResponse"); - } - /** - * Updates a job trigger. See https://cloud.google.com/dlp/docs/creating-job- - * triggers to learn more. (jobTriggers.patch) - * - * @param string $name Required. Resource name of the project and the - * triggeredJob, for example `projects/dlp-test-project/jobTriggers/53234423`. - * @param Google_Service_DLP_GooglePrivacyDlpV2UpdateJobTriggerRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GooglePrivacyDlpV2JobTrigger - */ - public function patch($name, Google_Service_DLP_GooglePrivacyDlpV2UpdateJobTriggerRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_DLP_GooglePrivacyDlpV2JobTrigger"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/ProjectsLocations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/ProjectsLocations.php deleted file mode 100644 index 830c507f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/ProjectsLocations.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $dlpService = new Google_Service_DLP(...); - * $locations = $dlpService->locations; - * - */ -class Google_Service_DLP_Resource_ProjectsLocations extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/ProjectsLocationsContent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/ProjectsLocationsContent.php deleted file mode 100644 index 6b8e1b97..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/ProjectsLocationsContent.php +++ /dev/null @@ -1,95 +0,0 @@ - - * $dlpService = new Google_Service_DLP(...); - * $content = $dlpService->content; - * - */ -class Google_Service_DLP_Resource_ProjectsLocationsContent extends Google_Service_Resource -{ - /** - * De-identifies potentially sensitive info from a ContentItem. This method has - * limits on input size and output size. See https://cloud.google.com/dlp/docs - * /deidentify-sensitive-data to learn more. - * - * When no InfoTypes or CustomInfoTypes are specified in this request, the - * system will automatically choose what detectors to run. By default this may - * be all types, but may change over time as detectors are updated. - * (content.deidentify) - * - * @param string $parent The parent resource name, for example projects/my- - * project-id. - * @param string $locationId The geographic location to process de- - * identification. Reserved for future extensions. - * @param Google_Service_DLP_GooglePrivacyDlpV2DeidentifyContentRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GooglePrivacyDlpV2DeidentifyContentResponse - */ - public function deidentify($parent, $locationId, Google_Service_DLP_GooglePrivacyDlpV2DeidentifyContentRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'locationId' => $locationId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('deidentify', array($params), "Google_Service_DLP_GooglePrivacyDlpV2DeidentifyContentResponse"); - } - /** - * Finds potentially sensitive info in content. This method has limits on input - * size, processing time, and output size. - * - * When no InfoTypes or CustomInfoTypes are specified in this request, the - * system will automatically choose what detectors to run. By default this may - * be all types, but may change over time as detectors are updated. - * - * For how to guides, see https://cloud.google.com/dlp/docs/inspecting-images - * and https://cloud.google.com/dlp/docs/inspecting-text, (content.inspect) - * - * @param string $parent The parent resource name, for example projects/my- - * project-id. - * @param string $locationId The geographic location to process content - * inspection. Reserved for future extensions. - * @param Google_Service_DLP_GooglePrivacyDlpV2InspectContentRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GooglePrivacyDlpV2InspectContentResponse - */ - public function inspect($parent, $locationId, Google_Service_DLP_GooglePrivacyDlpV2InspectContentRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'locationId' => $locationId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('inspect', array($params), "Google_Service_DLP_GooglePrivacyDlpV2InspectContentResponse"); - } - /** - * Re-identifies content that has been de-identified. See - * https://cloud.google.com/dlp/docs/pseudonymization#re- - * identification_in_free_text_code_example to learn more. (content.reidentify) - * - * @param string $parent Required. The parent resource name. - * @param string $locationId The geographic location to process content - * reidentification. Reserved for future extensions. - * @param Google_Service_DLP_GooglePrivacyDlpV2ReidentifyContentRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GooglePrivacyDlpV2ReidentifyContentResponse - */ - public function reidentify($parent, $locationId, Google_Service_DLP_GooglePrivacyDlpV2ReidentifyContentRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'locationId' => $locationId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('reidentify', array($params), "Google_Service_DLP_GooglePrivacyDlpV2ReidentifyContentResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/ProjectsLocationsDeidentifyTemplates.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/ProjectsLocationsDeidentifyTemplates.php deleted file mode 100644 index 49f4e264..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/ProjectsLocationsDeidentifyTemplates.php +++ /dev/null @@ -1,136 +0,0 @@ - - * $dlpService = new Google_Service_DLP(...); - * $deidentifyTemplates = $dlpService->deidentifyTemplates; - * - */ -class Google_Service_DLP_Resource_ProjectsLocationsDeidentifyTemplates extends Google_Service_Resource -{ - /** - * Creates a DeidentifyTemplate for re-using frequently used configuration for - * de-identifying content, images, and storage. See - * https://cloud.google.com/dlp/docs/creating-templates-deid to learn more. - * (deidentifyTemplates.create) - * - * @param string $parent Required. The parent resource name, for example - * projects/my-project-id or organizations/my-org-id. - * @param string $locationId The geographic location to store the - * deidentification template. Reserved for future extensions. - * @param Google_Service_DLP_GooglePrivacyDlpV2CreateDeidentifyTemplateRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GooglePrivacyDlpV2DeidentifyTemplate - */ - public function create($parent, $locationId, Google_Service_DLP_GooglePrivacyDlpV2CreateDeidentifyTemplateRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'locationId' => $locationId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_DLP_GooglePrivacyDlpV2DeidentifyTemplate"); - } - /** - * Deletes a DeidentifyTemplate. See https://cloud.google.com/dlp/docs/creating- - * templates-deid to learn more. (deidentifyTemplates.delete) - * - * @param string $name Required. Resource name of the organization and - * deidentify template to be deleted, for example - * `organizations/433245324/deidentifyTemplates/432452342` or projects/project- - * id/deidentifyTemplates/432452342. - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GoogleProtobufEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_DLP_GoogleProtobufEmpty"); - } - /** - * Gets a DeidentifyTemplate. See https://cloud.google.com/dlp/docs/creating- - * templates-deid to learn more. (deidentifyTemplates.get) - * - * @param string $name Required. Resource name of the organization and - * deidentify template to be read, for example - * `organizations/433245324/deidentifyTemplates/432452342` or projects/project- - * id/deidentifyTemplates/432452342. - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GooglePrivacyDlpV2DeidentifyTemplate - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_DLP_GooglePrivacyDlpV2DeidentifyTemplate"); - } - /** - * Lists DeidentifyTemplates. See https://cloud.google.com/dlp/docs/creating- - * templates-deid to learn more. - * (deidentifyTemplates.listProjectsLocationsDeidentifyTemplates) - * - * @param string $parent Required. The parent resource name, for example - * projects/my-project-id or organizations/my-org-id. - * @param string $locationId The geographic location where deidentifications - * templates will be retrieved from. Use `-` for all locations. Reserved for - * future extensions. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Page token to continue retrieval. Comes from - * previous call to `ListDeidentifyTemplates`. - * @opt_param string orderBy Comma separated list of fields to order by, - * followed by `asc` or `desc` postfix. This list is case-insensitive, default - * sorting order is ascending, redundant space characters are insignificant. - * - * Example: `name asc,update_time, create_time desc` - * - * Supported fields are: - * - * - `create_time`: corresponds to time the template was created. - - * `update_time`: corresponds to time the template was last updated. - `name`: - * corresponds to template's name. - `display_name`: corresponds to template's - * display name. - * @opt_param int pageSize Size of the page, can be limited by server. If zero - * server returns a page of max size 100. - * @return Google_Service_DLP_GooglePrivacyDlpV2ListDeidentifyTemplatesResponse - */ - public function listProjectsLocationsDeidentifyTemplates($parent, $locationId, $optParams = array()) - { - $params = array('parent' => $parent, 'locationId' => $locationId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_DLP_GooglePrivacyDlpV2ListDeidentifyTemplatesResponse"); - } - /** - * Updates the DeidentifyTemplate. See https://cloud.google.com/dlp/docs - * /creating-templates-deid to learn more. (deidentifyTemplates.patch) - * - * @param string $name Required. Resource name of organization and deidentify - * template to be updated, for example - * `organizations/433245324/deidentifyTemplates/432452342` or projects/project- - * id/deidentifyTemplates/432452342. - * @param Google_Service_DLP_GooglePrivacyDlpV2UpdateDeidentifyTemplateRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GooglePrivacyDlpV2DeidentifyTemplate - */ - public function patch($name, Google_Service_DLP_GooglePrivacyDlpV2UpdateDeidentifyTemplateRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_DLP_GooglePrivacyDlpV2DeidentifyTemplate"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/ProjectsLocationsDlpJobs.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/ProjectsLocationsDlpJobs.php deleted file mode 100644 index 12b9dcf1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/ProjectsLocationsDlpJobs.php +++ /dev/null @@ -1,163 +0,0 @@ - - * $dlpService = new Google_Service_DLP(...); - * $dlpJobs = $dlpService->dlpJobs; - * - */ -class Google_Service_DLP_Resource_ProjectsLocationsDlpJobs extends Google_Service_Resource -{ - /** - * Starts asynchronous cancellation on a long-running DlpJob. The server makes a - * best effort to cancel the DlpJob, but success is not guaranteed. See - * https://cloud.google.com/dlp/docs/inspecting-storage and - * https://cloud.google.com/dlp/docs/compute-risk-analysis to learn more. - * (dlpJobs.cancel) - * - * @param string $name Required. The name of the DlpJob resource to be - * cancelled. - * @param Google_Service_DLP_GooglePrivacyDlpV2CancelDlpJobRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GoogleProtobufEmpty - */ - public function cancel($name, Google_Service_DLP_GooglePrivacyDlpV2CancelDlpJobRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('cancel', array($params), "Google_Service_DLP_GoogleProtobufEmpty"); - } - /** - * Creates a new job to inspect storage or calculate risk metrics. See - * https://cloud.google.com/dlp/docs/inspecting-storage and - * https://cloud.google.com/dlp/docs/compute-risk-analysis to learn more. - * - * When no InfoTypes or CustomInfoTypes are specified in inspect jobs, the - * system will automatically choose what detectors to run. By default this may - * be all types, but may change over time as detectors are updated. - * (dlpJobs.create) - * - * @param string $parent Required. The parent resource name, for example - * projects/my-project-id. - * @param string $locationId The geographic location to store and process the - * job. Reserved for future extensions. - * @param Google_Service_DLP_GooglePrivacyDlpV2CreateDlpJobRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GooglePrivacyDlpV2DlpJob - */ - public function create($parent, $locationId, Google_Service_DLP_GooglePrivacyDlpV2CreateDlpJobRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'locationId' => $locationId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_DLP_GooglePrivacyDlpV2DlpJob"); - } - /** - * Deletes a long-running DlpJob. This method indicates that the client is no - * longer interested in the DlpJob result. The job will be cancelled if - * possible. See https://cloud.google.com/dlp/docs/inspecting-storage and - * https://cloud.google.com/dlp/docs/compute-risk-analysis to learn more. - * (dlpJobs.delete) - * - * @param string $name Required. The name of the DlpJob resource to be deleted. - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GoogleProtobufEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_DLP_GoogleProtobufEmpty"); - } - /** - * Gets the latest state of a long-running DlpJob. See - * https://cloud.google.com/dlp/docs/inspecting-storage and - * https://cloud.google.com/dlp/docs/compute-risk-analysis to learn more. - * (dlpJobs.get) - * - * @param string $name Required. The name of the DlpJob resource. - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GooglePrivacyDlpV2DlpJob - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_DLP_GooglePrivacyDlpV2DlpJob"); - } - /** - * Lists DlpJobs that match the specified filter in the request. See - * https://cloud.google.com/dlp/docs/inspecting-storage and - * https://cloud.google.com/dlp/docs/compute-risk-analysis to learn more. - * (dlpJobs.listProjectsLocationsDlpJobs) - * - * @param string $parent Required. The parent resource name, for example - * projects/my-project-id. - * @param string $locationId The geographic location where jobs will be - * retrieved from. Use `-` for all locations. Reserved for future extensions. - * @param array $optParams Optional parameters. - * - * @opt_param string type The type of job. Defaults to `DlpJobType.INSPECT` - * @opt_param string filter Allows filtering. - * - * Supported syntax: - * - * * Filter expressions are made up of one or more restrictions. * Restrictions - * can be combined by `AND` or `OR` logical operators. A sequence of - * restrictions implicitly uses `AND`. * A restriction has the form of `{field} - * {operator} {value}`. * Supported fields/values for inspect jobs: - - * `state` - PENDING|RUNNING|CANCELED|FINISHED|FAILED - `inspected_storage` - * - DATASTORE|CLOUD_STORAGE|BIGQUERY - `trigger_name` - The resource name - * of the trigger that created job. - 'end_time` - Corresponds to time the - * job finished. - 'start_time` - Corresponds to time the job finished. * - * Supported fields for risk analysis jobs: - `state` - - * RUNNING|CANCELED|FINISHED|FAILED - 'end_time` - Corresponds to time the - * job finished. - 'start_time` - Corresponds to time the job finished. * - * The operator must be `=` or `!=`. - * - * Examples: - * - * * inspected_storage = cloud_storage AND state = done * inspected_storage = - * cloud_storage OR inspected_storage = bigquery * inspected_storage = - * cloud_storage AND (state = done OR state = canceled) * end_time > - * \"2017-12-12T00:00:00+00:00\" - * - * The length of this field should be no more than 500 characters. - * @opt_param string pageToken The standard list page token. - * @opt_param int pageSize The standard list page size. - * @opt_param string orderBy Comma separated list of fields to order by, - * followed by `asc` or `desc` postfix. This list is case-insensitive, default - * sorting order is ascending, redundant space characters are insignificant. - * - * Example: `name asc, end_time asc, create_time desc` - * - * Supported fields are: - * - * - `create_time`: corresponds to time the job was created. - `end_time`: - * corresponds to time the job ended. - `name`: corresponds to job's name. - - * `state`: corresponds to `state` - * @return Google_Service_DLP_GooglePrivacyDlpV2ListDlpJobsResponse - */ - public function listProjectsLocationsDlpJobs($parent, $locationId, $optParams = array()) - { - $params = array('parent' => $parent, 'locationId' => $locationId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_DLP_GooglePrivacyDlpV2ListDlpJobsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/ProjectsLocationsImage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/ProjectsLocationsImage.php deleted file mode 100644 index 9a4b27f0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/ProjectsLocationsImage.php +++ /dev/null @@ -1,53 +0,0 @@ - - * $dlpService = new Google_Service_DLP(...); - * $image = $dlpService->image; - * - */ -class Google_Service_DLP_Resource_ProjectsLocationsImage extends Google_Service_Resource -{ - /** - * Redacts potentially sensitive info from an image. This method has limits on - * input size, processing time, and output size. See - * https://cloud.google.com/dlp/docs/redacting-sensitive-data-images to learn - * more. - * - * When no InfoTypes or CustomInfoTypes are specified in this request, the - * system will automatically choose what detectors to run. By default this may - * be all types, but may change over time as detectors are updated. - * (image.redact) - * - * @param string $parent The parent resource name, for example projects/my- - * project-id. - * @param string $locationId The geographic location to process the request. - * Reserved for future extensions. - * @param Google_Service_DLP_GooglePrivacyDlpV2RedactImageRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GooglePrivacyDlpV2RedactImageResponse - */ - public function redact($parent, $locationId, Google_Service_DLP_GooglePrivacyDlpV2RedactImageRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'locationId' => $locationId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('redact', array($params), "Google_Service_DLP_GooglePrivacyDlpV2RedactImageResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/ProjectsLocationsInspectTemplates.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/ProjectsLocationsInspectTemplates.php deleted file mode 100644 index 50c29a64..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/ProjectsLocationsInspectTemplates.php +++ /dev/null @@ -1,136 +0,0 @@ - - * $dlpService = new Google_Service_DLP(...); - * $inspectTemplates = $dlpService->inspectTemplates; - * - */ -class Google_Service_DLP_Resource_ProjectsLocationsInspectTemplates extends Google_Service_Resource -{ - /** - * Creates an InspectTemplate for re-using frequently used configuration for - * inspecting content, images, and storage. See - * https://cloud.google.com/dlp/docs/creating-templates to learn more. - * (inspectTemplates.create) - * - * @param string $parent Required. The parent resource name, for example - * projects/my-project-id or organizations/my-org-id. - * @param string $locationId The geographic location to store the inspection - * template. Reserved for future extensions. - * @param Google_Service_DLP_GooglePrivacyDlpV2CreateInspectTemplateRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GooglePrivacyDlpV2InspectTemplate - */ - public function create($parent, $locationId, Google_Service_DLP_GooglePrivacyDlpV2CreateInspectTemplateRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'locationId' => $locationId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_DLP_GooglePrivacyDlpV2InspectTemplate"); - } - /** - * Deletes an InspectTemplate. See https://cloud.google.com/dlp/docs/creating- - * templates to learn more. (inspectTemplates.delete) - * - * @param string $name Required. Resource name of the organization and - * inspectTemplate to be deleted, for example - * `organizations/433245324/inspectTemplates/432452342` or projects/project- - * id/inspectTemplates/432452342. - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GoogleProtobufEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_DLP_GoogleProtobufEmpty"); - } - /** - * Gets an InspectTemplate. See https://cloud.google.com/dlp/docs/creating- - * templates to learn more. (inspectTemplates.get) - * - * @param string $name Required. Resource name of the organization and - * inspectTemplate to be read, for example - * `organizations/433245324/inspectTemplates/432452342` or projects/project- - * id/inspectTemplates/432452342. - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GooglePrivacyDlpV2InspectTemplate - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_DLP_GooglePrivacyDlpV2InspectTemplate"); - } - /** - * Lists InspectTemplates. See https://cloud.google.com/dlp/docs/creating- - * templates to learn more. - * (inspectTemplates.listProjectsLocationsInspectTemplates) - * - * @param string $parent Required. The parent resource name, for example - * projects/my-project-id or organizations/my-org-id. - * @param string $locationId The geographic location where inspection templates - * will be retrieved from. Use `-` for all locations. Reserved for future - * extensions. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Page token to continue retrieval. Comes from - * previous call to `ListInspectTemplates`. - * @opt_param string orderBy Comma separated list of fields to order by, - * followed by `asc` or `desc` postfix. This list is case-insensitive, default - * sorting order is ascending, redundant space characters are insignificant. - * - * Example: `name asc,update_time, create_time desc` - * - * Supported fields are: - * - * - `create_time`: corresponds to time the template was created. - - * `update_time`: corresponds to time the template was last updated. - `name`: - * corresponds to template's name. - `display_name`: corresponds to template's - * display name. - * @opt_param int pageSize Size of the page, can be limited by server. If zero - * server returns a page of max size 100. - * @return Google_Service_DLP_GooglePrivacyDlpV2ListInspectTemplatesResponse - */ - public function listProjectsLocationsInspectTemplates($parent, $locationId, $optParams = array()) - { - $params = array('parent' => $parent, 'locationId' => $locationId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_DLP_GooglePrivacyDlpV2ListInspectTemplatesResponse"); - } - /** - * Updates the InspectTemplate. See https://cloud.google.com/dlp/docs/creating- - * templates to learn more. (inspectTemplates.patch) - * - * @param string $name Required. Resource name of organization and - * inspectTemplate to be updated, for example - * `organizations/433245324/inspectTemplates/432452342` or projects/project- - * id/inspectTemplates/432452342. - * @param Google_Service_DLP_GooglePrivacyDlpV2UpdateInspectTemplateRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GooglePrivacyDlpV2InspectTemplate - */ - public function patch($name, Google_Service_DLP_GooglePrivacyDlpV2UpdateInspectTemplateRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_DLP_GooglePrivacyDlpV2InspectTemplate"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/ProjectsLocationsJobTriggers.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/ProjectsLocationsJobTriggers.php deleted file mode 100644 index 88a1dff6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/ProjectsLocationsJobTriggers.php +++ /dev/null @@ -1,168 +0,0 @@ - - * $dlpService = new Google_Service_DLP(...); - * $jobTriggers = $dlpService->jobTriggers; - * - */ -class Google_Service_DLP_Resource_ProjectsLocationsJobTriggers extends Google_Service_Resource -{ - /** - * Activate a job trigger. Causes the immediate execute of a trigger instead of - * waiting on the trigger event to occur. (jobTriggers.activate) - * - * @param string $name Required. Resource name of the trigger to activate, for - * example `projects/dlp-test-project/jobTriggers/53234423`. - * @param Google_Service_DLP_GooglePrivacyDlpV2ActivateJobTriggerRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GooglePrivacyDlpV2DlpJob - */ - public function activate($name, Google_Service_DLP_GooglePrivacyDlpV2ActivateJobTriggerRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('activate', array($params), "Google_Service_DLP_GooglePrivacyDlpV2DlpJob"); - } - /** - * Creates a job trigger to run DLP actions such as scanning storage for - * sensitive information on a set schedule. See - * https://cloud.google.com/dlp/docs/creating-job-triggers to learn more. - * (jobTriggers.create) - * - * @param string $parent Required. The parent resource name, for example - * projects/my-project-id. - * @param string $locationId The geographic location to store the job trigger. - * Reserved for future extensions. - * @param Google_Service_DLP_GooglePrivacyDlpV2CreateJobTriggerRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GooglePrivacyDlpV2JobTrigger - */ - public function create($parent, $locationId, Google_Service_DLP_GooglePrivacyDlpV2CreateJobTriggerRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'locationId' => $locationId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_DLP_GooglePrivacyDlpV2JobTrigger"); - } - /** - * Deletes a job trigger. See https://cloud.google.com/dlp/docs/creating-job- - * triggers to learn more. (jobTriggers.delete) - * - * @param string $name Required. Resource name of the project and the - * triggeredJob, for example `projects/dlp-test-project/jobTriggers/53234423`. - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GoogleProtobufEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_DLP_GoogleProtobufEmpty"); - } - /** - * Gets a job trigger. See https://cloud.google.com/dlp/docs/creating-job- - * triggers to learn more. (jobTriggers.get) - * - * @param string $name Required. Resource name of the project and the - * triggeredJob, for example `projects/dlp-test-project/jobTriggers/53234423`. - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GooglePrivacyDlpV2JobTrigger - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_DLP_GooglePrivacyDlpV2JobTrigger"); - } - /** - * Lists job triggers. See https://cloud.google.com/dlp/docs/creating-job- - * triggers to learn more. (jobTriggers.listProjectsLocationsJobTriggers) - * - * @param string $parent Required. The parent resource name, for example - * `projects/my-project-id`. - * @param string $locationId The geographic location where job triggers will be - * retrieved from. Use `-` for all locations. Reserved for future extensions. - * @param array $optParams Optional parameters. - * - * @opt_param int pageSize Size of the page, can be limited by a server. - * @opt_param string orderBy Comma separated list of triggeredJob fields to - * order by, followed by `asc` or `desc` postfix. This list is case-insensitive, - * default sorting order is ascending, redundant space characters are - * insignificant. - * - * Example: `name asc,update_time, create_time desc` - * - * Supported fields are: - * - * - `create_time`: corresponds to time the JobTrigger was created. - - * `update_time`: corresponds to time the JobTrigger was last updated. - - * `last_run_time`: corresponds to the last time the JobTrigger ran. - `name`: - * corresponds to JobTrigger's name. - `display_name`: corresponds to - * JobTrigger's display name. - `status`: corresponds to JobTrigger's status. - * @opt_param string filter Allows filtering. - * - * Supported syntax: - * - * * Filter expressions are made up of one or more restrictions. * Restrictions - * can be combined by `AND` or `OR` logical operators. A sequence of - * restrictions implicitly uses `AND`. * A restriction has the form of `{field} - * {operator} {value}`. * Supported fields/values for inspect jobs: - - * `status` - HEALTHY|PAUSED|CANCELLED - `inspected_storage` - - * DATASTORE|CLOUD_STORAGE|BIGQUERY - 'last_run_time` - RFC 3339 formatted - * timestamp, surrounded by quotation marks. Nanoseconds are ignored. - - * 'error_count' - Number of errors that have occurred while running. * The - * operator must be `=` or `!=` for status and inspected_storage. - * - * Examples: - * - * * inspected_storage = cloud_storage AND status = HEALTHY * inspected_storage - * = cloud_storage OR inspected_storage = bigquery * inspected_storage = - * cloud_storage AND (state = PAUSED OR state = HEALTHY) * last_run_time > - * \"2017-12-12T00:00:00+00:00\" - * - * The length of this field should be no more than 500 characters. - * @opt_param string pageToken Page token to continue retrieval. Comes from - * previous call to ListJobTriggers. `order_by` field must not change for - * subsequent calls. - * @return Google_Service_DLP_GooglePrivacyDlpV2ListJobTriggersResponse - */ - public function listProjectsLocationsJobTriggers($parent, $locationId, $optParams = array()) - { - $params = array('parent' => $parent, 'locationId' => $locationId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_DLP_GooglePrivacyDlpV2ListJobTriggersResponse"); - } - /** - * Updates a job trigger. See https://cloud.google.com/dlp/docs/creating-job- - * triggers to learn more. (jobTriggers.patch) - * - * @param string $name Required. Resource name of the project and the - * triggeredJob, for example `projects/dlp-test-project/jobTriggers/53234423`. - * @param Google_Service_DLP_GooglePrivacyDlpV2UpdateJobTriggerRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GooglePrivacyDlpV2JobTrigger - */ - public function patch($name, Google_Service_DLP_GooglePrivacyDlpV2UpdateJobTriggerRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_DLP_GooglePrivacyDlpV2JobTrigger"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/ProjectsLocationsStoredInfoTypes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/ProjectsLocationsStoredInfoTypes.php deleted file mode 100644 index 47ec7a5e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/ProjectsLocationsStoredInfoTypes.php +++ /dev/null @@ -1,136 +0,0 @@ - - * $dlpService = new Google_Service_DLP(...); - * $storedInfoTypes = $dlpService->storedInfoTypes; - * - */ -class Google_Service_DLP_Resource_ProjectsLocationsStoredInfoTypes extends Google_Service_Resource -{ - /** - * Creates a pre-built stored infoType to be used for inspection. See - * https://cloud.google.com/dlp/docs/creating-stored-infotypes to learn more. - * (storedInfoTypes.create) - * - * @param string $parent Required. The parent resource name, for example - * projects/my-project-id or organizations/my-org-id. - * @param string $locationId The geographic location to store the stored - * infoType. Reserved for future extensions. - * @param Google_Service_DLP_GooglePrivacyDlpV2CreateStoredInfoTypeRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GooglePrivacyDlpV2StoredInfoType - */ - public function create($parent, $locationId, Google_Service_DLP_GooglePrivacyDlpV2CreateStoredInfoTypeRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'locationId' => $locationId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_DLP_GooglePrivacyDlpV2StoredInfoType"); - } - /** - * Deletes a stored infoType. See https://cloud.google.com/dlp/docs/creating- - * stored-infotypes to learn more. (storedInfoTypes.delete) - * - * @param string $name Required. Resource name of the organization and - * storedInfoType to be deleted, for example - * `organizations/433245324/storedInfoTypes/432452342` or projects/project- - * id/storedInfoTypes/432452342. - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GoogleProtobufEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_DLP_GoogleProtobufEmpty"); - } - /** - * Gets a stored infoType. See https://cloud.google.com/dlp/docs/creating- - * stored-infotypes to learn more. (storedInfoTypes.get) - * - * @param string $name Required. Resource name of the organization and - * storedInfoType to be read, for example - * `organizations/433245324/storedInfoTypes/432452342` or projects/project- - * id/storedInfoTypes/432452342. - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GooglePrivacyDlpV2StoredInfoType - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_DLP_GooglePrivacyDlpV2StoredInfoType"); - } - /** - * Lists stored infoTypes. See https://cloud.google.com/dlp/docs/creating- - * stored-infotypes to learn more. - * (storedInfoTypes.listProjectsLocationsStoredInfoTypes) - * - * @param string $parent Required. The parent resource name, for example - * projects/my-project-id or organizations/my-org-id. - * @param string $locationId The geographic location where stored infoTypes will - * be retrieved from. Use `-` for all locations. Reserved for future extensions. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Page token to continue retrieval. Comes from - * previous call to `ListStoredInfoTypes`. - * @opt_param string orderBy Comma separated list of fields to order by, - * followed by `asc` or `desc` postfix. This list is case-insensitive, default - * sorting order is ascending, redundant space characters are insignificant. - * - * Example: `name asc, display_name, create_time desc` - * - * Supported fields are: - * - * - `create_time`: corresponds to time the most recent version of the resource - * was created. - `state`: corresponds to the state of the resource. - `name`: - * corresponds to resource name. - `display_name`: corresponds to info type's - * display name. - * @opt_param int pageSize Size of the page, can be limited by server. If zero - * server returns a page of max size 100. - * @return Google_Service_DLP_GooglePrivacyDlpV2ListStoredInfoTypesResponse - */ - public function listProjectsLocationsStoredInfoTypes($parent, $locationId, $optParams = array()) - { - $params = array('parent' => $parent, 'locationId' => $locationId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_DLP_GooglePrivacyDlpV2ListStoredInfoTypesResponse"); - } - /** - * Updates the stored infoType by creating a new version. The existing version - * will continue to be used until the new version is ready. See - * https://cloud.google.com/dlp/docs/creating-stored-infotypes to learn more. - * (storedInfoTypes.patch) - * - * @param string $name Required. Resource name of organization and - * storedInfoType to be updated, for example - * `organizations/433245324/storedInfoTypes/432452342` or projects/project- - * id/storedInfoTypes/432452342. - * @param Google_Service_DLP_GooglePrivacyDlpV2UpdateStoredInfoTypeRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GooglePrivacyDlpV2StoredInfoType - */ - public function patch($name, Google_Service_DLP_GooglePrivacyDlpV2UpdateStoredInfoTypeRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_DLP_GooglePrivacyDlpV2StoredInfoType"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/ProjectsStoredInfoTypes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/ProjectsStoredInfoTypes.php deleted file mode 100644 index e7045fdd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DLP/Resource/ProjectsStoredInfoTypes.php +++ /dev/null @@ -1,134 +0,0 @@ - - * $dlpService = new Google_Service_DLP(...); - * $storedInfoTypes = $dlpService->storedInfoTypes; - * - */ -class Google_Service_DLP_Resource_ProjectsStoredInfoTypes extends Google_Service_Resource -{ - /** - * Creates a pre-built stored infoType to be used for inspection. See - * https://cloud.google.com/dlp/docs/creating-stored-infotypes to learn more. - * (storedInfoTypes.create) - * - * @param string $parent Required. The parent resource name, for example - * projects/my-project-id or organizations/my-org-id. - * @param Google_Service_DLP_GooglePrivacyDlpV2CreateStoredInfoTypeRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GooglePrivacyDlpV2StoredInfoType - */ - public function create($parent, Google_Service_DLP_GooglePrivacyDlpV2CreateStoredInfoTypeRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_DLP_GooglePrivacyDlpV2StoredInfoType"); - } - /** - * Deletes a stored infoType. See https://cloud.google.com/dlp/docs/creating- - * stored-infotypes to learn more. (storedInfoTypes.delete) - * - * @param string $name Required. Resource name of the organization and - * storedInfoType to be deleted, for example - * `organizations/433245324/storedInfoTypes/432452342` or projects/project- - * id/storedInfoTypes/432452342. - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GoogleProtobufEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_DLP_GoogleProtobufEmpty"); - } - /** - * Gets a stored infoType. See https://cloud.google.com/dlp/docs/creating- - * stored-infotypes to learn more. (storedInfoTypes.get) - * - * @param string $name Required. Resource name of the organization and - * storedInfoType to be read, for example - * `organizations/433245324/storedInfoTypes/432452342` or projects/project- - * id/storedInfoTypes/432452342. - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GooglePrivacyDlpV2StoredInfoType - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_DLP_GooglePrivacyDlpV2StoredInfoType"); - } - /** - * Lists stored infoTypes. See https://cloud.google.com/dlp/docs/creating- - * stored-infotypes to learn more. (storedInfoTypes.listProjectsStoredInfoTypes) - * - * @param string $parent Required. The parent resource name, for example - * projects/my-project-id or organizations/my-org-id. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Page token to continue retrieval. Comes from - * previous call to `ListStoredInfoTypes`. - * @opt_param string orderBy Comma separated list of fields to order by, - * followed by `asc` or `desc` postfix. This list is case-insensitive, default - * sorting order is ascending, redundant space characters are insignificant. - * - * Example: `name asc, display_name, create_time desc` - * - * Supported fields are: - * - * - `create_time`: corresponds to time the most recent version of the resource - * was created. - `state`: corresponds to the state of the resource. - `name`: - * corresponds to resource name. - `display_name`: corresponds to info type's - * display name. - * @opt_param int pageSize Size of the page, can be limited by server. If zero - * server returns a page of max size 100. - * @opt_param string locationId The geographic location where stored infoTypes - * will be retrieved from. Use `-` for all locations. Reserved for future - * extensions. - * @return Google_Service_DLP_GooglePrivacyDlpV2ListStoredInfoTypesResponse - */ - public function listProjectsStoredInfoTypes($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_DLP_GooglePrivacyDlpV2ListStoredInfoTypesResponse"); - } - /** - * Updates the stored infoType by creating a new version. The existing version - * will continue to be used until the new version is ready. See - * https://cloud.google.com/dlp/docs/creating-stored-infotypes to learn more. - * (storedInfoTypes.patch) - * - * @param string $name Required. Resource name of organization and - * storedInfoType to be updated, for example - * `organizations/433245324/storedInfoTypes/432452342` or projects/project- - * id/storedInfoTypes/432452342. - * @param Google_Service_DLP_GooglePrivacyDlpV2UpdateStoredInfoTypeRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DLP_GooglePrivacyDlpV2StoredInfoType - */ - public function patch($name, Google_Service_DLP_GooglePrivacyDlpV2UpdateStoredInfoTypeRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_DLP_GooglePrivacyDlpV2StoredInfoType"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog.php deleted file mode 100644 index 3ef14e84..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog.php +++ /dev/null @@ -1,764 +0,0 @@ - - * A fully managed and highly scalable data discovery and metadata management - * service.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_DataCatalog extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - - public $catalog; - public $entries; - public $projects_locations_entryGroups; - public $projects_locations_entryGroups_entries; - public $projects_locations_entryGroups_entries_tags; - public $projects_locations_tagTemplates; - public $projects_locations_tagTemplates_fields; - public $projects_locations_taxonomies; - public $projects_locations_taxonomies_policyTags; - - /** - * Constructs the internal representation of the DataCatalog service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://datacatalog.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1beta1'; - $this->serviceName = 'datacatalog'; - - $this->catalog = new Google_Service_DataCatalog_Resource_Catalog( - $this, - $this->serviceName, - 'catalog', - array( - 'methods' => array( - 'search' => array( - 'path' => 'v1beta1/catalog:search', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->entries = new Google_Service_DataCatalog_Resource_Entries( - $this, - $this->serviceName, - 'entries', - array( - 'methods' => array( - 'lookup' => array( - 'path' => 'v1beta1/entries:lookup', - 'httpMethod' => 'GET', - 'parameters' => array( - 'linkedResource' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sqlResource' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_locations_entryGroups = new Google_Service_DataCatalog_Resource_ProjectsLocationsEntryGroups( - $this, - $this->serviceName, - 'entryGroups', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1beta1/{+parent}/entryGroups', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'entryGroupId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'force' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'get' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'readMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'getIamPolicy' => array( - 'path' => 'v1beta1/{+resource}:getIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1beta1/{+parent}/entryGroups', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setIamPolicy' => array( - 'path' => 'v1beta1/{+resource}:setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => 'v1beta1/{+resource}:testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_locations_entryGroups_entries = new Google_Service_DataCatalog_Resource_ProjectsLocationsEntryGroupsEntries( - $this, - $this->serviceName, - 'entries', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1beta1/{+parent}/entries', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'entryId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getIamPolicy' => array( - 'path' => 'v1beta1/{+resource}:getIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1beta1/{+parent}/entries', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'readMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'testIamPermissions' => array( - 'path' => 'v1beta1/{+resource}:testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_locations_entryGroups_entries_tags = new Google_Service_DataCatalog_Resource_ProjectsLocationsEntryGroupsEntriesTags( - $this, - $this->serviceName, - 'tags', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1beta1/{+parent}/tags', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1beta1/{+parent}/tags', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_locations_tagTemplates = new Google_Service_DataCatalog_Resource_ProjectsLocationsTagTemplates( - $this, - $this->serviceName, - 'tagTemplates', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1beta1/{+parent}/tagTemplates', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'tagTemplateId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'force' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'get' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getIamPolicy' => array( - 'path' => 'v1beta1/{+resource}:getIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setIamPolicy' => array( - 'path' => 'v1beta1/{+resource}:setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => 'v1beta1/{+resource}:testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_locations_tagTemplates_fields = new Google_Service_DataCatalog_Resource_ProjectsLocationsTagTemplatesFields( - $this, - $this->serviceName, - 'fields', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1beta1/{+parent}/fields', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'tagTemplateFieldId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'force' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'patch' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'rename' => array( - 'path' => 'v1beta1/{+name}:rename', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_locations_taxonomies = new Google_Service_DataCatalog_Resource_ProjectsLocationsTaxonomies( - $this, - $this->serviceName, - 'taxonomies', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1beta1/{+parent}/taxonomies', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'export' => array( - 'path' => 'v1beta1/{+parent}/taxonomies:export', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'taxonomies' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'serializedTaxonomies' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'get' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getIamPolicy' => array( - 'path' => 'v1beta1/{+resource}:getIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'import' => array( - 'path' => 'v1beta1/{+parent}/taxonomies:import', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1beta1/{+parent}/taxonomies', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setIamPolicy' => array( - 'path' => 'v1beta1/{+resource}:setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => 'v1beta1/{+resource}:testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_locations_taxonomies_policyTags = new Google_Service_DataCatalog_Resource_ProjectsLocationsTaxonomiesPolicyTags( - $this, - $this->serviceName, - 'policyTags', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1beta1/{+parent}/policyTags', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getIamPolicy' => array( - 'path' => 'v1beta1/{+resource}:getIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1beta1/{+parent}/policyTags', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setIamPolicy' => array( - 'path' => 'v1beta1/{+resource}:setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => 'v1beta1/{+resource}:testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/Binding.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/Binding.php deleted file mode 100644 index d6f6e7a2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/Binding.php +++ /dev/null @@ -1,56 +0,0 @@ -condition = $condition; - } - /** - * @return Google_Service_DataCatalog_Expr - */ - public function getCondition() - { - return $this->condition; - } - public function setMembers($members) - { - $this->members = $members; - } - public function getMembers() - { - return $this->members; - } - public function setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/DatacatalogEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/DatacatalogEmpty.php deleted file mode 100644 index 11afe489..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/DatacatalogEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setExpression($expression) - { - $this->expression = $expression; - } - public function getExpression() - { - return $this->expression; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GetIamPolicyRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GetIamPolicyRequest.php deleted file mode 100644 index eca2796f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GetIamPolicyRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -options = $options; - } - /** - * @return Google_Service_DataCatalog_GetPolicyOptions - */ - public function getOptions() - { - return $this->options; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GetPolicyOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GetPolicyOptions.php deleted file mode 100644 index 77c27a9f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GetPolicyOptions.php +++ /dev/null @@ -1,30 +0,0 @@ -requestedPolicyVersion = $requestedPolicyVersion; - } - public function getRequestedPolicyVersion() - { - return $this->requestedPolicyVersion; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1BigQueryDateShardedSpec.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1BigQueryDateShardedSpec.php deleted file mode 100644 index 5738bf16..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1BigQueryDateShardedSpec.php +++ /dev/null @@ -1,48 +0,0 @@ -dataset = $dataset; - } - public function getDataset() - { - return $this->dataset; - } - public function setShardCount($shardCount) - { - $this->shardCount = $shardCount; - } - public function getShardCount() - { - return $this->shardCount; - } - public function setTablePrefix($tablePrefix) - { - $this->tablePrefix = $tablePrefix; - } - public function getTablePrefix() - { - return $this->tablePrefix; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1BigQueryTableSpec.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1BigQueryTableSpec.php deleted file mode 100644 index cc08798d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1BigQueryTableSpec.php +++ /dev/null @@ -1,62 +0,0 @@ -tableSourceType = $tableSourceType; - } - public function getTableSourceType() - { - return $this->tableSourceType; - } - /** - * @param Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1TableSpec - */ - public function setTableSpec(Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1TableSpec $tableSpec) - { - $this->tableSpec = $tableSpec; - } - /** - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1TableSpec - */ - public function getTableSpec() - { - return $this->tableSpec; - } - /** - * @param Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1ViewSpec - */ - public function setViewSpec(Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1ViewSpec $viewSpec) - { - $this->viewSpec = $viewSpec; - } - /** - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1ViewSpec - */ - public function getViewSpec() - { - return $this->viewSpec; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1ColumnSchema.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1ColumnSchema.php deleted file mode 100644 index a3d847b6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1ColumnSchema.php +++ /dev/null @@ -1,74 +0,0 @@ -column = $column; - } - public function getColumn() - { - return $this->column; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setMode($mode) - { - $this->mode = $mode; - } - public function getMode() - { - return $this->mode; - } - /** - * @param Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1ColumnSchema - */ - public function setSubcolumns($subcolumns) - { - $this->subcolumns = $subcolumns; - } - /** - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1ColumnSchema - */ - public function getSubcolumns() - { - return $this->subcolumns; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1Entry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1Entry.php deleted file mode 100644 index c909c34a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1Entry.php +++ /dev/null @@ -1,173 +0,0 @@ -bigqueryDateShardedSpec = $bigqueryDateShardedSpec; - } - /** - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1BigQueryDateShardedSpec - */ - public function getBigqueryDateShardedSpec() - { - return $this->bigqueryDateShardedSpec; - } - /** - * @param Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1BigQueryTableSpec - */ - public function setBigqueryTableSpec(Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1BigQueryTableSpec $bigqueryTableSpec) - { - $this->bigqueryTableSpec = $bigqueryTableSpec; - } - /** - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1BigQueryTableSpec - */ - public function getBigqueryTableSpec() - { - return $this->bigqueryTableSpec; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - /** - * @param Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1GcsFilesetSpec - */ - public function setGcsFilesetSpec(Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1GcsFilesetSpec $gcsFilesetSpec) - { - $this->gcsFilesetSpec = $gcsFilesetSpec; - } - /** - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1GcsFilesetSpec - */ - public function getGcsFilesetSpec() - { - return $this->gcsFilesetSpec; - } - public function setIntegratedSystem($integratedSystem) - { - $this->integratedSystem = $integratedSystem; - } - public function getIntegratedSystem() - { - return $this->integratedSystem; - } - public function setLinkedResource($linkedResource) - { - $this->linkedResource = $linkedResource; - } - public function getLinkedResource() - { - return $this->linkedResource; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1Schema - */ - public function setSchema(Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1Schema $schema) - { - $this->schema = $schema; - } - /** - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1Schema - */ - public function getSchema() - { - return $this->schema; - } - /** - * @param Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1SystemTimestamps - */ - public function setSourceSystemTimestamps(Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1SystemTimestamps $sourceSystemTimestamps) - { - $this->sourceSystemTimestamps = $sourceSystemTimestamps; - } - /** - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1SystemTimestamps - */ - public function getSourceSystemTimestamps() - { - return $this->sourceSystemTimestamps; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setUserSpecifiedSystem($userSpecifiedSystem) - { - $this->userSpecifiedSystem = $userSpecifiedSystem; - } - public function getUserSpecifiedSystem() - { - return $this->userSpecifiedSystem; - } - public function setUserSpecifiedType($userSpecifiedType) - { - $this->userSpecifiedType = $userSpecifiedType; - } - public function getUserSpecifiedType() - { - return $this->userSpecifiedType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1EntryGroup.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1EntryGroup.php deleted file mode 100644 index 330b7811..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1EntryGroup.php +++ /dev/null @@ -1,64 +0,0 @@ -dataCatalogTimestamps = $dataCatalogTimestamps; - } - /** - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1SystemTimestamps - */ - public function getDataCatalogTimestamps() - { - return $this->dataCatalogTimestamps; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1ExportTaxonomiesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1ExportTaxonomiesResponse.php deleted file mode 100644 index b3296591..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1ExportTaxonomiesResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -taxonomies = $taxonomies; - } - /** - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1SerializedTaxonomy - */ - public function getTaxonomies() - { - return $this->taxonomies; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1FieldType.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1FieldType.php deleted file mode 100644 index a1947d5f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1FieldType.php +++ /dev/null @@ -1,46 +0,0 @@ -enumType = $enumType; - } - /** - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1FieldTypeEnumType - */ - public function getEnumType() - { - return $this->enumType; - } - public function setPrimitiveType($primitiveType) - { - $this->primitiveType = $primitiveType; - } - public function getPrimitiveType() - { - return $this->primitiveType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1FieldTypeEnumType.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1FieldTypeEnumType.php deleted file mode 100644 index e3de8fb1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1FieldTypeEnumType.php +++ /dev/null @@ -1,38 +0,0 @@ -allowedValues = $allowedValues; - } - /** - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1FieldTypeEnumTypeEnumValue - */ - public function getAllowedValues() - { - return $this->allowedValues; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1FieldTypeEnumTypeEnumValue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1FieldTypeEnumTypeEnumValue.php deleted file mode 100644 index 72de965e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1FieldTypeEnumTypeEnumValue.php +++ /dev/null @@ -1,30 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1GcsFileSpec.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1GcsFileSpec.php deleted file mode 100644 index 1876cd89..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1GcsFileSpec.php +++ /dev/null @@ -1,55 +0,0 @@ -filePath = $filePath; - } - public function getFilePath() - { - return $this->filePath; - } - /** - * @param Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1SystemTimestamps - */ - public function setGcsTimestamps(Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1SystemTimestamps $gcsTimestamps) - { - $this->gcsTimestamps = $gcsTimestamps; - } - /** - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1SystemTimestamps - */ - public function getGcsTimestamps() - { - return $this->gcsTimestamps; - } - public function setSizeBytes($sizeBytes) - { - $this->sizeBytes = $sizeBytes; - } - public function getSizeBytes() - { - return $this->sizeBytes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1GcsFilesetSpec.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1GcsFilesetSpec.php deleted file mode 100644 index b97d602e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1GcsFilesetSpec.php +++ /dev/null @@ -1,47 +0,0 @@ -filePatterns = $filePatterns; - } - public function getFilePatterns() - { - return $this->filePatterns; - } - /** - * @param Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1GcsFileSpec - */ - public function setSampleGcsFileSpecs($sampleGcsFileSpecs) - { - $this->sampleGcsFileSpecs = $sampleGcsFileSpecs; - } - /** - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1GcsFileSpec - */ - public function getSampleGcsFileSpecs() - { - return $this->sampleGcsFileSpecs; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1ImportTaxonomiesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1ImportTaxonomiesRequest.php deleted file mode 100644 index be0f4b96..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1ImportTaxonomiesRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -inlineSource = $inlineSource; - } - /** - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1InlineSource - */ - public function getInlineSource() - { - return $this->inlineSource; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1ImportTaxonomiesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1ImportTaxonomiesResponse.php deleted file mode 100644 index b366734c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1ImportTaxonomiesResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -taxonomies = $taxonomies; - } - /** - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1Taxonomy - */ - public function getTaxonomies() - { - return $this->taxonomies; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1InlineSource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1InlineSource.php deleted file mode 100644 index 1f9ce726..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1InlineSource.php +++ /dev/null @@ -1,38 +0,0 @@ -taxonomies = $taxonomies; - } - /** - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1SerializedTaxonomy - */ - public function getTaxonomies() - { - return $this->taxonomies; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1ListEntriesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1ListEntriesResponse.php deleted file mode 100644 index 113278ce..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1ListEntriesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -entries = $entries; - } - /** - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1Entry - */ - public function getEntries() - { - return $this->entries; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1ListEntryGroupsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1ListEntryGroupsResponse.php deleted file mode 100644 index cd643b24..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1ListEntryGroupsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -entryGroups = $entryGroups; - } - /** - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1EntryGroup - */ - public function getEntryGroups() - { - return $this->entryGroups; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1ListPolicyTagsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1ListPolicyTagsResponse.php deleted file mode 100644 index 86f3d2d2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1ListPolicyTagsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1PolicyTag - */ - public function setPolicyTags($policyTags) - { - $this->policyTags = $policyTags; - } - /** - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1PolicyTag - */ - public function getPolicyTags() - { - return $this->policyTags; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1ListTagsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1ListTagsResponse.php deleted file mode 100644 index 1bc8928e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1ListTagsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1Tag - */ - public function setTags($tags) - { - $this->tags = $tags; - } - /** - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1Tag - */ - public function getTags() - { - return $this->tags; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1ListTaxonomiesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1ListTaxonomiesResponse.php deleted file mode 100644 index f69d6ffe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1ListTaxonomiesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1Taxonomy - */ - public function setTaxonomies($taxonomies) - { - $this->taxonomies = $taxonomies; - } - /** - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1Taxonomy - */ - public function getTaxonomies() - { - return $this->taxonomies; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1PolicyTag.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1PolicyTag.php deleted file mode 100644 index e33f236c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1PolicyTag.php +++ /dev/null @@ -1,67 +0,0 @@ -childPolicyTags = $childPolicyTags; - } - public function getChildPolicyTags() - { - return $this->childPolicyTags; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setParentPolicyTag($parentPolicyTag) - { - $this->parentPolicyTag = $parentPolicyTag; - } - public function getParentPolicyTag() - { - return $this->parentPolicyTag; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1RenameTagTemplateFieldRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1RenameTagTemplateFieldRequest.php deleted file mode 100644 index 76896703..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1RenameTagTemplateFieldRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -newTagTemplateFieldId = $newTagTemplateFieldId; - } - public function getNewTagTemplateFieldId() - { - return $this->newTagTemplateFieldId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1Schema.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1Schema.php deleted file mode 100644 index 7f525793..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1Schema.php +++ /dev/null @@ -1,38 +0,0 @@ -columns = $columns; - } - /** - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1ColumnSchema - */ - public function getColumns() - { - return $this->columns; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1SearchCatalogRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1SearchCatalogRequest.php deleted file mode 100644 index 5a46401f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1SearchCatalogRequest.php +++ /dev/null @@ -1,73 +0,0 @@ -orderBy = $orderBy; - } - public function getOrderBy() - { - return $this->orderBy; - } - public function setPageSize($pageSize) - { - $this->pageSize = $pageSize; - } - public function getPageSize() - { - return $this->pageSize; - } - public function setPageToken($pageToken) - { - $this->pageToken = $pageToken; - } - public function getPageToken() - { - return $this->pageToken; - } - public function setQuery($query) - { - $this->query = $query; - } - public function getQuery() - { - return $this->query; - } - /** - * @param Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1SearchCatalogRequestScope - */ - public function setScope(Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1SearchCatalogRequestScope $scope) - { - $this->scope = $scope; - } - /** - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1SearchCatalogRequestScope - */ - public function getScope() - { - return $this->scope; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1SearchCatalogRequestScope.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1SearchCatalogRequestScope.php deleted file mode 100644 index a78fa069..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1SearchCatalogRequestScope.php +++ /dev/null @@ -1,49 +0,0 @@ -includeGcpPublicDatasets = $includeGcpPublicDatasets; - } - public function getIncludeGcpPublicDatasets() - { - return $this->includeGcpPublicDatasets; - } - public function setIncludeOrgIds($includeOrgIds) - { - $this->includeOrgIds = $includeOrgIds; - } - public function getIncludeOrgIds() - { - return $this->includeOrgIds; - } - public function setIncludeProjectIds($includeProjectIds) - { - $this->includeProjectIds = $includeProjectIds; - } - public function getIncludeProjectIds() - { - return $this->includeProjectIds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1SearchCatalogResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1SearchCatalogResponse.php deleted file mode 100644 index 0bc0cfc8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1SearchCatalogResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1SearchCatalogResult - */ - public function setResults($results) - { - $this->results = $results; - } - /** - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1SearchCatalogResult - */ - public function getResults() - { - return $this->results; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1SearchCatalogResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1SearchCatalogResult.php deleted file mode 100644 index 079edc49..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1SearchCatalogResult.php +++ /dev/null @@ -1,57 +0,0 @@ -linkedResource = $linkedResource; - } - public function getLinkedResource() - { - return $this->linkedResource; - } - public function setRelativeResourceName($relativeResourceName) - { - $this->relativeResourceName = $relativeResourceName; - } - public function getRelativeResourceName() - { - return $this->relativeResourceName; - } - public function setSearchResultSubtype($searchResultSubtype) - { - $this->searchResultSubtype = $searchResultSubtype; - } - public function getSearchResultSubtype() - { - return $this->searchResultSubtype; - } - public function setSearchResultType($searchResultType) - { - $this->searchResultType = $searchResultType; - } - public function getSearchResultType() - { - return $this->searchResultType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1SerializedPolicyTag.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1SerializedPolicyTag.php deleted file mode 100644 index 8e34e655..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1SerializedPolicyTag.php +++ /dev/null @@ -1,56 +0,0 @@ -childPolicyTags = $childPolicyTags; - } - /** - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1SerializedPolicyTag - */ - public function getChildPolicyTags() - { - return $this->childPolicyTags; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1SerializedTaxonomy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1SerializedTaxonomy.php deleted file mode 100644 index 56531842..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1SerializedTaxonomy.php +++ /dev/null @@ -1,56 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - /** - * @param Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1SerializedPolicyTag - */ - public function setPolicyTags($policyTags) - { - $this->policyTags = $policyTags; - } - /** - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1SerializedPolicyTag - */ - public function getPolicyTags() - { - return $this->policyTags; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1SystemTimestamps.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1SystemTimestamps.php deleted file mode 100644 index a462f94b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1SystemTimestamps.php +++ /dev/null @@ -1,48 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setExpireTime($expireTime) - { - $this->expireTime = $expireTime; - } - public function getExpireTime() - { - return $this->expireTime; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1TableSpec.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1TableSpec.php deleted file mode 100644 index f0cc49ec..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1TableSpec.php +++ /dev/null @@ -1,30 +0,0 @@ -groupedEntry = $groupedEntry; - } - public function getGroupedEntry() - { - return $this->groupedEntry; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1Tag.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1Tag.php deleted file mode 100644 index 48714db9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1Tag.php +++ /dev/null @@ -1,73 +0,0 @@ -column = $column; - } - public function getColumn() - { - return $this->column; - } - /** - * @param Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1TagField - */ - public function setFields($fields) - { - $this->fields = $fields; - } - /** - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1TagField - */ - public function getFields() - { - return $this->fields; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setTemplate($template) - { - $this->template = $template; - } - public function getTemplate() - { - return $this->template; - } - public function setTemplateDisplayName($templateDisplayName) - { - $this->templateDisplayName = $templateDisplayName; - } - public function getTemplateDisplayName() - { - return $this->templateDisplayName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1TagField.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1TagField.php deleted file mode 100644 index 7a3b14c3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1TagField.php +++ /dev/null @@ -1,82 +0,0 @@ -boolValue = $boolValue; - } - public function getBoolValue() - { - return $this->boolValue; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setDoubleValue($doubleValue) - { - $this->doubleValue = $doubleValue; - } - public function getDoubleValue() - { - return $this->doubleValue; - } - /** - * @param Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1TagFieldEnumValue - */ - public function setEnumValue(Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1TagFieldEnumValue $enumValue) - { - $this->enumValue = $enumValue; - } - /** - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1TagFieldEnumValue - */ - public function getEnumValue() - { - return $this->enumValue; - } - public function setStringValue($stringValue) - { - $this->stringValue = $stringValue; - } - public function getStringValue() - { - return $this->stringValue; - } - public function setTimestampValue($timestampValue) - { - $this->timestampValue = $timestampValue; - } - public function getTimestampValue() - { - return $this->timestampValue; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1TagFieldEnumValue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1TagFieldEnumValue.php deleted file mode 100644 index 4115ab72..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1TagFieldEnumValue.php +++ /dev/null @@ -1,30 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1TagTemplate.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1TagTemplate.php deleted file mode 100644 index 87b7d64a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1TagTemplate.php +++ /dev/null @@ -1,55 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - /** - * @param Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1TagTemplateField - */ - public function setFields($fields) - { - $this->fields = $fields; - } - /** - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1TagTemplateField - */ - public function getFields() - { - return $this->fields; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1TagTemplateField.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1TagTemplateField.php deleted file mode 100644 index 8a1ec341..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1TagTemplateField.php +++ /dev/null @@ -1,64 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setIsRequired($isRequired) - { - $this->isRequired = $isRequired; - } - public function getIsRequired() - { - return $this->isRequired; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1FieldType - */ - public function setType(Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1FieldType $type) - { - $this->type = $type; - } - /** - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1FieldType - */ - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1Taxonomy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1Taxonomy.php deleted file mode 100644 index 233921fc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1Taxonomy.php +++ /dev/null @@ -1,58 +0,0 @@ -activatedPolicyTypes = $activatedPolicyTypes; - } - public function getActivatedPolicyTypes() - { - return $this->activatedPolicyTypes; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1ViewSpec.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1ViewSpec.php deleted file mode 100644 index 9d8c5025..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/GoogleCloudDatacatalogV1beta1ViewSpec.php +++ /dev/null @@ -1,30 +0,0 @@ -viewQuery = $viewQuery; - } - public function getViewQuery() - { - return $this->viewQuery; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/Policy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/Policy.php deleted file mode 100644 index 595cc56c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/Policy.php +++ /dev/null @@ -1,56 +0,0 @@ -bindings = $bindings; - } - /** - * @return Google_Service_DataCatalog_Binding - */ - public function getBindings() - { - return $this->bindings; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/Resource/Catalog.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/Resource/Catalog.php deleted file mode 100644 index e61bc0f1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/Resource/Catalog.php +++ /dev/null @@ -1,54 +0,0 @@ - - * $datacatalogService = new Google_Service_DataCatalog(...); - * $catalog = $datacatalogService->catalog; - * - */ -class Google_Service_DataCatalog_Resource_Catalog extends Google_Service_Resource -{ - /** - * Searches Data Catalog for multiple resources like entries, tags that match a - * query. - * - * This is a custom method (https://cloud.google.com/apis/design/custom_methods) - * and does not return the complete resource, only the resource identifier and - * high level fields. Clients can subsequentally call `Get` methods. - * - * Note that Data Catalog search queries do not guarantee full recall. Query - * results that match your query may not be returned, even in subsequent result - * pages. Also note that results returned (and not returned) can vary across - * repeated search queries. - * - * See [Data Catalog Search Syntax](/data-catalog/docs/how-to/search-reference) - * for more information. (catalog.search) - * - * @param Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1SearchCatalogRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1SearchCatalogResponse - */ - public function search(Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1SearchCatalogRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('search', array($params), "Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1SearchCatalogResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/Resource/Entries.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/Resource/Entries.php deleted file mode 100644 index 1cdc00be..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/Resource/Entries.php +++ /dev/null @@ -1,65 +0,0 @@ - - * $datacatalogService = new Google_Service_DataCatalog(...); - * $entries = $datacatalogService->entries; - * - */ -class Google_Service_DataCatalog_Resource_Entries extends Google_Service_Resource -{ - /** - * Get an entry by target resource name. This method allows clients to use the - * resource name from the source Google Cloud Platform service to get the Data - * Catalog Entry. (entries.lookup) - * - * @param array $optParams Optional parameters. - * - * @opt_param string linkedResource The full name of the Google Cloud Platform - * resource the Data Catalog entry represents. See: - * https://cloud.google.com/apis/design/resource_names#full_resource_name. Full - * names are case-sensitive. - * - * Examples: - * - * //bigquery.googleapis.com/projects/projectId/datasets/datasetId/tables/tableI - * d //pubsub.googleapis.com/projects/projectId/topics/topicId - * @opt_param string sqlResource The SQL name of the entry. SQL names are case- - * sensitive. - * - * Examples: - * - * * `cloud_pubsub.project_id.topic_id` * - * ``pubsub.project_id.`topic.id.with.dots` `` * - * `bigquery.table.project_id.dataset_id.table_id` * - * `bigquery.dataset.project_id.dataset_id` * - * `datacatalog.entry.project_id.location_id.entry_group_id.entry_id` - * - * `*_id`s shoud satisfy the standard SQL rules for identifiers. - * https://cloud.google.com/bigquery/docs/reference/standard-sql/lexical. - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1Entry - */ - public function lookup($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('lookup', array($params), "Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1Entry"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/Resource/Projects.php deleted file mode 100644 index 2c8ae692..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/Resource/Projects.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $datacatalogService = new Google_Service_DataCatalog(...); - * $projects = $datacatalogService->projects; - * - */ -class Google_Service_DataCatalog_Resource_Projects extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/Resource/ProjectsLocations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/Resource/ProjectsLocations.php deleted file mode 100644 index f6afc98d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/Resource/ProjectsLocations.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $datacatalogService = new Google_Service_DataCatalog(...); - * $locations = $datacatalogService->locations; - * - */ -class Google_Service_DataCatalog_Resource_ProjectsLocations extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/Resource/ProjectsLocationsEntryGroups.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/Resource/ProjectsLocationsEntryGroups.php deleted file mode 100644 index 5e0525d7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/Resource/ProjectsLocationsEntryGroups.php +++ /dev/null @@ -1,226 +0,0 @@ - - * $datacatalogService = new Google_Service_DataCatalog(...); - * $entryGroups = $datacatalogService->entryGroups; - * - */ -class Google_Service_DataCatalog_Resource_ProjectsLocationsEntryGroups extends Google_Service_Resource -{ - /** - * Creates an EntryGroup. - * - * The user should enable the Data Catalog API in the project identified by the - * `parent` parameter (see [Data Catalog Resource Project] (/data- - * catalog/docs/concepts/resource-project) for more information). - * - * A maximum of 10,000 entry groups may be created per organization across all - * locations. (entryGroups.create) - * - * @param string $parent Required. The name of the project this entry group is - * in. Example: - * - * * projects/{project_id}/locations/{location} - * - * Note that this EntryGroup and its child resources may not actually be stored - * in the location in this name. - * @param Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1EntryGroup $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string entryGroupId Required. The id of the entry group to create. - * The id must begin with a letter or underscore, contain only English letters, - * numbers and underscores, and be at most 64 characters. - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1EntryGroup - */ - public function create($parent, Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1EntryGroup $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1EntryGroup"); - } - /** - * Deletes an EntryGroup. Only entry groups that do not contain entries can be - * deleted. The user should enable the Data Catalog API in the project - * identified by the `name` parameter (see [Data Catalog Resource Project] - * (/data-catalog/docs/concepts/resource-project) for more information). - * (entryGroups.delete) - * - * @param string $name Required. The name of the entry group. For example, - * `projects/{project_id}/locations/{location}/entryGroups/{entry_group_id}`. - * @param array $optParams Optional parameters. - * - * @opt_param bool force Optional. If true, deletes all entries in the entry - * group. - * @return Google_Service_DataCatalog_DatacatalogEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_DataCatalog_DatacatalogEmpty"); - } - /** - * Gets an EntryGroup. (entryGroups.get) - * - * @param string $name Required. The name of the entry group. For example, - * `projects/{project_id}/locations/{location}/entryGroups/{entry_group_id}`. - * @param array $optParams Optional parameters. - * - * @opt_param string readMask The fields to return. If not set or empty, all - * fields are returned. - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1EntryGroup - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1EntryGroup"); - } - /** - * Gets the access control policy for a resource. A `NOT_FOUND` error is - * returned if the resource does not exist. An empty policy is returned if the - * resource exists but does not have a policy set on it. - * - * Supported resources are: - Tag templates. - Entries. - Entry groups. - * Note, this method cannot be used to manage policies for BigQuery, Cloud - * Pub/Sub and any external Google Cloud Platform resources synced to Cloud Data - * Catalog. - * - * Callers must have following Google IAM permission - - * `datacatalog.tagTemplates.getIamPolicy` to get policies on tag templates. - * - `datacatalog.entries.getIamPolicy` to get policies on entries. - - * `datacatalog.entryGroups.getIamPolicy` to get policies on entry groups. - * (entryGroups.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 Google_Service_DataCatalog_GetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DataCatalog_Policy - */ - public function getIamPolicy($resource, Google_Service_DataCatalog_GetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_DataCatalog_Policy"); - } - /** - * Lists entry groups. (entryGroups.listProjectsLocationsEntryGroups) - * - * @param string $parent Required. The name of the location that contains the - * entry groups, which can be provided in URL format. Example: - * - * * projects/{project_id}/locations/{location} - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Optional. Token that specifies which page is - * requested. If empty, the first page is returned. - * @opt_param int pageSize Optional. The maximum number of items to return. - * Default is 10. Max limit is 1000. Throws an invalid argument for `page_size > - * 1000`. - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1ListEntryGroupsResponse - */ - public function listProjectsLocationsEntryGroups($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1ListEntryGroupsResponse"); - } - /** - * Updates an EntryGroup. The user should enable the Data Catalog API in the - * project identified by the `entry_group.name` parameter (see [Data Catalog - * Resource Project] (/data-catalog/docs/concepts/resource-project) for more - * information). (entryGroups.patch) - * - * @param string $name The resource name of the entry group in URL format. - * Example: - * - * * projects/{project_id}/locations/{location}/entryGroups/{entry_group_id} - * - * Note that this EntryGroup and its child resources may not actually be stored - * in the location in this name. - * @param Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1EntryGroup $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask The fields to update on the entry group. If - * absent or empty, all modifiable fields are updated. - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1EntryGroup - */ - public function patch($name, Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1EntryGroup $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1EntryGroup"); - } - /** - * Sets the access control policy for a resource. Replaces any existing policy. - * Supported resources are: - Tag templates. - Entries. - Entry groups. - * Note, this method cannot be used to manage policies for BigQuery, Cloud - * Pub/Sub and any external Google Cloud Platform resources synced to Cloud Data - * Catalog. - * - * Callers must have following Google IAM permission - - * `datacatalog.tagTemplates.setIamPolicy` to set policies on tag templates. - * - `datacatalog.entries.setIamPolicy` to set policies on entries. - - * `datacatalog.entryGroups.setIamPolicy` to set policies on entry groups. - * (entryGroups.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_DataCatalog_SetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DataCatalog_Policy - */ - public function setIamPolicy($resource, Google_Service_DataCatalog_SetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_DataCatalog_Policy"); - } - /** - * Returns the caller's permissions on a resource. If the resource does not - * exist, an empty set of permissions is returned (We don't return a `NOT_FOUND` - * error). - * - * Supported resources are: - Tag templates. - Entries. - Entry groups. - * Note, this method cannot be used to manage policies for BigQuery, Cloud - * Pub/Sub and any external Google Cloud Platform resources synced to Cloud Data - * Catalog. - * - * A caller is not required to have Google IAM permission to make this request. - * (entryGroups.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_DataCatalog_TestIamPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DataCatalog_TestIamPermissionsResponse - */ - public function testIamPermissions($resource, Google_Service_DataCatalog_TestIamPermissionsRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_DataCatalog_TestIamPermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/Resource/ProjectsLocationsEntryGroupsEntries.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/Resource/ProjectsLocationsEntryGroupsEntries.php deleted file mode 100644 index 390106db..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/Resource/ProjectsLocationsEntryGroupsEntries.php +++ /dev/null @@ -1,210 +0,0 @@ - - * $datacatalogService = new Google_Service_DataCatalog(...); - * $entries = $datacatalogService->entries; - * - */ -class Google_Service_DataCatalog_Resource_ProjectsLocationsEntryGroupsEntries extends Google_Service_Resource -{ - /** - * Creates an entry. Only entries of 'FILESET' type or user-specified type can - * be created. - * - * The user should enable the Data Catalog API in the project identified by the - * `parent` parameter (see [Data Catalog Resource Project] (/data- - * catalog/docs/concepts/resource-project) for more information). - * - * A maximum of 100,000 entries may be created per entry group. (entries.create) - * - * @param string $parent Required. The name of the entry group this entry is in. - * Example: - * - * * projects/{project_id}/locations/{location}/entryGroups/{entry_group_id} - * - * Note that this Entry and its child resources may not actually be stored in - * the location in this name. - * @param Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1Entry $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string entryId Required. The id of the entry to create. - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1Entry - */ - public function create($parent, Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1Entry $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1Entry"); - } - /** - * Deletes an existing entry. Only entries created through CreateEntry method - * can be deleted. The user should enable the Data Catalog API in the project - * identified by the `name` parameter (see [Data Catalog Resource Project] - * (/data-catalog/docs/concepts/resource-project) for more information). - * (entries.delete) - * - * @param string $name Required. The name of the entry. Example: - * - * * projects/{project_id}/locations/{location}/entryGroups/{entry_group_id}/ent - * ries/{entry_id} - * @param array $optParams Optional parameters. - * @return Google_Service_DataCatalog_DatacatalogEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_DataCatalog_DatacatalogEmpty"); - } - /** - * Gets an entry. (entries.get) - * - * @param string $name Required. The name of the entry. Example: - * - * * projects/{project_id}/locations/{location}/entryGroups/{entry_group_id}/ent - * ries/{entry_id} - * - * Entry groups are logical groupings of entries. Currently, users cannot - * create/modify entry groups. They are created by Data Catalog; they include - * `@bigquery` for all BigQuery entries, and `@pubsub` for all Cloud Pub/Sub - * entries. - * @param array $optParams Optional parameters. - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1Entry - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1Entry"); - } - /** - * Gets the access control policy for a resource. A `NOT_FOUND` error is - * returned if the resource does not exist. An empty policy is returned if the - * resource exists but does not have a policy set on it. - * - * Supported resources are: - Tag templates. - Entries. - Entry groups. - * Note, this method cannot be used to manage policies for BigQuery, Cloud - * Pub/Sub and any external Google Cloud Platform resources synced to Cloud Data - * Catalog. - * - * Callers must have following Google IAM permission - - * `datacatalog.tagTemplates.getIamPolicy` to get policies on tag templates. - * - `datacatalog.entries.getIamPolicy` to get policies on entries. - - * `datacatalog.entryGroups.getIamPolicy` to get policies on entry groups. - * (entries.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 Google_Service_DataCatalog_GetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DataCatalog_Policy - */ - public function getIamPolicy($resource, Google_Service_DataCatalog_GetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_DataCatalog_Policy"); - } - /** - * Lists entries. (entries.listProjectsLocationsEntryGroupsEntries) - * - * @param string $parent Required. The name of the entry group that contains the - * entries, which can be provided in URL format. Example: - * - * * projects/{project_id}/locations/{location}/entryGroups/{entry_group_id} - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Token that specifies which page is requested. If - * empty, the first page is returned. - * @opt_param int pageSize The maximum number of items to return. Default is 10. - * Max limit is 1000. Throws an invalid argument for `page_size > 1000`. - * @opt_param string readMask The fields to return for each Entry. If not set or - * empty, all fields are returned. For example, setting read_mask to contain - * only one path "name" will cause ListEntries to return a list of Entries with - * only "name" field. - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1ListEntriesResponse - */ - public function listProjectsLocationsEntryGroupsEntries($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1ListEntriesResponse"); - } - /** - * Updates an existing entry. The user should enable the Data Catalog API in the - * project identified by the `entry.name` parameter (see [Data Catalog Resource - * Project] (/data-catalog/docs/concepts/resource-project) for more - * information). (entries.patch) - * - * @param string $name The Data Catalog resource name of the entry in URL - * format. Example: - * - * * projects/{project_id}/locations/{location}/entryGroups/{entry_group_id}/ent - * ries/{entry_id} - * - * Note that this Entry and its child resources may not actually be stored in - * the location in this name. - * @param Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1Entry $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask The fields to update on the entry. If absent or - * empty, all modifiable fields are updated. - * - * The following fields are modifiable: * For entries with type `DATA_STREAM`: - * * `schema` * For entries with type `FILESET` * `schema` * - * `display_name` * `description` * `gcs_fileset_spec` * - * `gcs_fileset_spec.file_patterns` - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1Entry - */ - public function patch($name, Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1Entry $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1Entry"); - } - /** - * Returns the caller's permissions on a resource. If the resource does not - * exist, an empty set of permissions is returned (We don't return a `NOT_FOUND` - * error). - * - * Supported resources are: - Tag templates. - Entries. - Entry groups. - * Note, this method cannot be used to manage policies for BigQuery, Cloud - * Pub/Sub and any external Google Cloud Platform resources synced to Cloud Data - * Catalog. - * - * A caller is not required to have Google IAM permission to make this request. - * (entries.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_DataCatalog_TestIamPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DataCatalog_TestIamPermissionsResponse - */ - public function testIamPermissions($resource, Google_Service_DataCatalog_TestIamPermissionsRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_DataCatalog_TestIamPermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/Resource/ProjectsLocationsEntryGroupsEntriesTags.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/Resource/ProjectsLocationsEntryGroupsEntriesTags.php deleted file mode 100644 index 9618a2fa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/Resource/ProjectsLocationsEntryGroupsEntriesTags.php +++ /dev/null @@ -1,115 +0,0 @@ - - * $datacatalogService = new Google_Service_DataCatalog(...); - * $tags = $datacatalogService->tags; - * - */ -class Google_Service_DataCatalog_Resource_ProjectsLocationsEntryGroupsEntriesTags extends Google_Service_Resource -{ - /** - * Creates a tag on an Entry. Note: The project identified by the `parent` - * parameter for the [tag](/data-catalog/docs/reference/rest/v1beta1/projects.lo - * cations.entryGroups.entries.tags/create#path-parameters) and the [tag - * template](/data- - * catalog/docs/reference/rest/v1beta1/projects.locations.tagTemplates/create - * #path-parameters) used to create the tag must be from the same organization. - * (tags.create) - * - * @param string $parent Required. The name of the resource to attach this tag - * to. Tags can be attached to Entries. Example: - * - * * projects/{project_id}/locations/{location}/entryGroups/{entry_group_id}/ent - * ries/{entry_id} - * - * Note that this Tag and its child resources may not actually be stored in the - * location in this name. - * @param Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1Tag $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1Tag - */ - public function create($parent, Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1Tag $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1Tag"); - } - /** - * Deletes a tag. (tags.delete) - * - * @param string $name Required. The name of the tag to delete. Example: - * - * * projects/{project_id}/locations/{location}/entryGroups/{entry_group_id}/ent - * ries/{entry_id}/tags/{tag_id} - * @param array $optParams Optional parameters. - * @return Google_Service_DataCatalog_DatacatalogEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_DataCatalog_DatacatalogEmpty"); - } - /** - * Lists the tags on an Entry. - * (tags.listProjectsLocationsEntryGroupsEntriesTags) - * - * @param string $parent Required. The name of the Data Catalog resource to list - * the tags of. The resource could be an Entry. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Token that specifies which page is requested. If - * empty, the first page is returned. - * @opt_param int pageSize The maximum number of tags to return. Default is 10. - * Max limit is 1000. - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1ListTagsResponse - */ - public function listProjectsLocationsEntryGroupsEntriesTags($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1ListTagsResponse"); - } - /** - * Updates an existing tag. (tags.patch) - * - * @param string $name The resource name of the tag in URL format. Example: - * - * * projects/{project_id}/locations/{location}/entrygroups/{entry_group_id}/ent - * ries/{entry_id}/tags/{tag_id} - * - * where `tag_id` is a system-generated identifier. Note that this Tag may not - * actually be stored in the location in this name. - * @param Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1Tag $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask The fields to update on the Tag. If absent or - * empty, all modifiable fields are updated. Currently the only modifiable field - * is the field `fields`. - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1Tag - */ - public function patch($name, Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1Tag $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1Tag"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/Resource/ProjectsLocationsTagTemplates.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/Resource/ProjectsLocationsTagTemplates.php deleted file mode 100644 index 615e7e6e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/Resource/ProjectsLocationsTagTemplates.php +++ /dev/null @@ -1,208 +0,0 @@ - - * $datacatalogService = new Google_Service_DataCatalog(...); - * $tagTemplates = $datacatalogService->tagTemplates; - * - */ -class Google_Service_DataCatalog_Resource_ProjectsLocationsTagTemplates extends Google_Service_Resource -{ - /** - * Creates a tag template. The user should enable the Data Catalog API in the - * project identified by the `parent` parameter (see [Data Catalog Resource - * Project](/data-catalog/docs/concepts/resource-project) for more information). - * (tagTemplates.create) - * - * @param string $parent Required. The name of the project and the template - * location [region](/compute/docs/regions-zones/#available). NOTE: Currently, - * only the `us-central1 region` is supported. - * - * Example: - * - * * projects/{project_id}/locations/us-central1 - * @param Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1TagTemplate $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string tagTemplateId Required. The id of the tag template to - * create. - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1TagTemplate - */ - public function create($parent, Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1TagTemplate $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1TagTemplate"); - } - /** - * Deletes a tag template and all tags using the template. The user should - * enable the Data Catalog API in the project identified by the `name` parameter - * (see [Data Catalog Resource Project] (/data-catalog/docs/concepts/resource- - * project) for more information). (tagTemplates.delete) - * - * @param string $name Required. The name of the tag template to delete. - * Example: - * - * * projects/{project_id}/locations/{location}/tagTemplates/{tag_template_id} - * @param array $optParams Optional parameters. - * - * @opt_param bool force Required. Currently, this field must always be set to - * `true`. This confirms the deletion of any possible tags using this template. - * `force = false` will be supported in the future. - * @return Google_Service_DataCatalog_DatacatalogEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_DataCatalog_DatacatalogEmpty"); - } - /** - * Gets a tag template. (tagTemplates.get) - * - * @param string $name Required. The name of the tag template. Example: - * - * * projects/{project_id}/locations/{location}/tagTemplates/{tag_template_id} - * @param array $optParams Optional parameters. - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1TagTemplate - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1TagTemplate"); - } - /** - * Gets the access control policy for a resource. A `NOT_FOUND` error is - * returned if the resource does not exist. An empty policy is returned if the - * resource exists but does not have a policy set on it. - * - * Supported resources are: - Tag templates. - Entries. - Entry groups. - * Note, this method cannot be used to manage policies for BigQuery, Cloud - * Pub/Sub and any external Google Cloud Platform resources synced to Cloud Data - * Catalog. - * - * Callers must have following Google IAM permission - - * `datacatalog.tagTemplates.getIamPolicy` to get policies on tag templates. - * - `datacatalog.entries.getIamPolicy` to get policies on entries. - - * `datacatalog.entryGroups.getIamPolicy` to get policies on entry groups. - * (tagTemplates.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 Google_Service_DataCatalog_GetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DataCatalog_Policy - */ - public function getIamPolicy($resource, Google_Service_DataCatalog_GetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_DataCatalog_Policy"); - } - /** - * Updates a tag template. This method cannot be used to update the fields of a - * template. The tag template fields are represented as separate resources and - * should be updated using their own create/update/delete methods. The user - * should enable the Data Catalog API in the project identified by the - * `tag_template.name` parameter (see [Data Catalog Resource Project] (/data- - * catalog/docs/concepts/resource-project) for more information). - * (tagTemplates.patch) - * - * @param string $name The resource name of the tag template in URL format. - * Example: - * - * * projects/{project_id}/locations/{location}/tagTemplates/{tag_template_id} - * - * Note that this TagTemplate and its child resources may not actually be stored - * in the location in this name. - * @param Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1TagTemplate $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask The field mask specifies the parts of the - * template to overwrite. - * - * Allowed fields: - * - * * `display_name` - * - * If absent or empty, all of the allowed fields above will be updated. - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1TagTemplate - */ - public function patch($name, Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1TagTemplate $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1TagTemplate"); - } - /** - * Sets the access control policy for a resource. Replaces any existing policy. - * Supported resources are: - Tag templates. - Entries. - Entry groups. - * Note, this method cannot be used to manage policies for BigQuery, Cloud - * Pub/Sub and any external Google Cloud Platform resources synced to Cloud Data - * Catalog. - * - * Callers must have following Google IAM permission - - * `datacatalog.tagTemplates.setIamPolicy` to set policies on tag templates. - * - `datacatalog.entries.setIamPolicy` to set policies on entries. - - * `datacatalog.entryGroups.setIamPolicy` to set policies on entry groups. - * (tagTemplates.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_DataCatalog_SetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DataCatalog_Policy - */ - public function setIamPolicy($resource, Google_Service_DataCatalog_SetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_DataCatalog_Policy"); - } - /** - * Returns the caller's permissions on a resource. If the resource does not - * exist, an empty set of permissions is returned (We don't return a `NOT_FOUND` - * error). - * - * Supported resources are: - Tag templates. - Entries. - Entry groups. - * Note, this method cannot be used to manage policies for BigQuery, Cloud - * Pub/Sub and any external Google Cloud Platform resources synced to Cloud Data - * Catalog. - * - * A caller is not required to have Google IAM permission to make this request. - * (tagTemplates.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_DataCatalog_TestIamPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DataCatalog_TestIamPermissionsResponse - */ - public function testIamPermissions($resource, Google_Service_DataCatalog_TestIamPermissionsRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_DataCatalog_TestIamPermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/Resource/ProjectsLocationsTagTemplatesFields.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/Resource/ProjectsLocationsTagTemplatesFields.php deleted file mode 100644 index d70f7fbb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/Resource/ProjectsLocationsTagTemplatesFields.php +++ /dev/null @@ -1,135 +0,0 @@ - - * $datacatalogService = new Google_Service_DataCatalog(...); - * $fields = $datacatalogService->fields; - * - */ -class Google_Service_DataCatalog_Resource_ProjectsLocationsTagTemplatesFields extends Google_Service_Resource -{ - /** - * Creates a field in a tag template. The user should enable the Data Catalog - * API in the project identified by the `parent` parameter (see [Data Catalog - * Resource Project](/data-catalog/docs/concepts/resource-project) for more - * information). (fields.create) - * - * @param string $parent Required. The name of the project and the template - * location [region](/compute/docs/regions-zones/#available). NOTE: Currently, - * only the `us-central1 region` is supported. - * - * Example: - * - * * projects/{project_id}/locations/us-central1/tagTemplates/{tag_template_id} - * @param Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1TagTemplateField $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string tagTemplateFieldId Required. The ID of the tag template - * field to create. Field ids can contain letters (both uppercase and - * lowercase), numbers (0-9), underscores (_) and dashes (-). Field IDs must be - * at least 1 character long and at most 128 characters long. Field IDs must - * also be unique within their template. - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1TagTemplateField - */ - public function create($parent, Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1TagTemplateField $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1TagTemplateField"); - } - /** - * Deletes a field in a tag template and all uses of that field. The user should - * enable the Data Catalog API in the project identified by the `name` parameter - * (see [Data Catalog Resource Project] (/data-catalog/docs/concepts/resource- - * project) for more information). (fields.delete) - * - * @param string $name Required. The name of the tag template field to delete. - * Example: - * - * * projects/{project_id}/locations/{location}/tagTemplates/{tag_template_id}/f - * ields/{tag_template_field_id} - * @param array $optParams Optional parameters. - * - * @opt_param bool force Required. Currently, this field must always be set to - * `true`. This confirms the deletion of this field from any tags using this - * field. `force = false` will be supported in the future. - * @return Google_Service_DataCatalog_DatacatalogEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_DataCatalog_DatacatalogEmpty"); - } - /** - * Updates a field in a tag template. This method cannot be used to update the - * field type. The user should enable the Data Catalog API in the project - * identified by the `name` parameter (see [Data Catalog Resource Project] - * (/data-catalog/docs/concepts/resource-project) for more information). - * (fields.patch) - * - * @param string $name Required. The name of the tag template field. Example: - * - * * projects/{project_id}/locations/{location}/tagTemplates/{tag_template_id}/f - * ields/{tag_template_field_id} - * @param Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1TagTemplateField $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Optional. The field mask specifies the parts of - * the template to be updated. Allowed fields: - * - * * `display_name` * `type.enum_type` * `is_required` - * - * If `update_mask` is not set or empty, all of the allowed fields above will be - * updated. - * - * When updating an enum type, the provided values will be merged with the - * existing values. Therefore, enum values can only be added, existing enum - * values cannot be deleted nor renamed. Updating a template field from optional - * to required is NOT allowed. - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1TagTemplateField - */ - public function patch($name, Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1TagTemplateField $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1TagTemplateField"); - } - /** - * Renames a field in a tag template. The user should enable the Data Catalog - * API in the project identified by the `name` parameter (see [Data Catalog - * Resource Project](/data-catalog/docs/concepts/resource-project) for more - * information). (fields.rename) - * - * @param string $name Required. The name of the tag template. Example: - * - * * projects/{project_id}/locations/{location}/tagTemplates/{tag_template_id}/f - * ields/{tag_template_field_id} - * @param Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1RenameTagTemplateFieldRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1TagTemplateField - */ - public function rename($name, Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1RenameTagTemplateFieldRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('rename', array($params), "Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1TagTemplateField"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/Resource/ProjectsLocationsTaxonomies.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/Resource/ProjectsLocationsTaxonomies.php deleted file mode 100644 index ddd737aa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/Resource/ProjectsLocationsTaxonomies.php +++ /dev/null @@ -1,201 +0,0 @@ - - * $datacatalogService = new Google_Service_DataCatalog(...); - * $taxonomies = $datacatalogService->taxonomies; - * - */ -class Google_Service_DataCatalog_Resource_ProjectsLocationsTaxonomies extends Google_Service_Resource -{ - /** - * Creates a taxonomy in the specified project. (taxonomies.create) - * - * @param string $parent Required. Resource name of the project that the - * taxonomy will belong to. - * @param Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1Taxonomy $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1Taxonomy - */ - public function create($parent, Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1Taxonomy $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1Taxonomy"); - } - /** - * Deletes a taxonomy. This operation will also delete all policy tags in this - * taxonomy along with their associated policies. (taxonomies.delete) - * - * @param string $name Required. Resource name of the taxonomy to be deleted. - * All policy tags in this taxonomy will also be deleted. - * @param array $optParams Optional parameters. - * @return Google_Service_DataCatalog_DatacatalogEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_DataCatalog_DatacatalogEmpty"); - } - /** - * Exports all taxonomies and their policy tags in a project. - * - * This method generates SerializedTaxonomy protos with nested policy tags that - * can be used as an input for future ImportTaxonomies calls. - * (taxonomies.export) - * - * @param string $parent Required. Resource name of the project that taxonomies - * to be exported will share. - * @param array $optParams Optional parameters. - * - * @opt_param string taxonomies Required. Resource names of the taxonomies to be - * exported. - * @opt_param bool serializedTaxonomies Export taxonomies as serialized - * taxonomies. - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1ExportTaxonomiesResponse - */ - public function export($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('export', array($params), "Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1ExportTaxonomiesResponse"); - } - /** - * Gets a taxonomy. (taxonomies.get) - * - * @param string $name Required. Resource name of the requested taxonomy. - * @param array $optParams Optional parameters. - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1Taxonomy - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1Taxonomy"); - } - /** - * Gets the IAM policy for a taxonomy or a policy tag. (taxonomies.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 Google_Service_DataCatalog_GetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DataCatalog_Policy - */ - public function getIamPolicy($resource, Google_Service_DataCatalog_GetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_DataCatalog_Policy"); - } - /** - * Imports all taxonomies and their policy tags to a project as new taxonomies. - * - * This method provides a bulk taxonomy / policy tag creation using nested proto - * structure. (taxonomies.import) - * - * @param string $parent Required. Resource name of project that the newly - * created taxonomies will belong to. - * @param Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1ImportTaxonomiesRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1ImportTaxonomiesResponse - */ - public function import($parent, Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1ImportTaxonomiesRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('import', array($params), "Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1ImportTaxonomiesResponse"); - } - /** - * Lists all taxonomies in a project in a particular location that the caller - * has permission to view. (taxonomies.listProjectsLocationsTaxonomies) - * - * @param string $parent Required. Resource name of the project to list the - * taxonomies of. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The next_page_token value returned from a - * previous list request, if any. If not set, defaults to an empty string. - * @opt_param int pageSize The maximum number of items to return. Must be a - * value between 1 and 1000. If not set, defaults to 50. - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1ListTaxonomiesResponse - */ - public function listProjectsLocationsTaxonomies($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1ListTaxonomiesResponse"); - } - /** - * Updates a taxonomy. (taxonomies.patch) - * - * @param string $name Output only. Resource name of this taxonomy, whose format - * is: "projects/{project_number}/locations/{location_id}/taxonomies/{id}". - * @param Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1Taxonomy $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask The update mask applies to the resource. For the - * `FieldMask` definition, see https://developers.google.com/protocol- - * buffers/docs/reference/google.protobuf#fieldmask If not set, defaults to all - * of the fields that are allowed to update. - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1Taxonomy - */ - public function patch($name, Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1Taxonomy $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1Taxonomy"); - } - /** - * Sets the IAM policy for a taxonomy or a policy tag. (taxonomies.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_DataCatalog_SetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DataCatalog_Policy - */ - public function setIamPolicy($resource, Google_Service_DataCatalog_SetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_DataCatalog_Policy"); - } - /** - * Returns the permissions that a caller has on the specified taxonomy or policy - * tag. (taxonomies.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_DataCatalog_TestIamPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DataCatalog_TestIamPermissionsResponse - */ - public function testIamPermissions($resource, Google_Service_DataCatalog_TestIamPermissionsRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_DataCatalog_TestIamPermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/Resource/ProjectsLocationsTaxonomiesPolicyTags.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/Resource/ProjectsLocationsTaxonomiesPolicyTags.php deleted file mode 100644 index 439f61b2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/Resource/ProjectsLocationsTaxonomiesPolicyTags.php +++ /dev/null @@ -1,165 +0,0 @@ - - * $datacatalogService = new Google_Service_DataCatalog(...); - * $policyTags = $datacatalogService->policyTags; - * - */ -class Google_Service_DataCatalog_Resource_ProjectsLocationsTaxonomiesPolicyTags extends Google_Service_Resource -{ - /** - * Creates a policy tag in the specified taxonomy. (policyTags.create) - * - * @param string $parent Required. Resource name of the taxonomy that the policy - * tag will belong to. - * @param Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1PolicyTag $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1PolicyTag - */ - public function create($parent, Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1PolicyTag $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1PolicyTag"); - } - /** - * Deletes a policy tag. Also deletes all of its descendant policy tags. - * (policyTags.delete) - * - * @param string $name Required. Resource name of the policy tag to be deleted. - * All of its descendant policy tags will also be deleted. - * @param array $optParams Optional parameters. - * @return Google_Service_DataCatalog_DatacatalogEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_DataCatalog_DatacatalogEmpty"); - } - /** - * Gets a policy tag. (policyTags.get) - * - * @param string $name Required. Resource name of the requested policy tag. - * @param array $optParams Optional parameters. - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1PolicyTag - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1PolicyTag"); - } - /** - * Gets the IAM policy for a taxonomy or a policy tag. (policyTags.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 Google_Service_DataCatalog_GetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DataCatalog_Policy - */ - public function getIamPolicy($resource, Google_Service_DataCatalog_GetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_DataCatalog_Policy"); - } - /** - * Lists all policy tags in a taxonomy. - * (policyTags.listProjectsLocationsTaxonomiesPolicyTags) - * - * @param string $parent Required. Resource name of the taxonomy to list the - * policy tags of. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The next_page_token value returned from a - * previous List request, if any. If not set, defaults to an empty string. - * @opt_param int pageSize The maximum number of items to return. Must be a - * value between 1 and 1000. If not set, defaults to 50. - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1ListPolicyTagsResponse - */ - public function listProjectsLocationsTaxonomiesPolicyTags($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1ListPolicyTagsResponse"); - } - /** - * Updates a policy tag. (policyTags.patch) - * - * @param string $name Output only. Resource name of this policy tag, whose - * format is: "projects/{project_number}/locations/{location_id}/taxonomies/{tax - * onomy_id}/policyTags/{id}". - * @param Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1PolicyTag $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask The update mask applies to the resource. Only - * display_name, description and parent_policy_tag can be updated and thus can - * be listed in the mask. If update_mask is not provided, all allowed fields - * (i.e. display_name, description and parent) will be updated. For more - * information including the `FieldMask` definition, see - * https://developers.google.com/protocol- - * buffers/docs/reference/google.protobuf#fieldmask If not set, defaults to all - * of the fields that are allowed to update. - * @return Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1PolicyTag - */ - public function patch($name, Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1PolicyTag $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1PolicyTag"); - } - /** - * Sets the IAM policy for a taxonomy or a policy tag. (policyTags.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_DataCatalog_SetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DataCatalog_Policy - */ - public function setIamPolicy($resource, Google_Service_DataCatalog_SetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_DataCatalog_Policy"); - } - /** - * Returns the permissions that a caller has on the specified taxonomy or policy - * tag. (policyTags.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_DataCatalog_TestIamPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DataCatalog_TestIamPermissionsResponse - */ - public function testIamPermissions($resource, Google_Service_DataCatalog_TestIamPermissionsRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_DataCatalog_TestIamPermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/SetIamPolicyRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/SetIamPolicyRequest.php deleted file mode 100644 index d6ed2b78..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/SetIamPolicyRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -policy = $policy; - } - /** - * @return Google_Service_DataCatalog_Policy - */ - public function getPolicy() - { - return $this->policy; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/TestIamPermissionsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/TestIamPermissionsRequest.php deleted file mode 100644 index a6124e79..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/TestIamPermissionsRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/TestIamPermissionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/TestIamPermissionsResponse.php deleted file mode 100644 index f7269925..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataCatalog/TestIamPermissionsResponse.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion.php deleted file mode 100644 index 0426b43c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion.php +++ /dev/null @@ -1,309 +0,0 @@ - - * Cloud Data Fusion is a fully-managed, cloud native, enterprise data - * integration service for quickly building and managing data pipelines. It - * provides a graphical interface to increase time efficiency and reduce - * complexity, and allows business users, developers, and data scientists to - * easily and reliably build scalable data integration solutions to cleanse, - * prepare, blend, transfer and transform data without having to wrestle with - * infrastructure.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_DataFusion extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - - public $projects_locations; - public $projects_locations_instances; - public $projects_locations_operations; - - /** - * Constructs the internal representation of the DataFusion service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://datafusion.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1beta1'; - $this->serviceName = 'datafusion'; - - $this->projects_locations = new Google_Service_DataFusion_Resource_ProjectsLocations( - $this, - $this->serviceName, - 'locations', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1beta1/{+name}/locations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'includeUnrevealedLocations' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->projects_locations_instances = new Google_Service_DataFusion_Resource_ProjectsLocationsInstances( - $this, - $this->serviceName, - 'instances', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1beta1/{+parent}/instances', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instanceId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getIamPolicy' => array( - 'path' => 'v1beta1/{+resource}:getIamPolicy', - 'httpMethod' => 'GET', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'options.requestedPolicyVersion' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'list' => array( - 'path' => 'v1beta1/{+parent}/instances', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'restart' => array( - 'path' => 'v1beta1/{+name}:restart', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setIamPolicy' => array( - 'path' => 'v1beta1/{+resource}:setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => 'v1beta1/{+resource}:testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'upgrade' => array( - 'path' => 'v1beta1/{+name}:upgrade', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_locations_operations = new Google_Service_DataFusion_Resource_ProjectsLocationsOperations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'cancel' => array( - 'path' => 'v1beta1/{+name}:cancel', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1beta1/{+name}/operations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/AuditConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/AuditConfig.php deleted file mode 100644 index 2e576d0e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/AuditConfig.php +++ /dev/null @@ -1,47 +0,0 @@ -auditLogConfigs = $auditLogConfigs; - } - /** - * @return Google_Service_DataFusion_AuditLogConfig - */ - public function getAuditLogConfigs() - { - return $this->auditLogConfigs; - } - public function setService($service) - { - $this->service = $service; - } - public function getService() - { - return $this->service; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/AuditLogConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/AuditLogConfig.php deleted file mode 100644 index 425fa501..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/AuditLogConfig.php +++ /dev/null @@ -1,40 +0,0 @@ -exemptedMembers = $exemptedMembers; - } - public function getExemptedMembers() - { - return $this->exemptedMembers; - } - public function setLogType($logType) - { - $this->logType = $logType; - } - public function getLogType() - { - return $this->logType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/Binding.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/Binding.php deleted file mode 100644 index 0b75078e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/Binding.php +++ /dev/null @@ -1,56 +0,0 @@ -condition = $condition; - } - /** - * @return Google_Service_DataFusion_Expr - */ - public function getCondition() - { - return $this->condition; - } - public function setMembers($members) - { - $this->members = $members; - } - public function getMembers() - { - return $this->members; - } - public function setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/CancelOperationRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/CancelOperationRequest.php deleted file mode 100644 index 48fe6390..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/CancelOperationRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setExpression($expression) - { - $this->expression = $expression; - } - public function getExpression() - { - return $this->expression; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/Instance.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/Instance.php deleted file mode 100644 index 664ee440..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/Instance.php +++ /dev/null @@ -1,225 +0,0 @@ -apiEndpoint = $apiEndpoint; - } - public function getApiEndpoint() - { - return $this->apiEndpoint; - } - /** - * @param Google_Service_DataFusion_Version - */ - public function setAvailableVersion($availableVersion) - { - $this->availableVersion = $availableVersion; - } - /** - * @return Google_Service_DataFusion_Version - */ - public function getAvailableVersion() - { - return $this->availableVersion; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setEnableStackdriverLogging($enableStackdriverLogging) - { - $this->enableStackdriverLogging = $enableStackdriverLogging; - } - public function getEnableStackdriverLogging() - { - return $this->enableStackdriverLogging; - } - public function setEnableStackdriverMonitoring($enableStackdriverMonitoring) - { - $this->enableStackdriverMonitoring = $enableStackdriverMonitoring; - } - public function getEnableStackdriverMonitoring() - { - return $this->enableStackdriverMonitoring; - } - public function setGcsBucket($gcsBucket) - { - $this->gcsBucket = $gcsBucket; - } - public function getGcsBucket() - { - return $this->gcsBucket; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_DataFusion_NetworkConfig - */ - public function setNetworkConfig(Google_Service_DataFusion_NetworkConfig $networkConfig) - { - $this->networkConfig = $networkConfig; - } - /** - * @return Google_Service_DataFusion_NetworkConfig - */ - public function getNetworkConfig() - { - return $this->networkConfig; - } - public function setOptions($options) - { - $this->options = $options; - } - public function getOptions() - { - return $this->options; - } - public function setPrivateInstance($privateInstance) - { - $this->privateInstance = $privateInstance; - } - public function getPrivateInstance() - { - return $this->privateInstance; - } - public function setServiceAccount($serviceAccount) - { - $this->serviceAccount = $serviceAccount; - } - public function getServiceAccount() - { - return $this->serviceAccount; - } - public function setServiceEndpoint($serviceEndpoint) - { - $this->serviceEndpoint = $serviceEndpoint; - } - public function getServiceEndpoint() - { - return $this->serviceEndpoint; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setStateMessage($stateMessage) - { - $this->stateMessage = $stateMessage; - } - public function getStateMessage() - { - return $this->stateMessage; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } - public function setZone($zone) - { - $this->zone = $zone; - } - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/ListInstancesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/ListInstancesResponse.php deleted file mode 100644 index ca61f1d0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/ListInstancesResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -instances = $instances; - } - /** - * @return Google_Service_DataFusion_Instance - */ - public function getInstances() - { - return $this->instances; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setUnreachable($unreachable) - { - $this->unreachable = $unreachable; - } - public function getUnreachable() - { - return $this->unreachable; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/ListLocationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/ListLocationsResponse.php deleted file mode 100644 index 940a91ce..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/ListLocationsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -locations = $locations; - } - /** - * @return Google_Service_DataFusion_Location - */ - public function getLocations() - { - return $this->locations; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/ListOperationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/ListOperationsResponse.php deleted file mode 100644 index 50394583..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/ListOperationsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_DataFusion_Operation - */ - public function setOperations($operations) - { - $this->operations = $operations; - } - /** - * @return Google_Service_DataFusion_Operation - */ - public function getOperations() - { - return $this->operations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/Location.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/Location.php deleted file mode 100644 index 2b13e9eb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/Location.php +++ /dev/null @@ -1,66 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setLocationId($locationId) - { - $this->locationId = $locationId; - } - public function getLocationId() - { - return $this->locationId; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/NetworkConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/NetworkConfig.php deleted file mode 100644 index 3ae34c31..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/NetworkConfig.php +++ /dev/null @@ -1,39 +0,0 @@ -ipAllocation = $ipAllocation; - } - public function getIpAllocation() - { - return $this->ipAllocation; - } - public function setNetwork($network) - { - $this->network = $network; - } - public function getNetwork() - { - return $this->network; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/Operation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/Operation.php deleted file mode 100644 index b42a679b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/Operation.php +++ /dev/null @@ -1,73 +0,0 @@ -done = $done; - } - public function getDone() - { - return $this->done; - } - /** - * @param Google_Service_DataFusion_Status - */ - public function setError(Google_Service_DataFusion_Status $error) - { - $this->error = $error; - } - /** - * @return Google_Service_DataFusion_Status - */ - public function getError() - { - return $this->error; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/OperationMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/OperationMetadata.php deleted file mode 100644 index 5932a1df..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/OperationMetadata.php +++ /dev/null @@ -1,84 +0,0 @@ -apiVersion = $apiVersion; - } - public function getApiVersion() - { - return $this->apiVersion; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setRequestedCancellation($requestedCancellation) - { - $this->requestedCancellation = $requestedCancellation; - } - public function getRequestedCancellation() - { - return $this->requestedCancellation; - } - public function setStatusDetail($statusDetail) - { - $this->statusDetail = $statusDetail; - } - public function getStatusDetail() - { - return $this->statusDetail; - } - public function setTarget($target) - { - $this->target = $target; - } - public function getTarget() - { - return $this->target; - } - public function setVerb($verb) - { - $this->verb = $verb; - } - public function getVerb() - { - return $this->verb; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/Policy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/Policy.php deleted file mode 100644 index 3c70727b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/Policy.php +++ /dev/null @@ -1,72 +0,0 @@ -auditConfigs = $auditConfigs; - } - /** - * @return Google_Service_DataFusion_AuditConfig - */ - public function getAuditConfigs() - { - return $this->auditConfigs; - } - /** - * @param Google_Service_DataFusion_Binding - */ - public function setBindings($bindings) - { - $this->bindings = $bindings; - } - /** - * @return Google_Service_DataFusion_Binding - */ - public function getBindings() - { - return $this->bindings; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/Resource/Projects.php deleted file mode 100644 index 21a6d873..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/Resource/Projects.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $datafusionService = new Google_Service_DataFusion(...); - * $projects = $datafusionService->projects; - * - */ -class Google_Service_DataFusion_Resource_Projects extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/Resource/ProjectsLocations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/Resource/ProjectsLocations.php deleted file mode 100644 index 8934220f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/Resource/ProjectsLocations.php +++ /dev/null @@ -1,62 +0,0 @@ - - * $datafusionService = new Google_Service_DataFusion(...); - * $locations = $datafusionService->locations; - * - */ -class Google_Service_DataFusion_Resource_ProjectsLocations extends Google_Service_Resource -{ - /** - * Gets information about a location. (locations.get) - * - * @param string $name Resource name for the location. - * @param array $optParams Optional parameters. - * @return Google_Service_DataFusion_Location - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_DataFusion_Location"); - } - /** - * Lists information about the supported locations for this service. - * (locations.listProjectsLocations) - * - * @param string $name The resource that owns the locations collection, if - * applicable. - * @param array $optParams Optional parameters. - * - * @opt_param string filter The standard list filter. - * @opt_param bool includeUnrevealedLocations If true, the returned list will - * include locations which are not yet revealed. - * @opt_param string pageToken The standard list page token. - * @opt_param int pageSize The standard list page size. - * @return Google_Service_DataFusion_ListLocationsResponse - */ - public function listProjectsLocations($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_DataFusion_ListLocationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/Resource/ProjectsLocationsInstances.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/Resource/ProjectsLocationsInstances.php deleted file mode 100644 index ceb997dc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/Resource/ProjectsLocationsInstances.php +++ /dev/null @@ -1,223 +0,0 @@ - - * $datafusionService = new Google_Service_DataFusion(...); - * $instances = $datafusionService->instances; - * - */ -class Google_Service_DataFusion_Resource_ProjectsLocationsInstances extends Google_Service_Resource -{ - /** - * Creates a new Data Fusion instance in the specified project and location. - * (instances.create) - * - * @param string $parent The instance's project and location in the format - * projects/{project}/locations/{location}. - * @param Google_Service_DataFusion_Instance $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string instanceId The name of the instance to create. - * @return Google_Service_DataFusion_Operation - */ - public function create($parent, Google_Service_DataFusion_Instance $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_DataFusion_Operation"); - } - /** - * Deletes a single Date Fusion instance. (instances.delete) - * - * @param string $name The instance resource name in the format - * projects/{project}/locations/{location}/instances/{instance} - * @param array $optParams Optional parameters. - * @return Google_Service_DataFusion_Operation - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_DataFusion_Operation"); - } - /** - * Gets details of a single Data Fusion instance. (instances.get) - * - * @param string $name The instance resource name in the format - * projects/{project}/locations/{location}/instances/{instance}. - * @param array $optParams Optional parameters. - * @return Google_Service_DataFusion_Instance - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_DataFusion_Instance"); - } - /** - * Gets the access control policy for a resource. Returns an empty policy if the - * resource exists and does not have a policy set. (instances.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. - * @return Google_Service_DataFusion_Policy - */ - public function getIamPolicy($resource, $optParams = array()) - { - $params = array('resource' => $resource); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_DataFusion_Policy"); - } - /** - * Lists Data Fusion instances in the specified project and location. - * (instances.listProjectsLocationsInstances) - * - * @param string $parent The project and location for which to retrieve instance - * information in the format projects/{project}/locations/{location}. If the - * location is specified as '-' (wildcard), then all regions available to the - * project are queried, and the results are aggregated. - * @param array $optParams Optional parameters. - * - * @opt_param string filter List filter. - * @opt_param string pageToken The next_page_token value to use if there are - * additional results to retrieve for this list request. - * @opt_param string orderBy Sort results. Supported values are "name", "name - * desc", or "" (unsorted). - * @opt_param int pageSize The maximum number of items to return. - * @return Google_Service_DataFusion_ListInstancesResponse - */ - public function listProjectsLocationsInstances($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_DataFusion_ListInstancesResponse"); - } - /** - * Updates a single Data Fusion instance. (instances.patch) - * - * @param string $name Output only. The name of this instance is in the form of - * projects/{project}/locations/{location}/instances/{instance}. - * @param Google_Service_DataFusion_Instance $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Field mask is used to specify the fields that - * the update will overwrite in an instance resource. The fields specified in - * the update_mask are relative to the resource, not the full request. A field - * will be overwritten if it is in the mask. If the user does not provide a - * mask, all the supported fields (labels and options currently) will be - * overwritten. - * @return Google_Service_DataFusion_Operation - */ - public function patch($name, Google_Service_DataFusion_Instance $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_DataFusion_Operation"); - } - /** - * Restart a single Data Fusion instance. At the end of an operation instance is - * fully restarted. (instances.restart) - * - * @param string $name Name of the Data Fusion instance which need to be - * restarted in the form of - * projects/{project}/locations/{location}/instances/{instance} - * @param Google_Service_DataFusion_RestartInstanceRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DataFusion_Operation - */ - public function restart($name, Google_Service_DataFusion_RestartInstanceRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('restart', array($params), "Google_Service_DataFusion_Operation"); - } - /** - * Sets the access control policy on the specified resource. Replaces any - * existing policy. - * - * Can return Public Errors: NOT_FOUND, INVALID_ARGUMENT and PERMISSION_DENIED - * (instances.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_DataFusion_SetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DataFusion_Policy - */ - public function setIamPolicy($resource, Google_Service_DataFusion_SetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_DataFusion_Policy"); - } - /** - * 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. (instances.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_DataFusion_TestIamPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DataFusion_TestIamPermissionsResponse - */ - public function testIamPermissions($resource, Google_Service_DataFusion_TestIamPermissionsRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_DataFusion_TestIamPermissionsResponse"); - } - /** - * Upgrade a single Data Fusion instance. At the end of an operation instance is - * fully upgraded. (instances.upgrade) - * - * @param string $name Name of the Data Fusion instance which need to be - * upgraded in the form of - * projects/{project}/locations/{location}/instances/{instance} Instance will be - * upgraded with the latest stable version of the Data Fusion. - * @param Google_Service_DataFusion_UpgradeInstanceRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DataFusion_Operation - */ - public function upgrade($name, Google_Service_DataFusion_UpgradeInstanceRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('upgrade', array($params), "Google_Service_DataFusion_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/Resource/ProjectsLocationsOperations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/Resource/ProjectsLocationsOperations.php deleted file mode 100644 index 8019421e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/Resource/ProjectsLocationsOperations.php +++ /dev/null @@ -1,108 +0,0 @@ - - * $datafusionService = new Google_Service_DataFusion(...); - * $operations = $datafusionService->operations; - * - */ -class Google_Service_DataFusion_Resource_ProjectsLocationsOperations extends Google_Service_Resource -{ - /** - * Starts asynchronous cancellation on a long-running operation. The server - * makes a best effort to cancel the operation, but success is not guaranteed. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or - * other methods to check whether the cancellation succeeded or whether the - * operation completed despite cancellation. On successful cancellation, the - * operation is not deleted; instead, it becomes an operation with an - * Operation.error value with a google.rpc.Status.code of 1, corresponding to - * `Code.CANCELLED`. (operations.cancel) - * - * @param string $name The name of the operation resource to be cancelled. - * @param Google_Service_DataFusion_CancelOperationRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DataFusion_DatafusionEmpty - */ - public function cancel($name, Google_Service_DataFusion_CancelOperationRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('cancel', array($params), "Google_Service_DataFusion_DatafusionEmpty"); - } - /** - * Deletes a long-running operation. This method indicates that the client is no - * longer interested in the operation result. It does not cancel the operation. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. (operations.delete) - * - * @param string $name The name of the operation resource to be deleted. - * @param array $optParams Optional parameters. - * @return Google_Service_DataFusion_DatafusionEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_DataFusion_DatafusionEmpty"); - } - /** - * Gets the latest state of a long-running operation. Clients can use this - * method to poll the operation result at intervals as recommended by the API - * service. (operations.get) - * - * @param string $name The name of the operation resource. - * @param array $optParams Optional parameters. - * @return Google_Service_DataFusion_Operation - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_DataFusion_Operation"); - } - /** - * Lists operations that match the specified filter in the request. If the - * server doesn't support this method, it returns `UNIMPLEMENTED`. - * - * NOTE: the `name` binding allows API services to override the binding to use - * different resource name schemes, such as `users/operations`. To override the - * binding, API services can add a binding such as - * `"/v1/{name=users}/operations"` to their service configuration. For backwards - * compatibility, the default name includes the operations collection id, - * however overriding users must ensure the name binding is the parent resource, - * without the operations collection id. - * (operations.listProjectsLocationsOperations) - * - * @param string $name The name of the operation's parent resource. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The standard list page token. - * @opt_param int pageSize The standard list page size. - * @opt_param string filter The standard list filter. - * @return Google_Service_DataFusion_ListOperationsResponse - */ - public function listProjectsLocationsOperations($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_DataFusion_ListOperationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/RestartInstanceRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/RestartInstanceRequest.php deleted file mode 100644 index c28de512..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/RestartInstanceRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -policy = $policy; - } - /** - * @return Google_Service_DataFusion_Policy - */ - public function getPolicy() - { - return $this->policy; - } - public function setUpdateMask($updateMask) - { - $this->updateMask = $updateMask; - } - public function getUpdateMask() - { - return $this->updateMask; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/Status.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/Status.php deleted file mode 100644 index 87f6e7ec..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/Status.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/TestIamPermissionsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/TestIamPermissionsRequest.php deleted file mode 100644 index ef417b6f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/TestIamPermissionsRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/TestIamPermissionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/TestIamPermissionsResponse.php deleted file mode 100644 index 10022b93..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/TestIamPermissionsResponse.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/UpgradeInstanceRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/UpgradeInstanceRequest.php deleted file mode 100644 index 51bf3153..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataFusion/UpgradeInstanceRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -versionNumber = $versionNumber; - } - public function getVersionNumber() - { - return $this->versionNumber; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataTransfer.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataTransfer.php deleted file mode 100644 index 4685c3fa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataTransfer.php +++ /dev/null @@ -1,149 +0,0 @@ - - * Transfers user data from one user to another.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_DataTransfer extends Google_Service -{ - /** View and manage data transfers between users in your organization. */ - const ADMIN_DATATRANSFER = - "https://www.googleapis.com/auth/admin.datatransfer"; - /** View data transfers between users in your organization. */ - const ADMIN_DATATRANSFER_READONLY = - "https://www.googleapis.com/auth/admin.datatransfer.readonly"; - - public $applications; - public $transfers; - - /** - * Constructs the internal representation of the DataTransfer service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://www.googleapis.com/'; - $this->servicePath = 'admin/datatransfer/v1/'; - $this->batchPath = 'batch/admin/datatransfer_v1'; - $this->version = 'datatransfer_v1'; - $this->serviceName = 'admin'; - - $this->applications = new Google_Service_DataTransfer_Resource_Applications( - $this, - $this->serviceName, - 'applications', - array( - 'methods' => array( - 'get' => array( - 'path' => 'applications/{applicationId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'applicationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'applications', - 'httpMethod' => 'GET', - 'parameters' => array( - 'customerId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->transfers = new Google_Service_DataTransfer_Resource_Transfers( - $this, - $this->serviceName, - 'transfers', - array( - 'methods' => array( - 'get' => array( - 'path' => 'transfers/{dataTransferId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'dataTransferId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'transfers', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'list' => array( - 'path' => 'transfers', - 'httpMethod' => 'GET', - 'parameters' => array( - 'customerId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'newOwnerUserId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'oldOwnerUserId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'status' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataTransfer/Application.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataTransfer/Application.php deleted file mode 100644 index 63576308..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataTransfer/Application.php +++ /dev/null @@ -1,74 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_DataTransfer_ApplicationTransferParam - */ - public function setTransferParams($transferParams) - { - $this->transferParams = $transferParams; - } - /** - * @return Google_Service_DataTransfer_ApplicationTransferParam - */ - public function getTransferParams() - { - return $this->transferParams; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataTransfer/ApplicationDataTransfer.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataTransfer/ApplicationDataTransfer.php deleted file mode 100644 index a936c0fb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataTransfer/ApplicationDataTransfer.php +++ /dev/null @@ -1,56 +0,0 @@ -applicationId = $applicationId; - } - public function getApplicationId() - { - return $this->applicationId; - } - /** - * @param Google_Service_DataTransfer_ApplicationTransferParam - */ - public function setApplicationTransferParams($applicationTransferParams) - { - $this->applicationTransferParams = $applicationTransferParams; - } - /** - * @return Google_Service_DataTransfer_ApplicationTransferParam - */ - public function getApplicationTransferParams() - { - return $this->applicationTransferParams; - } - public function setApplicationTransferStatus($applicationTransferStatus) - { - $this->applicationTransferStatus = $applicationTransferStatus; - } - public function getApplicationTransferStatus() - { - return $this->applicationTransferStatus; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataTransfer/ApplicationTransferParam.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataTransfer/ApplicationTransferParam.php deleted file mode 100644 index 49a465d3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataTransfer/ApplicationTransferParam.php +++ /dev/null @@ -1,40 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataTransfer/ApplicationsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataTransfer/ApplicationsListResponse.php deleted file mode 100644 index 2ba5501d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataTransfer/ApplicationsListResponse.php +++ /dev/null @@ -1,65 +0,0 @@ -applications = $applications; - } - /** - * @return Google_Service_DataTransfer_Application - */ - public function getApplications() - { - return $this->applications; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataTransfer/DataTransfer.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataTransfer/DataTransfer.php deleted file mode 100644 index cb73f41a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataTransfer/DataTransfer.php +++ /dev/null @@ -1,101 +0,0 @@ -applicationDataTransfers = $applicationDataTransfers; - } - /** - * @return Google_Service_DataTransfer_ApplicationDataTransfer - */ - public function getApplicationDataTransfers() - { - return $this->applicationDataTransfers; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - 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 setNewOwnerUserId($newOwnerUserId) - { - $this->newOwnerUserId = $newOwnerUserId; - } - public function getNewOwnerUserId() - { - return $this->newOwnerUserId; - } - public function setOldOwnerUserId($oldOwnerUserId) - { - $this->oldOwnerUserId = $oldOwnerUserId; - } - public function getOldOwnerUserId() - { - return $this->oldOwnerUserId; - } - public function setOverallTransferStatusCode($overallTransferStatusCode) - { - $this->overallTransferStatusCode = $overallTransferStatusCode; - } - public function getOverallTransferStatusCode() - { - return $this->overallTransferStatusCode; - } - public function setRequestTime($requestTime) - { - $this->requestTime = $requestTime; - } - public function getRequestTime() - { - return $this->requestTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataTransfer/DataTransfersListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataTransfer/DataTransfersListResponse.php deleted file mode 100644 index 8b68de54..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataTransfer/DataTransfersListResponse.php +++ /dev/null @@ -1,65 +0,0 @@ -dataTransfers = $dataTransfers; - } - /** - * @return Google_Service_DataTransfer_DataTransfer - */ - public function getDataTransfers() - { - return $this->dataTransfers; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataTransfer/Resource/Applications.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataTransfer/Resource/Applications.php deleted file mode 100644 index 81528703..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataTransfer/Resource/Applications.php +++ /dev/null @@ -1,60 +0,0 @@ - - * $adminService = new Google_Service_DataTransfer(...); - * $applications = $adminService->applications; - * - */ -class Google_Service_DataTransfer_Resource_Applications extends Google_Service_Resource -{ - /** - * Retrieves information about an application for the given application ID. - * (applications.get) - * - * @param string $applicationId ID of the application resource to be retrieved. - * @param array $optParams Optional parameters. - * @return Google_Service_DataTransfer_Application - */ - public function get($applicationId, $optParams = array()) - { - $params = array('applicationId' => $applicationId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_DataTransfer_Application"); - } - /** - * Lists the applications available for data transfer for a customer. - * (applications.listApplications) - * - * @param array $optParams Optional parameters. - * - * @opt_param string customerId Immutable ID of the G Suite account. - * @opt_param int maxResults Maximum number of results to return. Default is - * 100. - * @opt_param string pageToken Token to specify next page in the list. - * @return Google_Service_DataTransfer_ApplicationsListResponse - */ - public function listApplications($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_DataTransfer_ApplicationsListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataTransfer/Resource/Transfers.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataTransfer/Resource/Transfers.php deleted file mode 100644 index 7bf4aaf2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DataTransfer/Resource/Transfers.php +++ /dev/null @@ -1,76 +0,0 @@ - - * $adminService = new Google_Service_DataTransfer(...); - * $transfers = $adminService->transfers; - * - */ -class Google_Service_DataTransfer_Resource_Transfers extends Google_Service_Resource -{ - /** - * Retrieves a data transfer request by its resource ID. (transfers.get) - * - * @param string $dataTransferId ID of the resource to be retrieved. This is - * returned in the response from the insert method. - * @param array $optParams Optional parameters. - * @return Google_Service_DataTransfer_DataTransfer - */ - public function get($dataTransferId, $optParams = array()) - { - $params = array('dataTransferId' => $dataTransferId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_DataTransfer_DataTransfer"); - } - /** - * Inserts a data transfer request. (transfers.insert) - * - * @param Google_Service_DataTransfer_DataTransfer $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DataTransfer_DataTransfer - */ - public function insert(Google_Service_DataTransfer_DataTransfer $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_DataTransfer_DataTransfer"); - } - /** - * Lists the transfers for a customer by source user, destination user, or - * status. (transfers.listTransfers) - * - * @param array $optParams Optional parameters. - * - * @opt_param string customerId Immutable ID of the G Suite account. - * @opt_param int maxResults Maximum number of results to return. Default is - * 100. - * @opt_param string newOwnerUserId Destination user's profile ID. - * @opt_param string oldOwnerUserId Source user's profile ID. - * @opt_param string pageToken Token to specify the next page in the list. - * @opt_param string status Status of the transfer. - * @return Google_Service_DataTransfer_DataTransfersListResponse - */ - public function listTransfers($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_DataTransfer_DataTransfersListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow.php deleted file mode 100644 index 9cc1dc25..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow.php +++ /dev/null @@ -1,895 +0,0 @@ - - * Manages Google Cloud Dataflow projects on Google Cloud Platform.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Dataflow extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** View and manage your Google Compute Engine resources. */ - const COMPUTE = - "https://www.googleapis.com/auth/compute"; - /** View your Google Compute Engine resources. */ - const COMPUTE_READONLY = - "https://www.googleapis.com/auth/compute.readonly"; - /** View your email address. */ - const USERINFO_EMAIL = - "https://www.googleapis.com/auth/userinfo.email"; - - public $projects; - public $projects_jobs; - public $projects_jobs_debug; - public $projects_jobs_messages; - public $projects_jobs_workItems; - public $projects_locations; - public $projects_locations_flexTemplates; - public $projects_locations_jobs; - public $projects_locations_jobs_debug; - public $projects_locations_jobs_messages; - public $projects_locations_jobs_workItems; - public $projects_locations_sql; - public $projects_locations_templates; - public $projects_templates; - - /** - * Constructs the internal representation of the Dataflow service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://dataflow.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1b3'; - $this->serviceName = 'dataflow'; - - $this->projects = new Google_Service_Dataflow_Resource_Projects( - $this, - $this->serviceName, - 'projects', - array( - 'methods' => array( - 'workerMessages' => array( - 'path' => 'v1b3/projects/{projectId}/WorkerMessages', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_jobs = new Google_Service_Dataflow_Resource_ProjectsJobs( - $this, - $this->serviceName, - 'jobs', - array( - 'methods' => array( - 'aggregated' => array( - 'path' => 'v1b3/projects/{projectId}/jobs:aggregated', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'location' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'create' => array( - 'path' => 'v1b3/projects/{projectId}/jobs', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'replaceJobId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'location' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'v1b3/projects/{projectId}/jobs/{jobId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'jobId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'location' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'getMetrics' => array( - 'path' => 'v1b3/projects/{projectId}/jobs/{jobId}/metrics', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'jobId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'location' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'startTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'v1b3/projects/{projectId}/jobs', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'location' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'v1b3/projects/{projectId}/jobs/{jobId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'jobId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'location' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_jobs_debug = new Google_Service_Dataflow_Resource_ProjectsJobsDebug( - $this, - $this->serviceName, - 'debug', - array( - 'methods' => array( - 'getConfig' => array( - 'path' => 'v1b3/projects/{projectId}/jobs/{jobId}/debug/getConfig', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'jobId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'sendCapture' => array( - 'path' => 'v1b3/projects/{projectId}/jobs/{jobId}/debug/sendCapture', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'jobId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_jobs_messages = new Google_Service_Dataflow_Resource_ProjectsJobsMessages( - $this, - $this->serviceName, - 'messages', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1b3/projects/{projectId}/jobs/{jobId}/messages', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'jobId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'endTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'location' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'startTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'minimumImportance' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_jobs_workItems = new Google_Service_Dataflow_Resource_ProjectsJobsWorkItems( - $this, - $this->serviceName, - 'workItems', - array( - 'methods' => array( - 'lease' => array( - 'path' => 'v1b3/projects/{projectId}/jobs/{jobId}/workItems:lease', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'jobId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'reportStatus' => array( - 'path' => 'v1b3/projects/{projectId}/jobs/{jobId}/workItems:reportStatus', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'jobId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_locations = new Google_Service_Dataflow_Resource_ProjectsLocations( - $this, - $this->serviceName, - 'locations', - array( - 'methods' => array( - 'workerMessages' => array( - 'path' => 'v1b3/projects/{projectId}/locations/{location}/WorkerMessages', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'location' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_locations_flexTemplates = new Google_Service_Dataflow_Resource_ProjectsLocationsFlexTemplates( - $this, - $this->serviceName, - 'flexTemplates', - array( - 'methods' => array( - 'launch' => array( - 'path' => 'v1b3/projects/{projectId}/locations/{location}/flexTemplates:launch', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'location' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_locations_jobs = new Google_Service_Dataflow_Resource_ProjectsLocationsJobs( - $this, - $this->serviceName, - 'jobs', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1b3/projects/{projectId}/locations/{location}/jobs', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'location' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'replaceJobId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'v1b3/projects/{projectId}/locations/{location}/jobs/{jobId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'location' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'jobId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'getMetrics' => array( - 'path' => 'v1b3/projects/{projectId}/locations/{location}/jobs/{jobId}/metrics', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'location' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'jobId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'startTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'v1b3/projects/{projectId}/locations/{location}/jobs', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'location' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'v1b3/projects/{projectId}/locations/{location}/jobs/{jobId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'location' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'jobId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_locations_jobs_debug = new Google_Service_Dataflow_Resource_ProjectsLocationsJobsDebug( - $this, - $this->serviceName, - 'debug', - array( - 'methods' => array( - 'getConfig' => array( - 'path' => 'v1b3/projects/{projectId}/locations/{location}/jobs/{jobId}/debug/getConfig', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'location' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'jobId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'sendCapture' => array( - 'path' => 'v1b3/projects/{projectId}/locations/{location}/jobs/{jobId}/debug/sendCapture', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'location' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'jobId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_locations_jobs_messages = new Google_Service_Dataflow_Resource_ProjectsLocationsJobsMessages( - $this, - $this->serviceName, - 'messages', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1b3/projects/{projectId}/locations/{location}/jobs/{jobId}/messages', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'location' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'jobId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'endTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'startTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'minimumImportance' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_locations_jobs_workItems = new Google_Service_Dataflow_Resource_ProjectsLocationsJobsWorkItems( - $this, - $this->serviceName, - 'workItems', - array( - 'methods' => array( - 'lease' => array( - 'path' => 'v1b3/projects/{projectId}/locations/{location}/jobs/{jobId}/workItems:lease', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'location' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'jobId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'reportStatus' => array( - 'path' => 'v1b3/projects/{projectId}/locations/{location}/jobs/{jobId}/workItems:reportStatus', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'location' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'jobId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_locations_sql = new Google_Service_Dataflow_Resource_ProjectsLocationsSql( - $this, - $this->serviceName, - 'sql', - array( - 'methods' => array( - 'validate' => array( - 'path' => 'v1b3/projects/{projectId}/locations/{location}/sql:validate', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'location' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'query' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_locations_templates = new Google_Service_Dataflow_Resource_ProjectsLocationsTemplates( - $this, - $this->serviceName, - 'templates', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1b3/projects/{projectId}/locations/{location}/templates', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'location' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1b3/projects/{projectId}/locations/{location}/templates:get', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'location' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'gcsPath' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'launch' => array( - 'path' => 'v1b3/projects/{projectId}/locations/{location}/templates:launch', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'location' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'dynamicTemplate.gcsPath' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'dynamicTemplate.stagingLocation' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'validateOnly' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'gcsPath' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_templates = new Google_Service_Dataflow_Resource_ProjectsTemplates( - $this, - $this->serviceName, - 'templates', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1b3/projects/{projectId}/templates', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1b3/projects/{projectId}/templates:get', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'gcsPath' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'location' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'launch' => array( - 'path' => 'v1b3/projects/{projectId}/templates:launch', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'gcsPath' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'location' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'dynamicTemplate.gcsPath' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'dynamicTemplate.stagingLocation' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'validateOnly' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ApproximateProgress.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ApproximateProgress.php deleted file mode 100644 index 32e7796d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ApproximateProgress.php +++ /dev/null @@ -1,55 +0,0 @@ -percentComplete = $percentComplete; - } - public function getPercentComplete() - { - return $this->percentComplete; - } - /** - * @param Google_Service_Dataflow_Position - */ - public function setPosition(Google_Service_Dataflow_Position $position) - { - $this->position = $position; - } - /** - * @return Google_Service_Dataflow_Position - */ - public function getPosition() - { - return $this->position; - } - public function setRemainingTime($remainingTime) - { - $this->remainingTime = $remainingTime; - } - public function getRemainingTime() - { - return $this->remainingTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ApproximateReportedProgress.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ApproximateReportedProgress.php deleted file mode 100644 index 716f5283..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ApproximateReportedProgress.php +++ /dev/null @@ -1,78 +0,0 @@ -consumedParallelism = $consumedParallelism; - } - /** - * @return Google_Service_Dataflow_ReportedParallelism - */ - public function getConsumedParallelism() - { - return $this->consumedParallelism; - } - public function setFractionConsumed($fractionConsumed) - { - $this->fractionConsumed = $fractionConsumed; - } - public function getFractionConsumed() - { - return $this->fractionConsumed; - } - /** - * @param Google_Service_Dataflow_Position - */ - public function setPosition(Google_Service_Dataflow_Position $position) - { - $this->position = $position; - } - /** - * @return Google_Service_Dataflow_Position - */ - public function getPosition() - { - return $this->position; - } - /** - * @param Google_Service_Dataflow_ReportedParallelism - */ - public function setRemainingParallelism(Google_Service_Dataflow_ReportedParallelism $remainingParallelism) - { - $this->remainingParallelism = $remainingParallelism; - } - /** - * @return Google_Service_Dataflow_ReportedParallelism - */ - public function getRemainingParallelism() - { - return $this->remainingParallelism; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ApproximateSplitRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ApproximateSplitRequest.php deleted file mode 100644 index 16d9f6ce..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ApproximateSplitRequest.php +++ /dev/null @@ -1,55 +0,0 @@ -fractionConsumed = $fractionConsumed; - } - public function getFractionConsumed() - { - return $this->fractionConsumed; - } - public function setFractionOfRemainder($fractionOfRemainder) - { - $this->fractionOfRemainder = $fractionOfRemainder; - } - public function getFractionOfRemainder() - { - return $this->fractionOfRemainder; - } - /** - * @param Google_Service_Dataflow_Position - */ - public function setPosition(Google_Service_Dataflow_Position $position) - { - $this->position = $position; - } - /** - * @return Google_Service_Dataflow_Position - */ - public function getPosition() - { - return $this->position; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/AutoscalingEvent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/AutoscalingEvent.php deleted file mode 100644 index b1c47d24..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/AutoscalingEvent.php +++ /dev/null @@ -1,82 +0,0 @@ -currentNumWorkers = $currentNumWorkers; - } - public function getCurrentNumWorkers() - { - return $this->currentNumWorkers; - } - /** - * @param Google_Service_Dataflow_StructuredMessage - */ - public function setDescription(Google_Service_Dataflow_StructuredMessage $description) - { - $this->description = $description; - } - /** - * @return Google_Service_Dataflow_StructuredMessage - */ - public function getDescription() - { - return $this->description; - } - public function setEventType($eventType) - { - $this->eventType = $eventType; - } - public function getEventType() - { - return $this->eventType; - } - public function setTargetNumWorkers($targetNumWorkers) - { - $this->targetNumWorkers = $targetNumWorkers; - } - public function getTargetNumWorkers() - { - return $this->targetNumWorkers; - } - public function setTime($time) - { - $this->time = $time; - } - public function getTime() - { - return $this->time; - } - public function setWorkerPool($workerPool) - { - $this->workerPool = $workerPool; - } - public function getWorkerPool() - { - return $this->workerPool; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/AutoscalingSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/AutoscalingSettings.php deleted file mode 100644 index ff220721..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/AutoscalingSettings.php +++ /dev/null @@ -1,39 +0,0 @@ -algorithm = $algorithm; - } - public function getAlgorithm() - { - return $this->algorithm; - } - public function setMaxNumWorkers($maxNumWorkers) - { - $this->maxNumWorkers = $maxNumWorkers; - } - public function getMaxNumWorkers() - { - return $this->maxNumWorkers; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/BigQueryIODetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/BigQueryIODetails.php deleted file mode 100644 index 0911e610..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/BigQueryIODetails.php +++ /dev/null @@ -1,57 +0,0 @@ -dataset = $dataset; - } - public function getDataset() - { - return $this->dataset; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } - public function setQuery($query) - { - $this->query = $query; - } - public function getQuery() - { - return $this->query; - } - public function setTable($table) - { - $this->table = $table; - } - public function getTable() - { - return $this->table; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/BigTableIODetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/BigTableIODetails.php deleted file mode 100644 index 67bc5408..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/BigTableIODetails.php +++ /dev/null @@ -1,48 +0,0 @@ -instanceId = $instanceId; - } - public function getInstanceId() - { - return $this->instanceId; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } - public function setTableId($tableId) - { - $this->tableId = $tableId; - } - public function getTableId() - { - return $this->tableId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/CPUTime.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/CPUTime.php deleted file mode 100644 index 4fca0ea7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/CPUTime.php +++ /dev/null @@ -1,48 +0,0 @@ -rate = $rate; - } - public function getRate() - { - return $this->rate; - } - public function setTimestamp($timestamp) - { - $this->timestamp = $timestamp; - } - public function getTimestamp() - { - return $this->timestamp; - } - public function setTotalMs($totalMs) - { - $this->totalMs = $totalMs; - } - public function getTotalMs() - { - return $this->totalMs; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ComponentSource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ComponentSource.php deleted file mode 100644 index 08fe1383..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ComponentSource.php +++ /dev/null @@ -1,48 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setOriginalTransformOrCollection($originalTransformOrCollection) - { - $this->originalTransformOrCollection = $originalTransformOrCollection; - } - public function getOriginalTransformOrCollection() - { - return $this->originalTransformOrCollection; - } - public function setUserName($userName) - { - $this->userName = $userName; - } - public function getUserName() - { - return $this->userName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ComponentTransform.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ComponentTransform.php deleted file mode 100644 index 3204f845..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ComponentTransform.php +++ /dev/null @@ -1,48 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setOriginalTransform($originalTransform) - { - $this->originalTransform = $originalTransform; - } - public function getOriginalTransform() - { - return $this->originalTransform; - } - public function setUserName($userName) - { - $this->userName = $userName; - } - public function getUserName() - { - return $this->userName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ComputationTopology.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ComputationTopology.php deleted file mode 100644 index 4cc2eec9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ComputationTopology.php +++ /dev/null @@ -1,104 +0,0 @@ -computationId = $computationId; - } - public function getComputationId() - { - return $this->computationId; - } - /** - * @param Google_Service_Dataflow_StreamLocation - */ - public function setInputs($inputs) - { - $this->inputs = $inputs; - } - /** - * @return Google_Service_Dataflow_StreamLocation - */ - public function getInputs() - { - return $this->inputs; - } - /** - * @param Google_Service_Dataflow_KeyRangeLocation - */ - public function setKeyRanges($keyRanges) - { - $this->keyRanges = $keyRanges; - } - /** - * @return Google_Service_Dataflow_KeyRangeLocation - */ - public function getKeyRanges() - { - return $this->keyRanges; - } - /** - * @param Google_Service_Dataflow_StreamLocation - */ - public function setOutputs($outputs) - { - $this->outputs = $outputs; - } - /** - * @return Google_Service_Dataflow_StreamLocation - */ - public function getOutputs() - { - return $this->outputs; - } - /** - * @param Google_Service_Dataflow_StateFamilyConfig - */ - public function setStateFamilies($stateFamilies) - { - $this->stateFamilies = $stateFamilies; - } - /** - * @return Google_Service_Dataflow_StateFamilyConfig - */ - public function getStateFamilies() - { - return $this->stateFamilies; - } - public function setSystemStageName($systemStageName) - { - $this->systemStageName = $systemStageName; - } - public function getSystemStageName() - { - return $this->systemStageName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ConcatPosition.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ConcatPosition.php deleted file mode 100644 index cdce86b7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ConcatPosition.php +++ /dev/null @@ -1,46 +0,0 @@ -index = $index; - } - public function getIndex() - { - return $this->index; - } - /** - * @param Google_Service_Dataflow_Position - */ - public function setPosition(Google_Service_Dataflow_Position $position) - { - $this->position = $position; - } - /** - * @return Google_Service_Dataflow_Position - */ - public function getPosition() - { - return $this->position; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ContainerSpec.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ContainerSpec.php deleted file mode 100644 index 1bd4cdfd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ContainerSpec.php +++ /dev/null @@ -1,62 +0,0 @@ -image = $image; - } - public function getImage() - { - return $this->image; - } - /** - * @param Google_Service_Dataflow_TemplateMetadata - */ - public function setMetadata(Google_Service_Dataflow_TemplateMetadata $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_Dataflow_TemplateMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - /** - * @param Google_Service_Dataflow_SDKInfo - */ - public function setSdkInfo(Google_Service_Dataflow_SDKInfo $sdkInfo) - { - $this->sdkInfo = $sdkInfo; - } - /** - * @return Google_Service_Dataflow_SDKInfo - */ - public function getSdkInfo() - { - return $this->sdkInfo; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/CounterMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/CounterMetadata.php deleted file mode 100644 index ae12d9da..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/CounterMetadata.php +++ /dev/null @@ -1,57 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setOtherUnits($otherUnits) - { - $this->otherUnits = $otherUnits; - } - public function getOtherUnits() - { - return $this->otherUnits; - } - public function setStandardUnits($standardUnits) - { - $this->standardUnits = $standardUnits; - } - public function getStandardUnits() - { - return $this->standardUnits; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/CounterStructuredName.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/CounterStructuredName.php deleted file mode 100644 index f49fd34e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/CounterStructuredName.php +++ /dev/null @@ -1,111 +0,0 @@ -componentStepName = $componentStepName; - } - public function getComponentStepName() - { - return $this->componentStepName; - } - public function setExecutionStepName($executionStepName) - { - $this->executionStepName = $executionStepName; - } - public function getExecutionStepName() - { - return $this->executionStepName; - } - public function setInputIndex($inputIndex) - { - $this->inputIndex = $inputIndex; - } - public function getInputIndex() - { - return $this->inputIndex; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOrigin($origin) - { - $this->origin = $origin; - } - public function getOrigin() - { - return $this->origin; - } - public function setOriginNamespace($originNamespace) - { - $this->originNamespace = $originNamespace; - } - public function getOriginNamespace() - { - return $this->originNamespace; - } - public function setOriginalRequestingStepName($originalRequestingStepName) - { - $this->originalRequestingStepName = $originalRequestingStepName; - } - public function getOriginalRequestingStepName() - { - return $this->originalRequestingStepName; - } - public function setOriginalStepName($originalStepName) - { - $this->originalStepName = $originalStepName; - } - public function getOriginalStepName() - { - return $this->originalStepName; - } - public function setPortion($portion) - { - $this->portion = $portion; - } - public function getPortion() - { - return $this->portion; - } - public function setWorkerId($workerId) - { - $this->workerId = $workerId; - } - public function getWorkerId() - { - return $this->workerId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/CounterStructuredNameAndMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/CounterStructuredNameAndMetadata.php deleted file mode 100644 index ec095842..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/CounterStructuredNameAndMetadata.php +++ /dev/null @@ -1,53 +0,0 @@ -metadata = $metadata; - } - /** - * @return Google_Service_Dataflow_CounterMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - /** - * @param Google_Service_Dataflow_CounterStructuredName - */ - public function setName(Google_Service_Dataflow_CounterStructuredName $name) - { - $this->name = $name; - } - /** - * @return Google_Service_Dataflow_CounterStructuredName - */ - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/CounterUpdate.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/CounterUpdate.php deleted file mode 100644 index 646fae01..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/CounterUpdate.php +++ /dev/null @@ -1,226 +0,0 @@ -boolean = $boolean; - } - public function getBoolean() - { - return $this->boolean; - } - public function setCumulative($cumulative) - { - $this->cumulative = $cumulative; - } - public function getCumulative() - { - return $this->cumulative; - } - /** - * @param Google_Service_Dataflow_DistributionUpdate - */ - public function setDistribution(Google_Service_Dataflow_DistributionUpdate $distribution) - { - $this->distribution = $distribution; - } - /** - * @return Google_Service_Dataflow_DistributionUpdate - */ - public function getDistribution() - { - return $this->distribution; - } - public function setFloatingPoint($floatingPoint) - { - $this->floatingPoint = $floatingPoint; - } - public function getFloatingPoint() - { - return $this->floatingPoint; - } - /** - * @param Google_Service_Dataflow_FloatingPointList - */ - public function setFloatingPointList(Google_Service_Dataflow_FloatingPointList $floatingPointList) - { - $this->floatingPointList = $floatingPointList; - } - /** - * @return Google_Service_Dataflow_FloatingPointList - */ - public function getFloatingPointList() - { - return $this->floatingPointList; - } - /** - * @param Google_Service_Dataflow_FloatingPointMean - */ - public function setFloatingPointMean(Google_Service_Dataflow_FloatingPointMean $floatingPointMean) - { - $this->floatingPointMean = $floatingPointMean; - } - /** - * @return Google_Service_Dataflow_FloatingPointMean - */ - public function getFloatingPointMean() - { - return $this->floatingPointMean; - } - /** - * @param Google_Service_Dataflow_SplitInt64 - */ - public function setInteger(Google_Service_Dataflow_SplitInt64 $integer) - { - $this->integer = $integer; - } - /** - * @return Google_Service_Dataflow_SplitInt64 - */ - public function getInteger() - { - return $this->integer; - } - /** - * @param Google_Service_Dataflow_IntegerGauge - */ - public function setIntegerGauge(Google_Service_Dataflow_IntegerGauge $integerGauge) - { - $this->integerGauge = $integerGauge; - } - /** - * @return Google_Service_Dataflow_IntegerGauge - */ - public function getIntegerGauge() - { - return $this->integerGauge; - } - /** - * @param Google_Service_Dataflow_IntegerList - */ - public function setIntegerList(Google_Service_Dataflow_IntegerList $integerList) - { - $this->integerList = $integerList; - } - /** - * @return Google_Service_Dataflow_IntegerList - */ - public function getIntegerList() - { - return $this->integerList; - } - /** - * @param Google_Service_Dataflow_IntegerMean - */ - public function setIntegerMean(Google_Service_Dataflow_IntegerMean $integerMean) - { - $this->integerMean = $integerMean; - } - /** - * @return Google_Service_Dataflow_IntegerMean - */ - public function getIntegerMean() - { - return $this->integerMean; - } - public function setInternal($internal) - { - $this->internal = $internal; - } - public function getInternal() - { - return $this->internal; - } - /** - * @param Google_Service_Dataflow_NameAndKind - */ - public function setNameAndKind(Google_Service_Dataflow_NameAndKind $nameAndKind) - { - $this->nameAndKind = $nameAndKind; - } - /** - * @return Google_Service_Dataflow_NameAndKind - */ - public function getNameAndKind() - { - return $this->nameAndKind; - } - public function setShortId($shortId) - { - $this->shortId = $shortId; - } - public function getShortId() - { - return $this->shortId; - } - /** - * @param Google_Service_Dataflow_StringList - */ - public function setStringList(Google_Service_Dataflow_StringList $stringList) - { - $this->stringList = $stringList; - } - /** - * @return Google_Service_Dataflow_StringList - */ - public function getStringList() - { - return $this->stringList; - } - /** - * @param Google_Service_Dataflow_CounterStructuredNameAndMetadata - */ - public function setStructuredNameAndMetadata(Google_Service_Dataflow_CounterStructuredNameAndMetadata $structuredNameAndMetadata) - { - $this->structuredNameAndMetadata = $structuredNameAndMetadata; - } - /** - * @return Google_Service_Dataflow_CounterStructuredNameAndMetadata - */ - public function getStructuredNameAndMetadata() - { - return $this->structuredNameAndMetadata; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/CreateJobFromTemplateRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/CreateJobFromTemplateRequest.php deleted file mode 100644 index 05e30559..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/CreateJobFromTemplateRequest.php +++ /dev/null @@ -1,73 +0,0 @@ -environment = $environment; - } - /** - * @return Google_Service_Dataflow_RuntimeEnvironment - */ - public function getEnvironment() - { - return $this->environment; - } - public function setGcsPath($gcsPath) - { - $this->gcsPath = $gcsPath; - } - public function getGcsPath() - { - return $this->gcsPath; - } - public function setJobName($jobName) - { - $this->jobName = $jobName; - } - public function getJobName() - { - return $this->jobName; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setParameters($parameters) - { - $this->parameters = $parameters; - } - public function getParameters() - { - return $this->parameters; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/CustomSourceLocation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/CustomSourceLocation.php deleted file mode 100644 index 2afe3401..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/CustomSourceLocation.php +++ /dev/null @@ -1,30 +0,0 @@ -stateful = $stateful; - } - public function getStateful() - { - return $this->stateful; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/DataDiskAssignment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/DataDiskAssignment.php deleted file mode 100644 index ee44d347..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/DataDiskAssignment.php +++ /dev/null @@ -1,40 +0,0 @@ -dataDisks = $dataDisks; - } - public function getDataDisks() - { - return $this->dataDisks; - } - public function setVmInstance($vmInstance) - { - $this->vmInstance = $vmInstance; - } - public function getVmInstance() - { - return $this->vmInstance; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/DatastoreIODetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/DatastoreIODetails.php deleted file mode 100644 index 22cd1e3b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/DatastoreIODetails.php +++ /dev/null @@ -1,39 +0,0 @@ -namespace = $namespace; - } - public function getNamespace() - { - return $this->namespace; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/DerivedSource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/DerivedSource.php deleted file mode 100644 index 21b00609..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/DerivedSource.php +++ /dev/null @@ -1,46 +0,0 @@ -derivationMode = $derivationMode; - } - public function getDerivationMode() - { - return $this->derivationMode; - } - /** - * @param Google_Service_Dataflow_Source - */ - public function setSource(Google_Service_Dataflow_Source $source) - { - $this->source = $source; - } - /** - * @return Google_Service_Dataflow_Source - */ - public function getSource() - { - return $this->source; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Disk.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Disk.php deleted file mode 100644 index 38ebc363..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Disk.php +++ /dev/null @@ -1,48 +0,0 @@ -diskType = $diskType; - } - public function getDiskType() - { - return $this->diskType; - } - public function setMountPoint($mountPoint) - { - $this->mountPoint = $mountPoint; - } - public function getMountPoint() - { - return $this->mountPoint; - } - public function setSizeGb($sizeGb) - { - $this->sizeGb = $sizeGb; - } - public function getSizeGb() - { - return $this->sizeGb; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/DisplayData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/DisplayData.php deleted file mode 100644 index b3873f0c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/DisplayData.php +++ /dev/null @@ -1,129 +0,0 @@ -boolValue = $boolValue; - } - public function getBoolValue() - { - return $this->boolValue; - } - public function setDurationValue($durationValue) - { - $this->durationValue = $durationValue; - } - public function getDurationValue() - { - return $this->durationValue; - } - public function setFloatValue($floatValue) - { - $this->floatValue = $floatValue; - } - public function getFloatValue() - { - return $this->floatValue; - } - public function setInt64Value($int64Value) - { - $this->int64Value = $int64Value; - } - public function getInt64Value() - { - return $this->int64Value; - } - public function setJavaClassValue($javaClassValue) - { - $this->javaClassValue = $javaClassValue; - } - public function getJavaClassValue() - { - return $this->javaClassValue; - } - public function setKey($key) - { - $this->key = $key; - } - public function getKey() - { - return $this->key; - } - public function setLabel($label) - { - $this->label = $label; - } - public function getLabel() - { - return $this->label; - } - public function setNamespace($namespace) - { - $this->namespace = $namespace; - } - public function getNamespace() - { - return $this->namespace; - } - public function setShortStrValue($shortStrValue) - { - $this->shortStrValue = $shortStrValue; - } - public function getShortStrValue() - { - return $this->shortStrValue; - } - public function setStrValue($strValue) - { - $this->strValue = $strValue; - } - public function getStrValue() - { - return $this->strValue; - } - public function setTimestampValue($timestampValue) - { - $this->timestampValue = $timestampValue; - } - public function getTimestampValue() - { - return $this->timestampValue; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/DistributionUpdate.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/DistributionUpdate.php deleted file mode 100644 index 0e199639..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/DistributionUpdate.php +++ /dev/null @@ -1,110 +0,0 @@ -count = $count; - } - /** - * @return Google_Service_Dataflow_SplitInt64 - */ - public function getCount() - { - return $this->count; - } - /** - * @param Google_Service_Dataflow_Histogram - */ - public function setHistogram(Google_Service_Dataflow_Histogram $histogram) - { - $this->histogram = $histogram; - } - /** - * @return Google_Service_Dataflow_Histogram - */ - public function getHistogram() - { - return $this->histogram; - } - /** - * @param Google_Service_Dataflow_SplitInt64 - */ - public function setMax(Google_Service_Dataflow_SplitInt64 $max) - { - $this->max = $max; - } - /** - * @return Google_Service_Dataflow_SplitInt64 - */ - public function getMax() - { - return $this->max; - } - /** - * @param Google_Service_Dataflow_SplitInt64 - */ - public function setMin(Google_Service_Dataflow_SplitInt64 $min) - { - $this->min = $min; - } - /** - * @return Google_Service_Dataflow_SplitInt64 - */ - public function getMin() - { - return $this->min; - } - /** - * @param Google_Service_Dataflow_SplitInt64 - */ - public function setSum(Google_Service_Dataflow_SplitInt64 $sum) - { - $this->sum = $sum; - } - /** - * @return Google_Service_Dataflow_SplitInt64 - */ - public function getSum() - { - return $this->sum; - } - public function setSumOfSquares($sumOfSquares) - { - $this->sumOfSquares = $sumOfSquares; - } - public function getSumOfSquares() - { - return $this->sumOfSquares; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/DynamicSourceSplit.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/DynamicSourceSplit.php deleted file mode 100644 index b069de9f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/DynamicSourceSplit.php +++ /dev/null @@ -1,53 +0,0 @@ -primary = $primary; - } - /** - * @return Google_Service_Dataflow_DerivedSource - */ - public function getPrimary() - { - return $this->primary; - } - /** - * @param Google_Service_Dataflow_DerivedSource - */ - public function setResidual(Google_Service_Dataflow_DerivedSource $residual) - { - $this->residual = $residual; - } - /** - * @return Google_Service_Dataflow_DerivedSource - */ - public function getResidual() - { - return $this->residual; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Environment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Environment.php deleted file mode 100644 index 4a2a47f3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Environment.php +++ /dev/null @@ -1,155 +0,0 @@ -clusterManagerApiService = $clusterManagerApiService; - } - public function getClusterManagerApiService() - { - return $this->clusterManagerApiService; - } - public function setDataset($dataset) - { - $this->dataset = $dataset; - } - public function getDataset() - { - return $this->dataset; - } - public function setExperiments($experiments) - { - $this->experiments = $experiments; - } - public function getExperiments() - { - return $this->experiments; - } - public function setFlexResourceSchedulingGoal($flexResourceSchedulingGoal) - { - $this->flexResourceSchedulingGoal = $flexResourceSchedulingGoal; - } - public function getFlexResourceSchedulingGoal() - { - return $this->flexResourceSchedulingGoal; - } - public function setInternalExperiments($internalExperiments) - { - $this->internalExperiments = $internalExperiments; - } - public function getInternalExperiments() - { - return $this->internalExperiments; - } - public function setSdkPipelineOptions($sdkPipelineOptions) - { - $this->sdkPipelineOptions = $sdkPipelineOptions; - } - public function getSdkPipelineOptions() - { - return $this->sdkPipelineOptions; - } - public function setServiceAccountEmail($serviceAccountEmail) - { - $this->serviceAccountEmail = $serviceAccountEmail; - } - public function getServiceAccountEmail() - { - return $this->serviceAccountEmail; - } - public function setServiceKmsKeyName($serviceKmsKeyName) - { - $this->serviceKmsKeyName = $serviceKmsKeyName; - } - public function getServiceKmsKeyName() - { - return $this->serviceKmsKeyName; - } - public function setTempStoragePrefix($tempStoragePrefix) - { - $this->tempStoragePrefix = $tempStoragePrefix; - } - public function getTempStoragePrefix() - { - return $this->tempStoragePrefix; - } - public function setUserAgent($userAgent) - { - $this->userAgent = $userAgent; - } - public function getUserAgent() - { - return $this->userAgent; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } - /** - * @param Google_Service_Dataflow_WorkerPool - */ - public function setWorkerPools($workerPools) - { - $this->workerPools = $workerPools; - } - /** - * @return Google_Service_Dataflow_WorkerPool - */ - public function getWorkerPools() - { - return $this->workerPools; - } - public function setWorkerRegion($workerRegion) - { - $this->workerRegion = $workerRegion; - } - public function getWorkerRegion() - { - return $this->workerRegion; - } - public function setWorkerZone($workerZone) - { - $this->workerZone = $workerZone; - } - public function getWorkerZone() - { - return $this->workerZone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ExecutionStageState.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ExecutionStageState.php deleted file mode 100644 index 54769d38..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ExecutionStageState.php +++ /dev/null @@ -1,48 +0,0 @@ -currentStateTime = $currentStateTime; - } - public function getCurrentStateTime() - { - return $this->currentStateTime; - } - public function setExecutionStageName($executionStageName) - { - $this->executionStageName = $executionStageName; - } - public function getExecutionStageName() - { - return $this->executionStageName; - } - public function setExecutionStageState($executionStageState) - { - $this->executionStageState = $executionStageState; - } - public function getExecutionStageState() - { - return $this->executionStageState; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ExecutionStageSummary.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ExecutionStageSummary.php deleted file mode 100644 index e48dcd72..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ExecutionStageSummary.php +++ /dev/null @@ -1,113 +0,0 @@ -componentSource = $componentSource; - } - /** - * @return Google_Service_Dataflow_ComponentSource - */ - public function getComponentSource() - { - return $this->componentSource; - } - /** - * @param Google_Service_Dataflow_ComponentTransform - */ - public function setComponentTransform($componentTransform) - { - $this->componentTransform = $componentTransform; - } - /** - * @return Google_Service_Dataflow_ComponentTransform - */ - public function getComponentTransform() - { - return $this->componentTransform; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Dataflow_StageSource - */ - public function setInputSource($inputSource) - { - $this->inputSource = $inputSource; - } - /** - * @return Google_Service_Dataflow_StageSource - */ - public function getInputSource() - { - return $this->inputSource; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Dataflow_StageSource - */ - public function setOutputSource($outputSource) - { - $this->outputSource = $outputSource; - } - /** - * @return Google_Service_Dataflow_StageSource - */ - public function getOutputSource() - { - return $this->outputSource; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/FailedLocation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/FailedLocation.php deleted file mode 100644 index abc16661..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/FailedLocation.php +++ /dev/null @@ -1,30 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/FileIODetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/FileIODetails.php deleted file mode 100644 index 920bb387..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/FileIODetails.php +++ /dev/null @@ -1,30 +0,0 @@ -filePattern = $filePattern; - } - public function getFilePattern() - { - return $this->filePattern; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/FlattenInstruction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/FlattenInstruction.php deleted file mode 100644 index 8701c722..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/FlattenInstruction.php +++ /dev/null @@ -1,38 +0,0 @@ -inputs = $inputs; - } - /** - * @return Google_Service_Dataflow_InstructionInput - */ - public function getInputs() - { - return $this->inputs; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/FloatingPointList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/FloatingPointList.php deleted file mode 100644 index f613643f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/FloatingPointList.php +++ /dev/null @@ -1,31 +0,0 @@ -elements = $elements; - } - public function getElements() - { - return $this->elements; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/FloatingPointMean.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/FloatingPointMean.php deleted file mode 100644 index 8902c1f5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/FloatingPointMean.php +++ /dev/null @@ -1,46 +0,0 @@ -count = $count; - } - /** - * @return Google_Service_Dataflow_SplitInt64 - */ - public function getCount() - { - return $this->count; - } - public function setSum($sum) - { - $this->sum = $sum; - } - public function getSum() - { - return $this->sum; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/GetDebugConfigRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/GetDebugConfigRequest.php deleted file mode 100644 index 61c28c08..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/GetDebugConfigRequest.php +++ /dev/null @@ -1,48 +0,0 @@ -componentId = $componentId; - } - public function getComponentId() - { - return $this->componentId; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setWorkerId($workerId) - { - $this->workerId = $workerId; - } - public function getWorkerId() - { - return $this->workerId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/GetDebugConfigResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/GetDebugConfigResponse.php deleted file mode 100644 index 4385fa8e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/GetDebugConfigResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -config = $config; - } - public function getConfig() - { - return $this->config; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/GetTemplateResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/GetTemplateResponse.php deleted file mode 100644 index 2ee2daad..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/GetTemplateResponse.php +++ /dev/null @@ -1,78 +0,0 @@ -metadata = $metadata; - } - /** - * @return Google_Service_Dataflow_TemplateMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - /** - * @param Google_Service_Dataflow_RuntimeMetadata - */ - public function setRuntimeMetadata(Google_Service_Dataflow_RuntimeMetadata $runtimeMetadata) - { - $this->runtimeMetadata = $runtimeMetadata; - } - /** - * @return Google_Service_Dataflow_RuntimeMetadata - */ - public function getRuntimeMetadata() - { - return $this->runtimeMetadata; - } - /** - * @param Google_Service_Dataflow_Status - */ - public function setStatus(Google_Service_Dataflow_Status $status) - { - $this->status = $status; - } - /** - * @return Google_Service_Dataflow_Status - */ - public function getStatus() - { - return $this->status; - } - public function setTemplateType($templateType) - { - $this->templateType = $templateType; - } - public function getTemplateType() - { - return $this->templateType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Histogram.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Histogram.php deleted file mode 100644 index 35180615..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Histogram.php +++ /dev/null @@ -1,40 +0,0 @@ -bucketCounts = $bucketCounts; - } - public function getBucketCounts() - { - return $this->bucketCounts; - } - public function setFirstBucketOffset($firstBucketOffset) - { - $this->firstBucketOffset = $firstBucketOffset; - } - public function getFirstBucketOffset() - { - return $this->firstBucketOffset; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/HotKeyDetection.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/HotKeyDetection.php deleted file mode 100644 index e9c62475..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/HotKeyDetection.php +++ /dev/null @@ -1,48 +0,0 @@ -hotKeyAge = $hotKeyAge; - } - public function getHotKeyAge() - { - return $this->hotKeyAge; - } - public function setSystemName($systemName) - { - $this->systemName = $systemName; - } - public function getSystemName() - { - return $this->systemName; - } - public function setUserStepName($userStepName) - { - $this->userStepName = $userStepName; - } - public function getUserStepName() - { - return $this->userStepName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/InstructionInput.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/InstructionInput.php deleted file mode 100644 index 25dcdebd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/InstructionInput.php +++ /dev/null @@ -1,39 +0,0 @@ -outputNum = $outputNum; - } - public function getOutputNum() - { - return $this->outputNum; - } - public function setProducerInstructionIndex($producerInstructionIndex) - { - $this->producerInstructionIndex = $producerInstructionIndex; - } - public function getProducerInstructionIndex() - { - return $this->producerInstructionIndex; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/InstructionOutput.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/InstructionOutput.php deleted file mode 100644 index e9dc925b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/InstructionOutput.php +++ /dev/null @@ -1,75 +0,0 @@ -codec = $codec; - } - public function getCodec() - { - return $this->codec; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOnlyCountKeyBytes($onlyCountKeyBytes) - { - $this->onlyCountKeyBytes = $onlyCountKeyBytes; - } - public function getOnlyCountKeyBytes() - { - return $this->onlyCountKeyBytes; - } - public function setOnlyCountValueBytes($onlyCountValueBytes) - { - $this->onlyCountValueBytes = $onlyCountValueBytes; - } - public function getOnlyCountValueBytes() - { - return $this->onlyCountValueBytes; - } - public function setOriginalName($originalName) - { - $this->originalName = $originalName; - } - public function getOriginalName() - { - return $this->originalName; - } - public function setSystemName($systemName) - { - $this->systemName = $systemName; - } - public function getSystemName() - { - return $this->systemName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/IntegerGauge.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/IntegerGauge.php deleted file mode 100644 index 98d90d4e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/IntegerGauge.php +++ /dev/null @@ -1,46 +0,0 @@ -timestamp = $timestamp; - } - public function getTimestamp() - { - return $this->timestamp; - } - /** - * @param Google_Service_Dataflow_SplitInt64 - */ - public function setValue(Google_Service_Dataflow_SplitInt64 $value) - { - $this->value = $value; - } - /** - * @return Google_Service_Dataflow_SplitInt64 - */ - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/IntegerList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/IntegerList.php deleted file mode 100644 index 5241022a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/IntegerList.php +++ /dev/null @@ -1,38 +0,0 @@ -elements = $elements; - } - /** - * @return Google_Service_Dataflow_SplitInt64 - */ - public function getElements() - { - return $this->elements; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/IntegerMean.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/IntegerMean.php deleted file mode 100644 index 1185903b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/IntegerMean.php +++ /dev/null @@ -1,53 +0,0 @@ -count = $count; - } - /** - * @return Google_Service_Dataflow_SplitInt64 - */ - public function getCount() - { - return $this->count; - } - /** - * @param Google_Service_Dataflow_SplitInt64 - */ - public function setSum(Google_Service_Dataflow_SplitInt64 $sum) - { - $this->sum = $sum; - } - /** - * @return Google_Service_Dataflow_SplitInt64 - */ - public function getSum() - { - return $this->sum; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Job.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Job.php deleted file mode 100644 index 14616f10..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Job.php +++ /dev/null @@ -1,280 +0,0 @@ -clientRequestId = $clientRequestId; - } - public function getClientRequestId() - { - return $this->clientRequestId; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setCreatedFromSnapshotId($createdFromSnapshotId) - { - $this->createdFromSnapshotId = $createdFromSnapshotId; - } - public function getCreatedFromSnapshotId() - { - return $this->createdFromSnapshotId; - } - public function setCurrentState($currentState) - { - $this->currentState = $currentState; - } - public function getCurrentState() - { - return $this->currentState; - } - public function setCurrentStateTime($currentStateTime) - { - $this->currentStateTime = $currentStateTime; - } - public function getCurrentStateTime() - { - return $this->currentStateTime; - } - /** - * @param Google_Service_Dataflow_Environment - */ - public function setEnvironment(Google_Service_Dataflow_Environment $environment) - { - $this->environment = $environment; - } - /** - * @return Google_Service_Dataflow_Environment - */ - public function getEnvironment() - { - return $this->environment; - } - /** - * @param Google_Service_Dataflow_JobExecutionInfo - */ - public function setExecutionInfo(Google_Service_Dataflow_JobExecutionInfo $executionInfo) - { - $this->executionInfo = $executionInfo; - } - /** - * @return Google_Service_Dataflow_JobExecutionInfo - */ - public function getExecutionInfo() - { - return $this->executionInfo; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Dataflow_JobMetadata - */ - public function setJobMetadata(Google_Service_Dataflow_JobMetadata $jobMetadata) - { - $this->jobMetadata = $jobMetadata; - } - /** - * @return Google_Service_Dataflow_JobMetadata - */ - public function getJobMetadata() - { - return $this->jobMetadata; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Dataflow_PipelineDescription - */ - public function setPipelineDescription(Google_Service_Dataflow_PipelineDescription $pipelineDescription) - { - $this->pipelineDescription = $pipelineDescription; - } - /** - * @return Google_Service_Dataflow_PipelineDescription - */ - public function getPipelineDescription() - { - return $this->pipelineDescription; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } - public function setReplaceJobId($replaceJobId) - { - $this->replaceJobId = $replaceJobId; - } - public function getReplaceJobId() - { - return $this->replaceJobId; - } - public function setReplacedByJobId($replacedByJobId) - { - $this->replacedByJobId = $replacedByJobId; - } - public function getReplacedByJobId() - { - return $this->replacedByJobId; - } - public function setRequestedState($requestedState) - { - $this->requestedState = $requestedState; - } - public function getRequestedState() - { - return $this->requestedState; - } - /** - * @param Google_Service_Dataflow_ExecutionStageState - */ - public function setStageStates($stageStates) - { - $this->stageStates = $stageStates; - } - /** - * @return Google_Service_Dataflow_ExecutionStageState - */ - public function getStageStates() - { - return $this->stageStates; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } - /** - * @param Google_Service_Dataflow_Step - */ - public function setSteps($steps) - { - $this->steps = $steps; - } - /** - * @return Google_Service_Dataflow_Step - */ - public function getSteps() - { - return $this->steps; - } - public function setStepsLocation($stepsLocation) - { - $this->stepsLocation = $stepsLocation; - } - public function getStepsLocation() - { - return $this->stepsLocation; - } - public function setTempFiles($tempFiles) - { - $this->tempFiles = $tempFiles; - } - public function getTempFiles() - { - return $this->tempFiles; - } - public function setTransformNameMapping($transformNameMapping) - { - $this->transformNameMapping = $transformNameMapping; - } - public function getTransformNameMapping() - { - return $this->transformNameMapping; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/JobExecutionInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/JobExecutionInfo.php deleted file mode 100644 index df24c12e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/JobExecutionInfo.php +++ /dev/null @@ -1,37 +0,0 @@ -stages = $stages; - } - /** - * @return Google_Service_Dataflow_JobExecutionStageInfo - */ - public function getStages() - { - return $this->stages; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/JobExecutionStageInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/JobExecutionStageInfo.php deleted file mode 100644 index 984d7aee..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/JobExecutionStageInfo.php +++ /dev/null @@ -1,31 +0,0 @@ -stepName = $stepName; - } - public function getStepName() - { - return $this->stepName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/JobMessage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/JobMessage.php deleted file mode 100644 index 7bea1fa8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/JobMessage.php +++ /dev/null @@ -1,57 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setMessageImportance($messageImportance) - { - $this->messageImportance = $messageImportance; - } - public function getMessageImportance() - { - return $this->messageImportance; - } - public function setMessageText($messageText) - { - $this->messageText = $messageText; - } - public function getMessageText() - { - return $this->messageText; - } - public function setTime($time) - { - $this->time = $time; - } - public function getTime() - { - return $this->time; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/JobMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/JobMetadata.php deleted file mode 100644 index 6477832d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/JobMetadata.php +++ /dev/null @@ -1,134 +0,0 @@ -bigTableDetails = $bigTableDetails; - } - /** - * @return Google_Service_Dataflow_BigTableIODetails - */ - public function getBigTableDetails() - { - return $this->bigTableDetails; - } - /** - * @param Google_Service_Dataflow_BigQueryIODetails - */ - public function setBigqueryDetails($bigqueryDetails) - { - $this->bigqueryDetails = $bigqueryDetails; - } - /** - * @return Google_Service_Dataflow_BigQueryIODetails - */ - public function getBigqueryDetails() - { - return $this->bigqueryDetails; - } - /** - * @param Google_Service_Dataflow_DatastoreIODetails - */ - public function setDatastoreDetails($datastoreDetails) - { - $this->datastoreDetails = $datastoreDetails; - } - /** - * @return Google_Service_Dataflow_DatastoreIODetails - */ - public function getDatastoreDetails() - { - return $this->datastoreDetails; - } - /** - * @param Google_Service_Dataflow_FileIODetails - */ - public function setFileDetails($fileDetails) - { - $this->fileDetails = $fileDetails; - } - /** - * @return Google_Service_Dataflow_FileIODetails - */ - public function getFileDetails() - { - return $this->fileDetails; - } - /** - * @param Google_Service_Dataflow_PubSubIODetails - */ - public function setPubsubDetails($pubsubDetails) - { - $this->pubsubDetails = $pubsubDetails; - } - /** - * @return Google_Service_Dataflow_PubSubIODetails - */ - public function getPubsubDetails() - { - return $this->pubsubDetails; - } - /** - * @param Google_Service_Dataflow_SdkVersion - */ - public function setSdkVersion(Google_Service_Dataflow_SdkVersion $sdkVersion) - { - $this->sdkVersion = $sdkVersion; - } - /** - * @return Google_Service_Dataflow_SdkVersion - */ - public function getSdkVersion() - { - return $this->sdkVersion; - } - /** - * @param Google_Service_Dataflow_SpannerIODetails - */ - public function setSpannerDetails($spannerDetails) - { - $this->spannerDetails = $spannerDetails; - } - /** - * @return Google_Service_Dataflow_SpannerIODetails - */ - public function getSpannerDetails() - { - return $this->spannerDetails; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/JobMetrics.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/JobMetrics.php deleted file mode 100644 index 905b7641..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/JobMetrics.php +++ /dev/null @@ -1,47 +0,0 @@ -metricTime = $metricTime; - } - public function getMetricTime() - { - return $this->metricTime; - } - /** - * @param Google_Service_Dataflow_MetricUpdate - */ - public function setMetrics($metrics) - { - $this->metrics = $metrics; - } - /** - * @return Google_Service_Dataflow_MetricUpdate - */ - public function getMetrics() - { - return $this->metrics; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/KeyRangeDataDiskAssignment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/KeyRangeDataDiskAssignment.php deleted file mode 100644 index 69d58088..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/KeyRangeDataDiskAssignment.php +++ /dev/null @@ -1,48 +0,0 @@ -dataDisk = $dataDisk; - } - public function getDataDisk() - { - return $this->dataDisk; - } - public function setEnd($end) - { - $this->end = $end; - } - public function getEnd() - { - return $this->end; - } - public function setStart($start) - { - $this->start = $start; - } - public function getStart() - { - return $this->start; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/KeyRangeLocation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/KeyRangeLocation.php deleted file mode 100644 index 637f4ab0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/KeyRangeLocation.php +++ /dev/null @@ -1,66 +0,0 @@ -dataDisk = $dataDisk; - } - public function getDataDisk() - { - return $this->dataDisk; - } - public function setDeliveryEndpoint($deliveryEndpoint) - { - $this->deliveryEndpoint = $deliveryEndpoint; - } - public function getDeliveryEndpoint() - { - return $this->deliveryEndpoint; - } - public function setDeprecatedPersistentDirectory($deprecatedPersistentDirectory) - { - $this->deprecatedPersistentDirectory = $deprecatedPersistentDirectory; - } - public function getDeprecatedPersistentDirectory() - { - return $this->deprecatedPersistentDirectory; - } - public function setEnd($end) - { - $this->end = $end; - } - public function getEnd() - { - return $this->end; - } - public function setStart($start) - { - $this->start = $start; - } - public function getStart() - { - return $this->start; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/LaunchFlexTemplateParameter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/LaunchFlexTemplateParameter.php deleted file mode 100644 index 07490d71..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/LaunchFlexTemplateParameter.php +++ /dev/null @@ -1,64 +0,0 @@ -containerSpec = $containerSpec; - } - /** - * @return Google_Service_Dataflow_ContainerSpec - */ - public function getContainerSpec() - { - return $this->containerSpec; - } - public function setContainerSpecGcsPath($containerSpecGcsPath) - { - $this->containerSpecGcsPath = $containerSpecGcsPath; - } - public function getContainerSpecGcsPath() - { - return $this->containerSpecGcsPath; - } - public function setJobName($jobName) - { - $this->jobName = $jobName; - } - public function getJobName() - { - return $this->jobName; - } - public function setParameters($parameters) - { - $this->parameters = $parameters; - } - public function getParameters() - { - return $this->parameters; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/LaunchFlexTemplateRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/LaunchFlexTemplateRequest.php deleted file mode 100644 index 37ed2a02..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/LaunchFlexTemplateRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -launchParameter = $launchParameter; - } - /** - * @return Google_Service_Dataflow_LaunchFlexTemplateParameter - */ - public function getLaunchParameter() - { - return $this->launchParameter; - } - public function setValidateOnly($validateOnly) - { - $this->validateOnly = $validateOnly; - } - public function getValidateOnly() - { - return $this->validateOnly; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/LaunchFlexTemplateResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/LaunchFlexTemplateResponse.php deleted file mode 100644 index 55ee8f16..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/LaunchFlexTemplateResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -job = $job; - } - /** - * @return Google_Service_Dataflow_Job - */ - public function getJob() - { - return $this->job; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/LaunchTemplateParameters.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/LaunchTemplateParameters.php deleted file mode 100644 index 3b6acf5d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/LaunchTemplateParameters.php +++ /dev/null @@ -1,73 +0,0 @@ -environment = $environment; - } - /** - * @return Google_Service_Dataflow_RuntimeEnvironment - */ - public function getEnvironment() - { - return $this->environment; - } - public function setJobName($jobName) - { - $this->jobName = $jobName; - } - public function getJobName() - { - return $this->jobName; - } - public function setParameters($parameters) - { - $this->parameters = $parameters; - } - public function getParameters() - { - return $this->parameters; - } - public function setTransformNameMapping($transformNameMapping) - { - $this->transformNameMapping = $transformNameMapping; - } - public function getTransformNameMapping() - { - return $this->transformNameMapping; - } - public function setUpdate($update) - { - $this->update = $update; - } - public function getUpdate() - { - return $this->update; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/LaunchTemplateResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/LaunchTemplateResponse.php deleted file mode 100644 index b2864525..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/LaunchTemplateResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -job = $job; - } - /** - * @return Google_Service_Dataflow_Job - */ - public function getJob() - { - return $this->job; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/LeaseWorkItemRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/LeaseWorkItemRequest.php deleted file mode 100644 index 8cb67d13..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/LeaseWorkItemRequest.php +++ /dev/null @@ -1,85 +0,0 @@ -currentWorkerTime = $currentWorkerTime; - } - public function getCurrentWorkerTime() - { - return $this->currentWorkerTime; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setRequestedLeaseDuration($requestedLeaseDuration) - { - $this->requestedLeaseDuration = $requestedLeaseDuration; - } - public function getRequestedLeaseDuration() - { - return $this->requestedLeaseDuration; - } - public function setUnifiedWorkerRequest($unifiedWorkerRequest) - { - $this->unifiedWorkerRequest = $unifiedWorkerRequest; - } - public function getUnifiedWorkerRequest() - { - return $this->unifiedWorkerRequest; - } - public function setWorkItemTypes($workItemTypes) - { - $this->workItemTypes = $workItemTypes; - } - public function getWorkItemTypes() - { - return $this->workItemTypes; - } - public function setWorkerCapabilities($workerCapabilities) - { - $this->workerCapabilities = $workerCapabilities; - } - public function getWorkerCapabilities() - { - return $this->workerCapabilities; - } - public function setWorkerId($workerId) - { - $this->workerId = $workerId; - } - public function getWorkerId() - { - return $this->workerId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/LeaseWorkItemResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/LeaseWorkItemResponse.php deleted file mode 100644 index 70cf471c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/LeaseWorkItemResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -unifiedWorkerResponse = $unifiedWorkerResponse; - } - public function getUnifiedWorkerResponse() - { - return $this->unifiedWorkerResponse; - } - /** - * @param Google_Service_Dataflow_WorkItem - */ - public function setWorkItems($workItems) - { - $this->workItems = $workItems; - } - /** - * @return Google_Service_Dataflow_WorkItem - */ - public function getWorkItems() - { - return $this->workItems; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ListJobMessagesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ListJobMessagesResponse.php deleted file mode 100644 index f45f8b4b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ListJobMessagesResponse.php +++ /dev/null @@ -1,63 +0,0 @@ -autoscalingEvents = $autoscalingEvents; - } - /** - * @return Google_Service_Dataflow_AutoscalingEvent - */ - public function getAutoscalingEvents() - { - return $this->autoscalingEvents; - } - /** - * @param Google_Service_Dataflow_JobMessage - */ - public function setJobMessages($jobMessages) - { - $this->jobMessages = $jobMessages; - } - /** - * @return Google_Service_Dataflow_JobMessage - */ - public function getJobMessages() - { - return $this->jobMessages; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ListJobsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ListJobsResponse.php deleted file mode 100644 index bd65aa9d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ListJobsResponse.php +++ /dev/null @@ -1,63 +0,0 @@ -failedLocation = $failedLocation; - } - /** - * @return Google_Service_Dataflow_FailedLocation - */ - public function getFailedLocation() - { - return $this->failedLocation; - } - /** - * @param Google_Service_Dataflow_Job - */ - public function setJobs($jobs) - { - $this->jobs = $jobs; - } - /** - * @return Google_Service_Dataflow_Job - */ - public function getJobs() - { - return $this->jobs; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/MapTask.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/MapTask.php deleted file mode 100644 index 387129fe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/MapTask.php +++ /dev/null @@ -1,65 +0,0 @@ -counterPrefix = $counterPrefix; - } - public function getCounterPrefix() - { - return $this->counterPrefix; - } - /** - * @param Google_Service_Dataflow_ParallelInstruction - */ - public function setInstructions($instructions) - { - $this->instructions = $instructions; - } - /** - * @return Google_Service_Dataflow_ParallelInstruction - */ - public function getInstructions() - { - return $this->instructions; - } - public function setStageName($stageName) - { - $this->stageName = $stageName; - } - public function getStageName() - { - return $this->stageName; - } - public function setSystemName($systemName) - { - $this->systemName = $systemName; - } - public function getSystemName() - { - return $this->systemName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/MetricShortId.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/MetricShortId.php deleted file mode 100644 index 26ab1119..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/MetricShortId.php +++ /dev/null @@ -1,39 +0,0 @@ -metricIndex = $metricIndex; - } - public function getMetricIndex() - { - return $this->metricIndex; - } - public function setShortId($shortId) - { - $this->shortId = $shortId; - } - public function getShortId() - { - return $this->shortId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/MetricStructuredName.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/MetricStructuredName.php deleted file mode 100644 index 7e98694d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/MetricStructuredName.php +++ /dev/null @@ -1,48 +0,0 @@ -context = $context; - } - public function getContext() - { - return $this->context; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOrigin($origin) - { - $this->origin = $origin; - } - public function getOrigin() - { - return $this->origin; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/MetricUpdate.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/MetricUpdate.php deleted file mode 100644 index 64cf53d6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/MetricUpdate.php +++ /dev/null @@ -1,127 +0,0 @@ -cumulative = $cumulative; - } - public function getCumulative() - { - return $this->cumulative; - } - public function setDistribution($distribution) - { - $this->distribution = $distribution; - } - public function getDistribution() - { - return $this->distribution; - } - public function setGauge($gauge) - { - $this->gauge = $gauge; - } - public function getGauge() - { - return $this->gauge; - } - public function setInternal($internal) - { - $this->internal = $internal; - } - public function getInternal() - { - return $this->internal; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setMeanCount($meanCount) - { - $this->meanCount = $meanCount; - } - public function getMeanCount() - { - return $this->meanCount; - } - public function setMeanSum($meanSum) - { - $this->meanSum = $meanSum; - } - public function getMeanSum() - { - return $this->meanSum; - } - /** - * @param Google_Service_Dataflow_MetricStructuredName - */ - public function setName(Google_Service_Dataflow_MetricStructuredName $name) - { - $this->name = $name; - } - /** - * @return Google_Service_Dataflow_MetricStructuredName - */ - public function getName() - { - return $this->name; - } - public function setScalar($scalar) - { - $this->scalar = $scalar; - } - public function getScalar() - { - return $this->scalar; - } - public function setSet($set) - { - $this->set = $set; - } - public function getSet() - { - return $this->set; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/MountedDataDisk.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/MountedDataDisk.php deleted file mode 100644 index ed037645..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/MountedDataDisk.php +++ /dev/null @@ -1,30 +0,0 @@ -dataDisk = $dataDisk; - } - public function getDataDisk() - { - return $this->dataDisk; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/MultiOutputInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/MultiOutputInfo.php deleted file mode 100644 index a35fd356..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/MultiOutputInfo.php +++ /dev/null @@ -1,30 +0,0 @@ -tag = $tag; - } - public function getTag() - { - return $this->tag; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/NameAndKind.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/NameAndKind.php deleted file mode 100644 index f1454dca..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/NameAndKind.php +++ /dev/null @@ -1,39 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Package.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Package.php deleted file mode 100644 index 07745d5a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Package.php +++ /dev/null @@ -1,39 +0,0 @@ -location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ParDoInstruction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ParDoInstruction.php deleted file mode 100644 index 28560110..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ParDoInstruction.php +++ /dev/null @@ -1,88 +0,0 @@ -input = $input; - } - /** - * @return Google_Service_Dataflow_InstructionInput - */ - public function getInput() - { - return $this->input; - } - /** - * @param Google_Service_Dataflow_MultiOutputInfo - */ - public function setMultiOutputInfos($multiOutputInfos) - { - $this->multiOutputInfos = $multiOutputInfos; - } - /** - * @return Google_Service_Dataflow_MultiOutputInfo - */ - public function getMultiOutputInfos() - { - return $this->multiOutputInfos; - } - public function setNumOutputs($numOutputs) - { - $this->numOutputs = $numOutputs; - } - public function getNumOutputs() - { - return $this->numOutputs; - } - /** - * @param Google_Service_Dataflow_SideInputInfo - */ - public function setSideInputs($sideInputs) - { - $this->sideInputs = $sideInputs; - } - /** - * @return Google_Service_Dataflow_SideInputInfo - */ - public function getSideInputs() - { - return $this->sideInputs; - } - public function setUserFn($userFn) - { - $this->userFn = $userFn; - } - public function getUserFn() - { - return $this->userFn; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ParallelInstruction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ParallelInstruction.php deleted file mode 100644 index 485b78f5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ParallelInstruction.php +++ /dev/null @@ -1,145 +0,0 @@ -flatten = $flatten; - } - /** - * @return Google_Service_Dataflow_FlattenInstruction - */ - public function getFlatten() - { - return $this->flatten; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOriginalName($originalName) - { - $this->originalName = $originalName; - } - public function getOriginalName() - { - return $this->originalName; - } - /** - * @param Google_Service_Dataflow_InstructionOutput - */ - public function setOutputs($outputs) - { - $this->outputs = $outputs; - } - /** - * @return Google_Service_Dataflow_InstructionOutput - */ - public function getOutputs() - { - return $this->outputs; - } - /** - * @param Google_Service_Dataflow_ParDoInstruction - */ - public function setParDo(Google_Service_Dataflow_ParDoInstruction $parDo) - { - $this->parDo = $parDo; - } - /** - * @return Google_Service_Dataflow_ParDoInstruction - */ - public function getParDo() - { - return $this->parDo; - } - /** - * @param Google_Service_Dataflow_PartialGroupByKeyInstruction - */ - public function setPartialGroupByKey(Google_Service_Dataflow_PartialGroupByKeyInstruction $partialGroupByKey) - { - $this->partialGroupByKey = $partialGroupByKey; - } - /** - * @return Google_Service_Dataflow_PartialGroupByKeyInstruction - */ - public function getPartialGroupByKey() - { - return $this->partialGroupByKey; - } - /** - * @param Google_Service_Dataflow_ReadInstruction - */ - public function setRead(Google_Service_Dataflow_ReadInstruction $read) - { - $this->read = $read; - } - /** - * @return Google_Service_Dataflow_ReadInstruction - */ - public function getRead() - { - return $this->read; - } - public function setSystemName($systemName) - { - $this->systemName = $systemName; - } - public function getSystemName() - { - return $this->systemName; - } - /** - * @param Google_Service_Dataflow_WriteInstruction - */ - public function setWrite(Google_Service_Dataflow_WriteInstruction $write) - { - $this->write = $write; - } - /** - * @return Google_Service_Dataflow_WriteInstruction - */ - public function getWrite() - { - return $this->write; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Parameter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Parameter.php deleted file mode 100644 index 35b45c01..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Parameter.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ParameterMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ParameterMetadata.php deleted file mode 100644 index 00ea4f77..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ParameterMetadata.php +++ /dev/null @@ -1,76 +0,0 @@ -helpText = $helpText; - } - public function getHelpText() - { - return $this->helpText; - } - public function setIsOptional($isOptional) - { - $this->isOptional = $isOptional; - } - public function getIsOptional() - { - return $this->isOptional; - } - public function setLabel($label) - { - $this->label = $label; - } - public function getLabel() - { - return $this->label; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setParamType($paramType) - { - $this->paramType = $paramType; - } - public function getParamType() - { - return $this->paramType; - } - public function setRegexes($regexes) - { - $this->regexes = $regexes; - } - public function getRegexes() - { - return $this->regexes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/PartialGroupByKeyInstruction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/PartialGroupByKeyInstruction.php deleted file mode 100644 index 6fd15c7f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/PartialGroupByKeyInstruction.php +++ /dev/null @@ -1,90 +0,0 @@ -input = $input; - } - /** - * @return Google_Service_Dataflow_InstructionInput - */ - public function getInput() - { - return $this->input; - } - public function setInputElementCodec($inputElementCodec) - { - $this->inputElementCodec = $inputElementCodec; - } - public function getInputElementCodec() - { - return $this->inputElementCodec; - } - public function setOriginalCombineValuesInputStoreName($originalCombineValuesInputStoreName) - { - $this->originalCombineValuesInputStoreName = $originalCombineValuesInputStoreName; - } - public function getOriginalCombineValuesInputStoreName() - { - return $this->originalCombineValuesInputStoreName; - } - public function setOriginalCombineValuesStepName($originalCombineValuesStepName) - { - $this->originalCombineValuesStepName = $originalCombineValuesStepName; - } - public function getOriginalCombineValuesStepName() - { - return $this->originalCombineValuesStepName; - } - /** - * @param Google_Service_Dataflow_SideInputInfo - */ - public function setSideInputs($sideInputs) - { - $this->sideInputs = $sideInputs; - } - /** - * @return Google_Service_Dataflow_SideInputInfo - */ - public function getSideInputs() - { - return $this->sideInputs; - } - public function setValueCombiningFn($valueCombiningFn) - { - $this->valueCombiningFn = $valueCombiningFn; - } - public function getValueCombiningFn() - { - return $this->valueCombiningFn; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/PipelineDescription.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/PipelineDescription.php deleted file mode 100644 index f4e1629b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/PipelineDescription.php +++ /dev/null @@ -1,70 +0,0 @@ -displayData = $displayData; - } - /** - * @return Google_Service_Dataflow_DisplayData - */ - public function getDisplayData() - { - return $this->displayData; - } - /** - * @param Google_Service_Dataflow_ExecutionStageSummary - */ - public function setExecutionPipelineStage($executionPipelineStage) - { - $this->executionPipelineStage = $executionPipelineStage; - } - /** - * @return Google_Service_Dataflow_ExecutionStageSummary - */ - public function getExecutionPipelineStage() - { - return $this->executionPipelineStage; - } - /** - * @param Google_Service_Dataflow_TransformSummary - */ - public function setOriginalPipelineTransform($originalPipelineTransform) - { - $this->originalPipelineTransform = $originalPipelineTransform; - } - /** - * @return Google_Service_Dataflow_TransformSummary - */ - public function getOriginalPipelineTransform() - { - return $this->originalPipelineTransform; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Position.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Position.php deleted file mode 100644 index 469cb451..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Position.php +++ /dev/null @@ -1,82 +0,0 @@ -byteOffset = $byteOffset; - } - public function getByteOffset() - { - return $this->byteOffset; - } - /** - * @param Google_Service_Dataflow_ConcatPosition - */ - public function setConcatPosition(Google_Service_Dataflow_ConcatPosition $concatPosition) - { - $this->concatPosition = $concatPosition; - } - /** - * @return Google_Service_Dataflow_ConcatPosition - */ - public function getConcatPosition() - { - return $this->concatPosition; - } - public function setEnd($end) - { - $this->end = $end; - } - public function getEnd() - { - return $this->end; - } - public function setKey($key) - { - $this->key = $key; - } - public function getKey() - { - return $this->key; - } - public function setRecordIndex($recordIndex) - { - $this->recordIndex = $recordIndex; - } - public function getRecordIndex() - { - return $this->recordIndex; - } - public function setShufflePosition($shufflePosition) - { - $this->shufflePosition = $shufflePosition; - } - public function getShufflePosition() - { - return $this->shufflePosition; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/PubSubIODetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/PubSubIODetails.php deleted file mode 100644 index f0be5a9b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/PubSubIODetails.php +++ /dev/null @@ -1,39 +0,0 @@ -subscription = $subscription; - } - public function getSubscription() - { - return $this->subscription; - } - public function setTopic($topic) - { - $this->topic = $topic; - } - public function getTopic() - { - return $this->topic; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/PubsubLocation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/PubsubLocation.php deleted file mode 100644 index 362f1764..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/PubsubLocation.php +++ /dev/null @@ -1,84 +0,0 @@ -dropLateData = $dropLateData; - } - public function getDropLateData() - { - return $this->dropLateData; - } - public function setIdLabel($idLabel) - { - $this->idLabel = $idLabel; - } - public function getIdLabel() - { - return $this->idLabel; - } - public function setSubscription($subscription) - { - $this->subscription = $subscription; - } - public function getSubscription() - { - return $this->subscription; - } - public function setTimestampLabel($timestampLabel) - { - $this->timestampLabel = $timestampLabel; - } - public function getTimestampLabel() - { - return $this->timestampLabel; - } - public function setTopic($topic) - { - $this->topic = $topic; - } - public function getTopic() - { - return $this->topic; - } - public function setTrackingSubscription($trackingSubscription) - { - $this->trackingSubscription = $trackingSubscription; - } - public function getTrackingSubscription() - { - return $this->trackingSubscription; - } - public function setWithAttributes($withAttributes) - { - $this->withAttributes = $withAttributes; - } - public function getWithAttributes() - { - return $this->withAttributes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ReadInstruction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ReadInstruction.php deleted file mode 100644 index 87ccdeef..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ReadInstruction.php +++ /dev/null @@ -1,37 +0,0 @@ -source = $source; - } - /** - * @return Google_Service_Dataflow_Source - */ - public function getSource() - { - return $this->source; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ReportWorkItemStatusRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ReportWorkItemStatusRequest.php deleted file mode 100644 index f5b5b599..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ReportWorkItemStatusRequest.php +++ /dev/null @@ -1,74 +0,0 @@ -currentWorkerTime = $currentWorkerTime; - } - public function getCurrentWorkerTime() - { - return $this->currentWorkerTime; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setUnifiedWorkerRequest($unifiedWorkerRequest) - { - $this->unifiedWorkerRequest = $unifiedWorkerRequest; - } - public function getUnifiedWorkerRequest() - { - return $this->unifiedWorkerRequest; - } - /** - * @param Google_Service_Dataflow_WorkItemStatus - */ - public function setWorkItemStatuses($workItemStatuses) - { - $this->workItemStatuses = $workItemStatuses; - } - /** - * @return Google_Service_Dataflow_WorkItemStatus - */ - public function getWorkItemStatuses() - { - return $this->workItemStatuses; - } - public function setWorkerId($workerId) - { - $this->workerId = $workerId; - } - public function getWorkerId() - { - return $this->workerId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ReportWorkItemStatusResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ReportWorkItemStatusResponse.php deleted file mode 100644 index b3f11051..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ReportWorkItemStatusResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -unifiedWorkerResponse = $unifiedWorkerResponse; - } - public function getUnifiedWorkerResponse() - { - return $this->unifiedWorkerResponse; - } - /** - * @param Google_Service_Dataflow_WorkItemServiceState - */ - public function setWorkItemServiceStates($workItemServiceStates) - { - $this->workItemServiceStates = $workItemServiceStates; - } - /** - * @return Google_Service_Dataflow_WorkItemServiceState - */ - public function getWorkItemServiceStates() - { - return $this->workItemServiceStates; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ReportedParallelism.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ReportedParallelism.php deleted file mode 100644 index 8532dd1b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ReportedParallelism.php +++ /dev/null @@ -1,39 +0,0 @@ -isInfinite = $isInfinite; - } - public function getIsInfinite() - { - return $this->isInfinite; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Resource/Projects.php deleted file mode 100644 index 64ee1197..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Resource/Projects.php +++ /dev/null @@ -1,42 +0,0 @@ - - * $dataflowService = new Google_Service_Dataflow(...); - * $projects = $dataflowService->projects; - * - */ -class Google_Service_Dataflow_Resource_Projects extends Google_Service_Resource -{ - /** - * Send a worker_message to the service. (projects.workerMessages) - * - * @param string $projectId The project to send the WorkerMessages to. - * @param Google_Service_Dataflow_SendWorkerMessagesRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dataflow_SendWorkerMessagesResponse - */ - public function workerMessages($projectId, Google_Service_Dataflow_SendWorkerMessagesRequest $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('workerMessages', array($params), "Google_Service_Dataflow_SendWorkerMessagesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Resource/ProjectsJobs.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Resource/ProjectsJobs.php deleted file mode 100644 index 4c3548fa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Resource/ProjectsJobs.php +++ /dev/null @@ -1,190 +0,0 @@ - - * $dataflowService = new Google_Service_Dataflow(...); - * $jobs = $dataflowService->jobs; - * - */ -class Google_Service_Dataflow_Resource_ProjectsJobs extends Google_Service_Resource -{ - /** - * List the jobs of a project across all regions. (jobs.aggregated) - * - * @param string $projectId The project which owns the jobs. - * @param array $optParams Optional parameters. - * - * @opt_param string filter The kind of filter to use. - * @opt_param string location The [regional endpoint] - * (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints) that - * contains this job. - * @opt_param string pageToken Set this to the 'next_page_token' field of a - * previous response to request additional results in a long list. - * @opt_param int pageSize If there are many jobs, limit response to at most - * this many. The actual number of jobs returned will be the lesser of - * max_responses and an unspecified server-defined limit. - * @opt_param string view Level of information requested in response. Default is - * `JOB_VIEW_SUMMARY`. - * @return Google_Service_Dataflow_ListJobsResponse - */ - public function aggregated($projectId, $optParams = array()) - { - $params = array('projectId' => $projectId); - $params = array_merge($params, $optParams); - return $this->call('aggregated', array($params), "Google_Service_Dataflow_ListJobsResponse"); - } - /** - * Creates a Cloud Dataflow job. - * - * To create a job, we recommend using `projects.locations.jobs.create` with a - * [regional endpoint] (https://cloud.google.com/dataflow/docs/concepts - * /regional-endpoints). Using `projects.jobs.create` is not recommended, as - * your job will always start in `us-central1`. (jobs.create) - * - * @param string $projectId The ID of the Cloud Platform project that the job - * belongs to. - * @param Google_Service_Dataflow_Job $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string replaceJobId Deprecated. This field is now in the Job - * message. - * @opt_param string view The level of information requested in response. - * @opt_param string location The [regional endpoint] - * (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints) that - * contains this job. - * @return Google_Service_Dataflow_Job - */ - public function create($projectId, Google_Service_Dataflow_Job $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Dataflow_Job"); - } - /** - * Gets the state of the specified Cloud Dataflow job. - * - * To get the state of a job, we recommend using `projects.locations.jobs.get` - * with a [regional endpoint] (https://cloud.google.com/dataflow/docs/concepts - * /regional-endpoints). Using `projects.jobs.get` is not recommended, as you - * can only get the state of jobs that are running in `us-central1`. (jobs.get) - * - * @param string $projectId The ID of the Cloud Platform project that the job - * belongs to. - * @param string $jobId The job ID. - * @param array $optParams Optional parameters. - * - * @opt_param string view The level of information requested in response. - * @opt_param string location The [regional endpoint] - * (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints) that - * contains this job. - * @return Google_Service_Dataflow_Job - */ - public function get($projectId, $jobId, $optParams = array()) - { - $params = array('projectId' => $projectId, 'jobId' => $jobId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dataflow_Job"); - } - /** - * Request the job status. - * - * To request the status of a job, we recommend using - * `projects.locations.jobs.getMetrics` with a [regional endpoint] - * (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints). Using - * `projects.jobs.getMetrics` is not recommended, as you can only request the - * status of jobs that are running in `us-central1`. (jobs.getMetrics) - * - * @param string $projectId A project id. - * @param string $jobId The job to get messages for. - * @param array $optParams Optional parameters. - * - * @opt_param string location The [regional endpoint] - * (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints) that - * contains the job specified by job_id. - * @opt_param string startTime Return only metric data that has changed since - * this time. Default is to return all information about all metrics for the - * job. - * @return Google_Service_Dataflow_JobMetrics - */ - public function getMetrics($projectId, $jobId, $optParams = array()) - { - $params = array('projectId' => $projectId, 'jobId' => $jobId); - $params = array_merge($params, $optParams); - return $this->call('getMetrics', array($params), "Google_Service_Dataflow_JobMetrics"); - } - /** - * List the jobs of a project. - * - * To list the jobs of a project in a region, we recommend using - * `projects.locations.jobs.get` with a [regional endpoint] - * (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints). To list - * the all jobs across all regions, use `projects.jobs.aggregated`. Using - * `projects.jobs.list` is not recommended, as you can only get the list of jobs - * that are running in `us-central1`. (jobs.listProjectsJobs) - * - * @param string $projectId The project which owns the jobs. - * @param array $optParams Optional parameters. - * - * @opt_param string filter The kind of filter to use. - * @opt_param string location The [regional endpoint] - * (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints) that - * contains this job. - * @opt_param string pageToken Set this to the 'next_page_token' field of a - * previous response to request additional results in a long list. - * @opt_param int pageSize If there are many jobs, limit response to at most - * this many. The actual number of jobs returned will be the lesser of - * max_responses and an unspecified server-defined limit. - * @opt_param string view Level of information requested in response. Default is - * `JOB_VIEW_SUMMARY`. - * @return Google_Service_Dataflow_ListJobsResponse - */ - public function listProjectsJobs($projectId, $optParams = array()) - { - $params = array('projectId' => $projectId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dataflow_ListJobsResponse"); - } - /** - * Updates the state of an existing Cloud Dataflow job. - * - * To update the state of an existing job, we recommend using - * `projects.locations.jobs.update` with a [regional endpoint] - * (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints). Using - * `projects.jobs.update` is not recommended, as you can only update the state - * of jobs that are running in `us-central1`. (jobs.update) - * - * @param string $projectId The ID of the Cloud Platform project that the job - * belongs to. - * @param string $jobId The job ID. - * @param Google_Service_Dataflow_Job $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string location The [regional endpoint] - * (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints) that - * contains this job. - * @return Google_Service_Dataflow_Job - */ - public function update($projectId, $jobId, Google_Service_Dataflow_Job $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'jobId' => $jobId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Dataflow_Job"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Resource/ProjectsJobsDebug.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Resource/ProjectsJobsDebug.php deleted file mode 100644 index bf90d952..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Resource/ProjectsJobsDebug.php +++ /dev/null @@ -1,59 +0,0 @@ - - * $dataflowService = new Google_Service_Dataflow(...); - * $debug = $dataflowService->debug; - * - */ -class Google_Service_Dataflow_Resource_ProjectsJobsDebug extends Google_Service_Resource -{ - /** - * Get encoded debug configuration for component. Not cacheable. - * (debug.getConfig) - * - * @param string $projectId The project id. - * @param string $jobId The job id. - * @param Google_Service_Dataflow_GetDebugConfigRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dataflow_GetDebugConfigResponse - */ - public function getConfig($projectId, $jobId, Google_Service_Dataflow_GetDebugConfigRequest $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'jobId' => $jobId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('getConfig', array($params), "Google_Service_Dataflow_GetDebugConfigResponse"); - } - /** - * Send encoded debug capture data for component. (debug.sendCapture) - * - * @param string $projectId The project id. - * @param string $jobId The job id. - * @param Google_Service_Dataflow_SendDebugCaptureRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dataflow_SendDebugCaptureResponse - */ - public function sendCapture($projectId, $jobId, Google_Service_Dataflow_SendDebugCaptureRequest $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'jobId' => $jobId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('sendCapture', array($params), "Google_Service_Dataflow_SendDebugCaptureResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Resource/ProjectsJobsMessages.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Resource/ProjectsJobsMessages.php deleted file mode 100644 index 7107f118..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Resource/ProjectsJobsMessages.php +++ /dev/null @@ -1,66 +0,0 @@ - - * $dataflowService = new Google_Service_Dataflow(...); - * $messages = $dataflowService->messages; - * - */ -class Google_Service_Dataflow_Resource_ProjectsJobsMessages extends Google_Service_Resource -{ - /** - * Request the job status. - * - * To request the status of a job, we recommend using - * `projects.locations.jobs.messages.list` with a [regional endpoint] - * (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints). Using - * `projects.jobs.messages.list` is not recommended, as you can only request the - * status of jobs that are running in `us-central1`. - * (messages.listProjectsJobsMessages) - * - * @param string $projectId A project id. - * @param string $jobId The job to get messages about. - * @param array $optParams Optional parameters. - * - * @opt_param string endTime Return only messages with timestamps < end_time. - * The default is now (i.e. return up to the latest messages available). - * @opt_param string location The [regional endpoint] - * (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints) that - * contains the job specified by job_id. - * @opt_param string pageToken If supplied, this should be the value of - * next_page_token returned by an earlier call. This will cause the next page of - * results to be returned. - * @opt_param string startTime If specified, return only messages with - * timestamps >= start_time. The default is the job creation time (i.e. - * beginning of messages). - * @opt_param int pageSize If specified, determines the maximum number of - * messages to return. If unspecified, the service may choose an appropriate - * default, or may return an arbitrarily large number of results. - * @opt_param string minimumImportance Filter to only get messages with - * importance >= level - * @return Google_Service_Dataflow_ListJobMessagesResponse - */ - public function listProjectsJobsMessages($projectId, $jobId, $optParams = array()) - { - $params = array('projectId' => $projectId, 'jobId' => $jobId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dataflow_ListJobMessagesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Resource/ProjectsJobsWorkItems.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Resource/ProjectsJobsWorkItems.php deleted file mode 100644 index 8d290073..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Resource/ProjectsJobsWorkItems.php +++ /dev/null @@ -1,59 +0,0 @@ - - * $dataflowService = new Google_Service_Dataflow(...); - * $workItems = $dataflowService->workItems; - * - */ -class Google_Service_Dataflow_Resource_ProjectsJobsWorkItems extends Google_Service_Resource -{ - /** - * Leases a dataflow WorkItem to run. (workItems.lease) - * - * @param string $projectId Identifies the project this worker belongs to. - * @param string $jobId Identifies the workflow job this worker belongs to. - * @param Google_Service_Dataflow_LeaseWorkItemRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dataflow_LeaseWorkItemResponse - */ - public function lease($projectId, $jobId, Google_Service_Dataflow_LeaseWorkItemRequest $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'jobId' => $jobId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('lease', array($params), "Google_Service_Dataflow_LeaseWorkItemResponse"); - } - /** - * Reports the status of dataflow WorkItems leased by a worker. - * (workItems.reportStatus) - * - * @param string $projectId The project which owns the WorkItem's job. - * @param string $jobId The job which the WorkItem is part of. - * @param Google_Service_Dataflow_ReportWorkItemStatusRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dataflow_ReportWorkItemStatusResponse - */ - public function reportStatus($projectId, $jobId, Google_Service_Dataflow_ReportWorkItemStatusRequest $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'jobId' => $jobId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('reportStatus', array($params), "Google_Service_Dataflow_ReportWorkItemStatusResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Resource/ProjectsLocations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Resource/ProjectsLocations.php deleted file mode 100644 index 9e91255d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Resource/ProjectsLocations.php +++ /dev/null @@ -1,45 +0,0 @@ - - * $dataflowService = new Google_Service_Dataflow(...); - * $locations = $dataflowService->locations; - * - */ -class Google_Service_Dataflow_Resource_ProjectsLocations extends Google_Service_Resource -{ - /** - * Send a worker_message to the service. (locations.workerMessages) - * - * @param string $projectId The project to send the WorkerMessages to. - * @param string $location The [regional endpoint] - * (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints) that - * contains the job. - * @param Google_Service_Dataflow_SendWorkerMessagesRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dataflow_SendWorkerMessagesResponse - */ - public function workerMessages($projectId, $location, Google_Service_Dataflow_SendWorkerMessagesRequest $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'location' => $location, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('workerMessages', array($params), "Google_Service_Dataflow_SendWorkerMessagesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Resource/ProjectsLocationsFlexTemplates.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Resource/ProjectsLocationsFlexTemplates.php deleted file mode 100644 index 8887f664..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Resource/ProjectsLocationsFlexTemplates.php +++ /dev/null @@ -1,46 +0,0 @@ - - * $dataflowService = new Google_Service_Dataflow(...); - * $flexTemplates = $dataflowService->flexTemplates; - * - */ -class Google_Service_Dataflow_Resource_ProjectsLocationsFlexTemplates extends Google_Service_Resource -{ - /** - * Launch a job with a FlexTemplate. (flexTemplates.launch) - * - * @param string $projectId Required. The ID of the Cloud Platform project that - * the job belongs to. - * @param string $location Required. The [regional endpoint] - * (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints) to which - * to direct the request. E.g., us-central1, us-west1. - * @param Google_Service_Dataflow_LaunchFlexTemplateRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dataflow_LaunchFlexTemplateResponse - */ - public function launch($projectId, $location, Google_Service_Dataflow_LaunchFlexTemplateRequest $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'location' => $location, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('launch', array($params), "Google_Service_Dataflow_LaunchFlexTemplateResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Resource/ProjectsLocationsJobs.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Resource/ProjectsLocationsJobs.php deleted file mode 100644 index e0feb046..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Resource/ProjectsLocationsJobs.php +++ /dev/null @@ -1,164 +0,0 @@ - - * $dataflowService = new Google_Service_Dataflow(...); - * $jobs = $dataflowService->jobs; - * - */ -class Google_Service_Dataflow_Resource_ProjectsLocationsJobs extends Google_Service_Resource -{ - /** - * Creates a Cloud Dataflow job. - * - * To create a job, we recommend using `projects.locations.jobs.create` with a - * [regional endpoint] (https://cloud.google.com/dataflow/docs/concepts - * /regional-endpoints). Using `projects.jobs.create` is not recommended, as - * your job will always start in `us-central1`. (jobs.create) - * - * @param string $projectId The ID of the Cloud Platform project that the job - * belongs to. - * @param string $location The [regional endpoint] - * (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints) that - * contains this job. - * @param Google_Service_Dataflow_Job $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string replaceJobId Deprecated. This field is now in the Job - * message. - * @opt_param string view The level of information requested in response. - * @return Google_Service_Dataflow_Job - */ - public function create($projectId, $location, Google_Service_Dataflow_Job $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'location' => $location, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Dataflow_Job"); - } - /** - * Gets the state of the specified Cloud Dataflow job. - * - * To get the state of a job, we recommend using `projects.locations.jobs.get` - * with a [regional endpoint] (https://cloud.google.com/dataflow/docs/concepts - * /regional-endpoints). Using `projects.jobs.get` is not recommended, as you - * can only get the state of jobs that are running in `us-central1`. (jobs.get) - * - * @param string $projectId The ID of the Cloud Platform project that the job - * belongs to. - * @param string $location The [regional endpoint] - * (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints) that - * contains this job. - * @param string $jobId The job ID. - * @param array $optParams Optional parameters. - * - * @opt_param string view The level of information requested in response. - * @return Google_Service_Dataflow_Job - */ - public function get($projectId, $location, $jobId, $optParams = array()) - { - $params = array('projectId' => $projectId, 'location' => $location, 'jobId' => $jobId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dataflow_Job"); - } - /** - * Request the job status. - * - * To request the status of a job, we recommend using - * `projects.locations.jobs.getMetrics` with a [regional endpoint] - * (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints). Using - * `projects.jobs.getMetrics` is not recommended, as you can only request the - * status of jobs that are running in `us-central1`. (jobs.getMetrics) - * - * @param string $projectId A project id. - * @param string $location The [regional endpoint] - * (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints) that - * contains the job specified by job_id. - * @param string $jobId The job to get messages for. - * @param array $optParams Optional parameters. - * - * @opt_param string startTime Return only metric data that has changed since - * this time. Default is to return all information about all metrics for the - * job. - * @return Google_Service_Dataflow_JobMetrics - */ - public function getMetrics($projectId, $location, $jobId, $optParams = array()) - { - $params = array('projectId' => $projectId, 'location' => $location, 'jobId' => $jobId); - $params = array_merge($params, $optParams); - return $this->call('getMetrics', array($params), "Google_Service_Dataflow_JobMetrics"); - } - /** - * List the jobs of a project. - * - * To list the jobs of a project in a region, we recommend using - * `projects.locations.jobs.get` with a [regional endpoint] - * (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints). To list - * the all jobs across all regions, use `projects.jobs.aggregated`. Using - * `projects.jobs.list` is not recommended, as you can only get the list of jobs - * that are running in `us-central1`. (jobs.listProjectsLocationsJobs) - * - * @param string $projectId The project which owns the jobs. - * @param string $location The [regional endpoint] - * (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints) that - * contains this job. - * @param array $optParams Optional parameters. - * - * @opt_param int pageSize If there are many jobs, limit response to at most - * this many. The actual number of jobs returned will be the lesser of - * max_responses and an unspecified server-defined limit. - * @opt_param string view Level of information requested in response. Default is - * `JOB_VIEW_SUMMARY`. - * @opt_param string filter The kind of filter to use. - * @opt_param string pageToken Set this to the 'next_page_token' field of a - * previous response to request additional results in a long list. - * @return Google_Service_Dataflow_ListJobsResponse - */ - public function listProjectsLocationsJobs($projectId, $location, $optParams = array()) - { - $params = array('projectId' => $projectId, 'location' => $location); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dataflow_ListJobsResponse"); - } - /** - * Updates the state of an existing Cloud Dataflow job. - * - * To update the state of an existing job, we recommend using - * `projects.locations.jobs.update` with a [regional endpoint] - * (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints). Using - * `projects.jobs.update` is not recommended, as you can only update the state - * of jobs that are running in `us-central1`. (jobs.update) - * - * @param string $projectId The ID of the Cloud Platform project that the job - * belongs to. - * @param string $location The [regional endpoint] - * (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints) that - * contains this job. - * @param string $jobId The job ID. - * @param Google_Service_Dataflow_Job $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dataflow_Job - */ - public function update($projectId, $location, $jobId, Google_Service_Dataflow_Job $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'location' => $location, 'jobId' => $jobId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Dataflow_Job"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Resource/ProjectsLocationsJobsDebug.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Resource/ProjectsLocationsJobsDebug.php deleted file mode 100644 index 488db6c9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Resource/ProjectsLocationsJobsDebug.php +++ /dev/null @@ -1,65 +0,0 @@ - - * $dataflowService = new Google_Service_Dataflow(...); - * $debug = $dataflowService->debug; - * - */ -class Google_Service_Dataflow_Resource_ProjectsLocationsJobsDebug extends Google_Service_Resource -{ - /** - * Get encoded debug configuration for component. Not cacheable. - * (debug.getConfig) - * - * @param string $projectId The project id. - * @param string $location The [regional endpoint] - * (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints) that - * contains the job specified by job_id. - * @param string $jobId The job id. - * @param Google_Service_Dataflow_GetDebugConfigRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dataflow_GetDebugConfigResponse - */ - public function getConfig($projectId, $location, $jobId, Google_Service_Dataflow_GetDebugConfigRequest $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'location' => $location, 'jobId' => $jobId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('getConfig', array($params), "Google_Service_Dataflow_GetDebugConfigResponse"); - } - /** - * Send encoded debug capture data for component. (debug.sendCapture) - * - * @param string $projectId The project id. - * @param string $location The [regional endpoint] - * (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints) that - * contains the job specified by job_id. - * @param string $jobId The job id. - * @param Google_Service_Dataflow_SendDebugCaptureRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dataflow_SendDebugCaptureResponse - */ - public function sendCapture($projectId, $location, $jobId, Google_Service_Dataflow_SendDebugCaptureRequest $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'location' => $location, 'jobId' => $jobId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('sendCapture', array($params), "Google_Service_Dataflow_SendDebugCaptureResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Resource/ProjectsLocationsJobsMessages.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Resource/ProjectsLocationsJobsMessages.php deleted file mode 100644 index 3f24024d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Resource/ProjectsLocationsJobsMessages.php +++ /dev/null @@ -1,66 +0,0 @@ - - * $dataflowService = new Google_Service_Dataflow(...); - * $messages = $dataflowService->messages; - * - */ -class Google_Service_Dataflow_Resource_ProjectsLocationsJobsMessages extends Google_Service_Resource -{ - /** - * Request the job status. - * - * To request the status of a job, we recommend using - * `projects.locations.jobs.messages.list` with a [regional endpoint] - * (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints). Using - * `projects.jobs.messages.list` is not recommended, as you can only request the - * status of jobs that are running in `us-central1`. - * (messages.listProjectsLocationsJobsMessages) - * - * @param string $projectId A project id. - * @param string $location The [regional endpoint] - * (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints) that - * contains the job specified by job_id. - * @param string $jobId The job to get messages about. - * @param array $optParams Optional parameters. - * - * @opt_param string endTime Return only messages with timestamps < end_time. - * The default is now (i.e. return up to the latest messages available). - * @opt_param string startTime If specified, return only messages with - * timestamps >= start_time. The default is the job creation time (i.e. - * beginning of messages). - * @opt_param string pageToken If supplied, this should be the value of - * next_page_token returned by an earlier call. This will cause the next page of - * results to be returned. - * @opt_param int pageSize If specified, determines the maximum number of - * messages to return. If unspecified, the service may choose an appropriate - * default, or may return an arbitrarily large number of results. - * @opt_param string minimumImportance Filter to only get messages with - * importance >= level - * @return Google_Service_Dataflow_ListJobMessagesResponse - */ - public function listProjectsLocationsJobsMessages($projectId, $location, $jobId, $optParams = array()) - { - $params = array('projectId' => $projectId, 'location' => $location, 'jobId' => $jobId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dataflow_ListJobMessagesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Resource/ProjectsLocationsJobsWorkItems.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Resource/ProjectsLocationsJobsWorkItems.php deleted file mode 100644 index d060be28..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Resource/ProjectsLocationsJobsWorkItems.php +++ /dev/null @@ -1,65 +0,0 @@ - - * $dataflowService = new Google_Service_Dataflow(...); - * $workItems = $dataflowService->workItems; - * - */ -class Google_Service_Dataflow_Resource_ProjectsLocationsJobsWorkItems extends Google_Service_Resource -{ - /** - * Leases a dataflow WorkItem to run. (workItems.lease) - * - * @param string $projectId Identifies the project this worker belongs to. - * @param string $location The [regional endpoint] - * (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints) that - * contains the WorkItem's job. - * @param string $jobId Identifies the workflow job this worker belongs to. - * @param Google_Service_Dataflow_LeaseWorkItemRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dataflow_LeaseWorkItemResponse - */ - public function lease($projectId, $location, $jobId, Google_Service_Dataflow_LeaseWorkItemRequest $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'location' => $location, 'jobId' => $jobId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('lease', array($params), "Google_Service_Dataflow_LeaseWorkItemResponse"); - } - /** - * Reports the status of dataflow WorkItems leased by a worker. - * (workItems.reportStatus) - * - * @param string $projectId The project which owns the WorkItem's job. - * @param string $location The [regional endpoint] - * (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints) that - * contains the WorkItem's job. - * @param string $jobId The job which the WorkItem is part of. - * @param Google_Service_Dataflow_ReportWorkItemStatusRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dataflow_ReportWorkItemStatusResponse - */ - public function reportStatus($projectId, $location, $jobId, Google_Service_Dataflow_ReportWorkItemStatusRequest $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'location' => $location, 'jobId' => $jobId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('reportStatus', array($params), "Google_Service_Dataflow_ReportWorkItemStatusResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Resource/ProjectsLocationsSql.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Resource/ProjectsLocationsSql.php deleted file mode 100644 index 46580d63..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Resource/ProjectsLocationsSql.php +++ /dev/null @@ -1,50 +0,0 @@ - - * $dataflowService = new Google_Service_Dataflow(...); - * $sql = $dataflowService->sql; - * - */ -class Google_Service_Dataflow_Resource_ProjectsLocationsSql extends Google_Service_Resource -{ - /** - * Validates a GoogleSQL query for Cloud Dataflow syntax. Will always confirm - * the given query parses correctly, and if able to look up schema information - * from DataCatalog, will validate that the query analyzes properly as well. - * (sql.validate) - * - * @param string $projectId Required. The ID of the Cloud Platform project that - * the job belongs to. - * @param string $location The [regional endpoint] - * (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints) to which - * to direct the request. - * @param array $optParams Optional parameters. - * - * @opt_param string query The sql query to validate. - * @return Google_Service_Dataflow_ValidateResponse - */ - public function validate($projectId, $location, $optParams = array()) - { - $params = array('projectId' => $projectId, 'location' => $location); - $params = array_merge($params, $optParams); - return $this->call('validate', array($params), "Google_Service_Dataflow_ValidateResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Resource/ProjectsLocationsTemplates.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Resource/ProjectsLocationsTemplates.php deleted file mode 100644 index 37c6151e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Resource/ProjectsLocationsTemplates.php +++ /dev/null @@ -1,96 +0,0 @@ - - * $dataflowService = new Google_Service_Dataflow(...); - * $templates = $dataflowService->templates; - * - */ -class Google_Service_Dataflow_Resource_ProjectsLocationsTemplates extends Google_Service_Resource -{ - /** - * Creates a Cloud Dataflow job from a template. (templates.create) - * - * @param string $projectId Required. The ID of the Cloud Platform project that - * the job belongs to. - * @param string $location The [regional endpoint] - * (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints) to which - * to direct the request. - * @param Google_Service_Dataflow_CreateJobFromTemplateRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dataflow_Job - */ - public function create($projectId, $location, Google_Service_Dataflow_CreateJobFromTemplateRequest $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'location' => $location, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Dataflow_Job"); - } - /** - * Get the template associated with a template. (templates.get) - * - * @param string $projectId Required. The ID of the Cloud Platform project that - * the job belongs to. - * @param string $location The [regional endpoint] - * (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints) to which - * to direct the request. - * @param array $optParams Optional parameters. - * - * @opt_param string view The view to retrieve. Defaults to METADATA_ONLY. - * @opt_param string gcsPath Required. A Cloud Storage path to the template from - * which to create the job. Must be valid Cloud Storage URL, beginning with - * 'gs://'. - * @return Google_Service_Dataflow_GetTemplateResponse - */ - public function get($projectId, $location, $optParams = array()) - { - $params = array('projectId' => $projectId, 'location' => $location); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dataflow_GetTemplateResponse"); - } - /** - * Launch a template. (templates.launch) - * - * @param string $projectId Required. The ID of the Cloud Platform project that - * the job belongs to. - * @param string $location The [regional endpoint] - * (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints) to which - * to direct the request. - * @param Google_Service_Dataflow_LaunchTemplateParameters $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string dynamicTemplate.gcsPath Path to dynamic template spec file - * on GCS. The file must be a Json serialized DynamicTemplateFieSpec object. - * @opt_param string dynamicTemplate.stagingLocation Cloud Storage path for - * staging dependencies. Must be a valid Cloud Storage URL, beginning with - * `gs://`. - * @opt_param bool validateOnly If true, the request is validated but not - * actually executed. Defaults to false. - * @opt_param string gcsPath A Cloud Storage path to the template from which to - * create the job. Must be valid Cloud Storage URL, beginning with 'gs://'. - * @return Google_Service_Dataflow_LaunchTemplateResponse - */ - public function launch($projectId, $location, Google_Service_Dataflow_LaunchTemplateParameters $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'location' => $location, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('launch', array($params), "Google_Service_Dataflow_LaunchTemplateResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Resource/ProjectsTemplates.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Resource/ProjectsTemplates.php deleted file mode 100644 index 8d4de224..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Resource/ProjectsTemplates.php +++ /dev/null @@ -1,93 +0,0 @@ - - * $dataflowService = new Google_Service_Dataflow(...); - * $templates = $dataflowService->templates; - * - */ -class Google_Service_Dataflow_Resource_ProjectsTemplates extends Google_Service_Resource -{ - /** - * Creates a Cloud Dataflow job from a template. (templates.create) - * - * @param string $projectId Required. The ID of the Cloud Platform project that - * the job belongs to. - * @param Google_Service_Dataflow_CreateJobFromTemplateRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dataflow_Job - */ - public function create($projectId, Google_Service_Dataflow_CreateJobFromTemplateRequest $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Dataflow_Job"); - } - /** - * Get the template associated with a template. (templates.get) - * - * @param string $projectId Required. The ID of the Cloud Platform project that - * the job belongs to. - * @param array $optParams Optional parameters. - * - * @opt_param string view The view to retrieve. Defaults to METADATA_ONLY. - * @opt_param string gcsPath Required. A Cloud Storage path to the template from - * which to create the job. Must be valid Cloud Storage URL, beginning with - * 'gs://'. - * @opt_param string location The [regional endpoint] - * (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints) to which - * to direct the request. - * @return Google_Service_Dataflow_GetTemplateResponse - */ - public function get($projectId, $optParams = array()) - { - $params = array('projectId' => $projectId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dataflow_GetTemplateResponse"); - } - /** - * Launch a template. (templates.launch) - * - * @param string $projectId Required. The ID of the Cloud Platform project that - * the job belongs to. - * @param Google_Service_Dataflow_LaunchTemplateParameters $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string gcsPath A Cloud Storage path to the template from which to - * create the job. Must be valid Cloud Storage URL, beginning with 'gs://'. - * @opt_param string location The [regional endpoint] - * (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints) to which - * to direct the request. - * @opt_param string dynamicTemplate.gcsPath Path to dynamic template spec file - * on GCS. The file must be a Json serialized DynamicTemplateFieSpec object. - * @opt_param string dynamicTemplate.stagingLocation Cloud Storage path for - * staging dependencies. Must be a valid Cloud Storage URL, beginning with - * `gs://`. - * @opt_param bool validateOnly If true, the request is validated but not - * actually executed. Defaults to false. - * @return Google_Service_Dataflow_LaunchTemplateResponse - */ - public function launch($projectId, Google_Service_Dataflow_LaunchTemplateParameters $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('launch', array($params), "Google_Service_Dataflow_LaunchTemplateResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ResourceUtilizationReport.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ResourceUtilizationReport.php deleted file mode 100644 index 26bb40b7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ResourceUtilizationReport.php +++ /dev/null @@ -1,38 +0,0 @@ -cpuTime = $cpuTime; - } - /** - * @return Google_Service_Dataflow_CPUTime - */ - public function getCpuTime() - { - return $this->cpuTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ResourceUtilizationReportResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ResourceUtilizationReportResponse.php deleted file mode 100644 index 688394bf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ResourceUtilizationReportResponse.php +++ /dev/null @@ -1,20 +0,0 @@ -additionalExperiments = $additionalExperiments; - } - public function getAdditionalExperiments() - { - return $this->additionalExperiments; - } - public function setAdditionalUserLabels($additionalUserLabels) - { - $this->additionalUserLabels = $additionalUserLabels; - } - public function getAdditionalUserLabels() - { - return $this->additionalUserLabels; - } - public function setBypassTempDirValidation($bypassTempDirValidation) - { - $this->bypassTempDirValidation = $bypassTempDirValidation; - } - public function getBypassTempDirValidation() - { - return $this->bypassTempDirValidation; - } - public function setIpConfiguration($ipConfiguration) - { - $this->ipConfiguration = $ipConfiguration; - } - public function getIpConfiguration() - { - return $this->ipConfiguration; - } - public function setKmsKeyName($kmsKeyName) - { - $this->kmsKeyName = $kmsKeyName; - } - public function getKmsKeyName() - { - return $this->kmsKeyName; - } - public function setMachineType($machineType) - { - $this->machineType = $machineType; - } - public function getMachineType() - { - return $this->machineType; - } - public function setMaxWorkers($maxWorkers) - { - $this->maxWorkers = $maxWorkers; - } - public function getMaxWorkers() - { - return $this->maxWorkers; - } - public function setNetwork($network) - { - $this->network = $network; - } - public function getNetwork() - { - return $this->network; - } - public function setNumWorkers($numWorkers) - { - $this->numWorkers = $numWorkers; - } - public function getNumWorkers() - { - return $this->numWorkers; - } - public function setServiceAccountEmail($serviceAccountEmail) - { - $this->serviceAccountEmail = $serviceAccountEmail; - } - public function getServiceAccountEmail() - { - return $this->serviceAccountEmail; - } - public function setSubnetwork($subnetwork) - { - $this->subnetwork = $subnetwork; - } - public function getSubnetwork() - { - return $this->subnetwork; - } - public function setTempLocation($tempLocation) - { - $this->tempLocation = $tempLocation; - } - public function getTempLocation() - { - return $this->tempLocation; - } - public function setWorkerRegion($workerRegion) - { - $this->workerRegion = $workerRegion; - } - public function getWorkerRegion() - { - return $this->workerRegion; - } - public function setWorkerZone($workerZone) - { - $this->workerZone = $workerZone; - } - public function getWorkerZone() - { - return $this->workerZone; - } - public function setZone($zone) - { - $this->zone = $zone; - } - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/RuntimeMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/RuntimeMetadata.php deleted file mode 100644 index 6499ecb3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/RuntimeMetadata.php +++ /dev/null @@ -1,54 +0,0 @@ -parameters = $parameters; - } - /** - * @return Google_Service_Dataflow_ParameterMetadata - */ - public function getParameters() - { - return $this->parameters; - } - /** - * @param Google_Service_Dataflow_SDKInfo - */ - public function setSdkInfo(Google_Service_Dataflow_SDKInfo $sdkInfo) - { - $this->sdkInfo = $sdkInfo; - } - /** - * @return Google_Service_Dataflow_SDKInfo - */ - public function getSdkInfo() - { - return $this->sdkInfo; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SDKInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SDKInfo.php deleted file mode 100644 index e2b1248b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SDKInfo.php +++ /dev/null @@ -1,39 +0,0 @@ -language = $language; - } - public function getLanguage() - { - return $this->language; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SdkVersion.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SdkVersion.php deleted file mode 100644 index d60f2ed8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SdkVersion.php +++ /dev/null @@ -1,48 +0,0 @@ -sdkSupportStatus = $sdkSupportStatus; - } - public function getSdkSupportStatus() - { - return $this->sdkSupportStatus; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } - public function setVersionDisplayName($versionDisplayName) - { - $this->versionDisplayName = $versionDisplayName; - } - public function getVersionDisplayName() - { - return $this->versionDisplayName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SendDebugCaptureRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SendDebugCaptureRequest.php deleted file mode 100644 index 1dea20ed..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SendDebugCaptureRequest.php +++ /dev/null @@ -1,57 +0,0 @@ -componentId = $componentId; - } - public function getComponentId() - { - return $this->componentId; - } - public function setData($data) - { - $this->data = $data; - } - public function getData() - { - return $this->data; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setWorkerId($workerId) - { - $this->workerId = $workerId; - } - public function getWorkerId() - { - return $this->workerId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SendDebugCaptureResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SendDebugCaptureResponse.php deleted file mode 100644 index 90633edb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SendDebugCaptureResponse.php +++ /dev/null @@ -1,20 +0,0 @@ -location = $location; - } - public function getLocation() - { - return $this->location; - } - /** - * @param Google_Service_Dataflow_WorkerMessage - */ - public function setWorkerMessages($workerMessages) - { - $this->workerMessages = $workerMessages; - } - /** - * @return Google_Service_Dataflow_WorkerMessage - */ - public function getWorkerMessages() - { - return $this->workerMessages; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SendWorkerMessagesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SendWorkerMessagesResponse.php deleted file mode 100644 index 51844cb5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SendWorkerMessagesResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -workerMessageResponses = $workerMessageResponses; - } - /** - * @return Google_Service_Dataflow_WorkerMessageResponse - */ - public function getWorkerMessageResponses() - { - return $this->workerMessageResponses; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SeqMapTask.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SeqMapTask.php deleted file mode 100644 index 72292b88..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SeqMapTask.php +++ /dev/null @@ -1,90 +0,0 @@ -inputs = $inputs; - } - /** - * @return Google_Service_Dataflow_SideInputInfo - */ - public function getInputs() - { - return $this->inputs; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Dataflow_SeqMapTaskOutputInfo - */ - public function setOutputInfos($outputInfos) - { - $this->outputInfos = $outputInfos; - } - /** - * @return Google_Service_Dataflow_SeqMapTaskOutputInfo - */ - public function getOutputInfos() - { - return $this->outputInfos; - } - public function setStageName($stageName) - { - $this->stageName = $stageName; - } - public function getStageName() - { - return $this->stageName; - } - public function setSystemName($systemName) - { - $this->systemName = $systemName; - } - public function getSystemName() - { - return $this->systemName; - } - public function setUserFn($userFn) - { - $this->userFn = $userFn; - } - public function getUserFn() - { - return $this->userFn; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SeqMapTaskOutputInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SeqMapTaskOutputInfo.php deleted file mode 100644 index 364af074..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SeqMapTaskOutputInfo.php +++ /dev/null @@ -1,46 +0,0 @@ -sink = $sink; - } - /** - * @return Google_Service_Dataflow_Sink - */ - public function getSink() - { - return $this->sink; - } - public function setTag($tag) - { - $this->tag = $tag; - } - public function getTag() - { - return $this->tag; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ShellTask.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ShellTask.php deleted file mode 100644 index edbc5439..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ShellTask.php +++ /dev/null @@ -1,39 +0,0 @@ -command = $command; - } - public function getCommand() - { - return $this->command; - } - public function setExitCode($exitCode) - { - $this->exitCode = $exitCode; - } - public function getExitCode() - { - return $this->exitCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SideInputInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SideInputInfo.php deleted file mode 100644 index a59bfff5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SideInputInfo.php +++ /dev/null @@ -1,56 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Dataflow_Source - */ - public function setSources($sources) - { - $this->sources = $sources; - } - /** - * @return Google_Service_Dataflow_Source - */ - public function getSources() - { - return $this->sources; - } - public function setTag($tag) - { - $this->tag = $tag; - } - public function getTag() - { - return $this->tag; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Sink.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Sink.php deleted file mode 100644 index 6691a484..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Sink.php +++ /dev/null @@ -1,39 +0,0 @@ -codec = $codec; - } - public function getCodec() - { - return $this->codec; - } - public function setSpec($spec) - { - $this->spec = $spec; - } - public function getSpec() - { - return $this->spec; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Source.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Source.php deleted file mode 100644 index e62d04d4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Source.php +++ /dev/null @@ -1,74 +0,0 @@ -baseSpecs = $baseSpecs; - } - public function getBaseSpecs() - { - return $this->baseSpecs; - } - public function setCodec($codec) - { - $this->codec = $codec; - } - public function getCodec() - { - return $this->codec; - } - public function setDoesNotNeedSplitting($doesNotNeedSplitting) - { - $this->doesNotNeedSplitting = $doesNotNeedSplitting; - } - public function getDoesNotNeedSplitting() - { - return $this->doesNotNeedSplitting; - } - /** - * @param Google_Service_Dataflow_SourceMetadata - */ - public function setMetadata(Google_Service_Dataflow_SourceMetadata $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_Dataflow_SourceMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - public function setSpec($spec) - { - $this->spec = $spec; - } - public function getSpec() - { - return $this->spec; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SourceFork.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SourceFork.php deleted file mode 100644 index 59a989e3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SourceFork.php +++ /dev/null @@ -1,85 +0,0 @@ -primary = $primary; - } - /** - * @return Google_Service_Dataflow_SourceSplitShard - */ - public function getPrimary() - { - return $this->primary; - } - /** - * @param Google_Service_Dataflow_DerivedSource - */ - public function setPrimarySource(Google_Service_Dataflow_DerivedSource $primarySource) - { - $this->primarySource = $primarySource; - } - /** - * @return Google_Service_Dataflow_DerivedSource - */ - public function getPrimarySource() - { - return $this->primarySource; - } - /** - * @param Google_Service_Dataflow_SourceSplitShard - */ - public function setResidual(Google_Service_Dataflow_SourceSplitShard $residual) - { - $this->residual = $residual; - } - /** - * @return Google_Service_Dataflow_SourceSplitShard - */ - public function getResidual() - { - return $this->residual; - } - /** - * @param Google_Service_Dataflow_DerivedSource - */ - public function setResidualSource(Google_Service_Dataflow_DerivedSource $residualSource) - { - $this->residualSource = $residualSource; - } - /** - * @return Google_Service_Dataflow_DerivedSource - */ - public function getResidualSource() - { - return $this->residualSource; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SourceGetMetadataRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SourceGetMetadataRequest.php deleted file mode 100644 index 78c99be7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SourceGetMetadataRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -source = $source; - } - /** - * @return Google_Service_Dataflow_Source - */ - public function getSource() - { - return $this->source; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SourceGetMetadataResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SourceGetMetadataResponse.php deleted file mode 100644 index 667021c3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SourceGetMetadataResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -metadata = $metadata; - } - /** - * @return Google_Service_Dataflow_SourceMetadata - */ - public function getMetadata() - { - return $this->metadata; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SourceMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SourceMetadata.php deleted file mode 100644 index 55af75ea..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SourceMetadata.php +++ /dev/null @@ -1,48 +0,0 @@ -estimatedSizeBytes = $estimatedSizeBytes; - } - public function getEstimatedSizeBytes() - { - return $this->estimatedSizeBytes; - } - public function setInfinite($infinite) - { - $this->infinite = $infinite; - } - public function getInfinite() - { - return $this->infinite; - } - public function setProducesSortedKeys($producesSortedKeys) - { - $this->producesSortedKeys = $producesSortedKeys; - } - public function getProducesSortedKeys() - { - return $this->producesSortedKeys; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SourceOperationRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SourceOperationRequest.php deleted file mode 100644 index 16d3e6cc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SourceOperationRequest.php +++ /dev/null @@ -1,89 +0,0 @@ -getMetadata = $getMetadata; - } - /** - * @return Google_Service_Dataflow_SourceGetMetadataRequest - */ - public function getGetMetadata() - { - return $this->getMetadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOriginalName($originalName) - { - $this->originalName = $originalName; - } - public function getOriginalName() - { - return $this->originalName; - } - /** - * @param Google_Service_Dataflow_SourceSplitRequest - */ - public function setSplit(Google_Service_Dataflow_SourceSplitRequest $split) - { - $this->split = $split; - } - /** - * @return Google_Service_Dataflow_SourceSplitRequest - */ - public function getSplit() - { - return $this->split; - } - public function setStageName($stageName) - { - $this->stageName = $stageName; - } - public function getStageName() - { - return $this->stageName; - } - public function setSystemName($systemName) - { - $this->systemName = $systemName; - } - public function getSystemName() - { - return $this->systemName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SourceOperationResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SourceOperationResponse.php deleted file mode 100644 index 6cefc72d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SourceOperationResponse.php +++ /dev/null @@ -1,53 +0,0 @@ -getMetadata = $getMetadata; - } - /** - * @return Google_Service_Dataflow_SourceGetMetadataResponse - */ - public function getGetMetadata() - { - return $this->getMetadata; - } - /** - * @param Google_Service_Dataflow_SourceSplitResponse - */ - public function setSplit(Google_Service_Dataflow_SourceSplitResponse $split) - { - $this->split = $split; - } - /** - * @return Google_Service_Dataflow_SourceSplitResponse - */ - public function getSplit() - { - return $this->split; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SourceSplitOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SourceSplitOptions.php deleted file mode 100644 index e12a7b09..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SourceSplitOptions.php +++ /dev/null @@ -1,39 +0,0 @@ -desiredBundleSizeBytes = $desiredBundleSizeBytes; - } - public function getDesiredBundleSizeBytes() - { - return $this->desiredBundleSizeBytes; - } - public function setDesiredShardSizeBytes($desiredShardSizeBytes) - { - $this->desiredShardSizeBytes = $desiredShardSizeBytes; - } - public function getDesiredShardSizeBytes() - { - return $this->desiredShardSizeBytes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SourceSplitRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SourceSplitRequest.php deleted file mode 100644 index 9ad44f05..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SourceSplitRequest.php +++ /dev/null @@ -1,53 +0,0 @@ -options = $options; - } - /** - * @return Google_Service_Dataflow_SourceSplitOptions - */ - public function getOptions() - { - return $this->options; - } - /** - * @param Google_Service_Dataflow_Source - */ - public function setSource(Google_Service_Dataflow_Source $source) - { - $this->source = $source; - } - /** - * @return Google_Service_Dataflow_Source - */ - public function getSource() - { - return $this->source; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SourceSplitResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SourceSplitResponse.php deleted file mode 100644 index 5c956fdd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SourceSplitResponse.php +++ /dev/null @@ -1,63 +0,0 @@ -bundles = $bundles; - } - /** - * @return Google_Service_Dataflow_DerivedSource - */ - public function getBundles() - { - return $this->bundles; - } - public function setOutcome($outcome) - { - $this->outcome = $outcome; - } - public function getOutcome() - { - return $this->outcome; - } - /** - * @param Google_Service_Dataflow_SourceSplitShard - */ - public function setShards($shards) - { - $this->shards = $shards; - } - /** - * @return Google_Service_Dataflow_SourceSplitShard - */ - public function getShards() - { - return $this->shards; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SourceSplitShard.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SourceSplitShard.php deleted file mode 100644 index 02a8ff47..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SourceSplitShard.php +++ /dev/null @@ -1,46 +0,0 @@ -derivationMode = $derivationMode; - } - public function getDerivationMode() - { - return $this->derivationMode; - } - /** - * @param Google_Service_Dataflow_Source - */ - public function setSource(Google_Service_Dataflow_Source $source) - { - $this->source = $source; - } - /** - * @return Google_Service_Dataflow_Source - */ - public function getSource() - { - return $this->source; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SpannerIODetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SpannerIODetails.php deleted file mode 100644 index 8c02b57a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SpannerIODetails.php +++ /dev/null @@ -1,48 +0,0 @@ -databaseId = $databaseId; - } - public function getDatabaseId() - { - return $this->databaseId; - } - public function setInstanceId($instanceId) - { - $this->instanceId = $instanceId; - } - public function getInstanceId() - { - return $this->instanceId; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SplitInt64.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SplitInt64.php deleted file mode 100644 index 41f6dd63..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/SplitInt64.php +++ /dev/null @@ -1,39 +0,0 @@ -highBits = $highBits; - } - public function getHighBits() - { - return $this->highBits; - } - public function setLowBits($lowBits) - { - $this->lowBits = $lowBits; - } - public function getLowBits() - { - return $this->lowBits; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/StageSource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/StageSource.php deleted file mode 100644 index 758385f3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/StageSource.php +++ /dev/null @@ -1,57 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setOriginalTransformOrCollection($originalTransformOrCollection) - { - $this->originalTransformOrCollection = $originalTransformOrCollection; - } - public function getOriginalTransformOrCollection() - { - return $this->originalTransformOrCollection; - } - public function setSizeBytes($sizeBytes) - { - $this->sizeBytes = $sizeBytes; - } - public function getSizeBytes() - { - return $this->sizeBytes; - } - public function setUserName($userName) - { - $this->userName = $userName; - } - public function getUserName() - { - return $this->userName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/StateFamilyConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/StateFamilyConfig.php deleted file mode 100644 index a43609d8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/StateFamilyConfig.php +++ /dev/null @@ -1,39 +0,0 @@ -isRead = $isRead; - } - public function getIsRead() - { - return $this->isRead; - } - public function setStateFamily($stateFamily) - { - $this->stateFamily = $stateFamily; - } - public function getStateFamily() - { - return $this->stateFamily; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Status.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Status.php deleted file mode 100644 index dfb06cc9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Status.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Step.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Step.php deleted file mode 100644 index 0ed48ddd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/Step.php +++ /dev/null @@ -1,48 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setProperties($properties) - { - $this->properties = $properties; - } - public function getProperties() - { - return $this->properties; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/StreamLocation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/StreamLocation.php deleted file mode 100644 index 0aafb8c5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/StreamLocation.php +++ /dev/null @@ -1,85 +0,0 @@ -customSourceLocation = $customSourceLocation; - } - /** - * @return Google_Service_Dataflow_CustomSourceLocation - */ - public function getCustomSourceLocation() - { - return $this->customSourceLocation; - } - /** - * @param Google_Service_Dataflow_PubsubLocation - */ - public function setPubsubLocation(Google_Service_Dataflow_PubsubLocation $pubsubLocation) - { - $this->pubsubLocation = $pubsubLocation; - } - /** - * @return Google_Service_Dataflow_PubsubLocation - */ - public function getPubsubLocation() - { - return $this->pubsubLocation; - } - /** - * @param Google_Service_Dataflow_StreamingSideInputLocation - */ - public function setSideInputLocation(Google_Service_Dataflow_StreamingSideInputLocation $sideInputLocation) - { - $this->sideInputLocation = $sideInputLocation; - } - /** - * @return Google_Service_Dataflow_StreamingSideInputLocation - */ - public function getSideInputLocation() - { - return $this->sideInputLocation; - } - /** - * @param Google_Service_Dataflow_StreamingStageLocation - */ - public function setStreamingStageLocation(Google_Service_Dataflow_StreamingStageLocation $streamingStageLocation) - { - $this->streamingStageLocation = $streamingStageLocation; - } - /** - * @return Google_Service_Dataflow_StreamingStageLocation - */ - public function getStreamingStageLocation() - { - return $this->streamingStageLocation; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/StreamingApplianceSnapshotConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/StreamingApplianceSnapshotConfig.php deleted file mode 100644 index d32bd59e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/StreamingApplianceSnapshotConfig.php +++ /dev/null @@ -1,39 +0,0 @@ -importStateEndpoint = $importStateEndpoint; - } - public function getImportStateEndpoint() - { - return $this->importStateEndpoint; - } - public function setSnapshotId($snapshotId) - { - $this->snapshotId = $snapshotId; - } - public function getSnapshotId() - { - return $this->snapshotId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/StreamingComputationConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/StreamingComputationConfig.php deleted file mode 100644 index fe04ac75..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/StreamingComputationConfig.php +++ /dev/null @@ -1,74 +0,0 @@ -computationId = $computationId; - } - public function getComputationId() - { - return $this->computationId; - } - /** - * @param Google_Service_Dataflow_ParallelInstruction - */ - public function setInstructions($instructions) - { - $this->instructions = $instructions; - } - /** - * @return Google_Service_Dataflow_ParallelInstruction - */ - public function getInstructions() - { - return $this->instructions; - } - public function setStageName($stageName) - { - $this->stageName = $stageName; - } - public function getStageName() - { - return $this->stageName; - } - public function setSystemName($systemName) - { - $this->systemName = $systemName; - } - public function getSystemName() - { - return $this->systemName; - } - public function setTransformUserNameToStateFamily($transformUserNameToStateFamily) - { - $this->transformUserNameToStateFamily = $transformUserNameToStateFamily; - } - public function getTransformUserNameToStateFamily() - { - return $this->transformUserNameToStateFamily; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/StreamingComputationRanges.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/StreamingComputationRanges.php deleted file mode 100644 index 3c9d55ee..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/StreamingComputationRanges.php +++ /dev/null @@ -1,47 +0,0 @@ -computationId = $computationId; - } - public function getComputationId() - { - return $this->computationId; - } - /** - * @param Google_Service_Dataflow_KeyRangeDataDiskAssignment - */ - public function setRangeAssignments($rangeAssignments) - { - $this->rangeAssignments = $rangeAssignments; - } - /** - * @return Google_Service_Dataflow_KeyRangeDataDiskAssignment - */ - public function getRangeAssignments() - { - return $this->rangeAssignments; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/StreamingComputationTask.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/StreamingComputationTask.php deleted file mode 100644 index 7729d1fa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/StreamingComputationTask.php +++ /dev/null @@ -1,63 +0,0 @@ -computationRanges = $computationRanges; - } - /** - * @return Google_Service_Dataflow_StreamingComputationRanges - */ - public function getComputationRanges() - { - return $this->computationRanges; - } - /** - * @param Google_Service_Dataflow_MountedDataDisk - */ - public function setDataDisks($dataDisks) - { - $this->dataDisks = $dataDisks; - } - /** - * @return Google_Service_Dataflow_MountedDataDisk - */ - public function getDataDisks() - { - return $this->dataDisks; - } - public function setTaskType($taskType) - { - $this->taskType = $taskType; - } - public function getTaskType() - { - return $this->taskType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/StreamingConfigTask.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/StreamingConfigTask.php deleted file mode 100644 index 6cc2b60d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/StreamingConfigTask.php +++ /dev/null @@ -1,92 +0,0 @@ -commitStreamChunkSizeBytes = $commitStreamChunkSizeBytes; - } - public function getCommitStreamChunkSizeBytes() - { - return $this->commitStreamChunkSizeBytes; - } - public function setGetDataStreamChunkSizeBytes($getDataStreamChunkSizeBytes) - { - $this->getDataStreamChunkSizeBytes = $getDataStreamChunkSizeBytes; - } - public function getGetDataStreamChunkSizeBytes() - { - return $this->getDataStreamChunkSizeBytes; - } - public function setMaxWorkItemCommitBytes($maxWorkItemCommitBytes) - { - $this->maxWorkItemCommitBytes = $maxWorkItemCommitBytes; - } - public function getMaxWorkItemCommitBytes() - { - return $this->maxWorkItemCommitBytes; - } - /** - * @param Google_Service_Dataflow_StreamingComputationConfig - */ - public function setStreamingComputationConfigs($streamingComputationConfigs) - { - $this->streamingComputationConfigs = $streamingComputationConfigs; - } - /** - * @return Google_Service_Dataflow_StreamingComputationConfig - */ - public function getStreamingComputationConfigs() - { - return $this->streamingComputationConfigs; - } - public function setUserStepToStateFamilyNameMap($userStepToStateFamilyNameMap) - { - $this->userStepToStateFamilyNameMap = $userStepToStateFamilyNameMap; - } - public function getUserStepToStateFamilyNameMap() - { - return $this->userStepToStateFamilyNameMap; - } - public function setWindmillServiceEndpoint($windmillServiceEndpoint) - { - $this->windmillServiceEndpoint = $windmillServiceEndpoint; - } - public function getWindmillServiceEndpoint() - { - return $this->windmillServiceEndpoint; - } - public function setWindmillServicePort($windmillServicePort) - { - $this->windmillServicePort = $windmillServicePort; - } - public function getWindmillServicePort() - { - return $this->windmillServicePort; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/StreamingSetupTask.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/StreamingSetupTask.php deleted file mode 100644 index 1f36551c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/StreamingSetupTask.php +++ /dev/null @@ -1,80 +0,0 @@ -drain = $drain; - } - public function getDrain() - { - return $this->drain; - } - public function setReceiveWorkPort($receiveWorkPort) - { - $this->receiveWorkPort = $receiveWorkPort; - } - public function getReceiveWorkPort() - { - return $this->receiveWorkPort; - } - /** - * @param Google_Service_Dataflow_StreamingApplianceSnapshotConfig - */ - public function setSnapshotConfig(Google_Service_Dataflow_StreamingApplianceSnapshotConfig $snapshotConfig) - { - $this->snapshotConfig = $snapshotConfig; - } - /** - * @return Google_Service_Dataflow_StreamingApplianceSnapshotConfig - */ - public function getSnapshotConfig() - { - return $this->snapshotConfig; - } - /** - * @param Google_Service_Dataflow_TopologyConfig - */ - public function setStreamingComputationTopology(Google_Service_Dataflow_TopologyConfig $streamingComputationTopology) - { - $this->streamingComputationTopology = $streamingComputationTopology; - } - /** - * @return Google_Service_Dataflow_TopologyConfig - */ - public function getStreamingComputationTopology() - { - return $this->streamingComputationTopology; - } - public function setWorkerHarnessPort($workerHarnessPort) - { - $this->workerHarnessPort = $workerHarnessPort; - } - public function getWorkerHarnessPort() - { - return $this->workerHarnessPort; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/StreamingSideInputLocation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/StreamingSideInputLocation.php deleted file mode 100644 index a0fdfda4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/StreamingSideInputLocation.php +++ /dev/null @@ -1,39 +0,0 @@ -stateFamily = $stateFamily; - } - public function getStateFamily() - { - return $this->stateFamily; - } - public function setTag($tag) - { - $this->tag = $tag; - } - public function getTag() - { - return $this->tag; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/StreamingStageLocation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/StreamingStageLocation.php deleted file mode 100644 index 715d639c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/StreamingStageLocation.php +++ /dev/null @@ -1,30 +0,0 @@ -streamId = $streamId; - } - public function getStreamId() - { - return $this->streamId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/StringList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/StringList.php deleted file mode 100644 index ef1506c2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/StringList.php +++ /dev/null @@ -1,31 +0,0 @@ -elements = $elements; - } - public function getElements() - { - return $this->elements; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/StructuredMessage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/StructuredMessage.php deleted file mode 100644 index 700aa765..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/StructuredMessage.php +++ /dev/null @@ -1,56 +0,0 @@ -messageKey = $messageKey; - } - public function getMessageKey() - { - return $this->messageKey; - } - public function setMessageText($messageText) - { - $this->messageText = $messageText; - } - public function getMessageText() - { - return $this->messageText; - } - /** - * @param Google_Service_Dataflow_Parameter - */ - public function setParameters($parameters) - { - $this->parameters = $parameters; - } - /** - * @return Google_Service_Dataflow_Parameter - */ - public function getParameters() - { - return $this->parameters; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/TaskRunnerSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/TaskRunnerSettings.php deleted file mode 100644 index bb23209d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/TaskRunnerSettings.php +++ /dev/null @@ -1,200 +0,0 @@ -alsologtostderr = $alsologtostderr; - } - public function getAlsologtostderr() - { - return $this->alsologtostderr; - } - public function setBaseTaskDir($baseTaskDir) - { - $this->baseTaskDir = $baseTaskDir; - } - public function getBaseTaskDir() - { - return $this->baseTaskDir; - } - public function setBaseUrl($baseUrl) - { - $this->baseUrl = $baseUrl; - } - public function getBaseUrl() - { - return $this->baseUrl; - } - public function setCommandlinesFileName($commandlinesFileName) - { - $this->commandlinesFileName = $commandlinesFileName; - } - public function getCommandlinesFileName() - { - return $this->commandlinesFileName; - } - public function setContinueOnException($continueOnException) - { - $this->continueOnException = $continueOnException; - } - public function getContinueOnException() - { - return $this->continueOnException; - } - public function setDataflowApiVersion($dataflowApiVersion) - { - $this->dataflowApiVersion = $dataflowApiVersion; - } - public function getDataflowApiVersion() - { - return $this->dataflowApiVersion; - } - public function setHarnessCommand($harnessCommand) - { - $this->harnessCommand = $harnessCommand; - } - public function getHarnessCommand() - { - return $this->harnessCommand; - } - public function setLanguageHint($languageHint) - { - $this->languageHint = $languageHint; - } - public function getLanguageHint() - { - return $this->languageHint; - } - public function setLogDir($logDir) - { - $this->logDir = $logDir; - } - public function getLogDir() - { - return $this->logDir; - } - public function setLogToSerialconsole($logToSerialconsole) - { - $this->logToSerialconsole = $logToSerialconsole; - } - public function getLogToSerialconsole() - { - return $this->logToSerialconsole; - } - public function setLogUploadLocation($logUploadLocation) - { - $this->logUploadLocation = $logUploadLocation; - } - public function getLogUploadLocation() - { - return $this->logUploadLocation; - } - public function setOauthScopes($oauthScopes) - { - $this->oauthScopes = $oauthScopes; - } - public function getOauthScopes() - { - return $this->oauthScopes; - } - /** - * @param Google_Service_Dataflow_WorkerSettings - */ - public function setParallelWorkerSettings(Google_Service_Dataflow_WorkerSettings $parallelWorkerSettings) - { - $this->parallelWorkerSettings = $parallelWorkerSettings; - } - /** - * @return Google_Service_Dataflow_WorkerSettings - */ - public function getParallelWorkerSettings() - { - return $this->parallelWorkerSettings; - } - public function setStreamingWorkerMainClass($streamingWorkerMainClass) - { - $this->streamingWorkerMainClass = $streamingWorkerMainClass; - } - public function getStreamingWorkerMainClass() - { - return $this->streamingWorkerMainClass; - } - public function setTaskGroup($taskGroup) - { - $this->taskGroup = $taskGroup; - } - public function getTaskGroup() - { - return $this->taskGroup; - } - public function setTaskUser($taskUser) - { - $this->taskUser = $taskUser; - } - public function getTaskUser() - { - return $this->taskUser; - } - public function setTempStoragePrefix($tempStoragePrefix) - { - $this->tempStoragePrefix = $tempStoragePrefix; - } - public function getTempStoragePrefix() - { - return $this->tempStoragePrefix; - } - public function setVmId($vmId) - { - $this->vmId = $vmId; - } - public function getVmId() - { - return $this->vmId; - } - public function setWorkflowFileName($workflowFileName) - { - $this->workflowFileName = $workflowFileName; - } - public function getWorkflowFileName() - { - return $this->workflowFileName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/TemplateMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/TemplateMetadata.php deleted file mode 100644 index 6d12d6c9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/TemplateMetadata.php +++ /dev/null @@ -1,56 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Dataflow_ParameterMetadata - */ - public function setParameters($parameters) - { - $this->parameters = $parameters; - } - /** - * @return Google_Service_Dataflow_ParameterMetadata - */ - public function getParameters() - { - return $this->parameters; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/TopologyConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/TopologyConfig.php deleted file mode 100644 index 5ce02c55..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/TopologyConfig.php +++ /dev/null @@ -1,81 +0,0 @@ -computations = $computations; - } - /** - * @return Google_Service_Dataflow_ComputationTopology - */ - public function getComputations() - { - return $this->computations; - } - /** - * @param Google_Service_Dataflow_DataDiskAssignment - */ - public function setDataDiskAssignments($dataDiskAssignments) - { - $this->dataDiskAssignments = $dataDiskAssignments; - } - /** - * @return Google_Service_Dataflow_DataDiskAssignment - */ - public function getDataDiskAssignments() - { - return $this->dataDiskAssignments; - } - public function setForwardingKeyBits($forwardingKeyBits) - { - $this->forwardingKeyBits = $forwardingKeyBits; - } - public function getForwardingKeyBits() - { - return $this->forwardingKeyBits; - } - public function setPersistentStateVersion($persistentStateVersion) - { - $this->persistentStateVersion = $persistentStateVersion; - } - public function getPersistentStateVersion() - { - return $this->persistentStateVersion; - } - public function setUserStageToComputationNameMap($userStageToComputationNameMap) - { - $this->userStageToComputationNameMap = $userStageToComputationNameMap; - } - public function getUserStageToComputationNameMap() - { - return $this->userStageToComputationNameMap; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/TransformSummary.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/TransformSummary.php deleted file mode 100644 index 4c0152db..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/TransformSummary.php +++ /dev/null @@ -1,83 +0,0 @@ -displayData = $displayData; - } - /** - * @return Google_Service_Dataflow_DisplayData - */ - public function getDisplayData() - { - return $this->displayData; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setInputCollectionName($inputCollectionName) - { - $this->inputCollectionName = $inputCollectionName; - } - public function getInputCollectionName() - { - return $this->inputCollectionName; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOutputCollectionName($outputCollectionName) - { - $this->outputCollectionName = $outputCollectionName; - } - public function getOutputCollectionName() - { - return $this->outputCollectionName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ValidateResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ValidateResponse.php deleted file mode 100644 index 9a791507..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/ValidateResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -errorMessage = $errorMessage; - } - public function getErrorMessage() - { - return $this->errorMessage; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/WorkItem.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/WorkItem.php deleted file mode 100644 index 0c61672e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/WorkItem.php +++ /dev/null @@ -1,213 +0,0 @@ -configuration = $configuration; - } - public function getConfiguration() - { - return $this->configuration; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setInitialReportIndex($initialReportIndex) - { - $this->initialReportIndex = $initialReportIndex; - } - public function getInitialReportIndex() - { - return $this->initialReportIndex; - } - public function setJobId($jobId) - { - $this->jobId = $jobId; - } - public function getJobId() - { - return $this->jobId; - } - public function setLeaseExpireTime($leaseExpireTime) - { - $this->leaseExpireTime = $leaseExpireTime; - } - public function getLeaseExpireTime() - { - return $this->leaseExpireTime; - } - /** - * @param Google_Service_Dataflow_MapTask - */ - public function setMapTask(Google_Service_Dataflow_MapTask $mapTask) - { - $this->mapTask = $mapTask; - } - /** - * @return Google_Service_Dataflow_MapTask - */ - public function getMapTask() - { - return $this->mapTask; - } - /** - * @param Google_Service_Dataflow_Package - */ - public function setPackages($packages) - { - $this->packages = $packages; - } - /** - * @return Google_Service_Dataflow_Package - */ - public function getPackages() - { - return $this->packages; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } - public function setReportStatusInterval($reportStatusInterval) - { - $this->reportStatusInterval = $reportStatusInterval; - } - public function getReportStatusInterval() - { - return $this->reportStatusInterval; - } - /** - * @param Google_Service_Dataflow_SeqMapTask - */ - public function setSeqMapTask(Google_Service_Dataflow_SeqMapTask $seqMapTask) - { - $this->seqMapTask = $seqMapTask; - } - /** - * @return Google_Service_Dataflow_SeqMapTask - */ - public function getSeqMapTask() - { - return $this->seqMapTask; - } - /** - * @param Google_Service_Dataflow_ShellTask - */ - public function setShellTask(Google_Service_Dataflow_ShellTask $shellTask) - { - $this->shellTask = $shellTask; - } - /** - * @return Google_Service_Dataflow_ShellTask - */ - public function getShellTask() - { - return $this->shellTask; - } - /** - * @param Google_Service_Dataflow_SourceOperationRequest - */ - public function setSourceOperationTask(Google_Service_Dataflow_SourceOperationRequest $sourceOperationTask) - { - $this->sourceOperationTask = $sourceOperationTask; - } - /** - * @return Google_Service_Dataflow_SourceOperationRequest - */ - public function getSourceOperationTask() - { - return $this->sourceOperationTask; - } - /** - * @param Google_Service_Dataflow_StreamingComputationTask - */ - public function setStreamingComputationTask(Google_Service_Dataflow_StreamingComputationTask $streamingComputationTask) - { - $this->streamingComputationTask = $streamingComputationTask; - } - /** - * @return Google_Service_Dataflow_StreamingComputationTask - */ - public function getStreamingComputationTask() - { - return $this->streamingComputationTask; - } - /** - * @param Google_Service_Dataflow_StreamingConfigTask - */ - public function setStreamingConfigTask(Google_Service_Dataflow_StreamingConfigTask $streamingConfigTask) - { - $this->streamingConfigTask = $streamingConfigTask; - } - /** - * @return Google_Service_Dataflow_StreamingConfigTask - */ - public function getStreamingConfigTask() - { - return $this->streamingConfigTask; - } - /** - * @param Google_Service_Dataflow_StreamingSetupTask - */ - public function setStreamingSetupTask(Google_Service_Dataflow_StreamingSetupTask $streamingSetupTask) - { - $this->streamingSetupTask = $streamingSetupTask; - } - /** - * @return Google_Service_Dataflow_StreamingSetupTask - */ - public function getStreamingSetupTask() - { - return $this->streamingSetupTask; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/WorkItemServiceState.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/WorkItemServiceState.php deleted file mode 100644 index 4c378833..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/WorkItemServiceState.php +++ /dev/null @@ -1,138 +0,0 @@ -harnessData = $harnessData; - } - public function getHarnessData() - { - return $this->harnessData; - } - /** - * @param Google_Service_Dataflow_HotKeyDetection - */ - public function setHotKeyDetection(Google_Service_Dataflow_HotKeyDetection $hotKeyDetection) - { - $this->hotKeyDetection = $hotKeyDetection; - } - /** - * @return Google_Service_Dataflow_HotKeyDetection - */ - public function getHotKeyDetection() - { - return $this->hotKeyDetection; - } - public function setLeaseExpireTime($leaseExpireTime) - { - $this->leaseExpireTime = $leaseExpireTime; - } - public function getLeaseExpireTime() - { - return $this->leaseExpireTime; - } - /** - * @param Google_Service_Dataflow_MetricShortId - */ - public function setMetricShortId($metricShortId) - { - $this->metricShortId = $metricShortId; - } - /** - * @return Google_Service_Dataflow_MetricShortId - */ - public function getMetricShortId() - { - return $this->metricShortId; - } - public function setNextReportIndex($nextReportIndex) - { - $this->nextReportIndex = $nextReportIndex; - } - public function getNextReportIndex() - { - return $this->nextReportIndex; - } - public function setReportStatusInterval($reportStatusInterval) - { - $this->reportStatusInterval = $reportStatusInterval; - } - public function getReportStatusInterval() - { - return $this->reportStatusInterval; - } - /** - * @param Google_Service_Dataflow_ApproximateSplitRequest - */ - public function setSplitRequest(Google_Service_Dataflow_ApproximateSplitRequest $splitRequest) - { - $this->splitRequest = $splitRequest; - } - /** - * @return Google_Service_Dataflow_ApproximateSplitRequest - */ - public function getSplitRequest() - { - return $this->splitRequest; - } - /** - * @param Google_Service_Dataflow_ApproximateProgress - */ - public function setSuggestedStopPoint(Google_Service_Dataflow_ApproximateProgress $suggestedStopPoint) - { - $this->suggestedStopPoint = $suggestedStopPoint; - } - /** - * @return Google_Service_Dataflow_ApproximateProgress - */ - public function getSuggestedStopPoint() - { - return $this->suggestedStopPoint; - } - /** - * @param Google_Service_Dataflow_Position - */ - public function setSuggestedStopPosition(Google_Service_Dataflow_Position $suggestedStopPosition) - { - $this->suggestedStopPosition = $suggestedStopPosition; - } - /** - * @return Google_Service_Dataflow_Position - */ - public function getSuggestedStopPosition() - { - return $this->suggestedStopPosition; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/WorkItemStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/WorkItemStatus.php deleted file mode 100644 index 065294d5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/WorkItemStatus.php +++ /dev/null @@ -1,211 +0,0 @@ -completed = $completed; - } - public function getCompleted() - { - return $this->completed; - } - /** - * @param Google_Service_Dataflow_CounterUpdate - */ - public function setCounterUpdates($counterUpdates) - { - $this->counterUpdates = $counterUpdates; - } - /** - * @return Google_Service_Dataflow_CounterUpdate - */ - public function getCounterUpdates() - { - return $this->counterUpdates; - } - /** - * @param Google_Service_Dataflow_DynamicSourceSplit - */ - public function setDynamicSourceSplit(Google_Service_Dataflow_DynamicSourceSplit $dynamicSourceSplit) - { - $this->dynamicSourceSplit = $dynamicSourceSplit; - } - /** - * @return Google_Service_Dataflow_DynamicSourceSplit - */ - public function getDynamicSourceSplit() - { - return $this->dynamicSourceSplit; - } - /** - * @param Google_Service_Dataflow_Status - */ - public function setErrors($errors) - { - $this->errors = $errors; - } - /** - * @return Google_Service_Dataflow_Status - */ - public function getErrors() - { - return $this->errors; - } - /** - * @param Google_Service_Dataflow_MetricUpdate - */ - public function setMetricUpdates($metricUpdates) - { - $this->metricUpdates = $metricUpdates; - } - /** - * @return Google_Service_Dataflow_MetricUpdate - */ - public function getMetricUpdates() - { - return $this->metricUpdates; - } - /** - * @param Google_Service_Dataflow_ApproximateProgress - */ - public function setProgress(Google_Service_Dataflow_ApproximateProgress $progress) - { - $this->progress = $progress; - } - /** - * @return Google_Service_Dataflow_ApproximateProgress - */ - public function getProgress() - { - return $this->progress; - } - public function setReportIndex($reportIndex) - { - $this->reportIndex = $reportIndex; - } - public function getReportIndex() - { - return $this->reportIndex; - } - /** - * @param Google_Service_Dataflow_ApproximateReportedProgress - */ - public function setReportedProgress(Google_Service_Dataflow_ApproximateReportedProgress $reportedProgress) - { - $this->reportedProgress = $reportedProgress; - } - /** - * @return Google_Service_Dataflow_ApproximateReportedProgress - */ - public function getReportedProgress() - { - return $this->reportedProgress; - } - public function setRequestedLeaseDuration($requestedLeaseDuration) - { - $this->requestedLeaseDuration = $requestedLeaseDuration; - } - public function getRequestedLeaseDuration() - { - return $this->requestedLeaseDuration; - } - /** - * @param Google_Service_Dataflow_SourceFork - */ - public function setSourceFork(Google_Service_Dataflow_SourceFork $sourceFork) - { - $this->sourceFork = $sourceFork; - } - /** - * @return Google_Service_Dataflow_SourceFork - */ - public function getSourceFork() - { - return $this->sourceFork; - } - /** - * @param Google_Service_Dataflow_SourceOperationResponse - */ - public function setSourceOperationResponse(Google_Service_Dataflow_SourceOperationResponse $sourceOperationResponse) - { - $this->sourceOperationResponse = $sourceOperationResponse; - } - /** - * @return Google_Service_Dataflow_SourceOperationResponse - */ - public function getSourceOperationResponse() - { - return $this->sourceOperationResponse; - } - /** - * @param Google_Service_Dataflow_Position - */ - public function setStopPosition(Google_Service_Dataflow_Position $stopPosition) - { - $this->stopPosition = $stopPosition; - } - /** - * @return Google_Service_Dataflow_Position - */ - public function getStopPosition() - { - return $this->stopPosition; - } - public function setTotalThrottlerWaitTimeSeconds($totalThrottlerWaitTimeSeconds) - { - $this->totalThrottlerWaitTimeSeconds = $totalThrottlerWaitTimeSeconds; - } - public function getTotalThrottlerWaitTimeSeconds() - { - return $this->totalThrottlerWaitTimeSeconds; - } - public function setWorkItemId($workItemId) - { - $this->workItemId = $workItemId; - } - public function getWorkItemId() - { - return $this->workItemId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/WorkerHealthReport.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/WorkerHealthReport.php deleted file mode 100644 index 8783faf6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/WorkerHealthReport.php +++ /dev/null @@ -1,76 +0,0 @@ -msg = $msg; - } - public function getMsg() - { - return $this->msg; - } - public function setPods($pods) - { - $this->pods = $pods; - } - public function getPods() - { - return $this->pods; - } - public function setReportInterval($reportInterval) - { - $this->reportInterval = $reportInterval; - } - public function getReportInterval() - { - return $this->reportInterval; - } - public function setVmIsBroken($vmIsBroken) - { - $this->vmIsBroken = $vmIsBroken; - } - public function getVmIsBroken() - { - return $this->vmIsBroken; - } - public function setVmIsHealthy($vmIsHealthy) - { - $this->vmIsHealthy = $vmIsHealthy; - } - public function getVmIsHealthy() - { - return $this->vmIsHealthy; - } - public function setVmStartupTime($vmStartupTime) - { - $this->vmStartupTime = $vmStartupTime; - } - public function getVmStartupTime() - { - return $this->vmStartupTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/WorkerHealthReportResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/WorkerHealthReportResponse.php deleted file mode 100644 index 4538f73e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/WorkerHealthReportResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -reportInterval = $reportInterval; - } - public function getReportInterval() - { - return $this->reportInterval; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/WorkerLifecycleEvent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/WorkerLifecycleEvent.php deleted file mode 100644 index c862c6b8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/WorkerLifecycleEvent.php +++ /dev/null @@ -1,48 +0,0 @@ -containerStartTime = $containerStartTime; - } - public function getContainerStartTime() - { - return $this->containerStartTime; - } - public function setEvent($event) - { - $this->event = $event; - } - public function getEvent() - { - return $this->event; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/WorkerMessage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/WorkerMessage.php deleted file mode 100644 index 12028091..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/WorkerMessage.php +++ /dev/null @@ -1,119 +0,0 @@ -labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setTime($time) - { - $this->time = $time; - } - public function getTime() - { - return $this->time; - } - /** - * @param Google_Service_Dataflow_WorkerHealthReport - */ - public function setWorkerHealthReport(Google_Service_Dataflow_WorkerHealthReport $workerHealthReport) - { - $this->workerHealthReport = $workerHealthReport; - } - /** - * @return Google_Service_Dataflow_WorkerHealthReport - */ - public function getWorkerHealthReport() - { - return $this->workerHealthReport; - } - /** - * @param Google_Service_Dataflow_WorkerLifecycleEvent - */ - public function setWorkerLifecycleEvent(Google_Service_Dataflow_WorkerLifecycleEvent $workerLifecycleEvent) - { - $this->workerLifecycleEvent = $workerLifecycleEvent; - } - /** - * @return Google_Service_Dataflow_WorkerLifecycleEvent - */ - public function getWorkerLifecycleEvent() - { - return $this->workerLifecycleEvent; - } - /** - * @param Google_Service_Dataflow_WorkerMessageCode - */ - public function setWorkerMessageCode(Google_Service_Dataflow_WorkerMessageCode $workerMessageCode) - { - $this->workerMessageCode = $workerMessageCode; - } - /** - * @return Google_Service_Dataflow_WorkerMessageCode - */ - public function getWorkerMessageCode() - { - return $this->workerMessageCode; - } - /** - * @param Google_Service_Dataflow_ResourceUtilizationReport - */ - public function setWorkerMetrics(Google_Service_Dataflow_ResourceUtilizationReport $workerMetrics) - { - $this->workerMetrics = $workerMetrics; - } - /** - * @return Google_Service_Dataflow_ResourceUtilizationReport - */ - public function getWorkerMetrics() - { - return $this->workerMetrics; - } - /** - * @param Google_Service_Dataflow_WorkerShutdownNotice - */ - public function setWorkerShutdownNotice(Google_Service_Dataflow_WorkerShutdownNotice $workerShutdownNotice) - { - $this->workerShutdownNotice = $workerShutdownNotice; - } - /** - * @return Google_Service_Dataflow_WorkerShutdownNotice - */ - public function getWorkerShutdownNotice() - { - return $this->workerShutdownNotice; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/WorkerMessageCode.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/WorkerMessageCode.php deleted file mode 100644 index 35e900fa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/WorkerMessageCode.php +++ /dev/null @@ -1,39 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setParameters($parameters) - { - $this->parameters = $parameters; - } - public function getParameters() - { - return $this->parameters; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/WorkerMessageResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/WorkerMessageResponse.php deleted file mode 100644 index 51636aa1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/WorkerMessageResponse.php +++ /dev/null @@ -1,69 +0,0 @@ -workerHealthReportResponse = $workerHealthReportResponse; - } - /** - * @return Google_Service_Dataflow_WorkerHealthReportResponse - */ - public function getWorkerHealthReportResponse() - { - return $this->workerHealthReportResponse; - } - /** - * @param Google_Service_Dataflow_ResourceUtilizationReportResponse - */ - public function setWorkerMetricsResponse(Google_Service_Dataflow_ResourceUtilizationReportResponse $workerMetricsResponse) - { - $this->workerMetricsResponse = $workerMetricsResponse; - } - /** - * @return Google_Service_Dataflow_ResourceUtilizationReportResponse - */ - public function getWorkerMetricsResponse() - { - return $this->workerMetricsResponse; - } - /** - * @param Google_Service_Dataflow_WorkerShutdownNoticeResponse - */ - public function setWorkerShutdownNoticeResponse(Google_Service_Dataflow_WorkerShutdownNoticeResponse $workerShutdownNoticeResponse) - { - $this->workerShutdownNoticeResponse = $workerShutdownNoticeResponse; - } - /** - * @return Google_Service_Dataflow_WorkerShutdownNoticeResponse - */ - public function getWorkerShutdownNoticeResponse() - { - return $this->workerShutdownNoticeResponse; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/WorkerPool.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/WorkerPool.php deleted file mode 100644 index 01489ee6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/WorkerPool.php +++ /dev/null @@ -1,239 +0,0 @@ -autoscalingSettings = $autoscalingSettings; - } - /** - * @return Google_Service_Dataflow_AutoscalingSettings - */ - public function getAutoscalingSettings() - { - return $this->autoscalingSettings; - } - /** - * @param Google_Service_Dataflow_Disk - */ - public function setDataDisks($dataDisks) - { - $this->dataDisks = $dataDisks; - } - /** - * @return Google_Service_Dataflow_Disk - */ - public function getDataDisks() - { - return $this->dataDisks; - } - public function setDefaultPackageSet($defaultPackageSet) - { - $this->defaultPackageSet = $defaultPackageSet; - } - public function getDefaultPackageSet() - { - return $this->defaultPackageSet; - } - public function setDiskSizeGb($diskSizeGb) - { - $this->diskSizeGb = $diskSizeGb; - } - public function getDiskSizeGb() - { - return $this->diskSizeGb; - } - public function setDiskSourceImage($diskSourceImage) - { - $this->diskSourceImage = $diskSourceImage; - } - public function getDiskSourceImage() - { - return $this->diskSourceImage; - } - public function setDiskType($diskType) - { - $this->diskType = $diskType; - } - public function getDiskType() - { - return $this->diskType; - } - public function setIpConfiguration($ipConfiguration) - { - $this->ipConfiguration = $ipConfiguration; - } - public function getIpConfiguration() - { - return $this->ipConfiguration; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setMachineType($machineType) - { - $this->machineType = $machineType; - } - public function getMachineType() - { - return $this->machineType; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setNetwork($network) - { - $this->network = $network; - } - public function getNetwork() - { - return $this->network; - } - public function setNumThreadsPerWorker($numThreadsPerWorker) - { - $this->numThreadsPerWorker = $numThreadsPerWorker; - } - public function getNumThreadsPerWorker() - { - return $this->numThreadsPerWorker; - } - public function setNumWorkers($numWorkers) - { - $this->numWorkers = $numWorkers; - } - public function getNumWorkers() - { - return $this->numWorkers; - } - public function setOnHostMaintenance($onHostMaintenance) - { - $this->onHostMaintenance = $onHostMaintenance; - } - public function getOnHostMaintenance() - { - return $this->onHostMaintenance; - } - /** - * @param Google_Service_Dataflow_Package - */ - public function setPackages($packages) - { - $this->packages = $packages; - } - /** - * @return Google_Service_Dataflow_Package - */ - public function getPackages() - { - return $this->packages; - } - public function setPoolArgs($poolArgs) - { - $this->poolArgs = $poolArgs; - } - public function getPoolArgs() - { - return $this->poolArgs; - } - public function setSubnetwork($subnetwork) - { - $this->subnetwork = $subnetwork; - } - public function getSubnetwork() - { - return $this->subnetwork; - } - /** - * @param Google_Service_Dataflow_TaskRunnerSettings - */ - public function setTaskrunnerSettings(Google_Service_Dataflow_TaskRunnerSettings $taskrunnerSettings) - { - $this->taskrunnerSettings = $taskrunnerSettings; - } - /** - * @return Google_Service_Dataflow_TaskRunnerSettings - */ - public function getTaskrunnerSettings() - { - return $this->taskrunnerSettings; - } - public function setTeardownPolicy($teardownPolicy) - { - $this->teardownPolicy = $teardownPolicy; - } - public function getTeardownPolicy() - { - return $this->teardownPolicy; - } - public function setWorkerHarnessContainerImage($workerHarnessContainerImage) - { - $this->workerHarnessContainerImage = $workerHarnessContainerImage; - } - public function getWorkerHarnessContainerImage() - { - return $this->workerHarnessContainerImage; - } - public function setZone($zone) - { - $this->zone = $zone; - } - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/WorkerSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/WorkerSettings.php deleted file mode 100644 index 59e2179d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/WorkerSettings.php +++ /dev/null @@ -1,75 +0,0 @@ -baseUrl = $baseUrl; - } - public function getBaseUrl() - { - return $this->baseUrl; - } - public function setReportingEnabled($reportingEnabled) - { - $this->reportingEnabled = $reportingEnabled; - } - public function getReportingEnabled() - { - return $this->reportingEnabled; - } - public function setServicePath($servicePath) - { - $this->servicePath = $servicePath; - } - public function getServicePath() - { - return $this->servicePath; - } - public function setShuffleServicePath($shuffleServicePath) - { - $this->shuffleServicePath = $shuffleServicePath; - } - public function getShuffleServicePath() - { - return $this->shuffleServicePath; - } - public function setTempStoragePrefix($tempStoragePrefix) - { - $this->tempStoragePrefix = $tempStoragePrefix; - } - public function getTempStoragePrefix() - { - return $this->tempStoragePrefix; - } - public function setWorkerId($workerId) - { - $this->workerId = $workerId; - } - public function getWorkerId() - { - return $this->workerId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/WorkerShutdownNotice.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/WorkerShutdownNotice.php deleted file mode 100644 index cdfe8f79..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/WorkerShutdownNotice.php +++ /dev/null @@ -1,30 +0,0 @@ -reason = $reason; - } - public function getReason() - { - return $this->reason; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/WorkerShutdownNoticeResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/WorkerShutdownNoticeResponse.php deleted file mode 100644 index 18d2c941..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataflow/WorkerShutdownNoticeResponse.php +++ /dev/null @@ -1,20 +0,0 @@ -input = $input; - } - /** - * @return Google_Service_Dataflow_InstructionInput - */ - public function getInput() - { - return $this->input; - } - /** - * @param Google_Service_Dataflow_Sink - */ - public function setSink(Google_Service_Dataflow_Sink $sink) - { - $this->sink = $sink; - } - /** - * @return Google_Service_Dataflow_Sink - */ - public function getSink() - { - return $this->sink; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc.php deleted file mode 100644 index 0cf58718..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc.php +++ /dev/null @@ -1,969 +0,0 @@ - - * Manages Hadoop-based clusters and jobs on Google Cloud Platform.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Dataproc extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - - public $projects_locations_autoscalingPolicies; - public $projects_locations_workflowTemplates; - public $projects_regions_autoscalingPolicies; - public $projects_regions_clusters; - public $projects_regions_jobs; - public $projects_regions_operations; - public $projects_regions_workflowTemplates; - - /** - * Constructs the internal representation of the Dataproc service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://dataproc.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'dataproc'; - - $this->projects_locations_autoscalingPolicies = new Google_Service_Dataproc_Resource_ProjectsLocationsAutoscalingPolicies( - $this, - $this->serviceName, - 'autoscalingPolicies', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/autoscalingPolicies', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getIamPolicy' => array( - 'path' => 'v1/{+resource}:getIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/autoscalingPolicies', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'setIamPolicy' => array( - 'path' => 'v1/{+resource}:setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => 'v1/{+resource}:testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_locations_workflowTemplates = new Google_Service_Dataproc_Resource_ProjectsLocationsWorkflowTemplates( - $this, - $this->serviceName, - 'workflowTemplates', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/workflowTemplates', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'version' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'version' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'getIamPolicy' => array( - 'path' => 'v1/{+resource}:getIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'instantiate' => array( - 'path' => 'v1/{+name}:instantiate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'instantiateInline' => array( - 'path' => 'v1/{+parent}/workflowTemplates:instantiateInline', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/workflowTemplates', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'setIamPolicy' => array( - 'path' => 'v1/{+resource}:setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => 'v1/{+resource}:testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_regions_autoscalingPolicies = new Google_Service_Dataproc_Resource_ProjectsRegionsAutoscalingPolicies( - $this, - $this->serviceName, - 'autoscalingPolicies', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/autoscalingPolicies', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getIamPolicy' => array( - 'path' => 'v1/{+resource}:getIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/autoscalingPolicies', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'setIamPolicy' => array( - 'path' => 'v1/{+resource}:setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => 'v1/{+resource}:testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_regions_clusters = new Google_Service_Dataproc_Resource_ProjectsRegionsClusters( - $this, - $this->serviceName, - 'clusters', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/projects/{projectId}/regions/{region}/clusters', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => 'v1/projects/{projectId}/regions/{region}/clusters/{clusterName}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clusterName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clusterUuid' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'diagnose' => array( - 'path' => 'v1/projects/{projectId}/regions/{region}/clusters/{clusterName}:diagnose', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clusterName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/projects/{projectId}/regions/{region}/clusters/{clusterName}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clusterName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getIamPolicy' => array( - 'path' => 'v1/{+resource}:getIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/projects/{projectId}/regions/{region}/clusters', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'v1/projects/{projectId}/regions/{region}/clusters/{clusterName}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clusterName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'gracefulDecommissionTimeout' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setIamPolicy' => array( - 'path' => 'v1/{+resource}:setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => 'v1/{+resource}:testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_regions_jobs = new Google_Service_Dataproc_Resource_ProjectsRegionsJobs( - $this, - $this->serviceName, - 'jobs', - array( - 'methods' => array( - 'cancel' => array( - 'path' => 'v1/projects/{projectId}/regions/{region}/jobs/{jobId}:cancel', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'jobId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/projects/{projectId}/regions/{region}/jobs/{jobId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'jobId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/projects/{projectId}/regions/{region}/jobs/{jobId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'jobId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getIamPolicy' => array( - 'path' => 'v1/{+resource}:getIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/projects/{projectId}/regions/{region}/jobs', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'jobStateMatcher' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'clusterName' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'v1/projects/{projectId}/regions/{region}/jobs/{jobId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'jobId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setIamPolicy' => array( - 'path' => 'v1/{+resource}:setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'submit' => array( - 'path' => 'v1/projects/{projectId}/regions/{region}/jobs:submit', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => 'v1/{+resource}:testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_regions_operations = new Google_Service_Dataproc_Resource_ProjectsRegionsOperations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'cancel' => array( - 'path' => 'v1/{+name}:cancel', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getIamPolicy' => array( - 'path' => 'v1/{+resource}:getIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setIamPolicy' => array( - 'path' => 'v1/{+resource}:setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => 'v1/{+resource}:testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_regions_workflowTemplates = new Google_Service_Dataproc_Resource_ProjectsRegionsWorkflowTemplates( - $this, - $this->serviceName, - 'workflowTemplates', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/workflowTemplates', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'version' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'version' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'getIamPolicy' => array( - 'path' => 'v1/{+resource}:getIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'instantiate' => array( - 'path' => 'v1/{+name}:instantiate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'instantiateInline' => array( - 'path' => 'v1/{+parent}/workflowTemplates:instantiateInline', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/workflowTemplates', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'setIamPolicy' => array( - 'path' => 'v1/{+resource}:setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => 'v1/{+resource}:testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/AcceleratorConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/AcceleratorConfig.php deleted file mode 100644 index a6123f8c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/AcceleratorConfig.php +++ /dev/null @@ -1,39 +0,0 @@ -acceleratorCount = $acceleratorCount; - } - public function getAcceleratorCount() - { - return $this->acceleratorCount; - } - public function setAcceleratorTypeUri($acceleratorTypeUri) - { - $this->acceleratorTypeUri = $acceleratorTypeUri; - } - public function getAcceleratorTypeUri() - { - return $this->acceleratorTypeUri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/AutoscalingConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/AutoscalingConfig.php deleted file mode 100644 index e251751c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/AutoscalingConfig.php +++ /dev/null @@ -1,30 +0,0 @@ -policyUri = $policyUri; - } - public function getPolicyUri() - { - return $this->policyUri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/AutoscalingPolicy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/AutoscalingPolicy.php deleted file mode 100644 index 3d6ae0af..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/AutoscalingPolicy.php +++ /dev/null @@ -1,87 +0,0 @@ -basicAlgorithm = $basicAlgorithm; - } - /** - * @return Google_Service_Dataproc_BasicAutoscalingAlgorithm - */ - public function getBasicAlgorithm() - { - return $this->basicAlgorithm; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Dataproc_InstanceGroupAutoscalingPolicyConfig - */ - public function setSecondaryWorkerConfig(Google_Service_Dataproc_InstanceGroupAutoscalingPolicyConfig $secondaryWorkerConfig) - { - $this->secondaryWorkerConfig = $secondaryWorkerConfig; - } - /** - * @return Google_Service_Dataproc_InstanceGroupAutoscalingPolicyConfig - */ - public function getSecondaryWorkerConfig() - { - return $this->secondaryWorkerConfig; - } - /** - * @param Google_Service_Dataproc_InstanceGroupAutoscalingPolicyConfig - */ - public function setWorkerConfig(Google_Service_Dataproc_InstanceGroupAutoscalingPolicyConfig $workerConfig) - { - $this->workerConfig = $workerConfig; - } - /** - * @return Google_Service_Dataproc_InstanceGroupAutoscalingPolicyConfig - */ - public function getWorkerConfig() - { - return $this->workerConfig; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/BasicAutoscalingAlgorithm.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/BasicAutoscalingAlgorithm.php deleted file mode 100644 index bc95bb4e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/BasicAutoscalingAlgorithm.php +++ /dev/null @@ -1,46 +0,0 @@ -cooldownPeriod = $cooldownPeriod; - } - public function getCooldownPeriod() - { - return $this->cooldownPeriod; - } - /** - * @param Google_Service_Dataproc_BasicYarnAutoscalingConfig - */ - public function setYarnConfig(Google_Service_Dataproc_BasicYarnAutoscalingConfig $yarnConfig) - { - $this->yarnConfig = $yarnConfig; - } - /** - * @return Google_Service_Dataproc_BasicYarnAutoscalingConfig - */ - public function getYarnConfig() - { - return $this->yarnConfig; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/BasicYarnAutoscalingConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/BasicYarnAutoscalingConfig.php deleted file mode 100644 index babdf1c5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/BasicYarnAutoscalingConfig.php +++ /dev/null @@ -1,66 +0,0 @@ -gracefulDecommissionTimeout = $gracefulDecommissionTimeout; - } - public function getGracefulDecommissionTimeout() - { - return $this->gracefulDecommissionTimeout; - } - public function setScaleDownFactor($scaleDownFactor) - { - $this->scaleDownFactor = $scaleDownFactor; - } - public function getScaleDownFactor() - { - return $this->scaleDownFactor; - } - public function setScaleDownMinWorkerFraction($scaleDownMinWorkerFraction) - { - $this->scaleDownMinWorkerFraction = $scaleDownMinWorkerFraction; - } - public function getScaleDownMinWorkerFraction() - { - return $this->scaleDownMinWorkerFraction; - } - public function setScaleUpFactor($scaleUpFactor) - { - $this->scaleUpFactor = $scaleUpFactor; - } - public function getScaleUpFactor() - { - return $this->scaleUpFactor; - } - public function setScaleUpMinWorkerFraction($scaleUpMinWorkerFraction) - { - $this->scaleUpMinWorkerFraction = $scaleUpMinWorkerFraction; - } - public function getScaleUpMinWorkerFraction() - { - return $this->scaleUpMinWorkerFraction; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/Binding.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/Binding.php deleted file mode 100644 index add33131..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/Binding.php +++ /dev/null @@ -1,56 +0,0 @@ -condition = $condition; - } - /** - * @return Google_Service_Dataproc_Expr - */ - public function getCondition() - { - return $this->condition; - } - public function setMembers($members) - { - $this->members = $members; - } - public function getMembers() - { - return $this->members; - } - public function setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/CancelJobRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/CancelJobRequest.php deleted file mode 100644 index 4e0a3312..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/CancelJobRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -clusterName = $clusterName; - } - public function getClusterName() - { - return $this->clusterName; - } - public function setClusterUuid($clusterUuid) - { - $this->clusterUuid = $clusterUuid; - } - public function getClusterUuid() - { - return $this->clusterUuid; - } - /** - * @param Google_Service_Dataproc_ClusterConfig - */ - public function setConfig(Google_Service_Dataproc_ClusterConfig $config) - { - $this->config = $config; - } - /** - * @return Google_Service_Dataproc_ClusterConfig - */ - public function getConfig() - { - return $this->config; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - /** - * @param Google_Service_Dataproc_ClusterMetrics - */ - public function setMetrics(Google_Service_Dataproc_ClusterMetrics $metrics) - { - $this->metrics = $metrics; - } - /** - * @return Google_Service_Dataproc_ClusterMetrics - */ - public function getMetrics() - { - return $this->metrics; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } - /** - * @param Google_Service_Dataproc_ClusterStatus - */ - public function setStatus(Google_Service_Dataproc_ClusterStatus $status) - { - $this->status = $status; - } - /** - * @return Google_Service_Dataproc_ClusterStatus - */ - public function getStatus() - { - return $this->status; - } - /** - * @param Google_Service_Dataproc_ClusterStatus - */ - public function setStatusHistory($statusHistory) - { - $this->statusHistory = $statusHistory; - } - /** - * @return Google_Service_Dataproc_ClusterStatus - */ - public function getStatusHistory() - { - return $this->statusHistory; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/ClusterConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/ClusterConfig.php deleted file mode 100644 index 6ba6cadd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/ClusterConfig.php +++ /dev/null @@ -1,191 +0,0 @@ -autoscalingConfig = $autoscalingConfig; - } - /** - * @return Google_Service_Dataproc_AutoscalingConfig - */ - public function getAutoscalingConfig() - { - return $this->autoscalingConfig; - } - public function setConfigBucket($configBucket) - { - $this->configBucket = $configBucket; - } - public function getConfigBucket() - { - return $this->configBucket; - } - /** - * @param Google_Service_Dataproc_EncryptionConfig - */ - public function setEncryptionConfig(Google_Service_Dataproc_EncryptionConfig $encryptionConfig) - { - $this->encryptionConfig = $encryptionConfig; - } - /** - * @return Google_Service_Dataproc_EncryptionConfig - */ - public function getEncryptionConfig() - { - return $this->encryptionConfig; - } - /** - * @param Google_Service_Dataproc_GceClusterConfig - */ - public function setGceClusterConfig(Google_Service_Dataproc_GceClusterConfig $gceClusterConfig) - { - $this->gceClusterConfig = $gceClusterConfig; - } - /** - * @return Google_Service_Dataproc_GceClusterConfig - */ - public function getGceClusterConfig() - { - return $this->gceClusterConfig; - } - /** - * @param Google_Service_Dataproc_NodeInitializationAction - */ - public function setInitializationActions($initializationActions) - { - $this->initializationActions = $initializationActions; - } - /** - * @return Google_Service_Dataproc_NodeInitializationAction - */ - public function getInitializationActions() - { - return $this->initializationActions; - } - /** - * @param Google_Service_Dataproc_LifecycleConfig - */ - public function setLifecycleConfig(Google_Service_Dataproc_LifecycleConfig $lifecycleConfig) - { - $this->lifecycleConfig = $lifecycleConfig; - } - /** - * @return Google_Service_Dataproc_LifecycleConfig - */ - public function getLifecycleConfig() - { - return $this->lifecycleConfig; - } - /** - * @param Google_Service_Dataproc_InstanceGroupConfig - */ - public function setMasterConfig(Google_Service_Dataproc_InstanceGroupConfig $masterConfig) - { - $this->masterConfig = $masterConfig; - } - /** - * @return Google_Service_Dataproc_InstanceGroupConfig - */ - public function getMasterConfig() - { - return $this->masterConfig; - } - /** - * @param Google_Service_Dataproc_InstanceGroupConfig - */ - public function setSecondaryWorkerConfig(Google_Service_Dataproc_InstanceGroupConfig $secondaryWorkerConfig) - { - $this->secondaryWorkerConfig = $secondaryWorkerConfig; - } - /** - * @return Google_Service_Dataproc_InstanceGroupConfig - */ - public function getSecondaryWorkerConfig() - { - return $this->secondaryWorkerConfig; - } - /** - * @param Google_Service_Dataproc_SecurityConfig - */ - public function setSecurityConfig(Google_Service_Dataproc_SecurityConfig $securityConfig) - { - $this->securityConfig = $securityConfig; - } - /** - * @return Google_Service_Dataproc_SecurityConfig - */ - public function getSecurityConfig() - { - return $this->securityConfig; - } - /** - * @param Google_Service_Dataproc_SoftwareConfig - */ - public function setSoftwareConfig(Google_Service_Dataproc_SoftwareConfig $softwareConfig) - { - $this->softwareConfig = $softwareConfig; - } - /** - * @return Google_Service_Dataproc_SoftwareConfig - */ - public function getSoftwareConfig() - { - return $this->softwareConfig; - } - /** - * @param Google_Service_Dataproc_InstanceGroupConfig - */ - public function setWorkerConfig(Google_Service_Dataproc_InstanceGroupConfig $workerConfig) - { - $this->workerConfig = $workerConfig; - } - /** - * @return Google_Service_Dataproc_InstanceGroupConfig - */ - public function getWorkerConfig() - { - return $this->workerConfig; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/ClusterMetrics.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/ClusterMetrics.php deleted file mode 100644 index b4477501..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/ClusterMetrics.php +++ /dev/null @@ -1,39 +0,0 @@ -hdfsMetrics = $hdfsMetrics; - } - public function getHdfsMetrics() - { - return $this->hdfsMetrics; - } - public function setYarnMetrics($yarnMetrics) - { - $this->yarnMetrics = $yarnMetrics; - } - public function getYarnMetrics() - { - return $this->yarnMetrics; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/ClusterOperation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/ClusterOperation.php deleted file mode 100644 index 9b5f284b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/ClusterOperation.php +++ /dev/null @@ -1,48 +0,0 @@ -done = $done; - } - public function getDone() - { - return $this->done; - } - public function setError($error) - { - $this->error = $error; - } - public function getError() - { - return $this->error; - } - public function setOperationId($operationId) - { - $this->operationId = $operationId; - } - public function getOperationId() - { - return $this->operationId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/ClusterOperationMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/ClusterOperationMetadata.php deleted file mode 100644 index 5875733a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/ClusterOperationMetadata.php +++ /dev/null @@ -1,108 +0,0 @@ -clusterName = $clusterName; - } - public function getClusterName() - { - return $this->clusterName; - } - public function setClusterUuid($clusterUuid) - { - $this->clusterUuid = $clusterUuid; - } - public function getClusterUuid() - { - return $this->clusterUuid; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setOperationType($operationType) - { - $this->operationType = $operationType; - } - public function getOperationType() - { - return $this->operationType; - } - /** - * @param Google_Service_Dataproc_ClusterOperationStatus - */ - public function setStatus(Google_Service_Dataproc_ClusterOperationStatus $status) - { - $this->status = $status; - } - /** - * @return Google_Service_Dataproc_ClusterOperationStatus - */ - public function getStatus() - { - return $this->status; - } - /** - * @param Google_Service_Dataproc_ClusterOperationStatus - */ - public function setStatusHistory($statusHistory) - { - $this->statusHistory = $statusHistory; - } - /** - * @return Google_Service_Dataproc_ClusterOperationStatus - */ - public function getStatusHistory() - { - return $this->statusHistory; - } - public function setWarnings($warnings) - { - $this->warnings = $warnings; - } - public function getWarnings() - { - return $this->warnings; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/ClusterOperationStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/ClusterOperationStatus.php deleted file mode 100644 index 89a6f46d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/ClusterOperationStatus.php +++ /dev/null @@ -1,57 +0,0 @@ -details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setInnerState($innerState) - { - $this->innerState = $innerState; - } - public function getInnerState() - { - return $this->innerState; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setStateStartTime($stateStartTime) - { - $this->stateStartTime = $stateStartTime; - } - public function getStateStartTime() - { - return $this->stateStartTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/ClusterSelector.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/ClusterSelector.php deleted file mode 100644 index 45892423..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/ClusterSelector.php +++ /dev/null @@ -1,39 +0,0 @@ -clusterLabels = $clusterLabels; - } - public function getClusterLabels() - { - return $this->clusterLabels; - } - public function setZone($zone) - { - $this->zone = $zone; - } - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/ClusterStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/ClusterStatus.php deleted file mode 100644 index 04661645..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/ClusterStatus.php +++ /dev/null @@ -1,57 +0,0 @@ -detail = $detail; - } - public function getDetail() - { - return $this->detail; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setStateStartTime($stateStartTime) - { - $this->stateStartTime = $stateStartTime; - } - public function getStateStartTime() - { - return $this->stateStartTime; - } - public function setSubstate($substate) - { - $this->substate = $substate; - } - public function getSubstate() - { - return $this->substate; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/DataprocEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/DataprocEmpty.php deleted file mode 100644 index 7f982931..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/DataprocEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -outputUri = $outputUri; - } - public function getOutputUri() - { - return $this->outputUri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/DiskConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/DiskConfig.php deleted file mode 100644 index 1aa52b9f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/DiskConfig.php +++ /dev/null @@ -1,48 +0,0 @@ -bootDiskSizeGb = $bootDiskSizeGb; - } - public function getBootDiskSizeGb() - { - return $this->bootDiskSizeGb; - } - public function setBootDiskType($bootDiskType) - { - $this->bootDiskType = $bootDiskType; - } - public function getBootDiskType() - { - return $this->bootDiskType; - } - public function setNumLocalSsds($numLocalSsds) - { - $this->numLocalSsds = $numLocalSsds; - } - public function getNumLocalSsds() - { - return $this->numLocalSsds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/EncryptionConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/EncryptionConfig.php deleted file mode 100644 index 0222fa0b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/EncryptionConfig.php +++ /dev/null @@ -1,30 +0,0 @@ -gcePdKmsKeyName = $gcePdKmsKeyName; - } - public function getGcePdKmsKeyName() - { - return $this->gcePdKmsKeyName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/Expr.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/Expr.php deleted file mode 100644 index b785b5c7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/Expr.php +++ /dev/null @@ -1,57 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setExpression($expression) - { - $this->expression = $expression; - } - public function getExpression() - { - return $this->expression; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/GceClusterConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/GceClusterConfig.php deleted file mode 100644 index 951a312d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/GceClusterConfig.php +++ /dev/null @@ -1,110 +0,0 @@ -internalIpOnly = $internalIpOnly; - } - public function getInternalIpOnly() - { - return $this->internalIpOnly; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setNetworkUri($networkUri) - { - $this->networkUri = $networkUri; - } - public function getNetworkUri() - { - return $this->networkUri; - } - /** - * @param Google_Service_Dataproc_ReservationAffinity - */ - public function setReservationAffinity(Google_Service_Dataproc_ReservationAffinity $reservationAffinity) - { - $this->reservationAffinity = $reservationAffinity; - } - /** - * @return Google_Service_Dataproc_ReservationAffinity - */ - public function getReservationAffinity() - { - return $this->reservationAffinity; - } - public function setServiceAccount($serviceAccount) - { - $this->serviceAccount = $serviceAccount; - } - public function getServiceAccount() - { - return $this->serviceAccount; - } - public function setServiceAccountScopes($serviceAccountScopes) - { - $this->serviceAccountScopes = $serviceAccountScopes; - } - public function getServiceAccountScopes() - { - return $this->serviceAccountScopes; - } - public function setSubnetworkUri($subnetworkUri) - { - $this->subnetworkUri = $subnetworkUri; - } - public function getSubnetworkUri() - { - return $this->subnetworkUri; - } - public function setTags($tags) - { - $this->tags = $tags; - } - public function getTags() - { - return $this->tags; - } - public function setZoneUri($zoneUri) - { - $this->zoneUri = $zoneUri; - } - public function getZoneUri() - { - return $this->zoneUri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/GetIamPolicyRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/GetIamPolicyRequest.php deleted file mode 100644 index 8e1f8b84..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/GetIamPolicyRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -options = $options; - } - /** - * @return Google_Service_Dataproc_GetPolicyOptions - */ - public function getOptions() - { - return $this->options; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/GetPolicyOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/GetPolicyOptions.php deleted file mode 100644 index 4062d1eb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/GetPolicyOptions.php +++ /dev/null @@ -1,30 +0,0 @@ -requestedPolicyVersion = $requestedPolicyVersion; - } - public function getRequestedPolicyVersion() - { - return $this->requestedPolicyVersion; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/HadoopJob.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/HadoopJob.php deleted file mode 100644 index 35c602e2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/HadoopJob.php +++ /dev/null @@ -1,101 +0,0 @@ -archiveUris = $archiveUris; - } - public function getArchiveUris() - { - return $this->archiveUris; - } - public function setArgs($args) - { - $this->args = $args; - } - public function getArgs() - { - return $this->args; - } - public function setFileUris($fileUris) - { - $this->fileUris = $fileUris; - } - public function getFileUris() - { - return $this->fileUris; - } - public function setJarFileUris($jarFileUris) - { - $this->jarFileUris = $jarFileUris; - } - public function getJarFileUris() - { - return $this->jarFileUris; - } - /** - * @param Google_Service_Dataproc_LoggingConfig - */ - public function setLoggingConfig(Google_Service_Dataproc_LoggingConfig $loggingConfig) - { - $this->loggingConfig = $loggingConfig; - } - /** - * @return Google_Service_Dataproc_LoggingConfig - */ - public function getLoggingConfig() - { - return $this->loggingConfig; - } - public function setMainClass($mainClass) - { - $this->mainClass = $mainClass; - } - public function getMainClass() - { - return $this->mainClass; - } - public function setMainJarFileUri($mainJarFileUri) - { - $this->mainJarFileUri = $mainJarFileUri; - } - public function getMainJarFileUri() - { - return $this->mainJarFileUri; - } - public function setProperties($properties) - { - $this->properties = $properties; - } - public function getProperties() - { - return $this->properties; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/HiveJob.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/HiveJob.php deleted file mode 100644 index 9dec0f92..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/HiveJob.php +++ /dev/null @@ -1,83 +0,0 @@ -continueOnFailure = $continueOnFailure; - } - public function getContinueOnFailure() - { - return $this->continueOnFailure; - } - public function setJarFileUris($jarFileUris) - { - $this->jarFileUris = $jarFileUris; - } - public function getJarFileUris() - { - return $this->jarFileUris; - } - public function setProperties($properties) - { - $this->properties = $properties; - } - public function getProperties() - { - return $this->properties; - } - public function setQueryFileUri($queryFileUri) - { - $this->queryFileUri = $queryFileUri; - } - public function getQueryFileUri() - { - return $this->queryFileUri; - } - /** - * @param Google_Service_Dataproc_QueryList - */ - public function setQueryList(Google_Service_Dataproc_QueryList $queryList) - { - $this->queryList = $queryList; - } - /** - * @return Google_Service_Dataproc_QueryList - */ - public function getQueryList() - { - return $this->queryList; - } - public function setScriptVariables($scriptVariables) - { - $this->scriptVariables = $scriptVariables; - } - public function getScriptVariables() - { - return $this->scriptVariables; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/InstanceGroupAutoscalingPolicyConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/InstanceGroupAutoscalingPolicyConfig.php deleted file mode 100644 index dac70276..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/InstanceGroupAutoscalingPolicyConfig.php +++ /dev/null @@ -1,48 +0,0 @@ -maxInstances = $maxInstances; - } - public function getMaxInstances() - { - return $this->maxInstances; - } - public function setMinInstances($minInstances) - { - $this->minInstances = $minInstances; - } - public function getMinInstances() - { - return $this->minInstances; - } - public function setWeight($weight) - { - $this->weight = $weight; - } - public function getWeight() - { - return $this->weight; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/InstanceGroupConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/InstanceGroupConfig.php deleted file mode 100644 index 6e5b4093..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/InstanceGroupConfig.php +++ /dev/null @@ -1,124 +0,0 @@ -accelerators = $accelerators; - } - /** - * @return Google_Service_Dataproc_AcceleratorConfig - */ - public function getAccelerators() - { - return $this->accelerators; - } - /** - * @param Google_Service_Dataproc_DiskConfig - */ - public function setDiskConfig(Google_Service_Dataproc_DiskConfig $diskConfig) - { - $this->diskConfig = $diskConfig; - } - /** - * @return Google_Service_Dataproc_DiskConfig - */ - public function getDiskConfig() - { - return $this->diskConfig; - } - public function setImageUri($imageUri) - { - $this->imageUri = $imageUri; - } - public function getImageUri() - { - return $this->imageUri; - } - public function setInstanceNames($instanceNames) - { - $this->instanceNames = $instanceNames; - } - public function getInstanceNames() - { - return $this->instanceNames; - } - public function setIsPreemptible($isPreemptible) - { - $this->isPreemptible = $isPreemptible; - } - public function getIsPreemptible() - { - return $this->isPreemptible; - } - public function setMachineTypeUri($machineTypeUri) - { - $this->machineTypeUri = $machineTypeUri; - } - public function getMachineTypeUri() - { - return $this->machineTypeUri; - } - /** - * @param Google_Service_Dataproc_ManagedGroupConfig - */ - public function setManagedGroupConfig(Google_Service_Dataproc_ManagedGroupConfig $managedGroupConfig) - { - $this->managedGroupConfig = $managedGroupConfig; - } - /** - * @return Google_Service_Dataproc_ManagedGroupConfig - */ - public function getManagedGroupConfig() - { - return $this->managedGroupConfig; - } - public function setMinCpuPlatform($minCpuPlatform) - { - $this->minCpuPlatform = $minCpuPlatform; - } - public function getMinCpuPlatform() - { - return $this->minCpuPlatform; - } - public function setNumInstances($numInstances) - { - $this->numInstances = $numInstances; - } - public function getNumInstances() - { - return $this->numInstances; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/InstantiateWorkflowTemplateRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/InstantiateWorkflowTemplateRequest.php deleted file mode 100644 index a4261579..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/InstantiateWorkflowTemplateRequest.php +++ /dev/null @@ -1,48 +0,0 @@ -parameters = $parameters; - } - public function getParameters() - { - return $this->parameters; - } - public function setRequestId($requestId) - { - $this->requestId = $requestId; - } - public function getRequestId() - { - return $this->requestId; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/Job.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/Job.php deleted file mode 100644 index 48be9a11..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/Job.php +++ /dev/null @@ -1,266 +0,0 @@ -driverControlFilesUri = $driverControlFilesUri; - } - public function getDriverControlFilesUri() - { - return $this->driverControlFilesUri; - } - public function setDriverOutputResourceUri($driverOutputResourceUri) - { - $this->driverOutputResourceUri = $driverOutputResourceUri; - } - public function getDriverOutputResourceUri() - { - return $this->driverOutputResourceUri; - } - /** - * @param Google_Service_Dataproc_HadoopJob - */ - public function setHadoopJob(Google_Service_Dataproc_HadoopJob $hadoopJob) - { - $this->hadoopJob = $hadoopJob; - } - /** - * @return Google_Service_Dataproc_HadoopJob - */ - public function getHadoopJob() - { - return $this->hadoopJob; - } - /** - * @param Google_Service_Dataproc_HiveJob - */ - public function setHiveJob(Google_Service_Dataproc_HiveJob $hiveJob) - { - $this->hiveJob = $hiveJob; - } - /** - * @return Google_Service_Dataproc_HiveJob - */ - public function getHiveJob() - { - return $this->hiveJob; - } - public function setJobUuid($jobUuid) - { - $this->jobUuid = $jobUuid; - } - public function getJobUuid() - { - return $this->jobUuid; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - /** - * @param Google_Service_Dataproc_PigJob - */ - public function setPigJob(Google_Service_Dataproc_PigJob $pigJob) - { - $this->pigJob = $pigJob; - } - /** - * @return Google_Service_Dataproc_PigJob - */ - public function getPigJob() - { - return $this->pigJob; - } - /** - * @param Google_Service_Dataproc_JobPlacement - */ - public function setPlacement(Google_Service_Dataproc_JobPlacement $placement) - { - $this->placement = $placement; - } - /** - * @return Google_Service_Dataproc_JobPlacement - */ - public function getPlacement() - { - return $this->placement; - } - /** - * @param Google_Service_Dataproc_PySparkJob - */ - public function setPysparkJob(Google_Service_Dataproc_PySparkJob $pysparkJob) - { - $this->pysparkJob = $pysparkJob; - } - /** - * @return Google_Service_Dataproc_PySparkJob - */ - public function getPysparkJob() - { - return $this->pysparkJob; - } - /** - * @param Google_Service_Dataproc_JobReference - */ - public function setReference(Google_Service_Dataproc_JobReference $reference) - { - $this->reference = $reference; - } - /** - * @return Google_Service_Dataproc_JobReference - */ - public function getReference() - { - return $this->reference; - } - /** - * @param Google_Service_Dataproc_JobScheduling - */ - public function setScheduling(Google_Service_Dataproc_JobScheduling $scheduling) - { - $this->scheduling = $scheduling; - } - /** - * @return Google_Service_Dataproc_JobScheduling - */ - public function getScheduling() - { - return $this->scheduling; - } - /** - * @param Google_Service_Dataproc_SparkJob - */ - public function setSparkJob(Google_Service_Dataproc_SparkJob $sparkJob) - { - $this->sparkJob = $sparkJob; - } - /** - * @return Google_Service_Dataproc_SparkJob - */ - public function getSparkJob() - { - return $this->sparkJob; - } - /** - * @param Google_Service_Dataproc_SparkRJob - */ - public function setSparkRJob(Google_Service_Dataproc_SparkRJob $sparkRJob) - { - $this->sparkRJob = $sparkRJob; - } - /** - * @return Google_Service_Dataproc_SparkRJob - */ - public function getSparkRJob() - { - return $this->sparkRJob; - } - /** - * @param Google_Service_Dataproc_SparkSqlJob - */ - public function setSparkSqlJob(Google_Service_Dataproc_SparkSqlJob $sparkSqlJob) - { - $this->sparkSqlJob = $sparkSqlJob; - } - /** - * @return Google_Service_Dataproc_SparkSqlJob - */ - public function getSparkSqlJob() - { - return $this->sparkSqlJob; - } - /** - * @param Google_Service_Dataproc_JobStatus - */ - public function setStatus(Google_Service_Dataproc_JobStatus $status) - { - $this->status = $status; - } - /** - * @return Google_Service_Dataproc_JobStatus - */ - public function getStatus() - { - return $this->status; - } - /** - * @param Google_Service_Dataproc_JobStatus - */ - public function setStatusHistory($statusHistory) - { - $this->statusHistory = $statusHistory; - } - /** - * @return Google_Service_Dataproc_JobStatus - */ - public function getStatusHistory() - { - return $this->statusHistory; - } - /** - * @param Google_Service_Dataproc_YarnApplication - */ - public function setYarnApplications($yarnApplications) - { - $this->yarnApplications = $yarnApplications; - } - /** - * @return Google_Service_Dataproc_YarnApplication - */ - public function getYarnApplications() - { - return $this->yarnApplications; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/JobPlacement.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/JobPlacement.php deleted file mode 100644 index 66d1c19f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/JobPlacement.php +++ /dev/null @@ -1,39 +0,0 @@ -clusterName = $clusterName; - } - public function getClusterName() - { - return $this->clusterName; - } - public function setClusterUuid($clusterUuid) - { - $this->clusterUuid = $clusterUuid; - } - public function getClusterUuid() - { - return $this->clusterUuid; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/JobReference.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/JobReference.php deleted file mode 100644 index fef25175..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/JobReference.php +++ /dev/null @@ -1,39 +0,0 @@ -jobId = $jobId; - } - public function getJobId() - { - return $this->jobId; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/JobScheduling.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/JobScheduling.php deleted file mode 100644 index 5fb4862d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/JobScheduling.php +++ /dev/null @@ -1,30 +0,0 @@ -maxFailuresPerHour = $maxFailuresPerHour; - } - public function getMaxFailuresPerHour() - { - return $this->maxFailuresPerHour; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/JobStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/JobStatus.php deleted file mode 100644 index bbbac7dc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/JobStatus.php +++ /dev/null @@ -1,57 +0,0 @@ -details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setStateStartTime($stateStartTime) - { - $this->stateStartTime = $stateStartTime; - } - public function getStateStartTime() - { - return $this->stateStartTime; - } - public function setSubstate($substate) - { - $this->substate = $substate; - } - public function getSubstate() - { - return $this->substate; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/KerberosConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/KerberosConfig.php deleted file mode 100644 index c14589d4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/KerberosConfig.php +++ /dev/null @@ -1,156 +0,0 @@ -crossRealmTrustAdminServer = $crossRealmTrustAdminServer; - } - public function getCrossRealmTrustAdminServer() - { - return $this->crossRealmTrustAdminServer; - } - public function setCrossRealmTrustKdc($crossRealmTrustKdc) - { - $this->crossRealmTrustKdc = $crossRealmTrustKdc; - } - public function getCrossRealmTrustKdc() - { - return $this->crossRealmTrustKdc; - } - public function setCrossRealmTrustRealm($crossRealmTrustRealm) - { - $this->crossRealmTrustRealm = $crossRealmTrustRealm; - } - public function getCrossRealmTrustRealm() - { - return $this->crossRealmTrustRealm; - } - public function setCrossRealmTrustSharedPasswordUri($crossRealmTrustSharedPasswordUri) - { - $this->crossRealmTrustSharedPasswordUri = $crossRealmTrustSharedPasswordUri; - } - public function getCrossRealmTrustSharedPasswordUri() - { - return $this->crossRealmTrustSharedPasswordUri; - } - public function setEnableKerberos($enableKerberos) - { - $this->enableKerberos = $enableKerberos; - } - public function getEnableKerberos() - { - return $this->enableKerberos; - } - public function setKdcDbKeyUri($kdcDbKeyUri) - { - $this->kdcDbKeyUri = $kdcDbKeyUri; - } - public function getKdcDbKeyUri() - { - return $this->kdcDbKeyUri; - } - public function setKeyPasswordUri($keyPasswordUri) - { - $this->keyPasswordUri = $keyPasswordUri; - } - public function getKeyPasswordUri() - { - return $this->keyPasswordUri; - } - public function setKeystorePasswordUri($keystorePasswordUri) - { - $this->keystorePasswordUri = $keystorePasswordUri; - } - public function getKeystorePasswordUri() - { - return $this->keystorePasswordUri; - } - public function setKeystoreUri($keystoreUri) - { - $this->keystoreUri = $keystoreUri; - } - public function getKeystoreUri() - { - return $this->keystoreUri; - } - public function setKmsKeyUri($kmsKeyUri) - { - $this->kmsKeyUri = $kmsKeyUri; - } - public function getKmsKeyUri() - { - return $this->kmsKeyUri; - } - public function setRealm($realm) - { - $this->realm = $realm; - } - public function getRealm() - { - return $this->realm; - } - public function setRootPrincipalPasswordUri($rootPrincipalPasswordUri) - { - $this->rootPrincipalPasswordUri = $rootPrincipalPasswordUri; - } - public function getRootPrincipalPasswordUri() - { - return $this->rootPrincipalPasswordUri; - } - public function setTgtLifetimeHours($tgtLifetimeHours) - { - $this->tgtLifetimeHours = $tgtLifetimeHours; - } - public function getTgtLifetimeHours() - { - return $this->tgtLifetimeHours; - } - public function setTruststorePasswordUri($truststorePasswordUri) - { - $this->truststorePasswordUri = $truststorePasswordUri; - } - public function getTruststorePasswordUri() - { - return $this->truststorePasswordUri; - } - public function setTruststoreUri($truststoreUri) - { - $this->truststoreUri = $truststoreUri; - } - public function getTruststoreUri() - { - return $this->truststoreUri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/LifecycleConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/LifecycleConfig.php deleted file mode 100644 index a9de7642..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/LifecycleConfig.php +++ /dev/null @@ -1,57 +0,0 @@ -autoDeleteTime = $autoDeleteTime; - } - public function getAutoDeleteTime() - { - return $this->autoDeleteTime; - } - public function setAutoDeleteTtl($autoDeleteTtl) - { - $this->autoDeleteTtl = $autoDeleteTtl; - } - public function getAutoDeleteTtl() - { - return $this->autoDeleteTtl; - } - public function setIdleDeleteTtl($idleDeleteTtl) - { - $this->idleDeleteTtl = $idleDeleteTtl; - } - public function getIdleDeleteTtl() - { - return $this->idleDeleteTtl; - } - public function setIdleStartTime($idleStartTime) - { - $this->idleStartTime = $idleStartTime; - } - public function getIdleStartTime() - { - return $this->idleStartTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/ListAutoscalingPoliciesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/ListAutoscalingPoliciesResponse.php deleted file mode 100644 index 54fe56f0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/ListAutoscalingPoliciesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Dataproc_AutoscalingPolicy - */ - public function setPolicies($policies) - { - $this->policies = $policies; - } - /** - * @return Google_Service_Dataproc_AutoscalingPolicy - */ - public function getPolicies() - { - return $this->policies; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/ListClustersResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/ListClustersResponse.php deleted file mode 100644 index ddb040aa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/ListClustersResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -clusters = $clusters; - } - /** - * @return Google_Service_Dataproc_Cluster - */ - public function getClusters() - { - return $this->clusters; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/ListJobsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/ListJobsResponse.php deleted file mode 100644 index a215f11f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/ListJobsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -jobs = $jobs; - } - /** - * @return Google_Service_Dataproc_Job - */ - public function getJobs() - { - return $this->jobs; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/ListOperationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/ListOperationsResponse.php deleted file mode 100644 index 83bb0fea..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/ListOperationsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Dataproc_Operation - */ - public function setOperations($operations) - { - $this->operations = $operations; - } - /** - * @return Google_Service_Dataproc_Operation - */ - public function getOperations() - { - return $this->operations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/ListWorkflowTemplatesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/ListWorkflowTemplatesResponse.php deleted file mode 100644 index 27fe06ab..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/ListWorkflowTemplatesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Dataproc_WorkflowTemplate - */ - public function setTemplates($templates) - { - $this->templates = $templates; - } - /** - * @return Google_Service_Dataproc_WorkflowTemplate - */ - public function getTemplates() - { - return $this->templates; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/LoggingConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/LoggingConfig.php deleted file mode 100644 index 568be776..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/LoggingConfig.php +++ /dev/null @@ -1,30 +0,0 @@ -driverLogLevels = $driverLogLevels; - } - public function getDriverLogLevels() - { - return $this->driverLogLevels; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/ManagedCluster.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/ManagedCluster.php deleted file mode 100644 index 5a903ffd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/ManagedCluster.php +++ /dev/null @@ -1,55 +0,0 @@ -clusterName = $clusterName; - } - public function getClusterName() - { - return $this->clusterName; - } - /** - * @param Google_Service_Dataproc_ClusterConfig - */ - public function setConfig(Google_Service_Dataproc_ClusterConfig $config) - { - $this->config = $config; - } - /** - * @return Google_Service_Dataproc_ClusterConfig - */ - public function getConfig() - { - return $this->config; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/ManagedGroupConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/ManagedGroupConfig.php deleted file mode 100644 index 4b7d5efd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/ManagedGroupConfig.php +++ /dev/null @@ -1,39 +0,0 @@ -instanceGroupManagerName = $instanceGroupManagerName; - } - public function getInstanceGroupManagerName() - { - return $this->instanceGroupManagerName; - } - public function setInstanceTemplateName($instanceTemplateName) - { - $this->instanceTemplateName = $instanceTemplateName; - } - public function getInstanceTemplateName() - { - return $this->instanceTemplateName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/NodeInitializationAction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/NodeInitializationAction.php deleted file mode 100644 index ff03fe06..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/NodeInitializationAction.php +++ /dev/null @@ -1,39 +0,0 @@ -executableFile = $executableFile; - } - public function getExecutableFile() - { - return $this->executableFile; - } - public function setExecutionTimeout($executionTimeout) - { - $this->executionTimeout = $executionTimeout; - } - public function getExecutionTimeout() - { - return $this->executionTimeout; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/Operation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/Operation.php deleted file mode 100644 index f06ba666..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/Operation.php +++ /dev/null @@ -1,73 +0,0 @@ -done = $done; - } - public function getDone() - { - return $this->done; - } - /** - * @param Google_Service_Dataproc_Status - */ - public function setError(Google_Service_Dataproc_Status $error) - { - $this->error = $error; - } - /** - * @return Google_Service_Dataproc_Status - */ - public function getError() - { - return $this->error; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/OrderedJob.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/OrderedJob.php deleted file mode 100644 index 43083ba9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/OrderedJob.php +++ /dev/null @@ -1,161 +0,0 @@ -hadoopJob = $hadoopJob; - } - /** - * @return Google_Service_Dataproc_HadoopJob - */ - public function getHadoopJob() - { - return $this->hadoopJob; - } - /** - * @param Google_Service_Dataproc_HiveJob - */ - public function setHiveJob(Google_Service_Dataproc_HiveJob $hiveJob) - { - $this->hiveJob = $hiveJob; - } - /** - * @return Google_Service_Dataproc_HiveJob - */ - public function getHiveJob() - { - return $this->hiveJob; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - /** - * @param Google_Service_Dataproc_PigJob - */ - public function setPigJob(Google_Service_Dataproc_PigJob $pigJob) - { - $this->pigJob = $pigJob; - } - /** - * @return Google_Service_Dataproc_PigJob - */ - public function getPigJob() - { - return $this->pigJob; - } - public function setPrerequisiteStepIds($prerequisiteStepIds) - { - $this->prerequisiteStepIds = $prerequisiteStepIds; - } - public function getPrerequisiteStepIds() - { - return $this->prerequisiteStepIds; - } - /** - * @param Google_Service_Dataproc_PySparkJob - */ - public function setPysparkJob(Google_Service_Dataproc_PySparkJob $pysparkJob) - { - $this->pysparkJob = $pysparkJob; - } - /** - * @return Google_Service_Dataproc_PySparkJob - */ - public function getPysparkJob() - { - return $this->pysparkJob; - } - /** - * @param Google_Service_Dataproc_JobScheduling - */ - public function setScheduling(Google_Service_Dataproc_JobScheduling $scheduling) - { - $this->scheduling = $scheduling; - } - /** - * @return Google_Service_Dataproc_JobScheduling - */ - public function getScheduling() - { - return $this->scheduling; - } - /** - * @param Google_Service_Dataproc_SparkJob - */ - public function setSparkJob(Google_Service_Dataproc_SparkJob $sparkJob) - { - $this->sparkJob = $sparkJob; - } - /** - * @return Google_Service_Dataproc_SparkJob - */ - public function getSparkJob() - { - return $this->sparkJob; - } - /** - * @param Google_Service_Dataproc_SparkSqlJob - */ - public function setSparkSqlJob(Google_Service_Dataproc_SparkSqlJob $sparkSqlJob) - { - $this->sparkSqlJob = $sparkSqlJob; - } - /** - * @return Google_Service_Dataproc_SparkSqlJob - */ - public function getSparkSqlJob() - { - return $this->sparkSqlJob; - } - public function setStepId($stepId) - { - $this->stepId = $stepId; - } - public function getStepId() - { - return $this->stepId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/ParameterValidation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/ParameterValidation.php deleted file mode 100644 index 8dda2235..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/ParameterValidation.php +++ /dev/null @@ -1,53 +0,0 @@ -regex = $regex; - } - /** - * @return Google_Service_Dataproc_RegexValidation - */ - public function getRegex() - { - return $this->regex; - } - /** - * @param Google_Service_Dataproc_ValueValidation - */ - public function setValues(Google_Service_Dataproc_ValueValidation $values) - { - $this->values = $values; - } - /** - * @return Google_Service_Dataproc_ValueValidation - */ - public function getValues() - { - return $this->values; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/PigJob.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/PigJob.php deleted file mode 100644 index 3fccf00f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/PigJob.php +++ /dev/null @@ -1,99 +0,0 @@ -continueOnFailure = $continueOnFailure; - } - public function getContinueOnFailure() - { - return $this->continueOnFailure; - } - public function setJarFileUris($jarFileUris) - { - $this->jarFileUris = $jarFileUris; - } - public function getJarFileUris() - { - return $this->jarFileUris; - } - /** - * @param Google_Service_Dataproc_LoggingConfig - */ - public function setLoggingConfig(Google_Service_Dataproc_LoggingConfig $loggingConfig) - { - $this->loggingConfig = $loggingConfig; - } - /** - * @return Google_Service_Dataproc_LoggingConfig - */ - public function getLoggingConfig() - { - return $this->loggingConfig; - } - public function setProperties($properties) - { - $this->properties = $properties; - } - public function getProperties() - { - return $this->properties; - } - public function setQueryFileUri($queryFileUri) - { - $this->queryFileUri = $queryFileUri; - } - public function getQueryFileUri() - { - return $this->queryFileUri; - } - /** - * @param Google_Service_Dataproc_QueryList - */ - public function setQueryList(Google_Service_Dataproc_QueryList $queryList) - { - $this->queryList = $queryList; - } - /** - * @return Google_Service_Dataproc_QueryList - */ - public function getQueryList() - { - return $this->queryList; - } - public function setScriptVariables($scriptVariables) - { - $this->scriptVariables = $scriptVariables; - } - public function getScriptVariables() - { - return $this->scriptVariables; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/Policy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/Policy.php deleted file mode 100644 index 054f6f37..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/Policy.php +++ /dev/null @@ -1,56 +0,0 @@ -bindings = $bindings; - } - /** - * @return Google_Service_Dataproc_Binding - */ - public function getBindings() - { - return $this->bindings; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/PySparkJob.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/PySparkJob.php deleted file mode 100644 index b7906f65..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/PySparkJob.php +++ /dev/null @@ -1,101 +0,0 @@ -archiveUris = $archiveUris; - } - public function getArchiveUris() - { - return $this->archiveUris; - } - public function setArgs($args) - { - $this->args = $args; - } - public function getArgs() - { - return $this->args; - } - public function setFileUris($fileUris) - { - $this->fileUris = $fileUris; - } - public function getFileUris() - { - return $this->fileUris; - } - public function setJarFileUris($jarFileUris) - { - $this->jarFileUris = $jarFileUris; - } - public function getJarFileUris() - { - return $this->jarFileUris; - } - /** - * @param Google_Service_Dataproc_LoggingConfig - */ - public function setLoggingConfig(Google_Service_Dataproc_LoggingConfig $loggingConfig) - { - $this->loggingConfig = $loggingConfig; - } - /** - * @return Google_Service_Dataproc_LoggingConfig - */ - public function getLoggingConfig() - { - return $this->loggingConfig; - } - public function setMainPythonFileUri($mainPythonFileUri) - { - $this->mainPythonFileUri = $mainPythonFileUri; - } - public function getMainPythonFileUri() - { - return $this->mainPythonFileUri; - } - public function setProperties($properties) - { - $this->properties = $properties; - } - public function getProperties() - { - return $this->properties; - } - public function setPythonFileUris($pythonFileUris) - { - $this->pythonFileUris = $pythonFileUris; - } - public function getPythonFileUris() - { - return $this->pythonFileUris; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/QueryList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/QueryList.php deleted file mode 100644 index c8f1fcc0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/QueryList.php +++ /dev/null @@ -1,31 +0,0 @@ -queries = $queries; - } - public function getQueries() - { - return $this->queries; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/RegexValidation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/RegexValidation.php deleted file mode 100644 index 8ddc0cdb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/RegexValidation.php +++ /dev/null @@ -1,31 +0,0 @@ -regexes = $regexes; - } - public function getRegexes() - { - return $this->regexes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/ReservationAffinity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/ReservationAffinity.php deleted file mode 100644 index d9bc8e7f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/ReservationAffinity.php +++ /dev/null @@ -1,49 +0,0 @@ -consumeReservationType = $consumeReservationType; - } - public function getConsumeReservationType() - { - return $this->consumeReservationType; - } - public function setKey($key) - { - $this->key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValues($values) - { - $this->values = $values; - } - public function getValues() - { - return $this->values; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/Resource/Projects.php deleted file mode 100644 index 499eb9cd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/Resource/Projects.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $dataprocService = new Google_Service_Dataproc(...); - * $projects = $dataprocService->projects; - * - */ -class Google_Service_Dataproc_Resource_Projects extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/Resource/ProjectsLocations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/Resource/ProjectsLocations.php deleted file mode 100644 index 9f0ac4ec..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/Resource/ProjectsLocations.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $dataprocService = new Google_Service_Dataproc(...); - * $locations = $dataprocService->locations; - * - */ -class Google_Service_Dataproc_Resource_ProjectsLocations extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/Resource/ProjectsLocationsAutoscalingPolicies.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/Resource/ProjectsLocationsAutoscalingPolicies.php deleted file mode 100644 index 41f31d78..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/Resource/ProjectsLocationsAutoscalingPolicies.php +++ /dev/null @@ -1,195 +0,0 @@ - - * $dataprocService = new Google_Service_Dataproc(...); - * $autoscalingPolicies = $dataprocService->autoscalingPolicies; - * - */ -class Google_Service_Dataproc_Resource_ProjectsLocationsAutoscalingPolicies extends Google_Service_Resource -{ - /** - * Creates new autoscaling policy. (autoscalingPolicies.create) - * - * @param string $parent Required. The "resource name" of the region or - * location, as described in - * https://cloud.google.com/apis/design/resource_names. For - * projects.regions.autoscalingPolicies.create, the resource name of the region - * has the following format: projects/{project_id}/regions/{region} For - * projects.locations.autoscalingPolicies.create, the resource name of the - * location has the following format: - * projects/{project_id}/locations/{location} - * @param Google_Service_Dataproc_AutoscalingPolicy $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dataproc_AutoscalingPolicy - */ - public function create($parent, Google_Service_Dataproc_AutoscalingPolicy $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Dataproc_AutoscalingPolicy"); - } - /** - * Deletes an autoscaling policy. It is an error to delete an autoscaling policy - * that is in use by one or more clusters. (autoscalingPolicies.delete) - * - * @param string $name Required. The "resource name" of the autoscaling policy, - * as described in https://cloud.google.com/apis/design/resource_names. For - * projects.regions.autoscalingPolicies.delete, the resource name of the policy - * has the following format: - * projects/{project_id}/regions/{region}/autoscalingPolicies/{policy_id} For - * projects.locations.autoscalingPolicies.delete, the resource name of the - * policy has the following format: - * projects/{project_id}/locations/{location}/autoscalingPolicies/{policy_id} - * @param array $optParams Optional parameters. - * @return Google_Service_Dataproc_DataprocEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Dataproc_DataprocEmpty"); - } - /** - * Retrieves autoscaling policy. (autoscalingPolicies.get) - * - * @param string $name Required. The "resource name" of the autoscaling policy, - * as described in https://cloud.google.com/apis/design/resource_names. For - * projects.regions.autoscalingPolicies.get, the resource name of the policy - * has the following format: - * projects/{project_id}/regions/{region}/autoscalingPolicies/{policy_id} For - * projects.locations.autoscalingPolicies.get, the resource name of the policy - * has the following format: - * projects/{project_id}/locations/{location}/autoscalingPolicies/{policy_id} - * @param array $optParams Optional parameters. - * @return Google_Service_Dataproc_AutoscalingPolicy - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dataproc_AutoscalingPolicy"); - } - /** - * Gets the access control policy for a resource. Returns an empty policy if the - * resource exists and does not have a policy set. - * (autoscalingPolicies.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 Google_Service_Dataproc_GetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dataproc_Policy - */ - public function getIamPolicy($resource, Google_Service_Dataproc_GetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_Dataproc_Policy"); - } - /** - * Lists autoscaling policies in the project. - * (autoscalingPolicies.listProjectsLocationsAutoscalingPolicies) - * - * @param string $parent Required. The "resource name" of the region or - * location, as described in - * https://cloud.google.com/apis/design/resource_names. For - * projects.regions.autoscalingPolicies.list, the resource name of the region - * has the following format: projects/{project_id}/regions/{region} For - * projects.locations.autoscalingPolicies.list, the resource name of the - * location has the following format: - * projects/{project_id}/locations/{location} - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Optional. The page token, returned by a previous - * call, to request the next page of results. - * @opt_param int pageSize Optional. The maximum number of results to return in - * each response. Must be less than or equal to 1000. Defaults to 100. - * @return Google_Service_Dataproc_ListAutoscalingPoliciesResponse - */ - public function listProjectsLocationsAutoscalingPolicies($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dataproc_ListAutoscalingPoliciesResponse"); - } - /** - * Sets the access control policy on the specified resource. Replaces any - * existing policy.Can return Public Errors: NOT_FOUND, INVALID_ARGUMENT and - * PERMISSION_DENIED (autoscalingPolicies.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_Dataproc_SetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dataproc_Policy - */ - public function setIamPolicy($resource, Google_Service_Dataproc_SetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_Dataproc_Policy"); - } - /** - * 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. - * (autoscalingPolicies.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_Dataproc_TestIamPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dataproc_TestIamPermissionsResponse - */ - public function testIamPermissions($resource, Google_Service_Dataproc_TestIamPermissionsRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_Dataproc_TestIamPermissionsResponse"); - } - /** - * Updates (replaces) autoscaling policy.Disabled check for update_mask, because - * all updates will be full replacements. (autoscalingPolicies.update) - * - * @param string $name Output only. The "resource name" of the autoscaling - * policy, as described in https://cloud.google.com/apis/design/resource_names. - * For projects.regions.autoscalingPolicies, the resource name of the policy - * has the following format: - * projects/{project_id}/regions/{region}/autoscalingPolicies/{policy_id} For - * projects.locations.autoscalingPolicies, the resource name of the policy has - * the following format: - * projects/{project_id}/locations/{location}/autoscalingPolicies/{policy_id} - * @param Google_Service_Dataproc_AutoscalingPolicy $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dataproc_AutoscalingPolicy - */ - public function update($name, Google_Service_Dataproc_AutoscalingPolicy $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Dataproc_AutoscalingPolicy"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/Resource/ProjectsLocationsWorkflowTemplates.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/Resource/ProjectsLocationsWorkflowTemplates.php deleted file mode 100644 index 7d9d7c42..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/Resource/ProjectsLocationsWorkflowTemplates.php +++ /dev/null @@ -1,264 +0,0 @@ - - * $dataprocService = new Google_Service_Dataproc(...); - * $workflowTemplates = $dataprocService->workflowTemplates; - * - */ -class Google_Service_Dataproc_Resource_ProjectsLocationsWorkflowTemplates extends Google_Service_Resource -{ - /** - * Creates new workflow template. (workflowTemplates.create) - * - * @param string $parent Required. The resource name of the region or location, - * as described in https://cloud.google.com/apis/design/resource_names. For - * projects.regions.workflowTemplates,create, the resource name of the region - * has the following format: projects/{project_id}/regions/{region} For - * projects.locations.workflowTemplates.create, the resource name of the - * location has the following format: - * projects/{project_id}/locations/{location} - * @param Google_Service_Dataproc_WorkflowTemplate $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dataproc_WorkflowTemplate - */ - public function create($parent, Google_Service_Dataproc_WorkflowTemplate $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Dataproc_WorkflowTemplate"); - } - /** - * Deletes a workflow template. It does not cancel in-progress workflows. - * (workflowTemplates.delete) - * - * @param string $name Required. The resource name of the workflow template, as - * described in https://cloud.google.com/apis/design/resource_names. For - * projects.regions.workflowTemplates.delete, the resource name of the template - * has the following format: - * projects/{project_id}/regions/{region}/workflowTemplates/{template_id} For - * projects.locations.workflowTemplates.instantiate, the resource name of the - * template has the following format: - * projects/{project_id}/locations/{location}/workflowTemplates/{template_id} - * @param array $optParams Optional parameters. - * - * @opt_param int version Optional. The version of workflow template to delete. - * If specified, will only delete the template if the current server version - * matches specified version. - * @return Google_Service_Dataproc_DataprocEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Dataproc_DataprocEmpty"); - } - /** - * Retrieves the latest workflow template.Can retrieve previously instantiated - * template by specifying optional version parameter. (workflowTemplates.get) - * - * @param string $name Required. The resource name of the workflow template, as - * described in https://cloud.google.com/apis/design/resource_names. For - * projects.regions.workflowTemplates.get, the resource name of the template - * has the following format: - * projects/{project_id}/regions/{region}/workflowTemplates/{template_id} For - * projects.locations.workflowTemplates.get, the resource name of the template - * has the following format: - * projects/{project_id}/locations/{location}/workflowTemplates/{template_id} - * @param array $optParams Optional parameters. - * - * @opt_param int version Optional. The version of workflow template to - * retrieve. Only previously instantiated versions can be retrieved.If - * unspecified, retrieves the current version. - * @return Google_Service_Dataproc_WorkflowTemplate - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dataproc_WorkflowTemplate"); - } - /** - * Gets the access control policy for a resource. Returns an empty policy if the - * resource exists and does not have a policy set. - * (workflowTemplates.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 Google_Service_Dataproc_GetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dataproc_Policy - */ - public function getIamPolicy($resource, Google_Service_Dataproc_GetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_Dataproc_Policy"); - } - /** - * Instantiates a template and begins execution.The returned Operation can be - * used to track execution of workflow by polling operations.get. The Operation - * will complete when entire workflow is finished.The running workflow can be - * aborted via operations.cancel. This will cause any inflight jobs to be - * cancelled and workflow-owned clusters to be deleted.The Operation.metadata - * will be WorkflowMetadata. Also see Using WorkflowMetadata.On successful - * completion, Operation.response will be Empty. (workflowTemplates.instantiate) - * - * @param string $name Required. The resource name of the workflow template, as - * described in https://cloud.google.com/apis/design/resource_names. For - * projects.regions.workflowTemplates.instantiate, the resource name of the - * template has the following format: - * projects/{project_id}/regions/{region}/workflowTemplates/{template_id} For - * projects.locations.workflowTemplates.instantiate, the resource name of the - * template has the following format: - * projects/{project_id}/locations/{location}/workflowTemplates/{template_id} - * @param Google_Service_Dataproc_InstantiateWorkflowTemplateRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dataproc_Operation - */ - public function instantiate($name, Google_Service_Dataproc_InstantiateWorkflowTemplateRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('instantiate', array($params), "Google_Service_Dataproc_Operation"); - } - /** - * Instantiates a template and begins execution.This method is equivalent to - * executing the sequence CreateWorkflowTemplate, InstantiateWorkflowTemplate, - * DeleteWorkflowTemplate.The returned Operation can be used to track execution - * of workflow by polling operations.get. The Operation will complete when - * entire workflow is finished.The running workflow can be aborted via - * operations.cancel. This will cause any inflight jobs to be cancelled and - * workflow-owned clusters to be deleted.The Operation.metadata will be - * WorkflowMetadata. Also see Using WorkflowMetadata.On successful completion, - * Operation.response will be Empty. (workflowTemplates.instantiateInline) - * - * @param string $parent Required. The resource name of the region or location, - * as described in https://cloud.google.com/apis/design/resource_names. For - * projects.regions.workflowTemplates,instantiateinline, the resource name of - * the region has the following format: projects/{project_id}/regions/{region} - * For projects.locations.workflowTemplates.instantiateinline, the resource - * name of the location has the following format: - * projects/{project_id}/locations/{location} - * @param Google_Service_Dataproc_WorkflowTemplate $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId Optional. A tag that prevents multiple concurrent - * workflow instances with the same tag from running. This mitigates risk of - * concurrent instances started due to retries.It is recommended to always set - * this value to a UUID - * (https://en.wikipedia.org/wiki/Universally_unique_identifier).The tag must - * contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens - * (-). The maximum length is 40 characters. - * @return Google_Service_Dataproc_Operation - */ - public function instantiateInline($parent, Google_Service_Dataproc_WorkflowTemplate $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('instantiateInline', array($params), "Google_Service_Dataproc_Operation"); - } - /** - * Lists workflows that match the specified filter in the request. - * (workflowTemplates.listProjectsLocationsWorkflowTemplates) - * - * @param string $parent Required. The resource name of the region or location, - * as described in https://cloud.google.com/apis/design/resource_names. For - * projects.regions.workflowTemplates,list, the resource name of the region has - * the following format: projects/{project_id}/regions/{region} For - * projects.locations.workflowTemplates.list, the resource name of the location - * has the following format: projects/{project_id}/locations/{location} - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Optional. The page token, returned by a previous - * call, to request the next page of results. - * @opt_param int pageSize Optional. The maximum number of results to return in - * each response. - * @return Google_Service_Dataproc_ListWorkflowTemplatesResponse - */ - public function listProjectsLocationsWorkflowTemplates($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dataproc_ListWorkflowTemplatesResponse"); - } - /** - * Sets the access control policy on the specified resource. Replaces any - * existing policy.Can return Public Errors: NOT_FOUND, INVALID_ARGUMENT and - * PERMISSION_DENIED (workflowTemplates.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_Dataproc_SetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dataproc_Policy - */ - public function setIamPolicy($resource, Google_Service_Dataproc_SetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_Dataproc_Policy"); - } - /** - * 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. - * (workflowTemplates.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_Dataproc_TestIamPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dataproc_TestIamPermissionsResponse - */ - public function testIamPermissions($resource, Google_Service_Dataproc_TestIamPermissionsRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_Dataproc_TestIamPermissionsResponse"); - } - /** - * Updates (replaces) workflow template. The updated template must contain - * version that matches the current server version. (workflowTemplates.update) - * - * @param string $name Output only. The resource name of the workflow template, - * as described in https://cloud.google.com/apis/design/resource_names. For - * projects.regions.workflowTemplates, the resource name of the template has - * the following format: - * projects/{project_id}/regions/{region}/workflowTemplates/{template_id} For - * projects.locations.workflowTemplates, the resource name of the template has - * the following format: - * projects/{project_id}/locations/{location}/workflowTemplates/{template_id} - * @param Google_Service_Dataproc_WorkflowTemplate $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dataproc_WorkflowTemplate - */ - public function update($name, Google_Service_Dataproc_WorkflowTemplate $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Dataproc_WorkflowTemplate"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/Resource/ProjectsRegions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/Resource/ProjectsRegions.php deleted file mode 100644 index aab304a1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/Resource/ProjectsRegions.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $dataprocService = new Google_Service_Dataproc(...); - * $regions = $dataprocService->regions; - * - */ -class Google_Service_Dataproc_Resource_ProjectsRegions extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/Resource/ProjectsRegionsAutoscalingPolicies.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/Resource/ProjectsRegionsAutoscalingPolicies.php deleted file mode 100644 index b7c260cc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/Resource/ProjectsRegionsAutoscalingPolicies.php +++ /dev/null @@ -1,195 +0,0 @@ - - * $dataprocService = new Google_Service_Dataproc(...); - * $autoscalingPolicies = $dataprocService->autoscalingPolicies; - * - */ -class Google_Service_Dataproc_Resource_ProjectsRegionsAutoscalingPolicies extends Google_Service_Resource -{ - /** - * Creates new autoscaling policy. (autoscalingPolicies.create) - * - * @param string $parent Required. The "resource name" of the region or - * location, as described in - * https://cloud.google.com/apis/design/resource_names. For - * projects.regions.autoscalingPolicies.create, the resource name of the region - * has the following format: projects/{project_id}/regions/{region} For - * projects.locations.autoscalingPolicies.create, the resource name of the - * location has the following format: - * projects/{project_id}/locations/{location} - * @param Google_Service_Dataproc_AutoscalingPolicy $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dataproc_AutoscalingPolicy - */ - public function create($parent, Google_Service_Dataproc_AutoscalingPolicy $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Dataproc_AutoscalingPolicy"); - } - /** - * Deletes an autoscaling policy. It is an error to delete an autoscaling policy - * that is in use by one or more clusters. (autoscalingPolicies.delete) - * - * @param string $name Required. The "resource name" of the autoscaling policy, - * as described in https://cloud.google.com/apis/design/resource_names. For - * projects.regions.autoscalingPolicies.delete, the resource name of the policy - * has the following format: - * projects/{project_id}/regions/{region}/autoscalingPolicies/{policy_id} For - * projects.locations.autoscalingPolicies.delete, the resource name of the - * policy has the following format: - * projects/{project_id}/locations/{location}/autoscalingPolicies/{policy_id} - * @param array $optParams Optional parameters. - * @return Google_Service_Dataproc_DataprocEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Dataproc_DataprocEmpty"); - } - /** - * Retrieves autoscaling policy. (autoscalingPolicies.get) - * - * @param string $name Required. The "resource name" of the autoscaling policy, - * as described in https://cloud.google.com/apis/design/resource_names. For - * projects.regions.autoscalingPolicies.get, the resource name of the policy - * has the following format: - * projects/{project_id}/regions/{region}/autoscalingPolicies/{policy_id} For - * projects.locations.autoscalingPolicies.get, the resource name of the policy - * has the following format: - * projects/{project_id}/locations/{location}/autoscalingPolicies/{policy_id} - * @param array $optParams Optional parameters. - * @return Google_Service_Dataproc_AutoscalingPolicy - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dataproc_AutoscalingPolicy"); - } - /** - * Gets the access control policy for a resource. Returns an empty policy if the - * resource exists and does not have a policy set. - * (autoscalingPolicies.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 Google_Service_Dataproc_GetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dataproc_Policy - */ - public function getIamPolicy($resource, Google_Service_Dataproc_GetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_Dataproc_Policy"); - } - /** - * Lists autoscaling policies in the project. - * (autoscalingPolicies.listProjectsRegionsAutoscalingPolicies) - * - * @param string $parent Required. The "resource name" of the region or - * location, as described in - * https://cloud.google.com/apis/design/resource_names. For - * projects.regions.autoscalingPolicies.list, the resource name of the region - * has the following format: projects/{project_id}/regions/{region} For - * projects.locations.autoscalingPolicies.list, the resource name of the - * location has the following format: - * projects/{project_id}/locations/{location} - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Optional. The page token, returned by a previous - * call, to request the next page of results. - * @opt_param int pageSize Optional. The maximum number of results to return in - * each response. Must be less than or equal to 1000. Defaults to 100. - * @return Google_Service_Dataproc_ListAutoscalingPoliciesResponse - */ - public function listProjectsRegionsAutoscalingPolicies($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dataproc_ListAutoscalingPoliciesResponse"); - } - /** - * Sets the access control policy on the specified resource. Replaces any - * existing policy.Can return Public Errors: NOT_FOUND, INVALID_ARGUMENT and - * PERMISSION_DENIED (autoscalingPolicies.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_Dataproc_SetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dataproc_Policy - */ - public function setIamPolicy($resource, Google_Service_Dataproc_SetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_Dataproc_Policy"); - } - /** - * 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. - * (autoscalingPolicies.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_Dataproc_TestIamPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dataproc_TestIamPermissionsResponse - */ - public function testIamPermissions($resource, Google_Service_Dataproc_TestIamPermissionsRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_Dataproc_TestIamPermissionsResponse"); - } - /** - * Updates (replaces) autoscaling policy.Disabled check for update_mask, because - * all updates will be full replacements. (autoscalingPolicies.update) - * - * @param string $name Output only. The "resource name" of the autoscaling - * policy, as described in https://cloud.google.com/apis/design/resource_names. - * For projects.regions.autoscalingPolicies, the resource name of the policy - * has the following format: - * projects/{project_id}/regions/{region}/autoscalingPolicies/{policy_id} For - * projects.locations.autoscalingPolicies, the resource name of the policy has - * the following format: - * projects/{project_id}/locations/{location}/autoscalingPolicies/{policy_id} - * @param Google_Service_Dataproc_AutoscalingPolicy $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dataproc_AutoscalingPolicy - */ - public function update($name, Google_Service_Dataproc_AutoscalingPolicy $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Dataproc_AutoscalingPolicy"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/Resource/ProjectsRegionsClusters.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/Resource/ProjectsRegionsClusters.php deleted file mode 100644 index dc6989d0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/Resource/ProjectsRegionsClusters.php +++ /dev/null @@ -1,260 +0,0 @@ - - * $dataprocService = new Google_Service_Dataproc(...); - * $clusters = $dataprocService->clusters; - * - */ -class Google_Service_Dataproc_Resource_ProjectsRegionsClusters extends Google_Service_Resource -{ - /** - * Creates a cluster in a project. The returned Operation.metadata will be - * ClusterOperationMetadata. (clusters.create) - * - * @param string $projectId Required. The ID of the Google Cloud Platform - * project that the cluster belongs to. - * @param string $region Required. The Dataproc region in which to handle the - * request. - * @param Google_Service_Dataproc_Cluster $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId Optional. A unique id used to identify the - * request. If the server receives two CreateClusterRequest requests with the - * same id, then the second request will be ignored and the first - * google.longrunning.Operation created and stored in the backend is returned.It - * is recommended to always set this value to a UUID - * (https://en.wikipedia.org/wiki/Universally_unique_identifier).The id must - * contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens - * (-). The maximum length is 40 characters. - * @return Google_Service_Dataproc_Operation - */ - public function create($projectId, $region, Google_Service_Dataproc_Cluster $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'region' => $region, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Dataproc_Operation"); - } - /** - * Deletes a cluster in a project. The returned Operation.metadata will be - * ClusterOperationMetadata. (clusters.delete) - * - * @param string $projectId Required. The ID of the Google Cloud Platform - * project that the cluster belongs to. - * @param string $region Required. The Dataproc region in which to handle the - * request. - * @param string $clusterName Required. The cluster name. - * @param array $optParams Optional parameters. - * - * @opt_param string clusterUuid Optional. Specifying the cluster_uuid means the - * RPC should fail (with error NOT_FOUND) if cluster with specified UUID does - * not exist. - * @opt_param string requestId Optional. A unique id used to identify the - * request. If the server receives two DeleteClusterRequest requests with the - * same id, then the second request will be ignored and the first - * google.longrunning.Operation created and stored in the backend is returned.It - * is recommended to always set this value to a UUID - * (https://en.wikipedia.org/wiki/Universally_unique_identifier).The id must - * contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens - * (-). The maximum length is 40 characters. - * @return Google_Service_Dataproc_Operation - */ - public function delete($projectId, $region, $clusterName, $optParams = array()) - { - $params = array('projectId' => $projectId, 'region' => $region, 'clusterName' => $clusterName); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Dataproc_Operation"); - } - /** - * Gets cluster diagnostic information. The returned Operation.metadata will be - * ClusterOperationMetadata. After the operation completes, Operation.response - * contains DiagnoseClusterResults. (clusters.diagnose) - * - * @param string $projectId Required. The ID of the Google Cloud Platform - * project that the cluster belongs to. - * @param string $region Required. The Dataproc region in which to handle the - * request. - * @param string $clusterName Required. The cluster name. - * @param Google_Service_Dataproc_DiagnoseClusterRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dataproc_Operation - */ - public function diagnose($projectId, $region, $clusterName, Google_Service_Dataproc_DiagnoseClusterRequest $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'region' => $region, 'clusterName' => $clusterName, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('diagnose', array($params), "Google_Service_Dataproc_Operation"); - } - /** - * Gets the resource representation for a cluster in a project. (clusters.get) - * - * @param string $projectId Required. The ID of the Google Cloud Platform - * project that the cluster belongs to. - * @param string $region Required. The Dataproc region in which to handle the - * request. - * @param string $clusterName Required. The cluster name. - * @param array $optParams Optional parameters. - * @return Google_Service_Dataproc_Cluster - */ - public function get($projectId, $region, $clusterName, $optParams = array()) - { - $params = array('projectId' => $projectId, 'region' => $region, 'clusterName' => $clusterName); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dataproc_Cluster"); - } - /** - * Gets the access control policy for a resource. Returns an empty policy if the - * resource exists and does not have a policy set. (clusters.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 Google_Service_Dataproc_GetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dataproc_Policy - */ - public function getIamPolicy($resource, Google_Service_Dataproc_GetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_Dataproc_Policy"); - } - /** - * Lists all regions/{region}/clusters in a project. - * (clusters.listProjectsRegionsClusters) - * - * @param string $projectId Required. The ID of the Google Cloud Platform - * project that the cluster belongs to. - * @param string $region Required. The Dataproc region in which to handle the - * request. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Optional. The standard List page token. - * @opt_param int pageSize Optional. The standard List page size. - * @opt_param string filter Optional. A filter constraining the clusters to - * list. Filters are case-sensitive and have the following syntax:field = value - * AND field = value ...where field is one of status.state, clusterName, or - * labels.[KEY], and [KEY] is a label key. value can be * to match all values. - * status.state can be one of the following: ACTIVE, INACTIVE, CREATING, - * RUNNING, ERROR, DELETING, or UPDATING. ACTIVE contains the CREATING, - * UPDATING, and RUNNING states. INACTIVE contains the DELETING and ERROR - * states. clusterName is the name of the cluster provided at creation time. - * Only the logical AND operator is supported; space-separated items are treated - * as having an implicit AND operator.Example filter:status.state = ACTIVE AND - * clusterName = mycluster AND labels.env = staging AND labels.starred = * - * @return Google_Service_Dataproc_ListClustersResponse - */ - public function listProjectsRegionsClusters($projectId, $region, $optParams = array()) - { - $params = array('projectId' => $projectId, 'region' => $region); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dataproc_ListClustersResponse"); - } - /** - * Updates a cluster in a project. The returned Operation.metadata will be - * ClusterOperationMetadata. (clusters.patch) - * - * @param string $projectId Required. The ID of the Google Cloud Platform - * project the cluster belongs to. - * @param string $region Required. The Dataproc region in which to handle the - * request. - * @param string $clusterName Required. The cluster name. - * @param Google_Service_Dataproc_Cluster $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string gracefulDecommissionTimeout Optional. Timeout for graceful - * YARN decomissioning. Graceful decommissioning allows removing nodes from the - * cluster without interrupting jobs in progress. Timeout specifies how long to - * wait for jobs in progress to finish before forcefully removing nodes (and - * potentially interrupting jobs). Default timeout is 0 (for forceful - * decommission), and the maximum allowed timeout is 1 day. (see JSON - * representation of Duration (https://developers.google.com/protocol- - * buffers/docs/proto3#json)).Only supported on Dataproc image versions 1.2 and - * higher. - * @opt_param string requestId Optional. A unique id used to identify the - * request. If the server receives two UpdateClusterRequest requests with the - * same id, then the second request will be ignored and the first - * google.longrunning.Operation created and stored in the backend is returned.It - * is recommended to always set this value to a UUID - * (https://en.wikipedia.org/wiki/Universally_unique_identifier).The id must - * contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens - * (-). The maximum length is 40 characters. - * @opt_param string updateMask Required. Specifies the path, relative to - * Cluster, of the field to update. For example, to change the number of workers - * in a cluster to 5, the update_mask parameter would be specified as - * config.worker_config.num_instances, and the PATCH request body would specify - * the new value, as follows: { "config":{ "workerConfig":{ - * "numInstances":"5" } } } Similarly, to change the number of preemptible - * workers in a cluster to 5, the update_mask parameter would be - * config.secondary_worker_config.num_instances, and the PATCH request body - * would be set as follows: { "config":{ "secondaryWorkerConfig":{ - * "numInstances":"5" } } } Note: Currently, only the following fields can - * be updated: Mask Purpose labels Update labels - * config.worker_config.num_instances Resize primary worker group - * config.secondary_worker_config.num_instances Resize secondary worker group - * config.autoscaling_config.policy_uriUse, stop using, or change autoscaling - * policies - * @return Google_Service_Dataproc_Operation - */ - public function patch($projectId, $region, $clusterName, Google_Service_Dataproc_Cluster $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'region' => $region, 'clusterName' => $clusterName, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Dataproc_Operation"); - } - /** - * Sets the access control policy on the specified resource. Replaces any - * existing policy.Can return Public Errors: NOT_FOUND, INVALID_ARGUMENT and - * PERMISSION_DENIED (clusters.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_Dataproc_SetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dataproc_Policy - */ - public function setIamPolicy($resource, Google_Service_Dataproc_SetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_Dataproc_Policy"); - } - /** - * 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. (clusters.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_Dataproc_TestIamPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dataproc_TestIamPermissionsResponse - */ - public function testIamPermissions($resource, Google_Service_Dataproc_TestIamPermissionsRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_Dataproc_TestIamPermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/Resource/ProjectsRegionsJobs.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/Resource/ProjectsRegionsJobs.php deleted file mode 100644 index c9235dbe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/Resource/ProjectsRegionsJobs.php +++ /dev/null @@ -1,212 +0,0 @@ - - * $dataprocService = new Google_Service_Dataproc(...); - * $jobs = $dataprocService->jobs; - * - */ -class Google_Service_Dataproc_Resource_ProjectsRegionsJobs extends Google_Service_Resource -{ - /** - * Starts a job cancellation request. To access the job resource after - * cancellation, call regions/{region}/jobs.list or regions/{region}/jobs.get. - * (jobs.cancel) - * - * @param string $projectId Required. The ID of the Google Cloud Platform - * project that the job belongs to. - * @param string $region Required. The Dataproc region in which to handle the - * request. - * @param string $jobId Required. The job ID. - * @param Google_Service_Dataproc_CancelJobRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dataproc_Job - */ - public function cancel($projectId, $region, $jobId, Google_Service_Dataproc_CancelJobRequest $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'region' => $region, 'jobId' => $jobId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('cancel', array($params), "Google_Service_Dataproc_Job"); - } - /** - * Deletes the job from the project. If the job is active, the delete fails, and - * the response returns FAILED_PRECONDITION. (jobs.delete) - * - * @param string $projectId Required. The ID of the Google Cloud Platform - * project that the job belongs to. - * @param string $region Required. The Dataproc region in which to handle the - * request. - * @param string $jobId Required. The job ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Dataproc_DataprocEmpty - */ - public function delete($projectId, $region, $jobId, $optParams = array()) - { - $params = array('projectId' => $projectId, 'region' => $region, 'jobId' => $jobId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Dataproc_DataprocEmpty"); - } - /** - * Gets the resource representation for a job in a project. (jobs.get) - * - * @param string $projectId Required. The ID of the Google Cloud Platform - * project that the job belongs to. - * @param string $region Required. The Dataproc region in which to handle the - * request. - * @param string $jobId Required. The job ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Dataproc_Job - */ - public function get($projectId, $region, $jobId, $optParams = array()) - { - $params = array('projectId' => $projectId, 'region' => $region, 'jobId' => $jobId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dataproc_Job"); - } - /** - * Gets the access control policy for a resource. Returns an empty policy if the - * resource exists and does not have a policy set. (jobs.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 Google_Service_Dataproc_GetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dataproc_Policy - */ - public function getIamPolicy($resource, Google_Service_Dataproc_GetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_Dataproc_Policy"); - } - /** - * Lists regions/{region}/jobs in a project. (jobs.listProjectsRegionsJobs) - * - * @param string $projectId Required. The ID of the Google Cloud Platform - * project that the job belongs to. - * @param string $region Required. The Dataproc region in which to handle the - * request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter Optional. A filter constraining the jobs to list. - * Filters are case-sensitive and have the following syntax:field = value AND - * field = value ...where field is status.state or labels.[KEY], and [KEY] is a - * label key. value can be * to match all values. status.state can be either - * ACTIVE or NON_ACTIVE. Only the logical AND operator is supported; space- - * separated items are treated as having an implicit AND operator.Example - * filter:status.state = ACTIVE AND labels.env = staging AND labels.starred = * - * @opt_param string jobStateMatcher Optional. Specifies enumerated categories - * of jobs to list. (default = match ALL jobs).If filter is provided, - * jobStateMatcher will be ignored. - * @opt_param string pageToken Optional. The page token, returned by a previous - * call, to request the next page of results. - * @opt_param int pageSize Optional. The number of results to return in each - * response. - * @opt_param string clusterName Optional. If set, the returned jobs list - * includes only jobs that were submitted to the named cluster. - * @return Google_Service_Dataproc_ListJobsResponse - */ - public function listProjectsRegionsJobs($projectId, $region, $optParams = array()) - { - $params = array('projectId' => $projectId, 'region' => $region); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dataproc_ListJobsResponse"); - } - /** - * Updates a job in a project. (jobs.patch) - * - * @param string $projectId Required. The ID of the Google Cloud Platform - * project that the job belongs to. - * @param string $region Required. The Dataproc region in which to handle the - * request. - * @param string $jobId Required. The job ID. - * @param Google_Service_Dataproc_Job $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Required. Specifies the path, relative to Job, - * of the field to update. For example, to update the labels of a Job the - * update_mask parameter would be specified as labels, and the PATCH request - * body would specify the new value. Note: Currently, labels is the only field - * that can be updated. - * @return Google_Service_Dataproc_Job - */ - public function patch($projectId, $region, $jobId, Google_Service_Dataproc_Job $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'region' => $region, 'jobId' => $jobId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Dataproc_Job"); - } - /** - * Sets the access control policy on the specified resource. Replaces any - * existing policy.Can return Public Errors: NOT_FOUND, INVALID_ARGUMENT and - * PERMISSION_DENIED (jobs.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_Dataproc_SetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dataproc_Policy - */ - public function setIamPolicy($resource, Google_Service_Dataproc_SetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_Dataproc_Policy"); - } - /** - * Submits a job to a cluster. (jobs.submit) - * - * @param string $projectId Required. The ID of the Google Cloud Platform - * project that the job belongs to. - * @param string $region Required. The Dataproc region in which to handle the - * request. - * @param Google_Service_Dataproc_SubmitJobRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dataproc_Job - */ - public function submit($projectId, $region, Google_Service_Dataproc_SubmitJobRequest $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'region' => $region, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('submit', array($params), "Google_Service_Dataproc_Job"); - } - /** - * 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. (jobs.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_Dataproc_TestIamPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dataproc_TestIamPermissionsResponse - */ - public function testIamPermissions($resource, Google_Service_Dataproc_TestIamPermissionsRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_Dataproc_TestIamPermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/Resource/ProjectsRegionsOperations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/Resource/ProjectsRegionsOperations.php deleted file mode 100644 index a8c127d6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/Resource/ProjectsRegionsOperations.php +++ /dev/null @@ -1,161 +0,0 @@ - - * $dataprocService = new Google_Service_Dataproc(...); - * $operations = $dataprocService->operations; - * - */ -class Google_Service_Dataproc_Resource_ProjectsRegionsOperations extends Google_Service_Resource -{ - /** - * Starts asynchronous cancellation on a long-running operation. The server - * makes a best effort to cancel the operation, but success is not guaranteed. - * If the server doesn't support this method, it returns - * google.rpc.Code.UNIMPLEMENTED. Clients can use Operations.GetOperation or - * other methods to check whether the cancellation succeeded or whether the - * operation completed despite cancellation. On successful cancellation, the - * operation is not deleted; instead, it becomes an operation with an - * Operation.error value with a google.rpc.Status.code of 1, corresponding to - * Code.CANCELLED. (operations.cancel) - * - * @param string $name The name of the operation resource to be cancelled. - * @param array $optParams Optional parameters. - * @return Google_Service_Dataproc_DataprocEmpty - */ - public function cancel($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('cancel', array($params), "Google_Service_Dataproc_DataprocEmpty"); - } - /** - * Deletes a long-running operation. This method indicates that the client is no - * longer interested in the operation result. It does not cancel the operation. - * If the server doesn't support this method, it returns - * google.rpc.Code.UNIMPLEMENTED. (operations.delete) - * - * @param string $name The name of the operation resource to be deleted. - * @param array $optParams Optional parameters. - * @return Google_Service_Dataproc_DataprocEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Dataproc_DataprocEmpty"); - } - /** - * Gets the latest state of a long-running operation. Clients can use this - * method to poll the operation result at intervals as recommended by the API - * service. (operations.get) - * - * @param string $name The name of the operation resource. - * @param array $optParams Optional parameters. - * @return Google_Service_Dataproc_Operation - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dataproc_Operation"); - } - /** - * Gets the access control policy for a resource. Returns an empty policy if the - * resource exists and does not have a policy set. (operations.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 Google_Service_Dataproc_GetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dataproc_Policy - */ - public function getIamPolicy($resource, Google_Service_Dataproc_GetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_Dataproc_Policy"); - } - /** - * Lists operations that match the specified filter in the request. If the - * server doesn't support this method, it returns UNIMPLEMENTED.NOTE: the name - * binding allows API services to override the binding to use different resource - * name schemes, such as users/operations. To override the binding, API services - * can add a binding such as "/v1/{name=users}/operations" to their service - * configuration. For backwards compatibility, the default name includes the - * operations collection id, however overriding users must ensure the name - * binding is the parent resource, without the operations collection id. - * (operations.listProjectsRegionsOperations) - * - * @param string $name The name of the operation's parent resource. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The standard list page token. - * @opt_param int pageSize The standard list page size. - * @opt_param string filter The standard list filter. - * @return Google_Service_Dataproc_ListOperationsResponse - */ - public function listProjectsRegionsOperations($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dataproc_ListOperationsResponse"); - } - /** - * Sets the access control policy on the specified resource. Replaces any - * existing policy.Can return Public Errors: NOT_FOUND, INVALID_ARGUMENT and - * PERMISSION_DENIED (operations.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_Dataproc_SetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dataproc_Policy - */ - public function setIamPolicy($resource, Google_Service_Dataproc_SetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_Dataproc_Policy"); - } - /** - * 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. - * (operations.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_Dataproc_TestIamPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dataproc_TestIamPermissionsResponse - */ - public function testIamPermissions($resource, Google_Service_Dataproc_TestIamPermissionsRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_Dataproc_TestIamPermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/Resource/ProjectsRegionsWorkflowTemplates.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/Resource/ProjectsRegionsWorkflowTemplates.php deleted file mode 100644 index 5de7285d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/Resource/ProjectsRegionsWorkflowTemplates.php +++ /dev/null @@ -1,264 +0,0 @@ - - * $dataprocService = new Google_Service_Dataproc(...); - * $workflowTemplates = $dataprocService->workflowTemplates; - * - */ -class Google_Service_Dataproc_Resource_ProjectsRegionsWorkflowTemplates extends Google_Service_Resource -{ - /** - * Creates new workflow template. (workflowTemplates.create) - * - * @param string $parent Required. The resource name of the region or location, - * as described in https://cloud.google.com/apis/design/resource_names. For - * projects.regions.workflowTemplates,create, the resource name of the region - * has the following format: projects/{project_id}/regions/{region} For - * projects.locations.workflowTemplates.create, the resource name of the - * location has the following format: - * projects/{project_id}/locations/{location} - * @param Google_Service_Dataproc_WorkflowTemplate $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dataproc_WorkflowTemplate - */ - public function create($parent, Google_Service_Dataproc_WorkflowTemplate $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Dataproc_WorkflowTemplate"); - } - /** - * Deletes a workflow template. It does not cancel in-progress workflows. - * (workflowTemplates.delete) - * - * @param string $name Required. The resource name of the workflow template, as - * described in https://cloud.google.com/apis/design/resource_names. For - * projects.regions.workflowTemplates.delete, the resource name of the template - * has the following format: - * projects/{project_id}/regions/{region}/workflowTemplates/{template_id} For - * projects.locations.workflowTemplates.instantiate, the resource name of the - * template has the following format: - * projects/{project_id}/locations/{location}/workflowTemplates/{template_id} - * @param array $optParams Optional parameters. - * - * @opt_param int version Optional. The version of workflow template to delete. - * If specified, will only delete the template if the current server version - * matches specified version. - * @return Google_Service_Dataproc_DataprocEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Dataproc_DataprocEmpty"); - } - /** - * Retrieves the latest workflow template.Can retrieve previously instantiated - * template by specifying optional version parameter. (workflowTemplates.get) - * - * @param string $name Required. The resource name of the workflow template, as - * described in https://cloud.google.com/apis/design/resource_names. For - * projects.regions.workflowTemplates.get, the resource name of the template - * has the following format: - * projects/{project_id}/regions/{region}/workflowTemplates/{template_id} For - * projects.locations.workflowTemplates.get, the resource name of the template - * has the following format: - * projects/{project_id}/locations/{location}/workflowTemplates/{template_id} - * @param array $optParams Optional parameters. - * - * @opt_param int version Optional. The version of workflow template to - * retrieve. Only previously instantiated versions can be retrieved.If - * unspecified, retrieves the current version. - * @return Google_Service_Dataproc_WorkflowTemplate - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dataproc_WorkflowTemplate"); - } - /** - * Gets the access control policy for a resource. Returns an empty policy if the - * resource exists and does not have a policy set. - * (workflowTemplates.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 Google_Service_Dataproc_GetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dataproc_Policy - */ - public function getIamPolicy($resource, Google_Service_Dataproc_GetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_Dataproc_Policy"); - } - /** - * Instantiates a template and begins execution.The returned Operation can be - * used to track execution of workflow by polling operations.get. The Operation - * will complete when entire workflow is finished.The running workflow can be - * aborted via operations.cancel. This will cause any inflight jobs to be - * cancelled and workflow-owned clusters to be deleted.The Operation.metadata - * will be WorkflowMetadata. Also see Using WorkflowMetadata.On successful - * completion, Operation.response will be Empty. (workflowTemplates.instantiate) - * - * @param string $name Required. The resource name of the workflow template, as - * described in https://cloud.google.com/apis/design/resource_names. For - * projects.regions.workflowTemplates.instantiate, the resource name of the - * template has the following format: - * projects/{project_id}/regions/{region}/workflowTemplates/{template_id} For - * projects.locations.workflowTemplates.instantiate, the resource name of the - * template has the following format: - * projects/{project_id}/locations/{location}/workflowTemplates/{template_id} - * @param Google_Service_Dataproc_InstantiateWorkflowTemplateRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dataproc_Operation - */ - public function instantiate($name, Google_Service_Dataproc_InstantiateWorkflowTemplateRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('instantiate', array($params), "Google_Service_Dataproc_Operation"); - } - /** - * Instantiates a template and begins execution.This method is equivalent to - * executing the sequence CreateWorkflowTemplate, InstantiateWorkflowTemplate, - * DeleteWorkflowTemplate.The returned Operation can be used to track execution - * of workflow by polling operations.get. The Operation will complete when - * entire workflow is finished.The running workflow can be aborted via - * operations.cancel. This will cause any inflight jobs to be cancelled and - * workflow-owned clusters to be deleted.The Operation.metadata will be - * WorkflowMetadata. Also see Using WorkflowMetadata.On successful completion, - * Operation.response will be Empty. (workflowTemplates.instantiateInline) - * - * @param string $parent Required. The resource name of the region or location, - * as described in https://cloud.google.com/apis/design/resource_names. For - * projects.regions.workflowTemplates,instantiateinline, the resource name of - * the region has the following format: projects/{project_id}/regions/{region} - * For projects.locations.workflowTemplates.instantiateinline, the resource - * name of the location has the following format: - * projects/{project_id}/locations/{location} - * @param Google_Service_Dataproc_WorkflowTemplate $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId Optional. A tag that prevents multiple concurrent - * workflow instances with the same tag from running. This mitigates risk of - * concurrent instances started due to retries.It is recommended to always set - * this value to a UUID - * (https://en.wikipedia.org/wiki/Universally_unique_identifier).The tag must - * contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens - * (-). The maximum length is 40 characters. - * @return Google_Service_Dataproc_Operation - */ - public function instantiateInline($parent, Google_Service_Dataproc_WorkflowTemplate $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('instantiateInline', array($params), "Google_Service_Dataproc_Operation"); - } - /** - * Lists workflows that match the specified filter in the request. - * (workflowTemplates.listProjectsRegionsWorkflowTemplates) - * - * @param string $parent Required. The resource name of the region or location, - * as described in https://cloud.google.com/apis/design/resource_names. For - * projects.regions.workflowTemplates,list, the resource name of the region has - * the following format: projects/{project_id}/regions/{region} For - * projects.locations.workflowTemplates.list, the resource name of the location - * has the following format: projects/{project_id}/locations/{location} - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Optional. The page token, returned by a previous - * call, to request the next page of results. - * @opt_param int pageSize Optional. The maximum number of results to return in - * each response. - * @return Google_Service_Dataproc_ListWorkflowTemplatesResponse - */ - public function listProjectsRegionsWorkflowTemplates($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dataproc_ListWorkflowTemplatesResponse"); - } - /** - * Sets the access control policy on the specified resource. Replaces any - * existing policy.Can return Public Errors: NOT_FOUND, INVALID_ARGUMENT and - * PERMISSION_DENIED (workflowTemplates.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_Dataproc_SetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dataproc_Policy - */ - public function setIamPolicy($resource, Google_Service_Dataproc_SetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_Dataproc_Policy"); - } - /** - * 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. - * (workflowTemplates.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_Dataproc_TestIamPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dataproc_TestIamPermissionsResponse - */ - public function testIamPermissions($resource, Google_Service_Dataproc_TestIamPermissionsRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_Dataproc_TestIamPermissionsResponse"); - } - /** - * Updates (replaces) workflow template. The updated template must contain - * version that matches the current server version. (workflowTemplates.update) - * - * @param string $name Output only. The resource name of the workflow template, - * as described in https://cloud.google.com/apis/design/resource_names. For - * projects.regions.workflowTemplates, the resource name of the template has - * the following format: - * projects/{project_id}/regions/{region}/workflowTemplates/{template_id} For - * projects.locations.workflowTemplates, the resource name of the template has - * the following format: - * projects/{project_id}/locations/{location}/workflowTemplates/{template_id} - * @param Google_Service_Dataproc_WorkflowTemplate $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dataproc_WorkflowTemplate - */ - public function update($name, Google_Service_Dataproc_WorkflowTemplate $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Dataproc_WorkflowTemplate"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/SecurityConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/SecurityConfig.php deleted file mode 100644 index 905f2ab4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/SecurityConfig.php +++ /dev/null @@ -1,37 +0,0 @@ -kerberosConfig = $kerberosConfig; - } - /** - * @return Google_Service_Dataproc_KerberosConfig - */ - public function getKerberosConfig() - { - return $this->kerberosConfig; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/SetIamPolicyRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/SetIamPolicyRequest.php deleted file mode 100644 index 0ed7559c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/SetIamPolicyRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -policy = $policy; - } - /** - * @return Google_Service_Dataproc_Policy - */ - public function getPolicy() - { - return $this->policy; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/SoftwareConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/SoftwareConfig.php deleted file mode 100644 index 4c1ff196..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/SoftwareConfig.php +++ /dev/null @@ -1,49 +0,0 @@ -imageVersion = $imageVersion; - } - public function getImageVersion() - { - return $this->imageVersion; - } - public function setOptionalComponents($optionalComponents) - { - $this->optionalComponents = $optionalComponents; - } - public function getOptionalComponents() - { - return $this->optionalComponents; - } - public function setProperties($properties) - { - $this->properties = $properties; - } - public function getProperties() - { - return $this->properties; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/SparkJob.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/SparkJob.php deleted file mode 100644 index b9ceef96..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/SparkJob.php +++ /dev/null @@ -1,101 +0,0 @@ -archiveUris = $archiveUris; - } - public function getArchiveUris() - { - return $this->archiveUris; - } - public function setArgs($args) - { - $this->args = $args; - } - public function getArgs() - { - return $this->args; - } - public function setFileUris($fileUris) - { - $this->fileUris = $fileUris; - } - public function getFileUris() - { - return $this->fileUris; - } - public function setJarFileUris($jarFileUris) - { - $this->jarFileUris = $jarFileUris; - } - public function getJarFileUris() - { - return $this->jarFileUris; - } - /** - * @param Google_Service_Dataproc_LoggingConfig - */ - public function setLoggingConfig(Google_Service_Dataproc_LoggingConfig $loggingConfig) - { - $this->loggingConfig = $loggingConfig; - } - /** - * @return Google_Service_Dataproc_LoggingConfig - */ - public function getLoggingConfig() - { - return $this->loggingConfig; - } - public function setMainClass($mainClass) - { - $this->mainClass = $mainClass; - } - public function getMainClass() - { - return $this->mainClass; - } - public function setMainJarFileUri($mainJarFileUri) - { - $this->mainJarFileUri = $mainJarFileUri; - } - public function getMainJarFileUri() - { - return $this->mainJarFileUri; - } - public function setProperties($properties) - { - $this->properties = $properties; - } - public function getProperties() - { - return $this->properties; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/SparkRJob.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/SparkRJob.php deleted file mode 100644 index 751156f5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/SparkRJob.php +++ /dev/null @@ -1,83 +0,0 @@ -archiveUris = $archiveUris; - } - public function getArchiveUris() - { - return $this->archiveUris; - } - public function setArgs($args) - { - $this->args = $args; - } - public function getArgs() - { - return $this->args; - } - public function setFileUris($fileUris) - { - $this->fileUris = $fileUris; - } - public function getFileUris() - { - return $this->fileUris; - } - /** - * @param Google_Service_Dataproc_LoggingConfig - */ - public function setLoggingConfig(Google_Service_Dataproc_LoggingConfig $loggingConfig) - { - $this->loggingConfig = $loggingConfig; - } - /** - * @return Google_Service_Dataproc_LoggingConfig - */ - public function getLoggingConfig() - { - return $this->loggingConfig; - } - public function setMainRFileUri($mainRFileUri) - { - $this->mainRFileUri = $mainRFileUri; - } - public function getMainRFileUri() - { - return $this->mainRFileUri; - } - public function setProperties($properties) - { - $this->properties = $properties; - } - public function getProperties() - { - return $this->properties; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/SparkSqlJob.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/SparkSqlJob.php deleted file mode 100644 index 66589589..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/SparkSqlJob.php +++ /dev/null @@ -1,90 +0,0 @@ -jarFileUris = $jarFileUris; - } - public function getJarFileUris() - { - return $this->jarFileUris; - } - /** - * @param Google_Service_Dataproc_LoggingConfig - */ - public function setLoggingConfig(Google_Service_Dataproc_LoggingConfig $loggingConfig) - { - $this->loggingConfig = $loggingConfig; - } - /** - * @return Google_Service_Dataproc_LoggingConfig - */ - public function getLoggingConfig() - { - return $this->loggingConfig; - } - public function setProperties($properties) - { - $this->properties = $properties; - } - public function getProperties() - { - return $this->properties; - } - public function setQueryFileUri($queryFileUri) - { - $this->queryFileUri = $queryFileUri; - } - public function getQueryFileUri() - { - return $this->queryFileUri; - } - /** - * @param Google_Service_Dataproc_QueryList - */ - public function setQueryList(Google_Service_Dataproc_QueryList $queryList) - { - $this->queryList = $queryList; - } - /** - * @return Google_Service_Dataproc_QueryList - */ - public function getQueryList() - { - return $this->queryList; - } - public function setScriptVariables($scriptVariables) - { - $this->scriptVariables = $scriptVariables; - } - public function getScriptVariables() - { - return $this->scriptVariables; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/Status.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/Status.php deleted file mode 100644 index 03a6841f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/Status.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/SubmitJobRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/SubmitJobRequest.php deleted file mode 100644 index e7c02950..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/SubmitJobRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -job = $job; - } - /** - * @return Google_Service_Dataproc_Job - */ - public function getJob() - { - return $this->job; - } - public function setRequestId($requestId) - { - $this->requestId = $requestId; - } - public function getRequestId() - { - return $this->requestId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/TemplateParameter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/TemplateParameter.php deleted file mode 100644 index efffc86d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/TemplateParameter.php +++ /dev/null @@ -1,65 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setFields($fields) - { - $this->fields = $fields; - } - public function getFields() - { - return $this->fields; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Dataproc_ParameterValidation - */ - public function setValidation(Google_Service_Dataproc_ParameterValidation $validation) - { - $this->validation = $validation; - } - /** - * @return Google_Service_Dataproc_ParameterValidation - */ - public function getValidation() - { - return $this->validation; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/TestIamPermissionsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/TestIamPermissionsRequest.php deleted file mode 100644 index 9a127070..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/TestIamPermissionsRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/TestIamPermissionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/TestIamPermissionsResponse.php deleted file mode 100644 index 67152f7d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/TestIamPermissionsResponse.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/ValueValidation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/ValueValidation.php deleted file mode 100644 index f6bde28b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/ValueValidation.php +++ /dev/null @@ -1,31 +0,0 @@ -values = $values; - } - public function getValues() - { - return $this->values; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/WorkflowGraph.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/WorkflowGraph.php deleted file mode 100644 index 6054bca6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/WorkflowGraph.php +++ /dev/null @@ -1,38 +0,0 @@ -nodes = $nodes; - } - /** - * @return Google_Service_Dataproc_WorkflowNode - */ - public function getNodes() - { - return $this->nodes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/WorkflowMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/WorkflowMetadata.php deleted file mode 100644 index 07322ee3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/WorkflowMetadata.php +++ /dev/null @@ -1,141 +0,0 @@ -clusterName = $clusterName; - } - public function getClusterName() - { - return $this->clusterName; - } - public function setClusterUuid($clusterUuid) - { - $this->clusterUuid = $clusterUuid; - } - public function getClusterUuid() - { - return $this->clusterUuid; - } - /** - * @param Google_Service_Dataproc_ClusterOperation - */ - public function setCreateCluster(Google_Service_Dataproc_ClusterOperation $createCluster) - { - $this->createCluster = $createCluster; - } - /** - * @return Google_Service_Dataproc_ClusterOperation - */ - public function getCreateCluster() - { - return $this->createCluster; - } - /** - * @param Google_Service_Dataproc_ClusterOperation - */ - public function setDeleteCluster(Google_Service_Dataproc_ClusterOperation $deleteCluster) - { - $this->deleteCluster = $deleteCluster; - } - /** - * @return Google_Service_Dataproc_ClusterOperation - */ - public function getDeleteCluster() - { - return $this->deleteCluster; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - /** - * @param Google_Service_Dataproc_WorkflowGraph - */ - public function setGraph(Google_Service_Dataproc_WorkflowGraph $graph) - { - $this->graph = $graph; - } - /** - * @return Google_Service_Dataproc_WorkflowGraph - */ - public function getGraph() - { - return $this->graph; - } - public function setParameters($parameters) - { - $this->parameters = $parameters; - } - public function getParameters() - { - return $this->parameters; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setTemplate($template) - { - $this->template = $template; - } - public function getTemplate() - { - return $this->template; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/WorkflowNode.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/WorkflowNode.php deleted file mode 100644 index c54aa2ba..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/WorkflowNode.php +++ /dev/null @@ -1,67 +0,0 @@ -error = $error; - } - public function getError() - { - return $this->error; - } - public function setJobId($jobId) - { - $this->jobId = $jobId; - } - public function getJobId() - { - return $this->jobId; - } - public function setPrerequisiteStepIds($prerequisiteStepIds) - { - $this->prerequisiteStepIds = $prerequisiteStepIds; - } - public function getPrerequisiteStepIds() - { - return $this->prerequisiteStepIds; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setStepId($stepId) - { - $this->stepId = $stepId; - } - public function getStepId() - { - return $this->stepId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/WorkflowTemplate.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/WorkflowTemplate.php deleted file mode 100644 index 59bbf292..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/WorkflowTemplate.php +++ /dev/null @@ -1,124 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Dataproc_OrderedJob - */ - public function setJobs($jobs) - { - $this->jobs = $jobs; - } - /** - * @return Google_Service_Dataproc_OrderedJob - */ - public function getJobs() - { - return $this->jobs; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Dataproc_TemplateParameter - */ - public function setParameters($parameters) - { - $this->parameters = $parameters; - } - /** - * @return Google_Service_Dataproc_TemplateParameter - */ - public function getParameters() - { - return $this->parameters; - } - /** - * @param Google_Service_Dataproc_WorkflowTemplatePlacement - */ - public function setPlacement(Google_Service_Dataproc_WorkflowTemplatePlacement $placement) - { - $this->placement = $placement; - } - /** - * @return Google_Service_Dataproc_WorkflowTemplatePlacement - */ - public function getPlacement() - { - return $this->placement; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/WorkflowTemplatePlacement.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/WorkflowTemplatePlacement.php deleted file mode 100644 index 1c264133..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/WorkflowTemplatePlacement.php +++ /dev/null @@ -1,53 +0,0 @@ -clusterSelector = $clusterSelector; - } - /** - * @return Google_Service_Dataproc_ClusterSelector - */ - public function getClusterSelector() - { - return $this->clusterSelector; - } - /** - * @param Google_Service_Dataproc_ManagedCluster - */ - public function setManagedCluster(Google_Service_Dataproc_ManagedCluster $managedCluster) - { - $this->managedCluster = $managedCluster; - } - /** - * @return Google_Service_Dataproc_ManagedCluster - */ - public function getManagedCluster() - { - return $this->managedCluster; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/YarnApplication.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/YarnApplication.php deleted file mode 100644 index 0d507b48..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dataproc/YarnApplication.php +++ /dev/null @@ -1,57 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setProgress($progress) - { - $this->progress = $progress; - } - public function getProgress() - { - return $this->progress; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setTrackingUrl($trackingUrl) - { - $this->trackingUrl = $trackingUrl; - } - public function getTrackingUrl() - { - return $this->trackingUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore.php deleted file mode 100644 index 92ebdae8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore.php +++ /dev/null @@ -1,295 +0,0 @@ - - * Accesses the schemaless NoSQL database to provide fully managed, robust, - * scalable storage for your application.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Datastore extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** View and manage your Google Cloud Datastore data. */ - const DATASTORE = - "https://www.googleapis.com/auth/datastore"; - - public $projects; - public $projects_indexes; - public $projects_operations; - - /** - * Constructs the internal representation of the Datastore service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://datastore.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'datastore'; - - $this->projects = new Google_Service_Datastore_Resource_Projects( - $this, - $this->serviceName, - 'projects', - array( - 'methods' => array( - 'allocateIds' => array( - 'path' => 'v1/projects/{projectId}:allocateIds', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'beginTransaction' => array( - 'path' => 'v1/projects/{projectId}:beginTransaction', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'commit' => array( - 'path' => 'v1/projects/{projectId}:commit', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'export' => array( - 'path' => 'v1/projects/{projectId}:export', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'import' => array( - 'path' => 'v1/projects/{projectId}:import', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'lookup' => array( - 'path' => 'v1/projects/{projectId}:lookup', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'reserveIds' => array( - 'path' => 'v1/projects/{projectId}:reserveIds', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'rollback' => array( - 'path' => 'v1/projects/{projectId}:rollback', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'runQuery' => array( - 'path' => 'v1/projects/{projectId}:runQuery', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_indexes = new Google_Service_Datastore_Resource_ProjectsIndexes( - $this, - $this->serviceName, - 'indexes', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/projects/{projectId}/indexes', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/projects/{projectId}/indexes/{indexId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'indexId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/projects/{projectId}/indexes/{indexId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'indexId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/projects/{projectId}/indexes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_operations = new Google_Service_Datastore_Resource_ProjectsOperations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'cancel' => array( - 'path' => 'v1/{+name}:cancel', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+name}/operations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/AllocateIdsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/AllocateIdsRequest.php deleted file mode 100644 index cca5fdb2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/AllocateIdsRequest.php +++ /dev/null @@ -1,38 +0,0 @@ -keys = $keys; - } - /** - * @return Google_Service_Datastore_Key - */ - public function getKeys() - { - return $this->keys; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/AllocateIdsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/AllocateIdsResponse.php deleted file mode 100644 index bb385803..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/AllocateIdsResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -keys = $keys; - } - /** - * @return Google_Service_Datastore_Key - */ - public function getKeys() - { - return $this->keys; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/ArrayValue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/ArrayValue.php deleted file mode 100644 index e177d986..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/ArrayValue.php +++ /dev/null @@ -1,38 +0,0 @@ -values = $values; - } - /** - * @return Google_Service_Datastore_Value - */ - public function getValues() - { - return $this->values; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/BeginTransactionRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/BeginTransactionRequest.php deleted file mode 100644 index 0773d0e0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/BeginTransactionRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -transactionOptions = $transactionOptions; - } - /** - * @return Google_Service_Datastore_TransactionOptions - */ - public function getTransactionOptions() - { - return $this->transactionOptions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/BeginTransactionResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/BeginTransactionResponse.php deleted file mode 100644 index 80cf09f7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/BeginTransactionResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -transaction = $transaction; - } - public function getTransaction() - { - return $this->transaction; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/CommitRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/CommitRequest.php deleted file mode 100644 index 2c0af4d1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/CommitRequest.php +++ /dev/null @@ -1,56 +0,0 @@ -mode = $mode; - } - public function getMode() - { - return $this->mode; - } - /** - * @param Google_Service_Datastore_Mutation - */ - public function setMutations($mutations) - { - $this->mutations = $mutations; - } - /** - * @return Google_Service_Datastore_Mutation - */ - public function getMutations() - { - return $this->mutations; - } - public function setTransaction($transaction) - { - $this->transaction = $transaction; - } - public function getTransaction() - { - return $this->transaction; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/CommitResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/CommitResponse.php deleted file mode 100644 index 49f04da2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/CommitResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -indexUpdates = $indexUpdates; - } - public function getIndexUpdates() - { - return $this->indexUpdates; - } - /** - * @param Google_Service_Datastore_MutationResult - */ - public function setMutationResults($mutationResults) - { - $this->mutationResults = $mutationResults; - } - /** - * @return Google_Service_Datastore_MutationResult - */ - public function getMutationResults() - { - return $this->mutationResults; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/CompositeFilter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/CompositeFilter.php deleted file mode 100644 index c84b3a2d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/CompositeFilter.php +++ /dev/null @@ -1,47 +0,0 @@ -filters = $filters; - } - /** - * @return Google_Service_Datastore_Filter - */ - public function getFilters() - { - return $this->filters; - } - public function setOp($op) - { - $this->op = $op; - } - public function getOp() - { - return $this->op; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/DatastoreEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/DatastoreEmpty.php deleted file mode 100644 index a5d3d069..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/DatastoreEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -key = $key; - } - /** - * @return Google_Service_Datastore_Key - */ - public function getKey() - { - return $this->key; - } - /** - * @param Google_Service_Datastore_Value - */ - public function setProperties($properties) - { - $this->properties = $properties; - } - /** - * @return Google_Service_Datastore_Value - */ - public function getProperties() - { - return $this->properties; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/EntityResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/EntityResult.php deleted file mode 100644 index dfd8979a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/EntityResult.php +++ /dev/null @@ -1,55 +0,0 @@ -cursor = $cursor; - } - public function getCursor() - { - return $this->cursor; - } - /** - * @param Google_Service_Datastore_Entity - */ - public function setEntity(Google_Service_Datastore_Entity $entity) - { - $this->entity = $entity; - } - /** - * @return Google_Service_Datastore_Entity - */ - public function getEntity() - { - return $this->entity; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/Filter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/Filter.php deleted file mode 100644 index 4f59b0e2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/Filter.php +++ /dev/null @@ -1,53 +0,0 @@ -compositeFilter = $compositeFilter; - } - /** - * @return Google_Service_Datastore_CompositeFilter - */ - public function getCompositeFilter() - { - return $this->compositeFilter; - } - /** - * @param Google_Service_Datastore_PropertyFilter - */ - public function setPropertyFilter(Google_Service_Datastore_PropertyFilter $propertyFilter) - { - $this->propertyFilter = $propertyFilter; - } - /** - * @return Google_Service_Datastore_PropertyFilter - */ - public function getPropertyFilter() - { - return $this->propertyFilter; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleDatastoreAdminV1CommonMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleDatastoreAdminV1CommonMetadata.php deleted file mode 100644 index 9c438d4d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleDatastoreAdminV1CommonMetadata.php +++ /dev/null @@ -1,66 +0,0 @@ -endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setOperationType($operationType) - { - $this->operationType = $operationType; - } - public function getOperationType() - { - return $this->operationType; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleDatastoreAdminV1EntityFilter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleDatastoreAdminV1EntityFilter.php deleted file mode 100644 index ac00953a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleDatastoreAdminV1EntityFilter.php +++ /dev/null @@ -1,40 +0,0 @@ -kinds = $kinds; - } - public function getKinds() - { - return $this->kinds; - } - public function setNamespaceIds($namespaceIds) - { - $this->namespaceIds = $namespaceIds; - } - public function getNamespaceIds() - { - return $this->namespaceIds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleDatastoreAdminV1ExportEntitiesMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleDatastoreAdminV1ExportEntitiesMetadata.php deleted file mode 100644 index 934833cc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleDatastoreAdminV1ExportEntitiesMetadata.php +++ /dev/null @@ -1,94 +0,0 @@ -common = $common; - } - /** - * @return Google_Service_Datastore_GoogleDatastoreAdminV1CommonMetadata - */ - public function getCommon() - { - return $this->common; - } - /** - * @param Google_Service_Datastore_GoogleDatastoreAdminV1EntityFilter - */ - public function setEntityFilter(Google_Service_Datastore_GoogleDatastoreAdminV1EntityFilter $entityFilter) - { - $this->entityFilter = $entityFilter; - } - /** - * @return Google_Service_Datastore_GoogleDatastoreAdminV1EntityFilter - */ - public function getEntityFilter() - { - return $this->entityFilter; - } - public function setOutputUrlPrefix($outputUrlPrefix) - { - $this->outputUrlPrefix = $outputUrlPrefix; - } - public function getOutputUrlPrefix() - { - return $this->outputUrlPrefix; - } - /** - * @param Google_Service_Datastore_GoogleDatastoreAdminV1Progress - */ - public function setProgressBytes(Google_Service_Datastore_GoogleDatastoreAdminV1Progress $progressBytes) - { - $this->progressBytes = $progressBytes; - } - /** - * @return Google_Service_Datastore_GoogleDatastoreAdminV1Progress - */ - public function getProgressBytes() - { - return $this->progressBytes; - } - /** - * @param Google_Service_Datastore_GoogleDatastoreAdminV1Progress - */ - public function setProgressEntities(Google_Service_Datastore_GoogleDatastoreAdminV1Progress $progressEntities) - { - $this->progressEntities = $progressEntities; - } - /** - * @return Google_Service_Datastore_GoogleDatastoreAdminV1Progress - */ - public function getProgressEntities() - { - return $this->progressEntities; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleDatastoreAdminV1ExportEntitiesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleDatastoreAdminV1ExportEntitiesRequest.php deleted file mode 100644 index c9ad4be3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleDatastoreAdminV1ExportEntitiesRequest.php +++ /dev/null @@ -1,55 +0,0 @@ -entityFilter = $entityFilter; - } - /** - * @return Google_Service_Datastore_GoogleDatastoreAdminV1EntityFilter - */ - public function getEntityFilter() - { - return $this->entityFilter; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setOutputUrlPrefix($outputUrlPrefix) - { - $this->outputUrlPrefix = $outputUrlPrefix; - } - public function getOutputUrlPrefix() - { - return $this->outputUrlPrefix; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleDatastoreAdminV1ExportEntitiesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleDatastoreAdminV1ExportEntitiesResponse.php deleted file mode 100644 index bb41c2c1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleDatastoreAdminV1ExportEntitiesResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -outputUrl = $outputUrl; - } - public function getOutputUrl() - { - return $this->outputUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleDatastoreAdminV1ImportEntitiesMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleDatastoreAdminV1ImportEntitiesMetadata.php deleted file mode 100644 index 6cb2b6dd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleDatastoreAdminV1ImportEntitiesMetadata.php +++ /dev/null @@ -1,94 +0,0 @@ -common = $common; - } - /** - * @return Google_Service_Datastore_GoogleDatastoreAdminV1CommonMetadata - */ - public function getCommon() - { - return $this->common; - } - /** - * @param Google_Service_Datastore_GoogleDatastoreAdminV1EntityFilter - */ - public function setEntityFilter(Google_Service_Datastore_GoogleDatastoreAdminV1EntityFilter $entityFilter) - { - $this->entityFilter = $entityFilter; - } - /** - * @return Google_Service_Datastore_GoogleDatastoreAdminV1EntityFilter - */ - public function getEntityFilter() - { - return $this->entityFilter; - } - public function setInputUrl($inputUrl) - { - $this->inputUrl = $inputUrl; - } - public function getInputUrl() - { - return $this->inputUrl; - } - /** - * @param Google_Service_Datastore_GoogleDatastoreAdminV1Progress - */ - public function setProgressBytes(Google_Service_Datastore_GoogleDatastoreAdminV1Progress $progressBytes) - { - $this->progressBytes = $progressBytes; - } - /** - * @return Google_Service_Datastore_GoogleDatastoreAdminV1Progress - */ - public function getProgressBytes() - { - return $this->progressBytes; - } - /** - * @param Google_Service_Datastore_GoogleDatastoreAdminV1Progress - */ - public function setProgressEntities(Google_Service_Datastore_GoogleDatastoreAdminV1Progress $progressEntities) - { - $this->progressEntities = $progressEntities; - } - /** - * @return Google_Service_Datastore_GoogleDatastoreAdminV1Progress - */ - public function getProgressEntities() - { - return $this->progressEntities; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleDatastoreAdminV1ImportEntitiesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleDatastoreAdminV1ImportEntitiesRequest.php deleted file mode 100644 index 10712065..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleDatastoreAdminV1ImportEntitiesRequest.php +++ /dev/null @@ -1,55 +0,0 @@ -entityFilter = $entityFilter; - } - /** - * @return Google_Service_Datastore_GoogleDatastoreAdminV1EntityFilter - */ - public function getEntityFilter() - { - return $this->entityFilter; - } - public function setInputUrl($inputUrl) - { - $this->inputUrl = $inputUrl; - } - public function getInputUrl() - { - return $this->inputUrl; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleDatastoreAdminV1Index.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleDatastoreAdminV1Index.php deleted file mode 100644 index 662454bf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleDatastoreAdminV1Index.php +++ /dev/null @@ -1,83 +0,0 @@ -ancestor = $ancestor; - } - public function getAncestor() - { - return $this->ancestor; - } - public function setIndexId($indexId) - { - $this->indexId = $indexId; - } - public function getIndexId() - { - return $this->indexId; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } - /** - * @param Google_Service_Datastore_GoogleDatastoreAdminV1IndexedProperty - */ - public function setProperties($properties) - { - $this->properties = $properties; - } - /** - * @return Google_Service_Datastore_GoogleDatastoreAdminV1IndexedProperty - */ - public function getProperties() - { - return $this->properties; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleDatastoreAdminV1IndexOperationMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleDatastoreAdminV1IndexOperationMetadata.php deleted file mode 100644 index 417874ed..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleDatastoreAdminV1IndexOperationMetadata.php +++ /dev/null @@ -1,62 +0,0 @@ -common = $common; - } - /** - * @return Google_Service_Datastore_GoogleDatastoreAdminV1CommonMetadata - */ - public function getCommon() - { - return $this->common; - } - public function setIndexId($indexId) - { - $this->indexId = $indexId; - } - public function getIndexId() - { - return $this->indexId; - } - /** - * @param Google_Service_Datastore_GoogleDatastoreAdminV1Progress - */ - public function setProgressEntities(Google_Service_Datastore_GoogleDatastoreAdminV1Progress $progressEntities) - { - $this->progressEntities = $progressEntities; - } - /** - * @return Google_Service_Datastore_GoogleDatastoreAdminV1Progress - */ - public function getProgressEntities() - { - return $this->progressEntities; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleDatastoreAdminV1IndexedProperty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleDatastoreAdminV1IndexedProperty.php deleted file mode 100644 index c86e737f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleDatastoreAdminV1IndexedProperty.php +++ /dev/null @@ -1,39 +0,0 @@ -direction = $direction; - } - public function getDirection() - { - return $this->direction; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleDatastoreAdminV1ListIndexesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleDatastoreAdminV1ListIndexesResponse.php deleted file mode 100644 index b8e46036..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleDatastoreAdminV1ListIndexesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -indexes = $indexes; - } - /** - * @return Google_Service_Datastore_GoogleDatastoreAdminV1Index - */ - public function getIndexes() - { - return $this->indexes; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleDatastoreAdminV1Progress.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleDatastoreAdminV1Progress.php deleted file mode 100644 index 677c7858..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleDatastoreAdminV1Progress.php +++ /dev/null @@ -1,39 +0,0 @@ -workCompleted = $workCompleted; - } - public function getWorkCompleted() - { - return $this->workCompleted; - } - public function setWorkEstimated($workEstimated) - { - $this->workEstimated = $workEstimated; - } - public function getWorkEstimated() - { - return $this->workEstimated; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleDatastoreAdminV1beta1CommonMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleDatastoreAdminV1beta1CommonMetadata.php deleted file mode 100644 index 6bfe2f6a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleDatastoreAdminV1beta1CommonMetadata.php +++ /dev/null @@ -1,66 +0,0 @@ -endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setOperationType($operationType) - { - $this->operationType = $operationType; - } - public function getOperationType() - { - return $this->operationType; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleDatastoreAdminV1beta1EntityFilter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleDatastoreAdminV1beta1EntityFilter.php deleted file mode 100644 index 85197443..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleDatastoreAdminV1beta1EntityFilter.php +++ /dev/null @@ -1,40 +0,0 @@ -kinds = $kinds; - } - public function getKinds() - { - return $this->kinds; - } - public function setNamespaceIds($namespaceIds) - { - $this->namespaceIds = $namespaceIds; - } - public function getNamespaceIds() - { - return $this->namespaceIds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleDatastoreAdminV1beta1ExportEntitiesMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleDatastoreAdminV1beta1ExportEntitiesMetadata.php deleted file mode 100644 index 3b8f202c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleDatastoreAdminV1beta1ExportEntitiesMetadata.php +++ /dev/null @@ -1,94 +0,0 @@ -common = $common; - } - /** - * @return Google_Service_Datastore_GoogleDatastoreAdminV1beta1CommonMetadata - */ - public function getCommon() - { - return $this->common; - } - /** - * @param Google_Service_Datastore_GoogleDatastoreAdminV1beta1EntityFilter - */ - public function setEntityFilter(Google_Service_Datastore_GoogleDatastoreAdminV1beta1EntityFilter $entityFilter) - { - $this->entityFilter = $entityFilter; - } - /** - * @return Google_Service_Datastore_GoogleDatastoreAdminV1beta1EntityFilter - */ - public function getEntityFilter() - { - return $this->entityFilter; - } - public function setOutputUrlPrefix($outputUrlPrefix) - { - $this->outputUrlPrefix = $outputUrlPrefix; - } - public function getOutputUrlPrefix() - { - return $this->outputUrlPrefix; - } - /** - * @param Google_Service_Datastore_GoogleDatastoreAdminV1beta1Progress - */ - public function setProgressBytes(Google_Service_Datastore_GoogleDatastoreAdminV1beta1Progress $progressBytes) - { - $this->progressBytes = $progressBytes; - } - /** - * @return Google_Service_Datastore_GoogleDatastoreAdminV1beta1Progress - */ - public function getProgressBytes() - { - return $this->progressBytes; - } - /** - * @param Google_Service_Datastore_GoogleDatastoreAdminV1beta1Progress - */ - public function setProgressEntities(Google_Service_Datastore_GoogleDatastoreAdminV1beta1Progress $progressEntities) - { - $this->progressEntities = $progressEntities; - } - /** - * @return Google_Service_Datastore_GoogleDatastoreAdminV1beta1Progress - */ - public function getProgressEntities() - { - return $this->progressEntities; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleDatastoreAdminV1beta1ExportEntitiesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleDatastoreAdminV1beta1ExportEntitiesResponse.php deleted file mode 100644 index 1258a545..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleDatastoreAdminV1beta1ExportEntitiesResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -outputUrl = $outputUrl; - } - public function getOutputUrl() - { - return $this->outputUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleDatastoreAdminV1beta1ImportEntitiesMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleDatastoreAdminV1beta1ImportEntitiesMetadata.php deleted file mode 100644 index eac1801d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleDatastoreAdminV1beta1ImportEntitiesMetadata.php +++ /dev/null @@ -1,94 +0,0 @@ -common = $common; - } - /** - * @return Google_Service_Datastore_GoogleDatastoreAdminV1beta1CommonMetadata - */ - public function getCommon() - { - return $this->common; - } - /** - * @param Google_Service_Datastore_GoogleDatastoreAdminV1beta1EntityFilter - */ - public function setEntityFilter(Google_Service_Datastore_GoogleDatastoreAdminV1beta1EntityFilter $entityFilter) - { - $this->entityFilter = $entityFilter; - } - /** - * @return Google_Service_Datastore_GoogleDatastoreAdminV1beta1EntityFilter - */ - public function getEntityFilter() - { - return $this->entityFilter; - } - public function setInputUrl($inputUrl) - { - $this->inputUrl = $inputUrl; - } - public function getInputUrl() - { - return $this->inputUrl; - } - /** - * @param Google_Service_Datastore_GoogleDatastoreAdminV1beta1Progress - */ - public function setProgressBytes(Google_Service_Datastore_GoogleDatastoreAdminV1beta1Progress $progressBytes) - { - $this->progressBytes = $progressBytes; - } - /** - * @return Google_Service_Datastore_GoogleDatastoreAdminV1beta1Progress - */ - public function getProgressBytes() - { - return $this->progressBytes; - } - /** - * @param Google_Service_Datastore_GoogleDatastoreAdminV1beta1Progress - */ - public function setProgressEntities(Google_Service_Datastore_GoogleDatastoreAdminV1beta1Progress $progressEntities) - { - $this->progressEntities = $progressEntities; - } - /** - * @return Google_Service_Datastore_GoogleDatastoreAdminV1beta1Progress - */ - public function getProgressEntities() - { - return $this->progressEntities; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleDatastoreAdminV1beta1Progress.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleDatastoreAdminV1beta1Progress.php deleted file mode 100644 index 81f85547..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleDatastoreAdminV1beta1Progress.php +++ /dev/null @@ -1,39 +0,0 @@ -workCompleted = $workCompleted; - } - public function getWorkCompleted() - { - return $this->workCompleted; - } - public function setWorkEstimated($workEstimated) - { - $this->workEstimated = $workEstimated; - } - public function getWorkEstimated() - { - return $this->workEstimated; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleLongrunningListOperationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleLongrunningListOperationsResponse.php deleted file mode 100644 index 72bf60bf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleLongrunningListOperationsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Datastore_GoogleLongrunningOperation - */ - public function setOperations($operations) - { - $this->operations = $operations; - } - /** - * @return Google_Service_Datastore_GoogleLongrunningOperation - */ - public function getOperations() - { - return $this->operations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleLongrunningOperation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleLongrunningOperation.php deleted file mode 100644 index a85a0aed..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GoogleLongrunningOperation.php +++ /dev/null @@ -1,73 +0,0 @@ -done = $done; - } - public function getDone() - { - return $this->done; - } - /** - * @param Google_Service_Datastore_Status - */ - public function setError(Google_Service_Datastore_Status $error) - { - $this->error = $error; - } - /** - * @return Google_Service_Datastore_Status - */ - public function getError() - { - return $this->error; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GqlQuery.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GqlQuery.php deleted file mode 100644 index d5c5fd7f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GqlQuery.php +++ /dev/null @@ -1,72 +0,0 @@ -allowLiterals = $allowLiterals; - } - public function getAllowLiterals() - { - return $this->allowLiterals; - } - /** - * @param Google_Service_Datastore_GqlQueryParameter - */ - public function setNamedBindings($namedBindings) - { - $this->namedBindings = $namedBindings; - } - /** - * @return Google_Service_Datastore_GqlQueryParameter - */ - public function getNamedBindings() - { - return $this->namedBindings; - } - /** - * @param Google_Service_Datastore_GqlQueryParameter - */ - public function setPositionalBindings($positionalBindings) - { - $this->positionalBindings = $positionalBindings; - } - /** - * @return Google_Service_Datastore_GqlQueryParameter - */ - public function getPositionalBindings() - { - return $this->positionalBindings; - } - public function setQueryString($queryString) - { - $this->queryString = $queryString; - } - public function getQueryString() - { - return $this->queryString; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GqlQueryParameter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GqlQueryParameter.php deleted file mode 100644 index e4c8b055..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/GqlQueryParameter.php +++ /dev/null @@ -1,46 +0,0 @@ -cursor = $cursor; - } - public function getCursor() - { - return $this->cursor; - } - /** - * @param Google_Service_Datastore_Value - */ - public function setValue(Google_Service_Datastore_Value $value) - { - $this->value = $value; - } - /** - * @return Google_Service_Datastore_Value - */ - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/Key.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/Key.php deleted file mode 100644 index d842ef68..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/Key.php +++ /dev/null @@ -1,54 +0,0 @@ -partitionId = $partitionId; - } - /** - * @return Google_Service_Datastore_PartitionId - */ - public function getPartitionId() - { - return $this->partitionId; - } - /** - * @param Google_Service_Datastore_PathElement - */ - public function setPath($path) - { - $this->path = $path; - } - /** - * @return Google_Service_Datastore_PathElement - */ - public function getPath() - { - return $this->path; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/KindExpression.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/KindExpression.php deleted file mode 100644 index 66b5ecfc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/KindExpression.php +++ /dev/null @@ -1,30 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/LatLng.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/LatLng.php deleted file mode 100644 index 31a9b80e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/LatLng.php +++ /dev/null @@ -1,39 +0,0 @@ -latitude = $latitude; - } - public function getLatitude() - { - return $this->latitude; - } - public function setLongitude($longitude) - { - $this->longitude = $longitude; - } - public function getLongitude() - { - return $this->longitude; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/LookupRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/LookupRequest.php deleted file mode 100644 index d3c3165a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/LookupRequest.php +++ /dev/null @@ -1,54 +0,0 @@ -keys = $keys; - } - /** - * @return Google_Service_Datastore_Key - */ - public function getKeys() - { - return $this->keys; - } - /** - * @param Google_Service_Datastore_ReadOptions - */ - public function setReadOptions(Google_Service_Datastore_ReadOptions $readOptions) - { - $this->readOptions = $readOptions; - } - /** - * @return Google_Service_Datastore_ReadOptions - */ - public function getReadOptions() - { - return $this->readOptions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/LookupResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/LookupResponse.php deleted file mode 100644 index 1f80a5f4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/LookupResponse.php +++ /dev/null @@ -1,70 +0,0 @@ -deferred = $deferred; - } - /** - * @return Google_Service_Datastore_Key - */ - public function getDeferred() - { - return $this->deferred; - } - /** - * @param Google_Service_Datastore_EntityResult - */ - public function setFound($found) - { - $this->found = $found; - } - /** - * @return Google_Service_Datastore_EntityResult - */ - public function getFound() - { - return $this->found; - } - /** - * @param Google_Service_Datastore_EntityResult - */ - public function setMissing($missing) - { - $this->missing = $missing; - } - /** - * @return Google_Service_Datastore_EntityResult - */ - public function getMissing() - { - return $this->missing; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/Mutation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/Mutation.php deleted file mode 100644 index c297a966..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/Mutation.php +++ /dev/null @@ -1,94 +0,0 @@ -baseVersion = $baseVersion; - } - public function getBaseVersion() - { - return $this->baseVersion; - } - /** - * @param Google_Service_Datastore_Key - */ - public function setDelete(Google_Service_Datastore_Key $delete) - { - $this->delete = $delete; - } - /** - * @return Google_Service_Datastore_Key - */ - public function getDelete() - { - return $this->delete; - } - /** - * @param Google_Service_Datastore_Entity - */ - public function setInsert(Google_Service_Datastore_Entity $insert) - { - $this->insert = $insert; - } - /** - * @return Google_Service_Datastore_Entity - */ - public function getInsert() - { - return $this->insert; - } - /** - * @param Google_Service_Datastore_Entity - */ - public function setUpdate(Google_Service_Datastore_Entity $update) - { - $this->update = $update; - } - /** - * @return Google_Service_Datastore_Entity - */ - public function getUpdate() - { - return $this->update; - } - /** - * @param Google_Service_Datastore_Entity - */ - public function setUpsert(Google_Service_Datastore_Entity $upsert) - { - $this->upsert = $upsert; - } - /** - * @return Google_Service_Datastore_Entity - */ - public function getUpsert() - { - return $this->upsert; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/MutationResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/MutationResult.php deleted file mode 100644 index e39ecd91..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/MutationResult.php +++ /dev/null @@ -1,55 +0,0 @@ -conflictDetected = $conflictDetected; - } - public function getConflictDetected() - { - return $this->conflictDetected; - } - /** - * @param Google_Service_Datastore_Key - */ - public function setKey(Google_Service_Datastore_Key $key) - { - $this->key = $key; - } - /** - * @return Google_Service_Datastore_Key - */ - public function getKey() - { - return $this->key; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/PartitionId.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/PartitionId.php deleted file mode 100644 index 0cf85f32..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/PartitionId.php +++ /dev/null @@ -1,39 +0,0 @@ -namespaceId = $namespaceId; - } - public function getNamespaceId() - { - return $this->namespaceId; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/PathElement.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/PathElement.php deleted file mode 100644 index c9b5491d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/PathElement.php +++ /dev/null @@ -1,48 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/Projection.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/Projection.php deleted file mode 100644 index 9088b5da..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/Projection.php +++ /dev/null @@ -1,37 +0,0 @@ -property = $property; - } - /** - * @return Google_Service_Datastore_PropertyReference - */ - public function getProperty() - { - return $this->property; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/PropertyFilter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/PropertyFilter.php deleted file mode 100644 index 7ae91047..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/PropertyFilter.php +++ /dev/null @@ -1,62 +0,0 @@ -op = $op; - } - public function getOp() - { - return $this->op; - } - /** - * @param Google_Service_Datastore_PropertyReference - */ - public function setProperty(Google_Service_Datastore_PropertyReference $property) - { - $this->property = $property; - } - /** - * @return Google_Service_Datastore_PropertyReference - */ - public function getProperty() - { - return $this->property; - } - /** - * @param Google_Service_Datastore_Value - */ - public function setValue(Google_Service_Datastore_Value $value) - { - $this->value = $value; - } - /** - * @return Google_Service_Datastore_Value - */ - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/PropertyOrder.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/PropertyOrder.php deleted file mode 100644 index 67cf0b35..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/PropertyOrder.php +++ /dev/null @@ -1,46 +0,0 @@ -direction = $direction; - } - public function getDirection() - { - return $this->direction; - } - /** - * @param Google_Service_Datastore_PropertyReference - */ - public function setProperty(Google_Service_Datastore_PropertyReference $property) - { - $this->property = $property; - } - /** - * @return Google_Service_Datastore_PropertyReference - */ - public function getProperty() - { - return $this->property; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/PropertyReference.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/PropertyReference.php deleted file mode 100644 index ddb4ec4a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/PropertyReference.php +++ /dev/null @@ -1,30 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/Query.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/Query.php deleted file mode 100644 index 74db5eac..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/Query.php +++ /dev/null @@ -1,138 +0,0 @@ -distinctOn = $distinctOn; - } - /** - * @return Google_Service_Datastore_PropertyReference - */ - public function getDistinctOn() - { - return $this->distinctOn; - } - public function setEndCursor($endCursor) - { - $this->endCursor = $endCursor; - } - public function getEndCursor() - { - return $this->endCursor; - } - /** - * @param Google_Service_Datastore_Filter - */ - public function setFilter(Google_Service_Datastore_Filter $filter) - { - $this->filter = $filter; - } - /** - * @return Google_Service_Datastore_Filter - */ - public function getFilter() - { - return $this->filter; - } - /** - * @param Google_Service_Datastore_KindExpression - */ - public function setKind($kind) - { - $this->kind = $kind; - } - /** - * @return Google_Service_Datastore_KindExpression - */ - public function getKind() - { - return $this->kind; - } - public function setLimit($limit) - { - $this->limit = $limit; - } - public function getLimit() - { - return $this->limit; - } - public function setOffset($offset) - { - $this->offset = $offset; - } - public function getOffset() - { - return $this->offset; - } - /** - * @param Google_Service_Datastore_PropertyOrder - */ - public function setOrder($order) - { - $this->order = $order; - } - /** - * @return Google_Service_Datastore_PropertyOrder - */ - public function getOrder() - { - return $this->order; - } - /** - * @param Google_Service_Datastore_Projection - */ - public function setProjection($projection) - { - $this->projection = $projection; - } - /** - * @return Google_Service_Datastore_Projection - */ - public function getProjection() - { - return $this->projection; - } - public function setStartCursor($startCursor) - { - $this->startCursor = $startCursor; - } - public function getStartCursor() - { - return $this->startCursor; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/QueryResultBatch.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/QueryResultBatch.php deleted file mode 100644 index 8902dd20..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/QueryResultBatch.php +++ /dev/null @@ -1,92 +0,0 @@ -endCursor = $endCursor; - } - public function getEndCursor() - { - return $this->endCursor; - } - public function setEntityResultType($entityResultType) - { - $this->entityResultType = $entityResultType; - } - public function getEntityResultType() - { - return $this->entityResultType; - } - /** - * @param Google_Service_Datastore_EntityResult - */ - public function setEntityResults($entityResults) - { - $this->entityResults = $entityResults; - } - /** - * @return Google_Service_Datastore_EntityResult - */ - public function getEntityResults() - { - return $this->entityResults; - } - public function setMoreResults($moreResults) - { - $this->moreResults = $moreResults; - } - public function getMoreResults() - { - return $this->moreResults; - } - public function setSkippedCursor($skippedCursor) - { - $this->skippedCursor = $skippedCursor; - } - public function getSkippedCursor() - { - return $this->skippedCursor; - } - public function setSkippedResults($skippedResults) - { - $this->skippedResults = $skippedResults; - } - public function getSkippedResults() - { - return $this->skippedResults; - } - public function setSnapshotVersion($snapshotVersion) - { - $this->snapshotVersion = $snapshotVersion; - } - public function getSnapshotVersion() - { - return $this->snapshotVersion; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/ReadOnly.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/ReadOnly.php deleted file mode 100644 index f138b551..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/ReadOnly.php +++ /dev/null @@ -1,20 +0,0 @@ -readConsistency = $readConsistency; - } - public function getReadConsistency() - { - return $this->readConsistency; - } - public function setTransaction($transaction) - { - $this->transaction = $transaction; - } - public function getTransaction() - { - return $this->transaction; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/ReadWrite.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/ReadWrite.php deleted file mode 100644 index 3f5d0932..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/ReadWrite.php +++ /dev/null @@ -1,30 +0,0 @@ -previousTransaction = $previousTransaction; - } - public function getPreviousTransaction() - { - return $this->previousTransaction; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/ReserveIdsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/ReserveIdsRequest.php deleted file mode 100644 index 25837fa2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/ReserveIdsRequest.php +++ /dev/null @@ -1,47 +0,0 @@ -databaseId = $databaseId; - } - public function getDatabaseId() - { - return $this->databaseId; - } - /** - * @param Google_Service_Datastore_Key - */ - public function setKeys($keys) - { - $this->keys = $keys; - } - /** - * @return Google_Service_Datastore_Key - */ - public function getKeys() - { - return $this->keys; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/ReserveIdsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/ReserveIdsResponse.php deleted file mode 100644 index c2870d71..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/ReserveIdsResponse.php +++ /dev/null @@ -1,20 +0,0 @@ - - * $datastoreService = new Google_Service_Datastore(...); - * $projects = $datastoreService->projects; - * - */ -class Google_Service_Datastore_Resource_Projects extends Google_Service_Resource -{ - /** - * Allocates IDs for the given keys, which is useful for referencing an entity - * before it is inserted. (projects.allocateIds) - * - * @param string $projectId Required. The ID of the project against which to - * make the request. - * @param Google_Service_Datastore_AllocateIdsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Datastore_AllocateIdsResponse - */ - public function allocateIds($projectId, Google_Service_Datastore_AllocateIdsRequest $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('allocateIds', array($params), "Google_Service_Datastore_AllocateIdsResponse"); - } - /** - * Begins a new transaction. (projects.beginTransaction) - * - * @param string $projectId Required. The ID of the project against which to - * make the request. - * @param Google_Service_Datastore_BeginTransactionRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Datastore_BeginTransactionResponse - */ - public function beginTransaction($projectId, Google_Service_Datastore_BeginTransactionRequest $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('beginTransaction', array($params), "Google_Service_Datastore_BeginTransactionResponse"); - } - /** - * Commits a transaction, optionally creating, deleting or modifying some - * entities. (projects.commit) - * - * @param string $projectId Required. The ID of the project against which to - * make the request. - * @param Google_Service_Datastore_CommitRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Datastore_CommitResponse - */ - public function commit($projectId, Google_Service_Datastore_CommitRequest $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('commit', array($params), "Google_Service_Datastore_CommitResponse"); - } - /** - * Exports a copy of all or a subset of entities from Google Cloud Datastore to - * another storage system, such as Google Cloud Storage. Recent updates to - * entities may not be reflected in the export. The export occurs in the - * background and its progress can be monitored and managed via the Operation - * resource that is created. The output of an export may only be used once the - * associated operation is done. If an export operation is cancelled before - * completion it may leave partial data behind in Google Cloud Storage. - * (projects.export) - * - * @param string $projectId Required. Project ID against which to make the - * request. - * @param Google_Service_Datastore_GoogleDatastoreAdminV1ExportEntitiesRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Datastore_GoogleLongrunningOperation - */ - public function export($projectId, Google_Service_Datastore_GoogleDatastoreAdminV1ExportEntitiesRequest $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('export', array($params), "Google_Service_Datastore_GoogleLongrunningOperation"); - } - /** - * Imports entities into Google Cloud Datastore. Existing entities with the same - * key are overwritten. The import occurs in the background and its progress can - * be monitored and managed via the Operation resource that is created. If an - * ImportEntities operation is cancelled, it is possible that a subset of the - * data has already been imported to Cloud Datastore. (projects.import) - * - * @param string $projectId Required. Project ID against which to make the - * request. - * @param Google_Service_Datastore_GoogleDatastoreAdminV1ImportEntitiesRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Datastore_GoogleLongrunningOperation - */ - public function import($projectId, Google_Service_Datastore_GoogleDatastoreAdminV1ImportEntitiesRequest $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('import', array($params), "Google_Service_Datastore_GoogleLongrunningOperation"); - } - /** - * Looks up entities by key. (projects.lookup) - * - * @param string $projectId Required. The ID of the project against which to - * make the request. - * @param Google_Service_Datastore_LookupRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Datastore_LookupResponse - */ - public function lookup($projectId, Google_Service_Datastore_LookupRequest $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('lookup', array($params), "Google_Service_Datastore_LookupResponse"); - } - /** - * Prevents the supplied keys' IDs from being auto-allocated by Cloud Datastore. - * (projects.reserveIds) - * - * @param string $projectId Required. The ID of the project against which to - * make the request. - * @param Google_Service_Datastore_ReserveIdsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Datastore_ReserveIdsResponse - */ - public function reserveIds($projectId, Google_Service_Datastore_ReserveIdsRequest $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('reserveIds', array($params), "Google_Service_Datastore_ReserveIdsResponse"); - } - /** - * Rolls back a transaction. (projects.rollback) - * - * @param string $projectId Required. The ID of the project against which to - * make the request. - * @param Google_Service_Datastore_RollbackRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Datastore_RollbackResponse - */ - public function rollback($projectId, Google_Service_Datastore_RollbackRequest $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('rollback', array($params), "Google_Service_Datastore_RollbackResponse"); - } - /** - * Queries for entities. (projects.runQuery) - * - * @param string $projectId Required. The ID of the project against which to - * make the request. - * @param Google_Service_Datastore_RunQueryRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Datastore_RunQueryResponse - */ - public function runQuery($projectId, Google_Service_Datastore_RunQueryRequest $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('runQuery', array($params), "Google_Service_Datastore_RunQueryResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/Resource/ProjectsIndexes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/Resource/ProjectsIndexes.php deleted file mode 100644 index 04c424ae..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/Resource/ProjectsIndexes.php +++ /dev/null @@ -1,109 +0,0 @@ - - * $datastoreService = new Google_Service_Datastore(...); - * $indexes = $datastoreService->indexes; - * - */ -class Google_Service_Datastore_Resource_ProjectsIndexes extends Google_Service_Resource -{ - /** - * Creates the specified index. A newly created index's initial state is - * `CREATING`. On completion of the returned google.longrunning.Operation, the - * state will be `READY`. If the index already exists, the call will return an - * `ALREADY_EXISTS` status. - * - * During index creation, the process could result in an error, in which case - * the index will move to the `ERROR` state. The process can be recovered by - * fixing the data that caused the error, removing the index with delete, then - * re-creating the index with create. - * - * Indexes with a single property cannot be created. (indexes.create) - * - * @param string $projectId Project ID against which to make the request. - * @param Google_Service_Datastore_GoogleDatastoreAdminV1Index $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Datastore_GoogleLongrunningOperation - */ - public function create($projectId, Google_Service_Datastore_GoogleDatastoreAdminV1Index $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Datastore_GoogleLongrunningOperation"); - } - /** - * Deletes an existing index. An index can only be deleted if it is in a `READY` - * or `ERROR` state. On successful execution of the request, the index will be - * in a `DELETING` state. And on completion of the returned - * google.longrunning.Operation, the index will be removed. - * - * During index deletion, the process could result in an error, in which case - * the index will move to the `ERROR` state. The process can be recovered by - * fixing the data that caused the error, followed by calling delete again. - * (indexes.delete) - * - * @param string $projectId Project ID against which to make the request. - * @param string $indexId The resource ID of the index to delete. - * @param array $optParams Optional parameters. - * @return Google_Service_Datastore_GoogleLongrunningOperation - */ - public function delete($projectId, $indexId, $optParams = array()) - { - $params = array('projectId' => $projectId, 'indexId' => $indexId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Datastore_GoogleLongrunningOperation"); - } - /** - * Gets an index. (indexes.get) - * - * @param string $projectId Project ID against which to make the request. - * @param string $indexId The resource ID of the index to get. - * @param array $optParams Optional parameters. - * @return Google_Service_Datastore_GoogleDatastoreAdminV1Index - */ - public function get($projectId, $indexId, $optParams = array()) - { - $params = array('projectId' => $projectId, 'indexId' => $indexId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Datastore_GoogleDatastoreAdminV1Index"); - } - /** - * Lists the indexes that match the specified filters. Datastore uses an - * eventually consistent query to fetch the list of indexes and may occasionally - * return stale results. (indexes.listProjectsIndexes) - * - * @param string $projectId Project ID against which to make the request. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The next_page_token value returned from a - * previous List request, if any. - * @opt_param int pageSize The maximum number of items to return. If zero, then - * all results will be returned. - * @opt_param string filter - * @return Google_Service_Datastore_GoogleDatastoreAdminV1ListIndexesResponse - */ - public function listProjectsIndexes($projectId, $optParams = array()) - { - $params = array('projectId' => $projectId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Datastore_GoogleDatastoreAdminV1ListIndexesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/Resource/ProjectsOperations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/Resource/ProjectsOperations.php deleted file mode 100644 index 65e97cfb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/Resource/ProjectsOperations.php +++ /dev/null @@ -1,106 +0,0 @@ - - * $datastoreService = new Google_Service_Datastore(...); - * $operations = $datastoreService->operations; - * - */ -class Google_Service_Datastore_Resource_ProjectsOperations extends Google_Service_Resource -{ - /** - * Starts asynchronous cancellation on a long-running operation. The server - * makes a best effort to cancel the operation, but success is not guaranteed. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or - * other methods to check whether the cancellation succeeded or whether the - * operation completed despite cancellation. On successful cancellation, the - * operation is not deleted; instead, it becomes an operation with an - * Operation.error value with a google.rpc.Status.code of 1, corresponding to - * `Code.CANCELLED`. (operations.cancel) - * - * @param string $name The name of the operation resource to be cancelled. - * @param array $optParams Optional parameters. - * @return Google_Service_Datastore_DatastoreEmpty - */ - public function cancel($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('cancel', array($params), "Google_Service_Datastore_DatastoreEmpty"); - } - /** - * Deletes a long-running operation. This method indicates that the client is no - * longer interested in the operation result. It does not cancel the operation. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. (operations.delete) - * - * @param string $name The name of the operation resource to be deleted. - * @param array $optParams Optional parameters. - * @return Google_Service_Datastore_DatastoreEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Datastore_DatastoreEmpty"); - } - /** - * Gets the latest state of a long-running operation. Clients can use this - * method to poll the operation result at intervals as recommended by the API - * service. (operations.get) - * - * @param string $name The name of the operation resource. - * @param array $optParams Optional parameters. - * @return Google_Service_Datastore_GoogleLongrunningOperation - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Datastore_GoogleLongrunningOperation"); - } - /** - * Lists operations that match the specified filter in the request. If the - * server doesn't support this method, it returns `UNIMPLEMENTED`. - * - * NOTE: the `name` binding allows API services to override the binding to use - * different resource name schemes, such as `users/operations`. To override the - * binding, API services can add a binding such as - * `"/v1/{name=users}/operations"` to their service configuration. For backwards - * compatibility, the default name includes the operations collection id, - * however overriding users must ensure the name binding is the parent resource, - * without the operations collection id. (operations.listProjectsOperations) - * - * @param string $name The name of the operation's parent resource. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The standard list page token. - * @opt_param int pageSize The standard list page size. - * @opt_param string filter The standard list filter. - * @return Google_Service_Datastore_GoogleLongrunningListOperationsResponse - */ - public function listProjectsOperations($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Datastore_GoogleLongrunningListOperationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/RollbackRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/RollbackRequest.php deleted file mode 100644 index 3323af02..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/RollbackRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -transaction = $transaction; - } - public function getTransaction() - { - return $this->transaction; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/RollbackResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/RollbackResponse.php deleted file mode 100644 index f4eab4ee..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/RollbackResponse.php +++ /dev/null @@ -1,20 +0,0 @@ -gqlQuery = $gqlQuery; - } - /** - * @return Google_Service_Datastore_GqlQuery - */ - public function getGqlQuery() - { - return $this->gqlQuery; - } - /** - * @param Google_Service_Datastore_PartitionId - */ - public function setPartitionId(Google_Service_Datastore_PartitionId $partitionId) - { - $this->partitionId = $partitionId; - } - /** - * @return Google_Service_Datastore_PartitionId - */ - public function getPartitionId() - { - return $this->partitionId; - } - /** - * @param Google_Service_Datastore_Query - */ - public function setQuery(Google_Service_Datastore_Query $query) - { - $this->query = $query; - } - /** - * @return Google_Service_Datastore_Query - */ - public function getQuery() - { - return $this->query; - } - /** - * @param Google_Service_Datastore_ReadOptions - */ - public function setReadOptions(Google_Service_Datastore_ReadOptions $readOptions) - { - $this->readOptions = $readOptions; - } - /** - * @return Google_Service_Datastore_ReadOptions - */ - public function getReadOptions() - { - return $this->readOptions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/RunQueryResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/RunQueryResponse.php deleted file mode 100644 index 73b2b14b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/RunQueryResponse.php +++ /dev/null @@ -1,53 +0,0 @@ -batch = $batch; - } - /** - * @return Google_Service_Datastore_QueryResultBatch - */ - public function getBatch() - { - return $this->batch; - } - /** - * @param Google_Service_Datastore_Query - */ - public function setQuery(Google_Service_Datastore_Query $query) - { - $this->query = $query; - } - /** - * @return Google_Service_Datastore_Query - */ - public function getQuery() - { - return $this->query; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/Status.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/Status.php deleted file mode 100644 index 3e659676..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/Status.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/TransactionOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/TransactionOptions.php deleted file mode 100644 index fb2dcbd9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/TransactionOptions.php +++ /dev/null @@ -1,53 +0,0 @@ -readOnly = $readOnly; - } - /** - * @return Google_Service_Datastore_ReadOnly - */ - public function getReadOnly() - { - return $this->readOnly; - } - /** - * @param Google_Service_Datastore_ReadWrite - */ - public function setReadWrite(Google_Service_Datastore_ReadWrite $readWrite) - { - $this->readWrite = $readWrite; - } - /** - * @return Google_Service_Datastore_ReadWrite - */ - public function getReadWrite() - { - return $this->readWrite; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/Value.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/Value.php deleted file mode 100644 index 02c08f1e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Datastore/Value.php +++ /dev/null @@ -1,166 +0,0 @@ -arrayValue = $arrayValue; - } - /** - * @return Google_Service_Datastore_ArrayValue - */ - public function getArrayValue() - { - return $this->arrayValue; - } - public function setBlobValue($blobValue) - { - $this->blobValue = $blobValue; - } - public function getBlobValue() - { - return $this->blobValue; - } - public function setBooleanValue($booleanValue) - { - $this->booleanValue = $booleanValue; - } - public function getBooleanValue() - { - return $this->booleanValue; - } - public function setDoubleValue($doubleValue) - { - $this->doubleValue = $doubleValue; - } - public function getDoubleValue() - { - return $this->doubleValue; - } - /** - * @param Google_Service_Datastore_Entity - */ - public function setEntityValue(Google_Service_Datastore_Entity $entityValue) - { - $this->entityValue = $entityValue; - } - /** - * @return Google_Service_Datastore_Entity - */ - public function getEntityValue() - { - return $this->entityValue; - } - public function setExcludeFromIndexes($excludeFromIndexes) - { - $this->excludeFromIndexes = $excludeFromIndexes; - } - public function getExcludeFromIndexes() - { - return $this->excludeFromIndexes; - } - /** - * @param Google_Service_Datastore_LatLng - */ - public function setGeoPointValue(Google_Service_Datastore_LatLng $geoPointValue) - { - $this->geoPointValue = $geoPointValue; - } - /** - * @return Google_Service_Datastore_LatLng - */ - public function getGeoPointValue() - { - return $this->geoPointValue; - } - public function setIntegerValue($integerValue) - { - $this->integerValue = $integerValue; - } - public function getIntegerValue() - { - return $this->integerValue; - } - /** - * @param Google_Service_Datastore_Key - */ - public function setKeyValue(Google_Service_Datastore_Key $keyValue) - { - $this->keyValue = $keyValue; - } - /** - * @return Google_Service_Datastore_Key - */ - public function getKeyValue() - { - return $this->keyValue; - } - public function setMeaning($meaning) - { - $this->meaning = $meaning; - } - public function getMeaning() - { - return $this->meaning; - } - public function setNullValue($nullValue) - { - $this->nullValue = $nullValue; - } - public function getNullValue() - { - return $this->nullValue; - } - public function setStringValue($stringValue) - { - $this->stringValue = $stringValue; - } - public function getStringValue() - { - return $this->stringValue; - } - public function setTimestampValue($timestampValue) - { - $this->timestampValue = $timestampValue; - } - public function getTimestampValue() - { - return $this->timestampValue; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager.php deleted file mode 100644 index 53bae9b1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager.php +++ /dev/null @@ -1,494 +0,0 @@ - - * Declares, configures, and deploys complex solutions on Google Cloud Platform.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_DeploymentManager extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** View your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM_READ_ONLY = - "https://www.googleapis.com/auth/cloud-platform.read-only"; - /** View and manage your Google Cloud Platform management resources and deployment status information. */ - const NDEV_CLOUDMAN = - "https://www.googleapis.com/auth/ndev.cloudman"; - /** View your Google Cloud Platform management resources and deployment status information. */ - const NDEV_CLOUDMAN_READONLY = - "https://www.googleapis.com/auth/ndev.cloudman.readonly"; - - public $deployments; - public $manifests; - public $operations; - public $resources; - public $types; - - /** - * Constructs the internal representation of the DeploymentManager service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://www.googleapis.com/'; - $this->servicePath = 'deploymentmanager/v2/projects/'; - $this->batchPath = 'batch/deploymentmanager/v2'; - $this->version = 'v2'; - $this->serviceName = 'deploymentmanager'; - - $this->deployments = new Google_Service_DeploymentManager_Resource_Deployments( - $this, - $this->serviceName, - 'deployments', - array( - 'methods' => array( - 'cancelPreview' => array( - 'path' => '{project}/global/deployments/{deployment}/cancelPreview', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'deployment' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => '{project}/global/deployments/{deployment}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'deployment' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'deletePolicy' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/global/deployments/{deployment}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'deployment' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getIamPolicy' => array( - 'path' => '{project}/global/deployments/{resource}/getIamPolicy', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/global/deployments', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'createPolicy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'preview' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'list' => array( - 'path' => '{project}/global/deployments', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => '{project}/global/deployments/{deployment}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'deployment' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'createPolicy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'deletePolicy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'preview' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'setIamPolicy' => array( - 'path' => '{project}/global/deployments/{resource}/setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'stop' => array( - 'path' => '{project}/global/deployments/{deployment}/stop', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'deployment' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => '{project}/global/deployments/{resource}/testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => '{project}/global/deployments/{deployment}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'deployment' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'createPolicy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'deletePolicy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'preview' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ), - ) - ) - ); - $this->manifests = new Google_Service_DeploymentManager_Resource_Manifests( - $this, - $this->serviceName, - 'manifests', - array( - 'methods' => array( - 'get' => array( - 'path' => '{project}/global/deployments/{deployment}/manifests/{manifest}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'deployment' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'manifest' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/global/deployments/{deployment}/manifests', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'deployment' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->operations = new Google_Service_DeploymentManager_Resource_Operations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'get' => array( - 'path' => '{project}/global/operations/{operation}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'operation' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/global/operations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->resources = new Google_Service_DeploymentManager_Resource_Resources( - $this, - $this->serviceName, - 'resources', - array( - 'methods' => array( - 'get' => array( - 'path' => '{project}/global/deployments/{deployment}/resources/{resource}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'deployment' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/global/deployments/{deployment}/resources', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'deployment' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->types = new Google_Service_DeploymentManager_Resource_Types( - $this, - $this->serviceName, - 'types', - array( - 'methods' => array( - 'list' => array( - 'path' => '{project}/global/types', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/AuditConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/AuditConfig.php deleted file mode 100644 index 8a79182f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/AuditConfig.php +++ /dev/null @@ -1,56 +0,0 @@ -auditLogConfigs = $auditLogConfigs; - } - /** - * @return Google_Service_DeploymentManager_AuditLogConfig - */ - public function getAuditLogConfigs() - { - return $this->auditLogConfigs; - } - public function setExemptedMembers($exemptedMembers) - { - $this->exemptedMembers = $exemptedMembers; - } - public function getExemptedMembers() - { - return $this->exemptedMembers; - } - public function setService($service) - { - $this->service = $service; - } - public function getService() - { - return $this->service; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/AuditLogConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/AuditLogConfig.php deleted file mode 100644 index 1a5847d7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/AuditLogConfig.php +++ /dev/null @@ -1,40 +0,0 @@ -exemptedMembers = $exemptedMembers; - } - public function getExemptedMembers() - { - return $this->exemptedMembers; - } - public function setLogType($logType) - { - $this->logType = $logType; - } - public function getLogType() - { - return $this->logType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/AuthorizationLoggingOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/AuthorizationLoggingOptions.php deleted file mode 100644 index c64ce262..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/AuthorizationLoggingOptions.php +++ /dev/null @@ -1,30 +0,0 @@ -permissionType = $permissionType; - } - public function getPermissionType() - { - return $this->permissionType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/Binding.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/Binding.php deleted file mode 100644 index d7a53bce..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/Binding.php +++ /dev/null @@ -1,56 +0,0 @@ -condition = $condition; - } - /** - * @return Google_Service_DeploymentManager_Expr - */ - public function getCondition() - { - return $this->condition; - } - public function setMembers($members) - { - $this->members = $members; - } - public function getMembers() - { - return $this->members; - } - public function setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/Condition.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/Condition.php deleted file mode 100644 index 443e8532..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/Condition.php +++ /dev/null @@ -1,76 +0,0 @@ -iam = $iam; - } - public function getIam() - { - return $this->iam; - } - public function setOp($op) - { - $this->op = $op; - } - public function getOp() - { - return $this->op; - } - public function setSvc($svc) - { - $this->svc = $svc; - } - public function getSvc() - { - return $this->svc; - } - public function setSys($sys) - { - $this->sys = $sys; - } - public function getSys() - { - return $this->sys; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } - public function setValues($values) - { - $this->values = $values; - } - public function getValues() - { - return $this->values; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/ConfigFile.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/ConfigFile.php deleted file mode 100644 index 10c96ca7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/ConfigFile.php +++ /dev/null @@ -1,30 +0,0 @@ -content = $content; - } - public function getContent() - { - return $this->content; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/Deployment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/Deployment.php deleted file mode 100644 index 32840f9c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/Deployment.php +++ /dev/null @@ -1,158 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setFingerprint($fingerprint) - { - $this->fingerprint = $fingerprint; - } - public function getFingerprint() - { - return $this->fingerprint; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setInsertTime($insertTime) - { - $this->insertTime = $insertTime; - } - public function getInsertTime() - { - return $this->insertTime; - } - /** - * @param Google_Service_DeploymentManager_DeploymentLabelEntry - */ - public function setLabels($labels) - { - $this->labels = $labels; - } - /** - * @return Google_Service_DeploymentManager_DeploymentLabelEntry - */ - public function getLabels() - { - return $this->labels; - } - public function setManifest($manifest) - { - $this->manifest = $manifest; - } - public function getManifest() - { - return $this->manifest; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_DeploymentManager_Operation - */ - public function setOperation(Google_Service_DeploymentManager_Operation $operation) - { - $this->operation = $operation; - } - /** - * @return Google_Service_DeploymentManager_Operation - */ - public function getOperation() - { - return $this->operation; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_DeploymentManager_TargetConfiguration - */ - public function setTarget(Google_Service_DeploymentManager_TargetConfiguration $target) - { - $this->target = $target; - } - /** - * @return Google_Service_DeploymentManager_TargetConfiguration - */ - public function getTarget() - { - return $this->target; - } - /** - * @param Google_Service_DeploymentManager_DeploymentUpdate - */ - public function setUpdate(Google_Service_DeploymentManager_DeploymentUpdate $update) - { - $this->update = $update; - } - /** - * @return Google_Service_DeploymentManager_DeploymentUpdate - */ - public function getUpdate() - { - return $this->update; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/DeploymentLabelEntry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/DeploymentLabelEntry.php deleted file mode 100644 index 802f44c9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/DeploymentLabelEntry.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/DeploymentUpdate.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/DeploymentUpdate.php deleted file mode 100644 index 18f29687..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/DeploymentUpdate.php +++ /dev/null @@ -1,56 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - /** - * @param Google_Service_DeploymentManager_DeploymentUpdateLabelEntry - */ - public function setLabels($labels) - { - $this->labels = $labels; - } - /** - * @return Google_Service_DeploymentManager_DeploymentUpdateLabelEntry - */ - public function getLabels() - { - return $this->labels; - } - public function setManifest($manifest) - { - $this->manifest = $manifest; - } - public function getManifest() - { - return $this->manifest; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/DeploymentUpdateLabelEntry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/DeploymentUpdateLabelEntry.php deleted file mode 100644 index 7f668675..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/DeploymentUpdateLabelEntry.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/DeploymentmanagerResource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/DeploymentmanagerResource.php deleted file mode 100644 index 73c745fe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/DeploymentmanagerResource.php +++ /dev/null @@ -1,151 +0,0 @@ -accessControl = $accessControl; - } - /** - * @return Google_Service_DeploymentManager_ResourceAccessControl - */ - public function getAccessControl() - { - return $this->accessControl; - } - public function setFinalProperties($finalProperties) - { - $this->finalProperties = $finalProperties; - } - public function getFinalProperties() - { - return $this->finalProperties; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setInsertTime($insertTime) - { - $this->insertTime = $insertTime; - } - public function getInsertTime() - { - return $this->insertTime; - } - public function setManifest($manifest) - { - $this->manifest = $manifest; - } - public function getManifest() - { - return $this->manifest; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setProperties($properties) - { - $this->properties = $properties; - } - public function getProperties() - { - return $this->properties; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - /** - * @param Google_Service_DeploymentManager_ResourceUpdate - */ - public function setUpdate(Google_Service_DeploymentManager_ResourceUpdate $update) - { - $this->update = $update; - } - /** - * @return Google_Service_DeploymentManager_ResourceUpdate - */ - public function getUpdate() - { - return $this->update; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } - /** - * @param Google_Service_DeploymentManager_DeploymentmanagerResourceWarnings - */ - public function setWarnings($warnings) - { - $this->warnings = $warnings; - } - /** - * @return Google_Service_DeploymentManager_DeploymentmanagerResourceWarnings - */ - public function getWarnings() - { - return $this->warnings; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/DeploymentmanagerResourceWarnings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/DeploymentmanagerResourceWarnings.php deleted file mode 100644 index c6c2a466..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/DeploymentmanagerResourceWarnings.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_DeploymentManager_DeploymentmanagerResourceWarningsData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_DeploymentManager_DeploymentmanagerResourceWarningsData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/DeploymentmanagerResourceWarningsData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/DeploymentmanagerResourceWarningsData.php deleted file mode 100644 index 35e93e84..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/DeploymentmanagerResourceWarningsData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/DeploymentsCancelPreviewRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/DeploymentsCancelPreviewRequest.php deleted file mode 100644 index e6cc462a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/DeploymentsCancelPreviewRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -fingerprint = $fingerprint; - } - public function getFingerprint() - { - return $this->fingerprint; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/DeploymentsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/DeploymentsListResponse.php deleted file mode 100644 index 42439430..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/DeploymentsListResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -deployments = $deployments; - } - /** - * @return Google_Service_DeploymentManager_Deployment - */ - public function getDeployments() - { - return $this->deployments; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/DeploymentsStopRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/DeploymentsStopRequest.php deleted file mode 100644 index e75ef93a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/DeploymentsStopRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -fingerprint = $fingerprint; - } - public function getFingerprint() - { - return $this->fingerprint; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/Expr.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/Expr.php deleted file mode 100644 index 26070cfe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/Expr.php +++ /dev/null @@ -1,57 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setExpression($expression) - { - $this->expression = $expression; - } - public function getExpression() - { - return $this->expression; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/GlobalSetPolicyRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/GlobalSetPolicyRequest.php deleted file mode 100644 index 536695a0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/GlobalSetPolicyRequest.php +++ /dev/null @@ -1,63 +0,0 @@ -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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/ImportFile.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/ImportFile.php deleted file mode 100644 index 82f262cf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/ImportFile.php +++ /dev/null @@ -1,39 +0,0 @@ -content = $content; - } - public function getContent() - { - return $this->content; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/LogConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/LogConfig.php deleted file mode 100644 index d7c497c5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/LogConfig.php +++ /dev/null @@ -1,69 +0,0 @@ -cloudAudit = $cloudAudit; - } - /** - * @return Google_Service_DeploymentManager_LogConfigCloudAuditOptions - */ - public function getCloudAudit() - { - return $this->cloudAudit; - } - /** - * @param Google_Service_DeploymentManager_LogConfigCounterOptions - */ - public function setCounter(Google_Service_DeploymentManager_LogConfigCounterOptions $counter) - { - $this->counter = $counter; - } - /** - * @return Google_Service_DeploymentManager_LogConfigCounterOptions - */ - public function getCounter() - { - return $this->counter; - } - /** - * @param Google_Service_DeploymentManager_LogConfigDataAccessOptions - */ - public function setDataAccess(Google_Service_DeploymentManager_LogConfigDataAccessOptions $dataAccess) - { - $this->dataAccess = $dataAccess; - } - /** - * @return Google_Service_DeploymentManager_LogConfigDataAccessOptions - */ - public function getDataAccess() - { - return $this->dataAccess; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/LogConfigCloudAuditOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/LogConfigCloudAuditOptions.php deleted file mode 100644 index 3a3beb06..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/LogConfigCloudAuditOptions.php +++ /dev/null @@ -1,46 +0,0 @@ -authorizationLoggingOptions = $authorizationLoggingOptions; - } - /** - * @return Google_Service_DeploymentManager_AuthorizationLoggingOptions - */ - public function getAuthorizationLoggingOptions() - { - return $this->authorizationLoggingOptions; - } - public function setLogName($logName) - { - $this->logName = $logName; - } - public function getLogName() - { - return $this->logName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/LogConfigCounterOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/LogConfigCounterOptions.php deleted file mode 100644 index eeb729b3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/LogConfigCounterOptions.php +++ /dev/null @@ -1,39 +0,0 @@ -field = $field; - } - public function getField() - { - return $this->field; - } - public function setMetric($metric) - { - $this->metric = $metric; - } - public function getMetric() - { - return $this->metric; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/LogConfigDataAccessOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/LogConfigDataAccessOptions.php deleted file mode 100644 index 9578a07a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/LogConfigDataAccessOptions.php +++ /dev/null @@ -1,30 +0,0 @@ -logMode = $logMode; - } - public function getLogMode() - { - return $this->logMode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/Manifest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/Manifest.php deleted file mode 100644 index ee2bb6f5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/Manifest.php +++ /dev/null @@ -1,108 +0,0 @@ -config = $config; - } - /** - * @return Google_Service_DeploymentManager_ConfigFile - */ - public function getConfig() - { - return $this->config; - } - public function setExpandedConfig($expandedConfig) - { - $this->expandedConfig = $expandedConfig; - } - public function getExpandedConfig() - { - return $this->expandedConfig; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_DeploymentManager_ImportFile - */ - public function setImports($imports) - { - $this->imports = $imports; - } - /** - * @return Google_Service_DeploymentManager_ImportFile - */ - public function getImports() - { - return $this->imports; - } - public function setInsertTime($insertTime) - { - $this->insertTime = $insertTime; - } - public function getInsertTime() - { - return $this->insertTime; - } - public function setLayout($layout) - { - $this->layout = $layout; - } - public function getLayout() - { - return $this->layout; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/ManifestsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/ManifestsListResponse.php deleted file mode 100644 index 67429595..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/ManifestsListResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -manifests = $manifests; - } - /** - * @return Google_Service_DeploymentManager_Manifest - */ - public function getManifests() - { - return $this->manifests; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/Operation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/Operation.php deleted file mode 100644 index d59bdad4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/Operation.php +++ /dev/null @@ -1,243 +0,0 @@ -clientOperationId = $clientOperationId; - } - public function getClientOperationId() - { - return $this->clientOperationId; - } - public function setCreationTimestamp($creationTimestamp) - { - $this->creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - /** - * @param Google_Service_DeploymentManager_OperationError - */ - public function setError(Google_Service_DeploymentManager_OperationError $error) - { - $this->error = $error; - } - /** - * @return Google_Service_DeploymentManager_OperationError - */ - public function getError() - { - return $this->error; - } - public function setHttpErrorMessage($httpErrorMessage) - { - $this->httpErrorMessage = $httpErrorMessage; - } - public function getHttpErrorMessage() - { - return $this->httpErrorMessage; - } - public function setHttpErrorStatusCode($httpErrorStatusCode) - { - $this->httpErrorStatusCode = $httpErrorStatusCode; - } - public function getHttpErrorStatusCode() - { - return $this->httpErrorStatusCode; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setInsertTime($insertTime) - { - $this->insertTime = $insertTime; - } - public function getInsertTime() - { - return $this->insertTime; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOperationType($operationType) - { - $this->operationType = $operationType; - } - public function getOperationType() - { - return $this->operationType; - } - public function setProgress($progress) - { - $this->progress = $progress; - } - public function getProgress() - { - return $this->progress; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - 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 setStatusMessage($statusMessage) - { - $this->statusMessage = $statusMessage; - } - public function getStatusMessage() - { - return $this->statusMessage; - } - public function setTargetId($targetId) - { - $this->targetId = $targetId; - } - public function getTargetId() - { - return $this->targetId; - } - public function setTargetLink($targetLink) - { - $this->targetLink = $targetLink; - } - public function getTargetLink() - { - return $this->targetLink; - } - public function setUser($user) - { - $this->user = $user; - } - public function getUser() - { - return $this->user; - } - /** - * @param Google_Service_DeploymentManager_OperationWarnings - */ - public function setWarnings($warnings) - { - $this->warnings = $warnings; - } - /** - * @return Google_Service_DeploymentManager_OperationWarnings - */ - public function getWarnings() - { - return $this->warnings; - } - public function setZone($zone) - { - $this->zone = $zone; - } - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/OperationError.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/OperationError.php deleted file mode 100644 index 01aabaf0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/OperationError.php +++ /dev/null @@ -1,38 +0,0 @@ -errors = $errors; - } - /** - * @return Google_Service_DeploymentManager_OperationErrorErrors - */ - public function getErrors() - { - return $this->errors; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/OperationErrorErrors.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/OperationErrorErrors.php deleted file mode 100644 index c4b36517..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/OperationErrorErrors.php +++ /dev/null @@ -1,48 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/OperationWarnings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/OperationWarnings.php deleted file mode 100644 index 86fc08c9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/OperationWarnings.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_DeploymentManager_OperationWarningsData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_DeploymentManager_OperationWarningsData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/OperationWarningsData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/OperationWarningsData.php deleted file mode 100644 index 76ccabac..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/OperationWarningsData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/OperationsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/OperationsListResponse.php deleted file mode 100644 index 16ca5c8f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/OperationsListResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_DeploymentManager_Operation - */ - public function setOperations($operations) - { - $this->operations = $operations; - } - /** - * @return Google_Service_DeploymentManager_Operation - */ - public function getOperations() - { - return $this->operations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/Policy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/Policy.php deleted file mode 100644 index 3e39ade4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/Policy.php +++ /dev/null @@ -1,97 +0,0 @@ -auditConfigs = $auditConfigs; - } - /** - * @return Google_Service_DeploymentManager_AuditConfig - */ - public function getAuditConfigs() - { - return $this->auditConfigs; - } - /** - * @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; - } - public function setIamOwned($iamOwned) - { - $this->iamOwned = $iamOwned; - } - public function getIamOwned() - { - return $this->iamOwned; - } - /** - * @param Google_Service_DeploymentManager_Rule - */ - public function setRules($rules) - { - $this->rules = $rules; - } - /** - * @return Google_Service_DeploymentManager_Rule - */ - public function getRules() - { - return $this->rules; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/Resource/Deployments.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/Resource/Deployments.php deleted file mode 100644 index cb383472..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/Resource/Deployments.php +++ /dev/null @@ -1,277 +0,0 @@ - - * $deploymentmanagerService = new Google_Service_DeploymentManager(...); - * $deployments = $deploymentmanagerService->deployments; - * - */ -class Google_Service_DeploymentManager_Resource_Deployments extends Google_Service_Resource -{ - /** - * Cancels and removes the preview currently associated with the deployment. - * (deployments.cancelPreview) - * - * @param string $project The project ID for this request. - * @param string $deployment The name of the deployment for this request. - * @param Google_Service_DeploymentManager_DeploymentsCancelPreviewRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DeploymentManager_Operation - */ - public function cancelPreview($project, $deployment, Google_Service_DeploymentManager_DeploymentsCancelPreviewRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'deployment' => $deployment, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('cancelPreview', array($params), "Google_Service_DeploymentManager_Operation"); - } - /** - * Deletes a deployment and all of the resources in the deployment. - * (deployments.delete) - * - * @param string $project The project ID for this request. - * @param string $deployment The name of the deployment for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string deletePolicy Sets the policy to use for deleting resources. - * @return Google_Service_DeploymentManager_Operation - */ - public function delete($project, $deployment, $optParams = array()) - { - $params = array('project' => $project, 'deployment' => $deployment); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_DeploymentManager_Operation"); - } - /** - * Gets information about a specific deployment. (deployments.get) - * - * @param string $project The project ID for this request. - * @param string $deployment The name of the deployment for this request. - * @param array $optParams Optional parameters. - * @return Google_Service_DeploymentManager_Deployment - */ - public function get($project, $deployment, $optParams = array()) - { - $params = array('project' => $project, 'deployment' => $deployment); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_DeploymentManager_Deployment"); - } - /** - * Gets the access control policy for a resource. May be empty if no such policy - * or resource exists. (deployments.getIamPolicy) - * - * @param string $project Project ID 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 - */ - public function getIamPolicy($project, $resource, $optParams = array()) - { - $params = array('project' => $project, 'resource' => $resource); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_DeploymentManager_Policy"); - } - /** - * Creates a deployment and all of the resources described by the deployment - * manifest. (deployments.insert) - * - * @param string $project The project ID for this request. - * @param Google_Service_DeploymentManager_Deployment $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string createPolicy Sets the policy to use for creating new - * resources. - * @opt_param bool preview If set to true, creates a deployment and creates - * "shell" resources but does not actually instantiate these resources. This - * allows you to preview what your deployment looks like. After previewing a - * deployment, you can deploy your resources by making a request with the - * update() method or you can use the cancelPreview() method to cancel the - * preview altogether. Note that the deployment will still exist after you - * cancel the preview and you must separately delete this deployment if you want - * to remove it. - * @return Google_Service_DeploymentManager_Operation - */ - public function insert($project, Google_Service_DeploymentManager_Deployment $postBody, $optParams = array()) - { - $params = array('project' => $project, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_DeploymentManager_Operation"); - } - /** - * Lists all deployments for a given project. (deployments.listDeployments) - * - * @param string $project The project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_DeploymentManager_DeploymentsListResponse - */ - public function listDeployments($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_DeploymentManager_DeploymentsListResponse"); - } - /** - * Updates a deployment and all of the resources described by the deployment - * manifest. This method supports patch semantics. (deployments.patch) - * - * @param string $project The project ID for this request. - * @param string $deployment The name of the deployment for this request. - * @param Google_Service_DeploymentManager_Deployment $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string createPolicy Sets the policy to use for creating new - * resources. - * @opt_param string deletePolicy Sets the policy to use for deleting resources. - * @opt_param bool preview If set to true, updates the deployment and creates - * and updates the "shell" resources but does not actually alter or instantiate - * these resources. This allows you to preview what your deployment will look - * like. You can use this intent to preview how an update would affect your - * deployment. You must provide a target.config with a configuration if this is - * set to true. After previewing a deployment, you can deploy your resources by - * making a request with the update() or you can cancelPreview() to remove the - * preview altogether. Note that the deployment will still exist after you - * cancel the preview and you must separately delete this deployment if you want - * to remove it. - * @return Google_Service_DeploymentManager_Operation - */ - public function patch($project, $deployment, Google_Service_DeploymentManager_Deployment $postBody, $optParams = array()) - { - $params = array('project' => $project, 'deployment' => $deployment, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_DeploymentManager_Operation"); - } - /** - * Sets the access control policy on the specified resource. Replaces any - * existing policy. (deployments.setIamPolicy) - * - * @param string $project Project ID for this request. - * @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_GlobalSetPolicyRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_DeploymentManager_Policy"); - } - /** - * Stops an ongoing operation. This does not roll back any work that has already - * been completed, but prevents any new work from being started. - * (deployments.stop) - * - * @param string $project The project ID for this request. - * @param string $deployment The name of the deployment for this request. - * @param Google_Service_DeploymentManager_DeploymentsStopRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DeploymentManager_Operation - */ - public function stop($project, $deployment, Google_Service_DeploymentManager_DeploymentsStopRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'deployment' => $deployment, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('stop', array($params), "Google_Service_DeploymentManager_Operation"); - } - /** - * Returns permissions that a caller has on the specified resource. - * (deployments.testIamPermissions) - * - * @param string $project Project ID 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 - */ - public function testIamPermissions($project, $resource, Google_Service_DeploymentManager_TestPermissionsRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_DeploymentManager_TestPermissionsResponse"); - } - /** - * Updates a deployment and all of the resources described by the deployment - * manifest. (deployments.update) - * - * @param string $project The project ID for this request. - * @param string $deployment The name of the deployment for this request. - * @param Google_Service_DeploymentManager_Deployment $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string createPolicy Sets the policy to use for creating new - * resources. - * @opt_param string deletePolicy Sets the policy to use for deleting resources. - * @opt_param bool preview If set to true, updates the deployment and creates - * and updates the "shell" resources but does not actually alter or instantiate - * these resources. This allows you to preview what your deployment will look - * like. You can use this intent to preview how an update would affect your - * deployment. You must provide a target.config with a configuration if this is - * set to true. After previewing a deployment, you can deploy your resources by - * making a request with the update() or you can cancelPreview() to remove the - * preview altogether. Note that the deployment will still exist after you - * cancel the preview and you must separately delete this deployment if you want - * to remove it. - * @return Google_Service_DeploymentManager_Operation - */ - public function update($project, $deployment, Google_Service_DeploymentManager_Deployment $postBody, $optParams = array()) - { - $params = array('project' => $project, 'deployment' => $deployment, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_DeploymentManager_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/Resource/Manifests.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/Resource/Manifests.php deleted file mode 100644 index e6c734bb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/Resource/Manifests.php +++ /dev/null @@ -1,96 +0,0 @@ - - * $deploymentmanagerService = new Google_Service_DeploymentManager(...); - * $manifests = $deploymentmanagerService->manifests; - * - */ -class Google_Service_DeploymentManager_Resource_Manifests extends Google_Service_Resource -{ - /** - * Gets information about a specific manifest. (manifests.get) - * - * @param string $project The project ID for this request. - * @param string $deployment The name of the deployment for this request. - * @param string $manifest The name of the manifest for this request. - * @param array $optParams Optional parameters. - * @return Google_Service_DeploymentManager_Manifest - */ - public function get($project, $deployment, $manifest, $optParams = array()) - { - $params = array('project' => $project, 'deployment' => $deployment, 'manifest' => $manifest); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_DeploymentManager_Manifest"); - } - /** - * Lists all manifests for a given deployment. (manifests.listManifests) - * - * @param string $project The project ID for this request. - * @param string $deployment The name of the deployment for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_DeploymentManager_ManifestsListResponse - */ - public function listManifests($project, $deployment, $optParams = array()) - { - $params = array('project' => $project, 'deployment' => $deployment); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_DeploymentManager_ManifestsListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/Resource/Operations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/Resource/Operations.php deleted file mode 100644 index 3fb05f4e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/Resource/Operations.php +++ /dev/null @@ -1,94 +0,0 @@ - - * $deploymentmanagerService = new Google_Service_DeploymentManager(...); - * $operations = $deploymentmanagerService->operations; - * - */ -class Google_Service_DeploymentManager_Resource_Operations extends Google_Service_Resource -{ - /** - * Gets information about a specific operation. (operations.get) - * - * @param string $project The project ID for this request. - * @param string $operation The name of the operation for this request. - * @param array $optParams Optional parameters. - * @return Google_Service_DeploymentManager_Operation - */ - public function get($project, $operation, $optParams = array()) - { - $params = array('project' => $project, 'operation' => $operation); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_DeploymentManager_Operation"); - } - /** - * Lists all operations for a project. (operations.listOperations) - * - * @param string $project The project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_DeploymentManager_OperationsListResponse - */ - public function listOperations($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_DeploymentManager_OperationsListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/Resource/Resources.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/Resource/Resources.php deleted file mode 100644 index 59456233..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/Resource/Resources.php +++ /dev/null @@ -1,96 +0,0 @@ - - * $deploymentmanagerService = new Google_Service_DeploymentManager(...); - * $resources = $deploymentmanagerService->resources; - * - */ -class Google_Service_DeploymentManager_Resource_Resources extends Google_Service_Resource -{ - /** - * Gets information about a single resource. (resources.get) - * - * @param string $project The project ID for this request. - * @param string $deployment The name of the deployment for this request. - * @param string $resource The name of the resource for this request. - * @param array $optParams Optional parameters. - * @return Google_Service_DeploymentManager_DeploymentmanagerResource - */ - public function get($project, $deployment, $resource, $optParams = array()) - { - $params = array('project' => $project, 'deployment' => $deployment, 'resource' => $resource); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_DeploymentManager_DeploymentmanagerResource"); - } - /** - * Lists all resources in a given deployment. (resources.listResources) - * - * @param string $project The project ID for this request. - * @param string $deployment The name of the deployment for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_DeploymentManager_ResourcesListResponse - */ - public function listResources($project, $deployment, $optParams = array()) - { - $params = array('project' => $project, 'deployment' => $deployment); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_DeploymentManager_ResourcesListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/Resource/Types.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/Resource/Types.php deleted file mode 100644 index 4aa56012..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/Resource/Types.php +++ /dev/null @@ -1,80 +0,0 @@ - - * $deploymentmanagerService = new Google_Service_DeploymentManager(...); - * $types = $deploymentmanagerService->types; - * - */ -class Google_Service_DeploymentManager_Resource_Types extends Google_Service_Resource -{ - /** - * Lists all resource types for Deployment Manager. (types.listTypes) - * - * @param string $project The project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression must specify the field name, a comparison - * operator, and the value that you want to use for filtering. The value must be - * a string, a number, or a boolean. The comparison operator must be either =, - * !=, >, or <. - * - * For example, if you are filtering Compute Engine instances, you can exclude - * instances named example-instance by specifying name != example-instance. - * - * You can also filter nested fields. For example, you could specify - * scheduling.automaticRestart = false to include instances only if they are not - * scheduled for automatic restarts. You can use filtering on nested fields to - * filter based on resource labels. - * - * To filter on multiple expressions, provide each separate expression within - * parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = - * "Intel Skylake"). By default, each expression is an AND expression. However, - * you can include AND and OR expressions explicitly. For example, (cpuPlatform - * = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND - * (scheduling.automaticRestart = true). - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. Acceptable values are 0 - * to 500, inclusive. (Default: 500) - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_DeploymentManager_TypesListResponse - */ - public function listTypes($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_DeploymentManager_TypesListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/ResourceAccessControl.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/ResourceAccessControl.php deleted file mode 100644 index 6d67f08a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/ResourceAccessControl.php +++ /dev/null @@ -1,30 +0,0 @@ -gcpIamPolicy = $gcpIamPolicy; - } - public function getGcpIamPolicy() - { - return $this->gcpIamPolicy; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/ResourceUpdate.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/ResourceUpdate.php deleted file mode 100644 index 5e9e35c3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/ResourceUpdate.php +++ /dev/null @@ -1,115 +0,0 @@ -accessControl = $accessControl; - } - /** - * @return Google_Service_DeploymentManager_ResourceAccessControl - */ - public function getAccessControl() - { - return $this->accessControl; - } - /** - * @param Google_Service_DeploymentManager_ResourceUpdateError - */ - public function setError(Google_Service_DeploymentManager_ResourceUpdateError $error) - { - $this->error = $error; - } - /** - * @return Google_Service_DeploymentManager_ResourceUpdateError - */ - public function getError() - { - return $this->error; - } - public function setFinalProperties($finalProperties) - { - $this->finalProperties = $finalProperties; - } - public function getFinalProperties() - { - return $this->finalProperties; - } - public function setIntent($intent) - { - $this->intent = $intent; - } - public function getIntent() - { - return $this->intent; - } - public function setManifest($manifest) - { - $this->manifest = $manifest; - } - public function getManifest() - { - return $this->manifest; - } - public function setProperties($properties) - { - $this->properties = $properties; - } - public function getProperties() - { - return $this->properties; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - /** - * @param Google_Service_DeploymentManager_ResourceUpdateWarnings - */ - public function setWarnings($warnings) - { - $this->warnings = $warnings; - } - /** - * @return Google_Service_DeploymentManager_ResourceUpdateWarnings - */ - public function getWarnings() - { - return $this->warnings; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/ResourceUpdateError.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/ResourceUpdateError.php deleted file mode 100644 index 9de21350..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/ResourceUpdateError.php +++ /dev/null @@ -1,38 +0,0 @@ -errors = $errors; - } - /** - * @return Google_Service_DeploymentManager_ResourceUpdateErrorErrors - */ - public function getErrors() - { - return $this->errors; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/ResourceUpdateErrorErrors.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/ResourceUpdateErrorErrors.php deleted file mode 100644 index ddceb132..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/ResourceUpdateErrorErrors.php +++ /dev/null @@ -1,48 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/ResourceUpdateWarnings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/ResourceUpdateWarnings.php deleted file mode 100644 index d20efd8b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/ResourceUpdateWarnings.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_DeploymentManager_ResourceUpdateWarningsData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_DeploymentManager_ResourceUpdateWarningsData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/ResourceUpdateWarningsData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/ResourceUpdateWarningsData.php deleted file mode 100644 index a828ef7f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/ResourceUpdateWarningsData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/ResourcesListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/ResourcesListResponse.php deleted file mode 100644 index 3ae5a55f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/ResourcesListResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_DeploymentManager_DeploymentmanagerResource - */ - public function setResources($resources) - { - $this->resources = $resources; - } - /** - * @return Google_Service_DeploymentManager_DeploymentmanagerResource - */ - public function getResources() - { - return $this->resources; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/Rule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/Rule.php deleted file mode 100644 index bad6a327..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/Rule.php +++ /dev/null @@ -1,99 +0,0 @@ -action = $action; - } - public function getAction() - { - return $this->action; - } - /** - * @param Google_Service_DeploymentManager_Condition - */ - public function setConditions($conditions) - { - $this->conditions = $conditions; - } - /** - * @return Google_Service_DeploymentManager_Condition - */ - public function getConditions() - { - return $this->conditions; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setIns($ins) - { - $this->ins = $ins; - } - public function getIns() - { - return $this->ins; - } - /** - * @param Google_Service_DeploymentManager_LogConfig - */ - public function setLogConfigs($logConfigs) - { - $this->logConfigs = $logConfigs; - } - /** - * @return Google_Service_DeploymentManager_LogConfig - */ - public function getLogConfigs() - { - return $this->logConfigs; - } - public function setNotIns($notIns) - { - $this->notIns = $notIns; - } - public function getNotIns() - { - return $this->notIns; - } - public function setPermissions($permissions) - { - $this->permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/TargetConfiguration.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/TargetConfiguration.php deleted file mode 100644 index 8ccddfb0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/TargetConfiguration.php +++ /dev/null @@ -1,54 +0,0 @@ -config = $config; - } - /** - * @return Google_Service_DeploymentManager_ConfigFile - */ - public function getConfig() - { - return $this->config; - } - /** - * @param Google_Service_DeploymentManager_ImportFile - */ - public function setImports($imports) - { - $this->imports = $imports; - } - /** - * @return Google_Service_DeploymentManager_ImportFile - */ - public function getImports() - { - return $this->imports; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/TestPermissionsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/TestPermissionsRequest.php deleted file mode 100644 index 6a02ce9a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/TestPermissionsRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/TestPermissionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/TestPermissionsResponse.php deleted file mode 100644 index ae602507..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/TestPermissionsResponse.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/Type.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/Type.php deleted file mode 100644 index 6625ebe9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/Type.php +++ /dev/null @@ -1,73 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setInsertTime($insertTime) - { - $this->insertTime = $insertTime; - } - public function getInsertTime() - { - return $this->insertTime; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_DeploymentManager_Operation - */ - public function setOperation(Google_Service_DeploymentManager_Operation $operation) - { - $this->operation = $operation; - } - /** - * @return Google_Service_DeploymentManager_Operation - */ - public function getOperation() - { - return $this->operation; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/TypesListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/TypesListResponse.php deleted file mode 100644 index 22054899..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/TypesListResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_DeploymentManager_Type - */ - public function setTypes($types) - { - $this->types = $types; - } - /** - * @return Google_Service_DeploymentManager_Type - */ - public function getTypes() - { - return $this->types; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects.php deleted file mode 100644 index 510f7eb6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects.php +++ /dev/null @@ -1,704 +0,0 @@ - - * This API enables programmatic access to various capabilities exposed in the - * Google APIs Console (aka DevConsole), including project, team, and auth - * management.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Devprojects extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** View and manage your Google Compute Engine resources. */ - const COMPUTE = - "https://www.googleapis.com/auth/compute"; - - public $activationLinks; - public $apiconsumers; - public $apis; - public $controlwidgets; - public $domains; - public $projects; - public $toses; - public $users; - - /** - * Constructs the internal representation of the Devprojects service. - * - * @param Google_Client $client - */ - public function __construct(Google_Client $client) - { - parent::__construct($client); - $this->rootUrl = 'https://www.googleapis.com/'; - $this->servicePath = 'devprojects/v1/'; - $this->version = 'v1'; - $this->serviceName = 'devprojects'; - - $this->activationLinks = new Google_Service_Devprojects_Resource_ActivationLinks( - $this, - $this->serviceName, - 'activationLinks', - array( - 'methods' => array( - 'insert' => array( - 'path' => 'activationLinks', - 'httpMethod' => 'POST', - 'parameters' => array( - 'user' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'whitelistId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'validate' => array( - 'path' => 'activationLinks/validate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'whitelistId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->apiconsumers = new Google_Service_Devprojects_Resource_Apiconsumers( - $this, - $this->serviceName, - 'apiconsumers', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'apiconsumers', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'apiIdToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'consumerProjectId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'producerProjectId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'whitelistId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'insert' => array( - 'path' => 'apiconsumers', - 'httpMethod' => 'POST', - 'parameters' => array( - 'whitelistId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'apiconsumers', - 'httpMethod' => 'GET', - 'parameters' => array( - 'apiIdToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'producerProjectId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'whitelistId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'apiconsumers', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'whitelistId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->apis = new Google_Service_Devprojects_Resource_Apis( - $this, - $this->serviceName, - 'apis', - array( - 'methods' => array( - 'get' => array( - 'path' => 'apis/{apisId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'apisId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'projectId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'whitelistId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'apis', - 'httpMethod' => 'GET', - 'parameters' => array( - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'projectId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'whitelistId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'listconsumed' => array( - 'path' => 'apis/consumed', - 'httpMethod' => 'GET', - 'parameters' => array( - 'consumerProjectId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'whitelistId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'listproduced' => array( - 'path' => 'apis/produced', - 'httpMethod' => 'GET', - 'parameters' => array( - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'producerProjectId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'whitelistId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->controlwidgets = new Google_Service_Devprojects_Resource_Controlwidgets( - $this, - $this->serviceName, - 'controlwidgets', - array( - 'methods' => array( - 'embed' => array( - 'path' => 'controlwidgets/{projectId}/{widgetId}/embed', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'widgetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'kv' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'whitelistId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->domains = new Google_Service_Devprojects_Resource_Domains( - $this, - $this->serviceName, - 'domains', - array( - 'methods' => array( - 'get' => array( - 'path' => 'domains/{domainsId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'domainsId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'whitelistId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'insert' => array( - 'path' => 'domains', - 'httpMethod' => 'POST', - 'parameters' => array( - 'whitelistId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'domains/{domainsId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'domainsId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'whitelistId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'domains/{domainsId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'domainsId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'whitelistId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects = new Google_Service_Devprojects_Resource_Projects( - $this, - $this->serviceName, - 'projects', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'projects/{projectId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'disableAuthorizationCheck' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'whitelistId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'developerkeytoprojectid' => array( - 'path' => 'projects/developerkey/{developerKey}/toprojectid', - 'httpMethod' => 'GET', - 'parameters' => array( - 'developerKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'whitelistId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'projects/{projectId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'retrieveCurrentUserRole' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'section' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'whitelistId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'getprojectclientstructure' => array( - 'path' => 'projects/getprojectclientstructure', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'insert' => array( - 'path' => 'projects', - 'httpMethod' => 'POST', - 'parameters' => array( - 'initialOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'retryRequest' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'section' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'whitelistId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'projects', - 'httpMethod' => 'GET', - 'parameters' => array( - 'fillSection' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'includeNonActive' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'includedShard' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'requiredApiId' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'requiredSection' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'retrieveCurrentUserRole' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'user' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'whitelistId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'notifyowners' => array( - 'path' => 'projects/{projectsId}/notifyowners', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectsId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'whitelistId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'projects/{projectId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'section' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'user' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'whitelistId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'stringidtonumericid' => array( - 'path' => 'projects/stringid/{project}/tonumericid', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'whitelistId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'undelete' => array( - 'path' => 'projects/{projectId}/undelete', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'whitelistId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'projects/{projectId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'section' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'user' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'whitelistId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->toses = new Google_Service_Devprojects_Resource_Toses( - $this, - $this->serviceName, - 'toses', - array( - 'methods' => array( - 'accept' => array( - 'path' => 'toses/accept', - 'httpMethod' => 'POST', - 'parameters' => array( - 'whitelistId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'check' => array( - 'path' => 'toses/check', - 'httpMethod' => 'POST', - 'parameters' => array( - 'whitelistId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'toses/{tosId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'tosId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'userId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'whitelistId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'toses', - 'httpMethod' => 'GET', - 'parameters' => array( - 'apiKey' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'projectId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'user' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'whitelistId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->users = new Google_Service_Devprojects_Resource_Users( - $this, - $this->serviceName, - 'users', - array( - 'methods' => array( - 'get' => array( - 'path' => 'users/{userId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'section' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'whitelistId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'users/{userId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'section' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'whitelistId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'users/{userId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'section' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'whitelistId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/AbuseSection.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/AbuseSection.php deleted file mode 100644 index a707b2aa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/AbuseSection.php +++ /dev/null @@ -1,41 +0,0 @@ -componentAbuseStatus = $componentAbuseStatus; - } - public function getComponentAbuseStatus() - { - return $this->componentAbuseStatus; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/AbuseType.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/AbuseType.php deleted file mode 100644 index d05cee70..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/AbuseType.php +++ /dev/null @@ -1,48 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setSubtype($subtype) - { - $this->subtype = $subtype; - } - public function getSubtype() - { - return $this->subtype; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/AbuseiamClient.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/AbuseiamClient.php deleted file mode 100644 index 46f8f0d6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/AbuseiamClient.php +++ /dev/null @@ -1,48 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setSubservice($subservice) - { - $this->subservice = $subservice; - } - public function getSubservice() - { - return $this->subservice; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/Acceptance.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/Acceptance.php deleted file mode 100644 index 7d3d0574..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/Acceptance.php +++ /dev/null @@ -1,50 +0,0 @@ -context = $context; - } - public function getContext() - { - return $this->context; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setTerms(Google_Service_Devprojects_TermsVersion $terms) - { - $this->terms = $terms; - } - public function getTerms() - { - return $this->terms; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/AcceptanceDenied.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/AcceptanceDenied.php deleted file mode 100644 index fdb0a15d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/AcceptanceDenied.php +++ /dev/null @@ -1,58 +0,0 @@ -acceptance = $acceptance; - } - public function getAcceptance() - { - return $this->acceptance; - } - public function setErrorMessage($errorMessage) - { - $this->errorMessage = $errorMessage; - } - public function getErrorMessage() - { - return $this->errorMessage; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setReason($reason) - { - $this->reason = $reason; - } - public function getReason() - { - return $this->reason; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/AcceptanceRequired.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/AcceptanceRequired.php deleted file mode 100644 index 46db3c54..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/AcceptanceRequired.php +++ /dev/null @@ -1,49 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setReason($reason) - { - $this->reason = $reason; - } - public function getReason() - { - return $this->reason; - } - public function setTerms(Google_Service_Devprojects_TermsVersion $terms) - { - $this->terms = $terms; - } - public function getTerms() - { - return $this->terms; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ActivationLink.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ActivationLink.php deleted file mode 100644 index 424597a9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ActivationLink.php +++ /dev/null @@ -1,68 +0,0 @@ -emailAddress = $emailAddress; - } - public function getEmailAddress() - { - return $this->emailAddress; - } - public function setExtraParameter($extraParameter) - { - $this->extraParameter = $extraParameter; - } - public function getExtraParameter() - { - return $this->extraParameter; - } - 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 setLink($link) - { - $this->link = $link; - } - public function getLink() - { - return $this->link; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ActivationLinksCollection.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ActivationLinksCollection.php deleted file mode 100644 index d57c6550..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ActivationLinksCollection.php +++ /dev/null @@ -1,59 +0,0 @@ -apiToken = $apiToken; - } - public function getApiToken() - { - return $this->apiToken; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLink($link) - { - $this->link = $link; - } - public function getLink() - { - return $this->link; - } - public function setServiceType($serviceType) - { - $this->serviceType = $serviceType; - } - public function getServiceType() - { - return $this->serviceType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ActivationLinksValidateRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ActivationLinksValidateRequest.php deleted file mode 100644 index 46a116be..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ActivationLinksValidateRequest.php +++ /dev/null @@ -1,48 +0,0 @@ -activationLink = $activationLink; - } - public function getActivationLink() - { - return $this->activationLink; - } - public function setExpectedProjectId($expectedProjectId) - { - $this->expectedProjectId = $expectedProjectId; - } - public function getExpectedProjectId() - { - return $this->expectedProjectId; - } - public function setWhitelistId($whitelistId) - { - $this->whitelistId = $whitelistId; - } - public function getWhitelistId() - { - return $this->whitelistId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ActivationLinksValidateResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ActivationLinksValidateResponse.php deleted file mode 100644 index 09cfbb3b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ActivationLinksValidateResponse.php +++ /dev/null @@ -1,59 +0,0 @@ -apiToken = $apiToken; - } - public function getApiToken() - { - return $this->apiToken; - } - public function setComponentType($componentType) - { - $this->componentType = $componentType; - } - public function getComponentType() - { - return $this->componentType; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setTokenParameter($tokenParameter) - { - $this->tokenParameter = $tokenParameter; - } - public function getTokenParameter() - { - return $this->tokenParameter; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ActiveApi.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ActiveApi.php deleted file mode 100644 index 221b764a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ActiveApi.php +++ /dev/null @@ -1,57 +0,0 @@ -apiId = $apiId; - } - public function getApiId() - { - return $this->apiId; - } - public function setApiName($apiName) - { - $this->apiName = $apiName; - } - public function getApiName() - { - return $this->apiName; - } - public function setDeactivable($deactivable) - { - $this->deactivable = $deactivable; - } - public function getDeactivable() - { - return $this->deactivable; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ActiveMember.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ActiveMember.php deleted file mode 100644 index 0e86730b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ActiveMember.php +++ /dev/null @@ -1,57 +0,0 @@ -email = $email; - } - public function getEmail() - { - return $this->email; - } - 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 setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/AgeRestriction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/AgeRestriction.php deleted file mode 100644 index 9f07dd44..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/AgeRestriction.php +++ /dev/null @@ -1,39 +0,0 @@ -ageYears = $ageYears; - } - public function getAgeYears() - { - return $this->ageYears; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/AndRestriction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/AndRestriction.php deleted file mode 100644 index f005f3f1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/AndRestriction.php +++ /dev/null @@ -1,41 +0,0 @@ -child = $child; - } - public function getChild() - { - return $this->child; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ApiConsumer.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ApiConsumer.php deleted file mode 100644 index e4130917..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ApiConsumer.php +++ /dev/null @@ -1,60 +0,0 @@ -consumerInformation = $consumerInformation; - } - public function getConsumerInformation() - { - return $this->consumerInformation; - } - public function setId(Google_Service_Devprojects_ApiConsumerId $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 setProducerConfiguration(Google_Service_Devprojects_ProducerConfiguration $producerConfiguration) - { - $this->producerConfiguration = $producerConfiguration; - } - public function getProducerConfiguration() - { - return $this->producerConfiguration; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ApiConsumerId.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ApiConsumerId.php deleted file mode 100644 index 3a1054e6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ApiConsumerId.php +++ /dev/null @@ -1,66 +0,0 @@ -apiIdToken = $apiIdToken; - } - public function getApiIdToken() - { - return $this->apiIdToken; - } - public function setConsumerAssignedId($consumerAssignedId) - { - $this->consumerAssignedId = $consumerAssignedId; - } - public function getConsumerAssignedId() - { - return $this->consumerAssignedId; - } - public function setConsumerProjectId($consumerProjectId) - { - $this->consumerProjectId = $consumerProjectId; - } - public function getConsumerProjectId() - { - return $this->consumerProjectId; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setProducerProjectId($producerProjectId) - { - $this->producerProjectId = $producerProjectId; - } - public function getProducerProjectId() - { - return $this->producerProjectId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ApiData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ApiData.php deleted file mode 100644 index f628b941..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ApiData.php +++ /dev/null @@ -1,77 +0,0 @@ -aliasedApiIdToken = $aliasedApiIdToken; - } - public function getAliasedApiIdToken() - { - return $this->aliasedApiIdToken; - } - public function setApiDefinition(Google_Service_Devprojects_ApiDefinition $apiDefinition) - { - $this->apiDefinition = $apiDefinition; - } - public function getApiDefinition() - { - return $this->apiDefinition; - } - public function setApiIconUrl($apiIconUrl) - { - $this->apiIconUrl = $apiIconUrl; - } - public function getApiIconUrl() - { - return $this->apiIconUrl; - } - public function setConsumerConfigurationByProducer(Google_Service_Devprojects_ProducerConfiguration $consumerConfigurationByProducer) - { - $this->consumerConfigurationByProducer = $consumerConfigurationByProducer; - } - public function getConsumerConfigurationByProducer() - { - return $this->consumerConfigurationByProducer; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setProducedByListingProject($producedByListingProject) - { - $this->producedByListingProject = $producedByListingProject; - } - public function getProducedByListingProject() - { - return $this->producedByListingProject; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ApiDefinition.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ApiDefinition.php deleted file mode 100644 index 65143a68..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ApiDefinition.php +++ /dev/null @@ -1,225 +0,0 @@ -activationMessage = $activationMessage; - } - public function getActivationMessage() - { - return $this->activationMessage; - } - public function setActivationRequirement($activationRequirement) - { - $this->activationRequirement = $activationRequirement; - } - public function getActivationRequirement() - { - return $this->activationRequirement; - } - public function setApiPanelToken($apiPanelToken) - { - $this->apiPanelToken = $apiPanelToken; - } - public function getApiPanelToken() - { - return $this->apiPanelToken; - } - public function setBillableDailyLimit(Google_Service_Devprojects_ApiLimitDefinition $billableDailyLimit) - { - $this->billableDailyLimit = $billableDailyLimit; - } - public function getBillableDailyLimit() - { - return $this->billableDailyLimit; - } - public function setBucket($bucket) - { - $this->bucket = $bucket; - } - public function getBucket() - { - return $this->bucket; - } - public function setConcurrentLimit(Google_Service_Devprojects_ApiLimitDefinition $concurrentLimit) - { - $this->concurrentLimit = $concurrentLimit; - } - public function getConcurrentLimit() - { - return $this->concurrentLimit; - } - public function setDailyLimit(Google_Service_Devprojects_ApiLimitDefinition $dailyLimit) - { - $this->dailyLimit = $dailyLimit; - } - public function getDailyLimit() - { - return $this->dailyLimit; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setExampleUrl($exampleUrl) - { - $this->exampleUrl = $exampleUrl; - } - public function getExampleUrl() - { - return $this->exampleUrl; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLearnmoreUrl($learnmoreUrl) - { - $this->learnmoreUrl = $learnmoreUrl; - } - public function getLearnmoreUrl() - { - return $this->learnmoreUrl; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPricingLink($pricingLink) - { - $this->pricingLink = $pricingLink; - } - public function getPricingLink() - { - return $this->pricingLink; - } - public function setRequestQuotaUrl($requestQuotaUrl) - { - $this->requestQuotaUrl = $requestQuotaUrl; - } - public function getRequestQuotaUrl() - { - return $this->requestQuotaUrl; - } - public function setRequiresActivationToken($requiresActivationToken) - { - $this->requiresActivationToken = $requiresActivationToken; - } - public function getRequiresActivationToken() - { - return $this->requiresActivationToken; - } - public function setRequiresOrganizationRegistration($requiresOrganizationRegistration) - { - $this->requiresOrganizationRegistration = $requiresOrganizationRegistration; - } - public function getRequiresOrganizationRegistration() - { - return $this->requiresOrganizationRegistration; - } - public function setServiceSubsetId($serviceSubsetId) - { - $this->serviceSubsetId = $serviceSubsetId; - } - public function getServiceSubsetId() - { - return $this->serviceSubsetId; - } - public function setSupportsBilling($supportsBilling) - { - $this->supportsBilling = $supportsBilling; - } - public function getSupportsBilling() - { - return $this->supportsBilling; - } - public function setToken($token) - { - $this->token = $token; - } - public function getToken() - { - return $this->token; - } - public function setVariableTermQuotaDescription($variableTermQuotaDescription) - { - $this->variableTermQuotaDescription = $variableTermQuotaDescription; - } - public function getVariableTermQuotaDescription() - { - return $this->variableTermQuotaDescription; - } - public function setVisible($visible) - { - $this->visible = $visible; - } - public function getVisible() - { - return $this->visible; - } - public function setVisitorRateLimit(Google_Service_Devprojects_ApiLimitDefinition $visitorRateLimit) - { - $this->visitorRateLimit = $visitorRateLimit; - } - public function getVisitorRateLimit() - { - return $this->visitorRateLimit; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ApiLimitDefinition.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ApiLimitDefinition.php deleted file mode 100644 index 4b4217be..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ApiLimitDefinition.php +++ /dev/null @@ -1,68 +0,0 @@ -defaultValue = $defaultValue; - } - public function getDefaultValue() - { - return $this->defaultValue; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLimitType($limitType) - { - $this->limitType = $limitType; - } - public function getLimitType() - { - return $this->limitType; - } - public function setMaxValue(Google_Service_Devprojects_TypedValue $maxValue) - { - $this->maxValue = $maxValue; - } - public function getMaxValue() - { - return $this->maxValue; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ApiLimitStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ApiLimitStatus.php deleted file mode 100644 index 6a5b2b4a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ApiLimitStatus.php +++ /dev/null @@ -1,132 +0,0 @@ -actualEnd = $actualEnd; - } - public function getActualEnd() - { - return $this->actualEnd; - } - public function setAddedTimeMillis($addedTimeMillis) - { - $this->addedTimeMillis = $addedTimeMillis; - } - public function getAddedTimeMillis() - { - return $this->addedTimeMillis; - } - public function setApiToken($apiToken) - { - $this->apiToken = $apiToken; - } - public function getApiToken() - { - return $this->apiToken; - } - public function setBegin($begin) - { - $this->begin = $begin; - } - public function getBegin() - { - return $this->begin; - } - public function setDisplayEnd($displayEnd) - { - $this->displayEnd = $displayEnd; - } - public function getDisplayEnd() - { - return $this->displayEnd; - } - public function setInGracePeriod($inGracePeriod) - { - $this->inGracePeriod = $inGracePeriod; - } - public function getInGracePeriod() - { - return $this->inGracePeriod; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLimit(Google_Service_Devprojects_TypedValue $limit) - { - $this->limit = $limit; - } - public function getLimit() - { - return $this->limit; - } - public function setMax(Google_Service_Devprojects_TypedValue $max) - { - $this->max = $max; - } - public function getMax() - { - return $this->max; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setUsage(Google_Service_Devprojects_TypedValue $usage) - { - $this->usage = $usage; - } - public function getUsage() - { - return $this->usage; - } - public function setVisibleEnd($visibleEnd) - { - $this->visibleEnd = $visibleEnd; - } - public function getVisibleEnd() - { - return $this->visibleEnd; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ApiSection.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ApiSection.php deleted file mode 100644 index b9d36b82..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ApiSection.php +++ /dev/null @@ -1,41 +0,0 @@ -api = $api; - } - public function getApi() - { - return $this->api; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ApiStatsInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ApiStatsInfo.php deleted file mode 100644 index cf6be735..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ApiStatsInfo.php +++ /dev/null @@ -1,68 +0,0 @@ -apiId = $apiId; - } - public function getApiId() - { - return $this->apiId; - } - public function setApiName($apiName) - { - $this->apiName = $apiName; - } - public function getApiName() - { - return $this->apiName; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setStatsInfo($statsInfo) - { - $this->statsInfo = $statsInfo; - } - public function getStatsInfo() - { - return $this->statsInfo; - } - public function setSupportsReferers($supportsReferers) - { - $this->supportsReferers = $supportsReferers; - } - public function getSupportsReferers() - { - return $this->supportsReferers; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ApiaryProperty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ApiaryProperty.php deleted file mode 100644 index 5e4fca50..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ApiaryProperty.php +++ /dev/null @@ -1,49 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setServiceKey($serviceKey) - { - $this->serviceKey = $serviceKey; - } - public function getServiceKey() - { - return $this->serviceKey; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ApiaryPropertySection.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ApiaryPropertySection.php deleted file mode 100644 index 205c0f74..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ApiaryPropertySection.php +++ /dev/null @@ -1,41 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setProperty($property) - { - $this->property = $property; - } - public function getProperty() - { - return $this->property; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ApiconsumersListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ApiconsumersListResponse.php deleted file mode 100644 index 6f1af389..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ApiconsumersListResponse.php +++ /dev/null @@ -1,41 +0,0 @@ -items = $items; - } - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ApisListConsumedResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ApisListConsumedResponse.php deleted file mode 100644 index 7024142e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ApisListConsumedResponse.php +++ /dev/null @@ -1,41 +0,0 @@ -apiDefinition = $apiDefinition; - } - public function getApiDefinition() - { - return $this->apiDefinition; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ApisListProducedResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ApisListProducedResponse.php deleted file mode 100644 index 83750b48..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ApisListProducedResponse.php +++ /dev/null @@ -1,41 +0,0 @@ -apiDefinition = $apiDefinition; - } - public function getApiDefinition() - { - return $this->apiDefinition; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ApisListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ApisListResponse.php deleted file mode 100644 index 4d18e9d3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ApisListResponse.php +++ /dev/null @@ -1,41 +0,0 @@ -items = $items; - } - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/AppEngineSection.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/AppEngineSection.php deleted file mode 100644 index aebfff15..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/AppEngineSection.php +++ /dev/null @@ -1,59 +0,0 @@ -adoptedGaiaId = $adoptedGaiaId; - } - public function getAdoptedGaiaId() - { - return $this->adoptedGaiaId; - } - public function setApp($app) - { - $this->app = $app; - } - public function getApp() - { - return $this->app; - } - public function setAppId($appId) - { - $this->appId = $appId; - } - public function getAppId() - { - return $this->appId; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/AppsScriptSection.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/AppsScriptSection.php deleted file mode 100644 index eaf7b56d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/AppsScriptSection.php +++ /dev/null @@ -1,41 +0,0 @@ -app = $app; - } - public function getApp() - { - return $this->app; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/AuthSection.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/AuthSection.php deleted file mode 100644 index bb1e0556..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/AuthSection.php +++ /dev/null @@ -1,123 +0,0 @@ -atMaximumClients = $atMaximumClients; - } - public function getAtMaximumClients() - { - return $this->atMaximumClients; - } - public function setClient($client) - { - $this->client = $client; - } - public function getClient() - { - return $this->client; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setHomePageUrl($homePageUrl) - { - $this->homePageUrl = $homePageUrl; - } - public function getHomePageUrl() - { - return $this->homePageUrl; - } - public function setIconUrl($iconUrl) - { - $this->iconUrl = $iconUrl; - } - public function getIconUrl() - { - return $this->iconUrl; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setPlusPageInfo(Google_Service_Devprojects_PlusPageInfo $plusPageInfo) - { - $this->plusPageInfo = $plusPageInfo; - } - public function getPlusPageInfo() - { - return $this->plusPageInfo; - } - public function setPlusPageObfuscatedId($plusPageObfuscatedId) - { - $this->plusPageObfuscatedId = $plusPageObfuscatedId; - } - public function getPlusPageObfuscatedId() - { - return $this->plusPageObfuscatedId; - } - public function setPrivacyPolicyUrl($privacyPolicyUrl) - { - $this->privacyPolicyUrl = $privacyPolicyUrl; - } - public function getPrivacyPolicyUrl() - { - return $this->privacyPolicyUrl; - } - public function setSupportEmail($supportEmail) - { - $this->supportEmail = $supportEmail; - } - public function getSupportEmail() - { - return $this->supportEmail; - } - public function setTermsOfServiceUrl($termsOfServiceUrl) - { - $this->termsOfServiceUrl = $termsOfServiceUrl; - } - public function getTermsOfServiceUrl() - { - return $this->termsOfServiceUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/BucketId.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/BucketId.php deleted file mode 100644 index 0d3c577d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/BucketId.php +++ /dev/null @@ -1,48 +0,0 @@ -bucketName = $bucketName; - } - public function getBucketName() - { - return $this->bucketName; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNamespace($namespace) - { - $this->namespace = $namespace; - } - public function getNamespace() - { - return $this->namespace; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/BucketLimitStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/BucketLimitStatus.php deleted file mode 100644 index 225b1021..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/BucketLimitStatus.php +++ /dev/null @@ -1,133 +0,0 @@ -actualEnd = $actualEnd; - } - public function getActualEnd() - { - return $this->actualEnd; - } - public function setAddedTimeMillis($addedTimeMillis) - { - $this->addedTimeMillis = $addedTimeMillis; - } - public function getAddedTimeMillis() - { - return $this->addedTimeMillis; - } - public function setApiToken($apiToken) - { - $this->apiToken = $apiToken; - } - public function getApiToken() - { - return $this->apiToken; - } - public function setBegin($begin) - { - $this->begin = $begin; - } - public function getBegin() - { - return $this->begin; - } - public function setDisplayEnd($displayEnd) - { - $this->displayEnd = $displayEnd; - } - public function getDisplayEnd() - { - return $this->displayEnd; - } - public function setId(Google_Service_Devprojects_BucketId $id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setInGracePeriod($inGracePeriod) - { - $this->inGracePeriod = $inGracePeriod; - } - public function getInGracePeriod() - { - return $this->inGracePeriod; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLimit(Google_Service_Devprojects_TypedValue $limit) - { - $this->limit = $limit; - } - public function getLimit() - { - return $this->limit; - } - public function setMax(Google_Service_Devprojects_TypedValue $max) - { - $this->max = $max; - } - public function getMax() - { - return $this->max; - } - public function setUsage(Google_Service_Devprojects_TypedValue $usage) - { - $this->usage = $usage; - } - public function getUsage() - { - return $this->usage; - } - public function setVisibleEnd($visibleEnd) - { - $this->visibleEnd = $visibleEnd; - } - public function getVisibleEnd() - { - return $this->visibleEnd; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/Client.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/Client.php deleted file mode 100644 index 5cfb8fac..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/Client.php +++ /dev/null @@ -1,49 +0,0 @@ -clientId = $clientId; - } - public function getClientId() - { - return $this->clientId; - } - public function setClientInfo(Google_Service_Devprojects_ClientInfo $clientInfo) - { - $this->clientInfo = $clientInfo; - } - public function getClientInfo() - { - return $this->clientInfo; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ClientInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ClientInfo.php deleted file mode 100644 index 4d837fd9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ClientInfo.php +++ /dev/null @@ -1,122 +0,0 @@ -authType = $authType; - } - public function getAuthType() - { - return $this->authType; - } - public function setContainer($container) - { - $this->container = $container; - } - public function getContainer() - { - return $this->container; - } - public function setInstalledAppInfo(Google_Service_Devprojects_InstalledAppInfo $installedAppInfo) - { - $this->installedAppInfo = $installedAppInfo; - } - public function getInstalledAppInfo() - { - return $this->installedAppInfo; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPostMessageOrigin($postMessageOrigin) - { - $this->postMessageOrigin = $postMessageOrigin; - } - public function getPostMessageOrigin() - { - return $this->postMessageOrigin; - } - public function setPublicCertUrl($publicCertUrl) - { - $this->publicCertUrl = $publicCertUrl; - } - public function getPublicCertUrl() - { - return $this->publicCertUrl; - } - public function setPublicKeyName($publicKeyName) - { - $this->publicKeyName = $publicKeyName; - } - public function getPublicKeyName() - { - return $this->publicKeyName; - } - public function setRedirectUri($redirectUri) - { - $this->redirectUri = $redirectUri; - } - public function getRedirectUri() - { - return $this->redirectUri; - } - public function setRobotEmail($robotEmail) - { - $this->robotEmail = $robotEmail; - } - public function getRobotEmail() - { - return $this->robotEmail; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/CloudComputeSection.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/CloudComputeSection.php deleted file mode 100644 index 4925146a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/CloudComputeSection.php +++ /dev/null @@ -1,48 +0,0 @@ -computeVariant = $computeVariant; - } - public function getComputeVariant() - { - return $this->computeVariant; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/CloudSqlSection.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/CloudSqlSection.php deleted file mode 100644 index 85efd985..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/CloudSqlSection.php +++ /dev/null @@ -1,39 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/CloudStorageSection.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/CloudStorageSection.php deleted file mode 100644 index f986cdb3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/CloudStorageSection.php +++ /dev/null @@ -1,39 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/Component.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/Component.php deleted file mode 100644 index a065fb6d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/Component.php +++ /dev/null @@ -1,48 +0,0 @@ -api = $api; - } - public function getApi() - { - return $this->api; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setService($service) - { - $this->service = $service; - } - public function getService() - { - return $this->service; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ComponentAbuseStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ComponentAbuseStatus.php deleted file mode 100644 index 33f22ef1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ComponentAbuseStatus.php +++ /dev/null @@ -1,51 +0,0 @@ -component = $component; - } - public function getComponent() - { - return $this->component; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLastVerdict($lastVerdict) - { - $this->lastVerdict = $lastVerdict; - } - public function getLastVerdict() - { - return $this->lastVerdict; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ConsumerInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ConsumerInfo.php deleted file mode 100644 index f62f6b1f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ConsumerInfo.php +++ /dev/null @@ -1,49 +0,0 @@ -activationStatus = $activationStatus; - } - public function getActivationStatus() - { - return $this->activationStatus; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setQuotaInformation(Google_Service_Devprojects_QuotaInfo $quotaInformation) - { - $this->quotaInformation = $quotaInformation; - } - public function getQuotaInformation() - { - return $this->quotaInformation; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/Context.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/Context.php deleted file mode 100644 index 73fdae9d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/Context.php +++ /dev/null @@ -1,48 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/DomainAccountData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/DomainAccountData.php deleted file mode 100644 index 76c02fc3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/DomainAccountData.php +++ /dev/null @@ -1,40 +0,0 @@ -domainData = $domainData; - } - public function getDomainData() - { - return $this->domainData; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/DomainData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/DomainData.php deleted file mode 100644 index 2ace5a82..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/DomainData.php +++ /dev/null @@ -1,103 +0,0 @@ -contract = $contract; - } - public function getContract() - { - return $this->contract; - } - public function setDomainAccountCurrencyCode($domainAccountCurrencyCode) - { - $this->domainAccountCurrencyCode = $domainAccountCurrencyCode; - } - public function getDomainAccountCurrencyCode() - { - return $this->domainAccountCurrencyCode; - } - public function setDomainName($domainName) - { - $this->domainName = $domainName; - } - public function getDomainName() - { - return $this->domainName; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setProjects($projects) - { - $this->projects = $projects; - } - public function getProjects() - { - return $this->projects; - } - public function setProvisionable($provisionable) - { - $this->provisionable = $provisionable; - } - public function getProvisionable() - { - return $this->provisionable; - } - public function setReactivatable($reactivatable) - { - $this->reactivatable = $reactivatable; - } - public function getReactivatable() - { - return $this->reactivatable; - } - public function setRespayState($respayState) - { - $this->respayState = $respayState; - } - public function getRespayState() - { - return $this->respayState; - } - public function setSuspendable($suspendable) - { - $this->suspendable = $suspendable; - } - public function getSuspendable() - { - return $this->suspendable; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/EmbeddingParameters.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/EmbeddingParameters.php deleted file mode 100644 index 50d48758..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/EmbeddingParameters.php +++ /dev/null @@ -1,40 +0,0 @@ -displayUrl = $displayUrl; - } - public function getDisplayUrl() - { - return $this->displayUrl; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/Evaluation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/Evaluation.php deleted file mode 100644 index b6cd0050..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/Evaluation.php +++ /dev/null @@ -1,153 +0,0 @@ -abuseType = $abuseType; - } - public function getAbuseType() - { - return $this->abuseType; - } - public function setBackend($backend) - { - $this->backend = $backend; - } - public function getBackend() - { - return $this->backend; - } - public function setComment($comment) - { - $this->comment = $comment; - } - public function getComment() - { - return $this->comment; - } - public function setFeature($feature) - { - $this->feature = $feature; - } - public function getFeature() - { - return $this->feature; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setMiscData($miscData) - { - $this->miscData = $miscData; - } - public function getMiscData() - { - return $this->miscData; - } - public function setProcessTimeMillisecs($processTimeMillisecs) - { - $this->processTimeMillisecs = $processTimeMillisecs; - } - public function getProcessTimeMillisecs() - { - return $this->processTimeMillisecs; - } - public function setProcessedMicros($processedMicros) - { - $this->processedMicros = $processedMicros; - } - public function getProcessedMicros() - { - return $this->processedMicros; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - public function setScore($score) - { - $this->score = $score; - } - public function getScore() - { - return $this->score; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setTarget(Google_Service_Devprojects_Target $target) - { - $this->target = $target; - } - public function getTarget() - { - return $this->target; - } - public function setTimestampMicros($timestampMicros) - { - $this->timestampMicros = $timestampMicros; - } - public function getTimestampMicros() - { - return $this->timestampMicros; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/Feature.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/Feature.php deleted file mode 100644 index 0c6362f1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/Feature.php +++ /dev/null @@ -1,103 +0,0 @@ -booleanValue = $booleanValue; - } - public function getBooleanValue() - { - return $this->booleanValue; - } - public function setDoubleValue($doubleValue) - { - $this->doubleValue = $doubleValue; - } - public function getDoubleValue() - { - return $this->doubleValue; - } - public function setFeatureCount($featureCount) - { - $this->featureCount = $featureCount; - } - public function getFeatureCount() - { - return $this->featureCount; - } - public function setInt64Value($int64Value) - { - $this->int64Value = $int64Value; - } - public function getInt64Value() - { - return $this->int64Value; - } - public function setIntegerValue($integerValue) - { - $this->integerValue = $integerValue; - } - public function getIntegerValue() - { - return $this->integerValue; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setStringValue($stringValue) - { - $this->stringValue = $stringValue; - } - public function getStringValue() - { - return $this->stringValue; - } - public function setTimestampSequence($timestampSequence) - { - $this->timestampSequence = $timestampSequence; - } - public function getTimestampSequence() - { - return $this->timestampSequence; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/GeoRestriction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/GeoRestriction.php deleted file mode 100644 index d1b87c65..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/GeoRestriction.php +++ /dev/null @@ -1,41 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLocale($locale) - { - $this->locale = $locale; - } - public function getLocale() - { - return $this->locale; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/IamSection.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/IamSection.php deleted file mode 100644 index 1a1b39e3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/IamSection.php +++ /dev/null @@ -1,39 +0,0 @@ -iamEnabled = $iamEnabled; - } - public function getIamEnabled() - { - return $this->iamEnabled; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/InstalledAppInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/InstalledAppInfo.php deleted file mode 100644 index 54d80761..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/InstalledAppInfo.php +++ /dev/null @@ -1,84 +0,0 @@ -androidPackage = $androidPackage; - } - public function getAndroidPackage() - { - return $this->androidPackage; - } - public function setAppCert($appCert) - { - $this->appCert = $appCert; - } - public function getAppCert() - { - return $this->appCert; - } - public function setAppId($appId) - { - $this->appId = $appId; - } - public function getAppId() - { - return $this->appId; - } - public function setAppStoreId($appStoreId) - { - $this->appStoreId = $appStoreId; - } - public function getAppStoreId() - { - return $this->appStoreId; - } - public function setDeepLinking($deepLinking) - { - $this->deepLinking = $deepLinking; - } - public function getDeepLinking() - { - return $this->deepLinking; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/Locale.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/Locale.php deleted file mode 100644 index 8ab84428..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/Locale.php +++ /dev/null @@ -1,49 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setRestriction(Google_Service_Devprojects_UserRestriction $restriction) - { - $this->restriction = $restriction; - } - public function getRestriction() - { - return $this->restriction; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ManagedEntityMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ManagedEntityMetadata.php deleted file mode 100644 index 0490aa93..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ManagedEntityMetadata.php +++ /dev/null @@ -1,76 +0,0 @@ -adminUrl = $adminUrl; - } - public function getAdminUrl() - { - return $this->adminUrl; - } - public function setEntityId($entityId) - { - $this->entityId = $entityId; - } - public function getEntityId() - { - return $this->entityId; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLabel($label) - { - $this->label = $label; - } - public function getLabel() - { - return $this->label; - } - public function setRobot($robot) - { - $this->robot = $robot; - } - public function getRobot() - { - return $this->robot; - } - public function setRobotToCreate(Google_Service_Devprojects_RobotCreationParameters $robotToCreate) - { - $this->robotToCreate = $robotToCreate; - } - public function getRobotToCreate() - { - return $this->robotToCreate; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/NameValuePair.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/NameValuePair.php deleted file mode 100644 index c514e9f1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/NameValuePair.php +++ /dev/null @@ -1,57 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNonUtf8Value($nonUtf8Value) - { - $this->nonUtf8Value = $nonUtf8Value; - } - public function getNonUtf8Value() - { - return $this->nonUtf8Value; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/NotRestriction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/NotRestriction.php deleted file mode 100644 index 07113125..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/NotRestriction.php +++ /dev/null @@ -1,41 +0,0 @@ -child = $child; - } - public function getChild() - { - return $this->child; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/OrRestriction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/OrRestriction.php deleted file mode 100644 index f86818c0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/OrRestriction.php +++ /dev/null @@ -1,41 +0,0 @@ -child = $child; - } - public function getChild() - { - return $this->child; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/PlusPageInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/PlusPageInfo.php deleted file mode 100644 index 26c64d23..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/PlusPageInfo.php +++ /dev/null @@ -1,57 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setVanityUrl($vanityUrl) - { - $this->vanityUrl = $vanityUrl; - } - public function getVanityUrl() - { - return $this->vanityUrl; - } - public function setVerified($verified) - { - $this->verified = $verified; - } - public function getVerified() - { - return $this->verified; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ProducerConfiguration.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ProducerConfiguration.php deleted file mode 100644 index 444f9462..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ProducerConfiguration.php +++ /dev/null @@ -1,58 +0,0 @@ -consumerName = $consumerName; - } - public function getConsumerName() - { - return $this->consumerName; - } - public function setConsumptionStatus($consumptionStatus) - { - $this->consumptionStatus = $consumptionStatus; - } - public function getConsumptionStatus() - { - return $this->consumptionStatus; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setQuotaConstraints(Google_Service_Devprojects_QuotaConstraints $quotaConstraints) - { - $this->quotaConstraints = $quotaConstraints; - } - public function getQuotaConstraints() - { - return $this->quotaConstraints; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ProjectClientStructure.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ProjectClientStructure.php deleted file mode 100644 index 40d9da3f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ProjectClientStructure.php +++ /dev/null @@ -1,50 +0,0 @@ -client = $client; - } - public function getClient() - { - return $this->client; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ProjectData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ProjectData.php deleted file mode 100644 index 764e2931..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ProjectData.php +++ /dev/null @@ -1,317 +0,0 @@ -abuseSection = $abuseSection; - } - public function getAbuseSection() - { - return $this->abuseSection; - } - public function setAbuseState($abuseState) - { - $this->abuseState = $abuseState; - } - public function getAbuseState() - { - return $this->abuseState; - } - public function setApiSection(Google_Service_Devprojects_ApiSection $apiSection) - { - $this->apiSection = $apiSection; - } - public function getApiSection() - { - return $this->apiSection; - } - public function setApiaryPropertySection(Google_Service_Devprojects_ApiaryPropertySection $apiaryPropertySection) - { - $this->apiaryPropertySection = $apiaryPropertySection; - } - public function getApiaryPropertySection() - { - return $this->apiaryPropertySection; - } - public function setAppengineSection(Google_Service_Devprojects_AppEngineSection $appengineSection) - { - $this->appengineSection = $appengineSection; - } - public function getAppengineSection() - { - return $this->appengineSection; - } - public function setAppsScriptSection(Google_Service_Devprojects_AppsScriptSection $appsScriptSection) - { - $this->appsScriptSection = $appsScriptSection; - } - public function getAppsScriptSection() - { - return $this->appsScriptSection; - } - public function setAssignedId($assignedId) - { - $this->assignedId = $assignedId; - } - public function getAssignedId() - { - return $this->assignedId; - } - public function setAuthSection(Google_Service_Devprojects_AuthSection $authSection) - { - $this->authSection = $authSection; - } - public function getAuthSection() - { - return $this->authSection; - } - public function setCloudComputeSection(Google_Service_Devprojects_CloudComputeSection $cloudComputeSection) - { - $this->cloudComputeSection = $cloudComputeSection; - } - public function getCloudComputeSection() - { - return $this->cloudComputeSection; - } - public function setCloudSqlSection(Google_Service_Devprojects_CloudSqlSection $cloudSqlSection) - { - $this->cloudSqlSection = $cloudSqlSection; - } - public function getCloudSqlSection() - { - return $this->cloudSqlSection; - } - public function setCloudStorageSection(Google_Service_Devprojects_CloudStorageSection $cloudStorageSection) - { - $this->cloudStorageSection = $cloudStorageSection; - } - public function getCloudStorageSection() - { - return $this->cloudStorageSection; - } - public function setCreatedMs($createdMs) - { - $this->createdMs = $createdMs; - } - public function getCreatedMs() - { - return $this->createdMs; - } - public function setCurrentUserRole($currentUserRole) - { - $this->currentUserRole = $currentUserRole; - } - public function getCurrentUserRole() - { - return $this->currentUserRole; - } - public function setCustomizationSection(Google_Service_Devprojects_UiCustomizationSection $customizationSection) - { - $this->customizationSection = $customizationSection; - } - public function getCustomizationSection() - { - return $this->customizationSection; - } - public function setDisabledReasons($disabledReasons) - { - $this->disabledReasons = $disabledReasons; - } - public function getDisabledReasons() - { - return $this->disabledReasons; - } - public function setDomainId($domainId) - { - $this->domainId = $domainId; - } - public function getDomainId() - { - return $this->domainId; - } - public function setDomainOrOrganization($domainOrOrganization) - { - $this->domainOrOrganization = $domainOrOrganization; - } - public function getDomainOrOrganization() - { - return $this->domainOrOrganization; - } - public function setIamSection(Google_Service_Devprojects_IamSection $iamSection) - { - $this->iamSection = $iamSection; - } - public function getIamSection() - { - return $this->iamSection; - } - 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 setLabel($label) - { - $this->label = $label; - } - public function getLabel() - { - return $this->label; - } - public function setProjectLinkingSection(Google_Service_Devprojects_ProjectLinkingSection $projectLinkingSection) - { - $this->projectLinkingSection = $projectLinkingSection; - } - public function getProjectLinkingSection() - { - return $this->projectLinkingSection; - } - public function setProjectUrl($projectUrl) - { - $this->projectUrl = $projectUrl; - } - public function getProjectUrl() - { - return $this->projectUrl; - } - public function setQuotasSection(Google_Service_Devprojects_QuotaConfiguration $quotasSection) - { - $this->quotasSection = $quotasSection; - } - public function getQuotasSection() - { - return $this->quotasSection; - } - public function setServiceAccountSection(Google_Service_Devprojects_ServiceAccountSection $serviceAccountSection) - { - $this->serviceAccountSection = $serviceAccountSection; - } - public function getServiceAccountSection() - { - return $this->serviceAccountSection; - } - public function setShardType($shardType) - { - $this->shardType = $shardType; - } - public function getShardType() - { - return $this->shardType; - } - public function setStatsSection(Google_Service_Devprojects_StatsSection $statsSection) - { - $this->statsSection = $statsSection; - } - public function getStatsSection() - { - return $this->statsSection; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setTeamSection(Google_Service_Devprojects_TeamSection $teamSection) - { - $this->teamSection = $teamSection; - } - public function getTeamSection() - { - return $this->teamSection; - } - public function setVersionInfo($versionInfo) - { - $this->versionInfo = $versionInfo; - } - public function getVersionInfo() - { - return $this->versionInfo; - } - public function setVisibility($visibility) - { - $this->visibility = $visibility; - } - public function getVisibility() - { - return $this->visibility; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ProjectLinkingSection.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ProjectLinkingSection.php deleted file mode 100644 index e3247f7d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ProjectLinkingSection.php +++ /dev/null @@ -1,40 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setPlusPage(Google_Service_Devprojects_ProjectPlusPage $plusPage) - { - $this->plusPage = $plusPage; - } - public function getPlusPage() - { - return $this->plusPage; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ProjectPlusPage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ProjectPlusPage.php deleted file mode 100644 index 6857231a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ProjectPlusPage.php +++ /dev/null @@ -1,48 +0,0 @@ -approved = $approved; - } - public function getApproved() - { - return $this->approved; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setObfuscatedPageId($obfuscatedPageId) - { - $this->obfuscatedPageId = $obfuscatedPageId; - } - public function getObfuscatedPageId() - { - return $this->obfuscatedPageId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ProjectsDeveloperKeyToProjectIdResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ProjectsDeveloperKeyToProjectIdResponse.php deleted file mode 100644 index 6c7e3377..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ProjectsDeveloperKeyToProjectIdResponse.php +++ /dev/null @@ -1,39 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setResourceId($resourceId) - { - $this->resourceId = $resourceId; - } - public function getResourceId() - { - return $this->resourceId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ProjectsGetProjectClientStructureRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ProjectsGetProjectClientStructureRequest.php deleted file mode 100644 index ca7e7709..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ProjectsGetProjectClientStructureRequest.php +++ /dev/null @@ -1,49 +0,0 @@ -client = $client; - } - public function getClient() - { - return $this->client; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } - public function setWhitelistId($whitelistId) - { - $this->whitelistId = $whitelistId; - } - public function getWhitelistId() - { - return $this->whitelistId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ProjectsGetProjectClientStructureResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ProjectsGetProjectClientStructureResponse.php deleted file mode 100644 index 04ed98d8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ProjectsGetProjectClientStructureResponse.php +++ /dev/null @@ -1,40 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setProject(Google_Service_Devprojects_ProjectClientStructure $project) - { - $this->project = $project; - } - public function getProject() - { - return $this->project; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ProjectsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ProjectsListResponse.php deleted file mode 100644 index cfc59122..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ProjectsListResponse.php +++ /dev/null @@ -1,41 +0,0 @@ -items = $items; - } - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ProjectsNotifyOwnersRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ProjectsNotifyOwnersRequest.php deleted file mode 100644 index 2dd99b6e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ProjectsNotifyOwnersRequest.php +++ /dev/null @@ -1,57 +0,0 @@ -messageHtml = $messageHtml; - } - public function getMessageHtml() - { - return $this->messageHtml; - } - public function setMessageText($messageText) - { - $this->messageText = $messageText; - } - public function getMessageText() - { - return $this->messageText; - } - public function setSubjectText($subjectText) - { - $this->subjectText = $subjectText; - } - public function getSubjectText() - { - return $this->subjectText; - } - public function setWhitelistId($whitelistId) - { - $this->whitelistId = $whitelistId; - } - public function getWhitelistId() - { - return $this->whitelistId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ProjectsNotifyOwnersResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ProjectsNotifyOwnersResponse.php deleted file mode 100644 index b6ee6aa3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ProjectsNotifyOwnersResponse.php +++ /dev/null @@ -1,40 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setUserId($userId) - { - $this->userId = $userId; - } - public function getUserId() - { - return $this->userId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ProjectsStringIdToNumericIdResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ProjectsStringIdToNumericIdResponse.php deleted file mode 100644 index 25ec0658..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ProjectsStringIdToNumericIdResponse.php +++ /dev/null @@ -1,39 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNumericId($numericId) - { - $this->numericId = $numericId; - } - public function getNumericId() - { - return $this->numericId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ProjectsUndeleteRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ProjectsUndeleteRequest.php deleted file mode 100644 index 7394933d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ProjectsUndeleteRequest.php +++ /dev/null @@ -1,48 +0,0 @@ -disableAuthorizationCheck = $disableAuthorizationCheck; - } - public function getDisableAuthorizationCheck() - { - return $this->disableAuthorizationCheck; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } - public function setWhitelistId($whitelistId) - { - $this->whitelistId = $whitelistId; - } - public function getWhitelistId() - { - return $this->whitelistId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/QueryUrl.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/QueryUrl.php deleted file mode 100644 index 525f5dda..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/QueryUrl.php +++ /dev/null @@ -1,59 +0,0 @@ -fragment = $fragment; - } - public function getFragment() - { - return $this->fragment; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setQueryParameters($queryParameters) - { - $this->queryParameters = $queryParameters; - } - public function getQueryParameters() - { - return $this->queryParameters; - } - public function setUrlBase($urlBase) - { - $this->urlBase = $urlBase; - } - public function getUrlBase() - { - return $this->urlBase; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/QuotaBucketDefinition.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/QuotaBucketDefinition.php deleted file mode 100644 index 0b92a3a7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/QuotaBucketDefinition.php +++ /dev/null @@ -1,97 +0,0 @@ -billableDailyLimit = $billableDailyLimit; - } - public function getBillableDailyLimit() - { - return $this->billableDailyLimit; - } - public function setDailyLimit(Google_Service_Devprojects_ApiLimitDefinition $dailyLimit) - { - $this->dailyLimit = $dailyLimit; - } - public function getDailyLimit() - { - return $this->dailyLimit; - } - public function setId(Google_Service_Devprojects_BucketId $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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setVariableTermQuotaDescription($variableTermQuotaDescription) - { - $this->variableTermQuotaDescription = $variableTermQuotaDescription; - } - public function getVariableTermQuotaDescription() - { - return $this->variableTermQuotaDescription; - } - public function setVisible($visible) - { - $this->visible = $visible; - } - public function getVisible() - { - return $this->visible; - } - public function setVisitorRateLimit(Google_Service_Devprojects_ApiLimitDefinition $visitorRateLimit) - { - $this->visitorRateLimit = $visitorRateLimit; - } - public function getVisitorRateLimit() - { - return $this->visitorRateLimit; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/QuotaConfiguration.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/QuotaConfiguration.php deleted file mode 100644 index 7f4ddc50..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/QuotaConfiguration.php +++ /dev/null @@ -1,157 +0,0 @@ -allBlocked = $allBlocked; - } - public function getAllBlocked() - { - return $this->allBlocked; - } - public function setBillableDailyLimit($billableDailyLimit) - { - $this->billableDailyLimit = $billableDailyLimit; - } - public function getBillableDailyLimit() - { - return $this->billableDailyLimit; - } - public function setBucketBillableDailyLimit($bucketBillableDailyLimit) - { - $this->bucketBillableDailyLimit = $bucketBillableDailyLimit; - } - public function getBucketBillableDailyLimit() - { - return $this->bucketBillableDailyLimit; - } - public function setBucketDailyReport($bucketDailyReport) - { - $this->bucketDailyReport = $bucketDailyReport; - } - public function getBucketDailyReport() - { - return $this->bucketDailyReport; - } - public function setBucketPerVisitorLimit($bucketPerVisitorLimit) - { - $this->bucketPerVisitorLimit = $bucketPerVisitorLimit; - } - public function getBucketPerVisitorLimit() - { - return $this->bucketPerVisitorLimit; - } - public function setConcurrentReport($concurrentReport) - { - $this->concurrentReport = $concurrentReport; - } - public function getConcurrentReport() - { - return $this->concurrentReport; - } - public function setConfigurationType($configurationType) - { - $this->configurationType = $configurationType; - } - public function getConfigurationType() - { - return $this->configurationType; - } - public function setDailyReport($dailyReport) - { - $this->dailyReport = $dailyReport; - } - public function getDailyReport() - { - return $this->dailyReport; - } - public function setHasUserip($hasUserip) - { - $this->hasUserip = $hasUserip; - } - public function getHasUserip() - { - return $this->hasUserip; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setPerProjectLimit($perProjectLimit) - { - $this->perProjectLimit = $perProjectLimit; - } - public function getPerProjectLimit() - { - return $this->perProjectLimit; - } - public function setPerVisitorLimit($perVisitorLimit) - { - $this->perVisitorLimit = $perVisitorLimit; - } - public function getPerVisitorLimit() - { - return $this->perVisitorLimit; - } - public function setVariableTermQuota($variableTermQuota) - { - $this->variableTermQuota = $variableTermQuota; - } - public function getVariableTermQuota() - { - return $this->variableTermQuota; - } - public function setWhitelist($whitelist) - { - $this->whitelist = $whitelist; - } - public function getWhitelist() - { - return $this->whitelist; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/QuotaConstraints.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/QuotaConstraints.php deleted file mode 100644 index b0733f6f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/QuotaConstraints.php +++ /dev/null @@ -1,39 +0,0 @@ -explicitDailyQuota = $explicitDailyQuota; - } - public function getExplicitDailyQuota() - { - return $this->explicitDailyQuota; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/QuotaInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/QuotaInfo.php deleted file mode 100644 index 6d12796a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/QuotaInfo.php +++ /dev/null @@ -1,139 +0,0 @@ -allBlocked = $allBlocked; - } - public function getAllBlocked() - { - return $this->allBlocked; - } - public function setBillableDailyLimit(Google_Service_Devprojects_ApiLimitStatus $billableDailyLimit) - { - $this->billableDailyLimit = $billableDailyLimit; - } - public function getBillableDailyLimit() - { - return $this->billableDailyLimit; - } - public function setBucketBillableDailyLimit(Google_Service_Devprojects_BucketLimitStatus $bucketBillableDailyLimit) - { - $this->bucketBillableDailyLimit = $bucketBillableDailyLimit; - } - public function getBucketBillableDailyLimit() - { - return $this->bucketBillableDailyLimit; - } - public function setBucketDailyReport(Google_Service_Devprojects_BucketLimitStatus $bucketDailyReport) - { - $this->bucketDailyReport = $bucketDailyReport; - } - public function getBucketDailyReport() - { - return $this->bucketDailyReport; - } - public function setBucketPerVisitorLimit(Google_Service_Devprojects_BucketLimitStatus $bucketPerVisitorLimit) - { - $this->bucketPerVisitorLimit = $bucketPerVisitorLimit; - } - public function getBucketPerVisitorLimit() - { - return $this->bucketPerVisitorLimit; - } - public function setBucketVariableTermQuota(Google_Service_Devprojects_BucketLimitStatus $bucketVariableTermQuota) - { - $this->bucketVariableTermQuota = $bucketVariableTermQuota; - } - public function getBucketVariableTermQuota() - { - return $this->bucketVariableTermQuota; - } - public function setConcurrentReport(Google_Service_Devprojects_ApiLimitStatus $concurrentReport) - { - $this->concurrentReport = $concurrentReport; - } - public function getConcurrentReport() - { - return $this->concurrentReport; - } - public function setDailyReport(Google_Service_Devprojects_ApiLimitStatus $dailyReport) - { - $this->dailyReport = $dailyReport; - } - public function getDailyReport() - { - return $this->dailyReport; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setPerProjectLimit(Google_Service_Devprojects_ApiLimitStatus $perProjectLimit) - { - $this->perProjectLimit = $perProjectLimit; - } - public function getPerProjectLimit() - { - return $this->perProjectLimit; - } - public function setPerVisitorLimit(Google_Service_Devprojects_ApiLimitStatus $perVisitorLimit) - { - $this->perVisitorLimit = $perVisitorLimit; - } - public function getPerVisitorLimit() - { - return $this->perVisitorLimit; - } - public function setVariableTermQuota(Google_Service_Devprojects_ApiLimitStatus $variableTermQuota) - { - $this->variableTermQuota = $variableTermQuota; - } - public function getVariableTermQuota() - { - return $this->variableTermQuota; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/Region.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/Region.php deleted file mode 100644 index d4cb5204..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/Region.php +++ /dev/null @@ -1,39 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/Resource/ActivationLinks.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/Resource/ActivationLinks.php deleted file mode 100644 index 75d23b49..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/Resource/ActivationLinks.php +++ /dev/null @@ -1,69 +0,0 @@ - - * $devprojectsService = new Google_Service_Devprojects(...); - * $activationLinks = $devprojectsService->activationLinks; - * - */ -class Google_Service_Devprojects_Resource_ActivationLinks extends Google_Service_Resource -{ - /** - * Generate activation links, a proper whitelist id is required. - * (activationLinks.insert) - * - * @param Google_Service_Devprojects_ActivationLinksCollection $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string user Use for access control temporarily - * @opt_param string whitelistId The whitelist project ID. See - * Projects.Insert.whitelist_id documentation for details. - * @return Google_Service_Devprojects_ActivationLinksCollection - */ - public function insert(Google_Service_Devprojects_ActivationLinksCollection $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Devprojects_ActivationLinksCollection"); - } - /** - * Validates an activation link. If successful, returns either the token OR type - * for the API OR respectively component being activated and the key value pairs - * contained in the signup token. For more details regarding sign-up tokens - * please see: - for first-party (Google) APIs - - * 'https://sites.google.com/a/google.com/developer-console/developer-console- - * services/the-devrel-shard#TOC-Creating-signup-urls-a.k.a.-activation-tokens-' - * - for third-party (Swarm/Endpoint) APIs - the producer-initiated activation - * flow details here http://go/apiproduceconsume (activationLinks.validate) - * - * @param Google_Service_Devprojects_ActivationLinksValidateRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string whitelistId The whitelist project ID. See - * Projects.Insert.whitelist_id documentation for details. - * @return Google_Service_Devprojects_ActivationLinksValidateResponse - */ - public function validate(Google_Service_Devprojects_ActivationLinksValidateRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('validate', array($params), "Google_Service_Devprojects_ActivationLinksValidateResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/Resource/Apiconsumers.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/Resource/Apiconsumers.php deleted file mode 100644 index c8760dc0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/Resource/Apiconsumers.php +++ /dev/null @@ -1,112 +0,0 @@ - - * $devprojectsService = new Google_Service_Devprojects(...); - * $apiconsumers = $devprojectsService->apiconsumers; - * - */ -class Google_Service_Devprojects_Resource_Apiconsumers extends Google_Service_Resource -{ - /** - * Removes an API available for consumption from the consumer project. This can - * be invoked by either the API producer or the API consumer. - * (apiconsumers.delete) - * - * @param array $optParams Optional parameters. - * - * @opt_param string apiIdToken The ID of the API for which to delete the API - * consumption details - * @opt_param string consumerProjectId The consumer project ID for which to - * delete the API consumption details - * @opt_param string producerProjectId The producer project ID for which to - * delete the API consumption details - * @opt_param string whitelistId The whitelist project ID. See - * Projects.Insert.whitelist_id documentation for details. - */ - public function delete($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Makes an API available for consumption to a given consumer project by the the - * API producer (apiconsumers.insert) - * - * @param Google_Service_Devprojects_ApiConsumer $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string whitelistId The whitelist project ID. See - * Projects.Insert.whitelist_id documentation for details. - * @return Google_Service_Devprojects_ApiConsumer - */ - public function insert(Google_Service_Devprojects_ApiConsumer $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Devprojects_ApiConsumer"); - } - /** - * Lists the API consumers for a given producer and API - * (apiconsumers.listApiconsumers) - * - * @param array $optParams Optional parameters. - * - * @opt_param string apiIdToken The ApiId token for which consumers are listed - * @opt_param string locale The language code, country code and locale variant - * encoded as a single string. This is intended to be the locale for the end - * user, and hence the target of translations. Presence of the language code - * indicates that the response should include translation strings for the - * requested sections, as appropriate. - * @opt_param string producerProjectId The producer project for which consumers - * are listed - * @opt_param string whitelistId The whitelist project ID. See - * Projects.Insert.whitelist_id documentation for details. - * @return Google_Service_Devprojects_ApiconsumersListResponse - */ - public function listApiconsumers($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Devprojects_ApiconsumersListResponse"); - } - /** - * Updates the configuration of consumption of an API. The update can change - * producer-specific configuration like the API consumption status or quota - * constraints. By switching the consumption status the producer can - * pause/resume the consumption of the API. Through quota constraints the - * producer can set or clear an explicit per-consumer daily quota, overriding - * the per-API default. (apiconsumers.update) - * - * @param Google_Service_Devprojects_ApiConsumer $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string whitelistId The whitelist project ID. See - * Projects.Insert.whitelist_id documentation for details. - * @return Google_Service_Devprojects_ApiConsumer - */ - public function update(Google_Service_Devprojects_ApiConsumer $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Devprojects_ApiConsumer"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/Resource/Apis.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/Resource/Apis.php deleted file mode 100644 index ec5f795f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/Resource/Apis.php +++ /dev/null @@ -1,122 +0,0 @@ - - * $devprojectsService = new Google_Service_Devprojects(...); - * $apis = $devprojectsService->apis; - * - */ -class Google_Service_Devprojects_Resource_Apis extends Google_Service_Resource -{ - /** - * Get the ApiData definition details for a given API. (apis.get) - * - * @param string $apisId The resource ID. - * @param array $optParams Optional parameters. - * - * @opt_param string locale The language code, country code and locale variant - * encoded as a single string. This is intended to be the locale for the end - * user, and hence the target of translations. Presence of the language code - * indicates that the response should include translation strings for the - * requested sections, as appropriate. - * @opt_param string projectId The numeric ID of the project for which to get - * the API definition. It has to be either the ID of the project producing the - * API or the ID of a project having the API available for consumption - * @opt_param string whitelistId The whitelist project ID. See - * Projects.Insert.whitelist_id documentation for details. - * @return Google_Service_Devprojects_ApiData - */ - public function get($apisId, $optParams = array()) - { - $params = array('apisId' => $apisId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Devprojects_ApiData"); - } - /** - * Retrieves a list of resources, possibly filtered based on visibility settings - * related to the originator of the current end-user request. (apis.listApis) - * - * @param array $optParams Optional parameters. - * - * @opt_param string locale The language code, country code and locale variant - * encoded as a single string. This is intended to be the locale for the end - * user, and hence the target of translations. Presence of the language code - * indicates that the response should include translation strings for the - * requested sections, as appropriate. - * @opt_param string projectId The numeric ID of the project for which to list - * APIs. If present the API definition list will include all the first-party - * APIs available to the current user as well as all the third party APIs - * produced on the specified project or made available for "consumption" to the - * current project - independently of their activation (enablement) status. If - * not present only first-party APIs available to the current user are returned. - * @opt_param string whitelistId The whitelist project ID. See - * Projects.Insert.whitelist_id documentation for details. - * @return Google_Service_Devprojects_ApisListResponse - */ - public function listApis($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Devprojects_ApisListResponse"); - } - /** - * List APIs consumed by a given project (apis.listconsumed) - * - * @param array $optParams Optional parameters. - * - * @opt_param string consumerProjectId The numeric ID of the project for which - * consumed APIs are listed - * @opt_param string locale The language code, country code and locale variant - * encoded as a single string. This is intended to be the locale for the end - * user, and hence the target of translations. Presence of the language code - * indicates that the response should include translation strings for the - * requested sections, as appropriate. - * @opt_param string whitelistId The whitelist project ID. See - * Projects.Insert.whitelist_id documentation for details. - * @return Google_Service_Devprojects_ApisListConsumedResponse - */ - public function listconsumed($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('listconsumed', array($params), "Google_Service_Devprojects_ApisListConsumedResponse"); - } - /** - * List APIs produced by a given project (apis.listproduced) - * - * @param array $optParams Optional parameters. - * - * @opt_param string locale The language code, country code and locale variant - * encoded as a single string. This is intended to be the locale for the end - * user, and hence the target of translations. Presence of the language code - * indicates that the response should include translation strings for the - * requested sections, as appropriate. - * @opt_param string producerProjectId The producer project ID to list APIs for. - * @opt_param string whitelistId The whitelist project ID. See - * Projects.Insert.whitelist_id documentation for details. - * @return Google_Service_Devprojects_ApisListProducedResponse - */ - public function listproduced($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('listproduced', array($params), "Google_Service_Devprojects_ApisListProducedResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/Resource/Controlwidgets.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/Resource/Controlwidgets.php deleted file mode 100644 index 19a7cbcd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/Resource/Controlwidgets.php +++ /dev/null @@ -1,46 +0,0 @@ - - * $devprojectsService = new Google_Service_Devprojects(...); - * $controlwidgets = $devprojectsService->controlwidgets; - * - */ -class Google_Service_Devprojects_Resource_Controlwidgets extends Google_Service_Resource -{ - /** - * Get embedding parameters for a control widget (controlwidgets.embed) - * - * @param string $projectId Project that might be relevant to the widget. - * @param string $widgetId The definition ID of the control widget. - * @param array $optParams Optional parameters. - * - * @opt_param string kv Column separated key value parameters - * @opt_param string whitelistId The whitelist project ID. See - * Projects.Insert.whitelist_id documentation for details. - * @return Google_Service_Devprojects_EmbeddingParameters - */ - public function embed($projectId, $widgetId, $optParams = array()) - { - $params = array('projectId' => $projectId, 'widgetId' => $widgetId); - $params = array_merge($params, $optParams); - return $this->call('embed', array($params), "Google_Service_Devprojects_EmbeddingParameters"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/Resource/Domains.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/Resource/Domains.php deleted file mode 100644 index 9b798372..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/Resource/Domains.php +++ /dev/null @@ -1,96 +0,0 @@ - - * $devprojectsService = new Google_Service_Devprojects(...); - * $domains = $devprojectsService->domains; - * - */ -class Google_Service_Devprojects_Resource_Domains extends Google_Service_Resource -{ - /** - * Retrieves the configuration data for a domain. (domains.get) - * - * @param string $domainsId The resource ID. - * @param array $optParams Optional parameters. - * - * @opt_param string whitelistId The whitelist project ID. See - * Projects.Insert.whitelist_id documentation for details. - * @return Google_Service_Devprojects_DomainAccountData - */ - public function get($domainsId, $optParams = array()) - { - $params = array('domainsId' => $domainsId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Devprojects_DomainAccountData"); - } - /** - * Creates a domain account. (domains.insert) - * - * @param Google_Service_Devprojects_DomainAccountData $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string whitelistId The whitelist project ID. See - * Projects.Insert.whitelist_id documentation for details. - * @return Google_Service_Devprojects_DomainAccountData - */ - public function insert(Google_Service_Devprojects_DomainAccountData $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Devprojects_DomainAccountData"); - } - /** - * Updates a domain account. The resource will replace the current domain. This - * method supports patch semantics. (domains.patch) - * - * @param string $domainsId The resource ID. - * @param Google_Service_Devprojects_DomainAccountData $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string whitelistId The whitelist project ID. See - * Projects.Insert.whitelist_id documentation for details. - * @return Google_Service_Devprojects_DomainAccountData - */ - public function patch($domainsId, Google_Service_Devprojects_DomainAccountData $postBody, $optParams = array()) - { - $params = array('domainsId' => $domainsId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Devprojects_DomainAccountData"); - } - /** - * Updates a domain account. The resource will replace the current domain. - * (domains.update) - * - * @param string $domainsId The resource ID. - * @param Google_Service_Devprojects_DomainAccountData $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string whitelistId The whitelist project ID. See - * Projects.Insert.whitelist_id documentation for details. - * @return Google_Service_Devprojects_DomainAccountData - */ - public function update($domainsId, Google_Service_Devprojects_DomainAccountData $postBody, $optParams = array()) - { - $params = array('domainsId' => $domainsId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Devprojects_DomainAccountData"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/Resource/Projects.php deleted file mode 100644 index a27ffc18..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/Resource/Projects.php +++ /dev/null @@ -1,269 +0,0 @@ - - * $devprojectsService = new Google_Service_Devprojects(...); - * $projects = $devprojectsService->projects; - * - */ -class Google_Service_Devprojects_Resource_Projects extends Google_Service_Resource -{ - /** - * Deletes a resource. (projects.delete) - * - * @param string $projectId The Devconsole project ID. - * @param array $optParams Optional parameters. - * - * @opt_param bool disableAuthorizationCheck If set to true, authorization - * checks will be disabled for this request. This field is intended to be used - * as part of rolling out IAM authorization checks in the CRM Projects API. - * Initially, we will perform IAM authorization checks in the Projects API, but - * ignore the result and simply log differences between IAM and DevConsole - * authorization checks. Once we have confidence in IAM, we will enforce the IAM - * check authorization checks and use this field to disable authorization - * checking in DevConsole. - * @opt_param string whitelistId The whitelist project ID. See - * Projects.Insert.whitelist_id documentation for details. - */ - public function delete($projectId, $optParams = array()) - { - $params = array('projectId' => $projectId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Converts a developer key into a project id. - * (projects.developerkeytoprojectid) - * - * @param string $developerKey The developer key - * @param array $optParams Optional parameters. - * - * @opt_param string whitelistId The whitelist project ID. See - * Projects.Insert.whitelist_id documentation for details. - * @return Google_Service_Devprojects_ProjectsDeveloperKeyToProjectIdResponse - */ - public function developerkeytoprojectid($developerKey, $optParams = array()) - { - $params = array('developerKey' => $developerKey); - $params = array_merge($params, $optParams); - return $this->call('developerkeytoprojectid', array($params), "Google_Service_Devprojects_ProjectsDeveloperKeyToProjectIdResponse"); - } - /** - * Get a project. (projects.get) - * - * @param string $projectId The Devconsole project ID. - * @param array $optParams Optional parameters. - * - * @opt_param string locale The language code, country code and locale variant - * encoded as a single string. This is intended to be the locale for the end - * user, and hence the target of translations. Presence of the language code - * indicates that the response should include translation strings for the - * requested sections, as appropriate. - * @opt_param bool retrieveCurrentUserRole Whether to also retrieve the role of - * the user for which the project is currently fetched - * @opt_param string section The list of sections that should be returned. By - * default, the API will only prefill the basic project data, since loading a - * project in its entirety can take relatively long and is often not needed. - * @opt_param string whitelistId The whitelist project ID. See - * Projects.Insert.whitelist_id documentation for details. - * @return Google_Service_Devprojects_ProjectData - */ - public function get($projectId, $optParams = array()) - { - $params = array('projectId' => $projectId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Devprojects_ProjectData"); - } - /** - * Obtain the structure of clients within the project for use in abuse control - * and takedowns. (projects.getprojectclientstructure) - * - * @param Google_Service_Devprojects_ProjectsGetProjectClientStructureRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Devprojects_ProjectsGetProjectClientStructureResponse - */ - public function getprojectclientstructure(Google_Service_Devprojects_ProjectsGetProjectClientStructureRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('getprojectclientstructure', array($params), "Google_Service_Devprojects_ProjectsGetProjectClientStructureResponse"); - } - /** - * Create a new project. Note that only the base data of a project will be - * transferred. Everything else needs to go through an update request. - * (projects.insert) - * - * @param Google_Service_Devprojects_ProjectData $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string initialOwner Gaia id of the initial project owner. - * Currently,this should always be provided, but that might change in the - * future. - * @opt_param bool retryRequest Set to true to indicate that this is a retry - * request - * @opt_param string section The list of sections that should be created. - * @opt_param string whitelistId The whitelist project ID. See - * Projects.Insert.whitelist_id documentation for details. - * @return Google_Service_Devprojects_ProjectData - */ - public function insert(Google_Service_Devprojects_ProjectData $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Devprojects_ProjectData"); - } - /** - * Query projects (projects.listProjects) - * - * @param array $optParams Optional parameters. - * - * @opt_param string fillSection Return projects with the following sections - * included if possible. - * @opt_param bool includeNonActive Whether also non-active projects should be - * included in results - * @opt_param string includedShard If this list is nonempty, projects are only - * returned if they contain some shard in the list. If the list is empty, no - * filtering occurs - * @opt_param string requiredApiId Return only projects that have all the given - * APIs active - * @opt_param string requiredSection Return only projects that have all the - * given sections - * @opt_param bool retrieveCurrentUserRole Whether to also retrieve the role of - * the user for which projects are currently listed - * @opt_param string user Return only projects that the given user has access - * to. For now, this is always required. Later, this will be required for LOAS - * based access only, and we can infer the user from the access control. As such - * the user will need to be a team member of the project. Also the user might be - * logged as the initiator of the update. - * @opt_param string whitelistId The whitelist project ID. See - * Projects.Insert.whitelist_id documentation for details. - * @return Google_Service_Devprojects_ProjectsListResponse - */ - public function listProjects($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Devprojects_ProjectsListResponse"); - } - /** - * Uses DevConsole notification endpoint to notify project owners of important - * events, such as quota breaching. Currently only supports emailing the users - * of a project who fill the OWNER role, though there's been talk of adding - * support for other notification formats as well. (projects.notifyowners) - * - * @param string $projectsId The resource ID. - * @param Google_Service_Devprojects_ProjectsNotifyOwnersRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string whitelistId The whitelist project ID. See - * Projects.Insert.whitelist_id documentation for details. - * @return Google_Service_Devprojects_ProjectsNotifyOwnersResponse - */ - public function notifyowners($projectsId, Google_Service_Devprojects_ProjectsNotifyOwnersRequest $postBody, $optParams = array()) - { - $params = array('projectsId' => $projectsId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('notifyowners', array($params), "Google_Service_Devprojects_ProjectsNotifyOwnersResponse"); - } - /** - * Update a project. This method supports patch semantics. (projects.patch) - * - * @param string $projectId The Devconsole project ID. - * @param Google_Service_Devprojects_ProjectData $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string section The list of sections that should be updated. Any - * parts of the project entity that are not listed here will not be considered - * for updates. - * @opt_param string user If specified, the user to check accepted TOSes - * against. This is needed when an update (e.g., enabling the BigStore Apiary - * API requires the user to accept a specific ToS. In the future the nuser could - * be inferred from the access control. - * @opt_param string whitelistId The whitelist project ID. See - * Projects.Insert.whitelist_id documentation for details. - * @return Google_Service_Devprojects_ProjectData - */ - public function patch($projectId, Google_Service_Devprojects_ProjectData $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Devprojects_ProjectData"); - } - /** - * Looks-up a project specified via a string ID in app-engine app ID form and if - * found returns its numeric ID. Note: in the case of Dasher-based projects the - * string ID is in the form "domain:appId" (e.g., "google.com:cohesive- - * bonbon-301") If the lookup fails a PROJECT_NOT_FOUND error is returned. - * (projects.stringidtonumericid) - * - * @param string $project The string project id to lookup - * @param array $optParams Optional parameters. - * - * @opt_param string whitelistId The whitelist project ID. See - * Projects.Insert.whitelist_id documentation for details. - * @return Google_Service_Devprojects_ProjectsStringIdToNumericIdResponse - */ - public function stringidtonumericid($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('stringidtonumericid', array($params), "Google_Service_Devprojects_ProjectsStringIdToNumericIdResponse"); - } - /** - * Undelete a project (projects.undelete) - * - * @param string $projectId The resource ID. - * @param Google_Service_Devprojects_ProjectsUndeleteRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string whitelistId The whitelist project ID. See - * Projects.Insert.whitelist_id documentation for details. - */ - public function undelete($projectId, Google_Service_Devprojects_ProjectsUndeleteRequest $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('undelete', array($params)); - } - /** - * Update a project. (projects.update) - * - * @param string $projectId The Devconsole project ID. - * @param Google_Service_Devprojects_ProjectData $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string section The list of sections that should be updated. Any - * parts of the project entity that are not listed here will not be considered - * for updates. - * @opt_param string user If specified, the user to check accepted TOSes - * against. This is needed when an update (e.g., enabling the BigStore Apiary - * API requires the user to accept a specific ToS. In the future the nuser could - * be inferred from the access control. - * @opt_param string whitelistId The whitelist project ID. See - * Projects.Insert.whitelist_id documentation for details. - * @return Google_Service_Devprojects_ProjectData - */ - public function update($projectId, Google_Service_Devprojects_ProjectData $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Devprojects_ProjectData"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/Resource/Toses.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/Resource/Toses.php deleted file mode 100644 index d66ad89c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/Resource/Toses.php +++ /dev/null @@ -1,100 +0,0 @@ - - * $devprojectsService = new Google_Service_Devprojects(...); - * $toses = $devprojectsService->toses; - * - */ -class Google_Service_Devprojects_Resource_Toses extends Google_Service_Resource -{ - /** - * A message to accept at least one terms of service within at least one - * context. Any number of contexts and terms can be provided, and each provided - * terms will be accepted in each provided context. (toses.accept) - * - * @param Google_Service_Devprojects_TosesAcceptRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string whitelistId The whitelist project ID. See - * Projects.Insert.whitelist_id documentation for details. - * @return Google_Service_Devprojects_TosesAcceptResponse - */ - public function accept(Google_Service_Devprojects_TosesAcceptRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('accept', array($params), "Google_Service_Devprojects_TosesAcceptResponse"); - } - /** - * A message to check whether or not the provided terms have been accepted in - * any of the provided contexts. In most cases, the context will usually be just - * a user, just a project, or a user and a project. (toses.check) - * - * @param Google_Service_Devprojects_TosesCheckRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string whitelistId The whitelist project ID. See - * Projects.Insert.whitelist_id documentation for details. - * @return Google_Service_Devprojects_TosesCheckResponse - */ - public function check(Google_Service_Devprojects_TosesCheckRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('check', array($params), "Google_Service_Devprojects_TosesCheckResponse"); - } - /** - * Get specific terms (toses.get) - * - * @param string $tosId The terms-of-service (TOS) ID. - * @param array $optParams Optional parameters. - * - * @opt_param string userId user for whom to get a tos url - * @opt_param string whitelistId The whitelist project ID. See - * Projects.Insert.whitelist_id documentation for details. - * @return Google_Service_Devprojects_TermsOfService - */ - public function get($tosId, $optParams = array()) - { - $params = array('tosId' => $tosId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Devprojects_TermsOfService"); - } - /** - * Obtain a list of ToSes meeting certain criteria (toses.listToses) - * - * @param array $optParams Optional parameters. - * - * @opt_param string apiKey If this list is nonempty, only return ToSes for APIs - * in the list. - * @opt_param string projectId Return only ToSes that apply to the given project - * @opt_param string user Return only ToSes that the given user must accept - * @opt_param string whitelistId The whitelist project ID. See - * Projects.Insert.whitelist_id documentation for details. - * @return Google_Service_Devprojects_TosesListResponse - */ - public function listToses($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Devprojects_TosesListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/Resource/Users.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/Resource/Users.php deleted file mode 100644 index cfda1e9b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/Resource/Users.php +++ /dev/null @@ -1,82 +0,0 @@ - - * $devprojectsService = new Google_Service_Devprojects(...); - * $users = $devprojectsService->users; - * - */ -class Google_Service_Devprojects_Resource_Users extends Google_Service_Resource -{ - /** - * Retrieves the configuration data for a single user. (users.get) - * - * @param string $userId The Gaia user ID to get ToS acceptance for. - * @param array $optParams Optional parameters. - * - * @opt_param string section Specifies the sections of the UserData protobuf - * that should be filled in in the response. - * @opt_param string whitelistId The whitelist project ID. See - * Projects.Insert.whitelist_id documentation for details. - * @return Google_Service_Devprojects_UserData - */ - public function get($userId, $optParams = array()) - { - $params = array('userId' => $userId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Devprojects_UserData"); - } - /** - * Update a user. This method supports patch semantics. (users.patch) - * - * @param string $userId The user ID. - * @param Google_Service_Devprojects_UserData $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string section The list of sections that should be updated. - * @opt_param string whitelistId The whitelist project ID. See - * Projects.Insert.whitelist_id documentation for details. - * @return Google_Service_Devprojects_UserData - */ - public function patch($userId, Google_Service_Devprojects_UserData $postBody, $optParams = array()) - { - $params = array('userId' => $userId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Devprojects_UserData"); - } - /** - * Update a user. (users.update) - * - * @param string $userId The user ID. - * @param Google_Service_Devprojects_UserData $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string section The list of sections that should be updated. - * @opt_param string whitelistId The whitelist project ID. See - * Projects.Insert.whitelist_id documentation for details. - * @return Google_Service_Devprojects_UserData - */ - public function update($userId, Google_Service_Devprojects_UserData $postBody, $optParams = array()) - { - $params = array('userId' => $userId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Devprojects_UserData"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/RobotCreationParameters.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/RobotCreationParameters.php deleted file mode 100644 index 84037c22..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/RobotCreationParameters.php +++ /dev/null @@ -1,103 +0,0 @@ -authClientType = $authClientType; - } - public function getAuthClientType() - { - return $this->authClientType; - } - public function setAuthRedirectUri($authRedirectUri) - { - $this->authRedirectUri = $authRedirectUri; - } - public function getAuthRedirectUri() - { - return $this->authRedirectUri; - } - public function setFriendlyName($friendlyName) - { - $this->friendlyName = $friendlyName; - } - public function getFriendlyName() - { - return $this->friendlyName; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLoasRoleForContainerOwnedRobot($loasRoleForContainerOwnedRobot) - { - $this->loasRoleForContainerOwnedRobot = $loasRoleForContainerOwnedRobot; - } - public function getLoasRoleForContainerOwnedRobot() - { - return $this->loasRoleForContainerOwnedRobot; - } - public function setRobotConfigName($robotConfigName) - { - $this->robotConfigName = $robotConfigName; - } - public function getRobotConfigName() - { - return $this->robotConfigName; - } - public function setRobotEnvironment($robotEnvironment) - { - $this->robotEnvironment = $robotEnvironment; - } - public function getRobotEnvironment() - { - return $this->robotEnvironment; - } - public function setRobotType($robotType) - { - $this->robotType = $robotType; - } - public function getRobotType() - { - return $this->robotType; - } - public function setTeamRole($teamRole) - { - $this->teamRole = $teamRole; - } - public function getTeamRole() - { - return $this->teamRole; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ServiceAccountMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ServiceAccountMetadata.php deleted file mode 100644 index ed664af0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ServiceAccountMetadata.php +++ /dev/null @@ -1,75 +0,0 @@ -email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setEnvironment($environment) - { - $this->environment = $environment; - } - public function getEnvironment() - { - return $this->environment; - } - public function setGaiaId($gaiaId) - { - $this->gaiaId = $gaiaId; - } - public function getGaiaId() - { - return $this->gaiaId; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLoasOwner($loasOwner) - { - $this->loasOwner = $loasOwner; - } - public function getLoasOwner() - { - return $this->loasOwner; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ServiceAccountSection.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ServiceAccountSection.php deleted file mode 100644 index 1889fa3d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/ServiceAccountSection.php +++ /dev/null @@ -1,41 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setServiceAccount($serviceAccount) - { - $this->serviceAccount = $serviceAccount; - } - public function getServiceAccount() - { - return $this->serviceAccount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/SpecialRestriction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/SpecialRestriction.php deleted file mode 100644 index 5ee0158f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/SpecialRestriction.php +++ /dev/null @@ -1,39 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/StatsInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/StatsInfo.php deleted file mode 100644 index 6e23fe29..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/StatsInfo.php +++ /dev/null @@ -1,75 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLegendName($legendName) - { - $this->legendName = $legendName; - } - public function getLegendName() - { - return $this->legendName; - } - public function setSubkey($subkey) - { - $this->subkey = $subkey; - } - public function getSubkey() - { - return $this->subkey; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setUnit($unit) - { - $this->unit = $unit; - } - public function getUnit() - { - return $this->unit; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/StatsSection.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/StatsSection.php deleted file mode 100644 index 41bd67b4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/StatsSection.php +++ /dev/null @@ -1,41 +0,0 @@ -apiStatsInfo = $apiStatsInfo; - } - public function getApiStatsInfo() - { - return $this->apiStatsInfo; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/Target.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/Target.php deleted file mode 100644 index 20d09e87..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/Target.php +++ /dev/null @@ -1,48 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/TeamSection.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/TeamSection.php deleted file mode 100644 index 31fdf210..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/TeamSection.php +++ /dev/null @@ -1,68 +0,0 @@ -editorGroupId = $editorGroupId; - } - public function getEditorGroupId() - { - return $this->editorGroupId; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setMember($member) - { - $this->member = $member; - } - public function getMember() - { - return $this->member; - } - public function setOwnerGroupId($ownerGroupId) - { - $this->ownerGroupId = $ownerGroupId; - } - public function getOwnerGroupId() - { - return $this->ownerGroupId; - } - public function setTeamId($teamId) - { - $this->teamId = $teamId; - } - public function getTeamId() - { - return $this->teamId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/TermInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/TermInfo.php deleted file mode 100644 index 408cd7b5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/TermInfo.php +++ /dev/null @@ -1,66 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setServiceType($serviceType) - { - $this->serviceType = $serviceType; - } - public function getServiceType() - { - return $this->serviceType; - } - public function setTermsVersion($termsVersion) - { - $this->termsVersion = $termsVersion; - } - public function getTermsVersion() - { - return $this->termsVersion; - } - public function setTimestampMs($timestampMs) - { - $this->timestampMs = $timestampMs; - } - public function getTimestampMs() - { - return $this->timestampMs; - } - public function setTosId($tosId) - { - $this->tosId = $tosId; - } - public function getTosId() - { - return $this->tosId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/TermsContext.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/TermsContext.php deleted file mode 100644 index 566a3e6f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/TermsContext.php +++ /dev/null @@ -1,48 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } - public function setUserId($userId) - { - $this->userId = $userId; - } - public function getUserId() - { - return $this->userId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/TermsOfService.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/TermsOfService.php deleted file mode 100644 index 0d8c4ba5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/TermsOfService.php +++ /dev/null @@ -1,75 +0,0 @@ -currentVersion = $currentVersion; - } - public function getCurrentVersion() - { - return $this->currentVersion; - } - 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 setReviewUrl($reviewUrl) - { - $this->reviewUrl = $reviewUrl; - } - public function getReviewUrl() - { - return $this->reviewUrl; - } - public function setText($text) - { - $this->text = $text; - } - public function getText() - { - return $this->text; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/TermsVersion.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/TermsVersion.php deleted file mode 100644 index 101ae696..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/TermsVersion.php +++ /dev/null @@ -1,48 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/TosesAcceptRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/TosesAcceptRequest.php deleted file mode 100644 index 8957b4b4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/TosesAcceptRequest.php +++ /dev/null @@ -1,51 +0,0 @@ -context = $context; - } - public function getContext() - { - return $this->context; - } - public function setTerms($terms) - { - $this->terms = $terms; - } - public function getTerms() - { - return $this->terms; - } - public function setWhitelistId($whitelistId) - { - $this->whitelistId = $whitelistId; - } - public function getWhitelistId() - { - return $this->whitelistId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/TosesAcceptResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/TosesAcceptResponse.php deleted file mode 100644 index c513f959..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/TosesAcceptResponse.php +++ /dev/null @@ -1,51 +0,0 @@ -confirmed = $confirmed; - } - public function getConfirmed() - { - return $this->confirmed; - } - public function setDenied($denied) - { - $this->denied = $denied; - } - public function getDenied() - { - return $this->denied; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/TosesCheckRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/TosesCheckRequest.php deleted file mode 100644 index 8532e330..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/TosesCheckRequest.php +++ /dev/null @@ -1,51 +0,0 @@ -context = $context; - } - public function getContext() - { - return $this->context; - } - public function setTerms($terms) - { - $this->terms = $terms; - } - public function getTerms() - { - return $this->terms; - } - public function setWhitelistId($whitelistId) - { - $this->whitelistId = $whitelistId; - } - public function getWhitelistId() - { - return $this->whitelistId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/TosesCheckResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/TosesCheckResponse.php deleted file mode 100644 index c9a38e7e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/TosesCheckResponse.php +++ /dev/null @@ -1,51 +0,0 @@ -accepted = $accepted; - } - public function getAccepted() - { - return $this->accepted; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setPending($pending) - { - $this->pending = $pending; - } - public function getPending() - { - return $this->pending; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/TosesListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/TosesListResponse.php deleted file mode 100644 index c2bc1327..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/TosesListResponse.php +++ /dev/null @@ -1,41 +0,0 @@ -items = $items; - } - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/TypedKeyValuePair.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/TypedKeyValuePair.php deleted file mode 100644 index a497c2b9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/TypedKeyValuePair.php +++ /dev/null @@ -1,57 +0,0 @@ -boolValue = $boolValue; - } - public function getBoolValue() - { - return $this->boolValue; - } - public function setKey($key) - { - $this->key = $key; - } - public function getKey() - { - return $this->key; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setStringValue($stringValue) - { - $this->stringValue = $stringValue; - } - public function getStringValue() - { - return $this->stringValue; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/TypedValue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/TypedValue.php deleted file mode 100644 index 37d3a098..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/TypedValue.php +++ /dev/null @@ -1,48 +0,0 @@ -doubleValue = $doubleValue; - } - public function getDoubleValue() - { - return $this->doubleValue; - } - public function setIntValue($intValue) - { - $this->intValue = $intValue; - } - public function getIntValue() - { - return $this->intValue; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/UiCustomizationSection.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/UiCustomizationSection.php deleted file mode 100644 index f90d6043..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/UiCustomizationSection.php +++ /dev/null @@ -1,41 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setProperty($property) - { - $this->property = $property; - } - public function getProperty() - { - return $this->property; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/UserData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/UserData.php deleted file mode 100644 index 3e1b82fa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/UserData.php +++ /dev/null @@ -1,49 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setTermsOfService(Google_Service_Devprojects_UsersTermsOfService $termsOfService) - { - $this->termsOfService = $termsOfService; - } - public function getTermsOfService() - { - return $this->termsOfService; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/UserNotification.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/UserNotification.php deleted file mode 100644 index d006b29f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/UserNotification.php +++ /dev/null @@ -1,39 +0,0 @@ -channel = $channel; - } - public function getChannel() - { - return $this->channel; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/UserRestriction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/UserRestriction.php deleted file mode 100644 index 29d84a60..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/UserRestriction.php +++ /dev/null @@ -1,90 +0,0 @@ -ageRestriction = $ageRestriction; - } - public function getAgeRestriction() - { - return $this->ageRestriction; - } - public function setAndRestriction(Google_Service_Devprojects_AndRestriction $andRestriction) - { - $this->andRestriction = $andRestriction; - } - public function getAndRestriction() - { - return $this->andRestriction; - } - public function setGeoRestriction(Google_Service_Devprojects_GeoRestriction $geoRestriction) - { - $this->geoRestriction = $geoRestriction; - } - public function getGeoRestriction() - { - return $this->geoRestriction; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNotRestriction(Google_Service_Devprojects_NotRestriction $notRestriction) - { - $this->notRestriction = $notRestriction; - } - public function getNotRestriction() - { - return $this->notRestriction; - } - public function setOrRestriction(Google_Service_Devprojects_OrRestriction $orRestriction) - { - $this->orRestriction = $orRestriction; - } - public function getOrRestriction() - { - return $this->orRestriction; - } - public function setSpecialRestriction(Google_Service_Devprojects_SpecialRestriction $specialRestriction) - { - $this->specialRestriction = $specialRestriction; - } - public function getSpecialRestriction() - { - return $this->specialRestriction; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/UsersTermsOfService.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/UsersTermsOfService.php deleted file mode 100644 index b93e1f58..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/UsersTermsOfService.php +++ /dev/null @@ -1,41 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setTerms($terms) - { - $this->terms = $terms; - } - public function getTerms() - { - return $this->terms; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/Verdict.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/Verdict.php deleted file mode 100644 index 21bb5066..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/Verdict.php +++ /dev/null @@ -1,182 +0,0 @@ -client = $client; - } - public function getClient() - { - return $this->client; - } - public function setComment($comment) - { - $this->comment = $comment; - } - public function getComment() - { - return $this->comment; - } - public function setDecision($decision) - { - $this->decision = $decision; - } - public function getDecision() - { - return $this->decision; - } - public function setDurationMins($durationMins) - { - $this->durationMins = $durationMins; - } - public function getDurationMins() - { - return $this->durationMins; - } - public function setEvaluation($evaluation) - { - $this->evaluation = $evaluation; - } - public function getEvaluation() - { - return $this->evaluation; - } - public function setIsLegalIssued($isLegalIssued) - { - $this->isLegalIssued = $isLegalIssued; - } - public function getIsLegalIssued() - { - return $this->isLegalIssued; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setMiscScores($miscScores) - { - $this->miscScores = $miscScores; - } - public function getMiscScores() - { - return $this->miscScores; - } - public function setReasonCode($reasonCode) - { - $this->reasonCode = $reasonCode; - } - public function getReasonCode() - { - return $this->reasonCode; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - public function setRestriction($restriction) - { - $this->restriction = $restriction; - } - public function getRestriction() - { - return $this->restriction; - } - public function setStrikeCategory($strikeCategory) - { - $this->strikeCategory = $strikeCategory; - } - public function getStrikeCategory() - { - return $this->strikeCategory; - } - public function setTarget(Google_Service_Devprojects_Target $target) - { - $this->target = $target; - } - public function getTarget() - { - return $this->target; - } - public function setTargetTimestampMicros($targetTimestampMicros) - { - $this->targetTimestampMicros = $targetTimestampMicros; - } - public function getTargetTimestampMicros() - { - return $this->targetTimestampMicros; - } - public function setTimestampMicros($timestampMicros) - { - $this->timestampMicros = $timestampMicros; - } - public function getTimestampMicros() - { - return $this->timestampMicros; - } - public function setUserNotification($userNotification) - { - $this->userNotification = $userNotification; - } - public function getUserNotification() - { - return $this->userNotification; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/VerdictRestriction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/VerdictRestriction.php deleted file mode 100644 index 68e1254f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Devprojects/VerdictRestriction.php +++ /dev/null @@ -1,51 +0,0 @@ -context = $context; - } - public function getContext() - { - return $this->context; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setUserRestriction(Google_Service_Devprojects_UserRestriction $userRestriction) - { - $this->userRestriction = $userRestriction; - } - public function getUserRestriction() - { - return $this->userRestriction; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting.php deleted file mode 100644 index 3a196db1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting.php +++ /dev/null @@ -1,4806 +0,0 @@ - - * Manages your DoubleClick Campaign Manager ad campaigns and reports.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Dfareporting extends Google_Service -{ - /** Manage DoubleClick Digital Marketing conversions. */ - const DDMCONVERSIONS = - "https://www.googleapis.com/auth/ddmconversions"; - /** View and manage DoubleClick for Advertisers reports. */ - const DFAREPORTING = - "https://www.googleapis.com/auth/dfareporting"; - /** View and manage your DoubleClick Campaign Manager's (DCM) display ad campaigns. */ - const DFATRAFFICKING = - "https://www.googleapis.com/auth/dfatrafficking"; - - public $accountActiveAdSummaries; - public $accountPermissionGroups; - public $accountPermissions; - public $accountUserProfiles; - public $accounts; - public $ads; - public $advertiserGroups; - public $advertiserLandingPages; - public $advertisers; - public $browsers; - public $campaignCreativeAssociations; - public $campaigns; - public $changeLogs; - public $cities; - public $connectionTypes; - public $contentCategories; - public $conversions; - public $countries; - public $creativeAssets; - public $creativeFieldValues; - public $creativeFields; - public $creativeGroups; - public $creatives; - public $customEvents; - public $dimensionValues; - public $directorySites; - public $dynamicTargetingKeys; - public $eventTags; - public $files; - public $floodlightActivities; - public $floodlightActivityGroups; - public $floodlightConfigurations; - public $inventoryItems; - public $languages; - public $metros; - public $mobileApps; - public $mobileCarriers; - public $operatingSystemVersions; - public $operatingSystems; - public $orderDocuments; - public $orders; - public $placementGroups; - public $placementStrategies; - public $placements; - public $platformTypes; - public $postalCodes; - public $projects; - public $regions; - public $remarketingListShares; - public $remarketingLists; - public $reports; - public $reports_compatibleFields; - public $reports_files; - public $sites; - public $sizes; - public $subaccounts; - public $targetableRemarketingLists; - public $targetingTemplates; - public $userProfiles; - public $userRolePermissionGroups; - public $userRolePermissions; - public $userRoles; - public $videoFormats; - - /** - * Constructs the internal representation of the Dfareporting service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://www.googleapis.com/'; - $this->servicePath = 'dfareporting/v3.4/'; - $this->batchPath = 'batch/dfareporting/v3.4'; - $this->version = 'v3.4'; - $this->serviceName = 'dfareporting'; - - $this->accountActiveAdSummaries = new Google_Service_Dfareporting_Resource_AccountActiveAdSummaries( - $this, - $this->serviceName, - 'accountActiveAdSummaries', - array( - 'methods' => array( - 'get' => array( - 'path' => 'userprofiles/{profileId}/accountActiveAdSummaries/{summaryAccountId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'summaryAccountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->accountPermissionGroups = new Google_Service_Dfareporting_Resource_AccountPermissionGroups( - $this, - $this->serviceName, - 'accountPermissionGroups', - array( - 'methods' => array( - 'get' => array( - 'path' => 'userprofiles/{profileId}/accountPermissionGroups/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'userprofiles/{profileId}/accountPermissionGroups', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->accountPermissions = new Google_Service_Dfareporting_Resource_AccountPermissions( - $this, - $this->serviceName, - 'accountPermissions', - array( - 'methods' => array( - 'get' => array( - 'path' => 'userprofiles/{profileId}/accountPermissions/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'userprofiles/{profileId}/accountPermissions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->accountUserProfiles = new Google_Service_Dfareporting_Resource_AccountUserProfiles( - $this, - $this->serviceName, - 'accountUserProfiles', - array( - 'methods' => array( - 'get' => array( - 'path' => 'userprofiles/{profileId}/accountUserProfiles/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'userprofiles/{profileId}/accountUserProfiles', - 'httpMethod' => 'POST', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'userprofiles/{profileId}/accountUserProfiles', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'active' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'ids' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'searchString' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortField' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortOrder' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'subaccountId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userRoleId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'userprofiles/{profileId}/accountUserProfiles', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'userprofiles/{profileId}/accountUserProfiles', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->accounts = new Google_Service_Dfareporting_Resource_Accounts( - $this, - $this->serviceName, - 'accounts', - array( - 'methods' => array( - 'get' => array( - 'path' => 'userprofiles/{profileId}/accounts/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'userprofiles/{profileId}/accounts', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'active' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'ids' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'searchString' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortField' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortOrder' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'userprofiles/{profileId}/accounts', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'userprofiles/{profileId}/accounts', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->ads = new Google_Service_Dfareporting_Resource_Ads( - $this, - $this->serviceName, - 'ads', - array( - 'methods' => array( - 'get' => array( - 'path' => 'userprofiles/{profileId}/ads/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'userprofiles/{profileId}/ads', - 'httpMethod' => 'POST', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'userprofiles/{profileId}/ads', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'active' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'advertiserId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'archived' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'audienceSegmentIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'campaignIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'compatibility' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'creativeIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'creativeOptimizationConfigurationIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'dynamicClickTracker' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'ids' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'landingPageIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'overriddenEventTagId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'placementIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'remarketingListIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'searchString' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sizeIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'sortField' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortOrder' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sslCompliant' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'sslRequired' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'type' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ),'patch' => array( - 'path' => 'userprofiles/{profileId}/ads', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'userprofiles/{profileId}/ads', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->advertiserGroups = new Google_Service_Dfareporting_Resource_AdvertiserGroups( - $this, - $this->serviceName, - 'advertiserGroups', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'userprofiles/{profileId}/advertiserGroups/{id}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'userprofiles/{profileId}/advertiserGroups/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'userprofiles/{profileId}/advertiserGroups', - 'httpMethod' => 'POST', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'userprofiles/{profileId}/advertiserGroups', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'ids' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'searchString' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortField' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortOrder' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'userprofiles/{profileId}/advertiserGroups', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'userprofiles/{profileId}/advertiserGroups', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->advertiserLandingPages = new Google_Service_Dfareporting_Resource_AdvertiserLandingPages( - $this, - $this->serviceName, - 'advertiserLandingPages', - array( - 'methods' => array( - 'get' => array( - 'path' => 'userprofiles/{profileId}/advertiserLandingPages/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'userprofiles/{profileId}/advertiserLandingPages', - 'httpMethod' => 'POST', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'userprofiles/{profileId}/advertiserLandingPages', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'advertiserIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'archived' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'campaignIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'ids' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'searchString' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortField' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortOrder' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'subaccountId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'userprofiles/{profileId}/advertiserLandingPages', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'userprofiles/{profileId}/advertiserLandingPages', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->advertisers = new Google_Service_Dfareporting_Resource_Advertisers( - $this, - $this->serviceName, - 'advertisers', - array( - 'methods' => array( - 'get' => array( - 'path' => 'userprofiles/{profileId}/advertisers/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'userprofiles/{profileId}/advertisers', - 'httpMethod' => 'POST', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'userprofiles/{profileId}/advertisers', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'advertiserGroupIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'floodlightConfigurationIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'ids' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'includeAdvertisersWithoutGroupsOnly' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'onlyParent' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'searchString' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortField' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortOrder' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'status' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'subaccountId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'userprofiles/{profileId}/advertisers', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'userprofiles/{profileId}/advertisers', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->browsers = new Google_Service_Dfareporting_Resource_Browsers( - $this, - $this->serviceName, - 'browsers', - array( - 'methods' => array( - 'list' => array( - 'path' => 'userprofiles/{profileId}/browsers', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->campaignCreativeAssociations = new Google_Service_Dfareporting_Resource_CampaignCreativeAssociations( - $this, - $this->serviceName, - 'campaignCreativeAssociations', - array( - 'methods' => array( - 'insert' => array( - 'path' => 'userprofiles/{profileId}/campaigns/{campaignId}/campaignCreativeAssociations', - 'httpMethod' => 'POST', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'campaignId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'userprofiles/{profileId}/campaigns/{campaignId}/campaignCreativeAssociations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'campaignId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortOrder' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->campaigns = new Google_Service_Dfareporting_Resource_Campaigns( - $this, - $this->serviceName, - 'campaigns', - array( - 'methods' => array( - 'get' => array( - 'path' => 'userprofiles/{profileId}/campaigns/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'userprofiles/{profileId}/campaigns', - 'httpMethod' => 'POST', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'userprofiles/{profileId}/campaigns', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'advertiserGroupIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'advertiserIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'archived' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'atLeastOneOptimizationActivity' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'excludedIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'ids' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'overriddenEventTagId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'searchString' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortField' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortOrder' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'subaccountId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'userprofiles/{profileId}/campaigns', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'userprofiles/{profileId}/campaigns', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->changeLogs = new Google_Service_Dfareporting_Resource_ChangeLogs( - $this, - $this->serviceName, - 'changeLogs', - array( - 'methods' => array( - 'get' => array( - 'path' => 'userprofiles/{profileId}/changeLogs/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'userprofiles/{profileId}/changeLogs', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'action' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ids' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'maxChangeTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'minChangeTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'objectIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'objectType' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'searchString' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userProfileIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ), - ) - ) - ); - $this->cities = new Google_Service_Dfareporting_Resource_Cities( - $this, - $this->serviceName, - 'cities', - array( - 'methods' => array( - 'list' => array( - 'path' => 'userprofiles/{profileId}/cities', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'countryDartIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'dartIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'namePrefix' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'regionDartIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ), - ) - ) - ); - $this->connectionTypes = new Google_Service_Dfareporting_Resource_ConnectionTypes( - $this, - $this->serviceName, - 'connectionTypes', - array( - 'methods' => array( - 'get' => array( - 'path' => 'userprofiles/{profileId}/connectionTypes/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'userprofiles/{profileId}/connectionTypes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->contentCategories = new Google_Service_Dfareporting_Resource_ContentCategories( - $this, - $this->serviceName, - 'contentCategories', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'userprofiles/{profileId}/contentCategories/{id}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'userprofiles/{profileId}/contentCategories/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'userprofiles/{profileId}/contentCategories', - 'httpMethod' => 'POST', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'userprofiles/{profileId}/contentCategories', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'ids' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'searchString' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortField' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortOrder' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'userprofiles/{profileId}/contentCategories', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'userprofiles/{profileId}/contentCategories', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->conversions = new Google_Service_Dfareporting_Resource_Conversions( - $this, - $this->serviceName, - 'conversions', - array( - 'methods' => array( - 'batchinsert' => array( - 'path' => 'userprofiles/{profileId}/conversions/batchinsert', - 'httpMethod' => 'POST', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'batchupdate' => array( - 'path' => 'userprofiles/{profileId}/conversions/batchupdate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->countries = new Google_Service_Dfareporting_Resource_Countries( - $this, - $this->serviceName, - 'countries', - array( - 'methods' => array( - 'get' => array( - 'path' => 'userprofiles/{profileId}/countries/{dartId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'dartId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'userprofiles/{profileId}/countries', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->creativeAssets = new Google_Service_Dfareporting_Resource_CreativeAssets( - $this, - $this->serviceName, - 'creativeAssets', - array( - 'methods' => array( - 'insert' => array( - 'path' => 'userprofiles/{profileId}/creativeAssets/{advertiserId}/creativeAssets', - 'httpMethod' => 'POST', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'advertiserId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->creativeFieldValues = new Google_Service_Dfareporting_Resource_CreativeFieldValues( - $this, - $this->serviceName, - 'creativeFieldValues', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'userprofiles/{profileId}/creativeFields/{creativeFieldId}/creativeFieldValues/{id}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'creativeFieldId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'userprofiles/{profileId}/creativeFields/{creativeFieldId}/creativeFieldValues/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'creativeFieldId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'userprofiles/{profileId}/creativeFields/{creativeFieldId}/creativeFieldValues', - 'httpMethod' => 'POST', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'creativeFieldId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'userprofiles/{profileId}/creativeFields/{creativeFieldId}/creativeFieldValues', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'creativeFieldId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'ids' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'searchString' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortField' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortOrder' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'userprofiles/{profileId}/creativeFields/{creativeFieldId}/creativeFieldValues', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'creativeFieldId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'userprofiles/{profileId}/creativeFields/{creativeFieldId}/creativeFieldValues', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'creativeFieldId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->creativeFields = new Google_Service_Dfareporting_Resource_CreativeFields( - $this, - $this->serviceName, - 'creativeFields', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'userprofiles/{profileId}/creativeFields/{id}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'userprofiles/{profileId}/creativeFields/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'userprofiles/{profileId}/creativeFields', - 'httpMethod' => 'POST', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'userprofiles/{profileId}/creativeFields', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'advertiserIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'ids' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'searchString' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortField' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortOrder' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'userprofiles/{profileId}/creativeFields', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'userprofiles/{profileId}/creativeFields', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->creativeGroups = new Google_Service_Dfareporting_Resource_CreativeGroups( - $this, - $this->serviceName, - 'creativeGroups', - array( - 'methods' => array( - 'get' => array( - 'path' => 'userprofiles/{profileId}/creativeGroups/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'userprofiles/{profileId}/creativeGroups', - 'httpMethod' => 'POST', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'userprofiles/{profileId}/creativeGroups', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'advertiserIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'groupNumber' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'ids' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'searchString' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortField' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortOrder' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'userprofiles/{profileId}/creativeGroups', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'userprofiles/{profileId}/creativeGroups', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->creatives = new Google_Service_Dfareporting_Resource_Creatives( - $this, - $this->serviceName, - 'creatives', - array( - 'methods' => array( - 'get' => array( - 'path' => 'userprofiles/{profileId}/creatives/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'userprofiles/{profileId}/creatives', - 'httpMethod' => 'POST', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'userprofiles/{profileId}/creatives', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'active' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'advertiserId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'archived' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'campaignId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'companionCreativeIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'creativeFieldIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'ids' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'renderingIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'searchString' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sizeIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'sortField' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortOrder' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'studioCreativeId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'types' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ),'patch' => array( - 'path' => 'userprofiles/{profileId}/creatives', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'userprofiles/{profileId}/creatives', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->customEvents = new Google_Service_Dfareporting_Resource_CustomEvents( - $this, - $this->serviceName, - 'customEvents', - array( - 'methods' => array( - 'batchinsert' => array( - 'path' => 'userprofiles/{profileId}/customEvents/batchinsert', - 'httpMethod' => 'POST', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->dimensionValues = new Google_Service_Dfareporting_Resource_DimensionValues( - $this, - $this->serviceName, - 'dimensionValues', - array( - 'methods' => array( - 'query' => array( - 'path' => 'userprofiles/{profileId}/dimensionvalues/query', - 'httpMethod' => 'POST', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->directorySites = new Google_Service_Dfareporting_Resource_DirectorySites( - $this, - $this->serviceName, - 'directorySites', - array( - 'methods' => array( - 'get' => array( - 'path' => 'userprofiles/{profileId}/directorySites/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'userprofiles/{profileId}/directorySites', - 'httpMethod' => 'POST', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'userprofiles/{profileId}/directorySites', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'acceptsInStreamVideoPlacements' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'acceptsInterstitialPlacements' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'acceptsPublisherPaidPlacements' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'active' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'dfpNetworkCode' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ids' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'searchString' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortField' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortOrder' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->dynamicTargetingKeys = new Google_Service_Dfareporting_Resource_DynamicTargetingKeys( - $this, - $this->serviceName, - 'dynamicTargetingKeys', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'userprofiles/{profileId}/dynamicTargetingKeys/{objectId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'objectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'name' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'objectType' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'userprofiles/{profileId}/dynamicTargetingKeys', - 'httpMethod' => 'POST', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'userprofiles/{profileId}/dynamicTargetingKeys', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'advertiserId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'names' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'objectId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'objectType' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->eventTags = new Google_Service_Dfareporting_Resource_EventTags( - $this, - $this->serviceName, - 'eventTags', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'userprofiles/{profileId}/eventTags/{id}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'userprofiles/{profileId}/eventTags/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'userprofiles/{profileId}/eventTags', - 'httpMethod' => 'POST', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'userprofiles/{profileId}/eventTags', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'adId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'advertiserId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'campaignId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'definitionsOnly' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'enabled' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'eventTagTypes' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'ids' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'searchString' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortField' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortOrder' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'userprofiles/{profileId}/eventTags', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'userprofiles/{profileId}/eventTags', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->files = new Google_Service_Dfareporting_Resource_Files( - $this, - $this->serviceName, - 'files', - array( - 'methods' => array( - 'get' => array( - 'path' => 'reports/{reportId}/files/{fileId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'reportId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'userprofiles/{profileId}/files', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'scope' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortField' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortOrder' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->floodlightActivities = new Google_Service_Dfareporting_Resource_FloodlightActivities( - $this, - $this->serviceName, - 'floodlightActivities', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'userprofiles/{profileId}/floodlightActivities/{id}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'generatetag' => array( - 'path' => 'userprofiles/{profileId}/floodlightActivities/generatetag', - 'httpMethod' => 'POST', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'floodlightActivityId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'userprofiles/{profileId}/floodlightActivities/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'userprofiles/{profileId}/floodlightActivities', - 'httpMethod' => 'POST', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'userprofiles/{profileId}/floodlightActivities', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'advertiserId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'floodlightActivityGroupIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'floodlightActivityGroupName' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'floodlightActivityGroupTagString' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'floodlightActivityGroupType' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'floodlightConfigurationId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ids' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'searchString' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortField' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortOrder' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'tagString' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'userprofiles/{profileId}/floodlightActivities', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'userprofiles/{profileId}/floodlightActivities', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->floodlightActivityGroups = new Google_Service_Dfareporting_Resource_FloodlightActivityGroups( - $this, - $this->serviceName, - 'floodlightActivityGroups', - array( - 'methods' => array( - 'get' => array( - 'path' => 'userprofiles/{profileId}/floodlightActivityGroups/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'userprofiles/{profileId}/floodlightActivityGroups', - 'httpMethod' => 'POST', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'userprofiles/{profileId}/floodlightActivityGroups', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'advertiserId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'floodlightConfigurationId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ids' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'searchString' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortField' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortOrder' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'type' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'userprofiles/{profileId}/floodlightActivityGroups', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'userprofiles/{profileId}/floodlightActivityGroups', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->floodlightConfigurations = new Google_Service_Dfareporting_Resource_FloodlightConfigurations( - $this, - $this->serviceName, - 'floodlightConfigurations', - array( - 'methods' => array( - 'get' => array( - 'path' => 'userprofiles/{profileId}/floodlightConfigurations/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'userprofiles/{profileId}/floodlightConfigurations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'ids' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ),'patch' => array( - 'path' => 'userprofiles/{profileId}/floodlightConfigurations', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'userprofiles/{profileId}/floodlightConfigurations', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->inventoryItems = new Google_Service_Dfareporting_Resource_InventoryItems( - $this, - $this->serviceName, - 'inventoryItems', - array( - 'methods' => array( - 'get' => array( - 'path' => 'userprofiles/{profileId}/projects/{projectId}/inventoryItems/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'userprofiles/{profileId}/projects/{projectId}/inventoryItems', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'ids' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'inPlan' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderId' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'siteId' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'sortField' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortOrder' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'type' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->languages = new Google_Service_Dfareporting_Resource_Languages( - $this, - $this->serviceName, - 'languages', - array( - 'methods' => array( - 'list' => array( - 'path' => 'userprofiles/{profileId}/languages', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->metros = new Google_Service_Dfareporting_Resource_Metros( - $this, - $this->serviceName, - 'metros', - array( - 'methods' => array( - 'list' => array( - 'path' => 'userprofiles/{profileId}/metros', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->mobileApps = new Google_Service_Dfareporting_Resource_MobileApps( - $this, - $this->serviceName, - 'mobileApps', - array( - 'methods' => array( - 'get' => array( - 'path' => 'userprofiles/{profileId}/mobileApps/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'userprofiles/{profileId}/mobileApps', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'directories' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'ids' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'searchString' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->mobileCarriers = new Google_Service_Dfareporting_Resource_MobileCarriers( - $this, - $this->serviceName, - 'mobileCarriers', - array( - 'methods' => array( - 'get' => array( - 'path' => 'userprofiles/{profileId}/mobileCarriers/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'userprofiles/{profileId}/mobileCarriers', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->operatingSystemVersions = new Google_Service_Dfareporting_Resource_OperatingSystemVersions( - $this, - $this->serviceName, - 'operatingSystemVersions', - array( - 'methods' => array( - 'get' => array( - 'path' => 'userprofiles/{profileId}/operatingSystemVersions/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'userprofiles/{profileId}/operatingSystemVersions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->operatingSystems = new Google_Service_Dfareporting_Resource_OperatingSystems( - $this, - $this->serviceName, - 'operatingSystems', - array( - 'methods' => array( - 'get' => array( - 'path' => 'userprofiles/{profileId}/operatingSystems/{dartId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'dartId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'userprofiles/{profileId}/operatingSystems', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->orderDocuments = new Google_Service_Dfareporting_Resource_OrderDocuments( - $this, - $this->serviceName, - 'orderDocuments', - array( - 'methods' => array( - 'get' => array( - 'path' => 'userprofiles/{profileId}/projects/{projectId}/orderDocuments/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'userprofiles/{profileId}/projects/{projectId}/orderDocuments', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'approved' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'ids' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderId' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'searchString' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'siteId' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'sortField' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortOrder' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->orders = new Google_Service_Dfareporting_Resource_Orders( - $this, - $this->serviceName, - 'orders', - array( - 'methods' => array( - 'get' => array( - 'path' => 'userprofiles/{profileId}/projects/{projectId}/orders/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'userprofiles/{profileId}/projects/{projectId}/orders', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'ids' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'searchString' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'siteId' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'sortField' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortOrder' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->placementGroups = new Google_Service_Dfareporting_Resource_PlacementGroups( - $this, - $this->serviceName, - 'placementGroups', - array( - 'methods' => array( - 'get' => array( - 'path' => 'userprofiles/{profileId}/placementGroups/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'userprofiles/{profileId}/placementGroups', - 'httpMethod' => 'POST', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'userprofiles/{profileId}/placementGroups', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'advertiserIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'archived' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'campaignIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'contentCategoryIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'directorySiteIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'ids' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'maxEndDate' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'maxStartDate' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'minEndDate' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'minStartDate' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'placementGroupType' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'placementStrategyIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'pricingTypes' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'searchString' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'siteIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'sortField' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortOrder' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'userprofiles/{profileId}/placementGroups', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'userprofiles/{profileId}/placementGroups', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->placementStrategies = new Google_Service_Dfareporting_Resource_PlacementStrategies( - $this, - $this->serviceName, - 'placementStrategies', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'userprofiles/{profileId}/placementStrategies/{id}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'userprofiles/{profileId}/placementStrategies/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'userprofiles/{profileId}/placementStrategies', - 'httpMethod' => 'POST', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'userprofiles/{profileId}/placementStrategies', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'ids' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'searchString' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortField' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortOrder' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'userprofiles/{profileId}/placementStrategies', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'userprofiles/{profileId}/placementStrategies', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->placements = new Google_Service_Dfareporting_Resource_Placements( - $this, - $this->serviceName, - 'placements', - array( - 'methods' => array( - 'generatetags' => array( - 'path' => 'userprofiles/{profileId}/placements/generatetags', - 'httpMethod' => 'POST', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'campaignId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'placementIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'tagFormats' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ),'get' => array( - 'path' => 'userprofiles/{profileId}/placements/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'userprofiles/{profileId}/placements', - 'httpMethod' => 'POST', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'userprofiles/{profileId}/placements', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'advertiserIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'archived' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'campaignIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'compatibilities' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'contentCategoryIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'directorySiteIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'groupIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'ids' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'maxEndDate' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'maxStartDate' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'minEndDate' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'minStartDate' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'paymentSource' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'placementStrategyIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'pricingTypes' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'searchString' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'siteIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'sizeIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'sortField' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortOrder' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'userprofiles/{profileId}/placements', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'userprofiles/{profileId}/placements', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->platformTypes = new Google_Service_Dfareporting_Resource_PlatformTypes( - $this, - $this->serviceName, - 'platformTypes', - array( - 'methods' => array( - 'get' => array( - 'path' => 'userprofiles/{profileId}/platformTypes/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'userprofiles/{profileId}/platformTypes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->postalCodes = new Google_Service_Dfareporting_Resource_PostalCodes( - $this, - $this->serviceName, - 'postalCodes', - array( - 'methods' => array( - 'get' => array( - 'path' => 'userprofiles/{profileId}/postalCodes/{code}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'code' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'userprofiles/{profileId}/postalCodes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects = new Google_Service_Dfareporting_Resource_Projects( - $this, - $this->serviceName, - 'projects', - array( - 'methods' => array( - 'get' => array( - 'path' => 'userprofiles/{profileId}/projects/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'userprofiles/{profileId}/projects', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'advertiserIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'ids' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'searchString' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortField' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortOrder' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->regions = new Google_Service_Dfareporting_Resource_Regions( - $this, - $this->serviceName, - 'regions', - array( - 'methods' => array( - 'list' => array( - 'path' => 'userprofiles/{profileId}/regions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->remarketingListShares = new Google_Service_Dfareporting_Resource_RemarketingListShares( - $this, - $this->serviceName, - 'remarketingListShares', - array( - 'methods' => array( - 'get' => array( - 'path' => 'userprofiles/{profileId}/remarketingListShares/{remarketingListId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'remarketingListId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => 'userprofiles/{profileId}/remarketingListShares', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'remarketingListId' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'userprofiles/{profileId}/remarketingListShares', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->remarketingLists = new Google_Service_Dfareporting_Resource_RemarketingLists( - $this, - $this->serviceName, - 'remarketingLists', - array( - 'methods' => array( - 'get' => array( - 'path' => 'userprofiles/{profileId}/remarketingLists/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'userprofiles/{profileId}/remarketingLists', - 'httpMethod' => 'POST', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'userprofiles/{profileId}/remarketingLists', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'advertiserId' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'active' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'floodlightActivityId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'name' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortField' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortOrder' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'userprofiles/{profileId}/remarketingLists', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'userprofiles/{profileId}/remarketingLists', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->reports = new Google_Service_Dfareporting_Resource_Reports( - $this, - $this->serviceName, - 'reports', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'userprofiles/{profileId}/reports/{reportId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'reportId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'userprofiles/{profileId}/reports/{reportId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'reportId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'userprofiles/{profileId}/reports', - 'httpMethod' => 'POST', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'userprofiles/{profileId}/reports', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'scope' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortField' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortOrder' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'run' => array( - 'path' => 'userprofiles/{profileId}/reports/{reportId}/run', - 'httpMethod' => 'POST', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'reportId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'synchronous' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'update' => array( - 'path' => 'userprofiles/{profileId}/reports/{reportId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'reportId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->reports_compatibleFields = new Google_Service_Dfareporting_Resource_ReportsCompatibleFields( - $this, - $this->serviceName, - 'compatibleFields', - array( - 'methods' => array( - 'query' => array( - 'path' => 'userprofiles/{profileId}/reports/compatiblefields/query', - 'httpMethod' => 'POST', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->reports_files = new Google_Service_Dfareporting_Resource_ReportsFiles( - $this, - $this->serviceName, - 'files', - array( - 'methods' => array( - 'get' => array( - 'path' => 'userprofiles/{profileId}/reports/{reportId}/files/{fileId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'reportId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'userprofiles/{profileId}/reports/{reportId}/files', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'reportId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortField' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortOrder' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->sites = new Google_Service_Dfareporting_Resource_Sites( - $this, - $this->serviceName, - 'sites', - array( - 'methods' => array( - 'get' => array( - 'path' => 'userprofiles/{profileId}/sites/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'userprofiles/{profileId}/sites', - 'httpMethod' => 'POST', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'userprofiles/{profileId}/sites', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'acceptsInStreamVideoPlacements' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'acceptsInterstitialPlacements' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'acceptsPublisherPaidPlacements' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'adWordsSite' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'approved' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'campaignIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'directorySiteIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'ids' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'searchString' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortField' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortOrder' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'subaccountId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'unmappedSite' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'patch' => array( - 'path' => 'userprofiles/{profileId}/sites', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'userprofiles/{profileId}/sites', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->sizes = new Google_Service_Dfareporting_Resource_Sizes( - $this, - $this->serviceName, - 'sizes', - array( - 'methods' => array( - 'get' => array( - 'path' => 'userprofiles/{profileId}/sizes/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'userprofiles/{profileId}/sizes', - 'httpMethod' => 'POST', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'userprofiles/{profileId}/sizes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'height' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'iabStandard' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'ids' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'width' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->subaccounts = new Google_Service_Dfareporting_Resource_Subaccounts( - $this, - $this->serviceName, - 'subaccounts', - array( - 'methods' => array( - 'get' => array( - 'path' => 'userprofiles/{profileId}/subaccounts/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'userprofiles/{profileId}/subaccounts', - 'httpMethod' => 'POST', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'userprofiles/{profileId}/subaccounts', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'ids' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'searchString' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortField' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortOrder' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'userprofiles/{profileId}/subaccounts', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'userprofiles/{profileId}/subaccounts', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->targetableRemarketingLists = new Google_Service_Dfareporting_Resource_TargetableRemarketingLists( - $this, - $this->serviceName, - 'targetableRemarketingLists', - array( - 'methods' => array( - 'get' => array( - 'path' => 'userprofiles/{profileId}/targetableRemarketingLists/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'userprofiles/{profileId}/targetableRemarketingLists', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'advertiserId' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'active' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'name' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortField' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortOrder' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->targetingTemplates = new Google_Service_Dfareporting_Resource_TargetingTemplates( - $this, - $this->serviceName, - 'targetingTemplates', - array( - 'methods' => array( - 'get' => array( - 'path' => 'userprofiles/{profileId}/targetingTemplates/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'userprofiles/{profileId}/targetingTemplates', - 'httpMethod' => 'POST', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'userprofiles/{profileId}/targetingTemplates', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'advertiserId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ids' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'searchString' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortField' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortOrder' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'userprofiles/{profileId}/targetingTemplates', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'userprofiles/{profileId}/targetingTemplates', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->userProfiles = new Google_Service_Dfareporting_Resource_UserProfiles( - $this, - $this->serviceName, - 'userProfiles', - array( - 'methods' => array( - 'get' => array( - 'path' => 'userprofiles/{profileId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'userprofiles', - 'httpMethod' => 'GET', - 'parameters' => array(), - ), - ) - ) - ); - $this->userRolePermissionGroups = new Google_Service_Dfareporting_Resource_UserRolePermissionGroups( - $this, - $this->serviceName, - 'userRolePermissionGroups', - array( - 'methods' => array( - 'get' => array( - 'path' => 'userprofiles/{profileId}/userRolePermissionGroups/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'userprofiles/{profileId}/userRolePermissionGroups', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->userRolePermissions = new Google_Service_Dfareporting_Resource_UserRolePermissions( - $this, - $this->serviceName, - 'userRolePermissions', - array( - 'methods' => array( - 'get' => array( - 'path' => 'userprofiles/{profileId}/userRolePermissions/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'userprofiles/{profileId}/userRolePermissions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'ids' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ), - ) - ) - ); - $this->userRoles = new Google_Service_Dfareporting_Resource_UserRoles( - $this, - $this->serviceName, - 'userRoles', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'userprofiles/{profileId}/userRoles/{id}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'userprofiles/{profileId}/userRoles/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'userprofiles/{profileId}/userRoles', - 'httpMethod' => 'POST', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'userprofiles/{profileId}/userRoles', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'accountUserRoleOnly' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'ids' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'searchString' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortField' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortOrder' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'subaccountId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'userprofiles/{profileId}/userRoles', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'userprofiles/{profileId}/userRoles', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->videoFormats = new Google_Service_Dfareporting_Resource_VideoFormats( - $this, - $this->serviceName, - 'videoFormats', - array( - 'methods' => array( - 'get' => array( - 'path' => 'userprofiles/{profileId}/videoFormats/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'userprofiles/{profileId}/videoFormats', - 'httpMethod' => 'GET', - 'parameters' => array( - 'profileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Account.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Account.php deleted file mode 100644 index 248b9106..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Account.php +++ /dev/null @@ -1,200 +0,0 @@ -accountPermissionIds = $accountPermissionIds; - } - public function getAccountPermissionIds() - { - return $this->accountPermissionIds; - } - public function setAccountProfile($accountProfile) - { - $this->accountProfile = $accountProfile; - } - public function getAccountProfile() - { - return $this->accountProfile; - } - public function setActive($active) - { - $this->active = $active; - } - public function getActive() - { - return $this->active; - } - public function setActiveAdsLimitTier($activeAdsLimitTier) - { - $this->activeAdsLimitTier = $activeAdsLimitTier; - } - public function getActiveAdsLimitTier() - { - return $this->activeAdsLimitTier; - } - public function setActiveViewOptOut($activeViewOptOut) - { - $this->activeViewOptOut = $activeViewOptOut; - } - public function getActiveViewOptOut() - { - return $this->activeViewOptOut; - } - public function setAvailablePermissionIds($availablePermissionIds) - { - $this->availablePermissionIds = $availablePermissionIds; - } - public function getAvailablePermissionIds() - { - return $this->availablePermissionIds; - } - public function setCountryId($countryId) - { - $this->countryId = $countryId; - } - public function getCountryId() - { - return $this->countryId; - } - public function setCurrencyId($currencyId) - { - $this->currencyId = $currencyId; - } - public function getCurrencyId() - { - return $this->currencyId; - } - public function setDefaultCreativeSizeId($defaultCreativeSizeId) - { - $this->defaultCreativeSizeId = $defaultCreativeSizeId; - } - public function getDefaultCreativeSizeId() - { - return $this->defaultCreativeSizeId; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - 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 setLocale($locale) - { - $this->locale = $locale; - } - public function getLocale() - { - return $this->locale; - } - public function setMaximumImageSize($maximumImageSize) - { - $this->maximumImageSize = $maximumImageSize; - } - public function getMaximumImageSize() - { - return $this->maximumImageSize; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNielsenOcrEnabled($nielsenOcrEnabled) - { - $this->nielsenOcrEnabled = $nielsenOcrEnabled; - } - public function getNielsenOcrEnabled() - { - return $this->nielsenOcrEnabled; - } - /** - * @param Google_Service_Dfareporting_ReportsConfiguration - */ - public function setReportsConfiguration(Google_Service_Dfareporting_ReportsConfiguration $reportsConfiguration) - { - $this->reportsConfiguration = $reportsConfiguration; - } - /** - * @return Google_Service_Dfareporting_ReportsConfiguration - */ - public function getReportsConfiguration() - { - return $this->reportsConfiguration; - } - public function setShareReportsWithTwitter($shareReportsWithTwitter) - { - $this->shareReportsWithTwitter = $shareReportsWithTwitter; - } - public function getShareReportsWithTwitter() - { - return $this->shareReportsWithTwitter; - } - public function setTeaserSizeLimit($teaserSizeLimit) - { - $this->teaserSizeLimit = $teaserSizeLimit; - } - public function getTeaserSizeLimit() - { - return $this->teaserSizeLimit; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/AccountActiveAdSummary.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/AccountActiveAdSummary.php deleted file mode 100644 index f7454058..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/AccountActiveAdSummary.php +++ /dev/null @@ -1,66 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setActiveAds($activeAds) - { - $this->activeAds = $activeAds; - } - public function getActiveAds() - { - return $this->activeAds; - } - public function setActiveAdsLimitTier($activeAdsLimitTier) - { - $this->activeAdsLimitTier = $activeAdsLimitTier; - } - public function getActiveAdsLimitTier() - { - return $this->activeAdsLimitTier; - } - public function setAvailableAds($availableAds) - { - $this->availableAds = $availableAds; - } - public function getAvailableAds() - { - return $this->availableAds; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/AccountPermission.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/AccountPermission.php deleted file mode 100644 index 8896bbed..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/AccountPermission.php +++ /dev/null @@ -1,76 +0,0 @@ -accountProfiles = $accountProfiles; - } - public function getAccountProfiles() - { - return $this->accountProfiles; - } - 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 setLevel($level) - { - $this->level = $level; - } - public function getLevel() - { - return $this->level; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPermissionGroupId($permissionGroupId) - { - $this->permissionGroupId = $permissionGroupId; - } - public function getPermissionGroupId() - { - return $this->permissionGroupId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/AccountPermissionGroup.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/AccountPermissionGroup.php deleted file mode 100644 index 2b72c137..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/AccountPermissionGroup.php +++ /dev/null @@ -1,48 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/AccountPermissionGroupsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/AccountPermissionGroupsListResponse.php deleted file mode 100644 index cabae1d8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/AccountPermissionGroupsListResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -accountPermissionGroups = $accountPermissionGroups; - } - /** - * @return Google_Service_Dfareporting_AccountPermissionGroup - */ - public function getAccountPermissionGroups() - { - return $this->accountPermissionGroups; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/AccountPermissionsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/AccountPermissionsListResponse.php deleted file mode 100644 index 745d640f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/AccountPermissionsListResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -accountPermissions = $accountPermissions; - } - /** - * @return Google_Service_Dfareporting_AccountPermission - */ - public function getAccountPermissions() - { - return $this->accountPermissions; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/AccountUserProfile.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/AccountUserProfile.php deleted file mode 100644 index 1b4aa639..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/AccountUserProfile.php +++ /dev/null @@ -1,193 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setActive($active) - { - $this->active = $active; - } - public function getActive() - { - return $this->active; - } - /** - * @param Google_Service_Dfareporting_ObjectFilter - */ - public function setAdvertiserFilter(Google_Service_Dfareporting_ObjectFilter $advertiserFilter) - { - $this->advertiserFilter = $advertiserFilter; - } - /** - * @return Google_Service_Dfareporting_ObjectFilter - */ - public function getAdvertiserFilter() - { - return $this->advertiserFilter; - } - /** - * @param Google_Service_Dfareporting_ObjectFilter - */ - public function setCampaignFilter(Google_Service_Dfareporting_ObjectFilter $campaignFilter) - { - $this->campaignFilter = $campaignFilter; - } - /** - * @return Google_Service_Dfareporting_ObjectFilter - */ - public function getCampaignFilter() - { - return $this->campaignFilter; - } - public function setComments($comments) - { - $this->comments = $comments; - } - public function getComments() - { - return $this->comments; - } - public function setEmail($email) - { - $this->email = $email; - } - public function getEmail() - { - return $this->email; - } - 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 setLocale($locale) - { - $this->locale = $locale; - } - public function getLocale() - { - return $this->locale; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Dfareporting_ObjectFilter - */ - public function setSiteFilter(Google_Service_Dfareporting_ObjectFilter $siteFilter) - { - $this->siteFilter = $siteFilter; - } - /** - * @return Google_Service_Dfareporting_ObjectFilter - */ - public function getSiteFilter() - { - return $this->siteFilter; - } - public function setSubaccountId($subaccountId) - { - $this->subaccountId = $subaccountId; - } - public function getSubaccountId() - { - return $this->subaccountId; - } - public function setTraffickerType($traffickerType) - { - $this->traffickerType = $traffickerType; - } - public function getTraffickerType() - { - return $this->traffickerType; - } - public function setUserAccessType($userAccessType) - { - $this->userAccessType = $userAccessType; - } - public function getUserAccessType() - { - return $this->userAccessType; - } - /** - * @param Google_Service_Dfareporting_ObjectFilter - */ - public function setUserRoleFilter(Google_Service_Dfareporting_ObjectFilter $userRoleFilter) - { - $this->userRoleFilter = $userRoleFilter; - } - /** - * @return Google_Service_Dfareporting_ObjectFilter - */ - public function getUserRoleFilter() - { - return $this->userRoleFilter; - } - public function setUserRoleId($userRoleId) - { - $this->userRoleId = $userRoleId; - } - public function getUserRoleId() - { - return $this->userRoleId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/AccountUserProfilesListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/AccountUserProfilesListResponse.php deleted file mode 100644 index 4fd4cc85..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/AccountUserProfilesListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -accountUserProfiles = $accountUserProfiles; - } - /** - * @return Google_Service_Dfareporting_AccountUserProfile - */ - public function getAccountUserProfiles() - { - return $this->accountUserProfiles; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/AccountsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/AccountsListResponse.php deleted file mode 100644 index 887b8354..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/AccountsListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -accounts = $accounts; - } - /** - * @return Google_Service_Dfareporting_Account - */ - public function getAccounts() - { - return $this->accounts; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Activities.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Activities.php deleted file mode 100644 index f9c43a8f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Activities.php +++ /dev/null @@ -1,56 +0,0 @@ -filters = $filters; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getFilters() - { - return $this->filters; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setMetricNames($metricNames) - { - $this->metricNames = $metricNames; - } - public function getMetricNames() - { - return $this->metricNames; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Ad.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Ad.php deleted file mode 100644 index 8c5caa9e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Ad.php +++ /dev/null @@ -1,513 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setActive($active) - { - $this->active = $active; - } - public function getActive() - { - return $this->active; - } - public function setAdvertiserId($advertiserId) - { - $this->advertiserId = $advertiserId; - } - public function getAdvertiserId() - { - return $this->advertiserId; - } - /** - * @param Google_Service_Dfareporting_DimensionValue - */ - public function setAdvertiserIdDimensionValue(Google_Service_Dfareporting_DimensionValue $advertiserIdDimensionValue) - { - $this->advertiserIdDimensionValue = $advertiserIdDimensionValue; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getAdvertiserIdDimensionValue() - { - return $this->advertiserIdDimensionValue; - } - public function setArchived($archived) - { - $this->archived = $archived; - } - public function getArchived() - { - return $this->archived; - } - public function setAudienceSegmentId($audienceSegmentId) - { - $this->audienceSegmentId = $audienceSegmentId; - } - public function getAudienceSegmentId() - { - return $this->audienceSegmentId; - } - public function setCampaignId($campaignId) - { - $this->campaignId = $campaignId; - } - public function getCampaignId() - { - return $this->campaignId; - } - /** - * @param Google_Service_Dfareporting_DimensionValue - */ - public function setCampaignIdDimensionValue(Google_Service_Dfareporting_DimensionValue $campaignIdDimensionValue) - { - $this->campaignIdDimensionValue = $campaignIdDimensionValue; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getCampaignIdDimensionValue() - { - return $this->campaignIdDimensionValue; - } - /** - * @param Google_Service_Dfareporting_ClickThroughUrl - */ - public function setClickThroughUrl(Google_Service_Dfareporting_ClickThroughUrl $clickThroughUrl) - { - $this->clickThroughUrl = $clickThroughUrl; - } - /** - * @return Google_Service_Dfareporting_ClickThroughUrl - */ - public function getClickThroughUrl() - { - return $this->clickThroughUrl; - } - /** - * @param Google_Service_Dfareporting_ClickThroughUrlSuffixProperties - */ - public function setClickThroughUrlSuffixProperties(Google_Service_Dfareporting_ClickThroughUrlSuffixProperties $clickThroughUrlSuffixProperties) - { - $this->clickThroughUrlSuffixProperties = $clickThroughUrlSuffixProperties; - } - /** - * @return Google_Service_Dfareporting_ClickThroughUrlSuffixProperties - */ - public function getClickThroughUrlSuffixProperties() - { - return $this->clickThroughUrlSuffixProperties; - } - public function setComments($comments) - { - $this->comments = $comments; - } - public function getComments() - { - return $this->comments; - } - public function setCompatibility($compatibility) - { - $this->compatibility = $compatibility; - } - public function getCompatibility() - { - return $this->compatibility; - } - /** - * @param Google_Service_Dfareporting_LastModifiedInfo - */ - public function setCreateInfo(Google_Service_Dfareporting_LastModifiedInfo $createInfo) - { - $this->createInfo = $createInfo; - } - /** - * @return Google_Service_Dfareporting_LastModifiedInfo - */ - public function getCreateInfo() - { - return $this->createInfo; - } - /** - * @param Google_Service_Dfareporting_CreativeGroupAssignment - */ - public function setCreativeGroupAssignments($creativeGroupAssignments) - { - $this->creativeGroupAssignments = $creativeGroupAssignments; - } - /** - * @return Google_Service_Dfareporting_CreativeGroupAssignment - */ - public function getCreativeGroupAssignments() - { - return $this->creativeGroupAssignments; - } - /** - * @param Google_Service_Dfareporting_CreativeRotation - */ - public function setCreativeRotation(Google_Service_Dfareporting_CreativeRotation $creativeRotation) - { - $this->creativeRotation = $creativeRotation; - } - /** - * @return Google_Service_Dfareporting_CreativeRotation - */ - public function getCreativeRotation() - { - return $this->creativeRotation; - } - /** - * @param Google_Service_Dfareporting_DayPartTargeting - */ - public function setDayPartTargeting(Google_Service_Dfareporting_DayPartTargeting $dayPartTargeting) - { - $this->dayPartTargeting = $dayPartTargeting; - } - /** - * @return Google_Service_Dfareporting_DayPartTargeting - */ - public function getDayPartTargeting() - { - return $this->dayPartTargeting; - } - /** - * @param Google_Service_Dfareporting_DefaultClickThroughEventTagProperties - */ - public function setDefaultClickThroughEventTagProperties(Google_Service_Dfareporting_DefaultClickThroughEventTagProperties $defaultClickThroughEventTagProperties) - { - $this->defaultClickThroughEventTagProperties = $defaultClickThroughEventTagProperties; - } - /** - * @return Google_Service_Dfareporting_DefaultClickThroughEventTagProperties - */ - public function getDefaultClickThroughEventTagProperties() - { - return $this->defaultClickThroughEventTagProperties; - } - /** - * @param Google_Service_Dfareporting_DeliverySchedule - */ - public function setDeliverySchedule(Google_Service_Dfareporting_DeliverySchedule $deliverySchedule) - { - $this->deliverySchedule = $deliverySchedule; - } - /** - * @return Google_Service_Dfareporting_DeliverySchedule - */ - public function getDeliverySchedule() - { - return $this->deliverySchedule; - } - public function setDynamicClickTracker($dynamicClickTracker) - { - $this->dynamicClickTracker = $dynamicClickTracker; - } - public function getDynamicClickTracker() - { - return $this->dynamicClickTracker; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - /** - * @param Google_Service_Dfareporting_EventTagOverride - */ - public function setEventTagOverrides($eventTagOverrides) - { - $this->eventTagOverrides = $eventTagOverrides; - } - /** - * @return Google_Service_Dfareporting_EventTagOverride - */ - public function getEventTagOverrides() - { - return $this->eventTagOverrides; - } - /** - * @param Google_Service_Dfareporting_GeoTargeting - */ - public function setGeoTargeting(Google_Service_Dfareporting_GeoTargeting $geoTargeting) - { - $this->geoTargeting = $geoTargeting; - } - /** - * @return Google_Service_Dfareporting_GeoTargeting - */ - public function getGeoTargeting() - { - return $this->geoTargeting; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Dfareporting_DimensionValue - */ - public function setIdDimensionValue(Google_Service_Dfareporting_DimensionValue $idDimensionValue) - { - $this->idDimensionValue = $idDimensionValue; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getIdDimensionValue() - { - return $this->idDimensionValue; - } - /** - * @param Google_Service_Dfareporting_KeyValueTargetingExpression - */ - public function setKeyValueTargetingExpression(Google_Service_Dfareporting_KeyValueTargetingExpression $keyValueTargetingExpression) - { - $this->keyValueTargetingExpression = $keyValueTargetingExpression; - } - /** - * @return Google_Service_Dfareporting_KeyValueTargetingExpression - */ - public function getKeyValueTargetingExpression() - { - return $this->keyValueTargetingExpression; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Dfareporting_LanguageTargeting - */ - public function setLanguageTargeting(Google_Service_Dfareporting_LanguageTargeting $languageTargeting) - { - $this->languageTargeting = $languageTargeting; - } - /** - * @return Google_Service_Dfareporting_LanguageTargeting - */ - public function getLanguageTargeting() - { - return $this->languageTargeting; - } - /** - * @param Google_Service_Dfareporting_LastModifiedInfo - */ - public function setLastModifiedInfo(Google_Service_Dfareporting_LastModifiedInfo $lastModifiedInfo) - { - $this->lastModifiedInfo = $lastModifiedInfo; - } - /** - * @return Google_Service_Dfareporting_LastModifiedInfo - */ - public function getLastModifiedInfo() - { - return $this->lastModifiedInfo; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Dfareporting_PlacementAssignment - */ - public function setPlacementAssignments($placementAssignments) - { - $this->placementAssignments = $placementAssignments; - } - /** - * @return Google_Service_Dfareporting_PlacementAssignment - */ - public function getPlacementAssignments() - { - return $this->placementAssignments; - } - /** - * @param Google_Service_Dfareporting_ListTargetingExpression - */ - public function setRemarketingListExpression(Google_Service_Dfareporting_ListTargetingExpression $remarketingListExpression) - { - $this->remarketingListExpression = $remarketingListExpression; - } - /** - * @return Google_Service_Dfareporting_ListTargetingExpression - */ - public function getRemarketingListExpression() - { - return $this->remarketingListExpression; - } - /** - * @param Google_Service_Dfareporting_Size - */ - public function setSize(Google_Service_Dfareporting_Size $size) - { - $this->size = $size; - } - /** - * @return Google_Service_Dfareporting_Size - */ - public function getSize() - { - return $this->size; - } - public function setSslCompliant($sslCompliant) - { - $this->sslCompliant = $sslCompliant; - } - public function getSslCompliant() - { - return $this->sslCompliant; - } - public function setSslRequired($sslRequired) - { - $this->sslRequired = $sslRequired; - } - public function getSslRequired() - { - return $this->sslRequired; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } - public function setSubaccountId($subaccountId) - { - $this->subaccountId = $subaccountId; - } - public function getSubaccountId() - { - return $this->subaccountId; - } - public function setTargetingTemplateId($targetingTemplateId) - { - $this->targetingTemplateId = $targetingTemplateId; - } - public function getTargetingTemplateId() - { - return $this->targetingTemplateId; - } - /** - * @param Google_Service_Dfareporting_TechnologyTargeting - */ - public function setTechnologyTargeting(Google_Service_Dfareporting_TechnologyTargeting $technologyTargeting) - { - $this->technologyTargeting = $technologyTargeting; - } - /** - * @return Google_Service_Dfareporting_TechnologyTargeting - */ - public function getTechnologyTargeting() - { - return $this->technologyTargeting; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/AdBlockingConfiguration.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/AdBlockingConfiguration.php deleted file mode 100644 index 582dc34a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/AdBlockingConfiguration.php +++ /dev/null @@ -1,57 +0,0 @@ -clickThroughUrl = $clickThroughUrl; - } - public function getClickThroughUrl() - { - return $this->clickThroughUrl; - } - public function setCreativeBundleId($creativeBundleId) - { - $this->creativeBundleId = $creativeBundleId; - } - public function getCreativeBundleId() - { - return $this->creativeBundleId; - } - public function setEnabled($enabled) - { - $this->enabled = $enabled; - } - public function getEnabled() - { - return $this->enabled; - } - public function setOverrideClickThroughUrl($overrideClickThroughUrl) - { - $this->overrideClickThroughUrl = $overrideClickThroughUrl; - } - public function getOverrideClickThroughUrl() - { - return $this->overrideClickThroughUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/AdSlot.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/AdSlot.php deleted file mode 100644 index 99543396..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/AdSlot.php +++ /dev/null @@ -1,93 +0,0 @@ -comment = $comment; - } - public function getComment() - { - return $this->comment; - } - public function setCompatibility($compatibility) - { - $this->compatibility = $compatibility; - } - public function getCompatibility() - { - return $this->compatibility; - } - public function setHeight($height) - { - $this->height = $height; - } - public function getHeight() - { - return $this->height; - } - public function setLinkedPlacementId($linkedPlacementId) - { - $this->linkedPlacementId = $linkedPlacementId; - } - public function getLinkedPlacementId() - { - return $this->linkedPlacementId; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPaymentSourceType($paymentSourceType) - { - $this->paymentSourceType = $paymentSourceType; - } - public function getPaymentSourceType() - { - return $this->paymentSourceType; - } - public function setPrimary($primary) - { - $this->primary = $primary; - } - public function getPrimary() - { - return $this->primary; - } - public function setWidth($width) - { - $this->width = $width; - } - public function getWidth() - { - return $this->width; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/AdsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/AdsListResponse.php deleted file mode 100644 index bb3fa26c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/AdsListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -ads = $ads; - } - /** - * @return Google_Service_Dfareporting_Ad - */ - public function getAds() - { - return $this->ads; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Advertiser.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Advertiser.php deleted file mode 100644 index a260098e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Advertiser.php +++ /dev/null @@ -1,170 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setAdvertiserGroupId($advertiserGroupId) - { - $this->advertiserGroupId = $advertiserGroupId; - } - public function getAdvertiserGroupId() - { - return $this->advertiserGroupId; - } - public function setClickThroughUrlSuffix($clickThroughUrlSuffix) - { - $this->clickThroughUrlSuffix = $clickThroughUrlSuffix; - } - public function getClickThroughUrlSuffix() - { - return $this->clickThroughUrlSuffix; - } - public function setDefaultClickThroughEventTagId($defaultClickThroughEventTagId) - { - $this->defaultClickThroughEventTagId = $defaultClickThroughEventTagId; - } - public function getDefaultClickThroughEventTagId() - { - return $this->defaultClickThroughEventTagId; - } - public function setDefaultEmail($defaultEmail) - { - $this->defaultEmail = $defaultEmail; - } - public function getDefaultEmail() - { - return $this->defaultEmail; - } - public function setFloodlightConfigurationId($floodlightConfigurationId) - { - $this->floodlightConfigurationId = $floodlightConfigurationId; - } - public function getFloodlightConfigurationId() - { - return $this->floodlightConfigurationId; - } - /** - * @param Google_Service_Dfareporting_DimensionValue - */ - public function setFloodlightConfigurationIdDimensionValue(Google_Service_Dfareporting_DimensionValue $floodlightConfigurationIdDimensionValue) - { - $this->floodlightConfigurationIdDimensionValue = $floodlightConfigurationIdDimensionValue; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getFloodlightConfigurationIdDimensionValue() - { - return $this->floodlightConfigurationIdDimensionValue; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Dfareporting_DimensionValue - */ - public function setIdDimensionValue(Google_Service_Dfareporting_DimensionValue $idDimensionValue) - { - $this->idDimensionValue = $idDimensionValue; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getIdDimensionValue() - { - return $this->idDimensionValue; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOriginalFloodlightConfigurationId($originalFloodlightConfigurationId) - { - $this->originalFloodlightConfigurationId = $originalFloodlightConfigurationId; - } - public function getOriginalFloodlightConfigurationId() - { - return $this->originalFloodlightConfigurationId; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setSubaccountId($subaccountId) - { - $this->subaccountId = $subaccountId; - } - public function getSubaccountId() - { - return $this->subaccountId; - } - public function setSuspended($suspended) - { - $this->suspended = $suspended; - } - public function getSuspended() - { - return $this->suspended; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/AdvertiserGroup.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/AdvertiserGroup.php deleted file mode 100644 index 09c6b08d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/AdvertiserGroup.php +++ /dev/null @@ -1,57 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/AdvertiserGroupsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/AdvertiserGroupsListResponse.php deleted file mode 100644 index c4864030..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/AdvertiserGroupsListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -advertiserGroups = $advertiserGroups; - } - /** - * @return Google_Service_Dfareporting_AdvertiserGroup - */ - public function getAdvertiserGroups() - { - return $this->advertiserGroups; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/AdvertiserLandingPagesListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/AdvertiserLandingPagesListResponse.php deleted file mode 100644 index a38c72b4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/AdvertiserLandingPagesListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Dfareporting_LandingPage - */ - public function setLandingPages($landingPages) - { - $this->landingPages = $landingPages; - } - /** - * @return Google_Service_Dfareporting_LandingPage - */ - public function getLandingPages() - { - return $this->landingPages; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/AdvertisersListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/AdvertisersListResponse.php deleted file mode 100644 index dc2e6c30..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/AdvertisersListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -advertisers = $advertisers; - } - /** - * @return Google_Service_Dfareporting_Advertiser - */ - public function getAdvertisers() - { - return $this->advertisers; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/AudienceSegment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/AudienceSegment.php deleted file mode 100644 index c6763df7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/AudienceSegment.php +++ /dev/null @@ -1,48 +0,0 @@ -allocation = $allocation; - } - public function getAllocation() - { - return $this->allocation; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/AudienceSegmentGroup.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/AudienceSegmentGroup.php deleted file mode 100644 index 3a4dcb64..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/AudienceSegmentGroup.php +++ /dev/null @@ -1,56 +0,0 @@ -audienceSegments = $audienceSegments; - } - /** - * @return Google_Service_Dfareporting_AudienceSegment - */ - public function getAudienceSegments() - { - return $this->audienceSegments; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Browser.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Browser.php deleted file mode 100644 index 42335a58..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Browser.php +++ /dev/null @@ -1,75 +0,0 @@ -browserVersionId = $browserVersionId; - } - public function getBrowserVersionId() - { - return $this->browserVersionId; - } - public function setDartId($dartId) - { - $this->dartId = $dartId; - } - public function getDartId() - { - return $this->dartId; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setMajorVersion($majorVersion) - { - $this->majorVersion = $majorVersion; - } - public function getMajorVersion() - { - return $this->majorVersion; - } - public function setMinorVersion($minorVersion) - { - $this->minorVersion = $minorVersion; - } - public function getMinorVersion() - { - return $this->minorVersion; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/BrowsersListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/BrowsersListResponse.php deleted file mode 100644 index 6ae320cd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/BrowsersListResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -browsers = $browsers; - } - /** - * @return Google_Service_Dfareporting_Browser - */ - public function getBrowsers() - { - return $this->browsers; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Campaign.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Campaign.php deleted file mode 100644 index ec7ad675..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Campaign.php +++ /dev/null @@ -1,351 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - /** - * @param Google_Service_Dfareporting_AdBlockingConfiguration - */ - public function setAdBlockingConfiguration(Google_Service_Dfareporting_AdBlockingConfiguration $adBlockingConfiguration) - { - $this->adBlockingConfiguration = $adBlockingConfiguration; - } - /** - * @return Google_Service_Dfareporting_AdBlockingConfiguration - */ - public function getAdBlockingConfiguration() - { - return $this->adBlockingConfiguration; - } - /** - * @param Google_Service_Dfareporting_CreativeOptimizationConfiguration - */ - public function setAdditionalCreativeOptimizationConfigurations($additionalCreativeOptimizationConfigurations) - { - $this->additionalCreativeOptimizationConfigurations = $additionalCreativeOptimizationConfigurations; - } - /** - * @return Google_Service_Dfareporting_CreativeOptimizationConfiguration - */ - public function getAdditionalCreativeOptimizationConfigurations() - { - return $this->additionalCreativeOptimizationConfigurations; - } - public function setAdvertiserGroupId($advertiserGroupId) - { - $this->advertiserGroupId = $advertiserGroupId; - } - public function getAdvertiserGroupId() - { - return $this->advertiserGroupId; - } - public function setAdvertiserId($advertiserId) - { - $this->advertiserId = $advertiserId; - } - public function getAdvertiserId() - { - return $this->advertiserId; - } - /** - * @param Google_Service_Dfareporting_DimensionValue - */ - public function setAdvertiserIdDimensionValue(Google_Service_Dfareporting_DimensionValue $advertiserIdDimensionValue) - { - $this->advertiserIdDimensionValue = $advertiserIdDimensionValue; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getAdvertiserIdDimensionValue() - { - return $this->advertiserIdDimensionValue; - } - public function setArchived($archived) - { - $this->archived = $archived; - } - public function getArchived() - { - return $this->archived; - } - /** - * @param Google_Service_Dfareporting_AudienceSegmentGroup - */ - public function setAudienceSegmentGroups($audienceSegmentGroups) - { - $this->audienceSegmentGroups = $audienceSegmentGroups; - } - /** - * @return Google_Service_Dfareporting_AudienceSegmentGroup - */ - public function getAudienceSegmentGroups() - { - return $this->audienceSegmentGroups; - } - public function setBillingInvoiceCode($billingInvoiceCode) - { - $this->billingInvoiceCode = $billingInvoiceCode; - } - public function getBillingInvoiceCode() - { - return $this->billingInvoiceCode; - } - /** - * @param Google_Service_Dfareporting_ClickThroughUrlSuffixProperties - */ - public function setClickThroughUrlSuffixProperties(Google_Service_Dfareporting_ClickThroughUrlSuffixProperties $clickThroughUrlSuffixProperties) - { - $this->clickThroughUrlSuffixProperties = $clickThroughUrlSuffixProperties; - } - /** - * @return Google_Service_Dfareporting_ClickThroughUrlSuffixProperties - */ - public function getClickThroughUrlSuffixProperties() - { - return $this->clickThroughUrlSuffixProperties; - } - public function setComment($comment) - { - $this->comment = $comment; - } - public function getComment() - { - return $this->comment; - } - /** - * @param Google_Service_Dfareporting_LastModifiedInfo - */ - public function setCreateInfo(Google_Service_Dfareporting_LastModifiedInfo $createInfo) - { - $this->createInfo = $createInfo; - } - /** - * @return Google_Service_Dfareporting_LastModifiedInfo - */ - public function getCreateInfo() - { - return $this->createInfo; - } - public function setCreativeGroupIds($creativeGroupIds) - { - $this->creativeGroupIds = $creativeGroupIds; - } - public function getCreativeGroupIds() - { - return $this->creativeGroupIds; - } - /** - * @param Google_Service_Dfareporting_CreativeOptimizationConfiguration - */ - public function setCreativeOptimizationConfiguration(Google_Service_Dfareporting_CreativeOptimizationConfiguration $creativeOptimizationConfiguration) - { - $this->creativeOptimizationConfiguration = $creativeOptimizationConfiguration; - } - /** - * @return Google_Service_Dfareporting_CreativeOptimizationConfiguration - */ - public function getCreativeOptimizationConfiguration() - { - return $this->creativeOptimizationConfiguration; - } - /** - * @param Google_Service_Dfareporting_DefaultClickThroughEventTagProperties - */ - public function setDefaultClickThroughEventTagProperties(Google_Service_Dfareporting_DefaultClickThroughEventTagProperties $defaultClickThroughEventTagProperties) - { - $this->defaultClickThroughEventTagProperties = $defaultClickThroughEventTagProperties; - } - /** - * @return Google_Service_Dfareporting_DefaultClickThroughEventTagProperties - */ - public function getDefaultClickThroughEventTagProperties() - { - return $this->defaultClickThroughEventTagProperties; - } - public function setDefaultLandingPageId($defaultLandingPageId) - { - $this->defaultLandingPageId = $defaultLandingPageId; - } - public function getDefaultLandingPageId() - { - return $this->defaultLandingPageId; - } - public function setEndDate($endDate) - { - $this->endDate = $endDate; - } - public function getEndDate() - { - return $this->endDate; - } - /** - * @param Google_Service_Dfareporting_EventTagOverride - */ - public function setEventTagOverrides($eventTagOverrides) - { - $this->eventTagOverrides = $eventTagOverrides; - } - /** - * @return Google_Service_Dfareporting_EventTagOverride - */ - public function getEventTagOverrides() - { - return $this->eventTagOverrides; - } - public function setExternalId($externalId) - { - $this->externalId = $externalId; - } - public function getExternalId() - { - return $this->externalId; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Dfareporting_DimensionValue - */ - public function setIdDimensionValue(Google_Service_Dfareporting_DimensionValue $idDimensionValue) - { - $this->idDimensionValue = $idDimensionValue; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getIdDimensionValue() - { - return $this->idDimensionValue; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Dfareporting_LastModifiedInfo - */ - public function setLastModifiedInfo(Google_Service_Dfareporting_LastModifiedInfo $lastModifiedInfo) - { - $this->lastModifiedInfo = $lastModifiedInfo; - } - /** - * @return Google_Service_Dfareporting_LastModifiedInfo - */ - public function getLastModifiedInfo() - { - return $this->lastModifiedInfo; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNielsenOcrEnabled($nielsenOcrEnabled) - { - $this->nielsenOcrEnabled = $nielsenOcrEnabled; - } - public function getNielsenOcrEnabled() - { - return $this->nielsenOcrEnabled; - } - public function setStartDate($startDate) - { - $this->startDate = $startDate; - } - public function getStartDate() - { - return $this->startDate; - } - public function setSubaccountId($subaccountId) - { - $this->subaccountId = $subaccountId; - } - public function getSubaccountId() - { - return $this->subaccountId; - } - public function setTraffickerEmails($traffickerEmails) - { - $this->traffickerEmails = $traffickerEmails; - } - public function getTraffickerEmails() - { - return $this->traffickerEmails; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CampaignCreativeAssociation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CampaignCreativeAssociation.php deleted file mode 100644 index bac04bb3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CampaignCreativeAssociation.php +++ /dev/null @@ -1,39 +0,0 @@ -creativeId = $creativeId; - } - public function getCreativeId() - { - return $this->creativeId; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CampaignCreativeAssociationsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CampaignCreativeAssociationsListResponse.php deleted file mode 100644 index bb800906..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CampaignCreativeAssociationsListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -campaignCreativeAssociations = $campaignCreativeAssociations; - } - /** - * @return Google_Service_Dfareporting_CampaignCreativeAssociation - */ - public function getCampaignCreativeAssociations() - { - return $this->campaignCreativeAssociations; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CampaignManagerIds.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CampaignManagerIds.php deleted file mode 100644 index 105696b0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CampaignManagerIds.php +++ /dev/null @@ -1,75 +0,0 @@ -adId = $adId; - } - public function getAdId() - { - return $this->adId; - } - public function setCampaignId($campaignId) - { - $this->campaignId = $campaignId; - } - public function getCampaignId() - { - return $this->campaignId; - } - public function setCreativeId($creativeId) - { - $this->creativeId = $creativeId; - } - public function getCreativeId() - { - return $this->creativeId; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setPlacementId($placementId) - { - $this->placementId = $placementId; - } - public function getPlacementId() - { - return $this->placementId; - } - public function setSiteId($siteId) - { - $this->siteId = $siteId; - } - public function getSiteId() - { - return $this->siteId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CampaignsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CampaignsListResponse.php deleted file mode 100644 index e7b52a3a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CampaignsListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -campaigns = $campaigns; - } - /** - * @return Google_Service_Dfareporting_Campaign - */ - public function getCampaigns() - { - return $this->campaigns; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ChangeLog.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ChangeLog.php deleted file mode 100644 index da84af6a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ChangeLog.php +++ /dev/null @@ -1,147 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setAction($action) - { - $this->action = $action; - } - public function getAction() - { - return $this->action; - } - public function setChangeTime($changeTime) - { - $this->changeTime = $changeTime; - } - public function getChangeTime() - { - return $this->changeTime; - } - public function setFieldName($fieldName) - { - $this->fieldName = $fieldName; - } - public function getFieldName() - { - return $this->fieldName; - } - 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 setNewValue($newValue) - { - $this->newValue = $newValue; - } - public function getNewValue() - { - return $this->newValue; - } - public function setObjectId($objectId) - { - $this->objectId = $objectId; - } - public function getObjectId() - { - return $this->objectId; - } - public function setObjectType($objectType) - { - $this->objectType = $objectType; - } - public function getObjectType() - { - return $this->objectType; - } - public function setOldValue($oldValue) - { - $this->oldValue = $oldValue; - } - public function getOldValue() - { - return $this->oldValue; - } - public function setSubaccountId($subaccountId) - { - $this->subaccountId = $subaccountId; - } - public function getSubaccountId() - { - return $this->subaccountId; - } - public function setTransactionId($transactionId) - { - $this->transactionId = $transactionId; - } - public function getTransactionId() - { - return $this->transactionId; - } - public function setUserProfileId($userProfileId) - { - $this->userProfileId = $userProfileId; - } - public function getUserProfileId() - { - return $this->userProfileId; - } - public function setUserProfileName($userProfileName) - { - $this->userProfileName = $userProfileName; - } - public function getUserProfileName() - { - return $this->userProfileName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ChangeLogsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ChangeLogsListResponse.php deleted file mode 100644 index 78d89396..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ChangeLogsListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -changeLogs = $changeLogs; - } - /** - * @return Google_Service_Dfareporting_ChangeLog - */ - public function getChangeLogs() - { - return $this->changeLogs; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CitiesListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CitiesListResponse.php deleted file mode 100644 index ba601a60..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CitiesListResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -cities = $cities; - } - /** - * @return Google_Service_Dfareporting_City - */ - public function getCities() - { - return $this->cities; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/City.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/City.php deleted file mode 100644 index 4dd2f408..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/City.php +++ /dev/null @@ -1,102 +0,0 @@ -countryCode = $countryCode; - } - public function getCountryCode() - { - return $this->countryCode; - } - public function setCountryDartId($countryDartId) - { - $this->countryDartId = $countryDartId; - } - public function getCountryDartId() - { - return $this->countryDartId; - } - public function setDartId($dartId) - { - $this->dartId = $dartId; - } - public function getDartId() - { - return $this->dartId; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setMetroCode($metroCode) - { - $this->metroCode = $metroCode; - } - public function getMetroCode() - { - return $this->metroCode; - } - public function setMetroDmaId($metroDmaId) - { - $this->metroDmaId = $metroDmaId; - } - public function getMetroDmaId() - { - return $this->metroDmaId; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setRegionCode($regionCode) - { - $this->regionCode = $regionCode; - } - public function getRegionCode() - { - return $this->regionCode; - } - public function setRegionDartId($regionDartId) - { - $this->regionDartId = $regionDartId; - } - public function getRegionDartId() - { - return $this->regionDartId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ClickTag.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ClickTag.php deleted file mode 100644 index db1b0f28..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ClickTag.php +++ /dev/null @@ -1,55 +0,0 @@ -clickThroughUrl = $clickThroughUrl; - } - /** - * @return Google_Service_Dfareporting_CreativeClickThroughUrl - */ - public function getClickThroughUrl() - { - return $this->clickThroughUrl; - } - public function setEventName($eventName) - { - $this->eventName = $eventName; - } - public function getEventName() - { - return $this->eventName; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ClickThroughUrl.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ClickThroughUrl.php deleted file mode 100644 index 6877839a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ClickThroughUrl.php +++ /dev/null @@ -1,57 +0,0 @@ -computedClickThroughUrl = $computedClickThroughUrl; - } - public function getComputedClickThroughUrl() - { - return $this->computedClickThroughUrl; - } - public function setCustomClickThroughUrl($customClickThroughUrl) - { - $this->customClickThroughUrl = $customClickThroughUrl; - } - public function getCustomClickThroughUrl() - { - return $this->customClickThroughUrl; - } - public function setDefaultLandingPage($defaultLandingPage) - { - $this->defaultLandingPage = $defaultLandingPage; - } - public function getDefaultLandingPage() - { - return $this->defaultLandingPage; - } - public function setLandingPageId($landingPageId) - { - $this->landingPageId = $landingPageId; - } - public function getLandingPageId() - { - return $this->landingPageId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ClickThroughUrlSuffixProperties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ClickThroughUrlSuffixProperties.php deleted file mode 100644 index 6e0ffdd8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ClickThroughUrlSuffixProperties.php +++ /dev/null @@ -1,39 +0,0 @@ -clickThroughUrlSuffix = $clickThroughUrlSuffix; - } - public function getClickThroughUrlSuffix() - { - return $this->clickThroughUrlSuffix; - } - public function setOverrideInheritedSuffix($overrideInheritedSuffix) - { - $this->overrideInheritedSuffix = $overrideInheritedSuffix; - } - public function getOverrideInheritedSuffix() - { - return $this->overrideInheritedSuffix; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CompanionClickThroughOverride.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CompanionClickThroughOverride.php deleted file mode 100644 index bbacf4d8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CompanionClickThroughOverride.php +++ /dev/null @@ -1,46 +0,0 @@ -clickThroughUrl = $clickThroughUrl; - } - /** - * @return Google_Service_Dfareporting_ClickThroughUrl - */ - public function getClickThroughUrl() - { - return $this->clickThroughUrl; - } - public function setCreativeId($creativeId) - { - $this->creativeId = $creativeId; - } - public function getCreativeId() - { - return $this->creativeId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CompanionSetting.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CompanionSetting.php deleted file mode 100644 index 0177c530..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CompanionSetting.php +++ /dev/null @@ -1,65 +0,0 @@ -companionsDisabled = $companionsDisabled; - } - public function getCompanionsDisabled() - { - return $this->companionsDisabled; - } - /** - * @param Google_Service_Dfareporting_Size - */ - public function setEnabledSizes($enabledSizes) - { - $this->enabledSizes = $enabledSizes; - } - /** - * @return Google_Service_Dfareporting_Size - */ - public function getEnabledSizes() - { - return $this->enabledSizes; - } - public function setImageOnly($imageOnly) - { - $this->imageOnly = $imageOnly; - } - public function getImageOnly() - { - return $this->imageOnly; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CompatibleFields.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CompatibleFields.php deleted file mode 100644 index bad380de..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CompatibleFields.php +++ /dev/null @@ -1,110 +0,0 @@ -crossDimensionReachReportCompatibleFields = $crossDimensionReachReportCompatibleFields; - } - /** - * @return Google_Service_Dfareporting_CrossDimensionReachReportCompatibleFields - */ - public function getCrossDimensionReachReportCompatibleFields() - { - return $this->crossDimensionReachReportCompatibleFields; - } - /** - * @param Google_Service_Dfareporting_FloodlightReportCompatibleFields - */ - public function setFloodlightReportCompatibleFields(Google_Service_Dfareporting_FloodlightReportCompatibleFields $floodlightReportCompatibleFields) - { - $this->floodlightReportCompatibleFields = $floodlightReportCompatibleFields; - } - /** - * @return Google_Service_Dfareporting_FloodlightReportCompatibleFields - */ - public function getFloodlightReportCompatibleFields() - { - return $this->floodlightReportCompatibleFields; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Dfareporting_PathToConversionReportCompatibleFields - */ - public function setPathToConversionReportCompatibleFields(Google_Service_Dfareporting_PathToConversionReportCompatibleFields $pathToConversionReportCompatibleFields) - { - $this->pathToConversionReportCompatibleFields = $pathToConversionReportCompatibleFields; - } - /** - * @return Google_Service_Dfareporting_PathToConversionReportCompatibleFields - */ - public function getPathToConversionReportCompatibleFields() - { - return $this->pathToConversionReportCompatibleFields; - } - /** - * @param Google_Service_Dfareporting_ReachReportCompatibleFields - */ - public function setReachReportCompatibleFields(Google_Service_Dfareporting_ReachReportCompatibleFields $reachReportCompatibleFields) - { - $this->reachReportCompatibleFields = $reachReportCompatibleFields; - } - /** - * @return Google_Service_Dfareporting_ReachReportCompatibleFields - */ - public function getReachReportCompatibleFields() - { - return $this->reachReportCompatibleFields; - } - /** - * @param Google_Service_Dfareporting_ReportCompatibleFields - */ - public function setReportCompatibleFields(Google_Service_Dfareporting_ReportCompatibleFields $reportCompatibleFields) - { - $this->reportCompatibleFields = $reportCompatibleFields; - } - /** - * @return Google_Service_Dfareporting_ReportCompatibleFields - */ - public function getReportCompatibleFields() - { - return $this->reportCompatibleFields; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ConnectionType.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ConnectionType.php deleted file mode 100644 index 0184df9c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ConnectionType.php +++ /dev/null @@ -1,48 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ConnectionTypesListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ConnectionTypesListResponse.php deleted file mode 100644 index 2291968a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ConnectionTypesListResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -connectionTypes = $connectionTypes; - } - /** - * @return Google_Service_Dfareporting_ConnectionType - */ - public function getConnectionTypes() - { - return $this->connectionTypes; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ContentCategoriesListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ContentCategoriesListResponse.php deleted file mode 100644 index 2439765a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ContentCategoriesListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -contentCategories = $contentCategories; - } - /** - * @return Google_Service_Dfareporting_ContentCategory - */ - public function getContentCategories() - { - return $this->contentCategories; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ContentCategory.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ContentCategory.php deleted file mode 100644 index a42c3de0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ContentCategory.php +++ /dev/null @@ -1,57 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Conversion.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Conversion.php deleted file mode 100644 index a607e621..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Conversion.php +++ /dev/null @@ -1,182 +0,0 @@ -childDirectedTreatment = $childDirectedTreatment; - } - public function getChildDirectedTreatment() - { - return $this->childDirectedTreatment; - } - /** - * @param Google_Service_Dfareporting_CustomFloodlightVariable - */ - public function setCustomVariables($customVariables) - { - $this->customVariables = $customVariables; - } - /** - * @return Google_Service_Dfareporting_CustomFloodlightVariable - */ - public function getCustomVariables() - { - return $this->customVariables; - } - public function setEncryptedUserId($encryptedUserId) - { - $this->encryptedUserId = $encryptedUserId; - } - public function getEncryptedUserId() - { - return $this->encryptedUserId; - } - public function setEncryptedUserIdCandidates($encryptedUserIdCandidates) - { - $this->encryptedUserIdCandidates = $encryptedUserIdCandidates; - } - public function getEncryptedUserIdCandidates() - { - return $this->encryptedUserIdCandidates; - } - public function setFloodlightActivityId($floodlightActivityId) - { - $this->floodlightActivityId = $floodlightActivityId; - } - public function getFloodlightActivityId() - { - return $this->floodlightActivityId; - } - public function setFloodlightConfigurationId($floodlightConfigurationId) - { - $this->floodlightConfigurationId = $floodlightConfigurationId; - } - public function getFloodlightConfigurationId() - { - return $this->floodlightConfigurationId; - } - public function setGclid($gclid) - { - $this->gclid = $gclid; - } - public function getGclid() - { - return $this->gclid; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLimitAdTracking($limitAdTracking) - { - $this->limitAdTracking = $limitAdTracking; - } - public function getLimitAdTracking() - { - return $this->limitAdTracking; - } - public function setMatchId($matchId) - { - $this->matchId = $matchId; - } - public function getMatchId() - { - return $this->matchId; - } - public function setMobileDeviceId($mobileDeviceId) - { - $this->mobileDeviceId = $mobileDeviceId; - } - public function getMobileDeviceId() - { - return $this->mobileDeviceId; - } - public function setNonPersonalizedAd($nonPersonalizedAd) - { - $this->nonPersonalizedAd = $nonPersonalizedAd; - } - public function getNonPersonalizedAd() - { - return $this->nonPersonalizedAd; - } - public function setOrdinal($ordinal) - { - $this->ordinal = $ordinal; - } - public function getOrdinal() - { - return $this->ordinal; - } - public function setQuantity($quantity) - { - $this->quantity = $quantity; - } - public function getQuantity() - { - return $this->quantity; - } - public function setTimestampMicros($timestampMicros) - { - $this->timestampMicros = $timestampMicros; - } - public function getTimestampMicros() - { - return $this->timestampMicros; - } - public function setTreatmentForUnderage($treatmentForUnderage) - { - $this->treatmentForUnderage = $treatmentForUnderage; - } - public function getTreatmentForUnderage() - { - return $this->treatmentForUnderage; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ConversionError.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ConversionError.php deleted file mode 100644 index e723744c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ConversionError.php +++ /dev/null @@ -1,48 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ConversionStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ConversionStatus.php deleted file mode 100644 index 9d8baad6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ConversionStatus.php +++ /dev/null @@ -1,63 +0,0 @@ -conversion = $conversion; - } - /** - * @return Google_Service_Dfareporting_Conversion - */ - public function getConversion() - { - return $this->conversion; - } - /** - * @param Google_Service_Dfareporting_ConversionError - */ - public function setErrors($errors) - { - $this->errors = $errors; - } - /** - * @return Google_Service_Dfareporting_ConversionError - */ - public function getErrors() - { - return $this->errors; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ConversionsBatchInsertRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ConversionsBatchInsertRequest.php deleted file mode 100644 index 19287597..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ConversionsBatchInsertRequest.php +++ /dev/null @@ -1,63 +0,0 @@ -conversions = $conversions; - } - /** - * @return Google_Service_Dfareporting_Conversion - */ - public function getConversions() - { - return $this->conversions; - } - /** - * @param Google_Service_Dfareporting_EncryptionInfo - */ - public function setEncryptionInfo(Google_Service_Dfareporting_EncryptionInfo $encryptionInfo) - { - $this->encryptionInfo = $encryptionInfo; - } - /** - * @return Google_Service_Dfareporting_EncryptionInfo - */ - public function getEncryptionInfo() - { - return $this->encryptionInfo; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ConversionsBatchInsertResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ConversionsBatchInsertResponse.php deleted file mode 100644 index a68615eb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ConversionsBatchInsertResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -hasFailures = $hasFailures; - } - public function getHasFailures() - { - return $this->hasFailures; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Dfareporting_ConversionStatus - */ - public function setStatus($status) - { - $this->status = $status; - } - /** - * @return Google_Service_Dfareporting_ConversionStatus - */ - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ConversionsBatchUpdateRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ConversionsBatchUpdateRequest.php deleted file mode 100644 index 22fac44f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ConversionsBatchUpdateRequest.php +++ /dev/null @@ -1,63 +0,0 @@ -conversions = $conversions; - } - /** - * @return Google_Service_Dfareporting_Conversion - */ - public function getConversions() - { - return $this->conversions; - } - /** - * @param Google_Service_Dfareporting_EncryptionInfo - */ - public function setEncryptionInfo(Google_Service_Dfareporting_EncryptionInfo $encryptionInfo) - { - $this->encryptionInfo = $encryptionInfo; - } - /** - * @return Google_Service_Dfareporting_EncryptionInfo - */ - public function getEncryptionInfo() - { - return $this->encryptionInfo; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ConversionsBatchUpdateResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ConversionsBatchUpdateResponse.php deleted file mode 100644 index 74452d9f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ConversionsBatchUpdateResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -hasFailures = $hasFailures; - } - public function getHasFailures() - { - return $this->hasFailures; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Dfareporting_ConversionStatus - */ - public function setStatus($status) - { - $this->status = $status; - } - /** - * @return Google_Service_Dfareporting_ConversionStatus - */ - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CountriesListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CountriesListResponse.php deleted file mode 100644 index 45ba120e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CountriesListResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -countries = $countries; - } - /** - * @return Google_Service_Dfareporting_Country - */ - public function getCountries() - { - return $this->countries; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Country.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Country.php deleted file mode 100644 index 59308556..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Country.php +++ /dev/null @@ -1,66 +0,0 @@ -countryCode = $countryCode; - } - public function getCountryCode() - { - return $this->countryCode; - } - public function setDartId($dartId) - { - $this->dartId = $dartId; - } - public function getDartId() - { - return $this->dartId; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setSslEnabled($sslEnabled) - { - $this->sslEnabled = $sslEnabled; - } - public function getSslEnabled() - { - return $this->sslEnabled; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Creative.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Creative.php deleted file mode 100644 index 288c093f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Creative.php +++ /dev/null @@ -1,731 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setActive($active) - { - $this->active = $active; - } - public function getActive() - { - return $this->active; - } - public function setAdParameters($adParameters) - { - $this->adParameters = $adParameters; - } - public function getAdParameters() - { - return $this->adParameters; - } - public function setAdTagKeys($adTagKeys) - { - $this->adTagKeys = $adTagKeys; - } - public function getAdTagKeys() - { - return $this->adTagKeys; - } - /** - * @param Google_Service_Dfareporting_Size - */ - public function setAdditionalSizes($additionalSizes) - { - $this->additionalSizes = $additionalSizes; - } - /** - * @return Google_Service_Dfareporting_Size - */ - public function getAdditionalSizes() - { - return $this->additionalSizes; - } - public function setAdvertiserId($advertiserId) - { - $this->advertiserId = $advertiserId; - } - public function getAdvertiserId() - { - return $this->advertiserId; - } - public function setAllowScriptAccess($allowScriptAccess) - { - $this->allowScriptAccess = $allowScriptAccess; - } - public function getAllowScriptAccess() - { - return $this->allowScriptAccess; - } - public function setArchived($archived) - { - $this->archived = $archived; - } - public function getArchived() - { - return $this->archived; - } - public function setArtworkType($artworkType) - { - $this->artworkType = $artworkType; - } - public function getArtworkType() - { - return $this->artworkType; - } - public function setAuthoringSource($authoringSource) - { - $this->authoringSource = $authoringSource; - } - public function getAuthoringSource() - { - return $this->authoringSource; - } - public function setAuthoringTool($authoringTool) - { - $this->authoringTool = $authoringTool; - } - public function getAuthoringTool() - { - return $this->authoringTool; - } - public function setAutoAdvanceImages($autoAdvanceImages) - { - $this->autoAdvanceImages = $autoAdvanceImages; - } - public function getAutoAdvanceImages() - { - return $this->autoAdvanceImages; - } - public function setBackgroundColor($backgroundColor) - { - $this->backgroundColor = $backgroundColor; - } - public function getBackgroundColor() - { - return $this->backgroundColor; - } - /** - * @param Google_Service_Dfareporting_CreativeClickThroughUrl - */ - public function setBackupImageClickThroughUrl(Google_Service_Dfareporting_CreativeClickThroughUrl $backupImageClickThroughUrl) - { - $this->backupImageClickThroughUrl = $backupImageClickThroughUrl; - } - /** - * @return Google_Service_Dfareporting_CreativeClickThroughUrl - */ - public function getBackupImageClickThroughUrl() - { - return $this->backupImageClickThroughUrl; - } - public function setBackupImageFeatures($backupImageFeatures) - { - $this->backupImageFeatures = $backupImageFeatures; - } - public function getBackupImageFeatures() - { - return $this->backupImageFeatures; - } - public function setBackupImageReportingLabel($backupImageReportingLabel) - { - $this->backupImageReportingLabel = $backupImageReportingLabel; - } - public function getBackupImageReportingLabel() - { - return $this->backupImageReportingLabel; - } - /** - * @param Google_Service_Dfareporting_TargetWindow - */ - public function setBackupImageTargetWindow(Google_Service_Dfareporting_TargetWindow $backupImageTargetWindow) - { - $this->backupImageTargetWindow = $backupImageTargetWindow; - } - /** - * @return Google_Service_Dfareporting_TargetWindow - */ - public function getBackupImageTargetWindow() - { - return $this->backupImageTargetWindow; - } - /** - * @param Google_Service_Dfareporting_ClickTag - */ - public function setClickTags($clickTags) - { - $this->clickTags = $clickTags; - } - /** - * @return Google_Service_Dfareporting_ClickTag - */ - public function getClickTags() - { - return $this->clickTags; - } - public function setCommercialId($commercialId) - { - $this->commercialId = $commercialId; - } - public function getCommercialId() - { - return $this->commercialId; - } - public function setCompanionCreatives($companionCreatives) - { - $this->companionCreatives = $companionCreatives; - } - public function getCompanionCreatives() - { - return $this->companionCreatives; - } - public function setCompatibility($compatibility) - { - $this->compatibility = $compatibility; - } - public function getCompatibility() - { - return $this->compatibility; - } - public function setConvertFlashToHtml5($convertFlashToHtml5) - { - $this->convertFlashToHtml5 = $convertFlashToHtml5; - } - public function getConvertFlashToHtml5() - { - return $this->convertFlashToHtml5; - } - /** - * @param Google_Service_Dfareporting_CreativeCustomEvent - */ - public function setCounterCustomEvents($counterCustomEvents) - { - $this->counterCustomEvents = $counterCustomEvents; - } - /** - * @return Google_Service_Dfareporting_CreativeCustomEvent - */ - public function getCounterCustomEvents() - { - return $this->counterCustomEvents; - } - /** - * @param Google_Service_Dfareporting_CreativeAssetSelection - */ - public function setCreativeAssetSelection(Google_Service_Dfareporting_CreativeAssetSelection $creativeAssetSelection) - { - $this->creativeAssetSelection = $creativeAssetSelection; - } - /** - * @return Google_Service_Dfareporting_CreativeAssetSelection - */ - public function getCreativeAssetSelection() - { - return $this->creativeAssetSelection; - } - /** - * @param Google_Service_Dfareporting_CreativeAsset - */ - public function setCreativeAssets($creativeAssets) - { - $this->creativeAssets = $creativeAssets; - } - /** - * @return Google_Service_Dfareporting_CreativeAsset - */ - public function getCreativeAssets() - { - return $this->creativeAssets; - } - /** - * @param Google_Service_Dfareporting_CreativeFieldAssignment - */ - public function setCreativeFieldAssignments($creativeFieldAssignments) - { - $this->creativeFieldAssignments = $creativeFieldAssignments; - } - /** - * @return Google_Service_Dfareporting_CreativeFieldAssignment - */ - public function getCreativeFieldAssignments() - { - return $this->creativeFieldAssignments; - } - public function setCustomKeyValues($customKeyValues) - { - $this->customKeyValues = $customKeyValues; - } - public function getCustomKeyValues() - { - return $this->customKeyValues; - } - public function setDynamicAssetSelection($dynamicAssetSelection) - { - $this->dynamicAssetSelection = $dynamicAssetSelection; - } - public function getDynamicAssetSelection() - { - return $this->dynamicAssetSelection; - } - /** - * @param Google_Service_Dfareporting_CreativeCustomEvent - */ - public function setExitCustomEvents($exitCustomEvents) - { - $this->exitCustomEvents = $exitCustomEvents; - } - /** - * @return Google_Service_Dfareporting_CreativeCustomEvent - */ - public function getExitCustomEvents() - { - return $this->exitCustomEvents; - } - /** - * @param Google_Service_Dfareporting_FsCommand - */ - public function setFsCommand(Google_Service_Dfareporting_FsCommand $fsCommand) - { - $this->fsCommand = $fsCommand; - } - /** - * @return Google_Service_Dfareporting_FsCommand - */ - public function getFsCommand() - { - return $this->fsCommand; - } - public function setHtmlCode($htmlCode) - { - $this->htmlCode = $htmlCode; - } - public function getHtmlCode() - { - return $this->htmlCode; - } - public function setHtmlCodeLocked($htmlCodeLocked) - { - $this->htmlCodeLocked = $htmlCodeLocked; - } - public function getHtmlCodeLocked() - { - return $this->htmlCodeLocked; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Dfareporting_DimensionValue - */ - public function setIdDimensionValue(Google_Service_Dfareporting_DimensionValue $idDimensionValue) - { - $this->idDimensionValue = $idDimensionValue; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getIdDimensionValue() - { - return $this->idDimensionValue; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Dfareporting_LastModifiedInfo - */ - public function setLastModifiedInfo(Google_Service_Dfareporting_LastModifiedInfo $lastModifiedInfo) - { - $this->lastModifiedInfo = $lastModifiedInfo; - } - /** - * @return Google_Service_Dfareporting_LastModifiedInfo - */ - public function getLastModifiedInfo() - { - return $this->lastModifiedInfo; - } - public function setLatestTraffickedCreativeId($latestTraffickedCreativeId) - { - $this->latestTraffickedCreativeId = $latestTraffickedCreativeId; - } - public function getLatestTraffickedCreativeId() - { - return $this->latestTraffickedCreativeId; - } - public function setMediaDescription($mediaDescription) - { - $this->mediaDescription = $mediaDescription; - } - public function getMediaDescription() - { - return $this->mediaDescription; - } - public function setMediaDuration($mediaDuration) - { - $this->mediaDuration = $mediaDuration; - } - public function getMediaDuration() - { - return $this->mediaDuration; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOverrideCss($overrideCss) - { - $this->overrideCss = $overrideCss; - } - public function getOverrideCss() - { - return $this->overrideCss; - } - /** - * @param Google_Service_Dfareporting_VideoOffset - */ - public function setProgressOffset(Google_Service_Dfareporting_VideoOffset $progressOffset) - { - $this->progressOffset = $progressOffset; - } - /** - * @return Google_Service_Dfareporting_VideoOffset - */ - public function getProgressOffset() - { - return $this->progressOffset; - } - public function setRedirectUrl($redirectUrl) - { - $this->redirectUrl = $redirectUrl; - } - public function getRedirectUrl() - { - return $this->redirectUrl; - } - public function setRenderingId($renderingId) - { - $this->renderingId = $renderingId; - } - public function getRenderingId() - { - return $this->renderingId; - } - /** - * @param Google_Service_Dfareporting_DimensionValue - */ - public function setRenderingIdDimensionValue(Google_Service_Dfareporting_DimensionValue $renderingIdDimensionValue) - { - $this->renderingIdDimensionValue = $renderingIdDimensionValue; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getRenderingIdDimensionValue() - { - return $this->renderingIdDimensionValue; - } - public function setRequiredFlashPluginVersion($requiredFlashPluginVersion) - { - $this->requiredFlashPluginVersion = $requiredFlashPluginVersion; - } - public function getRequiredFlashPluginVersion() - { - return $this->requiredFlashPluginVersion; - } - public function setRequiredFlashVersion($requiredFlashVersion) - { - $this->requiredFlashVersion = $requiredFlashVersion; - } - public function getRequiredFlashVersion() - { - return $this->requiredFlashVersion; - } - /** - * @param Google_Service_Dfareporting_Size - */ - public function setSize(Google_Service_Dfareporting_Size $size) - { - $this->size = $size; - } - /** - * @return Google_Service_Dfareporting_Size - */ - public function getSize() - { - return $this->size; - } - /** - * @param Google_Service_Dfareporting_VideoOffset - */ - public function setSkipOffset(Google_Service_Dfareporting_VideoOffset $skipOffset) - { - $this->skipOffset = $skipOffset; - } - /** - * @return Google_Service_Dfareporting_VideoOffset - */ - public function getSkipOffset() - { - return $this->skipOffset; - } - public function setSkippable($skippable) - { - $this->skippable = $skippable; - } - public function getSkippable() - { - return $this->skippable; - } - public function setSslCompliant($sslCompliant) - { - $this->sslCompliant = $sslCompliant; - } - public function getSslCompliant() - { - return $this->sslCompliant; - } - public function setSslOverride($sslOverride) - { - $this->sslOverride = $sslOverride; - } - public function getSslOverride() - { - return $this->sslOverride; - } - public function setStudioAdvertiserId($studioAdvertiserId) - { - $this->studioAdvertiserId = $studioAdvertiserId; - } - public function getStudioAdvertiserId() - { - return $this->studioAdvertiserId; - } - public function setStudioCreativeId($studioCreativeId) - { - $this->studioCreativeId = $studioCreativeId; - } - public function getStudioCreativeId() - { - return $this->studioCreativeId; - } - public function setStudioTraffickedCreativeId($studioTraffickedCreativeId) - { - $this->studioTraffickedCreativeId = $studioTraffickedCreativeId; - } - public function getStudioTraffickedCreativeId() - { - return $this->studioTraffickedCreativeId; - } - public function setSubaccountId($subaccountId) - { - $this->subaccountId = $subaccountId; - } - public function getSubaccountId() - { - return $this->subaccountId; - } - public function setThirdPartyBackupImageImpressionsUrl($thirdPartyBackupImageImpressionsUrl) - { - $this->thirdPartyBackupImageImpressionsUrl = $thirdPartyBackupImageImpressionsUrl; - } - public function getThirdPartyBackupImageImpressionsUrl() - { - return $this->thirdPartyBackupImageImpressionsUrl; - } - public function setThirdPartyRichMediaImpressionsUrl($thirdPartyRichMediaImpressionsUrl) - { - $this->thirdPartyRichMediaImpressionsUrl = $thirdPartyRichMediaImpressionsUrl; - } - public function getThirdPartyRichMediaImpressionsUrl() - { - return $this->thirdPartyRichMediaImpressionsUrl; - } - /** - * @param Google_Service_Dfareporting_ThirdPartyTrackingUrl - */ - public function setThirdPartyUrls($thirdPartyUrls) - { - $this->thirdPartyUrls = $thirdPartyUrls; - } - /** - * @return Google_Service_Dfareporting_ThirdPartyTrackingUrl - */ - public function getThirdPartyUrls() - { - return $this->thirdPartyUrls; - } - /** - * @param Google_Service_Dfareporting_CreativeCustomEvent - */ - public function setTimerCustomEvents($timerCustomEvents) - { - $this->timerCustomEvents = $timerCustomEvents; - } - /** - * @return Google_Service_Dfareporting_CreativeCustomEvent - */ - public function getTimerCustomEvents() - { - return $this->timerCustomEvents; - } - public function setTotalFileSize($totalFileSize) - { - $this->totalFileSize = $totalFileSize; - } - public function getTotalFileSize() - { - return $this->totalFileSize; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - /** - * @param Google_Service_Dfareporting_UniversalAdId - */ - public function setUniversalAdId(Google_Service_Dfareporting_UniversalAdId $universalAdId) - { - $this->universalAdId = $universalAdId; - } - /** - * @return Google_Service_Dfareporting_UniversalAdId - */ - public function getUniversalAdId() - { - return $this->universalAdId; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CreativeAsset.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CreativeAsset.php deleted file mode 100644 index d78958e6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CreativeAsset.php +++ /dev/null @@ -1,535 +0,0 @@ -actionScript3 = $actionScript3; - } - public function getActionScript3() - { - return $this->actionScript3; - } - public function setActive($active) - { - $this->active = $active; - } - public function getActive() - { - return $this->active; - } - /** - * @param Google_Service_Dfareporting_Size - */ - public function setAdditionalSizes($additionalSizes) - { - $this->additionalSizes = $additionalSizes; - } - /** - * @return Google_Service_Dfareporting_Size - */ - public function getAdditionalSizes() - { - return $this->additionalSizes; - } - public function setAlignment($alignment) - { - $this->alignment = $alignment; - } - public function getAlignment() - { - return $this->alignment; - } - public function setArtworkType($artworkType) - { - $this->artworkType = $artworkType; - } - public function getArtworkType() - { - return $this->artworkType; - } - /** - * @param Google_Service_Dfareporting_CreativeAssetId - */ - public function setAssetIdentifier(Google_Service_Dfareporting_CreativeAssetId $assetIdentifier) - { - $this->assetIdentifier = $assetIdentifier; - } - /** - * @return Google_Service_Dfareporting_CreativeAssetId - */ - public function getAssetIdentifier() - { - return $this->assetIdentifier; - } - public function setAudioBitRate($audioBitRate) - { - $this->audioBitRate = $audioBitRate; - } - public function getAudioBitRate() - { - return $this->audioBitRate; - } - public function setAudioSampleRate($audioSampleRate) - { - $this->audioSampleRate = $audioSampleRate; - } - public function getAudioSampleRate() - { - return $this->audioSampleRate; - } - /** - * @param Google_Service_Dfareporting_CreativeCustomEvent - */ - public function setBackupImageExit(Google_Service_Dfareporting_CreativeCustomEvent $backupImageExit) - { - $this->backupImageExit = $backupImageExit; - } - /** - * @return Google_Service_Dfareporting_CreativeCustomEvent - */ - public function getBackupImageExit() - { - return $this->backupImageExit; - } - public function setBitRate($bitRate) - { - $this->bitRate = $bitRate; - } - public function getBitRate() - { - return $this->bitRate; - } - public function setChildAssetType($childAssetType) - { - $this->childAssetType = $childAssetType; - } - public function getChildAssetType() - { - return $this->childAssetType; - } - /** - * @param Google_Service_Dfareporting_Size - */ - public function setCollapsedSize(Google_Service_Dfareporting_Size $collapsedSize) - { - $this->collapsedSize = $collapsedSize; - } - /** - * @return Google_Service_Dfareporting_Size - */ - public function getCollapsedSize() - { - return $this->collapsedSize; - } - public function setCompanionCreativeIds($companionCreativeIds) - { - $this->companionCreativeIds = $companionCreativeIds; - } - public function getCompanionCreativeIds() - { - return $this->companionCreativeIds; - } - public function setCustomStartTimeValue($customStartTimeValue) - { - $this->customStartTimeValue = $customStartTimeValue; - } - public function getCustomStartTimeValue() - { - return $this->customStartTimeValue; - } - public function setDetectedFeatures($detectedFeatures) - { - $this->detectedFeatures = $detectedFeatures; - } - public function getDetectedFeatures() - { - return $this->detectedFeatures; - } - public function setDisplayType($displayType) - { - $this->displayType = $displayType; - } - public function getDisplayType() - { - return $this->displayType; - } - public function setDuration($duration) - { - $this->duration = $duration; - } - public function getDuration() - { - return $this->duration; - } - public function setDurationType($durationType) - { - $this->durationType = $durationType; - } - public function getDurationType() - { - return $this->durationType; - } - /** - * @param Google_Service_Dfareporting_Size - */ - public function setExpandedDimension(Google_Service_Dfareporting_Size $expandedDimension) - { - $this->expandedDimension = $expandedDimension; - } - /** - * @return Google_Service_Dfareporting_Size - */ - public function getExpandedDimension() - { - return $this->expandedDimension; - } - public function setFileSize($fileSize) - { - $this->fileSize = $fileSize; - } - public function getFileSize() - { - return $this->fileSize; - } - public function setFlashVersion($flashVersion) - { - $this->flashVersion = $flashVersion; - } - public function getFlashVersion() - { - return $this->flashVersion; - } - public function setFrameRate($frameRate) - { - $this->frameRate = $frameRate; - } - public function getFrameRate() - { - return $this->frameRate; - } - public function setHideFlashObjects($hideFlashObjects) - { - $this->hideFlashObjects = $hideFlashObjects; - } - public function getHideFlashObjects() - { - return $this->hideFlashObjects; - } - public function setHideSelectionBoxes($hideSelectionBoxes) - { - $this->hideSelectionBoxes = $hideSelectionBoxes; - } - public function getHideSelectionBoxes() - { - return $this->hideSelectionBoxes; - } - public function setHorizontallyLocked($horizontallyLocked) - { - $this->horizontallyLocked = $horizontallyLocked; - } - public function getHorizontallyLocked() - { - return $this->horizontallyLocked; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Dfareporting_DimensionValue - */ - public function setIdDimensionValue(Google_Service_Dfareporting_DimensionValue $idDimensionValue) - { - $this->idDimensionValue = $idDimensionValue; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getIdDimensionValue() - { - return $this->idDimensionValue; - } - public function setMediaDuration($mediaDuration) - { - $this->mediaDuration = $mediaDuration; - } - public function getMediaDuration() - { - return $this->mediaDuration; - } - public function setMimeType($mimeType) - { - $this->mimeType = $mimeType; - } - public function getMimeType() - { - return $this->mimeType; - } - /** - * @param Google_Service_Dfareporting_OffsetPosition - */ - public function setOffset(Google_Service_Dfareporting_OffsetPosition $offset) - { - $this->offset = $offset; - } - /** - * @return Google_Service_Dfareporting_OffsetPosition - */ - public function getOffset() - { - return $this->offset; - } - public function setOrientation($orientation) - { - $this->orientation = $orientation; - } - public function getOrientation() - { - return $this->orientation; - } - public function setOriginalBackup($originalBackup) - { - $this->originalBackup = $originalBackup; - } - public function getOriginalBackup() - { - return $this->originalBackup; - } - public function setPoliteLoad($politeLoad) - { - $this->politeLoad = $politeLoad; - } - public function getPoliteLoad() - { - return $this->politeLoad; - } - /** - * @param Google_Service_Dfareporting_OffsetPosition - */ - public function setPosition(Google_Service_Dfareporting_OffsetPosition $position) - { - $this->position = $position; - } - /** - * @return Google_Service_Dfareporting_OffsetPosition - */ - public function getPosition() - { - return $this->position; - } - public function setPositionLeftUnit($positionLeftUnit) - { - $this->positionLeftUnit = $positionLeftUnit; - } - public function getPositionLeftUnit() - { - return $this->positionLeftUnit; - } - public function setPositionTopUnit($positionTopUnit) - { - $this->positionTopUnit = $positionTopUnit; - } - public function getPositionTopUnit() - { - return $this->positionTopUnit; - } - public function setProgressiveServingUrl($progressiveServingUrl) - { - $this->progressiveServingUrl = $progressiveServingUrl; - } - public function getProgressiveServingUrl() - { - return $this->progressiveServingUrl; - } - public function setPushdown($pushdown) - { - $this->pushdown = $pushdown; - } - public function getPushdown() - { - return $this->pushdown; - } - public function setPushdownDuration($pushdownDuration) - { - $this->pushdownDuration = $pushdownDuration; - } - public function getPushdownDuration() - { - return $this->pushdownDuration; - } - public function setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } - /** - * @param Google_Service_Dfareporting_Size - */ - public function setSize(Google_Service_Dfareporting_Size $size) - { - $this->size = $size; - } - /** - * @return Google_Service_Dfareporting_Size - */ - public function getSize() - { - return $this->size; - } - public function setSslCompliant($sslCompliant) - { - $this->sslCompliant = $sslCompliant; - } - public function getSslCompliant() - { - return $this->sslCompliant; - } - public function setStartTimeType($startTimeType) - { - $this->startTimeType = $startTimeType; - } - public function getStartTimeType() - { - return $this->startTimeType; - } - public function setStreamingServingUrl($streamingServingUrl) - { - $this->streamingServingUrl = $streamingServingUrl; - } - public function getStreamingServingUrl() - { - return $this->streamingServingUrl; - } - public function setTransparency($transparency) - { - $this->transparency = $transparency; - } - public function getTransparency() - { - return $this->transparency; - } - public function setVerticallyLocked($verticallyLocked) - { - $this->verticallyLocked = $verticallyLocked; - } - public function getVerticallyLocked() - { - return $this->verticallyLocked; - } - public function setWindowMode($windowMode) - { - $this->windowMode = $windowMode; - } - public function getWindowMode() - { - return $this->windowMode; - } - public function setZIndex($zIndex) - { - $this->zIndex = $zIndex; - } - public function getZIndex() - { - return $this->zIndex; - } - public function setZipFilename($zipFilename) - { - $this->zipFilename = $zipFilename; - } - public function getZipFilename() - { - return $this->zipFilename; - } - public function setZipFilesize($zipFilesize) - { - $this->zipFilesize = $zipFilesize; - } - public function getZipFilesize() - { - return $this->zipFilesize; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CreativeAssetId.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CreativeAssetId.php deleted file mode 100644 index 31168cfa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CreativeAssetId.php +++ /dev/null @@ -1,39 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CreativeAssetMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CreativeAssetMetadata.php deleted file mode 100644 index b3818416..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CreativeAssetMetadata.php +++ /dev/null @@ -1,106 +0,0 @@ -assetIdentifier = $assetIdentifier; - } - /** - * @return Google_Service_Dfareporting_CreativeAssetId - */ - public function getAssetIdentifier() - { - return $this->assetIdentifier; - } - /** - * @param Google_Service_Dfareporting_ClickTag - */ - public function setClickTags($clickTags) - { - $this->clickTags = $clickTags; - } - /** - * @return Google_Service_Dfareporting_ClickTag - */ - public function getClickTags() - { - return $this->clickTags; - } - public function setDetectedFeatures($detectedFeatures) - { - $this->detectedFeatures = $detectedFeatures; - } - public function getDetectedFeatures() - { - return $this->detectedFeatures; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Dfareporting_DimensionValue - */ - public function setIdDimensionValue(Google_Service_Dfareporting_DimensionValue $idDimensionValue) - { - $this->idDimensionValue = $idDimensionValue; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getIdDimensionValue() - { - return $this->idDimensionValue; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setWarnedValidationRules($warnedValidationRules) - { - $this->warnedValidationRules = $warnedValidationRules; - } - public function getWarnedValidationRules() - { - return $this->warnedValidationRules; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CreativeAssetSelection.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CreativeAssetSelection.php deleted file mode 100644 index 809840f6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CreativeAssetSelection.php +++ /dev/null @@ -1,47 +0,0 @@ -defaultAssetId = $defaultAssetId; - } - public function getDefaultAssetId() - { - return $this->defaultAssetId; - } - /** - * @param Google_Service_Dfareporting_Rule - */ - public function setRules($rules) - { - $this->rules = $rules; - } - /** - * @return Google_Service_Dfareporting_Rule - */ - public function getRules() - { - return $this->rules; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CreativeAssignment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CreativeAssignment.php deleted file mode 100644 index e363e94b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CreativeAssignment.php +++ /dev/null @@ -1,174 +0,0 @@ -active = $active; - } - public function getActive() - { - return $this->active; - } - public function setApplyEventTags($applyEventTags) - { - $this->applyEventTags = $applyEventTags; - } - public function getApplyEventTags() - { - return $this->applyEventTags; - } - /** - * @param Google_Service_Dfareporting_ClickThroughUrl - */ - public function setClickThroughUrl(Google_Service_Dfareporting_ClickThroughUrl $clickThroughUrl) - { - $this->clickThroughUrl = $clickThroughUrl; - } - /** - * @return Google_Service_Dfareporting_ClickThroughUrl - */ - public function getClickThroughUrl() - { - return $this->clickThroughUrl; - } - /** - * @param Google_Service_Dfareporting_CompanionClickThroughOverride - */ - public function setCompanionCreativeOverrides($companionCreativeOverrides) - { - $this->companionCreativeOverrides = $companionCreativeOverrides; - } - /** - * @return Google_Service_Dfareporting_CompanionClickThroughOverride - */ - public function getCompanionCreativeOverrides() - { - return $this->companionCreativeOverrides; - } - /** - * @param Google_Service_Dfareporting_CreativeGroupAssignment - */ - public function setCreativeGroupAssignments($creativeGroupAssignments) - { - $this->creativeGroupAssignments = $creativeGroupAssignments; - } - /** - * @return Google_Service_Dfareporting_CreativeGroupAssignment - */ - public function getCreativeGroupAssignments() - { - return $this->creativeGroupAssignments; - } - public function setCreativeId($creativeId) - { - $this->creativeId = $creativeId; - } - public function getCreativeId() - { - return $this->creativeId; - } - /** - * @param Google_Service_Dfareporting_DimensionValue - */ - public function setCreativeIdDimensionValue(Google_Service_Dfareporting_DimensionValue $creativeIdDimensionValue) - { - $this->creativeIdDimensionValue = $creativeIdDimensionValue; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getCreativeIdDimensionValue() - { - return $this->creativeIdDimensionValue; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - /** - * @param Google_Service_Dfareporting_RichMediaExitOverride - */ - public function setRichMediaExitOverrides($richMediaExitOverrides) - { - $this->richMediaExitOverrides = $richMediaExitOverrides; - } - /** - * @return Google_Service_Dfareporting_RichMediaExitOverride - */ - public function getRichMediaExitOverrides() - { - return $this->richMediaExitOverrides; - } - public function setSequence($sequence) - { - $this->sequence = $sequence; - } - public function getSequence() - { - return $this->sequence; - } - public function setSslCompliant($sslCompliant) - { - $this->sslCompliant = $sslCompliant; - } - public function getSslCompliant() - { - return $this->sslCompliant; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } - public function setWeight($weight) - { - $this->weight = $weight; - } - public function getWeight() - { - return $this->weight; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CreativeClickThroughUrl.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CreativeClickThroughUrl.php deleted file mode 100644 index 1d04a428..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CreativeClickThroughUrl.php +++ /dev/null @@ -1,48 +0,0 @@ -computedClickThroughUrl = $computedClickThroughUrl; - } - public function getComputedClickThroughUrl() - { - return $this->computedClickThroughUrl; - } - public function setCustomClickThroughUrl($customClickThroughUrl) - { - $this->customClickThroughUrl = $customClickThroughUrl; - } - public function getCustomClickThroughUrl() - { - return $this->customClickThroughUrl; - } - public function setLandingPageId($landingPageId) - { - $this->landingPageId = $landingPageId; - } - public function getLandingPageId() - { - return $this->landingPageId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CreativeCustomEvent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CreativeCustomEvent.php deleted file mode 100644 index ecaa4f5f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CreativeCustomEvent.php +++ /dev/null @@ -1,125 +0,0 @@ -advertiserCustomEventId = $advertiserCustomEventId; - } - public function getAdvertiserCustomEventId() - { - return $this->advertiserCustomEventId; - } - public function setAdvertiserCustomEventName($advertiserCustomEventName) - { - $this->advertiserCustomEventName = $advertiserCustomEventName; - } - public function getAdvertiserCustomEventName() - { - return $this->advertiserCustomEventName; - } - public function setAdvertiserCustomEventType($advertiserCustomEventType) - { - $this->advertiserCustomEventType = $advertiserCustomEventType; - } - public function getAdvertiserCustomEventType() - { - return $this->advertiserCustomEventType; - } - public function setArtworkLabel($artworkLabel) - { - $this->artworkLabel = $artworkLabel; - } - public function getArtworkLabel() - { - return $this->artworkLabel; - } - public function setArtworkType($artworkType) - { - $this->artworkType = $artworkType; - } - public function getArtworkType() - { - return $this->artworkType; - } - /** - * @param Google_Service_Dfareporting_CreativeClickThroughUrl - */ - public function setExitClickThroughUrl(Google_Service_Dfareporting_CreativeClickThroughUrl $exitClickThroughUrl) - { - $this->exitClickThroughUrl = $exitClickThroughUrl; - } - /** - * @return Google_Service_Dfareporting_CreativeClickThroughUrl - */ - public function getExitClickThroughUrl() - { - return $this->exitClickThroughUrl; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Dfareporting_PopupWindowProperties - */ - public function setPopupWindowProperties(Google_Service_Dfareporting_PopupWindowProperties $popupWindowProperties) - { - $this->popupWindowProperties = $popupWindowProperties; - } - /** - * @return Google_Service_Dfareporting_PopupWindowProperties - */ - public function getPopupWindowProperties() - { - return $this->popupWindowProperties; - } - public function setTargetType($targetType) - { - $this->targetType = $targetType; - } - public function getTargetType() - { - return $this->targetType; - } - public function setVideoReportingId($videoReportingId) - { - $this->videoReportingId = $videoReportingId; - } - public function getVideoReportingId() - { - return $this->videoReportingId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CreativeField.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CreativeField.php deleted file mode 100644 index 6a758c42..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CreativeField.php +++ /dev/null @@ -1,91 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setAdvertiserId($advertiserId) - { - $this->advertiserId = $advertiserId; - } - public function getAdvertiserId() - { - return $this->advertiserId; - } - /** - * @param Google_Service_Dfareporting_DimensionValue - */ - public function setAdvertiserIdDimensionValue(Google_Service_Dfareporting_DimensionValue $advertiserIdDimensionValue) - { - $this->advertiserIdDimensionValue = $advertiserIdDimensionValue; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getAdvertiserIdDimensionValue() - { - return $this->advertiserIdDimensionValue; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setSubaccountId($subaccountId) - { - $this->subaccountId = $subaccountId; - } - public function getSubaccountId() - { - return $this->subaccountId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CreativeFieldAssignment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CreativeFieldAssignment.php deleted file mode 100644 index d1a18c9f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CreativeFieldAssignment.php +++ /dev/null @@ -1,39 +0,0 @@ -creativeFieldId = $creativeFieldId; - } - public function getCreativeFieldId() - { - return $this->creativeFieldId; - } - public function setCreativeFieldValueId($creativeFieldValueId) - { - $this->creativeFieldValueId = $creativeFieldValueId; - } - public function getCreativeFieldValueId() - { - return $this->creativeFieldValueId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CreativeFieldValue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CreativeFieldValue.php deleted file mode 100644 index 10ea0348..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CreativeFieldValue.php +++ /dev/null @@ -1,48 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CreativeFieldValuesListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CreativeFieldValuesListResponse.php deleted file mode 100644 index 66c934b0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CreativeFieldValuesListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -creativeFieldValues = $creativeFieldValues; - } - /** - * @return Google_Service_Dfareporting_CreativeFieldValue - */ - public function getCreativeFieldValues() - { - return $this->creativeFieldValues; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CreativeFieldsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CreativeFieldsListResponse.php deleted file mode 100644 index 93cc81a0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CreativeFieldsListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -creativeFields = $creativeFields; - } - /** - * @return Google_Service_Dfareporting_CreativeField - */ - public function getCreativeFields() - { - return $this->creativeFields; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CreativeGroup.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CreativeGroup.php deleted file mode 100644 index d835b2a1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CreativeGroup.php +++ /dev/null @@ -1,100 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setAdvertiserId($advertiserId) - { - $this->advertiserId = $advertiserId; - } - public function getAdvertiserId() - { - return $this->advertiserId; - } - /** - * @param Google_Service_Dfareporting_DimensionValue - */ - public function setAdvertiserIdDimensionValue(Google_Service_Dfareporting_DimensionValue $advertiserIdDimensionValue) - { - $this->advertiserIdDimensionValue = $advertiserIdDimensionValue; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getAdvertiserIdDimensionValue() - { - return $this->advertiserIdDimensionValue; - } - public function setGroupNumber($groupNumber) - { - $this->groupNumber = $groupNumber; - } - public function getGroupNumber() - { - return $this->groupNumber; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setSubaccountId($subaccountId) - { - $this->subaccountId = $subaccountId; - } - public function getSubaccountId() - { - return $this->subaccountId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CreativeGroupAssignment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CreativeGroupAssignment.php deleted file mode 100644 index 5153332a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CreativeGroupAssignment.php +++ /dev/null @@ -1,39 +0,0 @@ -creativeGroupId = $creativeGroupId; - } - public function getCreativeGroupId() - { - return $this->creativeGroupId; - } - public function setCreativeGroupNumber($creativeGroupNumber) - { - $this->creativeGroupNumber = $creativeGroupNumber; - } - public function getCreativeGroupNumber() - { - return $this->creativeGroupNumber; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CreativeGroupsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CreativeGroupsListResponse.php deleted file mode 100644 index 0b818c14..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CreativeGroupsListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -creativeGroups = $creativeGroups; - } - /** - * @return Google_Service_Dfareporting_CreativeGroup - */ - public function getCreativeGroups() - { - return $this->creativeGroups; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CreativeOptimizationConfiguration.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CreativeOptimizationConfiguration.php deleted file mode 100644 index 3ba5f394..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CreativeOptimizationConfiguration.php +++ /dev/null @@ -1,65 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Dfareporting_OptimizationActivity - */ - public function setOptimizationActivitys($optimizationActivitys) - { - $this->optimizationActivitys = $optimizationActivitys; - } - /** - * @return Google_Service_Dfareporting_OptimizationActivity - */ - public function getOptimizationActivitys() - { - return $this->optimizationActivitys; - } - public function setOptimizationModel($optimizationModel) - { - $this->optimizationModel = $optimizationModel; - } - public function getOptimizationModel() - { - return $this->optimizationModel; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CreativeRotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CreativeRotation.php deleted file mode 100644 index ed9a907b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CreativeRotation.php +++ /dev/null @@ -1,65 +0,0 @@ -creativeAssignments = $creativeAssignments; - } - /** - * @return Google_Service_Dfareporting_CreativeAssignment - */ - public function getCreativeAssignments() - { - return $this->creativeAssignments; - } - public function setCreativeOptimizationConfigurationId($creativeOptimizationConfigurationId) - { - $this->creativeOptimizationConfigurationId = $creativeOptimizationConfigurationId; - } - public function getCreativeOptimizationConfigurationId() - { - return $this->creativeOptimizationConfigurationId; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setWeightCalculationStrategy($weightCalculationStrategy) - { - $this->weightCalculationStrategy = $weightCalculationStrategy; - } - public function getWeightCalculationStrategy() - { - return $this->weightCalculationStrategy; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CreativesListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CreativesListResponse.php deleted file mode 100644 index c5e4b24b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CreativesListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -creatives = $creatives; - } - /** - * @return Google_Service_Dfareporting_Creative - */ - public function getCreatives() - { - return $this->creatives; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CrossDimensionReachReportCompatibleFields.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CrossDimensionReachReportCompatibleFields.php deleted file mode 100644 index 36c6066a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CrossDimensionReachReportCompatibleFields.php +++ /dev/null @@ -1,95 +0,0 @@ -breakdown = $breakdown; - } - /** - * @return Google_Service_Dfareporting_Dimension - */ - public function getBreakdown() - { - return $this->breakdown; - } - /** - * @param Google_Service_Dfareporting_Dimension - */ - public function setDimensionFilters($dimensionFilters) - { - $this->dimensionFilters = $dimensionFilters; - } - /** - * @return Google_Service_Dfareporting_Dimension - */ - public function getDimensionFilters() - { - return $this->dimensionFilters; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Dfareporting_Metric - */ - public function setMetrics($metrics) - { - $this->metrics = $metrics; - } - /** - * @return Google_Service_Dfareporting_Metric - */ - public function getMetrics() - { - return $this->metrics; - } - /** - * @param Google_Service_Dfareporting_Metric - */ - public function setOverlapMetrics($overlapMetrics) - { - $this->overlapMetrics = $overlapMetrics; - } - /** - * @return Google_Service_Dfareporting_Metric - */ - public function getOverlapMetrics() - { - return $this->overlapMetrics; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CustomEvent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CustomEvent.php deleted file mode 100644 index 1fd90785..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CustomEvent.php +++ /dev/null @@ -1,115 +0,0 @@ -annotateClickEvent = $annotateClickEvent; - } - /** - * @return Google_Service_Dfareporting_CustomEventClickAnnotation - */ - public function getAnnotateClickEvent() - { - return $this->annotateClickEvent; - } - /** - * @param Google_Service_Dfareporting_CustomVariable - */ - public function setCustomVariables($customVariables) - { - $this->customVariables = $customVariables; - } - /** - * @return Google_Service_Dfareporting_CustomVariable - */ - public function getCustomVariables() - { - return $this->customVariables; - } - public function setEventType($eventType) - { - $this->eventType = $eventType; - } - public function getEventType() - { - return $this->eventType; - } - public function setFloodlightConfigurationId($floodlightConfigurationId) - { - $this->floodlightConfigurationId = $floodlightConfigurationId; - } - public function getFloodlightConfigurationId() - { - return $this->floodlightConfigurationId; - } - /** - * @param Google_Service_Dfareporting_CustomEventInsert - */ - public function setInsertEvent(Google_Service_Dfareporting_CustomEventInsert $insertEvent) - { - $this->insertEvent = $insertEvent; - } - /** - * @return Google_Service_Dfareporting_CustomEventInsert - */ - public function getInsertEvent() - { - return $this->insertEvent; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setOrdinal($ordinal) - { - $this->ordinal = $ordinal; - } - public function getOrdinal() - { - return $this->ordinal; - } - public function setTimestampMicros($timestampMicros) - { - $this->timestampMicros = $timestampMicros; - } - public function getTimestampMicros() - { - return $this->timestampMicros; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CustomEventClickAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CustomEventClickAnnotation.php deleted file mode 100644 index 1dbc130b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CustomEventClickAnnotation.php +++ /dev/null @@ -1,39 +0,0 @@ -gclid = $gclid; - } - public function getGclid() - { - return $this->gclid; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CustomEventError.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CustomEventError.php deleted file mode 100644 index 8f93ab45..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CustomEventError.php +++ /dev/null @@ -1,48 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CustomEventInsert.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CustomEventInsert.php deleted file mode 100644 index c63f901c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CustomEventInsert.php +++ /dev/null @@ -1,89 +0,0 @@ -cmDimensions = $cmDimensions; - } - /** - * @return Google_Service_Dfareporting_CampaignManagerIds - */ - public function getCmDimensions() - { - return $this->cmDimensions; - } - /** - * @param Google_Service_Dfareporting_DV3Ids - */ - public function setDv3Dimensions(Google_Service_Dfareporting_DV3Ids $dv3Dimensions) - { - $this->dv3Dimensions = $dv3Dimensions; - } - /** - * @return Google_Service_Dfareporting_DV3Ids - */ - public function getDv3Dimensions() - { - return $this->dv3Dimensions; - } - public function setInsertEventType($insertEventType) - { - $this->insertEventType = $insertEventType; - } - public function getInsertEventType() - { - return $this->insertEventType; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setMatchId($matchId) - { - $this->matchId = $matchId; - } - public function getMatchId() - { - return $this->matchId; - } - public function setMobileDeviceId($mobileDeviceId) - { - $this->mobileDeviceId = $mobileDeviceId; - } - public function getMobileDeviceId() - { - return $this->mobileDeviceId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CustomEventStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CustomEventStatus.php deleted file mode 100644 index 3b43896d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CustomEventStatus.php +++ /dev/null @@ -1,63 +0,0 @@ -customEvent = $customEvent; - } - /** - * @return Google_Service_Dfareporting_CustomEvent - */ - public function getCustomEvent() - { - return $this->customEvent; - } - /** - * @param Google_Service_Dfareporting_CustomEventError - */ - public function setErrors($errors) - { - $this->errors = $errors; - } - /** - * @return Google_Service_Dfareporting_CustomEventError - */ - public function getErrors() - { - return $this->errors; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CustomEventsBatchInsertRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CustomEventsBatchInsertRequest.php deleted file mode 100644 index 14f89e9d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CustomEventsBatchInsertRequest.php +++ /dev/null @@ -1,47 +0,0 @@ -customEvents = $customEvents; - } - /** - * @return Google_Service_Dfareporting_CustomEvent - */ - public function getCustomEvents() - { - return $this->customEvents; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CustomEventsBatchInsertResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CustomEventsBatchInsertResponse.php deleted file mode 100644 index 7bcb08de..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CustomEventsBatchInsertResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -hasFailures = $hasFailures; - } - public function getHasFailures() - { - return $this->hasFailures; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Dfareporting_CustomEventStatus - */ - public function setStatus($status) - { - $this->status = $status; - } - /** - * @return Google_Service_Dfareporting_CustomEventStatus - */ - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CustomFloodlightVariable.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CustomFloodlightVariable.php deleted file mode 100644 index 7822a764..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CustomFloodlightVariable.php +++ /dev/null @@ -1,48 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CustomRichMediaEvents.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CustomRichMediaEvents.php deleted file mode 100644 index fdbf3600..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CustomRichMediaEvents.php +++ /dev/null @@ -1,47 +0,0 @@ -filteredEventIds = $filteredEventIds; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getFilteredEventIds() - { - return $this->filteredEventIds; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CustomVariable.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CustomVariable.php deleted file mode 100644 index d80a514a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CustomVariable.php +++ /dev/null @@ -1,48 +0,0 @@ -index = $index; - } - public function getIndex() - { - return $this->index; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CustomViewabilityMetric.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CustomViewabilityMetric.php deleted file mode 100644 index 66adfb09..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CustomViewabilityMetric.php +++ /dev/null @@ -1,55 +0,0 @@ -configuration = $configuration; - } - /** - * @return Google_Service_Dfareporting_CustomViewabilityMetricConfiguration - */ - public function getConfiguration() - { - return $this->configuration; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CustomViewabilityMetricConfiguration.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CustomViewabilityMetricConfiguration.php deleted file mode 100644 index 58e448ac..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/CustomViewabilityMetricConfiguration.php +++ /dev/null @@ -1,57 +0,0 @@ -audible = $audible; - } - public function getAudible() - { - return $this->audible; - } - public function setTimeMillis($timeMillis) - { - $this->timeMillis = $timeMillis; - } - public function getTimeMillis() - { - return $this->timeMillis; - } - public function setTimePercent($timePercent) - { - $this->timePercent = $timePercent; - } - public function getTimePercent() - { - return $this->timePercent; - } - public function setViewabilityPercent($viewabilityPercent) - { - $this->viewabilityPercent = $viewabilityPercent; - } - public function getViewabilityPercent() - { - return $this->viewabilityPercent; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/DV3Ids.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/DV3Ids.php deleted file mode 100644 index 7e267436..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/DV3Ids.php +++ /dev/null @@ -1,75 +0,0 @@ -dvCampaignId = $dvCampaignId; - } - public function getDvCampaignId() - { - return $this->dvCampaignId; - } - public function setDvCreativeId($dvCreativeId) - { - $this->dvCreativeId = $dvCreativeId; - } - public function getDvCreativeId() - { - return $this->dvCreativeId; - } - public function setDvInsertionOrderId($dvInsertionOrderId) - { - $this->dvInsertionOrderId = $dvInsertionOrderId; - } - public function getDvInsertionOrderId() - { - return $this->dvInsertionOrderId; - } - public function setDvLineItemId($dvLineItemId) - { - $this->dvLineItemId = $dvLineItemId; - } - public function getDvLineItemId() - { - return $this->dvLineItemId; - } - public function setDvSiteId($dvSiteId) - { - $this->dvSiteId = $dvSiteId; - } - public function getDvSiteId() - { - return $this->dvSiteId; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/DateRange.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/DateRange.php deleted file mode 100644 index e0c2fd01..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/DateRange.php +++ /dev/null @@ -1,57 +0,0 @@ -endDate = $endDate; - } - public function getEndDate() - { - return $this->endDate; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setRelativeDateRange($relativeDateRange) - { - $this->relativeDateRange = $relativeDateRange; - } - public function getRelativeDateRange() - { - return $this->relativeDateRange; - } - public function setStartDate($startDate) - { - $this->startDate = $startDate; - } - public function getStartDate() - { - return $this->startDate; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/DayPartTargeting.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/DayPartTargeting.php deleted file mode 100644 index 426515ce..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/DayPartTargeting.php +++ /dev/null @@ -1,49 +0,0 @@ -daysOfWeek = $daysOfWeek; - } - public function getDaysOfWeek() - { - return $this->daysOfWeek; - } - public function setHoursOfDay($hoursOfDay) - { - $this->hoursOfDay = $hoursOfDay; - } - public function getHoursOfDay() - { - return $this->hoursOfDay; - } - public function setUserLocalTime($userLocalTime) - { - $this->userLocalTime = $userLocalTime; - } - public function getUserLocalTime() - { - return $this->userLocalTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/DeepLink.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/DeepLink.php deleted file mode 100644 index 5c406ab0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/DeepLink.php +++ /dev/null @@ -1,74 +0,0 @@ -appUrl = $appUrl; - } - public function getAppUrl() - { - return $this->appUrl; - } - public function setFallbackUrl($fallbackUrl) - { - $this->fallbackUrl = $fallbackUrl; - } - public function getFallbackUrl() - { - return $this->fallbackUrl; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Dfareporting_MobileApp - */ - public function setMobileApp(Google_Service_Dfareporting_MobileApp $mobileApp) - { - $this->mobileApp = $mobileApp; - } - /** - * @return Google_Service_Dfareporting_MobileApp - */ - public function getMobileApp() - { - return $this->mobileApp; - } - public function setRemarketingListIds($remarketingListIds) - { - $this->remarketingListIds = $remarketingListIds; - } - public function getRemarketingListIds() - { - return $this->remarketingListIds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/DefaultClickThroughEventTagProperties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/DefaultClickThroughEventTagProperties.php deleted file mode 100644 index 2815a4c9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/DefaultClickThroughEventTagProperties.php +++ /dev/null @@ -1,39 +0,0 @@ -defaultClickThroughEventTagId = $defaultClickThroughEventTagId; - } - public function getDefaultClickThroughEventTagId() - { - return $this->defaultClickThroughEventTagId; - } - public function setOverrideInheritedEventTag($overrideInheritedEventTag) - { - $this->overrideInheritedEventTag = $overrideInheritedEventTag; - } - public function getOverrideInheritedEventTag() - { - return $this->overrideInheritedEventTag; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/DeliverySchedule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/DeliverySchedule.php deleted file mode 100644 index 6693c38c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/DeliverySchedule.php +++ /dev/null @@ -1,64 +0,0 @@ -frequencyCap = $frequencyCap; - } - /** - * @return Google_Service_Dfareporting_FrequencyCap - */ - public function getFrequencyCap() - { - return $this->frequencyCap; - } - public function setHardCutoff($hardCutoff) - { - $this->hardCutoff = $hardCutoff; - } - public function getHardCutoff() - { - return $this->hardCutoff; - } - public function setImpressionRatio($impressionRatio) - { - $this->impressionRatio = $impressionRatio; - } - public function getImpressionRatio() - { - return $this->impressionRatio; - } - public function setPriority($priority) - { - $this->priority = $priority; - } - public function getPriority() - { - return $this->priority; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/DfareportingFile.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/DfareportingFile.php deleted file mode 100644 index 002a5986..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/DfareportingFile.php +++ /dev/null @@ -1,125 +0,0 @@ -dateRange = $dateRange; - } - /** - * @return Google_Service_Dfareporting_DateRange - */ - public function getDateRange() - { - return $this->dateRange; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setFileName($fileName) - { - $this->fileName = $fileName; - } - public function getFileName() - { - return $this->fileName; - } - public function setFormat($format) - { - $this->format = $format; - } - public function getFormat() - { - return $this->format; - } - 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 setLastModifiedTime($lastModifiedTime) - { - $this->lastModifiedTime = $lastModifiedTime; - } - public function getLastModifiedTime() - { - return $this->lastModifiedTime; - } - public function setReportId($reportId) - { - $this->reportId = $reportId; - } - public function getReportId() - { - return $this->reportId; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - /** - * @param Google_Service_Dfareporting_DfareportingFileUrls - */ - public function setUrls(Google_Service_Dfareporting_DfareportingFileUrls $urls) - { - $this->urls = $urls; - } - /** - * @return Google_Service_Dfareporting_DfareportingFileUrls - */ - public function getUrls() - { - return $this->urls; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/DfareportingFileUrls.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/DfareportingFileUrls.php deleted file mode 100644 index baa197fb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/DfareportingFileUrls.php +++ /dev/null @@ -1,39 +0,0 @@ -apiUrl = $apiUrl; - } - public function getApiUrl() - { - return $this->apiUrl; - } - public function setBrowserUrl($browserUrl) - { - $this->browserUrl = $browserUrl; - } - public function getBrowserUrl() - { - return $this->browserUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/DfpSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/DfpSettings.php deleted file mode 100644 index 0ac5ce69..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/DfpSettings.php +++ /dev/null @@ -1,66 +0,0 @@ -dfpNetworkCode = $dfpNetworkCode; - } - public function getDfpNetworkCode() - { - return $this->dfpNetworkCode; - } - public function setDfpNetworkName($dfpNetworkName) - { - $this->dfpNetworkName = $dfpNetworkName; - } - public function getDfpNetworkName() - { - return $this->dfpNetworkName; - } - public function setProgrammaticPlacementAccepted($programmaticPlacementAccepted) - { - $this->programmaticPlacementAccepted = $programmaticPlacementAccepted; - } - public function getProgrammaticPlacementAccepted() - { - return $this->programmaticPlacementAccepted; - } - public function setPubPaidPlacementAccepted($pubPaidPlacementAccepted) - { - $this->pubPaidPlacementAccepted = $pubPaidPlacementAccepted; - } - public function getPubPaidPlacementAccepted() - { - return $this->pubPaidPlacementAccepted; - } - public function setPublisherPortalOnly($publisherPortalOnly) - { - $this->publisherPortalOnly = $publisherPortalOnly; - } - public function getPublisherPortalOnly() - { - return $this->publisherPortalOnly; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Dimension.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Dimension.php deleted file mode 100644 index 8a30d019..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Dimension.php +++ /dev/null @@ -1,39 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/DimensionFilter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/DimensionFilter.php deleted file mode 100644 index 4e48ab5b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/DimensionFilter.php +++ /dev/null @@ -1,48 +0,0 @@ -dimensionName = $dimensionName; - } - public function getDimensionName() - { - return $this->dimensionName; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/DimensionValue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/DimensionValue.php deleted file mode 100644 index ea95757f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/DimensionValue.php +++ /dev/null @@ -1,75 +0,0 @@ -dimensionName = $dimensionName; - } - public function getDimensionName() - { - return $this->dimensionName; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - 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 setMatchType($matchType) - { - $this->matchType = $matchType; - } - public function getMatchType() - { - return $this->matchType; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/DimensionValueList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/DimensionValueList.php deleted file mode 100644 index 1b71eb05..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/DimensionValueList.php +++ /dev/null @@ -1,65 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_Dfareporting_DimensionValue - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getItems() - { - return $this->items; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/DimensionValueRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/DimensionValueRequest.php deleted file mode 100644 index 5788e57f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/DimensionValueRequest.php +++ /dev/null @@ -1,74 +0,0 @@ -dimensionName = $dimensionName; - } - public function getDimensionName() - { - return $this->dimensionName; - } - public function setEndDate($endDate) - { - $this->endDate = $endDate; - } - public function getEndDate() - { - return $this->endDate; - } - /** - * @param Google_Service_Dfareporting_DimensionFilter - */ - public function setFilters($filters) - { - $this->filters = $filters; - } - /** - * @return Google_Service_Dfareporting_DimensionFilter - */ - public function getFilters() - { - return $this->filters; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setStartDate($startDate) - { - $this->startDate = $startDate; - } - public function getStartDate() - { - return $this->startDate; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/DirectorySite.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/DirectorySite.php deleted file mode 100644 index 64bbcbac..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/DirectorySite.php +++ /dev/null @@ -1,117 +0,0 @@ -active = $active; - } - public function getActive() - { - return $this->active; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Dfareporting_DimensionValue - */ - public function setIdDimensionValue(Google_Service_Dfareporting_DimensionValue $idDimensionValue) - { - $this->idDimensionValue = $idDimensionValue; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getIdDimensionValue() - { - return $this->idDimensionValue; - } - public function setInpageTagFormats($inpageTagFormats) - { - $this->inpageTagFormats = $inpageTagFormats; - } - public function getInpageTagFormats() - { - return $this->inpageTagFormats; - } - public function setInterstitialTagFormats($interstitialTagFormats) - { - $this->interstitialTagFormats = $interstitialTagFormats; - } - public function getInterstitialTagFormats() - { - return $this->interstitialTagFormats; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Dfareporting_DirectorySiteSettings - */ - public function setSettings(Google_Service_Dfareporting_DirectorySiteSettings $settings) - { - $this->settings = $settings; - } - /** - * @return Google_Service_Dfareporting_DirectorySiteSettings - */ - public function getSettings() - { - return $this->settings; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/DirectorySiteSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/DirectorySiteSettings.php deleted file mode 100644 index be20bcee..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/DirectorySiteSettings.php +++ /dev/null @@ -1,64 +0,0 @@ -activeViewOptOut = $activeViewOptOut; - } - public function getActiveViewOptOut() - { - return $this->activeViewOptOut; - } - /** - * @param Google_Service_Dfareporting_DfpSettings - */ - public function setDfpSettings(Google_Service_Dfareporting_DfpSettings $dfpSettings) - { - $this->dfpSettings = $dfpSettings; - } - /** - * @return Google_Service_Dfareporting_DfpSettings - */ - public function getDfpSettings() - { - return $this->dfpSettings; - } - public function setInstreamVideoPlacementAccepted($instreamVideoPlacementAccepted) - { - $this->instreamVideoPlacementAccepted = $instreamVideoPlacementAccepted; - } - public function getInstreamVideoPlacementAccepted() - { - return $this->instreamVideoPlacementAccepted; - } - public function setInterstitialPlacementAccepted($interstitialPlacementAccepted) - { - $this->interstitialPlacementAccepted = $interstitialPlacementAccepted; - } - public function getInterstitialPlacementAccepted() - { - return $this->interstitialPlacementAccepted; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/DirectorySitesListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/DirectorySitesListResponse.php deleted file mode 100644 index 5e1086ce..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/DirectorySitesListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -directorySites = $directorySites; - } - /** - * @return Google_Service_Dfareporting_DirectorySite - */ - public function getDirectorySites() - { - return $this->directorySites; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/DynamicTargetingKey.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/DynamicTargetingKey.php deleted file mode 100644 index ce18dadc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/DynamicTargetingKey.php +++ /dev/null @@ -1,57 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setObjectId($objectId) - { - $this->objectId = $objectId; - } - public function getObjectId() - { - return $this->objectId; - } - public function setObjectType($objectType) - { - $this->objectType = $objectType; - } - public function getObjectType() - { - return $this->objectType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/DynamicTargetingKeysListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/DynamicTargetingKeysListResponse.php deleted file mode 100644 index 04045483..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/DynamicTargetingKeysListResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -dynamicTargetingKeys = $dynamicTargetingKeys; - } - /** - * @return Google_Service_Dfareporting_DynamicTargetingKey - */ - public function getDynamicTargetingKeys() - { - return $this->dynamicTargetingKeys; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/EncryptionInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/EncryptionInfo.php deleted file mode 100644 index da94d7a4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/EncryptionInfo.php +++ /dev/null @@ -1,57 +0,0 @@ -encryptionEntityId = $encryptionEntityId; - } - public function getEncryptionEntityId() - { - return $this->encryptionEntityId; - } - public function setEncryptionEntityType($encryptionEntityType) - { - $this->encryptionEntityType = $encryptionEntityType; - } - public function getEncryptionEntityType() - { - return $this->encryptionEntityType; - } - public function setEncryptionSource($encryptionSource) - { - $this->encryptionSource = $encryptionSource; - } - public function getEncryptionSource() - { - return $this->encryptionSource; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/EventTag.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/EventTag.php deleted file mode 100644 index b6173873..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/EventTag.php +++ /dev/null @@ -1,198 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setAdvertiserId($advertiserId) - { - $this->advertiserId = $advertiserId; - } - public function getAdvertiserId() - { - return $this->advertiserId; - } - /** - * @param Google_Service_Dfareporting_DimensionValue - */ - public function setAdvertiserIdDimensionValue(Google_Service_Dfareporting_DimensionValue $advertiserIdDimensionValue) - { - $this->advertiserIdDimensionValue = $advertiserIdDimensionValue; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getAdvertiserIdDimensionValue() - { - return $this->advertiserIdDimensionValue; - } - public function setCampaignId($campaignId) - { - $this->campaignId = $campaignId; - } - public function getCampaignId() - { - return $this->campaignId; - } - /** - * @param Google_Service_Dfareporting_DimensionValue - */ - public function setCampaignIdDimensionValue(Google_Service_Dfareporting_DimensionValue $campaignIdDimensionValue) - { - $this->campaignIdDimensionValue = $campaignIdDimensionValue; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getCampaignIdDimensionValue() - { - return $this->campaignIdDimensionValue; - } - public function setEnabledByDefault($enabledByDefault) - { - $this->enabledByDefault = $enabledByDefault; - } - public function getEnabledByDefault() - { - return $this->enabledByDefault; - } - public function setExcludeFromAdxRequests($excludeFromAdxRequests) - { - $this->excludeFromAdxRequests = $excludeFromAdxRequests; - } - public function getExcludeFromAdxRequests() - { - return $this->excludeFromAdxRequests; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setSiteFilterType($siteFilterType) - { - $this->siteFilterType = $siteFilterType; - } - public function getSiteFilterType() - { - return $this->siteFilterType; - } - public function setSiteIds($siteIds) - { - $this->siteIds = $siteIds; - } - public function getSiteIds() - { - return $this->siteIds; - } - public function setSslCompliant($sslCompliant) - { - $this->sslCompliant = $sslCompliant; - } - public function getSslCompliant() - { - return $this->sslCompliant; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setSubaccountId($subaccountId) - { - $this->subaccountId = $subaccountId; - } - public function getSubaccountId() - { - return $this->subaccountId; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } - public function setUrlEscapeLevels($urlEscapeLevels) - { - $this->urlEscapeLevels = $urlEscapeLevels; - } - public function getUrlEscapeLevels() - { - return $this->urlEscapeLevels; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/EventTagOverride.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/EventTagOverride.php deleted file mode 100644 index 1ca8487c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/EventTagOverride.php +++ /dev/null @@ -1,39 +0,0 @@ -enabled = $enabled; - } - public function getEnabled() - { - return $this->enabled; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/EventTagsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/EventTagsListResponse.php deleted file mode 100644 index a7e150fa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/EventTagsListResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -eventTags = $eventTags; - } - /** - * @return Google_Service_Dfareporting_EventTag - */ - public function getEventTags() - { - return $this->eventTags; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/FileList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/FileList.php deleted file mode 100644 index 016376c9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/FileList.php +++ /dev/null @@ -1,65 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_Dfareporting_DfareportingFile - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Dfareporting_DfareportingFile - */ - public function getItems() - { - return $this->items; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Flight.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Flight.php deleted file mode 100644 index 78cec3d8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Flight.php +++ /dev/null @@ -1,57 +0,0 @@ -endDate = $endDate; - } - public function getEndDate() - { - return $this->endDate; - } - public function setRateOrCost($rateOrCost) - { - $this->rateOrCost = $rateOrCost; - } - public function getRateOrCost() - { - return $this->rateOrCost; - } - public function setStartDate($startDate) - { - $this->startDate = $startDate; - } - public function getStartDate() - { - return $this->startDate; - } - public function setUnits($units) - { - $this->units = $units; - } - public function getUnits() - { - return $this->units; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/FloodlightActivitiesGenerateTagResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/FloodlightActivitiesGenerateTagResponse.php deleted file mode 100644 index 59cb3372..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/FloodlightActivitiesGenerateTagResponse.php +++ /dev/null @@ -1,48 +0,0 @@ -floodlightActivityTag = $floodlightActivityTag; - } - public function getFloodlightActivityTag() - { - return $this->floodlightActivityTag; - } - public function setGlobalSiteTagGlobalSnippet($globalSiteTagGlobalSnippet) - { - $this->globalSiteTagGlobalSnippet = $globalSiteTagGlobalSnippet; - } - public function getGlobalSiteTagGlobalSnippet() - { - return $this->globalSiteTagGlobalSnippet; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/FloodlightActivitiesListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/FloodlightActivitiesListResponse.php deleted file mode 100644 index 0a85b5ed..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/FloodlightActivitiesListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -floodlightActivities = $floodlightActivities; - } - /** - * @return Google_Service_Dfareporting_FloodlightActivity - */ - public function getFloodlightActivities() - { - return $this->floodlightActivities; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/FloodlightActivity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/FloodlightActivity.php deleted file mode 100644 index 84df7937..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/FloodlightActivity.php +++ /dev/null @@ -1,309 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setAdvertiserId($advertiserId) - { - $this->advertiserId = $advertiserId; - } - public function getAdvertiserId() - { - return $this->advertiserId; - } - /** - * @param Google_Service_Dfareporting_DimensionValue - */ - public function setAdvertiserIdDimensionValue(Google_Service_Dfareporting_DimensionValue $advertiserIdDimensionValue) - { - $this->advertiserIdDimensionValue = $advertiserIdDimensionValue; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getAdvertiserIdDimensionValue() - { - return $this->advertiserIdDimensionValue; - } - public function setCacheBustingType($cacheBustingType) - { - $this->cacheBustingType = $cacheBustingType; - } - public function getCacheBustingType() - { - return $this->cacheBustingType; - } - public function setCountingMethod($countingMethod) - { - $this->countingMethod = $countingMethod; - } - public function getCountingMethod() - { - return $this->countingMethod; - } - /** - * @param Google_Service_Dfareporting_FloodlightActivityDynamicTag - */ - public function setDefaultTags($defaultTags) - { - $this->defaultTags = $defaultTags; - } - /** - * @return Google_Service_Dfareporting_FloodlightActivityDynamicTag - */ - public function getDefaultTags() - { - return $this->defaultTags; - } - public function setExpectedUrl($expectedUrl) - { - $this->expectedUrl = $expectedUrl; - } - public function getExpectedUrl() - { - return $this->expectedUrl; - } - public function setFloodlightActivityGroupId($floodlightActivityGroupId) - { - $this->floodlightActivityGroupId = $floodlightActivityGroupId; - } - public function getFloodlightActivityGroupId() - { - return $this->floodlightActivityGroupId; - } - public function setFloodlightActivityGroupName($floodlightActivityGroupName) - { - $this->floodlightActivityGroupName = $floodlightActivityGroupName; - } - public function getFloodlightActivityGroupName() - { - return $this->floodlightActivityGroupName; - } - public function setFloodlightActivityGroupTagString($floodlightActivityGroupTagString) - { - $this->floodlightActivityGroupTagString = $floodlightActivityGroupTagString; - } - public function getFloodlightActivityGroupTagString() - { - return $this->floodlightActivityGroupTagString; - } - public function setFloodlightActivityGroupType($floodlightActivityGroupType) - { - $this->floodlightActivityGroupType = $floodlightActivityGroupType; - } - public function getFloodlightActivityGroupType() - { - return $this->floodlightActivityGroupType; - } - public function setFloodlightConfigurationId($floodlightConfigurationId) - { - $this->floodlightConfigurationId = $floodlightConfigurationId; - } - public function getFloodlightConfigurationId() - { - return $this->floodlightConfigurationId; - } - /** - * @param Google_Service_Dfareporting_DimensionValue - */ - public function setFloodlightConfigurationIdDimensionValue(Google_Service_Dfareporting_DimensionValue $floodlightConfigurationIdDimensionValue) - { - $this->floodlightConfigurationIdDimensionValue = $floodlightConfigurationIdDimensionValue; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getFloodlightConfigurationIdDimensionValue() - { - return $this->floodlightConfigurationIdDimensionValue; - } - public function setFloodlightTagType($floodlightTagType) - { - $this->floodlightTagType = $floodlightTagType; - } - public function getFloodlightTagType() - { - return $this->floodlightTagType; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Dfareporting_DimensionValue - */ - public function setIdDimensionValue(Google_Service_Dfareporting_DimensionValue $idDimensionValue) - { - $this->idDimensionValue = $idDimensionValue; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getIdDimensionValue() - { - return $this->idDimensionValue; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNotes($notes) - { - $this->notes = $notes; - } - public function getNotes() - { - return $this->notes; - } - /** - * @param Google_Service_Dfareporting_FloodlightActivityPublisherDynamicTag - */ - public function setPublisherTags($publisherTags) - { - $this->publisherTags = $publisherTags; - } - /** - * @return Google_Service_Dfareporting_FloodlightActivityPublisherDynamicTag - */ - public function getPublisherTags() - { - return $this->publisherTags; - } - public function setSecure($secure) - { - $this->secure = $secure; - } - public function getSecure() - { - return $this->secure; - } - public function setSslCompliant($sslCompliant) - { - $this->sslCompliant = $sslCompliant; - } - public function getSslCompliant() - { - return $this->sslCompliant; - } - public function setSslRequired($sslRequired) - { - $this->sslRequired = $sslRequired; - } - public function getSslRequired() - { - return $this->sslRequired; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setSubaccountId($subaccountId) - { - $this->subaccountId = $subaccountId; - } - public function getSubaccountId() - { - return $this->subaccountId; - } - public function setTagFormat($tagFormat) - { - $this->tagFormat = $tagFormat; - } - public function getTagFormat() - { - return $this->tagFormat; - } - public function setTagString($tagString) - { - $this->tagString = $tagString; - } - public function getTagString() - { - return $this->tagString; - } - public function setUserDefinedVariableTypes($userDefinedVariableTypes) - { - $this->userDefinedVariableTypes = $userDefinedVariableTypes; - } - public function getUserDefinedVariableTypes() - { - return $this->userDefinedVariableTypes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/FloodlightActivityDynamicTag.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/FloodlightActivityDynamicTag.php deleted file mode 100644 index a1007f79..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/FloodlightActivityDynamicTag.php +++ /dev/null @@ -1,48 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setTag($tag) - { - $this->tag = $tag; - } - public function getTag() - { - return $this->tag; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/FloodlightActivityGroup.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/FloodlightActivityGroup.php deleted file mode 100644 index 0cfc1e4e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/FloodlightActivityGroup.php +++ /dev/null @@ -1,150 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setAdvertiserId($advertiserId) - { - $this->advertiserId = $advertiserId; - } - public function getAdvertiserId() - { - return $this->advertiserId; - } - /** - * @param Google_Service_Dfareporting_DimensionValue - */ - public function setAdvertiserIdDimensionValue(Google_Service_Dfareporting_DimensionValue $advertiserIdDimensionValue) - { - $this->advertiserIdDimensionValue = $advertiserIdDimensionValue; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getAdvertiserIdDimensionValue() - { - return $this->advertiserIdDimensionValue; - } - public function setFloodlightConfigurationId($floodlightConfigurationId) - { - $this->floodlightConfigurationId = $floodlightConfigurationId; - } - public function getFloodlightConfigurationId() - { - return $this->floodlightConfigurationId; - } - /** - * @param Google_Service_Dfareporting_DimensionValue - */ - public function setFloodlightConfigurationIdDimensionValue(Google_Service_Dfareporting_DimensionValue $floodlightConfigurationIdDimensionValue) - { - $this->floodlightConfigurationIdDimensionValue = $floodlightConfigurationIdDimensionValue; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getFloodlightConfigurationIdDimensionValue() - { - return $this->floodlightConfigurationIdDimensionValue; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Dfareporting_DimensionValue - */ - public function setIdDimensionValue(Google_Service_Dfareporting_DimensionValue $idDimensionValue) - { - $this->idDimensionValue = $idDimensionValue; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getIdDimensionValue() - { - return $this->idDimensionValue; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setSubaccountId($subaccountId) - { - $this->subaccountId = $subaccountId; - } - public function getSubaccountId() - { - return $this->subaccountId; - } - public function setTagString($tagString) - { - $this->tagString = $tagString; - } - public function getTagString() - { - return $this->tagString; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/FloodlightActivityGroupsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/FloodlightActivityGroupsListResponse.php deleted file mode 100644 index e78e51d1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/FloodlightActivityGroupsListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -floodlightActivityGroups = $floodlightActivityGroups; - } - /** - * @return Google_Service_Dfareporting_FloodlightActivityGroup - */ - public function getFloodlightActivityGroups() - { - return $this->floodlightActivityGroups; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/FloodlightActivityPublisherDynamicTag.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/FloodlightActivityPublisherDynamicTag.php deleted file mode 100644 index 62b56316..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/FloodlightActivityPublisherDynamicTag.php +++ /dev/null @@ -1,89 +0,0 @@ -clickThrough = $clickThrough; - } - public function getClickThrough() - { - return $this->clickThrough; - } - public function setDirectorySiteId($directorySiteId) - { - $this->directorySiteId = $directorySiteId; - } - public function getDirectorySiteId() - { - return $this->directorySiteId; - } - /** - * @param Google_Service_Dfareporting_FloodlightActivityDynamicTag - */ - public function setDynamicTag(Google_Service_Dfareporting_FloodlightActivityDynamicTag $dynamicTag) - { - $this->dynamicTag = $dynamicTag; - } - /** - * @return Google_Service_Dfareporting_FloodlightActivityDynamicTag - */ - public function getDynamicTag() - { - return $this->dynamicTag; - } - public function setSiteId($siteId) - { - $this->siteId = $siteId; - } - public function getSiteId() - { - return $this->siteId; - } - /** - * @param Google_Service_Dfareporting_DimensionValue - */ - public function setSiteIdDimensionValue(Google_Service_Dfareporting_DimensionValue $siteIdDimensionValue) - { - $this->siteIdDimensionValue = $siteIdDimensionValue; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getSiteIdDimensionValue() - { - return $this->siteIdDimensionValue; - } - public function setViewThrough($viewThrough) - { - $this->viewThrough = $viewThrough; - } - public function getViewThrough() - { - return $this->viewThrough; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/FloodlightConfiguration.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/FloodlightConfiguration.php deleted file mode 100644 index cfa3c2b7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/FloodlightConfiguration.php +++ /dev/null @@ -1,240 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setAdvertiserId($advertiserId) - { - $this->advertiserId = $advertiserId; - } - public function getAdvertiserId() - { - return $this->advertiserId; - } - /** - * @param Google_Service_Dfareporting_DimensionValue - */ - public function setAdvertiserIdDimensionValue(Google_Service_Dfareporting_DimensionValue $advertiserIdDimensionValue) - { - $this->advertiserIdDimensionValue = $advertiserIdDimensionValue; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getAdvertiserIdDimensionValue() - { - return $this->advertiserIdDimensionValue; - } - public function setAnalyticsDataSharingEnabled($analyticsDataSharingEnabled) - { - $this->analyticsDataSharingEnabled = $analyticsDataSharingEnabled; - } - public function getAnalyticsDataSharingEnabled() - { - return $this->analyticsDataSharingEnabled; - } - /** - * @param Google_Service_Dfareporting_CustomViewabilityMetric - */ - public function setCustomViewabilityMetric(Google_Service_Dfareporting_CustomViewabilityMetric $customViewabilityMetric) - { - $this->customViewabilityMetric = $customViewabilityMetric; - } - /** - * @return Google_Service_Dfareporting_CustomViewabilityMetric - */ - public function getCustomViewabilityMetric() - { - return $this->customViewabilityMetric; - } - public function setExposureToConversionEnabled($exposureToConversionEnabled) - { - $this->exposureToConversionEnabled = $exposureToConversionEnabled; - } - public function getExposureToConversionEnabled() - { - return $this->exposureToConversionEnabled; - } - public function setFirstDayOfWeek($firstDayOfWeek) - { - $this->firstDayOfWeek = $firstDayOfWeek; - } - public function getFirstDayOfWeek() - { - return $this->firstDayOfWeek; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Dfareporting_DimensionValue - */ - public function setIdDimensionValue(Google_Service_Dfareporting_DimensionValue $idDimensionValue) - { - $this->idDimensionValue = $idDimensionValue; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getIdDimensionValue() - { - return $this->idDimensionValue; - } - public function setInAppAttributionTrackingEnabled($inAppAttributionTrackingEnabled) - { - $this->inAppAttributionTrackingEnabled = $inAppAttributionTrackingEnabled; - } - public function getInAppAttributionTrackingEnabled() - { - return $this->inAppAttributionTrackingEnabled; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Dfareporting_LookbackConfiguration - */ - public function setLookbackConfiguration(Google_Service_Dfareporting_LookbackConfiguration $lookbackConfiguration) - { - $this->lookbackConfiguration = $lookbackConfiguration; - } - /** - * @return Google_Service_Dfareporting_LookbackConfiguration - */ - public function getLookbackConfiguration() - { - return $this->lookbackConfiguration; - } - public function setNaturalSearchConversionAttributionOption($naturalSearchConversionAttributionOption) - { - $this->naturalSearchConversionAttributionOption = $naturalSearchConversionAttributionOption; - } - public function getNaturalSearchConversionAttributionOption() - { - return $this->naturalSearchConversionAttributionOption; - } - /** - * @param Google_Service_Dfareporting_OmnitureSettings - */ - public function setOmnitureSettings(Google_Service_Dfareporting_OmnitureSettings $omnitureSettings) - { - $this->omnitureSettings = $omnitureSettings; - } - /** - * @return Google_Service_Dfareporting_OmnitureSettings - */ - public function getOmnitureSettings() - { - return $this->omnitureSettings; - } - public function setSubaccountId($subaccountId) - { - $this->subaccountId = $subaccountId; - } - public function getSubaccountId() - { - return $this->subaccountId; - } - /** - * @param Google_Service_Dfareporting_TagSettings - */ - public function setTagSettings(Google_Service_Dfareporting_TagSettings $tagSettings) - { - $this->tagSettings = $tagSettings; - } - /** - * @return Google_Service_Dfareporting_TagSettings - */ - public function getTagSettings() - { - return $this->tagSettings; - } - /** - * @param Google_Service_Dfareporting_ThirdPartyAuthenticationToken - */ - public function setThirdPartyAuthenticationTokens($thirdPartyAuthenticationTokens) - { - $this->thirdPartyAuthenticationTokens = $thirdPartyAuthenticationTokens; - } - /** - * @return Google_Service_Dfareporting_ThirdPartyAuthenticationToken - */ - public function getThirdPartyAuthenticationTokens() - { - return $this->thirdPartyAuthenticationTokens; - } - /** - * @param Google_Service_Dfareporting_UserDefinedVariableConfiguration - */ - public function setUserDefinedVariableConfigurations($userDefinedVariableConfigurations) - { - $this->userDefinedVariableConfigurations = $userDefinedVariableConfigurations; - } - /** - * @return Google_Service_Dfareporting_UserDefinedVariableConfiguration - */ - public function getUserDefinedVariableConfigurations() - { - return $this->userDefinedVariableConfigurations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/FloodlightConfigurationsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/FloodlightConfigurationsListResponse.php deleted file mode 100644 index 2e28bc1a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/FloodlightConfigurationsListResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -floodlightConfigurations = $floodlightConfigurations; - } - /** - * @return Google_Service_Dfareporting_FloodlightConfiguration - */ - public function getFloodlightConfigurations() - { - return $this->floodlightConfigurations; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/FloodlightReportCompatibleFields.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/FloodlightReportCompatibleFields.php deleted file mode 100644 index f6da6793..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/FloodlightReportCompatibleFields.php +++ /dev/null @@ -1,79 +0,0 @@ -dimensionFilters = $dimensionFilters; - } - /** - * @return Google_Service_Dfareporting_Dimension - */ - public function getDimensionFilters() - { - return $this->dimensionFilters; - } - /** - * @param Google_Service_Dfareporting_Dimension - */ - public function setDimensions($dimensions) - { - $this->dimensions = $dimensions; - } - /** - * @return Google_Service_Dfareporting_Dimension - */ - public function getDimensions() - { - return $this->dimensions; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Dfareporting_Metric - */ - public function setMetrics($metrics) - { - $this->metrics = $metrics; - } - /** - * @return Google_Service_Dfareporting_Metric - */ - public function getMetrics() - { - return $this->metrics; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/FrequencyCap.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/FrequencyCap.php deleted file mode 100644 index cd950a51..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/FrequencyCap.php +++ /dev/null @@ -1,39 +0,0 @@ -duration = $duration; - } - public function getDuration() - { - return $this->duration; - } - public function setImpressions($impressions) - { - $this->impressions = $impressions; - } - public function getImpressions() - { - return $this->impressions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/FsCommand.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/FsCommand.php deleted file mode 100644 index 5c193b1d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/FsCommand.php +++ /dev/null @@ -1,66 +0,0 @@ -left = $left; - } - public function getLeft() - { - return $this->left; - } - public function setPositionOption($positionOption) - { - $this->positionOption = $positionOption; - } - public function getPositionOption() - { - return $this->positionOption; - } - public function setTop($top) - { - $this->top = $top; - } - public function getTop() - { - return $this->top; - } - public function setWindowHeight($windowHeight) - { - $this->windowHeight = $windowHeight; - } - public function getWindowHeight() - { - return $this->windowHeight; - } - public function setWindowWidth($windowWidth) - { - $this->windowWidth = $windowWidth; - } - public function getWindowWidth() - { - return $this->windowWidth; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/GeoTargeting.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/GeoTargeting.php deleted file mode 100644 index c4079d9a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/GeoTargeting.php +++ /dev/null @@ -1,111 +0,0 @@ -cities = $cities; - } - /** - * @return Google_Service_Dfareporting_City - */ - public function getCities() - { - return $this->cities; - } - /** - * @param Google_Service_Dfareporting_Country - */ - public function setCountries($countries) - { - $this->countries = $countries; - } - /** - * @return Google_Service_Dfareporting_Country - */ - public function getCountries() - { - return $this->countries; - } - public function setExcludeCountries($excludeCountries) - { - $this->excludeCountries = $excludeCountries; - } - public function getExcludeCountries() - { - return $this->excludeCountries; - } - /** - * @param Google_Service_Dfareporting_Metro - */ - public function setMetros($metros) - { - $this->metros = $metros; - } - /** - * @return Google_Service_Dfareporting_Metro - */ - public function getMetros() - { - return $this->metros; - } - /** - * @param Google_Service_Dfareporting_PostalCode - */ - public function setPostalCodes($postalCodes) - { - $this->postalCodes = $postalCodes; - } - /** - * @return Google_Service_Dfareporting_PostalCode - */ - public function getPostalCodes() - { - return $this->postalCodes; - } - /** - * @param Google_Service_Dfareporting_Region - */ - public function setRegions($regions) - { - $this->regions = $regions; - } - /** - * @return Google_Service_Dfareporting_Region - */ - public function getRegions() - { - return $this->regions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/InventoryItem.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/InventoryItem.php deleted file mode 100644 index c36b87cc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/InventoryItem.php +++ /dev/null @@ -1,223 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - /** - * @param Google_Service_Dfareporting_AdSlot - */ - public function setAdSlots($adSlots) - { - $this->adSlots = $adSlots; - } - /** - * @return Google_Service_Dfareporting_AdSlot - */ - public function getAdSlots() - { - return $this->adSlots; - } - public function setAdvertiserId($advertiserId) - { - $this->advertiserId = $advertiserId; - } - public function getAdvertiserId() - { - return $this->advertiserId; - } - public function setContentCategoryId($contentCategoryId) - { - $this->contentCategoryId = $contentCategoryId; - } - public function getContentCategoryId() - { - return $this->contentCategoryId; - } - public function setEstimatedClickThroughRate($estimatedClickThroughRate) - { - $this->estimatedClickThroughRate = $estimatedClickThroughRate; - } - public function getEstimatedClickThroughRate() - { - return $this->estimatedClickThroughRate; - } - public function setEstimatedConversionRate($estimatedConversionRate) - { - $this->estimatedConversionRate = $estimatedConversionRate; - } - public function getEstimatedConversionRate() - { - return $this->estimatedConversionRate; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setInPlan($inPlan) - { - $this->inPlan = $inPlan; - } - public function getInPlan() - { - return $this->inPlan; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Dfareporting_LastModifiedInfo - */ - public function setLastModifiedInfo(Google_Service_Dfareporting_LastModifiedInfo $lastModifiedInfo) - { - $this->lastModifiedInfo = $lastModifiedInfo; - } - /** - * @return Google_Service_Dfareporting_LastModifiedInfo - */ - public function getLastModifiedInfo() - { - return $this->lastModifiedInfo; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNegotiationChannelId($negotiationChannelId) - { - $this->negotiationChannelId = $negotiationChannelId; - } - public function getNegotiationChannelId() - { - return $this->negotiationChannelId; - } - public function setOrderId($orderId) - { - $this->orderId = $orderId; - } - public function getOrderId() - { - return $this->orderId; - } - public function setPlacementStrategyId($placementStrategyId) - { - $this->placementStrategyId = $placementStrategyId; - } - public function getPlacementStrategyId() - { - return $this->placementStrategyId; - } - /** - * @param Google_Service_Dfareporting_Pricing - */ - public function setPricing(Google_Service_Dfareporting_Pricing $pricing) - { - $this->pricing = $pricing; - } - /** - * @return Google_Service_Dfareporting_Pricing - */ - public function getPricing() - { - return $this->pricing; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } - public function setRfpId($rfpId) - { - $this->rfpId = $rfpId; - } - public function getRfpId() - { - return $this->rfpId; - } - public function setSiteId($siteId) - { - $this->siteId = $siteId; - } - public function getSiteId() - { - return $this->siteId; - } - public function setSubaccountId($subaccountId) - { - $this->subaccountId = $subaccountId; - } - public function getSubaccountId() - { - return $this->subaccountId; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/InventoryItemsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/InventoryItemsListResponse.php deleted file mode 100644 index e10e16d6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/InventoryItemsListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -inventoryItems = $inventoryItems; - } - /** - * @return Google_Service_Dfareporting_InventoryItem - */ - public function getInventoryItems() - { - return $this->inventoryItems; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/KeyValueTargetingExpression.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/KeyValueTargetingExpression.php deleted file mode 100644 index e7d84210..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/KeyValueTargetingExpression.php +++ /dev/null @@ -1,30 +0,0 @@ -expression = $expression; - } - public function getExpression() - { - return $this->expression; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/LandingPage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/LandingPage.php deleted file mode 100644 index 65a73bab..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/LandingPage.php +++ /dev/null @@ -1,92 +0,0 @@ -advertiserId = $advertiserId; - } - public function getAdvertiserId() - { - return $this->advertiserId; - } - public function setArchived($archived) - { - $this->archived = $archived; - } - public function getArchived() - { - return $this->archived; - } - /** - * @param Google_Service_Dfareporting_DeepLink - */ - public function setDeepLinks($deepLinks) - { - $this->deepLinks = $deepLinks; - } - /** - * @return Google_Service_Dfareporting_DeepLink - */ - public function getDeepLinks() - { - return $this->deepLinks; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Language.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Language.php deleted file mode 100644 index cb94e837..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Language.php +++ /dev/null @@ -1,57 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLanguageCode($languageCode) - { - $this->languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/LanguageTargeting.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/LanguageTargeting.php deleted file mode 100644 index 0299fbca..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/LanguageTargeting.php +++ /dev/null @@ -1,38 +0,0 @@ -languages = $languages; - } - /** - * @return Google_Service_Dfareporting_Language - */ - public function getLanguages() - { - return $this->languages; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/LanguagesListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/LanguagesListResponse.php deleted file mode 100644 index 4c68928b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/LanguagesListResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Dfareporting_Language - */ - public function setLanguages($languages) - { - $this->languages = $languages; - } - /** - * @return Google_Service_Dfareporting_Language - */ - public function getLanguages() - { - return $this->languages; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/LastModifiedInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/LastModifiedInfo.php deleted file mode 100644 index dffa7d77..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/LastModifiedInfo.php +++ /dev/null @@ -1,30 +0,0 @@ -time = $time; - } - public function getTime() - { - return $this->time; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ListPopulationClause.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ListPopulationClause.php deleted file mode 100644 index 0b7c542b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ListPopulationClause.php +++ /dev/null @@ -1,38 +0,0 @@ -terms = $terms; - } - /** - * @return Google_Service_Dfareporting_ListPopulationTerm - */ - public function getTerms() - { - return $this->terms; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ListPopulationRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ListPopulationRule.php deleted file mode 100644 index 1078f6a6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ListPopulationRule.php +++ /dev/null @@ -1,56 +0,0 @@ -floodlightActivityId = $floodlightActivityId; - } - public function getFloodlightActivityId() - { - return $this->floodlightActivityId; - } - public function setFloodlightActivityName($floodlightActivityName) - { - $this->floodlightActivityName = $floodlightActivityName; - } - public function getFloodlightActivityName() - { - return $this->floodlightActivityName; - } - /** - * @param Google_Service_Dfareporting_ListPopulationClause - */ - public function setListPopulationClauses($listPopulationClauses) - { - $this->listPopulationClauses = $listPopulationClauses; - } - /** - * @return Google_Service_Dfareporting_ListPopulationClause - */ - public function getListPopulationClauses() - { - return $this->listPopulationClauses; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ListPopulationTerm.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ListPopulationTerm.php deleted file mode 100644 index cf1f865e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ListPopulationTerm.php +++ /dev/null @@ -1,93 +0,0 @@ -contains = $contains; - } - public function getContains() - { - return $this->contains; - } - public function setNegation($negation) - { - $this->negation = $negation; - } - public function getNegation() - { - return $this->negation; - } - public function setOperator($operator) - { - $this->operator = $operator; - } - public function getOperator() - { - return $this->operator; - } - public function setRemarketingListId($remarketingListId) - { - $this->remarketingListId = $remarketingListId; - } - public function getRemarketingListId() - { - return $this->remarketingListId; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } - public function setVariableFriendlyName($variableFriendlyName) - { - $this->variableFriendlyName = $variableFriendlyName; - } - public function getVariableFriendlyName() - { - return $this->variableFriendlyName; - } - public function setVariableName($variableName) - { - $this->variableName = $variableName; - } - public function getVariableName() - { - return $this->variableName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ListTargetingExpression.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ListTargetingExpression.php deleted file mode 100644 index 0206127b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ListTargetingExpression.php +++ /dev/null @@ -1,30 +0,0 @@ -expression = $expression; - } - public function getExpression() - { - return $this->expression; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/LookbackConfiguration.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/LookbackConfiguration.php deleted file mode 100644 index c0c98e0c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/LookbackConfiguration.php +++ /dev/null @@ -1,39 +0,0 @@ -clickDuration = $clickDuration; - } - public function getClickDuration() - { - return $this->clickDuration; - } - public function setPostImpressionActivitiesDuration($postImpressionActivitiesDuration) - { - $this->postImpressionActivitiesDuration = $postImpressionActivitiesDuration; - } - public function getPostImpressionActivitiesDuration() - { - return $this->postImpressionActivitiesDuration; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Metric.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Metric.php deleted file mode 100644 index d6e9609d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Metric.php +++ /dev/null @@ -1,39 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Metro.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Metro.php deleted file mode 100644 index a0d8dec9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Metro.php +++ /dev/null @@ -1,84 +0,0 @@ -countryCode = $countryCode; - } - public function getCountryCode() - { - return $this->countryCode; - } - public function setCountryDartId($countryDartId) - { - $this->countryDartId = $countryDartId; - } - public function getCountryDartId() - { - return $this->countryDartId; - } - public function setDartId($dartId) - { - $this->dartId = $dartId; - } - public function getDartId() - { - return $this->dartId; - } - public function setDmaId($dmaId) - { - $this->dmaId = $dmaId; - } - public function getDmaId() - { - return $this->dmaId; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setMetroCode($metroCode) - { - $this->metroCode = $metroCode; - } - public function getMetroCode() - { - return $this->metroCode; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/MetrosListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/MetrosListResponse.php deleted file mode 100644 index e0e84ec3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/MetrosListResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Dfareporting_Metro - */ - public function setMetros($metros) - { - $this->metros = $metros; - } - /** - * @return Google_Service_Dfareporting_Metro - */ - public function getMetros() - { - return $this->metros; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/MobileApp.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/MobileApp.php deleted file mode 100644 index f90cced2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/MobileApp.php +++ /dev/null @@ -1,66 +0,0 @@ -directory = $directory; - } - public function getDirectory() - { - return $this->directory; - } - 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 setPublisherName($publisherName) - { - $this->publisherName = $publisherName; - } - public function getPublisherName() - { - return $this->publisherName; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/MobileAppsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/MobileAppsListResponse.php deleted file mode 100644 index e680d5ba..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/MobileAppsListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Dfareporting_MobileApp - */ - public function setMobileApps($mobileApps) - { - $this->mobileApps = $mobileApps; - } - /** - * @return Google_Service_Dfareporting_MobileApp - */ - public function getMobileApps() - { - return $this->mobileApps; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/MobileCarrier.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/MobileCarrier.php deleted file mode 100644 index 4d14d995..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/MobileCarrier.php +++ /dev/null @@ -1,66 +0,0 @@ -countryCode = $countryCode; - } - public function getCountryCode() - { - return $this->countryCode; - } - public function setCountryDartId($countryDartId) - { - $this->countryDartId = $countryDartId; - } - public function getCountryDartId() - { - return $this->countryDartId; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/MobileCarriersListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/MobileCarriersListResponse.php deleted file mode 100644 index e311555c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/MobileCarriersListResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Dfareporting_MobileCarrier - */ - public function setMobileCarriers($mobileCarriers) - { - $this->mobileCarriers = $mobileCarriers; - } - /** - * @return Google_Service_Dfareporting_MobileCarrier - */ - public function getMobileCarriers() - { - return $this->mobileCarriers; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ObjectFilter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ObjectFilter.php deleted file mode 100644 index 5037943c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ObjectFilter.php +++ /dev/null @@ -1,49 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setObjectIds($objectIds) - { - $this->objectIds = $objectIds; - } - public function getObjectIds() - { - return $this->objectIds; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/OffsetPosition.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/OffsetPosition.php deleted file mode 100644 index e265c769..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/OffsetPosition.php +++ /dev/null @@ -1,39 +0,0 @@ -left = $left; - } - public function getLeft() - { - return $this->left; - } - public function setTop($top) - { - $this->top = $top; - } - public function getTop() - { - return $this->top; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/OmnitureSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/OmnitureSettings.php deleted file mode 100644 index 3f139ae0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/OmnitureSettings.php +++ /dev/null @@ -1,39 +0,0 @@ -omnitureCostDataEnabled = $omnitureCostDataEnabled; - } - public function getOmnitureCostDataEnabled() - { - return $this->omnitureCostDataEnabled; - } - public function setOmnitureIntegrationEnabled($omnitureIntegrationEnabled) - { - $this->omnitureIntegrationEnabled = $omnitureIntegrationEnabled; - } - public function getOmnitureIntegrationEnabled() - { - return $this->omnitureIntegrationEnabled; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/OperatingSystem.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/OperatingSystem.php deleted file mode 100644 index 67dae8ea..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/OperatingSystem.php +++ /dev/null @@ -1,66 +0,0 @@ -dartId = $dartId; - } - public function getDartId() - { - return $this->dartId; - } - public function setDesktop($desktop) - { - $this->desktop = $desktop; - } - public function getDesktop() - { - return $this->desktop; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setMobile($mobile) - { - $this->mobile = $mobile; - } - public function getMobile() - { - return $this->mobile; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/OperatingSystemVersion.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/OperatingSystemVersion.php deleted file mode 100644 index 651e65f4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/OperatingSystemVersion.php +++ /dev/null @@ -1,82 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setMajorVersion($majorVersion) - { - $this->majorVersion = $majorVersion; - } - public function getMajorVersion() - { - return $this->majorVersion; - } - public function setMinorVersion($minorVersion) - { - $this->minorVersion = $minorVersion; - } - public function getMinorVersion() - { - return $this->minorVersion; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Dfareporting_OperatingSystem - */ - public function setOperatingSystem(Google_Service_Dfareporting_OperatingSystem $operatingSystem) - { - $this->operatingSystem = $operatingSystem; - } - /** - * @return Google_Service_Dfareporting_OperatingSystem - */ - public function getOperatingSystem() - { - return $this->operatingSystem; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/OperatingSystemVersionsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/OperatingSystemVersionsListResponse.php deleted file mode 100644 index 13129447..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/OperatingSystemVersionsListResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Dfareporting_OperatingSystemVersion - */ - public function setOperatingSystemVersions($operatingSystemVersions) - { - $this->operatingSystemVersions = $operatingSystemVersions; - } - /** - * @return Google_Service_Dfareporting_OperatingSystemVersion - */ - public function getOperatingSystemVersions() - { - return $this->operatingSystemVersions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/OperatingSystemsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/OperatingSystemsListResponse.php deleted file mode 100644 index 2841ecfd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/OperatingSystemsListResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Dfareporting_OperatingSystem - */ - public function setOperatingSystems($operatingSystems) - { - $this->operatingSystems = $operatingSystems; - } - /** - * @return Google_Service_Dfareporting_OperatingSystem - */ - public function getOperatingSystems() - { - return $this->operatingSystems; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/OptimizationActivity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/OptimizationActivity.php deleted file mode 100644 index 0915fe91..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/OptimizationActivity.php +++ /dev/null @@ -1,55 +0,0 @@ -floodlightActivityId = $floodlightActivityId; - } - public function getFloodlightActivityId() - { - return $this->floodlightActivityId; - } - /** - * @param Google_Service_Dfareporting_DimensionValue - */ - public function setFloodlightActivityIdDimensionValue(Google_Service_Dfareporting_DimensionValue $floodlightActivityIdDimensionValue) - { - $this->floodlightActivityIdDimensionValue = $floodlightActivityIdDimensionValue; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getFloodlightActivityIdDimensionValue() - { - return $this->floodlightActivityIdDimensionValue; - } - public function setWeight($weight) - { - $this->weight = $weight; - } - public function getWeight() - { - return $this->weight; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Order.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Order.php deleted file mode 100644 index 3137b69f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Order.php +++ /dev/null @@ -1,216 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setAdvertiserId($advertiserId) - { - $this->advertiserId = $advertiserId; - } - public function getAdvertiserId() - { - return $this->advertiserId; - } - public function setApproverUserProfileIds($approverUserProfileIds) - { - $this->approverUserProfileIds = $approverUserProfileIds; - } - public function getApproverUserProfileIds() - { - return $this->approverUserProfileIds; - } - public function setBuyerInvoiceId($buyerInvoiceId) - { - $this->buyerInvoiceId = $buyerInvoiceId; - } - public function getBuyerInvoiceId() - { - return $this->buyerInvoiceId; - } - public function setBuyerOrganizationName($buyerOrganizationName) - { - $this->buyerOrganizationName = $buyerOrganizationName; - } - public function getBuyerOrganizationName() - { - return $this->buyerOrganizationName; - } - public function setComments($comments) - { - $this->comments = $comments; - } - public function getComments() - { - return $this->comments; - } - /** - * @param Google_Service_Dfareporting_OrderContact - */ - public function setContacts($contacts) - { - $this->contacts = $contacts; - } - /** - * @return Google_Service_Dfareporting_OrderContact - */ - public function getContacts() - { - return $this->contacts; - } - 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; - } - /** - * @param Google_Service_Dfareporting_LastModifiedInfo - */ - public function setLastModifiedInfo(Google_Service_Dfareporting_LastModifiedInfo $lastModifiedInfo) - { - $this->lastModifiedInfo = $lastModifiedInfo; - } - /** - * @return Google_Service_Dfareporting_LastModifiedInfo - */ - public function getLastModifiedInfo() - { - return $this->lastModifiedInfo; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNotes($notes) - { - $this->notes = $notes; - } - public function getNotes() - { - return $this->notes; - } - public function setPlanningTermId($planningTermId) - { - $this->planningTermId = $planningTermId; - } - public function getPlanningTermId() - { - return $this->planningTermId; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } - public function setSellerOrderId($sellerOrderId) - { - $this->sellerOrderId = $sellerOrderId; - } - public function getSellerOrderId() - { - return $this->sellerOrderId; - } - public function setSellerOrganizationName($sellerOrganizationName) - { - $this->sellerOrganizationName = $sellerOrganizationName; - } - public function getSellerOrganizationName() - { - return $this->sellerOrganizationName; - } - public function setSiteId($siteId) - { - $this->siteId = $siteId; - } - public function getSiteId() - { - return $this->siteId; - } - public function setSiteNames($siteNames) - { - $this->siteNames = $siteNames; - } - public function getSiteNames() - { - return $this->siteNames; - } - public function setSubaccountId($subaccountId) - { - $this->subaccountId = $subaccountId; - } - public function getSubaccountId() - { - return $this->subaccountId; - } - public function setTermsAndConditions($termsAndConditions) - { - $this->termsAndConditions = $termsAndConditions; - } - public function getTermsAndConditions() - { - return $this->termsAndConditions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/OrderContact.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/OrderContact.php deleted file mode 100644 index c61626c6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/OrderContact.php +++ /dev/null @@ -1,66 +0,0 @@ -contactInfo = $contactInfo; - } - public function getContactInfo() - { - return $this->contactInfo; - } - public function setContactName($contactName) - { - $this->contactName = $contactName; - } - public function getContactName() - { - return $this->contactName; - } - public function setContactTitle($contactTitle) - { - $this->contactTitle = $contactTitle; - } - public function getContactTitle() - { - return $this->contactTitle; - } - public function setContactType($contactType) - { - $this->contactType = $contactType; - } - public function getContactType() - { - return $this->contactType; - } - public function setSignatureUserProfileId($signatureUserProfileId) - { - $this->signatureUserProfileId = $signatureUserProfileId; - } - public function getSignatureUserProfileId() - { - return $this->signatureUserProfileId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/OrderDocument.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/OrderDocument.php deleted file mode 100644 index ed6f7c68..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/OrderDocument.php +++ /dev/null @@ -1,182 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setAdvertiserId($advertiserId) - { - $this->advertiserId = $advertiserId; - } - public function getAdvertiserId() - { - return $this->advertiserId; - } - public function setAmendedOrderDocumentId($amendedOrderDocumentId) - { - $this->amendedOrderDocumentId = $amendedOrderDocumentId; - } - public function getAmendedOrderDocumentId() - { - return $this->amendedOrderDocumentId; - } - public function setApprovedByUserProfileIds($approvedByUserProfileIds) - { - $this->approvedByUserProfileIds = $approvedByUserProfileIds; - } - public function getApprovedByUserProfileIds() - { - return $this->approvedByUserProfileIds; - } - public function setCancelled($cancelled) - { - $this->cancelled = $cancelled; - } - public function getCancelled() - { - return $this->cancelled; - } - /** - * @param Google_Service_Dfareporting_LastModifiedInfo - */ - public function setCreatedInfo(Google_Service_Dfareporting_LastModifiedInfo $createdInfo) - { - $this->createdInfo = $createdInfo; - } - /** - * @return Google_Service_Dfareporting_LastModifiedInfo - */ - public function getCreatedInfo() - { - return $this->createdInfo; - } - public function setEffectiveDate($effectiveDate) - { - $this->effectiveDate = $effectiveDate; - } - public function getEffectiveDate() - { - return $this->effectiveDate; - } - 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 setLastSentRecipients($lastSentRecipients) - { - $this->lastSentRecipients = $lastSentRecipients; - } - public function getLastSentRecipients() - { - return $this->lastSentRecipients; - } - public function setLastSentTime($lastSentTime) - { - $this->lastSentTime = $lastSentTime; - } - public function getLastSentTime() - { - return $this->lastSentTime; - } - public function setOrderId($orderId) - { - $this->orderId = $orderId; - } - public function getOrderId() - { - return $this->orderId; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } - public function setSigned($signed) - { - $this->signed = $signed; - } - public function getSigned() - { - return $this->signed; - } - public function setSubaccountId($subaccountId) - { - $this->subaccountId = $subaccountId; - } - public function getSubaccountId() - { - return $this->subaccountId; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/OrderDocumentsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/OrderDocumentsListResponse.php deleted file mode 100644 index 49d31101..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/OrderDocumentsListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Dfareporting_OrderDocument - */ - public function setOrderDocuments($orderDocuments) - { - $this->orderDocuments = $orderDocuments; - } - /** - * @return Google_Service_Dfareporting_OrderDocument - */ - public function getOrderDocuments() - { - return $this->orderDocuments; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/OrdersListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/OrdersListResponse.php deleted file mode 100644 index 05a1c8b5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/OrdersListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Dfareporting_Order - */ - public function setOrders($orders) - { - $this->orders = $orders; - } - /** - * @return Google_Service_Dfareporting_Order - */ - public function getOrders() - { - return $this->orders; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/PathToConversionReportCompatibleFields.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/PathToConversionReportCompatibleFields.php deleted file mode 100644 index c0858d1d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/PathToConversionReportCompatibleFields.php +++ /dev/null @@ -1,95 +0,0 @@ -conversionDimensions = $conversionDimensions; - } - /** - * @return Google_Service_Dfareporting_Dimension - */ - public function getConversionDimensions() - { - return $this->conversionDimensions; - } - /** - * @param Google_Service_Dfareporting_Dimension - */ - public function setCustomFloodlightVariables($customFloodlightVariables) - { - $this->customFloodlightVariables = $customFloodlightVariables; - } - /** - * @return Google_Service_Dfareporting_Dimension - */ - public function getCustomFloodlightVariables() - { - return $this->customFloodlightVariables; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Dfareporting_Metric - */ - public function setMetrics($metrics) - { - $this->metrics = $metrics; - } - /** - * @return Google_Service_Dfareporting_Metric - */ - public function getMetrics() - { - return $this->metrics; - } - /** - * @param Google_Service_Dfareporting_Dimension - */ - public function setPerInteractionDimensions($perInteractionDimensions) - { - $this->perInteractionDimensions = $perInteractionDimensions; - } - /** - * @return Google_Service_Dfareporting_Dimension - */ - public function getPerInteractionDimensions() - { - return $this->perInteractionDimensions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Placement.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Placement.php deleted file mode 100644 index 62d31256..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Placement.php +++ /dev/null @@ -1,496 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setAdBlockingOptOut($adBlockingOptOut) - { - $this->adBlockingOptOut = $adBlockingOptOut; - } - public function getAdBlockingOptOut() - { - return $this->adBlockingOptOut; - } - /** - * @param Google_Service_Dfareporting_Size - */ - public function setAdditionalSizes($additionalSizes) - { - $this->additionalSizes = $additionalSizes; - } - /** - * @return Google_Service_Dfareporting_Size - */ - public function getAdditionalSizes() - { - return $this->additionalSizes; - } - public function setAdvertiserId($advertiserId) - { - $this->advertiserId = $advertiserId; - } - public function getAdvertiserId() - { - return $this->advertiserId; - } - /** - * @param Google_Service_Dfareporting_DimensionValue - */ - public function setAdvertiserIdDimensionValue(Google_Service_Dfareporting_DimensionValue $advertiserIdDimensionValue) - { - $this->advertiserIdDimensionValue = $advertiserIdDimensionValue; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getAdvertiserIdDimensionValue() - { - return $this->advertiserIdDimensionValue; - } - public function setArchived($archived) - { - $this->archived = $archived; - } - public function getArchived() - { - return $this->archived; - } - public function setCampaignId($campaignId) - { - $this->campaignId = $campaignId; - } - public function getCampaignId() - { - return $this->campaignId; - } - /** - * @param Google_Service_Dfareporting_DimensionValue - */ - public function setCampaignIdDimensionValue(Google_Service_Dfareporting_DimensionValue $campaignIdDimensionValue) - { - $this->campaignIdDimensionValue = $campaignIdDimensionValue; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getCampaignIdDimensionValue() - { - return $this->campaignIdDimensionValue; - } - public function setComment($comment) - { - $this->comment = $comment; - } - public function getComment() - { - return $this->comment; - } - public function setCompatibility($compatibility) - { - $this->compatibility = $compatibility; - } - public function getCompatibility() - { - return $this->compatibility; - } - public function setContentCategoryId($contentCategoryId) - { - $this->contentCategoryId = $contentCategoryId; - } - public function getContentCategoryId() - { - return $this->contentCategoryId; - } - /** - * @param Google_Service_Dfareporting_LastModifiedInfo - */ - public function setCreateInfo(Google_Service_Dfareporting_LastModifiedInfo $createInfo) - { - $this->createInfo = $createInfo; - } - /** - * @return Google_Service_Dfareporting_LastModifiedInfo - */ - public function getCreateInfo() - { - return $this->createInfo; - } - public function setDirectorySiteId($directorySiteId) - { - $this->directorySiteId = $directorySiteId; - } - public function getDirectorySiteId() - { - return $this->directorySiteId; - } - /** - * @param Google_Service_Dfareporting_DimensionValue - */ - public function setDirectorySiteIdDimensionValue(Google_Service_Dfareporting_DimensionValue $directorySiteIdDimensionValue) - { - $this->directorySiteIdDimensionValue = $directorySiteIdDimensionValue; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getDirectorySiteIdDimensionValue() - { - return $this->directorySiteIdDimensionValue; - } - public function setExternalId($externalId) - { - $this->externalId = $externalId; - } - public function getExternalId() - { - return $this->externalId; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Dfareporting_DimensionValue - */ - public function setIdDimensionValue(Google_Service_Dfareporting_DimensionValue $idDimensionValue) - { - $this->idDimensionValue = $idDimensionValue; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getIdDimensionValue() - { - return $this->idDimensionValue; - } - public function setKeyName($keyName) - { - $this->keyName = $keyName; - } - public function getKeyName() - { - return $this->keyName; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Dfareporting_LastModifiedInfo - */ - public function setLastModifiedInfo(Google_Service_Dfareporting_LastModifiedInfo $lastModifiedInfo) - { - $this->lastModifiedInfo = $lastModifiedInfo; - } - /** - * @return Google_Service_Dfareporting_LastModifiedInfo - */ - public function getLastModifiedInfo() - { - return $this->lastModifiedInfo; - } - /** - * @param Google_Service_Dfareporting_LookbackConfiguration - */ - public function setLookbackConfiguration(Google_Service_Dfareporting_LookbackConfiguration $lookbackConfiguration) - { - $this->lookbackConfiguration = $lookbackConfiguration; - } - /** - * @return Google_Service_Dfareporting_LookbackConfiguration - */ - public function getLookbackConfiguration() - { - return $this->lookbackConfiguration; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPaymentApproved($paymentApproved) - { - $this->paymentApproved = $paymentApproved; - } - public function getPaymentApproved() - { - return $this->paymentApproved; - } - public function setPaymentSource($paymentSource) - { - $this->paymentSource = $paymentSource; - } - public function getPaymentSource() - { - return $this->paymentSource; - } - public function setPlacementGroupId($placementGroupId) - { - $this->placementGroupId = $placementGroupId; - } - public function getPlacementGroupId() - { - return $this->placementGroupId; - } - /** - * @param Google_Service_Dfareporting_DimensionValue - */ - public function setPlacementGroupIdDimensionValue(Google_Service_Dfareporting_DimensionValue $placementGroupIdDimensionValue) - { - $this->placementGroupIdDimensionValue = $placementGroupIdDimensionValue; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getPlacementGroupIdDimensionValue() - { - return $this->placementGroupIdDimensionValue; - } - public function setPlacementStrategyId($placementStrategyId) - { - $this->placementStrategyId = $placementStrategyId; - } - public function getPlacementStrategyId() - { - return $this->placementStrategyId; - } - /** - * @param Google_Service_Dfareporting_PricingSchedule - */ - public function setPricingSchedule(Google_Service_Dfareporting_PricingSchedule $pricingSchedule) - { - $this->pricingSchedule = $pricingSchedule; - } - /** - * @return Google_Service_Dfareporting_PricingSchedule - */ - public function getPricingSchedule() - { - return $this->pricingSchedule; - } - public function setPrimary($primary) - { - $this->primary = $primary; - } - public function getPrimary() - { - return $this->primary; - } - /** - * @param Google_Service_Dfareporting_LastModifiedInfo - */ - public function setPublisherUpdateInfo(Google_Service_Dfareporting_LastModifiedInfo $publisherUpdateInfo) - { - $this->publisherUpdateInfo = $publisherUpdateInfo; - } - /** - * @return Google_Service_Dfareporting_LastModifiedInfo - */ - public function getPublisherUpdateInfo() - { - return $this->publisherUpdateInfo; - } - public function setSiteId($siteId) - { - $this->siteId = $siteId; - } - public function getSiteId() - { - return $this->siteId; - } - /** - * @param Google_Service_Dfareporting_DimensionValue - */ - public function setSiteIdDimensionValue(Google_Service_Dfareporting_DimensionValue $siteIdDimensionValue) - { - $this->siteIdDimensionValue = $siteIdDimensionValue; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getSiteIdDimensionValue() - { - return $this->siteIdDimensionValue; - } - /** - * @param Google_Service_Dfareporting_Size - */ - public function setSize(Google_Service_Dfareporting_Size $size) - { - $this->size = $size; - } - /** - * @return Google_Service_Dfareporting_Size - */ - public function getSize() - { - return $this->size; - } - public function setSslRequired($sslRequired) - { - $this->sslRequired = $sslRequired; - } - public function getSslRequired() - { - return $this->sslRequired; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setSubaccountId($subaccountId) - { - $this->subaccountId = $subaccountId; - } - public function getSubaccountId() - { - return $this->subaccountId; - } - public function setTagFormats($tagFormats) - { - $this->tagFormats = $tagFormats; - } - public function getTagFormats() - { - return $this->tagFormats; - } - /** - * @param Google_Service_Dfareporting_TagSetting - */ - public function setTagSetting(Google_Service_Dfareporting_TagSetting $tagSetting) - { - $this->tagSetting = $tagSetting; - } - /** - * @return Google_Service_Dfareporting_TagSetting - */ - public function getTagSetting() - { - return $this->tagSetting; - } - public function setVideoActiveViewOptOut($videoActiveViewOptOut) - { - $this->videoActiveViewOptOut = $videoActiveViewOptOut; - } - public function getVideoActiveViewOptOut() - { - return $this->videoActiveViewOptOut; - } - /** - * @param Google_Service_Dfareporting_VideoSettings - */ - public function setVideoSettings(Google_Service_Dfareporting_VideoSettings $videoSettings) - { - $this->videoSettings = $videoSettings; - } - /** - * @return Google_Service_Dfareporting_VideoSettings - */ - public function getVideoSettings() - { - return $this->videoSettings; - } - public function setVpaidAdapterChoice($vpaidAdapterChoice) - { - $this->vpaidAdapterChoice = $vpaidAdapterChoice; - } - public function getVpaidAdapterChoice() - { - return $this->vpaidAdapterChoice; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/PlacementAssignment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/PlacementAssignment.php deleted file mode 100644 index 38aeb6e4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/PlacementAssignment.php +++ /dev/null @@ -1,64 +0,0 @@ -active = $active; - } - public function getActive() - { - return $this->active; - } - public function setPlacementId($placementId) - { - $this->placementId = $placementId; - } - public function getPlacementId() - { - return $this->placementId; - } - /** - * @param Google_Service_Dfareporting_DimensionValue - */ - public function setPlacementIdDimensionValue(Google_Service_Dfareporting_DimensionValue $placementIdDimensionValue) - { - $this->placementIdDimensionValue = $placementIdDimensionValue; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getPlacementIdDimensionValue() - { - return $this->placementIdDimensionValue; - } - public function setSslRequired($sslRequired) - { - $this->sslRequired = $sslRequired; - } - public function getSslRequired() - { - return $this->sslRequired; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/PlacementGroup.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/PlacementGroup.php deleted file mode 100644 index adb5f8a2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/PlacementGroup.php +++ /dev/null @@ -1,319 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setAdvertiserId($advertiserId) - { - $this->advertiserId = $advertiserId; - } - public function getAdvertiserId() - { - return $this->advertiserId; - } - /** - * @param Google_Service_Dfareporting_DimensionValue - */ - public function setAdvertiserIdDimensionValue(Google_Service_Dfareporting_DimensionValue $advertiserIdDimensionValue) - { - $this->advertiserIdDimensionValue = $advertiserIdDimensionValue; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getAdvertiserIdDimensionValue() - { - return $this->advertiserIdDimensionValue; - } - public function setArchived($archived) - { - $this->archived = $archived; - } - public function getArchived() - { - return $this->archived; - } - public function setCampaignId($campaignId) - { - $this->campaignId = $campaignId; - } - public function getCampaignId() - { - return $this->campaignId; - } - /** - * @param Google_Service_Dfareporting_DimensionValue - */ - public function setCampaignIdDimensionValue(Google_Service_Dfareporting_DimensionValue $campaignIdDimensionValue) - { - $this->campaignIdDimensionValue = $campaignIdDimensionValue; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getCampaignIdDimensionValue() - { - return $this->campaignIdDimensionValue; - } - public function setChildPlacementIds($childPlacementIds) - { - $this->childPlacementIds = $childPlacementIds; - } - public function getChildPlacementIds() - { - return $this->childPlacementIds; - } - public function setComment($comment) - { - $this->comment = $comment; - } - public function getComment() - { - return $this->comment; - } - public function setContentCategoryId($contentCategoryId) - { - $this->contentCategoryId = $contentCategoryId; - } - public function getContentCategoryId() - { - return $this->contentCategoryId; - } - /** - * @param Google_Service_Dfareporting_LastModifiedInfo - */ - public function setCreateInfo(Google_Service_Dfareporting_LastModifiedInfo $createInfo) - { - $this->createInfo = $createInfo; - } - /** - * @return Google_Service_Dfareporting_LastModifiedInfo - */ - public function getCreateInfo() - { - return $this->createInfo; - } - public function setDirectorySiteId($directorySiteId) - { - $this->directorySiteId = $directorySiteId; - } - public function getDirectorySiteId() - { - return $this->directorySiteId; - } - /** - * @param Google_Service_Dfareporting_DimensionValue - */ - public function setDirectorySiteIdDimensionValue(Google_Service_Dfareporting_DimensionValue $directorySiteIdDimensionValue) - { - $this->directorySiteIdDimensionValue = $directorySiteIdDimensionValue; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getDirectorySiteIdDimensionValue() - { - return $this->directorySiteIdDimensionValue; - } - public function setExternalId($externalId) - { - $this->externalId = $externalId; - } - public function getExternalId() - { - return $this->externalId; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Dfareporting_DimensionValue - */ - public function setIdDimensionValue(Google_Service_Dfareporting_DimensionValue $idDimensionValue) - { - $this->idDimensionValue = $idDimensionValue; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getIdDimensionValue() - { - return $this->idDimensionValue; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Dfareporting_LastModifiedInfo - */ - public function setLastModifiedInfo(Google_Service_Dfareporting_LastModifiedInfo $lastModifiedInfo) - { - $this->lastModifiedInfo = $lastModifiedInfo; - } - /** - * @return Google_Service_Dfareporting_LastModifiedInfo - */ - public function getLastModifiedInfo() - { - return $this->lastModifiedInfo; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPlacementGroupType($placementGroupType) - { - $this->placementGroupType = $placementGroupType; - } - public function getPlacementGroupType() - { - return $this->placementGroupType; - } - public function setPlacementStrategyId($placementStrategyId) - { - $this->placementStrategyId = $placementStrategyId; - } - public function getPlacementStrategyId() - { - return $this->placementStrategyId; - } - /** - * @param Google_Service_Dfareporting_PricingSchedule - */ - public function setPricingSchedule(Google_Service_Dfareporting_PricingSchedule $pricingSchedule) - { - $this->pricingSchedule = $pricingSchedule; - } - /** - * @return Google_Service_Dfareporting_PricingSchedule - */ - public function getPricingSchedule() - { - return $this->pricingSchedule; - } - public function setPrimaryPlacementId($primaryPlacementId) - { - $this->primaryPlacementId = $primaryPlacementId; - } - public function getPrimaryPlacementId() - { - return $this->primaryPlacementId; - } - /** - * @param Google_Service_Dfareporting_DimensionValue - */ - public function setPrimaryPlacementIdDimensionValue(Google_Service_Dfareporting_DimensionValue $primaryPlacementIdDimensionValue) - { - $this->primaryPlacementIdDimensionValue = $primaryPlacementIdDimensionValue; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getPrimaryPlacementIdDimensionValue() - { - return $this->primaryPlacementIdDimensionValue; - } - public function setSiteId($siteId) - { - $this->siteId = $siteId; - } - public function getSiteId() - { - return $this->siteId; - } - /** - * @param Google_Service_Dfareporting_DimensionValue - */ - public function setSiteIdDimensionValue(Google_Service_Dfareporting_DimensionValue $siteIdDimensionValue) - { - $this->siteIdDimensionValue = $siteIdDimensionValue; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getSiteIdDimensionValue() - { - return $this->siteIdDimensionValue; - } - public function setSubaccountId($subaccountId) - { - $this->subaccountId = $subaccountId; - } - public function getSubaccountId() - { - return $this->subaccountId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/PlacementGroupsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/PlacementGroupsListResponse.php deleted file mode 100644 index 88fa373f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/PlacementGroupsListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Dfareporting_PlacementGroup - */ - public function setPlacementGroups($placementGroups) - { - $this->placementGroups = $placementGroups; - } - /** - * @return Google_Service_Dfareporting_PlacementGroup - */ - public function getPlacementGroups() - { - return $this->placementGroups; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/PlacementStrategiesListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/PlacementStrategiesListResponse.php deleted file mode 100644 index 05194094..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/PlacementStrategiesListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Dfareporting_PlacementStrategy - */ - public function setPlacementStrategies($placementStrategies) - { - $this->placementStrategies = $placementStrategies; - } - /** - * @return Google_Service_Dfareporting_PlacementStrategy - */ - public function getPlacementStrategies() - { - return $this->placementStrategies; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/PlacementStrategy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/PlacementStrategy.php deleted file mode 100644 index 3dd4c20c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/PlacementStrategy.php +++ /dev/null @@ -1,57 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/PlacementTag.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/PlacementTag.php deleted file mode 100644 index 200b49bb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/PlacementTag.php +++ /dev/null @@ -1,47 +0,0 @@ -placementId = $placementId; - } - public function getPlacementId() - { - return $this->placementId; - } - /** - * @param Google_Service_Dfareporting_TagData - */ - public function setTagDatas($tagDatas) - { - $this->tagDatas = $tagDatas; - } - /** - * @return Google_Service_Dfareporting_TagData - */ - public function getTagDatas() - { - return $this->tagDatas; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/PlacementsGenerateTagsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/PlacementsGenerateTagsResponse.php deleted file mode 100644 index f2f1e4d7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/PlacementsGenerateTagsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Dfareporting_PlacementTag - */ - public function setPlacementTags($placementTags) - { - $this->placementTags = $placementTags; - } - /** - * @return Google_Service_Dfareporting_PlacementTag - */ - public function getPlacementTags() - { - return $this->placementTags; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/PlacementsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/PlacementsListResponse.php deleted file mode 100644 index 890306b8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/PlacementsListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Dfareporting_Placement - */ - public function setPlacements($placements) - { - $this->placements = $placements; - } - /** - * @return Google_Service_Dfareporting_Placement - */ - public function getPlacements() - { - return $this->placements; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/PlatformType.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/PlatformType.php deleted file mode 100644 index c13346a4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/PlatformType.php +++ /dev/null @@ -1,48 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/PlatformTypesListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/PlatformTypesListResponse.php deleted file mode 100644 index 47a027bd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/PlatformTypesListResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Dfareporting_PlatformType - */ - public function setPlatformTypes($platformTypes) - { - $this->platformTypes = $platformTypes; - } - /** - * @return Google_Service_Dfareporting_PlatformType - */ - public function getPlatformTypes() - { - return $this->platformTypes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/PopupWindowProperties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/PopupWindowProperties.php deleted file mode 100644 index 259615c7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/PopupWindowProperties.php +++ /dev/null @@ -1,116 +0,0 @@ -dimension = $dimension; - } - /** - * @return Google_Service_Dfareporting_Size - */ - public function getDimension() - { - return $this->dimension; - } - /** - * @param Google_Service_Dfareporting_OffsetPosition - */ - public function setOffset(Google_Service_Dfareporting_OffsetPosition $offset) - { - $this->offset = $offset; - } - /** - * @return Google_Service_Dfareporting_OffsetPosition - */ - public function getOffset() - { - return $this->offset; - } - public function setPositionType($positionType) - { - $this->positionType = $positionType; - } - public function getPositionType() - { - return $this->positionType; - } - public function setShowAddressBar($showAddressBar) - { - $this->showAddressBar = $showAddressBar; - } - public function getShowAddressBar() - { - return $this->showAddressBar; - } - public function setShowMenuBar($showMenuBar) - { - $this->showMenuBar = $showMenuBar; - } - public function getShowMenuBar() - { - return $this->showMenuBar; - } - public function setShowScrollBar($showScrollBar) - { - $this->showScrollBar = $showScrollBar; - } - public function getShowScrollBar() - { - return $this->showScrollBar; - } - public function setShowStatusBar($showStatusBar) - { - $this->showStatusBar = $showStatusBar; - } - public function getShowStatusBar() - { - return $this->showStatusBar; - } - public function setShowToolBar($showToolBar) - { - $this->showToolBar = $showToolBar; - } - public function getShowToolBar() - { - return $this->showToolBar; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/PostalCode.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/PostalCode.php deleted file mode 100644 index 7db7362a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/PostalCode.php +++ /dev/null @@ -1,66 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setCountryCode($countryCode) - { - $this->countryCode = $countryCode; - } - public function getCountryCode() - { - return $this->countryCode; - } - public function setCountryDartId($countryDartId) - { - $this->countryDartId = $countryDartId; - } - public function getCountryDartId() - { - return $this->countryDartId; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/PostalCodesListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/PostalCodesListResponse.php deleted file mode 100644 index 9b70a658..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/PostalCodesListResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Dfareporting_PostalCode - */ - public function setPostalCodes($postalCodes) - { - $this->postalCodes = $postalCodes; - } - /** - * @return Google_Service_Dfareporting_PostalCode - */ - public function getPostalCodes() - { - return $this->postalCodes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Pricing.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Pricing.php deleted file mode 100644 index 03373f3e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Pricing.php +++ /dev/null @@ -1,83 +0,0 @@ -capCostType = $capCostType; - } - public function getCapCostType() - { - return $this->capCostType; - } - public function setEndDate($endDate) - { - $this->endDate = $endDate; - } - public function getEndDate() - { - return $this->endDate; - } - /** - * @param Google_Service_Dfareporting_Flight - */ - public function setFlights($flights) - { - $this->flights = $flights; - } - /** - * @return Google_Service_Dfareporting_Flight - */ - public function getFlights() - { - return $this->flights; - } - public function setGroupType($groupType) - { - $this->groupType = $groupType; - } - public function getGroupType() - { - return $this->groupType; - } - public function setPricingType($pricingType) - { - $this->pricingType = $pricingType; - } - public function getPricingType() - { - return $this->pricingType; - } - public function setStartDate($startDate) - { - $this->startDate = $startDate; - } - public function getStartDate() - { - return $this->startDate; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/PricingSchedule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/PricingSchedule.php deleted file mode 100644 index ede74a4a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/PricingSchedule.php +++ /dev/null @@ -1,101 +0,0 @@ -capCostOption = $capCostOption; - } - public function getCapCostOption() - { - return $this->capCostOption; - } - public function setEndDate($endDate) - { - $this->endDate = $endDate; - } - public function getEndDate() - { - return $this->endDate; - } - public function setFlighted($flighted) - { - $this->flighted = $flighted; - } - public function getFlighted() - { - return $this->flighted; - } - public function setFloodlightActivityId($floodlightActivityId) - { - $this->floodlightActivityId = $floodlightActivityId; - } - public function getFloodlightActivityId() - { - return $this->floodlightActivityId; - } - /** - * @param Google_Service_Dfareporting_PricingSchedulePricingPeriod - */ - public function setPricingPeriods($pricingPeriods) - { - $this->pricingPeriods = $pricingPeriods; - } - /** - * @return Google_Service_Dfareporting_PricingSchedulePricingPeriod - */ - public function getPricingPeriods() - { - return $this->pricingPeriods; - } - public function setPricingType($pricingType) - { - $this->pricingType = $pricingType; - } - public function getPricingType() - { - return $this->pricingType; - } - public function setStartDate($startDate) - { - $this->startDate = $startDate; - } - public function getStartDate() - { - return $this->startDate; - } - public function setTestingStartDate($testingStartDate) - { - $this->testingStartDate = $testingStartDate; - } - public function getTestingStartDate() - { - return $this->testingStartDate; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/PricingSchedulePricingPeriod.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/PricingSchedulePricingPeriod.php deleted file mode 100644 index 4f7cc002..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/PricingSchedulePricingPeriod.php +++ /dev/null @@ -1,66 +0,0 @@ -endDate = $endDate; - } - public function getEndDate() - { - return $this->endDate; - } - public function setPricingComment($pricingComment) - { - $this->pricingComment = $pricingComment; - } - public function getPricingComment() - { - return $this->pricingComment; - } - public function setRateOrCostNanos($rateOrCostNanos) - { - $this->rateOrCostNanos = $rateOrCostNanos; - } - public function getRateOrCostNanos() - { - return $this->rateOrCostNanos; - } - public function setStartDate($startDate) - { - $this->startDate = $startDate; - } - public function getStartDate() - { - return $this->startDate; - } - public function setUnits($units) - { - $this->units = $units; - } - public function getUnits() - { - return $this->units; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Project.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Project.php deleted file mode 100644 index 566d718b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Project.php +++ /dev/null @@ -1,226 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setAdvertiserId($advertiserId) - { - $this->advertiserId = $advertiserId; - } - public function getAdvertiserId() - { - return $this->advertiserId; - } - public function setAudienceAgeGroup($audienceAgeGroup) - { - $this->audienceAgeGroup = $audienceAgeGroup; - } - public function getAudienceAgeGroup() - { - return $this->audienceAgeGroup; - } - public function setAudienceGender($audienceGender) - { - $this->audienceGender = $audienceGender; - } - public function getAudienceGender() - { - return $this->audienceGender; - } - public function setBudget($budget) - { - $this->budget = $budget; - } - public function getBudget() - { - return $this->budget; - } - public function setClientBillingCode($clientBillingCode) - { - $this->clientBillingCode = $clientBillingCode; - } - public function getClientBillingCode() - { - return $this->clientBillingCode; - } - public function setClientName($clientName) - { - $this->clientName = $clientName; - } - public function getClientName() - { - return $this->clientName; - } - public function setEndDate($endDate) - { - $this->endDate = $endDate; - } - public function getEndDate() - { - return $this->endDate; - } - 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; - } - /** - * @param Google_Service_Dfareporting_LastModifiedInfo - */ - public function setLastModifiedInfo(Google_Service_Dfareporting_LastModifiedInfo $lastModifiedInfo) - { - $this->lastModifiedInfo = $lastModifiedInfo; - } - /** - * @return Google_Service_Dfareporting_LastModifiedInfo - */ - public function getLastModifiedInfo() - { - return $this->lastModifiedInfo; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOverview($overview) - { - $this->overview = $overview; - } - public function getOverview() - { - return $this->overview; - } - public function setStartDate($startDate) - { - $this->startDate = $startDate; - } - public function getStartDate() - { - return $this->startDate; - } - public function setSubaccountId($subaccountId) - { - $this->subaccountId = $subaccountId; - } - public function getSubaccountId() - { - return $this->subaccountId; - } - public function setTargetClicks($targetClicks) - { - $this->targetClicks = $targetClicks; - } - public function getTargetClicks() - { - return $this->targetClicks; - } - public function setTargetConversions($targetConversions) - { - $this->targetConversions = $targetConversions; - } - public function getTargetConversions() - { - return $this->targetConversions; - } - public function setTargetCpaNanos($targetCpaNanos) - { - $this->targetCpaNanos = $targetCpaNanos; - } - public function getTargetCpaNanos() - { - return $this->targetCpaNanos; - } - public function setTargetCpcNanos($targetCpcNanos) - { - $this->targetCpcNanos = $targetCpcNanos; - } - public function getTargetCpcNanos() - { - return $this->targetCpcNanos; - } - public function setTargetCpmActiveViewNanos($targetCpmActiveViewNanos) - { - $this->targetCpmActiveViewNanos = $targetCpmActiveViewNanos; - } - public function getTargetCpmActiveViewNanos() - { - return $this->targetCpmActiveViewNanos; - } - public function setTargetCpmNanos($targetCpmNanos) - { - $this->targetCpmNanos = $targetCpmNanos; - } - public function getTargetCpmNanos() - { - return $this->targetCpmNanos; - } - public function setTargetImpressions($targetImpressions) - { - $this->targetImpressions = $targetImpressions; - } - public function getTargetImpressions() - { - return $this->targetImpressions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ProjectsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ProjectsListResponse.php deleted file mode 100644 index c229b728..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ProjectsListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Dfareporting_Project - */ - public function setProjects($projects) - { - $this->projects = $projects; - } - /** - * @return Google_Service_Dfareporting_Project - */ - public function getProjects() - { - return $this->projects; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ReachReportCompatibleFields.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ReachReportCompatibleFields.php deleted file mode 100644 index 8a333c2c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ReachReportCompatibleFields.php +++ /dev/null @@ -1,111 +0,0 @@ -dimensionFilters = $dimensionFilters; - } - /** - * @return Google_Service_Dfareporting_Dimension - */ - public function getDimensionFilters() - { - return $this->dimensionFilters; - } - /** - * @param Google_Service_Dfareporting_Dimension - */ - public function setDimensions($dimensions) - { - $this->dimensions = $dimensions; - } - /** - * @return Google_Service_Dfareporting_Dimension - */ - public function getDimensions() - { - return $this->dimensions; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Dfareporting_Metric - */ - public function setMetrics($metrics) - { - $this->metrics = $metrics; - } - /** - * @return Google_Service_Dfareporting_Metric - */ - public function getMetrics() - { - return $this->metrics; - } - /** - * @param Google_Service_Dfareporting_Metric - */ - public function setPivotedActivityMetrics($pivotedActivityMetrics) - { - $this->pivotedActivityMetrics = $pivotedActivityMetrics; - } - /** - * @return Google_Service_Dfareporting_Metric - */ - public function getPivotedActivityMetrics() - { - return $this->pivotedActivityMetrics; - } - /** - * @param Google_Service_Dfareporting_Metric - */ - public function setReachByFrequencyMetrics($reachByFrequencyMetrics) - { - $this->reachByFrequencyMetrics = $reachByFrequencyMetrics; - } - /** - * @return Google_Service_Dfareporting_Metric - */ - public function getReachByFrequencyMetrics() - { - return $this->reachByFrequencyMetrics; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Recipient.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Recipient.php deleted file mode 100644 index 6e127cea..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Recipient.php +++ /dev/null @@ -1,48 +0,0 @@ -deliveryType = $deliveryType; - } - public function getDeliveryType() - { - return $this->deliveryType; - } - public function setEmail($email) - { - $this->email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Region.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Region.php deleted file mode 100644 index 7734b4bf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Region.php +++ /dev/null @@ -1,75 +0,0 @@ -countryCode = $countryCode; - } - public function getCountryCode() - { - return $this->countryCode; - } - public function setCountryDartId($countryDartId) - { - $this->countryDartId = $countryDartId; - } - public function getCountryDartId() - { - return $this->countryDartId; - } - public function setDartId($dartId) - { - $this->dartId = $dartId; - } - public function getDartId() - { - return $this->dartId; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setRegionCode($regionCode) - { - $this->regionCode = $regionCode; - } - public function getRegionCode() - { - return $this->regionCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/RegionsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/RegionsListResponse.php deleted file mode 100644 index e23fe1ab..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/RegionsListResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Dfareporting_Region - */ - public function setRegions($regions) - { - $this->regions = $regions; - } - /** - * @return Google_Service_Dfareporting_Region - */ - public function getRegions() - { - return $this->regions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/RemarketingList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/RemarketingList.php deleted file mode 100644 index 64c4acf8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/RemarketingList.php +++ /dev/null @@ -1,152 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setActive($active) - { - $this->active = $active; - } - public function getActive() - { - return $this->active; - } - public function setAdvertiserId($advertiserId) - { - $this->advertiserId = $advertiserId; - } - public function getAdvertiserId() - { - return $this->advertiserId; - } - /** - * @param Google_Service_Dfareporting_DimensionValue - */ - public function setAdvertiserIdDimensionValue(Google_Service_Dfareporting_DimensionValue $advertiserIdDimensionValue) - { - $this->advertiserIdDimensionValue = $advertiserIdDimensionValue; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getAdvertiserIdDimensionValue() - { - return $this->advertiserIdDimensionValue; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - 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 setLifeSpan($lifeSpan) - { - $this->lifeSpan = $lifeSpan; - } - public function getLifeSpan() - { - return $this->lifeSpan; - } - /** - * @param Google_Service_Dfareporting_ListPopulationRule - */ - public function setListPopulationRule(Google_Service_Dfareporting_ListPopulationRule $listPopulationRule) - { - $this->listPopulationRule = $listPopulationRule; - } - /** - * @return Google_Service_Dfareporting_ListPopulationRule - */ - public function getListPopulationRule() - { - return $this->listPopulationRule; - } - public function setListSize($listSize) - { - $this->listSize = $listSize; - } - public function getListSize() - { - return $this->listSize; - } - public function setListSource($listSource) - { - $this->listSource = $listSource; - } - public function getListSource() - { - return $this->listSource; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setSubaccountId($subaccountId) - { - $this->subaccountId = $subaccountId; - } - public function getSubaccountId() - { - return $this->subaccountId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/RemarketingListShare.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/RemarketingListShare.php deleted file mode 100644 index 8c1042d8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/RemarketingListShare.php +++ /dev/null @@ -1,58 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setRemarketingListId($remarketingListId) - { - $this->remarketingListId = $remarketingListId; - } - public function getRemarketingListId() - { - return $this->remarketingListId; - } - public function setSharedAccountIds($sharedAccountIds) - { - $this->sharedAccountIds = $sharedAccountIds; - } - public function getSharedAccountIds() - { - return $this->sharedAccountIds; - } - public function setSharedAdvertiserIds($sharedAdvertiserIds) - { - $this->sharedAdvertiserIds = $sharedAdvertiserIds; - } - public function getSharedAdvertiserIds() - { - return $this->sharedAdvertiserIds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/RemarketingListsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/RemarketingListsListResponse.php deleted file mode 100644 index 1ed900f3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/RemarketingListsListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Dfareporting_RemarketingList - */ - public function setRemarketingLists($remarketingLists) - { - $this->remarketingLists = $remarketingLists; - } - /** - * @return Google_Service_Dfareporting_RemarketingList - */ - public function getRemarketingLists() - { - return $this->remarketingLists; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Report.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Report.php deleted file mode 100644 index 700c15f2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Report.php +++ /dev/null @@ -1,232 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - /** - * @param Google_Service_Dfareporting_ReportCriteria - */ - public function setCriteria(Google_Service_Dfareporting_ReportCriteria $criteria) - { - $this->criteria = $criteria; - } - /** - * @return Google_Service_Dfareporting_ReportCriteria - */ - public function getCriteria() - { - return $this->criteria; - } - /** - * @param Google_Service_Dfareporting_ReportCrossDimensionReachCriteria - */ - public function setCrossDimensionReachCriteria(Google_Service_Dfareporting_ReportCrossDimensionReachCriteria $crossDimensionReachCriteria) - { - $this->crossDimensionReachCriteria = $crossDimensionReachCriteria; - } - /** - * @return Google_Service_Dfareporting_ReportCrossDimensionReachCriteria - */ - public function getCrossDimensionReachCriteria() - { - return $this->crossDimensionReachCriteria; - } - /** - * @param Google_Service_Dfareporting_ReportDelivery - */ - public function setDelivery(Google_Service_Dfareporting_ReportDelivery $delivery) - { - $this->delivery = $delivery; - } - /** - * @return Google_Service_Dfareporting_ReportDelivery - */ - public function getDelivery() - { - return $this->delivery; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setFileName($fileName) - { - $this->fileName = $fileName; - } - public function getFileName() - { - return $this->fileName; - } - /** - * @param Google_Service_Dfareporting_ReportFloodlightCriteria - */ - public function setFloodlightCriteria(Google_Service_Dfareporting_ReportFloodlightCriteria $floodlightCriteria) - { - $this->floodlightCriteria = $floodlightCriteria; - } - /** - * @return Google_Service_Dfareporting_ReportFloodlightCriteria - */ - public function getFloodlightCriteria() - { - return $this->floodlightCriteria; - } - public function setFormat($format) - { - $this->format = $format; - } - public function getFormat() - { - return $this->format; - } - 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 setLastModifiedTime($lastModifiedTime) - { - $this->lastModifiedTime = $lastModifiedTime; - } - public function getLastModifiedTime() - { - return $this->lastModifiedTime; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOwnerProfileId($ownerProfileId) - { - $this->ownerProfileId = $ownerProfileId; - } - public function getOwnerProfileId() - { - return $this->ownerProfileId; - } - /** - * @param Google_Service_Dfareporting_ReportPathToConversionCriteria - */ - public function setPathToConversionCriteria(Google_Service_Dfareporting_ReportPathToConversionCriteria $pathToConversionCriteria) - { - $this->pathToConversionCriteria = $pathToConversionCriteria; - } - /** - * @return Google_Service_Dfareporting_ReportPathToConversionCriteria - */ - public function getPathToConversionCriteria() - { - return $this->pathToConversionCriteria; - } - /** - * @param Google_Service_Dfareporting_ReportReachCriteria - */ - public function setReachCriteria(Google_Service_Dfareporting_ReportReachCriteria $reachCriteria) - { - $this->reachCriteria = $reachCriteria; - } - /** - * @return Google_Service_Dfareporting_ReportReachCriteria - */ - public function getReachCriteria() - { - return $this->reachCriteria; - } - /** - * @param Google_Service_Dfareporting_ReportSchedule - */ - public function setSchedule(Google_Service_Dfareporting_ReportSchedule $schedule) - { - $this->schedule = $schedule; - } - /** - * @return Google_Service_Dfareporting_ReportSchedule - */ - public function getSchedule() - { - return $this->schedule; - } - public function setSubAccountId($subAccountId) - { - $this->subAccountId = $subAccountId; - } - public function getSubAccountId() - { - return $this->subAccountId; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ReportCompatibleFields.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ReportCompatibleFields.php deleted file mode 100644 index 5a7d62f1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ReportCompatibleFields.php +++ /dev/null @@ -1,95 +0,0 @@ -dimensionFilters = $dimensionFilters; - } - /** - * @return Google_Service_Dfareporting_Dimension - */ - public function getDimensionFilters() - { - return $this->dimensionFilters; - } - /** - * @param Google_Service_Dfareporting_Dimension - */ - public function setDimensions($dimensions) - { - $this->dimensions = $dimensions; - } - /** - * @return Google_Service_Dfareporting_Dimension - */ - public function getDimensions() - { - return $this->dimensions; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Dfareporting_Metric - */ - public function setMetrics($metrics) - { - $this->metrics = $metrics; - } - /** - * @return Google_Service_Dfareporting_Metric - */ - public function getMetrics() - { - return $this->metrics; - } - /** - * @param Google_Service_Dfareporting_Metric - */ - public function setPivotedActivityMetrics($pivotedActivityMetrics) - { - $this->pivotedActivityMetrics = $pivotedActivityMetrics; - } - /** - * @return Google_Service_Dfareporting_Metric - */ - public function getPivotedActivityMetrics() - { - return $this->pivotedActivityMetrics; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ReportCriteria.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ReportCriteria.php deleted file mode 100644 index 5bd18927..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ReportCriteria.php +++ /dev/null @@ -1,111 +0,0 @@ -activities = $activities; - } - /** - * @return Google_Service_Dfareporting_Activities - */ - public function getActivities() - { - return $this->activities; - } - /** - * @param Google_Service_Dfareporting_CustomRichMediaEvents - */ - public function setCustomRichMediaEvents(Google_Service_Dfareporting_CustomRichMediaEvents $customRichMediaEvents) - { - $this->customRichMediaEvents = $customRichMediaEvents; - } - /** - * @return Google_Service_Dfareporting_CustomRichMediaEvents - */ - public function getCustomRichMediaEvents() - { - return $this->customRichMediaEvents; - } - /** - * @param Google_Service_Dfareporting_DateRange - */ - public function setDateRange(Google_Service_Dfareporting_DateRange $dateRange) - { - $this->dateRange = $dateRange; - } - /** - * @return Google_Service_Dfareporting_DateRange - */ - public function getDateRange() - { - return $this->dateRange; - } - /** - * @param Google_Service_Dfareporting_DimensionValue - */ - public function setDimensionFilters($dimensionFilters) - { - $this->dimensionFilters = $dimensionFilters; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getDimensionFilters() - { - return $this->dimensionFilters; - } - /** - * @param Google_Service_Dfareporting_SortedDimension - */ - public function setDimensions($dimensions) - { - $this->dimensions = $dimensions; - } - /** - * @return Google_Service_Dfareporting_SortedDimension - */ - public function getDimensions() - { - return $this->dimensions; - } - public function setMetricNames($metricNames) - { - $this->metricNames = $metricNames; - } - public function getMetricNames() - { - return $this->metricNames; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ReportCrossDimensionReachCriteria.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ReportCrossDimensionReachCriteria.php deleted file mode 100644 index 3a31e068..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ReportCrossDimensionReachCriteria.php +++ /dev/null @@ -1,106 +0,0 @@ -breakdown = $breakdown; - } - /** - * @return Google_Service_Dfareporting_SortedDimension - */ - public function getBreakdown() - { - return $this->breakdown; - } - /** - * @param Google_Service_Dfareporting_DateRange - */ - public function setDateRange(Google_Service_Dfareporting_DateRange $dateRange) - { - $this->dateRange = $dateRange; - } - /** - * @return Google_Service_Dfareporting_DateRange - */ - public function getDateRange() - { - return $this->dateRange; - } - public function setDimension($dimension) - { - $this->dimension = $dimension; - } - public function getDimension() - { - return $this->dimension; - } - /** - * @param Google_Service_Dfareporting_DimensionValue - */ - public function setDimensionFilters($dimensionFilters) - { - $this->dimensionFilters = $dimensionFilters; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getDimensionFilters() - { - return $this->dimensionFilters; - } - public function setMetricNames($metricNames) - { - $this->metricNames = $metricNames; - } - public function getMetricNames() - { - return $this->metricNames; - } - public function setOverlapMetricNames($overlapMetricNames) - { - $this->overlapMetricNames = $overlapMetricNames; - } - public function getOverlapMetricNames() - { - return $this->overlapMetricNames; - } - public function setPivoted($pivoted) - { - $this->pivoted = $pivoted; - } - public function getPivoted() - { - return $this->pivoted; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ReportDelivery.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ReportDelivery.php deleted file mode 100644 index 6c8f42bc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ReportDelivery.php +++ /dev/null @@ -1,65 +0,0 @@ -emailOwner = $emailOwner; - } - public function getEmailOwner() - { - return $this->emailOwner; - } - public function setEmailOwnerDeliveryType($emailOwnerDeliveryType) - { - $this->emailOwnerDeliveryType = $emailOwnerDeliveryType; - } - public function getEmailOwnerDeliveryType() - { - return $this->emailOwnerDeliveryType; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } - /** - * @param Google_Service_Dfareporting_Recipient - */ - public function setRecipients($recipients) - { - $this->recipients = $recipients; - } - /** - * @return Google_Service_Dfareporting_Recipient - */ - public function getRecipients() - { - return $this->recipients; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ReportFloodlightCriteria.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ReportFloodlightCriteria.php deleted file mode 100644 index 93eebada..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ReportFloodlightCriteria.php +++ /dev/null @@ -1,127 +0,0 @@ -customRichMediaEvents = $customRichMediaEvents; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getCustomRichMediaEvents() - { - return $this->customRichMediaEvents; - } - /** - * @param Google_Service_Dfareporting_DateRange - */ - public function setDateRange(Google_Service_Dfareporting_DateRange $dateRange) - { - $this->dateRange = $dateRange; - } - /** - * @return Google_Service_Dfareporting_DateRange - */ - public function getDateRange() - { - return $this->dateRange; - } - /** - * @param Google_Service_Dfareporting_DimensionValue - */ - public function setDimensionFilters($dimensionFilters) - { - $this->dimensionFilters = $dimensionFilters; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getDimensionFilters() - { - return $this->dimensionFilters; - } - /** - * @param Google_Service_Dfareporting_SortedDimension - */ - public function setDimensions($dimensions) - { - $this->dimensions = $dimensions; - } - /** - * @return Google_Service_Dfareporting_SortedDimension - */ - public function getDimensions() - { - return $this->dimensions; - } - /** - * @param Google_Service_Dfareporting_DimensionValue - */ - public function setFloodlightConfigId(Google_Service_Dfareporting_DimensionValue $floodlightConfigId) - { - $this->floodlightConfigId = $floodlightConfigId; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getFloodlightConfigId() - { - return $this->floodlightConfigId; - } - public function setMetricNames($metricNames) - { - $this->metricNames = $metricNames; - } - public function getMetricNames() - { - return $this->metricNames; - } - /** - * @param Google_Service_Dfareporting_ReportFloodlightCriteriaReportProperties - */ - public function setReportProperties(Google_Service_Dfareporting_ReportFloodlightCriteriaReportProperties $reportProperties) - { - $this->reportProperties = $reportProperties; - } - /** - * @return Google_Service_Dfareporting_ReportFloodlightCriteriaReportProperties - */ - public function getReportProperties() - { - return $this->reportProperties; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ReportFloodlightCriteriaReportProperties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ReportFloodlightCriteriaReportProperties.php deleted file mode 100644 index f13012a0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ReportFloodlightCriteriaReportProperties.php +++ /dev/null @@ -1,48 +0,0 @@ -includeAttributedIPConversions = $includeAttributedIPConversions; - } - public function getIncludeAttributedIPConversions() - { - return $this->includeAttributedIPConversions; - } - public function setIncludeUnattributedCookieConversions($includeUnattributedCookieConversions) - { - $this->includeUnattributedCookieConversions = $includeUnattributedCookieConversions; - } - public function getIncludeUnattributedCookieConversions() - { - return $this->includeUnattributedCookieConversions; - } - public function setIncludeUnattributedIPConversions($includeUnattributedIPConversions) - { - $this->includeUnattributedIPConversions = $includeUnattributedIPConversions; - } - public function getIncludeUnattributedIPConversions() - { - return $this->includeUnattributedIPConversions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ReportList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ReportList.php deleted file mode 100644 index 20d42ea4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ReportList.php +++ /dev/null @@ -1,65 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_Dfareporting_Report - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Dfareporting_Report - */ - public function getItems() - { - return $this->items; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ReportPathToConversionCriteria.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ReportPathToConversionCriteria.php deleted file mode 100644 index 269db0ee..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ReportPathToConversionCriteria.php +++ /dev/null @@ -1,159 +0,0 @@ -activityFilters = $activityFilters; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getActivityFilters() - { - return $this->activityFilters; - } - /** - * @param Google_Service_Dfareporting_SortedDimension - */ - public function setConversionDimensions($conversionDimensions) - { - $this->conversionDimensions = $conversionDimensions; - } - /** - * @return Google_Service_Dfareporting_SortedDimension - */ - public function getConversionDimensions() - { - return $this->conversionDimensions; - } - /** - * @param Google_Service_Dfareporting_SortedDimension - */ - public function setCustomFloodlightVariables($customFloodlightVariables) - { - $this->customFloodlightVariables = $customFloodlightVariables; - } - /** - * @return Google_Service_Dfareporting_SortedDimension - */ - public function getCustomFloodlightVariables() - { - return $this->customFloodlightVariables; - } - /** - * @param Google_Service_Dfareporting_DimensionValue - */ - public function setCustomRichMediaEvents($customRichMediaEvents) - { - $this->customRichMediaEvents = $customRichMediaEvents; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getCustomRichMediaEvents() - { - return $this->customRichMediaEvents; - } - /** - * @param Google_Service_Dfareporting_DateRange - */ - public function setDateRange(Google_Service_Dfareporting_DateRange $dateRange) - { - $this->dateRange = $dateRange; - } - /** - * @return Google_Service_Dfareporting_DateRange - */ - public function getDateRange() - { - return $this->dateRange; - } - /** - * @param Google_Service_Dfareporting_DimensionValue - */ - public function setFloodlightConfigId(Google_Service_Dfareporting_DimensionValue $floodlightConfigId) - { - $this->floodlightConfigId = $floodlightConfigId; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getFloodlightConfigId() - { - return $this->floodlightConfigId; - } - public function setMetricNames($metricNames) - { - $this->metricNames = $metricNames; - } - public function getMetricNames() - { - return $this->metricNames; - } - /** - * @param Google_Service_Dfareporting_SortedDimension - */ - public function setPerInteractionDimensions($perInteractionDimensions) - { - $this->perInteractionDimensions = $perInteractionDimensions; - } - /** - * @return Google_Service_Dfareporting_SortedDimension - */ - public function getPerInteractionDimensions() - { - return $this->perInteractionDimensions; - } - /** - * @param Google_Service_Dfareporting_ReportPathToConversionCriteriaReportProperties - */ - public function setReportProperties(Google_Service_Dfareporting_ReportPathToConversionCriteriaReportProperties $reportProperties) - { - $this->reportProperties = $reportProperties; - } - /** - * @return Google_Service_Dfareporting_ReportPathToConversionCriteriaReportProperties - */ - public function getReportProperties() - { - return $this->reportProperties; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ReportPathToConversionCriteriaReportProperties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ReportPathToConversionCriteriaReportProperties.php deleted file mode 100644 index c930ab82..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ReportPathToConversionCriteriaReportProperties.php +++ /dev/null @@ -1,102 +0,0 @@ -clicksLookbackWindow = $clicksLookbackWindow; - } - public function getClicksLookbackWindow() - { - return $this->clicksLookbackWindow; - } - public function setImpressionsLookbackWindow($impressionsLookbackWindow) - { - $this->impressionsLookbackWindow = $impressionsLookbackWindow; - } - public function getImpressionsLookbackWindow() - { - return $this->impressionsLookbackWindow; - } - public function setIncludeAttributedIPConversions($includeAttributedIPConversions) - { - $this->includeAttributedIPConversions = $includeAttributedIPConversions; - } - public function getIncludeAttributedIPConversions() - { - return $this->includeAttributedIPConversions; - } - public function setIncludeUnattributedCookieConversions($includeUnattributedCookieConversions) - { - $this->includeUnattributedCookieConversions = $includeUnattributedCookieConversions; - } - public function getIncludeUnattributedCookieConversions() - { - return $this->includeUnattributedCookieConversions; - } - public function setIncludeUnattributedIPConversions($includeUnattributedIPConversions) - { - $this->includeUnattributedIPConversions = $includeUnattributedIPConversions; - } - public function getIncludeUnattributedIPConversions() - { - return $this->includeUnattributedIPConversions; - } - public function setMaximumClickInteractions($maximumClickInteractions) - { - $this->maximumClickInteractions = $maximumClickInteractions; - } - public function getMaximumClickInteractions() - { - return $this->maximumClickInteractions; - } - public function setMaximumImpressionInteractions($maximumImpressionInteractions) - { - $this->maximumImpressionInteractions = $maximumImpressionInteractions; - } - public function getMaximumImpressionInteractions() - { - return $this->maximumImpressionInteractions; - } - public function setMaximumInteractionGap($maximumInteractionGap) - { - $this->maximumInteractionGap = $maximumInteractionGap; - } - public function getMaximumInteractionGap() - { - return $this->maximumInteractionGap; - } - public function setPivotOnInteractionPath($pivotOnInteractionPath) - { - $this->pivotOnInteractionPath = $pivotOnInteractionPath; - } - public function getPivotOnInteractionPath() - { - return $this->pivotOnInteractionPath; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ReportReachCriteria.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ReportReachCriteria.php deleted file mode 100644 index 7f9a1091..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ReportReachCriteria.php +++ /dev/null @@ -1,129 +0,0 @@ -activities = $activities; - } - /** - * @return Google_Service_Dfareporting_Activities - */ - public function getActivities() - { - return $this->activities; - } - /** - * @param Google_Service_Dfareporting_CustomRichMediaEvents - */ - public function setCustomRichMediaEvents(Google_Service_Dfareporting_CustomRichMediaEvents $customRichMediaEvents) - { - $this->customRichMediaEvents = $customRichMediaEvents; - } - /** - * @return Google_Service_Dfareporting_CustomRichMediaEvents - */ - public function getCustomRichMediaEvents() - { - return $this->customRichMediaEvents; - } - /** - * @param Google_Service_Dfareporting_DateRange - */ - public function setDateRange(Google_Service_Dfareporting_DateRange $dateRange) - { - $this->dateRange = $dateRange; - } - /** - * @return Google_Service_Dfareporting_DateRange - */ - public function getDateRange() - { - return $this->dateRange; - } - /** - * @param Google_Service_Dfareporting_DimensionValue - */ - public function setDimensionFilters($dimensionFilters) - { - $this->dimensionFilters = $dimensionFilters; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getDimensionFilters() - { - return $this->dimensionFilters; - } - /** - * @param Google_Service_Dfareporting_SortedDimension - */ - public function setDimensions($dimensions) - { - $this->dimensions = $dimensions; - } - /** - * @return Google_Service_Dfareporting_SortedDimension - */ - public function getDimensions() - { - return $this->dimensions; - } - public function setEnableAllDimensionCombinations($enableAllDimensionCombinations) - { - $this->enableAllDimensionCombinations = $enableAllDimensionCombinations; - } - public function getEnableAllDimensionCombinations() - { - return $this->enableAllDimensionCombinations; - } - public function setMetricNames($metricNames) - { - $this->metricNames = $metricNames; - } - public function getMetricNames() - { - return $this->metricNames; - } - public function setReachByFrequencyMetricNames($reachByFrequencyMetricNames) - { - $this->reachByFrequencyMetricNames = $reachByFrequencyMetricNames; - } - public function getReachByFrequencyMetricNames() - { - return $this->reachByFrequencyMetricNames; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ReportSchedule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ReportSchedule.php deleted file mode 100644 index 20862446..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ReportSchedule.php +++ /dev/null @@ -1,85 +0,0 @@ -active = $active; - } - public function getActive() - { - return $this->active; - } - public function setEvery($every) - { - $this->every = $every; - } - public function getEvery() - { - return $this->every; - } - public function setExpirationDate($expirationDate) - { - $this->expirationDate = $expirationDate; - } - public function getExpirationDate() - { - return $this->expirationDate; - } - public function setRepeats($repeats) - { - $this->repeats = $repeats; - } - public function getRepeats() - { - return $this->repeats; - } - public function setRepeatsOnWeekDays($repeatsOnWeekDays) - { - $this->repeatsOnWeekDays = $repeatsOnWeekDays; - } - public function getRepeatsOnWeekDays() - { - return $this->repeatsOnWeekDays; - } - public function setRunsOnDayOfMonth($runsOnDayOfMonth) - { - $this->runsOnDayOfMonth = $runsOnDayOfMonth; - } - public function getRunsOnDayOfMonth() - { - return $this->runsOnDayOfMonth; - } - public function setStartDate($startDate) - { - $this->startDate = $startDate; - } - public function getStartDate() - { - return $this->startDate; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ReportsConfiguration.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ReportsConfiguration.php deleted file mode 100644 index ee570861..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ReportsConfiguration.php +++ /dev/null @@ -1,55 +0,0 @@ -exposureToConversionEnabled = $exposureToConversionEnabled; - } - public function getExposureToConversionEnabled() - { - return $this->exposureToConversionEnabled; - } - /** - * @param Google_Service_Dfareporting_LookbackConfiguration - */ - public function setLookbackConfiguration(Google_Service_Dfareporting_LookbackConfiguration $lookbackConfiguration) - { - $this->lookbackConfiguration = $lookbackConfiguration; - } - /** - * @return Google_Service_Dfareporting_LookbackConfiguration - */ - public function getLookbackConfiguration() - { - return $this->lookbackConfiguration; - } - public function setReportGenerationTimeZoneId($reportGenerationTimeZoneId) - { - $this->reportGenerationTimeZoneId = $reportGenerationTimeZoneId; - } - public function getReportGenerationTimeZoneId() - { - return $this->reportGenerationTimeZoneId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/AccountActiveAdSummaries.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/AccountActiveAdSummaries.php deleted file mode 100644 index b698917a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/AccountActiveAdSummaries.php +++ /dev/null @@ -1,43 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $accountActiveAdSummaries = $dfareportingService->accountActiveAdSummaries; - * - */ -class Google_Service_Dfareporting_Resource_AccountActiveAdSummaries extends Google_Service_Resource -{ - /** - * Gets the account's active ad summary by account ID. - * (accountActiveAdSummaries.get) - * - * @param string $profileId User profile ID associated with this request. - * @param string $summaryAccountId Account ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_AccountActiveAdSummary - */ - public function get($profileId, $summaryAccountId, $optParams = array()) - { - $params = array('profileId' => $profileId, 'summaryAccountId' => $summaryAccountId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dfareporting_AccountActiveAdSummary"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/AccountPermissionGroups.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/AccountPermissionGroups.php deleted file mode 100644 index 1bdd38eb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/AccountPermissionGroups.php +++ /dev/null @@ -1,56 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $accountPermissionGroups = $dfareportingService->accountPermissionGroups; - * - */ -class Google_Service_Dfareporting_Resource_AccountPermissionGroups extends Google_Service_Resource -{ - /** - * Gets one account permission group by ID. (accountPermissionGroups.get) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Account permission group ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_AccountPermissionGroup - */ - public function get($profileId, $id, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dfareporting_AccountPermissionGroup"); - } - /** - * Retrieves the list of account permission groups. - * (accountPermissionGroups.listAccountPermissionGroups) - * - * @param string $profileId User profile ID associated with this request. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_AccountPermissionGroupsListResponse - */ - public function listAccountPermissionGroups($profileId, $optParams = array()) - { - $params = array('profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dfareporting_AccountPermissionGroupsListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/AccountPermissions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/AccountPermissions.php deleted file mode 100644 index fe5d4601..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/AccountPermissions.php +++ /dev/null @@ -1,56 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $accountPermissions = $dfareportingService->accountPermissions; - * - */ -class Google_Service_Dfareporting_Resource_AccountPermissions extends Google_Service_Resource -{ - /** - * Gets one account permission by ID. (accountPermissions.get) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Account permission ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_AccountPermission - */ - public function get($profileId, $id, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dfareporting_AccountPermission"); - } - /** - * Retrieves the list of account permissions. - * (accountPermissions.listAccountPermissions) - * - * @param string $profileId User profile ID associated with this request. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_AccountPermissionsListResponse - */ - public function listAccountPermissions($profileId, $optParams = array()) - { - $params = array('profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dfareporting_AccountPermissionsListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/AccountUserProfiles.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/AccountUserProfiles.php deleted file mode 100644 index bf08db11..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/AccountUserProfiles.php +++ /dev/null @@ -1,119 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $accountUserProfiles = $dfareportingService->accountUserProfiles; - * - */ -class Google_Service_Dfareporting_Resource_AccountUserProfiles extends Google_Service_Resource -{ - /** - * Gets one account user profile by ID. (accountUserProfiles.get) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id User profile ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_AccountUserProfile - */ - public function get($profileId, $id, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dfareporting_AccountUserProfile"); - } - /** - * Inserts a new account user profile. (accountUserProfiles.insert) - * - * @param string $profileId User profile ID associated with this request. - * @param Google_Service_Dfareporting_AccountUserProfile $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_AccountUserProfile - */ - public function insert($profileId, Google_Service_Dfareporting_AccountUserProfile $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Dfareporting_AccountUserProfile"); - } - /** - * Retrieves a list of account user profiles, possibly filtered. This method - * supports paging. (accountUserProfiles.listAccountUserProfiles) - * - * @param string $profileId User profile ID associated with this request. - * @param array $optParams Optional parameters. - * - * @opt_param bool active Select only active user profiles. - * @opt_param string ids Select only user profiles with these IDs. - * @opt_param int maxResults Maximum number of results to return. - * @opt_param string pageToken Value of the nextPageToken from the previous - * result page. - * @opt_param string searchString Allows searching for objects by name, ID or - * email. Wildcards (*) are allowed. For example, "user profile*2015" will - * return objects with names like "user profile June 2015", "user profile April - * 2015", or simply "user profile 2015". Most of the searches also add wildcards - * implicitly at the start and the end of the search string. For example, a - * search string of "user profile" will match objects with name "my user - * profile", "user profile 2015", or simply "user profile". - * @opt_param string sortField Field by which to sort the list. - * @opt_param string sortOrder Order of sorted results. - * @opt_param string subaccountId Select only user profiles with the specified - * subaccount ID. - * @opt_param string userRoleId Select only user profiles with the specified - * user role ID. - * @return Google_Service_Dfareporting_AccountUserProfilesListResponse - */ - public function listAccountUserProfiles($profileId, $optParams = array()) - { - $params = array('profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dfareporting_AccountUserProfilesListResponse"); - } - /** - * Updates an existing account user profile. This method supports patch - * semantics. (accountUserProfiles.patch) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id User profile ID. - * @param Google_Service_Dfareporting_AccountUserProfile $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_AccountUserProfile - */ - public function patch($profileId, $id, Google_Service_Dfareporting_AccountUserProfile $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Dfareporting_AccountUserProfile"); - } - /** - * Updates an existing account user profile. (accountUserProfiles.update) - * - * @param string $profileId User profile ID associated with this request. - * @param Google_Service_Dfareporting_AccountUserProfile $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_AccountUserProfile - */ - public function update($profileId, Google_Service_Dfareporting_AccountUserProfile $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Dfareporting_AccountUserProfile"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Accounts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Accounts.php deleted file mode 100644 index 3517357c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Accounts.php +++ /dev/null @@ -1,101 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $accounts = $dfareportingService->accounts; - * - */ -class Google_Service_Dfareporting_Resource_Accounts extends Google_Service_Resource -{ - /** - * Gets one account by ID. (accounts.get) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Account ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_Account - */ - public function get($profileId, $id, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dfareporting_Account"); - } - /** - * Retrieves the list of accounts, possibly filtered. This method supports - * paging. (accounts.listAccounts) - * - * @param string $profileId User profile ID associated with this request. - * @param array $optParams Optional parameters. - * - * @opt_param bool active Select only active accounts. Don't set this field to - * select both active and non-active accounts. - * @opt_param string ids Select only accounts with these IDs. - * @opt_param int maxResults Maximum number of results to return. - * @opt_param string pageToken Value of the nextPageToken from the previous - * result page. - * @opt_param string searchString Allows searching for objects by name or ID. - * Wildcards (*) are allowed. For example, "account*2015" will return objects - * with names like "account June 2015", "account April 2015", or simply "account - * 2015". Most of the searches also add wildcards implicitly at the start and - * the end of the search string. For example, a search string of "account" will - * match objects with name "my account", "account 2015", or simply "account". - * @opt_param string sortField Field by which to sort the list. - * @opt_param string sortOrder Order of sorted results. - * @return Google_Service_Dfareporting_AccountsListResponse - */ - public function listAccounts($profileId, $optParams = array()) - { - $params = array('profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dfareporting_AccountsListResponse"); - } - /** - * Updates an existing account. This method supports patch semantics. - * (accounts.patch) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Account ID. - * @param Google_Service_Dfareporting_Account $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_Account - */ - public function patch($profileId, $id, Google_Service_Dfareporting_Account $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Dfareporting_Account"); - } - /** - * Updates an existing account. (accounts.update) - * - * @param string $profileId User profile ID associated with this request. - * @param Google_Service_Dfareporting_Account $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_Account - */ - public function update($profileId, Google_Service_Dfareporting_Account $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Dfareporting_Account"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Ads.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Ads.php deleted file mode 100644 index 3e706a8e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Ads.php +++ /dev/null @@ -1,143 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $ads = $dfareportingService->ads; - * - */ -class Google_Service_Dfareporting_Resource_Ads extends Google_Service_Resource -{ - /** - * Gets one ad by ID. (ads.get) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Ad ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_Ad - */ - public function get($profileId, $id, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dfareporting_Ad"); - } - /** - * Inserts a new ad. (ads.insert) - * - * @param string $profileId User profile ID associated with this request. - * @param Google_Service_Dfareporting_Ad $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_Ad - */ - public function insert($profileId, Google_Service_Dfareporting_Ad $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Dfareporting_Ad"); - } - /** - * Retrieves a list of ads, possibly filtered. This method supports paging. - * (ads.listAds) - * - * @param string $profileId User profile ID associated with this request. - * @param array $optParams Optional parameters. - * - * @opt_param bool active Select only active ads. - * @opt_param string advertiserId Select only ads with this advertiser ID. - * @opt_param bool archived Select only archived ads. - * @opt_param string audienceSegmentIds Select only ads with these audience - * segment IDs. - * @opt_param string campaignIds Select only ads with these campaign IDs. - * @opt_param string compatibility Select default ads with the specified - * compatibility. Applicable when type is AD_SERVING_DEFAULT_AD. DISPLAY and - * DISPLAY_INTERSTITIAL refer to rendering either on desktop or on mobile - * devices for regular or interstitial ads, respectively. APP and - * APP_INTERSTITIAL are for rendering in mobile apps. IN_STREAM_VIDEO refers to - * rendering an in-stream video ads developed with the VAST standard. - * @opt_param string creativeIds Select only ads with these creative IDs - * assigned. - * @opt_param string creativeOptimizationConfigurationIds Select only ads with - * these creative optimization configuration IDs. - * @opt_param bool dynamicClickTracker Select only dynamic click trackers. - * Applicable when type is AD_SERVING_CLICK_TRACKER. If true, select dynamic - * click trackers. If false, select static click trackers. Leave unset to select - * both. - * @opt_param string ids Select only ads with these IDs. - * @opt_param string landingPageIds Select only ads with these landing page IDs. - * @opt_param int maxResults Maximum number of results to return. - * @opt_param string overriddenEventTagId Select only ads with this event tag - * override ID. - * @opt_param string pageToken Value of the nextPageToken from the previous - * result page. - * @opt_param string placementIds Select only ads with these placement IDs - * assigned. - * @opt_param string remarketingListIds Select only ads whose list targeting - * expression use these remarketing list IDs. - * @opt_param string searchString Allows searching for objects by name or ID. - * Wildcards (*) are allowed. For example, "ad*2015" will return objects with - * names like "ad June 2015", "ad April 2015", or simply "ad 2015". Most of the - * searches also add wildcards implicitly at the start and the end of the search - * string. For example, a search string of "ad" will match objects with name "my - * ad", "ad 2015", or simply "ad". - * @opt_param string sizeIds Select only ads with these size IDs. - * @opt_param string sortField Field by which to sort the list. - * @opt_param string sortOrder Order of sorted results. - * @opt_param bool sslCompliant Select only ads that are SSL-compliant. - * @opt_param bool sslRequired Select only ads that require SSL. - * @opt_param string type Select only ads with these types. - * @return Google_Service_Dfareporting_AdsListResponse - */ - public function listAds($profileId, $optParams = array()) - { - $params = array('profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dfareporting_AdsListResponse"); - } - /** - * Updates an existing ad. This method supports patch semantics. (ads.patch) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Ad ID. - * @param Google_Service_Dfareporting_Ad $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_Ad - */ - public function patch($profileId, $id, Google_Service_Dfareporting_Ad $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Dfareporting_Ad"); - } - /** - * Updates an existing ad. (ads.update) - * - * @param string $profileId User profile ID associated with this request. - * @param Google_Service_Dfareporting_Ad $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_Ad - */ - public function update($profileId, Google_Service_Dfareporting_Ad $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Dfareporting_Ad"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/AdvertiserGroups.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/AdvertiserGroups.php deleted file mode 100644 index 69f181ad..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/AdvertiserGroups.php +++ /dev/null @@ -1,127 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $advertiserGroups = $dfareportingService->advertiserGroups; - * - */ -class Google_Service_Dfareporting_Resource_AdvertiserGroups extends Google_Service_Resource -{ - /** - * Deletes an existing advertiser group. (advertiserGroups.delete) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Advertiser group ID. - * @param array $optParams Optional parameters. - */ - public function delete($profileId, $id, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Gets one advertiser group by ID. (advertiserGroups.get) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Advertiser group ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_AdvertiserGroup - */ - public function get($profileId, $id, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dfareporting_AdvertiserGroup"); - } - /** - * Inserts a new advertiser group. (advertiserGroups.insert) - * - * @param string $profileId User profile ID associated with this request. - * @param Google_Service_Dfareporting_AdvertiserGroup $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_AdvertiserGroup - */ - public function insert($profileId, Google_Service_Dfareporting_AdvertiserGroup $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Dfareporting_AdvertiserGroup"); - } - /** - * Retrieves a list of advertiser groups, possibly filtered. This method - * supports paging. (advertiserGroups.listAdvertiserGroups) - * - * @param string $profileId User profile ID associated with this request. - * @param array $optParams Optional parameters. - * - * @opt_param string ids Select only advertiser groups with these IDs. - * @opt_param int maxResults Maximum number of results to return. - * @opt_param string pageToken Value of the nextPageToken from the previous - * result page. - * @opt_param string searchString Allows searching for objects by name or ID. - * Wildcards (*) are allowed. For example, "advertiser*2015" will return objects - * with names like "advertiser group June 2015", "advertiser group April 2015", - * or simply "advertiser group 2015". Most of the searches also add wildcards - * implicitly at the start and the end of the search string. For example, a - * search string of "advertisergroup" will match objects with name "my - * advertisergroup", "advertisergroup 2015", or simply "advertisergroup". - * @opt_param string sortField Field by which to sort the list. - * @opt_param string sortOrder Order of sorted results. - * @return Google_Service_Dfareporting_AdvertiserGroupsListResponse - */ - public function listAdvertiserGroups($profileId, $optParams = array()) - { - $params = array('profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dfareporting_AdvertiserGroupsListResponse"); - } - /** - * Updates an existing advertiser group. This method supports patch semantics. - * (advertiserGroups.patch) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Advertiser group ID. - * @param Google_Service_Dfareporting_AdvertiserGroup $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_AdvertiserGroup - */ - public function patch($profileId, $id, Google_Service_Dfareporting_AdvertiserGroup $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Dfareporting_AdvertiserGroup"); - } - /** - * Updates an existing advertiser group. (advertiserGroups.update) - * - * @param string $profileId User profile ID associated with this request. - * @param Google_Service_Dfareporting_AdvertiserGroup $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_AdvertiserGroup - */ - public function update($profileId, Google_Service_Dfareporting_AdvertiserGroup $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Dfareporting_AdvertiserGroup"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/AdvertiserLandingPages.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/AdvertiserLandingPages.php deleted file mode 100644 index c2f569e6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/AdvertiserLandingPages.php +++ /dev/null @@ -1,122 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $advertiserLandingPages = $dfareportingService->advertiserLandingPages; - * - */ -class Google_Service_Dfareporting_Resource_AdvertiserLandingPages extends Google_Service_Resource -{ - /** - * Gets one landing page by ID. (advertiserLandingPages.get) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Landing page ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_LandingPage - */ - public function get($profileId, $id, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dfareporting_LandingPage"); - } - /** - * Inserts a new landing page. (advertiserLandingPages.insert) - * - * @param string $profileId User profile ID associated with this request. - * @param Google_Service_Dfareporting_LandingPage $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_LandingPage - */ - public function insert($profileId, Google_Service_Dfareporting_LandingPage $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Dfareporting_LandingPage"); - } - /** - * Retrieves a list of landing pages. - * (advertiserLandingPages.listAdvertiserLandingPages) - * - * @param string $profileId User profile ID associated with this request. - * @param array $optParams Optional parameters. - * - * @opt_param string advertiserIds Select only landing pages that belong to - * these advertisers. - * @opt_param bool archived Select only archived landing pages. Don't set this - * field to select both archived and non-archived landing pages. - * @opt_param string campaignIds Select only landing pages that are associated - * with these campaigns. - * @opt_param string ids Select only landing pages with these IDs. - * @opt_param int maxResults Maximum number of results to return. - * @opt_param string pageToken Value of the nextPageToken from the previous - * result page. - * @opt_param string searchString Allows searching for landing pages by name or - * ID. Wildcards (*) are allowed. For example, "landingpage*2017" will return - * landing pages with names like "landingpage July 2017", "landingpage March - * 2017", or simply "landingpage 2017". Most of the searches also add wildcards - * implicitly at the start and the end of the search string. For example, a - * search string of "landingpage" will match campaigns with name "my - * landingpage", "landingpage 2015", or simply "landingpage". - * @opt_param string sortField Field by which to sort the list. - * @opt_param string sortOrder Order of sorted results. - * @opt_param string subaccountId Select only landing pages that belong to this - * subaccount. - * @return Google_Service_Dfareporting_AdvertiserLandingPagesListResponse - */ - public function listAdvertiserLandingPages($profileId, $optParams = array()) - { - $params = array('profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dfareporting_AdvertiserLandingPagesListResponse"); - } - /** - * Updates an existing landing page. This method supports patch semantics. - * (advertiserLandingPages.patch) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Landing page ID. - * @param Google_Service_Dfareporting_LandingPage $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_LandingPage - */ - public function patch($profileId, $id, Google_Service_Dfareporting_LandingPage $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Dfareporting_LandingPage"); - } - /** - * Updates an existing landing page. (advertiserLandingPages.update) - * - * @param string $profileId User profile ID associated with this request. - * @param Google_Service_Dfareporting_LandingPage $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_LandingPage - */ - public function update($profileId, Google_Service_Dfareporting_LandingPage $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Dfareporting_LandingPage"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Advertisers.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Advertisers.php deleted file mode 100644 index 9d5c1e7a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Advertisers.php +++ /dev/null @@ -1,125 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $advertisers = $dfareportingService->advertisers; - * - */ -class Google_Service_Dfareporting_Resource_Advertisers extends Google_Service_Resource -{ - /** - * Gets one advertiser by ID. (advertisers.get) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Advertiser ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_Advertiser - */ - public function get($profileId, $id, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dfareporting_Advertiser"); - } - /** - * Inserts a new advertiser. (advertisers.insert) - * - * @param string $profileId User profile ID associated with this request. - * @param Google_Service_Dfareporting_Advertiser $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_Advertiser - */ - public function insert($profileId, Google_Service_Dfareporting_Advertiser $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Dfareporting_Advertiser"); - } - /** - * Retrieves a list of advertisers, possibly filtered. This method supports - * paging. (advertisers.listAdvertisers) - * - * @param string $profileId User profile ID associated with this request. - * @param array $optParams Optional parameters. - * - * @opt_param string advertiserGroupIds Select only advertisers with these - * advertiser group IDs. - * @opt_param string floodlightConfigurationIds Select only advertisers with - * these floodlight configuration IDs. - * @opt_param string ids Select only advertisers with these IDs. - * @opt_param bool includeAdvertisersWithoutGroupsOnly Select only advertisers - * which do not belong to any advertiser group. - * @opt_param int maxResults Maximum number of results to return. - * @opt_param bool onlyParent Select only advertisers which use another - * advertiser's floodlight configuration. - * @opt_param string pageToken Value of the nextPageToken from the previous - * result page. - * @opt_param string searchString Allows searching for objects by name or ID. - * Wildcards (*) are allowed. For example, "advertiser*2015" will return objects - * with names like "advertiser June 2015", "advertiser April 2015", or simply - * "advertiser 2015". Most of the searches also add wildcards implicitly at the - * start and the end of the search string. For example, a search string of - * "advertiser" will match objects with name "my advertiser", "advertiser 2015", - * or simply "advertiser". - * @opt_param string sortField Field by which to sort the list. - * @opt_param string sortOrder Order of sorted results. - * @opt_param string status Select only advertisers with the specified status. - * @opt_param string subaccountId Select only advertisers with these subaccount - * IDs. - * @return Google_Service_Dfareporting_AdvertisersListResponse - */ - public function listAdvertisers($profileId, $optParams = array()) - { - $params = array('profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dfareporting_AdvertisersListResponse"); - } - /** - * Updates an existing advertiser. This method supports patch semantics. - * (advertisers.patch) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Advertiser ID. - * @param Google_Service_Dfareporting_Advertiser $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_Advertiser - */ - public function patch($profileId, $id, Google_Service_Dfareporting_Advertiser $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Dfareporting_Advertiser"); - } - /** - * Updates an existing advertiser. (advertisers.update) - * - * @param string $profileId User profile ID associated with this request. - * @param Google_Service_Dfareporting_Advertiser $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_Advertiser - */ - public function update($profileId, Google_Service_Dfareporting_Advertiser $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Dfareporting_Advertiser"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Browsers.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Browsers.php deleted file mode 100644 index aae9dcb6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Browsers.php +++ /dev/null @@ -1,41 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $browsers = $dfareportingService->browsers; - * - */ -class Google_Service_Dfareporting_Resource_Browsers extends Google_Service_Resource -{ - /** - * Retrieves a list of browsers. (browsers.listBrowsers) - * - * @param string $profileId User profile ID associated with this request. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_BrowsersListResponse - */ - public function listBrowsers($profileId, $optParams = array()) - { - $params = array('profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dfareporting_BrowsersListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/CampaignCreativeAssociations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/CampaignCreativeAssociations.php deleted file mode 100644 index cae74e1a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/CampaignCreativeAssociations.php +++ /dev/null @@ -1,66 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $campaignCreativeAssociations = $dfareportingService->campaignCreativeAssociations; - * - */ -class Google_Service_Dfareporting_Resource_CampaignCreativeAssociations extends Google_Service_Resource -{ - /** - * Associates a creative with the specified campaign. This method creates a - * default ad with dimensions matching the creative in the campaign if such a - * default ad does not exist already. (campaignCreativeAssociations.insert) - * - * @param string $profileId User profile ID associated with this request. - * @param string $campaignId Campaign ID in this association. - * @param Google_Service_Dfareporting_CampaignCreativeAssociation $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_CampaignCreativeAssociation - */ - public function insert($profileId, $campaignId, Google_Service_Dfareporting_CampaignCreativeAssociation $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'campaignId' => $campaignId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Dfareporting_CampaignCreativeAssociation"); - } - /** - * Retrieves the list of creative IDs associated with the specified campaign. - * This method supports paging. - * (campaignCreativeAssociations.listCampaignCreativeAssociations) - * - * @param string $profileId User profile ID associated with this request. - * @param string $campaignId Campaign ID in this association. - * @param array $optParams Optional parameters. - * - * @opt_param int maxResults Maximum number of results to return. - * @opt_param string pageToken Value of the nextPageToken from the previous - * result page. - * @opt_param string sortOrder Order of sorted results. - * @return Google_Service_Dfareporting_CampaignCreativeAssociationsListResponse - */ - public function listCampaignCreativeAssociations($profileId, $campaignId, $optParams = array()) - { - $params = array('profileId' => $profileId, 'campaignId' => $campaignId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dfareporting_CampaignCreativeAssociationsListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Campaigns.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Campaigns.php deleted file mode 100644 index 7ce25fc2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Campaigns.php +++ /dev/null @@ -1,127 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $campaigns = $dfareportingService->campaigns; - * - */ -class Google_Service_Dfareporting_Resource_Campaigns extends Google_Service_Resource -{ - /** - * Gets one campaign by ID. (campaigns.get) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Campaign ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_Campaign - */ - public function get($profileId, $id, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dfareporting_Campaign"); - } - /** - * Inserts a new campaign. (campaigns.insert) - * - * @param string $profileId User profile ID associated with this request. - * @param Google_Service_Dfareporting_Campaign $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_Campaign - */ - public function insert($profileId, Google_Service_Dfareporting_Campaign $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Dfareporting_Campaign"); - } - /** - * Retrieves a list of campaigns, possibly filtered. This method supports - * paging. (campaigns.listCampaigns) - * - * @param string $profileId User profile ID associated with this request. - * @param array $optParams Optional parameters. - * - * @opt_param string advertiserGroupIds Select only campaigns whose advertisers - * belong to these advertiser groups. - * @opt_param string advertiserIds Select only campaigns that belong to these - * advertisers. - * @opt_param bool archived Select only archived campaigns. Don't set this field - * to select both archived and non-archived campaigns. - * @opt_param bool atLeastOneOptimizationActivity Select only campaigns that - * have at least one optimization activity. - * @opt_param string excludedIds Exclude campaigns with these IDs. - * @opt_param string ids Select only campaigns with these IDs. - * @opt_param int maxResults Maximum number of results to return. - * @opt_param string overriddenEventTagId Select only campaigns that have - * overridden this event tag ID. - * @opt_param string pageToken Value of the nextPageToken from the previous - * result page. - * @opt_param string searchString Allows searching for campaigns by name or ID. - * Wildcards (*) are allowed. For example, "campaign*2015" will return campaigns - * with names like "campaign June 2015", "campaign April 2015", or simply - * "campaign 2015". Most of the searches also add wildcards implicitly at the - * start and the end of the search string. For example, a search string of - * "campaign" will match campaigns with name "my campaign", "campaign 2015", or - * simply "campaign". - * @opt_param string sortField Field by which to sort the list. - * @opt_param string sortOrder Order of sorted results. - * @opt_param string subaccountId Select only campaigns that belong to this - * subaccount. - * @return Google_Service_Dfareporting_CampaignsListResponse - */ - public function listCampaigns($profileId, $optParams = array()) - { - $params = array('profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dfareporting_CampaignsListResponse"); - } - /** - * Updates an existing campaign. This method supports patch semantics. - * (campaigns.patch) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Campaign ID. - * @param Google_Service_Dfareporting_Campaign $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_Campaign - */ - public function patch($profileId, $id, Google_Service_Dfareporting_Campaign $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Dfareporting_Campaign"); - } - /** - * Updates an existing campaign. (campaigns.update) - * - * @param string $profileId User profile ID associated with this request. - * @param Google_Service_Dfareporting_Campaign $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_Campaign - */ - public function update($profileId, Google_Service_Dfareporting_Campaign $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Dfareporting_Campaign"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/ChangeLogs.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/ChangeLogs.php deleted file mode 100644 index fccaa6f1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/ChangeLogs.php +++ /dev/null @@ -1,81 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $changeLogs = $dfareportingService->changeLogs; - * - */ -class Google_Service_Dfareporting_Resource_ChangeLogs extends Google_Service_Resource -{ - /** - * Gets one change log by ID. (changeLogs.get) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Change log ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_ChangeLog - */ - public function get($profileId, $id, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dfareporting_ChangeLog"); - } - /** - * Retrieves a list of change logs. This method supports paging. - * (changeLogs.listChangeLogs) - * - * @param string $profileId User profile ID associated with this request. - * @param array $optParams Optional parameters. - * - * @opt_param string action Select only change logs with the specified action. - * @opt_param string ids Select only change logs with these IDs. - * @opt_param string maxChangeTime Select only change logs whose change time is - * before the specified maxChangeTime.The time should be formatted as an RFC3339 - * date/time string. For example, for 10:54 PM on July 18th, 2015, in the - * America/New York time zone, the format is "2015-07-18T22:54:00-04:00". In - * other words, the year, month, day, the letter T, the hour (24-hour clock - * system), minute, second, and then the time zone offset. - * @opt_param int maxResults Maximum number of results to return. - * @opt_param string minChangeTime Select only change logs whose change time is - * after the specified minChangeTime.The time should be formatted as an RFC3339 - * date/time string. For example, for 10:54 PM on July 18th, 2015, in the - * America/New York time zone, the format is "2015-07-18T22:54:00-04:00". In - * other words, the year, month, day, the letter T, the hour (24-hour clock - * system), minute, second, and then the time zone offset. - * @opt_param string objectIds Select only change logs with these object IDs. - * @opt_param string objectType Select only change logs with the specified - * object type. - * @opt_param string pageToken Value of the nextPageToken from the previous - * result page. - * @opt_param string searchString Select only change logs whose object ID, user - * name, old or new values match the search string. - * @opt_param string userProfileIds Select only change logs with these user - * profile IDs. - * @return Google_Service_Dfareporting_ChangeLogsListResponse - */ - public function listChangeLogs($profileId, $optParams = array()) - { - $params = array('profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dfareporting_ChangeLogsListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Cities.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Cities.php deleted file mode 100644 index 5f2d9e2f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Cities.php +++ /dev/null @@ -1,47 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $cities = $dfareportingService->cities; - * - */ -class Google_Service_Dfareporting_Resource_Cities extends Google_Service_Resource -{ - /** - * Retrieves a list of cities, possibly filtered. (cities.listCities) - * - * @param string $profileId User profile ID associated with this request. - * @param array $optParams Optional parameters. - * - * @opt_param string countryDartIds Select only cities from these countries. - * @opt_param string dartIds Select only cities with these DART IDs. - * @opt_param string namePrefix Select only cities with names starting with this - * prefix. - * @opt_param string regionDartIds Select only cities from these regions. - * @return Google_Service_Dfareporting_CitiesListResponse - */ - public function listCities($profileId, $optParams = array()) - { - $params = array('profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dfareporting_CitiesListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/ConnectionTypes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/ConnectionTypes.php deleted file mode 100644 index 992ba6f1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/ConnectionTypes.php +++ /dev/null @@ -1,55 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $connectionTypes = $dfareportingService->connectionTypes; - * - */ -class Google_Service_Dfareporting_Resource_ConnectionTypes extends Google_Service_Resource -{ - /** - * Gets one connection type by ID. (connectionTypes.get) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Connection type ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_ConnectionType - */ - public function get($profileId, $id, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dfareporting_ConnectionType"); - } - /** - * Retrieves a list of connection types. (connectionTypes.listConnectionTypes) - * - * @param string $profileId User profile ID associated with this request. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_ConnectionTypesListResponse - */ - public function listConnectionTypes($profileId, $optParams = array()) - { - $params = array('profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dfareporting_ConnectionTypesListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/ContentCategories.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/ContentCategories.php deleted file mode 100644 index 4a41230b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/ContentCategories.php +++ /dev/null @@ -1,127 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $contentCategories = $dfareportingService->contentCategories; - * - */ -class Google_Service_Dfareporting_Resource_ContentCategories extends Google_Service_Resource -{ - /** - * Deletes an existing content category. (contentCategories.delete) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Content category ID. - * @param array $optParams Optional parameters. - */ - public function delete($profileId, $id, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Gets one content category by ID. (contentCategories.get) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Content category ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_ContentCategory - */ - public function get($profileId, $id, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dfareporting_ContentCategory"); - } - /** - * Inserts a new content category. (contentCategories.insert) - * - * @param string $profileId User profile ID associated with this request. - * @param Google_Service_Dfareporting_ContentCategory $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_ContentCategory - */ - public function insert($profileId, Google_Service_Dfareporting_ContentCategory $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Dfareporting_ContentCategory"); - } - /** - * Retrieves a list of content categories, possibly filtered. This method - * supports paging. (contentCategories.listContentCategories) - * - * @param string $profileId User profile ID associated with this request. - * @param array $optParams Optional parameters. - * - * @opt_param string ids Select only content categories with these IDs. - * @opt_param int maxResults Maximum number of results to return. - * @opt_param string pageToken Value of the nextPageToken from the previous - * result page. - * @opt_param string searchString Allows searching for objects by name or ID. - * Wildcards (*) are allowed. For example, "contentcategory*2015" will return - * objects with names like "contentcategory June 2015", "contentcategory April - * 2015", or simply "contentcategory 2015". Most of the searches also add - * wildcards implicitly at the start and the end of the search string. For - * example, a search string of "contentcategory" will match objects with name - * "my contentcategory", "contentcategory 2015", or simply "contentcategory". - * @opt_param string sortField Field by which to sort the list. - * @opt_param string sortOrder Order of sorted results. - * @return Google_Service_Dfareporting_ContentCategoriesListResponse - */ - public function listContentCategories($profileId, $optParams = array()) - { - $params = array('profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dfareporting_ContentCategoriesListResponse"); - } - /** - * Updates an existing content category. This method supports patch semantics. - * (contentCategories.patch) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Content category ID. - * @param Google_Service_Dfareporting_ContentCategory $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_ContentCategory - */ - public function patch($profileId, $id, Google_Service_Dfareporting_ContentCategory $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Dfareporting_ContentCategory"); - } - /** - * Updates an existing content category. (contentCategories.update) - * - * @param string $profileId User profile ID associated with this request. - * @param Google_Service_Dfareporting_ContentCategory $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_ContentCategory - */ - public function update($profileId, Google_Service_Dfareporting_ContentCategory $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Dfareporting_ContentCategory"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Conversions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Conversions.php deleted file mode 100644 index e61df528..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Conversions.php +++ /dev/null @@ -1,56 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $conversions = $dfareportingService->conversions; - * - */ -class Google_Service_Dfareporting_Resource_Conversions extends Google_Service_Resource -{ - /** - * Inserts conversions. (conversions.batchinsert) - * - * @param string $profileId User profile ID associated with this request. - * @param Google_Service_Dfareporting_ConversionsBatchInsertRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_ConversionsBatchInsertResponse - */ - public function batchinsert($profileId, Google_Service_Dfareporting_ConversionsBatchInsertRequest $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('batchinsert', array($params), "Google_Service_Dfareporting_ConversionsBatchInsertResponse"); - } - /** - * Updates existing conversions. (conversions.batchupdate) - * - * @param string $profileId User profile ID associated with this request. - * @param Google_Service_Dfareporting_ConversionsBatchUpdateRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_ConversionsBatchUpdateResponse - */ - public function batchupdate($profileId, Google_Service_Dfareporting_ConversionsBatchUpdateRequest $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('batchupdate', array($params), "Google_Service_Dfareporting_ConversionsBatchUpdateResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Countries.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Countries.php deleted file mode 100644 index 99aeb146..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Countries.php +++ /dev/null @@ -1,55 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $countries = $dfareportingService->countries; - * - */ -class Google_Service_Dfareporting_Resource_Countries extends Google_Service_Resource -{ - /** - * Gets one country by ID. (countries.get) - * - * @param string $profileId User profile ID associated with this request. - * @param string $dartId Country DART ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_Country - */ - public function get($profileId, $dartId, $optParams = array()) - { - $params = array('profileId' => $profileId, 'dartId' => $dartId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dfareporting_Country"); - } - /** - * Retrieves a list of countries. (countries.listCountries) - * - * @param string $profileId User profile ID associated with this request. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_CountriesListResponse - */ - public function listCountries($profileId, $optParams = array()) - { - $params = array('profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dfareporting_CountriesListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/CreativeAssets.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/CreativeAssets.php deleted file mode 100644 index c3331172..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/CreativeAssets.php +++ /dev/null @@ -1,44 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $creativeAssets = $dfareportingService->creativeAssets; - * - */ -class Google_Service_Dfareporting_Resource_CreativeAssets extends Google_Service_Resource -{ - /** - * Inserts a new creative asset. (creativeAssets.insert) - * - * @param string $profileId User profile ID associated with this request. - * @param string $advertiserId Advertiser ID of this creative. This is a - * required field. - * @param Google_Service_Dfareporting_CreativeAssetMetadata $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_CreativeAssetMetadata - */ - public function insert($profileId, $advertiserId, Google_Service_Dfareporting_CreativeAssetMetadata $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'advertiserId' => $advertiserId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Dfareporting_CreativeAssetMetadata"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/CreativeFieldValues.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/CreativeFieldValues.php deleted file mode 100644 index ee69ea41..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/CreativeFieldValues.php +++ /dev/null @@ -1,134 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $creativeFieldValues = $dfareportingService->creativeFieldValues; - * - */ -class Google_Service_Dfareporting_Resource_CreativeFieldValues extends Google_Service_Resource -{ - /** - * Deletes an existing creative field value. (creativeFieldValues.delete) - * - * @param string $profileId User profile ID associated with this request. - * @param string $creativeFieldId Creative field ID for this creative field - * value. - * @param string $id Creative Field Value ID - * @param array $optParams Optional parameters. - */ - public function delete($profileId, $creativeFieldId, $id, $optParams = array()) - { - $params = array('profileId' => $profileId, 'creativeFieldId' => $creativeFieldId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Gets one creative field value by ID. (creativeFieldValues.get) - * - * @param string $profileId User profile ID associated with this request. - * @param string $creativeFieldId Creative field ID for this creative field - * value. - * @param string $id Creative Field Value ID - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_CreativeFieldValue - */ - public function get($profileId, $creativeFieldId, $id, $optParams = array()) - { - $params = array('profileId' => $profileId, 'creativeFieldId' => $creativeFieldId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dfareporting_CreativeFieldValue"); - } - /** - * Inserts a new creative field value. (creativeFieldValues.insert) - * - * @param string $profileId User profile ID associated with this request. - * @param string $creativeFieldId Creative field ID for this creative field - * value. - * @param Google_Service_Dfareporting_CreativeFieldValue $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_CreativeFieldValue - */ - public function insert($profileId, $creativeFieldId, Google_Service_Dfareporting_CreativeFieldValue $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'creativeFieldId' => $creativeFieldId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Dfareporting_CreativeFieldValue"); - } - /** - * Retrieves a list of creative field values, possibly filtered. This method - * supports paging. (creativeFieldValues.listCreativeFieldValues) - * - * @param string $profileId User profile ID associated with this request. - * @param string $creativeFieldId Creative field ID for this creative field - * value. - * @param array $optParams Optional parameters. - * - * @opt_param string ids Select only creative field values with these IDs. - * @opt_param int maxResults Maximum number of results to return. - * @opt_param string pageToken Value of the nextPageToken from the previous - * result page. - * @opt_param string searchString Allows searching for creative field values by - * their values. Wildcards (e.g. *) are not allowed. - * @opt_param string sortField Field by which to sort the list. - * @opt_param string sortOrder Order of sorted results. - * @return Google_Service_Dfareporting_CreativeFieldValuesListResponse - */ - public function listCreativeFieldValues($profileId, $creativeFieldId, $optParams = array()) - { - $params = array('profileId' => $profileId, 'creativeFieldId' => $creativeFieldId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dfareporting_CreativeFieldValuesListResponse"); - } - /** - * Updates an existing creative field value. This method supports patch - * semantics. (creativeFieldValues.patch) - * - * @param string $profileId User profile ID associated with this request. - * @param string $creativeFieldId Creative field ID for this creative field - * value. - * @param string $id Creative Field Value ID - * @param Google_Service_Dfareporting_CreativeFieldValue $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_CreativeFieldValue - */ - public function patch($profileId, $creativeFieldId, $id, Google_Service_Dfareporting_CreativeFieldValue $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'creativeFieldId' => $creativeFieldId, 'id' => $id, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Dfareporting_CreativeFieldValue"); - } - /** - * Updates an existing creative field value. (creativeFieldValues.update) - * - * @param string $profileId User profile ID associated with this request. - * @param string $creativeFieldId Creative field ID for this creative field - * value. - * @param Google_Service_Dfareporting_CreativeFieldValue $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_CreativeFieldValue - */ - public function update($profileId, $creativeFieldId, Google_Service_Dfareporting_CreativeFieldValue $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'creativeFieldId' => $creativeFieldId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Dfareporting_CreativeFieldValue"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/CreativeFields.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/CreativeFields.php deleted file mode 100644 index 33a589c1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/CreativeFields.php +++ /dev/null @@ -1,130 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $creativeFields = $dfareportingService->creativeFields; - * - */ -class Google_Service_Dfareporting_Resource_CreativeFields extends Google_Service_Resource -{ - /** - * Deletes an existing creative field. (creativeFields.delete) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Creative Field ID - * @param array $optParams Optional parameters. - */ - public function delete($profileId, $id, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Gets one creative field by ID. (creativeFields.get) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Creative Field ID - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_CreativeField - */ - public function get($profileId, $id, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dfareporting_CreativeField"); - } - /** - * Inserts a new creative field. (creativeFields.insert) - * - * @param string $profileId User profile ID associated with this request. - * @param Google_Service_Dfareporting_CreativeField $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_CreativeField - */ - public function insert($profileId, Google_Service_Dfareporting_CreativeField $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Dfareporting_CreativeField"); - } - /** - * Retrieves a list of creative fields, possibly filtered. This method supports - * paging. (creativeFields.listCreativeFields) - * - * @param string $profileId User profile ID associated with this request. - * @param array $optParams Optional parameters. - * - * @opt_param string advertiserIds Select only creative fields that belong to - * these advertisers. - * @opt_param string ids Select only creative fields with these IDs. - * @opt_param int maxResults Maximum number of results to return. - * @opt_param string pageToken Value of the nextPageToken from the previous - * result page. - * @opt_param string searchString Allows searching for creative fields by name - * or ID. Wildcards (*) are allowed. For example, "creativefield*2015" will - * return creative fields with names like "creativefield June 2015", - * "creativefield April 2015", or simply "creativefield 2015". Most of the - * searches also add wild-cards implicitly at the start and the end of the - * search string. For example, a search string of "creativefield" will match - * creative fields with the name "my creativefield", "creativefield 2015", or - * simply "creativefield". - * @opt_param string sortField Field by which to sort the list. - * @opt_param string sortOrder Order of sorted results. - * @return Google_Service_Dfareporting_CreativeFieldsListResponse - */ - public function listCreativeFields($profileId, $optParams = array()) - { - $params = array('profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dfareporting_CreativeFieldsListResponse"); - } - /** - * Updates an existing creative field. This method supports patch semantics. - * (creativeFields.patch) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Creative Field ID - * @param Google_Service_Dfareporting_CreativeField $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_CreativeField - */ - public function patch($profileId, $id, Google_Service_Dfareporting_CreativeField $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Dfareporting_CreativeField"); - } - /** - * Updates an existing creative field. (creativeFields.update) - * - * @param string $profileId User profile ID associated with this request. - * @param Google_Service_Dfareporting_CreativeField $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_CreativeField - */ - public function update($profileId, Google_Service_Dfareporting_CreativeField $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Dfareporting_CreativeField"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/CreativeGroups.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/CreativeGroups.php deleted file mode 100644 index 8c3aa5fd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/CreativeGroups.php +++ /dev/null @@ -1,119 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $creativeGroups = $dfareportingService->creativeGroups; - * - */ -class Google_Service_Dfareporting_Resource_CreativeGroups extends Google_Service_Resource -{ - /** - * Gets one creative group by ID. (creativeGroups.get) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Creative group ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_CreativeGroup - */ - public function get($profileId, $id, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dfareporting_CreativeGroup"); - } - /** - * Inserts a new creative group. (creativeGroups.insert) - * - * @param string $profileId User profile ID associated with this request. - * @param Google_Service_Dfareporting_CreativeGroup $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_CreativeGroup - */ - public function insert($profileId, Google_Service_Dfareporting_CreativeGroup $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Dfareporting_CreativeGroup"); - } - /** - * Retrieves a list of creative groups, possibly filtered. This method supports - * paging. (creativeGroups.listCreativeGroups) - * - * @param string $profileId User profile ID associated with this request. - * @param array $optParams Optional parameters. - * - * @opt_param string advertiserIds Select only creative groups that belong to - * these advertisers. - * @opt_param int groupNumber Select only creative groups that belong to this - * subgroup. - * @opt_param string ids Select only creative groups with these IDs. - * @opt_param int maxResults Maximum number of results to return. - * @opt_param string pageToken Value of the nextPageToken from the previous - * result page. - * @opt_param string searchString Allows searching for creative groups by name - * or ID. Wildcards (*) are allowed. For example, "creativegroup*2015" will - * return creative groups with names like "creativegroup June 2015", - * "creativegroup April 2015", or simply "creativegroup 2015". Most of the - * searches also add wild-cards implicitly at the start and the end of the - * search string. For example, a search string of "creativegroup" will match - * creative groups with the name "my creativegroup", "creativegroup 2015", or - * simply "creativegroup". - * @opt_param string sortField Field by which to sort the list. - * @opt_param string sortOrder Order of sorted results. - * @return Google_Service_Dfareporting_CreativeGroupsListResponse - */ - public function listCreativeGroups($profileId, $optParams = array()) - { - $params = array('profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dfareporting_CreativeGroupsListResponse"); - } - /** - * Updates an existing creative group. This method supports patch semantics. - * (creativeGroups.patch) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Creative group ID. - * @param Google_Service_Dfareporting_CreativeGroup $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_CreativeGroup - */ - public function patch($profileId, $id, Google_Service_Dfareporting_CreativeGroup $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Dfareporting_CreativeGroup"); - } - /** - * Updates an existing creative group. (creativeGroups.update) - * - * @param string $profileId User profile ID associated with this request. - * @param Google_Service_Dfareporting_CreativeGroup $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_CreativeGroup - */ - public function update($profileId, Google_Service_Dfareporting_CreativeGroup $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Dfareporting_CreativeGroup"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Creatives.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Creatives.php deleted file mode 100644 index 5203e60e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Creatives.php +++ /dev/null @@ -1,130 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $creatives = $dfareportingService->creatives; - * - */ -class Google_Service_Dfareporting_Resource_Creatives extends Google_Service_Resource -{ - /** - * Gets one creative by ID. (creatives.get) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Creative ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_Creative - */ - public function get($profileId, $id, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dfareporting_Creative"); - } - /** - * Inserts a new creative. (creatives.insert) - * - * @param string $profileId User profile ID associated with this request. - * @param Google_Service_Dfareporting_Creative $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_Creative - */ - public function insert($profileId, Google_Service_Dfareporting_Creative $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Dfareporting_Creative"); - } - /** - * Retrieves a list of creatives, possibly filtered. This method supports - * paging. (creatives.listCreatives) - * - * @param string $profileId User profile ID associated with this request. - * @param array $optParams Optional parameters. - * - * @opt_param bool active Select only active creatives. Leave blank to select - * active and inactive creatives. - * @opt_param string advertiserId Select only creatives with this advertiser ID. - * @opt_param bool archived Select only archived creatives. Leave blank to - * select archived and unarchived creatives. - * @opt_param string campaignId Select only creatives with this campaign ID. - * @opt_param string companionCreativeIds Select only in-stream video creatives - * with these companion IDs. - * @opt_param string creativeFieldIds Select only creatives with these creative - * field IDs. - * @opt_param string ids Select only creatives with these IDs. - * @opt_param int maxResults Maximum number of results to return. - * @opt_param string pageToken Value of the nextPageToken from the previous - * result page. - * @opt_param string renderingIds Select only creatives with these rendering - * IDs. - * @opt_param string searchString Allows searching for objects by name or ID. - * Wildcards (*) are allowed. For example, "creative*2015" will return objects - * with names like "creative June 2015", "creative April 2015", or simply - * "creative 2015". Most of the searches also add wildcards implicitly at the - * start and the end of the search string. For example, a search string of - * "creative" will match objects with name "my creative", "creative 2015", or - * simply "creative". - * @opt_param string sizeIds Select only creatives with these size IDs. - * @opt_param string sortField Field by which to sort the list. - * @opt_param string sortOrder Order of sorted results. - * @opt_param string studioCreativeId Select only creatives corresponding to - * this Studio creative ID. - * @opt_param string types Select only creatives with these creative types. - * @return Google_Service_Dfareporting_CreativesListResponse - */ - public function listCreatives($profileId, $optParams = array()) - { - $params = array('profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dfareporting_CreativesListResponse"); - } - /** - * Updates an existing creative. This method supports patch semantics. - * (creatives.patch) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Creative ID. - * @param Google_Service_Dfareporting_Creative $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_Creative - */ - public function patch($profileId, $id, Google_Service_Dfareporting_Creative $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Dfareporting_Creative"); - } - /** - * Updates an existing creative. (creatives.update) - * - * @param string $profileId User profile ID associated with this request. - * @param Google_Service_Dfareporting_Creative $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_Creative - */ - public function update($profileId, Google_Service_Dfareporting_Creative $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Dfareporting_Creative"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/CustomEvents.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/CustomEvents.php deleted file mode 100644 index 4672b345..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/CustomEvents.php +++ /dev/null @@ -1,42 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $customEvents = $dfareportingService->customEvents; - * - */ -class Google_Service_Dfareporting_Resource_CustomEvents extends Google_Service_Resource -{ - /** - * Inserts custom events. (customEvents.batchinsert) - * - * @param string $profileId User profile ID associated with this request. - * @param Google_Service_Dfareporting_CustomEventsBatchInsertRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_CustomEventsBatchInsertResponse - */ - public function batchinsert($profileId, Google_Service_Dfareporting_CustomEventsBatchInsertRequest $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('batchinsert', array($params), "Google_Service_Dfareporting_CustomEventsBatchInsertResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/DimensionValues.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/DimensionValues.php deleted file mode 100644 index 97276ebb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/DimensionValues.php +++ /dev/null @@ -1,47 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $dimensionValues = $dfareportingService->dimensionValues; - * - */ -class Google_Service_Dfareporting_Resource_DimensionValues extends Google_Service_Resource -{ - /** - * Retrieves list of report dimension values for a list of filters. - * (dimensionValues.query) - * - * @param string $profileId The DFA user profile ID. - * @param Google_Service_Dfareporting_DimensionValueRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param int maxResults Maximum number of results to return. - * @opt_param string pageToken The value of the nextToken from the previous - * result page. - * @return Google_Service_Dfareporting_DimensionValueList - */ - public function query($profileId, Google_Service_Dfareporting_DimensionValueRequest $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('query', array($params), "Google_Service_Dfareporting_DimensionValueList"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/DirectorySites.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/DirectorySites.php deleted file mode 100644 index d32831aa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/DirectorySites.php +++ /dev/null @@ -1,94 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $directorySites = $dfareportingService->directorySites; - * - */ -class Google_Service_Dfareporting_Resource_DirectorySites extends Google_Service_Resource -{ - /** - * Gets one directory site by ID. (directorySites.get) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Directory site ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_DirectorySite - */ - public function get($profileId, $id, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dfareporting_DirectorySite"); - } - /** - * Inserts a new directory site. (directorySites.insert) - * - * @param string $profileId User profile ID associated with this request. - * @param Google_Service_Dfareporting_DirectorySite $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_DirectorySite - */ - public function insert($profileId, Google_Service_Dfareporting_DirectorySite $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Dfareporting_DirectorySite"); - } - /** - * Retrieves a list of directory sites, possibly filtered. This method supports - * paging. (directorySites.listDirectorySites) - * - * @param string $profileId User profile ID associated with this request. - * @param array $optParams Optional parameters. - * - * @opt_param bool acceptsInStreamVideoPlacements This search filter is no - * longer supported and will have no effect on the results returned. - * @opt_param bool acceptsInterstitialPlacements This search filter is no longer - * supported and will have no effect on the results returned. - * @opt_param bool acceptsPublisherPaidPlacements Select only directory sites - * that accept publisher paid placements. This field can be left blank. - * @opt_param bool active Select only active directory sites. Leave blank to - * retrieve both active and inactive directory sites. - * @opt_param string dfpNetworkCode Select only directory sites with this Ad - * Manager network code. - * @opt_param string ids Select only directory sites with these IDs. - * @opt_param int maxResults Maximum number of results to return. - * @opt_param string pageToken Value of the nextPageToken from the previous - * result page. - * @opt_param string searchString Allows searching for objects by name, ID or - * URL. Wildcards (*) are allowed. For example, "directory site*2015" will - * return objects with names like "directory site June 2015", "directory site - * April 2015", or simply "directory site 2015". Most of the searches also add - * wildcards implicitly at the start and the end of the search string. For - * example, a search string of "directory site" will match objects with name "my - * directory site", "directory site 2015" or simply, "directory site". - * @opt_param string sortField Field by which to sort the list. - * @opt_param string sortOrder Order of sorted results. - * @return Google_Service_Dfareporting_DirectorySitesListResponse - */ - public function listDirectorySites($profileId, $optParams = array()) - { - $params = array('profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dfareporting_DirectorySitesListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/DynamicTargetingKeys.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/DynamicTargetingKeys.php deleted file mode 100644 index 0821e392..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/DynamicTargetingKeys.php +++ /dev/null @@ -1,88 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $dynamicTargetingKeys = $dfareportingService->dynamicTargetingKeys; - * - */ -class Google_Service_Dfareporting_Resource_DynamicTargetingKeys extends Google_Service_Resource -{ - /** - * Deletes an existing dynamic targeting key. (dynamicTargetingKeys.delete) - * - * @param string $profileId User profile ID associated with this request. - * @param string $objectId ID of the object of this dynamic targeting key. This - * is a required field. - * @param string $name Name of this dynamic targeting key. This is a required - * field. Must be less than 256 characters long and cannot contain commas. All - * characters are converted to lowercase. - * @param string $objectType Type of the object of this dynamic targeting key. - * This is a required field. - * @param array $optParams Optional parameters. - */ - public function delete($profileId, $objectId, $name, $objectType, $optParams = array()) - { - $params = array('profileId' => $profileId, 'objectId' => $objectId, 'name' => $name, 'objectType' => $objectType); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Inserts a new dynamic targeting key. Keys must be created at the advertiser - * level before being assigned to the advertiser's ads, creatives, or - * placements. There is a maximum of 1000 keys per advertiser, out of which a - * maximum of 20 keys can be assigned per ad, creative, or placement. - * (dynamicTargetingKeys.insert) - * - * @param string $profileId User profile ID associated with this request. - * @param Google_Service_Dfareporting_DynamicTargetingKey $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_DynamicTargetingKey - */ - public function insert($profileId, Google_Service_Dfareporting_DynamicTargetingKey $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Dfareporting_DynamicTargetingKey"); - } - /** - * Retrieves a list of dynamic targeting keys. - * (dynamicTargetingKeys.listDynamicTargetingKeys) - * - * @param string $profileId User profile ID associated with this request. - * @param array $optParams Optional parameters. - * - * @opt_param string advertiserId Select only dynamic targeting keys whose - * object has this advertiser ID. - * @opt_param string names Select only dynamic targeting keys exactly matching - * these names. - * @opt_param string objectId Select only dynamic targeting keys with this - * object ID. - * @opt_param string objectType Select only dynamic targeting keys with this - * object type. - * @return Google_Service_Dfareporting_DynamicTargetingKeysListResponse - */ - public function listDynamicTargetingKeys($profileId, $optParams = array()) - { - $params = array('profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dfareporting_DynamicTargetingKeysListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/EventTags.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/EventTags.php deleted file mode 100644 index 300be533..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/EventTags.php +++ /dev/null @@ -1,146 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $eventTags = $dfareportingService->eventTags; - * - */ -class Google_Service_Dfareporting_Resource_EventTags extends Google_Service_Resource -{ - /** - * Deletes an existing event tag. (eventTags.delete) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Event tag ID. - * @param array $optParams Optional parameters. - */ - public function delete($profileId, $id, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Gets one event tag by ID. (eventTags.get) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Event tag ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_EventTag - */ - public function get($profileId, $id, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dfareporting_EventTag"); - } - /** - * Inserts a new event tag. (eventTags.insert) - * - * @param string $profileId User profile ID associated with this request. - * @param Google_Service_Dfareporting_EventTag $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_EventTag - */ - public function insert($profileId, Google_Service_Dfareporting_EventTag $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Dfareporting_EventTag"); - } - /** - * Retrieves a list of event tags, possibly filtered. (eventTags.listEventTags) - * - * @param string $profileId User profile ID associated with this request. - * @param array $optParams Optional parameters. - * - * @opt_param string adId Select only event tags that belong to this ad. - * @opt_param string advertiserId Select only event tags that belong to this - * advertiser. - * @opt_param string campaignId Select only event tags that belong to this - * campaign. - * @opt_param bool definitionsOnly Examine only the specified campaign or - * advertiser's event tags for matching selector criteria. When set to false, - * the parent advertiser and parent campaign of the specified ad or campaign is - * examined as well. In addition, when set to false, the status field is - * examined as well, along with the enabledByDefault field. This parameter can - * not be set to true when adId is specified as ads do not define their own even - * tags. - * @opt_param bool enabled Select only enabled event tags. What is considered - * enabled or disabled depends on the definitionsOnly parameter. When - * definitionsOnly is set to true, only the specified advertiser or campaign's - * event tags' enabledByDefault field is examined. When definitionsOnly is set - * to false, the specified ad or specified campaign's parent advertiser's or - * parent campaign's event tags' enabledByDefault and status fields are examined - * as well. - * @opt_param string eventTagTypes Select only event tags with the specified - * event tag types. Event tag types can be used to specify whether to use a - * third-party pixel, a third-party JavaScript URL, or a third-party click- - * through URL for either impression or click tracking. - * @opt_param string ids Select only event tags with these IDs. - * @opt_param string searchString Allows searching for objects by name or ID. - * Wildcards (*) are allowed. For example, "eventtag*2015" will return objects - * with names like "eventtag June 2015", "eventtag April 2015", or simply - * "eventtag 2015". Most of the searches also add wildcards implicitly at the - * start and the end of the search string. For example, a search string of - * "eventtag" will match objects with name "my eventtag", "eventtag 2015", or - * simply "eventtag". - * @opt_param string sortField Field by which to sort the list. - * @opt_param string sortOrder Order of sorted results. - * @return Google_Service_Dfareporting_EventTagsListResponse - */ - public function listEventTags($profileId, $optParams = array()) - { - $params = array('profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dfareporting_EventTagsListResponse"); - } - /** - * Updates an existing event tag. This method supports patch semantics. - * (eventTags.patch) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Event tag ID. - * @param Google_Service_Dfareporting_EventTag $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_EventTag - */ - public function patch($profileId, $id, Google_Service_Dfareporting_EventTag $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Dfareporting_EventTag"); - } - /** - * Updates an existing event tag. (eventTags.update) - * - * @param string $profileId User profile ID associated with this request. - * @param Google_Service_Dfareporting_EventTag $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_EventTag - */ - public function update($profileId, Google_Service_Dfareporting_EventTag $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Dfareporting_EventTag"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Files.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Files.php deleted file mode 100644 index bfe14a5a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Files.php +++ /dev/null @@ -1,63 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $files = $dfareportingService->files; - * - */ -class Google_Service_Dfareporting_Resource_Files extends Google_Service_Resource -{ - /** - * Retrieves a report file by its report ID and file ID. This method supports - * media download. (files.get) - * - * @param string $reportId The ID of the report. - * @param string $fileId The ID of the report file. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_DfareportingFile - */ - public function get($reportId, $fileId, $optParams = array()) - { - $params = array('reportId' => $reportId, 'fileId' => $fileId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dfareporting_DfareportingFile"); - } - /** - * Lists files for a user profile. (files.listFiles) - * - * @param string $profileId The DFA profile ID. - * @param array $optParams Optional parameters. - * - * @opt_param int maxResults Maximum number of results to return. - * @opt_param string pageToken The value of the nextToken from the previous - * result page. - * @opt_param string scope The scope that defines which results are returned. - * @opt_param string sortField The field by which to sort the list. - * @opt_param string sortOrder Order of sorted results. - * @return Google_Service_Dfareporting_FileList - */ - public function listFiles($profileId, $optParams = array()) - { - $params = array('profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dfareporting_FileList"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/FloodlightActivities.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/FloodlightActivities.php deleted file mode 100644 index 0c72ce5a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/FloodlightActivities.php +++ /dev/null @@ -1,162 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $floodlightActivities = $dfareportingService->floodlightActivities; - * - */ -class Google_Service_Dfareporting_Resource_FloodlightActivities extends Google_Service_Resource -{ - /** - * Deletes an existing floodlight activity. (floodlightActivities.delete) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Floodlight activity ID. - * @param array $optParams Optional parameters. - */ - public function delete($profileId, $id, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Generates a tag for a floodlight activity. (floodlightActivities.generatetag) - * - * @param string $profileId User profile ID associated with this request. - * @param array $optParams Optional parameters. - * - * @opt_param string floodlightActivityId Floodlight activity ID for which we - * want to generate a tag. - * @return Google_Service_Dfareporting_FloodlightActivitiesGenerateTagResponse - */ - public function generatetag($profileId, $optParams = array()) - { - $params = array('profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('generatetag', array($params), "Google_Service_Dfareporting_FloodlightActivitiesGenerateTagResponse"); - } - /** - * Gets one floodlight activity by ID. (floodlightActivities.get) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Floodlight activity ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_FloodlightActivity - */ - public function get($profileId, $id, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dfareporting_FloodlightActivity"); - } - /** - * Inserts a new floodlight activity. (floodlightActivities.insert) - * - * @param string $profileId User profile ID associated with this request. - * @param Google_Service_Dfareporting_FloodlightActivity $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_FloodlightActivity - */ - public function insert($profileId, Google_Service_Dfareporting_FloodlightActivity $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Dfareporting_FloodlightActivity"); - } - /** - * Retrieves a list of floodlight activities, possibly filtered. This method - * supports paging. (floodlightActivities.listFloodlightActivities) - * - * @param string $profileId User profile ID associated with this request. - * @param array $optParams Optional parameters. - * - * @opt_param string advertiserId Select only floodlight activities for the - * specified advertiser ID. Must specify either ids, advertiserId, or - * floodlightConfigurationId for a non-empty result. - * @opt_param string floodlightActivityGroupIds Select only floodlight - * activities with the specified floodlight activity group IDs. - * @opt_param string floodlightActivityGroupName Select only floodlight - * activities with the specified floodlight activity group name. - * @opt_param string floodlightActivityGroupTagString Select only floodlight - * activities with the specified floodlight activity group tag string. - * @opt_param string floodlightActivityGroupType Select only floodlight - * activities with the specified floodlight activity group type. - * @opt_param string floodlightConfigurationId Select only floodlight activities - * for the specified floodlight configuration ID. Must specify either ids, - * advertiserId, or floodlightConfigurationId for a non-empty result. - * @opt_param string ids Select only floodlight activities with the specified - * IDs. Must specify either ids, advertiserId, or floodlightConfigurationId for - * a non-empty result. - * @opt_param int maxResults Maximum number of results to return. - * @opt_param string pageToken Value of the nextPageToken from the previous - * result page. - * @opt_param string searchString Allows searching for objects by name or ID. - * Wildcards (*) are allowed. For example, "floodlightactivity*2015" will return - * objects with names like "floodlightactivity June 2015", "floodlightactivity - * April 2015", or simply "floodlightactivity 2015". Most of the searches also - * add wildcards implicitly at the start and the end of the search string. For - * example, a search string of "floodlightactivity" will match objects with name - * "my floodlightactivity activity", "floodlightactivity 2015", or simply - * "floodlightactivity". - * @opt_param string sortField Field by which to sort the list. - * @opt_param string sortOrder Order of sorted results. - * @opt_param string tagString Select only floodlight activities with the - * specified tag string. - * @return Google_Service_Dfareporting_FloodlightActivitiesListResponse - */ - public function listFloodlightActivities($profileId, $optParams = array()) - { - $params = array('profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dfareporting_FloodlightActivitiesListResponse"); - } - /** - * Updates an existing floodlight activity. This method supports patch - * semantics. (floodlightActivities.patch) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Floodlight activity ID. - * @param Google_Service_Dfareporting_FloodlightActivity $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_FloodlightActivity - */ - public function patch($profileId, $id, Google_Service_Dfareporting_FloodlightActivity $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Dfareporting_FloodlightActivity"); - } - /** - * Updates an existing floodlight activity. (floodlightActivities.update) - * - * @param string $profileId User profile ID associated with this request. - * @param Google_Service_Dfareporting_FloodlightActivity $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_FloodlightActivity - */ - public function update($profileId, Google_Service_Dfareporting_FloodlightActivity $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Dfareporting_FloodlightActivity"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/FloodlightActivityGroups.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/FloodlightActivityGroups.php deleted file mode 100644 index 83501968..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/FloodlightActivityGroups.php +++ /dev/null @@ -1,128 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $floodlightActivityGroups = $dfareportingService->floodlightActivityGroups; - * - */ -class Google_Service_Dfareporting_Resource_FloodlightActivityGroups extends Google_Service_Resource -{ - /** - * Gets one floodlight activity group by ID. (floodlightActivityGroups.get) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Floodlight activity Group ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_FloodlightActivityGroup - */ - public function get($profileId, $id, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dfareporting_FloodlightActivityGroup"); - } - /** - * Inserts a new floodlight activity group. (floodlightActivityGroups.insert) - * - * @param string $profileId User profile ID associated with this request. - * @param Google_Service_Dfareporting_FloodlightActivityGroup $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_FloodlightActivityGroup - */ - public function insert($profileId, Google_Service_Dfareporting_FloodlightActivityGroup $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Dfareporting_FloodlightActivityGroup"); - } - /** - * Retrieves a list of floodlight activity groups, possibly filtered. This - * method supports paging. - * (floodlightActivityGroups.listFloodlightActivityGroups) - * - * @param string $profileId User profile ID associated with this request. - * @param array $optParams Optional parameters. - * - * @opt_param string advertiserId Select only floodlight activity groups with - * the specified advertiser ID. Must specify either advertiserId or - * floodlightConfigurationId for a non-empty result. - * @opt_param string floodlightConfigurationId Select only floodlight activity - * groups with the specified floodlight configuration ID. Must specify either - * advertiserId, or floodlightConfigurationId for a non-empty result. - * @opt_param string ids Select only floodlight activity groups with the - * specified IDs. Must specify either advertiserId or floodlightConfigurationId - * for a non-empty result. - * @opt_param int maxResults Maximum number of results to return. - * @opt_param string pageToken Value of the nextPageToken from the previous - * result page. - * @opt_param string searchString Allows searching for objects by name or ID. - * Wildcards (*) are allowed. For example, "floodlightactivitygroup*2015" will - * return objects with names like "floodlightactivitygroup June 2015", - * "floodlightactivitygroup April 2015", or simply "floodlightactivitygroup - * 2015". Most of the searches also add wildcards implicitly at the start and - * the end of the search string. For example, a search string of - * "floodlightactivitygroup" will match objects with name "my - * floodlightactivitygroup activity", "floodlightactivitygroup 2015", or simply - * "floodlightactivitygroup". - * @opt_param string sortField Field by which to sort the list. - * @opt_param string sortOrder Order of sorted results. - * @opt_param string type Select only floodlight activity groups with the - * specified floodlight activity group type. - * @return Google_Service_Dfareporting_FloodlightActivityGroupsListResponse - */ - public function listFloodlightActivityGroups($profileId, $optParams = array()) - { - $params = array('profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dfareporting_FloodlightActivityGroupsListResponse"); - } - /** - * Updates an existing floodlight activity group. This method supports patch - * semantics. (floodlightActivityGroups.patch) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Floodlight activity Group ID. - * @param Google_Service_Dfareporting_FloodlightActivityGroup $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_FloodlightActivityGroup - */ - public function patch($profileId, $id, Google_Service_Dfareporting_FloodlightActivityGroup $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Dfareporting_FloodlightActivityGroup"); - } - /** - * Updates an existing floodlight activity group. - * (floodlightActivityGroups.update) - * - * @param string $profileId User profile ID associated with this request. - * @param Google_Service_Dfareporting_FloodlightActivityGroup $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_FloodlightActivityGroup - */ - public function update($profileId, Google_Service_Dfareporting_FloodlightActivityGroup $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Dfareporting_FloodlightActivityGroup"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/FloodlightConfigurations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/FloodlightConfigurations.php deleted file mode 100644 index 8ec54c6e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/FloodlightConfigurations.php +++ /dev/null @@ -1,90 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $floodlightConfigurations = $dfareportingService->floodlightConfigurations; - * - */ -class Google_Service_Dfareporting_Resource_FloodlightConfigurations extends Google_Service_Resource -{ - /** - * Gets one floodlight configuration by ID. (floodlightConfigurations.get) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Floodlight configuration ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_FloodlightConfiguration - */ - public function get($profileId, $id, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dfareporting_FloodlightConfiguration"); - } - /** - * Retrieves a list of floodlight configurations, possibly filtered. - * (floodlightConfigurations.listFloodlightConfigurations) - * - * @param string $profileId User profile ID associated with this request. - * @param array $optParams Optional parameters. - * - * @opt_param string ids Set of IDs of floodlight configurations to retrieve. - * Required field; otherwise an empty list will be returned. - * @return Google_Service_Dfareporting_FloodlightConfigurationsListResponse - */ - public function listFloodlightConfigurations($profileId, $optParams = array()) - { - $params = array('profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dfareporting_FloodlightConfigurationsListResponse"); - } - /** - * Updates an existing floodlight configuration. This method supports patch - * semantics. (floodlightConfigurations.patch) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Floodlight configuration ID. - * @param Google_Service_Dfareporting_FloodlightConfiguration $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_FloodlightConfiguration - */ - public function patch($profileId, $id, Google_Service_Dfareporting_FloodlightConfiguration $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Dfareporting_FloodlightConfiguration"); - } - /** - * Updates an existing floodlight configuration. - * (floodlightConfigurations.update) - * - * @param string $profileId User profile ID associated with this request. - * @param Google_Service_Dfareporting_FloodlightConfiguration $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_FloodlightConfiguration - */ - public function update($profileId, Google_Service_Dfareporting_FloodlightConfiguration $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Dfareporting_FloodlightConfiguration"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/InventoryItems.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/InventoryItems.php deleted file mode 100644 index efe6de4b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/InventoryItems.php +++ /dev/null @@ -1,71 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $inventoryItems = $dfareportingService->inventoryItems; - * - */ -class Google_Service_Dfareporting_Resource_InventoryItems extends Google_Service_Resource -{ - /** - * Gets one inventory item by ID. (inventoryItems.get) - * - * @param string $profileId User profile ID associated with this request. - * @param string $projectId Project ID for order documents. - * @param string $id Inventory item ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_InventoryItem - */ - public function get($profileId, $projectId, $id, $optParams = array()) - { - $params = array('profileId' => $profileId, 'projectId' => $projectId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dfareporting_InventoryItem"); - } - /** - * Retrieves a list of inventory items, possibly filtered. This method supports - * paging. (inventoryItems.listInventoryItems) - * - * @param string $profileId User profile ID associated with this request. - * @param string $projectId Project ID for order documents. - * @param array $optParams Optional parameters. - * - * @opt_param string ids Select only inventory items with these IDs. - * @opt_param bool inPlan Select only inventory items that are in plan. - * @opt_param int maxResults Maximum number of results to return. - * @opt_param string orderId Select only inventory items that belong to - * specified orders. - * @opt_param string pageToken Value of the nextPageToken from the previous - * result page. - * @opt_param string siteId Select only inventory items that are associated with - * these sites. - * @opt_param string sortField Field by which to sort the list. - * @opt_param string sortOrder Order of sorted results. - * @opt_param string type Select only inventory items with this type. - * @return Google_Service_Dfareporting_InventoryItemsListResponse - */ - public function listInventoryItems($profileId, $projectId, $optParams = array()) - { - $params = array('profileId' => $profileId, 'projectId' => $projectId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dfareporting_InventoryItemsListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Languages.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Languages.php deleted file mode 100644 index e9abe490..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Languages.php +++ /dev/null @@ -1,41 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $languages = $dfareportingService->languages; - * - */ -class Google_Service_Dfareporting_Resource_Languages extends Google_Service_Resource -{ - /** - * Retrieves a list of languages. (languages.listLanguages) - * - * @param string $profileId User profile ID associated with this request. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_LanguagesListResponse - */ - public function listLanguages($profileId, $optParams = array()) - { - $params = array('profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dfareporting_LanguagesListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Metros.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Metros.php deleted file mode 100644 index 103bc672..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Metros.php +++ /dev/null @@ -1,41 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $metros = $dfareportingService->metros; - * - */ -class Google_Service_Dfareporting_Resource_Metros extends Google_Service_Resource -{ - /** - * Retrieves a list of metros. (metros.listMetros) - * - * @param string $profileId User profile ID associated with this request. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_MetrosListResponse - */ - public function listMetros($profileId, $optParams = array()) - { - $params = array('profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dfareporting_MetrosListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/MobileApps.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/MobileApps.php deleted file mode 100644 index 20221a8c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/MobileApps.php +++ /dev/null @@ -1,67 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $mobileApps = $dfareportingService->mobileApps; - * - */ -class Google_Service_Dfareporting_Resource_MobileApps extends Google_Service_Resource -{ - /** - * Gets one mobile app by ID. (mobileApps.get) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Mobile app ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_MobileApp - */ - public function get($profileId, $id, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dfareporting_MobileApp"); - } - /** - * Retrieves list of available mobile apps. (mobileApps.listMobileApps) - * - * @param string $profileId User profile ID associated with this request. - * @param array $optParams Optional parameters. - * - * @opt_param string directories Select only apps from these directories. - * @opt_param string ids Select only apps with these IDs. - * @opt_param int maxResults Maximum number of results to return. - * @opt_param string pageToken Value of the nextPageToken from the previous - * result page. - * @opt_param string searchString Allows searching for objects by name or ID. - * Wildcards (*) are allowed. For example, "app*2015" will return objects with - * names like "app Jan 2018", "app Jan 2018", or simply "app 2018". Most of the - * searches also add wildcards implicitly at the start and the end of the search - * string. For example, a search string of "app" will match objects with name - * "my app", "app 2018", or simply "app". - * @return Google_Service_Dfareporting_MobileAppsListResponse - */ - public function listMobileApps($profileId, $optParams = array()) - { - $params = array('profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dfareporting_MobileAppsListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/MobileCarriers.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/MobileCarriers.php deleted file mode 100644 index cdc6695b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/MobileCarriers.php +++ /dev/null @@ -1,55 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $mobileCarriers = $dfareportingService->mobileCarriers; - * - */ -class Google_Service_Dfareporting_Resource_MobileCarriers extends Google_Service_Resource -{ - /** - * Gets one mobile carrier by ID. (mobileCarriers.get) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Mobile carrier ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_MobileCarrier - */ - public function get($profileId, $id, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dfareporting_MobileCarrier"); - } - /** - * Retrieves a list of mobile carriers. (mobileCarriers.listMobileCarriers) - * - * @param string $profileId User profile ID associated with this request. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_MobileCarriersListResponse - */ - public function listMobileCarriers($profileId, $optParams = array()) - { - $params = array('profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dfareporting_MobileCarriersListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/OperatingSystemVersions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/OperatingSystemVersions.php deleted file mode 100644 index cdf9da96..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/OperatingSystemVersions.php +++ /dev/null @@ -1,56 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $operatingSystemVersions = $dfareportingService->operatingSystemVersions; - * - */ -class Google_Service_Dfareporting_Resource_OperatingSystemVersions extends Google_Service_Resource -{ - /** - * Gets one operating system version by ID. (operatingSystemVersions.get) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Operating system version ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_OperatingSystemVersion - */ - public function get($profileId, $id, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dfareporting_OperatingSystemVersion"); - } - /** - * Retrieves a list of operating system versions. - * (operatingSystemVersions.listOperatingSystemVersions) - * - * @param string $profileId User profile ID associated with this request. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_OperatingSystemVersionsListResponse - */ - public function listOperatingSystemVersions($profileId, $optParams = array()) - { - $params = array('profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dfareporting_OperatingSystemVersionsListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/OperatingSystems.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/OperatingSystems.php deleted file mode 100644 index e51abf91..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/OperatingSystems.php +++ /dev/null @@ -1,56 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $operatingSystems = $dfareportingService->operatingSystems; - * - */ -class Google_Service_Dfareporting_Resource_OperatingSystems extends Google_Service_Resource -{ - /** - * Gets one operating system by DART ID. (operatingSystems.get) - * - * @param string $profileId User profile ID associated with this request. - * @param string $dartId Operating system DART ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_OperatingSystem - */ - public function get($profileId, $dartId, $optParams = array()) - { - $params = array('profileId' => $profileId, 'dartId' => $dartId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dfareporting_OperatingSystem"); - } - /** - * Retrieves a list of operating systems. - * (operatingSystems.listOperatingSystems) - * - * @param string $profileId User profile ID associated with this request. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_OperatingSystemsListResponse - */ - public function listOperatingSystems($profileId, $optParams = array()) - { - $params = array('profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dfareporting_OperatingSystemsListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/OrderDocuments.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/OrderDocuments.php deleted file mode 100644 index 771a6d6e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/OrderDocuments.php +++ /dev/null @@ -1,78 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $orderDocuments = $dfareportingService->orderDocuments; - * - */ -class Google_Service_Dfareporting_Resource_OrderDocuments extends Google_Service_Resource -{ - /** - * Gets one order document by ID. (orderDocuments.get) - * - * @param string $profileId User profile ID associated with this request. - * @param string $projectId Project ID for order documents. - * @param string $id Order document ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_OrderDocument - */ - public function get($profileId, $projectId, $id, $optParams = array()) - { - $params = array('profileId' => $profileId, 'projectId' => $projectId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dfareporting_OrderDocument"); - } - /** - * Retrieves a list of order documents, possibly filtered. This method supports - * paging. (orderDocuments.listOrderDocuments) - * - * @param string $profileId User profile ID associated with this request. - * @param string $projectId Project ID for order documents. - * @param array $optParams Optional parameters. - * - * @opt_param bool approved Select only order documents that have been approved - * by at least one user. - * @opt_param string ids Select only order documents with these IDs. - * @opt_param int maxResults Maximum number of results to return. - * @opt_param string orderId Select only order documents for specified orders. - * @opt_param string pageToken Value of the nextPageToken from the previous - * result page. - * @opt_param string searchString Allows searching for order documents by name - * or ID. Wildcards (*) are allowed. For example, "orderdocument*2015" will - * return order documents with names like "orderdocument June 2015", - * "orderdocument April 2015", or simply "orderdocument 2015". Most of the - * searches also add wildcards implicitly at the start and the end of the search - * string. For example, a search string of "orderdocument" will match order - * documents with name "my orderdocument", "orderdocument 2015", or simply - * "orderdocument". - * @opt_param string siteId Select only order documents that are associated with - * these sites. - * @opt_param string sortField Field by which to sort the list. - * @opt_param string sortOrder Order of sorted results. - * @return Google_Service_Dfareporting_OrderDocumentsListResponse - */ - public function listOrderDocuments($profileId, $projectId, $optParams = array()) - { - $params = array('profileId' => $profileId, 'projectId' => $projectId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dfareporting_OrderDocumentsListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Orders.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Orders.php deleted file mode 100644 index 6231341b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Orders.php +++ /dev/null @@ -1,73 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $orders = $dfareportingService->orders; - * - */ -class Google_Service_Dfareporting_Resource_Orders extends Google_Service_Resource -{ - /** - * Gets one order by ID. (orders.get) - * - * @param string $profileId User profile ID associated with this request. - * @param string $projectId Project ID for orders. - * @param string $id Order ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_Order - */ - public function get($profileId, $projectId, $id, $optParams = array()) - { - $params = array('profileId' => $profileId, 'projectId' => $projectId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dfareporting_Order"); - } - /** - * Retrieves a list of orders, possibly filtered. This method supports paging. - * (orders.listOrders) - * - * @param string $profileId User profile ID associated with this request. - * @param string $projectId Project ID for orders. - * @param array $optParams Optional parameters. - * - * @opt_param string ids Select only orders with these IDs. - * @opt_param int maxResults Maximum number of results to return. - * @opt_param string pageToken Value of the nextPageToken from the previous - * result page. - * @opt_param string searchString Allows searching for orders by name or ID. - * Wildcards (*) are allowed. For example, "order*2015" will return orders with - * names like "order June 2015", "order April 2015", or simply "order 2015". - * Most of the searches also add wildcards implicitly at the start and the end - * of the search string. For example, a search string of "order" will match - * orders with name "my order", "order 2015", or simply "order". - * @opt_param string siteId Select only orders that are associated with these - * site IDs. - * @opt_param string sortField Field by which to sort the list. - * @opt_param string sortOrder Order of sorted results. - * @return Google_Service_Dfareporting_OrdersListResponse - */ - public function listOrders($profileId, $projectId, $optParams = array()) - { - $params = array('profileId' => $profileId, 'projectId' => $projectId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dfareporting_OrdersListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/PlacementGroups.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/PlacementGroups.php deleted file mode 100644 index 02568eca..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/PlacementGroups.php +++ /dev/null @@ -1,148 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $placementGroups = $dfareportingService->placementGroups; - * - */ -class Google_Service_Dfareporting_Resource_PlacementGroups extends Google_Service_Resource -{ - /** - * Gets one placement group by ID. (placementGroups.get) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Placement group ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_PlacementGroup - */ - public function get($profileId, $id, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dfareporting_PlacementGroup"); - } - /** - * Inserts a new placement group. (placementGroups.insert) - * - * @param string $profileId User profile ID associated with this request. - * @param Google_Service_Dfareporting_PlacementGroup $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_PlacementGroup - */ - public function insert($profileId, Google_Service_Dfareporting_PlacementGroup $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Dfareporting_PlacementGroup"); - } - /** - * Retrieves a list of placement groups, possibly filtered. This method supports - * paging. (placementGroups.listPlacementGroups) - * - * @param string $profileId User profile ID associated with this request. - * @param array $optParams Optional parameters. - * - * @opt_param string advertiserIds Select only placement groups that belong to - * these advertisers. - * @opt_param bool archived Select only archived placements. Don't set this - * field to select both archived and non-archived placements. - * @opt_param string campaignIds Select only placement groups that belong to - * these campaigns. - * @opt_param string contentCategoryIds Select only placement groups that are - * associated with these content categories. - * @opt_param string directorySiteIds Select only placement groups that are - * associated with these directory sites. - * @opt_param string ids Select only placement groups with these IDs. - * @opt_param string maxEndDate Select only placements or placement groups whose - * end date is on or before the specified maxEndDate. The date should be - * formatted as "yyyy-MM-dd". - * @opt_param int maxResults Maximum number of results to return. - * @opt_param string maxStartDate Select only placements or placement groups - * whose start date is on or before the specified maxStartDate. The date should - * be formatted as "yyyy-MM-dd". - * @opt_param string minEndDate Select only placements or placement groups whose - * end date is on or after the specified minEndDate. The date should be - * formatted as "yyyy-MM-dd". - * @opt_param string minStartDate Select only placements or placement groups - * whose start date is on or after the specified minStartDate. The date should - * be formatted as "yyyy-MM-dd". - * @opt_param string pageToken Value of the nextPageToken from the previous - * result page. - * @opt_param string placementGroupType Select only placement groups belonging - * with this group type. A package is a simple group of placements that acts as - * a single pricing point for a group of tags. A roadblock is a group of - * placements that not only acts as a single pricing point but also assumes that - * all the tags in it will be served at the same time. A roadblock requires one - * of its assigned placements to be marked as primary for reporting. - * @opt_param string placementStrategyIds Select only placement groups that are - * associated with these placement strategies. - * @opt_param string pricingTypes Select only placement groups with these - * pricing types. - * @opt_param string searchString Allows searching for placement groups by name - * or ID. Wildcards (*) are allowed. For example, "placement*2015" will return - * placement groups with names like "placement group June 2015", "placement - * group May 2015", or simply "placements 2015". Most of the searches also add - * wildcards implicitly at the start and the end of the search string. For - * example, a search string of "placementgroup" will match placement groups with - * name "my placementgroup", "placementgroup 2015", or simply "placementgroup". - * @opt_param string siteIds Select only placement groups that are associated - * with these sites. - * @opt_param string sortField Field by which to sort the list. - * @opt_param string sortOrder Order of sorted results. - * @return Google_Service_Dfareporting_PlacementGroupsListResponse - */ - public function listPlacementGroups($profileId, $optParams = array()) - { - $params = array('profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dfareporting_PlacementGroupsListResponse"); - } - /** - * Updates an existing placement group. This method supports patch semantics. - * (placementGroups.patch) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Placement group ID. - * @param Google_Service_Dfareporting_PlacementGroup $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_PlacementGroup - */ - public function patch($profileId, $id, Google_Service_Dfareporting_PlacementGroup $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Dfareporting_PlacementGroup"); - } - /** - * Updates an existing placement group. (placementGroups.update) - * - * @param string $profileId User profile ID associated with this request. - * @param Google_Service_Dfareporting_PlacementGroup $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_PlacementGroup - */ - public function update($profileId, Google_Service_Dfareporting_PlacementGroup $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Dfareporting_PlacementGroup"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/PlacementStrategies.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/PlacementStrategies.php deleted file mode 100644 index 5204ccea..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/PlacementStrategies.php +++ /dev/null @@ -1,128 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $placementStrategies = $dfareportingService->placementStrategies; - * - */ -class Google_Service_Dfareporting_Resource_PlacementStrategies extends Google_Service_Resource -{ - /** - * Deletes an existing placement strategy. (placementStrategies.delete) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Placement strategy ID. - * @param array $optParams Optional parameters. - */ - public function delete($profileId, $id, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Gets one placement strategy by ID. (placementStrategies.get) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Placement strategy ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_PlacementStrategy - */ - public function get($profileId, $id, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dfareporting_PlacementStrategy"); - } - /** - * Inserts a new placement strategy. (placementStrategies.insert) - * - * @param string $profileId User profile ID associated with this request. - * @param Google_Service_Dfareporting_PlacementStrategy $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_PlacementStrategy - */ - public function insert($profileId, Google_Service_Dfareporting_PlacementStrategy $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Dfareporting_PlacementStrategy"); - } - /** - * Retrieves a list of placement strategies, possibly filtered. This method - * supports paging. (placementStrategies.listPlacementStrategies) - * - * @param string $profileId User profile ID associated with this request. - * @param array $optParams Optional parameters. - * - * @opt_param string ids Select only placement strategies with these IDs. - * @opt_param int maxResults Maximum number of results to return. - * @opt_param string pageToken Value of the nextPageToken from the previous - * result page. - * @opt_param string searchString Allows searching for objects by name or ID. - * Wildcards (*) are allowed. For example, "placementstrategy*2015" will return - * objects with names like "placementstrategy June 2015", "placementstrategy - * April 2015", or simply "placementstrategy 2015". Most of the searches also - * add wildcards implicitly at the start and the end of the search string. For - * example, a search string of "placementstrategy" will match objects with name - * "my placementstrategy", "placementstrategy 2015", or simply - * "placementstrategy". - * @opt_param string sortField Field by which to sort the list. - * @opt_param string sortOrder Order of sorted results. - * @return Google_Service_Dfareporting_PlacementStrategiesListResponse - */ - public function listPlacementStrategies($profileId, $optParams = array()) - { - $params = array('profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dfareporting_PlacementStrategiesListResponse"); - } - /** - * Updates an existing placement strategy. This method supports patch semantics. - * (placementStrategies.patch) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Placement strategy ID. - * @param Google_Service_Dfareporting_PlacementStrategy $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_PlacementStrategy - */ - public function patch($profileId, $id, Google_Service_Dfareporting_PlacementStrategy $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Dfareporting_PlacementStrategy"); - } - /** - * Updates an existing placement strategy. (placementStrategies.update) - * - * @param string $profileId User profile ID associated with this request. - * @param Google_Service_Dfareporting_PlacementStrategy $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_PlacementStrategy - */ - public function update($profileId, Google_Service_Dfareporting_PlacementStrategy $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Dfareporting_PlacementStrategy"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Placements.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Placements.php deleted file mode 100644 index 84209792..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Placements.php +++ /dev/null @@ -1,174 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $placements = $dfareportingService->placements; - * - */ -class Google_Service_Dfareporting_Resource_Placements extends Google_Service_Resource -{ - /** - * Generates tags for a placement. (placements.generatetags) - * - * @param string $profileId User profile ID associated with this request. - * @param array $optParams Optional parameters. - * - * @opt_param string campaignId Generate placements belonging to this campaign. - * This is a required field. - * @opt_param string placementIds Generate tags for these placements. - * @opt_param string tagFormats Tag formats to generate for these placements. - * - * Note: PLACEMENT_TAG_STANDARD can only be generated for 1x1 placements. - * @return Google_Service_Dfareporting_PlacementsGenerateTagsResponse - */ - public function generatetags($profileId, $optParams = array()) - { - $params = array('profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('generatetags', array($params), "Google_Service_Dfareporting_PlacementsGenerateTagsResponse"); - } - /** - * Gets one placement by ID. (placements.get) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Placement ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_Placement - */ - public function get($profileId, $id, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dfareporting_Placement"); - } - /** - * Inserts a new placement. (placements.insert) - * - * @param string $profileId User profile ID associated with this request. - * @param Google_Service_Dfareporting_Placement $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_Placement - */ - public function insert($profileId, Google_Service_Dfareporting_Placement $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Dfareporting_Placement"); - } - /** - * Retrieves a list of placements, possibly filtered. This method supports - * paging. (placements.listPlacements) - * - * @param string $profileId User profile ID associated with this request. - * @param array $optParams Optional parameters. - * - * @opt_param string advertiserIds Select only placements that belong to these - * advertisers. - * @opt_param bool archived Select only archived placements. Don't set this - * field to select both archived and non-archived placements. - * @opt_param string campaignIds Select only placements that belong to these - * campaigns. - * @opt_param string compatibilities Select only placements that are associated - * with these compatibilities. DISPLAY and DISPLAY_INTERSTITIAL refer to - * rendering either on desktop or on mobile devices for regular or interstitial - * ads respectively. APP and APP_INTERSTITIAL are for rendering in mobile apps. - * IN_STREAM_VIDEO refers to rendering in in-stream video ads developed with the - * VAST standard. - * @opt_param string contentCategoryIds Select only placements that are - * associated with these content categories. - * @opt_param string directorySiteIds Select only placements that are associated - * with these directory sites. - * @opt_param string groupIds Select only placements that belong to these - * placement groups. - * @opt_param string ids Select only placements with these IDs. - * @opt_param string maxEndDate Select only placements or placement groups whose - * end date is on or before the specified maxEndDate. The date should be - * formatted as "yyyy-MM-dd". - * @opt_param int maxResults Maximum number of results to return. - * @opt_param string maxStartDate Select only placements or placement groups - * whose start date is on or before the specified maxStartDate. The date should - * be formatted as "yyyy-MM-dd". - * @opt_param string minEndDate Select only placements or placement groups whose - * end date is on or after the specified minEndDate. The date should be - * formatted as "yyyy-MM-dd". - * @opt_param string minStartDate Select only placements or placement groups - * whose start date is on or after the specified minStartDate. The date should - * be formatted as "yyyy-MM-dd". - * @opt_param string pageToken Value of the nextPageToken from the previous - * result page. - * @opt_param string paymentSource Select only placements with this payment - * source. - * @opt_param string placementStrategyIds Select only placements that are - * associated with these placement strategies. - * @opt_param string pricingTypes Select only placements with these pricing - * types. - * @opt_param string searchString Allows searching for placements by name or ID. - * Wildcards (*) are allowed. For example, "placement*2015" will return - * placements with names like "placement June 2015", "placement May 2015", or - * simply "placements 2015". Most of the searches also add wildcards implicitly - * at the start and the end of the search string. For example, a search string - * of "placement" will match placements with name "my placement", "placement - * 2015", or simply "placement". - * @opt_param string siteIds Select only placements that are associated with - * these sites. - * @opt_param string sizeIds Select only placements that are associated with - * these sizes. - * @opt_param string sortField Field by which to sort the list. - * @opt_param string sortOrder Order of sorted results. - * @return Google_Service_Dfareporting_PlacementsListResponse - */ - public function listPlacements($profileId, $optParams = array()) - { - $params = array('profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dfareporting_PlacementsListResponse"); - } - /** - * Updates an existing placement. This method supports patch semantics. - * (placements.patch) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Placement ID. - * @param Google_Service_Dfareporting_Placement $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_Placement - */ - public function patch($profileId, $id, Google_Service_Dfareporting_Placement $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Dfareporting_Placement"); - } - /** - * Updates an existing placement. (placements.update) - * - * @param string $profileId User profile ID associated with this request. - * @param Google_Service_Dfareporting_Placement $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_Placement - */ - public function update($profileId, Google_Service_Dfareporting_Placement $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Dfareporting_Placement"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/PlatformTypes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/PlatformTypes.php deleted file mode 100644 index 8e56607c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/PlatformTypes.php +++ /dev/null @@ -1,55 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $platformTypes = $dfareportingService->platformTypes; - * - */ -class Google_Service_Dfareporting_Resource_PlatformTypes extends Google_Service_Resource -{ - /** - * Gets one platform type by ID. (platformTypes.get) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Platform type ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_PlatformType - */ - public function get($profileId, $id, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dfareporting_PlatformType"); - } - /** - * Retrieves a list of platform types. (platformTypes.listPlatformTypes) - * - * @param string $profileId User profile ID associated with this request. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_PlatformTypesListResponse - */ - public function listPlatformTypes($profileId, $optParams = array()) - { - $params = array('profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dfareporting_PlatformTypesListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/PostalCodes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/PostalCodes.php deleted file mode 100644 index 07c7c969..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/PostalCodes.php +++ /dev/null @@ -1,55 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $postalCodes = $dfareportingService->postalCodes; - * - */ -class Google_Service_Dfareporting_Resource_PostalCodes extends Google_Service_Resource -{ - /** - * Gets one postal code by ID. (postalCodes.get) - * - * @param string $profileId User profile ID associated with this request. - * @param string $code Postal code ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_PostalCode - */ - public function get($profileId, $code, $optParams = array()) - { - $params = array('profileId' => $profileId, 'code' => $code); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dfareporting_PostalCode"); - } - /** - * Retrieves a list of postal codes. (postalCodes.listPostalCodes) - * - * @param string $profileId User profile ID associated with this request. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_PostalCodesListResponse - */ - public function listPostalCodes($profileId, $optParams = array()) - { - $params = array('profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dfareporting_PostalCodesListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Projects.php deleted file mode 100644 index 20ba5a2e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Projects.php +++ /dev/null @@ -1,71 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $projects = $dfareportingService->projects; - * - */ -class Google_Service_Dfareporting_Resource_Projects extends Google_Service_Resource -{ - /** - * Gets one project by ID. (projects.get) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Project ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_Project - */ - public function get($profileId, $id, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dfareporting_Project"); - } - /** - * Retrieves a list of projects, possibly filtered. This method supports paging. - * (projects.listProjects) - * - * @param string $profileId User profile ID associated with this request. - * @param array $optParams Optional parameters. - * - * @opt_param string advertiserIds Select only projects with these advertiser - * IDs. - * @opt_param string ids Select only projects with these IDs. - * @opt_param int maxResults Maximum number of results to return. - * @opt_param string pageToken Value of the nextPageToken from the previous - * result page. - * @opt_param string searchString Allows searching for projects by name or ID. - * Wildcards (*) are allowed. For example, "project*2015" will return projects - * with names like "project June 2015", "project April 2015", or simply "project - * 2015". Most of the searches also add wildcards implicitly at the start and - * the end of the search string. For example, a search string of "project" will - * match projects with name "my project", "project 2015", or simply "project". - * @opt_param string sortField Field by which to sort the list. - * @opt_param string sortOrder Order of sorted results. - * @return Google_Service_Dfareporting_ProjectsListResponse - */ - public function listProjects($profileId, $optParams = array()) - { - $params = array('profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dfareporting_ProjectsListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Regions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Regions.php deleted file mode 100644 index c2fbc5c7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Regions.php +++ /dev/null @@ -1,41 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $regions = $dfareportingService->regions; - * - */ -class Google_Service_Dfareporting_Resource_Regions extends Google_Service_Resource -{ - /** - * Retrieves a list of regions. (regions.listRegions) - * - * @param string $profileId User profile ID associated with this request. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_RegionsListResponse - */ - public function listRegions($profileId, $optParams = array()) - { - $params = array('profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dfareporting_RegionsListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/RemarketingListShares.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/RemarketingListShares.php deleted file mode 100644 index deedf837..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/RemarketingListShares.php +++ /dev/null @@ -1,73 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $remarketingListShares = $dfareportingService->remarketingListShares; - * - */ -class Google_Service_Dfareporting_Resource_RemarketingListShares extends Google_Service_Resource -{ - /** - * Gets one remarketing list share by remarketing list ID. - * (remarketingListShares.get) - * - * @param string $profileId User profile ID associated with this request. - * @param string $remarketingListId Remarketing list ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_RemarketingListShare - */ - public function get($profileId, $remarketingListId, $optParams = array()) - { - $params = array('profileId' => $profileId, 'remarketingListId' => $remarketingListId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dfareporting_RemarketingListShare"); - } - /** - * Updates an existing remarketing list share. This method supports patch - * semantics. (remarketingListShares.patch) - * - * @param string $profileId User profile ID associated with this request. - * @param string $remarketingListId Remarketing list ID. - * @param Google_Service_Dfareporting_RemarketingListShare $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_RemarketingListShare - */ - public function patch($profileId, $remarketingListId, Google_Service_Dfareporting_RemarketingListShare $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'remarketingListId' => $remarketingListId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Dfareporting_RemarketingListShare"); - } - /** - * Updates an existing remarketing list share. (remarketingListShares.update) - * - * @param string $profileId User profile ID associated with this request. - * @param Google_Service_Dfareporting_RemarketingListShare $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_RemarketingListShare - */ - public function update($profileId, Google_Service_Dfareporting_RemarketingListShare $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Dfareporting_RemarketingListShare"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/RemarketingLists.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/RemarketingLists.php deleted file mode 100644 index 25825b8d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/RemarketingLists.php +++ /dev/null @@ -1,118 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $remarketingLists = $dfareportingService->remarketingLists; - * - */ -class Google_Service_Dfareporting_Resource_RemarketingLists extends Google_Service_Resource -{ - /** - * Gets one remarketing list by ID. (remarketingLists.get) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Remarketing list ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_RemarketingList - */ - public function get($profileId, $id, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dfareporting_RemarketingList"); - } - /** - * Inserts a new remarketing list. (remarketingLists.insert) - * - * @param string $profileId User profile ID associated with this request. - * @param Google_Service_Dfareporting_RemarketingList $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_RemarketingList - */ - public function insert($profileId, Google_Service_Dfareporting_RemarketingList $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Dfareporting_RemarketingList"); - } - /** - * Retrieves a list of remarketing lists, possibly filtered. This method - * supports paging. (remarketingLists.listRemarketingLists) - * - * @param string $profileId User profile ID associated with this request. - * @param string $advertiserId Select only remarketing lists owned by this - * advertiser. - * @param array $optParams Optional parameters. - * - * @opt_param bool active Select only active or only inactive remarketing lists. - * @opt_param string floodlightActivityId Select only remarketing lists that - * have this floodlight activity ID. - * @opt_param int maxResults Maximum number of results to return. - * @opt_param string name Allows searching for objects by name or ID. Wildcards - * (*) are allowed. For example, "remarketing list*2015" will return objects - * with names like "remarketing list June 2015", "remarketing list April 2015", - * or simply "remarketing list 2015". Most of the searches also add wildcards - * implicitly at the start and the end of the search string. For example, a - * search string of "remarketing list" will match objects with name "my - * remarketing list", "remarketing list 2015", or simply "remarketing list". - * @opt_param string pageToken Value of the nextPageToken from the previous - * result page. - * @opt_param string sortField Field by which to sort the list. - * @opt_param string sortOrder Order of sorted results. - * @return Google_Service_Dfareporting_RemarketingListsListResponse - */ - public function listRemarketingLists($profileId, $advertiserId, $optParams = array()) - { - $params = array('profileId' => $profileId, 'advertiserId' => $advertiserId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dfareporting_RemarketingListsListResponse"); - } - /** - * Updates an existing remarketing list. This method supports patch semantics. - * (remarketingLists.patch) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Remarketing list ID. - * @param Google_Service_Dfareporting_RemarketingList $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_RemarketingList - */ - public function patch($profileId, $id, Google_Service_Dfareporting_RemarketingList $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Dfareporting_RemarketingList"); - } - /** - * Updates an existing remarketing list. (remarketingLists.update) - * - * @param string $profileId User profile ID associated with this request. - * @param Google_Service_Dfareporting_RemarketingList $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_RemarketingList - */ - public function update($profileId, Google_Service_Dfareporting_RemarketingList $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Dfareporting_RemarketingList"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Reports.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Reports.php deleted file mode 100644 index ff743f7f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Reports.php +++ /dev/null @@ -1,121 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $reports = $dfareportingService->reports; - * - */ -class Google_Service_Dfareporting_Resource_Reports extends Google_Service_Resource -{ - /** - * Deletes a report by its ID. (reports.delete) - * - * @param string $profileId The DFA user profile ID. - * @param string $reportId The ID of the report. - * @param array $optParams Optional parameters. - */ - public function delete($profileId, $reportId, $optParams = array()) - { - $params = array('profileId' => $profileId, 'reportId' => $reportId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Retrieves a report by its ID. (reports.get) - * - * @param string $profileId The DFA user profile ID. - * @param string $reportId The ID of the report. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_Report - */ - public function get($profileId, $reportId, $optParams = array()) - { - $params = array('profileId' => $profileId, 'reportId' => $reportId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dfareporting_Report"); - } - /** - * Creates a report. (reports.insert) - * - * @param string $profileId The DFA user profile ID. - * @param Google_Service_Dfareporting_Report $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_Report - */ - public function insert($profileId, Google_Service_Dfareporting_Report $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Dfareporting_Report"); - } - /** - * Retrieves list of reports. (reports.listReports) - * - * @param string $profileId The DFA user profile ID. - * @param array $optParams Optional parameters. - * - * @opt_param int maxResults Maximum number of results to return. - * @opt_param string pageToken The value of the nextToken from the previous - * result page. - * @opt_param string scope The scope that defines which results are returned. - * @opt_param string sortField The field by which to sort the list. - * @opt_param string sortOrder Order of sorted results. - * @return Google_Service_Dfareporting_ReportList - */ - public function listReports($profileId, $optParams = array()) - { - $params = array('profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dfareporting_ReportList"); - } - /** - * Runs a report. (reports.run) - * - * @param string $profileId The DFA profile ID. - * @param string $reportId The ID of the report. - * @param array $optParams Optional parameters. - * - * @opt_param bool synchronous If set and true, tries to run the report - * synchronously. - * @return Google_Service_Dfareporting_DfareportingFile - */ - public function run($profileId, $reportId, $optParams = array()) - { - $params = array('profileId' => $profileId, 'reportId' => $reportId); - $params = array_merge($params, $optParams); - return $this->call('run', array($params), "Google_Service_Dfareporting_DfareportingFile"); - } - /** - * Updates a report. (reports.update) - * - * @param string $profileId The DFA user profile ID. - * @param string $reportId The ID of the report. - * @param Google_Service_Dfareporting_Report $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_Report - */ - public function update($profileId, $reportId, Google_Service_Dfareporting_Report $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'reportId' => $reportId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Dfareporting_Report"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/ReportsCompatibleFields.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/ReportsCompatibleFields.php deleted file mode 100644 index beb297bd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/ReportsCompatibleFields.php +++ /dev/null @@ -1,44 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $compatibleFields = $dfareportingService->compatibleFields; - * - */ -class Google_Service_Dfareporting_Resource_ReportsCompatibleFields extends Google_Service_Resource -{ - /** - * Returns the fields that are compatible to be selected in the respective - * sections of a report criteria, given the fields already selected in the input - * report and user permissions. (compatibleFields.query) - * - * @param string $profileId The DFA user profile ID. - * @param Google_Service_Dfareporting_Report $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_CompatibleFields - */ - public function query($profileId, Google_Service_Dfareporting_Report $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('query', array($params), "Google_Service_Dfareporting_CompatibleFields"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/ReportsFiles.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/ReportsFiles.php deleted file mode 100644 index 2249e953..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/ReportsFiles.php +++ /dev/null @@ -1,63 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $files = $dfareportingService->files; - * - */ -class Google_Service_Dfareporting_Resource_ReportsFiles extends Google_Service_Resource -{ - /** - * Retrieves a report file. This method supports media download. (files.get) - * - * @param string $profileId The DFA profile ID. - * @param string $reportId The ID of the report. - * @param string $fileId The ID of the report file. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_DfareportingFile - */ - public function get($profileId, $reportId, $fileId, $optParams = array()) - { - $params = array('profileId' => $profileId, 'reportId' => $reportId, 'fileId' => $fileId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dfareporting_DfareportingFile"); - } - /** - * Lists files for a report. (files.listReportsFiles) - * - * @param string $profileId The DFA profile ID. - * @param string $reportId The ID of the parent report. - * @param array $optParams Optional parameters. - * - * @opt_param int maxResults Maximum number of results to return. - * @opt_param string pageToken The value of the nextToken from the previous - * result page. - * @opt_param string sortField The field by which to sort the list. - * @opt_param string sortOrder Order of sorted results. - * @return Google_Service_Dfareporting_FileList - */ - public function listReportsFiles($profileId, $reportId, $optParams = array()) - { - $params = array('profileId' => $profileId, 'reportId' => $reportId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dfareporting_FileList"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Sites.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Sites.php deleted file mode 100644 index 8f65ff7f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Sites.php +++ /dev/null @@ -1,126 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $sites = $dfareportingService->sites; - * - */ -class Google_Service_Dfareporting_Resource_Sites extends Google_Service_Resource -{ - /** - * Gets one site by ID. (sites.get) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Site ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_Site - */ - public function get($profileId, $id, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dfareporting_Site"); - } - /** - * Inserts a new site. (sites.insert) - * - * @param string $profileId User profile ID associated with this request. - * @param Google_Service_Dfareporting_Site $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_Site - */ - public function insert($profileId, Google_Service_Dfareporting_Site $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Dfareporting_Site"); - } - /** - * Retrieves a list of sites, possibly filtered. This method supports paging. - * (sites.listSites) - * - * @param string $profileId User profile ID associated with this request. - * @param array $optParams Optional parameters. - * - * @opt_param bool acceptsInStreamVideoPlacements This search filter is no - * longer supported and will have no effect on the results returned. - * @opt_param bool acceptsInterstitialPlacements This search filter is no longer - * supported and will have no effect on the results returned. - * @opt_param bool acceptsPublisherPaidPlacements Select only sites that accept - * publisher paid placements. - * @opt_param bool adWordsSite Select only AdWords sites. - * @opt_param bool approved Select only approved sites. - * @opt_param string campaignIds Select only sites with these campaign IDs. - * @opt_param string directorySiteIds Select only sites with these directory - * site IDs. - * @opt_param string ids Select only sites with these IDs. - * @opt_param int maxResults Maximum number of results to return. - * @opt_param string pageToken Value of the nextPageToken from the previous - * result page. - * @opt_param string searchString Allows searching for objects by name, ID or - * keyName. Wildcards (*) are allowed. For example, "site*2015" will return - * objects with names like "site June 2015", "site April 2015", or simply "site - * 2015". Most of the searches also add wildcards implicitly at the start and - * the end of the search string. For example, a search string of "site" will - * match objects with name "my site", "site 2015", or simply "site". - * @opt_param string sortField Field by which to sort the list. - * @opt_param string sortOrder Order of sorted results. - * @opt_param string subaccountId Select only sites with this subaccount ID. - * @opt_param bool unmappedSite Select only sites that have not been mapped to a - * directory site. - * @return Google_Service_Dfareporting_SitesListResponse - */ - public function listSites($profileId, $optParams = array()) - { - $params = array('profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dfareporting_SitesListResponse"); - } - /** - * Updates an existing site. This method supports patch semantics. (sites.patch) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Site ID. - * @param Google_Service_Dfareporting_Site $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_Site - */ - public function patch($profileId, $id, Google_Service_Dfareporting_Site $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Dfareporting_Site"); - } - /** - * Updates an existing site. (sites.update) - * - * @param string $profileId User profile ID associated with this request. - * @param Google_Service_Dfareporting_Site $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_Site - */ - public function update($profileId, Google_Service_Dfareporting_Site $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Dfareporting_Site"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Sizes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Sizes.php deleted file mode 100644 index dad8f3a7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Sizes.php +++ /dev/null @@ -1,77 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $sizes = $dfareportingService->sizes; - * - */ -class Google_Service_Dfareporting_Resource_Sizes extends Google_Service_Resource -{ - /** - * Gets one size by ID. (sizes.get) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Size ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_Size - */ - public function get($profileId, $id, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dfareporting_Size"); - } - /** - * Inserts a new size. (sizes.insert) - * - * @param string $profileId User profile ID associated with this request. - * @param Google_Service_Dfareporting_Size $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_Size - */ - public function insert($profileId, Google_Service_Dfareporting_Size $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Dfareporting_Size"); - } - /** - * Retrieves a list of sizes, possibly filtered. Retrieved sizes are globally - * unique and may include values not currently in use by your account. Due to - * this, the list of sizes returned by this method may differ from the list seen - * in the Trafficking UI. (sizes.listSizes) - * - * @param string $profileId User profile ID associated with this request. - * @param array $optParams Optional parameters. - * - * @opt_param int height Select only sizes with this height. - * @opt_param bool iabStandard Select only IAB standard sizes. - * @opt_param string ids Select only sizes with these IDs. - * @opt_param int width Select only sizes with this width. - * @return Google_Service_Dfareporting_SizesListResponse - */ - public function listSizes($profileId, $optParams = array()) - { - $params = array('profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dfareporting_SizesListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Subaccounts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Subaccounts.php deleted file mode 100644 index c9855ec0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/Subaccounts.php +++ /dev/null @@ -1,114 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $subaccounts = $dfareportingService->subaccounts; - * - */ -class Google_Service_Dfareporting_Resource_Subaccounts extends Google_Service_Resource -{ - /** - * Gets one subaccount by ID. (subaccounts.get) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Subaccount ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_Subaccount - */ - public function get($profileId, $id, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dfareporting_Subaccount"); - } - /** - * Inserts a new subaccount. (subaccounts.insert) - * - * @param string $profileId User profile ID associated with this request. - * @param Google_Service_Dfareporting_Subaccount $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_Subaccount - */ - public function insert($profileId, Google_Service_Dfareporting_Subaccount $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Dfareporting_Subaccount"); - } - /** - * Gets a list of subaccounts, possibly filtered. This method supports paging. - * (subaccounts.listSubaccounts) - * - * @param string $profileId User profile ID associated with this request. - * @param array $optParams Optional parameters. - * - * @opt_param string ids Select only subaccounts with these IDs. - * @opt_param int maxResults Maximum number of results to return. - * @opt_param string pageToken Value of the nextPageToken from the previous - * result page. - * @opt_param string searchString Allows searching for objects by name or ID. - * Wildcards (*) are allowed. For example, "subaccount*2015" will return objects - * with names like "subaccount June 2015", "subaccount April 2015", or simply - * "subaccount 2015". Most of the searches also add wildcards implicitly at the - * start and the end of the search string. For example, a search string of - * "subaccount" will match objects with name "my subaccount", "subaccount 2015", - * or simply "subaccount". - * @opt_param string sortField Field by which to sort the list. - * @opt_param string sortOrder Order of sorted results. - * @return Google_Service_Dfareporting_SubaccountsListResponse - */ - public function listSubaccounts($profileId, $optParams = array()) - { - $params = array('profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dfareporting_SubaccountsListResponse"); - } - /** - * Updates an existing subaccount. This method supports patch semantics. - * (subaccounts.patch) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Subaccount ID. - * @param Google_Service_Dfareporting_Subaccount $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_Subaccount - */ - public function patch($profileId, $id, Google_Service_Dfareporting_Subaccount $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Dfareporting_Subaccount"); - } - /** - * Updates an existing subaccount. (subaccounts.update) - * - * @param string $profileId User profile ID associated with this request. - * @param Google_Service_Dfareporting_Subaccount $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_Subaccount - */ - public function update($profileId, Google_Service_Dfareporting_Subaccount $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Dfareporting_Subaccount"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/TargetableRemarketingLists.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/TargetableRemarketingLists.php deleted file mode 100644 index 9a3f9606..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/TargetableRemarketingLists.php +++ /dev/null @@ -1,74 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $targetableRemarketingLists = $dfareportingService->targetableRemarketingLists; - * - */ -class Google_Service_Dfareporting_Resource_TargetableRemarketingLists extends Google_Service_Resource -{ - /** - * Gets one remarketing list by ID. (targetableRemarketingLists.get) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Remarketing list ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_TargetableRemarketingList - */ - public function get($profileId, $id, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dfareporting_TargetableRemarketingList"); - } - /** - * Retrieves a list of targetable remarketing lists, possibly filtered. This - * method supports paging. - * (targetableRemarketingLists.listTargetableRemarketingLists) - * - * @param string $profileId User profile ID associated with this request. - * @param string $advertiserId Select only targetable remarketing lists - * targetable by these advertisers. - * @param array $optParams Optional parameters. - * - * @opt_param bool active Select only active or only inactive targetable - * remarketing lists. - * @opt_param int maxResults Maximum number of results to return. - * @opt_param string name Allows searching for objects by name or ID. Wildcards - * (*) are allowed. For example, "remarketing list*2015" will return objects - * with names like "remarketing list June 2015", "remarketing list April 2015", - * or simply "remarketing list 2015". Most of the searches also add wildcards - * implicitly at the start and the end of the search string. For example, a - * search string of "remarketing list" will match objects with name "my - * remarketing list", "remarketing list 2015", or simply "remarketing list". - * @opt_param string pageToken Value of the nextPageToken from the previous - * result page. - * @opt_param string sortField Field by which to sort the list. - * @opt_param string sortOrder Order of sorted results. - * @return Google_Service_Dfareporting_TargetableRemarketingListsListResponse - */ - public function listTargetableRemarketingLists($profileId, $advertiserId, $optParams = array()) - { - $params = array('profileId' => $profileId, 'advertiserId' => $advertiserId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dfareporting_TargetableRemarketingListsListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/TargetingTemplates.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/TargetingTemplates.php deleted file mode 100644 index a31ec74e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/TargetingTemplates.php +++ /dev/null @@ -1,116 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $targetingTemplates = $dfareportingService->targetingTemplates; - * - */ -class Google_Service_Dfareporting_Resource_TargetingTemplates extends Google_Service_Resource -{ - /** - * Gets one targeting template by ID. (targetingTemplates.get) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Targeting template ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_TargetingTemplate - */ - public function get($profileId, $id, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dfareporting_TargetingTemplate"); - } - /** - * Inserts a new targeting template. (targetingTemplates.insert) - * - * @param string $profileId User profile ID associated with this request. - * @param Google_Service_Dfareporting_TargetingTemplate $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_TargetingTemplate - */ - public function insert($profileId, Google_Service_Dfareporting_TargetingTemplate $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Dfareporting_TargetingTemplate"); - } - /** - * Retrieves a list of targeting templates, optionally filtered. This method - * supports paging. (targetingTemplates.listTargetingTemplates) - * - * @param string $profileId User profile ID associated with this request. - * @param array $optParams Optional parameters. - * - * @opt_param string advertiserId Select only targeting templates with this - * advertiser ID. - * @opt_param string ids Select only targeting templates with these IDs. - * @opt_param int maxResults Maximum number of results to return. - * @opt_param string pageToken Value of the nextPageToken from the previous - * result page. - * @opt_param string searchString Allows searching for objects by name or ID. - * Wildcards (*) are allowed. For example, "template*2015" will return objects - * with names like "template June 2015", "template April 2015", or simply - * "template 2015". Most of the searches also add wildcards implicitly at the - * start and the end of the search string. For example, a search string of - * "template" will match objects with name "my template", "template 2015", or - * simply "template". - * @opt_param string sortField Field by which to sort the list. - * @opt_param string sortOrder Order of sorted results. - * @return Google_Service_Dfareporting_TargetingTemplatesListResponse - */ - public function listTargetingTemplates($profileId, $optParams = array()) - { - $params = array('profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dfareporting_TargetingTemplatesListResponse"); - } - /** - * Updates an existing targeting template. This method supports patch semantics. - * (targetingTemplates.patch) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id Targeting template ID. - * @param Google_Service_Dfareporting_TargetingTemplate $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_TargetingTemplate - */ - public function patch($profileId, $id, Google_Service_Dfareporting_TargetingTemplate $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Dfareporting_TargetingTemplate"); - } - /** - * Updates an existing targeting template. (targetingTemplates.update) - * - * @param string $profileId User profile ID associated with this request. - * @param Google_Service_Dfareporting_TargetingTemplate $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_TargetingTemplate - */ - public function update($profileId, Google_Service_Dfareporting_TargetingTemplate $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Dfareporting_TargetingTemplate"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/UserProfiles.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/UserProfiles.php deleted file mode 100644 index 9b9b6946..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/UserProfiles.php +++ /dev/null @@ -1,53 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $userProfiles = $dfareportingService->userProfiles; - * - */ -class Google_Service_Dfareporting_Resource_UserProfiles extends Google_Service_Resource -{ - /** - * Gets one user profile by ID. (userProfiles.get) - * - * @param string $profileId The user profile ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_UserProfile - */ - public function get($profileId, $optParams = array()) - { - $params = array('profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dfareporting_UserProfile"); - } - /** - * Retrieves list of user profiles for a user. (userProfiles.listUserProfiles) - * - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_UserProfileList - */ - public function listUserProfiles($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dfareporting_UserProfileList"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/UserRolePermissionGroups.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/UserRolePermissionGroups.php deleted file mode 100644 index 02ee9f6f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/UserRolePermissionGroups.php +++ /dev/null @@ -1,56 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $userRolePermissionGroups = $dfareportingService->userRolePermissionGroups; - * - */ -class Google_Service_Dfareporting_Resource_UserRolePermissionGroups extends Google_Service_Resource -{ - /** - * Gets one user role permission group by ID. (userRolePermissionGroups.get) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id User role permission group ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_UserRolePermissionGroup - */ - public function get($profileId, $id, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dfareporting_UserRolePermissionGroup"); - } - /** - * Gets a list of all supported user role permission groups. - * (userRolePermissionGroups.listUserRolePermissionGroups) - * - * @param string $profileId User profile ID associated with this request. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_UserRolePermissionGroupsListResponse - */ - public function listUserRolePermissionGroups($profileId, $optParams = array()) - { - $params = array('profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dfareporting_UserRolePermissionGroupsListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/UserRolePermissions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/UserRolePermissions.php deleted file mode 100644 index e1216a55..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/UserRolePermissions.php +++ /dev/null @@ -1,58 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $userRolePermissions = $dfareportingService->userRolePermissions; - * - */ -class Google_Service_Dfareporting_Resource_UserRolePermissions extends Google_Service_Resource -{ - /** - * Gets one user role permission by ID. (userRolePermissions.get) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id User role permission ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_UserRolePermission - */ - public function get($profileId, $id, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dfareporting_UserRolePermission"); - } - /** - * Gets a list of user role permissions, possibly filtered. - * (userRolePermissions.listUserRolePermissions) - * - * @param string $profileId User profile ID associated with this request. - * @param array $optParams Optional parameters. - * - * @opt_param string ids Select only user role permissions with these IDs. - * @return Google_Service_Dfareporting_UserRolePermissionsListResponse - */ - public function listUserRolePermissions($profileId, $optParams = array()) - { - $params = array('profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dfareporting_UserRolePermissionsListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/UserRoles.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/UserRoles.php deleted file mode 100644 index b90344d6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/UserRoles.php +++ /dev/null @@ -1,131 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $userRoles = $dfareportingService->userRoles; - * - */ -class Google_Service_Dfareporting_Resource_UserRoles extends Google_Service_Resource -{ - /** - * Deletes an existing user role. (userRoles.delete) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id User role ID. - * @param array $optParams Optional parameters. - */ - public function delete($profileId, $id, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Gets one user role by ID. (userRoles.get) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id User role ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_UserRole - */ - public function get($profileId, $id, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dfareporting_UserRole"); - } - /** - * Inserts a new user role. (userRoles.insert) - * - * @param string $profileId User profile ID associated with this request. - * @param Google_Service_Dfareporting_UserRole $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_UserRole - */ - public function insert($profileId, Google_Service_Dfareporting_UserRole $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Dfareporting_UserRole"); - } - /** - * Retrieves a list of user roles, possibly filtered. This method supports - * paging. (userRoles.listUserRoles) - * - * @param string $profileId User profile ID associated with this request. - * @param array $optParams Optional parameters. - * - * @opt_param bool accountUserRoleOnly Select only account level user roles not - * associated with any specific subaccount. - * @opt_param string ids Select only user roles with the specified IDs. - * @opt_param int maxResults Maximum number of results to return. - * @opt_param string pageToken Value of the nextPageToken from the previous - * result page. - * @opt_param string searchString Allows searching for objects by name or ID. - * Wildcards (*) are allowed. For example, "userrole*2015" will return objects - * with names like "userrole June 2015", "userrole April 2015", or simply - * "userrole 2015". Most of the searches also add wildcards implicitly at the - * start and the end of the search string. For example, a search string of - * "userrole" will match objects with name "my userrole", "userrole 2015", or - * simply "userrole". - * @opt_param string sortField Field by which to sort the list. - * @opt_param string sortOrder Order of sorted results. - * @opt_param string subaccountId Select only user roles that belong to this - * subaccount. - * @return Google_Service_Dfareporting_UserRolesListResponse - */ - public function listUserRoles($profileId, $optParams = array()) - { - $params = array('profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dfareporting_UserRolesListResponse"); - } - /** - * Updates an existing user role. This method supports patch semantics. - * (userRoles.patch) - * - * @param string $profileId User profile ID associated with this request. - * @param string $id User role ID. - * @param Google_Service_Dfareporting_UserRole $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_UserRole - */ - public function patch($profileId, $id, Google_Service_Dfareporting_UserRole $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Dfareporting_UserRole"); - } - /** - * Updates an existing user role. (userRoles.update) - * - * @param string $profileId User profile ID associated with this request. - * @param Google_Service_Dfareporting_UserRole $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_UserRole - */ - public function update($profileId, Google_Service_Dfareporting_UserRole $postBody, $optParams = array()) - { - $params = array('profileId' => $profileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Dfareporting_UserRole"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/VideoFormats.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/VideoFormats.php deleted file mode 100644 index b6106394..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Resource/VideoFormats.php +++ /dev/null @@ -1,55 +0,0 @@ - - * $dfareportingService = new Google_Service_Dfareporting(...); - * $videoFormats = $dfareportingService->videoFormats; - * - */ -class Google_Service_Dfareporting_Resource_VideoFormats extends Google_Service_Resource -{ - /** - * Gets one video format by ID. (videoFormats.get) - * - * @param string $profileId User profile ID associated with this request. - * @param int $id Video format ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_VideoFormat - */ - public function get($profileId, $id, $optParams = array()) - { - $params = array('profileId' => $profileId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dfareporting_VideoFormat"); - } - /** - * Lists available video formats. (videoFormats.listVideoFormats) - * - * @param string $profileId User profile ID associated with this request. - * @param array $optParams Optional parameters. - * @return Google_Service_Dfareporting_VideoFormatsListResponse - */ - public function listVideoFormats($profileId, $optParams = array()) - { - $params = array('profileId' => $profileId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dfareporting_VideoFormatsListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/RichMediaExitOverride.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/RichMediaExitOverride.php deleted file mode 100644 index 1b51073a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/RichMediaExitOverride.php +++ /dev/null @@ -1,55 +0,0 @@ -clickThroughUrl = $clickThroughUrl; - } - /** - * @return Google_Service_Dfareporting_ClickThroughUrl - */ - public function getClickThroughUrl() - { - return $this->clickThroughUrl; - } - public function setEnabled($enabled) - { - $this->enabled = $enabled; - } - public function getEnabled() - { - return $this->enabled; - } - public function setExitId($exitId) - { - $this->exitId = $exitId; - } - public function getExitId() - { - return $this->exitId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Rule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Rule.php deleted file mode 100644 index b4b25ad7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Rule.php +++ /dev/null @@ -1,48 +0,0 @@ -assetId = $assetId; - } - public function getAssetId() - { - return $this->assetId; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setTargetingTemplateId($targetingTemplateId) - { - $this->targetingTemplateId = $targetingTemplateId; - } - public function getTargetingTemplateId() - { - return $this->targetingTemplateId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Site.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Site.php deleted file mode 100644 index 0bf5c1ea..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Site.php +++ /dev/null @@ -1,174 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setApproved($approved) - { - $this->approved = $approved; - } - public function getApproved() - { - return $this->approved; - } - public function setDirectorySiteId($directorySiteId) - { - $this->directorySiteId = $directorySiteId; - } - public function getDirectorySiteId() - { - return $this->directorySiteId; - } - /** - * @param Google_Service_Dfareporting_DimensionValue - */ - public function setDirectorySiteIdDimensionValue(Google_Service_Dfareporting_DimensionValue $directorySiteIdDimensionValue) - { - $this->directorySiteIdDimensionValue = $directorySiteIdDimensionValue; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getDirectorySiteIdDimensionValue() - { - return $this->directorySiteIdDimensionValue; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Dfareporting_DimensionValue - */ - public function setIdDimensionValue(Google_Service_Dfareporting_DimensionValue $idDimensionValue) - { - $this->idDimensionValue = $idDimensionValue; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getIdDimensionValue() - { - return $this->idDimensionValue; - } - public function setKeyName($keyName) - { - $this->keyName = $keyName; - } - public function getKeyName() - { - return $this->keyName; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Dfareporting_SiteContact - */ - public function setSiteContacts($siteContacts) - { - $this->siteContacts = $siteContacts; - } - /** - * @return Google_Service_Dfareporting_SiteContact - */ - public function getSiteContacts() - { - return $this->siteContacts; - } - /** - * @param Google_Service_Dfareporting_SiteSettings - */ - public function setSiteSettings(Google_Service_Dfareporting_SiteSettings $siteSettings) - { - $this->siteSettings = $siteSettings; - } - /** - * @return Google_Service_Dfareporting_SiteSettings - */ - public function getSiteSettings() - { - return $this->siteSettings; - } - public function setSubaccountId($subaccountId) - { - $this->subaccountId = $subaccountId; - } - public function getSubaccountId() - { - return $this->subaccountId; - } - /** - * @param Google_Service_Dfareporting_SiteVideoSettings - */ - public function setVideoSettings(Google_Service_Dfareporting_SiteVideoSettings $videoSettings) - { - $this->videoSettings = $videoSettings; - } - /** - * @return Google_Service_Dfareporting_SiteVideoSettings - */ - public function getVideoSettings() - { - return $this->videoSettings; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/SiteCompanionSetting.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/SiteCompanionSetting.php deleted file mode 100644 index 1b664551..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/SiteCompanionSetting.php +++ /dev/null @@ -1,65 +0,0 @@ -companionsDisabled = $companionsDisabled; - } - public function getCompanionsDisabled() - { - return $this->companionsDisabled; - } - /** - * @param Google_Service_Dfareporting_Size - */ - public function setEnabledSizes($enabledSizes) - { - $this->enabledSizes = $enabledSizes; - } - /** - * @return Google_Service_Dfareporting_Size - */ - public function getEnabledSizes() - { - return $this->enabledSizes; - } - public function setImageOnly($imageOnly) - { - $this->imageOnly = $imageOnly; - } - public function getImageOnly() - { - return $this->imageOnly; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/SiteContact.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/SiteContact.php deleted file mode 100644 index 20047063..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/SiteContact.php +++ /dev/null @@ -1,93 +0,0 @@ -address = $address; - } - public function getAddress() - { - return $this->address; - } - public function setContactType($contactType) - { - $this->contactType = $contactType; - } - public function getContactType() - { - return $this->contactType; - } - public function setEmail($email) - { - $this->email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setFirstName($firstName) - { - $this->firstName = $firstName; - } - public function getFirstName() - { - return $this->firstName; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setLastName($lastName) - { - $this->lastName = $lastName; - } - public function getLastName() - { - return $this->lastName; - } - public function setPhone($phone) - { - $this->phone = $phone; - } - public function getPhone() - { - return $this->phone; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/SiteSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/SiteSettings.php deleted file mode 100644 index 89523b31..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/SiteSettings.php +++ /dev/null @@ -1,82 +0,0 @@ -activeViewOptOut = $activeViewOptOut; - } - public function getActiveViewOptOut() - { - return $this->activeViewOptOut; - } - public function setAdBlockingOptOut($adBlockingOptOut) - { - $this->adBlockingOptOut = $adBlockingOptOut; - } - public function getAdBlockingOptOut() - { - return $this->adBlockingOptOut; - } - public function setDisableNewCookie($disableNewCookie) - { - $this->disableNewCookie = $disableNewCookie; - } - public function getDisableNewCookie() - { - return $this->disableNewCookie; - } - /** - * @param Google_Service_Dfareporting_TagSetting - */ - public function setTagSetting(Google_Service_Dfareporting_TagSetting $tagSetting) - { - $this->tagSetting = $tagSetting; - } - /** - * @return Google_Service_Dfareporting_TagSetting - */ - public function getTagSetting() - { - return $this->tagSetting; - } - public function setVideoActiveViewOptOutTemplate($videoActiveViewOptOutTemplate) - { - $this->videoActiveViewOptOutTemplate = $videoActiveViewOptOutTemplate; - } - public function getVideoActiveViewOptOutTemplate() - { - return $this->videoActiveViewOptOutTemplate; - } - public function setVpaidAdapterChoiceTemplate($vpaidAdapterChoiceTemplate) - { - $this->vpaidAdapterChoiceTemplate = $vpaidAdapterChoiceTemplate; - } - public function getVpaidAdapterChoiceTemplate() - { - return $this->vpaidAdapterChoiceTemplate; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/SiteSkippableSetting.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/SiteSkippableSetting.php deleted file mode 100644 index 407a9879..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/SiteSkippableSetting.php +++ /dev/null @@ -1,71 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Dfareporting_VideoOffset - */ - public function setProgressOffset(Google_Service_Dfareporting_VideoOffset $progressOffset) - { - $this->progressOffset = $progressOffset; - } - /** - * @return Google_Service_Dfareporting_VideoOffset - */ - public function getProgressOffset() - { - return $this->progressOffset; - } - /** - * @param Google_Service_Dfareporting_VideoOffset - */ - public function setSkipOffset(Google_Service_Dfareporting_VideoOffset $skipOffset) - { - $this->skipOffset = $skipOffset; - } - /** - * @return Google_Service_Dfareporting_VideoOffset - */ - public function getSkipOffset() - { - return $this->skipOffset; - } - public function setSkippable($skippable) - { - $this->skippable = $skippable; - } - public function getSkippable() - { - return $this->skippable; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/SiteTranscodeSetting.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/SiteTranscodeSetting.php deleted file mode 100644 index 94c283a1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/SiteTranscodeSetting.php +++ /dev/null @@ -1,40 +0,0 @@ -enabledVideoFormats = $enabledVideoFormats; - } - public function getEnabledVideoFormats() - { - return $this->enabledVideoFormats; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/SiteVideoSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/SiteVideoSettings.php deleted file mode 100644 index 7f4fd5e2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/SiteVideoSettings.php +++ /dev/null @@ -1,87 +0,0 @@ -companionSettings = $companionSettings; - } - /** - * @return Google_Service_Dfareporting_SiteCompanionSetting - */ - public function getCompanionSettings() - { - return $this->companionSettings; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setOrientation($orientation) - { - $this->orientation = $orientation; - } - public function getOrientation() - { - return $this->orientation; - } - /** - * @param Google_Service_Dfareporting_SiteSkippableSetting - */ - public function setSkippableSettings(Google_Service_Dfareporting_SiteSkippableSetting $skippableSettings) - { - $this->skippableSettings = $skippableSettings; - } - /** - * @return Google_Service_Dfareporting_SiteSkippableSetting - */ - public function getSkippableSettings() - { - return $this->skippableSettings; - } - /** - * @param Google_Service_Dfareporting_SiteTranscodeSetting - */ - public function setTranscodeSettings(Google_Service_Dfareporting_SiteTranscodeSetting $transcodeSettings) - { - $this->transcodeSettings = $transcodeSettings; - } - /** - * @return Google_Service_Dfareporting_SiteTranscodeSetting - */ - public function getTranscodeSettings() - { - return $this->transcodeSettings; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/SitesListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/SitesListResponse.php deleted file mode 100644 index 9e3ef74e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/SitesListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Dfareporting_Site - */ - public function setSites($sites) - { - $this->sites = $sites; - } - /** - * @return Google_Service_Dfareporting_Site - */ - public function getSites() - { - return $this->sites; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Size.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Size.php deleted file mode 100644 index d542f26e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Size.php +++ /dev/null @@ -1,66 +0,0 @@ -height = $height; - } - public function getHeight() - { - return $this->height; - } - public function setIab($iab) - { - $this->iab = $iab; - } - public function getIab() - { - return $this->iab; - } - 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 setWidth($width) - { - $this->width = $width; - } - public function getWidth() - { - return $this->width; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/SizesListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/SizesListResponse.php deleted file mode 100644 index 5bed71dd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/SizesListResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Dfareporting_Size - */ - public function setSizes($sizes) - { - $this->sizes = $sizes; - } - /** - * @return Google_Service_Dfareporting_Size - */ - public function getSizes() - { - return $this->sizes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/SkippableSetting.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/SkippableSetting.php deleted file mode 100644 index 5f41eade..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/SkippableSetting.php +++ /dev/null @@ -1,71 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Dfareporting_VideoOffset - */ - public function setProgressOffset(Google_Service_Dfareporting_VideoOffset $progressOffset) - { - $this->progressOffset = $progressOffset; - } - /** - * @return Google_Service_Dfareporting_VideoOffset - */ - public function getProgressOffset() - { - return $this->progressOffset; - } - /** - * @param Google_Service_Dfareporting_VideoOffset - */ - public function setSkipOffset(Google_Service_Dfareporting_VideoOffset $skipOffset) - { - $this->skipOffset = $skipOffset; - } - /** - * @return Google_Service_Dfareporting_VideoOffset - */ - public function getSkipOffset() - { - return $this->skipOffset; - } - public function setSkippable($skippable) - { - $this->skippable = $skippable; - } - public function getSkippable() - { - return $this->skippable; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/SortedDimension.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/SortedDimension.php deleted file mode 100644 index fb617fe3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/SortedDimension.php +++ /dev/null @@ -1,48 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setSortOrder($sortOrder) - { - $this->sortOrder = $sortOrder; - } - public function getSortOrder() - { - return $this->sortOrder; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Subaccount.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Subaccount.php deleted file mode 100644 index 4e8cae03..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/Subaccount.php +++ /dev/null @@ -1,67 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setAvailablePermissionIds($availablePermissionIds) - { - $this->availablePermissionIds = $availablePermissionIds; - } - public function getAvailablePermissionIds() - { - return $this->availablePermissionIds; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/SubaccountsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/SubaccountsListResponse.php deleted file mode 100644 index 045e5624..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/SubaccountsListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Dfareporting_Subaccount - */ - public function setSubaccounts($subaccounts) - { - $this->subaccounts = $subaccounts; - } - /** - * @return Google_Service_Dfareporting_Subaccount - */ - public function getSubaccounts() - { - return $this->subaccounts; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/TagData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/TagData.php deleted file mode 100644 index 6c32a7f2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/TagData.php +++ /dev/null @@ -1,66 +0,0 @@ -adId = $adId; - } - public function getAdId() - { - return $this->adId; - } - public function setClickTag($clickTag) - { - $this->clickTag = $clickTag; - } - public function getClickTag() - { - return $this->clickTag; - } - public function setCreativeId($creativeId) - { - $this->creativeId = $creativeId; - } - public function getCreativeId() - { - return $this->creativeId; - } - public function setFormat($format) - { - $this->format = $format; - } - public function getFormat() - { - return $this->format; - } - public function setImpressionTag($impressionTag) - { - $this->impressionTag = $impressionTag; - } - public function getImpressionTag() - { - return $this->impressionTag; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/TagSetting.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/TagSetting.php deleted file mode 100644 index 0cc7029c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/TagSetting.php +++ /dev/null @@ -1,57 +0,0 @@ -additionalKeyValues = $additionalKeyValues; - } - public function getAdditionalKeyValues() - { - return $this->additionalKeyValues; - } - public function setIncludeClickThroughUrls($includeClickThroughUrls) - { - $this->includeClickThroughUrls = $includeClickThroughUrls; - } - public function getIncludeClickThroughUrls() - { - return $this->includeClickThroughUrls; - } - public function setIncludeClickTracking($includeClickTracking) - { - $this->includeClickTracking = $includeClickTracking; - } - public function getIncludeClickTracking() - { - return $this->includeClickTracking; - } - public function setKeywordOption($keywordOption) - { - $this->keywordOption = $keywordOption; - } - public function getKeywordOption() - { - return $this->keywordOption; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/TagSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/TagSettings.php deleted file mode 100644 index 231edb7a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/TagSettings.php +++ /dev/null @@ -1,39 +0,0 @@ -dynamicTagEnabled = $dynamicTagEnabled; - } - public function getDynamicTagEnabled() - { - return $this->dynamicTagEnabled; - } - public function setImageTagEnabled($imageTagEnabled) - { - $this->imageTagEnabled = $imageTagEnabled; - } - public function getImageTagEnabled() - { - return $this->imageTagEnabled; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/TargetWindow.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/TargetWindow.php deleted file mode 100644 index 4652e115..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/TargetWindow.php +++ /dev/null @@ -1,39 +0,0 @@ -customHtml = $customHtml; - } - public function getCustomHtml() - { - return $this->customHtml; - } - public function setTargetWindowOption($targetWindowOption) - { - $this->targetWindowOption = $targetWindowOption; - } - public function getTargetWindowOption() - { - return $this->targetWindowOption; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/TargetableRemarketingList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/TargetableRemarketingList.php deleted file mode 100644 index 021074d4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/TargetableRemarketingList.php +++ /dev/null @@ -1,136 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setActive($active) - { - $this->active = $active; - } - public function getActive() - { - return $this->active; - } - public function setAdvertiserId($advertiserId) - { - $this->advertiserId = $advertiserId; - } - public function getAdvertiserId() - { - return $this->advertiserId; - } - /** - * @param Google_Service_Dfareporting_DimensionValue - */ - public function setAdvertiserIdDimensionValue(Google_Service_Dfareporting_DimensionValue $advertiserIdDimensionValue) - { - $this->advertiserIdDimensionValue = $advertiserIdDimensionValue; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getAdvertiserIdDimensionValue() - { - return $this->advertiserIdDimensionValue; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - 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 setLifeSpan($lifeSpan) - { - $this->lifeSpan = $lifeSpan; - } - public function getLifeSpan() - { - return $this->lifeSpan; - } - public function setListSize($listSize) - { - $this->listSize = $listSize; - } - public function getListSize() - { - return $this->listSize; - } - public function setListSource($listSource) - { - $this->listSource = $listSource; - } - public function getListSource() - { - return $this->listSource; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setSubaccountId($subaccountId) - { - $this->subaccountId = $subaccountId; - } - public function getSubaccountId() - { - return $this->subaccountId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/TargetableRemarketingListsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/TargetableRemarketingListsListResponse.php deleted file mode 100644 index 65f449f0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/TargetableRemarketingListsListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Dfareporting_TargetableRemarketingList - */ - public function setTargetableRemarketingLists($targetableRemarketingLists) - { - $this->targetableRemarketingLists = $targetableRemarketingLists; - } - /** - * @return Google_Service_Dfareporting_TargetableRemarketingList - */ - public function getTargetableRemarketingLists() - { - return $this->targetableRemarketingLists; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/TargetingTemplate.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/TargetingTemplate.php deleted file mode 100644 index 422d3c2a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/TargetingTemplate.php +++ /dev/null @@ -1,187 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setAdvertiserId($advertiserId) - { - $this->advertiserId = $advertiserId; - } - public function getAdvertiserId() - { - return $this->advertiserId; - } - /** - * @param Google_Service_Dfareporting_DimensionValue - */ - public function setAdvertiserIdDimensionValue(Google_Service_Dfareporting_DimensionValue $advertiserIdDimensionValue) - { - $this->advertiserIdDimensionValue = $advertiserIdDimensionValue; - } - /** - * @return Google_Service_Dfareporting_DimensionValue - */ - public function getAdvertiserIdDimensionValue() - { - return $this->advertiserIdDimensionValue; - } - /** - * @param Google_Service_Dfareporting_DayPartTargeting - */ - public function setDayPartTargeting(Google_Service_Dfareporting_DayPartTargeting $dayPartTargeting) - { - $this->dayPartTargeting = $dayPartTargeting; - } - /** - * @return Google_Service_Dfareporting_DayPartTargeting - */ - public function getDayPartTargeting() - { - return $this->dayPartTargeting; - } - /** - * @param Google_Service_Dfareporting_GeoTargeting - */ - public function setGeoTargeting(Google_Service_Dfareporting_GeoTargeting $geoTargeting) - { - $this->geoTargeting = $geoTargeting; - } - /** - * @return Google_Service_Dfareporting_GeoTargeting - */ - public function getGeoTargeting() - { - return $this->geoTargeting; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Dfareporting_KeyValueTargetingExpression - */ - public function setKeyValueTargetingExpression(Google_Service_Dfareporting_KeyValueTargetingExpression $keyValueTargetingExpression) - { - $this->keyValueTargetingExpression = $keyValueTargetingExpression; - } - /** - * @return Google_Service_Dfareporting_KeyValueTargetingExpression - */ - public function getKeyValueTargetingExpression() - { - return $this->keyValueTargetingExpression; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Dfareporting_LanguageTargeting - */ - public function setLanguageTargeting(Google_Service_Dfareporting_LanguageTargeting $languageTargeting) - { - $this->languageTargeting = $languageTargeting; - } - /** - * @return Google_Service_Dfareporting_LanguageTargeting - */ - public function getLanguageTargeting() - { - return $this->languageTargeting; - } - /** - * @param Google_Service_Dfareporting_ListTargetingExpression - */ - public function setListTargetingExpression(Google_Service_Dfareporting_ListTargetingExpression $listTargetingExpression) - { - $this->listTargetingExpression = $listTargetingExpression; - } - /** - * @return Google_Service_Dfareporting_ListTargetingExpression - */ - public function getListTargetingExpression() - { - return $this->listTargetingExpression; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setSubaccountId($subaccountId) - { - $this->subaccountId = $subaccountId; - } - public function getSubaccountId() - { - return $this->subaccountId; - } - /** - * @param Google_Service_Dfareporting_TechnologyTargeting - */ - public function setTechnologyTargeting(Google_Service_Dfareporting_TechnologyTargeting $technologyTargeting) - { - $this->technologyTargeting = $technologyTargeting; - } - /** - * @return Google_Service_Dfareporting_TechnologyTargeting - */ - public function getTechnologyTargeting() - { - return $this->technologyTargeting; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/TargetingTemplatesListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/TargetingTemplatesListResponse.php deleted file mode 100644 index 68bcc0a8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/TargetingTemplatesListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Dfareporting_TargetingTemplate - */ - public function setTargetingTemplates($targetingTemplates) - { - $this->targetingTemplates = $targetingTemplates; - } - /** - * @return Google_Service_Dfareporting_TargetingTemplate - */ - public function getTargetingTemplates() - { - return $this->targetingTemplates; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/TechnologyTargeting.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/TechnologyTargeting.php deleted file mode 100644 index b6dc2f5d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/TechnologyTargeting.php +++ /dev/null @@ -1,118 +0,0 @@ -browsers = $browsers; - } - /** - * @return Google_Service_Dfareporting_Browser - */ - public function getBrowsers() - { - return $this->browsers; - } - /** - * @param Google_Service_Dfareporting_ConnectionType - */ - public function setConnectionTypes($connectionTypes) - { - $this->connectionTypes = $connectionTypes; - } - /** - * @return Google_Service_Dfareporting_ConnectionType - */ - public function getConnectionTypes() - { - return $this->connectionTypes; - } - /** - * @param Google_Service_Dfareporting_MobileCarrier - */ - public function setMobileCarriers($mobileCarriers) - { - $this->mobileCarriers = $mobileCarriers; - } - /** - * @return Google_Service_Dfareporting_MobileCarrier - */ - public function getMobileCarriers() - { - return $this->mobileCarriers; - } - /** - * @param Google_Service_Dfareporting_OperatingSystemVersion - */ - public function setOperatingSystemVersions($operatingSystemVersions) - { - $this->operatingSystemVersions = $operatingSystemVersions; - } - /** - * @return Google_Service_Dfareporting_OperatingSystemVersion - */ - public function getOperatingSystemVersions() - { - return $this->operatingSystemVersions; - } - /** - * @param Google_Service_Dfareporting_OperatingSystem - */ - public function setOperatingSystems($operatingSystems) - { - $this->operatingSystems = $operatingSystems; - } - /** - * @return Google_Service_Dfareporting_OperatingSystem - */ - public function getOperatingSystems() - { - return $this->operatingSystems; - } - /** - * @param Google_Service_Dfareporting_PlatformType - */ - public function setPlatformTypes($platformTypes) - { - $this->platformTypes = $platformTypes; - } - /** - * @return Google_Service_Dfareporting_PlatformType - */ - public function getPlatformTypes() - { - return $this->platformTypes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ThirdPartyAuthenticationToken.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ThirdPartyAuthenticationToken.php deleted file mode 100644 index 66ec144b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ThirdPartyAuthenticationToken.php +++ /dev/null @@ -1,39 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ThirdPartyTrackingUrl.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ThirdPartyTrackingUrl.php deleted file mode 100644 index 34aae947..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/ThirdPartyTrackingUrl.php +++ /dev/null @@ -1,39 +0,0 @@ -thirdPartyUrlType = $thirdPartyUrlType; - } - public function getThirdPartyUrlType() - { - return $this->thirdPartyUrlType; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/TranscodeSetting.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/TranscodeSetting.php deleted file mode 100644 index b4ef9477..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/TranscodeSetting.php +++ /dev/null @@ -1,40 +0,0 @@ -enabledVideoFormats = $enabledVideoFormats; - } - public function getEnabledVideoFormats() - { - return $this->enabledVideoFormats; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/UniversalAdId.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/UniversalAdId.php deleted file mode 100644 index 4d3e218a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/UniversalAdId.php +++ /dev/null @@ -1,39 +0,0 @@ -registry = $registry; - } - public function getRegistry() - { - return $this->registry; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/UserDefinedVariableConfiguration.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/UserDefinedVariableConfiguration.php deleted file mode 100644 index f18224e3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/UserDefinedVariableConfiguration.php +++ /dev/null @@ -1,48 +0,0 @@ -dataType = $dataType; - } - public function getDataType() - { - return $this->dataType; - } - public function setReportName($reportName) - { - $this->reportName = $reportName; - } - public function getReportName() - { - return $this->reportName; - } - public function setVariableType($variableType) - { - $this->variableType = $variableType; - } - public function getVariableType() - { - return $this->variableType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/UserProfile.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/UserProfile.php deleted file mode 100644 index 3e5a03f8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/UserProfile.php +++ /dev/null @@ -1,93 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setAccountName($accountName) - { - $this->accountName = $accountName; - } - public function getAccountName() - { - return $this->accountName; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setProfileId($profileId) - { - $this->profileId = $profileId; - } - public function getProfileId() - { - return $this->profileId; - } - public function setSubAccountId($subAccountId) - { - $this->subAccountId = $subAccountId; - } - public function getSubAccountId() - { - return $this->subAccountId; - } - public function setSubAccountName($subAccountName) - { - $this->subAccountName = $subAccountName; - } - public function getSubAccountName() - { - return $this->subAccountName; - } - public function setUserName($userName) - { - $this->userName = $userName; - } - public function getUserName() - { - return $this->userName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/UserProfileList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/UserProfileList.php deleted file mode 100644 index 598ad21c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/UserProfileList.php +++ /dev/null @@ -1,56 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_Dfareporting_UserProfile - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Dfareporting_UserProfile - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/UserRole.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/UserRole.php deleted file mode 100644 index 51eb37db..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/UserRole.php +++ /dev/null @@ -1,101 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setDefaultUserRole($defaultUserRole) - { - $this->defaultUserRole = $defaultUserRole; - } - public function getDefaultUserRole() - { - return $this->defaultUserRole; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setParentUserRoleId($parentUserRoleId) - { - $this->parentUserRoleId = $parentUserRoleId; - } - public function getParentUserRoleId() - { - return $this->parentUserRoleId; - } - /** - * @param Google_Service_Dfareporting_UserRolePermission - */ - public function setPermissions($permissions) - { - $this->permissions = $permissions; - } - /** - * @return Google_Service_Dfareporting_UserRolePermission - */ - public function getPermissions() - { - return $this->permissions; - } - public function setSubaccountId($subaccountId) - { - $this->subaccountId = $subaccountId; - } - public function getSubaccountId() - { - return $this->subaccountId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/UserRolePermission.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/UserRolePermission.php deleted file mode 100644 index 590d7363..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/UserRolePermission.php +++ /dev/null @@ -1,66 +0,0 @@ -availability = $availability; - } - public function getAvailability() - { - return $this->availability; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPermissionGroupId($permissionGroupId) - { - $this->permissionGroupId = $permissionGroupId; - } - public function getPermissionGroupId() - { - return $this->permissionGroupId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/UserRolePermissionGroup.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/UserRolePermissionGroup.php deleted file mode 100644 index e4043083..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/UserRolePermissionGroup.php +++ /dev/null @@ -1,48 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/UserRolePermissionGroupsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/UserRolePermissionGroupsListResponse.php deleted file mode 100644 index d9a66596..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/UserRolePermissionGroupsListResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Dfareporting_UserRolePermissionGroup - */ - public function setUserRolePermissionGroups($userRolePermissionGroups) - { - $this->userRolePermissionGroups = $userRolePermissionGroups; - } - /** - * @return Google_Service_Dfareporting_UserRolePermissionGroup - */ - public function getUserRolePermissionGroups() - { - return $this->userRolePermissionGroups; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/UserRolePermissionsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/UserRolePermissionsListResponse.php deleted file mode 100644 index 79a94358..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/UserRolePermissionsListResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Dfareporting_UserRolePermission - */ - public function setUserRolePermissions($userRolePermissions) - { - $this->userRolePermissions = $userRolePermissions; - } - /** - * @return Google_Service_Dfareporting_UserRolePermission - */ - public function getUserRolePermissions() - { - return $this->userRolePermissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/UserRolesListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/UserRolesListResponse.php deleted file mode 100644 index 6ebb381d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/UserRolesListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Dfareporting_UserRole - */ - public function setUserRoles($userRoles) - { - $this->userRoles = $userRoles; - } - /** - * @return Google_Service_Dfareporting_UserRole - */ - public function getUserRoles() - { - return $this->userRoles; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/VideoFormat.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/VideoFormat.php deleted file mode 100644 index 908f20ec..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/VideoFormat.php +++ /dev/null @@ -1,73 +0,0 @@ -fileType = $fileType; - } - public function getFileType() - { - return $this->fileType; - } - 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; - } - /** - * @param Google_Service_Dfareporting_Size - */ - public function setResolution(Google_Service_Dfareporting_Size $resolution) - { - $this->resolution = $resolution; - } - /** - * @return Google_Service_Dfareporting_Size - */ - public function getResolution() - { - return $this->resolution; - } - public function setTargetBitRate($targetBitRate) - { - $this->targetBitRate = $targetBitRate; - } - public function getTargetBitRate() - { - return $this->targetBitRate; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/VideoFormatsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/VideoFormatsListResponse.php deleted file mode 100644 index 1f280098..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/VideoFormatsListResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Dfareporting_VideoFormat - */ - public function setVideoFormats($videoFormats) - { - $this->videoFormats = $videoFormats; - } - /** - * @return Google_Service_Dfareporting_VideoFormat - */ - public function getVideoFormats() - { - return $this->videoFormats; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/VideoOffset.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/VideoOffset.php deleted file mode 100644 index bccdcacf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/VideoOffset.php +++ /dev/null @@ -1,39 +0,0 @@ -offsetPercentage = $offsetPercentage; - } - public function getOffsetPercentage() - { - return $this->offsetPercentage; - } - public function setOffsetSeconds($offsetSeconds) - { - $this->offsetSeconds = $offsetSeconds; - } - public function getOffsetSeconds() - { - return $this->offsetSeconds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/VideoSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/VideoSettings.php deleted file mode 100644 index fe23f1bb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dfareporting/VideoSettings.php +++ /dev/null @@ -1,87 +0,0 @@ -companionSettings = $companionSettings; - } - /** - * @return Google_Service_Dfareporting_CompanionSetting - */ - public function getCompanionSettings() - { - return $this->companionSettings; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setOrientation($orientation) - { - $this->orientation = $orientation; - } - public function getOrientation() - { - return $this->orientation; - } - /** - * @param Google_Service_Dfareporting_SkippableSetting - */ - public function setSkippableSettings(Google_Service_Dfareporting_SkippableSetting $skippableSettings) - { - $this->skippableSettings = $skippableSettings; - } - /** - * @return Google_Service_Dfareporting_SkippableSetting - */ - public function getSkippableSettings() - { - return $this->skippableSettings; - } - /** - * @param Google_Service_Dfareporting_TranscodeSetting - */ - public function setTranscodeSettings(Google_Service_Dfareporting_TranscodeSetting $transcodeSettings) - { - $this->transcodeSettings = $transcodeSettings; - } - /** - * @return Google_Service_Dfareporting_TranscodeSetting - */ - public function getTranscodeSettings() - { - return $this->transcodeSettings; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow.php deleted file mode 100644 index 5cd86965..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow.php +++ /dev/null @@ -1,926 +0,0 @@ - - * Builds conversational interfaces (for example, chatbots, and voice-powered - * apps and devices).

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Dialogflow extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** View, manage and query your Dialogflow agents. */ - const DIALOGFLOW = - "https://www.googleapis.com/auth/dialogflow"; - - public $projects; - public $projects_agent; - public $projects_agent_entityTypes; - public $projects_agent_entityTypes_entities; - public $projects_agent_environments; - public $projects_agent_intents; - public $projects_agent_sessions; - public $projects_agent_sessions_contexts; - public $projects_agent_sessions_entityTypes; - public $projects_agent_versions; - public $projects_locations_operations; - public $projects_operations; - - /** - * Constructs the internal representation of the Dialogflow service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://dialogflow.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v2'; - $this->serviceName = 'dialogflow'; - - $this->projects = new Google_Service_Dialogflow_Resource_Projects( - $this, - $this->serviceName, - 'projects', - array( - 'methods' => array( - 'agent' => array( - 'path' => 'v2/{+parent}/agent', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'deleteAgent' => array( - 'path' => 'v2/{+parent}/agent', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getAgent' => array( - 'path' => 'v2/{+parent}/agent', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_agent = new Google_Service_Dialogflow_Resource_ProjectsAgent( - $this, - $this->serviceName, - 'agent', - array( - 'methods' => array( - 'export' => array( - 'path' => 'v2/{+parent}/agent:export', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getFulfillment' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getValidationResult' => array( - 'path' => 'v2/{+parent}/agent/validationResult', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'languageCode' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'import' => array( - 'path' => 'v2/{+parent}/agent:import', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'restore' => array( - 'path' => 'v2/{+parent}/agent:restore', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'search' => array( - 'path' => 'v2/{+parent}/agent:search', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'train' => array( - 'path' => 'v2/{+parent}/agent:train', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'updateFulfillment' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_agent_entityTypes = new Google_Service_Dialogflow_Resource_ProjectsAgentEntityTypes( - $this, - $this->serviceName, - 'entityTypes', - array( - 'methods' => array( - 'batchDelete' => array( - 'path' => 'v2/{+parent}/entityTypes:batchDelete', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'batchUpdate' => array( - 'path' => 'v2/{+parent}/entityTypes:batchUpdate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'create' => array( - 'path' => 'v2/{+parent}/entityTypes', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'languageCode' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'languageCode' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'v2/{+parent}/entityTypes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'languageCode' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'languageCode' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_agent_entityTypes_entities = new Google_Service_Dialogflow_Resource_ProjectsAgentEntityTypesEntities( - $this, - $this->serviceName, - 'entities', - array( - 'methods' => array( - 'batchCreate' => array( - 'path' => 'v2/{+parent}/entities:batchCreate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'batchDelete' => array( - 'path' => 'v2/{+parent}/entities:batchDelete', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'batchUpdate' => array( - 'path' => 'v2/{+parent}/entities:batchUpdate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_agent_environments = new Google_Service_Dialogflow_Resource_ProjectsAgentEnvironments( - $this, - $this->serviceName, - 'environments', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v2/{+parent}/environments', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'environmentId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getHistory' => array( - 'path' => 'v2/{+parent}/history', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'list' => array( - 'path' => 'v2/{+parent}/environments', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_agent_intents = new Google_Service_Dialogflow_Resource_ProjectsAgentIntents( - $this, - $this->serviceName, - 'intents', - array( - 'methods' => array( - 'batchDelete' => array( - 'path' => 'v2/{+parent}/intents:batchDelete', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'batchUpdate' => array( - 'path' => 'v2/{+parent}/intents:batchUpdate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'create' => array( - 'path' => 'v2/{+parent}/intents', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'intentView' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'languageCode' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'intentView' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'languageCode' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'v2/{+parent}/intents', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'languageCode' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'intentView' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'languageCode' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'intentView' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_agent_sessions = new Google_Service_Dialogflow_Resource_ProjectsAgentSessions( - $this, - $this->serviceName, - 'sessions', - array( - 'methods' => array( - 'deleteContexts' => array( - 'path' => 'v2/{+parent}/contexts', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'detectIntent' => array( - 'path' => 'v2/{+session}:detectIntent', - 'httpMethod' => 'POST', - 'parameters' => array( - 'session' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_agent_sessions_contexts = new Google_Service_Dialogflow_Resource_ProjectsAgentSessionsContexts( - $this, - $this->serviceName, - 'contexts', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v2/{+parent}/contexts', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2/{+parent}/contexts', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_agent_sessions_entityTypes = new Google_Service_Dialogflow_Resource_ProjectsAgentSessionsEntityTypes( - $this, - $this->serviceName, - 'entityTypes', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v2/{+parent}/entityTypes', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2/{+parent}/entityTypes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_agent_versions = new Google_Service_Dialogflow_Resource_ProjectsAgentVersions( - $this, - $this->serviceName, - 'versions', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v2/{+parent}/versions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2/{+parent}/versions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_locations_operations = new Google_Service_Dialogflow_Resource_ProjectsLocationsOperations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'cancel' => array( - 'path' => 'v2/{+name}:cancel', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2/{+name}/operations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->projects_operations = new Google_Service_Dialogflow_Resource_ProjectsOperations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'cancel' => array( - 'path' => 'v2/{+name}:cancel', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2/{+name}/operations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2Agent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2Agent.php deleted file mode 100644 index 622abc18..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2Agent.php +++ /dev/null @@ -1,130 +0,0 @@ -apiVersion = $apiVersion; - } - public function getApiVersion() - { - return $this->apiVersion; - } - public function setAvatarUri($avatarUri) - { - $this->avatarUri = $avatarUri; - } - public function getAvatarUri() - { - return $this->avatarUri; - } - public function setClassificationThreshold($classificationThreshold) - { - $this->classificationThreshold = $classificationThreshold; - } - public function getClassificationThreshold() - { - return $this->classificationThreshold; - } - public function setDefaultLanguageCode($defaultLanguageCode) - { - $this->defaultLanguageCode = $defaultLanguageCode; - } - public function getDefaultLanguageCode() - { - return $this->defaultLanguageCode; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setEnableLogging($enableLogging) - { - $this->enableLogging = $enableLogging; - } - public function getEnableLogging() - { - return $this->enableLogging; - } - public function setMatchMode($matchMode) - { - $this->matchMode = $matchMode; - } - public function getMatchMode() - { - return $this->matchMode; - } - public function setParent($parent) - { - $this->parent = $parent; - } - public function getParent() - { - return $this->parent; - } - public function setSupportedLanguageCodes($supportedLanguageCodes) - { - $this->supportedLanguageCodes = $supportedLanguageCodes; - } - public function getSupportedLanguageCodes() - { - return $this->supportedLanguageCodes; - } - public function setTier($tier) - { - $this->tier = $tier; - } - public function getTier() - { - return $this->tier; - } - public function setTimeZone($timeZone) - { - $this->timeZone = $timeZone; - } - public function getTimeZone() - { - return $this->timeZone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2AnnotatedMessagePart.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2AnnotatedMessagePart.php deleted file mode 100644 index c824b4cb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2AnnotatedMessagePart.php +++ /dev/null @@ -1,48 +0,0 @@ -entityType = $entityType; - } - public function getEntityType() - { - return $this->entityType; - } - public function setFormattedValue($formattedValue) - { - $this->formattedValue = $formattedValue; - } - public function getFormattedValue() - { - return $this->formattedValue; - } - public function setText($text) - { - $this->text = $text; - } - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2BatchCreateEntitiesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2BatchCreateEntitiesRequest.php deleted file mode 100644 index d4cdc7fb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2BatchCreateEntitiesRequest.php +++ /dev/null @@ -1,47 +0,0 @@ -entities = $entities; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2EntityTypeEntity - */ - public function getEntities() - { - return $this->entities; - } - public function setLanguageCode($languageCode) - { - $this->languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2BatchDeleteEntitiesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2BatchDeleteEntitiesRequest.php deleted file mode 100644 index 40a952e2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2BatchDeleteEntitiesRequest.php +++ /dev/null @@ -1,40 +0,0 @@ -entityValues = $entityValues; - } - public function getEntityValues() - { - return $this->entityValues; - } - public function setLanguageCode($languageCode) - { - $this->languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2BatchDeleteEntityTypesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2BatchDeleteEntityTypesRequest.php deleted file mode 100644 index 9d61cac2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2BatchDeleteEntityTypesRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -entityTypeNames = $entityTypeNames; - } - public function getEntityTypeNames() - { - return $this->entityTypeNames; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2BatchDeleteIntentsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2BatchDeleteIntentsRequest.php deleted file mode 100644 index fdfb050e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2BatchDeleteIntentsRequest.php +++ /dev/null @@ -1,38 +0,0 @@ -intents = $intents; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2Intent - */ - public function getIntents() - { - return $this->intents; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2BatchUpdateEntitiesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2BatchUpdateEntitiesRequest.php deleted file mode 100644 index f80504db..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2BatchUpdateEntitiesRequest.php +++ /dev/null @@ -1,56 +0,0 @@ -entities = $entities; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2EntityTypeEntity - */ - public function getEntities() - { - return $this->entities; - } - public function setLanguageCode($languageCode) - { - $this->languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } - public function setUpdateMask($updateMask) - { - $this->updateMask = $updateMask; - } - public function getUpdateMask() - { - return $this->updateMask; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2BatchUpdateEntityTypesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2BatchUpdateEntityTypesRequest.php deleted file mode 100644 index 32929994..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2BatchUpdateEntityTypesRequest.php +++ /dev/null @@ -1,64 +0,0 @@ -entityTypeBatchInline = $entityTypeBatchInline; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2EntityTypeBatch - */ - public function getEntityTypeBatchInline() - { - return $this->entityTypeBatchInline; - } - public function setEntityTypeBatchUri($entityTypeBatchUri) - { - $this->entityTypeBatchUri = $entityTypeBatchUri; - } - public function getEntityTypeBatchUri() - { - return $this->entityTypeBatchUri; - } - public function setLanguageCode($languageCode) - { - $this->languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } - public function setUpdateMask($updateMask) - { - $this->updateMask = $updateMask; - } - public function getUpdateMask() - { - return $this->updateMask; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2BatchUpdateEntityTypesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2BatchUpdateEntityTypesResponse.php deleted file mode 100644 index dcd9d3d8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2BatchUpdateEntityTypesResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -entityTypes = $entityTypes; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2EntityType - */ - public function getEntityTypes() - { - return $this->entityTypes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2BatchUpdateIntentsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2BatchUpdateIntentsRequest.php deleted file mode 100644 index 30a219ae..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2BatchUpdateIntentsRequest.php +++ /dev/null @@ -1,73 +0,0 @@ -intentBatchInline = $intentBatchInline; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentBatch - */ - public function getIntentBatchInline() - { - return $this->intentBatchInline; - } - public function setIntentBatchUri($intentBatchUri) - { - $this->intentBatchUri = $intentBatchUri; - } - public function getIntentBatchUri() - { - return $this->intentBatchUri; - } - public function setIntentView($intentView) - { - $this->intentView = $intentView; - } - public function getIntentView() - { - return $this->intentView; - } - public function setLanguageCode($languageCode) - { - $this->languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } - public function setUpdateMask($updateMask) - { - $this->updateMask = $updateMask; - } - public function getUpdateMask() - { - return $this->updateMask; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2BatchUpdateIntentsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2BatchUpdateIntentsResponse.php deleted file mode 100644 index fdf8b059..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2BatchUpdateIntentsResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -intents = $intents; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2Intent - */ - public function getIntents() - { - return $this->intents; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2Context.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2Context.php deleted file mode 100644 index ac14c915..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2Context.php +++ /dev/null @@ -1,48 +0,0 @@ -lifespanCount = $lifespanCount; - } - public function getLifespanCount() - { - return $this->lifespanCount; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setParameters($parameters) - { - $this->parameters = $parameters; - } - public function getParameters() - { - return $this->parameters; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2ConversationEvent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2ConversationEvent.php deleted file mode 100644 index 3a0d5be0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2ConversationEvent.php +++ /dev/null @@ -1,71 +0,0 @@ -conversation = $conversation; - } - public function getConversation() - { - return $this->conversation; - } - /** - * @param Google_Service_Dialogflow_GoogleRpcStatus - */ - public function setErrorStatus(Google_Service_Dialogflow_GoogleRpcStatus $errorStatus) - { - $this->errorStatus = $errorStatus; - } - /** - * @return Google_Service_Dialogflow_GoogleRpcStatus - */ - public function getErrorStatus() - { - return $this->errorStatus; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2Message - */ - public function setNewMessagePayload(Google_Service_Dialogflow_GoogleCloudDialogflowV2Message $newMessagePayload) - { - $this->newMessagePayload = $newMessagePayload; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2Message - */ - public function getNewMessagePayload() - { - return $this->newMessagePayload; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2DetectIntentRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2DetectIntentRequest.php deleted file mode 100644 index 6d076095..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2DetectIntentRequest.php +++ /dev/null @@ -1,78 +0,0 @@ -inputAudio = $inputAudio; - } - public function getInputAudio() - { - return $this->inputAudio; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2OutputAudioConfig - */ - public function setOutputAudioConfig(Google_Service_Dialogflow_GoogleCloudDialogflowV2OutputAudioConfig $outputAudioConfig) - { - $this->outputAudioConfig = $outputAudioConfig; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2OutputAudioConfig - */ - public function getOutputAudioConfig() - { - return $this->outputAudioConfig; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2QueryInput - */ - public function setQueryInput(Google_Service_Dialogflow_GoogleCloudDialogflowV2QueryInput $queryInput) - { - $this->queryInput = $queryInput; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2QueryInput - */ - public function getQueryInput() - { - return $this->queryInput; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2QueryParameters - */ - public function setQueryParams(Google_Service_Dialogflow_GoogleCloudDialogflowV2QueryParameters $queryParams) - { - $this->queryParams = $queryParams; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2QueryParameters - */ - public function getQueryParams() - { - return $this->queryParams; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2DetectIntentResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2DetectIntentResponse.php deleted file mode 100644 index e5d4bd2f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2DetectIntentResponse.php +++ /dev/null @@ -1,87 +0,0 @@ -outputAudio = $outputAudio; - } - public function getOutputAudio() - { - return $this->outputAudio; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2OutputAudioConfig - */ - public function setOutputAudioConfig(Google_Service_Dialogflow_GoogleCloudDialogflowV2OutputAudioConfig $outputAudioConfig) - { - $this->outputAudioConfig = $outputAudioConfig; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2OutputAudioConfig - */ - public function getOutputAudioConfig() - { - return $this->outputAudioConfig; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2QueryResult - */ - public function setQueryResult(Google_Service_Dialogflow_GoogleCloudDialogflowV2QueryResult $queryResult) - { - $this->queryResult = $queryResult; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2QueryResult - */ - public function getQueryResult() - { - return $this->queryResult; - } - public function setResponseId($responseId) - { - $this->responseId = $responseId; - } - public function getResponseId() - { - return $this->responseId; - } - /** - * @param Google_Service_Dialogflow_GoogleRpcStatus - */ - public function setWebhookStatus(Google_Service_Dialogflow_GoogleRpcStatus $webhookStatus) - { - $this->webhookStatus = $webhookStatus; - } - /** - * @return Google_Service_Dialogflow_GoogleRpcStatus - */ - public function getWebhookStatus() - { - return $this->webhookStatus; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2EntityType.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2EntityType.php deleted file mode 100644 index d81953ad..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2EntityType.php +++ /dev/null @@ -1,83 +0,0 @@ -autoExpansionMode = $autoExpansionMode; - } - public function getAutoExpansionMode() - { - return $this->autoExpansionMode; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setEnableFuzzyExtraction($enableFuzzyExtraction) - { - $this->enableFuzzyExtraction = $enableFuzzyExtraction; - } - public function getEnableFuzzyExtraction() - { - return $this->enableFuzzyExtraction; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2EntityTypeEntity - */ - public function setEntities($entities) - { - $this->entities = $entities; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2EntityTypeEntity - */ - public function getEntities() - { - return $this->entities; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2EntityTypeBatch.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2EntityTypeBatch.php deleted file mode 100644 index e230c185..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2EntityTypeBatch.php +++ /dev/null @@ -1,38 +0,0 @@ -entityTypes = $entityTypes; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2EntityType - */ - public function getEntityTypes() - { - return $this->entityTypes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2EntityTypeEntity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2EntityTypeEntity.php deleted file mode 100644 index 4ddd0af7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2EntityTypeEntity.php +++ /dev/null @@ -1,40 +0,0 @@ -synonyms = $synonyms; - } - public function getSynonyms() - { - return $this->synonyms; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2Environment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2Environment.php deleted file mode 100644 index c2a2a45a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2Environment.php +++ /dev/null @@ -1,66 +0,0 @@ -agentVersion = $agentVersion; - } - public function getAgentVersion() - { - return $this->agentVersion; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2EnvironmentHistory.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2EnvironmentHistory.php deleted file mode 100644 index fca67a07..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2EnvironmentHistory.php +++ /dev/null @@ -1,56 +0,0 @@ -entries = $entries; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2EnvironmentHistoryEntry - */ - public function getEntries() - { - return $this->entries; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setParent($parent) - { - $this->parent = $parent; - } - public function getParent() - { - return $this->parent; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2EnvironmentHistoryEntry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2EnvironmentHistoryEntry.php deleted file mode 100644 index 280ae929..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2EnvironmentHistoryEntry.php +++ /dev/null @@ -1,48 +0,0 @@ -agentVersion = $agentVersion; - } - public function getAgentVersion() - { - return $this->agentVersion; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2EventInput.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2EventInput.php deleted file mode 100644 index 34d269e8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2EventInput.php +++ /dev/null @@ -1,48 +0,0 @@ -languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setParameters($parameters) - { - $this->parameters = $parameters; - } - public function getParameters() - { - return $this->parameters; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2ExportAgentRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2ExportAgentRequest.php deleted file mode 100644 index 47ebdefe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2ExportAgentRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -agentUri = $agentUri; - } - public function getAgentUri() - { - return $this->agentUri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2ExportAgentResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2ExportAgentResponse.php deleted file mode 100644 index 9864f7be..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2ExportAgentResponse.php +++ /dev/null @@ -1,39 +0,0 @@ -agentContent = $agentContent; - } - public function getAgentContent() - { - return $this->agentContent; - } - public function setAgentUri($agentUri) - { - $this->agentUri = $agentUri; - } - public function getAgentUri() - { - return $this->agentUri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2Fulfillment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2Fulfillment.php deleted file mode 100644 index 98f8988a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2Fulfillment.php +++ /dev/null @@ -1,81 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setEnabled($enabled) - { - $this->enabled = $enabled; - } - public function getEnabled() - { - return $this->enabled; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2FulfillmentFeature - */ - public function setFeatures($features) - { - $this->features = $features; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2FulfillmentFeature - */ - public function getFeatures() - { - return $this->features; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2FulfillmentGenericWebService - */ - public function setGenericWebService(Google_Service_Dialogflow_GoogleCloudDialogflowV2FulfillmentGenericWebService $genericWebService) - { - $this->genericWebService = $genericWebService; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2FulfillmentGenericWebService - */ - public function getGenericWebService() - { - return $this->genericWebService; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2FulfillmentFeature.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2FulfillmentFeature.php deleted file mode 100644 index c4b74f78..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2FulfillmentFeature.php +++ /dev/null @@ -1,30 +0,0 @@ -type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2FulfillmentGenericWebService.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2FulfillmentGenericWebService.php deleted file mode 100644 index 3ca9e7fa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2FulfillmentGenericWebService.php +++ /dev/null @@ -1,66 +0,0 @@ -isCloudFunction = $isCloudFunction; - } - public function getIsCloudFunction() - { - return $this->isCloudFunction; - } - public function setPassword($password) - { - $this->password = $password; - } - public function getPassword() - { - return $this->password; - } - public function setRequestHeaders($requestHeaders) - { - $this->requestHeaders = $requestHeaders; - } - public function getRequestHeaders() - { - return $this->requestHeaders; - } - public function setUri($uri) - { - $this->uri = $uri; - } - public function getUri() - { - return $this->uri; - } - public function setUsername($username) - { - $this->username = $username; - } - public function getUsername() - { - return $this->username; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2ImportAgentRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2ImportAgentRequest.php deleted file mode 100644 index f2de29c6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2ImportAgentRequest.php +++ /dev/null @@ -1,39 +0,0 @@ -agentContent = $agentContent; - } - public function getAgentContent() - { - return $this->agentContent; - } - public function setAgentUri($agentUri) - { - $this->agentUri = $agentUri; - } - public function getAgentUri() - { - return $this->agentUri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2InputAudioConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2InputAudioConfig.php deleted file mode 100644 index 375655e8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2InputAudioConfig.php +++ /dev/null @@ -1,110 +0,0 @@ -audioEncoding = $audioEncoding; - } - public function getAudioEncoding() - { - return $this->audioEncoding; - } - public function setEnableWordInfo($enableWordInfo) - { - $this->enableWordInfo = $enableWordInfo; - } - public function getEnableWordInfo() - { - return $this->enableWordInfo; - } - public function setLanguageCode($languageCode) - { - $this->languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } - public function setModel($model) - { - $this->model = $model; - } - public function getModel() - { - return $this->model; - } - public function setModelVariant($modelVariant) - { - $this->modelVariant = $modelVariant; - } - public function getModelVariant() - { - return $this->modelVariant; - } - public function setPhraseHints($phraseHints) - { - $this->phraseHints = $phraseHints; - } - public function getPhraseHints() - { - return $this->phraseHints; - } - public function setSampleRateHertz($sampleRateHertz) - { - $this->sampleRateHertz = $sampleRateHertz; - } - public function getSampleRateHertz() - { - return $this->sampleRateHertz; - } - public function setSingleUtterance($singleUtterance) - { - $this->singleUtterance = $singleUtterance; - } - public function getSingleUtterance() - { - return $this->singleUtterance; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2SpeechContext - */ - public function setSpeechContexts($speechContexts) - { - $this->speechContexts = $speechContexts; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2SpeechContext - */ - public function getSpeechContexts() - { - return $this->speechContexts; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2Intent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2Intent.php deleted file mode 100644 index e03e84e0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2Intent.php +++ /dev/null @@ -1,219 +0,0 @@ -action = $action; - } - public function getAction() - { - return $this->action; - } - public function setDefaultResponsePlatforms($defaultResponsePlatforms) - { - $this->defaultResponsePlatforms = $defaultResponsePlatforms; - } - public function getDefaultResponsePlatforms() - { - return $this->defaultResponsePlatforms; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setEvents($events) - { - $this->events = $events; - } - public function getEvents() - { - return $this->events; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentFollowupIntentInfo - */ - public function setFollowupIntentInfo($followupIntentInfo) - { - $this->followupIntentInfo = $followupIntentInfo; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentFollowupIntentInfo - */ - public function getFollowupIntentInfo() - { - return $this->followupIntentInfo; - } - public function setInputContextNames($inputContextNames) - { - $this->inputContextNames = $inputContextNames; - } - public function getInputContextNames() - { - return $this->inputContextNames; - } - public function setIsFallback($isFallback) - { - $this->isFallback = $isFallback; - } - public function getIsFallback() - { - return $this->isFallback; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessage - */ - public function setMessages($messages) - { - $this->messages = $messages; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessage - */ - public function getMessages() - { - return $this->messages; - } - public function setMlDisabled($mlDisabled) - { - $this->mlDisabled = $mlDisabled; - } - public function getMlDisabled() - { - return $this->mlDisabled; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2Context - */ - public function setOutputContexts($outputContexts) - { - $this->outputContexts = $outputContexts; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2Context - */ - public function getOutputContexts() - { - return $this->outputContexts; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentParameter - */ - public function setParameters($parameters) - { - $this->parameters = $parameters; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentParameter - */ - public function getParameters() - { - return $this->parameters; - } - public function setParentFollowupIntentName($parentFollowupIntentName) - { - $this->parentFollowupIntentName = $parentFollowupIntentName; - } - public function getParentFollowupIntentName() - { - return $this->parentFollowupIntentName; - } - public function setPriority($priority) - { - $this->priority = $priority; - } - public function getPriority() - { - return $this->priority; - } - public function setResetContexts($resetContexts) - { - $this->resetContexts = $resetContexts; - } - public function getResetContexts() - { - return $this->resetContexts; - } - public function setRootFollowupIntentName($rootFollowupIntentName) - { - $this->rootFollowupIntentName = $rootFollowupIntentName; - } - public function getRootFollowupIntentName() - { - return $this->rootFollowupIntentName; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentTrainingPhrase - */ - public function setTrainingPhrases($trainingPhrases) - { - $this->trainingPhrases = $trainingPhrases; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentTrainingPhrase - */ - public function getTrainingPhrases() - { - return $this->trainingPhrases; - } - public function setWebhookState($webhookState) - { - $this->webhookState = $webhookState; - } - public function getWebhookState() - { - return $this->webhookState; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentBatch.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentBatch.php deleted file mode 100644 index 5408679c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentBatch.php +++ /dev/null @@ -1,38 +0,0 @@ -intents = $intents; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2Intent - */ - public function getIntents() - { - return $this->intents; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentFollowupIntentInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentFollowupIntentInfo.php deleted file mode 100644 index 18bb719e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentFollowupIntentInfo.php +++ /dev/null @@ -1,39 +0,0 @@ -followupIntentName = $followupIntentName; - } - public function getFollowupIntentName() - { - return $this->followupIntentName; - } - public function setParentFollowupIntentName($parentFollowupIntentName) - { - $this->parentFollowupIntentName = $parentFollowupIntentName; - } - public function getParentFollowupIntentName() - { - return $this->parentFollowupIntentName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessage.php deleted file mode 100644 index 35c36be7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessage.php +++ /dev/null @@ -1,247 +0,0 @@ -basicCard = $basicCard; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageBasicCard - */ - public function getBasicCard() - { - return $this->basicCard; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageBrowseCarouselCard - */ - public function setBrowseCarouselCard(Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageBrowseCarouselCard $browseCarouselCard) - { - $this->browseCarouselCard = $browseCarouselCard; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageBrowseCarouselCard - */ - public function getBrowseCarouselCard() - { - return $this->browseCarouselCard; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageCard - */ - public function setCard(Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageCard $card) - { - $this->card = $card; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageCard - */ - public function getCard() - { - return $this->card; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageCarouselSelect - */ - public function setCarouselSelect(Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageCarouselSelect $carouselSelect) - { - $this->carouselSelect = $carouselSelect; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageCarouselSelect - */ - public function getCarouselSelect() - { - return $this->carouselSelect; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageImage - */ - public function setImage(Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageImage $image) - { - $this->image = $image; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageImage - */ - public function getImage() - { - return $this->image; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageLinkOutSuggestion - */ - public function setLinkOutSuggestion(Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageLinkOutSuggestion $linkOutSuggestion) - { - $this->linkOutSuggestion = $linkOutSuggestion; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageLinkOutSuggestion - */ - public function getLinkOutSuggestion() - { - return $this->linkOutSuggestion; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageListSelect - */ - public function setListSelect(Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageListSelect $listSelect) - { - $this->listSelect = $listSelect; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageListSelect - */ - public function getListSelect() - { - return $this->listSelect; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageMediaContent - */ - public function setMediaContent(Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageMediaContent $mediaContent) - { - $this->mediaContent = $mediaContent; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageMediaContent - */ - public function getMediaContent() - { - return $this->mediaContent; - } - public function setPayload($payload) - { - $this->payload = $payload; - } - public function getPayload() - { - return $this->payload; - } - public function setPlatform($platform) - { - $this->platform = $platform; - } - public function getPlatform() - { - return $this->platform; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageQuickReplies - */ - public function setQuickReplies(Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageQuickReplies $quickReplies) - { - $this->quickReplies = $quickReplies; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageQuickReplies - */ - public function getQuickReplies() - { - return $this->quickReplies; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageSimpleResponses - */ - public function setSimpleResponses(Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageSimpleResponses $simpleResponses) - { - $this->simpleResponses = $simpleResponses; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageSimpleResponses - */ - public function getSimpleResponses() - { - return $this->simpleResponses; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageSuggestions - */ - public function setSuggestions(Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageSuggestions $suggestions) - { - $this->suggestions = $suggestions; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageSuggestions - */ - public function getSuggestions() - { - return $this->suggestions; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageTableCard - */ - public function setTableCard(Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageTableCard $tableCard) - { - $this->tableCard = $tableCard; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageTableCard - */ - public function getTableCard() - { - return $this->tableCard; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageText - */ - public function setText(Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageText $text) - { - $this->text = $text; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageText - */ - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageBasicCard.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageBasicCard.php deleted file mode 100644 index e7cf3dc7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageBasicCard.php +++ /dev/null @@ -1,81 +0,0 @@ -buttons = $buttons; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageBasicCardButton - */ - public function getButtons() - { - return $this->buttons; - } - public function setFormattedText($formattedText) - { - $this->formattedText = $formattedText; - } - public function getFormattedText() - { - return $this->formattedText; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageImage - */ - public function setImage(Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageImage $image) - { - $this->image = $image; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageImage - */ - public function getImage() - { - return $this->image; - } - public function setSubtitle($subtitle) - { - $this->subtitle = $subtitle; - } - public function getSubtitle() - { - return $this->subtitle; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageBasicCardButton.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageBasicCardButton.php deleted file mode 100644 index 8d71ef6f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageBasicCardButton.php +++ /dev/null @@ -1,46 +0,0 @@ -openUriAction = $openUriAction; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageBasicCardButtonOpenUriAction - */ - public function getOpenUriAction() - { - return $this->openUriAction; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageBasicCardButtonOpenUriAction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageBasicCardButtonOpenUriAction.php deleted file mode 100644 index 610ad156..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageBasicCardButtonOpenUriAction.php +++ /dev/null @@ -1,30 +0,0 @@ -uri = $uri; - } - public function getUri() - { - return $this->uri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageBrowseCarouselCard.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageBrowseCarouselCard.php deleted file mode 100644 index c75a9302..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageBrowseCarouselCard.php +++ /dev/null @@ -1,47 +0,0 @@ -imageDisplayOptions = $imageDisplayOptions; - } - public function getImageDisplayOptions() - { - return $this->imageDisplayOptions; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItem - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItem - */ - public function getItems() - { - return $this->items; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItem.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItem.php deleted file mode 100644 index 98439f14..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItem.php +++ /dev/null @@ -1,80 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setFooter($footer) - { - $this->footer = $footer; - } - public function getFooter() - { - return $this->footer; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageImage - */ - public function setImage(Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageImage $image) - { - $this->image = $image; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageImage - */ - public function getImage() - { - return $this->image; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItemOpenUrlAction - */ - public function setOpenUriAction(Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItemOpenUrlAction $openUriAction) - { - $this->openUriAction = $openUriAction; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItemOpenUrlAction - */ - public function getOpenUriAction() - { - return $this->openUriAction; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItemOpenUrlAction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItemOpenUrlAction.php deleted file mode 100644 index 9b258652..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItemOpenUrlAction.php +++ /dev/null @@ -1,39 +0,0 @@ -url = $url; - } - public function getUrl() - { - return $this->url; - } - public function setUrlTypeHint($urlTypeHint) - { - $this->urlTypeHint = $urlTypeHint; - } - public function getUrlTypeHint() - { - return $this->urlTypeHint; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageCard.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageCard.php deleted file mode 100644 index b5dcc3e1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageCard.php +++ /dev/null @@ -1,65 +0,0 @@ -buttons = $buttons; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageCardButton - */ - public function getButtons() - { - return $this->buttons; - } - public function setImageUri($imageUri) - { - $this->imageUri = $imageUri; - } - public function getImageUri() - { - return $this->imageUri; - } - public function setSubtitle($subtitle) - { - $this->subtitle = $subtitle; - } - public function getSubtitle() - { - return $this->subtitle; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageCardButton.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageCardButton.php deleted file mode 100644 index 778bb98e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageCardButton.php +++ /dev/null @@ -1,39 +0,0 @@ -postback = $postback; - } - public function getPostback() - { - return $this->postback; - } - public function setText($text) - { - $this->text = $text; - } - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageCarouselSelect.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageCarouselSelect.php deleted file mode 100644 index b3913d0f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageCarouselSelect.php +++ /dev/null @@ -1,38 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageCarouselSelectItem - */ - public function getItems() - { - return $this->items; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageCarouselSelectItem.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageCarouselSelectItem.php deleted file mode 100644 index 7e9f558d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageCarouselSelectItem.php +++ /dev/null @@ -1,71 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageImage - */ - public function setImage(Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageImage $image) - { - $this->image = $image; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageImage - */ - public function getImage() - { - return $this->image; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageSelectItemInfo - */ - public function setInfo(Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageSelectItemInfo $info) - { - $this->info = $info; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageSelectItemInfo - */ - public function getInfo() - { - return $this->info; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageColumnProperties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageColumnProperties.php deleted file mode 100644 index 544129ca..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageColumnProperties.php +++ /dev/null @@ -1,39 +0,0 @@ -header = $header; - } - public function getHeader() - { - return $this->header; - } - public function setHorizontalAlignment($horizontalAlignment) - { - $this->horizontalAlignment = $horizontalAlignment; - } - public function getHorizontalAlignment() - { - return $this->horizontalAlignment; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageImage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageImage.php deleted file mode 100644 index d1954687..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageImage.php +++ /dev/null @@ -1,39 +0,0 @@ -accessibilityText = $accessibilityText; - } - public function getAccessibilityText() - { - return $this->accessibilityText; - } - public function setImageUri($imageUri) - { - $this->imageUri = $imageUri; - } - public function getImageUri() - { - return $this->imageUri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageLinkOutSuggestion.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageLinkOutSuggestion.php deleted file mode 100644 index 94b745ef..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageLinkOutSuggestion.php +++ /dev/null @@ -1,39 +0,0 @@ -destinationName = $destinationName; - } - public function getDestinationName() - { - return $this->destinationName; - } - public function setUri($uri) - { - $this->uri = $uri; - } - public function getUri() - { - return $this->uri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageListSelect.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageListSelect.php deleted file mode 100644 index 9354538c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageListSelect.php +++ /dev/null @@ -1,56 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageListSelectItem - */ - public function getItems() - { - return $this->items; - } - public function setSubtitle($subtitle) - { - $this->subtitle = $subtitle; - } - public function getSubtitle() - { - return $this->subtitle; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageListSelectItem.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageListSelectItem.php deleted file mode 100644 index 880df1c9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageListSelectItem.php +++ /dev/null @@ -1,71 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageImage - */ - public function setImage(Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageImage $image) - { - $this->image = $image; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageImage - */ - public function getImage() - { - return $this->image; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageSelectItemInfo - */ - public function setInfo(Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageSelectItemInfo $info) - { - $this->info = $info; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageSelectItemInfo - */ - public function getInfo() - { - return $this->info; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageMediaContent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageMediaContent.php deleted file mode 100644 index b97848ae..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageMediaContent.php +++ /dev/null @@ -1,47 +0,0 @@ -mediaObjects = $mediaObjects; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageMediaContentResponseMediaObject - */ - public function getMediaObjects() - { - return $this->mediaObjects; - } - public function setMediaType($mediaType) - { - $this->mediaType = $mediaType; - } - public function getMediaType() - { - return $this->mediaType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageMediaContentResponseMediaObject.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageMediaContentResponseMediaObject.php deleted file mode 100644 index 3210de54..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageMediaContentResponseMediaObject.php +++ /dev/null @@ -1,80 +0,0 @@ -contentUrl = $contentUrl; - } - public function getContentUrl() - { - return $this->contentUrl; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageImage - */ - public function setIcon(Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageImage $icon) - { - $this->icon = $icon; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageImage - */ - public function getIcon() - { - return $this->icon; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageImage - */ - public function setLargeImage(Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageImage $largeImage) - { - $this->largeImage = $largeImage; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageImage - */ - public function getLargeImage() - { - return $this->largeImage; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageQuickReplies.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageQuickReplies.php deleted file mode 100644 index eb2c7aed..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageQuickReplies.php +++ /dev/null @@ -1,40 +0,0 @@ -quickReplies = $quickReplies; - } - public function getQuickReplies() - { - return $this->quickReplies; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageSelectItemInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageSelectItemInfo.php deleted file mode 100644 index b685095d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageSelectItemInfo.php +++ /dev/null @@ -1,40 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setSynonyms($synonyms) - { - $this->synonyms = $synonyms; - } - public function getSynonyms() - { - return $this->synonyms; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageSimpleResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageSimpleResponse.php deleted file mode 100644 index ea82d1d2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageSimpleResponse.php +++ /dev/null @@ -1,48 +0,0 @@ -displayText = $displayText; - } - public function getDisplayText() - { - return $this->displayText; - } - public function setSsml($ssml) - { - $this->ssml = $ssml; - } - public function getSsml() - { - return $this->ssml; - } - public function setTextToSpeech($textToSpeech) - { - $this->textToSpeech = $textToSpeech; - } - public function getTextToSpeech() - { - return $this->textToSpeech; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageSimpleResponses.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageSimpleResponses.php deleted file mode 100644 index 4dc04017..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageSimpleResponses.php +++ /dev/null @@ -1,38 +0,0 @@ -simpleResponses = $simpleResponses; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageSimpleResponse - */ - public function getSimpleResponses() - { - return $this->simpleResponses; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageSuggestion.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageSuggestion.php deleted file mode 100644 index 31e1fb98..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageSuggestion.php +++ /dev/null @@ -1,30 +0,0 @@ -title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageSuggestions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageSuggestions.php deleted file mode 100644 index b8463de7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageSuggestions.php +++ /dev/null @@ -1,38 +0,0 @@ -suggestions = $suggestions; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageSuggestion - */ - public function getSuggestions() - { - return $this->suggestions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageTableCard.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageTableCard.php deleted file mode 100644 index 20448abc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageTableCard.php +++ /dev/null @@ -1,104 +0,0 @@ -buttons = $buttons; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageBasicCardButton - */ - public function getButtons() - { - return $this->buttons; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageColumnProperties - */ - public function setColumnProperties($columnProperties) - { - $this->columnProperties = $columnProperties; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageColumnProperties - */ - public function getColumnProperties() - { - return $this->columnProperties; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageImage - */ - public function setImage(Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageImage $image) - { - $this->image = $image; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageImage - */ - public function getImage() - { - return $this->image; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageTableCardRow - */ - public function setRows($rows) - { - $this->rows = $rows; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageTableCardRow - */ - public function getRows() - { - return $this->rows; - } - public function setSubtitle($subtitle) - { - $this->subtitle = $subtitle; - } - public function getSubtitle() - { - return $this->subtitle; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageTableCardCell.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageTableCardCell.php deleted file mode 100644 index 90eaacb7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageTableCardCell.php +++ /dev/null @@ -1,30 +0,0 @@ -text = $text; - } - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageTableCardRow.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageTableCardRow.php deleted file mode 100644 index a7e3517a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageTableCardRow.php +++ /dev/null @@ -1,47 +0,0 @@ -cells = $cells; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessageTableCardCell - */ - public function getCells() - { - return $this->cells; - } - public function setDividerAfter($dividerAfter) - { - $this->dividerAfter = $dividerAfter; - } - public function getDividerAfter() - { - return $this->dividerAfter; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageText.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageText.php deleted file mode 100644 index 426c526e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentMessageText.php +++ /dev/null @@ -1,31 +0,0 @@ -text = $text; - } - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentParameter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentParameter.php deleted file mode 100644 index e910d63a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentParameter.php +++ /dev/null @@ -1,94 +0,0 @@ -defaultValue = $defaultValue; - } - public function getDefaultValue() - { - return $this->defaultValue; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setEntityTypeDisplayName($entityTypeDisplayName) - { - $this->entityTypeDisplayName = $entityTypeDisplayName; - } - public function getEntityTypeDisplayName() - { - return $this->entityTypeDisplayName; - } - public function setIsList($isList) - { - $this->isList = $isList; - } - public function getIsList() - { - return $this->isList; - } - public function setMandatory($mandatory) - { - $this->mandatory = $mandatory; - } - public function getMandatory() - { - return $this->mandatory; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPrompts($prompts) - { - $this->prompts = $prompts; - } - public function getPrompts() - { - return $this->prompts; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentTrainingPhrase.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentTrainingPhrase.php deleted file mode 100644 index 67e9663f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentTrainingPhrase.php +++ /dev/null @@ -1,65 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentTrainingPhrasePart - */ - public function setParts($parts) - { - $this->parts = $parts; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentTrainingPhrasePart - */ - public function getParts() - { - return $this->parts; - } - public function setTimesAddedCount($timesAddedCount) - { - $this->timesAddedCount = $timesAddedCount; - } - public function getTimesAddedCount() - { - return $this->timesAddedCount; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentTrainingPhrasePart.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentTrainingPhrasePart.php deleted file mode 100644 index d9e93213..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2IntentTrainingPhrasePart.php +++ /dev/null @@ -1,57 +0,0 @@ -alias = $alias; - } - public function getAlias() - { - return $this->alias; - } - public function setEntityType($entityType) - { - $this->entityType = $entityType; - } - public function getEntityType() - { - return $this->entityType; - } - public function setText($text) - { - $this->text = $text; - } - public function getText() - { - return $this->text; - } - public function setUserDefined($userDefined) - { - $this->userDefined = $userDefined; - } - public function getUserDefined() - { - return $this->userDefined; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2ListContextsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2ListContextsResponse.php deleted file mode 100644 index 7f286b5d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2ListContextsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -contexts = $contexts; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2Context - */ - public function getContexts() - { - return $this->contexts; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2ListEntityTypesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2ListEntityTypesResponse.php deleted file mode 100644 index 3b390209..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2ListEntityTypesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -entityTypes = $entityTypes; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2EntityType - */ - public function getEntityTypes() - { - return $this->entityTypes; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2ListEnvironmentsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2ListEnvironmentsResponse.php deleted file mode 100644 index 4e815b7a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2ListEnvironmentsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -environments = $environments; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2Environment - */ - public function getEnvironments() - { - return $this->environments; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2ListIntentsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2ListIntentsResponse.php deleted file mode 100644 index d8ae7215..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2ListIntentsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -intents = $intents; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2Intent - */ - public function getIntents() - { - return $this->intents; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2ListSessionEntityTypesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2ListSessionEntityTypesResponse.php deleted file mode 100644 index 7646cfc4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2ListSessionEntityTypesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2SessionEntityType - */ - public function setSessionEntityTypes($sessionEntityTypes) - { - $this->sessionEntityTypes = $sessionEntityTypes; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2SessionEntityType - */ - public function getSessionEntityTypes() - { - return $this->sessionEntityTypes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2ListVersionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2ListVersionsResponse.php deleted file mode 100644 index 2898f694..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2ListVersionsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2Version - */ - public function setVersions($versions) - { - $this->versions = $versions; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2Version - */ - public function getVersions() - { - return $this->versions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2Message.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2Message.php deleted file mode 100644 index fbf5a065..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2Message.php +++ /dev/null @@ -1,91 +0,0 @@ -content = $content; - } - public function getContent() - { - return $this->content; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setLanguageCode($languageCode) - { - $this->languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2MessageAnnotation - */ - public function setMessageAnnotation(Google_Service_Dialogflow_GoogleCloudDialogflowV2MessageAnnotation $messageAnnotation) - { - $this->messageAnnotation = $messageAnnotation; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2MessageAnnotation - */ - public function getMessageAnnotation() - { - return $this->messageAnnotation; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setParticipant($participant) - { - $this->participant = $participant; - } - public function getParticipant() - { - return $this->participant; - } - public function setParticipantRole($participantRole) - { - $this->participantRole = $participantRole; - } - public function getParticipantRole() - { - return $this->participantRole; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2MessageAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2MessageAnnotation.php deleted file mode 100644 index ca501e24..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2MessageAnnotation.php +++ /dev/null @@ -1,47 +0,0 @@ -containEntities = $containEntities; - } - public function getContainEntities() - { - return $this->containEntities; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2AnnotatedMessagePart - */ - public function setParts($parts) - { - $this->parts = $parts; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2AnnotatedMessagePart - */ - public function getParts() - { - return $this->parts; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2OriginalDetectIntentRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2OriginalDetectIntentRequest.php deleted file mode 100644 index e37009c5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2OriginalDetectIntentRequest.php +++ /dev/null @@ -1,48 +0,0 @@ -payload = $payload; - } - public function getPayload() - { - return $this->payload; - } - public function setSource($source) - { - $this->source = $source; - } - public function getSource() - { - return $this->source; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2OutputAudioConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2OutputAudioConfig.php deleted file mode 100644 index c87c971b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2OutputAudioConfig.php +++ /dev/null @@ -1,55 +0,0 @@ -audioEncoding = $audioEncoding; - } - public function getAudioEncoding() - { - return $this->audioEncoding; - } - public function setSampleRateHertz($sampleRateHertz) - { - $this->sampleRateHertz = $sampleRateHertz; - } - public function getSampleRateHertz() - { - return $this->sampleRateHertz; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2SynthesizeSpeechConfig - */ - public function setSynthesizeSpeechConfig(Google_Service_Dialogflow_GoogleCloudDialogflowV2SynthesizeSpeechConfig $synthesizeSpeechConfig) - { - $this->synthesizeSpeechConfig = $synthesizeSpeechConfig; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2SynthesizeSpeechConfig - */ - public function getSynthesizeSpeechConfig() - { - return $this->synthesizeSpeechConfig; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2QueryInput.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2QueryInput.php deleted file mode 100644 index ce7920f9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2QueryInput.php +++ /dev/null @@ -1,69 +0,0 @@ -audioConfig = $audioConfig; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2InputAudioConfig - */ - public function getAudioConfig() - { - return $this->audioConfig; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2EventInput - */ - public function setEvent(Google_Service_Dialogflow_GoogleCloudDialogflowV2EventInput $event) - { - $this->event = $event; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2EventInput - */ - public function getEvent() - { - return $this->event; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2TextInput - */ - public function setText(Google_Service_Dialogflow_GoogleCloudDialogflowV2TextInput $text) - { - $this->text = $text; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2TextInput - */ - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2QueryParameters.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2QueryParameters.php deleted file mode 100644 index 7b78c98f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2QueryParameters.php +++ /dev/null @@ -1,113 +0,0 @@ -contexts = $contexts; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2Context - */ - public function getContexts() - { - return $this->contexts; - } - /** - * @param Google_Service_Dialogflow_GoogleTypeLatLng - */ - public function setGeoLocation(Google_Service_Dialogflow_GoogleTypeLatLng $geoLocation) - { - $this->geoLocation = $geoLocation; - } - /** - * @return Google_Service_Dialogflow_GoogleTypeLatLng - */ - public function getGeoLocation() - { - return $this->geoLocation; - } - public function setPayload($payload) - { - $this->payload = $payload; - } - public function getPayload() - { - return $this->payload; - } - public function setResetContexts($resetContexts) - { - $this->resetContexts = $resetContexts; - } - public function getResetContexts() - { - return $this->resetContexts; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2SentimentAnalysisRequestConfig - */ - public function setSentimentAnalysisRequestConfig(Google_Service_Dialogflow_GoogleCloudDialogflowV2SentimentAnalysisRequestConfig $sentimentAnalysisRequestConfig) - { - $this->sentimentAnalysisRequestConfig = $sentimentAnalysisRequestConfig; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2SentimentAnalysisRequestConfig - */ - public function getSentimentAnalysisRequestConfig() - { - return $this->sentimentAnalysisRequestConfig; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2SessionEntityType - */ - public function setSessionEntityTypes($sessionEntityTypes) - { - $this->sessionEntityTypes = $sessionEntityTypes; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2SessionEntityType - */ - public function getSessionEntityTypes() - { - return $this->sessionEntityTypes; - } - public function setTimeZone($timeZone) - { - $this->timeZone = $timeZone; - } - public function getTimeZone() - { - return $this->timeZone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2QueryResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2QueryResult.php deleted file mode 100644 index 7f02371b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2QueryResult.php +++ /dev/null @@ -1,185 +0,0 @@ -action = $action; - } - public function getAction() - { - return $this->action; - } - public function setAllRequiredParamsPresent($allRequiredParamsPresent) - { - $this->allRequiredParamsPresent = $allRequiredParamsPresent; - } - public function getAllRequiredParamsPresent() - { - return $this->allRequiredParamsPresent; - } - public function setDiagnosticInfo($diagnosticInfo) - { - $this->diagnosticInfo = $diagnosticInfo; - } - public function getDiagnosticInfo() - { - return $this->diagnosticInfo; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessage - */ - public function setFulfillmentMessages($fulfillmentMessages) - { - $this->fulfillmentMessages = $fulfillmentMessages; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessage - */ - public function getFulfillmentMessages() - { - return $this->fulfillmentMessages; - } - public function setFulfillmentText($fulfillmentText) - { - $this->fulfillmentText = $fulfillmentText; - } - public function getFulfillmentText() - { - return $this->fulfillmentText; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2Intent - */ - public function setIntent(Google_Service_Dialogflow_GoogleCloudDialogflowV2Intent $intent) - { - $this->intent = $intent; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2Intent - */ - public function getIntent() - { - return $this->intent; - } - public function setIntentDetectionConfidence($intentDetectionConfidence) - { - $this->intentDetectionConfidence = $intentDetectionConfidence; - } - public function getIntentDetectionConfidence() - { - return $this->intentDetectionConfidence; - } - public function setLanguageCode($languageCode) - { - $this->languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2Context - */ - public function setOutputContexts($outputContexts) - { - $this->outputContexts = $outputContexts; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2Context - */ - public function getOutputContexts() - { - return $this->outputContexts; - } - public function setParameters($parameters) - { - $this->parameters = $parameters; - } - public function getParameters() - { - return $this->parameters; - } - public function setQueryText($queryText) - { - $this->queryText = $queryText; - } - public function getQueryText() - { - return $this->queryText; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2SentimentAnalysisResult - */ - public function setSentimentAnalysisResult(Google_Service_Dialogflow_GoogleCloudDialogflowV2SentimentAnalysisResult $sentimentAnalysisResult) - { - $this->sentimentAnalysisResult = $sentimentAnalysisResult; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2SentimentAnalysisResult - */ - public function getSentimentAnalysisResult() - { - return $this->sentimentAnalysisResult; - } - public function setSpeechRecognitionConfidence($speechRecognitionConfidence) - { - $this->speechRecognitionConfidence = $speechRecognitionConfidence; - } - public function getSpeechRecognitionConfidence() - { - return $this->speechRecognitionConfidence; - } - public function setWebhookPayload($webhookPayload) - { - $this->webhookPayload = $webhookPayload; - } - public function getWebhookPayload() - { - return $this->webhookPayload; - } - public function setWebhookSource($webhookSource) - { - $this->webhookSource = $webhookSource; - } - public function getWebhookSource() - { - return $this->webhookSource; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2RestoreAgentRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2RestoreAgentRequest.php deleted file mode 100644 index 92cda25e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2RestoreAgentRequest.php +++ /dev/null @@ -1,39 +0,0 @@ -agentContent = $agentContent; - } - public function getAgentContent() - { - return $this->agentContent; - } - public function setAgentUri($agentUri) - { - $this->agentUri = $agentUri; - } - public function getAgentUri() - { - return $this->agentUri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2SearchAgentsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2SearchAgentsResponse.php deleted file mode 100644 index 3914c6e2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2SearchAgentsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -agents = $agents; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2Agent - */ - public function getAgents() - { - return $this->agents; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2Sentiment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2Sentiment.php deleted file mode 100644 index e5dd3a66..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2Sentiment.php +++ /dev/null @@ -1,39 +0,0 @@ -magnitude = $magnitude; - } - public function getMagnitude() - { - return $this->magnitude; - } - public function setScore($score) - { - $this->score = $score; - } - public function getScore() - { - return $this->score; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2SentimentAnalysisRequestConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2SentimentAnalysisRequestConfig.php deleted file mode 100644 index a2cf23b8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2SentimentAnalysisRequestConfig.php +++ /dev/null @@ -1,30 +0,0 @@ -analyzeQueryTextSentiment = $analyzeQueryTextSentiment; - } - public function getAnalyzeQueryTextSentiment() - { - return $this->analyzeQueryTextSentiment; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2SentimentAnalysisResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2SentimentAnalysisResult.php deleted file mode 100644 index f432e1e2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2SentimentAnalysisResult.php +++ /dev/null @@ -1,37 +0,0 @@ -queryTextSentiment = $queryTextSentiment; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2Sentiment - */ - public function getQueryTextSentiment() - { - return $this->queryTextSentiment; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2SessionEntityType.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2SessionEntityType.php deleted file mode 100644 index 2e1866be..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2SessionEntityType.php +++ /dev/null @@ -1,56 +0,0 @@ -entities = $entities; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2EntityTypeEntity - */ - public function getEntities() - { - return $this->entities; - } - public function setEntityOverrideMode($entityOverrideMode) - { - $this->entityOverrideMode = $entityOverrideMode; - } - public function getEntityOverrideMode() - { - return $this->entityOverrideMode; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2SpeechContext.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2SpeechContext.php deleted file mode 100644 index 880c24ee..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2SpeechContext.php +++ /dev/null @@ -1,40 +0,0 @@ -boost = $boost; - } - public function getBoost() - { - return $this->boost; - } - public function setPhrases($phrases) - { - $this->phrases = $phrases; - } - public function getPhrases() - { - return $this->phrases; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2SynthesizeSpeechConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2SynthesizeSpeechConfig.php deleted file mode 100644 index 1bbddf6b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2SynthesizeSpeechConfig.php +++ /dev/null @@ -1,74 +0,0 @@ -effectsProfileId = $effectsProfileId; - } - public function getEffectsProfileId() - { - return $this->effectsProfileId; - } - public function setPitch($pitch) - { - $this->pitch = $pitch; - } - public function getPitch() - { - return $this->pitch; - } - public function setSpeakingRate($speakingRate) - { - $this->speakingRate = $speakingRate; - } - public function getSpeakingRate() - { - return $this->speakingRate; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2VoiceSelectionParams - */ - public function setVoice(Google_Service_Dialogflow_GoogleCloudDialogflowV2VoiceSelectionParams $voice) - { - $this->voice = $voice; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2VoiceSelectionParams - */ - public function getVoice() - { - return $this->voice; - } - public function setVolumeGainDb($volumeGainDb) - { - $this->volumeGainDb = $volumeGainDb; - } - public function getVolumeGainDb() - { - return $this->volumeGainDb; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2TextInput.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2TextInput.php deleted file mode 100644 index c527f196..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2TextInput.php +++ /dev/null @@ -1,39 +0,0 @@ -languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } - public function setText($text) - { - $this->text = $text; - } - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2TrainAgentRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2TrainAgentRequest.php deleted file mode 100644 index d3127588..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2TrainAgentRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -entries = $entries; - } - public function getEntries() - { - return $this->entries; - } - public function setErrorMessage($errorMessage) - { - $this->errorMessage = $errorMessage; - } - public function getErrorMessage() - { - return $this->errorMessage; - } - public function setSeverity($severity) - { - $this->severity = $severity; - } - public function getSeverity() - { - return $this->severity; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2ValidationResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2ValidationResult.php deleted file mode 100644 index 6e5326b6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2ValidationResult.php +++ /dev/null @@ -1,38 +0,0 @@ -validationErrors = $validationErrors; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2ValidationError - */ - public function getValidationErrors() - { - return $this->validationErrors; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2Version.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2Version.php deleted file mode 100644 index 16d39c96..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2Version.php +++ /dev/null @@ -1,66 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setVersionNumber($versionNumber) - { - $this->versionNumber = $versionNumber; - } - public function getVersionNumber() - { - return $this->versionNumber; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2VoiceSelectionParams.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2VoiceSelectionParams.php deleted file mode 100644 index fbf25054..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2VoiceSelectionParams.php +++ /dev/null @@ -1,39 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setSsmlGender($ssmlGender) - { - $this->ssmlGender = $ssmlGender; - } - public function getSsmlGender() - { - return $this->ssmlGender; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2WebhookRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2WebhookRequest.php deleted file mode 100644 index 83eaa766..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2WebhookRequest.php +++ /dev/null @@ -1,71 +0,0 @@ -originalDetectIntentRequest = $originalDetectIntentRequest; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2OriginalDetectIntentRequest - */ - public function getOriginalDetectIntentRequest() - { - return $this->originalDetectIntentRequest; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2QueryResult - */ - public function setQueryResult(Google_Service_Dialogflow_GoogleCloudDialogflowV2QueryResult $queryResult) - { - $this->queryResult = $queryResult; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2QueryResult - */ - public function getQueryResult() - { - return $this->queryResult; - } - public function setResponseId($responseId) - { - $this->responseId = $responseId; - } - public function getResponseId() - { - return $this->responseId; - } - public function setSession($session) - { - $this->session = $session; - } - public function getSession() - { - return $this->session; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2WebhookResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2WebhookResponse.php deleted file mode 100644 index e1342141..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2WebhookResponse.php +++ /dev/null @@ -1,113 +0,0 @@ -followupEventInput = $followupEventInput; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2EventInput - */ - public function getFollowupEventInput() - { - return $this->followupEventInput; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessage - */ - public function setFulfillmentMessages($fulfillmentMessages) - { - $this->fulfillmentMessages = $fulfillmentMessages; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentMessage - */ - public function getFulfillmentMessages() - { - return $this->fulfillmentMessages; - } - public function setFulfillmentText($fulfillmentText) - { - $this->fulfillmentText = $fulfillmentText; - } - public function getFulfillmentText() - { - return $this->fulfillmentText; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2Context - */ - public function setOutputContexts($outputContexts) - { - $this->outputContexts = $outputContexts; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2Context - */ - public function getOutputContexts() - { - return $this->outputContexts; - } - public function setPayload($payload) - { - $this->payload = $payload; - } - public function getPayload() - { - return $this->payload; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2SessionEntityType - */ - public function setSessionEntityTypes($sessionEntityTypes) - { - $this->sessionEntityTypes = $sessionEntityTypes; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2SessionEntityType - */ - public function getSessionEntityTypes() - { - return $this->sessionEntityTypes; - } - public function setSource($source) - { - $this->source = $source; - } - public function getSource() - { - return $this->source; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1AnnotatedConversationDataset.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1AnnotatedConversationDataset.php deleted file mode 100644 index 07495ee4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1AnnotatedConversationDataset.php +++ /dev/null @@ -1,84 +0,0 @@ -completedExampleCount = $completedExampleCount; - } - public function getCompletedExampleCount() - { - return $this->completedExampleCount; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setExampleCount($exampleCount) - { - $this->exampleCount = $exampleCount; - } - public function getExampleCount() - { - return $this->exampleCount; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setQuestionTypeName($questionTypeName) - { - $this->questionTypeName = $questionTypeName; - } - public function getQuestionTypeName() - { - return $this->questionTypeName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1BatchUpdateEntityTypesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1BatchUpdateEntityTypesResponse.php deleted file mode 100644 index e348e3ec..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1BatchUpdateEntityTypesResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -entityTypes = $entityTypes; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1EntityType - */ - public function getEntityTypes() - { - return $this->entityTypes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1BatchUpdateIntentsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1BatchUpdateIntentsResponse.php deleted file mode 100644 index 1062f329..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1BatchUpdateIntentsResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -intents = $intents; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1Intent - */ - public function getIntents() - { - return $this->intents; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1Context.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1Context.php deleted file mode 100644 index 6ed549bc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1Context.php +++ /dev/null @@ -1,48 +0,0 @@ -lifespanCount = $lifespanCount; - } - public function getLifespanCount() - { - return $this->lifespanCount; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setParameters($parameters) - { - $this->parameters = $parameters; - } - public function getParameters() - { - return $this->parameters; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1EntityType.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1EntityType.php deleted file mode 100644 index 5862298f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1EntityType.php +++ /dev/null @@ -1,83 +0,0 @@ -autoExpansionMode = $autoExpansionMode; - } - public function getAutoExpansionMode() - { - return $this->autoExpansionMode; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setEnableFuzzyExtraction($enableFuzzyExtraction) - { - $this->enableFuzzyExtraction = $enableFuzzyExtraction; - } - public function getEnableFuzzyExtraction() - { - return $this->enableFuzzyExtraction; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1EntityTypeEntity - */ - public function setEntities($entities) - { - $this->entities = $entities; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1EntityTypeEntity - */ - public function getEntities() - { - return $this->entities; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1EntityTypeEntity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1EntityTypeEntity.php deleted file mode 100644 index 7215b007..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1EntityTypeEntity.php +++ /dev/null @@ -1,40 +0,0 @@ -synonyms = $synonyms; - } - public function getSynonyms() - { - return $this->synonyms; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1EventInput.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1EventInput.php deleted file mode 100644 index 2cd370b1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1EventInput.php +++ /dev/null @@ -1,48 +0,0 @@ -languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setParameters($parameters) - { - $this->parameters = $parameters; - } - public function getParameters() - { - return $this->parameters; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1ExportAgentResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1ExportAgentResponse.php deleted file mode 100644 index 25426a62..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1ExportAgentResponse.php +++ /dev/null @@ -1,39 +0,0 @@ -agentContent = $agentContent; - } - public function getAgentContent() - { - return $this->agentContent; - } - public function setAgentUri($agentUri) - { - $this->agentUri = $agentUri; - } - public function getAgentUri() - { - return $this->agentUri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1Intent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1Intent.php deleted file mode 100644 index 5c33d410..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1Intent.php +++ /dev/null @@ -1,237 +0,0 @@ -action = $action; - } - public function getAction() - { - return $this->action; - } - public function setDefaultResponsePlatforms($defaultResponsePlatforms) - { - $this->defaultResponsePlatforms = $defaultResponsePlatforms; - } - public function getDefaultResponsePlatforms() - { - return $this->defaultResponsePlatforms; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setEndInteraction($endInteraction) - { - $this->endInteraction = $endInteraction; - } - public function getEndInteraction() - { - return $this->endInteraction; - } - public function setEvents($events) - { - $this->events = $events; - } - public function getEvents() - { - return $this->events; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentFollowupIntentInfo - */ - public function setFollowupIntentInfo($followupIntentInfo) - { - $this->followupIntentInfo = $followupIntentInfo; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentFollowupIntentInfo - */ - public function getFollowupIntentInfo() - { - return $this->followupIntentInfo; - } - public function setInputContextNames($inputContextNames) - { - $this->inputContextNames = $inputContextNames; - } - public function getInputContextNames() - { - return $this->inputContextNames; - } - public function setIsFallback($isFallback) - { - $this->isFallback = $isFallback; - } - public function getIsFallback() - { - return $this->isFallback; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessage - */ - public function setMessages($messages) - { - $this->messages = $messages; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessage - */ - public function getMessages() - { - return $this->messages; - } - public function setMlDisabled($mlDisabled) - { - $this->mlDisabled = $mlDisabled; - } - public function getMlDisabled() - { - return $this->mlDisabled; - } - public function setMlEnabled($mlEnabled) - { - $this->mlEnabled = $mlEnabled; - } - public function getMlEnabled() - { - return $this->mlEnabled; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1Context - */ - public function setOutputContexts($outputContexts) - { - $this->outputContexts = $outputContexts; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1Context - */ - public function getOutputContexts() - { - return $this->outputContexts; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentParameter - */ - public function setParameters($parameters) - { - $this->parameters = $parameters; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentParameter - */ - public function getParameters() - { - return $this->parameters; - } - public function setParentFollowupIntentName($parentFollowupIntentName) - { - $this->parentFollowupIntentName = $parentFollowupIntentName; - } - public function getParentFollowupIntentName() - { - return $this->parentFollowupIntentName; - } - public function setPriority($priority) - { - $this->priority = $priority; - } - public function getPriority() - { - return $this->priority; - } - public function setResetContexts($resetContexts) - { - $this->resetContexts = $resetContexts; - } - public function getResetContexts() - { - return $this->resetContexts; - } - public function setRootFollowupIntentName($rootFollowupIntentName) - { - $this->rootFollowupIntentName = $rootFollowupIntentName; - } - public function getRootFollowupIntentName() - { - return $this->rootFollowupIntentName; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentTrainingPhrase - */ - public function setTrainingPhrases($trainingPhrases) - { - $this->trainingPhrases = $trainingPhrases; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentTrainingPhrase - */ - public function getTrainingPhrases() - { - return $this->trainingPhrases; - } - public function setWebhookState($webhookState) - { - $this->webhookState = $webhookState; - } - public function getWebhookState() - { - return $this->webhookState; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentFollowupIntentInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentFollowupIntentInfo.php deleted file mode 100644 index 97d2d1cb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentFollowupIntentInfo.php +++ /dev/null @@ -1,39 +0,0 @@ -followupIntentName = $followupIntentName; - } - public function getFollowupIntentName() - { - return $this->followupIntentName; - } - public function setParentFollowupIntentName($parentFollowupIntentName) - { - $this->parentFollowupIntentName = $parentFollowupIntentName; - } - public function getParentFollowupIntentName() - { - return $this->parentFollowupIntentName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessage.php deleted file mode 100644 index 64a58bb3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessage.php +++ /dev/null @@ -1,343 +0,0 @@ -basicCard = $basicCard; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageBasicCard - */ - public function getBasicCard() - { - return $this->basicCard; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageBrowseCarouselCard - */ - public function setBrowseCarouselCard(Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageBrowseCarouselCard $browseCarouselCard) - { - $this->browseCarouselCard = $browseCarouselCard; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageBrowseCarouselCard - */ - public function getBrowseCarouselCard() - { - return $this->browseCarouselCard; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageCard - */ - public function setCard(Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageCard $card) - { - $this->card = $card; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageCard - */ - public function getCard() - { - return $this->card; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageCarouselSelect - */ - public function setCarouselSelect(Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageCarouselSelect $carouselSelect) - { - $this->carouselSelect = $carouselSelect; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageCarouselSelect - */ - public function getCarouselSelect() - { - return $this->carouselSelect; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageImage - */ - public function setImage(Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageImage $image) - { - $this->image = $image; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageImage - */ - public function getImage() - { - return $this->image; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageLinkOutSuggestion - */ - public function setLinkOutSuggestion(Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageLinkOutSuggestion $linkOutSuggestion) - { - $this->linkOutSuggestion = $linkOutSuggestion; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageLinkOutSuggestion - */ - public function getLinkOutSuggestion() - { - return $this->linkOutSuggestion; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageListSelect - */ - public function setListSelect(Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageListSelect $listSelect) - { - $this->listSelect = $listSelect; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageListSelect - */ - public function getListSelect() - { - return $this->listSelect; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageMediaContent - */ - public function setMediaContent(Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageMediaContent $mediaContent) - { - $this->mediaContent = $mediaContent; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageMediaContent - */ - public function getMediaContent() - { - return $this->mediaContent; - } - public function setPayload($payload) - { - $this->payload = $payload; - } - public function getPayload() - { - return $this->payload; - } - public function setPlatform($platform) - { - $this->platform = $platform; - } - public function getPlatform() - { - return $this->platform; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageQuickReplies - */ - public function setQuickReplies(Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageQuickReplies $quickReplies) - { - $this->quickReplies = $quickReplies; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageQuickReplies - */ - public function getQuickReplies() - { - return $this->quickReplies; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageRbmCarouselCard - */ - public function setRbmCarouselRichCard(Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageRbmCarouselCard $rbmCarouselRichCard) - { - $this->rbmCarouselRichCard = $rbmCarouselRichCard; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageRbmCarouselCard - */ - public function getRbmCarouselRichCard() - { - return $this->rbmCarouselRichCard; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageRbmStandaloneCard - */ - public function setRbmStandaloneRichCard(Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageRbmStandaloneCard $rbmStandaloneRichCard) - { - $this->rbmStandaloneRichCard = $rbmStandaloneRichCard; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageRbmStandaloneCard - */ - public function getRbmStandaloneRichCard() - { - return $this->rbmStandaloneRichCard; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageRbmText - */ - public function setRbmText(Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageRbmText $rbmText) - { - $this->rbmText = $rbmText; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageRbmText - */ - public function getRbmText() - { - return $this->rbmText; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageSimpleResponses - */ - public function setSimpleResponses(Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageSimpleResponses $simpleResponses) - { - $this->simpleResponses = $simpleResponses; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageSimpleResponses - */ - public function getSimpleResponses() - { - return $this->simpleResponses; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageSuggestions - */ - public function setSuggestions(Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageSuggestions $suggestions) - { - $this->suggestions = $suggestions; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageSuggestions - */ - public function getSuggestions() - { - return $this->suggestions; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageTableCard - */ - public function setTableCard(Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageTableCard $tableCard) - { - $this->tableCard = $tableCard; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageTableCard - */ - public function getTableCard() - { - return $this->tableCard; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageTelephonyPlayAudio - */ - public function setTelephonyPlayAudio(Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageTelephonyPlayAudio $telephonyPlayAudio) - { - $this->telephonyPlayAudio = $telephonyPlayAudio; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageTelephonyPlayAudio - */ - public function getTelephonyPlayAudio() - { - return $this->telephonyPlayAudio; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageTelephonySynthesizeSpeech - */ - public function setTelephonySynthesizeSpeech(Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageTelephonySynthesizeSpeech $telephonySynthesizeSpeech) - { - $this->telephonySynthesizeSpeech = $telephonySynthesizeSpeech; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageTelephonySynthesizeSpeech - */ - public function getTelephonySynthesizeSpeech() - { - return $this->telephonySynthesizeSpeech; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageTelephonyTransferCall - */ - public function setTelephonyTransferCall(Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageTelephonyTransferCall $telephonyTransferCall) - { - $this->telephonyTransferCall = $telephonyTransferCall; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageTelephonyTransferCall - */ - public function getTelephonyTransferCall() - { - return $this->telephonyTransferCall; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageText - */ - public function setText(Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageText $text) - { - $this->text = $text; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageText - */ - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageBasicCard.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageBasicCard.php deleted file mode 100644 index 75280fd3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageBasicCard.php +++ /dev/null @@ -1,81 +0,0 @@ -buttons = $buttons; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageBasicCardButton - */ - public function getButtons() - { - return $this->buttons; - } - public function setFormattedText($formattedText) - { - $this->formattedText = $formattedText; - } - public function getFormattedText() - { - return $this->formattedText; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageImage - */ - public function setImage(Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageImage $image) - { - $this->image = $image; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageImage - */ - public function getImage() - { - return $this->image; - } - public function setSubtitle($subtitle) - { - $this->subtitle = $subtitle; - } - public function getSubtitle() - { - return $this->subtitle; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageBasicCardButton.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageBasicCardButton.php deleted file mode 100644 index 45e02706..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageBasicCardButton.php +++ /dev/null @@ -1,46 +0,0 @@ -openUriAction = $openUriAction; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageBasicCardButtonOpenUriAction - */ - public function getOpenUriAction() - { - return $this->openUriAction; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageBasicCardButtonOpenUriAction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageBasicCardButtonOpenUriAction.php deleted file mode 100644 index 09c3c676..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageBasicCardButtonOpenUriAction.php +++ /dev/null @@ -1,30 +0,0 @@ -uri = $uri; - } - public function getUri() - { - return $this->uri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageBrowseCarouselCard.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageBrowseCarouselCard.php deleted file mode 100644 index be48e326..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageBrowseCarouselCard.php +++ /dev/null @@ -1,47 +0,0 @@ -imageDisplayOptions = $imageDisplayOptions; - } - public function getImageDisplayOptions() - { - return $this->imageDisplayOptions; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageBrowseCarouselCardBrowseCarouselCardItem - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageBrowseCarouselCardBrowseCarouselCardItem - */ - public function getItems() - { - return $this->items; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageBrowseCarouselCardBrowseCarouselCardItem.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageBrowseCarouselCardBrowseCarouselCardItem.php deleted file mode 100644 index 30bbc95c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageBrowseCarouselCardBrowseCarouselCardItem.php +++ /dev/null @@ -1,80 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setFooter($footer) - { - $this->footer = $footer; - } - public function getFooter() - { - return $this->footer; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageImage - */ - public function setImage(Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageImage $image) - { - $this->image = $image; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageImage - */ - public function getImage() - { - return $this->image; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageBrowseCarouselCardBrowseCarouselCardItemOpenUrlAction - */ - public function setOpenUriAction(Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageBrowseCarouselCardBrowseCarouselCardItemOpenUrlAction $openUriAction) - { - $this->openUriAction = $openUriAction; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageBrowseCarouselCardBrowseCarouselCardItemOpenUrlAction - */ - public function getOpenUriAction() - { - return $this->openUriAction; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageBrowseCarouselCardBrowseCarouselCardItemOpenUrlAction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageBrowseCarouselCardBrowseCarouselCardItemOpenUrlAction.php deleted file mode 100644 index 90643576..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageBrowseCarouselCardBrowseCarouselCardItemOpenUrlAction.php +++ /dev/null @@ -1,39 +0,0 @@ -url = $url; - } - public function getUrl() - { - return $this->url; - } - public function setUrlTypeHint($urlTypeHint) - { - $this->urlTypeHint = $urlTypeHint; - } - public function getUrlTypeHint() - { - return $this->urlTypeHint; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageCard.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageCard.php deleted file mode 100644 index 03ec271e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageCard.php +++ /dev/null @@ -1,65 +0,0 @@ -buttons = $buttons; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageCardButton - */ - public function getButtons() - { - return $this->buttons; - } - public function setImageUri($imageUri) - { - $this->imageUri = $imageUri; - } - public function getImageUri() - { - return $this->imageUri; - } - public function setSubtitle($subtitle) - { - $this->subtitle = $subtitle; - } - public function getSubtitle() - { - return $this->subtitle; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageCardButton.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageCardButton.php deleted file mode 100644 index cb539dc9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageCardButton.php +++ /dev/null @@ -1,39 +0,0 @@ -postback = $postback; - } - public function getPostback() - { - return $this->postback; - } - public function setText($text) - { - $this->text = $text; - } - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageCarouselSelect.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageCarouselSelect.php deleted file mode 100644 index 4e02e69c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageCarouselSelect.php +++ /dev/null @@ -1,38 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageCarouselSelectItem - */ - public function getItems() - { - return $this->items; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageCarouselSelectItem.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageCarouselSelectItem.php deleted file mode 100644 index 10ad3eb7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageCarouselSelectItem.php +++ /dev/null @@ -1,71 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageImage - */ - public function setImage(Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageImage $image) - { - $this->image = $image; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageImage - */ - public function getImage() - { - return $this->image; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageSelectItemInfo - */ - public function setInfo(Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageSelectItemInfo $info) - { - $this->info = $info; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageSelectItemInfo - */ - public function getInfo() - { - return $this->info; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageColumnProperties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageColumnProperties.php deleted file mode 100644 index 0fe12f6d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageColumnProperties.php +++ /dev/null @@ -1,39 +0,0 @@ -header = $header; - } - public function getHeader() - { - return $this->header; - } - public function setHorizontalAlignment($horizontalAlignment) - { - $this->horizontalAlignment = $horizontalAlignment; - } - public function getHorizontalAlignment() - { - return $this->horizontalAlignment; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageImage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageImage.php deleted file mode 100644 index d1b3e6b2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageImage.php +++ /dev/null @@ -1,39 +0,0 @@ -accessibilityText = $accessibilityText; - } - public function getAccessibilityText() - { - return $this->accessibilityText; - } - public function setImageUri($imageUri) - { - $this->imageUri = $imageUri; - } - public function getImageUri() - { - return $this->imageUri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageLinkOutSuggestion.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageLinkOutSuggestion.php deleted file mode 100644 index dcb9df8b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageLinkOutSuggestion.php +++ /dev/null @@ -1,39 +0,0 @@ -destinationName = $destinationName; - } - public function getDestinationName() - { - return $this->destinationName; - } - public function setUri($uri) - { - $this->uri = $uri; - } - public function getUri() - { - return $this->uri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageListSelect.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageListSelect.php deleted file mode 100644 index c5d47ac0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageListSelect.php +++ /dev/null @@ -1,56 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageListSelectItem - */ - public function getItems() - { - return $this->items; - } - public function setSubtitle($subtitle) - { - $this->subtitle = $subtitle; - } - public function getSubtitle() - { - return $this->subtitle; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageListSelectItem.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageListSelectItem.php deleted file mode 100644 index bb9f9132..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageListSelectItem.php +++ /dev/null @@ -1,71 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageImage - */ - public function setImage(Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageImage $image) - { - $this->image = $image; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageImage - */ - public function getImage() - { - return $this->image; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageSelectItemInfo - */ - public function setInfo(Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageSelectItemInfo $info) - { - $this->info = $info; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageSelectItemInfo - */ - public function getInfo() - { - return $this->info; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageMediaContent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageMediaContent.php deleted file mode 100644 index 589945a3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageMediaContent.php +++ /dev/null @@ -1,47 +0,0 @@ -mediaObjects = $mediaObjects; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageMediaContentResponseMediaObject - */ - public function getMediaObjects() - { - return $this->mediaObjects; - } - public function setMediaType($mediaType) - { - $this->mediaType = $mediaType; - } - public function getMediaType() - { - return $this->mediaType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageMediaContentResponseMediaObject.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageMediaContentResponseMediaObject.php deleted file mode 100644 index 8e480426..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageMediaContentResponseMediaObject.php +++ /dev/null @@ -1,80 +0,0 @@ -contentUrl = $contentUrl; - } - public function getContentUrl() - { - return $this->contentUrl; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageImage - */ - public function setIcon(Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageImage $icon) - { - $this->icon = $icon; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageImage - */ - public function getIcon() - { - return $this->icon; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageImage - */ - public function setLargeImage(Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageImage $largeImage) - { - $this->largeImage = $largeImage; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageImage - */ - public function getLargeImage() - { - return $this->largeImage; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageQuickReplies.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageQuickReplies.php deleted file mode 100644 index 9e456005..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageQuickReplies.php +++ /dev/null @@ -1,40 +0,0 @@ -quickReplies = $quickReplies; - } - public function getQuickReplies() - { - return $this->quickReplies; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageRbmCardContent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageRbmCardContent.php deleted file mode 100644 index 8c278ab1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageRbmCardContent.php +++ /dev/null @@ -1,72 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageRbmCardContentRbmMedia - */ - public function setMedia(Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageRbmCardContentRbmMedia $media) - { - $this->media = $media; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageRbmCardContentRbmMedia - */ - public function getMedia() - { - return $this->media; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestion - */ - public function setSuggestions($suggestions) - { - $this->suggestions = $suggestions; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestion - */ - public function getSuggestions() - { - return $this->suggestions; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageRbmCardContentRbmMedia.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageRbmCardContentRbmMedia.php deleted file mode 100644 index b39ef716..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageRbmCardContentRbmMedia.php +++ /dev/null @@ -1,48 +0,0 @@ -fileUri = $fileUri; - } - public function getFileUri() - { - return $this->fileUri; - } - public function setHeight($height) - { - $this->height = $height; - } - public function getHeight() - { - return $this->height; - } - public function setThumbnailUri($thumbnailUri) - { - $this->thumbnailUri = $thumbnailUri; - } - public function getThumbnailUri() - { - return $this->thumbnailUri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageRbmCarouselCard.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageRbmCarouselCard.php deleted file mode 100644 index 4565e233..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageRbmCarouselCard.php +++ /dev/null @@ -1,47 +0,0 @@ -cardContents = $cardContents; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageRbmCardContent - */ - public function getCardContents() - { - return $this->cardContents; - } - public function setCardWidth($cardWidth) - { - $this->cardWidth = $cardWidth; - } - public function getCardWidth() - { - return $this->cardWidth; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageRbmStandaloneCard.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageRbmStandaloneCard.php deleted file mode 100644 index bbfefe7b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageRbmStandaloneCard.php +++ /dev/null @@ -1,55 +0,0 @@ -cardContent = $cardContent; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageRbmCardContent - */ - public function getCardContent() - { - return $this->cardContent; - } - public function setCardOrientation($cardOrientation) - { - $this->cardOrientation = $cardOrientation; - } - public function getCardOrientation() - { - return $this->cardOrientation; - } - public function setThumbnailImageAlignment($thumbnailImageAlignment) - { - $this->thumbnailImageAlignment = $thumbnailImageAlignment; - } - public function getThumbnailImageAlignment() - { - return $this->thumbnailImageAlignment; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedAction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedAction.php deleted file mode 100644 index cb86ec67..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedAction.php +++ /dev/null @@ -1,87 +0,0 @@ -dial = $dial; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedActionRbmSuggestedActionDial - */ - public function getDial() - { - return $this->dial; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedActionRbmSuggestedActionOpenUri - */ - public function setOpenUrl(Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedActionRbmSuggestedActionOpenUri $openUrl) - { - $this->openUrl = $openUrl; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedActionRbmSuggestedActionOpenUri - */ - public function getOpenUrl() - { - return $this->openUrl; - } - public function setPostbackData($postbackData) - { - $this->postbackData = $postbackData; - } - public function getPostbackData() - { - return $this->postbackData; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedActionRbmSuggestedActionShareLocation - */ - public function setShareLocation(Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedActionRbmSuggestedActionShareLocation $shareLocation) - { - $this->shareLocation = $shareLocation; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedActionRbmSuggestedActionShareLocation - */ - public function getShareLocation() - { - return $this->shareLocation; - } - public function setText($text) - { - $this->text = $text; - } - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedActionRbmSuggestedActionDial.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedActionRbmSuggestedActionDial.php deleted file mode 100644 index 1e5d6878..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedActionRbmSuggestedActionDial.php +++ /dev/null @@ -1,30 +0,0 @@ -phoneNumber = $phoneNumber; - } - public function getPhoneNumber() - { - return $this->phoneNumber; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedActionRbmSuggestedActionOpenUri.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedActionRbmSuggestedActionOpenUri.php deleted file mode 100644 index a6b3ec8a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedActionRbmSuggestedActionOpenUri.php +++ /dev/null @@ -1,30 +0,0 @@ -uri = $uri; - } - public function getUri() - { - return $this->uri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedActionRbmSuggestedActionShareLocation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedActionRbmSuggestedActionShareLocation.php deleted file mode 100644 index 50f3fd24..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedActionRbmSuggestedActionShareLocation.php +++ /dev/null @@ -1,20 +0,0 @@ -postbackData = $postbackData; - } - public function getPostbackData() - { - return $this->postbackData; - } - public function setText($text) - { - $this->text = $text; - } - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestion.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestion.php deleted file mode 100644 index 22cf0431..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestion.php +++ /dev/null @@ -1,53 +0,0 @@ -action = $action; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedAction - */ - public function getAction() - { - return $this->action; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedReply - */ - public function setReply(Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedReply $reply) - { - $this->reply = $reply; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedReply - */ - public function getReply() - { - return $this->reply; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageRbmText.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageRbmText.php deleted file mode 100644 index 603737a6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageRbmText.php +++ /dev/null @@ -1,47 +0,0 @@ -rbmSuggestion = $rbmSuggestion; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestion - */ - public function getRbmSuggestion() - { - return $this->rbmSuggestion; - } - public function setText($text) - { - $this->text = $text; - } - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageSelectItemInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageSelectItemInfo.php deleted file mode 100644 index 95376472..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageSelectItemInfo.php +++ /dev/null @@ -1,40 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setSynonyms($synonyms) - { - $this->synonyms = $synonyms; - } - public function getSynonyms() - { - return $this->synonyms; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageSimpleResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageSimpleResponse.php deleted file mode 100644 index bcd5b604..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageSimpleResponse.php +++ /dev/null @@ -1,48 +0,0 @@ -displayText = $displayText; - } - public function getDisplayText() - { - return $this->displayText; - } - public function setSsml($ssml) - { - $this->ssml = $ssml; - } - public function getSsml() - { - return $this->ssml; - } - public function setTextToSpeech($textToSpeech) - { - $this->textToSpeech = $textToSpeech; - } - public function getTextToSpeech() - { - return $this->textToSpeech; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageSimpleResponses.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageSimpleResponses.php deleted file mode 100644 index 6e00e9bf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageSimpleResponses.php +++ /dev/null @@ -1,38 +0,0 @@ -simpleResponses = $simpleResponses; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageSimpleResponse - */ - public function getSimpleResponses() - { - return $this->simpleResponses; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageSuggestion.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageSuggestion.php deleted file mode 100644 index 5d82ce1a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageSuggestion.php +++ /dev/null @@ -1,30 +0,0 @@ -title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageSuggestions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageSuggestions.php deleted file mode 100644 index bcc6c46e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageSuggestions.php +++ /dev/null @@ -1,38 +0,0 @@ -suggestions = $suggestions; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageSuggestion - */ - public function getSuggestions() - { - return $this->suggestions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageTableCard.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageTableCard.php deleted file mode 100644 index 1045047d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageTableCard.php +++ /dev/null @@ -1,104 +0,0 @@ -buttons = $buttons; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageBasicCardButton - */ - public function getButtons() - { - return $this->buttons; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageColumnProperties - */ - public function setColumnProperties($columnProperties) - { - $this->columnProperties = $columnProperties; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageColumnProperties - */ - public function getColumnProperties() - { - return $this->columnProperties; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageImage - */ - public function setImage(Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageImage $image) - { - $this->image = $image; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageImage - */ - public function getImage() - { - return $this->image; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageTableCardRow - */ - public function setRows($rows) - { - $this->rows = $rows; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageTableCardRow - */ - public function getRows() - { - return $this->rows; - } - public function setSubtitle($subtitle) - { - $this->subtitle = $subtitle; - } - public function getSubtitle() - { - return $this->subtitle; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageTableCardCell.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageTableCardCell.php deleted file mode 100644 index 5c5b3978..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageTableCardCell.php +++ /dev/null @@ -1,30 +0,0 @@ -text = $text; - } - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageTableCardRow.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageTableCardRow.php deleted file mode 100644 index 99f409cd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageTableCardRow.php +++ /dev/null @@ -1,47 +0,0 @@ -cells = $cells; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessageTableCardCell - */ - public function getCells() - { - return $this->cells; - } - public function setDividerAfter($dividerAfter) - { - $this->dividerAfter = $dividerAfter; - } - public function getDividerAfter() - { - return $this->dividerAfter; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageTelephonyPlayAudio.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageTelephonyPlayAudio.php deleted file mode 100644 index f8229259..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageTelephonyPlayAudio.php +++ /dev/null @@ -1,30 +0,0 @@ -audioUri = $audioUri; - } - public function getAudioUri() - { - return $this->audioUri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageTelephonySynthesizeSpeech.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageTelephonySynthesizeSpeech.php deleted file mode 100644 index 56227fd0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageTelephonySynthesizeSpeech.php +++ /dev/null @@ -1,39 +0,0 @@ -ssml = $ssml; - } - public function getSsml() - { - return $this->ssml; - } - public function setText($text) - { - $this->text = $text; - } - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageTelephonyTransferCall.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageTelephonyTransferCall.php deleted file mode 100644 index ec5fcc27..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageTelephonyTransferCall.php +++ /dev/null @@ -1,30 +0,0 @@ -phoneNumber = $phoneNumber; - } - public function getPhoneNumber() - { - return $this->phoneNumber; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageText.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageText.php deleted file mode 100644 index 51d9084c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentMessageText.php +++ /dev/null @@ -1,31 +0,0 @@ -text = $text; - } - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentParameter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentParameter.php deleted file mode 100644 index bc376a9b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentParameter.php +++ /dev/null @@ -1,94 +0,0 @@ -defaultValue = $defaultValue; - } - public function getDefaultValue() - { - return $this->defaultValue; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setEntityTypeDisplayName($entityTypeDisplayName) - { - $this->entityTypeDisplayName = $entityTypeDisplayName; - } - public function getEntityTypeDisplayName() - { - return $this->entityTypeDisplayName; - } - public function setIsList($isList) - { - $this->isList = $isList; - } - public function getIsList() - { - return $this->isList; - } - public function setMandatory($mandatory) - { - $this->mandatory = $mandatory; - } - public function getMandatory() - { - return $this->mandatory; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPrompts($prompts) - { - $this->prompts = $prompts; - } - public function getPrompts() - { - return $this->prompts; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentTrainingPhrase.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentTrainingPhrase.php deleted file mode 100644 index 3fb4d5b3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentTrainingPhrase.php +++ /dev/null @@ -1,65 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentTrainingPhrasePart - */ - public function setParts($parts) - { - $this->parts = $parts; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentTrainingPhrasePart - */ - public function getParts() - { - return $this->parts; - } - public function setTimesAddedCount($timesAddedCount) - { - $this->timesAddedCount = $timesAddedCount; - } - public function getTimesAddedCount() - { - return $this->timesAddedCount; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentTrainingPhrasePart.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentTrainingPhrasePart.php deleted file mode 100644 index 5b333d80..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1IntentTrainingPhrasePart.php +++ /dev/null @@ -1,57 +0,0 @@ -alias = $alias; - } - public function getAlias() - { - return $this->alias; - } - public function setEntityType($entityType) - { - $this->entityType = $entityType; - } - public function getEntityType() - { - return $this->entityType; - } - public function setText($text) - { - $this->text = $text; - } - public function getText() - { - return $this->text; - } - public function setUserDefined($userDefined) - { - $this->userDefined = $userDefined; - } - public function getUserDefined() - { - return $this->userDefined; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1KnowledgeAnswers.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1KnowledgeAnswers.php deleted file mode 100644 index 555857b4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1KnowledgeAnswers.php +++ /dev/null @@ -1,38 +0,0 @@ -answers = $answers; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1KnowledgeAnswersAnswer - */ - public function getAnswers() - { - return $this->answers; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1KnowledgeAnswersAnswer.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1KnowledgeAnswersAnswer.php deleted file mode 100644 index 51b7f853..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1KnowledgeAnswersAnswer.php +++ /dev/null @@ -1,66 +0,0 @@ -answer = $answer; - } - public function getAnswer() - { - return $this->answer; - } - public function setFaqQuestion($faqQuestion) - { - $this->faqQuestion = $faqQuestion; - } - public function getFaqQuestion() - { - return $this->faqQuestion; - } - public function setMatchConfidence($matchConfidence) - { - $this->matchConfidence = $matchConfidence; - } - public function getMatchConfidence() - { - return $this->matchConfidence; - } - public function setMatchConfidenceLevel($matchConfidenceLevel) - { - $this->matchConfidenceLevel = $matchConfidenceLevel; - } - public function getMatchConfidenceLevel() - { - return $this->matchConfidenceLevel; - } - public function setSource($source) - { - $this->source = $source; - } - public function getSource() - { - return $this->source; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1KnowledgeOperationMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1KnowledgeOperationMetadata.php deleted file mode 100644 index 1590599d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1KnowledgeOperationMetadata.php +++ /dev/null @@ -1,30 +0,0 @@ -state = $state; - } - public function getState() - { - return $this->state; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1LabelConversationResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1LabelConversationResponse.php deleted file mode 100644 index f1ae7053..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1LabelConversationResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -annotatedConversationDataset = $annotatedConversationDataset; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1AnnotatedConversationDataset - */ - public function getAnnotatedConversationDataset() - { - return $this->annotatedConversationDataset; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1OriginalDetectIntentRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1OriginalDetectIntentRequest.php deleted file mode 100644 index 6b553565..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1OriginalDetectIntentRequest.php +++ /dev/null @@ -1,48 +0,0 @@ -payload = $payload; - } - public function getPayload() - { - return $this->payload; - } - public function setSource($source) - { - $this->source = $source; - } - public function getSource() - { - return $this->source; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1QueryResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1QueryResult.php deleted file mode 100644 index 30056ac9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1QueryResult.php +++ /dev/null @@ -1,201 +0,0 @@ -action = $action; - } - public function getAction() - { - return $this->action; - } - public function setAllRequiredParamsPresent($allRequiredParamsPresent) - { - $this->allRequiredParamsPresent = $allRequiredParamsPresent; - } - public function getAllRequiredParamsPresent() - { - return $this->allRequiredParamsPresent; - } - public function setDiagnosticInfo($diagnosticInfo) - { - $this->diagnosticInfo = $diagnosticInfo; - } - public function getDiagnosticInfo() - { - return $this->diagnosticInfo; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessage - */ - public function setFulfillmentMessages($fulfillmentMessages) - { - $this->fulfillmentMessages = $fulfillmentMessages; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessage - */ - public function getFulfillmentMessages() - { - return $this->fulfillmentMessages; - } - public function setFulfillmentText($fulfillmentText) - { - $this->fulfillmentText = $fulfillmentText; - } - public function getFulfillmentText() - { - return $this->fulfillmentText; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1Intent - */ - public function setIntent(Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1Intent $intent) - { - $this->intent = $intent; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1Intent - */ - public function getIntent() - { - return $this->intent; - } - public function setIntentDetectionConfidence($intentDetectionConfidence) - { - $this->intentDetectionConfidence = $intentDetectionConfidence; - } - public function getIntentDetectionConfidence() - { - return $this->intentDetectionConfidence; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1KnowledgeAnswers - */ - public function setKnowledgeAnswers(Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1KnowledgeAnswers $knowledgeAnswers) - { - $this->knowledgeAnswers = $knowledgeAnswers; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1KnowledgeAnswers - */ - public function getKnowledgeAnswers() - { - return $this->knowledgeAnswers; - } - public function setLanguageCode($languageCode) - { - $this->languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1Context - */ - public function setOutputContexts($outputContexts) - { - $this->outputContexts = $outputContexts; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1Context - */ - public function getOutputContexts() - { - return $this->outputContexts; - } - public function setParameters($parameters) - { - $this->parameters = $parameters; - } - public function getParameters() - { - return $this->parameters; - } - public function setQueryText($queryText) - { - $this->queryText = $queryText; - } - public function getQueryText() - { - return $this->queryText; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1SentimentAnalysisResult - */ - public function setSentimentAnalysisResult(Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1SentimentAnalysisResult $sentimentAnalysisResult) - { - $this->sentimentAnalysisResult = $sentimentAnalysisResult; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1SentimentAnalysisResult - */ - public function getSentimentAnalysisResult() - { - return $this->sentimentAnalysisResult; - } - public function setSpeechRecognitionConfidence($speechRecognitionConfidence) - { - $this->speechRecognitionConfidence = $speechRecognitionConfidence; - } - public function getSpeechRecognitionConfidence() - { - return $this->speechRecognitionConfidence; - } - public function setWebhookPayload($webhookPayload) - { - $this->webhookPayload = $webhookPayload; - } - public function getWebhookPayload() - { - return $this->webhookPayload; - } - public function setWebhookSource($webhookSource) - { - $this->webhookSource = $webhookSource; - } - public function getWebhookSource() - { - return $this->webhookSource; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1Sentiment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1Sentiment.php deleted file mode 100644 index 5d631baf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1Sentiment.php +++ /dev/null @@ -1,39 +0,0 @@ -magnitude = $magnitude; - } - public function getMagnitude() - { - return $this->magnitude; - } - public function setScore($score) - { - $this->score = $score; - } - public function getScore() - { - return $this->score; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1SentimentAnalysisResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1SentimentAnalysisResult.php deleted file mode 100644 index cc421caf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1SentimentAnalysisResult.php +++ /dev/null @@ -1,37 +0,0 @@ -queryTextSentiment = $queryTextSentiment; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1Sentiment - */ - public function getQueryTextSentiment() - { - return $this->queryTextSentiment; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1SessionEntityType.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1SessionEntityType.php deleted file mode 100644 index 648c6a0c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1SessionEntityType.php +++ /dev/null @@ -1,56 +0,0 @@ -entities = $entities; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1EntityTypeEntity - */ - public function getEntities() - { - return $this->entities; - } - public function setEntityOverrideMode($entityOverrideMode) - { - $this->entityOverrideMode = $entityOverrideMode; - } - public function getEntityOverrideMode() - { - return $this->entityOverrideMode; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1WebhookRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1WebhookRequest.php deleted file mode 100644 index 4582607e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1WebhookRequest.php +++ /dev/null @@ -1,88 +0,0 @@ -alternativeQueryResults = $alternativeQueryResults; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1QueryResult - */ - public function getAlternativeQueryResults() - { - return $this->alternativeQueryResults; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1OriginalDetectIntentRequest - */ - public function setOriginalDetectIntentRequest(Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1OriginalDetectIntentRequest $originalDetectIntentRequest) - { - $this->originalDetectIntentRequest = $originalDetectIntentRequest; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1OriginalDetectIntentRequest - */ - public function getOriginalDetectIntentRequest() - { - return $this->originalDetectIntentRequest; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1QueryResult - */ - public function setQueryResult(Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1QueryResult $queryResult) - { - $this->queryResult = $queryResult; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1QueryResult - */ - public function getQueryResult() - { - return $this->queryResult; - } - public function setResponseId($responseId) - { - $this->responseId = $responseId; - } - public function getResponseId() - { - return $this->responseId; - } - public function setSession($session) - { - $this->session = $session; - } - public function getSession() - { - return $this->session; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1WebhookResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1WebhookResponse.php deleted file mode 100644 index 0259b25d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleCloudDialogflowV2beta1WebhookResponse.php +++ /dev/null @@ -1,122 +0,0 @@ -endInteraction = $endInteraction; - } - public function getEndInteraction() - { - return $this->endInteraction; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1EventInput - */ - public function setFollowupEventInput(Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1EventInput $followupEventInput) - { - $this->followupEventInput = $followupEventInput; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1EventInput - */ - public function getFollowupEventInput() - { - return $this->followupEventInput; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessage - */ - public function setFulfillmentMessages($fulfillmentMessages) - { - $this->fulfillmentMessages = $fulfillmentMessages; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1IntentMessage - */ - public function getFulfillmentMessages() - { - return $this->fulfillmentMessages; - } - public function setFulfillmentText($fulfillmentText) - { - $this->fulfillmentText = $fulfillmentText; - } - public function getFulfillmentText() - { - return $this->fulfillmentText; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1Context - */ - public function setOutputContexts($outputContexts) - { - $this->outputContexts = $outputContexts; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1Context - */ - public function getOutputContexts() - { - return $this->outputContexts; - } - public function setPayload($payload) - { - $this->payload = $payload; - } - public function getPayload() - { - return $this->payload; - } - /** - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1SessionEntityType - */ - public function setSessionEntityTypes($sessionEntityTypes) - { - $this->sessionEntityTypes = $sessionEntityTypes; - } - /** - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1SessionEntityType - */ - public function getSessionEntityTypes() - { - return $this->sessionEntityTypes; - } - public function setSource($source) - { - $this->source = $source; - } - public function getSource() - { - return $this->source; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleLongrunningListOperationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleLongrunningListOperationsResponse.php deleted file mode 100644 index bc3aef8f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleLongrunningListOperationsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Dialogflow_GoogleLongrunningOperation - */ - public function setOperations($operations) - { - $this->operations = $operations; - } - /** - * @return Google_Service_Dialogflow_GoogleLongrunningOperation - */ - public function getOperations() - { - return $this->operations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleLongrunningOperation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleLongrunningOperation.php deleted file mode 100644 index 3abcc091..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleLongrunningOperation.php +++ /dev/null @@ -1,73 +0,0 @@ -done = $done; - } - public function getDone() - { - return $this->done; - } - /** - * @param Google_Service_Dialogflow_GoogleRpcStatus - */ - public function setError(Google_Service_Dialogflow_GoogleRpcStatus $error) - { - $this->error = $error; - } - /** - * @return Google_Service_Dialogflow_GoogleRpcStatus - */ - public function getError() - { - return $this->error; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleProtobufEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleProtobufEmpty.php deleted file mode 100644 index 10c3e13a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleProtobufEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleTypeLatLng.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleTypeLatLng.php deleted file mode 100644 index 941c1f54..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/GoogleTypeLatLng.php +++ /dev/null @@ -1,39 +0,0 @@ -latitude = $latitude; - } - public function getLatitude() - { - return $this->latitude; - } - public function setLongitude($longitude) - { - $this->longitude = $longitude; - } - public function getLongitude() - { - return $this->longitude; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/Resource/Projects.php deleted file mode 100644 index 14e772f5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/Resource/Projects.php +++ /dev/null @@ -1,74 +0,0 @@ - - * $dialogflowService = new Google_Service_Dialogflow(...); - * $projects = $dialogflowService->projects; - * - */ -class Google_Service_Dialogflow_Resource_Projects extends Google_Service_Resource -{ - /** - * Creates/updates the specified agent. (projects.agent) - * - * @param string $parent Required. The project of this agent. Format: - * `projects/`. - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2Agent $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Optional. The mask to control which fields get - * updated. - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2Agent - */ - public function agent($parent, Google_Service_Dialogflow_GoogleCloudDialogflowV2Agent $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('agent', array($params), "Google_Service_Dialogflow_GoogleCloudDialogflowV2Agent"); - } - /** - * Deletes the specified agent. (projects.deleteAgent) - * - * @param string $parent Required. The project that the agent to delete is - * associated with. Format: `projects/`. - * @param array $optParams Optional parameters. - * @return Google_Service_Dialogflow_GoogleProtobufEmpty - */ - public function deleteAgent($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('deleteAgent', array($params), "Google_Service_Dialogflow_GoogleProtobufEmpty"); - } - /** - * Retrieves the specified agent. (projects.getAgent) - * - * @param string $parent Required. The project that the agent to fetch is - * associated with. Format: `projects/`. - * @param array $optParams Optional parameters. - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2Agent - */ - public function getAgent($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('getAgent', array($params), "Google_Service_Dialogflow_GoogleCloudDialogflowV2Agent"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/Resource/ProjectsAgent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/Resource/ProjectsAgent.php deleted file mode 100644 index 347bed38..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/Resource/ProjectsAgent.php +++ /dev/null @@ -1,182 +0,0 @@ - - * $dialogflowService = new Google_Service_Dialogflow(...); - * $agent = $dialogflowService->agent; - * - */ -class Google_Service_Dialogflow_Resource_ProjectsAgent extends Google_Service_Resource -{ - /** - * Exports the specified agent to a ZIP file. - * - * Operation (agent.export) - * - * @param string $parent Required. The project that the agent to export is - * associated with. Format: `projects/`. - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2ExportAgentRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dialogflow_GoogleLongrunningOperation - */ - public function export($parent, Google_Service_Dialogflow_GoogleCloudDialogflowV2ExportAgentRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('export', array($params), "Google_Service_Dialogflow_GoogleLongrunningOperation"); - } - /** - * Retrieves the fulfillment. (agent.getFulfillment) - * - * @param string $name Required. The name of the fulfillment. Format: - * `projects//agent/fulfillment`. - * @param array $optParams Optional parameters. - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2Fulfillment - */ - public function getFulfillment($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('getFulfillment', array($params), "Google_Service_Dialogflow_GoogleCloudDialogflowV2Fulfillment"); - } - /** - * Gets agent validation result. Agent validation is performed during training - * time and is updated automatically when training is completed. - * (agent.getValidationResult) - * - * @param string $parent Required. The project that the agent is associated - * with. Format: `projects/`. - * @param array $optParams Optional parameters. - * - * @opt_param string languageCode Optional. The language for which you want a - * validation result. If not specified, the agent's default language is used. - * [Many languages](https://cloud.google.com/dialogflow/docs/reference/language) - * are supported. Note: languages must be enabled in the agent before they can - * be used. - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2ValidationResult - */ - public function getValidationResult($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('getValidationResult', array($params), "Google_Service_Dialogflow_GoogleCloudDialogflowV2ValidationResult"); - } - /** - * Imports the specified agent from a ZIP file. - * - * Uploads new intents and entity types without deleting the existing ones. - * Intents and entity types with the same name are replaced with the new - * versions from ImportAgentRequest. - * - * Operation (agent.import) - * - * @param string $parent Required. The project that the agent to import is - * associated with. Format: `projects/`. - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2ImportAgentRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dialogflow_GoogleLongrunningOperation - */ - public function import($parent, Google_Service_Dialogflow_GoogleCloudDialogflowV2ImportAgentRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('import', array($params), "Google_Service_Dialogflow_GoogleLongrunningOperation"); - } - /** - * Restores the specified agent from a ZIP file. - * - * Replaces the current agent version with a new one. All the intents and entity - * types in the older version are deleted. - * - * Operation (agent.restore) - * - * @param string $parent Required. The project that the agent to restore is - * associated with. Format: `projects/`. - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2RestoreAgentRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dialogflow_GoogleLongrunningOperation - */ - public function restore($parent, Google_Service_Dialogflow_GoogleCloudDialogflowV2RestoreAgentRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('restore', array($params), "Google_Service_Dialogflow_GoogleLongrunningOperation"); - } - /** - * Returns the list of agents. - * - * Since there is at most one conversational agent per project, this method is - * useful primarily for listing all agents across projects the caller has access - * to. One can achieve that with a wildcard project collection id "-". Refer to - * [List Sub-Collections](https://cloud.google.com/apis/design/design_patterns - * #list_sub-collections). (agent.search) - * - * @param string $parent Required. The project to list agents from. Format: - * `projects/`. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The next_page_token value returned from a - * previous list request. - * @opt_param int pageSize Optional. The maximum number of items to return in a - * single page. By default 100 and at most 1000. - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2SearchAgentsResponse - */ - public function search($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('search', array($params), "Google_Service_Dialogflow_GoogleCloudDialogflowV2SearchAgentsResponse"); - } - /** - * Trains the specified agent. - * - * Operation (agent.train) - * - * @param string $parent Required. The project that the agent to train is - * associated with. Format: `projects/`. - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2TrainAgentRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dialogflow_GoogleLongrunningOperation - */ - public function train($parent, Google_Service_Dialogflow_GoogleCloudDialogflowV2TrainAgentRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('train', array($params), "Google_Service_Dialogflow_GoogleLongrunningOperation"); - } - /** - * Updates the fulfillment. (agent.updateFulfillment) - * - * @param string $name Required. The unique identifier of the fulfillment. - * Format: `projects//agent/fulfillment`. - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2Fulfillment $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Required. The mask to control which fields get - * updated. If the mask is not present, all fields will be updated. - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2Fulfillment - */ - public function updateFulfillment($name, Google_Service_Dialogflow_GoogleCloudDialogflowV2Fulfillment $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updateFulfillment', array($params), "Google_Service_Dialogflow_GoogleCloudDialogflowV2Fulfillment"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/Resource/ProjectsAgentEntityTypes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/Resource/ProjectsAgentEntityTypes.php deleted file mode 100644 index 063ea542..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/Resource/ProjectsAgentEntityTypes.php +++ /dev/null @@ -1,168 +0,0 @@ - - * $dialogflowService = new Google_Service_Dialogflow(...); - * $entityTypes = $dialogflowService->entityTypes; - * - */ -class Google_Service_Dialogflow_Resource_ProjectsAgentEntityTypes extends Google_Service_Resource -{ - /** - * Deletes entity types in the specified agent. - * - * Operation (entityTypes.batchDelete) - * - * @param string $parent Required. The name of the agent to delete all entities - * types for. Format: `projects//agent`. - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2BatchDeleteEntityTypesRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dialogflow_GoogleLongrunningOperation - */ - public function batchDelete($parent, Google_Service_Dialogflow_GoogleCloudDialogflowV2BatchDeleteEntityTypesRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('batchDelete', array($params), "Google_Service_Dialogflow_GoogleLongrunningOperation"); - } - /** - * Updates/Creates multiple entity types in the specified agent. - * - * Operation (entityTypes.batchUpdate) - * - * @param string $parent Required. The name of the agent to update or create - * entity types in. Format: `projects//agent`. - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2BatchUpdateEntityTypesRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dialogflow_GoogleLongrunningOperation - */ - public function batchUpdate($parent, Google_Service_Dialogflow_GoogleCloudDialogflowV2BatchUpdateEntityTypesRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('batchUpdate', array($params), "Google_Service_Dialogflow_GoogleLongrunningOperation"); - } - /** - * Creates an entity type in the specified agent. (entityTypes.create) - * - * @param string $parent Required. The agent to create a entity type for. - * Format: `projects//agent`. - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2EntityType $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string languageCode Optional. The language of entity synonyms - * defined in `entity_type`. If not specified, the agent's default language is - * used. [Many - * languages](https://cloud.google.com/dialogflow/docs/reference/language) are - * supported. Note: languages must be enabled in the agent before they can be - * used. - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2EntityType - */ - public function create($parent, Google_Service_Dialogflow_GoogleCloudDialogflowV2EntityType $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Dialogflow_GoogleCloudDialogflowV2EntityType"); - } - /** - * Deletes the specified entity type. (entityTypes.delete) - * - * @param string $name Required. The name of the entity type to delete. Format: - * `projects//agent/entityTypes/`. - * @param array $optParams Optional parameters. - * @return Google_Service_Dialogflow_GoogleProtobufEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Dialogflow_GoogleProtobufEmpty"); - } - /** - * Retrieves the specified entity type. (entityTypes.get) - * - * @param string $name Required. The name of the entity type. Format: - * `projects//agent/entityTypes/`. - * @param array $optParams Optional parameters. - * - * @opt_param string languageCode Optional. The language to retrieve entity - * synonyms for. If not specified, the agent's default language is used. [Many - * languages](https://cloud.google.com/dialogflow/docs/reference/language) are - * supported. Note: languages must be enabled in the agent before they can be - * used. - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2EntityType - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dialogflow_GoogleCloudDialogflowV2EntityType"); - } - /** - * Returns the list of all entity types in the specified agent. - * (entityTypes.listProjectsAgentEntityTypes) - * - * @param string $parent Required. The agent to list all entity types from. - * Format: `projects//agent`. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Optional. The next_page_token value returned from - * a previous list request. - * @opt_param int pageSize Optional. The maximum number of items to return in a - * single page. By default 100 and at most 1000. - * @opt_param string languageCode Optional. The language to list entity synonyms - * for. If not specified, the agent's default language is used. [Many - * languages](https://cloud.google.com/dialogflow/docs/reference/language) are - * supported. Note: languages must be enabled in the agent before they can be - * used. - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2ListEntityTypesResponse - */ - public function listProjectsAgentEntityTypes($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dialogflow_GoogleCloudDialogflowV2ListEntityTypesResponse"); - } - /** - * Updates the specified entity type. (entityTypes.patch) - * - * @param string $name The unique identifier of the entity type. Required for - * EntityTypes.UpdateEntityType and EntityTypes.BatchUpdateEntityTypes methods. - * Format: `projects//agent/entityTypes/`. - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2EntityType $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string languageCode Optional. The language of entity synonyms - * defined in `entity_type`. If not specified, the agent's default language is - * used. [Many - * languages](https://cloud.google.com/dialogflow/docs/reference/language) are - * supported. Note: languages must be enabled in the agent before they can be - * used. - * @opt_param string updateMask Optional. The mask to control which fields get - * updated. - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2EntityType - */ - public function patch($name, Google_Service_Dialogflow_GoogleCloudDialogflowV2EntityType $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Dialogflow_GoogleCloudDialogflowV2EntityType"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/Resource/ProjectsAgentEntityTypesEntities.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/Resource/ProjectsAgentEntityTypesEntities.php deleted file mode 100644 index eb396f30..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/Resource/ProjectsAgentEntityTypesEntities.php +++ /dev/null @@ -1,81 +0,0 @@ - - * $dialogflowService = new Google_Service_Dialogflow(...); - * $entities = $dialogflowService->entities; - * - */ -class Google_Service_Dialogflow_Resource_ProjectsAgentEntityTypesEntities extends Google_Service_Resource -{ - /** - * Creates multiple new entities in the specified entity type. - * - * Operation (entities.batchCreate) - * - * @param string $parent Required. The name of the entity type to create - * entities in. Format: `projects//agent/entityTypes/`. - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2BatchCreateEntitiesRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dialogflow_GoogleLongrunningOperation - */ - public function batchCreate($parent, Google_Service_Dialogflow_GoogleCloudDialogflowV2BatchCreateEntitiesRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('batchCreate', array($params), "Google_Service_Dialogflow_GoogleLongrunningOperation"); - } - /** - * Deletes entities in the specified entity type. - * - * Operation (entities.batchDelete) - * - * @param string $parent Required. The name of the entity type to delete entries - * for. Format: `projects//agent/entityTypes/`. - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2BatchDeleteEntitiesRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dialogflow_GoogleLongrunningOperation - */ - public function batchDelete($parent, Google_Service_Dialogflow_GoogleCloudDialogflowV2BatchDeleteEntitiesRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('batchDelete', array($params), "Google_Service_Dialogflow_GoogleLongrunningOperation"); - } - /** - * Updates or creates multiple entities in the specified entity type. This - * method does not affect entities in the entity type that aren't explicitly - * specified in the request. - * - * Operation (entities.batchUpdate) - * - * @param string $parent Required. The name of the entity type to update or - * create entities in. Format: `projects//agent/entityTypes/`. - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2BatchUpdateEntitiesRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dialogflow_GoogleLongrunningOperation - */ - public function batchUpdate($parent, Google_Service_Dialogflow_GoogleCloudDialogflowV2BatchUpdateEntitiesRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('batchUpdate', array($params), "Google_Service_Dialogflow_GoogleLongrunningOperation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/Resource/ProjectsAgentEnvironments.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/Resource/ProjectsAgentEnvironments.php deleted file mode 100644 index 544881bd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/Resource/ProjectsAgentEnvironments.php +++ /dev/null @@ -1,138 +0,0 @@ - - * $dialogflowService = new Google_Service_Dialogflow(...); - * $environments = $dialogflowService->environments; - * - */ -class Google_Service_Dialogflow_Resource_ProjectsAgentEnvironments extends Google_Service_Resource -{ - /** - * Creates an agent environment. (environments.create) - * - * @param string $parent Required. The agent to create a environment for. - * Format: `projects//agent`. - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2Environment $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string environmentId Required. The unique id of the new - * environment. - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2Environment - */ - public function create($parent, Google_Service_Dialogflow_GoogleCloudDialogflowV2Environment $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Dialogflow_GoogleCloudDialogflowV2Environment"); - } - /** - * Deletes the specified agent environment. (environments.delete) - * - * @param string $name Required. The name of the environment to delete. Format: - * `projects//agent/environments/`. - * @param array $optParams Optional parameters. - * @return Google_Service_Dialogflow_GoogleProtobufEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Dialogflow_GoogleProtobufEmpty"); - } - /** - * Retrieves the specified agent environment. (environments.get) - * - * @param string $name Required. The name of the environment. Format: - * `projects//agent/environments/`. - * @param array $optParams Optional parameters. - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2Environment - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dialogflow_GoogleCloudDialogflowV2Environment"); - } - /** - * Gets the history of the specified environment. (environments.getHistory) - * - * @param string $parent Required. The name of the environment to retrieve - * history for. Format: `projects//agent/environments/`. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Optional. The next_page_token value returned from - * a previous list request. - * @opt_param int pageSize Optional. The maximum number of items to return in a - * single page. By default 100 and at most 1000. - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2EnvironmentHistory - */ - public function getHistory($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('getHistory', array($params), "Google_Service_Dialogflow_GoogleCloudDialogflowV2EnvironmentHistory"); - } - /** - * Returns the list of all environments of the specified agent. - * (environments.listProjectsAgentEnvironments) - * - * @param string $parent Required. The agent to list all environments from. - * Format: `projects//agent`. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Optional. The next_page_token value returned from - * a previous list request. - * @opt_param int pageSize Optional. The maximum number of items to return in a - * single page. By default 100 and at most 1000. - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2ListEnvironmentsResponse - */ - public function listProjectsAgentEnvironments($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dialogflow_GoogleCloudDialogflowV2ListEnvironmentsResponse"); - } - /** - * Updates the specified agent environment. - * - * This method allows you to deploy new agent versions into the environment. - * When a environment is pointed to a new agent version by setting - * `environment.agent_version`, the environment is temporarily set to the - * `LOADING` state. During that time, the environment keeps on serving the - * previous version of the agent. After the new agent version is done loading, - * the environment is set back to the `RUNNING` state. (environments.patch) - * - * @param string $name Output only. The unique identifier of this agent - * environment. Format: `projects//agent/environments/`. - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2Environment $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Optional. The mask to control which fields get - * updated. - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2Environment - */ - public function patch($name, Google_Service_Dialogflow_GoogleCloudDialogflowV2Environment $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Dialogflow_GoogleCloudDialogflowV2Environment"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/Resource/ProjectsAgentIntents.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/Resource/ProjectsAgentIntents.php deleted file mode 100644 index 1350872f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/Resource/ProjectsAgentIntents.php +++ /dev/null @@ -1,180 +0,0 @@ - - * $dialogflowService = new Google_Service_Dialogflow(...); - * $intents = $dialogflowService->intents; - * - */ -class Google_Service_Dialogflow_Resource_ProjectsAgentIntents extends Google_Service_Resource -{ - /** - * Deletes intents in the specified agent. - * - * Operation (intents.batchDelete) - * - * @param string $parent Required. The name of the agent to delete all entities - * types for. Format: `projects//agent`. - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2BatchDeleteIntentsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dialogflow_GoogleLongrunningOperation - */ - public function batchDelete($parent, Google_Service_Dialogflow_GoogleCloudDialogflowV2BatchDeleteIntentsRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('batchDelete', array($params), "Google_Service_Dialogflow_GoogleLongrunningOperation"); - } - /** - * Updates/Creates multiple intents in the specified agent. - * - * Operation (intents.batchUpdate) - * - * @param string $parent Required. The name of the agent to update or create - * intents in. Format: `projects//agent`. - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2BatchUpdateIntentsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dialogflow_GoogleLongrunningOperation - */ - public function batchUpdate($parent, Google_Service_Dialogflow_GoogleCloudDialogflowV2BatchUpdateIntentsRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('batchUpdate', array($params), "Google_Service_Dialogflow_GoogleLongrunningOperation"); - } - /** - * Creates an intent in the specified agent. (intents.create) - * - * @param string $parent Required. The agent to create a intent for. Format: - * `projects//agent`. - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2Intent $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string intentView Optional. The resource view to apply to the - * returned intent. - * @opt_param string languageCode Optional. The language of training phrases, - * parameters and rich messages defined in `intent`. If not specified, the - * agent's default language is used. [Many - * languages](https://cloud.google.com/dialogflow/docs/reference/language) are - * supported. Note: languages must be enabled in the agent before they can be - * used. - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2Intent - */ - public function create($parent, Google_Service_Dialogflow_GoogleCloudDialogflowV2Intent $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Dialogflow_GoogleCloudDialogflowV2Intent"); - } - /** - * Deletes the specified intent and its direct or indirect followup intents. - * (intents.delete) - * - * @param string $name Required. The name of the intent to delete. If this - * intent has direct or indirect followup intents, we also delete them. Format: - * `projects//agent/intents/`. - * @param array $optParams Optional parameters. - * @return Google_Service_Dialogflow_GoogleProtobufEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Dialogflow_GoogleProtobufEmpty"); - } - /** - * Retrieves the specified intent. (intents.get) - * - * @param string $name Required. The name of the intent. Format: - * `projects//agent/intents/`. - * @param array $optParams Optional parameters. - * - * @opt_param string intentView Optional. The resource view to apply to the - * returned intent. - * @opt_param string languageCode Optional. The language to retrieve training - * phrases, parameters and rich messages for. If not specified, the agent's - * default language is used. [Many - * languages](https://cloud.google.com/dialogflow/docs/reference/language) are - * supported. Note: languages must be enabled in the agent before they can be - * used. - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2Intent - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dialogflow_GoogleCloudDialogflowV2Intent"); - } - /** - * Returns the list of all intents in the specified agent. - * (intents.listProjectsAgentIntents) - * - * @param string $parent Required. The agent to list all intents from. Format: - * `projects//agent`. - * @param array $optParams Optional parameters. - * - * @opt_param string languageCode Optional. The language to list training - * phrases, parameters and rich messages for. If not specified, the agent's - * default language is used. [Many - * languages](https://cloud.google.com/dialogflow/docs/reference/language) are - * supported. Note: languages must be enabled in the agent before they can be - * used. - * @opt_param string pageToken Optional. The next_page_token value returned from - * a previous list request. - * @opt_param int pageSize Optional. The maximum number of items to return in a - * single page. By default 100 and at most 1000. - * @opt_param string intentView Optional. The resource view to apply to the - * returned intent. - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2ListIntentsResponse - */ - public function listProjectsAgentIntents($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dialogflow_GoogleCloudDialogflowV2ListIntentsResponse"); - } - /** - * Updates the specified intent. (intents.patch) - * - * @param string $name The unique identifier of this intent. Required for - * Intents.UpdateIntent and Intents.BatchUpdateIntents methods. Format: - * `projects//agent/intents/`. - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2Intent $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string languageCode Optional. The language of training phrases, - * parameters and rich messages defined in `intent`. If not specified, the - * agent's default language is used. [Many - * languages](https://cloud.google.com/dialogflow/docs/reference/language) are - * supported. Note: languages must be enabled in the agent before they can be - * used. - * @opt_param string updateMask Optional. The mask to control which fields get - * updated. - * @opt_param string intentView Optional. The resource view to apply to the - * returned intent. - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2Intent - */ - public function patch($name, Google_Service_Dialogflow_GoogleCloudDialogflowV2Intent $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Dialogflow_GoogleCloudDialogflowV2Intent"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/Resource/ProjectsAgentSessions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/Resource/ProjectsAgentSessions.php deleted file mode 100644 index 07de19e3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/Resource/ProjectsAgentSessions.php +++ /dev/null @@ -1,64 +0,0 @@ - - * $dialogflowService = new Google_Service_Dialogflow(...); - * $sessions = $dialogflowService->sessions; - * - */ -class Google_Service_Dialogflow_Resource_ProjectsAgentSessions extends Google_Service_Resource -{ - /** - * Deletes all active contexts in the specified session. - * (sessions.deleteContexts) - * - * @param string $parent Required. The name of the session to delete all - * contexts from. Format: `projects//agent/sessions/`. - * @param array $optParams Optional parameters. - * @return Google_Service_Dialogflow_GoogleProtobufEmpty - */ - public function deleteContexts($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('deleteContexts', array($params), "Google_Service_Dialogflow_GoogleProtobufEmpty"); - } - /** - * Processes a natural language query and returns structured, actionable data as - * a result. This method is not idempotent, because it may cause contexts and - * session entity types to be updated, which in turn might affect results of - * future queries. (sessions.detectIntent) - * - * @param string $session Required. The name of the session this query is sent - * to. Format: `projects//agent/sessions/`. It's up to the API caller to choose - * an appropriate session ID. It can be a random number or some type of user - * identifier (preferably hashed). The length of the session ID must not exceed - * 36 bytes. - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2DetectIntentRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2DetectIntentResponse - */ - public function detectIntent($session, Google_Service_Dialogflow_GoogleCloudDialogflowV2DetectIntentRequest $postBody, $optParams = array()) - { - $params = array('session' => $session, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('detectIntent', array($params), "Google_Service_Dialogflow_GoogleCloudDialogflowV2DetectIntentResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/Resource/ProjectsAgentSessionsContexts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/Resource/ProjectsAgentSessionsContexts.php deleted file mode 100644 index 96c34856..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/Resource/ProjectsAgentSessionsContexts.php +++ /dev/null @@ -1,120 +0,0 @@ - - * $dialogflowService = new Google_Service_Dialogflow(...); - * $contexts = $dialogflowService->contexts; - * - */ -class Google_Service_Dialogflow_Resource_ProjectsAgentSessionsContexts extends Google_Service_Resource -{ - /** - * Creates a context. - * - * If the specified context already exists, overrides the context. - * (contexts.create) - * - * @param string $parent Required. The session to create a context for. Format: - * `projects//agent/sessions/`. - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2Context $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2Context - */ - public function create($parent, Google_Service_Dialogflow_GoogleCloudDialogflowV2Context $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Dialogflow_GoogleCloudDialogflowV2Context"); - } - /** - * Deletes the specified context. (contexts.delete) - * - * @param string $name Required. The name of the context to delete. Format: - * `projects//agent/sessions//contexts/`. - * @param array $optParams Optional parameters. - * @return Google_Service_Dialogflow_GoogleProtobufEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Dialogflow_GoogleProtobufEmpty"); - } - /** - * Retrieves the specified context. (contexts.get) - * - * @param string $name Required. The name of the context. Format: - * `projects//agent/sessions//contexts/`. - * @param array $optParams Optional parameters. - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2Context - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dialogflow_GoogleCloudDialogflowV2Context"); - } - /** - * Returns the list of all contexts in the specified session. - * (contexts.listProjectsAgentSessionsContexts) - * - * @param string $parent Required. The session to list all contexts from. - * Format: `projects//agent/sessions/`. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Optional. The next_page_token value returned from - * a previous list request. - * @opt_param int pageSize Optional. The maximum number of items to return in a - * single page. By default 100 and at most 1000. - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2ListContextsResponse - */ - public function listProjectsAgentSessionsContexts($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dialogflow_GoogleCloudDialogflowV2ListContextsResponse"); - } - /** - * Updates the specified context. (contexts.patch) - * - * @param string $name Required. The unique identifier of the context. Format: - * `projects//agent/sessions//contexts/`. - * - * The `Context ID` is always converted to lowercase, may only contain - * characters in [a-zA-Z0-9_-%] and may be at most 250 bytes long. - * - * The following context names are reserved for internal use by Dialogflow. You - * should not use these contexts or create contexts with these names: - * - * * `__system_counters__` * `*_id_dialog_context` * `*_dialog_params_size` - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2Context $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Optional. The mask to control which fields get - * updated. - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2Context - */ - public function patch($name, Google_Service_Dialogflow_GoogleCloudDialogflowV2Context $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Dialogflow_GoogleCloudDialogflowV2Context"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/Resource/ProjectsAgentSessionsEntityTypes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/Resource/ProjectsAgentSessionsEntityTypes.php deleted file mode 100644 index c9b6df06..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/Resource/ProjectsAgentSessionsEntityTypes.php +++ /dev/null @@ -1,134 +0,0 @@ - - * $dialogflowService = new Google_Service_Dialogflow(...); - * $entityTypes = $dialogflowService->entityTypes; - * - */ -class Google_Service_Dialogflow_Resource_ProjectsAgentSessionsEntityTypes extends Google_Service_Resource -{ - /** - * Creates a session entity type. - * - * If the specified session entity type already exists, overrides the session - * entity type. - * - * This method doesn't work with Google Assistant integration. Contact - * Dialogflow support if you need to use session entities with Google Assistant - * integration. (entityTypes.create) - * - * @param string $parent Required. The session to create a session entity type - * for. Format: `projects//agent/sessions/`. - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2SessionEntityType $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2SessionEntityType - */ - public function create($parent, Google_Service_Dialogflow_GoogleCloudDialogflowV2SessionEntityType $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Dialogflow_GoogleCloudDialogflowV2SessionEntityType"); - } - /** - * Deletes the specified session entity type. - * - * This method doesn't work with Google Assistant integration. Contact - * Dialogflow support if you need to use session entities with Google Assistant - * integration. (entityTypes.delete) - * - * @param string $name Required. The name of the entity type to delete. Format: - * `projects//agent/sessions//entityTypes/`. - * @param array $optParams Optional parameters. - * @return Google_Service_Dialogflow_GoogleProtobufEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Dialogflow_GoogleProtobufEmpty"); - } - /** - * Retrieves the specified session entity type. - * - * This method doesn't work with Google Assistant integration. Contact - * Dialogflow support if you need to use session entities with Google Assistant - * integration. (entityTypes.get) - * - * @param string $name Required. The name of the session entity type. Format: - * `projects//agent/sessions//entityTypes/`. - * @param array $optParams Optional parameters. - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2SessionEntityType - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dialogflow_GoogleCloudDialogflowV2SessionEntityType"); - } - /** - * Returns the list of all session entity types in the specified session. - * - * This method doesn't work with Google Assistant integration. Contact - * Dialogflow support if you need to use session entities with Google Assistant - * integration. (entityTypes.listProjectsAgentSessionsEntityTypes) - * - * @param string $parent Required. The session to list all session entity types - * from. Format: `projects//agent/sessions/`. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Optional. The next_page_token value returned from - * a previous list request. - * @opt_param int pageSize Optional. The maximum number of items to return in a - * single page. By default 100 and at most 1000. - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2ListSessionEntityTypesResponse - */ - public function listProjectsAgentSessionsEntityTypes($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dialogflow_GoogleCloudDialogflowV2ListSessionEntityTypesResponse"); - } - /** - * Updates the specified session entity type. - * - * This method doesn't work with Google Assistant integration. Contact - * Dialogflow support if you need to use session entities with Google Assistant - * integration. (entityTypes.patch) - * - * @param string $name Required. The unique identifier of this session entity - * type. Format: `projects//agent/sessions//entityTypes/`. - * - * `` must be the display name of an existing entity type in the same agent that - * will be overridden or supplemented. - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2SessionEntityType $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Optional. The mask to control which fields get - * updated. - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2SessionEntityType - */ - public function patch($name, Google_Service_Dialogflow_GoogleCloudDialogflowV2SessionEntityType $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Dialogflow_GoogleCloudDialogflowV2SessionEntityType"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/Resource/ProjectsAgentVersions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/Resource/ProjectsAgentVersions.php deleted file mode 100644 index 80389015..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/Resource/ProjectsAgentVersions.php +++ /dev/null @@ -1,99 +0,0 @@ - - * $dialogflowService = new Google_Service_Dialogflow(...); - * $versions = $dialogflowService->versions; - * - */ -class Google_Service_Dialogflow_Resource_ProjectsAgentVersions extends Google_Service_Resource -{ - /** - * Creates an agent version. (versions.create) - * - * @param string $parent Required. The agent to create a version for. Format: - * `projects//agent`. - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2Version $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2Version - */ - public function create($parent, Google_Service_Dialogflow_GoogleCloudDialogflowV2Version $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Dialogflow_GoogleCloudDialogflowV2Version"); - } - /** - * Retrieves the specified agent version. (versions.get) - * - * @param string $name Required. The name of the version. Format: - * `projects//agent/versions/`. - * @param array $optParams Optional parameters. - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2Version - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dialogflow_GoogleCloudDialogflowV2Version"); - } - /** - * Returns the list of all versions of the specified agent. - * (versions.listProjectsAgentVersions) - * - * @param string $parent Required. The agent to list all versions from. Format: - * `projects//agent`. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Optional. The next_page_token value returned from - * a previous list request. - * @opt_param int pageSize Optional. The maximum number of items to return in a - * single page. By default 100 and at most 1000. - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2ListVersionsResponse - */ - public function listProjectsAgentVersions($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dialogflow_GoogleCloudDialogflowV2ListVersionsResponse"); - } - /** - * Updates the specified agent version. - * - * Note that this method does not allow you to update the state of the agent the - * given version points to. It allows you to update only mutable properties of - * the version resource. (versions.patch) - * - * @param string $name Output only. The unique identifier of this agent version. - * Format: `projects//agent/versions/`. - * @param Google_Service_Dialogflow_GoogleCloudDialogflowV2Version $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Optional. The mask to control which fields get - * updated. - * @return Google_Service_Dialogflow_GoogleCloudDialogflowV2Version - */ - public function patch($name, Google_Service_Dialogflow_GoogleCloudDialogflowV2Version $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Dialogflow_GoogleCloudDialogflowV2Version"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/Resource/ProjectsLocations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/Resource/ProjectsLocations.php deleted file mode 100644 index 549f7f5f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/Resource/ProjectsLocations.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $dialogflowService = new Google_Service_Dialogflow(...); - * $locations = $dialogflowService->locations; - * - */ -class Google_Service_Dialogflow_Resource_ProjectsLocations extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/Resource/ProjectsLocationsOperations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/Resource/ProjectsLocationsOperations.php deleted file mode 100644 index 506869d7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/Resource/ProjectsLocationsOperations.php +++ /dev/null @@ -1,91 +0,0 @@ - - * $dialogflowService = new Google_Service_Dialogflow(...); - * $operations = $dialogflowService->operations; - * - */ -class Google_Service_Dialogflow_Resource_ProjectsLocationsOperations extends Google_Service_Resource -{ - /** - * Starts asynchronous cancellation on a long-running operation. The server - * makes a best effort to cancel the operation, but success is not guaranteed. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or - * other methods to check whether the cancellation succeeded or whether the - * operation completed despite cancellation. On successful cancellation, the - * operation is not deleted; instead, it becomes an operation with an - * Operation.error value with a google.rpc.Status.code of 1, corresponding to - * `Code.CANCELLED`. (operations.cancel) - * - * @param string $name The name of the operation resource to be cancelled. - * @param array $optParams Optional parameters. - * @return Google_Service_Dialogflow_GoogleProtobufEmpty - */ - public function cancel($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('cancel', array($params), "Google_Service_Dialogflow_GoogleProtobufEmpty"); - } - /** - * Gets the latest state of a long-running operation. Clients can use this - * method to poll the operation result at intervals as recommended by the API - * service. (operations.get) - * - * @param string $name The name of the operation resource. - * @param array $optParams Optional parameters. - * @return Google_Service_Dialogflow_GoogleLongrunningOperation - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dialogflow_GoogleLongrunningOperation"); - } - /** - * Lists operations that match the specified filter in the request. If the - * server doesn't support this method, it returns `UNIMPLEMENTED`. - * - * NOTE: the `name` binding allows API services to override the binding to use - * different resource name schemes, such as `users/operations`. To override the - * binding, API services can add a binding such as - * `"/v1/{name=users}/operations"` to their service configuration. For backwards - * compatibility, the default name includes the operations collection id, - * however overriding users must ensure the name binding is the parent resource, - * without the operations collection id. - * (operations.listProjectsLocationsOperations) - * - * @param string $name The name of the operation's parent resource. - * @param array $optParams Optional parameters. - * - * @opt_param string filter The standard list filter. - * @opt_param string pageToken The standard list page token. - * @opt_param int pageSize The standard list page size. - * @return Google_Service_Dialogflow_GoogleLongrunningListOperationsResponse - */ - public function listProjectsLocationsOperations($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dialogflow_GoogleLongrunningListOperationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/Resource/ProjectsOperations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/Resource/ProjectsOperations.php deleted file mode 100644 index 0ed793b7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dialogflow/Resource/ProjectsOperations.php +++ /dev/null @@ -1,90 +0,0 @@ - - * $dialogflowService = new Google_Service_Dialogflow(...); - * $operations = $dialogflowService->operations; - * - */ -class Google_Service_Dialogflow_Resource_ProjectsOperations extends Google_Service_Resource -{ - /** - * Starts asynchronous cancellation on a long-running operation. The server - * makes a best effort to cancel the operation, but success is not guaranteed. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or - * other methods to check whether the cancellation succeeded or whether the - * operation completed despite cancellation. On successful cancellation, the - * operation is not deleted; instead, it becomes an operation with an - * Operation.error value with a google.rpc.Status.code of 1, corresponding to - * `Code.CANCELLED`. (operations.cancel) - * - * @param string $name The name of the operation resource to be cancelled. - * @param array $optParams Optional parameters. - * @return Google_Service_Dialogflow_GoogleProtobufEmpty - */ - public function cancel($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('cancel', array($params), "Google_Service_Dialogflow_GoogleProtobufEmpty"); - } - /** - * Gets the latest state of a long-running operation. Clients can use this - * method to poll the operation result at intervals as recommended by the API - * service. (operations.get) - * - * @param string $name The name of the operation resource. - * @param array $optParams Optional parameters. - * @return Google_Service_Dialogflow_GoogleLongrunningOperation - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dialogflow_GoogleLongrunningOperation"); - } - /** - * Lists operations that match the specified filter in the request. If the - * server doesn't support this method, it returns `UNIMPLEMENTED`. - * - * NOTE: the `name` binding allows API services to override the binding to use - * different resource name schemes, such as `users/operations`. To override the - * binding, API services can add a binding such as - * `"/v1/{name=users}/operations"` to their service configuration. For backwards - * compatibility, the default name includes the operations collection id, - * however overriding users must ensure the name binding is the parent resource, - * without the operations collection id. (operations.listProjectsOperations) - * - * @param string $name The name of the operation's parent resource. - * @param array $optParams Optional parameters. - * - * @opt_param string filter The standard list filter. - * @opt_param string pageToken The standard list page token. - * @opt_param int pageSize The standard list page size. - * @return Google_Service_Dialogflow_GoogleLongrunningListOperationsResponse - */ - public function listProjectsOperations($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dialogflow_GoogleLongrunningListOperationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Digitalassetlinks.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Digitalassetlinks.php deleted file mode 100644 index 3287f43f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Digitalassetlinks.php +++ /dev/null @@ -1,129 +0,0 @@ - - * Discovers relationships between online assets such as websites or mobile - * apps.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Digitalassetlinks extends Google_Service -{ - - - public $assetlinks; - public $statements; - - /** - * Constructs the internal representation of the Digitalassetlinks service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://digitalassetlinks.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'digitalassetlinks'; - - $this->assetlinks = new Google_Service_Digitalassetlinks_Resource_Assetlinks( - $this, - $this->serviceName, - 'assetlinks', - array( - 'methods' => array( - 'check' => array( - 'path' => 'v1/assetlinks:check', - 'httpMethod' => 'GET', - 'parameters' => array( - 'target.androidApp.packageName' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'source.androidApp.certificate.sha256Fingerprint' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'relation' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'target.web.site' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'target.androidApp.certificate.sha256Fingerprint' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'source.androidApp.packageName' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'source.web.site' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->statements = new Google_Service_Digitalassetlinks_Resource_Statements( - $this, - $this->serviceName, - 'statements', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1/statements:list', - 'httpMethod' => 'GET', - 'parameters' => array( - 'source.androidApp.certificate.sha256Fingerprint' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'relation' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'source.web.site' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'source.androidApp.packageName' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Digitalassetlinks/AndroidAppAsset.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Digitalassetlinks/AndroidAppAsset.php deleted file mode 100644 index 59edfc0a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Digitalassetlinks/AndroidAppAsset.php +++ /dev/null @@ -1,46 +0,0 @@ -certificate = $certificate; - } - /** - * @return Google_Service_Digitalassetlinks_CertificateInfo - */ - public function getCertificate() - { - return $this->certificate; - } - public function setPackageName($packageName) - { - $this->packageName = $packageName; - } - public function getPackageName() - { - return $this->packageName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Digitalassetlinks/Asset.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Digitalassetlinks/Asset.php deleted file mode 100644 index 645bdf51..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Digitalassetlinks/Asset.php +++ /dev/null @@ -1,53 +0,0 @@ -androidApp = $androidApp; - } - /** - * @return Google_Service_Digitalassetlinks_AndroidAppAsset - */ - public function getAndroidApp() - { - return $this->androidApp; - } - /** - * @param Google_Service_Digitalassetlinks_WebAsset - */ - public function setWeb(Google_Service_Digitalassetlinks_WebAsset $web) - { - $this->web = $web; - } - /** - * @return Google_Service_Digitalassetlinks_WebAsset - */ - public function getWeb() - { - return $this->web; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Digitalassetlinks/CertificateInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Digitalassetlinks/CertificateInfo.php deleted file mode 100644 index 23824d07..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Digitalassetlinks/CertificateInfo.php +++ /dev/null @@ -1,30 +0,0 @@ -sha256Fingerprint = $sha256Fingerprint; - } - public function getSha256Fingerprint() - { - return $this->sha256Fingerprint; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Digitalassetlinks/CheckResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Digitalassetlinks/CheckResponse.php deleted file mode 100644 index 2bada524..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Digitalassetlinks/CheckResponse.php +++ /dev/null @@ -1,58 +0,0 @@ -debugString = $debugString; - } - public function getDebugString() - { - return $this->debugString; - } - public function setErrorCode($errorCode) - { - $this->errorCode = $errorCode; - } - public function getErrorCode() - { - return $this->errorCode; - } - public function setLinked($linked) - { - $this->linked = $linked; - } - public function getLinked() - { - return $this->linked; - } - public function setMaxAge($maxAge) - { - $this->maxAge = $maxAge; - } - public function getMaxAge() - { - return $this->maxAge; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Digitalassetlinks/ListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Digitalassetlinks/ListResponse.php deleted file mode 100644 index a3e52e8d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Digitalassetlinks/ListResponse.php +++ /dev/null @@ -1,65 +0,0 @@ -debugString = $debugString; - } - public function getDebugString() - { - return $this->debugString; - } - public function setErrorCode($errorCode) - { - $this->errorCode = $errorCode; - } - public function getErrorCode() - { - return $this->errorCode; - } - public function setMaxAge($maxAge) - { - $this->maxAge = $maxAge; - } - public function getMaxAge() - { - return $this->maxAge; - } - /** - * @param Google_Service_Digitalassetlinks_Statement - */ - public function setStatements($statements) - { - $this->statements = $statements; - } - /** - * @return Google_Service_Digitalassetlinks_Statement - */ - public function getStatements() - { - return $this->statements; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Digitalassetlinks/Resource/Assetlinks.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Digitalassetlinks/Resource/Assetlinks.php deleted file mode 100644 index e686d91b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Digitalassetlinks/Resource/Assetlinks.php +++ /dev/null @@ -1,186 +0,0 @@ - - * $digitalassetlinksService = new Google_Service_Digitalassetlinks(...); - * $assetlinks = $digitalassetlinksService->assetlinks; - * - */ -class Google_Service_Digitalassetlinks_Resource_Assetlinks extends Google_Service_Resource -{ - /** - * Determines whether the specified (directional) relationship exists between - * the specified source and target assets. - * - * The relation describes the intent of the link between the two assets as - * claimed by the source asset. An example for such relationships is the - * delegation of privileges or permissions. - * - * This command is most often used by infrastructure systems to check - * preconditions for an action. For example, a client may want to know if it is - * OK to send a web URL to a particular mobile app instead. The client can check - * for the relevant asset link from the website to the mobile app to decide if - * the operation should be allowed. - * - * A note about security: if you specify a secure asset as the source, such as - * an HTTPS website or an Android app, the API will ensure that any statements - * used to generate the response have been made in a secure way by the owner of - * that asset. Conversely, if the source asset is an insecure HTTP website - * (that is, the URL starts with `http://` instead of `https://`), the API - * cannot verify its statements securely, and it is not possible to ensure that - * the website's statements have not been altered by a third party. For more - * information, see the [Digital Asset Links technical design - * specification](https://github.com/google/digitalassetlinks/blob/master/well- - * known/details.md). (assetlinks.check) - * - * @param array $optParams Optional parameters. - * - * @opt_param string target.androidApp.packageName Android App assets are - * naturally identified by their Java package name. For example, the Google Maps - * app uses the package name `com.google.android.apps.maps`. REQUIRED - * @opt_param string source.androidApp.certificate.sha256Fingerprint The - * uppercase SHA-265 fingerprint of the certificate. From the PEM certificate, - * it can be acquired like this: - * - * $ keytool -printcert -file $CERTFILE | grep SHA256: SHA256: - * 14:6D:E9:83:C5:73:06:50:D8:EE:B9:95:2F:34:FC:64:16:A0:83: \ - * 42:E6:1D:BE:A8:8A:04:96:B2:3F:CF:44:E5 - * - * or like this: - * - * $ openssl x509 -in $CERTFILE -noout -fingerprint -sha256 SHA256 - * Fingerprint=14:6D:E9:83:C5:73:06:50:D8:EE:B9:95:2F:34:FC:64: \ - * 16:A0:83:42:E6:1D:BE:A8:8A:04:96:B2:3F:CF:44:E5 - * - * In this example, the contents of this field would be `14:6D:E9:83:C5:73: - * 06:50:D8:EE:B9:95:2F:34:FC:64:16:A0:83:42:E6:1D:BE:A8:8A:04:96:B2:3F:CF: - * 44:E5`. - * - * If these tools are not available to you, you can convert the PEM certificate - * into the DER format, compute the SHA-256 hash of that string and represent - * the result as a hexstring (that is, uppercase hexadecimal representations of - * each octet, separated by colons). - * @opt_param string relation Query string for the relation. - * - * We identify relations with strings of the format `/`, where `` must be one of - * a set of pre-defined purpose categories, and `` is a free-form lowercase - * alphanumeric string that describes the specific use case of the statement. - * - * Refer to [our API documentation](/digital-asset-links/v1/relation-strings) - * for the current list of supported relations. - * - * For a query to match an asset link, both the query's and the asset link's - * relation strings must match exactly. - * - * Example: A query with relation `delegate_permission/common.handle_all_urls` - * matches an asset link with relation - * `delegate_permission/common.handle_all_urls`. - * @opt_param string target.web.site Web assets are identified by a URL that - * contains only the scheme, hostname and port parts. The format is - * - * http[s]://[:] - * - * Hostnames must be fully qualified: they must end in a single period ("`.`"). - * - * Only the schemes "http" and "https" are currently allowed. - * - * Port numbers are given as a decimal number, and they must be omitted if the - * standard port numbers are used: 80 for http and 443 for https. - * - * We call this limited URL the "site". All URLs that share the same scheme, - * hostname and port are considered to be a part of the site and thus belong to - * the web asset. - * - * Example: the asset with the site `https://www.google.com` contains all these - * URLs: - * - * * `https://www.google.com/` * `https://www.google.com:443/` * - * `https://www.google.com/foo` * `https://www.google.com/foo?bar` * - * `https://www.google.com/foo#bar` * - * `https://user@password:www.google.com/` - * - * But it does not contain these URLs: - * - * * `http://www.google.com/` (wrong scheme) * - * `https://google.com/` (hostname does not match) * - * `https://www.google.com:444/` (port does not match) REQUIRED - * @opt_param string target.androidApp.certificate.sha256Fingerprint The - * uppercase SHA-265 fingerprint of the certificate. From the PEM certificate, - * it can be acquired like this: - * - * $ keytool -printcert -file $CERTFILE | grep SHA256: SHA256: - * 14:6D:E9:83:C5:73:06:50:D8:EE:B9:95:2F:34:FC:64:16:A0:83: \ - * 42:E6:1D:BE:A8:8A:04:96:B2:3F:CF:44:E5 - * - * or like this: - * - * $ openssl x509 -in $CERTFILE -noout -fingerprint -sha256 SHA256 - * Fingerprint=14:6D:E9:83:C5:73:06:50:D8:EE:B9:95:2F:34:FC:64: \ - * 16:A0:83:42:E6:1D:BE:A8:8A:04:96:B2:3F:CF:44:E5 - * - * In this example, the contents of this field would be `14:6D:E9:83:C5:73: - * 06:50:D8:EE:B9:95:2F:34:FC:64:16:A0:83:42:E6:1D:BE:A8:8A:04:96:B2:3F:CF: - * 44:E5`. - * - * If these tools are not available to you, you can convert the PEM certificate - * into the DER format, compute the SHA-256 hash of that string and represent - * the result as a hexstring (that is, uppercase hexadecimal representations of - * each octet, separated by colons). - * @opt_param string source.androidApp.packageName Android App assets are - * naturally identified by their Java package name. For example, the Google Maps - * app uses the package name `com.google.android.apps.maps`. REQUIRED - * @opt_param string source.web.site Web assets are identified by a URL that - * contains only the scheme, hostname and port parts. The format is - * - * http[s]://[:] - * - * Hostnames must be fully qualified: they must end in a single period ("`.`"). - * - * Only the schemes "http" and "https" are currently allowed. - * - * Port numbers are given as a decimal number, and they must be omitted if the - * standard port numbers are used: 80 for http and 443 for https. - * - * We call this limited URL the "site". All URLs that share the same scheme, - * hostname and port are considered to be a part of the site and thus belong to - * the web asset. - * - * Example: the asset with the site `https://www.google.com` contains all these - * URLs: - * - * * `https://www.google.com/` * `https://www.google.com:443/` * - * `https://www.google.com/foo` * `https://www.google.com/foo?bar` * - * `https://www.google.com/foo#bar` * - * `https://user@password:www.google.com/` - * - * But it does not contain these URLs: - * - * * `http://www.google.com/` (wrong scheme) * - * `https://google.com/` (hostname does not match) * - * `https://www.google.com:444/` (port does not match) REQUIRED - * @return Google_Service_Digitalassetlinks_CheckResponse - */ - public function check($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('check', array($params), "Google_Service_Digitalassetlinks_CheckResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Digitalassetlinks/Resource/Statements.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Digitalassetlinks/Resource/Statements.php deleted file mode 100644 index a531b17d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Digitalassetlinks/Resource/Statements.php +++ /dev/null @@ -1,125 +0,0 @@ - - * $digitalassetlinksService = new Google_Service_Digitalassetlinks(...); - * $statements = $digitalassetlinksService->statements; - * - */ -class Google_Service_Digitalassetlinks_Resource_Statements extends Google_Service_Resource -{ - /** - * Retrieves a list of all statements from a given source that match the - * specified target and statement string. - * - * The API guarantees that all statements with secure source assets, such as - * HTTPS websites or Android apps, have been made in a secure way by the owner - * of those assets, as described in the [Digital Asset Links technical design - * specification](https://github.com/google/digitalassetlinks/blob/master/well- - * known/details.md). Specifically, you should consider that for insecure - * websites (that is, where the URL starts with `http://` instead of - * `https://`), this guarantee cannot be made. - * - * The `List` command is most useful in cases where the API client wants to know - * all the ways in which two assets are related, or enumerate all the - * relationships from a particular source asset. Example: a feature that helps - * users navigate to related items. When a mobile app is running on a device, - * the feature would make it easy to navigate to the corresponding web site or - * Google+ profile. (statements.listStatements) - * - * @param array $optParams Optional parameters. - * - * @opt_param string source.androidApp.certificate.sha256Fingerprint The - * uppercase SHA-265 fingerprint of the certificate. From the PEM certificate, - * it can be acquired like this: - * - * $ keytool -printcert -file $CERTFILE | grep SHA256: SHA256: - * 14:6D:E9:83:C5:73:06:50:D8:EE:B9:95:2F:34:FC:64:16:A0:83: \ - * 42:E6:1D:BE:A8:8A:04:96:B2:3F:CF:44:E5 - * - * or like this: - * - * $ openssl x509 -in $CERTFILE -noout -fingerprint -sha256 SHA256 - * Fingerprint=14:6D:E9:83:C5:73:06:50:D8:EE:B9:95:2F:34:FC:64: \ - * 16:A0:83:42:E6:1D:BE:A8:8A:04:96:B2:3F:CF:44:E5 - * - * In this example, the contents of this field would be `14:6D:E9:83:C5:73: - * 06:50:D8:EE:B9:95:2F:34:FC:64:16:A0:83:42:E6:1D:BE:A8:8A:04:96:B2:3F:CF: - * 44:E5`. - * - * If these tools are not available to you, you can convert the PEM certificate - * into the DER format, compute the SHA-256 hash of that string and represent - * the result as a hexstring (that is, uppercase hexadecimal representations of - * each octet, separated by colons). - * @opt_param string relation Use only associations that match the specified - * relation. - * - * See the [`Statement`](#Statement) message for a detailed definition of - * relation strings. - * - * For a query to match a statement, one of the following must be true: - * - * * both the query's and the statement's relation strings match exactly, - * or * the query's relation string is empty or missing. - * - * Example: A query with relation `delegate_permission/common.handle_all_urls` - * matches an asset link with relation - * `delegate_permission/common.handle_all_urls`. - * @opt_param string source.web.site Web assets are identified by a URL that - * contains only the scheme, hostname and port parts. The format is - * - * http[s]://[:] - * - * Hostnames must be fully qualified: they must end in a single period ("`.`"). - * - * Only the schemes "http" and "https" are currently allowed. - * - * Port numbers are given as a decimal number, and they must be omitted if the - * standard port numbers are used: 80 for http and 443 for https. - * - * We call this limited URL the "site". All URLs that share the same scheme, - * hostname and port are considered to be a part of the site and thus belong to - * the web asset. - * - * Example: the asset with the site `https://www.google.com` contains all these - * URLs: - * - * * `https://www.google.com/` * `https://www.google.com:443/` * - * `https://www.google.com/foo` * `https://www.google.com/foo?bar` * - * `https://www.google.com/foo#bar` * - * `https://user@password:www.google.com/` - * - * But it does not contain these URLs: - * - * * `http://www.google.com/` (wrong scheme) * - * `https://google.com/` (hostname does not match) * - * `https://www.google.com:444/` (port does not match) REQUIRED - * @opt_param string source.androidApp.packageName Android App assets are - * naturally identified by their Java package name. For example, the Google Maps - * app uses the package name `com.google.android.apps.maps`. REQUIRED - * @return Google_Service_Digitalassetlinks_ListResponse - */ - public function listStatements($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Digitalassetlinks_ListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Digitalassetlinks/Statement.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Digitalassetlinks/Statement.php deleted file mode 100644 index 3db4f283..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Digitalassetlinks/Statement.php +++ /dev/null @@ -1,62 +0,0 @@ -relation = $relation; - } - public function getRelation() - { - return $this->relation; - } - /** - * @param Google_Service_Digitalassetlinks_Asset - */ - public function setSource(Google_Service_Digitalassetlinks_Asset $source) - { - $this->source = $source; - } - /** - * @return Google_Service_Digitalassetlinks_Asset - */ - public function getSource() - { - return $this->source; - } - /** - * @param Google_Service_Digitalassetlinks_Asset - */ - public function setTarget(Google_Service_Digitalassetlinks_Asset $target) - { - $this->target = $target; - } - /** - * @return Google_Service_Digitalassetlinks_Asset - */ - public function getTarget() - { - return $this->target; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Digitalassetlinks/WebAsset.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Digitalassetlinks/WebAsset.php deleted file mode 100644 index 68ff8e14..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Digitalassetlinks/WebAsset.php +++ /dev/null @@ -1,30 +0,0 @@ -site = $site; - } - public function getSite() - { - return $this->site; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory.php deleted file mode 100644 index 4422fe19..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory.php +++ /dev/null @@ -1,2094 +0,0 @@ - - * Manages enterprise resources such as users and groups, administrative - * notifications, security features, and more.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Directory extends Google_Service -{ - /** View and manage customer related information. */ - const ADMIN_DIRECTORY_CUSTOMER = - "https://www.googleapis.com/auth/admin.directory.customer"; - /** View customer related information. */ - const ADMIN_DIRECTORY_CUSTOMER_READONLY = - "https://www.googleapis.com/auth/admin.directory.customer.readonly"; - /** View and manage your Chrome OS devices' metadata. */ - const ADMIN_DIRECTORY_DEVICE_CHROMEOS = - "https://www.googleapis.com/auth/admin.directory.device.chromeos"; - /** View your Chrome OS devices' metadata. */ - const ADMIN_DIRECTORY_DEVICE_CHROMEOS_READONLY = - "https://www.googleapis.com/auth/admin.directory.device.chromeos.readonly"; - /** View and manage your mobile devices' metadata. */ - const ADMIN_DIRECTORY_DEVICE_MOBILE = - "https://www.googleapis.com/auth/admin.directory.device.mobile"; - /** Manage your mobile devices by performing administrative tasks. */ - const ADMIN_DIRECTORY_DEVICE_MOBILE_ACTION = - "https://www.googleapis.com/auth/admin.directory.device.mobile.action"; - /** View your mobile devices' metadata. */ - const ADMIN_DIRECTORY_DEVICE_MOBILE_READONLY = - "https://www.googleapis.com/auth/admin.directory.device.mobile.readonly"; - /** View and manage the provisioning of domains for your customers. */ - const ADMIN_DIRECTORY_DOMAIN = - "https://www.googleapis.com/auth/admin.directory.domain"; - /** View domains related to your customers. */ - const ADMIN_DIRECTORY_DOMAIN_READONLY = - "https://www.googleapis.com/auth/admin.directory.domain.readonly"; - /** View and manage the provisioning of groups on your domain. */ - const ADMIN_DIRECTORY_GROUP = - "https://www.googleapis.com/auth/admin.directory.group"; - /** View and manage group subscriptions on your domain. */ - const ADMIN_DIRECTORY_GROUP_MEMBER = - "https://www.googleapis.com/auth/admin.directory.group.member"; - /** View group subscriptions on your domain. */ - const ADMIN_DIRECTORY_GROUP_MEMBER_READONLY = - "https://www.googleapis.com/auth/admin.directory.group.member.readonly"; - /** View groups on your domain. */ - const ADMIN_DIRECTORY_GROUP_READONLY = - "https://www.googleapis.com/auth/admin.directory.group.readonly"; - /** View and manage notifications received on your domain. */ - const ADMIN_DIRECTORY_NOTIFICATIONS = - "https://www.googleapis.com/auth/admin.directory.notifications"; - /** View and manage organization units on your domain. */ - const ADMIN_DIRECTORY_ORGUNIT = - "https://www.googleapis.com/auth/admin.directory.orgunit"; - /** View organization units on your domain. */ - const ADMIN_DIRECTORY_ORGUNIT_READONLY = - "https://www.googleapis.com/auth/admin.directory.orgunit.readonly"; - /** View and manage the provisioning of calendar resources on your domain. */ - const ADMIN_DIRECTORY_RESOURCE_CALENDAR = - "https://www.googleapis.com/auth/admin.directory.resource.calendar"; - /** View calendar resources on your domain. */ - const ADMIN_DIRECTORY_RESOURCE_CALENDAR_READONLY = - "https://www.googleapis.com/auth/admin.directory.resource.calendar.readonly"; - /** Manage delegated admin roles for your domain. */ - const ADMIN_DIRECTORY_ROLEMANAGEMENT = - "https://www.googleapis.com/auth/admin.directory.rolemanagement"; - /** View delegated admin roles for your domain. */ - const ADMIN_DIRECTORY_ROLEMANAGEMENT_READONLY = - "https://www.googleapis.com/auth/admin.directory.rolemanagement.readonly"; - /** View and manage the provisioning of users on your domain. */ - const ADMIN_DIRECTORY_USER = - "https://www.googleapis.com/auth/admin.directory.user"; - /** View and manage user aliases on your domain. */ - const ADMIN_DIRECTORY_USER_ALIAS = - "https://www.googleapis.com/auth/admin.directory.user.alias"; - /** View user aliases on your domain. */ - const ADMIN_DIRECTORY_USER_ALIAS_READONLY = - "https://www.googleapis.com/auth/admin.directory.user.alias.readonly"; - /** View users on your domain. */ - const ADMIN_DIRECTORY_USER_READONLY = - "https://www.googleapis.com/auth/admin.directory.user.readonly"; - /** Manage data access permissions for users on your domain. */ - const ADMIN_DIRECTORY_USER_SECURITY = - "https://www.googleapis.com/auth/admin.directory.user.security"; - /** View and manage the provisioning of user schemas on your domain. */ - const ADMIN_DIRECTORY_USERSCHEMA = - "https://www.googleapis.com/auth/admin.directory.userschema"; - /** View user schemas on your domain. */ - const ADMIN_DIRECTORY_USERSCHEMA_READONLY = - "https://www.googleapis.com/auth/admin.directory.userschema.readonly"; - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - - public $asps; - public $channels; - public $chromeosdevices; - public $customers; - public $domainAliases; - public $domains; - public $groups; - public $groups_aliases; - public $members; - public $mobiledevices; - public $notifications; - public $orgunits; - public $privileges; - public $resolvedAppAccessSettings; - public $resources_buildings; - public $resources_calendars; - public $resources_features; - public $roleAssignments; - public $roles; - public $schemas; - public $tokens; - public $users; - public $users_aliases; - public $users_photos; - public $verificationCodes; - - /** - * Constructs the internal representation of the Directory service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://www.googleapis.com/'; - $this->servicePath = 'admin/directory/v1/'; - $this->batchPath = 'batch/admin/directory_v1'; - $this->version = 'directory_v1'; - $this->serviceName = 'admin'; - - $this->asps = new Google_Service_Directory_Resource_Asps( - $this, - $this->serviceName, - 'asps', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'users/{userKey}/asps/{codeId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'userKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'codeId' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'users/{userKey}/asps/{codeId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'codeId' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'users/{userKey}/asps', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->channels = new Google_Service_Directory_Resource_Channels( - $this, - $this->serviceName, - 'channels', - array( - 'methods' => array( - 'stop' => array( - 'path' => '/admin/directory_v1/channels/stop', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->chromeosdevices = new Google_Service_Directory_Resource_Chromeosdevices( - $this, - $this->serviceName, - 'chromeosdevices', - array( - 'methods' => array( - 'action' => array( - 'path' => 'customer/{customerId}/devices/chromeos/{resourceId}/action', - 'httpMethod' => 'POST', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resourceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'customer/{customerId}/devices/chromeos/{deviceId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'deviceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'customer/{customerId}/devices/chromeos', - 'httpMethod' => 'GET', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'orgUnitPath' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'query' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortOrder' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'moveDevicesToOu' => array( - 'path' => 'customer/{customerId}/devices/chromeos/moveDevicesToOu', - 'httpMethod' => 'POST', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'orgUnitPath' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => 'customer/{customerId}/devices/chromeos/{deviceId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'deviceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'customer/{customerId}/devices/chromeos/{deviceId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'deviceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->customers = new Google_Service_Directory_Resource_Customers( - $this, - $this->serviceName, - 'customers', - array( - 'methods' => array( - 'get' => array( - 'path' => 'customers/{customerKey}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'customerKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => 'customers/{customerKey}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'customerKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'customers/{customerKey}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'customerKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->domainAliases = new Google_Service_Directory_Resource_DomainAliases( - $this, - $this->serviceName, - 'domainAliases', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'customer/{customer}/domainaliases/{domainAliasName}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'customer' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'domainAliasName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'customer/{customer}/domainaliases/{domainAliasName}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'customer' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'domainAliasName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'customer/{customer}/domainaliases', - 'httpMethod' => 'POST', - 'parameters' => array( - 'customer' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'customer/{customer}/domainaliases', - 'httpMethod' => 'GET', - 'parameters' => array( - 'customer' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'parentDomainName' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->domains = new Google_Service_Directory_Resource_Domains( - $this, - $this->serviceName, - 'domains', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'customer/{customer}/domains/{domainName}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'customer' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'domainName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'customer/{customer}/domains/{domainName}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'customer' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'domainName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'customer/{customer}/domains', - 'httpMethod' => 'POST', - 'parameters' => array( - 'customer' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'customer/{customer}/domains', - 'httpMethod' => 'GET', - 'parameters' => array( - 'customer' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->groups = new Google_Service_Directory_Resource_Groups( - $this, - $this->serviceName, - 'groups', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'groups/{groupKey}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'groupKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'groups/{groupKey}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'groupKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'groups', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'list' => array( - 'path' => 'groups', - 'httpMethod' => 'GET', - 'parameters' => array( - 'customer' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'domain' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'query' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortOrder' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userKey' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'groups/{groupKey}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'groupKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'groups/{groupKey}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'groupKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->groups_aliases = new Google_Service_Directory_Resource_GroupsAliases( - $this, - $this->serviceName, - 'aliases', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'groups/{groupKey}/aliases/{alias}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'groupKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'alias' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'groups/{groupKey}/aliases', - 'httpMethod' => 'POST', - 'parameters' => array( - 'groupKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'groups/{groupKey}/aliases', - 'httpMethod' => 'GET', - 'parameters' => array( - 'groupKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->members = new Google_Service_Directory_Resource_Members( - $this, - $this->serviceName, - 'members', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'groups/{groupKey}/members/{memberKey}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'groupKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'memberKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'groups/{groupKey}/members/{memberKey}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'groupKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'memberKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'hasMember' => array( - 'path' => 'groups/{groupKey}/hasMember/{memberKey}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'groupKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'memberKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'groups/{groupKey}/members', - 'httpMethod' => 'POST', - 'parameters' => array( - 'groupKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'groups/{groupKey}/members', - 'httpMethod' => 'GET', - 'parameters' => array( - 'groupKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'includeDerivedMembership' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'roles' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'groups/{groupKey}/members/{memberKey}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'groupKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'memberKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'groups/{groupKey}/members/{memberKey}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'groupKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'memberKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->mobiledevices = new Google_Service_Directory_Resource_Mobiledevices( - $this, - $this->serviceName, - 'mobiledevices', - array( - 'methods' => array( - 'action' => array( - 'path' => 'customer/{customerId}/devices/mobile/{resourceId}/action', - 'httpMethod' => 'POST', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resourceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'customer/{customerId}/devices/mobile/{resourceId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resourceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'customer/{customerId}/devices/mobile/{resourceId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resourceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'customer/{customerId}/devices/mobile', - 'httpMethod' => 'GET', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'query' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortOrder' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->notifications = new Google_Service_Directory_Resource_Notifications( - $this, - $this->serviceName, - 'notifications', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'customer/{customer}/notifications/{notificationId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'customer' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'notificationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'customer/{customer}/notifications/{notificationId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'customer' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'notificationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'customer/{customer}/notifications', - 'httpMethod' => 'GET', - 'parameters' => array( - 'customer' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'customer/{customer}/notifications/{notificationId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'customer' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'notificationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'customer/{customer}/notifications/{notificationId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'customer' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'notificationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->orgunits = new Google_Service_Directory_Resource_Orgunits( - $this, - $this->serviceName, - 'orgunits', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'customer/{customerId}/orgunits{/orgUnitPath*}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'orgUnitPath' => array( - 'location' => 'path', - 'type' => 'string', - 'repeated' => true, - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'customer/{customerId}/orgunits{/orgUnitPath*}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'orgUnitPath' => array( - 'location' => 'path', - 'type' => 'string', - 'repeated' => true, - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'customer/{customerId}/orgunits', - 'httpMethod' => 'POST', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'customer/{customerId}/orgunits', - 'httpMethod' => 'GET', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'orgUnitPath' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'type' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'customer/{customerId}/orgunits{/orgUnitPath*}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'orgUnitPath' => array( - 'location' => 'path', - 'type' => 'string', - 'repeated' => true, - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'customer/{customerId}/orgunits{/orgUnitPath*}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'orgUnitPath' => array( - 'location' => 'path', - 'type' => 'string', - 'repeated' => true, - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->privileges = new Google_Service_Directory_Resource_Privileges( - $this, - $this->serviceName, - 'privileges', - array( - 'methods' => array( - 'list' => array( - 'path' => 'customer/{customer}/roles/ALL/privileges', - 'httpMethod' => 'GET', - 'parameters' => array( - 'customer' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->resolvedAppAccessSettings = new Google_Service_Directory_Resource_ResolvedAppAccessSettings( - $this, - $this->serviceName, - 'resolvedAppAccessSettings', - array( - 'methods' => array( - 'GetSettings' => array( - 'path' => 'resolvedappaccesssettings', - 'httpMethod' => 'GET', - 'parameters' => array(), - ),'ListTrustedApps' => array( - 'path' => 'trustedapps', - 'httpMethod' => 'GET', - 'parameters' => array(), - ), - ) - ) - ); - $this->resources_buildings = new Google_Service_Directory_Resource_ResourcesBuildings( - $this, - $this->serviceName, - 'buildings', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'customer/{customer}/resources/buildings/{buildingId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'customer' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'buildingId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'customer/{customer}/resources/buildings/{buildingId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'customer' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'buildingId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'customer/{customer}/resources/buildings', - 'httpMethod' => 'POST', - 'parameters' => array( - 'customer' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'coordinatesSource' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'customer/{customer}/resources/buildings', - 'httpMethod' => 'GET', - 'parameters' => array( - 'customer' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'customer/{customer}/resources/buildings/{buildingId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'customer' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'buildingId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'coordinatesSource' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'customer/{customer}/resources/buildings/{buildingId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'customer' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'buildingId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'coordinatesSource' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->resources_calendars = new Google_Service_Directory_Resource_ResourcesCalendars( - $this, - $this->serviceName, - 'calendars', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'customer/{customer}/resources/calendars/{calendarResourceId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'customer' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'calendarResourceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'customer/{customer}/resources/calendars/{calendarResourceId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'customer' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'calendarResourceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'customer/{customer}/resources/calendars', - 'httpMethod' => 'POST', - 'parameters' => array( - 'customer' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'customer/{customer}/resources/calendars', - 'httpMethod' => 'GET', - 'parameters' => array( - 'customer' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'query' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'customer/{customer}/resources/calendars/{calendarResourceId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'customer' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'calendarResourceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'customer/{customer}/resources/calendars/{calendarResourceId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'customer' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'calendarResourceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->resources_features = new Google_Service_Directory_Resource_ResourcesFeatures( - $this, - $this->serviceName, - 'features', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'customer/{customer}/resources/features/{featureKey}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'customer' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'featureKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'customer/{customer}/resources/features/{featureKey}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'customer' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'featureKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'customer/{customer}/resources/features', - 'httpMethod' => 'POST', - 'parameters' => array( - 'customer' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'customer/{customer}/resources/features', - 'httpMethod' => 'GET', - 'parameters' => array( - 'customer' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'customer/{customer}/resources/features/{featureKey}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'customer' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'featureKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'rename' => array( - 'path' => 'customer/{customer}/resources/features/{oldName}/rename', - 'httpMethod' => 'POST', - 'parameters' => array( - 'customer' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'oldName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'customer/{customer}/resources/features/{featureKey}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'customer' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'featureKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->roleAssignments = new Google_Service_Directory_Resource_RoleAssignments( - $this, - $this->serviceName, - 'roleAssignments', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'customer/{customer}/roleassignments/{roleAssignmentId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'customer' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'roleAssignmentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'customer/{customer}/roleassignments/{roleAssignmentId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'customer' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'roleAssignmentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'customer/{customer}/roleassignments', - 'httpMethod' => 'POST', - 'parameters' => array( - 'customer' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'customer/{customer}/roleassignments', - 'httpMethod' => 'GET', - 'parameters' => array( - 'customer' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'roleId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userKey' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->roles = new Google_Service_Directory_Resource_Roles( - $this, - $this->serviceName, - 'roles', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'customer/{customer}/roles/{roleId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'customer' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'roleId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'customer/{customer}/roles/{roleId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'customer' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'roleId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'customer/{customer}/roles', - 'httpMethod' => 'POST', - 'parameters' => array( - 'customer' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'customer/{customer}/roles', - 'httpMethod' => 'GET', - 'parameters' => array( - 'customer' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'customer/{customer}/roles/{roleId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'customer' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'roleId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'customer/{customer}/roles/{roleId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'customer' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'roleId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->schemas = new Google_Service_Directory_Resource_Schemas( - $this, - $this->serviceName, - 'schemas', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'customer/{customerId}/schemas/{schemaKey}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'schemaKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'customer/{customerId}/schemas/{schemaKey}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'schemaKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'customer/{customerId}/schemas', - 'httpMethod' => 'POST', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'customer/{customerId}/schemas', - 'httpMethod' => 'GET', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => 'customer/{customerId}/schemas/{schemaKey}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'schemaKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'customer/{customerId}/schemas/{schemaKey}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'schemaKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->tokens = new Google_Service_Directory_Resource_Tokens( - $this, - $this->serviceName, - 'tokens', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'users/{userKey}/tokens/{clientId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'userKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'users/{userKey}/tokens/{clientId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clientId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'users/{userKey}/tokens', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->users = new Google_Service_Directory_Resource_Users( - $this, - $this->serviceName, - 'users', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'users/{userKey}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'userKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'users/{userKey}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'customFieldMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'viewType' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'insert' => array( - 'path' => 'users', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'list' => array( - 'path' => 'users', - 'httpMethod' => 'GET', - 'parameters' => array( - 'customFieldMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'customer' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'domain' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'event' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'query' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'showDeleted' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortOrder' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'viewType' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'makeAdmin' => array( - 'path' => 'users/{userKey}/makeAdmin', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => 'users/{userKey}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'userKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'undelete' => array( - 'path' => 'users/{userKey}/undelete', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'users/{userKey}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'userKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'watch' => array( - 'path' => 'users/watch', - 'httpMethod' => 'POST', - 'parameters' => array( - 'customFieldMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'customer' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'domain' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'event' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'query' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'showDeleted' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortOrder' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'viewType' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->users_aliases = new Google_Service_Directory_Resource_UsersAliases( - $this, - $this->serviceName, - 'aliases', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'users/{userKey}/aliases/{alias}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'userKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'alias' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'users/{userKey}/aliases', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'users/{userKey}/aliases', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'event' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'watch' => array( - 'path' => 'users/{userKey}/aliases/watch', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'event' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->users_photos = new Google_Service_Directory_Resource_UsersPhotos( - $this, - $this->serviceName, - 'photos', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'users/{userKey}/photos/thumbnail', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'userKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'users/{userKey}/photos/thumbnail', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => 'users/{userKey}/photos/thumbnail', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'userKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'users/{userKey}/photos/thumbnail', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'userKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->verificationCodes = new Google_Service_Directory_Resource_VerificationCodes( - $this, - $this->serviceName, - 'verificationCodes', - array( - 'methods' => array( - 'generate' => array( - 'path' => 'users/{userKey}/verificationCodes/generate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'invalidate' => array( - 'path' => 'users/{userKey}/verificationCodes/invalidate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'users/{userKey}/verificationCodes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Alias.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Alias.php deleted file mode 100644 index a8ea5411..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Alias.php +++ /dev/null @@ -1,66 +0,0 @@ -alias = $alias; - } - public function getAlias() - { - return $this->alias; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - 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 setPrimaryEmail($primaryEmail) - { - $this->primaryEmail = $primaryEmail; - } - public function getPrimaryEmail() - { - return $this->primaryEmail; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Aliases.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Aliases.php deleted file mode 100644 index 834498d8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Aliases.php +++ /dev/null @@ -1,49 +0,0 @@ -aliases = $aliases; - } - public function getAliases() - { - return $this->aliases; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/AppAccessCollections.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/AppAccessCollections.php deleted file mode 100644 index abb338f3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/AppAccessCollections.php +++ /dev/null @@ -1,94 +0,0 @@ -blockedApiAccessBuckets = $blockedApiAccessBuckets; - } - public function getBlockedApiAccessBuckets() - { - return $this->blockedApiAccessBuckets; - } - public function setEnforceSettingsForAndroidDrive($enforceSettingsForAndroidDrive) - { - $this->enforceSettingsForAndroidDrive = $enforceSettingsForAndroidDrive; - } - public function getEnforceSettingsForAndroidDrive() - { - return $this->enforceSettingsForAndroidDrive; - } - public function setErrorMessage($errorMessage) - { - $this->errorMessage = $errorMessage; - } - public function getErrorMessage() - { - return $this->errorMessage; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setResourceId($resourceId) - { - $this->resourceId = $resourceId; - } - public function getResourceId() - { - return $this->resourceId; - } - public function setResourceName($resourceName) - { - $this->resourceName = $resourceName; - } - public function getResourceName() - { - return $this->resourceName; - } - public function setTrustDomainOwnedApps($trustDomainOwnedApps) - { - $this->trustDomainOwnedApps = $trustDomainOwnedApps; - } - public function getTrustDomainOwnedApps() - { - return $this->trustDomainOwnedApps; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Asp.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Asp.php deleted file mode 100644 index 9a139a3b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Asp.php +++ /dev/null @@ -1,84 +0,0 @@ -codeId = $codeId; - } - public function getCodeId() - { - return $this->codeId; - } - public function setCreationTime($creationTime) - { - $this->creationTime = $creationTime; - } - public function getCreationTime() - { - return $this->creationTime; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLastTimeUsed($lastTimeUsed) - { - $this->lastTimeUsed = $lastTimeUsed; - } - public function getLastTimeUsed() - { - return $this->lastTimeUsed; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setUserKey($userKey) - { - $this->userKey = $userKey; - } - public function getUserKey() - { - return $this->userKey; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Asps.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Asps.php deleted file mode 100644 index 1129ace2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Asps.php +++ /dev/null @@ -1,56 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_Directory_Asp - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Directory_Asp - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Building.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Building.php deleted file mode 100644 index 8b360121..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Building.php +++ /dev/null @@ -1,108 +0,0 @@ -address = $address; - } - /** - * @return Google_Service_Directory_BuildingAddress - */ - public function getAddress() - { - return $this->address; - } - public function setBuildingId($buildingId) - { - $this->buildingId = $buildingId; - } - public function getBuildingId() - { - return $this->buildingId; - } - public function setBuildingName($buildingName) - { - $this->buildingName = $buildingName; - } - public function getBuildingName() - { - return $this->buildingName; - } - /** - * @param Google_Service_Directory_BuildingCoordinates - */ - public function setCoordinates(Google_Service_Directory_BuildingCoordinates $coordinates) - { - $this->coordinates = $coordinates; - } - /** - * @return Google_Service_Directory_BuildingCoordinates - */ - public function getCoordinates() - { - return $this->coordinates; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setEtags($etags) - { - $this->etags = $etags; - } - public function getEtags() - { - return $this->etags; - } - public function setFloorNames($floorNames) - { - $this->floorNames = $floorNames; - } - public function getFloorNames() - { - return $this->floorNames; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/BuildingAddress.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/BuildingAddress.php deleted file mode 100644 index ae18638c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/BuildingAddress.php +++ /dev/null @@ -1,85 +0,0 @@ -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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/BuildingCoordinates.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/BuildingCoordinates.php deleted file mode 100644 index 637bd496..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/BuildingCoordinates.php +++ /dev/null @@ -1,39 +0,0 @@ -latitude = $latitude; - } - public function getLatitude() - { - return $this->latitude; - } - public function setLongitude($longitude) - { - $this->longitude = $longitude; - } - public function getLongitude() - { - return $this->longitude; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Buildings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Buildings.php deleted file mode 100644 index 1e16f030..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Buildings.php +++ /dev/null @@ -1,65 +0,0 @@ -buildings = $buildings; - } - /** - * @return Google_Service_Directory_Building - */ - public function getBuildings() - { - return $this->buildings; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/CalendarResource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/CalendarResource.php deleted file mode 100644 index 7d0eb131..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/CalendarResource.php +++ /dev/null @@ -1,156 +0,0 @@ -buildingId = $buildingId; - } - public function getBuildingId() - { - return $this->buildingId; - } - public function setCapacity($capacity) - { - $this->capacity = $capacity; - } - public function getCapacity() - { - return $this->capacity; - } - public function setEtags($etags) - { - $this->etags = $etags; - } - public function getEtags() - { - return $this->etags; - } - public function setFeatureInstances($featureInstances) - { - $this->featureInstances = $featureInstances; - } - public function getFeatureInstances() - { - return $this->featureInstances; - } - public function setFloorName($floorName) - { - $this->floorName = $floorName; - } - public function getFloorName() - { - return $this->floorName; - } - public function setFloorSection($floorSection) - { - $this->floorSection = $floorSection; - } - public function getFloorSection() - { - return $this->floorSection; - } - public function setGeneratedResourceName($generatedResourceName) - { - $this->generatedResourceName = $generatedResourceName; - } - public function getGeneratedResourceName() - { - return $this->generatedResourceName; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setResourceCategory($resourceCategory) - { - $this->resourceCategory = $resourceCategory; - } - public function getResourceCategory() - { - return $this->resourceCategory; - } - public function setResourceDescription($resourceDescription) - { - $this->resourceDescription = $resourceDescription; - } - public function getResourceDescription() - { - return $this->resourceDescription; - } - public function setResourceEmail($resourceEmail) - { - $this->resourceEmail = $resourceEmail; - } - public function getResourceEmail() - { - return $this->resourceEmail; - } - public function setResourceId($resourceId) - { - $this->resourceId = $resourceId; - } - public function getResourceId() - { - return $this->resourceId; - } - public function setResourceName($resourceName) - { - $this->resourceName = $resourceName; - } - public function getResourceName() - { - return $this->resourceName; - } - public function setResourceType($resourceType) - { - $this->resourceType = $resourceType; - } - public function getResourceType() - { - return $this->resourceType; - } - public function setUserVisibleDescription($userVisibleDescription) - { - $this->userVisibleDescription = $userVisibleDescription; - } - public function getUserVisibleDescription() - { - return $this->userVisibleDescription; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/CalendarResources.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/CalendarResources.php deleted file mode 100644 index eca36845..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/CalendarResources.php +++ /dev/null @@ -1,65 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_Directory_CalendarResource - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Directory_CalendarResource - */ - public function getItems() - { - return $this->items; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Channel.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Channel.php deleted file mode 100644 index 0c47b41e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Channel.php +++ /dev/null @@ -1,111 +0,0 @@ -address = $address; - } - public function getAddress() - { - return $this->address; - } - public function setExpiration($expiration) - { - $this->expiration = $expiration; - } - public function getExpiration() - { - return $this->expiration; - } - 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 setParams($params) - { - $this->params = $params; - } - public function getParams() - { - return $this->params; - } - public function setPayload($payload) - { - $this->payload = $payload; - } - public function getPayload() - { - return $this->payload; - } - public function setResourceId($resourceId) - { - $this->resourceId = $resourceId; - } - public function getResourceId() - { - return $this->resourceId; - } - public function setResourceUri($resourceUri) - { - $this->resourceUri = $resourceUri; - } - public function getResourceUri() - { - return $this->resourceUri; - } - public function setToken($token) - { - $this->token = $token; - } - public function getToken() - { - return $this->token; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/ChromeOsDevice.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/ChromeOsDevice.php deleted file mode 100644 index 68232804..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/ChromeOsDevice.php +++ /dev/null @@ -1,386 +0,0 @@ -activeTimeRanges = $activeTimeRanges; - } - /** - * @return Google_Service_Directory_ChromeOsDeviceActiveTimeRanges - */ - public function getActiveTimeRanges() - { - return $this->activeTimeRanges; - } - public function setAnnotatedAssetId($annotatedAssetId) - { - $this->annotatedAssetId = $annotatedAssetId; - } - public function getAnnotatedAssetId() - { - return $this->annotatedAssetId; - } - public function setAnnotatedLocation($annotatedLocation) - { - $this->annotatedLocation = $annotatedLocation; - } - public function getAnnotatedLocation() - { - return $this->annotatedLocation; - } - public function setAnnotatedUser($annotatedUser) - { - $this->annotatedUser = $annotatedUser; - } - public function getAnnotatedUser() - { - return $this->annotatedUser; - } - public function setAutoUpdateExpiration($autoUpdateExpiration) - { - $this->autoUpdateExpiration = $autoUpdateExpiration; - } - public function getAutoUpdateExpiration() - { - return $this->autoUpdateExpiration; - } - public function setBootMode($bootMode) - { - $this->bootMode = $bootMode; - } - public function getBootMode() - { - 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 - */ - public function setDeviceFiles($deviceFiles) - { - $this->deviceFiles = $deviceFiles; - } - /** - * @return Google_Service_Directory_ChromeOsDeviceDeviceFiles - */ - public function getDeviceFiles() - { - return $this->deviceFiles; - } - public function setDeviceId($deviceId) - { - $this->deviceId = $deviceId; - } - public function getDeviceId() - { - 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 setDockMacAddress($dockMacAddress) - { - $this->dockMacAddress = $dockMacAddress; - } - public function getDockMacAddress() - { - return $this->dockMacAddress; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setEthernetMacAddress($ethernetMacAddress) - { - $this->ethernetMacAddress = $ethernetMacAddress; - } - public function getEthernetMacAddress() - { - return $this->ethernetMacAddress; - } - public function setEthernetMacAddress0($ethernetMacAddress0) - { - $this->ethernetMacAddress0 = $ethernetMacAddress0; - } - public function getEthernetMacAddress0() - { - return $this->ethernetMacAddress0; - } - public function setFirmwareVersion($firmwareVersion) - { - $this->firmwareVersion = $firmwareVersion; - } - public function getFirmwareVersion() - { - return $this->firmwareVersion; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLastEnrollmentTime($lastEnrollmentTime) - { - $this->lastEnrollmentTime = $lastEnrollmentTime; - } - public function getLastEnrollmentTime() - { - return $this->lastEnrollmentTime; - } - public function setLastSync($lastSync) - { - $this->lastSync = $lastSync; - } - public function getLastSync() - { - return $this->lastSync; - } - public function setMacAddress($macAddress) - { - $this->macAddress = $macAddress; - } - public function getMacAddress() - { - return $this->macAddress; - } - public function setManufactureDate($manufactureDate) - { - $this->manufactureDate = $manufactureDate; - } - public function getManufactureDate() - { - return $this->manufactureDate; - } - public function setMeid($meid) - { - $this->meid = $meid; - } - public function getMeid() - { - return $this->meid; - } - public function setModel($model) - { - $this->model = $model; - } - public function getModel() - { - return $this->model; - } - public function setNotes($notes) - { - $this->notes = $notes; - } - public function getNotes() - { - return $this->notes; - } - public function setOrderNumber($orderNumber) - { - $this->orderNumber = $orderNumber; - } - public function getOrderNumber() - { - return $this->orderNumber; - } - public function setOrgUnitPath($orgUnitPath) - { - $this->orgUnitPath = $orgUnitPath; - } - public function getOrgUnitPath() - { - return $this->orgUnitPath; - } - public function setOsVersion($osVersion) - { - $this->osVersion = $osVersion; - } - public function getOsVersion() - { - return $this->osVersion; - } - public function setPlatformVersion($platformVersion) - { - $this->platformVersion = $platformVersion; - } - public function getPlatformVersion() - { - return $this->platformVersion; - } - /** - * @param Google_Service_Directory_ChromeOsDeviceRecentUsers - */ - public function setRecentUsers($recentUsers) - { - $this->recentUsers = $recentUsers; - } - /** - * @return Google_Service_Directory_ChromeOsDeviceRecentUsers - */ - public function getRecentUsers() - { - return $this->recentUsers; - } - public function setSerialNumber($serialNumber) - { - $this->serialNumber = $serialNumber; - } - public function getSerialNumber() - { - return $this->serialNumber; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setSupportEndDate($supportEndDate) - { - $this->supportEndDate = $supportEndDate; - } - public function getSupportEndDate() - { - 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 - */ - public function setTpmVersionInfo(Google_Service_Directory_ChromeOsDeviceTpmVersionInfo $tpmVersionInfo) - { - $this->tpmVersionInfo = $tpmVersionInfo; - } - /** - * @return Google_Service_Directory_ChromeOsDeviceTpmVersionInfo - */ - public function getTpmVersionInfo() - { - return $this->tpmVersionInfo; - } - public function setWillAutoRenew($willAutoRenew) - { - $this->willAutoRenew = $willAutoRenew; - } - public function getWillAutoRenew() - { - return $this->willAutoRenew; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/ChromeOsDeviceAction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/ChromeOsDeviceAction.php deleted file mode 100644 index aab5010e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/ChromeOsDeviceAction.php +++ /dev/null @@ -1,39 +0,0 @@ -action = $action; - } - public function getAction() - { - return $this->action; - } - public function setDeprovisionReason($deprovisionReason) - { - $this->deprovisionReason = $deprovisionReason; - } - public function getDeprovisionReason() - { - return $this->deprovisionReason; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/ChromeOsDeviceActiveTimeRanges.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/ChromeOsDeviceActiveTimeRanges.php deleted file mode 100644 index b8870833..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/ChromeOsDeviceActiveTimeRanges.php +++ /dev/null @@ -1,39 +0,0 @@ -activeTime = $activeTime; - } - public function getActiveTime() - { - return $this->activeTime; - } - public function setDate($date) - { - $this->date = $date; - } - public function getDate() - { - return $this->date; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/ChromeOsDeviceCpuStatusReports.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/ChromeOsDeviceCpuStatusReports.php deleted file mode 100644 index ea43fee0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/ChromeOsDeviceCpuStatusReports.php +++ /dev/null @@ -1,56 +0,0 @@ -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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/ChromeOsDeviceCpuStatusReportsCpuTemperatureInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/ChromeOsDeviceCpuStatusReportsCpuTemperatureInfo.php deleted file mode 100644 index 0df536da..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/ChromeOsDeviceCpuStatusReportsCpuTemperatureInfo.php +++ /dev/null @@ -1,39 +0,0 @@ -label = $label; - } - public function getLabel() - { - return $this->label; - } - public function setTemperature($temperature) - { - $this->temperature = $temperature; - } - public function getTemperature() - { - return $this->temperature; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/ChromeOsDeviceDeviceFiles.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/ChromeOsDeviceDeviceFiles.php deleted file mode 100644 index e617a64c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/ChromeOsDeviceDeviceFiles.php +++ /dev/null @@ -1,57 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setDownloadUrl($downloadUrl) - { - $this->downloadUrl = $downloadUrl; - } - public function getDownloadUrl() - { - return $this->downloadUrl; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/ChromeOsDeviceDiskVolumeReports.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/ChromeOsDeviceDiskVolumeReports.php deleted file mode 100644 index f3cfac1f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/ChromeOsDeviceDiskVolumeReports.php +++ /dev/null @@ -1,38 +0,0 @@ -volumeInfo = $volumeInfo; - } - /** - * @return Google_Service_Directory_ChromeOsDeviceDiskVolumeReportsVolumeInfo - */ - public function getVolumeInfo() - { - return $this->volumeInfo; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/ChromeOsDeviceDiskVolumeReportsVolumeInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/ChromeOsDeviceDiskVolumeReportsVolumeInfo.php deleted file mode 100644 index 7a13c571..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/ChromeOsDeviceDiskVolumeReportsVolumeInfo.php +++ /dev/null @@ -1,48 +0,0 @@ -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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/ChromeOsDeviceRecentUsers.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/ChromeOsDeviceRecentUsers.php deleted file mode 100644 index 75df6e47..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/ChromeOsDeviceRecentUsers.php +++ /dev/null @@ -1,39 +0,0 @@ -email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/ChromeOsDeviceSystemRamFreeReports.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/ChromeOsDeviceSystemRamFreeReports.php deleted file mode 100644 index 437d88a1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/ChromeOsDeviceSystemRamFreeReports.php +++ /dev/null @@ -1,40 +0,0 @@ -reportTime = $reportTime; - } - public function getReportTime() - { - return $this->reportTime; - } - public function setSystemRamFreeInfo($systemRamFreeInfo) - { - $this->systemRamFreeInfo = $systemRamFreeInfo; - } - public function getSystemRamFreeInfo() - { - return $this->systemRamFreeInfo; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/ChromeOsDeviceTpmVersionInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/ChromeOsDeviceTpmVersionInfo.php deleted file mode 100644 index 1df14ea6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/ChromeOsDeviceTpmVersionInfo.php +++ /dev/null @@ -1,75 +0,0 @@ -family = $family; - } - public function getFamily() - { - return $this->family; - } - public function setFirmwareVersion($firmwareVersion) - { - $this->firmwareVersion = $firmwareVersion; - } - public function getFirmwareVersion() - { - return $this->firmwareVersion; - } - public function setManufacturer($manufacturer) - { - $this->manufacturer = $manufacturer; - } - public function getManufacturer() - { - return $this->manufacturer; - } - public function setSpecLevel($specLevel) - { - $this->specLevel = $specLevel; - } - public function getSpecLevel() - { - return $this->specLevel; - } - public function setTpmModel($tpmModel) - { - $this->tpmModel = $tpmModel; - } - public function getTpmModel() - { - return $this->tpmModel; - } - public function setVendorSpecific($vendorSpecific) - { - $this->vendorSpecific = $vendorSpecific; - } - public function getVendorSpecific() - { - return $this->vendorSpecific; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/ChromeOsDevices.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/ChromeOsDevices.php deleted file mode 100644 index c32e38f5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/ChromeOsDevices.php +++ /dev/null @@ -1,65 +0,0 @@ -chromeosdevices = $chromeosdevices; - } - /** - * @return Google_Service_Directory_ChromeOsDevice - */ - public function getChromeosdevices() - { - return $this->chromeosdevices; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/ChromeOsMoveDevicesToOu.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/ChromeOsMoveDevicesToOu.php deleted file mode 100644 index ffc832b3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/ChromeOsMoveDevicesToOu.php +++ /dev/null @@ -1,31 +0,0 @@ -deviceIds = $deviceIds; - } - public function getDeviceIds() - { - return $this->deviceIds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Customer.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Customer.php deleted file mode 100644 index c8c7b774..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Customer.php +++ /dev/null @@ -1,109 +0,0 @@ -alternateEmail = $alternateEmail; - } - public function getAlternateEmail() - { - return $this->alternateEmail; - } - public function setCustomerCreationTime($customerCreationTime) - { - $this->customerCreationTime = $customerCreationTime; - } - public function getCustomerCreationTime() - { - return $this->customerCreationTime; - } - public function setCustomerDomain($customerDomain) - { - $this->customerDomain = $customerDomain; - } - public function getCustomerDomain() - { - return $this->customerDomain; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - 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 setLanguage($language) - { - $this->language = $language; - } - public function getLanguage() - { - return $this->language; - } - public function setPhoneNumber($phoneNumber) - { - $this->phoneNumber = $phoneNumber; - } - public function getPhoneNumber() - { - return $this->phoneNumber; - } - /** - * @param Google_Service_Directory_CustomerPostalAddress - */ - public function setPostalAddress(Google_Service_Directory_CustomerPostalAddress $postalAddress) - { - $this->postalAddress = $postalAddress; - } - /** - * @return Google_Service_Directory_CustomerPostalAddress - */ - public function getPostalAddress() - { - return $this->postalAddress; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/CustomerPostalAddress.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/CustomerPostalAddress.php deleted file mode 100644 index 7954a451..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/CustomerPostalAddress.php +++ /dev/null @@ -1,102 +0,0 @@ -addressLine1 = $addressLine1; - } - public function getAddressLine1() - { - return $this->addressLine1; - } - public function setAddressLine2($addressLine2) - { - $this->addressLine2 = $addressLine2; - } - public function getAddressLine2() - { - return $this->addressLine2; - } - public function setAddressLine3($addressLine3) - { - $this->addressLine3 = $addressLine3; - } - public function getAddressLine3() - { - return $this->addressLine3; - } - public function setContactName($contactName) - { - $this->contactName = $contactName; - } - public function getContactName() - { - return $this->contactName; - } - public function setCountryCode($countryCode) - { - $this->countryCode = $countryCode; - } - public function getCountryCode() - { - return $this->countryCode; - } - public function setLocality($locality) - { - $this->locality = $locality; - } - public function getLocality() - { - return $this->locality; - } - public function setOrganizationName($organizationName) - { - $this->organizationName = $organizationName; - } - public function getOrganizationName() - { - return $this->organizationName; - } - public function setPostalCode($postalCode) - { - $this->postalCode = $postalCode; - } - public function getPostalCode() - { - return $this->postalCode; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/DomainAlias.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/DomainAlias.php deleted file mode 100644 index 1ce9975e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/DomainAlias.php +++ /dev/null @@ -1,75 +0,0 @@ -creationTime = $creationTime; - } - public function getCreationTime() - { - return $this->creationTime; - } - public function setDomainAliasName($domainAliasName) - { - $this->domainAliasName = $domainAliasName; - } - public function getDomainAliasName() - { - return $this->domainAliasName; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setParentDomainName($parentDomainName) - { - $this->parentDomainName = $parentDomainName; - } - public function getParentDomainName() - { - return $this->parentDomainName; - } - public function setVerified($verified) - { - $this->verified = $verified; - } - public function getVerified() - { - return $this->verified; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/DomainAliases.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/DomainAliases.php deleted file mode 100644 index db23d3b3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/DomainAliases.php +++ /dev/null @@ -1,56 +0,0 @@ -domainAliases = $domainAliases; - } - /** - * @return Google_Service_Directory_DomainAlias - */ - public function getDomainAliases() - { - return $this->domainAliases; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Domains.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Domains.php deleted file mode 100644 index d894bd07..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Domains.php +++ /dev/null @@ -1,92 +0,0 @@ -creationTime = $creationTime; - } - public function getCreationTime() - { - return $this->creationTime; - } - /** - * @param Google_Service_Directory_DomainAlias - */ - public function setDomainAliases($domainAliases) - { - $this->domainAliases = $domainAliases; - } - /** - * @return Google_Service_Directory_DomainAlias - */ - public function getDomainAliases() - { - return $this->domainAliases; - } - public function setDomainName($domainName) - { - $this->domainName = $domainName; - } - public function getDomainName() - { - return $this->domainName; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setIsPrimary($isPrimary) - { - $this->isPrimary = $isPrimary; - } - public function getIsPrimary() - { - return $this->isPrimary; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setVerified($verified) - { - $this->verified = $verified; - } - public function getVerified() - { - return $this->verified; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Domains2.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Domains2.php deleted file mode 100644 index 5264ed5c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Domains2.php +++ /dev/null @@ -1,56 +0,0 @@ -domains = $domains; - } - /** - * @return Google_Service_Directory_Domains - */ - public function getDomains() - { - return $this->domains; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Feature.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Feature.php deleted file mode 100644 index 3030b27c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Feature.php +++ /dev/null @@ -1,48 +0,0 @@ -etags = $etags; - } - public function getEtags() - { - return $this->etags; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/FeatureInstance.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/FeatureInstance.php deleted file mode 100644 index 736eccbe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/FeatureInstance.php +++ /dev/null @@ -1,37 +0,0 @@ -feature = $feature; - } - /** - * @return Google_Service_Directory_Feature - */ - public function getFeature() - { - return $this->feature; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/FeatureRename.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/FeatureRename.php deleted file mode 100644 index 18462de8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/FeatureRename.php +++ /dev/null @@ -1,30 +0,0 @@ -newName = $newName; - } - public function getNewName() - { - return $this->newName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Features.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Features.php deleted file mode 100644 index 2f500220..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Features.php +++ /dev/null @@ -1,65 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_Directory_Feature - */ - public function setFeatures($features) - { - $this->features = $features; - } - /** - * @return Google_Service_Directory_Feature - */ - public function getFeatures() - { - return $this->features; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Group.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Group.php deleted file mode 100644 index ae9a8161..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Group.php +++ /dev/null @@ -1,112 +0,0 @@ -adminCreated = $adminCreated; - } - public function getAdminCreated() - { - return $this->adminCreated; - } - public function setAliases($aliases) - { - $this->aliases = $aliases; - } - public function getAliases() - { - return $this->aliases; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDirectMembersCount($directMembersCount) - { - $this->directMembersCount = $directMembersCount; - } - public function getDirectMembersCount() - { - return $this->directMembersCount; - } - public function setEmail($email) - { - $this->email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNonEditableAliases($nonEditableAliases) - { - $this->nonEditableAliases = $nonEditableAliases; - } - public function getNonEditableAliases() - { - return $this->nonEditableAliases; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Groups.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Groups.php deleted file mode 100644 index 0d4b672a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Groups.php +++ /dev/null @@ -1,65 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_Directory_Group - */ - public function setGroups($groups) - { - $this->groups = $groups; - } - /** - * @return Google_Service_Directory_Group - */ - public function getGroups() - { - return $this->groups; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Member.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Member.php deleted file mode 100644 index 210fc2d9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Member.php +++ /dev/null @@ -1,96 +0,0 @@ - "delivery_settings", - ); - public $deliverySettings; - public $email; - public $etag; - public $id; - public $kind; - public $role; - public $status; - public $type; - - public function setDeliverySettings($deliverySettings) - { - $this->deliverySettings = $deliverySettings; - } - public function getDeliverySettings() - { - return $this->deliverySettings; - } - public function setEmail($email) - { - $this->email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - 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 setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Members.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Members.php deleted file mode 100644 index f39b0419..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Members.php +++ /dev/null @@ -1,65 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Directory_Member - */ - public function setMembers($members) - { - $this->members = $members; - } - /** - * @return Google_Service_Directory_Member - */ - public function getMembers() - { - return $this->members; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/MembersHasMember.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/MembersHasMember.php deleted file mode 100644 index 052cc863..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/MembersHasMember.php +++ /dev/null @@ -1,30 +0,0 @@ -isMember = $isMember; - } - public function getIsMember() - { - return $this->isMember; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/MobileDevice.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/MobileDevice.php deleted file mode 100644 index a999b98a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/MobileDevice.php +++ /dev/null @@ -1,389 +0,0 @@ -adbStatus = $adbStatus; - } - public function getAdbStatus() - { - return $this->adbStatus; - } - /** - * @param Google_Service_Directory_MobileDeviceApplications - */ - public function setApplications($applications) - { - $this->applications = $applications; - } - /** - * @return Google_Service_Directory_MobileDeviceApplications - */ - public function getApplications() - { - return $this->applications; - } - public function setBasebandVersion($basebandVersion) - { - $this->basebandVersion = $basebandVersion; - } - public function getBasebandVersion() - { - return $this->basebandVersion; - } - public function setBootloaderVersion($bootloaderVersion) - { - $this->bootloaderVersion = $bootloaderVersion; - } - public function getBootloaderVersion() - { - return $this->bootloaderVersion; - } - public function setBrand($brand) - { - $this->brand = $brand; - } - public function getBrand() - { - return $this->brand; - } - public function setBuildNumber($buildNumber) - { - $this->buildNumber = $buildNumber; - } - public function getBuildNumber() - { - return $this->buildNumber; - } - public function setDefaultLanguage($defaultLanguage) - { - $this->defaultLanguage = $defaultLanguage; - } - public function getDefaultLanguage() - { - return $this->defaultLanguage; - } - public function setDeveloperOptionsStatus($developerOptionsStatus) - { - $this->developerOptionsStatus = $developerOptionsStatus; - } - public function getDeveloperOptionsStatus() - { - return $this->developerOptionsStatus; - } - public function setDeviceCompromisedStatus($deviceCompromisedStatus) - { - $this->deviceCompromisedStatus = $deviceCompromisedStatus; - } - public function getDeviceCompromisedStatus() - { - return $this->deviceCompromisedStatus; - } - public function setDeviceId($deviceId) - { - $this->deviceId = $deviceId; - } - public function getDeviceId() - { - return $this->deviceId; - } - public function setDevicePasswordStatus($devicePasswordStatus) - { - $this->devicePasswordStatus = $devicePasswordStatus; - } - public function getDevicePasswordStatus() - { - return $this->devicePasswordStatus; - } - public function setEmail($email) - { - $this->email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setEncryptionStatus($encryptionStatus) - { - $this->encryptionStatus = $encryptionStatus; - } - public function getEncryptionStatus() - { - return $this->encryptionStatus; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setFirstSync($firstSync) - { - $this->firstSync = $firstSync; - } - public function getFirstSync() - { - return $this->firstSync; - } - public function setHardware($hardware) - { - $this->hardware = $hardware; - } - public function getHardware() - { - return $this->hardware; - } - public function setHardwareId($hardwareId) - { - $this->hardwareId = $hardwareId; - } - public function getHardwareId() - { - return $this->hardwareId; - } - public function setImei($imei) - { - $this->imei = $imei; - } - public function getImei() - { - return $this->imei; - } - public function setKernelVersion($kernelVersion) - { - $this->kernelVersion = $kernelVersion; - } - public function getKernelVersion() - { - return $this->kernelVersion; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLastSync($lastSync) - { - $this->lastSync = $lastSync; - } - public function getLastSync() - { - return $this->lastSync; - } - public function setManagedAccountIsOnOwnerProfile($managedAccountIsOnOwnerProfile) - { - $this->managedAccountIsOnOwnerProfile = $managedAccountIsOnOwnerProfile; - } - public function getManagedAccountIsOnOwnerProfile() - { - return $this->managedAccountIsOnOwnerProfile; - } - public function setManufacturer($manufacturer) - { - $this->manufacturer = $manufacturer; - } - public function getManufacturer() - { - return $this->manufacturer; - } - public function setMeid($meid) - { - $this->meid = $meid; - } - public function getMeid() - { - return $this->meid; - } - public function setModel($model) - { - $this->model = $model; - } - public function getModel() - { - return $this->model; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNetworkOperator($networkOperator) - { - $this->networkOperator = $networkOperator; - } - public function getNetworkOperator() - { - return $this->networkOperator; - } - public function setOs($os) - { - $this->os = $os; - } - public function getOs() - { - return $this->os; - } - public function setOtherAccountsInfo($otherAccountsInfo) - { - $this->otherAccountsInfo = $otherAccountsInfo; - } - public function getOtherAccountsInfo() - { - return $this->otherAccountsInfo; - } - public function setPrivilege($privilege) - { - $this->privilege = $privilege; - } - public function getPrivilege() - { - return $this->privilege; - } - public function setReleaseVersion($releaseVersion) - { - $this->releaseVersion = $releaseVersion; - } - public function getReleaseVersion() - { - return $this->releaseVersion; - } - public function setResourceId($resourceId) - { - $this->resourceId = $resourceId; - } - public function getResourceId() - { - return $this->resourceId; - } - public function setSecurityPatchLevel($securityPatchLevel) - { - $this->securityPatchLevel = $securityPatchLevel; - } - public function getSecurityPatchLevel() - { - return $this->securityPatchLevel; - } - public function setSerialNumber($serialNumber) - { - $this->serialNumber = $serialNumber; - } - public function getSerialNumber() - { - return $this->serialNumber; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setSupportsWorkProfile($supportsWorkProfile) - { - $this->supportsWorkProfile = $supportsWorkProfile; - } - public function getSupportsWorkProfile() - { - return $this->supportsWorkProfile; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setUnknownSourcesStatus($unknownSourcesStatus) - { - $this->unknownSourcesStatus = $unknownSourcesStatus; - } - public function getUnknownSourcesStatus() - { - return $this->unknownSourcesStatus; - } - public function setUserAgent($userAgent) - { - $this->userAgent = $userAgent; - } - public function getUserAgent() - { - return $this->userAgent; - } - public function setWifiMacAddress($wifiMacAddress) - { - $this->wifiMacAddress = $wifiMacAddress; - } - public function getWifiMacAddress() - { - return $this->wifiMacAddress; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/MobileDeviceAction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/MobileDeviceAction.php deleted file mode 100644 index 904480c7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/MobileDeviceAction.php +++ /dev/null @@ -1,30 +0,0 @@ -action = $action; - } - public function getAction() - { - return $this->action; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/MobileDeviceApplications.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/MobileDeviceApplications.php deleted file mode 100644 index 254cb047..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/MobileDeviceApplications.php +++ /dev/null @@ -1,67 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setPackageName($packageName) - { - $this->packageName = $packageName; - } - public function getPackageName() - { - return $this->packageName; - } - public function setPermission($permission) - { - $this->permission = $permission; - } - public function getPermission() - { - return $this->permission; - } - public function setVersionCode($versionCode) - { - $this->versionCode = $versionCode; - } - public function getVersionCode() - { - return $this->versionCode; - } - public function setVersionName($versionName) - { - $this->versionName = $versionName; - } - public function getVersionName() - { - return $this->versionName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/MobileDevices.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/MobileDevices.php deleted file mode 100644 index 2b250316..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/MobileDevices.php +++ /dev/null @@ -1,65 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Directory_MobileDevice - */ - public function setMobiledevices($mobiledevices) - { - $this->mobiledevices = $mobiledevices; - } - /** - * @return Google_Service_Directory_MobileDevice - */ - public function getMobiledevices() - { - return $this->mobiledevices; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Notification.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Notification.php deleted file mode 100644 index 3a430362..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Notification.php +++ /dev/null @@ -1,93 +0,0 @@ -body = $body; - } - public function getBody() - { - return $this->body; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setFromAddress($fromAddress) - { - $this->fromAddress = $fromAddress; - } - public function getFromAddress() - { - return $this->fromAddress; - } - public function setIsUnread($isUnread) - { - $this->isUnread = $isUnread; - } - public function getIsUnread() - { - return $this->isUnread; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNotificationId($notificationId) - { - $this->notificationId = $notificationId; - } - public function getNotificationId() - { - return $this->notificationId; - } - public function setSendTime($sendTime) - { - $this->sendTime = $sendTime; - } - public function getSendTime() - { - return $this->sendTime; - } - public function setSubject($subject) - { - $this->subject = $subject; - } - public function getSubject() - { - return $this->subject; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Notifications.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Notifications.php deleted file mode 100644 index 8e73592b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Notifications.php +++ /dev/null @@ -1,74 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_Directory_Notification - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Directory_Notification - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setUnreadNotificationsCount($unreadNotificationsCount) - { - $this->unreadNotificationsCount = $unreadNotificationsCount; - } - public function getUnreadNotificationsCount() - { - return $this->unreadNotificationsCount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/OrgUnit.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/OrgUnit.php deleted file mode 100644 index a8e6857a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/OrgUnit.php +++ /dev/null @@ -1,102 +0,0 @@ -blockInheritance = $blockInheritance; - } - public function getBlockInheritance() - { - return $this->blockInheritance; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOrgUnitId($orgUnitId) - { - $this->orgUnitId = $orgUnitId; - } - public function getOrgUnitId() - { - return $this->orgUnitId; - } - public function setOrgUnitPath($orgUnitPath) - { - $this->orgUnitPath = $orgUnitPath; - } - public function getOrgUnitPath() - { - return $this->orgUnitPath; - } - public function setParentOrgUnitId($parentOrgUnitId) - { - $this->parentOrgUnitId = $parentOrgUnitId; - } - public function getParentOrgUnitId() - { - return $this->parentOrgUnitId; - } - public function setParentOrgUnitPath($parentOrgUnitPath) - { - $this->parentOrgUnitPath = $parentOrgUnitPath; - } - public function getParentOrgUnitPath() - { - return $this->parentOrgUnitPath; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/OrgUnits.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/OrgUnits.php deleted file mode 100644 index db58ec60..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/OrgUnits.php +++ /dev/null @@ -1,56 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Directory_OrgUnit - */ - public function setOrganizationUnits($organizationUnits) - { - $this->organizationUnits = $organizationUnits; - } - /** - * @return Google_Service_Directory_OrgUnit - */ - public function getOrganizationUnits() - { - return $this->organizationUnits; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Privilege.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Privilege.php deleted file mode 100644 index 5372e999..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Privilege.php +++ /dev/null @@ -1,92 +0,0 @@ -childPrivileges = $childPrivileges; - } - /** - * @return Google_Service_Directory_Privilege - */ - public function getChildPrivileges() - { - return $this->childPrivileges; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setIsOuScopable($isOuScopable) - { - $this->isOuScopable = $isOuScopable; - } - public function getIsOuScopable() - { - return $this->isOuScopable; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setPrivilegeName($privilegeName) - { - $this->privilegeName = $privilegeName; - } - public function getPrivilegeName() - { - return $this->privilegeName; - } - public function setServiceId($serviceId) - { - $this->serviceId = $serviceId; - } - public function getServiceId() - { - return $this->serviceId; - } - public function setServiceName($serviceName) - { - $this->serviceName = $serviceName; - } - public function getServiceName() - { - return $this->serviceName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Privileges.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Privileges.php deleted file mode 100644 index 7022977b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Privileges.php +++ /dev/null @@ -1,56 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_Directory_Privilege - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Directory_Privilege - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/Asps.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/Asps.php deleted file mode 100644 index 03f18d48..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/Asps.php +++ /dev/null @@ -1,71 +0,0 @@ - - * $adminService = new Google_Service_Directory(...); - * $asps = $adminService->asps; - * - */ -class Google_Service_Directory_Resource_Asps extends Google_Service_Resource -{ - /** - * Delete an ASP issued by a user. (asps.delete) - * - * @param string $userKey Identifies the user in the API request. The value can - * be the user's primary email address, alias email address, or unique user ID. - * @param int $codeId The unique ID of the ASP to be deleted. - * @param array $optParams Optional parameters. - */ - public function delete($userKey, $codeId, $optParams = array()) - { - $params = array('userKey' => $userKey, 'codeId' => $codeId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Get information about an ASP issued by a user. (asps.get) - * - * @param string $userKey Identifies the user in the API request. The value can - * be the user's primary email address, alias email address, or unique user ID. - * @param int $codeId The unique ID of the ASP. - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_Asp - */ - public function get($userKey, $codeId, $optParams = array()) - { - $params = array('userKey' => $userKey, 'codeId' => $codeId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Directory_Asp"); - } - /** - * List the ASPs issued by a user. (asps.listAsps) - * - * @param string $userKey Identifies the user in the API request. The value can - * be the user's primary email address, alias email address, or unique user ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_Asps - */ - public function listAsps($userKey, $optParams = array()) - { - $params = array('userKey' => $userKey); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Directory_Asps"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/Channels.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/Channels.php deleted file mode 100644 index 90c657bb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/Channels.php +++ /dev/null @@ -1,40 +0,0 @@ - - * $adminService = new Google_Service_Directory(...); - * $channels = $adminService->channels; - * - */ -class Google_Service_Directory_Resource_Channels extends Google_Service_Resource -{ - /** - * Stop watching resources through this channel (channels.stop) - * - * @param Google_Service_Directory_Channel $postBody - * @param array $optParams Optional parameters. - */ - public function stop(Google_Service_Directory_Channel $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('stop', array($params)); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/Chromeosdevices.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/Chromeosdevices.php deleted file mode 100644 index 6a554d77..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/Chromeosdevices.php +++ /dev/null @@ -1,138 +0,0 @@ - - * $adminService = new Google_Service_Directory(...); - * $chromeosdevices = $adminService->chromeosdevices; - * - */ -class Google_Service_Directory_Resource_Chromeosdevices extends Google_Service_Resource -{ - /** - * Take action on Chrome OS Device (chromeosdevices.action) - * - * @param string $customerId Immutable ID of the G Suite account - * @param string $resourceId Immutable ID of Chrome OS Device - * @param Google_Service_Directory_ChromeOsDeviceAction $postBody - * @param array $optParams Optional parameters. - */ - public function action($customerId, $resourceId, Google_Service_Directory_ChromeOsDeviceAction $postBody, $optParams = array()) - { - $params = array('customerId' => $customerId, 'resourceId' => $resourceId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('action', array($params)); - } - /** - * Retrieve Chrome OS Device (chromeosdevices.get) - * - * @param string $customerId Immutable ID of the G Suite account - * @param string $deviceId Immutable ID of Chrome OS Device - * @param array $optParams Optional parameters. - * - * @opt_param string projection Restrict information returned to a set of - * selected fields. - * @return Google_Service_Directory_ChromeOsDevice - */ - public function get($customerId, $deviceId, $optParams = array()) - { - $params = array('customerId' => $customerId, 'deviceId' => $deviceId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Directory_ChromeOsDevice"); - } - /** - * Retrieve all Chrome OS Devices of a customer (paginated) - * (chromeosdevices.listChromeosdevices) - * - * @param string $customerId Immutable ID of the G Suite account - * @param array $optParams Optional parameters. - * - * @opt_param int maxResults Maximum number of results to return. Max allowed - * value is 200. - * @opt_param string orderBy Column to use for sorting results - * @opt_param string orgUnitPath Full path of the organizational unit or its ID - * @opt_param string pageToken Token to specify next page in the list - * @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?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 - */ - public function listChromeosdevices($customerId, $optParams = array()) - { - $params = array('customerId' => $customerId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Directory_ChromeOsDevices"); - } - /** - * Move or insert multiple Chrome OS Devices to organizational unit - * (chromeosdevices.moveDevicesToOu) - * - * @param string $customerId Immutable ID of the G Suite account - * @param string $orgUnitPath Full path of the target organizational unit or its - * ID - * @param Google_Service_Directory_ChromeOsMoveDevicesToOu $postBody - * @param array $optParams Optional parameters. - */ - public function moveDevicesToOu($customerId, $orgUnitPath, Google_Service_Directory_ChromeOsMoveDevicesToOu $postBody, $optParams = array()) - { - $params = array('customerId' => $customerId, 'orgUnitPath' => $orgUnitPath, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('moveDevicesToOu', array($params)); - } - /** - * Update Chrome OS Device. This method supports patch semantics. - * (chromeosdevices.patch) - * - * @param string $customerId Immutable ID of the G Suite account - * @param string $deviceId Immutable ID of Chrome OS Device - * @param Google_Service_Directory_ChromeOsDevice $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string projection Restrict information returned to a set of - * selected fields. - * @return Google_Service_Directory_ChromeOsDevice - */ - public function patch($customerId, $deviceId, Google_Service_Directory_ChromeOsDevice $postBody, $optParams = array()) - { - $params = array('customerId' => $customerId, 'deviceId' => $deviceId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Directory_ChromeOsDevice"); - } - /** - * Update Chrome OS Device (chromeosdevices.update) - * - * @param string $customerId Immutable ID of the G Suite account - * @param string $deviceId Immutable ID of Chrome OS Device - * @param Google_Service_Directory_ChromeOsDevice $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string projection Restrict information returned to a set of - * selected fields. - * @return Google_Service_Directory_ChromeOsDevice - */ - public function update($customerId, $deviceId, Google_Service_Directory_ChromeOsDevice $postBody, $optParams = array()) - { - $params = array('customerId' => $customerId, 'deviceId' => $deviceId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Directory_ChromeOsDevice"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/Customers.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/Customers.php deleted file mode 100644 index b7300f85..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/Customers.php +++ /dev/null @@ -1,69 +0,0 @@ - - * $adminService = new Google_Service_Directory(...); - * $customers = $adminService->customers; - * - */ -class Google_Service_Directory_Resource_Customers extends Google_Service_Resource -{ - /** - * Retrieves a customer. (customers.get) - * - * @param string $customerKey Id of the customer to be retrieved - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_Customer - */ - public function get($customerKey, $optParams = array()) - { - $params = array('customerKey' => $customerKey); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Directory_Customer"); - } - /** - * Updates a customer. This method supports patch semantics. (customers.patch) - * - * @param string $customerKey Id of the customer to be updated - * @param Google_Service_Directory_Customer $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_Customer - */ - public function patch($customerKey, Google_Service_Directory_Customer $postBody, $optParams = array()) - { - $params = array('customerKey' => $customerKey, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Directory_Customer"); - } - /** - * Updates a customer. (customers.update) - * - * @param string $customerKey Id of the customer to be updated - * @param Google_Service_Directory_Customer $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_Customer - */ - public function update($customerKey, Google_Service_Directory_Customer $postBody, $optParams = array()) - { - $params = array('customerKey' => $customerKey, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Directory_Customer"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/DomainAliases.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/DomainAliases.php deleted file mode 100644 index 866a87dd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/DomainAliases.php +++ /dev/null @@ -1,85 +0,0 @@ - - * $adminService = new Google_Service_Directory(...); - * $domainAliases = $adminService->domainAliases; - * - */ -class Google_Service_Directory_Resource_DomainAliases extends Google_Service_Resource -{ - /** - * Deletes a Domain Alias of the customer. (domainAliases.delete) - * - * @param string $customer Immutable ID of the G Suite account. - * @param string $domainAliasName Name of domain alias to be retrieved. - * @param array $optParams Optional parameters. - */ - public function delete($customer, $domainAliasName, $optParams = array()) - { - $params = array('customer' => $customer, 'domainAliasName' => $domainAliasName); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Retrieves a domain alias of the customer. (domainAliases.get) - * - * @param string $customer Immutable ID of the G Suite account. - * @param string $domainAliasName Name of domain alias to be retrieved. - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_DomainAlias - */ - public function get($customer, $domainAliasName, $optParams = array()) - { - $params = array('customer' => $customer, 'domainAliasName' => $domainAliasName); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Directory_DomainAlias"); - } - /** - * Inserts a Domain alias of the customer. (domainAliases.insert) - * - * @param string $customer Immutable ID of the G Suite account. - * @param Google_Service_Directory_DomainAlias $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_DomainAlias - */ - public function insert($customer, Google_Service_Directory_DomainAlias $postBody, $optParams = array()) - { - $params = array('customer' => $customer, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Directory_DomainAlias"); - } - /** - * Lists the domain aliases of the customer. (domainAliases.listDomainAliases) - * - * @param string $customer Immutable ID of the G Suite account. - * @param array $optParams Optional parameters. - * - * @opt_param string parentDomainName Name of the parent domain for which domain - * aliases are to be fetched. - * @return Google_Service_Directory_DomainAliases - */ - public function listDomainAliases($customer, $optParams = array()) - { - $params = array('customer' => $customer); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Directory_DomainAliases"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/Domains.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/Domains.php deleted file mode 100644 index 9b3f3341..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/Domains.php +++ /dev/null @@ -1,82 +0,0 @@ - - * $adminService = new Google_Service_Directory(...); - * $domains = $adminService->domains; - * - */ -class Google_Service_Directory_Resource_Domains extends Google_Service_Resource -{ - /** - * Deletes a domain of the customer. (domains.delete) - * - * @param string $customer Immutable ID of the G Suite account. - * @param string $domainName Name of domain to be deleted - * @param array $optParams Optional parameters. - */ - public function delete($customer, $domainName, $optParams = array()) - { - $params = array('customer' => $customer, 'domainName' => $domainName); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Retrieves a domain of the customer. (domains.get) - * - * @param string $customer Immutable ID of the G Suite account. - * @param string $domainName Name of domain to be retrieved - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_Domains - */ - public function get($customer, $domainName, $optParams = array()) - { - $params = array('customer' => $customer, 'domainName' => $domainName); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Directory_Domains"); - } - /** - * Inserts a domain of the customer. (domains.insert) - * - * @param string $customer Immutable ID of the G Suite account. - * @param Google_Service_Directory_Domains $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_Domains - */ - public function insert($customer, Google_Service_Directory_Domains $postBody, $optParams = array()) - { - $params = array('customer' => $customer, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Directory_Domains"); - } - /** - * Lists the domains of the customer. (domains.listDomains) - * - * @param string $customer Immutable ID of the G Suite account. - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_Domains2 - */ - public function listDomains($customer, $optParams = array()) - { - $params = array('customer' => $customer); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Directory_Domains2"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/Groups.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/Groups.php deleted file mode 100644 index a146d603..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/Groups.php +++ /dev/null @@ -1,128 +0,0 @@ - - * $adminService = new Google_Service_Directory(...); - * $groups = $adminService->groups; - * - */ -class Google_Service_Directory_Resource_Groups extends Google_Service_Resource -{ - /** - * Delete Group (groups.delete) - * - * @param string $groupKey Email or immutable ID of the group - * @param array $optParams Optional parameters. - */ - public function delete($groupKey, $optParams = array()) - { - $params = array('groupKey' => $groupKey); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Retrieve Group (groups.get) - * - * @param string $groupKey Email or immutable ID of the group - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_Group - */ - public function get($groupKey, $optParams = array()) - { - $params = array('groupKey' => $groupKey); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Directory_Group"); - } - /** - * Create Group (groups.insert) - * - * @param Google_Service_Directory_Group $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_Group - */ - public function insert(Google_Service_Directory_Group $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Directory_Group"); - } - /** - * Retrieve all groups of a domain or of a user given a userKey (paginated) - * (groups.listGroups) - * - * @param array $optParams Optional parameters. - * - * @opt_param string customer Immutable ID of the G Suite account. In case of - * multi-domain, to fetch all groups for a customer, fill this field instead of - * domain. - * @opt_param string domain Name of the domain. Fill this field to get groups - * 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. Max allowed - * value 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 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 it's an ID, it - * should match with the ID of the user object. - * @return Google_Service_Directory_Groups - */ - public function listGroups($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Directory_Groups"); - } - /** - * Update Group. This method supports patch semantics. (groups.patch) - * - * @param string $groupKey Email or immutable ID of the group. If ID, it should - * match with id of group object - * @param Google_Service_Directory_Group $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_Group - */ - public function patch($groupKey, Google_Service_Directory_Group $postBody, $optParams = array()) - { - $params = array('groupKey' => $groupKey, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Directory_Group"); - } - /** - * Update Group (groups.update) - * - * @param string $groupKey Email or immutable ID of the group. If ID, it should - * match with id of group object - * @param Google_Service_Directory_Group $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_Group - */ - public function update($groupKey, Google_Service_Directory_Group $postBody, $optParams = array()) - { - $params = array('groupKey' => $groupKey, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Directory_Group"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/GroupsAliases.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/GroupsAliases.php deleted file mode 100644 index f52ce0eb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/GroupsAliases.php +++ /dev/null @@ -1,68 +0,0 @@ - - * $adminService = new Google_Service_Directory(...); - * $aliases = $adminService->aliases; - * - */ -class Google_Service_Directory_Resource_GroupsAliases extends Google_Service_Resource -{ - /** - * Remove a alias for the group (aliases.delete) - * - * @param string $groupKey Email or immutable ID of the group - * @param string $alias The alias to be removed - * @param array $optParams Optional parameters. - */ - public function delete($groupKey, $alias, $optParams = array()) - { - $params = array('groupKey' => $groupKey, 'alias' => $alias); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Add a alias for the group (aliases.insert) - * - * @param string $groupKey Email or immutable ID of the group - * @param Google_Service_Directory_Alias $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_Alias - */ - public function insert($groupKey, Google_Service_Directory_Alias $postBody, $optParams = array()) - { - $params = array('groupKey' => $groupKey, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Directory_Alias"); - } - /** - * List all aliases for a group (aliases.listGroupsAliases) - * - * @param string $groupKey Email or immutable ID of the group - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_Aliases - */ - public function listGroupsAliases($groupKey, $optParams = array()) - { - $params = array('groupKey' => $groupKey); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Directory_Aliases"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/Members.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/Members.php deleted file mode 100644 index 3916029c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/Members.php +++ /dev/null @@ -1,142 +0,0 @@ - - * $adminService = new Google_Service_Directory(...); - * $members = $adminService->members; - * - */ -class Google_Service_Directory_Resource_Members extends Google_Service_Resource -{ - /** - * Remove membership. (members.delete) - * - * @param string $groupKey Email or immutable ID of the group - * @param string $memberKey Email or immutable ID of the member - * @param array $optParams Optional parameters. - */ - public function delete($groupKey, $memberKey, $optParams = array()) - { - $params = array('groupKey' => $groupKey, 'memberKey' => $memberKey); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Retrieve Group Member (members.get) - * - * @param string $groupKey Email or immutable ID of the group - * @param string $memberKey Email or immutable ID of the member - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_Member - */ - public function get($groupKey, $memberKey, $optParams = array()) - { - $params = array('groupKey' => $groupKey, 'memberKey' => $memberKey); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Directory_Member"); - } - /** - * Checks whether the given user is a member of the group. Membership can be - * direct or nested. (members.hasMember) - * - * @param string $groupKey Identifies the group in the API request. The value - * can be the group's email address, group alias, or the unique group ID. - * @param string $memberKey Identifies the user member in the API request. The - * value can be the user's primary email address, alias, or unique ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_MembersHasMember - */ - public function hasMember($groupKey, $memberKey, $optParams = array()) - { - $params = array('groupKey' => $groupKey, 'memberKey' => $memberKey); - $params = array_merge($params, $optParams); - return $this->call('hasMember', array($params), "Google_Service_Directory_MembersHasMember"); - } - /** - * Add user to the specified group. (members.insert) - * - * @param string $groupKey Email or immutable ID of the group - * @param Google_Service_Directory_Member $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_Member - */ - public function insert($groupKey, Google_Service_Directory_Member $postBody, $optParams = array()) - { - $params = array('groupKey' => $groupKey, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Directory_Member"); - } - /** - * Retrieve all members in a group (paginated) (members.listMembers) - * - * @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. Max allowed - * value 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 - * on. - * @return Google_Service_Directory_Members - */ - public function listMembers($groupKey, $optParams = array()) - { - $params = array('groupKey' => $groupKey); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Directory_Members"); - } - /** - * Update membership of a user in the specified group. This method supports - * patch semantics. (members.patch) - * - * @param string $groupKey Email or immutable ID of the group. If ID, it should - * match with id of group object - * @param string $memberKey Email or immutable ID of the user. If ID, it should - * match with id of member object - * @param Google_Service_Directory_Member $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_Member - */ - public function patch($groupKey, $memberKey, Google_Service_Directory_Member $postBody, $optParams = array()) - { - $params = array('groupKey' => $groupKey, 'memberKey' => $memberKey, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Directory_Member"); - } - /** - * Update membership of a user in the specified group. (members.update) - * - * @param string $groupKey Email or immutable ID of the group. If ID, it should - * match with id of group object - * @param string $memberKey Email or immutable ID of the user. If ID, it should - * match with id of member object - * @param Google_Service_Directory_Member $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_Member - */ - public function update($groupKey, $memberKey, Google_Service_Directory_Member $postBody, $optParams = array()) - { - $params = array('groupKey' => $groupKey, 'memberKey' => $memberKey, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Directory_Member"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/Mobiledevices.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/Mobiledevices.php deleted file mode 100644 index fcfed563..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/Mobiledevices.php +++ /dev/null @@ -1,97 +0,0 @@ - - * $adminService = new Google_Service_Directory(...); - * $mobiledevices = $adminService->mobiledevices; - * - */ -class Google_Service_Directory_Resource_Mobiledevices extends Google_Service_Resource -{ - /** - * Take action on Mobile Device (mobiledevices.action) - * - * @param string $customerId Immutable ID of the G Suite account - * @param string $resourceId Immutable ID of Mobile Device - * @param Google_Service_Directory_MobileDeviceAction $postBody - * @param array $optParams Optional parameters. - */ - public function action($customerId, $resourceId, Google_Service_Directory_MobileDeviceAction $postBody, $optParams = array()) - { - $params = array('customerId' => $customerId, 'resourceId' => $resourceId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('action', array($params)); - } - /** - * Delete Mobile Device (mobiledevices.delete) - * - * @param string $customerId Immutable ID of the G Suite account - * @param string $resourceId Immutable ID of Mobile Device - * @param array $optParams Optional parameters. - */ - public function delete($customerId, $resourceId, $optParams = array()) - { - $params = array('customerId' => $customerId, 'resourceId' => $resourceId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Retrieve Mobile Device (mobiledevices.get) - * - * @param string $customerId Immutable ID of the G Suite account - * @param string $resourceId Immutable ID of Mobile Device - * @param array $optParams Optional parameters. - * - * @opt_param string projection Restrict information returned to a set of - * selected fields. - * @return Google_Service_Directory_MobileDevice - */ - public function get($customerId, $resourceId, $optParams = array()) - { - $params = array('customerId' => $customerId, 'resourceId' => $resourceId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Directory_MobileDevice"); - } - /** - * Retrieve all Mobile Devices of a customer (paginated) - * (mobiledevices.listMobiledevices) - * - * @param string $customerId Immutable ID of the G Suite account - * @param array $optParams Optional parameters. - * - * @opt_param int maxResults Maximum number of results to return. Max allowed - * value is 100. - * @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 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?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 - */ - public function listMobiledevices($customerId, $optParams = array()) - { - $params = array('customerId' => $customerId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Directory_MobileDevices"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/Notifications.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/Notifications.php deleted file mode 100644 index 4956072d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/Notifications.php +++ /dev/null @@ -1,108 +0,0 @@ - - * $adminService = new Google_Service_Directory(...); - * $notifications = $adminService->notifications; - * - */ -class Google_Service_Directory_Resource_Notifications extends Google_Service_Resource -{ - /** - * Deletes a notification (notifications.delete) - * - * @param string $customer The unique ID for the customer's G Suite account. The - * customerId is also returned as part of the Users resource. - * @param string $notificationId The unique ID of the notification. - * @param array $optParams Optional parameters. - */ - public function delete($customer, $notificationId, $optParams = array()) - { - $params = array('customer' => $customer, 'notificationId' => $notificationId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Retrieves a notification. (notifications.get) - * - * @param string $customer The unique ID for the customer's G Suite account. The - * customerId is also returned as part of the Users resource. - * @param string $notificationId The unique ID of the notification. - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_Notification - */ - public function get($customer, $notificationId, $optParams = array()) - { - $params = array('customer' => $customer, 'notificationId' => $notificationId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Directory_Notification"); - } - /** - * Retrieves a list of notifications. (notifications.listNotifications) - * - * @param string $customer The unique ID for the customer's G Suite account. - * @param array $optParams Optional parameters. - * - * @opt_param string language The ISO 639-1 code of the language notifications - * are returned in. The default is English (en). - * @opt_param string maxResults Maximum number of notifications to return per - * page. The default is 100. - * @opt_param string pageToken The token to specify the page of results to - * retrieve. - * @return Google_Service_Directory_Notifications - */ - public function listNotifications($customer, $optParams = array()) - { - $params = array('customer' => $customer); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Directory_Notifications"); - } - /** - * Updates a notification. This method supports patch semantics. - * (notifications.patch) - * - * @param string $customer The unique ID for the customer's G Suite account. - * @param string $notificationId The unique ID of the notification. - * @param Google_Service_Directory_Notification $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_Notification - */ - public function patch($customer, $notificationId, Google_Service_Directory_Notification $postBody, $optParams = array()) - { - $params = array('customer' => $customer, 'notificationId' => $notificationId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Directory_Notification"); - } - /** - * Updates a notification. (notifications.update) - * - * @param string $customer The unique ID for the customer's G Suite account. - * @param string $notificationId The unique ID of the notification. - * @param Google_Service_Directory_Notification $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_Notification - */ - public function update($customer, $notificationId, Google_Service_Directory_Notification $postBody, $optParams = array()) - { - $params = array('customer' => $customer, 'notificationId' => $notificationId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Directory_Notification"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/Orgunits.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/Orgunits.php deleted file mode 100644 index 0af3fc30..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/Orgunits.php +++ /dev/null @@ -1,122 +0,0 @@ - - * $adminService = new Google_Service_Directory(...); - * $orgunits = $adminService->orgunits; - * - */ -class Google_Service_Directory_Resource_Orgunits extends Google_Service_Resource -{ - /** - * Remove organizational unit (orgunits.delete) - * - * @param string $customerId Immutable ID of the G Suite account - * @param string|array $orgUnitPath Full path of the organizational unit or its - * ID - * @param array $optParams Optional parameters. - */ - public function delete($customerId, $orgUnitPath, $optParams = array()) - { - $params = array('customerId' => $customerId, 'orgUnitPath' => $orgUnitPath); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Retrieve organizational unit (orgunits.get) - * - * @param string $customerId Immutable ID of the G Suite account - * @param string|array $orgUnitPath Full path of the organizational unit or its - * ID - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_OrgUnit - */ - public function get($customerId, $orgUnitPath, $optParams = array()) - { - $params = array('customerId' => $customerId, 'orgUnitPath' => $orgUnitPath); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Directory_OrgUnit"); - } - /** - * Add organizational unit (orgunits.insert) - * - * @param string $customerId Immutable ID of the G Suite account - * @param Google_Service_Directory_OrgUnit $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_OrgUnit - */ - public function insert($customerId, Google_Service_Directory_OrgUnit $postBody, $optParams = array()) - { - $params = array('customerId' => $customerId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Directory_OrgUnit"); - } - /** - * Retrieve all organizational units (orgunits.listOrgunits) - * - * @param string $customerId Immutable ID of the G Suite account - * @param array $optParams Optional parameters. - * - * @opt_param string orgUnitPath the URL-encoded organizational unit's path or - * its ID - * @opt_param string type Whether to return all sub-organizations or just - * immediate children - * @return Google_Service_Directory_OrgUnits - */ - public function listOrgunits($customerId, $optParams = array()) - { - $params = array('customerId' => $customerId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Directory_OrgUnits"); - } - /** - * Update organizational unit. This method supports patch semantics. - * (orgunits.patch) - * - * @param string $customerId Immutable ID of the G Suite account - * @param string|array $orgUnitPath Full path of the organizational unit or its - * ID - * @param Google_Service_Directory_OrgUnit $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_OrgUnit - */ - public function patch($customerId, $orgUnitPath, Google_Service_Directory_OrgUnit $postBody, $optParams = array()) - { - $params = array('customerId' => $customerId, 'orgUnitPath' => $orgUnitPath, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Directory_OrgUnit"); - } - /** - * Update organizational unit (orgunits.update) - * - * @param string $customerId Immutable ID of the G Suite account - * @param string|array $orgUnitPath Full path of the organizational unit or its - * ID - * @param Google_Service_Directory_OrgUnit $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_OrgUnit - */ - public function update($customerId, $orgUnitPath, Google_Service_Directory_OrgUnit $postBody, $optParams = array()) - { - $params = array('customerId' => $customerId, 'orgUnitPath' => $orgUnitPath, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Directory_OrgUnit"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/Privileges.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/Privileges.php deleted file mode 100644 index 3b0effd5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/Privileges.php +++ /dev/null @@ -1,42 +0,0 @@ - - * $adminService = new Google_Service_Directory(...); - * $privileges = $adminService->privileges; - * - */ -class Google_Service_Directory_Resource_Privileges extends Google_Service_Resource -{ - /** - * Retrieves a paginated list of all privileges for a customer. - * (privileges.listPrivileges) - * - * @param string $customer Immutable ID of the G Suite account. - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_Privileges - */ - public function listPrivileges($customer, $optParams = array()) - { - $params = array('customer' => $customer); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Directory_Privileges"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/ResolvedAppAccessSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/ResolvedAppAccessSettings.php deleted file mode 100644 index 08556227..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/ResolvedAppAccessSettings.php +++ /dev/null @@ -1,54 +0,0 @@ - - * $adminService = new Google_Service_Directory(...); - * $resolvedAppAccessSettings = $adminService->resolvedAppAccessSettings; - * - */ -class Google_Service_Directory_Resource_ResolvedAppAccessSettings extends Google_Service_Resource -{ - /** - * Retrieves resolved app access settings of the logged in user. - * (resolvedAppAccessSettings.GetSettings) - * - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_AppAccessCollections - */ - public function GetSettings($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('GetSettings', array($params), "Google_Service_Directory_AppAccessCollections"); - } - /** - * Retrieves the list of apps trusted by the admin of the logged in user. - * (resolvedAppAccessSettings.ListTrustedApps) - * - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_TrustedApps - */ - public function ListTrustedApps($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('ListTrustedApps', array($params), "Google_Service_Directory_TrustedApps"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/Resources.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/Resources.php deleted file mode 100644 index 290784c8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/Resources.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $adminService = new Google_Service_Directory(...); - * $resources = $adminService->resources; - * - */ -class Google_Service_Directory_Resource_Resources extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/ResourcesBuildings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/ResourcesBuildings.php deleted file mode 100644 index cf56c9e4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/ResourcesBuildings.php +++ /dev/null @@ -1,137 +0,0 @@ - - * $adminService = new Google_Service_Directory(...); - * $buildings = $adminService->buildings; - * - */ -class Google_Service_Directory_Resource_ResourcesBuildings extends Google_Service_Resource -{ - /** - * Deletes a building. (buildings.delete) - * - * @param string $customer The unique ID for the customer's G Suite account. As - * an account administrator, you can also use the my_customer alias to represent - * your account's customer ID. - * @param string $buildingId The ID of the building to delete. - * @param array $optParams Optional parameters. - */ - public function delete($customer, $buildingId, $optParams = array()) - { - $params = array('customer' => $customer, 'buildingId' => $buildingId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Retrieves a building. (buildings.get) - * - * @param string $customer The unique ID for the customer's G Suite account. As - * an account administrator, you can also use the my_customer alias to represent - * your account's customer ID. - * @param string $buildingId The unique ID of the building to retrieve. - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_Building - */ - public function get($customer, $buildingId, $optParams = array()) - { - $params = array('customer' => $customer, 'buildingId' => $buildingId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Directory_Building"); - } - /** - * Inserts a building. (buildings.insert) - * - * @param string $customer The unique ID for the customer's G Suite account. As - * an account administrator, you can also use the my_customer alias to represent - * 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()) - { - $params = array('customer' => $customer, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Directory_Building"); - } - /** - * Retrieves a list of buildings for an account. - * (buildings.listResourcesBuildings) - * - * @param string $customer The unique ID for the customer's G Suite account. As - * an account administrator, you can also use the my_customer alias to represent - * your account's customer ID. - * @param array $optParams Optional parameters. - * - * @opt_param int maxResults Maximum number of results to return. - * @opt_param string pageToken Token to specify the next page in the list. - * @return Google_Service_Directory_Buildings - */ - public function listResourcesBuildings($customer, $optParams = array()) - { - $params = array('customer' => $customer); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Directory_Buildings"); - } - /** - * Updates a building. This method supports patch semantics. (buildings.patch) - * - * @param string $customer The unique ID for the customer's G Suite account. As - * an account administrator, you can also use the my_customer alias to represent - * your account's customer ID. - * @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()) - { - $params = array('customer' => $customer, 'buildingId' => $buildingId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Directory_Building"); - } - /** - * Updates a building. (buildings.update) - * - * @param string $customer The unique ID for the customer's G Suite account. As - * an account administrator, you can also use the my_customer alias to represent - * your account's customer ID. - * @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()) - { - $params = array('customer' => $customer, 'buildingId' => $buildingId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Directory_Building"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/ResourcesCalendars.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/ResourcesCalendars.php deleted file mode 100644 index 620e4f0e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/ResourcesCalendars.php +++ /dev/null @@ -1,153 +0,0 @@ - - * $adminService = new Google_Service_Directory(...); - * $calendars = $adminService->calendars; - * - */ -class Google_Service_Directory_Resource_ResourcesCalendars extends Google_Service_Resource -{ - /** - * Deletes a calendar resource. (calendars.delete) - * - * @param string $customer The unique ID for the customer's G Suite account. As - * an account administrator, you can also use the my_customer alias to represent - * your account's customer ID. - * @param string $calendarResourceId The unique ID of the calendar resource to - * delete. - * @param array $optParams Optional parameters. - */ - public function delete($customer, $calendarResourceId, $optParams = array()) - { - $params = array('customer' => $customer, 'calendarResourceId' => $calendarResourceId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Retrieves a calendar resource. (calendars.get) - * - * @param string $customer The unique ID for the customer's G Suite account. As - * an account administrator, you can also use the my_customer alias to represent - * your account's customer ID. - * @param string $calendarResourceId The unique ID of the calendar resource to - * retrieve. - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_CalendarResource - */ - public function get($customer, $calendarResourceId, $optParams = array()) - { - $params = array('customer' => $customer, 'calendarResourceId' => $calendarResourceId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Directory_CalendarResource"); - } - /** - * Inserts a calendar resource. (calendars.insert) - * - * @param string $customer The unique ID for the customer's G Suite account. As - * an account administrator, you can also use the my_customer alias to represent - * your account's customer ID. - * @param Google_Service_Directory_CalendarResource $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_CalendarResource - */ - public function insert($customer, Google_Service_Directory_CalendarResource $postBody, $optParams = array()) - { - $params = array('customer' => $customer, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Directory_CalendarResource"); - } - /** - * Retrieves a list of calendar resources for an account. - * (calendars.listResourcesCalendars) - * - * @param string $customer The unique ID for the customer's G Suite account. As - * an account administrator, you can also use the my_customer alias to represent - * your account's customer ID. - * @param array $optParams Optional parameters. - * - * @opt_param int maxResults Maximum number of results to return. - * @opt_param string orderBy Field(s) to sort results by in either ascending or - * descending order. Supported fields include resourceId, resourceName, - * capacity, buildingId, and floorName. If no order is specified, defaults to - * ascending. Should be of the form "field [asc|desc], field [asc|desc], ...". - * For example buildingId, capacity desc would return results sorted first by - * buildingId in ascending order then by capacity in descending order. - * @opt_param string pageToken Token to specify the next page in the list. - * @opt_param string query String query used to filter results. Should be of the - * form "field operator value" where field can be any of supported fields and - * operators can be any of supported operations. Operators include '=' for exact - * match and ':' for prefix match or HAS match where applicable. For prefix - * match, the value should always be followed by a *. Supported fields include - * generatedResourceName, name, buildingId, featureInstances.feature.name. For - * example buildingId=US-NYC-9TH AND featureInstances.feature.name:Phone. - * @return Google_Service_Directory_CalendarResources - */ - public function listResourcesCalendars($customer, $optParams = array()) - { - $params = array('customer' => $customer); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Directory_CalendarResources"); - } - /** - * Updates a calendar resource. - * - * This method supports patch semantics, meaning you only need to include the - * fields you wish to update. Fields that are not present in the request will be - * preserved. This method supports patch semantics. (calendars.patch) - * - * @param string $customer The unique ID for the customer's G Suite account. As - * an account administrator, you can also use the my_customer alias to represent - * your account's customer ID. - * @param string $calendarResourceId The unique ID of the calendar resource to - * update. - * @param Google_Service_Directory_CalendarResource $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_CalendarResource - */ - public function patch($customer, $calendarResourceId, Google_Service_Directory_CalendarResource $postBody, $optParams = array()) - { - $params = array('customer' => $customer, 'calendarResourceId' => $calendarResourceId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Directory_CalendarResource"); - } - /** - * Updates a calendar resource. - * - * This method supports patch semantics, meaning you only need to include the - * fields you wish to update. Fields that are not present in the request will be - * preserved. (calendars.update) - * - * @param string $customer The unique ID for the customer's G Suite account. As - * an account administrator, you can also use the my_customer alias to represent - * your account's customer ID. - * @param string $calendarResourceId The unique ID of the calendar resource to - * update. - * @param Google_Service_Directory_CalendarResource $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_CalendarResource - */ - public function update($customer, $calendarResourceId, Google_Service_Directory_CalendarResource $postBody, $optParams = array()) - { - $params = array('customer' => $customer, 'calendarResourceId' => $calendarResourceId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Directory_CalendarResource"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/ResourcesFeatures.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/ResourcesFeatures.php deleted file mode 100644 index 0cd027a7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/ResourcesFeatures.php +++ /dev/null @@ -1,143 +0,0 @@ - - * $adminService = new Google_Service_Directory(...); - * $features = $adminService->features; - * - */ -class Google_Service_Directory_Resource_ResourcesFeatures extends Google_Service_Resource -{ - /** - * Deletes a feature. (features.delete) - * - * @param string $customer The unique ID for the customer's G Suite account. As - * an account administrator, you can also use the my_customer alias to represent - * your account's customer ID. - * @param string $featureKey The unique ID of the feature to delete. - * @param array $optParams Optional parameters. - */ - public function delete($customer, $featureKey, $optParams = array()) - { - $params = array('customer' => $customer, 'featureKey' => $featureKey); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Retrieves a feature. (features.get) - * - * @param string $customer The unique ID for the customer's G Suite account. As - * an account administrator, you can also use the my_customer alias to represent - * your account's customer ID. - * @param string $featureKey The unique ID of the feature to retrieve. - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_Feature - */ - public function get($customer, $featureKey, $optParams = array()) - { - $params = array('customer' => $customer, 'featureKey' => $featureKey); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Directory_Feature"); - } - /** - * Inserts a feature. (features.insert) - * - * @param string $customer The unique ID for the customer's G Suite account. As - * an account administrator, you can also use the my_customer alias to represent - * your account's customer ID. - * @param Google_Service_Directory_Feature $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_Feature - */ - public function insert($customer, Google_Service_Directory_Feature $postBody, $optParams = array()) - { - $params = array('customer' => $customer, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Directory_Feature"); - } - /** - * Retrieves a list of features for an account. (features.listResourcesFeatures) - * - * @param string $customer The unique ID for the customer's G Suite account. As - * an account administrator, you can also use the my_customer alias to represent - * your account's customer ID. - * @param array $optParams Optional parameters. - * - * @opt_param int maxResults Maximum number of results to return. - * @opt_param string pageToken Token to specify the next page in the list. - * @return Google_Service_Directory_Features - */ - public function listResourcesFeatures($customer, $optParams = array()) - { - $params = array('customer' => $customer); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Directory_Features"); - } - /** - * Updates a feature. This method supports patch semantics. (features.patch) - * - * @param string $customer The unique ID for the customer's G Suite account. As - * an account administrator, you can also use the my_customer alias to represent - * your account's customer ID. - * @param string $featureKey The unique ID of the feature to update. - * @param Google_Service_Directory_Feature $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_Feature - */ - public function patch($customer, $featureKey, Google_Service_Directory_Feature $postBody, $optParams = array()) - { - $params = array('customer' => $customer, 'featureKey' => $featureKey, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Directory_Feature"); - } - /** - * Renames a feature. (features.rename) - * - * @param string $customer The unique ID for the customer's G Suite account. As - * an account administrator, you can also use the my_customer alias to represent - * your account's customer ID. - * @param string $oldName The unique ID of the feature to rename. - * @param Google_Service_Directory_FeatureRename $postBody - * @param array $optParams Optional parameters. - */ - public function rename($customer, $oldName, Google_Service_Directory_FeatureRename $postBody, $optParams = array()) - { - $params = array('customer' => $customer, 'oldName' => $oldName, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('rename', array($params)); - } - /** - * Updates a feature. (features.update) - * - * @param string $customer The unique ID for the customer's G Suite account. As - * an account administrator, you can also use the my_customer alias to represent - * your account's customer ID. - * @param string $featureKey The unique ID of the feature to update. - * @param Google_Service_Directory_Feature $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_Feature - */ - public function update($customer, $featureKey, Google_Service_Directory_Feature $postBody, $optParams = array()) - { - $params = array('customer' => $customer, 'featureKey' => $featureKey, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Directory_Feature"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/RoleAssignments.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/RoleAssignments.php deleted file mode 100644 index ba9201eb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/RoleAssignments.php +++ /dev/null @@ -1,91 +0,0 @@ - - * $adminService = new Google_Service_Directory(...); - * $roleAssignments = $adminService->roleAssignments; - * - */ -class Google_Service_Directory_Resource_RoleAssignments extends Google_Service_Resource -{ - /** - * Deletes a role assignment. (roleAssignments.delete) - * - * @param string $customer Immutable ID of the G Suite account. - * @param string $roleAssignmentId Immutable ID of the role assignment. - * @param array $optParams Optional parameters. - */ - public function delete($customer, $roleAssignmentId, $optParams = array()) - { - $params = array('customer' => $customer, 'roleAssignmentId' => $roleAssignmentId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Retrieve a role assignment. (roleAssignments.get) - * - * @param string $customer Immutable ID of the G Suite account. - * @param string $roleAssignmentId Immutable ID of the role assignment. - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_RoleAssignment - */ - public function get($customer, $roleAssignmentId, $optParams = array()) - { - $params = array('customer' => $customer, 'roleAssignmentId' => $roleAssignmentId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Directory_RoleAssignment"); - } - /** - * Creates a role assignment. (roleAssignments.insert) - * - * @param string $customer Immutable ID of the G Suite account. - * @param Google_Service_Directory_RoleAssignment $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_RoleAssignment - */ - public function insert($customer, Google_Service_Directory_RoleAssignment $postBody, $optParams = array()) - { - $params = array('customer' => $customer, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Directory_RoleAssignment"); - } - /** - * Retrieves a paginated list of all roleAssignments. - * (roleAssignments.listRoleAssignments) - * - * @param string $customer Immutable ID of the G Suite account. - * @param array $optParams Optional parameters. - * - * @opt_param int maxResults Maximum number of results to return. - * @opt_param string pageToken Token to specify the next page in the list. - * @opt_param string roleId Immutable ID of a role. If included in the request, - * returns only role assignments containing this role ID. - * @opt_param string userKey The user's primary email address, alias email - * address, or unique user ID. If included in the request, returns role - * assignments only for this user. - * @return Google_Service_Directory_RoleAssignments - */ - public function listRoleAssignments($customer, $optParams = array()) - { - $params = array('customer' => $customer); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Directory_RoleAssignments"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/Roles.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/Roles.php deleted file mode 100644 index 09f92c08..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/Roles.php +++ /dev/null @@ -1,115 +0,0 @@ - - * $adminService = new Google_Service_Directory(...); - * $roles = $adminService->roles; - * - */ -class Google_Service_Directory_Resource_Roles extends Google_Service_Resource -{ - /** - * Deletes a role. (roles.delete) - * - * @param string $customer Immutable ID of the G Suite account. - * @param string $roleId Immutable ID of the role. - * @param array $optParams Optional parameters. - */ - public function delete($customer, $roleId, $optParams = array()) - { - $params = array('customer' => $customer, 'roleId' => $roleId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Retrieves a role. (roles.get) - * - * @param string $customer Immutable ID of the G Suite account. - * @param string $roleId Immutable ID of the role. - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_Role - */ - public function get($customer, $roleId, $optParams = array()) - { - $params = array('customer' => $customer, 'roleId' => $roleId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Directory_Role"); - } - /** - * Creates a role. (roles.insert) - * - * @param string $customer Immutable ID of the G Suite account. - * @param Google_Service_Directory_Role $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_Role - */ - public function insert($customer, Google_Service_Directory_Role $postBody, $optParams = array()) - { - $params = array('customer' => $customer, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Directory_Role"); - } - /** - * Retrieves a paginated list of all the roles in a domain. (roles.listRoles) - * - * @param string $customer Immutable ID of the G Suite account. - * @param array $optParams Optional parameters. - * - * @opt_param int maxResults Maximum number of results to return. - * @opt_param string pageToken Token to specify the next page in the list. - * @return Google_Service_Directory_Roles - */ - public function listRoles($customer, $optParams = array()) - { - $params = array('customer' => $customer); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Directory_Roles"); - } - /** - * Updates a role. This method supports patch semantics. (roles.patch) - * - * @param string $customer Immutable ID of the G Suite account. - * @param string $roleId Immutable ID of the role. - * @param Google_Service_Directory_Role $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_Role - */ - public function patch($customer, $roleId, Google_Service_Directory_Role $postBody, $optParams = array()) - { - $params = array('customer' => $customer, 'roleId' => $roleId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Directory_Role"); - } - /** - * Updates a role. (roles.update) - * - * @param string $customer Immutable ID of the G Suite account. - * @param string $roleId Immutable ID of the role. - * @param Google_Service_Directory_Role $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_Role - */ - public function update($customer, $roleId, Google_Service_Directory_Role $postBody, $optParams = array()) - { - $params = array('customer' => $customer, 'roleId' => $roleId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Directory_Role"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/Schemas.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/Schemas.php deleted file mode 100644 index 1deb0eef..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/Schemas.php +++ /dev/null @@ -1,112 +0,0 @@ - - * $adminService = new Google_Service_Directory(...); - * $schemas = $adminService->schemas; - * - */ -class Google_Service_Directory_Resource_Schemas extends Google_Service_Resource -{ - /** - * Delete schema (schemas.delete) - * - * @param string $customerId Immutable ID of the G Suite account - * @param string $schemaKey Name or immutable ID of the schema - * @param array $optParams Optional parameters. - */ - public function delete($customerId, $schemaKey, $optParams = array()) - { - $params = array('customerId' => $customerId, 'schemaKey' => $schemaKey); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Retrieve schema (schemas.get) - * - * @param string $customerId Immutable ID of the G Suite account - * @param string $schemaKey Name or immutable ID of the schema - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_Schema - */ - public function get($customerId, $schemaKey, $optParams = array()) - { - $params = array('customerId' => $customerId, 'schemaKey' => $schemaKey); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Directory_Schema"); - } - /** - * Create schema. (schemas.insert) - * - * @param string $customerId Immutable ID of the G Suite account - * @param Google_Service_Directory_Schema $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_Schema - */ - public function insert($customerId, Google_Service_Directory_Schema $postBody, $optParams = array()) - { - $params = array('customerId' => $customerId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Directory_Schema"); - } - /** - * Retrieve all schemas for a customer (schemas.listSchemas) - * - * @param string $customerId Immutable ID of the G Suite account - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_Schemas - */ - public function listSchemas($customerId, $optParams = array()) - { - $params = array('customerId' => $customerId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Directory_Schemas"); - } - /** - * Update schema. This method supports patch semantics. (schemas.patch) - * - * @param string $customerId Immutable ID of the G Suite account - * @param string $schemaKey Name or immutable ID of the schema. - * @param Google_Service_Directory_Schema $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_Schema - */ - public function patch($customerId, $schemaKey, Google_Service_Directory_Schema $postBody, $optParams = array()) - { - $params = array('customerId' => $customerId, 'schemaKey' => $schemaKey, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Directory_Schema"); - } - /** - * Update schema (schemas.update) - * - * @param string $customerId Immutable ID of the G Suite account - * @param string $schemaKey Name or immutable ID of the schema. - * @param Google_Service_Directory_Schema $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_Schema - */ - public function update($customerId, $schemaKey, Google_Service_Directory_Schema $postBody, $optParams = array()) - { - $params = array('customerId' => $customerId, 'schemaKey' => $schemaKey, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Directory_Schema"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/Tokens.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/Tokens.php deleted file mode 100644 index e51a55cc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/Tokens.php +++ /dev/null @@ -1,74 +0,0 @@ - - * $adminService = new Google_Service_Directory(...); - * $tokens = $adminService->tokens; - * - */ -class Google_Service_Directory_Resource_Tokens extends Google_Service_Resource -{ - /** - * Delete all access tokens issued by a user for an application. (tokens.delete) - * - * @param string $userKey Identifies the user in the API request. The value can - * be the user's primary email address, alias email address, or unique user ID. - * @param string $clientId The Client ID of the application the token is issued - * to. - * @param array $optParams Optional parameters. - */ - public function delete($userKey, $clientId, $optParams = array()) - { - $params = array('userKey' => $userKey, 'clientId' => $clientId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Get information about an access token issued by a user. (tokens.get) - * - * @param string $userKey Identifies the user in the API request. The value can - * be the user's primary email address, alias email address, or unique user ID. - * @param string $clientId The Client ID of the application the token is issued - * to. - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_Token - */ - public function get($userKey, $clientId, $optParams = array()) - { - $params = array('userKey' => $userKey, 'clientId' => $clientId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Directory_Token"); - } - /** - * Returns the set of tokens specified user has issued to 3rd party - * applications. (tokens.listTokens) - * - * @param string $userKey Identifies the user in the API request. The value can - * be the user's primary email address, alias email address, or unique user ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_Tokens - */ - public function listTokens($userKey, $optParams = array()) - { - $params = array('userKey' => $userKey); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Directory_Tokens"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/Users.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/Users.php deleted file mode 100644 index b02b3391..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/Users.php +++ /dev/null @@ -1,205 +0,0 @@ - - * $adminService = new Google_Service_Directory(...); - * $users = $adminService->users; - * - */ -class Google_Service_Directory_Resource_Users extends Google_Service_Resource -{ - /** - * Delete user (users.delete) - * - * @param string $userKey Email or immutable ID of the user - * @param array $optParams Optional parameters. - */ - public function delete($userKey, $optParams = array()) - { - $params = array('userKey' => $userKey); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * retrieve user (users.get) - * - * @param string $userKey Email or immutable ID of the user - * @param array $optParams Optional parameters. - * - * @opt_param string customFieldMask Comma-separated list of schema names. All - * fields from these schemas are fetched. This should only be set when - * projection=custom. - * @opt_param string projection What subset of fields to fetch for this user. - * @opt_param string viewType Whether to fetch the ADMIN_VIEW or DOMAIN_PUBLIC - * view of the user. - * @return Google_Service_Directory_User - */ - public function get($userKey, $optParams = array()) - { - $params = array('userKey' => $userKey); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Directory_User"); - } - /** - * create user. (users.insert) - * - * @param Google_Service_Directory_User $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_User - */ - public function insert(Google_Service_Directory_User $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Directory_User"); - } - /** - * Retrieve either deleted users or all users in a domain (paginated) - * (users.listUsers) - * - * @param array $optParams Optional parameters. - * - * @opt_param string customFieldMask Comma-separated list of schema names. All - * fields from these schemas are fetched. This should only be set when - * projection=custom. - * @opt_param string customer Immutable ID of the G Suite account. In case of - * multi-domain, to fetch all users for a customer, fill this field instead of - * domain. - * @opt_param string domain Name of the domain. Fill this field to get users - * from only this domain. To return all users in a multi-domain fill customer - * field instead. - * @opt_param string event Event on which subscription is intended (if - * subscribing) - * @opt_param int maxResults Maximum number of results to return. - * @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 projection What subset of fields to fetch for this user. - * @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-users - * @opt_param string showDeleted If set to true, retrieves the list of deleted - * users. (Default: false) - * @opt_param string sortOrder Whether to return results in ascending or - * descending order. - * @opt_param string viewType Whether to fetch the ADMIN_VIEW or DOMAIN_PUBLIC - * view of the user. - * @return Google_Service_Directory_Users - */ - public function listUsers($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Directory_Users"); - } - /** - * change admin status of a user (users.makeAdmin) - * - * @param string $userKey Email or immutable ID of the user as admin - * @param Google_Service_Directory_UserMakeAdmin $postBody - * @param array $optParams Optional parameters. - */ - public function makeAdmin($userKey, Google_Service_Directory_UserMakeAdmin $postBody, $optParams = array()) - { - $params = array('userKey' => $userKey, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('makeAdmin', array($params)); - } - /** - * update user. This method supports patch semantics. (users.patch) - * - * @param string $userKey Email or immutable ID of the user. If ID, it should - * match with id of user object - * @param Google_Service_Directory_User $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_User - */ - public function patch($userKey, Google_Service_Directory_User $postBody, $optParams = array()) - { - $params = array('userKey' => $userKey, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Directory_User"); - } - /** - * Undelete a deleted user (users.undelete) - * - * @param string $userKey The immutable id of the user - * @param Google_Service_Directory_UserUndelete $postBody - * @param array $optParams Optional parameters. - */ - public function undelete($userKey, Google_Service_Directory_UserUndelete $postBody, $optParams = array()) - { - $params = array('userKey' => $userKey, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('undelete', array($params)); - } - /** - * update user (users.update) - * - * @param string $userKey Email or immutable ID of the user. If ID, it should - * match with id of user object - * @param Google_Service_Directory_User $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_User - */ - public function update($userKey, Google_Service_Directory_User $postBody, $optParams = array()) - { - $params = array('userKey' => $userKey, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Directory_User"); - } - /** - * Watch for changes in users list (users.watch) - * - * @param Google_Service_Directory_Channel $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string customFieldMask Comma-separated list of schema names. All - * fields from these schemas are fetched. This should only be set when - * projection=custom. - * @opt_param string customer Immutable ID of the G Suite account. In case of - * multi-domain, to fetch all users for a customer, fill this field instead of - * domain. - * @opt_param string domain Name of the domain. Fill this field to get users - * from only this domain. To return all users in a multi-domain fill customer - * field instead. - * @opt_param string event Event on which subscription is intended (if - * subscribing) - * @opt_param int maxResults Maximum number of results to return. - * @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 projection What subset of fields to fetch for this user. - * @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-users - * @opt_param string showDeleted If set to true, retrieves the list of deleted - * users. (Default: false) - * @opt_param string sortOrder Whether to return results in ascending or - * descending order. - * @opt_param string viewType Whether to fetch the ADMIN_VIEW or DOMAIN_PUBLIC - * view of the user. - * @return Google_Service_Directory_Channel - */ - public function watch(Google_Service_Directory_Channel $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('watch', array($params), "Google_Service_Directory_Channel"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/UsersAliases.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/UsersAliases.php deleted file mode 100644 index 80d26e2e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/UsersAliases.php +++ /dev/null @@ -1,88 +0,0 @@ - - * $adminService = new Google_Service_Directory(...); - * $aliases = $adminService->aliases; - * - */ -class Google_Service_Directory_Resource_UsersAliases extends Google_Service_Resource -{ - /** - * Remove a alias for the user (aliases.delete) - * - * @param string $userKey Email or immutable ID of the user - * @param string $alias The alias to be removed - * @param array $optParams Optional parameters. - */ - public function delete($userKey, $alias, $optParams = array()) - { - $params = array('userKey' => $userKey, 'alias' => $alias); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Add a alias for the user (aliases.insert) - * - * @param string $userKey Email or immutable ID of the user - * @param Google_Service_Directory_Alias $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_Alias - */ - public function insert($userKey, Google_Service_Directory_Alias $postBody, $optParams = array()) - { - $params = array('userKey' => $userKey, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Directory_Alias"); - } - /** - * List all aliases for a user (aliases.listUsersAliases) - * - * @param string $userKey Email or immutable ID of the user - * @param array $optParams Optional parameters. - * - * @opt_param string event Event on which subscription is intended (if - * subscribing) - * @return Google_Service_Directory_Aliases - */ - public function listUsersAliases($userKey, $optParams = array()) - { - $params = array('userKey' => $userKey); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Directory_Aliases"); - } - /** - * Watch for changes in user aliases list (aliases.watch) - * - * @param string $userKey Email or immutable ID of the user - * @param Google_Service_Directory_Channel $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string event Event on which subscription is intended (if - * subscribing) - * @return Google_Service_Directory_Channel - */ - public function watch($userKey, Google_Service_Directory_Channel $postBody, $optParams = array()) - { - $params = array('userKey' => $userKey, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('watch', array($params), "Google_Service_Directory_Channel"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/UsersPhotos.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/UsersPhotos.php deleted file mode 100644 index fcd4a5d3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/UsersPhotos.php +++ /dev/null @@ -1,82 +0,0 @@ - - * $adminService = new Google_Service_Directory(...); - * $photos = $adminService->photos; - * - */ -class Google_Service_Directory_Resource_UsersPhotos extends Google_Service_Resource -{ - /** - * Remove photos for the user (photos.delete) - * - * @param string $userKey Email or immutable ID of the user - * @param array $optParams Optional parameters. - */ - public function delete($userKey, $optParams = array()) - { - $params = array('userKey' => $userKey); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Retrieve photo of a user (photos.get) - * - * @param string $userKey Email or immutable ID of the user - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_UserPhoto - */ - public function get($userKey, $optParams = array()) - { - $params = array('userKey' => $userKey); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Directory_UserPhoto"); - } - /** - * Add a photo for the user. This method supports patch semantics. - * (photos.patch) - * - * @param string $userKey Email or immutable ID of the user - * @param Google_Service_Directory_UserPhoto $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_UserPhoto - */ - public function patch($userKey, Google_Service_Directory_UserPhoto $postBody, $optParams = array()) - { - $params = array('userKey' => $userKey, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Directory_UserPhoto"); - } - /** - * Add a photo for the user (photos.update) - * - * @param string $userKey Email or immutable ID of the user - * @param Google_Service_Directory_UserPhoto $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_UserPhoto - */ - public function update($userKey, Google_Service_Directory_UserPhoto $postBody, $optParams = array()) - { - $params = array('userKey' => $userKey, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Directory_UserPhoto"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/VerificationCodes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/VerificationCodes.php deleted file mode 100644 index fe6f11fd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/VerificationCodes.php +++ /dev/null @@ -1,69 +0,0 @@ - - * $adminService = new Google_Service_Directory(...); - * $verificationCodes = $adminService->verificationCodes; - * - */ -class Google_Service_Directory_Resource_VerificationCodes extends Google_Service_Resource -{ - /** - * Generate new backup verification codes for the user. - * (verificationCodes.generate) - * - * @param string $userKey Email or immutable ID of the user - * @param array $optParams Optional parameters. - */ - public function generate($userKey, $optParams = array()) - { - $params = array('userKey' => $userKey); - $params = array_merge($params, $optParams); - return $this->call('generate', array($params)); - } - /** - * Invalidate the current backup verification codes for the user. - * (verificationCodes.invalidate) - * - * @param string $userKey Email or immutable ID of the user - * @param array $optParams Optional parameters. - */ - public function invalidate($userKey, $optParams = array()) - { - $params = array('userKey' => $userKey); - $params = array_merge($params, $optParams); - return $this->call('invalidate', array($params)); - } - /** - * Returns the current set of valid backup verification codes for the specified - * user. (verificationCodes.listVerificationCodes) - * - * @param string $userKey Identifies the user in the API request. The value can - * be the user's primary email address, alias email address, or unique user ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Directory_VerificationCodes - */ - public function listVerificationCodes($userKey, $optParams = array()) - { - $params = array('userKey' => $userKey); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Directory_VerificationCodes"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Role.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Role.php deleted file mode 100644 index 5723ea2d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Role.php +++ /dev/null @@ -1,101 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setIsSuperAdminRole($isSuperAdminRole) - { - $this->isSuperAdminRole = $isSuperAdminRole; - } - public function getIsSuperAdminRole() - { - return $this->isSuperAdminRole; - } - public function setIsSystemRole($isSystemRole) - { - $this->isSystemRole = $isSystemRole; - } - public function getIsSystemRole() - { - return $this->isSystemRole; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setRoleDescription($roleDescription) - { - $this->roleDescription = $roleDescription; - } - public function getRoleDescription() - { - return $this->roleDescription; - } - public function setRoleId($roleId) - { - $this->roleId = $roleId; - } - public function getRoleId() - { - return $this->roleId; - } - public function setRoleName($roleName) - { - $this->roleName = $roleName; - } - public function getRoleName() - { - return $this->roleName; - } - /** - * @param Google_Service_Directory_RoleRolePrivileges - */ - public function setRolePrivileges($rolePrivileges) - { - $this->rolePrivileges = $rolePrivileges; - } - /** - * @return Google_Service_Directory_RoleRolePrivileges - */ - public function getRolePrivileges() - { - return $this->rolePrivileges; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/RoleAssignment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/RoleAssignment.php deleted file mode 100644 index a8a8f7b3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/RoleAssignment.php +++ /dev/null @@ -1,84 +0,0 @@ -assignedTo = $assignedTo; - } - public function getAssignedTo() - { - return $this->assignedTo; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setOrgUnitId($orgUnitId) - { - $this->orgUnitId = $orgUnitId; - } - public function getOrgUnitId() - { - return $this->orgUnitId; - } - public function setRoleAssignmentId($roleAssignmentId) - { - $this->roleAssignmentId = $roleAssignmentId; - } - public function getRoleAssignmentId() - { - return $this->roleAssignmentId; - } - public function setRoleId($roleId) - { - $this->roleId = $roleId; - } - public function getRoleId() - { - return $this->roleId; - } - public function setScopeType($scopeType) - { - $this->scopeType = $scopeType; - } - public function getScopeType() - { - return $this->scopeType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/RoleAssignments.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/RoleAssignments.php deleted file mode 100644 index 18e597a8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/RoleAssignments.php +++ /dev/null @@ -1,65 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_Directory_RoleAssignment - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Directory_RoleAssignment - */ - public function getItems() - { - return $this->items; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/RoleRolePrivileges.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/RoleRolePrivileges.php deleted file mode 100644 index 6a28fdf4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/RoleRolePrivileges.php +++ /dev/null @@ -1,39 +0,0 @@ -privilegeName = $privilegeName; - } - public function getPrivilegeName() - { - return $this->privilegeName; - } - public function setServiceId($serviceId) - { - $this->serviceId = $serviceId; - } - public function getServiceId() - { - return $this->serviceId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Roles.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Roles.php deleted file mode 100644 index c88d204a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Roles.php +++ /dev/null @@ -1,65 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_Directory_Role - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Directory_Role - */ - public function getItems() - { - return $this->items; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Schema.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Schema.php deleted file mode 100644 index c051a7a7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Schema.php +++ /dev/null @@ -1,83 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_Directory_SchemaFieldSpec - */ - public function setFields($fields) - { - $this->fields = $fields; - } - /** - * @return Google_Service_Directory_SchemaFieldSpec - */ - public function getFields() - { - return $this->fields; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setSchemaId($schemaId) - { - $this->schemaId = $schemaId; - } - public function getSchemaId() - { - return $this->schemaId; - } - public function setSchemaName($schemaName) - { - $this->schemaName = $schemaName; - } - public function getSchemaName() - { - return $this->schemaName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/SchemaFieldSpec.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/SchemaFieldSpec.php deleted file mode 100644 index f9c8867c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/SchemaFieldSpec.php +++ /dev/null @@ -1,118 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setFieldId($fieldId) - { - $this->fieldId = $fieldId; - } - public function getFieldId() - { - return $this->fieldId; - } - public function setFieldName($fieldName) - { - $this->fieldName = $fieldName; - } - public function getFieldName() - { - return $this->fieldName; - } - public function setFieldType($fieldType) - { - $this->fieldType = $fieldType; - } - public function getFieldType() - { - return $this->fieldType; - } - public function setIndexed($indexed) - { - $this->indexed = $indexed; - } - public function getIndexed() - { - return $this->indexed; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setMultiValued($multiValued) - { - $this->multiValued = $multiValued; - } - public function getMultiValued() - { - return $this->multiValued; - } - /** - * @param Google_Service_Directory_SchemaFieldSpecNumericIndexingSpec - */ - public function setNumericIndexingSpec(Google_Service_Directory_SchemaFieldSpecNumericIndexingSpec $numericIndexingSpec) - { - $this->numericIndexingSpec = $numericIndexingSpec; - } - /** - * @return Google_Service_Directory_SchemaFieldSpecNumericIndexingSpec - */ - public function getNumericIndexingSpec() - { - return $this->numericIndexingSpec; - } - public function setReadAccessType($readAccessType) - { - $this->readAccessType = $readAccessType; - } - public function getReadAccessType() - { - return $this->readAccessType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/SchemaFieldSpecNumericIndexingSpec.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/SchemaFieldSpecNumericIndexingSpec.php deleted file mode 100644 index 8627e263..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/SchemaFieldSpecNumericIndexingSpec.php +++ /dev/null @@ -1,39 +0,0 @@ -maxValue = $maxValue; - } - public function getMaxValue() - { - return $this->maxValue; - } - public function setMinValue($minValue) - { - $this->minValue = $minValue; - } - public function getMinValue() - { - return $this->minValue; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Schemas.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Schemas.php deleted file mode 100644 index 0ba2a981..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Schemas.php +++ /dev/null @@ -1,56 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Directory_Schema - */ - public function setSchemas($schemas) - { - $this->schemas = $schemas; - } - /** - * @return Google_Service_Directory_Schema - */ - public function getSchemas() - { - return $this->schemas; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Token.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Token.php deleted file mode 100644 index 989ba1bb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Token.php +++ /dev/null @@ -1,94 +0,0 @@ -anonymous = $anonymous; - } - public function getAnonymous() - { - return $this->anonymous; - } - public function setClientId($clientId) - { - $this->clientId = $clientId; - } - public function getClientId() - { - return $this->clientId; - } - public function setDisplayText($displayText) - { - $this->displayText = $displayText; - } - public function getDisplayText() - { - return $this->displayText; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNativeApp($nativeApp) - { - $this->nativeApp = $nativeApp; - } - public function getNativeApp() - { - return $this->nativeApp; - } - public function setScopes($scopes) - { - $this->scopes = $scopes; - } - public function getScopes() - { - return $this->scopes; - } - public function setUserKey($userKey) - { - $this->userKey = $userKey; - } - public function getUserKey() - { - return $this->userKey; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Tokens.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Tokens.php deleted file mode 100644 index 353be7da..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Tokens.php +++ /dev/null @@ -1,56 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_Directory_Token - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Directory_Token - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/TrustedAppId.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/TrustedAppId.php deleted file mode 100644 index 1794f384..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/TrustedAppId.php +++ /dev/null @@ -1,66 +0,0 @@ -androidPackageName = $androidPackageName; - } - public function getAndroidPackageName() - { - return $this->androidPackageName; - } - public function setCertificateHashSHA1($certificateHashSHA1) - { - $this->certificateHashSHA1 = $certificateHashSHA1; - } - public function getCertificateHashSHA1() - { - return $this->certificateHashSHA1; - } - public function setCertificateHashSHA256($certificateHashSHA256) - { - $this->certificateHashSHA256 = $certificateHashSHA256; - } - public function getCertificateHashSHA256() - { - return $this->certificateHashSHA256; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/TrustedApps.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/TrustedApps.php deleted file mode 100644 index 552a6dbf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/TrustedApps.php +++ /dev/null @@ -1,65 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - 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_Directory_TrustedAppId - */ - public function setTrustedApps($trustedApps) - { - $this->trustedApps = $trustedApps; - } - /** - * @return Google_Service_Directory_TrustedAppId - */ - public function getTrustedApps() - { - return $this->trustedApps; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/User.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/User.php deleted file mode 100644 index b7f2378d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/User.php +++ /dev/null @@ -1,443 +0,0 @@ -addresses = $addresses; - } - public function getAddresses() - { - return $this->addresses; - } - public function setAgreedToTerms($agreedToTerms) - { - $this->agreedToTerms = $agreedToTerms; - } - public function getAgreedToTerms() - { - return $this->agreedToTerms; - } - public function setAliases($aliases) - { - $this->aliases = $aliases; - } - public function getAliases() - { - return $this->aliases; - } - public function setArchived($archived) - { - $this->archived = $archived; - } - public function getArchived() - { - return $this->archived; - } - public function setChangePasswordAtNextLogin($changePasswordAtNextLogin) - { - $this->changePasswordAtNextLogin = $changePasswordAtNextLogin; - } - public function getChangePasswordAtNextLogin() - { - return $this->changePasswordAtNextLogin; - } - public function setCreationTime($creationTime) - { - $this->creationTime = $creationTime; - } - public function getCreationTime() - { - return $this->creationTime; - } - public function setCustomSchemas($customSchemas) - { - $this->customSchemas = $customSchemas; - } - public function getCustomSchemas() - { - return $this->customSchemas; - } - public function setCustomerId($customerId) - { - $this->customerId = $customerId; - } - public function getCustomerId() - { - return $this->customerId; - } - public function setDeletionTime($deletionTime) - { - $this->deletionTime = $deletionTime; - } - public function getDeletionTime() - { - return $this->deletionTime; - } - public function setEmails($emails) - { - $this->emails = $emails; - } - public function getEmails() - { - return $this->emails; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setExternalIds($externalIds) - { - $this->externalIds = $externalIds; - } - public function getExternalIds() - { - return $this->externalIds; - } - public function setGender($gender) - { - $this->gender = $gender; - } - public function getGender() - { - return $this->gender; - } - public function setHashFunction($hashFunction) - { - $this->hashFunction = $hashFunction; - } - public function getHashFunction() - { - return $this->hashFunction; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setIms($ims) - { - $this->ims = $ims; - } - public function getIms() - { - return $this->ims; - } - public function setIncludeInGlobalAddressList($includeInGlobalAddressList) - { - $this->includeInGlobalAddressList = $includeInGlobalAddressList; - } - public function getIncludeInGlobalAddressList() - { - return $this->includeInGlobalAddressList; - } - public function setIpWhitelisted($ipWhitelisted) - { - $this->ipWhitelisted = $ipWhitelisted; - } - public function getIpWhitelisted() - { - return $this->ipWhitelisted; - } - public function setIsAdmin($isAdmin) - { - $this->isAdmin = $isAdmin; - } - public function getIsAdmin() - { - return $this->isAdmin; - } - public function setIsDelegatedAdmin($isDelegatedAdmin) - { - $this->isDelegatedAdmin = $isDelegatedAdmin; - } - public function getIsDelegatedAdmin() - { - return $this->isDelegatedAdmin; - } - public function setIsEnforcedIn2Sv($isEnforcedIn2Sv) - { - $this->isEnforcedIn2Sv = $isEnforcedIn2Sv; - } - public function getIsEnforcedIn2Sv() - { - return $this->isEnforcedIn2Sv; - } - public function setIsEnrolledIn2Sv($isEnrolledIn2Sv) - { - $this->isEnrolledIn2Sv = $isEnrolledIn2Sv; - } - public function getIsEnrolledIn2Sv() - { - return $this->isEnrolledIn2Sv; - } - public function setIsMailboxSetup($isMailboxSetup) - { - $this->isMailboxSetup = $isMailboxSetup; - } - public function getIsMailboxSetup() - { - return $this->isMailboxSetup; - } - public function setKeywords($keywords) - { - $this->keywords = $keywords; - } - public function getKeywords() - { - return $this->keywords; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLanguages($languages) - { - $this->languages = $languages; - } - public function getLanguages() - { - return $this->languages; - } - public function setLastLoginTime($lastLoginTime) - { - $this->lastLoginTime = $lastLoginTime; - } - public function getLastLoginTime() - { - return $this->lastLoginTime; - } - public function setLocations($locations) - { - $this->locations = $locations; - } - public function getLocations() - { - return $this->locations; - } - /** - * @param Google_Service_Directory_UserName - */ - public function setName(Google_Service_Directory_UserName $name) - { - $this->name = $name; - } - /** - * @return Google_Service_Directory_UserName - */ - public function getName() - { - return $this->name; - } - public function setNonEditableAliases($nonEditableAliases) - { - $this->nonEditableAliases = $nonEditableAliases; - } - public function getNonEditableAliases() - { - return $this->nonEditableAliases; - } - public function setNotes($notes) - { - $this->notes = $notes; - } - public function getNotes() - { - return $this->notes; - } - public function setOrgUnitPath($orgUnitPath) - { - $this->orgUnitPath = $orgUnitPath; - } - public function getOrgUnitPath() - { - return $this->orgUnitPath; - } - public function setOrganizations($organizations) - { - $this->organizations = $organizations; - } - public function getOrganizations() - { - return $this->organizations; - } - public function setPassword($password) - { - $this->password = $password; - } - public function getPassword() - { - return $this->password; - } - public function setPhones($phones) - { - $this->phones = $phones; - } - public function getPhones() - { - return $this->phones; - } - public function setPosixAccounts($posixAccounts) - { - $this->posixAccounts = $posixAccounts; - } - public function getPosixAccounts() - { - return $this->posixAccounts; - } - public function setPrimaryEmail($primaryEmail) - { - $this->primaryEmail = $primaryEmail; - } - public function getPrimaryEmail() - { - return $this->primaryEmail; - } - public function setRecoveryEmail($recoveryEmail) - { - $this->recoveryEmail = $recoveryEmail; - } - public function getRecoveryEmail() - { - return $this->recoveryEmail; - } - public function setRecoveryPhone($recoveryPhone) - { - $this->recoveryPhone = $recoveryPhone; - } - public function getRecoveryPhone() - { - return $this->recoveryPhone; - } - public function setRelations($relations) - { - $this->relations = $relations; - } - public function getRelations() - { - return $this->relations; - } - public function setSshPublicKeys($sshPublicKeys) - { - $this->sshPublicKeys = $sshPublicKeys; - } - public function getSshPublicKeys() - { - return $this->sshPublicKeys; - } - public function setSuspended($suspended) - { - $this->suspended = $suspended; - } - public function getSuspended() - { - return $this->suspended; - } - public function setSuspensionReason($suspensionReason) - { - $this->suspensionReason = $suspensionReason; - } - public function getSuspensionReason() - { - return $this->suspensionReason; - } - public function setThumbnailPhotoEtag($thumbnailPhotoEtag) - { - $this->thumbnailPhotoEtag = $thumbnailPhotoEtag; - } - public function getThumbnailPhotoEtag() - { - return $this->thumbnailPhotoEtag; - } - public function setThumbnailPhotoUrl($thumbnailPhotoUrl) - { - $this->thumbnailPhotoUrl = $thumbnailPhotoUrl; - } - public function getThumbnailPhotoUrl() - { - return $this->thumbnailPhotoUrl; - } - public function setWebsites($websites) - { - $this->websites = $websites; - } - public function getWebsites() - { - return $this->websites; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserAbout.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserAbout.php deleted file mode 100644 index c9379d56..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserAbout.php +++ /dev/null @@ -1,39 +0,0 @@ -contentType = $contentType; - } - public function getContentType() - { - return $this->contentType; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserAddress.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserAddress.php deleted file mode 100644 index a38ce515..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserAddress.php +++ /dev/null @@ -1,138 +0,0 @@ -country = $country; - } - public function getCountry() - { - return $this->country; - } - public function setCountryCode($countryCode) - { - $this->countryCode = $countryCode; - } - public function getCountryCode() - { - return $this->countryCode; - } - public function setCustomType($customType) - { - $this->customType = $customType; - } - public function getCustomType() - { - return $this->customType; - } - public function setExtendedAddress($extendedAddress) - { - $this->extendedAddress = $extendedAddress; - } - public function getExtendedAddress() - { - return $this->extendedAddress; - } - public function setFormatted($formatted) - { - $this->formatted = $formatted; - } - public function getFormatted() - { - return $this->formatted; - } - public function setLocality($locality) - { - $this->locality = $locality; - } - public function getLocality() - { - return $this->locality; - } - public function setPoBox($poBox) - { - $this->poBox = $poBox; - } - public function getPoBox() - { - return $this->poBox; - } - public function setPostalCode($postalCode) - { - $this->postalCode = $postalCode; - } - public function getPostalCode() - { - return $this->postalCode; - } - public function setPrimary($primary) - { - $this->primary = $primary; - } - public function getPrimary() - { - return $this->primary; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - public function setSourceIsStructured($sourceIsStructured) - { - $this->sourceIsStructured = $sourceIsStructured; - } - public function getSourceIsStructured() - { - return $this->sourceIsStructured; - } - public function setStreetAddress($streetAddress) - { - $this->streetAddress = $streetAddress; - } - public function getStreetAddress() - { - return $this->streetAddress; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserEmail.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserEmail.php deleted file mode 100644 index ec9aca3b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserEmail.php +++ /dev/null @@ -1,57 +0,0 @@ -address = $address; - } - public function getAddress() - { - return $this->address; - } - public function setCustomType($customType) - { - $this->customType = $customType; - } - public function getCustomType() - { - return $this->customType; - } - public function setPrimary($primary) - { - $this->primary = $primary; - } - public function getPrimary() - { - return $this->primary; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserExternalId.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserExternalId.php deleted file mode 100644 index faaad2d9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserExternalId.php +++ /dev/null @@ -1,48 +0,0 @@ -customType = $customType; - } - public function getCustomType() - { - return $this->customType; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserGender.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserGender.php deleted file mode 100644 index 89a89f48..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserGender.php +++ /dev/null @@ -1,48 +0,0 @@ -addressMeAs = $addressMeAs; - } - public function getAddressMeAs() - { - return $this->addressMeAs; - } - public function setCustomGender($customGender) - { - $this->customGender = $customGender; - } - public function getCustomGender() - { - return $this->customGender; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserIm.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserIm.php deleted file mode 100644 index 2e16d0b9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserIm.php +++ /dev/null @@ -1,75 +0,0 @@ -customProtocol = $customProtocol; - } - public function getCustomProtocol() - { - return $this->customProtocol; - } - public function setCustomType($customType) - { - $this->customType = $customType; - } - public function getCustomType() - { - return $this->customType; - } - public function setIm($im) - { - $this->im = $im; - } - public function getIm() - { - return $this->im; - } - public function setPrimary($primary) - { - $this->primary = $primary; - } - public function getPrimary() - { - return $this->primary; - } - public function setProtocol($protocol) - { - $this->protocol = $protocol; - } - public function getProtocol() - { - return $this->protocol; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserKeyword.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserKeyword.php deleted file mode 100644 index 616cabf7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserKeyword.php +++ /dev/null @@ -1,48 +0,0 @@ -customType = $customType; - } - public function getCustomType() - { - return $this->customType; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserLanguage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserLanguage.php deleted file mode 100644 index b8504ba8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserLanguage.php +++ /dev/null @@ -1,39 +0,0 @@ -customLanguage = $customLanguage; - } - public function getCustomLanguage() - { - return $this->customLanguage; - } - public function setLanguageCode($languageCode) - { - $this->languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserLocation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserLocation.php deleted file mode 100644 index 27c64eca..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserLocation.php +++ /dev/null @@ -1,84 +0,0 @@ -area = $area; - } - public function getArea() - { - return $this->area; - } - public function setBuildingId($buildingId) - { - $this->buildingId = $buildingId; - } - public function getBuildingId() - { - return $this->buildingId; - } - public function setCustomType($customType) - { - $this->customType = $customType; - } - public function getCustomType() - { - return $this->customType; - } - public function setDeskCode($deskCode) - { - $this->deskCode = $deskCode; - } - public function getDeskCode() - { - return $this->deskCode; - } - public function setFloorName($floorName) - { - $this->floorName = $floorName; - } - public function getFloorName() - { - return $this->floorName; - } - public function setFloorSection($floorSection) - { - $this->floorSection = $floorSection; - } - public function getFloorSection() - { - return $this->floorSection; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserMakeAdmin.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserMakeAdmin.php deleted file mode 100644 index 614e4bda..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserMakeAdmin.php +++ /dev/null @@ -1,30 +0,0 @@ -status = $status; - } - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserName.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserName.php deleted file mode 100644 index 232defa7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserName.php +++ /dev/null @@ -1,48 +0,0 @@ -familyName = $familyName; - } - public function getFamilyName() - { - return $this->familyName; - } - public function setFullName($fullName) - { - $this->fullName = $fullName; - } - public function getFullName() - { - return $this->fullName; - } - public function setGivenName($givenName) - { - $this->givenName = $givenName; - } - public function getGivenName() - { - return $this->givenName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserOrganization.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserOrganization.php deleted file mode 100644 index e20e4a17..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserOrganization.php +++ /dev/null @@ -1,129 +0,0 @@ -costCenter = $costCenter; - } - public function getCostCenter() - { - return $this->costCenter; - } - public function setCustomType($customType) - { - $this->customType = $customType; - } - public function getCustomType() - { - return $this->customType; - } - public function setDepartment($department) - { - $this->department = $department; - } - public function getDepartment() - { - return $this->department; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDomain($domain) - { - $this->domain = $domain; - } - public function getDomain() - { - return $this->domain; - } - public function setFullTimeEquivalent($fullTimeEquivalent) - { - $this->fullTimeEquivalent = $fullTimeEquivalent; - } - public function getFullTimeEquivalent() - { - return $this->fullTimeEquivalent; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPrimary($primary) - { - $this->primary = $primary; - } - public function getPrimary() - { - return $this->primary; - } - public function setSymbol($symbol) - { - $this->symbol = $symbol; - } - public function getSymbol() - { - return $this->symbol; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserPhone.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserPhone.php deleted file mode 100644 index 233d9e91..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserPhone.php +++ /dev/null @@ -1,57 +0,0 @@ -customType = $customType; - } - public function getCustomType() - { - return $this->customType; - } - public function setPrimary($primary) - { - $this->primary = $primary; - } - public function getPrimary() - { - return $this->primary; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserPhoto.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserPhoto.php deleted file mode 100644 index d4d200e5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserPhoto.php +++ /dev/null @@ -1,93 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setHeight($height) - { - $this->height = $height; - } - public function getHeight() - { - return $this->height; - } - 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 setMimeType($mimeType) - { - $this->mimeType = $mimeType; - } - public function getMimeType() - { - return $this->mimeType; - } - public function setPhotoData($photoData) - { - $this->photoData = $photoData; - } - public function getPhotoData() - { - return $this->photoData; - } - public function setPrimaryEmail($primaryEmail) - { - $this->primaryEmail = $primaryEmail; - } - public function getPrimaryEmail() - { - return $this->primaryEmail; - } - public function setWidth($width) - { - $this->width = $width; - } - public function getWidth() - { - return $this->width; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserPosixAccount.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserPosixAccount.php deleted file mode 100644 index 99e6c498..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserPosixAccount.php +++ /dev/null @@ -1,111 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setGecos($gecos) - { - $this->gecos = $gecos; - } - public function getGecos() - { - return $this->gecos; - } - public function setGid($gid) - { - $this->gid = $gid; - } - public function getGid() - { - return $this->gid; - } - public function setHomeDirectory($homeDirectory) - { - $this->homeDirectory = $homeDirectory; - } - public function getHomeDirectory() - { - return $this->homeDirectory; - } - public function setOperatingSystemType($operatingSystemType) - { - $this->operatingSystemType = $operatingSystemType; - } - public function getOperatingSystemType() - { - return $this->operatingSystemType; - } - public function setPrimary($primary) - { - $this->primary = $primary; - } - public function getPrimary() - { - return $this->primary; - } - public function setShell($shell) - { - $this->shell = $shell; - } - public function getShell() - { - return $this->shell; - } - public function setSystemId($systemId) - { - $this->systemId = $systemId; - } - public function getSystemId() - { - return $this->systemId; - } - public function setUid($uid) - { - $this->uid = $uid; - } - public function getUid() - { - return $this->uid; - } - public function setUsername($username) - { - $this->username = $username; - } - public function getUsername() - { - return $this->username; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserRelation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserRelation.php deleted file mode 100644 index fb699a3e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserRelation.php +++ /dev/null @@ -1,48 +0,0 @@ -customType = $customType; - } - public function getCustomType() - { - return $this->customType; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserSshPublicKey.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserSshPublicKey.php deleted file mode 100644 index 012610e6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserSshPublicKey.php +++ /dev/null @@ -1,48 +0,0 @@ -expirationTimeUsec = $expirationTimeUsec; - } - public function getExpirationTimeUsec() - { - return $this->expirationTimeUsec; - } - public function setFingerprint($fingerprint) - { - $this->fingerprint = $fingerprint; - } - public function getFingerprint() - { - return $this->fingerprint; - } - public function setKey($key) - { - $this->key = $key; - } - public function getKey() - { - return $this->key; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserUndelete.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserUndelete.php deleted file mode 100644 index c3c8bee6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserUndelete.php +++ /dev/null @@ -1,30 +0,0 @@ -orgUnitPath = $orgUnitPath; - } - public function getOrgUnitPath() - { - return $this->orgUnitPath; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserWebsite.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserWebsite.php deleted file mode 100644 index a747522f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/UserWebsite.php +++ /dev/null @@ -1,57 +0,0 @@ -customType = $customType; - } - public function getCustomType() - { - return $this->customType; - } - public function setPrimary($primary) - { - $this->primary = $primary; - } - public function getPrimary() - { - return $this->primary; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Users.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Users.php deleted file mode 100644 index ff938fa6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/Users.php +++ /dev/null @@ -1,77 +0,0 @@ - "trigger_event", - ); - public $etag; - public $kind; - public $nextPageToken; - public $triggerEvent; - protected $usersType = 'Google_Service_Directory_User'; - protected $usersDataType = 'array'; - - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - 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; - } - public function setTriggerEvent($triggerEvent) - { - $this->triggerEvent = $triggerEvent; - } - public function getTriggerEvent() - { - return $this->triggerEvent; - } - /** - * @param Google_Service_Directory_User - */ - public function setUsers($users) - { - $this->users = $users; - } - /** - * @return Google_Service_Directory_User - */ - public function getUsers() - { - return $this->users; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/VerificationCode.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/VerificationCode.php deleted file mode 100644 index 85b28913..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/VerificationCode.php +++ /dev/null @@ -1,57 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setUserId($userId) - { - $this->userId = $userId; - } - public function getUserId() - { - return $this->userId; - } - public function setVerificationCode($verificationCode) - { - $this->verificationCode = $verificationCode; - } - public function getVerificationCode() - { - return $this->verificationCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/VerificationCodes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/VerificationCodes.php deleted file mode 100644 index 1b60ad27..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Directory/VerificationCodes.php +++ /dev/null @@ -1,56 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_Directory_VerificationCode - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Directory_VerificationCode - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns.php deleted file mode 100644 index 4e8199b0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns.php +++ /dev/null @@ -1,585 +0,0 @@ - - * Configures and serves authoritative DNS records.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Dns extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** View your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM_READ_ONLY = - "https://www.googleapis.com/auth/cloud-platform.read-only"; - /** View your DNS records hosted by Google Cloud DNS. */ - const NDEV_CLOUDDNS_READONLY = - "https://www.googleapis.com/auth/ndev.clouddns.readonly"; - /** View and manage your DNS records hosted by Google Cloud DNS. */ - const NDEV_CLOUDDNS_READWRITE = - "https://www.googleapis.com/auth/ndev.clouddns.readwrite"; - - public $changes; - public $dnsKeys; - public $managedZoneOperations; - public $managedZones; - public $policies; - public $projects; - public $resourceRecordSets; - - /** - * Constructs the internal representation of the Dns service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://dns.googleapis.com/'; - $this->servicePath = 'dns/v1/projects/'; - $this->batchPath = 'batch/dns/v1'; - $this->version = 'v1'; - $this->serviceName = 'dns'; - - $this->changes = new Google_Service_Dns_Resource_Changes( - $this, - $this->serviceName, - 'changes', - array( - 'methods' => array( - 'create' => array( - 'path' => '{project}/managedZones/{managedZone}/changes', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'managedZone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clientOperationId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/managedZones/{managedZone}/changes/{changeId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'managedZone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'changeId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clientOperationId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/managedZones/{managedZone}/changes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'managedZone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortOrder' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->dnsKeys = new Google_Service_Dns_Resource_DnsKeys( - $this, - $this->serviceName, - 'dnsKeys', - array( - 'methods' => array( - 'get' => array( - 'path' => '{project}/managedZones/{managedZone}/dnsKeys/{dnsKeyId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'managedZone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'dnsKeyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clientOperationId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'digestType' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/managedZones/{managedZone}/dnsKeys', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'managedZone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'digestType' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->managedZoneOperations = new Google_Service_Dns_Resource_ManagedZoneOperations( - $this, - $this->serviceName, - 'managedZoneOperations', - array( - 'methods' => array( - 'get' => array( - 'path' => '{project}/managedZones/{managedZone}/operations/{operation}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'managedZone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'operation' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clientOperationId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/managedZones/{managedZone}/operations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'managedZone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->managedZones = new Google_Service_Dns_Resource_ManagedZones( - $this, - $this->serviceName, - 'managedZones', - array( - 'methods' => array( - 'create' => array( - 'path' => '{project}/managedZones', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clientOperationId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => '{project}/managedZones/{managedZone}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'managedZone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clientOperationId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/managedZones/{managedZone}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'managedZone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clientOperationId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/managedZones', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'dnsName' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => '{project}/managedZones/{managedZone}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'managedZone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clientOperationId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => '{project}/managedZones/{managedZone}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'managedZone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clientOperationId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->policies = new Google_Service_Dns_Resource_Policies( - $this, - $this->serviceName, - 'policies', - array( - 'methods' => array( - 'create' => array( - 'path' => '{project}/policies', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clientOperationId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => '{project}/policies/{policy}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'policy' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clientOperationId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{project}/policies/{policy}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'policy' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clientOperationId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/policies', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => '{project}/policies/{policy}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'policy' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clientOperationId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => '{project}/policies/{policy}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'policy' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clientOperationId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects = new Google_Service_Dns_Resource_Projects( - $this, - $this->serviceName, - 'projects', - array( - 'methods' => array( - 'get' => array( - 'path' => '{project}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clientOperationId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->resourceRecordSets = new Google_Service_Dns_Resource_ResourceRecordSets( - $this, - $this->serviceName, - 'resourceRecordSets', - array( - 'methods' => array( - 'list' => array( - 'path' => '{project}/managedZones/{managedZone}/rrsets', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'managedZone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'name' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'type' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/Change.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/Change.php deleted file mode 100644 index fb147eb0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/Change.php +++ /dev/null @@ -1,99 +0,0 @@ -additions = $additions; - } - /** - * @return Google_Service_Dns_ResourceRecordSet - */ - public function getAdditions() - { - return $this->additions; - } - /** - * @param Google_Service_Dns_ResourceRecordSet - */ - public function setDeletions($deletions) - { - $this->deletions = $deletions; - } - /** - * @return Google_Service_Dns_ResourceRecordSet - */ - public function getDeletions() - { - return $this->deletions; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setIsServing($isServing) - { - $this->isServing = $isServing; - } - public function getIsServing() - { - return $this->isServing; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/ChangesListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/ChangesListResponse.php deleted file mode 100644 index 06a71cda..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/ChangesListResponse.php +++ /dev/null @@ -1,72 +0,0 @@ -changes = $changes; - } - /** - * @return Google_Service_Dns_Change - */ - public function getChanges() - { - return $this->changes; - } - /** - * @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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/DnsKey.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/DnsKey.php deleted file mode 100644 index 6d3c3cf8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/DnsKey.php +++ /dev/null @@ -1,128 +0,0 @@ -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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/DnsKeyDigest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/DnsKeyDigest.php deleted file mode 100644 index 2bde0914..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/DnsKeyDigest.php +++ /dev/null @@ -1,39 +0,0 @@ -digest = $digest; - } - public function getDigest() - { - return $this->digest; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/DnsKeySpec.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/DnsKeySpec.php deleted file mode 100644 index b483600f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/DnsKeySpec.php +++ /dev/null @@ -1,57 +0,0 @@ -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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/DnsKeysListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/DnsKeysListResponse.php deleted file mode 100644 index 2f2a3cdc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/DnsKeysListResponse.php +++ /dev/null @@ -1,72 +0,0 @@ -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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/ManagedZone.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/ManagedZone.php deleted file mode 100644 index 9dca06d0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/ManagedZone.php +++ /dev/null @@ -1,176 +0,0 @@ -creationTime = $creationTime; - } - public function getCreationTime() - { - return $this->creationTime; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDnsName($dnsName) - { - $this->dnsName = $dnsName; - } - public function getDnsName() - { - return $this->dnsName; - } - /** - * @param Google_Service_Dns_ManagedZoneDnsSecConfig - */ - public function setDnssecConfig(Google_Service_Dns_ManagedZoneDnsSecConfig $dnssecConfig) - { - $this->dnssecConfig = $dnssecConfig; - } - /** - * @return Google_Service_Dns_ManagedZoneDnsSecConfig - */ - public function getDnssecConfig() - { - return $this->dnssecConfig; - } - /** - * @param Google_Service_Dns_ManagedZoneForwardingConfig - */ - public function setForwardingConfig(Google_Service_Dns_ManagedZoneForwardingConfig $forwardingConfig) - { - $this->forwardingConfig = $forwardingConfig; - } - /** - * @return Google_Service_Dns_ManagedZoneForwardingConfig - */ - public function getForwardingConfig() - { - return $this->forwardingConfig; - } - 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 setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNameServerSet($nameServerSet) - { - $this->nameServerSet = $nameServerSet; - } - public function getNameServerSet() - { - return $this->nameServerSet; - } - public function setNameServers($nameServers) - { - $this->nameServers = $nameServers; - } - public function getNameServers() - { - return $this->nameServers; - } - /** - * @param Google_Service_Dns_ManagedZonePeeringConfig - */ - public function setPeeringConfig(Google_Service_Dns_ManagedZonePeeringConfig $peeringConfig) - { - $this->peeringConfig = $peeringConfig; - } - /** - * @return Google_Service_Dns_ManagedZonePeeringConfig - */ - public function getPeeringConfig() - { - return $this->peeringConfig; - } - /** - * @param Google_Service_Dns_ManagedZonePrivateVisibilityConfig - */ - public function setPrivateVisibilityConfig(Google_Service_Dns_ManagedZonePrivateVisibilityConfig $privateVisibilityConfig) - { - $this->privateVisibilityConfig = $privateVisibilityConfig; - } - /** - * @return Google_Service_Dns_ManagedZonePrivateVisibilityConfig - */ - public function getPrivateVisibilityConfig() - { - return $this->privateVisibilityConfig; - } - public function setVisibility($visibility) - { - $this->visibility = $visibility; - } - public function getVisibility() - { - return $this->visibility; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/ManagedZoneDnsSecConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/ManagedZoneDnsSecConfig.php deleted file mode 100644 index af59fabc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/ManagedZoneDnsSecConfig.php +++ /dev/null @@ -1,65 +0,0 @@ -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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/ManagedZoneForwardingConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/ManagedZoneForwardingConfig.php deleted file mode 100644 index 9ab215e1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/ManagedZoneForwardingConfig.php +++ /dev/null @@ -1,47 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Dns_ManagedZoneForwardingConfigNameServerTarget - */ - public function setTargetNameServers($targetNameServers) - { - $this->targetNameServers = $targetNameServers; - } - /** - * @return Google_Service_Dns_ManagedZoneForwardingConfigNameServerTarget - */ - public function getTargetNameServers() - { - return $this->targetNameServers; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/ManagedZoneForwardingConfigNameServerTarget.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/ManagedZoneForwardingConfigNameServerTarget.php deleted file mode 100644 index 01e22f15..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/ManagedZoneForwardingConfigNameServerTarget.php +++ /dev/null @@ -1,39 +0,0 @@ -ipv4Address = $ipv4Address; - } - public function getIpv4Address() - { - return $this->ipv4Address; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/ManagedZoneOperationsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/ManagedZoneOperationsListResponse.php deleted file mode 100644 index 7b1e3c76..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/ManagedZoneOperationsListResponse.php +++ /dev/null @@ -1,72 +0,0 @@ -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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/ManagedZonePeeringConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/ManagedZonePeeringConfig.php deleted file mode 100644 index c783bb4b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/ManagedZonePeeringConfig.php +++ /dev/null @@ -1,46 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Dns_ManagedZonePeeringConfigTargetNetwork - */ - public function setTargetNetwork(Google_Service_Dns_ManagedZonePeeringConfigTargetNetwork $targetNetwork) - { - $this->targetNetwork = $targetNetwork; - } - /** - * @return Google_Service_Dns_ManagedZonePeeringConfigTargetNetwork - */ - public function getTargetNetwork() - { - return $this->targetNetwork; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/ManagedZonePeeringConfigTargetNetwork.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/ManagedZonePeeringConfigTargetNetwork.php deleted file mode 100644 index 05ad91fe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/ManagedZonePeeringConfigTargetNetwork.php +++ /dev/null @@ -1,48 +0,0 @@ -deactivateTime = $deactivateTime; - } - public function getDeactivateTime() - { - return $this->deactivateTime; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNetworkUrl($networkUrl) - { - $this->networkUrl = $networkUrl; - } - public function getNetworkUrl() - { - return $this->networkUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/ManagedZonePrivateVisibilityConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/ManagedZonePrivateVisibilityConfig.php deleted file mode 100644 index 58c80ae8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/ManagedZonePrivateVisibilityConfig.php +++ /dev/null @@ -1,47 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Dns_ManagedZonePrivateVisibilityConfigNetwork - */ - public function setNetworks($networks) - { - $this->networks = $networks; - } - /** - * @return Google_Service_Dns_ManagedZonePrivateVisibilityConfigNetwork - */ - public function getNetworks() - { - return $this->networks; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/ManagedZonePrivateVisibilityConfigNetwork.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/ManagedZonePrivateVisibilityConfigNetwork.php deleted file mode 100644 index 014d7e0f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/ManagedZonePrivateVisibilityConfigNetwork.php +++ /dev/null @@ -1,39 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNetworkUrl($networkUrl) - { - $this->networkUrl = $networkUrl; - } - public function getNetworkUrl() - { - return $this->networkUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/ManagedZonesListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/ManagedZonesListResponse.php deleted file mode 100644 index 3730c2a8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/ManagedZonesListResponse.php +++ /dev/null @@ -1,72 +0,0 @@ -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; - } - /** - * @param Google_Service_Dns_ManagedZone - */ - public function setManagedZones($managedZones) - { - $this->managedZones = $managedZones; - } - /** - * @return Google_Service_Dns_ManagedZone - */ - public function getManagedZones() - { - return $this->managedZones; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/Operation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/Operation.php deleted file mode 100644 index 064ecfc2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/Operation.php +++ /dev/null @@ -1,107 +0,0 @@ -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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/OperationDnsKeyContext.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/OperationDnsKeyContext.php deleted file mode 100644 index d70204cf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/OperationDnsKeyContext.php +++ /dev/null @@ -1,53 +0,0 @@ -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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/OperationManagedZoneContext.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/OperationManagedZoneContext.php deleted file mode 100644 index 020dce30..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/OperationManagedZoneContext.php +++ /dev/null @@ -1,53 +0,0 @@ -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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/PoliciesListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/PoliciesListResponse.php deleted file mode 100644 index 2c6cf964..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/PoliciesListResponse.php +++ /dev/null @@ -1,72 +0,0 @@ -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_Policy - */ - public function setPolicies($policies) - { - $this->policies = $policies; - } - /** - * @return Google_Service_Dns_Policy - */ - public function getPolicies() - { - return $this->policies; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/PoliciesPatchResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/PoliciesPatchResponse.php deleted file mode 100644 index 5bdb07f9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/PoliciesPatchResponse.php +++ /dev/null @@ -1,53 +0,0 @@ -header = $header; - } - /** - * @return Google_Service_Dns_ResponseHeader - */ - public function getHeader() - { - return $this->header; - } - /** - * @param Google_Service_Dns_Policy - */ - public function setPolicy(Google_Service_Dns_Policy $policy) - { - $this->policy = $policy; - } - /** - * @return Google_Service_Dns_Policy - */ - public function getPolicy() - { - return $this->policy; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/PoliciesUpdateResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/PoliciesUpdateResponse.php deleted file mode 100644 index 76334901..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/PoliciesUpdateResponse.php +++ /dev/null @@ -1,53 +0,0 @@ -header = $header; - } - /** - * @return Google_Service_Dns_ResponseHeader - */ - public function getHeader() - { - return $this->header; - } - /** - * @param Google_Service_Dns_Policy - */ - public function setPolicy(Google_Service_Dns_Policy $policy) - { - $this->policy = $policy; - } - /** - * @return Google_Service_Dns_Policy - */ - public function getPolicy() - { - return $this->policy; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/Policy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/Policy.php deleted file mode 100644 index a5d5d719..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/Policy.php +++ /dev/null @@ -1,108 +0,0 @@ -alternativeNameServerConfig = $alternativeNameServerConfig; - } - /** - * @return Google_Service_Dns_PolicyAlternativeNameServerConfig - */ - public function getAlternativeNameServerConfig() - { - return $this->alternativeNameServerConfig; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setEnableInboundForwarding($enableInboundForwarding) - { - $this->enableInboundForwarding = $enableInboundForwarding; - } - public function getEnableInboundForwarding() - { - return $this->enableInboundForwarding; - } - public function setEnableLogging($enableLogging) - { - $this->enableLogging = $enableLogging; - } - public function getEnableLogging() - { - return $this->enableLogging; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Dns_PolicyNetwork - */ - public function setNetworks($networks) - { - $this->networks = $networks; - } - /** - * @return Google_Service_Dns_PolicyNetwork - */ - public function getNetworks() - { - return $this->networks; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/PolicyAlternativeNameServerConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/PolicyAlternativeNameServerConfig.php deleted file mode 100644 index 1e93ead0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/PolicyAlternativeNameServerConfig.php +++ /dev/null @@ -1,47 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Dns_PolicyAlternativeNameServerConfigTargetNameServer - */ - public function setTargetNameServers($targetNameServers) - { - $this->targetNameServers = $targetNameServers; - } - /** - * @return Google_Service_Dns_PolicyAlternativeNameServerConfigTargetNameServer - */ - public function getTargetNameServers() - { - return $this->targetNameServers; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/PolicyAlternativeNameServerConfigTargetNameServer.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/PolicyAlternativeNameServerConfigTargetNameServer.php deleted file mode 100644 index 4435f10d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/PolicyAlternativeNameServerConfigTargetNameServer.php +++ /dev/null @@ -1,39 +0,0 @@ -ipv4Address = $ipv4Address; - } - public function getIpv4Address() - { - return $this->ipv4Address; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/PolicyNetwork.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/PolicyNetwork.php deleted file mode 100644 index 167f3868..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/PolicyNetwork.php +++ /dev/null @@ -1,39 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNetworkUrl($networkUrl) - { - $this->networkUrl = $networkUrl; - } - public function getNetworkUrl() - { - return $this->networkUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/Project.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/Project.php deleted file mode 100644 index 936f755e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/Project.php +++ /dev/null @@ -1,64 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNumber($number) - { - $this->number = $number; - } - public function getNumber() - { - return $this->number; - } - /** - * @param Google_Service_Dns_Quota - */ - public function setQuota(Google_Service_Dns_Quota $quota) - { - $this->quota = $quota; - } - /** - * @return Google_Service_Dns_Quota - */ - public function getQuota() - { - return $this->quota; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/Quota.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/Quota.php deleted file mode 100644 index 729e6cad..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/Quota.php +++ /dev/null @@ -1,164 +0,0 @@ -dnsKeysPerManagedZone = $dnsKeysPerManagedZone; - } - public function getDnsKeysPerManagedZone() - { - return $this->dnsKeysPerManagedZone; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setManagedZones($managedZones) - { - $this->managedZones = $managedZones; - } - public function getManagedZones() - { - return $this->managedZones; - } - public function setManagedZonesPerNetwork($managedZonesPerNetwork) - { - $this->managedZonesPerNetwork = $managedZonesPerNetwork; - } - public function getManagedZonesPerNetwork() - { - return $this->managedZonesPerNetwork; - } - public function setNetworksPerManagedZone($networksPerManagedZone) - { - $this->networksPerManagedZone = $networksPerManagedZone; - } - public function getNetworksPerManagedZone() - { - return $this->networksPerManagedZone; - } - public function setNetworksPerPolicy($networksPerPolicy) - { - $this->networksPerPolicy = $networksPerPolicy; - } - public function getNetworksPerPolicy() - { - return $this->networksPerPolicy; - } - public function setPolicies($policies) - { - $this->policies = $policies; - } - public function getPolicies() - { - return $this->policies; - } - public function setResourceRecordsPerRrset($resourceRecordsPerRrset) - { - $this->resourceRecordsPerRrset = $resourceRecordsPerRrset; - } - public function getResourceRecordsPerRrset() - { - return $this->resourceRecordsPerRrset; - } - public function setRrsetAdditionsPerChange($rrsetAdditionsPerChange) - { - $this->rrsetAdditionsPerChange = $rrsetAdditionsPerChange; - } - public function getRrsetAdditionsPerChange() - { - return $this->rrsetAdditionsPerChange; - } - public function setRrsetDeletionsPerChange($rrsetDeletionsPerChange) - { - $this->rrsetDeletionsPerChange = $rrsetDeletionsPerChange; - } - public function getRrsetDeletionsPerChange() - { - return $this->rrsetDeletionsPerChange; - } - public function setRrsetsPerManagedZone($rrsetsPerManagedZone) - { - $this->rrsetsPerManagedZone = $rrsetsPerManagedZone; - } - public function getRrsetsPerManagedZone() - { - return $this->rrsetsPerManagedZone; - } - public function setTargetNameServersPerManagedZone($targetNameServersPerManagedZone) - { - $this->targetNameServersPerManagedZone = $targetNameServersPerManagedZone; - } - public function getTargetNameServersPerManagedZone() - { - return $this->targetNameServersPerManagedZone; - } - public function setTargetNameServersPerPolicy($targetNameServersPerPolicy) - { - $this->targetNameServersPerPolicy = $targetNameServersPerPolicy; - } - public function getTargetNameServersPerPolicy() - { - return $this->targetNameServersPerPolicy; - } - public function setTotalRrdataSizePerChange($totalRrdataSizePerChange) - { - $this->totalRrdataSizePerChange = $totalRrdataSizePerChange; - } - public function getTotalRrdataSizePerChange() - { - return $this->totalRrdataSizePerChange; - } - /** - * @param Google_Service_Dns_DnsKeySpec - */ - public function setWhitelistedKeySpecs($whitelistedKeySpecs) - { - $this->whitelistedKeySpecs = $whitelistedKeySpecs; - } - /** - * @return Google_Service_Dns_DnsKeySpec - */ - public function getWhitelistedKeySpecs() - { - return $this->whitelistedKeySpecs; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/Resource/Changes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/Resource/Changes.php deleted file mode 100644 index d2f4e0cb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/Resource/Changes.php +++ /dev/null @@ -1,94 +0,0 @@ - - * $dnsService = new Google_Service_Dns(...); - * $changes = $dnsService->changes; - * - */ -class Google_Service_Dns_Resource_Changes extends Google_Service_Resource -{ - /** - * Atomically update the ResourceRecordSet collection. (changes.create) - * - * @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 Google_Service_Dns_Change $postBody - * @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_Change - */ - public function create($project, $managedZone, Google_Service_Dns_Change $postBody, $optParams = array()) - { - $params = array('project' => $project, 'managedZone' => $managedZone, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Dns_Change"); - } - /** - * Fetch the representation of an existing Change. (changes.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 $changeId The identifier of the requested change, from a - * previous ResourceRecordSetsChangeResponse. - * @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_Change - */ - public function get($project, $managedZone, $changeId, $optParams = array()) - { - $params = array('project' => $project, 'managedZone' => $managedZone, 'changeId' => $changeId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dns_Change"); - } - /** - * Enumerate Changes to a ResourceRecordSet collection. (changes.listChanges) - * - * @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 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 value is - * change sequence. - * @opt_param string sortOrder Sorting order direction: 'ascending' or - * 'descending'. - * @return Google_Service_Dns_ChangesListResponse - */ - public function listChanges($project, $managedZone, $optParams = array()) - { - $params = array('project' => $project, 'managedZone' => $managedZone); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dns_ChangesListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/Resource/DnsKeys.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/Resource/DnsKeys.php deleted file mode 100644 index 4351929e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/Resource/DnsKeys.php +++ /dev/null @@ -1,75 +0,0 @@ - - * $dnsService = new Google_Service_Dns(...); - * $dnsKeys = $dnsService->dnsKeys; - * - */ -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"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/Resource/ManagedZoneOperations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/Resource/ManagedZoneOperations.php deleted file mode 100644 index db05d073..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/Resource/ManagedZoneOperations.php +++ /dev/null @@ -1,73 +0,0 @@ - - * $dnsService = new Google_Service_Dns(...); - * $managedZoneOperations = $dnsService->managedZoneOperations; - * - */ -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"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/Resource/ManagedZones.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/Resource/ManagedZones.php deleted file mode 100644 index 2affe52c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/Resource/ManagedZones.php +++ /dev/null @@ -1,145 +0,0 @@ - - * $dnsService = new Google_Service_Dns(...); - * $managedZones = $dnsService->managedZones; - * - */ -class Google_Service_Dns_Resource_ManagedZones extends Google_Service_Resource -{ - /** - * Create a new ManagedZone. (managedZones.create) - * - * @param string $project Identifies the project addressed by this request. - * @param Google_Service_Dns_ManagedZone $postBody - * @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_ManagedZone - */ - public function create($project, Google_Service_Dns_ManagedZone $postBody, $optParams = array()) - { - $params = array('project' => $project, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Dns_ManagedZone"); - } - /** - * Delete a previously created ManagedZone. (managedZones.delete) - * - * @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 clientOperationId For mutating operation requests only. An - * optional identifier specified by the client. Must be unique for operation - * resources in the Operations collection. - */ - public function delete($project, $managedZone, $optParams = array()) - { - $params = array('project' => $project, 'managedZone' => $managedZone); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Fetch the representation of an existing ManagedZone. (managedZones.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 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_ManagedZone - */ - public function get($project, $managedZone, $optParams = array()) - { - $params = array('project' => $project, 'managedZone' => $managedZone); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dns_ManagedZone"); - } - /** - * Enumerate ManagedZones that have been created but not yet deleted. - * (managedZones.listManagedZones) - * - * @param string $project Identifies the project addressed by this request. - * @param array $optParams Optional parameters. - * - * @opt_param string dnsName Restricts the list to return only zones with this - * domain name. - * @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_ManagedZonesListResponse - */ - public function listManagedZones($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dns_ManagedZonesListResponse"); - } - /** - * Apply a partial update to an existing ManagedZone. (managedZones.patch) - * - * @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 Google_Service_Dns_ManagedZone $postBody - * @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 patch($project, $managedZone, Google_Service_Dns_ManagedZone $postBody, $optParams = array()) - { - $params = array('project' => $project, 'managedZone' => $managedZone, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Dns_Operation"); - } - /** - * Update an existing ManagedZone. (managedZones.update) - * - * @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 Google_Service_Dns_ManagedZone $postBody - * @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 update($project, $managedZone, Google_Service_Dns_ManagedZone $postBody, $optParams = array()) - { - $params = array('project' => $project, 'managedZone' => $managedZone, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Dns_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/Resource/Policies.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/Resource/Policies.php deleted file mode 100644 index 37fbaca6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/Resource/Policies.php +++ /dev/null @@ -1,143 +0,0 @@ - - * $dnsService = new Google_Service_Dns(...); - * $policies = $dnsService->policies; - * - */ -class Google_Service_Dns_Resource_Policies extends Google_Service_Resource -{ - /** - * Create a new Policy (policies.create) - * - * @param string $project Identifies the project addressed by this request. - * @param Google_Service_Dns_Policy $postBody - * @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_Policy - */ - public function create($project, Google_Service_Dns_Policy $postBody, $optParams = array()) - { - $params = array('project' => $project, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Dns_Policy"); - } - /** - * Delete a previously created Policy. Will fail if the policy is still being - * referenced by a network. (policies.delete) - * - * @param string $project Identifies the project addressed by this request. - * @param string $policy User given friendly name of the policy 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. - */ - public function delete($project, $policy, $optParams = array()) - { - $params = array('project' => $project, 'policy' => $policy); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Fetch the representation of an existing Policy. (policies.get) - * - * @param string $project Identifies the project addressed by this request. - * @param string $policy User given friendly name of the policy 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_Policy - */ - public function get($project, $policy, $optParams = array()) - { - $params = array('project' => $project, 'policy' => $policy); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dns_Policy"); - } - /** - * Enumerate all Policies associated with a project. (policies.listPolicies) - * - * @param string $project Identifies the project 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. - * @return Google_Service_Dns_PoliciesListResponse - */ - public function listPolicies($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dns_PoliciesListResponse"); - } - /** - * Apply a partial update to an existing Policy. (policies.patch) - * - * @param string $project Identifies the project addressed by this request. - * @param string $policy User given friendly name of the policy addressed by - * this request. - * @param Google_Service_Dns_Policy $postBody - * @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_PoliciesPatchResponse - */ - public function patch($project, $policy, Google_Service_Dns_Policy $postBody, $optParams = array()) - { - $params = array('project' => $project, 'policy' => $policy, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Dns_PoliciesPatchResponse"); - } - /** - * Update an existing Policy. (policies.update) - * - * @param string $project Identifies the project addressed by this request. - * @param string $policy User given friendly name of the policy addressed by - * this request. - * @param Google_Service_Dns_Policy $postBody - * @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_PoliciesUpdateResponse - */ - public function update($project, $policy, Google_Service_Dns_Policy $postBody, $optParams = array()) - { - $params = array('project' => $project, 'policy' => $policy, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Dns_PoliciesUpdateResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/Resource/Projects.php deleted file mode 100644 index 08cb559a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/Resource/Projects.php +++ /dev/null @@ -1,45 +0,0 @@ - - * $dnsService = new Google_Service_Dns(...); - * $projects = $dnsService->projects; - * - */ -class Google_Service_Dns_Resource_Projects extends Google_Service_Resource -{ - /** - * Fetch the representation of an existing Project. (projects.get) - * - * @param string $project Identifies the project 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_Project - */ - public function get($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Dns_Project"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/Resource/ResourceRecordSets.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/Resource/ResourceRecordSets.php deleted file mode 100644 index 5bfaf77f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/Resource/ResourceRecordSets.php +++ /dev/null @@ -1,54 +0,0 @@ - - * $dnsService = new Google_Service_Dns(...); - * $resourceRecordSets = $dnsService->resourceRecordSets; - * - */ -class Google_Service_Dns_Resource_ResourceRecordSets extends Google_Service_Resource -{ - /** - * Enumerate ResourceRecordSets that have been created but not yet deleted. - * (resourceRecordSets.listResourceRecordSets) - * - * @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 int maxResults Optional. Maximum number of results to be returned. - * If unspecified, the server will decide how many results to return. - * @opt_param string name Restricts the list to return only records with this - * fully qualified domain name. - * @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 type Restricts the list to return only records of this - * type. If present, the "name" parameter must also be present. - * @return Google_Service_Dns_ResourceRecordSetsListResponse - */ - public function listResourceRecordSets($project, $managedZone, $optParams = array()) - { - $params = array('project' => $project, 'managedZone' => $managedZone); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Dns_ResourceRecordSetsListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/ResourceRecordSet.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/ResourceRecordSet.php deleted file mode 100644 index a805b83c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/ResourceRecordSet.php +++ /dev/null @@ -1,76 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setRrdatas($rrdatas) - { - $this->rrdatas = $rrdatas; - } - public function getRrdatas() - { - return $this->rrdatas; - } - public function setSignatureRrdatas($signatureRrdatas) - { - $this->signatureRrdatas = $signatureRrdatas; - } - public function getSignatureRrdatas() - { - return $this->signatureRrdatas; - } - public function setTtl($ttl) - { - $this->ttl = $ttl; - } - public function getTtl() - { - return $this->ttl; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/ResourceRecordSetsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/ResourceRecordSetsListResponse.php deleted file mode 100644 index 0b6c8c90..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/ResourceRecordSetsListResponse.php +++ /dev/null @@ -1,72 +0,0 @@ -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_ResourceRecordSet - */ - public function setRrsets($rrsets) - { - $this->rrsets = $rrsets; - } - /** - * @return Google_Service_Dns_ResourceRecordSet - */ - public function getRrsets() - { - return $this->rrsets; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/ResponseHeader.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/ResponseHeader.php deleted file mode 100644 index 1cb3a53d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Dns/ResponseHeader.php +++ /dev/null @@ -1,30 +0,0 @@ -operationId = $operationId; - } - public function getOperationId() - { - return $this->operationId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs.php deleted file mode 100644 index 01cc9a79..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs.php +++ /dev/null @@ -1,105 +0,0 @@ - - * Reads and writes Google Docs documents.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Docs extends Google_Service -{ - /** View and manage your Google Docs documents. */ - const DOCUMENTS = - "https://www.googleapis.com/auth/documents"; - /** View your Google Docs documents. */ - const DOCUMENTS_READONLY = - "https://www.googleapis.com/auth/documents.readonly"; - /** See, edit, create, and delete all of your Google Drive files. */ - const DRIVE = - "https://www.googleapis.com/auth/drive"; - /** View and manage Google Drive files and folders that you have opened or created with this app. */ - const DRIVE_FILE = - "https://www.googleapis.com/auth/drive.file"; - /** See and download all your Google Drive files. */ - const DRIVE_READONLY = - "https://www.googleapis.com/auth/drive.readonly"; - - public $documents; - - /** - * Constructs the internal representation of the Docs service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://docs.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'docs'; - - $this->documents = new Google_Service_Docs_Resource_Documents( - $this, - $this->serviceName, - 'documents', - array( - 'methods' => array( - 'batchUpdate' => array( - 'path' => 'v1/documents/{documentId}:batchUpdate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'documentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'create' => array( - 'path' => 'v1/documents', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'get' => array( - 'path' => 'v1/documents/{documentId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'documentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'suggestionsViewMode' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/AutoText.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/AutoText.php deleted file mode 100644 index 095dc0ee..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/AutoText.php +++ /dev/null @@ -1,81 +0,0 @@ -suggestedDeletionIds = $suggestedDeletionIds; - } - public function getSuggestedDeletionIds() - { - return $this->suggestedDeletionIds; - } - public function setSuggestedInsertionIds($suggestedInsertionIds) - { - $this->suggestedInsertionIds = $suggestedInsertionIds; - } - public function getSuggestedInsertionIds() - { - return $this->suggestedInsertionIds; - } - /** - * @param Google_Service_Docs_SuggestedTextStyle - */ - public function setSuggestedTextStyleChanges($suggestedTextStyleChanges) - { - $this->suggestedTextStyleChanges = $suggestedTextStyleChanges; - } - /** - * @return Google_Service_Docs_SuggestedTextStyle - */ - public function getSuggestedTextStyleChanges() - { - return $this->suggestedTextStyleChanges; - } - /** - * @param Google_Service_Docs_TextStyle - */ - public function setTextStyle(Google_Service_Docs_TextStyle $textStyle) - { - $this->textStyle = $textStyle; - } - /** - * @return Google_Service_Docs_TextStyle - */ - public function getTextStyle() - { - return $this->textStyle; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Background.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Background.php deleted file mode 100644 index 6522849d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Background.php +++ /dev/null @@ -1,37 +0,0 @@ -color = $color; - } - /** - * @return Google_Service_Docs_OptionalColor - */ - public function getColor() - { - return $this->color; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/BackgroundSuggestionState.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/BackgroundSuggestionState.php deleted file mode 100644 index 76a0cdfc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/BackgroundSuggestionState.php +++ /dev/null @@ -1,30 +0,0 @@ -backgroundColorSuggested = $backgroundColorSuggested; - } - public function getBackgroundColorSuggested() - { - return $this->backgroundColorSuggested; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/BatchUpdateDocumentRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/BatchUpdateDocumentRequest.php deleted file mode 100644 index f3ce8f40..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/BatchUpdateDocumentRequest.php +++ /dev/null @@ -1,54 +0,0 @@ -requests = $requests; - } - /** - * @return Google_Service_Docs_Request - */ - public function getRequests() - { - return $this->requests; - } - /** - * @param Google_Service_Docs_WriteControl - */ - public function setWriteControl(Google_Service_Docs_WriteControl $writeControl) - { - $this->writeControl = $writeControl; - } - /** - * @return Google_Service_Docs_WriteControl - */ - public function getWriteControl() - { - return $this->writeControl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/BatchUpdateDocumentResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/BatchUpdateDocumentResponse.php deleted file mode 100644 index 284a4d09..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/BatchUpdateDocumentResponse.php +++ /dev/null @@ -1,63 +0,0 @@ -documentId = $documentId; - } - public function getDocumentId() - { - return $this->documentId; - } - /** - * @param Google_Service_Docs_Response - */ - public function setReplies($replies) - { - $this->replies = $replies; - } - /** - * @return Google_Service_Docs_Response - */ - public function getReplies() - { - return $this->replies; - } - /** - * @param Google_Service_Docs_WriteControl - */ - public function setWriteControl(Google_Service_Docs_WriteControl $writeControl) - { - $this->writeControl = $writeControl; - } - /** - * @return Google_Service_Docs_WriteControl - */ - public function getWriteControl() - { - return $this->writeControl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Body.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Body.php deleted file mode 100644 index db1387a5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Body.php +++ /dev/null @@ -1,38 +0,0 @@ -content = $content; - } - /** - * @return Google_Service_Docs_StructuralElement - */ - public function getContent() - { - return $this->content; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Bullet.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Bullet.php deleted file mode 100644 index 63ea6d16..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Bullet.php +++ /dev/null @@ -1,55 +0,0 @@ -listId = $listId; - } - public function getListId() - { - return $this->listId; - } - public function setNestingLevel($nestingLevel) - { - $this->nestingLevel = $nestingLevel; - } - public function getNestingLevel() - { - return $this->nestingLevel; - } - /** - * @param Google_Service_Docs_TextStyle - */ - public function setTextStyle(Google_Service_Docs_TextStyle $textStyle) - { - $this->textStyle = $textStyle; - } - /** - * @return Google_Service_Docs_TextStyle - */ - public function getTextStyle() - { - return $this->textStyle; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/BulletSuggestionState.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/BulletSuggestionState.php deleted file mode 100644 index af357d6c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/BulletSuggestionState.php +++ /dev/null @@ -1,55 +0,0 @@ -listIdSuggested = $listIdSuggested; - } - public function getListIdSuggested() - { - return $this->listIdSuggested; - } - public function setNestingLevelSuggested($nestingLevelSuggested) - { - $this->nestingLevelSuggested = $nestingLevelSuggested; - } - public function getNestingLevelSuggested() - { - return $this->nestingLevelSuggested; - } - /** - * @param Google_Service_Docs_TextStyleSuggestionState - */ - public function setTextStyleSuggestionState(Google_Service_Docs_TextStyleSuggestionState $textStyleSuggestionState) - { - $this->textStyleSuggestionState = $textStyleSuggestionState; - } - /** - * @return Google_Service_Docs_TextStyleSuggestionState - */ - public function getTextStyleSuggestionState() - { - return $this->textStyleSuggestionState; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Color.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Color.php deleted file mode 100644 index 84300125..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Color.php +++ /dev/null @@ -1,37 +0,0 @@ -rgbColor = $rgbColor; - } - /** - * @return Google_Service_Docs_RgbColor - */ - public function getRgbColor() - { - return $this->rgbColor; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/ColumnBreak.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/ColumnBreak.php deleted file mode 100644 index 31b194be..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/ColumnBreak.php +++ /dev/null @@ -1,72 +0,0 @@ -suggestedDeletionIds = $suggestedDeletionIds; - } - public function getSuggestedDeletionIds() - { - return $this->suggestedDeletionIds; - } - public function setSuggestedInsertionIds($suggestedInsertionIds) - { - $this->suggestedInsertionIds = $suggestedInsertionIds; - } - public function getSuggestedInsertionIds() - { - return $this->suggestedInsertionIds; - } - /** - * @param Google_Service_Docs_SuggestedTextStyle - */ - public function setSuggestedTextStyleChanges($suggestedTextStyleChanges) - { - $this->suggestedTextStyleChanges = $suggestedTextStyleChanges; - } - /** - * @return Google_Service_Docs_SuggestedTextStyle - */ - public function getSuggestedTextStyleChanges() - { - return $this->suggestedTextStyleChanges; - } - /** - * @param Google_Service_Docs_TextStyle - */ - public function setTextStyle(Google_Service_Docs_TextStyle $textStyle) - { - $this->textStyle = $textStyle; - } - /** - * @return Google_Service_Docs_TextStyle - */ - public function getTextStyle() - { - return $this->textStyle; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/CreateFooterRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/CreateFooterRequest.php deleted file mode 100644 index b0b9e396..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/CreateFooterRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -sectionBreakLocation = $sectionBreakLocation; - } - /** - * @return Google_Service_Docs_Location - */ - public function getSectionBreakLocation() - { - return $this->sectionBreakLocation; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/CreateFooterResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/CreateFooterResponse.php deleted file mode 100644 index 1c16215d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/CreateFooterResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -footerId = $footerId; - } - public function getFooterId() - { - return $this->footerId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/CreateFootnoteRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/CreateFootnoteRequest.php deleted file mode 100644 index 11d54d43..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/CreateFootnoteRequest.php +++ /dev/null @@ -1,53 +0,0 @@ -endOfSegmentLocation = $endOfSegmentLocation; - } - /** - * @return Google_Service_Docs_EndOfSegmentLocation - */ - public function getEndOfSegmentLocation() - { - return $this->endOfSegmentLocation; - } - /** - * @param Google_Service_Docs_Location - */ - public function setLocation(Google_Service_Docs_Location $location) - { - $this->location = $location; - } - /** - * @return Google_Service_Docs_Location - */ - public function getLocation() - { - return $this->location; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/CreateFootnoteResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/CreateFootnoteResponse.php deleted file mode 100644 index 0c903a41..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/CreateFootnoteResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -footnoteId = $footnoteId; - } - public function getFootnoteId() - { - return $this->footnoteId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/CreateHeaderRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/CreateHeaderRequest.php deleted file mode 100644 index 26122b7a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/CreateHeaderRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -sectionBreakLocation = $sectionBreakLocation; - } - /** - * @return Google_Service_Docs_Location - */ - public function getSectionBreakLocation() - { - return $this->sectionBreakLocation; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/CreateHeaderResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/CreateHeaderResponse.php deleted file mode 100644 index 6790374f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/CreateHeaderResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -headerId = $headerId; - } - public function getHeaderId() - { - return $this->headerId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/CreateNamedRangeRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/CreateNamedRangeRequest.php deleted file mode 100644 index 82db189a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/CreateNamedRangeRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Docs_Range - */ - public function setRange(Google_Service_Docs_Range $range) - { - $this->range = $range; - } - /** - * @return Google_Service_Docs_Range - */ - public function getRange() - { - return $this->range; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/CreateNamedRangeResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/CreateNamedRangeResponse.php deleted file mode 100644 index 06d39520..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/CreateNamedRangeResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -namedRangeId = $namedRangeId; - } - public function getNamedRangeId() - { - return $this->namedRangeId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/CreateParagraphBulletsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/CreateParagraphBulletsRequest.php deleted file mode 100644 index 51dce78c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/CreateParagraphBulletsRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -bulletPreset = $bulletPreset; - } - public function getBulletPreset() - { - return $this->bulletPreset; - } - /** - * @param Google_Service_Docs_Range - */ - public function setRange(Google_Service_Docs_Range $range) - { - $this->range = $range; - } - /** - * @return Google_Service_Docs_Range - */ - public function getRange() - { - return $this->range; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/CropProperties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/CropProperties.php deleted file mode 100644 index ac365034..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/CropProperties.php +++ /dev/null @@ -1,66 +0,0 @@ -angle = $angle; - } - public function getAngle() - { - return $this->angle; - } - public function setOffsetBottom($offsetBottom) - { - $this->offsetBottom = $offsetBottom; - } - public function getOffsetBottom() - { - return $this->offsetBottom; - } - public function setOffsetLeft($offsetLeft) - { - $this->offsetLeft = $offsetLeft; - } - public function getOffsetLeft() - { - return $this->offsetLeft; - } - public function setOffsetRight($offsetRight) - { - $this->offsetRight = $offsetRight; - } - public function getOffsetRight() - { - return $this->offsetRight; - } - public function setOffsetTop($offsetTop) - { - $this->offsetTop = $offsetTop; - } - public function getOffsetTop() - { - return $this->offsetTop; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/CropPropertiesSuggestionState.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/CropPropertiesSuggestionState.php deleted file mode 100644 index 57572478..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/CropPropertiesSuggestionState.php +++ /dev/null @@ -1,66 +0,0 @@ -angleSuggested = $angleSuggested; - } - public function getAngleSuggested() - { - return $this->angleSuggested; - } - public function setOffsetBottomSuggested($offsetBottomSuggested) - { - $this->offsetBottomSuggested = $offsetBottomSuggested; - } - public function getOffsetBottomSuggested() - { - return $this->offsetBottomSuggested; - } - public function setOffsetLeftSuggested($offsetLeftSuggested) - { - $this->offsetLeftSuggested = $offsetLeftSuggested; - } - public function getOffsetLeftSuggested() - { - return $this->offsetLeftSuggested; - } - public function setOffsetRightSuggested($offsetRightSuggested) - { - $this->offsetRightSuggested = $offsetRightSuggested; - } - public function getOffsetRightSuggested() - { - return $this->offsetRightSuggested; - } - public function setOffsetTopSuggested($offsetTopSuggested) - { - $this->offsetTopSuggested = $offsetTopSuggested; - } - public function getOffsetTopSuggested() - { - return $this->offsetTopSuggested; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/DeleteContentRangeRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/DeleteContentRangeRequest.php deleted file mode 100644 index 2c83ac1d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/DeleteContentRangeRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -range = $range; - } - /** - * @return Google_Service_Docs_Range - */ - public function getRange() - { - return $this->range; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/DeleteFooterRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/DeleteFooterRequest.php deleted file mode 100644 index 7bef6698..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/DeleteFooterRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -footerId = $footerId; - } - public function getFooterId() - { - return $this->footerId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/DeleteHeaderRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/DeleteHeaderRequest.php deleted file mode 100644 index 3c8df566..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/DeleteHeaderRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -headerId = $headerId; - } - public function getHeaderId() - { - return $this->headerId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/DeleteNamedRangeRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/DeleteNamedRangeRequest.php deleted file mode 100644 index d2788534..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/DeleteNamedRangeRequest.php +++ /dev/null @@ -1,39 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setNamedRangeId($namedRangeId) - { - $this->namedRangeId = $namedRangeId; - } - public function getNamedRangeId() - { - return $this->namedRangeId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/DeleteParagraphBulletsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/DeleteParagraphBulletsRequest.php deleted file mode 100644 index 3b449bd2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/DeleteParagraphBulletsRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -range = $range; - } - /** - * @return Google_Service_Docs_Range - */ - public function getRange() - { - return $this->range; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/DeletePositionedObjectRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/DeletePositionedObjectRequest.php deleted file mode 100644 index 21018be4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/DeletePositionedObjectRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -objectId = $objectId; - } - public function getObjectId() - { - return $this->objectId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/DeleteTableColumnRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/DeleteTableColumnRequest.php deleted file mode 100644 index 356ae3ef..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/DeleteTableColumnRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -tableCellLocation = $tableCellLocation; - } - /** - * @return Google_Service_Docs_TableCellLocation - */ - public function getTableCellLocation() - { - return $this->tableCellLocation; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/DeleteTableRowRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/DeleteTableRowRequest.php deleted file mode 100644 index 84aebcc2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/DeleteTableRowRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -tableCellLocation = $tableCellLocation; - } - /** - * @return Google_Service_Docs_TableCellLocation - */ - public function getTableCellLocation() - { - return $this->tableCellLocation; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Dimension.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Dimension.php deleted file mode 100644 index bc28be6c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Dimension.php +++ /dev/null @@ -1,39 +0,0 @@ -magnitude = $magnitude; - } - public function getMagnitude() - { - return $this->magnitude; - } - public function setUnit($unit) - { - $this->unit = $unit; - } - public function getUnit() - { - return $this->unit; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/DocsList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/DocsList.php deleted file mode 100644 index 410599bb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/DocsList.php +++ /dev/null @@ -1,72 +0,0 @@ -listProperties = $listProperties; - } - /** - * @return Google_Service_Docs_ListProperties - */ - public function getListProperties() - { - return $this->listProperties; - } - public function setSuggestedDeletionIds($suggestedDeletionIds) - { - $this->suggestedDeletionIds = $suggestedDeletionIds; - } - public function getSuggestedDeletionIds() - { - return $this->suggestedDeletionIds; - } - public function setSuggestedInsertionId($suggestedInsertionId) - { - $this->suggestedInsertionId = $suggestedInsertionId; - } - public function getSuggestedInsertionId() - { - return $this->suggestedInsertionId; - } - /** - * @param Google_Service_Docs_SuggestedListProperties - */ - public function setSuggestedListPropertiesChanges($suggestedListPropertiesChanges) - { - $this->suggestedListPropertiesChanges = $suggestedListPropertiesChanges; - } - /** - * @return Google_Service_Docs_SuggestedListProperties - */ - public function getSuggestedListPropertiesChanges() - { - return $this->suggestedListPropertiesChanges; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Document.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Document.php deleted file mode 100644 index 4fb11391..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Document.php +++ /dev/null @@ -1,249 +0,0 @@ -body = $body; - } - /** - * @return Google_Service_Docs_Body - */ - public function getBody() - { - return $this->body; - } - public function setDocumentId($documentId) - { - $this->documentId = $documentId; - } - public function getDocumentId() - { - return $this->documentId; - } - /** - * @param Google_Service_Docs_DocumentStyle - */ - public function setDocumentStyle(Google_Service_Docs_DocumentStyle $documentStyle) - { - $this->documentStyle = $documentStyle; - } - /** - * @return Google_Service_Docs_DocumentStyle - */ - public function getDocumentStyle() - { - return $this->documentStyle; - } - /** - * @param Google_Service_Docs_Footer - */ - public function setFooters($footers) - { - $this->footers = $footers; - } - /** - * @return Google_Service_Docs_Footer - */ - public function getFooters() - { - return $this->footers; - } - /** - * @param Google_Service_Docs_Footnote - */ - public function setFootnotes($footnotes) - { - $this->footnotes = $footnotes; - } - /** - * @return Google_Service_Docs_Footnote - */ - public function getFootnotes() - { - return $this->footnotes; - } - /** - * @param Google_Service_Docs_Header - */ - public function setHeaders($headers) - { - $this->headers = $headers; - } - /** - * @return Google_Service_Docs_Header - */ - public function getHeaders() - { - return $this->headers; - } - /** - * @param Google_Service_Docs_InlineObject - */ - public function setInlineObjects($inlineObjects) - { - $this->inlineObjects = $inlineObjects; - } - /** - * @return Google_Service_Docs_InlineObject - */ - public function getInlineObjects() - { - return $this->inlineObjects; - } - /** - * @param Google_Service_Docs_DocsList - */ - public function setLists($lists) - { - $this->lists = $lists; - } - /** - * @return Google_Service_Docs_DocsList - */ - public function getLists() - { - return $this->lists; - } - /** - * @param Google_Service_Docs_NamedRanges - */ - public function setNamedRanges($namedRanges) - { - $this->namedRanges = $namedRanges; - } - /** - * @return Google_Service_Docs_NamedRanges - */ - public function getNamedRanges() - { - return $this->namedRanges; - } - /** - * @param Google_Service_Docs_NamedStyles - */ - public function setNamedStyles(Google_Service_Docs_NamedStyles $namedStyles) - { - $this->namedStyles = $namedStyles; - } - /** - * @return Google_Service_Docs_NamedStyles - */ - public function getNamedStyles() - { - return $this->namedStyles; - } - /** - * @param Google_Service_Docs_PositionedObject - */ - public function setPositionedObjects($positionedObjects) - { - $this->positionedObjects = $positionedObjects; - } - /** - * @return Google_Service_Docs_PositionedObject - */ - public function getPositionedObjects() - { - return $this->positionedObjects; - } - public function setRevisionId($revisionId) - { - $this->revisionId = $revisionId; - } - public function getRevisionId() - { - return $this->revisionId; - } - /** - * @param Google_Service_Docs_SuggestedDocumentStyle - */ - public function setSuggestedDocumentStyleChanges($suggestedDocumentStyleChanges) - { - $this->suggestedDocumentStyleChanges = $suggestedDocumentStyleChanges; - } - /** - * @return Google_Service_Docs_SuggestedDocumentStyle - */ - public function getSuggestedDocumentStyleChanges() - { - return $this->suggestedDocumentStyleChanges; - } - /** - * @param Google_Service_Docs_SuggestedNamedStyles - */ - public function setSuggestedNamedStylesChanges($suggestedNamedStylesChanges) - { - $this->suggestedNamedStylesChanges = $suggestedNamedStylesChanges; - } - /** - * @return Google_Service_Docs_SuggestedNamedStyles - */ - public function getSuggestedNamedStylesChanges() - { - return $this->suggestedNamedStylesChanges; - } - public function setSuggestionsViewMode($suggestionsViewMode) - { - $this->suggestionsViewMode = $suggestionsViewMode; - } - public function getSuggestionsViewMode() - { - return $this->suggestionsViewMode; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/DocumentStyle.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/DocumentStyle.php deleted file mode 100644 index 9452cd29..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/DocumentStyle.php +++ /dev/null @@ -1,239 +0,0 @@ -background = $background; - } - /** - * @return Google_Service_Docs_Background - */ - public function getBackground() - { - return $this->background; - } - public function setDefaultFooterId($defaultFooterId) - { - $this->defaultFooterId = $defaultFooterId; - } - public function getDefaultFooterId() - { - return $this->defaultFooterId; - } - public function setDefaultHeaderId($defaultHeaderId) - { - $this->defaultHeaderId = $defaultHeaderId; - } - public function getDefaultHeaderId() - { - return $this->defaultHeaderId; - } - public function setEvenPageFooterId($evenPageFooterId) - { - $this->evenPageFooterId = $evenPageFooterId; - } - public function getEvenPageFooterId() - { - return $this->evenPageFooterId; - } - public function setEvenPageHeaderId($evenPageHeaderId) - { - $this->evenPageHeaderId = $evenPageHeaderId; - } - public function getEvenPageHeaderId() - { - return $this->evenPageHeaderId; - } - public function setFirstPageFooterId($firstPageFooterId) - { - $this->firstPageFooterId = $firstPageFooterId; - } - public function getFirstPageFooterId() - { - return $this->firstPageFooterId; - } - public function setFirstPageHeaderId($firstPageHeaderId) - { - $this->firstPageHeaderId = $firstPageHeaderId; - } - public function getFirstPageHeaderId() - { - return $this->firstPageHeaderId; - } - /** - * @param Google_Service_Docs_Dimension - */ - public function setMarginBottom(Google_Service_Docs_Dimension $marginBottom) - { - $this->marginBottom = $marginBottom; - } - /** - * @return Google_Service_Docs_Dimension - */ - public function getMarginBottom() - { - return $this->marginBottom; - } - /** - * @param Google_Service_Docs_Dimension - */ - public function setMarginFooter(Google_Service_Docs_Dimension $marginFooter) - { - $this->marginFooter = $marginFooter; - } - /** - * @return Google_Service_Docs_Dimension - */ - public function getMarginFooter() - { - return $this->marginFooter; - } - /** - * @param Google_Service_Docs_Dimension - */ - public function setMarginHeader(Google_Service_Docs_Dimension $marginHeader) - { - $this->marginHeader = $marginHeader; - } - /** - * @return Google_Service_Docs_Dimension - */ - public function getMarginHeader() - { - return $this->marginHeader; - } - /** - * @param Google_Service_Docs_Dimension - */ - public function setMarginLeft(Google_Service_Docs_Dimension $marginLeft) - { - $this->marginLeft = $marginLeft; - } - /** - * @return Google_Service_Docs_Dimension - */ - public function getMarginLeft() - { - return $this->marginLeft; - } - /** - * @param Google_Service_Docs_Dimension - */ - public function setMarginRight(Google_Service_Docs_Dimension $marginRight) - { - $this->marginRight = $marginRight; - } - /** - * @return Google_Service_Docs_Dimension - */ - public function getMarginRight() - { - return $this->marginRight; - } - /** - * @param Google_Service_Docs_Dimension - */ - public function setMarginTop(Google_Service_Docs_Dimension $marginTop) - { - $this->marginTop = $marginTop; - } - /** - * @return Google_Service_Docs_Dimension - */ - public function getMarginTop() - { - return $this->marginTop; - } - public function setPageNumberStart($pageNumberStart) - { - $this->pageNumberStart = $pageNumberStart; - } - public function getPageNumberStart() - { - return $this->pageNumberStart; - } - /** - * @param Google_Service_Docs_Size - */ - public function setPageSize(Google_Service_Docs_Size $pageSize) - { - $this->pageSize = $pageSize; - } - /** - * @return Google_Service_Docs_Size - */ - public function getPageSize() - { - return $this->pageSize; - } - public function setUseCustomHeaderFooterMargins($useCustomHeaderFooterMargins) - { - $this->useCustomHeaderFooterMargins = $useCustomHeaderFooterMargins; - } - public function getUseCustomHeaderFooterMargins() - { - return $this->useCustomHeaderFooterMargins; - } - public function setUseEvenPageHeaderFooter($useEvenPageHeaderFooter) - { - $this->useEvenPageHeaderFooter = $useEvenPageHeaderFooter; - } - public function getUseEvenPageHeaderFooter() - { - return $this->useEvenPageHeaderFooter; - } - public function setUseFirstPageHeaderFooter($useFirstPageHeaderFooter) - { - $this->useFirstPageHeaderFooter = $useFirstPageHeaderFooter; - } - public function getUseFirstPageHeaderFooter() - { - return $this->useFirstPageHeaderFooter; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/DocumentStyleSuggestionState.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/DocumentStyleSuggestionState.php deleted file mode 100644 index d71ab35b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/DocumentStyleSuggestionState.php +++ /dev/null @@ -1,170 +0,0 @@ -backgroundSuggestionState = $backgroundSuggestionState; - } - /** - * @return Google_Service_Docs_BackgroundSuggestionState - */ - public function getBackgroundSuggestionState() - { - return $this->backgroundSuggestionState; - } - public function setDefaultFooterIdSuggested($defaultFooterIdSuggested) - { - $this->defaultFooterIdSuggested = $defaultFooterIdSuggested; - } - public function getDefaultFooterIdSuggested() - { - return $this->defaultFooterIdSuggested; - } - public function setDefaultHeaderIdSuggested($defaultHeaderIdSuggested) - { - $this->defaultHeaderIdSuggested = $defaultHeaderIdSuggested; - } - public function getDefaultHeaderIdSuggested() - { - return $this->defaultHeaderIdSuggested; - } - public function setEvenPageFooterIdSuggested($evenPageFooterIdSuggested) - { - $this->evenPageFooterIdSuggested = $evenPageFooterIdSuggested; - } - public function getEvenPageFooterIdSuggested() - { - return $this->evenPageFooterIdSuggested; - } - public function setEvenPageHeaderIdSuggested($evenPageHeaderIdSuggested) - { - $this->evenPageHeaderIdSuggested = $evenPageHeaderIdSuggested; - } - public function getEvenPageHeaderIdSuggested() - { - return $this->evenPageHeaderIdSuggested; - } - public function setFirstPageFooterIdSuggested($firstPageFooterIdSuggested) - { - $this->firstPageFooterIdSuggested = $firstPageFooterIdSuggested; - } - public function getFirstPageFooterIdSuggested() - { - return $this->firstPageFooterIdSuggested; - } - public function setFirstPageHeaderIdSuggested($firstPageHeaderIdSuggested) - { - $this->firstPageHeaderIdSuggested = $firstPageHeaderIdSuggested; - } - public function getFirstPageHeaderIdSuggested() - { - return $this->firstPageHeaderIdSuggested; - } - public function setMarginBottomSuggested($marginBottomSuggested) - { - $this->marginBottomSuggested = $marginBottomSuggested; - } - public function getMarginBottomSuggested() - { - return $this->marginBottomSuggested; - } - public function setMarginLeftSuggested($marginLeftSuggested) - { - $this->marginLeftSuggested = $marginLeftSuggested; - } - public function getMarginLeftSuggested() - { - return $this->marginLeftSuggested; - } - public function setMarginRightSuggested($marginRightSuggested) - { - $this->marginRightSuggested = $marginRightSuggested; - } - public function getMarginRightSuggested() - { - return $this->marginRightSuggested; - } - public function setMarginTopSuggested($marginTopSuggested) - { - $this->marginTopSuggested = $marginTopSuggested; - } - public function getMarginTopSuggested() - { - return $this->marginTopSuggested; - } - public function setPageNumberStartSuggested($pageNumberStartSuggested) - { - $this->pageNumberStartSuggested = $pageNumberStartSuggested; - } - public function getPageNumberStartSuggested() - { - return $this->pageNumberStartSuggested; - } - /** - * @param Google_Service_Docs_SizeSuggestionState - */ - public function setPageSizeSuggestionState(Google_Service_Docs_SizeSuggestionState $pageSizeSuggestionState) - { - $this->pageSizeSuggestionState = $pageSizeSuggestionState; - } - /** - * @return Google_Service_Docs_SizeSuggestionState - */ - public function getPageSizeSuggestionState() - { - return $this->pageSizeSuggestionState; - } - public function setUseEvenPageHeaderFooterSuggested($useEvenPageHeaderFooterSuggested) - { - $this->useEvenPageHeaderFooterSuggested = $useEvenPageHeaderFooterSuggested; - } - public function getUseEvenPageHeaderFooterSuggested() - { - return $this->useEvenPageHeaderFooterSuggested; - } - public function setUseFirstPageHeaderFooterSuggested($useFirstPageHeaderFooterSuggested) - { - $this->useFirstPageHeaderFooterSuggested = $useFirstPageHeaderFooterSuggested; - } - public function getUseFirstPageHeaderFooterSuggested() - { - return $this->useFirstPageHeaderFooterSuggested; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/EmbeddedDrawingProperties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/EmbeddedDrawingProperties.php deleted file mode 100644 index 2d3fd8d9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/EmbeddedDrawingProperties.php +++ /dev/null @@ -1,20 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - /** - * @param Google_Service_Docs_EmbeddedDrawingProperties - */ - public function setEmbeddedDrawingProperties(Google_Service_Docs_EmbeddedDrawingProperties $embeddedDrawingProperties) - { - $this->embeddedDrawingProperties = $embeddedDrawingProperties; - } - /** - * @return Google_Service_Docs_EmbeddedDrawingProperties - */ - public function getEmbeddedDrawingProperties() - { - return $this->embeddedDrawingProperties; - } - /** - * @param Google_Service_Docs_EmbeddedObjectBorder - */ - public function setEmbeddedObjectBorder(Google_Service_Docs_EmbeddedObjectBorder $embeddedObjectBorder) - { - $this->embeddedObjectBorder = $embeddedObjectBorder; - } - /** - * @return Google_Service_Docs_EmbeddedObjectBorder - */ - public function getEmbeddedObjectBorder() - { - return $this->embeddedObjectBorder; - } - /** - * @param Google_Service_Docs_ImageProperties - */ - public function setImageProperties(Google_Service_Docs_ImageProperties $imageProperties) - { - $this->imageProperties = $imageProperties; - } - /** - * @return Google_Service_Docs_ImageProperties - */ - public function getImageProperties() - { - return $this->imageProperties; - } - /** - * @param Google_Service_Docs_LinkedContentReference - */ - public function setLinkedContentReference(Google_Service_Docs_LinkedContentReference $linkedContentReference) - { - $this->linkedContentReference = $linkedContentReference; - } - /** - * @return Google_Service_Docs_LinkedContentReference - */ - public function getLinkedContentReference() - { - return $this->linkedContentReference; - } - /** - * @param Google_Service_Docs_Dimension - */ - public function setMarginBottom(Google_Service_Docs_Dimension $marginBottom) - { - $this->marginBottom = $marginBottom; - } - /** - * @return Google_Service_Docs_Dimension - */ - public function getMarginBottom() - { - return $this->marginBottom; - } - /** - * @param Google_Service_Docs_Dimension - */ - public function setMarginLeft(Google_Service_Docs_Dimension $marginLeft) - { - $this->marginLeft = $marginLeft; - } - /** - * @return Google_Service_Docs_Dimension - */ - public function getMarginLeft() - { - return $this->marginLeft; - } - /** - * @param Google_Service_Docs_Dimension - */ - public function setMarginRight(Google_Service_Docs_Dimension $marginRight) - { - $this->marginRight = $marginRight; - } - /** - * @return Google_Service_Docs_Dimension - */ - public function getMarginRight() - { - return $this->marginRight; - } - /** - * @param Google_Service_Docs_Dimension - */ - public function setMarginTop(Google_Service_Docs_Dimension $marginTop) - { - $this->marginTop = $marginTop; - } - /** - * @return Google_Service_Docs_Dimension - */ - public function getMarginTop() - { - return $this->marginTop; - } - /** - * @param Google_Service_Docs_Size - */ - public function setSize(Google_Service_Docs_Size $size) - { - $this->size = $size; - } - /** - * @return Google_Service_Docs_Size - */ - public function getSize() - { - return $this->size; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/EmbeddedObjectBorder.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/EmbeddedObjectBorder.php deleted file mode 100644 index cc2e7d09..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/EmbeddedObjectBorder.php +++ /dev/null @@ -1,71 +0,0 @@ -color = $color; - } - /** - * @return Google_Service_Docs_OptionalColor - */ - public function getColor() - { - return $this->color; - } - public function setDashStyle($dashStyle) - { - $this->dashStyle = $dashStyle; - } - public function getDashStyle() - { - return $this->dashStyle; - } - public function setPropertyState($propertyState) - { - $this->propertyState = $propertyState; - } - public function getPropertyState() - { - return $this->propertyState; - } - /** - * @param Google_Service_Docs_Dimension - */ - public function setWidth(Google_Service_Docs_Dimension $width) - { - $this->width = $width; - } - /** - * @return Google_Service_Docs_Dimension - */ - public function getWidth() - { - return $this->width; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/EmbeddedObjectBorderSuggestionState.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/EmbeddedObjectBorderSuggestionState.php deleted file mode 100644 index 07d024a3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/EmbeddedObjectBorderSuggestionState.php +++ /dev/null @@ -1,57 +0,0 @@ -colorSuggested = $colorSuggested; - } - public function getColorSuggested() - { - return $this->colorSuggested; - } - public function setDashStyleSuggested($dashStyleSuggested) - { - $this->dashStyleSuggested = $dashStyleSuggested; - } - public function getDashStyleSuggested() - { - return $this->dashStyleSuggested; - } - public function setPropertyStateSuggested($propertyStateSuggested) - { - $this->propertyStateSuggested = $propertyStateSuggested; - } - public function getPropertyStateSuggested() - { - return $this->propertyStateSuggested; - } - public function setWidthSuggested($widthSuggested) - { - $this->widthSuggested = $widthSuggested; - } - public function getWidthSuggested() - { - return $this->widthSuggested; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/EmbeddedObjectSuggestionState.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/EmbeddedObjectSuggestionState.php deleted file mode 100644 index 9c483474..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/EmbeddedObjectSuggestionState.php +++ /dev/null @@ -1,155 +0,0 @@ -descriptionSuggested = $descriptionSuggested; - } - public function getDescriptionSuggested() - { - return $this->descriptionSuggested; - } - /** - * @param Google_Service_Docs_EmbeddedDrawingPropertiesSuggestionState - */ - public function setEmbeddedDrawingPropertiesSuggestionState(Google_Service_Docs_EmbeddedDrawingPropertiesSuggestionState $embeddedDrawingPropertiesSuggestionState) - { - $this->embeddedDrawingPropertiesSuggestionState = $embeddedDrawingPropertiesSuggestionState; - } - /** - * @return Google_Service_Docs_EmbeddedDrawingPropertiesSuggestionState - */ - public function getEmbeddedDrawingPropertiesSuggestionState() - { - return $this->embeddedDrawingPropertiesSuggestionState; - } - /** - * @param Google_Service_Docs_EmbeddedObjectBorderSuggestionState - */ - public function setEmbeddedObjectBorderSuggestionState(Google_Service_Docs_EmbeddedObjectBorderSuggestionState $embeddedObjectBorderSuggestionState) - { - $this->embeddedObjectBorderSuggestionState = $embeddedObjectBorderSuggestionState; - } - /** - * @return Google_Service_Docs_EmbeddedObjectBorderSuggestionState - */ - public function getEmbeddedObjectBorderSuggestionState() - { - return $this->embeddedObjectBorderSuggestionState; - } - /** - * @param Google_Service_Docs_ImagePropertiesSuggestionState - */ - public function setImagePropertiesSuggestionState(Google_Service_Docs_ImagePropertiesSuggestionState $imagePropertiesSuggestionState) - { - $this->imagePropertiesSuggestionState = $imagePropertiesSuggestionState; - } - /** - * @return Google_Service_Docs_ImagePropertiesSuggestionState - */ - public function getImagePropertiesSuggestionState() - { - return $this->imagePropertiesSuggestionState; - } - /** - * @param Google_Service_Docs_LinkedContentReferenceSuggestionState - */ - public function setLinkedContentReferenceSuggestionState(Google_Service_Docs_LinkedContentReferenceSuggestionState $linkedContentReferenceSuggestionState) - { - $this->linkedContentReferenceSuggestionState = $linkedContentReferenceSuggestionState; - } - /** - * @return Google_Service_Docs_LinkedContentReferenceSuggestionState - */ - public function getLinkedContentReferenceSuggestionState() - { - return $this->linkedContentReferenceSuggestionState; - } - public function setMarginBottomSuggested($marginBottomSuggested) - { - $this->marginBottomSuggested = $marginBottomSuggested; - } - public function getMarginBottomSuggested() - { - return $this->marginBottomSuggested; - } - public function setMarginLeftSuggested($marginLeftSuggested) - { - $this->marginLeftSuggested = $marginLeftSuggested; - } - public function getMarginLeftSuggested() - { - return $this->marginLeftSuggested; - } - public function setMarginRightSuggested($marginRightSuggested) - { - $this->marginRightSuggested = $marginRightSuggested; - } - public function getMarginRightSuggested() - { - return $this->marginRightSuggested; - } - public function setMarginTopSuggested($marginTopSuggested) - { - $this->marginTopSuggested = $marginTopSuggested; - } - public function getMarginTopSuggested() - { - return $this->marginTopSuggested; - } - /** - * @param Google_Service_Docs_SizeSuggestionState - */ - public function setSizeSuggestionState(Google_Service_Docs_SizeSuggestionState $sizeSuggestionState) - { - $this->sizeSuggestionState = $sizeSuggestionState; - } - /** - * @return Google_Service_Docs_SizeSuggestionState - */ - public function getSizeSuggestionState() - { - return $this->sizeSuggestionState; - } - public function setTitleSuggested($titleSuggested) - { - $this->titleSuggested = $titleSuggested; - } - public function getTitleSuggested() - { - return $this->titleSuggested; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/EndOfSegmentLocation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/EndOfSegmentLocation.php deleted file mode 100644 index 2ce52b6e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/EndOfSegmentLocation.php +++ /dev/null @@ -1,30 +0,0 @@ -segmentId = $segmentId; - } - public function getSegmentId() - { - return $this->segmentId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Equation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Equation.php deleted file mode 100644 index b68a04c7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Equation.php +++ /dev/null @@ -1,40 +0,0 @@ -suggestedDeletionIds = $suggestedDeletionIds; - } - public function getSuggestedDeletionIds() - { - return $this->suggestedDeletionIds; - } - public function setSuggestedInsertionIds($suggestedInsertionIds) - { - $this->suggestedInsertionIds = $suggestedInsertionIds; - } - public function getSuggestedInsertionIds() - { - return $this->suggestedInsertionIds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Footer.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Footer.php deleted file mode 100644 index 1e568b84..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Footer.php +++ /dev/null @@ -1,47 +0,0 @@ -content = $content; - } - /** - * @return Google_Service_Docs_StructuralElement - */ - public function getContent() - { - return $this->content; - } - public function setFooterId($footerId) - { - $this->footerId = $footerId; - } - public function getFooterId() - { - return $this->footerId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Footnote.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Footnote.php deleted file mode 100644 index 2e1d5d3d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Footnote.php +++ /dev/null @@ -1,47 +0,0 @@ -content = $content; - } - /** - * @return Google_Service_Docs_StructuralElement - */ - public function getContent() - { - return $this->content; - } - public function setFootnoteId($footnoteId) - { - $this->footnoteId = $footnoteId; - } - public function getFootnoteId() - { - return $this->footnoteId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/FootnoteReference.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/FootnoteReference.php deleted file mode 100644 index 5419e0bf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/FootnoteReference.php +++ /dev/null @@ -1,90 +0,0 @@ -footnoteId = $footnoteId; - } - public function getFootnoteId() - { - return $this->footnoteId; - } - public function setFootnoteNumber($footnoteNumber) - { - $this->footnoteNumber = $footnoteNumber; - } - public function getFootnoteNumber() - { - return $this->footnoteNumber; - } - public function setSuggestedDeletionIds($suggestedDeletionIds) - { - $this->suggestedDeletionIds = $suggestedDeletionIds; - } - public function getSuggestedDeletionIds() - { - return $this->suggestedDeletionIds; - } - public function setSuggestedInsertionIds($suggestedInsertionIds) - { - $this->suggestedInsertionIds = $suggestedInsertionIds; - } - public function getSuggestedInsertionIds() - { - return $this->suggestedInsertionIds; - } - /** - * @param Google_Service_Docs_SuggestedTextStyle - */ - public function setSuggestedTextStyleChanges($suggestedTextStyleChanges) - { - $this->suggestedTextStyleChanges = $suggestedTextStyleChanges; - } - /** - * @return Google_Service_Docs_SuggestedTextStyle - */ - public function getSuggestedTextStyleChanges() - { - return $this->suggestedTextStyleChanges; - } - /** - * @param Google_Service_Docs_TextStyle - */ - public function setTextStyle(Google_Service_Docs_TextStyle $textStyle) - { - $this->textStyle = $textStyle; - } - /** - * @return Google_Service_Docs_TextStyle - */ - public function getTextStyle() - { - return $this->textStyle; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Header.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Header.php deleted file mode 100644 index 158b7416..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Header.php +++ /dev/null @@ -1,47 +0,0 @@ -content = $content; - } - /** - * @return Google_Service_Docs_StructuralElement - */ - public function getContent() - { - return $this->content; - } - public function setHeaderId($headerId) - { - $this->headerId = $headerId; - } - public function getHeaderId() - { - return $this->headerId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/HorizontalRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/HorizontalRule.php deleted file mode 100644 index 95b346e7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/HorizontalRule.php +++ /dev/null @@ -1,72 +0,0 @@ -suggestedDeletionIds = $suggestedDeletionIds; - } - public function getSuggestedDeletionIds() - { - return $this->suggestedDeletionIds; - } - public function setSuggestedInsertionIds($suggestedInsertionIds) - { - $this->suggestedInsertionIds = $suggestedInsertionIds; - } - public function getSuggestedInsertionIds() - { - return $this->suggestedInsertionIds; - } - /** - * @param Google_Service_Docs_SuggestedTextStyle - */ - public function setSuggestedTextStyleChanges($suggestedTextStyleChanges) - { - $this->suggestedTextStyleChanges = $suggestedTextStyleChanges; - } - /** - * @return Google_Service_Docs_SuggestedTextStyle - */ - public function getSuggestedTextStyleChanges() - { - return $this->suggestedTextStyleChanges; - } - /** - * @param Google_Service_Docs_TextStyle - */ - public function setTextStyle(Google_Service_Docs_TextStyle $textStyle) - { - $this->textStyle = $textStyle; - } - /** - * @return Google_Service_Docs_TextStyle - */ - public function getTextStyle() - { - return $this->textStyle; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/ImageProperties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/ImageProperties.php deleted file mode 100644 index 10235699..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/ImageProperties.php +++ /dev/null @@ -1,91 +0,0 @@ -angle = $angle; - } - public function getAngle() - { - return $this->angle; - } - public function setBrightness($brightness) - { - $this->brightness = $brightness; - } - public function getBrightness() - { - return $this->brightness; - } - public function setContentUri($contentUri) - { - $this->contentUri = $contentUri; - } - public function getContentUri() - { - return $this->contentUri; - } - public function setContrast($contrast) - { - $this->contrast = $contrast; - } - public function getContrast() - { - return $this->contrast; - } - /** - * @param Google_Service_Docs_CropProperties - */ - public function setCropProperties(Google_Service_Docs_CropProperties $cropProperties) - { - $this->cropProperties = $cropProperties; - } - /** - * @return Google_Service_Docs_CropProperties - */ - public function getCropProperties() - { - return $this->cropProperties; - } - public function setSourceUri($sourceUri) - { - $this->sourceUri = $sourceUri; - } - public function getSourceUri() - { - return $this->sourceUri; - } - public function setTransparency($transparency) - { - $this->transparency = $transparency; - } - public function getTransparency() - { - return $this->transparency; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/ImagePropertiesSuggestionState.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/ImagePropertiesSuggestionState.php deleted file mode 100644 index 843e70ed..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/ImagePropertiesSuggestionState.php +++ /dev/null @@ -1,91 +0,0 @@ -angleSuggested = $angleSuggested; - } - public function getAngleSuggested() - { - return $this->angleSuggested; - } - public function setBrightnessSuggested($brightnessSuggested) - { - $this->brightnessSuggested = $brightnessSuggested; - } - public function getBrightnessSuggested() - { - return $this->brightnessSuggested; - } - public function setContentUriSuggested($contentUriSuggested) - { - $this->contentUriSuggested = $contentUriSuggested; - } - public function getContentUriSuggested() - { - return $this->contentUriSuggested; - } - public function setContrastSuggested($contrastSuggested) - { - $this->contrastSuggested = $contrastSuggested; - } - public function getContrastSuggested() - { - return $this->contrastSuggested; - } - /** - * @param Google_Service_Docs_CropPropertiesSuggestionState - */ - public function setCropPropertiesSuggestionState(Google_Service_Docs_CropPropertiesSuggestionState $cropPropertiesSuggestionState) - { - $this->cropPropertiesSuggestionState = $cropPropertiesSuggestionState; - } - /** - * @return Google_Service_Docs_CropPropertiesSuggestionState - */ - public function getCropPropertiesSuggestionState() - { - return $this->cropPropertiesSuggestionState; - } - public function setSourceUriSuggested($sourceUriSuggested) - { - $this->sourceUriSuggested = $sourceUriSuggested; - } - public function getSourceUriSuggested() - { - return $this->sourceUriSuggested; - } - public function setTransparencySuggested($transparencySuggested) - { - $this->transparencySuggested = $transparencySuggested; - } - public function getTransparencySuggested() - { - return $this->transparencySuggested; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/InlineObject.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/InlineObject.php deleted file mode 100644 index d6985e6a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/InlineObject.php +++ /dev/null @@ -1,81 +0,0 @@ -inlineObjectProperties = $inlineObjectProperties; - } - /** - * @return Google_Service_Docs_InlineObjectProperties - */ - public function getInlineObjectProperties() - { - return $this->inlineObjectProperties; - } - public function setObjectId($objectId) - { - $this->objectId = $objectId; - } - public function getObjectId() - { - return $this->objectId; - } - public function setSuggestedDeletionIds($suggestedDeletionIds) - { - $this->suggestedDeletionIds = $suggestedDeletionIds; - } - public function getSuggestedDeletionIds() - { - return $this->suggestedDeletionIds; - } - /** - * @param Google_Service_Docs_SuggestedInlineObjectProperties - */ - public function setSuggestedInlineObjectPropertiesChanges($suggestedInlineObjectPropertiesChanges) - { - $this->suggestedInlineObjectPropertiesChanges = $suggestedInlineObjectPropertiesChanges; - } - /** - * @return Google_Service_Docs_SuggestedInlineObjectProperties - */ - public function getSuggestedInlineObjectPropertiesChanges() - { - return $this->suggestedInlineObjectPropertiesChanges; - } - public function setSuggestedInsertionId($suggestedInsertionId) - { - $this->suggestedInsertionId = $suggestedInsertionId; - } - public function getSuggestedInsertionId() - { - return $this->suggestedInsertionId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/InlineObjectElement.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/InlineObjectElement.php deleted file mode 100644 index dc97b437..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/InlineObjectElement.php +++ /dev/null @@ -1,81 +0,0 @@ -inlineObjectId = $inlineObjectId; - } - public function getInlineObjectId() - { - return $this->inlineObjectId; - } - public function setSuggestedDeletionIds($suggestedDeletionIds) - { - $this->suggestedDeletionIds = $suggestedDeletionIds; - } - public function getSuggestedDeletionIds() - { - return $this->suggestedDeletionIds; - } - public function setSuggestedInsertionIds($suggestedInsertionIds) - { - $this->suggestedInsertionIds = $suggestedInsertionIds; - } - public function getSuggestedInsertionIds() - { - return $this->suggestedInsertionIds; - } - /** - * @param Google_Service_Docs_SuggestedTextStyle - */ - public function setSuggestedTextStyleChanges($suggestedTextStyleChanges) - { - $this->suggestedTextStyleChanges = $suggestedTextStyleChanges; - } - /** - * @return Google_Service_Docs_SuggestedTextStyle - */ - public function getSuggestedTextStyleChanges() - { - return $this->suggestedTextStyleChanges; - } - /** - * @param Google_Service_Docs_TextStyle - */ - public function setTextStyle(Google_Service_Docs_TextStyle $textStyle) - { - $this->textStyle = $textStyle; - } - /** - * @return Google_Service_Docs_TextStyle - */ - public function getTextStyle() - { - return $this->textStyle; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/InlineObjectProperties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/InlineObjectProperties.php deleted file mode 100644 index 7d586093..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/InlineObjectProperties.php +++ /dev/null @@ -1,37 +0,0 @@ -embeddedObject = $embeddedObject; - } - /** - * @return Google_Service_Docs_EmbeddedObject - */ - public function getEmbeddedObject() - { - return $this->embeddedObject; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/InlineObjectPropertiesSuggestionState.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/InlineObjectPropertiesSuggestionState.php deleted file mode 100644 index 858cdef8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/InlineObjectPropertiesSuggestionState.php +++ /dev/null @@ -1,37 +0,0 @@ -embeddedObjectSuggestionState = $embeddedObjectSuggestionState; - } - /** - * @return Google_Service_Docs_EmbeddedObjectSuggestionState - */ - public function getEmbeddedObjectSuggestionState() - { - return $this->embeddedObjectSuggestionState; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/InsertInlineImageRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/InsertInlineImageRequest.php deleted file mode 100644 index 8467e65b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/InsertInlineImageRequest.php +++ /dev/null @@ -1,78 +0,0 @@ -endOfSegmentLocation = $endOfSegmentLocation; - } - /** - * @return Google_Service_Docs_EndOfSegmentLocation - */ - public function getEndOfSegmentLocation() - { - return $this->endOfSegmentLocation; - } - /** - * @param Google_Service_Docs_Location - */ - public function setLocation(Google_Service_Docs_Location $location) - { - $this->location = $location; - } - /** - * @return Google_Service_Docs_Location - */ - public function getLocation() - { - return $this->location; - } - /** - * @param Google_Service_Docs_Size - */ - public function setObjectSize(Google_Service_Docs_Size $objectSize) - { - $this->objectSize = $objectSize; - } - /** - * @return Google_Service_Docs_Size - */ - public function getObjectSize() - { - return $this->objectSize; - } - public function setUri($uri) - { - $this->uri = $uri; - } - public function getUri() - { - return $this->uri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/InsertInlineImageResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/InsertInlineImageResponse.php deleted file mode 100644 index 3c150607..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/InsertInlineImageResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -objectId = $objectId; - } - public function getObjectId() - { - return $this->objectId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/InsertInlineSheetsChartResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/InsertInlineSheetsChartResponse.php deleted file mode 100644 index a551ae68..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/InsertInlineSheetsChartResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -objectId = $objectId; - } - public function getObjectId() - { - return $this->objectId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/InsertPageBreakRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/InsertPageBreakRequest.php deleted file mode 100644 index 23d6e631..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/InsertPageBreakRequest.php +++ /dev/null @@ -1,53 +0,0 @@ -endOfSegmentLocation = $endOfSegmentLocation; - } - /** - * @return Google_Service_Docs_EndOfSegmentLocation - */ - public function getEndOfSegmentLocation() - { - return $this->endOfSegmentLocation; - } - /** - * @param Google_Service_Docs_Location - */ - public function setLocation(Google_Service_Docs_Location $location) - { - $this->location = $location; - } - /** - * @return Google_Service_Docs_Location - */ - public function getLocation() - { - return $this->location; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/InsertSectionBreakRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/InsertSectionBreakRequest.php deleted file mode 100644 index 14e5ae21..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/InsertSectionBreakRequest.php +++ /dev/null @@ -1,62 +0,0 @@ -endOfSegmentLocation = $endOfSegmentLocation; - } - /** - * @return Google_Service_Docs_EndOfSegmentLocation - */ - public function getEndOfSegmentLocation() - { - return $this->endOfSegmentLocation; - } - /** - * @param Google_Service_Docs_Location - */ - public function setLocation(Google_Service_Docs_Location $location) - { - $this->location = $location; - } - /** - * @return Google_Service_Docs_Location - */ - public function getLocation() - { - return $this->location; - } - public function setSectionType($sectionType) - { - $this->sectionType = $sectionType; - } - public function getSectionType() - { - return $this->sectionType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/InsertTableColumnRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/InsertTableColumnRequest.php deleted file mode 100644 index 7cd290e0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/InsertTableColumnRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -insertRight = $insertRight; - } - public function getInsertRight() - { - return $this->insertRight; - } - /** - * @param Google_Service_Docs_TableCellLocation - */ - public function setTableCellLocation(Google_Service_Docs_TableCellLocation $tableCellLocation) - { - $this->tableCellLocation = $tableCellLocation; - } - /** - * @return Google_Service_Docs_TableCellLocation - */ - public function getTableCellLocation() - { - return $this->tableCellLocation; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/InsertTableRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/InsertTableRequest.php deleted file mode 100644 index 6abd40c8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/InsertTableRequest.php +++ /dev/null @@ -1,71 +0,0 @@ -columns = $columns; - } - public function getColumns() - { - return $this->columns; - } - /** - * @param Google_Service_Docs_EndOfSegmentLocation - */ - public function setEndOfSegmentLocation(Google_Service_Docs_EndOfSegmentLocation $endOfSegmentLocation) - { - $this->endOfSegmentLocation = $endOfSegmentLocation; - } - /** - * @return Google_Service_Docs_EndOfSegmentLocation - */ - public function getEndOfSegmentLocation() - { - return $this->endOfSegmentLocation; - } - /** - * @param Google_Service_Docs_Location - */ - public function setLocation(Google_Service_Docs_Location $location) - { - $this->location = $location; - } - /** - * @return Google_Service_Docs_Location - */ - public function getLocation() - { - return $this->location; - } - public function setRows($rows) - { - $this->rows = $rows; - } - public function getRows() - { - return $this->rows; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/InsertTableRowRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/InsertTableRowRequest.php deleted file mode 100644 index 57c6414c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/InsertTableRowRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -insertBelow = $insertBelow; - } - public function getInsertBelow() - { - return $this->insertBelow; - } - /** - * @param Google_Service_Docs_TableCellLocation - */ - public function setTableCellLocation(Google_Service_Docs_TableCellLocation $tableCellLocation) - { - $this->tableCellLocation = $tableCellLocation; - } - /** - * @return Google_Service_Docs_TableCellLocation - */ - public function getTableCellLocation() - { - return $this->tableCellLocation; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/InsertTextRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/InsertTextRequest.php deleted file mode 100644 index cf08c9d6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/InsertTextRequest.php +++ /dev/null @@ -1,62 +0,0 @@ -endOfSegmentLocation = $endOfSegmentLocation; - } - /** - * @return Google_Service_Docs_EndOfSegmentLocation - */ - public function getEndOfSegmentLocation() - { - return $this->endOfSegmentLocation; - } - /** - * @param Google_Service_Docs_Location - */ - public function setLocation(Google_Service_Docs_Location $location) - { - $this->location = $location; - } - /** - * @return Google_Service_Docs_Location - */ - public function getLocation() - { - return $this->location; - } - public function setText($text) - { - $this->text = $text; - } - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Link.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Link.php deleted file mode 100644 index 9ce3e626..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Link.php +++ /dev/null @@ -1,48 +0,0 @@ -bookmarkId = $bookmarkId; - } - public function getBookmarkId() - { - return $this->bookmarkId; - } - public function setHeadingId($headingId) - { - $this->headingId = $headingId; - } - public function getHeadingId() - { - return $this->headingId; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/LinkedContentReference.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/LinkedContentReference.php deleted file mode 100644 index 7ae1a706..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/LinkedContentReference.php +++ /dev/null @@ -1,37 +0,0 @@ -sheetsChartReference = $sheetsChartReference; - } - /** - * @return Google_Service_Docs_SheetsChartReference - */ - public function getSheetsChartReference() - { - return $this->sheetsChartReference; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/LinkedContentReferenceSuggestionState.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/LinkedContentReferenceSuggestionState.php deleted file mode 100644 index 7f697168..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/LinkedContentReferenceSuggestionState.php +++ /dev/null @@ -1,37 +0,0 @@ -sheetsChartReferenceSuggestionState = $sheetsChartReferenceSuggestionState; - } - /** - * @return Google_Service_Docs_SheetsChartReferenceSuggestionState - */ - public function getSheetsChartReferenceSuggestionState() - { - return $this->sheetsChartReferenceSuggestionState; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/ListProperties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/ListProperties.php deleted file mode 100644 index e472357d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/ListProperties.php +++ /dev/null @@ -1,38 +0,0 @@ -nestingLevels = $nestingLevels; - } - /** - * @return Google_Service_Docs_NestingLevel - */ - public function getNestingLevels() - { - return $this->nestingLevels; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/ListPropertiesSuggestionState.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/ListPropertiesSuggestionState.php deleted file mode 100644 index 3b10942c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/ListPropertiesSuggestionState.php +++ /dev/null @@ -1,38 +0,0 @@ -nestingLevelsSuggestionStates = $nestingLevelsSuggestionStates; - } - /** - * @return Google_Service_Docs_NestingLevelSuggestionState - */ - public function getNestingLevelsSuggestionStates() - { - return $this->nestingLevelsSuggestionStates; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Location.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Location.php deleted file mode 100644 index 6da9c5b9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Location.php +++ /dev/null @@ -1,39 +0,0 @@ -index = $index; - } - public function getIndex() - { - return $this->index; - } - public function setSegmentId($segmentId) - { - $this->segmentId = $segmentId; - } - public function getSegmentId() - { - return $this->segmentId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/MergeTableCellsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/MergeTableCellsRequest.php deleted file mode 100644 index bff438c1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/MergeTableCellsRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -tableRange = $tableRange; - } - /** - * @return Google_Service_Docs_TableRange - */ - public function getTableRange() - { - return $this->tableRange; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/NamedRange.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/NamedRange.php deleted file mode 100644 index 86efafcb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/NamedRange.php +++ /dev/null @@ -1,56 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setNamedRangeId($namedRangeId) - { - $this->namedRangeId = $namedRangeId; - } - public function getNamedRangeId() - { - return $this->namedRangeId; - } - /** - * @param Google_Service_Docs_Range - */ - public function setRanges($ranges) - { - $this->ranges = $ranges; - } - /** - * @return Google_Service_Docs_Range - */ - public function getRanges() - { - return $this->ranges; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/NamedRanges.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/NamedRanges.php deleted file mode 100644 index c91849db..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/NamedRanges.php +++ /dev/null @@ -1,47 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Docs_NamedRange - */ - public function setNamedRanges($namedRanges) - { - $this->namedRanges = $namedRanges; - } - /** - * @return Google_Service_Docs_NamedRange - */ - public function getNamedRanges() - { - return $this->namedRanges; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/NamedStyle.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/NamedStyle.php deleted file mode 100644 index a40e92b1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/NamedStyle.php +++ /dev/null @@ -1,62 +0,0 @@ -namedStyleType = $namedStyleType; - } - public function getNamedStyleType() - { - return $this->namedStyleType; - } - /** - * @param Google_Service_Docs_ParagraphStyle - */ - public function setParagraphStyle(Google_Service_Docs_ParagraphStyle $paragraphStyle) - { - $this->paragraphStyle = $paragraphStyle; - } - /** - * @return Google_Service_Docs_ParagraphStyle - */ - public function getParagraphStyle() - { - return $this->paragraphStyle; - } - /** - * @param Google_Service_Docs_TextStyle - */ - public function setTextStyle(Google_Service_Docs_TextStyle $textStyle) - { - $this->textStyle = $textStyle; - } - /** - * @return Google_Service_Docs_TextStyle - */ - public function getTextStyle() - { - return $this->textStyle; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/NamedStyleSuggestionState.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/NamedStyleSuggestionState.php deleted file mode 100644 index 834ebf27..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/NamedStyleSuggestionState.php +++ /dev/null @@ -1,62 +0,0 @@ -namedStyleType = $namedStyleType; - } - public function getNamedStyleType() - { - return $this->namedStyleType; - } - /** - * @param Google_Service_Docs_ParagraphStyleSuggestionState - */ - public function setParagraphStyleSuggestionState(Google_Service_Docs_ParagraphStyleSuggestionState $paragraphStyleSuggestionState) - { - $this->paragraphStyleSuggestionState = $paragraphStyleSuggestionState; - } - /** - * @return Google_Service_Docs_ParagraphStyleSuggestionState - */ - public function getParagraphStyleSuggestionState() - { - return $this->paragraphStyleSuggestionState; - } - /** - * @param Google_Service_Docs_TextStyleSuggestionState - */ - public function setTextStyleSuggestionState(Google_Service_Docs_TextStyleSuggestionState $textStyleSuggestionState) - { - $this->textStyleSuggestionState = $textStyleSuggestionState; - } - /** - * @return Google_Service_Docs_TextStyleSuggestionState - */ - public function getTextStyleSuggestionState() - { - return $this->textStyleSuggestionState; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/NamedStyles.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/NamedStyles.php deleted file mode 100644 index 2711753e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/NamedStyles.php +++ /dev/null @@ -1,38 +0,0 @@ -styles = $styles; - } - /** - * @return Google_Service_Docs_NamedStyle - */ - public function getStyles() - { - return $this->styles; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/NamedStylesSuggestionState.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/NamedStylesSuggestionState.php deleted file mode 100644 index 3788a207..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/NamedStylesSuggestionState.php +++ /dev/null @@ -1,38 +0,0 @@ -stylesSuggestionStates = $stylesSuggestionStates; - } - /** - * @return Google_Service_Docs_NamedStyleSuggestionState - */ - public function getStylesSuggestionStates() - { - return $this->stylesSuggestionStates; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/NestingLevel.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/NestingLevel.php deleted file mode 100644 index 11a9b4d7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/NestingLevel.php +++ /dev/null @@ -1,114 +0,0 @@ -bulletAlignment = $bulletAlignment; - } - public function getBulletAlignment() - { - return $this->bulletAlignment; - } - public function setGlyphFormat($glyphFormat) - { - $this->glyphFormat = $glyphFormat; - } - public function getGlyphFormat() - { - return $this->glyphFormat; - } - public function setGlyphSymbol($glyphSymbol) - { - $this->glyphSymbol = $glyphSymbol; - } - public function getGlyphSymbol() - { - return $this->glyphSymbol; - } - public function setGlyphType($glyphType) - { - $this->glyphType = $glyphType; - } - public function getGlyphType() - { - return $this->glyphType; - } - /** - * @param Google_Service_Docs_Dimension - */ - public function setIndentFirstLine(Google_Service_Docs_Dimension $indentFirstLine) - { - $this->indentFirstLine = $indentFirstLine; - } - /** - * @return Google_Service_Docs_Dimension - */ - public function getIndentFirstLine() - { - return $this->indentFirstLine; - } - /** - * @param Google_Service_Docs_Dimension - */ - public function setIndentStart(Google_Service_Docs_Dimension $indentStart) - { - $this->indentStart = $indentStart; - } - /** - * @return Google_Service_Docs_Dimension - */ - public function getIndentStart() - { - return $this->indentStart; - } - public function setStartNumber($startNumber) - { - $this->startNumber = $startNumber; - } - public function getStartNumber() - { - return $this->startNumber; - } - /** - * @param Google_Service_Docs_TextStyle - */ - public function setTextStyle(Google_Service_Docs_TextStyle $textStyle) - { - $this->textStyle = $textStyle; - } - /** - * @return Google_Service_Docs_TextStyle - */ - public function getTextStyle() - { - return $this->textStyle; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/NestingLevelSuggestionState.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/NestingLevelSuggestionState.php deleted file mode 100644 index 431906dc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/NestingLevelSuggestionState.php +++ /dev/null @@ -1,100 +0,0 @@ -bulletAlignmentSuggested = $bulletAlignmentSuggested; - } - public function getBulletAlignmentSuggested() - { - return $this->bulletAlignmentSuggested; - } - public function setGlyphFormatSuggested($glyphFormatSuggested) - { - $this->glyphFormatSuggested = $glyphFormatSuggested; - } - public function getGlyphFormatSuggested() - { - return $this->glyphFormatSuggested; - } - public function setGlyphSymbolSuggested($glyphSymbolSuggested) - { - $this->glyphSymbolSuggested = $glyphSymbolSuggested; - } - public function getGlyphSymbolSuggested() - { - return $this->glyphSymbolSuggested; - } - public function setGlyphTypeSuggested($glyphTypeSuggested) - { - $this->glyphTypeSuggested = $glyphTypeSuggested; - } - public function getGlyphTypeSuggested() - { - return $this->glyphTypeSuggested; - } - public function setIndentFirstLineSuggested($indentFirstLineSuggested) - { - $this->indentFirstLineSuggested = $indentFirstLineSuggested; - } - public function getIndentFirstLineSuggested() - { - return $this->indentFirstLineSuggested; - } - public function setIndentStartSuggested($indentStartSuggested) - { - $this->indentStartSuggested = $indentStartSuggested; - } - public function getIndentStartSuggested() - { - return $this->indentStartSuggested; - } - public function setStartNumberSuggested($startNumberSuggested) - { - $this->startNumberSuggested = $startNumberSuggested; - } - public function getStartNumberSuggested() - { - return $this->startNumberSuggested; - } - /** - * @param Google_Service_Docs_TextStyleSuggestionState - */ - public function setTextStyleSuggestionState(Google_Service_Docs_TextStyleSuggestionState $textStyleSuggestionState) - { - $this->textStyleSuggestionState = $textStyleSuggestionState; - } - /** - * @return Google_Service_Docs_TextStyleSuggestionState - */ - public function getTextStyleSuggestionState() - { - return $this->textStyleSuggestionState; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/ObjectReferences.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/ObjectReferences.php deleted file mode 100644 index 2fea0b38..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/ObjectReferences.php +++ /dev/null @@ -1,31 +0,0 @@ -objectIds = $objectIds; - } - public function getObjectIds() - { - return $this->objectIds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/OptionalColor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/OptionalColor.php deleted file mode 100644 index d288b715..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/OptionalColor.php +++ /dev/null @@ -1,37 +0,0 @@ -color = $color; - } - /** - * @return Google_Service_Docs_Color - */ - public function getColor() - { - return $this->color; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/PageBreak.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/PageBreak.php deleted file mode 100644 index dfc09031..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/PageBreak.php +++ /dev/null @@ -1,72 +0,0 @@ -suggestedDeletionIds = $suggestedDeletionIds; - } - public function getSuggestedDeletionIds() - { - return $this->suggestedDeletionIds; - } - public function setSuggestedInsertionIds($suggestedInsertionIds) - { - $this->suggestedInsertionIds = $suggestedInsertionIds; - } - public function getSuggestedInsertionIds() - { - return $this->suggestedInsertionIds; - } - /** - * @param Google_Service_Docs_SuggestedTextStyle - */ - public function setSuggestedTextStyleChanges($suggestedTextStyleChanges) - { - $this->suggestedTextStyleChanges = $suggestedTextStyleChanges; - } - /** - * @return Google_Service_Docs_SuggestedTextStyle - */ - public function getSuggestedTextStyleChanges() - { - return $this->suggestedTextStyleChanges; - } - /** - * @param Google_Service_Docs_TextStyle - */ - public function setTextStyle(Google_Service_Docs_TextStyle $textStyle) - { - $this->textStyle = $textStyle; - } - /** - * @return Google_Service_Docs_TextStyle - */ - public function getTextStyle() - { - return $this->textStyle; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Paragraph.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Paragraph.php deleted file mode 100644 index 8e0b2361..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Paragraph.php +++ /dev/null @@ -1,127 +0,0 @@ -bullet = $bullet; - } - /** - * @return Google_Service_Docs_Bullet - */ - public function getBullet() - { - return $this->bullet; - } - /** - * @param Google_Service_Docs_ParagraphElement - */ - public function setElements($elements) - { - $this->elements = $elements; - } - /** - * @return Google_Service_Docs_ParagraphElement - */ - public function getElements() - { - return $this->elements; - } - /** - * @param Google_Service_Docs_ParagraphStyle - */ - public function setParagraphStyle(Google_Service_Docs_ParagraphStyle $paragraphStyle) - { - $this->paragraphStyle = $paragraphStyle; - } - /** - * @return Google_Service_Docs_ParagraphStyle - */ - public function getParagraphStyle() - { - return $this->paragraphStyle; - } - public function setPositionedObjectIds($positionedObjectIds) - { - $this->positionedObjectIds = $positionedObjectIds; - } - public function getPositionedObjectIds() - { - return $this->positionedObjectIds; - } - /** - * @param Google_Service_Docs_SuggestedBullet - */ - public function setSuggestedBulletChanges($suggestedBulletChanges) - { - $this->suggestedBulletChanges = $suggestedBulletChanges; - } - /** - * @return Google_Service_Docs_SuggestedBullet - */ - public function getSuggestedBulletChanges() - { - return $this->suggestedBulletChanges; - } - /** - * @param Google_Service_Docs_SuggestedParagraphStyle - */ - public function setSuggestedParagraphStyleChanges($suggestedParagraphStyleChanges) - { - $this->suggestedParagraphStyleChanges = $suggestedParagraphStyleChanges; - } - /** - * @return Google_Service_Docs_SuggestedParagraphStyle - */ - public function getSuggestedParagraphStyleChanges() - { - return $this->suggestedParagraphStyleChanges; - } - /** - * @param Google_Service_Docs_ObjectReferences - */ - public function setSuggestedPositionedObjectIds($suggestedPositionedObjectIds) - { - $this->suggestedPositionedObjectIds = $suggestedPositionedObjectIds; - } - /** - * @return Google_Service_Docs_ObjectReferences - */ - public function getSuggestedPositionedObjectIds() - { - return $this->suggestedPositionedObjectIds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/ParagraphBorder.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/ParagraphBorder.php deleted file mode 100644 index 0df109aa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/ParagraphBorder.php +++ /dev/null @@ -1,78 +0,0 @@ -color = $color; - } - /** - * @return Google_Service_Docs_OptionalColor - */ - public function getColor() - { - return $this->color; - } - public function setDashStyle($dashStyle) - { - $this->dashStyle = $dashStyle; - } - public function getDashStyle() - { - return $this->dashStyle; - } - /** - * @param Google_Service_Docs_Dimension - */ - public function setPadding(Google_Service_Docs_Dimension $padding) - { - $this->padding = $padding; - } - /** - * @return Google_Service_Docs_Dimension - */ - public function getPadding() - { - return $this->padding; - } - /** - * @param Google_Service_Docs_Dimension - */ - public function setWidth(Google_Service_Docs_Dimension $width) - { - $this->width = $width; - } - /** - * @return Google_Service_Docs_Dimension - */ - public function getWidth() - { - return $this->width; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/ParagraphElement.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/ParagraphElement.php deleted file mode 100644 index fbf68472..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/ParagraphElement.php +++ /dev/null @@ -1,167 +0,0 @@ -autoText = $autoText; - } - /** - * @return Google_Service_Docs_AutoText - */ - public function getAutoText() - { - return $this->autoText; - } - /** - * @param Google_Service_Docs_ColumnBreak - */ - public function setColumnBreak(Google_Service_Docs_ColumnBreak $columnBreak) - { - $this->columnBreak = $columnBreak; - } - /** - * @return Google_Service_Docs_ColumnBreak - */ - public function getColumnBreak() - { - return $this->columnBreak; - } - public function setEndIndex($endIndex) - { - $this->endIndex = $endIndex; - } - public function getEndIndex() - { - return $this->endIndex; - } - /** - * @param Google_Service_Docs_Equation - */ - public function setEquation(Google_Service_Docs_Equation $equation) - { - $this->equation = $equation; - } - /** - * @return Google_Service_Docs_Equation - */ - public function getEquation() - { - return $this->equation; - } - /** - * @param Google_Service_Docs_FootnoteReference - */ - public function setFootnoteReference(Google_Service_Docs_FootnoteReference $footnoteReference) - { - $this->footnoteReference = $footnoteReference; - } - /** - * @return Google_Service_Docs_FootnoteReference - */ - public function getFootnoteReference() - { - return $this->footnoteReference; - } - /** - * @param Google_Service_Docs_HorizontalRule - */ - public function setHorizontalRule(Google_Service_Docs_HorizontalRule $horizontalRule) - { - $this->horizontalRule = $horizontalRule; - } - /** - * @return Google_Service_Docs_HorizontalRule - */ - public function getHorizontalRule() - { - return $this->horizontalRule; - } - /** - * @param Google_Service_Docs_InlineObjectElement - */ - public function setInlineObjectElement(Google_Service_Docs_InlineObjectElement $inlineObjectElement) - { - $this->inlineObjectElement = $inlineObjectElement; - } - /** - * @return Google_Service_Docs_InlineObjectElement - */ - public function getInlineObjectElement() - { - return $this->inlineObjectElement; - } - /** - * @param Google_Service_Docs_PageBreak - */ - public function setPageBreak(Google_Service_Docs_PageBreak $pageBreak) - { - $this->pageBreak = $pageBreak; - } - /** - * @return Google_Service_Docs_PageBreak - */ - public function getPageBreak() - { - return $this->pageBreak; - } - public function setStartIndex($startIndex) - { - $this->startIndex = $startIndex; - } - public function getStartIndex() - { - return $this->startIndex; - } - /** - * @param Google_Service_Docs_TextRun - */ - public function setTextRun(Google_Service_Docs_TextRun $textRun) - { - $this->textRun = $textRun; - } - /** - * @return Google_Service_Docs_TextRun - */ - public function getTextRun() - { - return $this->textRun; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/ParagraphStyle.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/ParagraphStyle.php deleted file mode 100644 index 35d9ee54..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/ParagraphStyle.php +++ /dev/null @@ -1,295 +0,0 @@ -alignment = $alignment; - } - public function getAlignment() - { - return $this->alignment; - } - public function setAvoidWidowAndOrphan($avoidWidowAndOrphan) - { - $this->avoidWidowAndOrphan = $avoidWidowAndOrphan; - } - public function getAvoidWidowAndOrphan() - { - return $this->avoidWidowAndOrphan; - } - /** - * @param Google_Service_Docs_ParagraphBorder - */ - public function setBorderBetween(Google_Service_Docs_ParagraphBorder $borderBetween) - { - $this->borderBetween = $borderBetween; - } - /** - * @return Google_Service_Docs_ParagraphBorder - */ - public function getBorderBetween() - { - return $this->borderBetween; - } - /** - * @param Google_Service_Docs_ParagraphBorder - */ - public function setBorderBottom(Google_Service_Docs_ParagraphBorder $borderBottom) - { - $this->borderBottom = $borderBottom; - } - /** - * @return Google_Service_Docs_ParagraphBorder - */ - public function getBorderBottom() - { - return $this->borderBottom; - } - /** - * @param Google_Service_Docs_ParagraphBorder - */ - public function setBorderLeft(Google_Service_Docs_ParagraphBorder $borderLeft) - { - $this->borderLeft = $borderLeft; - } - /** - * @return Google_Service_Docs_ParagraphBorder - */ - public function getBorderLeft() - { - return $this->borderLeft; - } - /** - * @param Google_Service_Docs_ParagraphBorder - */ - public function setBorderRight(Google_Service_Docs_ParagraphBorder $borderRight) - { - $this->borderRight = $borderRight; - } - /** - * @return Google_Service_Docs_ParagraphBorder - */ - public function getBorderRight() - { - return $this->borderRight; - } - /** - * @param Google_Service_Docs_ParagraphBorder - */ - public function setBorderTop(Google_Service_Docs_ParagraphBorder $borderTop) - { - $this->borderTop = $borderTop; - } - /** - * @return Google_Service_Docs_ParagraphBorder - */ - public function getBorderTop() - { - return $this->borderTop; - } - public function setDirection($direction) - { - $this->direction = $direction; - } - public function getDirection() - { - return $this->direction; - } - public function setHeadingId($headingId) - { - $this->headingId = $headingId; - } - public function getHeadingId() - { - return $this->headingId; - } - /** - * @param Google_Service_Docs_Dimension - */ - public function setIndentEnd(Google_Service_Docs_Dimension $indentEnd) - { - $this->indentEnd = $indentEnd; - } - /** - * @return Google_Service_Docs_Dimension - */ - public function getIndentEnd() - { - return $this->indentEnd; - } - /** - * @param Google_Service_Docs_Dimension - */ - public function setIndentFirstLine(Google_Service_Docs_Dimension $indentFirstLine) - { - $this->indentFirstLine = $indentFirstLine; - } - /** - * @return Google_Service_Docs_Dimension - */ - public function getIndentFirstLine() - { - return $this->indentFirstLine; - } - /** - * @param Google_Service_Docs_Dimension - */ - public function setIndentStart(Google_Service_Docs_Dimension $indentStart) - { - $this->indentStart = $indentStart; - } - /** - * @return Google_Service_Docs_Dimension - */ - public function getIndentStart() - { - return $this->indentStart; - } - public function setKeepLinesTogether($keepLinesTogether) - { - $this->keepLinesTogether = $keepLinesTogether; - } - public function getKeepLinesTogether() - { - return $this->keepLinesTogether; - } - public function setKeepWithNext($keepWithNext) - { - $this->keepWithNext = $keepWithNext; - } - public function getKeepWithNext() - { - return $this->keepWithNext; - } - public function setLineSpacing($lineSpacing) - { - $this->lineSpacing = $lineSpacing; - } - public function getLineSpacing() - { - return $this->lineSpacing; - } - public function setNamedStyleType($namedStyleType) - { - $this->namedStyleType = $namedStyleType; - } - public function getNamedStyleType() - { - return $this->namedStyleType; - } - /** - * @param Google_Service_Docs_Shading - */ - public function setShading(Google_Service_Docs_Shading $shading) - { - $this->shading = $shading; - } - /** - * @return Google_Service_Docs_Shading - */ - public function getShading() - { - return $this->shading; - } - /** - * @param Google_Service_Docs_Dimension - */ - public function setSpaceAbove(Google_Service_Docs_Dimension $spaceAbove) - { - $this->spaceAbove = $spaceAbove; - } - /** - * @return Google_Service_Docs_Dimension - */ - public function getSpaceAbove() - { - return $this->spaceAbove; - } - /** - * @param Google_Service_Docs_Dimension - */ - public function setSpaceBelow(Google_Service_Docs_Dimension $spaceBelow) - { - $this->spaceBelow = $spaceBelow; - } - /** - * @return Google_Service_Docs_Dimension - */ - public function getSpaceBelow() - { - return $this->spaceBelow; - } - public function setSpacingMode($spacingMode) - { - $this->spacingMode = $spacingMode; - } - public function getSpacingMode() - { - return $this->spacingMode; - } - /** - * @param Google_Service_Docs_TabStop - */ - public function setTabStops($tabStops) - { - $this->tabStops = $tabStops; - } - /** - * @return Google_Service_Docs_TabStop - */ - public function getTabStops() - { - return $this->tabStops; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/ParagraphStyleSuggestionState.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/ParagraphStyleSuggestionState.php deleted file mode 100644 index 569f59fa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/ParagraphStyleSuggestionState.php +++ /dev/null @@ -1,208 +0,0 @@ -alignmentSuggested = $alignmentSuggested; - } - public function getAlignmentSuggested() - { - return $this->alignmentSuggested; - } - public function setAvoidWidowAndOrphanSuggested($avoidWidowAndOrphanSuggested) - { - $this->avoidWidowAndOrphanSuggested = $avoidWidowAndOrphanSuggested; - } - public function getAvoidWidowAndOrphanSuggested() - { - return $this->avoidWidowAndOrphanSuggested; - } - public function setBorderBetweenSuggested($borderBetweenSuggested) - { - $this->borderBetweenSuggested = $borderBetweenSuggested; - } - public function getBorderBetweenSuggested() - { - return $this->borderBetweenSuggested; - } - public function setBorderBottomSuggested($borderBottomSuggested) - { - $this->borderBottomSuggested = $borderBottomSuggested; - } - public function getBorderBottomSuggested() - { - return $this->borderBottomSuggested; - } - public function setBorderLeftSuggested($borderLeftSuggested) - { - $this->borderLeftSuggested = $borderLeftSuggested; - } - public function getBorderLeftSuggested() - { - return $this->borderLeftSuggested; - } - public function setBorderRightSuggested($borderRightSuggested) - { - $this->borderRightSuggested = $borderRightSuggested; - } - public function getBorderRightSuggested() - { - return $this->borderRightSuggested; - } - public function setBorderTopSuggested($borderTopSuggested) - { - $this->borderTopSuggested = $borderTopSuggested; - } - public function getBorderTopSuggested() - { - return $this->borderTopSuggested; - } - public function setDirectionSuggested($directionSuggested) - { - $this->directionSuggested = $directionSuggested; - } - public function getDirectionSuggested() - { - return $this->directionSuggested; - } - public function setHeadingIdSuggested($headingIdSuggested) - { - $this->headingIdSuggested = $headingIdSuggested; - } - public function getHeadingIdSuggested() - { - return $this->headingIdSuggested; - } - public function setIndentEndSuggested($indentEndSuggested) - { - $this->indentEndSuggested = $indentEndSuggested; - } - public function getIndentEndSuggested() - { - return $this->indentEndSuggested; - } - public function setIndentFirstLineSuggested($indentFirstLineSuggested) - { - $this->indentFirstLineSuggested = $indentFirstLineSuggested; - } - public function getIndentFirstLineSuggested() - { - return $this->indentFirstLineSuggested; - } - public function setIndentStartSuggested($indentStartSuggested) - { - $this->indentStartSuggested = $indentStartSuggested; - } - public function getIndentStartSuggested() - { - return $this->indentStartSuggested; - } - public function setKeepLinesTogetherSuggested($keepLinesTogetherSuggested) - { - $this->keepLinesTogetherSuggested = $keepLinesTogetherSuggested; - } - public function getKeepLinesTogetherSuggested() - { - return $this->keepLinesTogetherSuggested; - } - public function setKeepWithNextSuggested($keepWithNextSuggested) - { - $this->keepWithNextSuggested = $keepWithNextSuggested; - } - public function getKeepWithNextSuggested() - { - return $this->keepWithNextSuggested; - } - public function setLineSpacingSuggested($lineSpacingSuggested) - { - $this->lineSpacingSuggested = $lineSpacingSuggested; - } - public function getLineSpacingSuggested() - { - return $this->lineSpacingSuggested; - } - public function setNamedStyleTypeSuggested($namedStyleTypeSuggested) - { - $this->namedStyleTypeSuggested = $namedStyleTypeSuggested; - } - public function getNamedStyleTypeSuggested() - { - return $this->namedStyleTypeSuggested; - } - /** - * @param Google_Service_Docs_ShadingSuggestionState - */ - public function setShadingSuggestionState(Google_Service_Docs_ShadingSuggestionState $shadingSuggestionState) - { - $this->shadingSuggestionState = $shadingSuggestionState; - } - /** - * @return Google_Service_Docs_ShadingSuggestionState - */ - public function getShadingSuggestionState() - { - return $this->shadingSuggestionState; - } - public function setSpaceAboveSuggested($spaceAboveSuggested) - { - $this->spaceAboveSuggested = $spaceAboveSuggested; - } - public function getSpaceAboveSuggested() - { - return $this->spaceAboveSuggested; - } - public function setSpaceBelowSuggested($spaceBelowSuggested) - { - $this->spaceBelowSuggested = $spaceBelowSuggested; - } - public function getSpaceBelowSuggested() - { - return $this->spaceBelowSuggested; - } - public function setSpacingModeSuggested($spacingModeSuggested) - { - $this->spacingModeSuggested = $spacingModeSuggested; - } - public function getSpacingModeSuggested() - { - return $this->spacingModeSuggested; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/PositionedObject.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/PositionedObject.php deleted file mode 100644 index 731dc499..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/PositionedObject.php +++ /dev/null @@ -1,81 +0,0 @@ -objectId = $objectId; - } - public function getObjectId() - { - return $this->objectId; - } - /** - * @param Google_Service_Docs_PositionedObjectProperties - */ - public function setPositionedObjectProperties(Google_Service_Docs_PositionedObjectProperties $positionedObjectProperties) - { - $this->positionedObjectProperties = $positionedObjectProperties; - } - /** - * @return Google_Service_Docs_PositionedObjectProperties - */ - public function getPositionedObjectProperties() - { - return $this->positionedObjectProperties; - } - public function setSuggestedDeletionIds($suggestedDeletionIds) - { - $this->suggestedDeletionIds = $suggestedDeletionIds; - } - public function getSuggestedDeletionIds() - { - return $this->suggestedDeletionIds; - } - public function setSuggestedInsertionId($suggestedInsertionId) - { - $this->suggestedInsertionId = $suggestedInsertionId; - } - public function getSuggestedInsertionId() - { - return $this->suggestedInsertionId; - } - /** - * @param Google_Service_Docs_SuggestedPositionedObjectProperties - */ - public function setSuggestedPositionedObjectPropertiesChanges($suggestedPositionedObjectPropertiesChanges) - { - $this->suggestedPositionedObjectPropertiesChanges = $suggestedPositionedObjectPropertiesChanges; - } - /** - * @return Google_Service_Docs_SuggestedPositionedObjectProperties - */ - public function getSuggestedPositionedObjectPropertiesChanges() - { - return $this->suggestedPositionedObjectPropertiesChanges; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/PositionedObjectPositioning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/PositionedObjectPositioning.php deleted file mode 100644 index 81fcd9e1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/PositionedObjectPositioning.php +++ /dev/null @@ -1,62 +0,0 @@ -layout = $layout; - } - public function getLayout() - { - return $this->layout; - } - /** - * @param Google_Service_Docs_Dimension - */ - public function setLeftOffset(Google_Service_Docs_Dimension $leftOffset) - { - $this->leftOffset = $leftOffset; - } - /** - * @return Google_Service_Docs_Dimension - */ - public function getLeftOffset() - { - return $this->leftOffset; - } - /** - * @param Google_Service_Docs_Dimension - */ - public function setTopOffset(Google_Service_Docs_Dimension $topOffset) - { - $this->topOffset = $topOffset; - } - /** - * @return Google_Service_Docs_Dimension - */ - public function getTopOffset() - { - return $this->topOffset; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/PositionedObjectPositioningSuggestionState.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/PositionedObjectPositioningSuggestionState.php deleted file mode 100644 index 6f2b5446..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/PositionedObjectPositioningSuggestionState.php +++ /dev/null @@ -1,48 +0,0 @@ -layoutSuggested = $layoutSuggested; - } - public function getLayoutSuggested() - { - return $this->layoutSuggested; - } - public function setLeftOffsetSuggested($leftOffsetSuggested) - { - $this->leftOffsetSuggested = $leftOffsetSuggested; - } - public function getLeftOffsetSuggested() - { - return $this->leftOffsetSuggested; - } - public function setTopOffsetSuggested($topOffsetSuggested) - { - $this->topOffsetSuggested = $topOffsetSuggested; - } - public function getTopOffsetSuggested() - { - return $this->topOffsetSuggested; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/PositionedObjectProperties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/PositionedObjectProperties.php deleted file mode 100644 index 73bc28f7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/PositionedObjectProperties.php +++ /dev/null @@ -1,53 +0,0 @@ -embeddedObject = $embeddedObject; - } - /** - * @return Google_Service_Docs_EmbeddedObject - */ - public function getEmbeddedObject() - { - return $this->embeddedObject; - } - /** - * @param Google_Service_Docs_PositionedObjectPositioning - */ - public function setPositioning(Google_Service_Docs_PositionedObjectPositioning $positioning) - { - $this->positioning = $positioning; - } - /** - * @return Google_Service_Docs_PositionedObjectPositioning - */ - public function getPositioning() - { - return $this->positioning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/PositionedObjectPropertiesSuggestionState.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/PositionedObjectPropertiesSuggestionState.php deleted file mode 100644 index 7f1f3117..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/PositionedObjectPropertiesSuggestionState.php +++ /dev/null @@ -1,53 +0,0 @@ -embeddedObjectSuggestionState = $embeddedObjectSuggestionState; - } - /** - * @return Google_Service_Docs_EmbeddedObjectSuggestionState - */ - public function getEmbeddedObjectSuggestionState() - { - return $this->embeddedObjectSuggestionState; - } - /** - * @param Google_Service_Docs_PositionedObjectPositioningSuggestionState - */ - public function setPositioningSuggestionState(Google_Service_Docs_PositionedObjectPositioningSuggestionState $positioningSuggestionState) - { - $this->positioningSuggestionState = $positioningSuggestionState; - } - /** - * @return Google_Service_Docs_PositionedObjectPositioningSuggestionState - */ - public function getPositioningSuggestionState() - { - return $this->positioningSuggestionState; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Range.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Range.php deleted file mode 100644 index 802ac81d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Range.php +++ /dev/null @@ -1,48 +0,0 @@ -endIndex = $endIndex; - } - public function getEndIndex() - { - return $this->endIndex; - } - public function setSegmentId($segmentId) - { - $this->segmentId = $segmentId; - } - public function getSegmentId() - { - return $this->segmentId; - } - public function setStartIndex($startIndex) - { - $this->startIndex = $startIndex; - } - public function getStartIndex() - { - return $this->startIndex; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/ReplaceAllTextRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/ReplaceAllTextRequest.php deleted file mode 100644 index 66e65fdf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/ReplaceAllTextRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -containsText = $containsText; - } - /** - * @return Google_Service_Docs_SubstringMatchCriteria - */ - public function getContainsText() - { - return $this->containsText; - } - public function setReplaceText($replaceText) - { - $this->replaceText = $replaceText; - } - public function getReplaceText() - { - return $this->replaceText; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/ReplaceAllTextResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/ReplaceAllTextResponse.php deleted file mode 100644 index 248fe74a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/ReplaceAllTextResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -occurrencesChanged = $occurrencesChanged; - } - public function getOccurrencesChanged() - { - return $this->occurrencesChanged; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/ReplaceImageRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/ReplaceImageRequest.php deleted file mode 100644 index 68a39b9c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/ReplaceImageRequest.php +++ /dev/null @@ -1,48 +0,0 @@ -imageObjectId = $imageObjectId; - } - public function getImageObjectId() - { - return $this->imageObjectId; - } - public function setImageReplaceMethod($imageReplaceMethod) - { - $this->imageReplaceMethod = $imageReplaceMethod; - } - public function getImageReplaceMethod() - { - return $this->imageReplaceMethod; - } - public function setUri($uri) - { - $this->uri = $uri; - } - public function getUri() - { - return $this->uri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/ReplaceNamedRangeContentRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/ReplaceNamedRangeContentRequest.php deleted file mode 100644 index ed213ad5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/ReplaceNamedRangeContentRequest.php +++ /dev/null @@ -1,48 +0,0 @@ -namedRangeId = $namedRangeId; - } - public function getNamedRangeId() - { - return $this->namedRangeId; - } - public function setNamedRangeName($namedRangeName) - { - $this->namedRangeName = $namedRangeName; - } - public function getNamedRangeName() - { - return $this->namedRangeName; - } - public function setText($text) - { - $this->text = $text; - } - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Request.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Request.php deleted file mode 100644 index c2705645..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Request.php +++ /dev/null @@ -1,533 +0,0 @@ -createFooter = $createFooter; - } - /** - * @return Google_Service_Docs_CreateFooterRequest - */ - public function getCreateFooter() - { - return $this->createFooter; - } - /** - * @param Google_Service_Docs_CreateFootnoteRequest - */ - public function setCreateFootnote(Google_Service_Docs_CreateFootnoteRequest $createFootnote) - { - $this->createFootnote = $createFootnote; - } - /** - * @return Google_Service_Docs_CreateFootnoteRequest - */ - public function getCreateFootnote() - { - return $this->createFootnote; - } - /** - * @param Google_Service_Docs_CreateHeaderRequest - */ - public function setCreateHeader(Google_Service_Docs_CreateHeaderRequest $createHeader) - { - $this->createHeader = $createHeader; - } - /** - * @return Google_Service_Docs_CreateHeaderRequest - */ - public function getCreateHeader() - { - return $this->createHeader; - } - /** - * @param Google_Service_Docs_CreateNamedRangeRequest - */ - public function setCreateNamedRange(Google_Service_Docs_CreateNamedRangeRequest $createNamedRange) - { - $this->createNamedRange = $createNamedRange; - } - /** - * @return Google_Service_Docs_CreateNamedRangeRequest - */ - public function getCreateNamedRange() - { - return $this->createNamedRange; - } - /** - * @param Google_Service_Docs_CreateParagraphBulletsRequest - */ - public function setCreateParagraphBullets(Google_Service_Docs_CreateParagraphBulletsRequest $createParagraphBullets) - { - $this->createParagraphBullets = $createParagraphBullets; - } - /** - * @return Google_Service_Docs_CreateParagraphBulletsRequest - */ - public function getCreateParagraphBullets() - { - return $this->createParagraphBullets; - } - /** - * @param Google_Service_Docs_DeleteContentRangeRequest - */ - public function setDeleteContentRange(Google_Service_Docs_DeleteContentRangeRequest $deleteContentRange) - { - $this->deleteContentRange = $deleteContentRange; - } - /** - * @return Google_Service_Docs_DeleteContentRangeRequest - */ - public function getDeleteContentRange() - { - return $this->deleteContentRange; - } - /** - * @param Google_Service_Docs_DeleteFooterRequest - */ - public function setDeleteFooter(Google_Service_Docs_DeleteFooterRequest $deleteFooter) - { - $this->deleteFooter = $deleteFooter; - } - /** - * @return Google_Service_Docs_DeleteFooterRequest - */ - public function getDeleteFooter() - { - return $this->deleteFooter; - } - /** - * @param Google_Service_Docs_DeleteHeaderRequest - */ - public function setDeleteHeader(Google_Service_Docs_DeleteHeaderRequest $deleteHeader) - { - $this->deleteHeader = $deleteHeader; - } - /** - * @return Google_Service_Docs_DeleteHeaderRequest - */ - public function getDeleteHeader() - { - return $this->deleteHeader; - } - /** - * @param Google_Service_Docs_DeleteNamedRangeRequest - */ - public function setDeleteNamedRange(Google_Service_Docs_DeleteNamedRangeRequest $deleteNamedRange) - { - $this->deleteNamedRange = $deleteNamedRange; - } - /** - * @return Google_Service_Docs_DeleteNamedRangeRequest - */ - public function getDeleteNamedRange() - { - return $this->deleteNamedRange; - } - /** - * @param Google_Service_Docs_DeleteParagraphBulletsRequest - */ - public function setDeleteParagraphBullets(Google_Service_Docs_DeleteParagraphBulletsRequest $deleteParagraphBullets) - { - $this->deleteParagraphBullets = $deleteParagraphBullets; - } - /** - * @return Google_Service_Docs_DeleteParagraphBulletsRequest - */ - public function getDeleteParagraphBullets() - { - return $this->deleteParagraphBullets; - } - /** - * @param Google_Service_Docs_DeletePositionedObjectRequest - */ - public function setDeletePositionedObject(Google_Service_Docs_DeletePositionedObjectRequest $deletePositionedObject) - { - $this->deletePositionedObject = $deletePositionedObject; - } - /** - * @return Google_Service_Docs_DeletePositionedObjectRequest - */ - public function getDeletePositionedObject() - { - return $this->deletePositionedObject; - } - /** - * @param Google_Service_Docs_DeleteTableColumnRequest - */ - public function setDeleteTableColumn(Google_Service_Docs_DeleteTableColumnRequest $deleteTableColumn) - { - $this->deleteTableColumn = $deleteTableColumn; - } - /** - * @return Google_Service_Docs_DeleteTableColumnRequest - */ - public function getDeleteTableColumn() - { - return $this->deleteTableColumn; - } - /** - * @param Google_Service_Docs_DeleteTableRowRequest - */ - public function setDeleteTableRow(Google_Service_Docs_DeleteTableRowRequest $deleteTableRow) - { - $this->deleteTableRow = $deleteTableRow; - } - /** - * @return Google_Service_Docs_DeleteTableRowRequest - */ - public function getDeleteTableRow() - { - return $this->deleteTableRow; - } - /** - * @param Google_Service_Docs_InsertInlineImageRequest - */ - public function setInsertInlineImage(Google_Service_Docs_InsertInlineImageRequest $insertInlineImage) - { - $this->insertInlineImage = $insertInlineImage; - } - /** - * @return Google_Service_Docs_InsertInlineImageRequest - */ - public function getInsertInlineImage() - { - return $this->insertInlineImage; - } - /** - * @param Google_Service_Docs_InsertPageBreakRequest - */ - public function setInsertPageBreak(Google_Service_Docs_InsertPageBreakRequest $insertPageBreak) - { - $this->insertPageBreak = $insertPageBreak; - } - /** - * @return Google_Service_Docs_InsertPageBreakRequest - */ - public function getInsertPageBreak() - { - return $this->insertPageBreak; - } - /** - * @param Google_Service_Docs_InsertSectionBreakRequest - */ - public function setInsertSectionBreak(Google_Service_Docs_InsertSectionBreakRequest $insertSectionBreak) - { - $this->insertSectionBreak = $insertSectionBreak; - } - /** - * @return Google_Service_Docs_InsertSectionBreakRequest - */ - public function getInsertSectionBreak() - { - return $this->insertSectionBreak; - } - /** - * @param Google_Service_Docs_InsertTableRequest - */ - public function setInsertTable(Google_Service_Docs_InsertTableRequest $insertTable) - { - $this->insertTable = $insertTable; - } - /** - * @return Google_Service_Docs_InsertTableRequest - */ - public function getInsertTable() - { - return $this->insertTable; - } - /** - * @param Google_Service_Docs_InsertTableColumnRequest - */ - public function setInsertTableColumn(Google_Service_Docs_InsertTableColumnRequest $insertTableColumn) - { - $this->insertTableColumn = $insertTableColumn; - } - /** - * @return Google_Service_Docs_InsertTableColumnRequest - */ - public function getInsertTableColumn() - { - return $this->insertTableColumn; - } - /** - * @param Google_Service_Docs_InsertTableRowRequest - */ - public function setInsertTableRow(Google_Service_Docs_InsertTableRowRequest $insertTableRow) - { - $this->insertTableRow = $insertTableRow; - } - /** - * @return Google_Service_Docs_InsertTableRowRequest - */ - public function getInsertTableRow() - { - return $this->insertTableRow; - } - /** - * @param Google_Service_Docs_InsertTextRequest - */ - public function setInsertText(Google_Service_Docs_InsertTextRequest $insertText) - { - $this->insertText = $insertText; - } - /** - * @return Google_Service_Docs_InsertTextRequest - */ - public function getInsertText() - { - return $this->insertText; - } - /** - * @param Google_Service_Docs_MergeTableCellsRequest - */ - public function setMergeTableCells(Google_Service_Docs_MergeTableCellsRequest $mergeTableCells) - { - $this->mergeTableCells = $mergeTableCells; - } - /** - * @return Google_Service_Docs_MergeTableCellsRequest - */ - public function getMergeTableCells() - { - return $this->mergeTableCells; - } - /** - * @param Google_Service_Docs_ReplaceAllTextRequest - */ - public function setReplaceAllText(Google_Service_Docs_ReplaceAllTextRequest $replaceAllText) - { - $this->replaceAllText = $replaceAllText; - } - /** - * @return Google_Service_Docs_ReplaceAllTextRequest - */ - public function getReplaceAllText() - { - return $this->replaceAllText; - } - /** - * @param Google_Service_Docs_ReplaceImageRequest - */ - public function setReplaceImage(Google_Service_Docs_ReplaceImageRequest $replaceImage) - { - $this->replaceImage = $replaceImage; - } - /** - * @return Google_Service_Docs_ReplaceImageRequest - */ - public function getReplaceImage() - { - return $this->replaceImage; - } - /** - * @param Google_Service_Docs_ReplaceNamedRangeContentRequest - */ - public function setReplaceNamedRangeContent(Google_Service_Docs_ReplaceNamedRangeContentRequest $replaceNamedRangeContent) - { - $this->replaceNamedRangeContent = $replaceNamedRangeContent; - } - /** - * @return Google_Service_Docs_ReplaceNamedRangeContentRequest - */ - public function getReplaceNamedRangeContent() - { - return $this->replaceNamedRangeContent; - } - /** - * @param Google_Service_Docs_UnmergeTableCellsRequest - */ - public function setUnmergeTableCells(Google_Service_Docs_UnmergeTableCellsRequest $unmergeTableCells) - { - $this->unmergeTableCells = $unmergeTableCells; - } - /** - * @return Google_Service_Docs_UnmergeTableCellsRequest - */ - public function getUnmergeTableCells() - { - return $this->unmergeTableCells; - } - /** - * @param Google_Service_Docs_UpdateDocumentStyleRequest - */ - public function setUpdateDocumentStyle(Google_Service_Docs_UpdateDocumentStyleRequest $updateDocumentStyle) - { - $this->updateDocumentStyle = $updateDocumentStyle; - } - /** - * @return Google_Service_Docs_UpdateDocumentStyleRequest - */ - public function getUpdateDocumentStyle() - { - return $this->updateDocumentStyle; - } - /** - * @param Google_Service_Docs_UpdateParagraphStyleRequest - */ - public function setUpdateParagraphStyle(Google_Service_Docs_UpdateParagraphStyleRequest $updateParagraphStyle) - { - $this->updateParagraphStyle = $updateParagraphStyle; - } - /** - * @return Google_Service_Docs_UpdateParagraphStyleRequest - */ - public function getUpdateParagraphStyle() - { - return $this->updateParagraphStyle; - } - /** - * @param Google_Service_Docs_UpdateSectionStyleRequest - */ - public function setUpdateSectionStyle(Google_Service_Docs_UpdateSectionStyleRequest $updateSectionStyle) - { - $this->updateSectionStyle = $updateSectionStyle; - } - /** - * @return Google_Service_Docs_UpdateSectionStyleRequest - */ - public function getUpdateSectionStyle() - { - return $this->updateSectionStyle; - } - /** - * @param Google_Service_Docs_UpdateTableCellStyleRequest - */ - public function setUpdateTableCellStyle(Google_Service_Docs_UpdateTableCellStyleRequest $updateTableCellStyle) - { - $this->updateTableCellStyle = $updateTableCellStyle; - } - /** - * @return Google_Service_Docs_UpdateTableCellStyleRequest - */ - public function getUpdateTableCellStyle() - { - return $this->updateTableCellStyle; - } - /** - * @param Google_Service_Docs_UpdateTableColumnPropertiesRequest - */ - public function setUpdateTableColumnProperties(Google_Service_Docs_UpdateTableColumnPropertiesRequest $updateTableColumnProperties) - { - $this->updateTableColumnProperties = $updateTableColumnProperties; - } - /** - * @return Google_Service_Docs_UpdateTableColumnPropertiesRequest - */ - public function getUpdateTableColumnProperties() - { - return $this->updateTableColumnProperties; - } - /** - * @param Google_Service_Docs_UpdateTableRowStyleRequest - */ - public function setUpdateTableRowStyle(Google_Service_Docs_UpdateTableRowStyleRequest $updateTableRowStyle) - { - $this->updateTableRowStyle = $updateTableRowStyle; - } - /** - * @return Google_Service_Docs_UpdateTableRowStyleRequest - */ - public function getUpdateTableRowStyle() - { - return $this->updateTableRowStyle; - } - /** - * @param Google_Service_Docs_UpdateTextStyleRequest - */ - public function setUpdateTextStyle(Google_Service_Docs_UpdateTextStyleRequest $updateTextStyle) - { - $this->updateTextStyle = $updateTextStyle; - } - /** - * @return Google_Service_Docs_UpdateTextStyleRequest - */ - public function getUpdateTextStyle() - { - return $this->updateTextStyle; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Resource/Documents.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Resource/Documents.php deleted file mode 100644 index e433977c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Resource/Documents.php +++ /dev/null @@ -1,93 +0,0 @@ - - * $docsService = new Google_Service_Docs(...); - * $documents = $docsService->documents; - * - */ -class Google_Service_Docs_Resource_Documents extends Google_Service_Resource -{ - /** - * Applies one or more updates to the document. - * - * Each request is validated before being applied. If any request is not valid, - * then the entire request will fail and nothing will be applied. - * - * Some requests have replies to give you some information about how they are - * applied. Other requests do not need to return information; these each return - * an empty reply. The order of replies matches that of the requests. - * - * For example, suppose you call batchUpdate with four updates, and only the - * third one returns information. The response would have two empty replies, the - * reply to the third request, and another empty reply, in that order. - * - * Because other users may be editing the document, the document might not - * exactly reflect your changes: your changes may be altered with respect to - * collaborator changes. If there are no collaborators, the document should - * reflect your changes. In any case, the updates in your request are guaranteed - * to be applied together atomically. (documents.batchUpdate) - * - * @param string $documentId The ID of the document to update. - * @param Google_Service_Docs_BatchUpdateDocumentRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Docs_BatchUpdateDocumentResponse - */ - public function batchUpdate($documentId, Google_Service_Docs_BatchUpdateDocumentRequest $postBody, $optParams = array()) - { - $params = array('documentId' => $documentId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('batchUpdate', array($params), "Google_Service_Docs_BatchUpdateDocumentResponse"); - } - /** - * Creates a blank document using the title given in the request. Other fields - * in the request, including any provided content, are ignored. - * - * Returns the created document. (documents.create) - * - * @param Google_Service_Docs_Document $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Docs_Document - */ - public function create(Google_Service_Docs_Document $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Docs_Document"); - } - /** - * Gets the latest version of the specified document. (documents.get) - * - * @param string $documentId The ID of the document to retrieve. - * @param array $optParams Optional parameters. - * - * @opt_param string suggestionsViewMode The suggestions view mode to apply to - * the document. This allows viewing the document with all suggestions inline, - * accepted or rejected. If one is not specified, DEFAULT_FOR_CURRENT_ACCESS is - * used. - * @return Google_Service_Docs_Document - */ - public function get($documentId, $optParams = array()) - { - $params = array('documentId' => $documentId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Docs_Document"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Response.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Response.php deleted file mode 100644 index c56b8164..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Response.php +++ /dev/null @@ -1,133 +0,0 @@ -createFooter = $createFooter; - } - /** - * @return Google_Service_Docs_CreateFooterResponse - */ - public function getCreateFooter() - { - return $this->createFooter; - } - /** - * @param Google_Service_Docs_CreateFootnoteResponse - */ - public function setCreateFootnote(Google_Service_Docs_CreateFootnoteResponse $createFootnote) - { - $this->createFootnote = $createFootnote; - } - /** - * @return Google_Service_Docs_CreateFootnoteResponse - */ - public function getCreateFootnote() - { - return $this->createFootnote; - } - /** - * @param Google_Service_Docs_CreateHeaderResponse - */ - public function setCreateHeader(Google_Service_Docs_CreateHeaderResponse $createHeader) - { - $this->createHeader = $createHeader; - } - /** - * @return Google_Service_Docs_CreateHeaderResponse - */ - public function getCreateHeader() - { - return $this->createHeader; - } - /** - * @param Google_Service_Docs_CreateNamedRangeResponse - */ - public function setCreateNamedRange(Google_Service_Docs_CreateNamedRangeResponse $createNamedRange) - { - $this->createNamedRange = $createNamedRange; - } - /** - * @return Google_Service_Docs_CreateNamedRangeResponse - */ - public function getCreateNamedRange() - { - return $this->createNamedRange; - } - /** - * @param Google_Service_Docs_InsertInlineImageResponse - */ - public function setInsertInlineImage(Google_Service_Docs_InsertInlineImageResponse $insertInlineImage) - { - $this->insertInlineImage = $insertInlineImage; - } - /** - * @return Google_Service_Docs_InsertInlineImageResponse - */ - public function getInsertInlineImage() - { - return $this->insertInlineImage; - } - /** - * @param Google_Service_Docs_InsertInlineSheetsChartResponse - */ - public function setInsertInlineSheetsChart(Google_Service_Docs_InsertInlineSheetsChartResponse $insertInlineSheetsChart) - { - $this->insertInlineSheetsChart = $insertInlineSheetsChart; - } - /** - * @return Google_Service_Docs_InsertInlineSheetsChartResponse - */ - public function getInsertInlineSheetsChart() - { - return $this->insertInlineSheetsChart; - } - /** - * @param Google_Service_Docs_ReplaceAllTextResponse - */ - public function setReplaceAllText(Google_Service_Docs_ReplaceAllTextResponse $replaceAllText) - { - $this->replaceAllText = $replaceAllText; - } - /** - * @return Google_Service_Docs_ReplaceAllTextResponse - */ - public function getReplaceAllText() - { - return $this->replaceAllText; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/RgbColor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/RgbColor.php deleted file mode 100644 index efd713d5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/RgbColor.php +++ /dev/null @@ -1,48 +0,0 @@ -blue = $blue; - } - public function getBlue() - { - return $this->blue; - } - public function setGreen($green) - { - $this->green = $green; - } - public function getGreen() - { - return $this->green; - } - public function setRed($red) - { - $this->red = $red; - } - public function getRed() - { - return $this->red; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/SectionBreak.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/SectionBreak.php deleted file mode 100644 index 7506f6f3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/SectionBreak.php +++ /dev/null @@ -1,56 +0,0 @@ -sectionStyle = $sectionStyle; - } - /** - * @return Google_Service_Docs_SectionStyle - */ - public function getSectionStyle() - { - return $this->sectionStyle; - } - public function setSuggestedDeletionIds($suggestedDeletionIds) - { - $this->suggestedDeletionIds = $suggestedDeletionIds; - } - public function getSuggestedDeletionIds() - { - return $this->suggestedDeletionIds; - } - public function setSuggestedInsertionIds($suggestedInsertionIds) - { - $this->suggestedInsertionIds = $suggestedInsertionIds; - } - public function getSuggestedInsertionIds() - { - return $this->suggestedInsertionIds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/SectionColumnProperties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/SectionColumnProperties.php deleted file mode 100644 index 344e29d7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/SectionColumnProperties.php +++ /dev/null @@ -1,53 +0,0 @@ -paddingEnd = $paddingEnd; - } - /** - * @return Google_Service_Docs_Dimension - */ - public function getPaddingEnd() - { - return $this->paddingEnd; - } - /** - * @param Google_Service_Docs_Dimension - */ - public function setWidth(Google_Service_Docs_Dimension $width) - { - $this->width = $width; - } - /** - * @return Google_Service_Docs_Dimension - */ - public function getWidth() - { - return $this->width; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/SectionStyle.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/SectionStyle.php deleted file mode 100644 index 9f546129..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/SectionStyle.php +++ /dev/null @@ -1,233 +0,0 @@ -columnProperties = $columnProperties; - } - /** - * @return Google_Service_Docs_SectionColumnProperties - */ - public function getColumnProperties() - { - return $this->columnProperties; - } - public function setColumnSeparatorStyle($columnSeparatorStyle) - { - $this->columnSeparatorStyle = $columnSeparatorStyle; - } - public function getColumnSeparatorStyle() - { - return $this->columnSeparatorStyle; - } - public function setContentDirection($contentDirection) - { - $this->contentDirection = $contentDirection; - } - public function getContentDirection() - { - return $this->contentDirection; - } - public function setDefaultFooterId($defaultFooterId) - { - $this->defaultFooterId = $defaultFooterId; - } - public function getDefaultFooterId() - { - return $this->defaultFooterId; - } - public function setDefaultHeaderId($defaultHeaderId) - { - $this->defaultHeaderId = $defaultHeaderId; - } - public function getDefaultHeaderId() - { - return $this->defaultHeaderId; - } - public function setEvenPageFooterId($evenPageFooterId) - { - $this->evenPageFooterId = $evenPageFooterId; - } - public function getEvenPageFooterId() - { - return $this->evenPageFooterId; - } - public function setEvenPageHeaderId($evenPageHeaderId) - { - $this->evenPageHeaderId = $evenPageHeaderId; - } - public function getEvenPageHeaderId() - { - return $this->evenPageHeaderId; - } - public function setFirstPageFooterId($firstPageFooterId) - { - $this->firstPageFooterId = $firstPageFooterId; - } - public function getFirstPageFooterId() - { - return $this->firstPageFooterId; - } - public function setFirstPageHeaderId($firstPageHeaderId) - { - $this->firstPageHeaderId = $firstPageHeaderId; - } - public function getFirstPageHeaderId() - { - return $this->firstPageHeaderId; - } - /** - * @param Google_Service_Docs_Dimension - */ - public function setMarginBottom(Google_Service_Docs_Dimension $marginBottom) - { - $this->marginBottom = $marginBottom; - } - /** - * @return Google_Service_Docs_Dimension - */ - public function getMarginBottom() - { - return $this->marginBottom; - } - /** - * @param Google_Service_Docs_Dimension - */ - public function setMarginFooter(Google_Service_Docs_Dimension $marginFooter) - { - $this->marginFooter = $marginFooter; - } - /** - * @return Google_Service_Docs_Dimension - */ - public function getMarginFooter() - { - return $this->marginFooter; - } - /** - * @param Google_Service_Docs_Dimension - */ - public function setMarginHeader(Google_Service_Docs_Dimension $marginHeader) - { - $this->marginHeader = $marginHeader; - } - /** - * @return Google_Service_Docs_Dimension - */ - public function getMarginHeader() - { - return $this->marginHeader; - } - /** - * @param Google_Service_Docs_Dimension - */ - public function setMarginLeft(Google_Service_Docs_Dimension $marginLeft) - { - $this->marginLeft = $marginLeft; - } - /** - * @return Google_Service_Docs_Dimension - */ - public function getMarginLeft() - { - return $this->marginLeft; - } - /** - * @param Google_Service_Docs_Dimension - */ - public function setMarginRight(Google_Service_Docs_Dimension $marginRight) - { - $this->marginRight = $marginRight; - } - /** - * @return Google_Service_Docs_Dimension - */ - public function getMarginRight() - { - return $this->marginRight; - } - /** - * @param Google_Service_Docs_Dimension - */ - public function setMarginTop(Google_Service_Docs_Dimension $marginTop) - { - $this->marginTop = $marginTop; - } - /** - * @return Google_Service_Docs_Dimension - */ - public function getMarginTop() - { - return $this->marginTop; - } - public function setPageNumberStart($pageNumberStart) - { - $this->pageNumberStart = $pageNumberStart; - } - public function getPageNumberStart() - { - return $this->pageNumberStart; - } - public function setSectionType($sectionType) - { - $this->sectionType = $sectionType; - } - public function getSectionType() - { - return $this->sectionType; - } - public function setUseFirstPageHeaderFooter($useFirstPageHeaderFooter) - { - $this->useFirstPageHeaderFooter = $useFirstPageHeaderFooter; - } - public function getUseFirstPageHeaderFooter() - { - return $this->useFirstPageHeaderFooter; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Shading.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Shading.php deleted file mode 100644 index 732ab97e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Shading.php +++ /dev/null @@ -1,37 +0,0 @@ -backgroundColor = $backgroundColor; - } - /** - * @return Google_Service_Docs_OptionalColor - */ - public function getBackgroundColor() - { - return $this->backgroundColor; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/ShadingSuggestionState.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/ShadingSuggestionState.php deleted file mode 100644 index 96a7698e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/ShadingSuggestionState.php +++ /dev/null @@ -1,30 +0,0 @@ -backgroundColorSuggested = $backgroundColorSuggested; - } - public function getBackgroundColorSuggested() - { - return $this->backgroundColorSuggested; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/SheetsChartReference.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/SheetsChartReference.php deleted file mode 100644 index 89bf92d9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/SheetsChartReference.php +++ /dev/null @@ -1,39 +0,0 @@ -chartId = $chartId; - } - public function getChartId() - { - return $this->chartId; - } - public function setSpreadsheetId($spreadsheetId) - { - $this->spreadsheetId = $spreadsheetId; - } - public function getSpreadsheetId() - { - return $this->spreadsheetId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/SheetsChartReferenceSuggestionState.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/SheetsChartReferenceSuggestionState.php deleted file mode 100644 index a0f2a5f4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/SheetsChartReferenceSuggestionState.php +++ /dev/null @@ -1,39 +0,0 @@ -chartIdSuggested = $chartIdSuggested; - } - public function getChartIdSuggested() - { - return $this->chartIdSuggested; - } - public function setSpreadsheetIdSuggested($spreadsheetIdSuggested) - { - $this->spreadsheetIdSuggested = $spreadsheetIdSuggested; - } - public function getSpreadsheetIdSuggested() - { - return $this->spreadsheetIdSuggested; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Size.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Size.php deleted file mode 100644 index f82a756f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Size.php +++ /dev/null @@ -1,53 +0,0 @@ -height = $height; - } - /** - * @return Google_Service_Docs_Dimension - */ - public function getHeight() - { - return $this->height; - } - /** - * @param Google_Service_Docs_Dimension - */ - public function setWidth(Google_Service_Docs_Dimension $width) - { - $this->width = $width; - } - /** - * @return Google_Service_Docs_Dimension - */ - public function getWidth() - { - return $this->width; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/SizeSuggestionState.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/SizeSuggestionState.php deleted file mode 100644 index c60c5493..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/SizeSuggestionState.php +++ /dev/null @@ -1,39 +0,0 @@ -heightSuggested = $heightSuggested; - } - public function getHeightSuggested() - { - return $this->heightSuggested; - } - public function setWidthSuggested($widthSuggested) - { - $this->widthSuggested = $widthSuggested; - } - public function getWidthSuggested() - { - return $this->widthSuggested; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/StructuralElement.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/StructuralElement.php deleted file mode 100644 index a698f33a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/StructuralElement.php +++ /dev/null @@ -1,103 +0,0 @@ -endIndex = $endIndex; - } - public function getEndIndex() - { - return $this->endIndex; - } - /** - * @param Google_Service_Docs_Paragraph - */ - public function setParagraph(Google_Service_Docs_Paragraph $paragraph) - { - $this->paragraph = $paragraph; - } - /** - * @return Google_Service_Docs_Paragraph - */ - public function getParagraph() - { - return $this->paragraph; - } - /** - * @param Google_Service_Docs_SectionBreak - */ - public function setSectionBreak(Google_Service_Docs_SectionBreak $sectionBreak) - { - $this->sectionBreak = $sectionBreak; - } - /** - * @return Google_Service_Docs_SectionBreak - */ - public function getSectionBreak() - { - return $this->sectionBreak; - } - public function setStartIndex($startIndex) - { - $this->startIndex = $startIndex; - } - public function getStartIndex() - { - return $this->startIndex; - } - /** - * @param Google_Service_Docs_Table - */ - public function setTable(Google_Service_Docs_Table $table) - { - $this->table = $table; - } - /** - * @return Google_Service_Docs_Table - */ - public function getTable() - { - return $this->table; - } - /** - * @param Google_Service_Docs_TableOfContents - */ - public function setTableOfContents(Google_Service_Docs_TableOfContents $tableOfContents) - { - $this->tableOfContents = $tableOfContents; - } - /** - * @return Google_Service_Docs_TableOfContents - */ - public function getTableOfContents() - { - return $this->tableOfContents; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/SubstringMatchCriteria.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/SubstringMatchCriteria.php deleted file mode 100644 index 099e0992..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/SubstringMatchCriteria.php +++ /dev/null @@ -1,39 +0,0 @@ -matchCase = $matchCase; - } - public function getMatchCase() - { - return $this->matchCase; - } - public function setText($text) - { - $this->text = $text; - } - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/SuggestedBullet.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/SuggestedBullet.php deleted file mode 100644 index c9eb99ef..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/SuggestedBullet.php +++ /dev/null @@ -1,53 +0,0 @@ -bullet = $bullet; - } - /** - * @return Google_Service_Docs_Bullet - */ - public function getBullet() - { - return $this->bullet; - } - /** - * @param Google_Service_Docs_BulletSuggestionState - */ - public function setBulletSuggestionState(Google_Service_Docs_BulletSuggestionState $bulletSuggestionState) - { - $this->bulletSuggestionState = $bulletSuggestionState; - } - /** - * @return Google_Service_Docs_BulletSuggestionState - */ - public function getBulletSuggestionState() - { - return $this->bulletSuggestionState; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/SuggestedDocumentStyle.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/SuggestedDocumentStyle.php deleted file mode 100644 index daa0aba8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/SuggestedDocumentStyle.php +++ /dev/null @@ -1,53 +0,0 @@ -documentStyle = $documentStyle; - } - /** - * @return Google_Service_Docs_DocumentStyle - */ - public function getDocumentStyle() - { - return $this->documentStyle; - } - /** - * @param Google_Service_Docs_DocumentStyleSuggestionState - */ - public function setDocumentStyleSuggestionState(Google_Service_Docs_DocumentStyleSuggestionState $documentStyleSuggestionState) - { - $this->documentStyleSuggestionState = $documentStyleSuggestionState; - } - /** - * @return Google_Service_Docs_DocumentStyleSuggestionState - */ - public function getDocumentStyleSuggestionState() - { - return $this->documentStyleSuggestionState; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/SuggestedInlineObjectProperties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/SuggestedInlineObjectProperties.php deleted file mode 100644 index 0f833887..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/SuggestedInlineObjectProperties.php +++ /dev/null @@ -1,53 +0,0 @@ -inlineObjectProperties = $inlineObjectProperties; - } - /** - * @return Google_Service_Docs_InlineObjectProperties - */ - public function getInlineObjectProperties() - { - return $this->inlineObjectProperties; - } - /** - * @param Google_Service_Docs_InlineObjectPropertiesSuggestionState - */ - public function setInlineObjectPropertiesSuggestionState(Google_Service_Docs_InlineObjectPropertiesSuggestionState $inlineObjectPropertiesSuggestionState) - { - $this->inlineObjectPropertiesSuggestionState = $inlineObjectPropertiesSuggestionState; - } - /** - * @return Google_Service_Docs_InlineObjectPropertiesSuggestionState - */ - public function getInlineObjectPropertiesSuggestionState() - { - return $this->inlineObjectPropertiesSuggestionState; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/SuggestedListProperties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/SuggestedListProperties.php deleted file mode 100644 index 5a592231..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/SuggestedListProperties.php +++ /dev/null @@ -1,53 +0,0 @@ -listProperties = $listProperties; - } - /** - * @return Google_Service_Docs_ListProperties - */ - public function getListProperties() - { - return $this->listProperties; - } - /** - * @param Google_Service_Docs_ListPropertiesSuggestionState - */ - public function setListPropertiesSuggestionState(Google_Service_Docs_ListPropertiesSuggestionState $listPropertiesSuggestionState) - { - $this->listPropertiesSuggestionState = $listPropertiesSuggestionState; - } - /** - * @return Google_Service_Docs_ListPropertiesSuggestionState - */ - public function getListPropertiesSuggestionState() - { - return $this->listPropertiesSuggestionState; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/SuggestedNamedStyles.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/SuggestedNamedStyles.php deleted file mode 100644 index 8e265d75..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/SuggestedNamedStyles.php +++ /dev/null @@ -1,53 +0,0 @@ -namedStyles = $namedStyles; - } - /** - * @return Google_Service_Docs_NamedStyles - */ - public function getNamedStyles() - { - return $this->namedStyles; - } - /** - * @param Google_Service_Docs_NamedStylesSuggestionState - */ - public function setNamedStylesSuggestionState(Google_Service_Docs_NamedStylesSuggestionState $namedStylesSuggestionState) - { - $this->namedStylesSuggestionState = $namedStylesSuggestionState; - } - /** - * @return Google_Service_Docs_NamedStylesSuggestionState - */ - public function getNamedStylesSuggestionState() - { - return $this->namedStylesSuggestionState; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/SuggestedParagraphStyle.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/SuggestedParagraphStyle.php deleted file mode 100644 index 2c75dd4f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/SuggestedParagraphStyle.php +++ /dev/null @@ -1,53 +0,0 @@ -paragraphStyle = $paragraphStyle; - } - /** - * @return Google_Service_Docs_ParagraphStyle - */ - public function getParagraphStyle() - { - return $this->paragraphStyle; - } - /** - * @param Google_Service_Docs_ParagraphStyleSuggestionState - */ - public function setParagraphStyleSuggestionState(Google_Service_Docs_ParagraphStyleSuggestionState $paragraphStyleSuggestionState) - { - $this->paragraphStyleSuggestionState = $paragraphStyleSuggestionState; - } - /** - * @return Google_Service_Docs_ParagraphStyleSuggestionState - */ - public function getParagraphStyleSuggestionState() - { - return $this->paragraphStyleSuggestionState; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/SuggestedPositionedObjectProperties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/SuggestedPositionedObjectProperties.php deleted file mode 100644 index 7595c314..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/SuggestedPositionedObjectProperties.php +++ /dev/null @@ -1,53 +0,0 @@ -positionedObjectProperties = $positionedObjectProperties; - } - /** - * @return Google_Service_Docs_PositionedObjectProperties - */ - public function getPositionedObjectProperties() - { - return $this->positionedObjectProperties; - } - /** - * @param Google_Service_Docs_PositionedObjectPropertiesSuggestionState - */ - public function setPositionedObjectPropertiesSuggestionState(Google_Service_Docs_PositionedObjectPropertiesSuggestionState $positionedObjectPropertiesSuggestionState) - { - $this->positionedObjectPropertiesSuggestionState = $positionedObjectPropertiesSuggestionState; - } - /** - * @return Google_Service_Docs_PositionedObjectPropertiesSuggestionState - */ - public function getPositionedObjectPropertiesSuggestionState() - { - return $this->positionedObjectPropertiesSuggestionState; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/SuggestedTableCellStyle.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/SuggestedTableCellStyle.php deleted file mode 100644 index f19846c1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/SuggestedTableCellStyle.php +++ /dev/null @@ -1,53 +0,0 @@ -tableCellStyle = $tableCellStyle; - } - /** - * @return Google_Service_Docs_TableCellStyle - */ - public function getTableCellStyle() - { - return $this->tableCellStyle; - } - /** - * @param Google_Service_Docs_TableCellStyleSuggestionState - */ - public function setTableCellStyleSuggestionState(Google_Service_Docs_TableCellStyleSuggestionState $tableCellStyleSuggestionState) - { - $this->tableCellStyleSuggestionState = $tableCellStyleSuggestionState; - } - /** - * @return Google_Service_Docs_TableCellStyleSuggestionState - */ - public function getTableCellStyleSuggestionState() - { - return $this->tableCellStyleSuggestionState; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/SuggestedTableRowStyle.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/SuggestedTableRowStyle.php deleted file mode 100644 index 3d0bd838..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/SuggestedTableRowStyle.php +++ /dev/null @@ -1,53 +0,0 @@ -tableRowStyle = $tableRowStyle; - } - /** - * @return Google_Service_Docs_TableRowStyle - */ - public function getTableRowStyle() - { - return $this->tableRowStyle; - } - /** - * @param Google_Service_Docs_TableRowStyleSuggestionState - */ - public function setTableRowStyleSuggestionState(Google_Service_Docs_TableRowStyleSuggestionState $tableRowStyleSuggestionState) - { - $this->tableRowStyleSuggestionState = $tableRowStyleSuggestionState; - } - /** - * @return Google_Service_Docs_TableRowStyleSuggestionState - */ - public function getTableRowStyleSuggestionState() - { - return $this->tableRowStyleSuggestionState; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/SuggestedTextStyle.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/SuggestedTextStyle.php deleted file mode 100644 index eb3e0646..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/SuggestedTextStyle.php +++ /dev/null @@ -1,53 +0,0 @@ -textStyle = $textStyle; - } - /** - * @return Google_Service_Docs_TextStyle - */ - public function getTextStyle() - { - return $this->textStyle; - } - /** - * @param Google_Service_Docs_TextStyleSuggestionState - */ - public function setTextStyleSuggestionState(Google_Service_Docs_TextStyleSuggestionState $textStyleSuggestionState) - { - $this->textStyleSuggestionState = $textStyleSuggestionState; - } - /** - * @return Google_Service_Docs_TextStyleSuggestionState - */ - public function getTextStyleSuggestionState() - { - return $this->textStyleSuggestionState; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/TabStop.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/TabStop.php deleted file mode 100644 index 000ea8f5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/TabStop.php +++ /dev/null @@ -1,46 +0,0 @@ -alignment = $alignment; - } - public function getAlignment() - { - return $this->alignment; - } - /** - * @param Google_Service_Docs_Dimension - */ - public function setOffset(Google_Service_Docs_Dimension $offset) - { - $this->offset = $offset; - } - /** - * @return Google_Service_Docs_Dimension - */ - public function getOffset() - { - return $this->offset; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Table.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Table.php deleted file mode 100644 index d2f5ac3a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/Table.php +++ /dev/null @@ -1,90 +0,0 @@ -columns = $columns; - } - public function getColumns() - { - return $this->columns; - } - public function setRows($rows) - { - $this->rows = $rows; - } - public function getRows() - { - return $this->rows; - } - public function setSuggestedDeletionIds($suggestedDeletionIds) - { - $this->suggestedDeletionIds = $suggestedDeletionIds; - } - public function getSuggestedDeletionIds() - { - return $this->suggestedDeletionIds; - } - public function setSuggestedInsertionIds($suggestedInsertionIds) - { - $this->suggestedInsertionIds = $suggestedInsertionIds; - } - public function getSuggestedInsertionIds() - { - return $this->suggestedInsertionIds; - } - /** - * @param Google_Service_Docs_TableRow - */ - public function setTableRows($tableRows) - { - $this->tableRows = $tableRows; - } - /** - * @return Google_Service_Docs_TableRow - */ - public function getTableRows() - { - return $this->tableRows; - } - /** - * @param Google_Service_Docs_TableStyle - */ - public function setTableStyle(Google_Service_Docs_TableStyle $tableStyle) - { - $this->tableStyle = $tableStyle; - } - /** - * @return Google_Service_Docs_TableStyle - */ - public function getTableStyle() - { - return $this->tableStyle; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/TableCell.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/TableCell.php deleted file mode 100644 index 8b531b87..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/TableCell.php +++ /dev/null @@ -1,106 +0,0 @@ -content = $content; - } - /** - * @return Google_Service_Docs_StructuralElement - */ - public function getContent() - { - return $this->content; - } - public function setEndIndex($endIndex) - { - $this->endIndex = $endIndex; - } - public function getEndIndex() - { - return $this->endIndex; - } - public function setStartIndex($startIndex) - { - $this->startIndex = $startIndex; - } - public function getStartIndex() - { - return $this->startIndex; - } - public function setSuggestedDeletionIds($suggestedDeletionIds) - { - $this->suggestedDeletionIds = $suggestedDeletionIds; - } - public function getSuggestedDeletionIds() - { - return $this->suggestedDeletionIds; - } - public function setSuggestedInsertionIds($suggestedInsertionIds) - { - $this->suggestedInsertionIds = $suggestedInsertionIds; - } - public function getSuggestedInsertionIds() - { - return $this->suggestedInsertionIds; - } - /** - * @param Google_Service_Docs_SuggestedTableCellStyle - */ - public function setSuggestedTableCellStyleChanges($suggestedTableCellStyleChanges) - { - $this->suggestedTableCellStyleChanges = $suggestedTableCellStyleChanges; - } - /** - * @return Google_Service_Docs_SuggestedTableCellStyle - */ - public function getSuggestedTableCellStyleChanges() - { - return $this->suggestedTableCellStyleChanges; - } - /** - * @param Google_Service_Docs_TableCellStyle - */ - public function setTableCellStyle(Google_Service_Docs_TableCellStyle $tableCellStyle) - { - $this->tableCellStyle = $tableCellStyle; - } - /** - * @return Google_Service_Docs_TableCellStyle - */ - public function getTableCellStyle() - { - return $this->tableCellStyle; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/TableCellBorder.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/TableCellBorder.php deleted file mode 100644 index 45463f5d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/TableCellBorder.php +++ /dev/null @@ -1,62 +0,0 @@ -color = $color; - } - /** - * @return Google_Service_Docs_OptionalColor - */ - public function getColor() - { - return $this->color; - } - public function setDashStyle($dashStyle) - { - $this->dashStyle = $dashStyle; - } - public function getDashStyle() - { - return $this->dashStyle; - } - /** - * @param Google_Service_Docs_Dimension - */ - public function setWidth(Google_Service_Docs_Dimension $width) - { - $this->width = $width; - } - /** - * @return Google_Service_Docs_Dimension - */ - public function getWidth() - { - return $this->width; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/TableCellLocation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/TableCellLocation.php deleted file mode 100644 index bc9f3929..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/TableCellLocation.php +++ /dev/null @@ -1,55 +0,0 @@ -columnIndex = $columnIndex; - } - public function getColumnIndex() - { - return $this->columnIndex; - } - public function setRowIndex($rowIndex) - { - $this->rowIndex = $rowIndex; - } - public function getRowIndex() - { - return $this->rowIndex; - } - /** - * @param Google_Service_Docs_Location - */ - public function setTableStartLocation(Google_Service_Docs_Location $tableStartLocation) - { - $this->tableStartLocation = $tableStartLocation; - } - /** - * @return Google_Service_Docs_Location - */ - public function getTableStartLocation() - { - return $this->tableStartLocation; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/TableCellStyle.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/TableCellStyle.php deleted file mode 100644 index 46a2311b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/TableCellStyle.php +++ /dev/null @@ -1,192 +0,0 @@ -backgroundColor = $backgroundColor; - } - /** - * @return Google_Service_Docs_OptionalColor - */ - public function getBackgroundColor() - { - return $this->backgroundColor; - } - /** - * @param Google_Service_Docs_TableCellBorder - */ - public function setBorderBottom(Google_Service_Docs_TableCellBorder $borderBottom) - { - $this->borderBottom = $borderBottom; - } - /** - * @return Google_Service_Docs_TableCellBorder - */ - public function getBorderBottom() - { - return $this->borderBottom; - } - /** - * @param Google_Service_Docs_TableCellBorder - */ - public function setBorderLeft(Google_Service_Docs_TableCellBorder $borderLeft) - { - $this->borderLeft = $borderLeft; - } - /** - * @return Google_Service_Docs_TableCellBorder - */ - public function getBorderLeft() - { - return $this->borderLeft; - } - /** - * @param Google_Service_Docs_TableCellBorder - */ - public function setBorderRight(Google_Service_Docs_TableCellBorder $borderRight) - { - $this->borderRight = $borderRight; - } - /** - * @return Google_Service_Docs_TableCellBorder - */ - public function getBorderRight() - { - return $this->borderRight; - } - /** - * @param Google_Service_Docs_TableCellBorder - */ - public function setBorderTop(Google_Service_Docs_TableCellBorder $borderTop) - { - $this->borderTop = $borderTop; - } - /** - * @return Google_Service_Docs_TableCellBorder - */ - public function getBorderTop() - { - return $this->borderTop; - } - public function setColumnSpan($columnSpan) - { - $this->columnSpan = $columnSpan; - } - public function getColumnSpan() - { - return $this->columnSpan; - } - public function setContentAlignment($contentAlignment) - { - $this->contentAlignment = $contentAlignment; - } - public function getContentAlignment() - { - return $this->contentAlignment; - } - /** - * @param Google_Service_Docs_Dimension - */ - public function setPaddingBottom(Google_Service_Docs_Dimension $paddingBottom) - { - $this->paddingBottom = $paddingBottom; - } - /** - * @return Google_Service_Docs_Dimension - */ - public function getPaddingBottom() - { - return $this->paddingBottom; - } - /** - * @param Google_Service_Docs_Dimension - */ - public function setPaddingLeft(Google_Service_Docs_Dimension $paddingLeft) - { - $this->paddingLeft = $paddingLeft; - } - /** - * @return Google_Service_Docs_Dimension - */ - public function getPaddingLeft() - { - return $this->paddingLeft; - } - /** - * @param Google_Service_Docs_Dimension - */ - public function setPaddingRight(Google_Service_Docs_Dimension $paddingRight) - { - $this->paddingRight = $paddingRight; - } - /** - * @return Google_Service_Docs_Dimension - */ - public function getPaddingRight() - { - return $this->paddingRight; - } - /** - * @param Google_Service_Docs_Dimension - */ - public function setPaddingTop(Google_Service_Docs_Dimension $paddingTop) - { - $this->paddingTop = $paddingTop; - } - /** - * @return Google_Service_Docs_Dimension - */ - public function getPaddingTop() - { - return $this->paddingTop; - } - public function setRowSpan($rowSpan) - { - $this->rowSpan = $rowSpan; - } - public function getRowSpan() - { - return $this->rowSpan; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/TableCellStyleSuggestionState.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/TableCellStyleSuggestionState.php deleted file mode 100644 index fe0987b2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/TableCellStyleSuggestionState.php +++ /dev/null @@ -1,129 +0,0 @@ -backgroundColorSuggested = $backgroundColorSuggested; - } - public function getBackgroundColorSuggested() - { - return $this->backgroundColorSuggested; - } - public function setBorderBottomSuggested($borderBottomSuggested) - { - $this->borderBottomSuggested = $borderBottomSuggested; - } - public function getBorderBottomSuggested() - { - return $this->borderBottomSuggested; - } - public function setBorderLeftSuggested($borderLeftSuggested) - { - $this->borderLeftSuggested = $borderLeftSuggested; - } - public function getBorderLeftSuggested() - { - return $this->borderLeftSuggested; - } - public function setBorderRightSuggested($borderRightSuggested) - { - $this->borderRightSuggested = $borderRightSuggested; - } - public function getBorderRightSuggested() - { - return $this->borderRightSuggested; - } - public function setBorderTopSuggested($borderTopSuggested) - { - $this->borderTopSuggested = $borderTopSuggested; - } - public function getBorderTopSuggested() - { - return $this->borderTopSuggested; - } - public function setColumnSpanSuggested($columnSpanSuggested) - { - $this->columnSpanSuggested = $columnSpanSuggested; - } - public function getColumnSpanSuggested() - { - return $this->columnSpanSuggested; - } - public function setContentAlignmentSuggested($contentAlignmentSuggested) - { - $this->contentAlignmentSuggested = $contentAlignmentSuggested; - } - public function getContentAlignmentSuggested() - { - return $this->contentAlignmentSuggested; - } - public function setPaddingBottomSuggested($paddingBottomSuggested) - { - $this->paddingBottomSuggested = $paddingBottomSuggested; - } - public function getPaddingBottomSuggested() - { - return $this->paddingBottomSuggested; - } - public function setPaddingLeftSuggested($paddingLeftSuggested) - { - $this->paddingLeftSuggested = $paddingLeftSuggested; - } - public function getPaddingLeftSuggested() - { - return $this->paddingLeftSuggested; - } - public function setPaddingRightSuggested($paddingRightSuggested) - { - $this->paddingRightSuggested = $paddingRightSuggested; - } - public function getPaddingRightSuggested() - { - return $this->paddingRightSuggested; - } - public function setPaddingTopSuggested($paddingTopSuggested) - { - $this->paddingTopSuggested = $paddingTopSuggested; - } - public function getPaddingTopSuggested() - { - return $this->paddingTopSuggested; - } - public function setRowSpanSuggested($rowSpanSuggested) - { - $this->rowSpanSuggested = $rowSpanSuggested; - } - public function getRowSpanSuggested() - { - return $this->rowSpanSuggested; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/TableColumnProperties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/TableColumnProperties.php deleted file mode 100644 index 4dbcaaf8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/TableColumnProperties.php +++ /dev/null @@ -1,45 +0,0 @@ -width = $width; - } - /** - * @return Google_Service_Docs_Dimension - */ - public function getWidth() - { - return $this->width; - } - public function setWidthType($widthType) - { - $this->widthType = $widthType; - } - public function getWidthType() - { - return $this->widthType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/TableOfContents.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/TableOfContents.php deleted file mode 100644 index e42f5be4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/TableOfContents.php +++ /dev/null @@ -1,56 +0,0 @@ -content = $content; - } - /** - * @return Google_Service_Docs_StructuralElement - */ - public function getContent() - { - return $this->content; - } - public function setSuggestedDeletionIds($suggestedDeletionIds) - { - $this->suggestedDeletionIds = $suggestedDeletionIds; - } - public function getSuggestedDeletionIds() - { - return $this->suggestedDeletionIds; - } - public function setSuggestedInsertionIds($suggestedInsertionIds) - { - $this->suggestedInsertionIds = $suggestedInsertionIds; - } - public function getSuggestedInsertionIds() - { - return $this->suggestedInsertionIds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/TableRange.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/TableRange.php deleted file mode 100644 index b3de8fe2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/TableRange.php +++ /dev/null @@ -1,55 +0,0 @@ -columnSpan = $columnSpan; - } - public function getColumnSpan() - { - return $this->columnSpan; - } - public function setRowSpan($rowSpan) - { - $this->rowSpan = $rowSpan; - } - public function getRowSpan() - { - return $this->rowSpan; - } - /** - * @param Google_Service_Docs_TableCellLocation - */ - public function setTableCellLocation(Google_Service_Docs_TableCellLocation $tableCellLocation) - { - $this->tableCellLocation = $tableCellLocation; - } - /** - * @return Google_Service_Docs_TableCellLocation - */ - public function getTableCellLocation() - { - return $this->tableCellLocation; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/TableRow.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/TableRow.php deleted file mode 100644 index 6b545179..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/TableRow.php +++ /dev/null @@ -1,106 +0,0 @@ -endIndex = $endIndex; - } - public function getEndIndex() - { - return $this->endIndex; - } - public function setStartIndex($startIndex) - { - $this->startIndex = $startIndex; - } - public function getStartIndex() - { - return $this->startIndex; - } - public function setSuggestedDeletionIds($suggestedDeletionIds) - { - $this->suggestedDeletionIds = $suggestedDeletionIds; - } - public function getSuggestedDeletionIds() - { - return $this->suggestedDeletionIds; - } - public function setSuggestedInsertionIds($suggestedInsertionIds) - { - $this->suggestedInsertionIds = $suggestedInsertionIds; - } - public function getSuggestedInsertionIds() - { - return $this->suggestedInsertionIds; - } - /** - * @param Google_Service_Docs_SuggestedTableRowStyle - */ - public function setSuggestedTableRowStyleChanges($suggestedTableRowStyleChanges) - { - $this->suggestedTableRowStyleChanges = $suggestedTableRowStyleChanges; - } - /** - * @return Google_Service_Docs_SuggestedTableRowStyle - */ - public function getSuggestedTableRowStyleChanges() - { - return $this->suggestedTableRowStyleChanges; - } - /** - * @param Google_Service_Docs_TableCell - */ - public function setTableCells($tableCells) - { - $this->tableCells = $tableCells; - } - /** - * @return Google_Service_Docs_TableCell - */ - public function getTableCells() - { - return $this->tableCells; - } - /** - * @param Google_Service_Docs_TableRowStyle - */ - public function setTableRowStyle(Google_Service_Docs_TableRowStyle $tableRowStyle) - { - $this->tableRowStyle = $tableRowStyle; - } - /** - * @return Google_Service_Docs_TableRowStyle - */ - public function getTableRowStyle() - { - return $this->tableRowStyle; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/TableRowStyle.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/TableRowStyle.php deleted file mode 100644 index 444711e8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/TableRowStyle.php +++ /dev/null @@ -1,37 +0,0 @@ -minRowHeight = $minRowHeight; - } - /** - * @return Google_Service_Docs_Dimension - */ - public function getMinRowHeight() - { - return $this->minRowHeight; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/TableRowStyleSuggestionState.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/TableRowStyleSuggestionState.php deleted file mode 100644 index c00f7494..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/TableRowStyleSuggestionState.php +++ /dev/null @@ -1,30 +0,0 @@ -minRowHeightSuggested = $minRowHeightSuggested; - } - public function getMinRowHeightSuggested() - { - return $this->minRowHeightSuggested; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/TableStyle.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/TableStyle.php deleted file mode 100644 index 922dd71d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/TableStyle.php +++ /dev/null @@ -1,38 +0,0 @@ -tableColumnProperties = $tableColumnProperties; - } - /** - * @return Google_Service_Docs_TableColumnProperties - */ - public function getTableColumnProperties() - { - return $this->tableColumnProperties; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/TextRun.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/TextRun.php deleted file mode 100644 index 8e632b67..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/TextRun.php +++ /dev/null @@ -1,81 +0,0 @@ -content = $content; - } - public function getContent() - { - return $this->content; - } - public function setSuggestedDeletionIds($suggestedDeletionIds) - { - $this->suggestedDeletionIds = $suggestedDeletionIds; - } - public function getSuggestedDeletionIds() - { - return $this->suggestedDeletionIds; - } - public function setSuggestedInsertionIds($suggestedInsertionIds) - { - $this->suggestedInsertionIds = $suggestedInsertionIds; - } - public function getSuggestedInsertionIds() - { - return $this->suggestedInsertionIds; - } - /** - * @param Google_Service_Docs_SuggestedTextStyle - */ - public function setSuggestedTextStyleChanges($suggestedTextStyleChanges) - { - $this->suggestedTextStyleChanges = $suggestedTextStyleChanges; - } - /** - * @return Google_Service_Docs_SuggestedTextStyle - */ - public function getSuggestedTextStyleChanges() - { - return $this->suggestedTextStyleChanges; - } - /** - * @param Google_Service_Docs_TextStyle - */ - public function setTextStyle(Google_Service_Docs_TextStyle $textStyle) - { - $this->textStyle = $textStyle; - } - /** - * @return Google_Service_Docs_TextStyle - */ - public function getTextStyle() - { - return $this->textStyle; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/TextStyle.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/TextStyle.php deleted file mode 100644 index 939d9e71..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/TextStyle.php +++ /dev/null @@ -1,155 +0,0 @@ -backgroundColor = $backgroundColor; - } - /** - * @return Google_Service_Docs_OptionalColor - */ - public function getBackgroundColor() - { - return $this->backgroundColor; - } - public function setBaselineOffset($baselineOffset) - { - $this->baselineOffset = $baselineOffset; - } - public function getBaselineOffset() - { - return $this->baselineOffset; - } - public function setBold($bold) - { - $this->bold = $bold; - } - public function getBold() - { - return $this->bold; - } - /** - * @param Google_Service_Docs_Dimension - */ - public function setFontSize(Google_Service_Docs_Dimension $fontSize) - { - $this->fontSize = $fontSize; - } - /** - * @return Google_Service_Docs_Dimension - */ - public function getFontSize() - { - return $this->fontSize; - } - /** - * @param Google_Service_Docs_OptionalColor - */ - public function setForegroundColor(Google_Service_Docs_OptionalColor $foregroundColor) - { - $this->foregroundColor = $foregroundColor; - } - /** - * @return Google_Service_Docs_OptionalColor - */ - public function getForegroundColor() - { - return $this->foregroundColor; - } - public function setItalic($italic) - { - $this->italic = $italic; - } - public function getItalic() - { - return $this->italic; - } - /** - * @param Google_Service_Docs_Link - */ - public function setLink(Google_Service_Docs_Link $link) - { - $this->link = $link; - } - /** - * @return Google_Service_Docs_Link - */ - public function getLink() - { - return $this->link; - } - public function setSmallCaps($smallCaps) - { - $this->smallCaps = $smallCaps; - } - public function getSmallCaps() - { - return $this->smallCaps; - } - public function setStrikethrough($strikethrough) - { - $this->strikethrough = $strikethrough; - } - public function getStrikethrough() - { - return $this->strikethrough; - } - public function setUnderline($underline) - { - $this->underline = $underline; - } - public function getUnderline() - { - return $this->underline; - } - /** - * @param Google_Service_Docs_WeightedFontFamily - */ - public function setWeightedFontFamily(Google_Service_Docs_WeightedFontFamily $weightedFontFamily) - { - $this->weightedFontFamily = $weightedFontFamily; - } - /** - * @return Google_Service_Docs_WeightedFontFamily - */ - public function getWeightedFontFamily() - { - return $this->weightedFontFamily; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/TextStyleSuggestionState.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/TextStyleSuggestionState.php deleted file mode 100644 index d871d1cd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/TextStyleSuggestionState.php +++ /dev/null @@ -1,120 +0,0 @@ -backgroundColorSuggested = $backgroundColorSuggested; - } - public function getBackgroundColorSuggested() - { - return $this->backgroundColorSuggested; - } - public function setBaselineOffsetSuggested($baselineOffsetSuggested) - { - $this->baselineOffsetSuggested = $baselineOffsetSuggested; - } - public function getBaselineOffsetSuggested() - { - return $this->baselineOffsetSuggested; - } - public function setBoldSuggested($boldSuggested) - { - $this->boldSuggested = $boldSuggested; - } - public function getBoldSuggested() - { - return $this->boldSuggested; - } - public function setFontSizeSuggested($fontSizeSuggested) - { - $this->fontSizeSuggested = $fontSizeSuggested; - } - public function getFontSizeSuggested() - { - return $this->fontSizeSuggested; - } - public function setForegroundColorSuggested($foregroundColorSuggested) - { - $this->foregroundColorSuggested = $foregroundColorSuggested; - } - public function getForegroundColorSuggested() - { - return $this->foregroundColorSuggested; - } - public function setItalicSuggested($italicSuggested) - { - $this->italicSuggested = $italicSuggested; - } - public function getItalicSuggested() - { - return $this->italicSuggested; - } - public function setLinkSuggested($linkSuggested) - { - $this->linkSuggested = $linkSuggested; - } - public function getLinkSuggested() - { - return $this->linkSuggested; - } - public function setSmallCapsSuggested($smallCapsSuggested) - { - $this->smallCapsSuggested = $smallCapsSuggested; - } - public function getSmallCapsSuggested() - { - return $this->smallCapsSuggested; - } - public function setStrikethroughSuggested($strikethroughSuggested) - { - $this->strikethroughSuggested = $strikethroughSuggested; - } - public function getStrikethroughSuggested() - { - return $this->strikethroughSuggested; - } - public function setUnderlineSuggested($underlineSuggested) - { - $this->underlineSuggested = $underlineSuggested; - } - public function getUnderlineSuggested() - { - return $this->underlineSuggested; - } - public function setWeightedFontFamilySuggested($weightedFontFamilySuggested) - { - $this->weightedFontFamilySuggested = $weightedFontFamilySuggested; - } - public function getWeightedFontFamilySuggested() - { - return $this->weightedFontFamilySuggested; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/UnmergeTableCellsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/UnmergeTableCellsRequest.php deleted file mode 100644 index 00abeae4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/UnmergeTableCellsRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -tableRange = $tableRange; - } - /** - * @return Google_Service_Docs_TableRange - */ - public function getTableRange() - { - return $this->tableRange; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/UpdateDocumentStyleRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/UpdateDocumentStyleRequest.php deleted file mode 100644 index a1f32681..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/UpdateDocumentStyleRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -documentStyle = $documentStyle; - } - /** - * @return Google_Service_Docs_DocumentStyle - */ - public function getDocumentStyle() - { - return $this->documentStyle; - } - public function setFields($fields) - { - $this->fields = $fields; - } - public function getFields() - { - return $this->fields; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/UpdateParagraphStyleRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/UpdateParagraphStyleRequest.php deleted file mode 100644 index 12124fc0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/UpdateParagraphStyleRequest.php +++ /dev/null @@ -1,62 +0,0 @@ -fields = $fields; - } - public function getFields() - { - return $this->fields; - } - /** - * @param Google_Service_Docs_ParagraphStyle - */ - public function setParagraphStyle(Google_Service_Docs_ParagraphStyle $paragraphStyle) - { - $this->paragraphStyle = $paragraphStyle; - } - /** - * @return Google_Service_Docs_ParagraphStyle - */ - public function getParagraphStyle() - { - return $this->paragraphStyle; - } - /** - * @param Google_Service_Docs_Range - */ - public function setRange(Google_Service_Docs_Range $range) - { - $this->range = $range; - } - /** - * @return Google_Service_Docs_Range - */ - public function getRange() - { - return $this->range; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/UpdateSectionStyleRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/UpdateSectionStyleRequest.php deleted file mode 100644 index 715e9666..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/UpdateSectionStyleRequest.php +++ /dev/null @@ -1,62 +0,0 @@ -fields = $fields; - } - public function getFields() - { - return $this->fields; - } - /** - * @param Google_Service_Docs_Range - */ - public function setRange(Google_Service_Docs_Range $range) - { - $this->range = $range; - } - /** - * @return Google_Service_Docs_Range - */ - public function getRange() - { - return $this->range; - } - /** - * @param Google_Service_Docs_SectionStyle - */ - public function setSectionStyle(Google_Service_Docs_SectionStyle $sectionStyle) - { - $this->sectionStyle = $sectionStyle; - } - /** - * @return Google_Service_Docs_SectionStyle - */ - public function getSectionStyle() - { - return $this->sectionStyle; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/UpdateTableCellStyleRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/UpdateTableCellStyleRequest.php deleted file mode 100644 index 6d606783..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/UpdateTableCellStyleRequest.php +++ /dev/null @@ -1,78 +0,0 @@ -fields = $fields; - } - public function getFields() - { - return $this->fields; - } - /** - * @param Google_Service_Docs_TableCellStyle - */ - public function setTableCellStyle(Google_Service_Docs_TableCellStyle $tableCellStyle) - { - $this->tableCellStyle = $tableCellStyle; - } - /** - * @return Google_Service_Docs_TableCellStyle - */ - public function getTableCellStyle() - { - return $this->tableCellStyle; - } - /** - * @param Google_Service_Docs_TableRange - */ - public function setTableRange(Google_Service_Docs_TableRange $tableRange) - { - $this->tableRange = $tableRange; - } - /** - * @return Google_Service_Docs_TableRange - */ - public function getTableRange() - { - return $this->tableRange; - } - /** - * @param Google_Service_Docs_Location - */ - public function setTableStartLocation(Google_Service_Docs_Location $tableStartLocation) - { - $this->tableStartLocation = $tableStartLocation; - } - /** - * @return Google_Service_Docs_Location - */ - public function getTableStartLocation() - { - return $this->tableStartLocation; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/UpdateTableColumnPropertiesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/UpdateTableColumnPropertiesRequest.php deleted file mode 100644 index fc6bf87b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/UpdateTableColumnPropertiesRequest.php +++ /dev/null @@ -1,72 +0,0 @@ -columnIndices = $columnIndices; - } - public function getColumnIndices() - { - return $this->columnIndices; - } - public function setFields($fields) - { - $this->fields = $fields; - } - public function getFields() - { - return $this->fields; - } - /** - * @param Google_Service_Docs_TableColumnProperties - */ - public function setTableColumnProperties(Google_Service_Docs_TableColumnProperties $tableColumnProperties) - { - $this->tableColumnProperties = $tableColumnProperties; - } - /** - * @return Google_Service_Docs_TableColumnProperties - */ - public function getTableColumnProperties() - { - return $this->tableColumnProperties; - } - /** - * @param Google_Service_Docs_Location - */ - public function setTableStartLocation(Google_Service_Docs_Location $tableStartLocation) - { - $this->tableStartLocation = $tableStartLocation; - } - /** - * @return Google_Service_Docs_Location - */ - public function getTableStartLocation() - { - return $this->tableStartLocation; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/UpdateTableRowStyleRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/UpdateTableRowStyleRequest.php deleted file mode 100644 index 79df9e9d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/UpdateTableRowStyleRequest.php +++ /dev/null @@ -1,72 +0,0 @@ -fields = $fields; - } - public function getFields() - { - return $this->fields; - } - public function setRowIndices($rowIndices) - { - $this->rowIndices = $rowIndices; - } - public function getRowIndices() - { - return $this->rowIndices; - } - /** - * @param Google_Service_Docs_TableRowStyle - */ - public function setTableRowStyle(Google_Service_Docs_TableRowStyle $tableRowStyle) - { - $this->tableRowStyle = $tableRowStyle; - } - /** - * @return Google_Service_Docs_TableRowStyle - */ - public function getTableRowStyle() - { - return $this->tableRowStyle; - } - /** - * @param Google_Service_Docs_Location - */ - public function setTableStartLocation(Google_Service_Docs_Location $tableStartLocation) - { - $this->tableStartLocation = $tableStartLocation; - } - /** - * @return Google_Service_Docs_Location - */ - public function getTableStartLocation() - { - return $this->tableStartLocation; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/UpdateTextStyleRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/UpdateTextStyleRequest.php deleted file mode 100644 index dd0ec673..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/UpdateTextStyleRequest.php +++ /dev/null @@ -1,62 +0,0 @@ -fields = $fields; - } - public function getFields() - { - return $this->fields; - } - /** - * @param Google_Service_Docs_Range - */ - public function setRange(Google_Service_Docs_Range $range) - { - $this->range = $range; - } - /** - * @return Google_Service_Docs_Range - */ - public function getRange() - { - return $this->range; - } - /** - * @param Google_Service_Docs_TextStyle - */ - public function setTextStyle(Google_Service_Docs_TextStyle $textStyle) - { - $this->textStyle = $textStyle; - } - /** - * @return Google_Service_Docs_TextStyle - */ - public function getTextStyle() - { - return $this->textStyle; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/WeightedFontFamily.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/WeightedFontFamily.php deleted file mode 100644 index f53488df..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/WeightedFontFamily.php +++ /dev/null @@ -1,39 +0,0 @@ -fontFamily = $fontFamily; - } - public function getFontFamily() - { - return $this->fontFamily; - } - public function setWeight($weight) - { - $this->weight = $weight; - } - public function getWeight() - { - return $this->weight; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/WriteControl.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/WriteControl.php deleted file mode 100644 index 7303dd14..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Docs/WriteControl.php +++ /dev/null @@ -1,39 +0,0 @@ -requiredRevisionId = $requiredRevisionId; - } - public function getRequiredRevisionId() - { - return $this->requiredRevisionId; - } - public function setTargetRevisionId($targetRevisionId) - { - $this->targetRevisionId = $targetRevisionId; - } - public function getTargetRevisionId() - { - return $this->targetRevisionId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DomainsRDAP.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DomainsRDAP.php deleted file mode 100644 index bb81b79d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DomainsRDAP.php +++ /dev/null @@ -1,194 +0,0 @@ - - * Read-only public API that lets users search for information about domain - * names.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_DomainsRDAP extends Google_Service -{ - - - public $autnum; - public $domain; - public $entity; - public $ip; - public $nameserver; - public $v1; - - /** - * Constructs the internal representation of the DomainsRDAP service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://domainsrdap.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'domainsrdap'; - - $this->autnum = new Google_Service_DomainsRDAP_Resource_Autnum( - $this, - $this->serviceName, - 'autnum', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/autnum/{autnumId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'autnumId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->domain = new Google_Service_DomainsRDAP_Resource_Domain( - $this, - $this->serviceName, - 'domain', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/domain/{+domainName}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'domainName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->entity = new Google_Service_DomainsRDAP_Resource_Entity( - $this, - $this->serviceName, - 'entity', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/entity/{entityId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'entityId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->ip = new Google_Service_DomainsRDAP_Resource_Ip( - $this, - $this->serviceName, - 'ip', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/ip/{ipId}/{ipId1}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'ipId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'ipId1' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->nameserver = new Google_Service_DomainsRDAP_Resource_Nameserver( - $this, - $this->serviceName, - 'nameserver', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/nameserver/{nameserverId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'nameserverId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->v1 = new Google_Service_DomainsRDAP_Resource_V1( - $this, - $this->serviceName, - 'v1', - array( - 'methods' => array( - 'getDomains' => array( - 'path' => 'v1/domains', - 'httpMethod' => 'GET', - 'parameters' => array(), - ),'getEntities' => array( - 'path' => 'v1/entities', - 'httpMethod' => 'GET', - 'parameters' => array(), - ),'getHelp' => array( - 'path' => 'v1/help', - 'httpMethod' => 'GET', - 'parameters' => array(), - ),'getIp' => array( - 'path' => 'v1/ip', - 'httpMethod' => 'GET', - 'parameters' => array(), - ),'getNameservers' => array( - 'path' => 'v1/nameservers', - 'httpMethod' => 'GET', - 'parameters' => array(), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DomainsRDAP/HttpBody.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DomainsRDAP/HttpBody.php deleted file mode 100644 index 17766839..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DomainsRDAP/HttpBody.php +++ /dev/null @@ -1,49 +0,0 @@ -contentType = $contentType; - } - public function getContentType() - { - return $this->contentType; - } - public function setData($data) - { - $this->data = $data; - } - public function getData() - { - return $this->data; - } - public function setExtensions($extensions) - { - $this->extensions = $extensions; - } - public function getExtensions() - { - return $this->extensions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DomainsRDAP/Link.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DomainsRDAP/Link.php deleted file mode 100644 index 571bed95..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DomainsRDAP/Link.php +++ /dev/null @@ -1,84 +0,0 @@ -href = $href; - } - public function getHref() - { - return $this->href; - } - public function setHreflang($hreflang) - { - $this->hreflang = $hreflang; - } - public function getHreflang() - { - return $this->hreflang; - } - public function setMedia($media) - { - $this->media = $media; - } - public function getMedia() - { - return $this->media; - } - public function setRel($rel) - { - $this->rel = $rel; - } - public function getRel() - { - return $this->rel; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DomainsRDAP/Notice.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DomainsRDAP/Notice.php deleted file mode 100644 index 1bc60a00..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DomainsRDAP/Notice.php +++ /dev/null @@ -1,65 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - /** - * @param Google_Service_DomainsRDAP_Link - */ - public function setLinks($links) - { - $this->links = $links; - } - /** - * @return Google_Service_DomainsRDAP_Link - */ - public function getLinks() - { - return $this->links; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DomainsRDAP/RdapResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DomainsRDAP/RdapResponse.php deleted file mode 100644 index 93ea8d24..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DomainsRDAP/RdapResponse.php +++ /dev/null @@ -1,99 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setErrorCode($errorCode) - { - $this->errorCode = $errorCode; - } - public function getErrorCode() - { - return $this->errorCode; - } - /** - * @param Google_Service_DomainsRDAP_HttpBody - */ - public function setJsonResponse(Google_Service_DomainsRDAP_HttpBody $jsonResponse) - { - $this->jsonResponse = $jsonResponse; - } - /** - * @return Google_Service_DomainsRDAP_HttpBody - */ - public function getJsonResponse() - { - return $this->jsonResponse; - } - public function setLang($lang) - { - $this->lang = $lang; - } - public function getLang() - { - return $this->lang; - } - /** - * @param Google_Service_DomainsRDAP_Notice - */ - public function setNotices($notices) - { - $this->notices = $notices; - } - /** - * @return Google_Service_DomainsRDAP_Notice - */ - public function getNotices() - { - return $this->notices; - } - public function setRdapConformance($rdapConformance) - { - $this->rdapConformance = $rdapConformance; - } - public function getRdapConformance() - { - return $this->rdapConformance; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DomainsRDAP/Resource/Autnum.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DomainsRDAP/Resource/Autnum.php deleted file mode 100644 index 40c11b58..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DomainsRDAP/Resource/Autnum.php +++ /dev/null @@ -1,42 +0,0 @@ - - * $domainsrdapService = new Google_Service_DomainsRDAP(...); - * $autnum = $domainsrdapService->autnum; - * - */ -class Google_Service_DomainsRDAP_Resource_Autnum extends Google_Service_Resource -{ - /** - * The RDAP API recognizes this command from the RDAP specification but does not - * support it. The response is a formatted 501 error. (autnum.get) - * - * @param string $autnumId - * @param array $optParams Optional parameters. - * @return Google_Service_DomainsRDAP_RdapResponse - */ - public function get($autnumId, $optParams = array()) - { - $params = array('autnumId' => $autnumId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_DomainsRDAP_RdapResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DomainsRDAP/Resource/Domain.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DomainsRDAP/Resource/Domain.php deleted file mode 100644 index 051ebba3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DomainsRDAP/Resource/Domain.php +++ /dev/null @@ -1,41 +0,0 @@ - - * $domainsrdapService = new Google_Service_DomainsRDAP(...); - * $domain = $domainsrdapService->domain; - * - */ -class Google_Service_DomainsRDAP_Resource_Domain extends Google_Service_Resource -{ - /** - * Look up RDAP information for a domain by name. (domain.get) - * - * @param string $domainName Full domain name to look up. Example: "example.com" - * @param array $optParams Optional parameters. - * @return Google_Service_DomainsRDAP_HttpBody - */ - public function get($domainName, $optParams = array()) - { - $params = array('domainName' => $domainName); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_DomainsRDAP_HttpBody"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DomainsRDAP/Resource/Entity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DomainsRDAP/Resource/Entity.php deleted file mode 100644 index 49038f6c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DomainsRDAP/Resource/Entity.php +++ /dev/null @@ -1,42 +0,0 @@ - - * $domainsrdapService = new Google_Service_DomainsRDAP(...); - * $entity = $domainsrdapService->entity; - * - */ -class Google_Service_DomainsRDAP_Resource_Entity extends Google_Service_Resource -{ - /** - * The RDAP API recognizes this command from the RDAP specification but does not - * support it. The response is a formatted 501 error. (entity.get) - * - * @param string $entityId - * @param array $optParams Optional parameters. - * @return Google_Service_DomainsRDAP_RdapResponse - */ - public function get($entityId, $optParams = array()) - { - $params = array('entityId' => $entityId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_DomainsRDAP_RdapResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DomainsRDAP/Resource/Ip.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DomainsRDAP/Resource/Ip.php deleted file mode 100644 index b9dc39f6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DomainsRDAP/Resource/Ip.php +++ /dev/null @@ -1,43 +0,0 @@ - - * $domainsrdapService = new Google_Service_DomainsRDAP(...); - * $ip = $domainsrdapService->ip; - * - */ -class Google_Service_DomainsRDAP_Resource_Ip extends Google_Service_Resource -{ - /** - * The RDAP API recognizes this command from the RDAP specification but does not - * support it. The response is a formatted 501 error. (ip.get) - * - * @param string $ipId - * @param string $ipId1 - * @param array $optParams Optional parameters. - * @return Google_Service_DomainsRDAP_RdapResponse - */ - public function get($ipId, $ipId1, $optParams = array()) - { - $params = array('ipId' => $ipId, 'ipId1' => $ipId1); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_DomainsRDAP_RdapResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DomainsRDAP/Resource/Nameserver.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DomainsRDAP/Resource/Nameserver.php deleted file mode 100644 index 0efebac8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DomainsRDAP/Resource/Nameserver.php +++ /dev/null @@ -1,42 +0,0 @@ - - * $domainsrdapService = new Google_Service_DomainsRDAP(...); - * $nameserver = $domainsrdapService->nameserver; - * - */ -class Google_Service_DomainsRDAP_Resource_Nameserver extends Google_Service_Resource -{ - /** - * The RDAP API recognizes this command from the RDAP specification but does not - * support it. The response is a formatted 501 error. (nameserver.get) - * - * @param string $nameserverId - * @param array $optParams Optional parameters. - * @return Google_Service_DomainsRDAP_RdapResponse - */ - public function get($nameserverId, $optParams = array()) - { - $params = array('nameserverId' => $nameserverId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_DomainsRDAP_RdapResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DomainsRDAP/Resource/V1.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DomainsRDAP/Resource/V1.php deleted file mode 100644 index ded273c0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DomainsRDAP/Resource/V1.php +++ /dev/null @@ -1,93 +0,0 @@ - - * $domainsrdapService = new Google_Service_DomainsRDAP(...); - * $v1 = $domainsrdapService->v1; - * - */ -class Google_Service_DomainsRDAP_Resource_V1 extends Google_Service_Resource -{ - /** - * The RDAP API recognizes this command from the RDAP specification but does not - * support it. The response is a formatted 501 error. (v1.getDomains) - * - * @param array $optParams Optional parameters. - * @return Google_Service_DomainsRDAP_RdapResponse - */ - public function getDomains($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('getDomains', array($params), "Google_Service_DomainsRDAP_RdapResponse"); - } - /** - * The RDAP API recognizes this command from the RDAP specification but does not - * support it. The response is a formatted 501 error. (v1.getEntities) - * - * @param array $optParams Optional parameters. - * @return Google_Service_DomainsRDAP_RdapResponse - */ - public function getEntities($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('getEntities', array($params), "Google_Service_DomainsRDAP_RdapResponse"); - } - /** - * Get help information for the RDAP API, including links to documentation. - * (v1.getHelp) - * - * @param array $optParams Optional parameters. - * @return Google_Service_DomainsRDAP_HttpBody - */ - public function getHelp($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('getHelp', array($params), "Google_Service_DomainsRDAP_HttpBody"); - } - /** - * The RDAP API recognizes this command from the RDAP specification but does not - * support it. The response is a formatted 501 error. (v1.getIp) - * - * @param array $optParams Optional parameters. - * @return Google_Service_DomainsRDAP_HttpBody - */ - public function getIp($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('getIp', array($params), "Google_Service_DomainsRDAP_HttpBody"); - } - /** - * The RDAP API recognizes this command from the RDAP specification but does not - * support it. The response is a formatted 501 error. (v1.getNameservers) - * - * @param array $optParams Optional parameters. - * @return Google_Service_DomainsRDAP_RdapResponse - */ - public function getNameservers($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('getNameservers', array($params), "Google_Service_DomainsRDAP_RdapResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager.php deleted file mode 100644 index 5ccc3eb4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager.php +++ /dev/null @@ -1,176 +0,0 @@ - - * API for viewing and managing your reports in DoubleClick Bid Manager.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_DoubleClickBidManager extends Google_Service -{ - /** View and manage your reports in DoubleClick Bid Manager. */ - const DOUBLECLICKBIDMANAGER = - "https://www.googleapis.com/auth/doubleclickbidmanager"; - - public $lineitems; - public $queries; - public $reports; - public $sdf; - - /** - * Constructs the internal representation of the DoubleClickBidManager - * service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://www.googleapis.com/'; - $this->servicePath = 'doubleclickbidmanager/v1.1/'; - $this->batchPath = 'batch/doubleclickbidmanager/v1.1'; - $this->version = 'v1.1'; - $this->serviceName = 'doubleclickbidmanager'; - - $this->lineitems = new Google_Service_DoubleClickBidManager_Resource_Lineitems( - $this, - $this->serviceName, - 'lineitems', - array( - 'methods' => array( - 'downloadlineitems' => array( - 'path' => 'lineitems/downloadlineitems', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'uploadlineitems' => array( - 'path' => 'lineitems/uploadlineitems', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->queries = new Google_Service_DoubleClickBidManager_Resource_Queries( - $this, - $this->serviceName, - 'queries', - array( - 'methods' => array( - 'createquery' => array( - 'path' => 'query', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'deletequery' => array( - 'path' => 'query/{queryId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'queryId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getquery' => array( - 'path' => 'query/{queryId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'queryId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'listqueries' => array( - 'path' => 'queries', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'runquery' => array( - 'path' => 'query/{queryId}', - 'httpMethod' => 'POST', - 'parameters' => array( - 'queryId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->reports = new Google_Service_DoubleClickBidManager_Resource_Reports( - $this, - $this->serviceName, - 'reports', - array( - 'methods' => array( - 'listreports' => array( - 'path' => 'queries/{queryId}/reports', - 'httpMethod' => 'GET', - 'parameters' => array( - 'queryId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->sdf = new Google_Service_DoubleClickBidManager_Resource_Sdf( - $this, - $this->serviceName, - 'sdf', - array( - 'methods' => array( - 'download' => array( - 'path' => 'sdf/download', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/DownloadLineItemsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/DownloadLineItemsRequest.php deleted file mode 100644 index d507ae71..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/DownloadLineItemsRequest.php +++ /dev/null @@ -1,58 +0,0 @@ -fileSpec = $fileSpec; - } - public function getFileSpec() - { - return $this->fileSpec; - } - public function setFilterIds($filterIds) - { - $this->filterIds = $filterIds; - } - public function getFilterIds() - { - return $this->filterIds; - } - public function setFilterType($filterType) - { - $this->filterType = $filterType; - } - public function getFilterType() - { - return $this->filterType; - } - public function setFormat($format) - { - $this->format = $format; - } - public function getFormat() - { - return $this->format; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/DownloadLineItemsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/DownloadLineItemsResponse.php deleted file mode 100644 index f50853b2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/DownloadLineItemsResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -lineItems = $lineItems; - } - public function getLineItems() - { - return $this->lineItems; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/DownloadRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/DownloadRequest.php deleted file mode 100644 index 5ff69681..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/DownloadRequest.php +++ /dev/null @@ -1,58 +0,0 @@ -fileTypes = $fileTypes; - } - public function getFileTypes() - { - return $this->fileTypes; - } - public function setFilterIds($filterIds) - { - $this->filterIds = $filterIds; - } - public function getFilterIds() - { - return $this->filterIds; - } - public function setFilterType($filterType) - { - $this->filterType = $filterType; - } - public function getFilterType() - { - return $this->filterType; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/DownloadResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/DownloadResponse.php deleted file mode 100644 index 1979baaf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/DownloadResponse.php +++ /dev/null @@ -1,75 +0,0 @@ -adGroups = $adGroups; - } - public function getAdGroups() - { - return $this->adGroups; - } - public function setAds($ads) - { - $this->ads = $ads; - } - public function getAds() - { - return $this->ads; - } - public function setCampaigns($campaigns) - { - $this->campaigns = $campaigns; - } - public function getCampaigns() - { - return $this->campaigns; - } - public function setInsertionOrders($insertionOrders) - { - $this->insertionOrders = $insertionOrders; - } - public function getInsertionOrders() - { - return $this->insertionOrders; - } - public function setInventorySources($inventorySources) - { - $this->inventorySources = $inventorySources; - } - public function getInventorySources() - { - return $this->inventorySources; - } - public function setLineItems($lineItems) - { - $this->lineItems = $lineItems; - } - public function getLineItems() - { - return $this->lineItems; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/FilterPair.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/FilterPair.php deleted file mode 100644 index 08e07883..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/FilterPair.php +++ /dev/null @@ -1,39 +0,0 @@ -type = $type; - } - public function getType() - { - return $this->type; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/ListQueriesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/ListQueriesResponse.php deleted file mode 100644 index af789640..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/ListQueriesResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_DoubleClickBidManager_Query - */ - public function setQueries($queries) - { - $this->queries = $queries; - } - /** - * @return Google_Service_DoubleClickBidManager_Query - */ - public function getQueries() - { - return $this->queries; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/ListReportsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/ListReportsResponse.php deleted file mode 100644 index 797b0e94..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/ListReportsResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_DoubleClickBidManager_Report - */ - public function setReports($reports) - { - $this->reports = $reports; - } - /** - * @return Google_Service_DoubleClickBidManager_Report - */ - public function getReports() - { - return $this->reports; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/Options.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/Options.php deleted file mode 100644 index 4d938041..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/Options.php +++ /dev/null @@ -1,30 +0,0 @@ -includeOnlyTargetedUserLists = $includeOnlyTargetedUserLists; - } - public function getIncludeOnlyTargetedUserLists() - { - return $this->includeOnlyTargetedUserLists; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/Parameters.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/Parameters.php deleted file mode 100644 index 401c9b1a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/Parameters.php +++ /dev/null @@ -1,90 +0,0 @@ -filters = $filters; - } - /** - * @return Google_Service_DoubleClickBidManager_FilterPair - */ - public function getFilters() - { - return $this->filters; - } - public function setGroupBys($groupBys) - { - $this->groupBys = $groupBys; - } - public function getGroupBys() - { - return $this->groupBys; - } - public function setIncludeInviteData($includeInviteData) - { - $this->includeInviteData = $includeInviteData; - } - public function getIncludeInviteData() - { - return $this->includeInviteData; - } - public function setMetrics($metrics) - { - $this->metrics = $metrics; - } - public function getMetrics() - { - return $this->metrics; - } - /** - * @param Google_Service_DoubleClickBidManager_Options - */ - public function setOptions(Google_Service_DoubleClickBidManager_Options $options) - { - $this->options = $options; - } - /** - * @return Google_Service_DoubleClickBidManager_Options - */ - public function getOptions() - { - return $this->options; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/Query.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/Query.php deleted file mode 100644 index b8becaa4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/Query.php +++ /dev/null @@ -1,114 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_DoubleClickBidManager_QueryMetadata - */ - public function setMetadata(Google_Service_DoubleClickBidManager_QueryMetadata $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_DoubleClickBidManager_QueryMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - /** - * @param Google_Service_DoubleClickBidManager_Parameters - */ - public function setParams(Google_Service_DoubleClickBidManager_Parameters $params) - { - $this->params = $params; - } - /** - * @return Google_Service_DoubleClickBidManager_Parameters - */ - public function getParams() - { - return $this->params; - } - public function setQueryId($queryId) - { - $this->queryId = $queryId; - } - public function getQueryId() - { - return $this->queryId; - } - public function setReportDataEndTimeMs($reportDataEndTimeMs) - { - $this->reportDataEndTimeMs = $reportDataEndTimeMs; - } - public function getReportDataEndTimeMs() - { - return $this->reportDataEndTimeMs; - } - public function setReportDataStartTimeMs($reportDataStartTimeMs) - { - $this->reportDataStartTimeMs = $reportDataStartTimeMs; - } - public function getReportDataStartTimeMs() - { - return $this->reportDataStartTimeMs; - } - /** - * @param Google_Service_DoubleClickBidManager_QuerySchedule - */ - public function setSchedule(Google_Service_DoubleClickBidManager_QuerySchedule $schedule) - { - $this->schedule = $schedule; - } - /** - * @return Google_Service_DoubleClickBidManager_QuerySchedule - */ - public function getSchedule() - { - return $this->schedule; - } - public function setTimezoneCode($timezoneCode) - { - $this->timezoneCode = $timezoneCode; - } - public function getTimezoneCode() - { - return $this->timezoneCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/QueryMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/QueryMetadata.php deleted file mode 100644 index 0c515c28..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/QueryMetadata.php +++ /dev/null @@ -1,121 +0,0 @@ -dataRange = $dataRange; - } - public function getDataRange() - { - return $this->dataRange; - } - public function setFormat($format) - { - $this->format = $format; - } - public function getFormat() - { - return $this->format; - } - public function setGoogleCloudStoragePathForLatestReport($googleCloudStoragePathForLatestReport) - { - $this->googleCloudStoragePathForLatestReport = $googleCloudStoragePathForLatestReport; - } - public function getGoogleCloudStoragePathForLatestReport() - { - return $this->googleCloudStoragePathForLatestReport; - } - public function setGoogleDrivePathForLatestReport($googleDrivePathForLatestReport) - { - $this->googleDrivePathForLatestReport = $googleDrivePathForLatestReport; - } - public function getGoogleDrivePathForLatestReport() - { - return $this->googleDrivePathForLatestReport; - } - public function setLatestReportRunTimeMs($latestReportRunTimeMs) - { - $this->latestReportRunTimeMs = $latestReportRunTimeMs; - } - public function getLatestReportRunTimeMs() - { - return $this->latestReportRunTimeMs; - } - public function setLocale($locale) - { - $this->locale = $locale; - } - public function getLocale() - { - return $this->locale; - } - public function setReportCount($reportCount) - { - $this->reportCount = $reportCount; - } - public function getReportCount() - { - return $this->reportCount; - } - public function setRunning($running) - { - $this->running = $running; - } - public function getRunning() - { - return $this->running; - } - public function setSendNotification($sendNotification) - { - $this->sendNotification = $sendNotification; - } - public function getSendNotification() - { - return $this->sendNotification; - } - public function setShareEmailAddress($shareEmailAddress) - { - $this->shareEmailAddress = $shareEmailAddress; - } - public function getShareEmailAddress() - { - return $this->shareEmailAddress; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/QuerySchedule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/QuerySchedule.php deleted file mode 100644 index f0756c94..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/QuerySchedule.php +++ /dev/null @@ -1,66 +0,0 @@ -endTimeMs = $endTimeMs; - } - public function getEndTimeMs() - { - return $this->endTimeMs; - } - public function setFrequency($frequency) - { - $this->frequency = $frequency; - } - public function getFrequency() - { - return $this->frequency; - } - public function setNextRunMinuteOfDay($nextRunMinuteOfDay) - { - $this->nextRunMinuteOfDay = $nextRunMinuteOfDay; - } - public function getNextRunMinuteOfDay() - { - return $this->nextRunMinuteOfDay; - } - public function setNextRunTimezoneCode($nextRunTimezoneCode) - { - $this->nextRunTimezoneCode = $nextRunTimezoneCode; - } - public function getNextRunTimezoneCode() - { - return $this->nextRunTimezoneCode; - } - public function setStartTimeMs($startTimeMs) - { - $this->startTimeMs = $startTimeMs; - } - public function getStartTimeMs() - { - return $this->startTimeMs; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/Report.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/Report.php deleted file mode 100644 index 19730eb9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/Report.php +++ /dev/null @@ -1,69 +0,0 @@ -key = $key; - } - /** - * @return Google_Service_DoubleClickBidManager_ReportKey - */ - public function getKey() - { - return $this->key; - } - /** - * @param Google_Service_DoubleClickBidManager_ReportMetadata - */ - public function setMetadata(Google_Service_DoubleClickBidManager_ReportMetadata $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_DoubleClickBidManager_ReportMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - /** - * @param Google_Service_DoubleClickBidManager_Parameters - */ - public function setParams(Google_Service_DoubleClickBidManager_Parameters $params) - { - $this->params = $params; - } - /** - * @return Google_Service_DoubleClickBidManager_Parameters - */ - public function getParams() - { - return $this->params; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/ReportFailure.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/ReportFailure.php deleted file mode 100644 index 233fe264..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/ReportFailure.php +++ /dev/null @@ -1,30 +0,0 @@ -errorCode = $errorCode; - } - public function getErrorCode() - { - return $this->errorCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/ReportKey.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/ReportKey.php deleted file mode 100644 index 21aefacb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/ReportKey.php +++ /dev/null @@ -1,39 +0,0 @@ -queryId = $queryId; - } - public function getQueryId() - { - return $this->queryId; - } - public function setReportId($reportId) - { - $this->reportId = $reportId; - } - public function getReportId() - { - return $this->reportId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/ReportMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/ReportMetadata.php deleted file mode 100644 index 5b897de3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/ReportMetadata.php +++ /dev/null @@ -1,64 +0,0 @@ -googleCloudStoragePath = $googleCloudStoragePath; - } - public function getGoogleCloudStoragePath() - { - return $this->googleCloudStoragePath; - } - public function setReportDataEndTimeMs($reportDataEndTimeMs) - { - $this->reportDataEndTimeMs = $reportDataEndTimeMs; - } - public function getReportDataEndTimeMs() - { - return $this->reportDataEndTimeMs; - } - public function setReportDataStartTimeMs($reportDataStartTimeMs) - { - $this->reportDataStartTimeMs = $reportDataStartTimeMs; - } - public function getReportDataStartTimeMs() - { - return $this->reportDataStartTimeMs; - } - /** - * @param Google_Service_DoubleClickBidManager_ReportStatus - */ - public function setStatus(Google_Service_DoubleClickBidManager_ReportStatus $status) - { - $this->status = $status; - } - /** - * @return Google_Service_DoubleClickBidManager_ReportStatus - */ - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/ReportStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/ReportStatus.php deleted file mode 100644 index 56646933..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/ReportStatus.php +++ /dev/null @@ -1,64 +0,0 @@ -failure = $failure; - } - /** - * @return Google_Service_DoubleClickBidManager_ReportFailure - */ - public function getFailure() - { - return $this->failure; - } - public function setFinishTimeMs($finishTimeMs) - { - $this->finishTimeMs = $finishTimeMs; - } - public function getFinishTimeMs() - { - return $this->finishTimeMs; - } - public function setFormat($format) - { - $this->format = $format; - } - public function getFormat() - { - return $this->format; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/Resource/Lineitems.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/Resource/Lineitems.php deleted file mode 100644 index f785993f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/Resource/Lineitems.php +++ /dev/null @@ -1,56 +0,0 @@ - - * $doubleclickbidmanagerService = new Google_Service_DoubleClickBidManager(...); - * $lineitems = $doubleclickbidmanagerService->lineitems; - * - */ -class Google_Service_DoubleClickBidManager_Resource_Lineitems extends Google_Service_Resource -{ - /** - * Retrieves line items in CSV format. TrueView line items are not supported. - * (lineitems.downloadlineitems) - * - * @param Google_Service_DoubleClickBidManager_DownloadLineItemsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DoubleClickBidManager_DownloadLineItemsResponse - */ - public function downloadlineitems(Google_Service_DoubleClickBidManager_DownloadLineItemsRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('downloadlineitems', array($params), "Google_Service_DoubleClickBidManager_DownloadLineItemsResponse"); - } - /** - * Uploads line items in CSV format. TrueView line items are not supported. - * (lineitems.uploadlineitems) - * - * @param Google_Service_DoubleClickBidManager_UploadLineItemsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DoubleClickBidManager_UploadLineItemsResponse - */ - public function uploadlineitems(Google_Service_DoubleClickBidManager_UploadLineItemsRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('uploadlineitems', array($params), "Google_Service_DoubleClickBidManager_UploadLineItemsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/Resource/Queries.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/Resource/Queries.php deleted file mode 100644 index 36bdc5c8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/Resource/Queries.php +++ /dev/null @@ -1,96 +0,0 @@ - - * $doubleclickbidmanagerService = new Google_Service_DoubleClickBidManager(...); - * $queries = $doubleclickbidmanagerService->queries; - * - */ -class Google_Service_DoubleClickBidManager_Resource_Queries extends Google_Service_Resource -{ - /** - * Creates a query. (queries.createquery) - * - * @param Google_Service_DoubleClickBidManager_Query $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DoubleClickBidManager_Query - */ - public function createquery(Google_Service_DoubleClickBidManager_Query $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('createquery', array($params), "Google_Service_DoubleClickBidManager_Query"); - } - /** - * Deletes a stored query as well as the associated stored reports. - * (queries.deletequery) - * - * @param string $queryId Query ID to delete. - * @param array $optParams Optional parameters. - */ - public function deletequery($queryId, $optParams = array()) - { - $params = array('queryId' => $queryId); - $params = array_merge($params, $optParams); - return $this->call('deletequery', array($params)); - } - /** - * Retrieves a stored query. (queries.getquery) - * - * @param string $queryId Query ID to retrieve. - * @param array $optParams Optional parameters. - * @return Google_Service_DoubleClickBidManager_Query - */ - public function getquery($queryId, $optParams = array()) - { - $params = array('queryId' => $queryId); - $params = array_merge($params, $optParams); - return $this->call('getquery', array($params), "Google_Service_DoubleClickBidManager_Query"); - } - /** - * Retrieves stored queries. (queries.listqueries) - * - * @param array $optParams Optional parameters. - * - * @opt_param int pageSize Maximum number of results per page. Must be between 1 - * and 100. Defaults to 100 if unspecified. - * @opt_param string pageToken Optional pagination token. - * @return Google_Service_DoubleClickBidManager_ListQueriesResponse - */ - public function listqueries($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('listqueries', array($params), "Google_Service_DoubleClickBidManager_ListQueriesResponse"); - } - /** - * Runs a stored query to generate a report. (queries.runquery) - * - * @param string $queryId Query ID to run. - * @param Google_Service_DoubleClickBidManager_RunQueryRequest $postBody - * @param array $optParams Optional parameters. - */ - public function runquery($queryId, Google_Service_DoubleClickBidManager_RunQueryRequest $postBody, $optParams = array()) - { - $params = array('queryId' => $queryId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('runquery', array($params)); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/Resource/Reports.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/Resource/Reports.php deleted file mode 100644 index 90de2665..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/Resource/Reports.php +++ /dev/null @@ -1,45 +0,0 @@ - - * $doubleclickbidmanagerService = new Google_Service_DoubleClickBidManager(...); - * $reports = $doubleclickbidmanagerService->reports; - * - */ -class Google_Service_DoubleClickBidManager_Resource_Reports extends Google_Service_Resource -{ - /** - * Retrieves stored reports. (reports.listreports) - * - * @param string $queryId Query ID with which the reports are associated. - * @param array $optParams Optional parameters. - * - * @opt_param int pageSize Maximum number of results per page. Must be between 1 - * and 100. Defaults to 100 if unspecified. - * @opt_param string pageToken Optional pagination token. - * @return Google_Service_DoubleClickBidManager_ListReportsResponse - */ - public function listreports($queryId, $optParams = array()) - { - $params = array('queryId' => $queryId); - $params = array_merge($params, $optParams); - return $this->call('listreports', array($params), "Google_Service_DoubleClickBidManager_ListReportsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/Resource/Sdf.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/Resource/Sdf.php deleted file mode 100644 index b33747e3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/Resource/Sdf.php +++ /dev/null @@ -1,41 +0,0 @@ - - * $doubleclickbidmanagerService = new Google_Service_DoubleClickBidManager(...); - * $sdf = $doubleclickbidmanagerService->sdf; - * - */ -class Google_Service_DoubleClickBidManager_Resource_Sdf extends Google_Service_Resource -{ - /** - * Retrieves entities in SDF format. (sdf.download) - * - * @param Google_Service_DoubleClickBidManager_DownloadRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DoubleClickBidManager_DownloadResponse - */ - public function download(Google_Service_DoubleClickBidManager_DownloadRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('download', array($params), "Google_Service_DoubleClickBidManager_DownloadResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/RowStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/RowStatus.php deleted file mode 100644 index 1612d657..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/RowStatus.php +++ /dev/null @@ -1,76 +0,0 @@ -changed = $changed; - } - public function getChanged() - { - return $this->changed; - } - public function setEntityId($entityId) - { - $this->entityId = $entityId; - } - public function getEntityId() - { - return $this->entityId; - } - public function setEntityName($entityName) - { - $this->entityName = $entityName; - } - public function getEntityName() - { - return $this->entityName; - } - public function setErrors($errors) - { - $this->errors = $errors; - } - public function getErrors() - { - return $this->errors; - } - public function setPersisted($persisted) - { - $this->persisted = $persisted; - } - public function getPersisted() - { - return $this->persisted; - } - public function setRowNumber($rowNumber) - { - $this->rowNumber = $rowNumber; - } - public function getRowNumber() - { - return $this->rowNumber; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/RunQueryRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/RunQueryRequest.php deleted file mode 100644 index 5694067b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/RunQueryRequest.php +++ /dev/null @@ -1,57 +0,0 @@ -dataRange = $dataRange; - } - public function getDataRange() - { - return $this->dataRange; - } - public function setReportDataEndTimeMs($reportDataEndTimeMs) - { - $this->reportDataEndTimeMs = $reportDataEndTimeMs; - } - public function getReportDataEndTimeMs() - { - return $this->reportDataEndTimeMs; - } - public function setReportDataStartTimeMs($reportDataStartTimeMs) - { - $this->reportDataStartTimeMs = $reportDataStartTimeMs; - } - public function getReportDataStartTimeMs() - { - return $this->reportDataStartTimeMs; - } - public function setTimezoneCode($timezoneCode) - { - $this->timezoneCode = $timezoneCode; - } - public function getTimezoneCode() - { - return $this->timezoneCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/UploadLineItemsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/UploadLineItemsRequest.php deleted file mode 100644 index eaf18a97..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/UploadLineItemsRequest.php +++ /dev/null @@ -1,48 +0,0 @@ -dryRun = $dryRun; - } - public function getDryRun() - { - return $this->dryRun; - } - public function setFormat($format) - { - $this->format = $format; - } - public function getFormat() - { - return $this->format; - } - public function setLineItems($lineItems) - { - $this->lineItems = $lineItems; - } - public function getLineItems() - { - return $this->lineItems; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/UploadLineItemsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/UploadLineItemsResponse.php deleted file mode 100644 index 84462b8c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/UploadLineItemsResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -uploadStatus = $uploadStatus; - } - /** - * @return Google_Service_DoubleClickBidManager_UploadStatus - */ - public function getUploadStatus() - { - return $this->uploadStatus; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/UploadStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/UploadStatus.php deleted file mode 100644 index 016c0bc7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DoubleClickBidManager/UploadStatus.php +++ /dev/null @@ -1,47 +0,0 @@ -errors = $errors; - } - public function getErrors() - { - return $this->errors; - } - /** - * @param Google_Service_DoubleClickBidManager_RowStatus - */ - public function setRowStatus($rowStatus) - { - $this->rowStatus = $rowStatus; - } - /** - * @return Google_Service_DoubleClickBidManager_RowStatus - */ - public function getRowStatus() - { - return $this->rowStatus; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch.php deleted file mode 100644 index dbef3daf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch.php +++ /dev/null @@ -1,244 +0,0 @@ - - * Reports and modifies your advertising data in DoubleClick Search (for - * example, campaigns, ad groups, keywords, and conversions).

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Doubleclicksearch extends Google_Service -{ - /** View and manage your advertising data in DoubleClick Search. */ - const DOUBLECLICKSEARCH = - "https://www.googleapis.com/auth/doubleclicksearch"; - - public $conversion; - public $reports; - public $savedColumns; - - /** - * Constructs the internal representation of the Doubleclicksearch service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://www.googleapis.com/'; - $this->servicePath = 'doubleclicksearch/v2/'; - $this->batchPath = 'batch/doubleclicksearch/v2'; - $this->version = 'v2'; - $this->serviceName = 'doubleclicksearch'; - - $this->conversion = new Google_Service_Doubleclicksearch_Resource_Conversion( - $this, - $this->serviceName, - 'conversion', - array( - 'methods' => array( - 'get' => array( - 'path' => 'agency/{agencyId}/advertiser/{advertiserId}/engine/{engineAccountId}/conversion', - 'httpMethod' => 'GET', - 'parameters' => array( - 'agencyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'advertiserId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'engineAccountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'endDate' => array( - 'location' => 'query', - 'type' => 'integer', - 'required' => true, - ), - 'rowCount' => array( - 'location' => 'query', - 'type' => 'integer', - 'required' => true, - ), - 'startDate' => array( - 'location' => 'query', - 'type' => 'integer', - 'required' => true, - ), - 'startRow' => array( - 'location' => 'query', - 'type' => 'integer', - 'required' => true, - ), - 'adGroupId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'adId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'campaignId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'criterionId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'insert' => array( - 'path' => 'conversion', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'patch' => array( - 'path' => 'conversion', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'advertiserId' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'agencyId' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'endDate' => array( - 'location' => 'query', - 'type' => 'integer', - 'required' => true, - ), - 'engineAccountId' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'rowCount' => array( - 'location' => 'query', - 'type' => 'integer', - 'required' => true, - ), - 'startDate' => array( - 'location' => 'query', - 'type' => 'integer', - 'required' => true, - ), - 'startRow' => array( - 'location' => 'query', - 'type' => 'integer', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'conversion', - 'httpMethod' => 'PUT', - 'parameters' => array(), - ),'updateAvailability' => array( - 'path' => 'conversion/updateAvailability', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->reports = new Google_Service_Doubleclicksearch_Resource_Reports( - $this, - $this->serviceName, - 'reports', - array( - 'methods' => array( - 'generate' => array( - 'path' => 'reports/generate', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'get' => array( - 'path' => 'reports/{reportId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'reportId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getFile' => array( - 'path' => 'reports/{reportId}/files/{reportFragment}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'reportId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'reportFragment' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - ), - ),'request' => array( - 'path' => 'reports', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->savedColumns = new Google_Service_Doubleclicksearch_Resource_SavedColumns( - $this, - $this->serviceName, - 'savedColumns', - array( - 'methods' => array( - 'list' => array( - 'path' => 'agency/{agencyId}/advertiser/{advertiserId}/savedcolumns', - 'httpMethod' => 'GET', - 'parameters' => array( - 'agencyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'advertiserId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/Availability.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/Availability.php deleted file mode 100644 index e639f638..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/Availability.php +++ /dev/null @@ -1,75 +0,0 @@ -advertiserId = $advertiserId; - } - public function getAdvertiserId() - { - return $this->advertiserId; - } - public function setAgencyId($agencyId) - { - $this->agencyId = $agencyId; - } - public function getAgencyId() - { - return $this->agencyId; - } - public function setAvailabilityTimestamp($availabilityTimestamp) - { - $this->availabilityTimestamp = $availabilityTimestamp; - } - public function getAvailabilityTimestamp() - { - return $this->availabilityTimestamp; - } - public function setSegmentationId($segmentationId) - { - $this->segmentationId = $segmentationId; - } - public function getSegmentationId() - { - return $this->segmentationId; - } - public function setSegmentationName($segmentationName) - { - $this->segmentationName = $segmentationName; - } - public function getSegmentationName() - { - return $this->segmentationName; - } - public function setSegmentationType($segmentationType) - { - $this->segmentationType = $segmentationType; - } - public function getSegmentationType() - { - return $this->segmentationType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/Conversion.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/Conversion.php deleted file mode 100644 index 7b1ac1b0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/Conversion.php +++ /dev/null @@ -1,333 +0,0 @@ -adGroupId = $adGroupId; - } - public function getAdGroupId() - { - return $this->adGroupId; - } - public function setAdId($adId) - { - $this->adId = $adId; - } - public function getAdId() - { - return $this->adId; - } - public function setAdvertiserId($advertiserId) - { - $this->advertiserId = $advertiserId; - } - public function getAdvertiserId() - { - return $this->advertiserId; - } - public function setAgencyId($agencyId) - { - $this->agencyId = $agencyId; - } - public function getAgencyId() - { - return $this->agencyId; - } - public function setAttributionModel($attributionModel) - { - $this->attributionModel = $attributionModel; - } - public function getAttributionModel() - { - return $this->attributionModel; - } - public function setCampaignId($campaignId) - { - $this->campaignId = $campaignId; - } - public function getCampaignId() - { - return $this->campaignId; - } - public function setChannel($channel) - { - $this->channel = $channel; - } - public function getChannel() - { - return $this->channel; - } - public function setClickId($clickId) - { - $this->clickId = $clickId; - } - public function getClickId() - { - return $this->clickId; - } - public function setConversionId($conversionId) - { - $this->conversionId = $conversionId; - } - public function getConversionId() - { - return $this->conversionId; - } - public function setConversionModifiedTimestamp($conversionModifiedTimestamp) - { - $this->conversionModifiedTimestamp = $conversionModifiedTimestamp; - } - public function getConversionModifiedTimestamp() - { - return $this->conversionModifiedTimestamp; - } - public function setConversionTimestamp($conversionTimestamp) - { - $this->conversionTimestamp = $conversionTimestamp; - } - public function getConversionTimestamp() - { - return $this->conversionTimestamp; - } - public function setCountMillis($countMillis) - { - $this->countMillis = $countMillis; - } - public function getCountMillis() - { - return $this->countMillis; - } - public function setCriterionId($criterionId) - { - $this->criterionId = $criterionId; - } - public function getCriterionId() - { - return $this->criterionId; - } - public function setCurrencyCode($currencyCode) - { - $this->currencyCode = $currencyCode; - } - public function getCurrencyCode() - { - return $this->currencyCode; - } - /** - * @param Google_Service_Doubleclicksearch_CustomDimension - */ - public function setCustomDimension($customDimension) - { - $this->customDimension = $customDimension; - } - /** - * @return Google_Service_Doubleclicksearch_CustomDimension - */ - public function getCustomDimension() - { - return $this->customDimension; - } - /** - * @param Google_Service_Doubleclicksearch_CustomMetric - */ - public function setCustomMetric($customMetric) - { - $this->customMetric = $customMetric; - } - /** - * @return Google_Service_Doubleclicksearch_CustomMetric - */ - public function getCustomMetric() - { - return $this->customMetric; - } - public function setDeviceType($deviceType) - { - $this->deviceType = $deviceType; - } - public function getDeviceType() - { - return $this->deviceType; - } - public function setDsConversionId($dsConversionId) - { - $this->dsConversionId = $dsConversionId; - } - public function getDsConversionId() - { - return $this->dsConversionId; - } - public function setEngineAccountId($engineAccountId) - { - $this->engineAccountId = $engineAccountId; - } - public function getEngineAccountId() - { - return $this->engineAccountId; - } - public function setFloodlightOrderId($floodlightOrderId) - { - $this->floodlightOrderId = $floodlightOrderId; - } - public function getFloodlightOrderId() - { - return $this->floodlightOrderId; - } - public function setInventoryAccountId($inventoryAccountId) - { - $this->inventoryAccountId = $inventoryAccountId; - } - public function getInventoryAccountId() - { - return $this->inventoryAccountId; - } - public function setProductCountry($productCountry) - { - $this->productCountry = $productCountry; - } - public function getProductCountry() - { - return $this->productCountry; - } - public function setProductGroupId($productGroupId) - { - $this->productGroupId = $productGroupId; - } - public function getProductGroupId() - { - return $this->productGroupId; - } - public function setProductId($productId) - { - $this->productId = $productId; - } - public function getProductId() - { - return $this->productId; - } - public function setProductLanguage($productLanguage) - { - $this->productLanguage = $productLanguage; - } - public function getProductLanguage() - { - return $this->productLanguage; - } - public function setQuantityMillis($quantityMillis) - { - $this->quantityMillis = $quantityMillis; - } - public function getQuantityMillis() - { - return $this->quantityMillis; - } - public function setRevenueMicros($revenueMicros) - { - $this->revenueMicros = $revenueMicros; - } - public function getRevenueMicros() - { - return $this->revenueMicros; - } - public function setSegmentationId($segmentationId) - { - $this->segmentationId = $segmentationId; - } - public function getSegmentationId() - { - return $this->segmentationId; - } - public function setSegmentationName($segmentationName) - { - $this->segmentationName = $segmentationName; - } - public function getSegmentationName() - { - return $this->segmentationName; - } - public function setSegmentationType($segmentationType) - { - $this->segmentationType = $segmentationType; - } - public function getSegmentationType() - { - return $this->segmentationType; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setStoreId($storeId) - { - $this->storeId = $storeId; - } - public function getStoreId() - { - return $this->storeId; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/ConversionList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/ConversionList.php deleted file mode 100644 index ea635c28..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/ConversionList.php +++ /dev/null @@ -1,47 +0,0 @@ -conversion = $conversion; - } - /** - * @return Google_Service_Doubleclicksearch_Conversion - */ - public function getConversion() - { - return $this->conversion; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/CustomDimension.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/CustomDimension.php deleted file mode 100644 index 08ea8267..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/CustomDimension.php +++ /dev/null @@ -1,39 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/CustomMetric.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/CustomMetric.php deleted file mode 100644 index d1a4adad..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/CustomMetric.php +++ /dev/null @@ -1,39 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/Report.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/Report.php deleted file mode 100644 index 578c27d3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/Report.php +++ /dev/null @@ -1,117 +0,0 @@ -files = $files; - } - /** - * @return Google_Service_Doubleclicksearch_ReportFiles - */ - public function getFiles() - { - return $this->files; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setIsReportReady($isReportReady) - { - $this->isReportReady = $isReportReady; - } - public function getIsReportReady() - { - return $this->isReportReady; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Doubleclicksearch_ReportRequest - */ - public function setRequest(Google_Service_Doubleclicksearch_ReportRequest $request) - { - $this->request = $request; - } - /** - * @return Google_Service_Doubleclicksearch_ReportRequest - */ - public function getRequest() - { - return $this->request; - } - public function setRowCount($rowCount) - { - $this->rowCount = $rowCount; - } - public function getRowCount() - { - return $this->rowCount; - } - public function setRows($rows) - { - $this->rows = $rows; - } - public function getRows() - { - return $this->rows; - } - public function setStatisticsCurrencyCode($statisticsCurrencyCode) - { - $this->statisticsCurrencyCode = $statisticsCurrencyCode; - } - public function getStatisticsCurrencyCode() - { - return $this->statisticsCurrencyCode; - } - public function setStatisticsTimeZone($statisticsTimeZone) - { - $this->statisticsTimeZone = $statisticsTimeZone; - } - public function getStatisticsTimeZone() - { - return $this->statisticsTimeZone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/ReportApiColumnSpec.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/ReportApiColumnSpec.php deleted file mode 100644 index d7d675b2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/ReportApiColumnSpec.php +++ /dev/null @@ -1,111 +0,0 @@ -columnName = $columnName; - } - public function getColumnName() - { - return $this->columnName; - } - public function setCustomDimensionName($customDimensionName) - { - $this->customDimensionName = $customDimensionName; - } - public function getCustomDimensionName() - { - return $this->customDimensionName; - } - public function setCustomMetricName($customMetricName) - { - $this->customMetricName = $customMetricName; - } - public function getCustomMetricName() - { - return $this->customMetricName; - } - public function setEndDate($endDate) - { - $this->endDate = $endDate; - } - public function getEndDate() - { - return $this->endDate; - } - public function setGroupByColumn($groupByColumn) - { - $this->groupByColumn = $groupByColumn; - } - public function getGroupByColumn() - { - return $this->groupByColumn; - } - public function setHeaderText($headerText) - { - $this->headerText = $headerText; - } - public function getHeaderText() - { - return $this->headerText; - } - public function setPlatformSource($platformSource) - { - $this->platformSource = $platformSource; - } - public function getPlatformSource() - { - return $this->platformSource; - } - public function setProductReportPerspective($productReportPerspective) - { - $this->productReportPerspective = $productReportPerspective; - } - public function getProductReportPerspective() - { - return $this->productReportPerspective; - } - public function setSavedColumnName($savedColumnName) - { - $this->savedColumnName = $savedColumnName; - } - public function getSavedColumnName() - { - return $this->savedColumnName; - } - public function setStartDate($startDate) - { - $this->startDate = $startDate; - } - public function getStartDate() - { - return $this->startDate; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/ReportFiles.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/ReportFiles.php deleted file mode 100644 index 2a0d702a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/ReportFiles.php +++ /dev/null @@ -1,39 +0,0 @@ -byteCount = $byteCount; - } - public function getByteCount() - { - return $this->byteCount; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/ReportRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/ReportRequest.php deleted file mode 100644 index e54d9552..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/ReportRequest.php +++ /dev/null @@ -1,183 +0,0 @@ -columns = $columns; - } - /** - * @return Google_Service_Doubleclicksearch_ReportApiColumnSpec - */ - public function getColumns() - { - return $this->columns; - } - public function setDownloadFormat($downloadFormat) - { - $this->downloadFormat = $downloadFormat; - } - public function getDownloadFormat() - { - return $this->downloadFormat; - } - /** - * @param Google_Service_Doubleclicksearch_ReportRequestFilters - */ - public function setFilters($filters) - { - $this->filters = $filters; - } - /** - * @return Google_Service_Doubleclicksearch_ReportRequestFilters - */ - public function getFilters() - { - return $this->filters; - } - public function setIncludeDeletedEntities($includeDeletedEntities) - { - $this->includeDeletedEntities = $includeDeletedEntities; - } - public function getIncludeDeletedEntities() - { - return $this->includeDeletedEntities; - } - public function setIncludeRemovedEntities($includeRemovedEntities) - { - $this->includeRemovedEntities = $includeRemovedEntities; - } - public function getIncludeRemovedEntities() - { - return $this->includeRemovedEntities; - } - public function setMaxRowsPerFile($maxRowsPerFile) - { - $this->maxRowsPerFile = $maxRowsPerFile; - } - public function getMaxRowsPerFile() - { - return $this->maxRowsPerFile; - } - /** - * @param Google_Service_Doubleclicksearch_ReportRequestOrderBy - */ - public function setOrderBy($orderBy) - { - $this->orderBy = $orderBy; - } - /** - * @return Google_Service_Doubleclicksearch_ReportRequestOrderBy - */ - public function getOrderBy() - { - return $this->orderBy; - } - /** - * @param Google_Service_Doubleclicksearch_ReportRequestReportScope - */ - public function setReportScope(Google_Service_Doubleclicksearch_ReportRequestReportScope $reportScope) - { - $this->reportScope = $reportScope; - } - /** - * @return Google_Service_Doubleclicksearch_ReportRequestReportScope - */ - public function getReportScope() - { - return $this->reportScope; - } - public function setReportType($reportType) - { - $this->reportType = $reportType; - } - public function getReportType() - { - return $this->reportType; - } - public function setRowCount($rowCount) - { - $this->rowCount = $rowCount; - } - public function getRowCount() - { - return $this->rowCount; - } - public function setStartRow($startRow) - { - $this->startRow = $startRow; - } - public function getStartRow() - { - return $this->startRow; - } - public function setStatisticsCurrency($statisticsCurrency) - { - $this->statisticsCurrency = $statisticsCurrency; - } - public function getStatisticsCurrency() - { - return $this->statisticsCurrency; - } - /** - * @param Google_Service_Doubleclicksearch_ReportRequestTimeRange - */ - public function setTimeRange(Google_Service_Doubleclicksearch_ReportRequestTimeRange $timeRange) - { - $this->timeRange = $timeRange; - } - /** - * @return Google_Service_Doubleclicksearch_ReportRequestTimeRange - */ - public function getTimeRange() - { - return $this->timeRange; - } - public function setVerifySingleTimeZone($verifySingleTimeZone) - { - $this->verifySingleTimeZone = $verifySingleTimeZone; - } - public function getVerifySingleTimeZone() - { - return $this->verifySingleTimeZone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/ReportRequestFilters.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/ReportRequestFilters.php deleted file mode 100644 index f3002a24..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/ReportRequestFilters.php +++ /dev/null @@ -1,56 +0,0 @@ -column = $column; - } - /** - * @return Google_Service_Doubleclicksearch_ReportApiColumnSpec - */ - public function getColumn() - { - return $this->column; - } - public function setOperator($operator) - { - $this->operator = $operator; - } - public function getOperator() - { - return $this->operator; - } - public function setValues($values) - { - $this->values = $values; - } - public function getValues() - { - return $this->values; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/ReportRequestOrderBy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/ReportRequestOrderBy.php deleted file mode 100644 index 542cb6d1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/ReportRequestOrderBy.php +++ /dev/null @@ -1,46 +0,0 @@ -column = $column; - } - /** - * @return Google_Service_Doubleclicksearch_ReportApiColumnSpec - */ - public function getColumn() - { - return $this->column; - } - public function setSortOrder($sortOrder) - { - $this->sortOrder = $sortOrder; - } - public function getSortOrder() - { - return $this->sortOrder; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/ReportRequestReportScope.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/ReportRequestReportScope.php deleted file mode 100644 index d56b4014..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/ReportRequestReportScope.php +++ /dev/null @@ -1,84 +0,0 @@ -adGroupId = $adGroupId; - } - public function getAdGroupId() - { - return $this->adGroupId; - } - public function setAdId($adId) - { - $this->adId = $adId; - } - public function getAdId() - { - return $this->adId; - } - public function setAdvertiserId($advertiserId) - { - $this->advertiserId = $advertiserId; - } - public function getAdvertiserId() - { - return $this->advertiserId; - } - public function setAgencyId($agencyId) - { - $this->agencyId = $agencyId; - } - public function getAgencyId() - { - return $this->agencyId; - } - public function setCampaignId($campaignId) - { - $this->campaignId = $campaignId; - } - public function getCampaignId() - { - return $this->campaignId; - } - public function setEngineAccountId($engineAccountId) - { - $this->engineAccountId = $engineAccountId; - } - public function getEngineAccountId() - { - return $this->engineAccountId; - } - public function setKeywordId($keywordId) - { - $this->keywordId = $keywordId; - } - public function getKeywordId() - { - return $this->keywordId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/ReportRequestTimeRange.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/ReportRequestTimeRange.php deleted file mode 100644 index 8ac72ba2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/ReportRequestTimeRange.php +++ /dev/null @@ -1,57 +0,0 @@ -changedAttributesSinceTimestamp = $changedAttributesSinceTimestamp; - } - public function getChangedAttributesSinceTimestamp() - { - return $this->changedAttributesSinceTimestamp; - } - public function setChangedMetricsSinceTimestamp($changedMetricsSinceTimestamp) - { - $this->changedMetricsSinceTimestamp = $changedMetricsSinceTimestamp; - } - public function getChangedMetricsSinceTimestamp() - { - return $this->changedMetricsSinceTimestamp; - } - public function setEndDate($endDate) - { - $this->endDate = $endDate; - } - public function getEndDate() - { - return $this->endDate; - } - public function setStartDate($startDate) - { - $this->startDate = $startDate; - } - public function getStartDate() - { - return $this->startDate; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/Resource/Conversion.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/Resource/Conversion.php deleted file mode 100644 index db9795ec..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/Resource/Conversion.php +++ /dev/null @@ -1,121 +0,0 @@ - - * $doubleclicksearchService = new Google_Service_Doubleclicksearch(...); - * $conversion = $doubleclicksearchService->conversion; - * - */ -class Google_Service_Doubleclicksearch_Resource_Conversion extends Google_Service_Resource -{ - /** - * Retrieves a list of conversions from a DoubleClick Search engine account. - * (conversion.get) - * - * @param string $agencyId Numeric ID of the agency. - * @param string $advertiserId Numeric ID of the advertiser. - * @param string $engineAccountId Numeric ID of the engine account. - * @param int $endDate Last date (inclusive) on which to retrieve conversions. - * Format is yyyymmdd. - * @param int $rowCount The number of conversions to return per call. - * @param int $startDate First date (inclusive) on which to retrieve - * conversions. Format is yyyymmdd. - * @param string $startRow The 0-based starting index for retrieving conversions - * results. - * @param array $optParams Optional parameters. - * - * @opt_param string adGroupId Numeric ID of the ad group. - * @opt_param string adId Numeric ID of the ad. - * @opt_param string campaignId Numeric ID of the campaign. - * @opt_param string criterionId Numeric ID of the criterion. - * @return Google_Service_Doubleclicksearch_ConversionList - */ - public function get($agencyId, $advertiserId, $engineAccountId, $endDate, $rowCount, $startDate, $startRow, $optParams = array()) - { - $params = array('agencyId' => $agencyId, 'advertiserId' => $advertiserId, 'engineAccountId' => $engineAccountId, 'endDate' => $endDate, 'rowCount' => $rowCount, 'startDate' => $startDate, 'startRow' => $startRow); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Doubleclicksearch_ConversionList"); - } - /** - * Inserts a batch of new conversions into DoubleClick Search. - * (conversion.insert) - * - * @param Google_Service_Doubleclicksearch_ConversionList $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Doubleclicksearch_ConversionList - */ - public function insert(Google_Service_Doubleclicksearch_ConversionList $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Doubleclicksearch_ConversionList"); - } - /** - * Updates a batch of conversions in DoubleClick Search. This method supports - * patch semantics. (conversion.patch) - * - * @param string $advertiserId Numeric ID of the advertiser. - * @param string $agencyId Numeric ID of the agency. - * @param int $endDate Last date (inclusive) on which to retrieve conversions. - * Format is yyyymmdd. - * @param string $engineAccountId Numeric ID of the engine account. - * @param int $rowCount The number of conversions to return per call. - * @param int $startDate First date (inclusive) on which to retrieve - * conversions. Format is yyyymmdd. - * @param string $startRow The 0-based starting index for retrieving conversions - * results. - * @param Google_Service_Doubleclicksearch_ConversionList $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Doubleclicksearch_ConversionList - */ - public function patch($advertiserId, $agencyId, $endDate, $engineAccountId, $rowCount, $startDate, $startRow, Google_Service_Doubleclicksearch_ConversionList $postBody, $optParams = array()) - { - $params = array('advertiserId' => $advertiserId, 'agencyId' => $agencyId, 'endDate' => $endDate, 'engineAccountId' => $engineAccountId, 'rowCount' => $rowCount, 'startDate' => $startDate, 'startRow' => $startRow, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Doubleclicksearch_ConversionList"); - } - /** - * Updates a batch of conversions in DoubleClick Search. (conversion.update) - * - * @param Google_Service_Doubleclicksearch_ConversionList $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Doubleclicksearch_ConversionList - */ - public function update(Google_Service_Doubleclicksearch_ConversionList $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Doubleclicksearch_ConversionList"); - } - /** - * Updates the availabilities of a batch of floodlight activities in DoubleClick - * Search. (conversion.updateAvailability) - * - * @param Google_Service_Doubleclicksearch_UpdateAvailabilityRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Doubleclicksearch_UpdateAvailabilityResponse - */ - public function updateAvailability(Google_Service_Doubleclicksearch_UpdateAvailabilityRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updateAvailability', array($params), "Google_Service_Doubleclicksearch_UpdateAvailabilityResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/Resource/Reports.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/Resource/Reports.php deleted file mode 100644 index aa9efddd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/Resource/Reports.php +++ /dev/null @@ -1,80 +0,0 @@ - - * $doubleclicksearchService = new Google_Service_Doubleclicksearch(...); - * $reports = $doubleclicksearchService->reports; - * - */ -class Google_Service_Doubleclicksearch_Resource_Reports extends Google_Service_Resource -{ - /** - * Generates and returns a report immediately. (reports.generate) - * - * @param Google_Service_Doubleclicksearch_ReportRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Doubleclicksearch_Report - */ - public function generate(Google_Service_Doubleclicksearch_ReportRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('generate', array($params), "Google_Service_Doubleclicksearch_Report"); - } - /** - * Polls for the status of a report request. (reports.get) - * - * @param string $reportId ID of the report request being polled. - * @param array $optParams Optional parameters. - * @return Google_Service_Doubleclicksearch_Report - */ - public function get($reportId, $optParams = array()) - { - $params = array('reportId' => $reportId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Doubleclicksearch_Report"); - } - /** - * Downloads a report file encoded in UTF-8. (reports.getFile) - * - * @param string $reportId ID of the report. - * @param int $reportFragment The index of the report fragment to download. - * @param array $optParams Optional parameters. - */ - public function getFile($reportId, $reportFragment, $optParams = array()) - { - $params = array('reportId' => $reportId, 'reportFragment' => $reportFragment); - $params = array_merge($params, $optParams); - return $this->call('getFile', array($params)); - } - /** - * Inserts a report request into the reporting system. (reports.request) - * - * @param Google_Service_Doubleclicksearch_ReportRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Doubleclicksearch_Report - */ - public function request(Google_Service_Doubleclicksearch_ReportRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('request', array($params), "Google_Service_Doubleclicksearch_Report"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/Resource/SavedColumns.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/Resource/SavedColumns.php deleted file mode 100644 index dba4763a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/Resource/SavedColumns.php +++ /dev/null @@ -1,43 +0,0 @@ - - * $doubleclicksearchService = new Google_Service_Doubleclicksearch(...); - * $savedColumns = $doubleclicksearchService->savedColumns; - * - */ -class Google_Service_Doubleclicksearch_Resource_SavedColumns extends Google_Service_Resource -{ - /** - * Retrieve the list of saved columns for a specified advertiser. - * (savedColumns.listSavedColumns) - * - * @param string $agencyId DS ID of the agency. - * @param string $advertiserId DS ID of the advertiser. - * @param array $optParams Optional parameters. - * @return Google_Service_Doubleclicksearch_SavedColumnList - */ - public function listSavedColumns($agencyId, $advertiserId, $optParams = array()) - { - $params = array('agencyId' => $agencyId, 'advertiserId' => $advertiserId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Doubleclicksearch_SavedColumnList"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/SavedColumn.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/SavedColumn.php deleted file mode 100644 index 85aa75de..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/SavedColumn.php +++ /dev/null @@ -1,48 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setSavedColumnName($savedColumnName) - { - $this->savedColumnName = $savedColumnName; - } - public function getSavedColumnName() - { - return $this->savedColumnName; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/SavedColumnList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/SavedColumnList.php deleted file mode 100644 index c09e4dbf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/SavedColumnList.php +++ /dev/null @@ -1,47 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Doubleclicksearch_SavedColumn - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/UpdateAvailabilityRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/UpdateAvailabilityRequest.php deleted file mode 100644 index 0f709f71..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/UpdateAvailabilityRequest.php +++ /dev/null @@ -1,38 +0,0 @@ -availabilities = $availabilities; - } - /** - * @return Google_Service_Doubleclicksearch_Availability - */ - public function getAvailabilities() - { - return $this->availabilities; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/UpdateAvailabilityResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/UpdateAvailabilityResponse.php deleted file mode 100644 index 42309419..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Doubleclicksearch/UpdateAvailabilityResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -availabilities = $availabilities; - } - /** - * @return Google_Service_Doubleclicksearch_Availability - */ - public function getAvailabilities() - { - return $this->availabilities; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive.php deleted file mode 100644 index f2850415..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive.php +++ /dev/null @@ -1,1140 +0,0 @@ - - * Manages files in Drive including uploading, downloading, searching, detecting - * changes, and updating sharing permissions.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Drive extends Google_Service -{ - /** See, edit, create, and delete all of your Google Drive files. */ - const DRIVE = - "https://www.googleapis.com/auth/drive"; - /** View and manage its own configuration data in your Google Drive. */ - const DRIVE_APPDATA = - "https://www.googleapis.com/auth/drive.appdata"; - /** View and manage Google Drive files and folders that you have opened or created with this app. */ - const DRIVE_FILE = - "https://www.googleapis.com/auth/drive.file"; - /** View and manage metadata of files in your Google Drive. */ - const DRIVE_METADATA = - "https://www.googleapis.com/auth/drive.metadata"; - /** View metadata for files in your Google Drive. */ - const DRIVE_METADATA_READONLY = - "https://www.googleapis.com/auth/drive.metadata.readonly"; - /** View the photos, videos and albums in your Google Photos. */ - const DRIVE_PHOTOS_READONLY = - "https://www.googleapis.com/auth/drive.photos.readonly"; - /** See and download all your Google Drive files. */ - const DRIVE_READONLY = - "https://www.googleapis.com/auth/drive.readonly"; - /** Modify your Google Apps Script scripts' behavior. */ - const DRIVE_SCRIPTS = - "https://www.googleapis.com/auth/drive.scripts"; - - public $about; - public $changes; - public $channels; - public $comments; - public $drives; - public $files; - public $permissions; - public $replies; - public $revisions; - public $teamdrives; - - /** - * Constructs the internal representation of the Drive service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://www.googleapis.com/'; - $this->servicePath = 'drive/v3/'; - $this->batchPath = 'batch/drive/v3'; - $this->version = 'v3'; - $this->serviceName = 'drive'; - - $this->about = new Google_Service_Drive_Resource_About( - $this, - $this->serviceName, - 'about', - array( - 'methods' => array( - 'get' => array( - 'path' => 'about', - 'httpMethod' => 'GET', - 'parameters' => array(), - ), - ) - ) - ); - $this->changes = new Google_Service_Drive_Resource_Changes( - $this, - $this->serviceName, - 'changes', - array( - 'methods' => array( - 'getStartPageToken' => array( - 'path' => 'changes/startPageToken', - 'httpMethod' => 'GET', - 'parameters' => array( - 'driveId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'supportsAllDrives' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'supportsTeamDrives' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'teamDriveId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'changes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'driveId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'includeCorpusRemovals' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'includeItemsFromAllDrives' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'includeRemoved' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'includeTeamDriveItems' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'restrictToMyDrive' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'spaces' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'supportsAllDrives' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'supportsTeamDrives' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'teamDriveId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'watch' => array( - 'path' => 'changes/watch', - 'httpMethod' => 'POST', - 'parameters' => array( - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'driveId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'includeCorpusRemovals' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'includeItemsFromAllDrives' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'includeRemoved' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'includeTeamDriveItems' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'restrictToMyDrive' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'spaces' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'supportsAllDrives' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'supportsTeamDrives' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'teamDriveId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->channels = new Google_Service_Drive_Resource_Channels( - $this, - $this->serviceName, - 'channels', - array( - 'methods' => array( - 'stop' => array( - 'path' => 'channels/stop', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->comments = new Google_Service_Drive_Resource_Comments( - $this, - $this->serviceName, - 'comments', - array( - 'methods' => array( - 'create' => array( - 'path' => 'files/{fileId}/comments', - 'httpMethod' => 'POST', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'files/{fileId}/comments/{commentId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'commentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'files/{fileId}/comments/{commentId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'commentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'includeDeleted' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'list' => array( - 'path' => 'files/{fileId}/comments', - 'httpMethod' => 'GET', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'includeDeleted' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'startModifiedTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'files/{fileId}/comments/{commentId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'commentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->drives = new Google_Service_Drive_Resource_Drives( - $this, - $this->serviceName, - 'drives', - array( - 'methods' => array( - 'create' => array( - 'path' => 'drives', - 'httpMethod' => 'POST', - 'parameters' => array( - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'drives/{driveId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'driveId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'drives/{driveId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'driveId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'useDomainAdminAccess' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'hide' => array( - 'path' => 'drives/{driveId}/hide', - 'httpMethod' => 'POST', - 'parameters' => array( - 'driveId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'drives', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'q' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'useDomainAdminAccess' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'unhide' => array( - 'path' => 'drives/{driveId}/unhide', - 'httpMethod' => 'POST', - 'parameters' => array( - 'driveId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'drives/{driveId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'driveId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'useDomainAdminAccess' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ), - ) - ) - ); - $this->files = new Google_Service_Drive_Resource_Files( - $this, - $this->serviceName, - 'files', - array( - 'methods' => array( - 'copy' => array( - 'path' => 'files/{fileId}/copy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'ignoreDefaultVisibility' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'keepRevisionForever' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'ocrLanguage' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'supportsAllDrives' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'supportsTeamDrives' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'create' => array( - 'path' => 'files', - 'httpMethod' => 'POST', - 'parameters' => array( - 'ignoreDefaultVisibility' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'keepRevisionForever' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'ocrLanguage' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'supportsAllDrives' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'supportsTeamDrives' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'useContentAsIndexableText' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'delete' => array( - 'path' => 'files/{fileId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'supportsAllDrives' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'supportsTeamDrives' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'emptyTrash' => array( - 'path' => 'files/trash', - 'httpMethod' => 'DELETE', - 'parameters' => array(), - ),'export' => array( - 'path' => 'files/{fileId}/export', - 'httpMethod' => 'GET', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'mimeType' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'generateIds' => array( - 'path' => 'files/generateIds', - 'httpMethod' => 'GET', - 'parameters' => array( - 'count' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'space' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'files/{fileId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'acknowledgeAbuse' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'supportsAllDrives' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'supportsTeamDrives' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'list' => array( - 'path' => 'files', - 'httpMethod' => 'GET', - 'parameters' => array( - 'corpora' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'corpus' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'driveId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'includeItemsFromAllDrives' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'includeTeamDriveItems' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'q' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'spaces' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'supportsAllDrives' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'supportsTeamDrives' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'teamDriveId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'files/{fileId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'addParents' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'keepRevisionForever' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'ocrLanguage' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'removeParents' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'supportsAllDrives' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'supportsTeamDrives' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'useContentAsIndexableText' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'watch' => array( - 'path' => 'files/{fileId}/watch', - 'httpMethod' => 'POST', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'acknowledgeAbuse' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'supportsAllDrives' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'supportsTeamDrives' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ), - ) - ) - ); - $this->permissions = new Google_Service_Drive_Resource_Permissions( - $this, - $this->serviceName, - 'permissions', - array( - 'methods' => array( - 'create' => array( - 'path' => 'files/{fileId}/permissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'emailMessage' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sendNotificationEmail' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'supportsAllDrives' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'supportsTeamDrives' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'transferOwnership' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'useDomainAdminAccess' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'delete' => array( - 'path' => 'files/{fileId}/permissions/{permissionId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'permissionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'supportsAllDrives' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'supportsTeamDrives' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'useDomainAdminAccess' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'get' => array( - 'path' => 'files/{fileId}/permissions/{permissionId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'permissionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'supportsAllDrives' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'supportsTeamDrives' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'useDomainAdminAccess' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'list' => array( - 'path' => 'files/{fileId}/permissions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'supportsAllDrives' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'supportsTeamDrives' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'useDomainAdminAccess' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'update' => array( - 'path' => 'files/{fileId}/permissions/{permissionId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'permissionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'removeExpiration' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'supportsAllDrives' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'supportsTeamDrives' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'transferOwnership' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'useDomainAdminAccess' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ), - ) - ) - ); - $this->replies = new Google_Service_Drive_Resource_Replies( - $this, - $this->serviceName, - 'replies', - array( - 'methods' => array( - 'create' => array( - 'path' => 'files/{fileId}/comments/{commentId}/replies', - 'httpMethod' => 'POST', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'commentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'files/{fileId}/comments/{commentId}/replies/{replyId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'commentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'replyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'files/{fileId}/comments/{commentId}/replies/{replyId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'commentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'replyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'includeDeleted' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'list' => array( - 'path' => 'files/{fileId}/comments/{commentId}/replies', - 'httpMethod' => 'GET', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'commentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'includeDeleted' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'files/{fileId}/comments/{commentId}/replies/{replyId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'commentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'replyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->revisions = new Google_Service_Drive_Resource_Revisions( - $this, - $this->serviceName, - 'revisions', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'files/{fileId}/revisions/{revisionId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'revisionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'files/{fileId}/revisions/{revisionId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'revisionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'acknowledgeAbuse' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'list' => array( - 'path' => 'files/{fileId}/revisions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'files/{fileId}/revisions/{revisionId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'fileId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'revisionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->teamdrives = new Google_Service_Drive_Resource_Teamdrives( - $this, - $this->serviceName, - 'teamdrives', - array( - 'methods' => array( - 'create' => array( - 'path' => 'teamdrives', - 'httpMethod' => 'POST', - 'parameters' => array( - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'teamdrives/{teamDriveId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'teamDriveId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'teamdrives/{teamDriveId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'teamDriveId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'useDomainAdminAccess' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'list' => array( - 'path' => 'teamdrives', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'q' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'useDomainAdminAccess' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'update' => array( - 'path' => 'teamdrives/{teamDriveId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'teamDriveId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'useDomainAdminAccess' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/About.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/About.php deleted file mode 100644 index f996eec6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/About.php +++ /dev/null @@ -1,167 +0,0 @@ -appInstalled = $appInstalled; - } - public function getAppInstalled() - { - return $this->appInstalled; - } - public function setCanCreateDrives($canCreateDrives) - { - $this->canCreateDrives = $canCreateDrives; - } - public function getCanCreateDrives() - { - return $this->canCreateDrives; - } - public function setCanCreateTeamDrives($canCreateTeamDrives) - { - $this->canCreateTeamDrives = $canCreateTeamDrives; - } - public function getCanCreateTeamDrives() - { - return $this->canCreateTeamDrives; - } - /** - * @param Google_Service_Drive_AboutDriveThemes - */ - public function setDriveThemes($driveThemes) - { - $this->driveThemes = $driveThemes; - } - /** - * @return Google_Service_Drive_AboutDriveThemes - */ - public function getDriveThemes() - { - return $this->driveThemes; - } - public function setExportFormats($exportFormats) - { - $this->exportFormats = $exportFormats; - } - public function getExportFormats() - { - return $this->exportFormats; - } - public function setFolderColorPalette($folderColorPalette) - { - $this->folderColorPalette = $folderColorPalette; - } - public function getFolderColorPalette() - { - return $this->folderColorPalette; - } - public function setImportFormats($importFormats) - { - $this->importFormats = $importFormats; - } - public function getImportFormats() - { - return $this->importFormats; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setMaxImportSizes($maxImportSizes) - { - $this->maxImportSizes = $maxImportSizes; - } - public function getMaxImportSizes() - { - return $this->maxImportSizes; - } - public function setMaxUploadSize($maxUploadSize) - { - $this->maxUploadSize = $maxUploadSize; - } - public function getMaxUploadSize() - { - return $this->maxUploadSize; - } - /** - * @param Google_Service_Drive_AboutStorageQuota - */ - public function setStorageQuota(Google_Service_Drive_AboutStorageQuota $storageQuota) - { - $this->storageQuota = $storageQuota; - } - /** - * @return Google_Service_Drive_AboutStorageQuota - */ - public function getStorageQuota() - { - return $this->storageQuota; - } - /** - * @param Google_Service_Drive_AboutTeamDriveThemes - */ - public function setTeamDriveThemes($teamDriveThemes) - { - $this->teamDriveThemes = $teamDriveThemes; - } - /** - * @return Google_Service_Drive_AboutTeamDriveThemes - */ - public function getTeamDriveThemes() - { - return $this->teamDriveThemes; - } - /** - * @param Google_Service_Drive_User - */ - public function setUser(Google_Service_Drive_User $user) - { - $this->user = $user; - } - /** - * @return Google_Service_Drive_User - */ - public function getUser() - { - return $this->user; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/AboutDriveThemes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/AboutDriveThemes.php deleted file mode 100644 index 75c003f8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/AboutDriveThemes.php +++ /dev/null @@ -1,48 +0,0 @@ -backgroundImageLink = $backgroundImageLink; - } - public function getBackgroundImageLink() - { - return $this->backgroundImageLink; - } - public function setColorRgb($colorRgb) - { - $this->colorRgb = $colorRgb; - } - public function getColorRgb() - { - return $this->colorRgb; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/AboutStorageQuota.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/AboutStorageQuota.php deleted file mode 100644 index 5039fc51..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/AboutStorageQuota.php +++ /dev/null @@ -1,57 +0,0 @@ -limit = $limit; - } - public function getLimit() - { - return $this->limit; - } - public function setUsage($usage) - { - $this->usage = $usage; - } - public function getUsage() - { - return $this->usage; - } - public function setUsageInDrive($usageInDrive) - { - $this->usageInDrive = $usageInDrive; - } - public function getUsageInDrive() - { - return $this->usageInDrive; - } - public function setUsageInDriveTrash($usageInDriveTrash) - { - $this->usageInDriveTrash = $usageInDriveTrash; - } - public function getUsageInDriveTrash() - { - return $this->usageInDriveTrash; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/AboutTeamDriveThemes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/AboutTeamDriveThemes.php deleted file mode 100644 index 4a8f3a59..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/AboutTeamDriveThemes.php +++ /dev/null @@ -1,48 +0,0 @@ -backgroundImageLink = $backgroundImageLink; - } - public function getBackgroundImageLink() - { - return $this->backgroundImageLink; - } - public function setColorRgb($colorRgb) - { - $this->colorRgb = $colorRgb; - } - public function getColorRgb() - { - return $this->colorRgb; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/Change.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/Change.php deleted file mode 100644 index cf02a52e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/Change.php +++ /dev/null @@ -1,141 +0,0 @@ -changeType = $changeType; - } - public function getChangeType() - { - return $this->changeType; - } - /** - * @param Google_Service_Drive_Drive - */ - public function setDrive(Google_Service_Drive_Drive $drive) - { - $this->drive = $drive; - } - /** - * @return Google_Service_Drive_Drive - */ - public function getDrive() - { - return $this->drive; - } - public function setDriveId($driveId) - { - $this->driveId = $driveId; - } - public function getDriveId() - { - return $this->driveId; - } - /** - * @param Google_Service_Drive_DriveFile - */ - public function setFile(Google_Service_Drive_DriveFile $file) - { - $this->file = $file; - } - /** - * @return Google_Service_Drive_DriveFile - */ - public function getFile() - { - return $this->file; - } - public function setFileId($fileId) - { - $this->fileId = $fileId; - } - public function getFileId() - { - return $this->fileId; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setRemoved($removed) - { - $this->removed = $removed; - } - public function getRemoved() - { - return $this->removed; - } - /** - * @param Google_Service_Drive_TeamDrive - */ - public function setTeamDrive(Google_Service_Drive_TeamDrive $teamDrive) - { - $this->teamDrive = $teamDrive; - } - /** - * @return Google_Service_Drive_TeamDrive - */ - public function getTeamDrive() - { - return $this->teamDrive; - } - public function setTeamDriveId($teamDriveId) - { - $this->teamDriveId = $teamDriveId; - } - public function getTeamDriveId() - { - return $this->teamDriveId; - } - public function setTime($time) - { - $this->time = $time; - } - public function getTime() - { - return $this->time; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/ChangeList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/ChangeList.php deleted file mode 100644 index e5044b1f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/ChangeList.php +++ /dev/null @@ -1,65 +0,0 @@ -changes = $changes; - } - /** - * @return Google_Service_Drive_Change - */ - public function getChanges() - { - return $this->changes; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNewStartPageToken($newStartPageToken) - { - $this->newStartPageToken = $newStartPageToken; - } - public function getNewStartPageToken() - { - return $this->newStartPageToken; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/Channel.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/Channel.php deleted file mode 100644 index 6c693045..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/Channel.php +++ /dev/null @@ -1,111 +0,0 @@ -address = $address; - } - public function getAddress() - { - return $this->address; - } - public function setExpiration($expiration) - { - $this->expiration = $expiration; - } - public function getExpiration() - { - return $this->expiration; - } - 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 setParams($params) - { - $this->params = $params; - } - public function getParams() - { - return $this->params; - } - public function setPayload($payload) - { - $this->payload = $payload; - } - public function getPayload() - { - return $this->payload; - } - public function setResourceId($resourceId) - { - $this->resourceId = $resourceId; - } - public function getResourceId() - { - return $this->resourceId; - } - public function setResourceUri($resourceUri) - { - $this->resourceUri = $resourceUri; - } - public function getResourceUri() - { - return $this->resourceUri; - } - public function setToken($token) - { - $this->token = $token; - } - public function getToken() - { - return $this->token; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/Comment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/Comment.php deleted file mode 100644 index d934559a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/Comment.php +++ /dev/null @@ -1,151 +0,0 @@ -anchor = $anchor; - } - public function getAnchor() - { - return $this->anchor; - } - /** - * @param Google_Service_Drive_User - */ - public function setAuthor(Google_Service_Drive_User $author) - { - $this->author = $author; - } - /** - * @return Google_Service_Drive_User - */ - public function getAuthor() - { - return $this->author; - } - public function setContent($content) - { - $this->content = $content; - } - public function getContent() - { - return $this->content; - } - public function setCreatedTime($createdTime) - { - $this->createdTime = $createdTime; - } - public function getCreatedTime() - { - return $this->createdTime; - } - public function setDeleted($deleted) - { - $this->deleted = $deleted; - } - public function getDeleted() - { - return $this->deleted; - } - public function setHtmlContent($htmlContent) - { - $this->htmlContent = $htmlContent; - } - public function getHtmlContent() - { - return $this->htmlContent; - } - 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 setModifiedTime($modifiedTime) - { - $this->modifiedTime = $modifiedTime; - } - public function getModifiedTime() - { - return $this->modifiedTime; - } - /** - * @param Google_Service_Drive_CommentQuotedFileContent - */ - public function setQuotedFileContent(Google_Service_Drive_CommentQuotedFileContent $quotedFileContent) - { - $this->quotedFileContent = $quotedFileContent; - } - /** - * @return Google_Service_Drive_CommentQuotedFileContent - */ - public function getQuotedFileContent() - { - return $this->quotedFileContent; - } - /** - * @param Google_Service_Drive_Reply - */ - public function setReplies($replies) - { - $this->replies = $replies; - } - /** - * @return Google_Service_Drive_Reply - */ - public function getReplies() - { - return $this->replies; - } - public function setResolved($resolved) - { - $this->resolved = $resolved; - } - public function getResolved() - { - return $this->resolved; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/CommentList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/CommentList.php deleted file mode 100644 index 7698d3a0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/CommentList.php +++ /dev/null @@ -1,56 +0,0 @@ -comments = $comments; - } - /** - * @return Google_Service_Drive_Comment - */ - public function getComments() - { - return $this->comments; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/CommentQuotedFileContent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/CommentQuotedFileContent.php deleted file mode 100644 index 82214fe7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/CommentQuotedFileContent.php +++ /dev/null @@ -1,39 +0,0 @@ -mimeType = $mimeType; - } - public function getMimeType() - { - return $this->mimeType; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/Drive.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/Drive.php deleted file mode 100644 index 363913f5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/Drive.php +++ /dev/null @@ -1,141 +0,0 @@ -backgroundImageFile = $backgroundImageFile; - } - /** - * @return Google_Service_Drive_DriveBackgroundImageFile - */ - public function getBackgroundImageFile() - { - return $this->backgroundImageFile; - } - public function setBackgroundImageLink($backgroundImageLink) - { - $this->backgroundImageLink = $backgroundImageLink; - } - public function getBackgroundImageLink() - { - return $this->backgroundImageLink; - } - /** - * @param Google_Service_Drive_DriveCapabilities - */ - public function setCapabilities(Google_Service_Drive_DriveCapabilities $capabilities) - { - $this->capabilities = $capabilities; - } - /** - * @return Google_Service_Drive_DriveCapabilities - */ - public function getCapabilities() - { - return $this->capabilities; - } - public function setColorRgb($colorRgb) - { - $this->colorRgb = $colorRgb; - } - public function getColorRgb() - { - return $this->colorRgb; - } - public function setCreatedTime($createdTime) - { - $this->createdTime = $createdTime; - } - public function getCreatedTime() - { - return $this->createdTime; - } - public function setHidden($hidden) - { - $this->hidden = $hidden; - } - public function getHidden() - { - return $this->hidden; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Drive_DriveRestrictions - */ - public function setRestrictions(Google_Service_Drive_DriveRestrictions $restrictions) - { - $this->restrictions = $restrictions; - } - /** - * @return Google_Service_Drive_DriveRestrictions - */ - public function getRestrictions() - { - return $this->restrictions; - } - public function setThemeId($themeId) - { - $this->themeId = $themeId; - } - public function getThemeId() - { - return $this->themeId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/DriveBackgroundImageFile.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/DriveBackgroundImageFile.php deleted file mode 100644 index 87bdc6f3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/DriveBackgroundImageFile.php +++ /dev/null @@ -1,57 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setWidth($width) - { - $this->width = $width; - } - public function getWidth() - { - return $this->width; - } - public function setXCoordinate($xCoordinate) - { - $this->xCoordinate = $xCoordinate; - } - public function getXCoordinate() - { - return $this->xCoordinate; - } - public function setYCoordinate($yCoordinate) - { - $this->yCoordinate = $yCoordinate; - } - public function getYCoordinate() - { - return $this->yCoordinate; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/DriveCapabilities.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/DriveCapabilities.php deleted file mode 100644 index c48775c5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/DriveCapabilities.php +++ /dev/null @@ -1,183 +0,0 @@ -canAddChildren = $canAddChildren; - } - public function getCanAddChildren() - { - return $this->canAddChildren; - } - public function setCanChangeCopyRequiresWriterPermissionRestriction($canChangeCopyRequiresWriterPermissionRestriction) - { - $this->canChangeCopyRequiresWriterPermissionRestriction = $canChangeCopyRequiresWriterPermissionRestriction; - } - public function getCanChangeCopyRequiresWriterPermissionRestriction() - { - return $this->canChangeCopyRequiresWriterPermissionRestriction; - } - public function setCanChangeDomainUsersOnlyRestriction($canChangeDomainUsersOnlyRestriction) - { - $this->canChangeDomainUsersOnlyRestriction = $canChangeDomainUsersOnlyRestriction; - } - public function getCanChangeDomainUsersOnlyRestriction() - { - return $this->canChangeDomainUsersOnlyRestriction; - } - public function setCanChangeDriveBackground($canChangeDriveBackground) - { - $this->canChangeDriveBackground = $canChangeDriveBackground; - } - public function getCanChangeDriveBackground() - { - return $this->canChangeDriveBackground; - } - public function setCanChangeDriveMembersOnlyRestriction($canChangeDriveMembersOnlyRestriction) - { - $this->canChangeDriveMembersOnlyRestriction = $canChangeDriveMembersOnlyRestriction; - } - public function getCanChangeDriveMembersOnlyRestriction() - { - return $this->canChangeDriveMembersOnlyRestriction; - } - public function setCanComment($canComment) - { - $this->canComment = $canComment; - } - public function getCanComment() - { - return $this->canComment; - } - public function setCanCopy($canCopy) - { - $this->canCopy = $canCopy; - } - public function getCanCopy() - { - return $this->canCopy; - } - public function setCanDeleteChildren($canDeleteChildren) - { - $this->canDeleteChildren = $canDeleteChildren; - } - public function getCanDeleteChildren() - { - return $this->canDeleteChildren; - } - public function setCanDeleteDrive($canDeleteDrive) - { - $this->canDeleteDrive = $canDeleteDrive; - } - public function getCanDeleteDrive() - { - return $this->canDeleteDrive; - } - public function setCanDownload($canDownload) - { - $this->canDownload = $canDownload; - } - public function getCanDownload() - { - return $this->canDownload; - } - public function setCanEdit($canEdit) - { - $this->canEdit = $canEdit; - } - public function getCanEdit() - { - return $this->canEdit; - } - public function setCanListChildren($canListChildren) - { - $this->canListChildren = $canListChildren; - } - public function getCanListChildren() - { - return $this->canListChildren; - } - public function setCanManageMembers($canManageMembers) - { - $this->canManageMembers = $canManageMembers; - } - public function getCanManageMembers() - { - return $this->canManageMembers; - } - public function setCanReadRevisions($canReadRevisions) - { - $this->canReadRevisions = $canReadRevisions; - } - public function getCanReadRevisions() - { - return $this->canReadRevisions; - } - public function setCanRename($canRename) - { - $this->canRename = $canRename; - } - public function getCanRename() - { - return $this->canRename; - } - public function setCanRenameDrive($canRenameDrive) - { - $this->canRenameDrive = $canRenameDrive; - } - public function getCanRenameDrive() - { - return $this->canRenameDrive; - } - public function setCanShare($canShare) - { - $this->canShare = $canShare; - } - public function getCanShare() - { - return $this->canShare; - } - public function setCanTrashChildren($canTrashChildren) - { - $this->canTrashChildren = $canTrashChildren; - } - public function getCanTrashChildren() - { - return $this->canTrashChildren; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/DriveFile.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/DriveFile.php deleted file mode 100644 index 0f45539b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/DriveFile.php +++ /dev/null @@ -1,580 +0,0 @@ -appProperties = $appProperties; - } - public function getAppProperties() - { - return $this->appProperties; - } - /** - * @param Google_Service_Drive_DriveFileCapabilities - */ - public function setCapabilities(Google_Service_Drive_DriveFileCapabilities $capabilities) - { - $this->capabilities = $capabilities; - } - /** - * @return Google_Service_Drive_DriveFileCapabilities - */ - public function getCapabilities() - { - return $this->capabilities; - } - /** - * @param Google_Service_Drive_DriveFileContentHints - */ - public function setContentHints(Google_Service_Drive_DriveFileContentHints $contentHints) - { - $this->contentHints = $contentHints; - } - /** - * @return Google_Service_Drive_DriveFileContentHints - */ - public function getContentHints() - { - return $this->contentHints; - } - public function setCopyRequiresWriterPermission($copyRequiresWriterPermission) - { - $this->copyRequiresWriterPermission = $copyRequiresWriterPermission; - } - public function getCopyRequiresWriterPermission() - { - return $this->copyRequiresWriterPermission; - } - public function setCreatedTime($createdTime) - { - $this->createdTime = $createdTime; - } - public function getCreatedTime() - { - return $this->createdTime; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDriveId($driveId) - { - $this->driveId = $driveId; - } - public function getDriveId() - { - return $this->driveId; - } - public function setExplicitlyTrashed($explicitlyTrashed) - { - $this->explicitlyTrashed = $explicitlyTrashed; - } - public function getExplicitlyTrashed() - { - return $this->explicitlyTrashed; - } - public function setExportLinks($exportLinks) - { - $this->exportLinks = $exportLinks; - } - public function getExportLinks() - { - return $this->exportLinks; - } - public function setFileExtension($fileExtension) - { - $this->fileExtension = $fileExtension; - } - public function getFileExtension() - { - return $this->fileExtension; - } - public function setFolderColorRgb($folderColorRgb) - { - $this->folderColorRgb = $folderColorRgb; - } - public function getFolderColorRgb() - { - return $this->folderColorRgb; - } - public function setFullFileExtension($fullFileExtension) - { - $this->fullFileExtension = $fullFileExtension; - } - public function getFullFileExtension() - { - return $this->fullFileExtension; - } - public function setHasAugmentedPermissions($hasAugmentedPermissions) - { - $this->hasAugmentedPermissions = $hasAugmentedPermissions; - } - public function getHasAugmentedPermissions() - { - return $this->hasAugmentedPermissions; - } - public function setHasThumbnail($hasThumbnail) - { - $this->hasThumbnail = $hasThumbnail; - } - public function getHasThumbnail() - { - return $this->hasThumbnail; - } - public function setHeadRevisionId($headRevisionId) - { - $this->headRevisionId = $headRevisionId; - } - public function getHeadRevisionId() - { - return $this->headRevisionId; - } - public function setIconLink($iconLink) - { - $this->iconLink = $iconLink; - } - public function getIconLink() - { - return $this->iconLink; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Drive_DriveFileImageMediaMetadata - */ - public function setImageMediaMetadata(Google_Service_Drive_DriveFileImageMediaMetadata $imageMediaMetadata) - { - $this->imageMediaMetadata = $imageMediaMetadata; - } - /** - * @return Google_Service_Drive_DriveFileImageMediaMetadata - */ - public function getImageMediaMetadata() - { - return $this->imageMediaMetadata; - } - public function setIsAppAuthorized($isAppAuthorized) - { - $this->isAppAuthorized = $isAppAuthorized; - } - public function getIsAppAuthorized() - { - return $this->isAppAuthorized; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Drive_User - */ - public function setLastModifyingUser(Google_Service_Drive_User $lastModifyingUser) - { - $this->lastModifyingUser = $lastModifyingUser; - } - /** - * @return Google_Service_Drive_User - */ - public function getLastModifyingUser() - { - return $this->lastModifyingUser; - } - public function setMd5Checksum($md5Checksum) - { - $this->md5Checksum = $md5Checksum; - } - public function getMd5Checksum() - { - return $this->md5Checksum; - } - public function setMimeType($mimeType) - { - $this->mimeType = $mimeType; - } - public function getMimeType() - { - return $this->mimeType; - } - public function setModifiedByMe($modifiedByMe) - { - $this->modifiedByMe = $modifiedByMe; - } - public function getModifiedByMe() - { - return $this->modifiedByMe; - } - public function setModifiedByMeTime($modifiedByMeTime) - { - $this->modifiedByMeTime = $modifiedByMeTime; - } - public function getModifiedByMeTime() - { - return $this->modifiedByMeTime; - } - public function setModifiedTime($modifiedTime) - { - $this->modifiedTime = $modifiedTime; - } - public function getModifiedTime() - { - return $this->modifiedTime; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOriginalFilename($originalFilename) - { - $this->originalFilename = $originalFilename; - } - public function getOriginalFilename() - { - return $this->originalFilename; - } - public function setOwnedByMe($ownedByMe) - { - $this->ownedByMe = $ownedByMe; - } - public function getOwnedByMe() - { - return $this->ownedByMe; - } - /** - * @param Google_Service_Drive_User - */ - public function setOwners($owners) - { - $this->owners = $owners; - } - /** - * @return Google_Service_Drive_User - */ - public function getOwners() - { - return $this->owners; - } - public function setParents($parents) - { - $this->parents = $parents; - } - public function getParents() - { - return $this->parents; - } - public function setPermissionIds($permissionIds) - { - $this->permissionIds = $permissionIds; - } - public function getPermissionIds() - { - return $this->permissionIds; - } - /** - * @param Google_Service_Drive_Permission - */ - public function setPermissions($permissions) - { - $this->permissions = $permissions; - } - /** - * @return Google_Service_Drive_Permission - */ - public function getPermissions() - { - return $this->permissions; - } - public function setProperties($properties) - { - $this->properties = $properties; - } - public function getProperties() - { - return $this->properties; - } - public function setQuotaBytesUsed($quotaBytesUsed) - { - $this->quotaBytesUsed = $quotaBytesUsed; - } - public function getQuotaBytesUsed() - { - return $this->quotaBytesUsed; - } - public function setShared($shared) - { - $this->shared = $shared; - } - public function getShared() - { - return $this->shared; - } - public function setSharedWithMeTime($sharedWithMeTime) - { - $this->sharedWithMeTime = $sharedWithMeTime; - } - public function getSharedWithMeTime() - { - return $this->sharedWithMeTime; - } - /** - * @param Google_Service_Drive_User - */ - public function setSharingUser(Google_Service_Drive_User $sharingUser) - { - $this->sharingUser = $sharingUser; - } - /** - * @return Google_Service_Drive_User - */ - public function getSharingUser() - { - return $this->sharingUser; - } - public function setSize($size) - { - $this->size = $size; - } - public function getSize() - { - return $this->size; - } - public function setSpaces($spaces) - { - $this->spaces = $spaces; - } - public function getSpaces() - { - return $this->spaces; - } - public function setStarred($starred) - { - $this->starred = $starred; - } - public function getStarred() - { - return $this->starred; - } - public function setTeamDriveId($teamDriveId) - { - $this->teamDriveId = $teamDriveId; - } - public function getTeamDriveId() - { - return $this->teamDriveId; - } - public function setThumbnailLink($thumbnailLink) - { - $this->thumbnailLink = $thumbnailLink; - } - public function getThumbnailLink() - { - return $this->thumbnailLink; - } - public function setThumbnailVersion($thumbnailVersion) - { - $this->thumbnailVersion = $thumbnailVersion; - } - public function getThumbnailVersion() - { - return $this->thumbnailVersion; - } - public function setTrashed($trashed) - { - $this->trashed = $trashed; - } - public function getTrashed() - { - return $this->trashed; - } - public function setTrashedTime($trashedTime) - { - $this->trashedTime = $trashedTime; - } - public function getTrashedTime() - { - return $this->trashedTime; - } - /** - * @param Google_Service_Drive_User - */ - public function setTrashingUser(Google_Service_Drive_User $trashingUser) - { - $this->trashingUser = $trashingUser; - } - /** - * @return Google_Service_Drive_User - */ - public function getTrashingUser() - { - return $this->trashingUser; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } - /** - * @param Google_Service_Drive_DriveFileVideoMediaMetadata - */ - public function setVideoMediaMetadata(Google_Service_Drive_DriveFileVideoMediaMetadata $videoMediaMetadata) - { - $this->videoMediaMetadata = $videoMediaMetadata; - } - /** - * @return Google_Service_Drive_DriveFileVideoMediaMetadata - */ - public function getVideoMediaMetadata() - { - return $this->videoMediaMetadata; - } - public function setViewedByMe($viewedByMe) - { - $this->viewedByMe = $viewedByMe; - } - public function getViewedByMe() - { - return $this->viewedByMe; - } - public function setViewedByMeTime($viewedByMeTime) - { - $this->viewedByMeTime = $viewedByMeTime; - } - public function getViewedByMeTime() - { - return $this->viewedByMeTime; - } - public function setViewersCanCopyContent($viewersCanCopyContent) - { - $this->viewersCanCopyContent = $viewersCanCopyContent; - } - public function getViewersCanCopyContent() - { - return $this->viewersCanCopyContent; - } - public function setWebContentLink($webContentLink) - { - $this->webContentLink = $webContentLink; - } - public function getWebContentLink() - { - return $this->webContentLink; - } - public function setWebViewLink($webViewLink) - { - $this->webViewLink = $webViewLink; - } - public function getWebViewLink() - { - return $this->webViewLink; - } - public function setWritersCanShare($writersCanShare) - { - $this->writersCanShare = $writersCanShare; - } - public function getWritersCanShare() - { - return $this->writersCanShare; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/DriveFileCapabilities.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/DriveFileCapabilities.php deleted file mode 100644 index c2b0d02e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/DriveFileCapabilities.php +++ /dev/null @@ -1,291 +0,0 @@ -canAddChildren = $canAddChildren; - } - public function getCanAddChildren() - { - return $this->canAddChildren; - } - public function setCanChangeCopyRequiresWriterPermission($canChangeCopyRequiresWriterPermission) - { - $this->canChangeCopyRequiresWriterPermission = $canChangeCopyRequiresWriterPermission; - } - public function getCanChangeCopyRequiresWriterPermission() - { - return $this->canChangeCopyRequiresWriterPermission; - } - public function setCanChangeViewersCanCopyContent($canChangeViewersCanCopyContent) - { - $this->canChangeViewersCanCopyContent = $canChangeViewersCanCopyContent; - } - public function getCanChangeViewersCanCopyContent() - { - return $this->canChangeViewersCanCopyContent; - } - public function setCanComment($canComment) - { - $this->canComment = $canComment; - } - public function getCanComment() - { - return $this->canComment; - } - public function setCanCopy($canCopy) - { - $this->canCopy = $canCopy; - } - public function getCanCopy() - { - return $this->canCopy; - } - public function setCanDelete($canDelete) - { - $this->canDelete = $canDelete; - } - public function getCanDelete() - { - return $this->canDelete; - } - public function setCanDeleteChildren($canDeleteChildren) - { - $this->canDeleteChildren = $canDeleteChildren; - } - public function getCanDeleteChildren() - { - return $this->canDeleteChildren; - } - public function setCanDownload($canDownload) - { - $this->canDownload = $canDownload; - } - public function getCanDownload() - { - return $this->canDownload; - } - public function setCanEdit($canEdit) - { - $this->canEdit = $canEdit; - } - public function getCanEdit() - { - return $this->canEdit; - } - public function setCanListChildren($canListChildren) - { - $this->canListChildren = $canListChildren; - } - public function getCanListChildren() - { - return $this->canListChildren; - } - public function setCanModifyContent($canModifyContent) - { - $this->canModifyContent = $canModifyContent; - } - public function getCanModifyContent() - { - return $this->canModifyContent; - } - public function setCanMoveChildrenOutOfDrive($canMoveChildrenOutOfDrive) - { - $this->canMoveChildrenOutOfDrive = $canMoveChildrenOutOfDrive; - } - public function getCanMoveChildrenOutOfDrive() - { - return $this->canMoveChildrenOutOfDrive; - } - public function setCanMoveChildrenOutOfTeamDrive($canMoveChildrenOutOfTeamDrive) - { - $this->canMoveChildrenOutOfTeamDrive = $canMoveChildrenOutOfTeamDrive; - } - public function getCanMoveChildrenOutOfTeamDrive() - { - return $this->canMoveChildrenOutOfTeamDrive; - } - public function setCanMoveChildrenWithinDrive($canMoveChildrenWithinDrive) - { - $this->canMoveChildrenWithinDrive = $canMoveChildrenWithinDrive; - } - public function getCanMoveChildrenWithinDrive() - { - return $this->canMoveChildrenWithinDrive; - } - public function setCanMoveChildrenWithinTeamDrive($canMoveChildrenWithinTeamDrive) - { - $this->canMoveChildrenWithinTeamDrive = $canMoveChildrenWithinTeamDrive; - } - public function getCanMoveChildrenWithinTeamDrive() - { - return $this->canMoveChildrenWithinTeamDrive; - } - public function setCanMoveItemIntoTeamDrive($canMoveItemIntoTeamDrive) - { - $this->canMoveItemIntoTeamDrive = $canMoveItemIntoTeamDrive; - } - public function getCanMoveItemIntoTeamDrive() - { - return $this->canMoveItemIntoTeamDrive; - } - public function setCanMoveItemOutOfDrive($canMoveItemOutOfDrive) - { - $this->canMoveItemOutOfDrive = $canMoveItemOutOfDrive; - } - public function getCanMoveItemOutOfDrive() - { - return $this->canMoveItemOutOfDrive; - } - public function setCanMoveItemOutOfTeamDrive($canMoveItemOutOfTeamDrive) - { - $this->canMoveItemOutOfTeamDrive = $canMoveItemOutOfTeamDrive; - } - public function getCanMoveItemOutOfTeamDrive() - { - return $this->canMoveItemOutOfTeamDrive; - } - public function setCanMoveItemWithinDrive($canMoveItemWithinDrive) - { - $this->canMoveItemWithinDrive = $canMoveItemWithinDrive; - } - public function getCanMoveItemWithinDrive() - { - return $this->canMoveItemWithinDrive; - } - public function setCanMoveItemWithinTeamDrive($canMoveItemWithinTeamDrive) - { - $this->canMoveItemWithinTeamDrive = $canMoveItemWithinTeamDrive; - } - public function getCanMoveItemWithinTeamDrive() - { - return $this->canMoveItemWithinTeamDrive; - } - public function setCanMoveTeamDriveItem($canMoveTeamDriveItem) - { - $this->canMoveTeamDriveItem = $canMoveTeamDriveItem; - } - public function getCanMoveTeamDriveItem() - { - return $this->canMoveTeamDriveItem; - } - public function setCanReadDrive($canReadDrive) - { - $this->canReadDrive = $canReadDrive; - } - public function getCanReadDrive() - { - return $this->canReadDrive; - } - public function setCanReadRevisions($canReadRevisions) - { - $this->canReadRevisions = $canReadRevisions; - } - public function getCanReadRevisions() - { - return $this->canReadRevisions; - } - public function setCanReadTeamDrive($canReadTeamDrive) - { - $this->canReadTeamDrive = $canReadTeamDrive; - } - public function getCanReadTeamDrive() - { - return $this->canReadTeamDrive; - } - public function setCanRemoveChildren($canRemoveChildren) - { - $this->canRemoveChildren = $canRemoveChildren; - } - public function getCanRemoveChildren() - { - return $this->canRemoveChildren; - } - public function setCanRename($canRename) - { - $this->canRename = $canRename; - } - public function getCanRename() - { - return $this->canRename; - } - public function setCanShare($canShare) - { - $this->canShare = $canShare; - } - public function getCanShare() - { - return $this->canShare; - } - public function setCanTrash($canTrash) - { - $this->canTrash = $canTrash; - } - public function getCanTrash() - { - return $this->canTrash; - } - public function setCanTrashChildren($canTrashChildren) - { - $this->canTrashChildren = $canTrashChildren; - } - public function getCanTrashChildren() - { - return $this->canTrashChildren; - } - public function setCanUntrash($canUntrash) - { - $this->canUntrash = $canUntrash; - } - public function getCanUntrash() - { - return $this->canUntrash; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/DriveFileContentHints.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/DriveFileContentHints.php deleted file mode 100644 index 6f57ffc5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/DriveFileContentHints.php +++ /dev/null @@ -1,46 +0,0 @@ -indexableText = $indexableText; - } - public function getIndexableText() - { - return $this->indexableText; - } - /** - * @param Google_Service_Drive_DriveFileContentHintsThumbnail - */ - public function setThumbnail(Google_Service_Drive_DriveFileContentHintsThumbnail $thumbnail) - { - $this->thumbnail = $thumbnail; - } - /** - * @return Google_Service_Drive_DriveFileContentHintsThumbnail - */ - public function getThumbnail() - { - return $this->thumbnail; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/DriveFileContentHintsThumbnail.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/DriveFileContentHintsThumbnail.php deleted file mode 100644 index 85819072..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/DriveFileContentHintsThumbnail.php +++ /dev/null @@ -1,39 +0,0 @@ -image = $image; - } - public function getImage() - { - return $this->image; - } - public function setMimeType($mimeType) - { - $this->mimeType = $mimeType; - } - public function getMimeType() - { - return $this->mimeType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/DriveFileImageMediaMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/DriveFileImageMediaMetadata.php deleted file mode 100644 index 69e53e2d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/DriveFileImageMediaMetadata.php +++ /dev/null @@ -1,217 +0,0 @@ -aperture = $aperture; - } - public function getAperture() - { - return $this->aperture; - } - public function setCameraMake($cameraMake) - { - $this->cameraMake = $cameraMake; - } - public function getCameraMake() - { - return $this->cameraMake; - } - public function setCameraModel($cameraModel) - { - $this->cameraModel = $cameraModel; - } - public function getCameraModel() - { - return $this->cameraModel; - } - public function setColorSpace($colorSpace) - { - $this->colorSpace = $colorSpace; - } - public function getColorSpace() - { - return $this->colorSpace; - } - public function setExposureBias($exposureBias) - { - $this->exposureBias = $exposureBias; - } - public function getExposureBias() - { - return $this->exposureBias; - } - public function setExposureMode($exposureMode) - { - $this->exposureMode = $exposureMode; - } - public function getExposureMode() - { - return $this->exposureMode; - } - public function setExposureTime($exposureTime) - { - $this->exposureTime = $exposureTime; - } - public function getExposureTime() - { - return $this->exposureTime; - } - public function setFlashUsed($flashUsed) - { - $this->flashUsed = $flashUsed; - } - public function getFlashUsed() - { - return $this->flashUsed; - } - public function setFocalLength($focalLength) - { - $this->focalLength = $focalLength; - } - public function getFocalLength() - { - return $this->focalLength; - } - public function setHeight($height) - { - $this->height = $height; - } - public function getHeight() - { - return $this->height; - } - public function setIsoSpeed($isoSpeed) - { - $this->isoSpeed = $isoSpeed; - } - public function getIsoSpeed() - { - return $this->isoSpeed; - } - public function setLens($lens) - { - $this->lens = $lens; - } - public function getLens() - { - return $this->lens; - } - /** - * @param Google_Service_Drive_DriveFileImageMediaMetadataLocation - */ - public function setLocation(Google_Service_Drive_DriveFileImageMediaMetadataLocation $location) - { - $this->location = $location; - } - /** - * @return Google_Service_Drive_DriveFileImageMediaMetadataLocation - */ - public function getLocation() - { - return $this->location; - } - public function setMaxApertureValue($maxApertureValue) - { - $this->maxApertureValue = $maxApertureValue; - } - public function getMaxApertureValue() - { - return $this->maxApertureValue; - } - public function setMeteringMode($meteringMode) - { - $this->meteringMode = $meteringMode; - } - public function getMeteringMode() - { - return $this->meteringMode; - } - public function setRotation($rotation) - { - $this->rotation = $rotation; - } - public function getRotation() - { - return $this->rotation; - } - public function setSensor($sensor) - { - $this->sensor = $sensor; - } - public function getSensor() - { - return $this->sensor; - } - public function setSubjectDistance($subjectDistance) - { - $this->subjectDistance = $subjectDistance; - } - public function getSubjectDistance() - { - return $this->subjectDistance; - } - public function setTime($time) - { - $this->time = $time; - } - public function getTime() - { - return $this->time; - } - public function setWhiteBalance($whiteBalance) - { - $this->whiteBalance = $whiteBalance; - } - public function getWhiteBalance() - { - return $this->whiteBalance; - } - public function setWidth($width) - { - $this->width = $width; - } - public function getWidth() - { - return $this->width; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/DriveFileImageMediaMetadataLocation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/DriveFileImageMediaMetadataLocation.php deleted file mode 100644 index e90462a2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/DriveFileImageMediaMetadataLocation.php +++ /dev/null @@ -1,48 +0,0 @@ -altitude = $altitude; - } - public function getAltitude() - { - return $this->altitude; - } - public function setLatitude($latitude) - { - $this->latitude = $latitude; - } - public function getLatitude() - { - return $this->latitude; - } - public function setLongitude($longitude) - { - $this->longitude = $longitude; - } - public function getLongitude() - { - return $this->longitude; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/DriveFileVideoMediaMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/DriveFileVideoMediaMetadata.php deleted file mode 100644 index 6a8c2d6e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/DriveFileVideoMediaMetadata.php +++ /dev/null @@ -1,48 +0,0 @@ -durationMillis = $durationMillis; - } - public function getDurationMillis() - { - return $this->durationMillis; - } - public function setHeight($height) - { - $this->height = $height; - } - public function getHeight() - { - return $this->height; - } - public function setWidth($width) - { - $this->width = $width; - } - public function getWidth() - { - return $this->width; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/DriveList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/DriveList.php deleted file mode 100644 index 2c2f3e66..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/DriveList.php +++ /dev/null @@ -1,56 +0,0 @@ -drives = $drives; - } - /** - * @return Google_Service_Drive_Drive - */ - public function getDrives() - { - return $this->drives; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/DriveRestrictions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/DriveRestrictions.php deleted file mode 100644 index 37ebcfb0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/DriveRestrictions.php +++ /dev/null @@ -1,57 +0,0 @@ -adminManagedRestrictions = $adminManagedRestrictions; - } - public function getAdminManagedRestrictions() - { - return $this->adminManagedRestrictions; - } - public function setCopyRequiresWriterPermission($copyRequiresWriterPermission) - { - $this->copyRequiresWriterPermission = $copyRequiresWriterPermission; - } - public function getCopyRequiresWriterPermission() - { - return $this->copyRequiresWriterPermission; - } - public function setDomainUsersOnly($domainUsersOnly) - { - $this->domainUsersOnly = $domainUsersOnly; - } - public function getDomainUsersOnly() - { - return $this->domainUsersOnly; - } - public function setDriveMembersOnly($driveMembersOnly) - { - $this->driveMembersOnly = $driveMembersOnly; - } - public function getDriveMembersOnly() - { - return $this->driveMembersOnly; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/FileList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/FileList.php deleted file mode 100644 index dc9dade1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/FileList.php +++ /dev/null @@ -1,65 +0,0 @@ -files = $files; - } - /** - * @return Google_Service_Drive_DriveFile - */ - public function getFiles() - { - return $this->files; - } - public function setIncompleteSearch($incompleteSearch) - { - $this->incompleteSearch = $incompleteSearch; - } - public function getIncompleteSearch() - { - return $this->incompleteSearch; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/GeneratedIds.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/GeneratedIds.php deleted file mode 100644 index 7366b7f5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/GeneratedIds.php +++ /dev/null @@ -1,49 +0,0 @@ -ids = $ids; - } - public function getIds() - { - return $this->ids; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setSpace($space) - { - $this->space = $space; - } - public function getSpace() - { - return $this->space; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/Permission.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/Permission.php deleted file mode 100644 index eb900732..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/Permission.php +++ /dev/null @@ -1,153 +0,0 @@ -allowFileDiscovery = $allowFileDiscovery; - } - public function getAllowFileDiscovery() - { - return $this->allowFileDiscovery; - } - public function setDeleted($deleted) - { - $this->deleted = $deleted; - } - public function getDeleted() - { - return $this->deleted; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setDomain($domain) - { - $this->domain = $domain; - } - public function getDomain() - { - return $this->domain; - } - public function setEmailAddress($emailAddress) - { - $this->emailAddress = $emailAddress; - } - public function getEmailAddress() - { - return $this->emailAddress; - } - public function setExpirationTime($expirationTime) - { - $this->expirationTime = $expirationTime; - } - public function getExpirationTime() - { - return $this->expirationTime; - } - 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; - } - /** - * @param Google_Service_Drive_PermissionPermissionDetails - */ - public function setPermissionDetails($permissionDetails) - { - $this->permissionDetails = $permissionDetails; - } - /** - * @return Google_Service_Drive_PermissionPermissionDetails - */ - public function getPermissionDetails() - { - return $this->permissionDetails; - } - public function setPhotoLink($photoLink) - { - $this->photoLink = $photoLink; - } - public function getPhotoLink() - { - return $this->photoLink; - } - public function setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } - /** - * @param Google_Service_Drive_PermissionTeamDrivePermissionDetails - */ - public function setTeamDrivePermissionDetails($teamDrivePermissionDetails) - { - $this->teamDrivePermissionDetails = $teamDrivePermissionDetails; - } - /** - * @return Google_Service_Drive_PermissionTeamDrivePermissionDetails - */ - public function getTeamDrivePermissionDetails() - { - return $this->teamDrivePermissionDetails; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/PermissionList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/PermissionList.php deleted file mode 100644 index eb204f81..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/PermissionList.php +++ /dev/null @@ -1,56 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Drive_Permission - */ - public function setPermissions($permissions) - { - $this->permissions = $permissions; - } - /** - * @return Google_Service_Drive_Permission - */ - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/PermissionPermissionDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/PermissionPermissionDetails.php deleted file mode 100644 index 4ea2a3a9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/PermissionPermissionDetails.php +++ /dev/null @@ -1,57 +0,0 @@ -inherited = $inherited; - } - public function getInherited() - { - return $this->inherited; - } - public function setInheritedFrom($inheritedFrom) - { - $this->inheritedFrom = $inheritedFrom; - } - public function getInheritedFrom() - { - return $this->inheritedFrom; - } - public function setPermissionType($permissionType) - { - $this->permissionType = $permissionType; - } - public function getPermissionType() - { - return $this->permissionType; - } - public function setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/PermissionTeamDrivePermissionDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/PermissionTeamDrivePermissionDetails.php deleted file mode 100644 index 41342cdb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/PermissionTeamDrivePermissionDetails.php +++ /dev/null @@ -1,57 +0,0 @@ -inherited = $inherited; - } - public function getInherited() - { - return $this->inherited; - } - public function setInheritedFrom($inheritedFrom) - { - $this->inheritedFrom = $inheritedFrom; - } - public function getInheritedFrom() - { - return $this->inheritedFrom; - } - public function setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } - public function setTeamDrivePermissionType($teamDrivePermissionType) - { - $this->teamDrivePermissionType = $teamDrivePermissionType; - } - public function getTeamDrivePermissionType() - { - return $this->teamDrivePermissionType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/Reply.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/Reply.php deleted file mode 100644 index db774cd0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/Reply.php +++ /dev/null @@ -1,109 +0,0 @@ -action = $action; - } - public function getAction() - { - return $this->action; - } - /** - * @param Google_Service_Drive_User - */ - public function setAuthor(Google_Service_Drive_User $author) - { - $this->author = $author; - } - /** - * @return Google_Service_Drive_User - */ - public function getAuthor() - { - return $this->author; - } - public function setContent($content) - { - $this->content = $content; - } - public function getContent() - { - return $this->content; - } - public function setCreatedTime($createdTime) - { - $this->createdTime = $createdTime; - } - public function getCreatedTime() - { - return $this->createdTime; - } - public function setDeleted($deleted) - { - $this->deleted = $deleted; - } - public function getDeleted() - { - return $this->deleted; - } - public function setHtmlContent($htmlContent) - { - $this->htmlContent = $htmlContent; - } - public function getHtmlContent() - { - return $this->htmlContent; - } - 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 setModifiedTime($modifiedTime) - { - $this->modifiedTime = $modifiedTime; - } - public function getModifiedTime() - { - return $this->modifiedTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/ReplyList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/ReplyList.php deleted file mode 100644 index cfabc7a1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/ReplyList.php +++ /dev/null @@ -1,56 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Drive_Reply - */ - public function setReplies($replies) - { - $this->replies = $replies; - } - /** - * @return Google_Service_Drive_Reply - */ - public function getReplies() - { - return $this->replies; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/Resource/About.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/Resource/About.php deleted file mode 100644 index 387219e2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/Resource/About.php +++ /dev/null @@ -1,41 +0,0 @@ - - * $driveService = new Google_Service_Drive(...); - * $about = $driveService->about; - * - */ -class Google_Service_Drive_Resource_About extends Google_Service_Resource -{ - /** - * Gets information about the user, the user's Drive, and system capabilities. - * (about.get) - * - * @param array $optParams Optional parameters. - * @return Google_Service_Drive_About - */ - public function get($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Drive_About"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/Resource/Changes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/Resource/Changes.php deleted file mode 100644 index 8897bb2f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/Resource/Changes.php +++ /dev/null @@ -1,141 +0,0 @@ - - * $driveService = new Google_Service_Drive(...); - * $changes = $driveService->changes; - * - */ -class Google_Service_Drive_Resource_Changes extends Google_Service_Resource -{ - /** - * Gets the starting pageToken for listing future changes. - * (changes.getStartPageToken) - * - * @param array $optParams Optional parameters. - * - * @opt_param string driveId The ID of the shared drive for which the starting - * pageToken for listing future changes from that shared drive will be returned. - * @opt_param bool supportsAllDrives Deprecated - Whether the requesting - * application supports both My Drives and shared drives. This parameter will - * only be effective until June 1, 2020. Afterwards all applications are assumed - * to support shared drives. - * @opt_param bool supportsTeamDrives Deprecated use supportsAllDrives instead. - * @opt_param string teamDriveId Deprecated use driveId instead. - * @return Google_Service_Drive_StartPageToken - */ - public function getStartPageToken($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('getStartPageToken', array($params), "Google_Service_Drive_StartPageToken"); - } - /** - * Lists the changes for a user or shared drive. (changes.listChanges) - * - * @param string $pageToken The token for continuing a previous list request on - * the next page. This should be set to the value of 'nextPageToken' from the - * previous response or to the response from the getStartPageToken method. - * @param array $optParams Optional parameters. - * - * @opt_param string driveId The shared drive from which changes will be - * returned. If specified the change IDs will be reflective of the shared drive; - * use the combined drive ID and change ID as an identifier. - * @opt_param bool includeCorpusRemovals Whether changes should include the file - * resource if the file is still accessible by the user at the time of the - * request, even when a file was removed from the list of changes and there will - * be no further change entries for this file. - * @opt_param bool includeItemsFromAllDrives Deprecated - Whether both My Drive - * and shared drive items should be included in results. This parameter will - * only be effective until June 1, 2020. Afterwards shared drive items will be - * included in the results. - * @opt_param bool includeRemoved Whether to include changes indicating that - * items have been removed from the list of changes, for example by deletion or - * loss of access. - * @opt_param bool includeTeamDriveItems Deprecated use - * includeItemsFromAllDrives instead. - * @opt_param int pageSize The maximum number of changes to return per page. - * @opt_param bool restrictToMyDrive Whether to restrict the results to changes - * inside the My Drive hierarchy. This omits changes to files such as those in - * the Application Data folder or shared files which have not been added to My - * Drive. - * @opt_param string spaces A comma-separated list of spaces to query within the - * user corpus. Supported values are 'drive', 'appDataFolder' and 'photos'. - * @opt_param bool supportsAllDrives Deprecated - Whether the requesting - * application supports both My Drives and shared drives. This parameter will - * only be effective until June 1, 2020. Afterwards all applications are assumed - * to support shared drives. - * @opt_param bool supportsTeamDrives Deprecated use supportsAllDrives instead. - * @opt_param string teamDriveId Deprecated use driveId instead. - * @return Google_Service_Drive_ChangeList - */ - public function listChanges($pageToken, $optParams = array()) - { - $params = array('pageToken' => $pageToken); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Drive_ChangeList"); - } - /** - * Subscribes to changes for a user. (changes.watch) - * - * @param string $pageToken The token for continuing a previous list request on - * the next page. This should be set to the value of 'nextPageToken' from the - * previous response or to the response from the getStartPageToken method. - * @param Google_Service_Drive_Channel $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string driveId The shared drive from which changes will be - * returned. If specified the change IDs will be reflective of the shared drive; - * use the combined drive ID and change ID as an identifier. - * @opt_param bool includeCorpusRemovals Whether changes should include the file - * resource if the file is still accessible by the user at the time of the - * request, even when a file was removed from the list of changes and there will - * be no further change entries for this file. - * @opt_param bool includeItemsFromAllDrives Deprecated - Whether both My Drive - * and shared drive items should be included in results. This parameter will - * only be effective until June 1, 2020. Afterwards shared drive items will be - * included in the results. - * @opt_param bool includeRemoved Whether to include changes indicating that - * items have been removed from the list of changes, for example by deletion or - * loss of access. - * @opt_param bool includeTeamDriveItems Deprecated use - * includeItemsFromAllDrives instead. - * @opt_param int pageSize The maximum number of changes to return per page. - * @opt_param bool restrictToMyDrive Whether to restrict the results to changes - * inside the My Drive hierarchy. This omits changes to files such as those in - * the Application Data folder or shared files which have not been added to My - * Drive. - * @opt_param string spaces A comma-separated list of spaces to query within the - * user corpus. Supported values are 'drive', 'appDataFolder' and 'photos'. - * @opt_param bool supportsAllDrives Deprecated - Whether the requesting - * application supports both My Drives and shared drives. This parameter will - * only be effective until June 1, 2020. Afterwards all applications are assumed - * to support shared drives. - * @opt_param bool supportsTeamDrives Deprecated use supportsAllDrives instead. - * @opt_param string teamDriveId Deprecated use driveId instead. - * @return Google_Service_Drive_Channel - */ - public function watch($pageToken, Google_Service_Drive_Channel $postBody, $optParams = array()) - { - $params = array('pageToken' => $pageToken, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('watch', array($params), "Google_Service_Drive_Channel"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/Resource/Channels.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/Resource/Channels.php deleted file mode 100644 index b825573d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/Resource/Channels.php +++ /dev/null @@ -1,40 +0,0 @@ - - * $driveService = new Google_Service_Drive(...); - * $channels = $driveService->channels; - * - */ -class Google_Service_Drive_Resource_Channels extends Google_Service_Resource -{ - /** - * Stop watching resources through this channel (channels.stop) - * - * @param Google_Service_Drive_Channel $postBody - * @param array $optParams Optional parameters. - */ - public function stop(Google_Service_Drive_Channel $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('stop', array($params)); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/Resource/Comments.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/Resource/Comments.php deleted file mode 100644 index 81a73d36..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/Resource/Comments.php +++ /dev/null @@ -1,109 +0,0 @@ - - * $driveService = new Google_Service_Drive(...); - * $comments = $driveService->comments; - * - */ -class Google_Service_Drive_Resource_Comments extends Google_Service_Resource -{ - /** - * Creates a new comment on a file. (comments.create) - * - * @param string $fileId The ID of the file. - * @param Google_Service_Drive_Comment $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Drive_Comment - */ - public function create($fileId, Google_Service_Drive_Comment $postBody, $optParams = array()) - { - $params = array('fileId' => $fileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Drive_Comment"); - } - /** - * Deletes a comment. (comments.delete) - * - * @param string $fileId The ID of the file. - * @param string $commentId The ID of the comment. - * @param array $optParams Optional parameters. - */ - public function delete($fileId, $commentId, $optParams = array()) - { - $params = array('fileId' => $fileId, 'commentId' => $commentId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Gets a comment by ID. (comments.get) - * - * @param string $fileId The ID of the file. - * @param string $commentId The ID of the comment. - * @param array $optParams Optional parameters. - * - * @opt_param bool includeDeleted Whether to return deleted comments. Deleted - * comments will not include their original content. - * @return Google_Service_Drive_Comment - */ - public function get($fileId, $commentId, $optParams = array()) - { - $params = array('fileId' => $fileId, 'commentId' => $commentId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Drive_Comment"); - } - /** - * Lists a file's comments. (comments.listComments) - * - * @param string $fileId The ID of the file. - * @param array $optParams Optional parameters. - * - * @opt_param bool includeDeleted Whether to include deleted comments. Deleted - * comments will not include their original content. - * @opt_param int pageSize The maximum number of comments to return per page. - * @opt_param string pageToken The token for continuing a previous list request - * on the next page. This should be set to the value of 'nextPageToken' from the - * previous response. - * @opt_param string startModifiedTime The minimum value of 'modifiedTime' for - * the result comments (RFC 3339 date-time). - * @return Google_Service_Drive_CommentList - */ - public function listComments($fileId, $optParams = array()) - { - $params = array('fileId' => $fileId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Drive_CommentList"); - } - /** - * Updates a comment with patch semantics. (comments.update) - * - * @param string $fileId The ID of the file. - * @param string $commentId The ID of the comment. - * @param Google_Service_Drive_Comment $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Drive_Comment - */ - public function update($fileId, $commentId, Google_Service_Drive_Comment $postBody, $optParams = array()) - { - $params = array('fileId' => $fileId, 'commentId' => $commentId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Drive_Comment"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/Resource/Drives.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/Resource/Drives.php deleted file mode 100644 index 92fcfeb4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/Resource/Drives.php +++ /dev/null @@ -1,139 +0,0 @@ - - * $driveService = new Google_Service_Drive(...); - * $drives = $driveService->drives; - * - */ -class Google_Service_Drive_Resource_Drives extends Google_Service_Resource -{ - /** - * Creates a new shared drive. (drives.create) - * - * @param string $requestId An ID, such as a random UUID, which uniquely - * identifies this user's request for idempotent creation of a shared drive. A - * repeated request by the same user and with the same request ID will avoid - * creating duplicates by attempting to create the same shared drive. If the - * shared drive already exists a 409 error will be returned. - * @param Google_Service_Drive_Drive $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Drive_Drive - */ - public function create($requestId, Google_Service_Drive_Drive $postBody, $optParams = array()) - { - $params = array('requestId' => $requestId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Drive_Drive"); - } - /** - * Permanently deletes a shared drive for which the user is an organizer. The - * shared drive cannot contain any untrashed items. (drives.delete) - * - * @param string $driveId The ID of the shared drive. - * @param array $optParams Optional parameters. - */ - public function delete($driveId, $optParams = array()) - { - $params = array('driveId' => $driveId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Gets a shared drive's metadata by ID. (drives.get) - * - * @param string $driveId The ID of the shared drive. - * @param array $optParams Optional parameters. - * - * @opt_param bool useDomainAdminAccess Issue the request as a domain - * administrator; if set to true, then the requester will be granted access if - * they are an administrator of the domain to which the shared drive belongs. - * @return Google_Service_Drive_Drive - */ - public function get($driveId, $optParams = array()) - { - $params = array('driveId' => $driveId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Drive_Drive"); - } - /** - * Hides a shared drive from the default view. (drives.hide) - * - * @param string $driveId The ID of the shared drive. - * @param array $optParams Optional parameters. - * @return Google_Service_Drive_Drive - */ - public function hide($driveId, $optParams = array()) - { - $params = array('driveId' => $driveId); - $params = array_merge($params, $optParams); - return $this->call('hide', array($params), "Google_Service_Drive_Drive"); - } - /** - * Lists the user's shared drives. (drives.listDrives) - * - * @param array $optParams Optional parameters. - * - * @opt_param int pageSize Maximum number of shared drives to return. - * @opt_param string pageToken Page token for shared drives. - * @opt_param string q Query string for searching shared drives. - * @opt_param bool useDomainAdminAccess Issue the request as a domain - * administrator; if set to true, then all shared drives of the domain in which - * the requester is an administrator are returned. - * @return Google_Service_Drive_DriveList - */ - public function listDrives($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Drive_DriveList"); - } - /** - * Restores a shared drive to the default view. (drives.unhide) - * - * @param string $driveId The ID of the shared drive. - * @param array $optParams Optional parameters. - * @return Google_Service_Drive_Drive - */ - public function unhide($driveId, $optParams = array()) - { - $params = array('driveId' => $driveId); - $params = array_merge($params, $optParams); - return $this->call('unhide', array($params), "Google_Service_Drive_Drive"); - } - /** - * Updates the metadate for a shared drive. (drives.update) - * - * @param string $driveId The ID of the shared drive. - * @param Google_Service_Drive_Drive $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool useDomainAdminAccess Issue the request as a domain - * administrator; if set to true, then the requester will be granted access if - * they are an administrator of the domain to which the shared drive belongs. - * @return Google_Service_Drive_Drive - */ - public function update($driveId, Google_Service_Drive_Drive $postBody, $optParams = array()) - { - $params = array('driveId' => $driveId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Drive_Drive"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/Resource/Files.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/Resource/Files.php deleted file mode 100644 index d00011bb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/Resource/Files.php +++ /dev/null @@ -1,282 +0,0 @@ - - * $driveService = new Google_Service_Drive(...); - * $files = $driveService->files; - * - */ -class Google_Service_Drive_Resource_Files extends Google_Service_Resource -{ - /** - * Creates a copy of a file and applies any requested updates with patch - * semantics. (files.copy) - * - * @param string $fileId The ID of the file. - * @param Google_Service_Drive_DriveFile $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool ignoreDefaultVisibility Whether to ignore the domain's - * default visibility settings for the created file. Domain administrators can - * choose to make all uploaded files visible to the domain by default; this - * parameter bypasses that behavior for the request. Permissions are still - * inherited from parent folders. - * @opt_param bool keepRevisionForever Whether to set the 'keepForever' field in - * the new head revision. This is only applicable to files with binary content - * in Google Drive. Only 200 revisions for the file can be kept forever. If the - * limit is reached, try deleting pinned revisions. - * @opt_param string ocrLanguage A language hint for OCR processing during image - * import (ISO 639-1 code). - * @opt_param bool supportsAllDrives Deprecated - Whether the requesting - * application supports both My Drives and shared drives. This parameter will - * only be effective until June 1, 2020. Afterwards all applications are assumed - * to support shared drives. - * @opt_param bool supportsTeamDrives Deprecated use supportsAllDrives instead. - * @return Google_Service_Drive_DriveFile - */ - public function copy($fileId, Google_Service_Drive_DriveFile $postBody, $optParams = array()) - { - $params = array('fileId' => $fileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('copy', array($params), "Google_Service_Drive_DriveFile"); - } - /** - * Creates a new file. (files.create) - * - * @param Google_Service_Drive_DriveFile $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool ignoreDefaultVisibility Whether to ignore the domain's - * default visibility settings for the created file. Domain administrators can - * choose to make all uploaded files visible to the domain by default; this - * parameter bypasses that behavior for the request. Permissions are still - * inherited from parent folders. - * @opt_param bool keepRevisionForever Whether to set the 'keepForever' field in - * the new head revision. This is only applicable to files with binary content - * in Google Drive. Only 200 revisions for the file can be kept forever. If the - * limit is reached, try deleting pinned revisions. - * @opt_param string ocrLanguage A language hint for OCR processing during image - * import (ISO 639-1 code). - * @opt_param bool supportsAllDrives Deprecated - Whether the requesting - * application supports both My Drives and shared drives. This parameter will - * only be effective until June 1, 2020. Afterwards all applications are assumed - * to support shared drives. - * @opt_param bool supportsTeamDrives Deprecated use supportsAllDrives instead. - * @opt_param bool useContentAsIndexableText Whether to use the uploaded content - * as indexable text. - * @return Google_Service_Drive_DriveFile - */ - public function create(Google_Service_Drive_DriveFile $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Drive_DriveFile"); - } - /** - * Permanently deletes a file owned by the user without moving it to the trash. - * If the file belongs to a shared drive the user must be an organizer on the - * parent. If the target is a folder, all descendants owned by the user are also - * deleted. (files.delete) - * - * @param string $fileId The ID of the file. - * @param array $optParams Optional parameters. - * - * @opt_param bool supportsAllDrives Deprecated - Whether the requesting - * application supports both My Drives and shared drives. This parameter will - * only be effective until June 1, 2020. Afterwards all applications are assumed - * to support shared drives. - * @opt_param bool supportsTeamDrives Deprecated use supportsAllDrives instead. - */ - public function delete($fileId, $optParams = array()) - { - $params = array('fileId' => $fileId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Permanently deletes all of the user's trashed files. (files.emptyTrash) - * - * @param array $optParams Optional parameters. - */ - public function emptyTrash($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('emptyTrash', array($params)); - } - /** - * Exports a Google Doc to the requested MIME type and returns the exported - * content. Please note that the exported content is limited to 10MB. - * (files.export) - * - * @param string $fileId The ID of the file. - * @param string $mimeType The MIME type of the format requested for this - * export. - * @param array $optParams Optional parameters. - */ - public function export($fileId, $mimeType, $optParams = array()) - { - $params = array('fileId' => $fileId, 'mimeType' => $mimeType); - $params = array_merge($params, $optParams); - return $this->call('export', array($params)); - } - /** - * Generates a set of file IDs which can be provided in create or copy requests. - * (files.generateIds) - * - * @param array $optParams Optional parameters. - * - * @opt_param int count The number of IDs to return. - * @opt_param string space The space in which the IDs can be used to create new - * files. Supported values are 'drive' and 'appDataFolder'. - * @return Google_Service_Drive_GeneratedIds - */ - public function generateIds($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('generateIds', array($params), "Google_Service_Drive_GeneratedIds"); - } - /** - * Gets a file's metadata or content by ID. (files.get) - * - * @param string $fileId The ID of the file. - * @param array $optParams Optional parameters. - * - * @opt_param bool acknowledgeAbuse Whether the user is acknowledging the risk - * of downloading known malware or other abusive files. This is only applicable - * when alt=media. - * @opt_param bool supportsAllDrives Deprecated - Whether the requesting - * application supports both My Drives and shared drives. This parameter will - * only be effective until June 1, 2020. Afterwards all applications are assumed - * to support shared drives. - * @opt_param bool supportsTeamDrives Deprecated use supportsAllDrives instead. - * @return Google_Service_Drive_DriveFile - */ - public function get($fileId, $optParams = array()) - { - $params = array('fileId' => $fileId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Drive_DriveFile"); - } - /** - * Lists or searches files. (files.listFiles) - * - * @param array $optParams Optional parameters. - * - * @opt_param string corpora Bodies of items (files/documents) to which the - * query applies. Supported bodies are 'user', 'domain', 'drive' and - * 'allDrives'. Prefer 'user' or 'drive' to 'allDrives' for efficiency. - * @opt_param string corpus The source of files to list. Deprecated: use - * 'corpora' instead. - * @opt_param string driveId ID of the shared drive to search. - * @opt_param bool includeItemsFromAllDrives Deprecated - Whether both My Drive - * and shared drive items should be included in results. This parameter will - * only be effective until June 1, 2020. Afterwards shared drive items will be - * included in the results. - * @opt_param bool includeTeamDriveItems Deprecated use - * includeItemsFromAllDrives instead. - * @opt_param string orderBy A comma-separated list of sort keys. Valid keys are - * 'createdTime', 'folder', 'modifiedByMeTime', 'modifiedTime', 'name', - * 'name_natural', 'quotaBytesUsed', 'recency', 'sharedWithMeTime', 'starred', - * and 'viewedByMeTime'. Each key sorts ascending by default, but may be - * reversed with the 'desc' modifier. Example usage: - * ?orderBy=folder,modifiedTime desc,name. Please note that there is a current - * limitation for users with approximately one million files in which the - * requested sort order is ignored. - * @opt_param int pageSize The maximum number of files to return per page. - * Partial or empty result pages are possible even before the end of the files - * list has been reached. - * @opt_param string pageToken The token for continuing a previous list request - * on the next page. This should be set to the value of 'nextPageToken' from the - * previous response. - * @opt_param string q A query for filtering the file results. See the "Search - * for Files" guide for supported syntax. - * @opt_param string spaces A comma-separated list of spaces to query within the - * corpus. Supported values are 'drive', 'appDataFolder' and 'photos'. - * @opt_param bool supportsAllDrives Deprecated - Whether the requesting - * application supports both My Drives and shared drives. This parameter will - * only be effective until June 1, 2020. Afterwards all applications are assumed - * to support shared drives. - * @opt_param bool supportsTeamDrives Deprecated use supportsAllDrives instead. - * @opt_param string teamDriveId Deprecated use driveId instead. - * @return Google_Service_Drive_FileList - */ - public function listFiles($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Drive_FileList"); - } - /** - * Updates a file's metadata and/or content with patch semantics. (files.update) - * - * @param string $fileId The ID of the file. - * @param Google_Service_Drive_DriveFile $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string addParents A comma-separated list of parent IDs to add. - * @opt_param bool keepRevisionForever Whether to set the 'keepForever' field in - * the new head revision. This is only applicable to files with binary content - * in Google Drive. Only 200 revisions for the file can be kept forever. If the - * limit is reached, try deleting pinned revisions. - * @opt_param string ocrLanguage A language hint for OCR processing during image - * import (ISO 639-1 code). - * @opt_param string removeParents A comma-separated list of parent IDs to - * remove. - * @opt_param bool supportsAllDrives Deprecated - Whether the requesting - * application supports both My Drives and shared drives. This parameter will - * only be effective until June 1, 2020. Afterwards all applications are assumed - * to support shared drives. - * @opt_param bool supportsTeamDrives Deprecated use supportsAllDrives instead. - * @opt_param bool useContentAsIndexableText Whether to use the uploaded content - * as indexable text. - * @return Google_Service_Drive_DriveFile - */ - public function update($fileId, Google_Service_Drive_DriveFile $postBody, $optParams = array()) - { - $params = array('fileId' => $fileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Drive_DriveFile"); - } - /** - * Subscribes to changes to a file (files.watch) - * - * @param string $fileId The ID of the file. - * @param Google_Service_Drive_Channel $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool acknowledgeAbuse Whether the user is acknowledging the risk - * of downloading known malware or other abusive files. This is only applicable - * when alt=media. - * @opt_param bool supportsAllDrives Deprecated - Whether the requesting - * application supports both My Drives and shared drives. This parameter will - * only be effective until June 1, 2020. Afterwards all applications are assumed - * to support shared drives. - * @opt_param bool supportsTeamDrives Deprecated use supportsAllDrives instead. - * @return Google_Service_Drive_Channel - */ - public function watch($fileId, Google_Service_Drive_Channel $postBody, $optParams = array()) - { - $params = array('fileId' => $fileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('watch', array($params), "Google_Service_Drive_Channel"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/Resource/Permissions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/Resource/Permissions.php deleted file mode 100644 index 9bcec3ee..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/Resource/Permissions.php +++ /dev/null @@ -1,167 +0,0 @@ - - * $driveService = new Google_Service_Drive(...); - * $permissions = $driveService->permissions; - * - */ -class Google_Service_Drive_Resource_Permissions extends Google_Service_Resource -{ - /** - * Creates a permission for a file or shared drive. (permissions.create) - * - * @param string $fileId The ID of the file or shared drive. - * @param Google_Service_Drive_Permission $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string emailMessage A plain text custom message to include in the - * notification email. - * @opt_param bool sendNotificationEmail Whether to send a notification email - * when sharing to users or groups. This defaults to true for users and groups, - * and is not allowed for other requests. It must not be disabled for ownership - * transfers. - * @opt_param bool supportsAllDrives Deprecated - Whether the requesting - * application supports both My Drives and shared drives. This parameter will - * only be effective until June 1, 2020. Afterwards all applications are assumed - * to support shared drives. - * @opt_param bool supportsTeamDrives Deprecated use supportsAllDrives instead. - * @opt_param bool transferOwnership Whether to transfer ownership to the - * specified user and downgrade the current owner to a writer. This parameter is - * required as an acknowledgement of the side effect. - * @opt_param bool useDomainAdminAccess Issue the request as a domain - * administrator; if set to true, then the requester will be granted access if - * the file ID parameter refers to a shared drive and the requester is an - * administrator of the domain to which the shared drive belongs. - * @return Google_Service_Drive_Permission - */ - public function create($fileId, Google_Service_Drive_Permission $postBody, $optParams = array()) - { - $params = array('fileId' => $fileId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Drive_Permission"); - } - /** - * Deletes a permission. (permissions.delete) - * - * @param string $fileId The ID of the file or shared drive. - * @param string $permissionId The ID of the permission. - * @param array $optParams Optional parameters. - * - * @opt_param bool supportsAllDrives Deprecated - Whether the requesting - * application supports both My Drives and shared drives. This parameter will - * only be effective until June 1, 2020. Afterwards all applications are assumed - * to support shared drives. - * @opt_param bool supportsTeamDrives Deprecated use supportsAllDrives instead. - * @opt_param bool useDomainAdminAccess Issue the request as a domain - * administrator; if set to true, then the requester will be granted access if - * the file ID parameter refers to a shared drive and the requester is an - * administrator of the domain to which the shared drive belongs. - */ - public function delete($fileId, $permissionId, $optParams = array()) - { - $params = array('fileId' => $fileId, 'permissionId' => $permissionId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Gets a permission by ID. (permissions.get) - * - * @param string $fileId The ID of the file. - * @param string $permissionId The ID of the permission. - * @param array $optParams Optional parameters. - * - * @opt_param bool supportsAllDrives Deprecated - Whether the requesting - * application supports both My Drives and shared drives. This parameter will - * only be effective until June 1, 2020. Afterwards all applications are assumed - * to support shared drives. - * @opt_param bool supportsTeamDrives Deprecated use supportsAllDrives instead. - * @opt_param bool useDomainAdminAccess Issue the request as a domain - * administrator; if set to true, then the requester will be granted access if - * the file ID parameter refers to a shared drive and the requester is an - * administrator of the domain to which the shared drive belongs. - * @return Google_Service_Drive_Permission - */ - public function get($fileId, $permissionId, $optParams = array()) - { - $params = array('fileId' => $fileId, 'permissionId' => $permissionId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Drive_Permission"); - } - /** - * Lists a file's or shared drive's permissions. (permissions.listPermissions) - * - * @param string $fileId The ID of the file or shared drive. - * @param array $optParams Optional parameters. - * - * @opt_param int pageSize The maximum number of permissions to return per page. - * When not set for files in a shared drive, at most 100 results will be - * returned. When not set for files that are not in a shared drive, the entire - * list will be returned. - * @opt_param string pageToken The token for continuing a previous list request - * on the next page. This should be set to the value of 'nextPageToken' from the - * previous response. - * @opt_param bool supportsAllDrives Deprecated - Whether the requesting - * application supports both My Drives and shared drives. This parameter will - * only be effective until June 1, 2020. Afterwards all applications are assumed - * to support shared drives. - * @opt_param bool supportsTeamDrives Deprecated use supportsAllDrives instead. - * @opt_param bool useDomainAdminAccess Issue the request as a domain - * administrator; if set to true, then the requester will be granted access if - * the file ID parameter refers to a shared drive and the requester is an - * administrator of the domain to which the shared drive belongs. - * @return Google_Service_Drive_PermissionList - */ - public function listPermissions($fileId, $optParams = array()) - { - $params = array('fileId' => $fileId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Drive_PermissionList"); - } - /** - * Updates a permission with patch semantics. (permissions.update) - * - * @param string $fileId The ID of the file or shared drive. - * @param string $permissionId The ID of the permission. - * @param Google_Service_Drive_Permission $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool removeExpiration Whether to remove the expiration date. - * @opt_param bool supportsAllDrives Deprecated - Whether the requesting - * application supports both My Drives and shared drives. This parameter will - * only be effective until June 1, 2020. Afterwards all applications are assumed - * to support shared drives. - * @opt_param bool supportsTeamDrives Deprecated use supportsAllDrives instead. - * @opt_param bool transferOwnership Whether to transfer ownership to the - * specified user and downgrade the current owner to a writer. This parameter is - * required as an acknowledgement of the side effect. - * @opt_param bool useDomainAdminAccess Issue the request as a domain - * administrator; if set to true, then the requester will be granted access if - * the file ID parameter refers to a shared drive and the requester is an - * administrator of the domain to which the shared drive belongs. - * @return Google_Service_Drive_Permission - */ - public function update($fileId, $permissionId, Google_Service_Drive_Permission $postBody, $optParams = array()) - { - $params = array('fileId' => $fileId, 'permissionId' => $permissionId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Drive_Permission"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/Resource/Replies.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/Resource/Replies.php deleted file mode 100644 index 30dd7b69..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/Resource/Replies.php +++ /dev/null @@ -1,112 +0,0 @@ - - * $driveService = new Google_Service_Drive(...); - * $replies = $driveService->replies; - * - */ -class Google_Service_Drive_Resource_Replies extends Google_Service_Resource -{ - /** - * Creates a new reply to a comment. (replies.create) - * - * @param string $fileId The ID of the file. - * @param string $commentId The ID of the comment. - * @param Google_Service_Drive_Reply $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Drive_Reply - */ - public function create($fileId, $commentId, Google_Service_Drive_Reply $postBody, $optParams = array()) - { - $params = array('fileId' => $fileId, 'commentId' => $commentId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Drive_Reply"); - } - /** - * Deletes a reply. (replies.delete) - * - * @param string $fileId The ID of the file. - * @param string $commentId The ID of the comment. - * @param string $replyId The ID of the reply. - * @param array $optParams Optional parameters. - */ - public function delete($fileId, $commentId, $replyId, $optParams = array()) - { - $params = array('fileId' => $fileId, 'commentId' => $commentId, 'replyId' => $replyId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Gets a reply by ID. (replies.get) - * - * @param string $fileId The ID of the file. - * @param string $commentId The ID of the comment. - * @param string $replyId The ID of the reply. - * @param array $optParams Optional parameters. - * - * @opt_param bool includeDeleted Whether to return deleted replies. Deleted - * replies will not include their original content. - * @return Google_Service_Drive_Reply - */ - public function get($fileId, $commentId, $replyId, $optParams = array()) - { - $params = array('fileId' => $fileId, 'commentId' => $commentId, 'replyId' => $replyId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Drive_Reply"); - } - /** - * Lists a comment's replies. (replies.listReplies) - * - * @param string $fileId The ID of the file. - * @param string $commentId The ID of the comment. - * @param array $optParams Optional parameters. - * - * @opt_param bool includeDeleted Whether to include deleted replies. Deleted - * replies will not include their original content. - * @opt_param int pageSize The maximum number of replies to return per page. - * @opt_param string pageToken The token for continuing a previous list request - * on the next page. This should be set to the value of 'nextPageToken' from the - * previous response. - * @return Google_Service_Drive_ReplyList - */ - public function listReplies($fileId, $commentId, $optParams = array()) - { - $params = array('fileId' => $fileId, 'commentId' => $commentId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Drive_ReplyList"); - } - /** - * Updates a reply with patch semantics. (replies.update) - * - * @param string $fileId The ID of the file. - * @param string $commentId The ID of the comment. - * @param string $replyId The ID of the reply. - * @param Google_Service_Drive_Reply $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Drive_Reply - */ - public function update($fileId, $commentId, $replyId, Google_Service_Drive_Reply $postBody, $optParams = array()) - { - $params = array('fileId' => $fileId, 'commentId' => $commentId, 'replyId' => $replyId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Drive_Reply"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/Resource/Revisions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/Resource/Revisions.php deleted file mode 100644 index 21f4dcbf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/Resource/Revisions.php +++ /dev/null @@ -1,95 +0,0 @@ - - * $driveService = new Google_Service_Drive(...); - * $revisions = $driveService->revisions; - * - */ -class Google_Service_Drive_Resource_Revisions extends Google_Service_Resource -{ - /** - * Permanently deletes a file version. You can only delete revisions for files - * with binary content in Google Drive, like images or videos. Revisions for - * other files, like Google Docs or Sheets, and the last remaining file version - * can't be deleted. (revisions.delete) - * - * @param string $fileId The ID of the file. - * @param string $revisionId The ID of the revision. - * @param array $optParams Optional parameters. - */ - public function delete($fileId, $revisionId, $optParams = array()) - { - $params = array('fileId' => $fileId, 'revisionId' => $revisionId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Gets a revision's metadata or content by ID. (revisions.get) - * - * @param string $fileId The ID of the file. - * @param string $revisionId The ID of the revision. - * @param array $optParams Optional parameters. - * - * @opt_param bool acknowledgeAbuse Whether the user is acknowledging the risk - * of downloading known malware or other abusive files. This is only applicable - * when alt=media. - * @return Google_Service_Drive_Revision - */ - public function get($fileId, $revisionId, $optParams = array()) - { - $params = array('fileId' => $fileId, 'revisionId' => $revisionId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Drive_Revision"); - } - /** - * Lists a file's revisions. (revisions.listRevisions) - * - * @param string $fileId The ID of the file. - * @param array $optParams Optional parameters. - * - * @opt_param int pageSize The maximum number of revisions to return per page. - * @opt_param string pageToken The token for continuing a previous list request - * on the next page. This should be set to the value of 'nextPageToken' from the - * previous response. - * @return Google_Service_Drive_RevisionList - */ - public function listRevisions($fileId, $optParams = array()) - { - $params = array('fileId' => $fileId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Drive_RevisionList"); - } - /** - * Updates a revision with patch semantics. (revisions.update) - * - * @param string $fileId The ID of the file. - * @param string $revisionId The ID of the revision. - * @param Google_Service_Drive_Revision $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Drive_Revision - */ - public function update($fileId, $revisionId, Google_Service_Drive_Revision $postBody, $optParams = array()) - { - $params = array('fileId' => $fileId, 'revisionId' => $revisionId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Drive_Revision"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/Resource/Teamdrives.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/Resource/Teamdrives.php deleted file mode 100644 index 35975899..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/Resource/Teamdrives.php +++ /dev/null @@ -1,112 +0,0 @@ - - * $driveService = new Google_Service_Drive(...); - * $teamdrives = $driveService->teamdrives; - * - */ -class Google_Service_Drive_Resource_Teamdrives extends Google_Service_Resource -{ - /** - * Deprecated use drives.create instead. (teamdrives.create) - * - * @param string $requestId An ID, such as a random UUID, which uniquely - * identifies this user's request for idempotent creation of a Team Drive. A - * repeated request by the same user and with the same request ID will avoid - * creating duplicates by attempting to create the same Team Drive. If the Team - * Drive already exists a 409 error will be returned. - * @param Google_Service_Drive_TeamDrive $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Drive_TeamDrive - */ - public function create($requestId, Google_Service_Drive_TeamDrive $postBody, $optParams = array()) - { - $params = array('requestId' => $requestId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Drive_TeamDrive"); - } - /** - * Deprecated use drives.delete instead. (teamdrives.delete) - * - * @param string $teamDriveId The ID of the Team Drive - * @param array $optParams Optional parameters. - */ - public function delete($teamDriveId, $optParams = array()) - { - $params = array('teamDriveId' => $teamDriveId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Deprecated use drives.get instead. (teamdrives.get) - * - * @param string $teamDriveId The ID of the Team Drive - * @param array $optParams Optional parameters. - * - * @opt_param bool useDomainAdminAccess Issue the request as a domain - * administrator; if set to true, then the requester will be granted access if - * they are an administrator of the domain to which the Team Drive belongs. - * @return Google_Service_Drive_TeamDrive - */ - public function get($teamDriveId, $optParams = array()) - { - $params = array('teamDriveId' => $teamDriveId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Drive_TeamDrive"); - } - /** - * Deprecated use drives.list instead. (teamdrives.listTeamdrives) - * - * @param array $optParams Optional parameters. - * - * @opt_param int pageSize Maximum number of Team Drives to return. - * @opt_param string pageToken Page token for Team Drives. - * @opt_param string q Query string for searching Team Drives. - * @opt_param bool useDomainAdminAccess Issue the request as a domain - * administrator; if set to true, then all Team Drives of the domain in which - * the requester is an administrator are returned. - * @return Google_Service_Drive_TeamDriveList - */ - public function listTeamdrives($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Drive_TeamDriveList"); - } - /** - * Deprecated use drives.update instead (teamdrives.update) - * - * @param string $teamDriveId The ID of the Team Drive - * @param Google_Service_Drive_TeamDrive $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool useDomainAdminAccess Issue the request as a domain - * administrator; if set to true, then the requester will be granted access if - * they are an administrator of the domain to which the Team Drive belongs. - * @return Google_Service_Drive_TeamDrive - */ - public function update($teamDriveId, Google_Service_Drive_TeamDrive $postBody, $optParams = array()) - { - $params = array('teamDriveId' => $teamDriveId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Drive_TeamDrive"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/Revision.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/Revision.php deleted file mode 100644 index 82b58a6d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/Revision.php +++ /dev/null @@ -1,145 +0,0 @@ -exportLinks = $exportLinks; - } - public function getExportLinks() - { - return $this->exportLinks; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setKeepForever($keepForever) - { - $this->keepForever = $keepForever; - } - public function getKeepForever() - { - return $this->keepForever; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Drive_User - */ - public function setLastModifyingUser(Google_Service_Drive_User $lastModifyingUser) - { - $this->lastModifyingUser = $lastModifyingUser; - } - /** - * @return Google_Service_Drive_User - */ - public function getLastModifyingUser() - { - return $this->lastModifyingUser; - } - public function setMd5Checksum($md5Checksum) - { - $this->md5Checksum = $md5Checksum; - } - public function getMd5Checksum() - { - return $this->md5Checksum; - } - public function setMimeType($mimeType) - { - $this->mimeType = $mimeType; - } - public function getMimeType() - { - return $this->mimeType; - } - public function setModifiedTime($modifiedTime) - { - $this->modifiedTime = $modifiedTime; - } - public function getModifiedTime() - { - return $this->modifiedTime; - } - public function setOriginalFilename($originalFilename) - { - $this->originalFilename = $originalFilename; - } - public function getOriginalFilename() - { - return $this->originalFilename; - } - public function setPublishAuto($publishAuto) - { - $this->publishAuto = $publishAuto; - } - public function getPublishAuto() - { - return $this->publishAuto; - } - public function setPublished($published) - { - $this->published = $published; - } - public function getPublished() - { - return $this->published; - } - public function setPublishedOutsideDomain($publishedOutsideDomain) - { - $this->publishedOutsideDomain = $publishedOutsideDomain; - } - public function getPublishedOutsideDomain() - { - return $this->publishedOutsideDomain; - } - public function setSize($size) - { - $this->size = $size; - } - public function getSize() - { - return $this->size; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/RevisionList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/RevisionList.php deleted file mode 100644 index d85cf64d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/RevisionList.php +++ /dev/null @@ -1,56 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Drive_Revision - */ - public function setRevisions($revisions) - { - $this->revisions = $revisions; - } - /** - * @return Google_Service_Drive_Revision - */ - public function getRevisions() - { - return $this->revisions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/StartPageToken.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/StartPageToken.php deleted file mode 100644 index aa0e311b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/StartPageToken.php +++ /dev/null @@ -1,39 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setStartPageToken($startPageToken) - { - $this->startPageToken = $startPageToken; - } - public function getStartPageToken() - { - return $this->startPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/TeamDrive.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/TeamDrive.php deleted file mode 100644 index 5c819f3d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/TeamDrive.php +++ /dev/null @@ -1,132 +0,0 @@ -backgroundImageFile = $backgroundImageFile; - } - /** - * @return Google_Service_Drive_TeamDriveBackgroundImageFile - */ - public function getBackgroundImageFile() - { - return $this->backgroundImageFile; - } - public function setBackgroundImageLink($backgroundImageLink) - { - $this->backgroundImageLink = $backgroundImageLink; - } - public function getBackgroundImageLink() - { - return $this->backgroundImageLink; - } - /** - * @param Google_Service_Drive_TeamDriveCapabilities - */ - public function setCapabilities(Google_Service_Drive_TeamDriveCapabilities $capabilities) - { - $this->capabilities = $capabilities; - } - /** - * @return Google_Service_Drive_TeamDriveCapabilities - */ - public function getCapabilities() - { - return $this->capabilities; - } - public function setColorRgb($colorRgb) - { - $this->colorRgb = $colorRgb; - } - public function getColorRgb() - { - return $this->colorRgb; - } - public function setCreatedTime($createdTime) - { - $this->createdTime = $createdTime; - } - public function getCreatedTime() - { - return $this->createdTime; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Drive_TeamDriveRestrictions - */ - public function setRestrictions(Google_Service_Drive_TeamDriveRestrictions $restrictions) - { - $this->restrictions = $restrictions; - } - /** - * @return Google_Service_Drive_TeamDriveRestrictions - */ - public function getRestrictions() - { - return $this->restrictions; - } - public function setThemeId($themeId) - { - $this->themeId = $themeId; - } - public function getThemeId() - { - return $this->themeId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/TeamDriveBackgroundImageFile.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/TeamDriveBackgroundImageFile.php deleted file mode 100644 index 130a3467..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/TeamDriveBackgroundImageFile.php +++ /dev/null @@ -1,57 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setWidth($width) - { - $this->width = $width; - } - public function getWidth() - { - return $this->width; - } - public function setXCoordinate($xCoordinate) - { - $this->xCoordinate = $xCoordinate; - } - public function getXCoordinate() - { - return $this->xCoordinate; - } - public function setYCoordinate($yCoordinate) - { - $this->yCoordinate = $yCoordinate; - } - public function getYCoordinate() - { - return $this->yCoordinate; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/TeamDriveCapabilities.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/TeamDriveCapabilities.php deleted file mode 100644 index 053efb7d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/TeamDriveCapabilities.php +++ /dev/null @@ -1,192 +0,0 @@ -canAddChildren = $canAddChildren; - } - public function getCanAddChildren() - { - return $this->canAddChildren; - } - public function setCanChangeCopyRequiresWriterPermissionRestriction($canChangeCopyRequiresWriterPermissionRestriction) - { - $this->canChangeCopyRequiresWriterPermissionRestriction = $canChangeCopyRequiresWriterPermissionRestriction; - } - public function getCanChangeCopyRequiresWriterPermissionRestriction() - { - return $this->canChangeCopyRequiresWriterPermissionRestriction; - } - public function setCanChangeDomainUsersOnlyRestriction($canChangeDomainUsersOnlyRestriction) - { - $this->canChangeDomainUsersOnlyRestriction = $canChangeDomainUsersOnlyRestriction; - } - public function getCanChangeDomainUsersOnlyRestriction() - { - return $this->canChangeDomainUsersOnlyRestriction; - } - public function setCanChangeTeamDriveBackground($canChangeTeamDriveBackground) - { - $this->canChangeTeamDriveBackground = $canChangeTeamDriveBackground; - } - public function getCanChangeTeamDriveBackground() - { - return $this->canChangeTeamDriveBackground; - } - public function setCanChangeTeamMembersOnlyRestriction($canChangeTeamMembersOnlyRestriction) - { - $this->canChangeTeamMembersOnlyRestriction = $canChangeTeamMembersOnlyRestriction; - } - public function getCanChangeTeamMembersOnlyRestriction() - { - return $this->canChangeTeamMembersOnlyRestriction; - } - public function setCanComment($canComment) - { - $this->canComment = $canComment; - } - public function getCanComment() - { - return $this->canComment; - } - public function setCanCopy($canCopy) - { - $this->canCopy = $canCopy; - } - public function getCanCopy() - { - return $this->canCopy; - } - public function setCanDeleteChildren($canDeleteChildren) - { - $this->canDeleteChildren = $canDeleteChildren; - } - public function getCanDeleteChildren() - { - return $this->canDeleteChildren; - } - public function setCanDeleteTeamDrive($canDeleteTeamDrive) - { - $this->canDeleteTeamDrive = $canDeleteTeamDrive; - } - public function getCanDeleteTeamDrive() - { - return $this->canDeleteTeamDrive; - } - public function setCanDownload($canDownload) - { - $this->canDownload = $canDownload; - } - public function getCanDownload() - { - return $this->canDownload; - } - public function setCanEdit($canEdit) - { - $this->canEdit = $canEdit; - } - public function getCanEdit() - { - return $this->canEdit; - } - public function setCanListChildren($canListChildren) - { - $this->canListChildren = $canListChildren; - } - public function getCanListChildren() - { - return $this->canListChildren; - } - public function setCanManageMembers($canManageMembers) - { - $this->canManageMembers = $canManageMembers; - } - public function getCanManageMembers() - { - return $this->canManageMembers; - } - public function setCanReadRevisions($canReadRevisions) - { - $this->canReadRevisions = $canReadRevisions; - } - public function getCanReadRevisions() - { - return $this->canReadRevisions; - } - public function setCanRemoveChildren($canRemoveChildren) - { - $this->canRemoveChildren = $canRemoveChildren; - } - public function getCanRemoveChildren() - { - return $this->canRemoveChildren; - } - public function setCanRename($canRename) - { - $this->canRename = $canRename; - } - public function getCanRename() - { - return $this->canRename; - } - public function setCanRenameTeamDrive($canRenameTeamDrive) - { - $this->canRenameTeamDrive = $canRenameTeamDrive; - } - public function getCanRenameTeamDrive() - { - return $this->canRenameTeamDrive; - } - public function setCanShare($canShare) - { - $this->canShare = $canShare; - } - public function getCanShare() - { - return $this->canShare; - } - public function setCanTrashChildren($canTrashChildren) - { - $this->canTrashChildren = $canTrashChildren; - } - public function getCanTrashChildren() - { - return $this->canTrashChildren; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/TeamDriveList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/TeamDriveList.php deleted file mode 100644 index d2571eea..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/TeamDriveList.php +++ /dev/null @@ -1,56 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Drive_TeamDrive - */ - public function setTeamDrives($teamDrives) - { - $this->teamDrives = $teamDrives; - } - /** - * @return Google_Service_Drive_TeamDrive - */ - public function getTeamDrives() - { - return $this->teamDrives; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/TeamDriveRestrictions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/TeamDriveRestrictions.php deleted file mode 100644 index 0c989222..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/TeamDriveRestrictions.php +++ /dev/null @@ -1,57 +0,0 @@ -adminManagedRestrictions = $adminManagedRestrictions; - } - public function getAdminManagedRestrictions() - { - return $this->adminManagedRestrictions; - } - public function setCopyRequiresWriterPermission($copyRequiresWriterPermission) - { - $this->copyRequiresWriterPermission = $copyRequiresWriterPermission; - } - public function getCopyRequiresWriterPermission() - { - return $this->copyRequiresWriterPermission; - } - public function setDomainUsersOnly($domainUsersOnly) - { - $this->domainUsersOnly = $domainUsersOnly; - } - public function getDomainUsersOnly() - { - return $this->domainUsersOnly; - } - public function setTeamMembersOnly($teamMembersOnly) - { - $this->teamMembersOnly = $teamMembersOnly; - } - public function getTeamMembersOnly() - { - return $this->teamMembersOnly; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/User.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/User.php deleted file mode 100644 index 90096642..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Drive/User.php +++ /dev/null @@ -1,75 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setEmailAddress($emailAddress) - { - $this->emailAddress = $emailAddress; - } - public function getEmailAddress() - { - return $this->emailAddress; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setMe($me) - { - $this->me = $me; - } - public function getMe() - { - return $this->me; - } - public function setPermissionId($permissionId) - { - $this->permissionId = $permissionId; - } - public function getPermissionId() - { - return $this->permissionId; - } - public function setPhotoLink($photoLink) - { - $this->photoLink = $photoLink; - } - public function getPhotoLink() - { - return $this->photoLink; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity.php deleted file mode 100644 index 4390ba32..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity.php +++ /dev/null @@ -1,72 +0,0 @@ - - * Provides a historical view of activity in Google Drive.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_DriveActivity extends Google_Service -{ - /** View and add to the activity record of files in your Google Drive. */ - const DRIVE_ACTIVITY = - "https://www.googleapis.com/auth/drive.activity"; - /** View the activity record of files in your Google Drive. */ - const DRIVE_ACTIVITY_READONLY = - "https://www.googleapis.com/auth/drive.activity.readonly"; - - public $activity; - - /** - * Constructs the internal representation of the DriveActivity service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://driveactivity.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v2'; - $this->serviceName = 'driveactivity'; - - $this->activity = new Google_Service_DriveActivity_Resource_Activity( - $this, - $this->serviceName, - 'activity', - array( - 'methods' => array( - 'query' => array( - 'path' => 'v2/activity:query', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Action.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Action.php deleted file mode 100644 index 22d6237e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Action.php +++ /dev/null @@ -1,94 +0,0 @@ -actor = $actor; - } - /** - * @return Google_Service_DriveActivity_Actor - */ - public function getActor() - { - return $this->actor; - } - /** - * @param Google_Service_DriveActivity_ActionDetail - */ - public function setDetail(Google_Service_DriveActivity_ActionDetail $detail) - { - $this->detail = $detail; - } - /** - * @return Google_Service_DriveActivity_ActionDetail - */ - public function getDetail() - { - return $this->detail; - } - /** - * @param Google_Service_DriveActivity_Target - */ - public function setTarget(Google_Service_DriveActivity_Target $target) - { - $this->target = $target; - } - /** - * @return Google_Service_DriveActivity_Target - */ - public function getTarget() - { - return $this->target; - } - /** - * @param Google_Service_DriveActivity_TimeRange - */ - public function setTimeRange(Google_Service_DriveActivity_TimeRange $timeRange) - { - $this->timeRange = $timeRange; - } - /** - * @return Google_Service_DriveActivity_TimeRange - */ - public function getTimeRange() - { - return $this->timeRange; - } - public function setTimestamp($timestamp) - { - $this->timestamp = $timestamp; - } - public function getTimestamp() - { - return $this->timestamp; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/ActionDetail.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/ActionDetail.php deleted file mode 100644 index 87be0127..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/ActionDetail.php +++ /dev/null @@ -1,197 +0,0 @@ -comment = $comment; - } - /** - * @return Google_Service_DriveActivity_Comment - */ - public function getComment() - { - return $this->comment; - } - /** - * @param Google_Service_DriveActivity_Create - */ - public function setCreate(Google_Service_DriveActivity_Create $create) - { - $this->create = $create; - } - /** - * @return Google_Service_DriveActivity_Create - */ - public function getCreate() - { - return $this->create; - } - /** - * @param Google_Service_DriveActivity_Delete - */ - public function setDelete(Google_Service_DriveActivity_Delete $delete) - { - $this->delete = $delete; - } - /** - * @return Google_Service_DriveActivity_Delete - */ - public function getDelete() - { - return $this->delete; - } - /** - * @param Google_Service_DriveActivity_DataLeakPreventionChange - */ - public function setDlpChange(Google_Service_DriveActivity_DataLeakPreventionChange $dlpChange) - { - $this->dlpChange = $dlpChange; - } - /** - * @return Google_Service_DriveActivity_DataLeakPreventionChange - */ - public function getDlpChange() - { - return $this->dlpChange; - } - /** - * @param Google_Service_DriveActivity_Edit - */ - public function setEdit(Google_Service_DriveActivity_Edit $edit) - { - $this->edit = $edit; - } - /** - * @return Google_Service_DriveActivity_Edit - */ - public function getEdit() - { - return $this->edit; - } - /** - * @param Google_Service_DriveActivity_Move - */ - public function setMove(Google_Service_DriveActivity_Move $move) - { - $this->move = $move; - } - /** - * @return Google_Service_DriveActivity_Move - */ - public function getMove() - { - return $this->move; - } - /** - * @param Google_Service_DriveActivity_PermissionChange - */ - public function setPermissionChange(Google_Service_DriveActivity_PermissionChange $permissionChange) - { - $this->permissionChange = $permissionChange; - } - /** - * @return Google_Service_DriveActivity_PermissionChange - */ - public function getPermissionChange() - { - return $this->permissionChange; - } - /** - * @param Google_Service_DriveActivity_ApplicationReference - */ - public function setReference(Google_Service_DriveActivity_ApplicationReference $reference) - { - $this->reference = $reference; - } - /** - * @return Google_Service_DriveActivity_ApplicationReference - */ - public function getReference() - { - return $this->reference; - } - /** - * @param Google_Service_DriveActivity_Rename - */ - public function setRename(Google_Service_DriveActivity_Rename $rename) - { - $this->rename = $rename; - } - /** - * @return Google_Service_DriveActivity_Rename - */ - public function getRename() - { - return $this->rename; - } - /** - * @param Google_Service_DriveActivity_Restore - */ - public function setRestore(Google_Service_DriveActivity_Restore $restore) - { - $this->restore = $restore; - } - /** - * @return Google_Service_DriveActivity_Restore - */ - public function getRestore() - { - return $this->restore; - } - /** - * @param Google_Service_DriveActivity_SettingsChange - */ - public function setSettingsChange(Google_Service_DriveActivity_SettingsChange $settingsChange) - { - $this->settingsChange = $settingsChange; - } - /** - * @return Google_Service_DriveActivity_SettingsChange - */ - public function getSettingsChange() - { - return $this->settingsChange; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Actor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Actor.php deleted file mode 100644 index 49712545..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Actor.php +++ /dev/null @@ -1,101 +0,0 @@ -administrator = $administrator; - } - /** - * @return Google_Service_DriveActivity_Administrator - */ - public function getAdministrator() - { - return $this->administrator; - } - /** - * @param Google_Service_DriveActivity_AnonymousUser - */ - public function setAnonymous(Google_Service_DriveActivity_AnonymousUser $anonymous) - { - $this->anonymous = $anonymous; - } - /** - * @return Google_Service_DriveActivity_AnonymousUser - */ - public function getAnonymous() - { - return $this->anonymous; - } - /** - * @param Google_Service_DriveActivity_Impersonation - */ - public function setImpersonation(Google_Service_DriveActivity_Impersonation $impersonation) - { - $this->impersonation = $impersonation; - } - /** - * @return Google_Service_DriveActivity_Impersonation - */ - public function getImpersonation() - { - return $this->impersonation; - } - /** - * @param Google_Service_DriveActivity_SystemEvent - */ - public function setSystem(Google_Service_DriveActivity_SystemEvent $system) - { - $this->system = $system; - } - /** - * @return Google_Service_DriveActivity_SystemEvent - */ - public function getSystem() - { - return $this->system; - } - /** - * @param Google_Service_DriveActivity_User - */ - public function setUser(Google_Service_DriveActivity_User $user) - { - $this->user = $user; - } - /** - * @return Google_Service_DriveActivity_User - */ - public function getUser() - { - return $this->user; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Administrator.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Administrator.php deleted file mode 100644 index e0508415..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Administrator.php +++ /dev/null @@ -1,20 +0,0 @@ -type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Assignment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Assignment.php deleted file mode 100644 index 998d93fe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Assignment.php +++ /dev/null @@ -1,46 +0,0 @@ -assignedUser = $assignedUser; - } - /** - * @return Google_Service_DriveActivity_User - */ - public function getAssignedUser() - { - return $this->assignedUser; - } - public function setSubtype($subtype) - { - $this->subtype = $subtype; - } - public function getSubtype() - { - return $this->subtype; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Comment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Comment.php deleted file mode 100644 index d2d3f3c0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Comment.php +++ /dev/null @@ -1,86 +0,0 @@ -assignment = $assignment; - } - /** - * @return Google_Service_DriveActivity_Assignment - */ - public function getAssignment() - { - return $this->assignment; - } - /** - * @param Google_Service_DriveActivity_User - */ - public function setMentionedUsers($mentionedUsers) - { - $this->mentionedUsers = $mentionedUsers; - } - /** - * @return Google_Service_DriveActivity_User - */ - public function getMentionedUsers() - { - return $this->mentionedUsers; - } - /** - * @param Google_Service_DriveActivity_Post - */ - public function setPost(Google_Service_DriveActivity_Post $post) - { - $this->post = $post; - } - /** - * @return Google_Service_DriveActivity_Post - */ - public function getPost() - { - return $this->post; - } - /** - * @param Google_Service_DriveActivity_Suggestion - */ - public function setSuggestion(Google_Service_DriveActivity_Suggestion $suggestion) - { - $this->suggestion = $suggestion; - } - /** - * @return Google_Service_DriveActivity_Suggestion - */ - public function getSuggestion() - { - return $this->suggestion; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/ConsolidationStrategy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/ConsolidationStrategy.php deleted file mode 100644 index 9b1e76ad..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/ConsolidationStrategy.php +++ /dev/null @@ -1,53 +0,0 @@ -legacy = $legacy; - } - /** - * @return Google_Service_DriveActivity_Legacy - */ - public function getLegacy() - { - return $this->legacy; - } - /** - * @param Google_Service_DriveActivity_NoConsolidation - */ - public function setNone(Google_Service_DriveActivity_NoConsolidation $none) - { - $this->none = $none; - } - /** - * @return Google_Service_DriveActivity_NoConsolidation - */ - public function getNone() - { - return $this->none; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Copy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Copy.php deleted file mode 100644 index 47c9c5eb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Copy.php +++ /dev/null @@ -1,37 +0,0 @@ -originalObject = $originalObject; - } - /** - * @return Google_Service_DriveActivity_TargetReference - */ - public function getOriginalObject() - { - return $this->originalObject; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Create.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Create.php deleted file mode 100644 index 6d9afedd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Create.php +++ /dev/null @@ -1,69 +0,0 @@ -copy = $copy; - } - /** - * @return Google_Service_DriveActivity_Copy - */ - public function getCopy() - { - return $this->copy; - } - /** - * @param Google_Service_DriveActivity_DriveactivityNew - */ - public function setNew(Google_Service_DriveActivity_DriveactivityNew $new) - { - $this->new = $new; - } - /** - * @return Google_Service_DriveActivity_DriveactivityNew - */ - public function getNew() - { - return $this->new; - } - /** - * @param Google_Service_DriveActivity_Upload - */ - public function setUpload(Google_Service_DriveActivity_Upload $upload) - { - $this->upload = $upload; - } - /** - * @return Google_Service_DriveActivity_Upload - */ - public function getUpload() - { - return $this->upload; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/DataLeakPreventionChange.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/DataLeakPreventionChange.php deleted file mode 100644 index ca3876bd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/DataLeakPreventionChange.php +++ /dev/null @@ -1,30 +0,0 @@ -type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Delete.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Delete.php deleted file mode 100644 index 2627ccb0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Delete.php +++ /dev/null @@ -1,30 +0,0 @@ -type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/DeletedUser.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/DeletedUser.php deleted file mode 100644 index 4ffbdcd1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/DeletedUser.php +++ /dev/null @@ -1,20 +0,0 @@ -legacyId = $legacyId; - } - public function getLegacyId() - { - return $this->legacyId; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Drive.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Drive.php deleted file mode 100644 index 08f7fe28..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Drive.php +++ /dev/null @@ -1,55 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_DriveActivity_DriveItem - */ - public function setRoot(Google_Service_DriveActivity_DriveItem $root) - { - $this->root = $root; - } - /** - * @return Google_Service_DriveActivity_DriveItem - */ - public function getRoot() - { - return $this->root; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/DriveActivity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/DriveActivity.php deleted file mode 100644 index 8b18a77b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/DriveActivity.php +++ /dev/null @@ -1,111 +0,0 @@ -actions = $actions; - } - /** - * @return Google_Service_DriveActivity_Action - */ - public function getActions() - { - return $this->actions; - } - /** - * @param Google_Service_DriveActivity_Actor - */ - public function setActors($actors) - { - $this->actors = $actors; - } - /** - * @return Google_Service_DriveActivity_Actor - */ - public function getActors() - { - return $this->actors; - } - /** - * @param Google_Service_DriveActivity_ActionDetail - */ - public function setPrimaryActionDetail(Google_Service_DriveActivity_ActionDetail $primaryActionDetail) - { - $this->primaryActionDetail = $primaryActionDetail; - } - /** - * @return Google_Service_DriveActivity_ActionDetail - */ - public function getPrimaryActionDetail() - { - return $this->primaryActionDetail; - } - /** - * @param Google_Service_DriveActivity_Target - */ - public function setTargets($targets) - { - $this->targets = $targets; - } - /** - * @return Google_Service_DriveActivity_Target - */ - public function getTargets() - { - return $this->targets; - } - /** - * @param Google_Service_DriveActivity_TimeRange - */ - public function setTimeRange(Google_Service_DriveActivity_TimeRange $timeRange) - { - $this->timeRange = $timeRange; - } - /** - * @return Google_Service_DriveActivity_TimeRange - */ - public function getTimeRange() - { - return $this->timeRange; - } - public function setTimestamp($timestamp) - { - $this->timestamp = $timestamp; - } - public function getTimestamp() - { - return $this->timestamp; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/DriveFile.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/DriveFile.php deleted file mode 100644 index 5f85535f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/DriveFile.php +++ /dev/null @@ -1,20 +0,0 @@ -type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/DriveItem.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/DriveItem.php deleted file mode 100644 index b5d2a717..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/DriveItem.php +++ /dev/null @@ -1,128 +0,0 @@ -driveFile = $driveFile; - } - /** - * @return Google_Service_DriveActivity_DriveFile - */ - public function getDriveFile() - { - return $this->driveFile; - } - /** - * @param Google_Service_DriveActivity_DriveFolder - */ - public function setDriveFolder(Google_Service_DriveActivity_DriveFolder $driveFolder) - { - $this->driveFolder = $driveFolder; - } - /** - * @return Google_Service_DriveActivity_DriveFolder - */ - public function getDriveFolder() - { - return $this->driveFolder; - } - /** - * @param Google_Service_DriveActivity_DriveactivityFile - */ - public function setFile(Google_Service_DriveActivity_DriveactivityFile $file) - { - $this->file = $file; - } - /** - * @return Google_Service_DriveActivity_DriveactivityFile - */ - public function getFile() - { - return $this->file; - } - /** - * @param Google_Service_DriveActivity_Folder - */ - public function setFolder(Google_Service_DriveActivity_Folder $folder) - { - $this->folder = $folder; - } - /** - * @return Google_Service_DriveActivity_Folder - */ - public function getFolder() - { - return $this->folder; - } - public function setMimeType($mimeType) - { - $this->mimeType = $mimeType; - } - public function getMimeType() - { - return $this->mimeType; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_DriveActivity_Owner - */ - public function setOwner(Google_Service_DriveActivity_Owner $owner) - { - $this->owner = $owner; - } - /** - * @return Google_Service_DriveActivity_Owner - */ - public function getOwner() - { - return $this->owner; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/DriveItemReference.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/DriveItemReference.php deleted file mode 100644 index 38236280..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/DriveItemReference.php +++ /dev/null @@ -1,103 +0,0 @@ -driveFile = $driveFile; - } - /** - * @return Google_Service_DriveActivity_DriveFile - */ - public function getDriveFile() - { - return $this->driveFile; - } - /** - * @param Google_Service_DriveActivity_DriveFolder - */ - public function setDriveFolder(Google_Service_DriveActivity_DriveFolder $driveFolder) - { - $this->driveFolder = $driveFolder; - } - /** - * @return Google_Service_DriveActivity_DriveFolder - */ - public function getDriveFolder() - { - return $this->driveFolder; - } - /** - * @param Google_Service_DriveActivity_DriveactivityFile - */ - public function setFile(Google_Service_DriveActivity_DriveactivityFile $file) - { - $this->file = $file; - } - /** - * @return Google_Service_DriveActivity_DriveactivityFile - */ - public function getFile() - { - return $this->file; - } - /** - * @param Google_Service_DriveActivity_Folder - */ - public function setFolder(Google_Service_DriveActivity_Folder $folder) - { - $this->folder = $folder; - } - /** - * @return Google_Service_DriveActivity_Folder - */ - public function getFolder() - { - return $this->folder; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/DriveReference.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/DriveReference.php deleted file mode 100644 index f88afbdb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/DriveReference.php +++ /dev/null @@ -1,39 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/DriveactivityFile.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/DriveactivityFile.php deleted file mode 100644 index 032924b6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/DriveactivityFile.php +++ /dev/null @@ -1,20 +0,0 @@ -legacyCommentId = $legacyCommentId; - } - public function getLegacyCommentId() - { - return $this->legacyCommentId; - } - public function setLegacyDiscussionId($legacyDiscussionId) - { - $this->legacyDiscussionId = $legacyDiscussionId; - } - public function getLegacyDiscussionId() - { - return $this->legacyDiscussionId; - } - public function setLinkToDiscussion($linkToDiscussion) - { - $this->linkToDiscussion = $linkToDiscussion; - } - public function getLinkToDiscussion() - { - return $this->linkToDiscussion; - } - /** - * @param Google_Service_DriveActivity_DriveItem - */ - public function setParent(Google_Service_DriveActivity_DriveItem $parent) - { - $this->parent = $parent; - } - /** - * @return Google_Service_DriveActivity_DriveItem - */ - public function getParent() - { - return $this->parent; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Folder.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Folder.php deleted file mode 100644 index f39b350e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Folder.php +++ /dev/null @@ -1,30 +0,0 @@ -type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Group.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Group.php deleted file mode 100644 index ecb8cc94..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Group.php +++ /dev/null @@ -1,39 +0,0 @@ -email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Impersonation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Impersonation.php deleted file mode 100644 index 7ad4898a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Impersonation.php +++ /dev/null @@ -1,37 +0,0 @@ -impersonatedUser = $impersonatedUser; - } - /** - * @return Google_Service_DriveActivity_User - */ - public function getImpersonatedUser() - { - return $this->impersonatedUser; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/KnownUser.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/KnownUser.php deleted file mode 100644 index d37fadb1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/KnownUser.php +++ /dev/null @@ -1,39 +0,0 @@ -isCurrentUser = $isCurrentUser; - } - public function getIsCurrentUser() - { - return $this->isCurrentUser; - } - public function setPersonName($personName) - { - $this->personName = $personName; - } - public function getPersonName() - { - return $this->personName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Legacy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Legacy.php deleted file mode 100644 index 06b424ad..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Legacy.php +++ /dev/null @@ -1,20 +0,0 @@ -addedParents = $addedParents; - } - /** - * @return Google_Service_DriveActivity_TargetReference - */ - public function getAddedParents() - { - return $this->addedParents; - } - /** - * @param Google_Service_DriveActivity_TargetReference - */ - public function setRemovedParents($removedParents) - { - $this->removedParents = $removedParents; - } - /** - * @return Google_Service_DriveActivity_TargetReference - */ - public function getRemovedParents() - { - return $this->removedParents; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/NoConsolidation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/NoConsolidation.php deleted file mode 100644 index 88f81e0c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/NoConsolidation.php +++ /dev/null @@ -1,20 +0,0 @@ -domain = $domain; - } - /** - * @return Google_Service_DriveActivity_Domain - */ - public function getDomain() - { - return $this->domain; - } - /** - * @param Google_Service_DriveActivity_DriveReference - */ - public function setDrive(Google_Service_DriveActivity_DriveReference $drive) - { - $this->drive = $drive; - } - /** - * @return Google_Service_DriveActivity_DriveReference - */ - public function getDrive() - { - return $this->drive; - } - /** - * @param Google_Service_DriveActivity_TeamDriveReference - */ - public function setTeamDrive(Google_Service_DriveActivity_TeamDriveReference $teamDrive) - { - $this->teamDrive = $teamDrive; - } - /** - * @return Google_Service_DriveActivity_TeamDriveReference - */ - public function getTeamDrive() - { - return $this->teamDrive; - } - /** - * @param Google_Service_DriveActivity_User - */ - public function setUser(Google_Service_DriveActivity_User $user) - { - $this->user = $user; - } - /** - * @return Google_Service_DriveActivity_User - */ - public function getUser() - { - return $this->user; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Permission.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Permission.php deleted file mode 100644 index 3b17a9c0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Permission.php +++ /dev/null @@ -1,103 +0,0 @@ -allowDiscovery = $allowDiscovery; - } - public function getAllowDiscovery() - { - return $this->allowDiscovery; - } - /** - * @param Google_Service_DriveActivity_Anyone - */ - public function setAnyone(Google_Service_DriveActivity_Anyone $anyone) - { - $this->anyone = $anyone; - } - /** - * @return Google_Service_DriveActivity_Anyone - */ - public function getAnyone() - { - return $this->anyone; - } - /** - * @param Google_Service_DriveActivity_Domain - */ - public function setDomain(Google_Service_DriveActivity_Domain $domain) - { - $this->domain = $domain; - } - /** - * @return Google_Service_DriveActivity_Domain - */ - public function getDomain() - { - return $this->domain; - } - /** - * @param Google_Service_DriveActivity_Group - */ - public function setGroup(Google_Service_DriveActivity_Group $group) - { - $this->group = $group; - } - /** - * @return Google_Service_DriveActivity_Group - */ - public function getGroup() - { - return $this->group; - } - public function setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } - /** - * @param Google_Service_DriveActivity_User - */ - public function setUser(Google_Service_DriveActivity_User $user) - { - $this->user = $user; - } - /** - * @return Google_Service_DriveActivity_User - */ - public function getUser() - { - return $this->user; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/PermissionChange.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/PermissionChange.php deleted file mode 100644 index f73fc918..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/PermissionChange.php +++ /dev/null @@ -1,54 +0,0 @@ -addedPermissions = $addedPermissions; - } - /** - * @return Google_Service_DriveActivity_Permission - */ - public function getAddedPermissions() - { - return $this->addedPermissions; - } - /** - * @param Google_Service_DriveActivity_Permission - */ - public function setRemovedPermissions($removedPermissions) - { - $this->removedPermissions = $removedPermissions; - } - /** - * @return Google_Service_DriveActivity_Permission - */ - public function getRemovedPermissions() - { - return $this->removedPermissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Post.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Post.php deleted file mode 100644 index 29e590cd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Post.php +++ /dev/null @@ -1,30 +0,0 @@ -subtype = $subtype; - } - public function getSubtype() - { - return $this->subtype; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/QueryDriveActivityRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/QueryDriveActivityRequest.php deleted file mode 100644 index 48e391a8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/QueryDriveActivityRequest.php +++ /dev/null @@ -1,82 +0,0 @@ -ancestorName = $ancestorName; - } - public function getAncestorName() - { - return $this->ancestorName; - } - /** - * @param Google_Service_DriveActivity_ConsolidationStrategy - */ - public function setConsolidationStrategy(Google_Service_DriveActivity_ConsolidationStrategy $consolidationStrategy) - { - $this->consolidationStrategy = $consolidationStrategy; - } - /** - * @return Google_Service_DriveActivity_ConsolidationStrategy - */ - public function getConsolidationStrategy() - { - return $this->consolidationStrategy; - } - public function setFilter($filter) - { - $this->filter = $filter; - } - public function getFilter() - { - return $this->filter; - } - public function setItemName($itemName) - { - $this->itemName = $itemName; - } - public function getItemName() - { - return $this->itemName; - } - public function setPageSize($pageSize) - { - $this->pageSize = $pageSize; - } - public function getPageSize() - { - return $this->pageSize; - } - public function setPageToken($pageToken) - { - $this->pageToken = $pageToken; - } - public function getPageToken() - { - return $this->pageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/QueryDriveActivityResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/QueryDriveActivityResponse.php deleted file mode 100644 index cdff53af..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/QueryDriveActivityResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -activities = $activities; - } - /** - * @return Google_Service_DriveActivity_DriveActivity - */ - public function getActivities() - { - return $this->activities; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Rename.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Rename.php deleted file mode 100644 index 6abdb351..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Rename.php +++ /dev/null @@ -1,39 +0,0 @@ -newTitle = $newTitle; - } - public function getNewTitle() - { - return $this->newTitle; - } - public function setOldTitle($oldTitle) - { - $this->oldTitle = $oldTitle; - } - public function getOldTitle() - { - return $this->oldTitle; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Resource/Activity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Resource/Activity.php deleted file mode 100644 index 0d30e6f5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Resource/Activity.php +++ /dev/null @@ -1,41 +0,0 @@ - - * $driveactivityService = new Google_Service_DriveActivity(...); - * $activity = $driveactivityService->activity; - * - */ -class Google_Service_DriveActivity_Resource_Activity extends Google_Service_Resource -{ - /** - * Query past activity in Google Drive. (activity.query) - * - * @param Google_Service_DriveActivity_QueryDriveActivityRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_DriveActivity_QueryDriveActivityResponse - */ - public function query(Google_Service_DriveActivity_QueryDriveActivityRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('query', array($params), "Google_Service_DriveActivity_QueryDriveActivityResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Restore.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Restore.php deleted file mode 100644 index 12f5d16c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Restore.php +++ /dev/null @@ -1,30 +0,0 @@ -type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/RestrictionChange.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/RestrictionChange.php deleted file mode 100644 index 95b6cbba..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/RestrictionChange.php +++ /dev/null @@ -1,39 +0,0 @@ -feature = $feature; - } - public function getFeature() - { - return $this->feature; - } - public function setNewRestriction($newRestriction) - { - $this->newRestriction = $newRestriction; - } - public function getNewRestriction() - { - return $this->newRestriction; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/SettingsChange.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/SettingsChange.php deleted file mode 100644 index 83d5a285..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/SettingsChange.php +++ /dev/null @@ -1,38 +0,0 @@ -restrictionChanges = $restrictionChanges; - } - /** - * @return Google_Service_DriveActivity_RestrictionChange - */ - public function getRestrictionChanges() - { - return $this->restrictionChanges; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Suggestion.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Suggestion.php deleted file mode 100644 index 55868e82..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Suggestion.php +++ /dev/null @@ -1,30 +0,0 @@ -subtype = $subtype; - } - public function getSubtype() - { - return $this->subtype; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/SystemEvent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/SystemEvent.php deleted file mode 100644 index c527e14d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/SystemEvent.php +++ /dev/null @@ -1,30 +0,0 @@ -type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Target.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Target.php deleted file mode 100644 index 0ee5d719..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/Target.php +++ /dev/null @@ -1,85 +0,0 @@ -drive = $drive; - } - /** - * @return Google_Service_DriveActivity_Drive - */ - public function getDrive() - { - return $this->drive; - } - /** - * @param Google_Service_DriveActivity_DriveItem - */ - public function setDriveItem(Google_Service_DriveActivity_DriveItem $driveItem) - { - $this->driveItem = $driveItem; - } - /** - * @return Google_Service_DriveActivity_DriveItem - */ - public function getDriveItem() - { - return $this->driveItem; - } - /** - * @param Google_Service_DriveActivity_FileComment - */ - public function setFileComment(Google_Service_DriveActivity_FileComment $fileComment) - { - $this->fileComment = $fileComment; - } - /** - * @return Google_Service_DriveActivity_FileComment - */ - public function getFileComment() - { - return $this->fileComment; - } - /** - * @param Google_Service_DriveActivity_TeamDrive - */ - public function setTeamDrive(Google_Service_DriveActivity_TeamDrive $teamDrive) - { - $this->teamDrive = $teamDrive; - } - /** - * @return Google_Service_DriveActivity_TeamDrive - */ - public function getTeamDrive() - { - return $this->teamDrive; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/TargetReference.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/TargetReference.php deleted file mode 100644 index 011238d1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/TargetReference.php +++ /dev/null @@ -1,69 +0,0 @@ -drive = $drive; - } - /** - * @return Google_Service_DriveActivity_DriveReference - */ - public function getDrive() - { - return $this->drive; - } - /** - * @param Google_Service_DriveActivity_DriveItemReference - */ - public function setDriveItem(Google_Service_DriveActivity_DriveItemReference $driveItem) - { - $this->driveItem = $driveItem; - } - /** - * @return Google_Service_DriveActivity_DriveItemReference - */ - public function getDriveItem() - { - return $this->driveItem; - } - /** - * @param Google_Service_DriveActivity_TeamDriveReference - */ - public function setTeamDrive(Google_Service_DriveActivity_TeamDriveReference $teamDrive) - { - $this->teamDrive = $teamDrive; - } - /** - * @return Google_Service_DriveActivity_TeamDriveReference - */ - public function getTeamDrive() - { - return $this->teamDrive; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/TeamDrive.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/TeamDrive.php deleted file mode 100644 index 53a5a383..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/TeamDrive.php +++ /dev/null @@ -1,55 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_DriveActivity_DriveItem - */ - public function setRoot(Google_Service_DriveActivity_DriveItem $root) - { - $this->root = $root; - } - /** - * @return Google_Service_DriveActivity_DriveItem - */ - public function getRoot() - { - return $this->root; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/TeamDriveReference.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/TeamDriveReference.php deleted file mode 100644 index e93d3fcf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/TeamDriveReference.php +++ /dev/null @@ -1,39 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/TimeRange.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/TimeRange.php deleted file mode 100644 index d6b73bdf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/TimeRange.php +++ /dev/null @@ -1,39 +0,0 @@ -endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/UnknownUser.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/UnknownUser.php deleted file mode 100644 index af3e1ba4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/DriveActivity/UnknownUser.php +++ /dev/null @@ -1,20 +0,0 @@ -deletedUser = $deletedUser; - } - /** - * @return Google_Service_DriveActivity_DeletedUser - */ - public function getDeletedUser() - { - return $this->deletedUser; - } - /** - * @param Google_Service_DriveActivity_KnownUser - */ - public function setKnownUser(Google_Service_DriveActivity_KnownUser $knownUser) - { - $this->knownUser = $knownUser; - } - /** - * @return Google_Service_DriveActivity_KnownUser - */ - public function getKnownUser() - { - return $this->knownUser; - } - /** - * @param Google_Service_DriveActivity_UnknownUser - */ - public function setUnknownUser(Google_Service_DriveActivity_UnknownUser $unknownUser) - { - $this->unknownUser = $unknownUser; - } - /** - * @return Google_Service_DriveActivity_UnknownUser - */ - public function getUnknownUser() - { - return $this->unknownUser; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FactCheckTools.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FactCheckTools.php deleted file mode 100644 index bb8f24bb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FactCheckTools.php +++ /dev/null @@ -1,168 +0,0 @@ - -

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_FactCheckTools extends Google_Service -{ - /** View your email address. */ - const USERINFO_EMAIL = - "https://www.googleapis.com/auth/userinfo.email"; - - public $claims; - public $pages; - - /** - * Constructs the internal representation of the FactCheckTools service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://factchecktools.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1alpha1'; - $this->serviceName = 'factchecktools'; - - $this->claims = new Google_Service_FactCheckTools_Resource_Claims( - $this, - $this->serviceName, - 'claims', - array( - 'methods' => array( - 'search' => array( - 'path' => 'v1alpha1/claims:search', - 'httpMethod' => 'GET', - 'parameters' => array( - 'maxAgeDays' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'offset' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'reviewPublisherSiteFilter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'query' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'languageCode' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->pages = new Google_Service_FactCheckTools_Resource_Pages( - $this, - $this->serviceName, - 'pages', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1alpha1/pages', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'delete' => array( - 'path' => 'v1alpha1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1alpha1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1alpha1/pages', - 'httpMethod' => 'GET', - 'parameters' => array( - 'offset' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'organization' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'url' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'v1alpha1/{+name}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FactCheckTools/GoogleFactcheckingFactchecktoolsV1alpha1Claim.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FactCheckTools/GoogleFactcheckingFactchecktoolsV1alpha1Claim.php deleted file mode 100644 index e0e14c4d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FactCheckTools/GoogleFactcheckingFactchecktoolsV1alpha1Claim.php +++ /dev/null @@ -1,65 +0,0 @@ -claimDate = $claimDate; - } - public function getClaimDate() - { - return $this->claimDate; - } - /** - * @param Google_Service_FactCheckTools_GoogleFactcheckingFactchecktoolsV1alpha1ClaimReview - */ - public function setClaimReview($claimReview) - { - $this->claimReview = $claimReview; - } - /** - * @return Google_Service_FactCheckTools_GoogleFactcheckingFactchecktoolsV1alpha1ClaimReview - */ - public function getClaimReview() - { - return $this->claimReview; - } - public function setClaimant($claimant) - { - $this->claimant = $claimant; - } - public function getClaimant() - { - return $this->claimant; - } - public function setText($text) - { - $this->text = $text; - } - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FactCheckTools/GoogleFactcheckingFactchecktoolsV1alpha1ClaimAuthor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FactCheckTools/GoogleFactcheckingFactchecktoolsV1alpha1ClaimAuthor.php deleted file mode 100644 index 8db405b2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FactCheckTools/GoogleFactcheckingFactchecktoolsV1alpha1ClaimAuthor.php +++ /dev/null @@ -1,57 +0,0 @@ -imageUrl = $imageUrl; - } - public function getImageUrl() - { - return $this->imageUrl; - } - public function setJobTitle($jobTitle) - { - $this->jobTitle = $jobTitle; - } - public function getJobTitle() - { - return $this->jobTitle; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setSameAs($sameAs) - { - $this->sameAs = $sameAs; - } - public function getSameAs() - { - return $this->sameAs; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FactCheckTools/GoogleFactcheckingFactchecktoolsV1alpha1ClaimRating.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FactCheckTools/GoogleFactcheckingFactchecktoolsV1alpha1ClaimRating.php deleted file mode 100644 index e6eb39be..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FactCheckTools/GoogleFactcheckingFactchecktoolsV1alpha1ClaimRating.php +++ /dev/null @@ -1,75 +0,0 @@ -bestRating = $bestRating; - } - public function getBestRating() - { - return $this->bestRating; - } - public function setImageUrl($imageUrl) - { - $this->imageUrl = $imageUrl; - } - public function getImageUrl() - { - return $this->imageUrl; - } - public function setRatingExplanation($ratingExplanation) - { - $this->ratingExplanation = $ratingExplanation; - } - public function getRatingExplanation() - { - return $this->ratingExplanation; - } - public function setRatingValue($ratingValue) - { - $this->ratingValue = $ratingValue; - } - public function getRatingValue() - { - return $this->ratingValue; - } - public function setTextualRating($textualRating) - { - $this->textualRating = $textualRating; - } - public function getTextualRating() - { - return $this->textualRating; - } - public function setWorstRating($worstRating) - { - $this->worstRating = $worstRating; - } - public function getWorstRating() - { - return $this->worstRating; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FactCheckTools/GoogleFactcheckingFactchecktoolsV1alpha1ClaimReview.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FactCheckTools/GoogleFactcheckingFactchecktoolsV1alpha1ClaimReview.php deleted file mode 100644 index 7a954c7e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FactCheckTools/GoogleFactcheckingFactchecktoolsV1alpha1ClaimReview.php +++ /dev/null @@ -1,82 +0,0 @@ -languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } - /** - * @param Google_Service_FactCheckTools_GoogleFactcheckingFactchecktoolsV1alpha1Publisher - */ - public function setPublisher(Google_Service_FactCheckTools_GoogleFactcheckingFactchecktoolsV1alpha1Publisher $publisher) - { - $this->publisher = $publisher; - } - /** - * @return Google_Service_FactCheckTools_GoogleFactcheckingFactchecktoolsV1alpha1Publisher - */ - public function getPublisher() - { - return $this->publisher; - } - public function setReviewDate($reviewDate) - { - $this->reviewDate = $reviewDate; - } - public function getReviewDate() - { - return $this->reviewDate; - } - public function setTextualRating($textualRating) - { - $this->textualRating = $textualRating; - } - public function getTextualRating() - { - return $this->textualRating; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FactCheckTools/GoogleFactcheckingFactchecktoolsV1alpha1ClaimReviewAuthor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FactCheckTools/GoogleFactcheckingFactchecktoolsV1alpha1ClaimReviewAuthor.php deleted file mode 100644 index 7c66c5c9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FactCheckTools/GoogleFactcheckingFactchecktoolsV1alpha1ClaimReviewAuthor.php +++ /dev/null @@ -1,39 +0,0 @@ -imageUrl = $imageUrl; - } - public function getImageUrl() - { - return $this->imageUrl; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FactCheckTools/GoogleFactcheckingFactchecktoolsV1alpha1ClaimReviewMarkup.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FactCheckTools/GoogleFactcheckingFactchecktoolsV1alpha1ClaimReviewMarkup.php deleted file mode 100644 index 17250425..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FactCheckTools/GoogleFactcheckingFactchecktoolsV1alpha1ClaimReviewMarkup.php +++ /dev/null @@ -1,108 +0,0 @@ -claimAppearances = $claimAppearances; - } - public function getClaimAppearances() - { - return $this->claimAppearances; - } - /** - * @param Google_Service_FactCheckTools_GoogleFactcheckingFactchecktoolsV1alpha1ClaimAuthor - */ - public function setClaimAuthor(Google_Service_FactCheckTools_GoogleFactcheckingFactchecktoolsV1alpha1ClaimAuthor $claimAuthor) - { - $this->claimAuthor = $claimAuthor; - } - /** - * @return Google_Service_FactCheckTools_GoogleFactcheckingFactchecktoolsV1alpha1ClaimAuthor - */ - public function getClaimAuthor() - { - return $this->claimAuthor; - } - public function setClaimDate($claimDate) - { - $this->claimDate = $claimDate; - } - public function getClaimDate() - { - return $this->claimDate; - } - public function setClaimFirstAppearance($claimFirstAppearance) - { - $this->claimFirstAppearance = $claimFirstAppearance; - } - public function getClaimFirstAppearance() - { - return $this->claimFirstAppearance; - } - public function setClaimLocation($claimLocation) - { - $this->claimLocation = $claimLocation; - } - public function getClaimLocation() - { - return $this->claimLocation; - } - public function setClaimReviewed($claimReviewed) - { - $this->claimReviewed = $claimReviewed; - } - public function getClaimReviewed() - { - return $this->claimReviewed; - } - /** - * @param Google_Service_FactCheckTools_GoogleFactcheckingFactchecktoolsV1alpha1ClaimRating - */ - public function setRating(Google_Service_FactCheckTools_GoogleFactcheckingFactchecktoolsV1alpha1ClaimRating $rating) - { - $this->rating = $rating; - } - /** - * @return Google_Service_FactCheckTools_GoogleFactcheckingFactchecktoolsV1alpha1ClaimRating - */ - public function getRating() - { - return $this->rating; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FactCheckTools/GoogleFactcheckingFactchecktoolsV1alpha1ClaimReviewMarkupPage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FactCheckTools/GoogleFactcheckingFactchecktoolsV1alpha1ClaimReviewMarkupPage.php deleted file mode 100644 index fd1af465..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FactCheckTools/GoogleFactcheckingFactchecktoolsV1alpha1ClaimReviewMarkupPage.php +++ /dev/null @@ -1,90 +0,0 @@ -claimReviewAuthor = $claimReviewAuthor; - } - /** - * @return Google_Service_FactCheckTools_GoogleFactcheckingFactchecktoolsV1alpha1ClaimReviewAuthor - */ - public function getClaimReviewAuthor() - { - return $this->claimReviewAuthor; - } - /** - * @param Google_Service_FactCheckTools_GoogleFactcheckingFactchecktoolsV1alpha1ClaimReviewMarkup - */ - public function setClaimReviewMarkups($claimReviewMarkups) - { - $this->claimReviewMarkups = $claimReviewMarkups; - } - /** - * @return Google_Service_FactCheckTools_GoogleFactcheckingFactchecktoolsV1alpha1ClaimReviewMarkup - */ - public function getClaimReviewMarkups() - { - return $this->claimReviewMarkups; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPageUrl($pageUrl) - { - $this->pageUrl = $pageUrl; - } - public function getPageUrl() - { - return $this->pageUrl; - } - public function setPublishDate($publishDate) - { - $this->publishDate = $publishDate; - } - public function getPublishDate() - { - return $this->publishDate; - } - public function setVersionId($versionId) - { - $this->versionId = $versionId; - } - public function getVersionId() - { - return $this->versionId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FactCheckTools/GoogleFactcheckingFactchecktoolsV1alpha1FactCheckedClaimSearchResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FactCheckTools/GoogleFactcheckingFactchecktoolsV1alpha1FactCheckedClaimSearchResponse.php deleted file mode 100644 index 666212bb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FactCheckTools/GoogleFactcheckingFactchecktoolsV1alpha1FactCheckedClaimSearchResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -claims = $claims; - } - /** - * @return Google_Service_FactCheckTools_GoogleFactcheckingFactchecktoolsV1alpha1Claim - */ - public function getClaims() - { - return $this->claims; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FactCheckTools/GoogleFactcheckingFactchecktoolsV1alpha1ListClaimReviewMarkupPagesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FactCheckTools/GoogleFactcheckingFactchecktoolsV1alpha1ListClaimReviewMarkupPagesResponse.php deleted file mode 100644 index 4a767233..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FactCheckTools/GoogleFactcheckingFactchecktoolsV1alpha1ListClaimReviewMarkupPagesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -claimReviewMarkupPages = $claimReviewMarkupPages; - } - /** - * @return Google_Service_FactCheckTools_GoogleFactcheckingFactchecktoolsV1alpha1ClaimReviewMarkupPage - */ - public function getClaimReviewMarkupPages() - { - return $this->claimReviewMarkupPages; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FactCheckTools/GoogleFactcheckingFactchecktoolsV1alpha1Publisher.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FactCheckTools/GoogleFactcheckingFactchecktoolsV1alpha1Publisher.php deleted file mode 100644 index 962a3780..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FactCheckTools/GoogleFactcheckingFactchecktoolsV1alpha1Publisher.php +++ /dev/null @@ -1,39 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setSite($site) - { - $this->site = $site; - } - public function getSite() - { - return $this->site; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FactCheckTools/GoogleProtobufEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FactCheckTools/GoogleProtobufEmpty.php deleted file mode 100644 index 9dcf603f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FactCheckTools/GoogleProtobufEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ - - * $factchecktoolsService = new Google_Service_FactCheckTools(...); - * $claims = $factchecktoolsService->claims; - * - */ -class Google_Service_FactCheckTools_Resource_Claims extends Google_Service_Resource -{ - /** - * Search through fact-checked claims. (claims.search) - * - * @param array $optParams Optional parameters. - * - * @opt_param int maxAgeDays The maximum age of the returned search results, in - * days. Age is determined by either claim date or review date, whichever is - * newer. - * @opt_param int offset An integer that specifies the current offset (that is, - * starting result location) in search results. This field is only considered if - * `page_token` is unset. For example, 0 means to return results starting from - * the first matching result, and 10 means to return from the 11th result. - * @opt_param string pageToken The pagination token. You may provide the - * `next_page_token` returned from a previous List request, if any, in order to - * get the next page. All other fields must have the same values as in the - * previous request. - * @opt_param string reviewPublisherSiteFilter The review publisher site to - * filter results by, e.g. nytimes.com. - * @opt_param int pageSize The pagination size. We will return up to that many - * results. Defaults to 10 if not set. - * @opt_param string query Textual query string. Required unless - * `review_publisher_site_filter` is specified. - * @opt_param string languageCode The BCP-47 language code, such as "en-US" or - * "sr-Latn". Can be used to restrict results by language, though we do not - * currently consider the region. - * @return Google_Service_FactCheckTools_GoogleFactcheckingFactchecktoolsV1alpha1FactCheckedClaimSearchResponse - */ - public function search($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('search', array($params), "Google_Service_FactCheckTools_GoogleFactcheckingFactchecktoolsV1alpha1FactCheckedClaimSearchResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FactCheckTools/Resource/Pages.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FactCheckTools/Resource/Pages.php deleted file mode 100644 index 04c8dd98..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FactCheckTools/Resource/Pages.php +++ /dev/null @@ -1,121 +0,0 @@ - - * $factchecktoolsService = new Google_Service_FactCheckTools(...); - * $pages = $factchecktoolsService->pages; - * - */ -class Google_Service_FactCheckTools_Resource_Pages extends Google_Service_Resource -{ - /** - * Create `ClaimReview` markup on a page. (pages.create) - * - * @param Google_Service_FactCheckTools_GoogleFactcheckingFactchecktoolsV1alpha1ClaimReviewMarkupPage $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_FactCheckTools_GoogleFactcheckingFactchecktoolsV1alpha1ClaimReviewMarkupPage - */ - public function create(Google_Service_FactCheckTools_GoogleFactcheckingFactchecktoolsV1alpha1ClaimReviewMarkupPage $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_FactCheckTools_GoogleFactcheckingFactchecktoolsV1alpha1ClaimReviewMarkupPage"); - } - /** - * Delete all `ClaimReview` markup on a page. (pages.delete) - * - * @param string $name The name of the resource to delete, in the form of - * `pages/{page_id}`. - * @param array $optParams Optional parameters. - * @return Google_Service_FactCheckTools_GoogleProtobufEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_FactCheckTools_GoogleProtobufEmpty"); - } - /** - * Get all `ClaimReview` markup on a page. (pages.get) - * - * @param string $name The name of the resource to get, in the form of - * `pages/{page_id}`. - * @param array $optParams Optional parameters. - * @return Google_Service_FactCheckTools_GoogleFactcheckingFactchecktoolsV1alpha1ClaimReviewMarkupPage - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_FactCheckTools_GoogleFactcheckingFactchecktoolsV1alpha1ClaimReviewMarkupPage"); - } - /** - * List the `ClaimReview` markup pages for a specific URL or for an - * organization. (pages.listPages) - * - * @param array $optParams Optional parameters. - * - * @opt_param int offset An integer that specifies the current offset (that is, - * starting result location) in search results. This field is only considered if - * `page_token` is unset, and if the request is not for a specific URL. For - * example, 0 means to return results starting from the first matching result, - * and 10 means to return from the 11th result. - * @opt_param string pageToken The pagination token. You may provide the - * `next_page_token` returned from a previous List request, if any, in order to - * get the next page. All other fields must have the same values as in the - * previous request. - * @opt_param string organization The organization for which we want to fetch - * markups for. For instance, "site.com". Cannot be specified along with an URL. - * @opt_param int pageSize The pagination size. We will return up to that many - * results. Defaults to 10 if not set. Has no effect if a URL is requested. - * @opt_param string url The URL from which to get `ClaimReview` markup. There - * will be at most one result. If markup is associated with a more canonical - * version of the URL provided, we will return that URL instead. Cannot be - * specified along with an organization. - * @return Google_Service_FactCheckTools_GoogleFactcheckingFactchecktoolsV1alpha1ListClaimReviewMarkupPagesResponse - */ - public function listPages($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_FactCheckTools_GoogleFactcheckingFactchecktoolsV1alpha1ListClaimReviewMarkupPagesResponse"); - } - /** - * Update for all `ClaimReview` markup on a page - * - * Note that this is a full update. To retain the existing `ClaimReview` markup - * on a page, first perform a Get operation, then modify the returned markup, - * and finally call Update with the entire `ClaimReview` markup as the body. - * (pages.update) - * - * @param string $name The name of this `ClaimReview` markup page resource, in - * the form of `pages/{page_id}`. Except for update requests, this field is - * output-only and should not be set by the user. - * @param Google_Service_FactCheckTools_GoogleFactcheckingFactchecktoolsV1alpha1ClaimReviewMarkupPage $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_FactCheckTools_GoogleFactcheckingFactchecktoolsV1alpha1ClaimReviewMarkupPage - */ - public function update($name, Google_Service_FactCheckTools_GoogleFactcheckingFactchecktoolsV1alpha1ClaimReviewMarkupPage $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_FactCheckTools_GoogleFactcheckingFactchecktoolsV1alpha1ClaimReviewMarkupPage"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseCloudMessaging.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseCloudMessaging.php deleted file mode 100644 index da4d3dce..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseCloudMessaging.php +++ /dev/null @@ -1,77 +0,0 @@ - - * FCM send API that provides a cross-platform messaging solution to reliably - * deliver messages at no cost.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_FirebaseCloudMessaging extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - - public $projects_messages; - - /** - * Constructs the internal representation of the FirebaseCloudMessaging - * service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://fcm.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'fcm'; - - $this->projects_messages = new Google_Service_FirebaseCloudMessaging_Resource_ProjectsMessages( - $this, - $this->serviceName, - 'messages', - array( - 'methods' => array( - 'send' => array( - 'path' => 'v1/{+parent}/messages:send', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseCloudMessaging/AndroidConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseCloudMessaging/AndroidConfig.php deleted file mode 100644 index 871f5893..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseCloudMessaging/AndroidConfig.php +++ /dev/null @@ -1,107 +0,0 @@ -collapseKey = $collapseKey; - } - public function getCollapseKey() - { - return $this->collapseKey; - } - public function setData($data) - { - $this->data = $data; - } - public function getData() - { - return $this->data; - } - public function setDirectBootOk($directBootOk) - { - $this->directBootOk = $directBootOk; - } - public function getDirectBootOk() - { - return $this->directBootOk; - } - /** - * @param Google_Service_FirebaseCloudMessaging_AndroidFcmOptions - */ - public function setFcmOptions(Google_Service_FirebaseCloudMessaging_AndroidFcmOptions $fcmOptions) - { - $this->fcmOptions = $fcmOptions; - } - /** - * @return Google_Service_FirebaseCloudMessaging_AndroidFcmOptions - */ - public function getFcmOptions() - { - return $this->fcmOptions; - } - /** - * @param Google_Service_FirebaseCloudMessaging_AndroidNotification - */ - public function setNotification(Google_Service_FirebaseCloudMessaging_AndroidNotification $notification) - { - $this->notification = $notification; - } - /** - * @return Google_Service_FirebaseCloudMessaging_AndroidNotification - */ - public function getNotification() - { - return $this->notification; - } - public function setPriority($priority) - { - $this->priority = $priority; - } - public function getPriority() - { - return $this->priority; - } - public function setRestrictedPackageName($restrictedPackageName) - { - $this->restrictedPackageName = $restrictedPackageName; - } - public function getRestrictedPackageName() - { - return $this->restrictedPackageName; - } - public function setTtl($ttl) - { - $this->ttl = $ttl; - } - public function getTtl() - { - return $this->ttl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseCloudMessaging/AndroidFcmOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseCloudMessaging/AndroidFcmOptions.php deleted file mode 100644 index d273db3e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseCloudMessaging/AndroidFcmOptions.php +++ /dev/null @@ -1,30 +0,0 @@ -analyticsLabel = $analyticsLabel; - } - public function getAnalyticsLabel() - { - return $this->analyticsLabel; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseCloudMessaging/AndroidNotification.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseCloudMessaging/AndroidNotification.php deleted file mode 100644 index 260e96bc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseCloudMessaging/AndroidNotification.php +++ /dev/null @@ -1,254 +0,0 @@ -body = $body; - } - public function getBody() - { - return $this->body; - } - public function setBodyLocArgs($bodyLocArgs) - { - $this->bodyLocArgs = $bodyLocArgs; - } - public function getBodyLocArgs() - { - return $this->bodyLocArgs; - } - public function setBodyLocKey($bodyLocKey) - { - $this->bodyLocKey = $bodyLocKey; - } - public function getBodyLocKey() - { - return $this->bodyLocKey; - } - public function setChannelId($channelId) - { - $this->channelId = $channelId; - } - public function getChannelId() - { - return $this->channelId; - } - public function setClickAction($clickAction) - { - $this->clickAction = $clickAction; - } - public function getClickAction() - { - return $this->clickAction; - } - public function setColor($color) - { - $this->color = $color; - } - public function getColor() - { - return $this->color; - } - public function setDefaultLightSettings($defaultLightSettings) - { - $this->defaultLightSettings = $defaultLightSettings; - } - public function getDefaultLightSettings() - { - return $this->defaultLightSettings; - } - public function setDefaultSound($defaultSound) - { - $this->defaultSound = $defaultSound; - } - public function getDefaultSound() - { - return $this->defaultSound; - } - public function setDefaultVibrateTimings($defaultVibrateTimings) - { - $this->defaultVibrateTimings = $defaultVibrateTimings; - } - public function getDefaultVibrateTimings() - { - return $this->defaultVibrateTimings; - } - public function setEventTime($eventTime) - { - $this->eventTime = $eventTime; - } - public function getEventTime() - { - return $this->eventTime; - } - public function setIcon($icon) - { - $this->icon = $icon; - } - public function getIcon() - { - return $this->icon; - } - public function setImage($image) - { - $this->image = $image; - } - public function getImage() - { - return $this->image; - } - /** - * @param Google_Service_FirebaseCloudMessaging_LightSettings - */ - public function setLightSettings(Google_Service_FirebaseCloudMessaging_LightSettings $lightSettings) - { - $this->lightSettings = $lightSettings; - } - /** - * @return Google_Service_FirebaseCloudMessaging_LightSettings - */ - public function getLightSettings() - { - return $this->lightSettings; - } - public function setLocalOnly($localOnly) - { - $this->localOnly = $localOnly; - } - public function getLocalOnly() - { - return $this->localOnly; - } - public function setNotificationCount($notificationCount) - { - $this->notificationCount = $notificationCount; - } - public function getNotificationCount() - { - return $this->notificationCount; - } - public function setNotificationPriority($notificationPriority) - { - $this->notificationPriority = $notificationPriority; - } - public function getNotificationPriority() - { - return $this->notificationPriority; - } - public function setSound($sound) - { - $this->sound = $sound; - } - public function getSound() - { - return $this->sound; - } - public function setSticky($sticky) - { - $this->sticky = $sticky; - } - public function getSticky() - { - return $this->sticky; - } - public function setTag($tag) - { - $this->tag = $tag; - } - public function getTag() - { - return $this->tag; - } - public function setTicker($ticker) - { - $this->ticker = $ticker; - } - public function getTicker() - { - return $this->ticker; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setTitleLocArgs($titleLocArgs) - { - $this->titleLocArgs = $titleLocArgs; - } - public function getTitleLocArgs() - { - return $this->titleLocArgs; - } - public function setTitleLocKey($titleLocKey) - { - $this->titleLocKey = $titleLocKey; - } - public function getTitleLocKey() - { - return $this->titleLocKey; - } - public function setVibrateTimings($vibrateTimings) - { - $this->vibrateTimings = $vibrateTimings; - } - public function getVibrateTimings() - { - return $this->vibrateTimings; - } - public function setVisibility($visibility) - { - $this->visibility = $visibility; - } - public function getVisibility() - { - return $this->visibility; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseCloudMessaging/ApnsConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseCloudMessaging/ApnsConfig.php deleted file mode 100644 index d8cba42c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseCloudMessaging/ApnsConfig.php +++ /dev/null @@ -1,55 +0,0 @@ -fcmOptions = $fcmOptions; - } - /** - * @return Google_Service_FirebaseCloudMessaging_ApnsFcmOptions - */ - public function getFcmOptions() - { - return $this->fcmOptions; - } - public function setHeaders($headers) - { - $this->headers = $headers; - } - public function getHeaders() - { - return $this->headers; - } - public function setPayload($payload) - { - $this->payload = $payload; - } - public function getPayload() - { - return $this->payload; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseCloudMessaging/ApnsFcmOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseCloudMessaging/ApnsFcmOptions.php deleted file mode 100644 index 920d1bd5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseCloudMessaging/ApnsFcmOptions.php +++ /dev/null @@ -1,39 +0,0 @@ -analyticsLabel = $analyticsLabel; - } - public function getAnalyticsLabel() - { - return $this->analyticsLabel; - } - public function setImage($image) - { - $this->image = $image; - } - public function getImage() - { - return $this->image; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseCloudMessaging/Color.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseCloudMessaging/Color.php deleted file mode 100644 index eb3568de..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseCloudMessaging/Color.php +++ /dev/null @@ -1,57 +0,0 @@ -alpha = $alpha; - } - public function getAlpha() - { - return $this->alpha; - } - public function setBlue($blue) - { - $this->blue = $blue; - } - public function getBlue() - { - return $this->blue; - } - public function setGreen($green) - { - $this->green = $green; - } - public function getGreen() - { - return $this->green; - } - public function setRed($red) - { - $this->red = $red; - } - public function getRed() - { - return $this->red; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseCloudMessaging/FcmOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseCloudMessaging/FcmOptions.php deleted file mode 100644 index e075c130..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseCloudMessaging/FcmOptions.php +++ /dev/null @@ -1,30 +0,0 @@ -analyticsLabel = $analyticsLabel; - } - public function getAnalyticsLabel() - { - return $this->analyticsLabel; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseCloudMessaging/LightSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseCloudMessaging/LightSettings.php deleted file mode 100644 index b2487ee5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseCloudMessaging/LightSettings.php +++ /dev/null @@ -1,55 +0,0 @@ -color = $color; - } - /** - * @return Google_Service_FirebaseCloudMessaging_Color - */ - public function getColor() - { - return $this->color; - } - public function setLightOffDuration($lightOffDuration) - { - $this->lightOffDuration = $lightOffDuration; - } - public function getLightOffDuration() - { - return $this->lightOffDuration; - } - public function setLightOnDuration($lightOnDuration) - { - $this->lightOnDuration = $lightOnDuration; - } - public function getLightOnDuration() - { - return $this->lightOnDuration; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseCloudMessaging/Message.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseCloudMessaging/Message.php deleted file mode 100644 index c671f93e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseCloudMessaging/Message.php +++ /dev/null @@ -1,146 +0,0 @@ -android = $android; - } - /** - * @return Google_Service_FirebaseCloudMessaging_AndroidConfig - */ - public function getAndroid() - { - return $this->android; - } - /** - * @param Google_Service_FirebaseCloudMessaging_ApnsConfig - */ - public function setApns(Google_Service_FirebaseCloudMessaging_ApnsConfig $apns) - { - $this->apns = $apns; - } - /** - * @return Google_Service_FirebaseCloudMessaging_ApnsConfig - */ - public function getApns() - { - return $this->apns; - } - public function setCondition($condition) - { - $this->condition = $condition; - } - public function getCondition() - { - return $this->condition; - } - public function setData($data) - { - $this->data = $data; - } - public function getData() - { - return $this->data; - } - /** - * @param Google_Service_FirebaseCloudMessaging_FcmOptions - */ - public function setFcmOptions(Google_Service_FirebaseCloudMessaging_FcmOptions $fcmOptions) - { - $this->fcmOptions = $fcmOptions; - } - /** - * @return Google_Service_FirebaseCloudMessaging_FcmOptions - */ - public function getFcmOptions() - { - return $this->fcmOptions; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_FirebaseCloudMessaging_Notification - */ - public function setNotification(Google_Service_FirebaseCloudMessaging_Notification $notification) - { - $this->notification = $notification; - } - /** - * @return Google_Service_FirebaseCloudMessaging_Notification - */ - public function getNotification() - { - return $this->notification; - } - public function setToken($token) - { - $this->token = $token; - } - public function getToken() - { - return $this->token; - } - public function setTopic($topic) - { - $this->topic = $topic; - } - public function getTopic() - { - return $this->topic; - } - /** - * @param Google_Service_FirebaseCloudMessaging_WebpushConfig - */ - public function setWebpush(Google_Service_FirebaseCloudMessaging_WebpushConfig $webpush) - { - $this->webpush = $webpush; - } - /** - * @return Google_Service_FirebaseCloudMessaging_WebpushConfig - */ - public function getWebpush() - { - return $this->webpush; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseCloudMessaging/Notification.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseCloudMessaging/Notification.php deleted file mode 100644 index ee90ac1d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseCloudMessaging/Notification.php +++ /dev/null @@ -1,48 +0,0 @@ -body = $body; - } - public function getBody() - { - return $this->body; - } - public function setImage($image) - { - $this->image = $image; - } - public function getImage() - { - return $this->image; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseCloudMessaging/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseCloudMessaging/Resource/Projects.php deleted file mode 100644 index f5c0d765..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseCloudMessaging/Resource/Projects.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $fcmService = new Google_Service_FirebaseCloudMessaging(...); - * $projects = $fcmService->projects; - * - */ -class Google_Service_FirebaseCloudMessaging_Resource_Projects extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseCloudMessaging/Resource/ProjectsMessages.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseCloudMessaging/Resource/ProjectsMessages.php deleted file mode 100644 index c9e6f03c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseCloudMessaging/Resource/ProjectsMessages.php +++ /dev/null @@ -1,46 +0,0 @@ - - * $fcmService = new Google_Service_FirebaseCloudMessaging(...); - * $messages = $fcmService->messages; - * - */ -class Google_Service_FirebaseCloudMessaging_Resource_ProjectsMessages extends Google_Service_Resource -{ - /** - * Send a message to specified target (a registration token, topic or - * condition). (messages.send) - * - * @param string $parent Required. It contains the Firebase project id (i.e. the - * unique identifier for your Firebase project), in the format of - * `projects/{project_id}`. For legacy support, the numeric project number with - * no padding is also supported in the format of `projects/{project_number}`. - * @param Google_Service_FirebaseCloudMessaging_SendMessageRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_FirebaseCloudMessaging_Message - */ - public function send($parent, Google_Service_FirebaseCloudMessaging_SendMessageRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('send', array($params), "Google_Service_FirebaseCloudMessaging_Message"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseCloudMessaging/SendMessageRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseCloudMessaging/SendMessageRequest.php deleted file mode 100644 index 21893aaf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseCloudMessaging/SendMessageRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -message = $message; - } - /** - * @return Google_Service_FirebaseCloudMessaging_Message - */ - public function getMessage() - { - return $this->message; - } - public function setValidateOnly($validateOnly) - { - $this->validateOnly = $validateOnly; - } - public function getValidateOnly() - { - return $this->validateOnly; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseCloudMessaging/WebpushConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseCloudMessaging/WebpushConfig.php deleted file mode 100644 index 1ae7f6f3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseCloudMessaging/WebpushConfig.php +++ /dev/null @@ -1,64 +0,0 @@ -data = $data; - } - public function getData() - { - return $this->data; - } - /** - * @param Google_Service_FirebaseCloudMessaging_WebpushFcmOptions - */ - public function setFcmOptions(Google_Service_FirebaseCloudMessaging_WebpushFcmOptions $fcmOptions) - { - $this->fcmOptions = $fcmOptions; - } - /** - * @return Google_Service_FirebaseCloudMessaging_WebpushFcmOptions - */ - public function getFcmOptions() - { - return $this->fcmOptions; - } - public function setHeaders($headers) - { - $this->headers = $headers; - } - public function getHeaders() - { - return $this->headers; - } - public function setNotification($notification) - { - $this->notification = $notification; - } - public function getNotification() - { - return $this->notification; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseCloudMessaging/WebpushFcmOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseCloudMessaging/WebpushFcmOptions.php deleted file mode 100644 index d262186a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseCloudMessaging/WebpushFcmOptions.php +++ /dev/null @@ -1,39 +0,0 @@ -analyticsLabel = $analyticsLabel; - } - public function getAnalyticsLabel() - { - return $this->analyticsLabel; - } - public function setLink($link) - { - $this->link = $link; - } - public function getLink() - { - return $this->link; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks.php deleted file mode 100644 index f74d1d5a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks.php +++ /dev/null @@ -1,121 +0,0 @@ - - * Programmatically creates and manages Firebase Dynamic Links.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_FirebaseDynamicLinks extends Google_Service -{ - /** View and administer all your Firebase data and settings. */ - const FIREBASE = - "https://www.googleapis.com/auth/firebase"; - - public $managedShortLinks; - public $shortLinks; - public $v1; - - /** - * Constructs the internal representation of the FirebaseDynamicLinks service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://firebasedynamiclinks.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'firebasedynamiclinks'; - - $this->managedShortLinks = new Google_Service_FirebaseDynamicLinks_Resource_ManagedShortLinks( - $this, - $this->serviceName, - 'managedShortLinks', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/managedShortLinks:create', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->shortLinks = new Google_Service_FirebaseDynamicLinks_Resource_ShortLinks( - $this, - $this->serviceName, - 'shortLinks', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/shortLinks', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->v1 = new Google_Service_FirebaseDynamicLinks_Resource_V1( - $this, - $this->serviceName, - 'v1', - array( - 'methods' => array( - 'getLinkStats' => array( - 'path' => 'v1/{dynamicLink}/linkStats', - 'httpMethod' => 'GET', - 'parameters' => array( - 'dynamicLink' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'durationDays' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sdkVersion' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'installAttribution' => array( - 'path' => 'v1/installAttribution', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'reopenAttribution' => array( - 'path' => 'v1/reopenAttribution', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/AnalyticsInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/AnalyticsInfo.php deleted file mode 100644 index cb94d29a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/AnalyticsInfo.php +++ /dev/null @@ -1,53 +0,0 @@ -googlePlayAnalytics = $googlePlayAnalytics; - } - /** - * @return Google_Service_FirebaseDynamicLinks_GooglePlayAnalytics - */ - public function getGooglePlayAnalytics() - { - return $this->googlePlayAnalytics; - } - /** - * @param Google_Service_FirebaseDynamicLinks_ITunesConnectAnalytics - */ - public function setItunesConnectAnalytics(Google_Service_FirebaseDynamicLinks_ITunesConnectAnalytics $itunesConnectAnalytics) - { - $this->itunesConnectAnalytics = $itunesConnectAnalytics; - } - /** - * @return Google_Service_FirebaseDynamicLinks_ITunesConnectAnalytics - */ - public function getItunesConnectAnalytics() - { - return $this->itunesConnectAnalytics; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/AndroidInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/AndroidInfo.php deleted file mode 100644 index a054c7f2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/AndroidInfo.php +++ /dev/null @@ -1,57 +0,0 @@ -androidFallbackLink = $androidFallbackLink; - } - public function getAndroidFallbackLink() - { - return $this->androidFallbackLink; - } - public function setAndroidLink($androidLink) - { - $this->androidLink = $androidLink; - } - public function getAndroidLink() - { - return $this->androidLink; - } - public function setAndroidMinPackageVersionCode($androidMinPackageVersionCode) - { - $this->androidMinPackageVersionCode = $androidMinPackageVersionCode; - } - public function getAndroidMinPackageVersionCode() - { - return $this->androidMinPackageVersionCode; - } - public function setAndroidPackageName($androidPackageName) - { - $this->androidPackageName = $androidPackageName; - } - public function getAndroidPackageName() - { - return $this->androidPackageName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/CreateManagedShortLinkRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/CreateManagedShortLinkRequest.php deleted file mode 100644 index b711b9bc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/CreateManagedShortLinkRequest.php +++ /dev/null @@ -1,80 +0,0 @@ -dynamicLinkInfo = $dynamicLinkInfo; - } - /** - * @return Google_Service_FirebaseDynamicLinks_DynamicLinkInfo - */ - public function getDynamicLinkInfo() - { - return $this->dynamicLinkInfo; - } - public function setLongDynamicLink($longDynamicLink) - { - $this->longDynamicLink = $longDynamicLink; - } - public function getLongDynamicLink() - { - return $this->longDynamicLink; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setSdkVersion($sdkVersion) - { - $this->sdkVersion = $sdkVersion; - } - public function getSdkVersion() - { - return $this->sdkVersion; - } - /** - * @param Google_Service_FirebaseDynamicLinks_Suffix - */ - public function setSuffix(Google_Service_FirebaseDynamicLinks_Suffix $suffix) - { - $this->suffix = $suffix; - } - /** - * @return Google_Service_FirebaseDynamicLinks_Suffix - */ - public function getSuffix() - { - return $this->suffix; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/CreateManagedShortLinkResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/CreateManagedShortLinkResponse.php deleted file mode 100644 index a99c6b97..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/CreateManagedShortLinkResponse.php +++ /dev/null @@ -1,63 +0,0 @@ -managedShortLink = $managedShortLink; - } - /** - * @return Google_Service_FirebaseDynamicLinks_ManagedShortLink - */ - public function getManagedShortLink() - { - return $this->managedShortLink; - } - public function setPreviewLink($previewLink) - { - $this->previewLink = $previewLink; - } - public function getPreviewLink() - { - return $this->previewLink; - } - /** - * @param Google_Service_FirebaseDynamicLinks_DynamicLinkWarning - */ - public function setWarning($warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_FirebaseDynamicLinks_DynamicLinkWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/CreateShortDynamicLinkRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/CreateShortDynamicLinkRequest.php deleted file mode 100644 index fe41196c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/CreateShortDynamicLinkRequest.php +++ /dev/null @@ -1,71 +0,0 @@ -dynamicLinkInfo = $dynamicLinkInfo; - } - /** - * @return Google_Service_FirebaseDynamicLinks_DynamicLinkInfo - */ - public function getDynamicLinkInfo() - { - return $this->dynamicLinkInfo; - } - public function setLongDynamicLink($longDynamicLink) - { - $this->longDynamicLink = $longDynamicLink; - } - public function getLongDynamicLink() - { - return $this->longDynamicLink; - } - public function setSdkVersion($sdkVersion) - { - $this->sdkVersion = $sdkVersion; - } - public function getSdkVersion() - { - return $this->sdkVersion; - } - /** - * @param Google_Service_FirebaseDynamicLinks_Suffix - */ - public function setSuffix(Google_Service_FirebaseDynamicLinks_Suffix $suffix) - { - $this->suffix = $suffix; - } - /** - * @return Google_Service_FirebaseDynamicLinks_Suffix - */ - public function getSuffix() - { - return $this->suffix; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/CreateShortDynamicLinkResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/CreateShortDynamicLinkResponse.php deleted file mode 100644 index edf6e4fc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/CreateShortDynamicLinkResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -previewLink = $previewLink; - } - public function getPreviewLink() - { - return $this->previewLink; - } - public function setShortLink($shortLink) - { - $this->shortLink = $shortLink; - } - public function getShortLink() - { - return $this->shortLink; - } - /** - * @param Google_Service_FirebaseDynamicLinks_DynamicLinkWarning - */ - public function setWarning($warning) - { - $this->warning = $warning; - } - /** - * @return Google_Service_FirebaseDynamicLinks_DynamicLinkWarning - */ - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/DesktopInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/DesktopInfo.php deleted file mode 100644 index 2fc3be43..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/DesktopInfo.php +++ /dev/null @@ -1,30 +0,0 @@ -desktopFallbackLink = $desktopFallbackLink; - } - public function getDesktopFallbackLink() - { - return $this->desktopFallbackLink; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/DeviceInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/DeviceInfo.php deleted file mode 100644 index da51ba2a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/DeviceInfo.php +++ /dev/null @@ -1,84 +0,0 @@ -deviceModelName = $deviceModelName; - } - public function getDeviceModelName() - { - return $this->deviceModelName; - } - public function setLanguageCode($languageCode) - { - $this->languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } - public function setLanguageCodeFromWebview($languageCodeFromWebview) - { - $this->languageCodeFromWebview = $languageCodeFromWebview; - } - public function getLanguageCodeFromWebview() - { - return $this->languageCodeFromWebview; - } - public function setLanguageCodeRaw($languageCodeRaw) - { - $this->languageCodeRaw = $languageCodeRaw; - } - public function getLanguageCodeRaw() - { - return $this->languageCodeRaw; - } - public function setScreenResolutionHeight($screenResolutionHeight) - { - $this->screenResolutionHeight = $screenResolutionHeight; - } - public function getScreenResolutionHeight() - { - return $this->screenResolutionHeight; - } - public function setScreenResolutionWidth($screenResolutionWidth) - { - $this->screenResolutionWidth = $screenResolutionWidth; - } - public function getScreenResolutionWidth() - { - return $this->screenResolutionWidth; - } - public function setTimezone($timezone) - { - $this->timezone = $timezone; - } - public function getTimezone() - { - return $this->timezone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/DynamicLinkEventStat.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/DynamicLinkEventStat.php deleted file mode 100644 index 24e1f3a7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/DynamicLinkEventStat.php +++ /dev/null @@ -1,48 +0,0 @@ -count = $count; - } - public function getCount() - { - return $this->count; - } - public function setEvent($event) - { - $this->event = $event; - } - public function getEvent() - { - return $this->event; - } - public function setPlatform($platform) - { - $this->platform = $platform; - } - public function getPlatform() - { - return $this->platform; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/DynamicLinkInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/DynamicLinkInfo.php deleted file mode 100644 index 096c9e5b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/DynamicLinkInfo.php +++ /dev/null @@ -1,144 +0,0 @@ -analyticsInfo = $analyticsInfo; - } - /** - * @return Google_Service_FirebaseDynamicLinks_AnalyticsInfo - */ - public function getAnalyticsInfo() - { - return $this->analyticsInfo; - } - /** - * @param Google_Service_FirebaseDynamicLinks_AndroidInfo - */ - public function setAndroidInfo(Google_Service_FirebaseDynamicLinks_AndroidInfo $androidInfo) - { - $this->androidInfo = $androidInfo; - } - /** - * @return Google_Service_FirebaseDynamicLinks_AndroidInfo - */ - public function getAndroidInfo() - { - return $this->androidInfo; - } - /** - * @param Google_Service_FirebaseDynamicLinks_DesktopInfo - */ - public function setDesktopInfo(Google_Service_FirebaseDynamicLinks_DesktopInfo $desktopInfo) - { - $this->desktopInfo = $desktopInfo; - } - /** - * @return Google_Service_FirebaseDynamicLinks_DesktopInfo - */ - public function getDesktopInfo() - { - return $this->desktopInfo; - } - public function setDomainUriPrefix($domainUriPrefix) - { - $this->domainUriPrefix = $domainUriPrefix; - } - public function getDomainUriPrefix() - { - return $this->domainUriPrefix; - } - public function setDynamicLinkDomain($dynamicLinkDomain) - { - $this->dynamicLinkDomain = $dynamicLinkDomain; - } - public function getDynamicLinkDomain() - { - return $this->dynamicLinkDomain; - } - /** - * @param Google_Service_FirebaseDynamicLinks_IosInfo - */ - public function setIosInfo(Google_Service_FirebaseDynamicLinks_IosInfo $iosInfo) - { - $this->iosInfo = $iosInfo; - } - /** - * @return Google_Service_FirebaseDynamicLinks_IosInfo - */ - public function getIosInfo() - { - return $this->iosInfo; - } - public function setLink($link) - { - $this->link = $link; - } - public function getLink() - { - return $this->link; - } - /** - * @param Google_Service_FirebaseDynamicLinks_NavigationInfo - */ - public function setNavigationInfo(Google_Service_FirebaseDynamicLinks_NavigationInfo $navigationInfo) - { - $this->navigationInfo = $navigationInfo; - } - /** - * @return Google_Service_FirebaseDynamicLinks_NavigationInfo - */ - public function getNavigationInfo() - { - return $this->navigationInfo; - } - /** - * @param Google_Service_FirebaseDynamicLinks_SocialMetaTagInfo - */ - public function setSocialMetaTagInfo(Google_Service_FirebaseDynamicLinks_SocialMetaTagInfo $socialMetaTagInfo) - { - $this->socialMetaTagInfo = $socialMetaTagInfo; - } - /** - * @return Google_Service_FirebaseDynamicLinks_SocialMetaTagInfo - */ - public function getSocialMetaTagInfo() - { - return $this->socialMetaTagInfo; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/DynamicLinkStats.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/DynamicLinkStats.php deleted file mode 100644 index 5e0e8cdf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/DynamicLinkStats.php +++ /dev/null @@ -1,38 +0,0 @@ -linkEventStats = $linkEventStats; - } - /** - * @return Google_Service_FirebaseDynamicLinks_DynamicLinkEventStat - */ - public function getLinkEventStats() - { - return $this->linkEventStats; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/DynamicLinkWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/DynamicLinkWarning.php deleted file mode 100644 index db821132..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/DynamicLinkWarning.php +++ /dev/null @@ -1,48 +0,0 @@ -warningCode = $warningCode; - } - public function getWarningCode() - { - return $this->warningCode; - } - public function setWarningDocumentLink($warningDocumentLink) - { - $this->warningDocumentLink = $warningDocumentLink; - } - public function getWarningDocumentLink() - { - return $this->warningDocumentLink; - } - public function setWarningMessage($warningMessage) - { - $this->warningMessage = $warningMessage; - } - public function getWarningMessage() - { - return $this->warningMessage; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/GetIosPostInstallAttributionRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/GetIosPostInstallAttributionRequest.php deleted file mode 100644 index 1fb276e0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/GetIosPostInstallAttributionRequest.php +++ /dev/null @@ -1,100 +0,0 @@ -appInstallationTime = $appInstallationTime; - } - public function getAppInstallationTime() - { - return $this->appInstallationTime; - } - public function setBundleId($bundleId) - { - $this->bundleId = $bundleId; - } - public function getBundleId() - { - return $this->bundleId; - } - /** - * @param Google_Service_FirebaseDynamicLinks_DeviceInfo - */ - public function setDevice(Google_Service_FirebaseDynamicLinks_DeviceInfo $device) - { - $this->device = $device; - } - /** - * @return Google_Service_FirebaseDynamicLinks_DeviceInfo - */ - public function getDevice() - { - return $this->device; - } - public function setIosVersion($iosVersion) - { - $this->iosVersion = $iosVersion; - } - public function getIosVersion() - { - return $this->iosVersion; - } - public function setRetrievalMethod($retrievalMethod) - { - $this->retrievalMethod = $retrievalMethod; - } - public function getRetrievalMethod() - { - return $this->retrievalMethod; - } - public function setSdkVersion($sdkVersion) - { - $this->sdkVersion = $sdkVersion; - } - public function getSdkVersion() - { - return $this->sdkVersion; - } - public function setUniqueMatchLinkToCheck($uniqueMatchLinkToCheck) - { - $this->uniqueMatchLinkToCheck = $uniqueMatchLinkToCheck; - } - public function getUniqueMatchLinkToCheck() - { - return $this->uniqueMatchLinkToCheck; - } - public function setVisualStyle($visualStyle) - { - $this->visualStyle = $visualStyle; - } - public function getVisualStyle() - { - return $this->visualStyle; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/GetIosPostInstallAttributionResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/GetIosPostInstallAttributionResponse.php deleted file mode 100644 index 631e81ca..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/GetIosPostInstallAttributionResponse.php +++ /dev/null @@ -1,165 +0,0 @@ -appMinimumVersion = $appMinimumVersion; - } - public function getAppMinimumVersion() - { - return $this->appMinimumVersion; - } - public function setAttributionConfidence($attributionConfidence) - { - $this->attributionConfidence = $attributionConfidence; - } - public function getAttributionConfidence() - { - return $this->attributionConfidence; - } - public function setDeepLink($deepLink) - { - $this->deepLink = $deepLink; - } - public function getDeepLink() - { - return $this->deepLink; - } - public function setExternalBrowserDestinationLink($externalBrowserDestinationLink) - { - $this->externalBrowserDestinationLink = $externalBrowserDestinationLink; - } - public function getExternalBrowserDestinationLink() - { - return $this->externalBrowserDestinationLink; - } - public function setFallbackLink($fallbackLink) - { - $this->fallbackLink = $fallbackLink; - } - public function getFallbackLink() - { - return $this->fallbackLink; - } - public function setInvitationId($invitationId) - { - $this->invitationId = $invitationId; - } - public function getInvitationId() - { - return $this->invitationId; - } - public function setIsStrongMatchExecutable($isStrongMatchExecutable) - { - $this->isStrongMatchExecutable = $isStrongMatchExecutable; - } - public function getIsStrongMatchExecutable() - { - return $this->isStrongMatchExecutable; - } - public function setMatchMessage($matchMessage) - { - $this->matchMessage = $matchMessage; - } - public function getMatchMessage() - { - return $this->matchMessage; - } - public function setRequestIpVersion($requestIpVersion) - { - $this->requestIpVersion = $requestIpVersion; - } - public function getRequestIpVersion() - { - return $this->requestIpVersion; - } - public function setRequestedLink($requestedLink) - { - $this->requestedLink = $requestedLink; - } - public function getRequestedLink() - { - return $this->requestedLink; - } - public function setResolvedLink($resolvedLink) - { - $this->resolvedLink = $resolvedLink; - } - public function getResolvedLink() - { - return $this->resolvedLink; - } - public function setUtmCampaign($utmCampaign) - { - $this->utmCampaign = $utmCampaign; - } - public function getUtmCampaign() - { - return $this->utmCampaign; - } - public function setUtmContent($utmContent) - { - $this->utmContent = $utmContent; - } - public function getUtmContent() - { - return $this->utmContent; - } - public function setUtmMedium($utmMedium) - { - $this->utmMedium = $utmMedium; - } - public function getUtmMedium() - { - return $this->utmMedium; - } - public function setUtmSource($utmSource) - { - $this->utmSource = $utmSource; - } - public function getUtmSource() - { - return $this->utmSource; - } - public function setUtmTerm($utmTerm) - { - $this->utmTerm = $utmTerm; - } - public function getUtmTerm() - { - return $this->utmTerm; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/GetIosReopenAttributionRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/GetIosReopenAttributionRequest.php deleted file mode 100644 index 0708454e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/GetIosReopenAttributionRequest.php +++ /dev/null @@ -1,48 +0,0 @@ -bundleId = $bundleId; - } - public function getBundleId() - { - return $this->bundleId; - } - public function setRequestedLink($requestedLink) - { - $this->requestedLink = $requestedLink; - } - public function getRequestedLink() - { - return $this->requestedLink; - } - public function setSdkVersion($sdkVersion) - { - $this->sdkVersion = $sdkVersion; - } - public function getSdkVersion() - { - return $this->sdkVersion; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/GetIosReopenAttributionResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/GetIosReopenAttributionResponse.php deleted file mode 100644 index 9eb170bf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/GetIosReopenAttributionResponse.php +++ /dev/null @@ -1,102 +0,0 @@ -deepLink = $deepLink; - } - public function getDeepLink() - { - return $this->deepLink; - } - public function setInvitationId($invitationId) - { - $this->invitationId = $invitationId; - } - public function getInvitationId() - { - return $this->invitationId; - } - public function setIosMinAppVersion($iosMinAppVersion) - { - $this->iosMinAppVersion = $iosMinAppVersion; - } - public function getIosMinAppVersion() - { - return $this->iosMinAppVersion; - } - public function setResolvedLink($resolvedLink) - { - $this->resolvedLink = $resolvedLink; - } - public function getResolvedLink() - { - return $this->resolvedLink; - } - public function setUtmCampaign($utmCampaign) - { - $this->utmCampaign = $utmCampaign; - } - public function getUtmCampaign() - { - return $this->utmCampaign; - } - public function setUtmContent($utmContent) - { - $this->utmContent = $utmContent; - } - public function getUtmContent() - { - return $this->utmContent; - } - public function setUtmMedium($utmMedium) - { - $this->utmMedium = $utmMedium; - } - public function getUtmMedium() - { - return $this->utmMedium; - } - public function setUtmSource($utmSource) - { - $this->utmSource = $utmSource; - } - public function getUtmSource() - { - return $this->utmSource; - } - public function setUtmTerm($utmTerm) - { - $this->utmTerm = $utmTerm; - } - public function getUtmTerm() - { - return $this->utmTerm; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/GooglePlayAnalytics.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/GooglePlayAnalytics.php deleted file mode 100644 index 74dc9cf7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/GooglePlayAnalytics.php +++ /dev/null @@ -1,75 +0,0 @@ -gclid = $gclid; - } - public function getGclid() - { - return $this->gclid; - } - public function setUtmCampaign($utmCampaign) - { - $this->utmCampaign = $utmCampaign; - } - public function getUtmCampaign() - { - return $this->utmCampaign; - } - public function setUtmContent($utmContent) - { - $this->utmContent = $utmContent; - } - public function getUtmContent() - { - return $this->utmContent; - } - public function setUtmMedium($utmMedium) - { - $this->utmMedium = $utmMedium; - } - public function getUtmMedium() - { - return $this->utmMedium; - } - public function setUtmSource($utmSource) - { - $this->utmSource = $utmSource; - } - public function getUtmSource() - { - return $this->utmSource; - } - public function setUtmTerm($utmTerm) - { - $this->utmTerm = $utmTerm; - } - public function getUtmTerm() - { - return $this->utmTerm; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/ITunesConnectAnalytics.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/ITunesConnectAnalytics.php deleted file mode 100644 index 1119c454..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/ITunesConnectAnalytics.php +++ /dev/null @@ -1,57 +0,0 @@ -at = $at; - } - public function getAt() - { - return $this->at; - } - public function setCt($ct) - { - $this->ct = $ct; - } - public function getCt() - { - return $this->ct; - } - public function setMt($mt) - { - $this->mt = $mt; - } - public function getMt() - { - return $this->mt; - } - public function setPt($pt) - { - $this->pt = $pt; - } - public function getPt() - { - return $this->pt; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/IosInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/IosInfo.php deleted file mode 100644 index b93a771e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/IosInfo.php +++ /dev/null @@ -1,84 +0,0 @@ -iosAppStoreId = $iosAppStoreId; - } - public function getIosAppStoreId() - { - return $this->iosAppStoreId; - } - public function setIosBundleId($iosBundleId) - { - $this->iosBundleId = $iosBundleId; - } - public function getIosBundleId() - { - return $this->iosBundleId; - } - public function setIosCustomScheme($iosCustomScheme) - { - $this->iosCustomScheme = $iosCustomScheme; - } - public function getIosCustomScheme() - { - return $this->iosCustomScheme; - } - public function setIosFallbackLink($iosFallbackLink) - { - $this->iosFallbackLink = $iosFallbackLink; - } - public function getIosFallbackLink() - { - return $this->iosFallbackLink; - } - public function setIosIpadBundleId($iosIpadBundleId) - { - $this->iosIpadBundleId = $iosIpadBundleId; - } - public function getIosIpadBundleId() - { - return $this->iosIpadBundleId; - } - public function setIosIpadFallbackLink($iosIpadFallbackLink) - { - $this->iosIpadFallbackLink = $iosIpadFallbackLink; - } - public function getIosIpadFallbackLink() - { - return $this->iosIpadFallbackLink; - } - public function setIosMinimumVersion($iosMinimumVersion) - { - $this->iosMinimumVersion = $iosMinimumVersion; - } - public function getIosMinimumVersion() - { - return $this->iosMinimumVersion; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/ManagedShortLink.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/ManagedShortLink.php deleted file mode 100644 index 608ced7d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/ManagedShortLink.php +++ /dev/null @@ -1,83 +0,0 @@ -creationTime = $creationTime; - } - public function getCreationTime() - { - return $this->creationTime; - } - public function setFlaggedAttribute($flaggedAttribute) - { - $this->flaggedAttribute = $flaggedAttribute; - } - public function getFlaggedAttribute() - { - return $this->flaggedAttribute; - } - /** - * @param Google_Service_FirebaseDynamicLinks_DynamicLinkInfo - */ - public function setInfo(Google_Service_FirebaseDynamicLinks_DynamicLinkInfo $info) - { - $this->info = $info; - } - /** - * @return Google_Service_FirebaseDynamicLinks_DynamicLinkInfo - */ - public function getInfo() - { - return $this->info; - } - public function setLink($link) - { - $this->link = $link; - } - public function getLink() - { - return $this->link; - } - public function setLinkName($linkName) - { - $this->linkName = $linkName; - } - public function getLinkName() - { - return $this->linkName; - } - public function setVisibility($visibility) - { - $this->visibility = $visibility; - } - public function getVisibility() - { - return $this->visibility; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/NavigationInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/NavigationInfo.php deleted file mode 100644 index e0a592e7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/NavigationInfo.php +++ /dev/null @@ -1,30 +0,0 @@ -enableForcedRedirect = $enableForcedRedirect; - } - public function getEnableForcedRedirect() - { - return $this->enableForcedRedirect; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/Resource/ManagedShortLinks.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/Resource/ManagedShortLinks.php deleted file mode 100644 index 7f699d85..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/Resource/ManagedShortLinks.php +++ /dev/null @@ -1,52 +0,0 @@ - - * $firebasedynamiclinksService = new Google_Service_FirebaseDynamicLinks(...); - * $managedShortLinks = $firebasedynamiclinksService->managedShortLinks; - * - */ -class Google_Service_FirebaseDynamicLinks_Resource_ManagedShortLinks extends Google_Service_Resource -{ - /** - * Creates a managed short Dynamic Link given either a valid long Dynamic Link - * or details such as Dynamic Link domain, Android and iOS app information. The - * created short Dynamic Link will not expire. - * - * This differs from CreateShortDynamicLink in the following ways: - The - * request will also contain a name for the link (non unique name for the - * front end). - The response must be authenticated with an auth token - * (generated with the admin service account). - The link will appear in - * the FDL list of links in the console front end. - * - * The Dynamic Link domain in the request must be owned by requester's Firebase - * project. (managedShortLinks.create) - * - * @param Google_Service_FirebaseDynamicLinks_CreateManagedShortLinkRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_FirebaseDynamicLinks_CreateManagedShortLinkResponse - */ - public function create(Google_Service_FirebaseDynamicLinks_CreateManagedShortLinkRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_FirebaseDynamicLinks_CreateManagedShortLinkResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/Resource/ShortLinks.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/Resource/ShortLinks.php deleted file mode 100644 index 143c90cc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/Resource/ShortLinks.php +++ /dev/null @@ -1,49 +0,0 @@ - - * $firebasedynamiclinksService = new Google_Service_FirebaseDynamicLinks(...); - * $shortLinks = $firebasedynamiclinksService->shortLinks; - * - */ -class Google_Service_FirebaseDynamicLinks_Resource_ShortLinks extends Google_Service_Resource -{ - /** - * Creates a short Dynamic Link given either a valid long Dynamic Link or - * details such as Dynamic Link domain, Android and iOS app information. The - * created short Dynamic Link will not expire. - * - * Repeated calls with the same long Dynamic Link or Dynamic Link information - * will produce the same short Dynamic Link. - * - * The Dynamic Link domain in the request must be owned by requester's Firebase - * project. (shortLinks.create) - * - * @param Google_Service_FirebaseDynamicLinks_CreateShortDynamicLinkRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_FirebaseDynamicLinks_CreateShortDynamicLinkResponse - */ - public function create(Google_Service_FirebaseDynamicLinks_CreateShortDynamicLinkRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_FirebaseDynamicLinks_CreateShortDynamicLinkResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/Resource/V1.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/Resource/V1.php deleted file mode 100644 index a053609c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/Resource/V1.php +++ /dev/null @@ -1,76 +0,0 @@ - - * $firebasedynamiclinksService = new Google_Service_FirebaseDynamicLinks(...); - * $v1 = $firebasedynamiclinksService->v1; - * - */ -class Google_Service_FirebaseDynamicLinks_Resource_V1 extends Google_Service_Resource -{ - /** - * Fetches analytics stats of a short Dynamic Link for a given duration. Metrics - * include number of clicks, redirects, installs, app first opens, and app - * reopens. (v1.getLinkStats) - * - * @param string $dynamicLink Dynamic Link URL. e.g. - * https://abcd.app.goo.gl/wxyz - * @param array $optParams Optional parameters. - * - * @opt_param string durationDays The span of time requested in days. - * @opt_param string sdkVersion Google SDK version. Version takes the form - * "$major.$minor.$patch" - * @return Google_Service_FirebaseDynamicLinks_DynamicLinkStats - */ - public function getLinkStats($dynamicLink, $optParams = array()) - { - $params = array('dynamicLink' => $dynamicLink); - $params = array_merge($params, $optParams); - return $this->call('getLinkStats', array($params), "Google_Service_FirebaseDynamicLinks_DynamicLinkStats"); - } - /** - * Get iOS strong/weak-match info for post-install attribution. - * (v1.installAttribution) - * - * @param Google_Service_FirebaseDynamicLinks_GetIosPostInstallAttributionRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_FirebaseDynamicLinks_GetIosPostInstallAttributionResponse - */ - public function installAttribution(Google_Service_FirebaseDynamicLinks_GetIosPostInstallAttributionRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('installAttribution', array($params), "Google_Service_FirebaseDynamicLinks_GetIosPostInstallAttributionResponse"); - } - /** - * Get iOS reopen attribution for app universal link open deeplinking. - * (v1.reopenAttribution) - * - * @param Google_Service_FirebaseDynamicLinks_GetIosReopenAttributionRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_FirebaseDynamicLinks_GetIosReopenAttributionResponse - */ - public function reopenAttribution(Google_Service_FirebaseDynamicLinks_GetIosReopenAttributionRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('reopenAttribution', array($params), "Google_Service_FirebaseDynamicLinks_GetIosReopenAttributionResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/SocialMetaTagInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/SocialMetaTagInfo.php deleted file mode 100644 index 0a36bb7a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/SocialMetaTagInfo.php +++ /dev/null @@ -1,48 +0,0 @@ -socialDescription = $socialDescription; - } - public function getSocialDescription() - { - return $this->socialDescription; - } - public function setSocialImageLink($socialImageLink) - { - $this->socialImageLink = $socialImageLink; - } - public function getSocialImageLink() - { - return $this->socialImageLink; - } - public function setSocialTitle($socialTitle) - { - $this->socialTitle = $socialTitle; - } - public function getSocialTitle() - { - return $this->socialTitle; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/Suffix.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/Suffix.php deleted file mode 100644 index 9fa02574..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinks/Suffix.php +++ /dev/null @@ -1,39 +0,0 @@ -customSuffix = $customSuffix; - } - public function getCustomSuffix() - { - return $this->customSuffix; - } - public function setOption($option) - { - $this->option = $option; - } - public function getOption() - { - return $this->option; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinksAPI.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinksAPI.php deleted file mode 100644 index e1a48325..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinksAPI.php +++ /dev/null @@ -1,69 +0,0 @@ - - * Firebase Dynamic Links API enables third party developers to create and - * manage the Dynamic Links(go/fdl).

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_FirebaseDynamicLinksAPI extends Google_Service -{ - /** View and administer all your Firebase data and settings. */ - const FIREBASE = - "https://www.googleapis.com/auth/firebase"; - - public $shortDynamicLinks; - - /** - * Constructs the internal representation of the FirebaseDynamicLinksAPI - * service. - * - * @param Google_Client $client - */ - public function __construct(Google_Client $client) - { - parent::__construct($client); - $this->rootUrl = 'https://firebasedynamiclinks.googleapis.com/'; - $this->servicePath = ''; - $this->version = 'v1'; - $this->serviceName = 'firebasedynamiclinks'; - - $this->shortDynamicLinks = new Google_Service_FirebaseDynamicLinksAPI_Resource_ShortDynamicLinks( - $this, - $this->serviceName, - 'shortDynamicLinks', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/shortDynamicLinks', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinksAPI/AnalyticsInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinksAPI/AnalyticsInfo.php deleted file mode 100644 index d5fec7eb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinksAPI/AnalyticsInfo.php +++ /dev/null @@ -1,41 +0,0 @@ -googlePlayAnalytics = $googlePlayAnalytics; - } - public function getGooglePlayAnalytics() - { - return $this->googlePlayAnalytics; - } - public function setItunesConnectAnalytics(Google_Service_FirebaseDynamicLinksAPI_ITunesConnectAnalytics $itunesConnectAnalytics) - { - $this->itunesConnectAnalytics = $itunesConnectAnalytics; - } - public function getItunesConnectAnalytics() - { - return $this->itunesConnectAnalytics; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinksAPI/AndroidInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinksAPI/AndroidInfo.php deleted file mode 100644 index 16c247f8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinksAPI/AndroidInfo.php +++ /dev/null @@ -1,57 +0,0 @@ -androidFallbackLink = $androidFallbackLink; - } - public function getAndroidFallbackLink() - { - return $this->androidFallbackLink; - } - public function setAndroidLink($androidLink) - { - $this->androidLink = $androidLink; - } - public function getAndroidLink() - { - return $this->androidLink; - } - public function setAndroidMinPackageVersionCode($androidMinPackageVersionCode) - { - $this->androidMinPackageVersionCode = $androidMinPackageVersionCode; - } - public function getAndroidMinPackageVersionCode() - { - return $this->androidMinPackageVersionCode; - } - public function setAndroidPackageName($androidPackageName) - { - $this->androidPackageName = $androidPackageName; - } - public function getAndroidPackageName() - { - return $this->androidPackageName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinksAPI/CreateShortDynamicLinkRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinksAPI/CreateShortDynamicLinkRequest.php deleted file mode 100644 index 7cd29d4e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinksAPI/CreateShortDynamicLinkRequest.php +++ /dev/null @@ -1,50 +0,0 @@ -dynamicLinkInfo = $dynamicLinkInfo; - } - public function getDynamicLinkInfo() - { - return $this->dynamicLinkInfo; - } - public function setLongDynamicLink($longDynamicLink) - { - $this->longDynamicLink = $longDynamicLink; - } - public function getLongDynamicLink() - { - return $this->longDynamicLink; - } - public function setSuffix(Google_Service_FirebaseDynamicLinksAPI_Suffix $suffix) - { - $this->suffix = $suffix; - } - public function getSuffix() - { - return $this->suffix; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinksAPI/CreateShortDynamicLinkResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinksAPI/CreateShortDynamicLinkResponse.php deleted file mode 100644 index 1b981242..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinksAPI/CreateShortDynamicLinkResponse.php +++ /dev/null @@ -1,50 +0,0 @@ -previewLink = $previewLink; - } - public function getPreviewLink() - { - return $this->previewLink; - } - public function setShortLink($shortLink) - { - $this->shortLink = $shortLink; - } - public function getShortLink() - { - return $this->shortLink; - } - public function setWarning($warning) - { - $this->warning = $warning; - } - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinksAPI/DynamicLinkInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinksAPI/DynamicLinkInfo.php deleted file mode 100644 index d9e45a65..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinksAPI/DynamicLinkInfo.php +++ /dev/null @@ -1,88 +0,0 @@ -analyticsInfo = $analyticsInfo; - } - public function getAnalyticsInfo() - { - return $this->analyticsInfo; - } - public function setAndroidInfo(Google_Service_FirebaseDynamicLinksAPI_AndroidInfo $androidInfo) - { - $this->androidInfo = $androidInfo; - } - public function getAndroidInfo() - { - return $this->androidInfo; - } - public function setDynamicLinkDomain($dynamicLinkDomain) - { - $this->dynamicLinkDomain = $dynamicLinkDomain; - } - public function getDynamicLinkDomain() - { - return $this->dynamicLinkDomain; - } - public function setIosInfo(Google_Service_FirebaseDynamicLinksAPI_IosInfo $iosInfo) - { - $this->iosInfo = $iosInfo; - } - public function getIosInfo() - { - return $this->iosInfo; - } - public function setIsAd($isAd) - { - $this->isAd = $isAd; - } - public function getIsAd() - { - return $this->isAd; - } - public function setLink($link) - { - $this->link = $link; - } - public function getLink() - { - return $this->link; - } - public function setSocialMetaTagInfo(Google_Service_FirebaseDynamicLinksAPI_SocialMetaTagInfo $socialMetaTagInfo) - { - $this->socialMetaTagInfo = $socialMetaTagInfo; - } - public function getSocialMetaTagInfo() - { - return $this->socialMetaTagInfo; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinksAPI/DynamicLinkWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinksAPI/DynamicLinkWarning.php deleted file mode 100644 index 59a11bbe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinksAPI/DynamicLinkWarning.php +++ /dev/null @@ -1,39 +0,0 @@ -warningCode = $warningCode; - } - public function getWarningCode() - { - return $this->warningCode; - } - public function setWarningMessage($warningMessage) - { - $this->warningMessage = $warningMessage; - } - public function getWarningMessage() - { - return $this->warningMessage; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinksAPI/GooglePlayAnalytics.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinksAPI/GooglePlayAnalytics.php deleted file mode 100644 index 8bf97002..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinksAPI/GooglePlayAnalytics.php +++ /dev/null @@ -1,75 +0,0 @@ -gclid = $gclid; - } - public function getGclid() - { - return $this->gclid; - } - public function setUtmCampaign($utmCampaign) - { - $this->utmCampaign = $utmCampaign; - } - public function getUtmCampaign() - { - return $this->utmCampaign; - } - public function setUtmContent($utmContent) - { - $this->utmContent = $utmContent; - } - public function getUtmContent() - { - return $this->utmContent; - } - public function setUtmMedium($utmMedium) - { - $this->utmMedium = $utmMedium; - } - public function getUtmMedium() - { - return $this->utmMedium; - } - public function setUtmSource($utmSource) - { - $this->utmSource = $utmSource; - } - public function getUtmSource() - { - return $this->utmSource; - } - public function setUtmTerm($utmTerm) - { - $this->utmTerm = $utmTerm; - } - public function getUtmTerm() - { - return $this->utmTerm; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinksAPI/ITunesConnectAnalytics.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinksAPI/ITunesConnectAnalytics.php deleted file mode 100644 index 50c20897..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinksAPI/ITunesConnectAnalytics.php +++ /dev/null @@ -1,57 +0,0 @@ -at = $at; - } - public function getAt() - { - return $this->at; - } - public function setCt($ct) - { - $this->ct = $ct; - } - public function getCt() - { - return $this->ct; - } - public function setMt($mt) - { - $this->mt = $mt; - } - public function getMt() - { - return $this->mt; - } - public function setPt($pt) - { - $this->pt = $pt; - } - public function getPt() - { - return $this->pt; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinksAPI/IosInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinksAPI/IosInfo.php deleted file mode 100644 index 8265b954..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinksAPI/IosInfo.php +++ /dev/null @@ -1,75 +0,0 @@ -iosAppStoreId = $iosAppStoreId; - } - public function getIosAppStoreId() - { - return $this->iosAppStoreId; - } - public function setIosBundleId($iosBundleId) - { - $this->iosBundleId = $iosBundleId; - } - public function getIosBundleId() - { - return $this->iosBundleId; - } - public function setIosCustomScheme($iosCustomScheme) - { - $this->iosCustomScheme = $iosCustomScheme; - } - public function getIosCustomScheme() - { - return $this->iosCustomScheme; - } - public function setIosFallbackLink($iosFallbackLink) - { - $this->iosFallbackLink = $iosFallbackLink; - } - public function getIosFallbackLink() - { - return $this->iosFallbackLink; - } - public function setIosIpadBundleId($iosIpadBundleId) - { - $this->iosIpadBundleId = $iosIpadBundleId; - } - public function getIosIpadBundleId() - { - return $this->iosIpadBundleId; - } - public function setIosIpadFallbackLink($iosIpadFallbackLink) - { - $this->iosIpadFallbackLink = $iosIpadFallbackLink; - } - public function getIosIpadFallbackLink() - { - return $this->iosIpadFallbackLink; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinksAPI/Resource/ShortDynamicLinks.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinksAPI/Resource/ShortDynamicLinks.php deleted file mode 100644 index 8d4da22b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinksAPI/Resource/ShortDynamicLinks.php +++ /dev/null @@ -1,49 +0,0 @@ - - * $firebasedynamiclinksService = new Google_Service_FirebaseDynamicLinksAPI(...); - * $shortDynamicLinks = $firebasedynamiclinksService->shortDynamicLinks; - * - */ -class Google_Service_FirebaseDynamicLinksAPI_Resource_ShortDynamicLinks extends Google_Service_Resource -{ - /** - * Creates a short Dynamic Link given either a valid long Dynamic Link or - * details such as Dynamic Link domain, Android and iOS app information. The - * created short Dynamic Link will not expire. - * - * Repeated calls with the same long Dynamic Link or Dynamic Link information - * will produce the same short Dynamic Link. - * - * The Dynamic Link domain in the request must be owned by requester's Firebase - * project. (shortDynamicLinks.create) - * - * @param Google_Service_FirebaseDynamicLinksAPI_CreateShortDynamicLinkRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_FirebaseDynamicLinksAPI_CreateShortDynamicLinkResponse - */ - public function create(Google_Service_FirebaseDynamicLinksAPI_CreateShortDynamicLinkRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_FirebaseDynamicLinksAPI_CreateShortDynamicLinkResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinksAPI/SocialMetaTagInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinksAPI/SocialMetaTagInfo.php deleted file mode 100644 index 7bd7a16f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinksAPI/SocialMetaTagInfo.php +++ /dev/null @@ -1,48 +0,0 @@ -socialDescription = $socialDescription; - } - public function getSocialDescription() - { - return $this->socialDescription; - } - public function setSocialImageLink($socialImageLink) - { - $this->socialImageLink = $socialImageLink; - } - public function getSocialImageLink() - { - return $this->socialImageLink; - } - public function setSocialTitle($socialTitle) - { - $this->socialTitle = $socialTitle; - } - public function getSocialTitle() - { - return $this->socialTitle; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinksAPI/Suffix.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinksAPI/Suffix.php deleted file mode 100644 index 6af2a55e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseDynamicLinksAPI/Suffix.php +++ /dev/null @@ -1,30 +0,0 @@ -option = $option; - } - public function getOption() - { - return $this->option; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting.php deleted file mode 100644 index d14bf953..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting.php +++ /dev/null @@ -1,361 +0,0 @@ - - * The Firebase Hosting REST API enables programmatic and customizable - * deployments to your Firebase-hosted sites. Use this REST API to deploy new or - * updated hosting configurations and content files.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_FirebaseHosting extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** View your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM_READ_ONLY = - "https://www.googleapis.com/auth/cloud-platform.read-only"; - /** View and administer all your Firebase data and settings. */ - const FIREBASE = - "https://www.googleapis.com/auth/firebase"; - /** View all your Firebase data and settings. */ - const FIREBASE_READONLY = - "https://www.googleapis.com/auth/firebase.readonly"; - - public $projects_operations; - public $sites; - public $sites_domains; - public $sites_releases; - public $sites_versions; - public $sites_versions_files; - - /** - * Constructs the internal representation of the FirebaseHosting service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://firebasehosting.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1beta1'; - $this->serviceName = 'firebasehosting'; - - $this->projects_operations = new Google_Service_FirebaseHosting_Resource_ProjectsOperations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->sites = new Google_Service_FirebaseHosting_Resource_Sites( - $this, - $this->serviceName, - 'sites', - array( - 'methods' => array( - 'getConfig' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'updateConfig' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->sites_domains = new Google_Service_FirebaseHosting_Resource_SitesDomains( - $this, - $this->serviceName, - 'domains', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1beta1/{+parent}/domains', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1beta1/{+parent}/domains', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'update' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->sites_releases = new Google_Service_FirebaseHosting_Resource_SitesReleases( - $this, - $this->serviceName, - 'releases', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1beta1/{+parent}/releases', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'versionName' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'v1beta1/{+parent}/releases', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->sites_versions = new Google_Service_FirebaseHosting_Resource_SitesVersions( - $this, - $this->serviceName, - 'versions', - array( - 'methods' => array( - 'clone' => array( - 'path' => 'v1beta1/{+parent}/versions:clone', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'create' => array( - 'path' => 'v1beta1/{+parent}/versions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sizeBytes' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'versionId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1beta1/{+parent}/versions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'populateFiles' => array( - 'path' => 'v1beta1/{+parent}:populateFiles', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->sites_versions_files = new Google_Service_FirebaseHosting_Resource_SitesVersionsFiles( - $this, - $this->serviceName, - 'files', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1beta1/{+parent}/files', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'status' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/ActingUser.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/ActingUser.php deleted file mode 100644 index 0bcc29a8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/ActingUser.php +++ /dev/null @@ -1,39 +0,0 @@ -email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setImageUrl($imageUrl) - { - $this->imageUrl = $imageUrl; - } - public function getImageUrl() - { - return $this->imageUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/CertDnsChallenge.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/CertDnsChallenge.php deleted file mode 100644 index 379b971a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/CertDnsChallenge.php +++ /dev/null @@ -1,39 +0,0 @@ -domainName = $domainName; - } - public function getDomainName() - { - return $this->domainName; - } - public function setToken($token) - { - $this->token = $token; - } - public function getToken() - { - return $this->token; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/CertHttpChallenge.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/CertHttpChallenge.php deleted file mode 100644 index 46e8f78c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/CertHttpChallenge.php +++ /dev/null @@ -1,39 +0,0 @@ -path = $path; - } - public function getPath() - { - return $this->path; - } - public function setToken($token) - { - $this->token = $token; - } - public function getToken() - { - return $this->token; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/CloneVersionRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/CloneVersionRequest.php deleted file mode 100644 index 1afc5609..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/CloneVersionRequest.php +++ /dev/null @@ -1,71 +0,0 @@ -exclude = $exclude; - } - /** - * @return Google_Service_FirebaseHosting_PathFilter - */ - public function getExclude() - { - return $this->exclude; - } - public function setFinalize($finalize) - { - $this->finalize = $finalize; - } - public function getFinalize() - { - return $this->finalize; - } - /** - * @param Google_Service_FirebaseHosting_PathFilter - */ - public function setInclude(Google_Service_FirebaseHosting_PathFilter $include) - { - $this->include = $include; - } - /** - * @return Google_Service_FirebaseHosting_PathFilter - */ - public function getInclude() - { - return $this->include; - } - public function setSourceVersion($sourceVersion) - { - $this->sourceVersion = $sourceVersion; - } - public function getSourceVersion() - { - return $this->sourceVersion; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/CloudRunRewrite.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/CloudRunRewrite.php deleted file mode 100644 index 9c219032..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/CloudRunRewrite.php +++ /dev/null @@ -1,39 +0,0 @@ -region = $region; - } - public function getRegion() - { - return $this->region; - } - public function setServiceId($serviceId) - { - $this->serviceId = $serviceId; - } - public function getServiceId() - { - return $this->serviceId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/Domain.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/Domain.php deleted file mode 100644 index f43624f3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/Domain.php +++ /dev/null @@ -1,89 +0,0 @@ -domainName = $domainName; - } - public function getDomainName() - { - return $this->domainName; - } - /** - * @param Google_Service_FirebaseHosting_DomainRedirect - */ - public function setDomainRedirect(Google_Service_FirebaseHosting_DomainRedirect $domainRedirect) - { - $this->domainRedirect = $domainRedirect; - } - /** - * @return Google_Service_FirebaseHosting_DomainRedirect - */ - public function getDomainRedirect() - { - return $this->domainRedirect; - } - /** - * @param Google_Service_FirebaseHosting_DomainProvisioning - */ - public function setProvisioning(Google_Service_FirebaseHosting_DomainProvisioning $provisioning) - { - $this->provisioning = $provisioning; - } - /** - * @return Google_Service_FirebaseHosting_DomainProvisioning - */ - public function getProvisioning() - { - return $this->provisioning; - } - public function setSite($site) - { - $this->site = $site; - } - public function getSite() - { - return $this->site; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/DomainProvisioning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/DomainProvisioning.php deleted file mode 100644 index 53909862..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/DomainProvisioning.php +++ /dev/null @@ -1,108 +0,0 @@ -certChallengeDiscoveredTxt = $certChallengeDiscoveredTxt; - } - public function getCertChallengeDiscoveredTxt() - { - return $this->certChallengeDiscoveredTxt; - } - /** - * @param Google_Service_FirebaseHosting_CertDnsChallenge - */ - public function setCertChallengeDns(Google_Service_FirebaseHosting_CertDnsChallenge $certChallengeDns) - { - $this->certChallengeDns = $certChallengeDns; - } - /** - * @return Google_Service_FirebaseHosting_CertDnsChallenge - */ - public function getCertChallengeDns() - { - return $this->certChallengeDns; - } - /** - * @param Google_Service_FirebaseHosting_CertHttpChallenge - */ - public function setCertChallengeHttp(Google_Service_FirebaseHosting_CertHttpChallenge $certChallengeHttp) - { - $this->certChallengeHttp = $certChallengeHttp; - } - /** - * @return Google_Service_FirebaseHosting_CertHttpChallenge - */ - public function getCertChallengeHttp() - { - return $this->certChallengeHttp; - } - public function setCertStatus($certStatus) - { - $this->certStatus = $certStatus; - } - public function getCertStatus() - { - return $this->certStatus; - } - public function setDiscoveredIps($discoveredIps) - { - $this->discoveredIps = $discoveredIps; - } - public function getDiscoveredIps() - { - return $this->discoveredIps; - } - public function setDnsFetchTime($dnsFetchTime) - { - $this->dnsFetchTime = $dnsFetchTime; - } - public function getDnsFetchTime() - { - return $this->dnsFetchTime; - } - public function setDnsStatus($dnsStatus) - { - $this->dnsStatus = $dnsStatus; - } - public function getDnsStatus() - { - return $this->dnsStatus; - } - public function setExpectedIps($expectedIps) - { - $this->expectedIps = $expectedIps; - } - public function getExpectedIps() - { - return $this->expectedIps; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/DomainRedirect.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/DomainRedirect.php deleted file mode 100644 index f9e83510..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/DomainRedirect.php +++ /dev/null @@ -1,39 +0,0 @@ -domainName = $domainName; - } - public function getDomainName() - { - return $this->domainName; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/FirebasehostingEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/FirebasehostingEmpty.php deleted file mode 100644 index 5be3f565..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/FirebasehostingEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -glob = $glob; - } - public function getGlob() - { - return $this->glob; - } - public function setHeaders($headers) - { - $this->headers = $headers; - } - public function getHeaders() - { - return $this->headers; - } - public function setRegex($regex) - { - $this->regex = $regex; - } - public function getRegex() - { - return $this->regex; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/ListDomainsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/ListDomainsResponse.php deleted file mode 100644 index 4b937f66..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/ListDomainsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -domains = $domains; - } - /** - * @return Google_Service_FirebaseHosting_Domain - */ - public function getDomains() - { - return $this->domains; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/ListReleasesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/ListReleasesResponse.php deleted file mode 100644 index db53a4e5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/ListReleasesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_FirebaseHosting_Release - */ - public function setReleases($releases) - { - $this->releases = $releases; - } - /** - * @return Google_Service_FirebaseHosting_Release - */ - public function getReleases() - { - return $this->releases; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/ListVersionFilesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/ListVersionFilesResponse.php deleted file mode 100644 index f55ddbb3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/ListVersionFilesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -files = $files; - } - /** - * @return Google_Service_FirebaseHosting_VersionFile - */ - public function getFiles() - { - return $this->files; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/ListVersionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/ListVersionsResponse.php deleted file mode 100644 index 2955c659..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/ListVersionsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_FirebaseHosting_Version - */ - public function setVersions($versions) - { - $this->versions = $versions; - } - /** - * @return Google_Service_FirebaseHosting_Version - */ - public function getVersions() - { - return $this->versions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/Operation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/Operation.php deleted file mode 100644 index c88b3649..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/Operation.php +++ /dev/null @@ -1,73 +0,0 @@ -done = $done; - } - public function getDone() - { - return $this->done; - } - /** - * @param Google_Service_FirebaseHosting_Status - */ - public function setError(Google_Service_FirebaseHosting_Status $error) - { - $this->error = $error; - } - /** - * @return Google_Service_FirebaseHosting_Status - */ - public function getError() - { - return $this->error; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/PathFilter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/PathFilter.php deleted file mode 100644 index 385834ad..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/PathFilter.php +++ /dev/null @@ -1,31 +0,0 @@ -regexes = $regexes; - } - public function getRegexes() - { - return $this->regexes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/PopulateVersionFilesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/PopulateVersionFilesRequest.php deleted file mode 100644 index bd00de69..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/PopulateVersionFilesRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -files = $files; - } - public function getFiles() - { - return $this->files; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/PopulateVersionFilesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/PopulateVersionFilesResponse.php deleted file mode 100644 index 9f6443c8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/PopulateVersionFilesResponse.php +++ /dev/null @@ -1,40 +0,0 @@ -uploadRequiredHashes = $uploadRequiredHashes; - } - public function getUploadRequiredHashes() - { - return $this->uploadRequiredHashes; - } - public function setUploadUrl($uploadUrl) - { - $this->uploadUrl = $uploadUrl; - } - public function getUploadUrl() - { - return $this->uploadUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/PreviewConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/PreviewConfig.php deleted file mode 100644 index 8ce51c09..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/PreviewConfig.php +++ /dev/null @@ -1,39 +0,0 @@ -active = $active; - } - public function getActive() - { - return $this->active; - } - public function setExpireTime($expireTime) - { - $this->expireTime = $expireTime; - } - public function getExpireTime() - { - return $this->expireTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/Redirect.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/Redirect.php deleted file mode 100644 index 58dd0630..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/Redirect.php +++ /dev/null @@ -1,57 +0,0 @@ -glob = $glob; - } - public function getGlob() - { - return $this->glob; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setRegex($regex) - { - $this->regex = $regex; - } - public function getRegex() - { - return $this->regex; - } - public function setStatusCode($statusCode) - { - $this->statusCode = $statusCode; - } - public function getStatusCode() - { - return $this->statusCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/Release.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/Release.php deleted file mode 100644 index 98e65a6a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/Release.php +++ /dev/null @@ -1,89 +0,0 @@ -message = $message; - } - public function getMessage() - { - return $this->message; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setReleaseTime($releaseTime) - { - $this->releaseTime = $releaseTime; - } - public function getReleaseTime() - { - return $this->releaseTime; - } - /** - * @param Google_Service_FirebaseHosting_ActingUser - */ - public function setReleaseUser(Google_Service_FirebaseHosting_ActingUser $releaseUser) - { - $this->releaseUser = $releaseUser; - } - /** - * @return Google_Service_FirebaseHosting_ActingUser - */ - public function getReleaseUser() - { - return $this->releaseUser; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - /** - * @param Google_Service_FirebaseHosting_Version - */ - public function setVersion(Google_Service_FirebaseHosting_Version $version) - { - $this->version = $version; - } - /** - * @return Google_Service_FirebaseHosting_Version - */ - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/Resource/Projects.php deleted file mode 100644 index 7610ecbc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/Resource/Projects.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $firebasehostingService = new Google_Service_FirebaseHosting(...); - * $projects = $firebasehostingService->projects; - * - */ -class Google_Service_FirebaseHosting_Resource_Projects extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/Resource/ProjectsOperations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/Resource/ProjectsOperations.php deleted file mode 100644 index 24085cc8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/Resource/ProjectsOperations.php +++ /dev/null @@ -1,43 +0,0 @@ - - * $firebasehostingService = new Google_Service_FirebaseHosting(...); - * $operations = $firebasehostingService->operations; - * - */ -class Google_Service_FirebaseHosting_Resource_ProjectsOperations extends Google_Service_Resource -{ - /** - * Gets the latest state of a long-running operation. Clients can use this - * method to poll the operation result at intervals as recommended by the API - * service. (operations.get) - * - * @param string $name The name of the operation resource. - * @param array $optParams Optional parameters. - * @return Google_Service_FirebaseHosting_Operation - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_FirebaseHosting_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/Resource/Sites.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/Resource/Sites.php deleted file mode 100644 index c9a7afdf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/Resource/Sites.php +++ /dev/null @@ -1,63 +0,0 @@ - - * $firebasehostingService = new Google_Service_FirebaseHosting(...); - * $sites = $firebasehostingService->sites; - * - */ -class Google_Service_FirebaseHosting_Resource_Sites extends Google_Service_Resource -{ - /** - * Gets the Hosting metadata for a specific site. (sites.getConfig) - * - * @param string $name Required. The site for which to get the SiteConfig, in - * the format: sites/site-name/config - * @param array $optParams Optional parameters. - * @return Google_Service_FirebaseHosting_SiteConfig - */ - public function getConfig($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('getConfig', array($params), "Google_Service_FirebaseHosting_SiteConfig"); - } - /** - * Sets the Hosting metadata for a specific site. (sites.updateConfig) - * - * @param string $name Required. The site for which to update the SiteConfig, in - * the format: sites/site-name/config - * @param Google_Service_FirebaseHosting_SiteConfig $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask A set of field names from your [site - * configuration](../sites.SiteConfig) that you want to update. A field will be - * overwritten if, and only if, it's in the mask. If a mask is not provided then - * a default mask of only [`max_versions`](../sites.SiteConfig.max_versions) - * will be used. - * @return Google_Service_FirebaseHosting_SiteConfig - */ - public function updateConfig($name, Google_Service_FirebaseHosting_SiteConfig $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updateConfig', array($params), "Google_Service_FirebaseHosting_SiteConfig"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/Resource/SitesDomains.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/Resource/SitesDomains.php deleted file mode 100644 index 03d7b0d0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/Resource/SitesDomains.php +++ /dev/null @@ -1,103 +0,0 @@ - - * $firebasehostingService = new Google_Service_FirebaseHosting(...); - * $domains = $firebasehostingService->domains; - * - */ -class Google_Service_FirebaseHosting_Resource_SitesDomains extends Google_Service_Resource -{ - /** - * Creates a domain mapping on the specified site. (domains.create) - * - * @param string $parent Required. The parent to create the domain association - * for, in the format: sites/site-name - * @param Google_Service_FirebaseHosting_Domain $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_FirebaseHosting_Domain - */ - public function create($parent, Google_Service_FirebaseHosting_Domain $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_FirebaseHosting_Domain"); - } - /** - * Deletes the existing domain mapping on the specified site. (domains.delete) - * - * @param string $name Required. The name of the domain association to delete. - * @param array $optParams Optional parameters. - * @return Google_Service_FirebaseHosting_FirebasehostingEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_FirebaseHosting_FirebasehostingEmpty"); - } - /** - * Gets a domain mapping on the specified site. (domains.get) - * - * @param string $name Required. The name of the domain configuration to get. - * @param array $optParams Optional parameters. - * @return Google_Service_FirebaseHosting_Domain - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_FirebaseHosting_Domain"); - } - /** - * Lists the domains for the specified site. (domains.listSitesDomains) - * - * @param string $parent Required. The parent for which to list domains, in the - * format: sites/site-name - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The next_page_token from a previous request, if - * provided. - * @opt_param int pageSize The page size to return. Defaults to 50. - * @return Google_Service_FirebaseHosting_ListDomainsResponse - */ - public function listSitesDomains($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_FirebaseHosting_ListDomainsResponse"); - } - /** - * Updates the specified domain mapping, creating the mapping as if it does not - * exist. (domains.update) - * - * @param string $name Required. The name of the domain association to update or - * create, if an association doesn't already exist. - * @param Google_Service_FirebaseHosting_Domain $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_FirebaseHosting_Domain - */ - public function update($name, Google_Service_FirebaseHosting_Domain $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_FirebaseHosting_Domain"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/Resource/SitesReleases.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/Resource/SitesReleases.php deleted file mode 100644 index 2e88f6e8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/Resource/SitesReleases.php +++ /dev/null @@ -1,70 +0,0 @@ - - * $firebasehostingService = new Google_Service_FirebaseHosting(...); - * $releases = $firebasehostingService->releases; - * - */ -class Google_Service_FirebaseHosting_Resource_SitesReleases extends Google_Service_Resource -{ - /** - * Creates a new release which makes the content of the specified version - * actively display on the site. (releases.create) - * - * @param string $parent The site that the release belongs to, in the format: - * sites/site-name - * @param Google_Service_FirebaseHosting_Release $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string versionName The unique identifier for a version, in the - * format: /sites/site-name/versions/versionID The site-name in this version - * identifier must match the site-name in the `parent` parameter. - * - * This query parameter must be empty if the `type` field in the request body is - * `SITE_DISABLE`. - * @return Google_Service_FirebaseHosting_Release - */ - public function create($parent, Google_Service_FirebaseHosting_Release $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_FirebaseHosting_Release"); - } - /** - * Lists the releases that have been created on the specified site. - * (releases.listSitesReleases) - * - * @param string $parent Required. The parent for which to list files, in the - * format: sites/site-name - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The next_page_token from a previous request, if - * provided. - * @opt_param int pageSize The page size to return. Defaults to 100. - * @return Google_Service_FirebaseHosting_ListReleasesResponse - */ - public function listSitesReleases($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_FirebaseHosting_ListReleasesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/Resource/SitesVersions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/Resource/SitesVersions.php deleted file mode 100644 index ec1bd9ce..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/Resource/SitesVersions.php +++ /dev/null @@ -1,144 +0,0 @@ - - * $firebasehostingService = new Google_Service_FirebaseHosting(...); - * $versions = $firebasehostingService->versions; - * - */ -class Google_Service_FirebaseHosting_Resource_SitesVersions extends Google_Service_Resource -{ - /** - * Creates a new version on the target site using the content of the specified - * version. (versions.cloneSitesVersions) - * - * @param string $parent Required. The target site where the cloned version will - * reside, in the format: `sites/{site}` - * @param Google_Service_FirebaseHosting_CloneVersionRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_FirebaseHosting_Operation - */ - public function cloneSitesVersions($parent, Google_Service_FirebaseHosting_CloneVersionRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('clone', array($params), "Google_Service_FirebaseHosting_Operation"); - } - /** - * Creates a new version for a site. (versions.create) - * - * @param string $parent Required. The parent to create the version for, in the - * format: sites/site-name - * @param Google_Service_FirebaseHosting_Version $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string sizeBytes The self-reported size of the version. This value - * is used for a pre-emptive quota check for legacy version uploads. - * @opt_param string versionId A unique id for the new version. This is only - * specified for legacy version creations. - * @return Google_Service_FirebaseHosting_Version - */ - public function create($parent, Google_Service_FirebaseHosting_Version $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_FirebaseHosting_Version"); - } - /** - * Deletes the specified version. (versions.delete) - * - * @param string $name Required. The name of the version to be deleted, in the - * format: sites/site-name/versions/versionID - * @param array $optParams Optional parameters. - * @return Google_Service_FirebaseHosting_FirebasehostingEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_FirebaseHosting_FirebasehostingEmpty"); - } - /** - * Lists the versions that have been created on the specified site. Will include - * filtering in the future. (versions.listSitesVersions) - * - * @param string $parent Required. The parent for which to list files, in the - * format: sites/site-name - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The next_page_token from a previous request, if - * provided. - * @opt_param int pageSize The maximum number of versions to return. The service - * may return fewer than this value. If unspecified, at most 25 versions will be - * returned. The maximum value is 100; values above 100 will be coerced to 100 - * @opt_param string filter The filter string used to return a subset of - * versions in the response. Currently supported fields for filtering are: name, - * status, and create_time. Filter processing will be implemented in accordance - * with go/filtering. - * @return Google_Service_FirebaseHosting_ListVersionsResponse - */ - public function listSitesVersions($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_FirebaseHosting_ListVersionsResponse"); - } - /** - * Updates the specified metadata for a version. Note that this method will fail - * with `FAILED_PRECONDITION` in the event of an invalid state transition. The - * only valid transition for a version is currently from a `CREATED` status to a - * `FINALIZED` status. Use [`DeleteVersion`](../sites.versions/delete) to set - * the status of a version to `DELETED`. (versions.patch) - * - * @param string $name The unique identifier for a version, in the format: sites - * /site-name/versions/versionID This name is provided in the response body when - * you call the [`CreateVersion`](../sites.versions/create) endpoint. - * @param Google_Service_FirebaseHosting_Version $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask A set of field names from your - * [version](../sites.versions) that you want to update. A field will be - * overwritten if, and only if, it's in the mask. If a mask is not provided then - * a default mask of only [`status`](../sites.versions#Version.FIELDS.status) - * will be used. - * @return Google_Service_FirebaseHosting_Version - */ - public function patch($name, Google_Service_FirebaseHosting_Version $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_FirebaseHosting_Version"); - } - /** - * Adds content files to a version. (versions.populateFiles) - * - * @param string $parent Required. The version to add files to, in the format: - * sites/site-name/versions/versionID - * @param Google_Service_FirebaseHosting_PopulateVersionFilesRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_FirebaseHosting_PopulateVersionFilesResponse - */ - public function populateFiles($parent, Google_Service_FirebaseHosting_PopulateVersionFilesRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('populateFiles', array($params), "Google_Service_FirebaseHosting_PopulateVersionFilesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/Resource/SitesVersionsFiles.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/Resource/SitesVersionsFiles.php deleted file mode 100644 index 19f54a87..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/Resource/SitesVersionsFiles.php +++ /dev/null @@ -1,50 +0,0 @@ - - * $firebasehostingService = new Google_Service_FirebaseHosting(...); - * $files = $firebasehostingService->files; - * - */ -class Google_Service_FirebaseHosting_Resource_SitesVersionsFiles extends Google_Service_Resource -{ - /** - * Lists the remaining files to be uploaded for the specified version. - * (files.listSitesVersionsFiles) - * - * @param string $parent Required. The parent to list files for, in the format: - * sites/site-name/versions/versionID - * @param array $optParams Optional parameters. - * - * @opt_param string status The type of files in the version that should be - * listed. - * @opt_param string pageToken The next_page_token from a previous request, if - * provided. This will be the encoded version of a - * firebase.hosting.proto.metadata.ListFilesPageToken. - * @opt_param int pageSize The page size to return. Defaults to 1000. - * @return Google_Service_FirebaseHosting_ListVersionFilesResponse - */ - public function listSitesVersionsFiles($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_FirebaseHosting_ListVersionFilesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/Rewrite.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/Rewrite.php deleted file mode 100644 index 9ca143cc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/Rewrite.php +++ /dev/null @@ -1,82 +0,0 @@ -dynamicLinks = $dynamicLinks; - } - public function getDynamicLinks() - { - return $this->dynamicLinks; - } - public function setFunction($function) - { - $this->function = $function; - } - public function getFunction() - { - return $this->function; - } - public function setGlob($glob) - { - $this->glob = $glob; - } - public function getGlob() - { - return $this->glob; - } - public function setPath($path) - { - $this->path = $path; - } - public function getPath() - { - return $this->path; - } - public function setRegex($regex) - { - $this->regex = $regex; - } - public function getRegex() - { - return $this->regex; - } - /** - * @param Google_Service_FirebaseHosting_CloudRunRewrite - */ - public function setRun(Google_Service_FirebaseHosting_CloudRunRewrite $run) - { - $this->run = $run; - } - /** - * @return Google_Service_FirebaseHosting_CloudRunRewrite - */ - public function getRun() - { - return $this->run; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/ServingConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/ServingConfig.php deleted file mode 100644 index b9422fcc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/ServingConfig.php +++ /dev/null @@ -1,97 +0,0 @@ -appAssociation = $appAssociation; - } - public function getAppAssociation() - { - return $this->appAssociation; - } - public function setCleanUrls($cleanUrls) - { - $this->cleanUrls = $cleanUrls; - } - public function getCleanUrls() - { - return $this->cleanUrls; - } - /** - * @param Google_Service_FirebaseHosting_Header - */ - public function setHeaders($headers) - { - $this->headers = $headers; - } - /** - * @return Google_Service_FirebaseHosting_Header - */ - public function getHeaders() - { - return $this->headers; - } - /** - * @param Google_Service_FirebaseHosting_Redirect - */ - public function setRedirects($redirects) - { - $this->redirects = $redirects; - } - /** - * @return Google_Service_FirebaseHosting_Redirect - */ - public function getRedirects() - { - return $this->redirects; - } - /** - * @param Google_Service_FirebaseHosting_Rewrite - */ - public function setRewrites($rewrites) - { - $this->rewrites = $rewrites; - } - /** - * @return Google_Service_FirebaseHosting_Rewrite - */ - public function getRewrites() - { - return $this->rewrites; - } - public function setTrailingSlashBehavior($trailingSlashBehavior) - { - $this->trailingSlashBehavior = $trailingSlashBehavior; - } - public function getTrailingSlashBehavior() - { - return $this->trailingSlashBehavior; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/SiteConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/SiteConfig.php deleted file mode 100644 index 93767adf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/SiteConfig.php +++ /dev/null @@ -1,30 +0,0 @@ -maxVersions = $maxVersions; - } - public function getMaxVersions() - { - return $this->maxVersions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/Status.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/Status.php deleted file mode 100644 index f8e481fa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/Status.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/Version.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/Version.php deleted file mode 100644 index e22f9650..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/Version.php +++ /dev/null @@ -1,173 +0,0 @@ -config = $config; - } - /** - * @return Google_Service_FirebaseHosting_ServingConfig - */ - public function getConfig() - { - return $this->config; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - /** - * @param Google_Service_FirebaseHosting_ActingUser - */ - public function setCreateUser(Google_Service_FirebaseHosting_ActingUser $createUser) - { - $this->createUser = $createUser; - } - /** - * @return Google_Service_FirebaseHosting_ActingUser - */ - public function getCreateUser() - { - return $this->createUser; - } - public function setDeleteTime($deleteTime) - { - $this->deleteTime = $deleteTime; - } - public function getDeleteTime() - { - return $this->deleteTime; - } - /** - * @param Google_Service_FirebaseHosting_ActingUser - */ - public function setDeleteUser(Google_Service_FirebaseHosting_ActingUser $deleteUser) - { - $this->deleteUser = $deleteUser; - } - /** - * @return Google_Service_FirebaseHosting_ActingUser - */ - public function getDeleteUser() - { - return $this->deleteUser; - } - public function setFileCount($fileCount) - { - $this->fileCount = $fileCount; - } - public function getFileCount() - { - return $this->fileCount; - } - public function setFinalizeTime($finalizeTime) - { - $this->finalizeTime = $finalizeTime; - } - public function getFinalizeTime() - { - return $this->finalizeTime; - } - /** - * @param Google_Service_FirebaseHosting_ActingUser - */ - public function setFinalizeUser(Google_Service_FirebaseHosting_ActingUser $finalizeUser) - { - $this->finalizeUser = $finalizeUser; - } - /** - * @return Google_Service_FirebaseHosting_ActingUser - */ - public function getFinalizeUser() - { - return $this->finalizeUser; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_FirebaseHosting_PreviewConfig - */ - public function setPreview(Google_Service_FirebaseHosting_PreviewConfig $preview) - { - $this->preview = $preview; - } - /** - * @return Google_Service_FirebaseHosting_PreviewConfig - */ - public function getPreview() - { - return $this->preview; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setVersionBytes($versionBytes) - { - $this->versionBytes = $versionBytes; - } - public function getVersionBytes() - { - return $this->versionBytes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/VersionFile.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/VersionFile.php deleted file mode 100644 index 77e0aa3e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseHosting/VersionFile.php +++ /dev/null @@ -1,48 +0,0 @@ -hash = $hash; - } - public function getHash() - { - return $this->hash; - } - public function setPath($path) - { - $this->path = $path; - } - public function getPath() - { - return $this->path; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement.php deleted file mode 100644 index 2e952424..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement.php +++ /dev/null @@ -1,536 +0,0 @@ - - * The Firebase Management API enables programmatic setup and management of - * Firebase projects, including a project's Firebase resources and Firebase - * apps.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_FirebaseManagement extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** View your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM_READ_ONLY = - "https://www.googleapis.com/auth/cloud-platform.read-only"; - /** View and administer all your Firebase data and settings. */ - const FIREBASE = - "https://www.googleapis.com/auth/firebase"; - /** View all your Firebase data and settings. */ - const FIREBASE_READONLY = - "https://www.googleapis.com/auth/firebase.readonly"; - - public $availableProjects; - public $operations; - public $projects; - public $projects_androidApps; - public $projects_androidApps_sha; - public $projects_availableLocations; - public $projects_defaultLocation; - public $projects_iosApps; - public $projects_webApps; - - /** - * Constructs the internal representation of the FirebaseManagement service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://firebase.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1beta1'; - $this->serviceName = 'firebase'; - - $this->availableProjects = new Google_Service_FirebaseManagement_Resource_AvailableProjects( - $this, - $this->serviceName, - 'availableProjects', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1beta1/availableProjects', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->operations = new Google_Service_FirebaseManagement_Resource_Operations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects = new Google_Service_FirebaseManagement_Resource_Projects( - $this, - $this->serviceName, - 'projects', - array( - 'methods' => array( - 'addFirebase' => array( - 'path' => 'v1beta1/{+project}:addFirebase', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'addGoogleAnalytics' => array( - 'path' => 'v1beta1/{+parent}:addGoogleAnalytics', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getAdminSdkConfig' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getAnalyticsDetails' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1beta1/projects', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'removeAnalytics' => array( - 'path' => 'v1beta1/{+parent}:removeAnalytics', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'searchApps' => array( - 'path' => 'v1beta1/{+parent}:searchApps', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->projects_androidApps = new Google_Service_FirebaseManagement_Resource_ProjectsAndroidApps( - $this, - $this->serviceName, - 'androidApps', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1beta1/{+parent}/androidApps', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getConfig' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1beta1/{+parent}/androidApps', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_androidApps_sha = new Google_Service_FirebaseManagement_Resource_ProjectsAndroidAppsSha( - $this, - $this->serviceName, - 'sha', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1beta1/{+parent}/sha', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1beta1/{+parent}/sha', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_availableLocations = new Google_Service_FirebaseManagement_Resource_ProjectsAvailableLocations( - $this, - $this->serviceName, - 'availableLocations', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1beta1/{+parent}/availableLocations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->projects_defaultLocation = new Google_Service_FirebaseManagement_Resource_ProjectsDefaultLocation( - $this, - $this->serviceName, - 'defaultLocation', - array( - 'methods' => array( - 'finalize' => array( - 'path' => 'v1beta1/{+parent}/defaultLocation:finalize', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_iosApps = new Google_Service_FirebaseManagement_Resource_ProjectsIosApps( - $this, - $this->serviceName, - 'iosApps', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1beta1/{+parent}/iosApps', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getConfig' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1beta1/{+parent}/iosApps', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_webApps = new Google_Service_FirebaseManagement_Resource_ProjectsWebApps( - $this, - $this->serviceName, - 'webApps', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1beta1/{+parent}/webApps', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getConfig' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1beta1/{+parent}/webApps', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/AddFirebaseRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/AddFirebaseRequest.php deleted file mode 100644 index 31d14bd4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/AddFirebaseRequest.php +++ /dev/null @@ -1,48 +0,0 @@ -locationId = $locationId; - } - public function getLocationId() - { - return $this->locationId; - } - public function setRegionCode($regionCode) - { - $this->regionCode = $regionCode; - } - public function getRegionCode() - { - return $this->regionCode; - } - public function setTimeZone($timeZone) - { - $this->timeZone = $timeZone; - } - public function getTimeZone() - { - return $this->timeZone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/AddGoogleAnalyticsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/AddGoogleAnalyticsRequest.php deleted file mode 100644 index 3e44193f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/AddGoogleAnalyticsRequest.php +++ /dev/null @@ -1,39 +0,0 @@ -analyticsAccountId = $analyticsAccountId; - } - public function getAnalyticsAccountId() - { - return $this->analyticsAccountId; - } - public function setAnalyticsPropertyId($analyticsPropertyId) - { - $this->analyticsPropertyId = $analyticsPropertyId; - } - public function getAnalyticsPropertyId() - { - return $this->analyticsPropertyId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/AdminSdkConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/AdminSdkConfig.php deleted file mode 100644 index e42f5d47..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/AdminSdkConfig.php +++ /dev/null @@ -1,57 +0,0 @@ -databaseURL = $databaseURL; - } - public function getDatabaseURL() - { - return $this->databaseURL; - } - public function setLocationId($locationId) - { - $this->locationId = $locationId; - } - public function getLocationId() - { - return $this->locationId; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } - public function setStorageBucket($storageBucket) - { - $this->storageBucket = $storageBucket; - } - public function getStorageBucket() - { - return $this->storageBucket; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/AnalyticsDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/AnalyticsDetails.php deleted file mode 100644 index e5026bcd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/AnalyticsDetails.php +++ /dev/null @@ -1,54 +0,0 @@ -analyticsProperty = $analyticsProperty; - } - /** - * @return Google_Service_FirebaseManagement_AnalyticsProperty - */ - public function getAnalyticsProperty() - { - return $this->analyticsProperty; - } - /** - * @param Google_Service_FirebaseManagement_StreamMapping - */ - public function setStreamMappings($streamMappings) - { - $this->streamMappings = $streamMappings; - } - /** - * @return Google_Service_FirebaseManagement_StreamMapping - */ - public function getStreamMappings() - { - return $this->streamMappings; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/AnalyticsProperty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/AnalyticsProperty.php deleted file mode 100644 index dc2006c9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/AnalyticsProperty.php +++ /dev/null @@ -1,39 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/AndroidApp.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/AndroidApp.php deleted file mode 100644 index 4e9c0575..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/AndroidApp.php +++ /dev/null @@ -1,66 +0,0 @@ -appId = $appId; - } - public function getAppId() - { - return $this->appId; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPackageName($packageName) - { - $this->packageName = $packageName; - } - public function getPackageName() - { - return $this->packageName; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/AndroidAppConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/AndroidAppConfig.php deleted file mode 100644 index 963b7edc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/AndroidAppConfig.php +++ /dev/null @@ -1,39 +0,0 @@ -configFileContents = $configFileContents; - } - public function getConfigFileContents() - { - return $this->configFileContents; - } - public function setConfigFilename($configFilename) - { - $this->configFilename = $configFilename; - } - public function getConfigFilename() - { - return $this->configFilename; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/DefaultResources.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/DefaultResources.php deleted file mode 100644 index bb8d8b8d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/DefaultResources.php +++ /dev/null @@ -1,57 +0,0 @@ -hostingSite = $hostingSite; - } - public function getHostingSite() - { - return $this->hostingSite; - } - public function setLocationId($locationId) - { - $this->locationId = $locationId; - } - public function getLocationId() - { - return $this->locationId; - } - public function setRealtimeDatabaseInstance($realtimeDatabaseInstance) - { - $this->realtimeDatabaseInstance = $realtimeDatabaseInstance; - } - public function getRealtimeDatabaseInstance() - { - return $this->realtimeDatabaseInstance; - } - public function setStorageBucket($storageBucket) - { - $this->storageBucket = $storageBucket; - } - public function getStorageBucket() - { - return $this->storageBucket; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/FinalizeDefaultLocationRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/FinalizeDefaultLocationRequest.php deleted file mode 100644 index d03a3f74..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/FinalizeDefaultLocationRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -locationId = $locationId; - } - public function getLocationId() - { - return $this->locationId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/FirebaseAppInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/FirebaseAppInfo.php deleted file mode 100644 index 202ed1df..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/FirebaseAppInfo.php +++ /dev/null @@ -1,57 +0,0 @@ -appId = $appId; - } - public function getAppId() - { - return $this->appId; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPlatform($platform) - { - $this->platform = $platform; - } - public function getPlatform() - { - return $this->platform; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/FirebaseEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/FirebaseEmpty.php deleted file mode 100644 index 30cb93bb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/FirebaseEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } - public function setProjectNumber($projectNumber) - { - $this->projectNumber = $projectNumber; - } - public function getProjectNumber() - { - return $this->projectNumber; - } - /** - * @param Google_Service_FirebaseManagement_DefaultResources - */ - public function setResources(Google_Service_FirebaseManagement_DefaultResources $resources) - { - $this->resources = $resources; - } - /** - * @return Google_Service_FirebaseManagement_DefaultResources - */ - public function getResources() - { - return $this->resources; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/IosApp.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/IosApp.php deleted file mode 100644 index 8b5c0ae7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/IosApp.php +++ /dev/null @@ -1,75 +0,0 @@ -appId = $appId; - } - public function getAppId() - { - return $this->appId; - } - public function setAppStoreId($appStoreId) - { - $this->appStoreId = $appStoreId; - } - public function getAppStoreId() - { - return $this->appStoreId; - } - public function setBundleId($bundleId) - { - $this->bundleId = $bundleId; - } - public function getBundleId() - { - return $this->bundleId; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/IosAppConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/IosAppConfig.php deleted file mode 100644 index fe7a791c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/IosAppConfig.php +++ /dev/null @@ -1,39 +0,0 @@ -configFileContents = $configFileContents; - } - public function getConfigFileContents() - { - return $this->configFileContents; - } - public function setConfigFilename($configFilename) - { - $this->configFilename = $configFilename; - } - public function getConfigFilename() - { - return $this->configFilename; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/ListAndroidAppsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/ListAndroidAppsResponse.php deleted file mode 100644 index c6eb54e7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/ListAndroidAppsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -apps = $apps; - } - /** - * @return Google_Service_FirebaseManagement_AndroidApp - */ - public function getApps() - { - return $this->apps; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/ListAvailableLocationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/ListAvailableLocationsResponse.php deleted file mode 100644 index 29561aeb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/ListAvailableLocationsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -locations = $locations; - } - /** - * @return Google_Service_FirebaseManagement_Location - */ - public function getLocations() - { - return $this->locations; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/ListAvailableProjectsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/ListAvailableProjectsResponse.php deleted file mode 100644 index 4b2dbbda..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/ListAvailableProjectsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_FirebaseManagement_ProjectInfo - */ - public function setProjectInfo($projectInfo) - { - $this->projectInfo = $projectInfo; - } - /** - * @return Google_Service_FirebaseManagement_ProjectInfo - */ - public function getProjectInfo() - { - return $this->projectInfo; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/ListFirebaseProjectsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/ListFirebaseProjectsResponse.php deleted file mode 100644 index 25aee4c3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/ListFirebaseProjectsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_FirebaseManagement_FirebaseProject - */ - public function setResults($results) - { - $this->results = $results; - } - /** - * @return Google_Service_FirebaseManagement_FirebaseProject - */ - public function getResults() - { - return $this->results; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/ListIosAppsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/ListIosAppsResponse.php deleted file mode 100644 index 63705717..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/ListIosAppsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -apps = $apps; - } - /** - * @return Google_Service_FirebaseManagement_IosApp - */ - public function getApps() - { - return $this->apps; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/ListShaCertificatesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/ListShaCertificatesResponse.php deleted file mode 100644 index 202bc694..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/ListShaCertificatesResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -certificates = $certificates; - } - /** - * @return Google_Service_FirebaseManagement_ShaCertificate - */ - public function getCertificates() - { - return $this->certificates; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/ListWebAppsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/ListWebAppsResponse.php deleted file mode 100644 index c198486d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/ListWebAppsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -apps = $apps; - } - /** - * @return Google_Service_FirebaseManagement_WebApp - */ - public function getApps() - { - return $this->apps; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/Location.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/Location.php deleted file mode 100644 index c00bf760..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/Location.php +++ /dev/null @@ -1,49 +0,0 @@ -features = $features; - } - public function getFeatures() - { - return $this->features; - } - public function setLocationId($locationId) - { - $this->locationId = $locationId; - } - public function getLocationId() - { - return $this->locationId; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/MessageSet.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/MessageSet.php deleted file mode 100644 index 02801294..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/MessageSet.php +++ /dev/null @@ -1,20 +0,0 @@ -done = $done; - } - public function getDone() - { - return $this->done; - } - /** - * @param Google_Service_FirebaseManagement_Status - */ - public function setError(Google_Service_FirebaseManagement_Status $error) - { - $this->error = $error; - } - /** - * @return Google_Service_FirebaseManagement_Status - */ - public function getError() - { - return $this->error; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/ProjectInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/ProjectInfo.php deleted file mode 100644 index 1c456567..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/ProjectInfo.php +++ /dev/null @@ -1,48 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setLocationId($locationId) - { - $this->locationId = $locationId; - } - public function getLocationId() - { - return $this->locationId; - } - public function setProject($project) - { - $this->project = $project; - } - public function getProject() - { - return $this->project; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/RemoveAnalyticsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/RemoveAnalyticsRequest.php deleted file mode 100644 index 108956f0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/RemoveAnalyticsRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -analyticsPropertyId = $analyticsPropertyId; - } - public function getAnalyticsPropertyId() - { - return $this->analyticsPropertyId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/Resource/AvailableProjects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/Resource/AvailableProjects.php deleted file mode 100644 index 4d9ee29e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/Resource/AvailableProjects.php +++ /dev/null @@ -1,62 +0,0 @@ - - * $firebaseService = new Google_Service_FirebaseManagement(...); - * $availableProjects = $firebaseService->availableProjects; - * - */ -class Google_Service_FirebaseManagement_Resource_AvailableProjects extends Google_Service_Resource -{ - /** - * Returns a list of [Google Cloud Platform (GCP) `Projects`] - * (https://cloud.google.com/resource-manager/reference/rest/v1/projects) that - * are available to have Firebase resources added to them. - * - * A GCP `Project` will only be returned if: - * - * The caller has sufficient [Google - * IAM](https://cloud.google.com/iam) permissions to call AddFirebase. - * The GCP `Project` is not already a FirebaseProject. The GCP `Project` is - * not in an Organization which has policies that prevent Firebase - * resources from being added. (availableProjects.listAvailableProjects) - * - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Token returned from a previous call to - * `ListAvailableProjects` indicating where in the set of GCP `Projects` to - * resume listing. - * @opt_param int pageSize The maximum number of GCP `Projects` to return in the - * response. - * - * The server may return fewer than this value at its discretion. If no value is - * specified (or too large a value is specified), the server will impose its own - * limit. - * - * This value cannot be negative. - * @return Google_Service_FirebaseManagement_ListAvailableProjectsResponse - */ - public function listAvailableProjects($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_FirebaseManagement_ListAvailableProjectsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/Resource/Operations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/Resource/Operations.php deleted file mode 100644 index 60762c79..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/Resource/Operations.php +++ /dev/null @@ -1,43 +0,0 @@ - - * $firebaseService = new Google_Service_FirebaseManagement(...); - * $operations = $firebaseService->operations; - * - */ -class Google_Service_FirebaseManagement_Resource_Operations extends Google_Service_Resource -{ - /** - * Gets the latest state of a long-running operation. Clients can use this - * method to poll the operation result at intervals as recommended by the API - * service. (operations.get) - * - * @param string $name The name of the operation resource. - * @param array $optParams Optional parameters. - * @return Google_Service_FirebaseManagement_Operation - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_FirebaseManagement_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/Resource/Projects.php deleted file mode 100644 index c37850ed..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/Resource/Projects.php +++ /dev/null @@ -1,301 +0,0 @@ - - * $firebaseService = new Google_Service_FirebaseManagement(...); - * $projects = $firebaseService->projects; - * - */ -class Google_Service_FirebaseManagement_Resource_Projects extends Google_Service_Resource -{ - /** - * Adds Firebase resources to the specified existing [Google Cloud Platform - * (GCP) `Project`] (https://cloud.google.com/resource- - * manager/reference/rest/v1/projects). - * - * Since a FirebaseProject is actually also a GCP `Project`, a `FirebaseProject` - * uses underlying GCP identifiers (most importantly, the `projectId`) as its - * own for easy interop with GCP APIs. - * - * The result of this call is an [`Operation`](../../v1beta1/operations). Poll - * the `Operation` to track the provisioning process by calling GetOperation - * until [`done`](../../v1beta1/operations#Operation.FIELDS.done) is `true`. - * When `done` is `true`, the `Operation` has either succeeded or failed. If the - * `Operation` succeeded, its - * [`response`](../../v1beta1/operations#Operation.FIELDS.response) is set to a - * FirebaseProject; if the `Operation` failed, its - * [`error`](../../v1beta1/operations#Operation.FIELDS.error) is set to a - * google.rpc.Status. The `Operation` is automatically deleted after completion, - * so there is no need to call DeleteOperation. - * - * This method does not modify any billing account information on the underlying - * GCP `Project`. - * - * To call `AddFirebase`, a member must be an Editor or Owner for the existing - * GCP `Project`. Service accounts cannot call `AddFirebase`. - * (projects.addFirebase) - * - * @param string $project The resource name of the GCP `Project` to which - * Firebase resources will be added, in the format: projects/projectId After - * calling `AddFirebase`, the [`projectId`](https://cloud.google.com/resource- - * manager/reference/rest/v1/projects#Project.FIELDS.project_id) of the GCP - * `Project` is also the `projectId` of the FirebaseProject. - * @param Google_Service_FirebaseManagement_AddFirebaseRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_FirebaseManagement_Operation - */ - public function addFirebase($project, Google_Service_FirebaseManagement_AddFirebaseRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('addFirebase', array($params), "Google_Service_FirebaseManagement_Operation"); - } - /** - * Links a FirebaseProject with an existing [Google Analytics - * account](http://www.google.com/analytics/). - * - * Using this call, you can either: - * - * Specify an `analyticsAccountId` to provision a new Google Analytics property - * within the specified account and associate the new property with your - * `FirebaseProject`. Specify an existing `analyticsPropertyId` to associate the - * property with your `FirebaseProject`. - * - * Note that when you call `AddGoogleAnalytics`: - * - * The first check determines if any existing data streams in the Google - * Analytics property correspond to any existing Firebase Apps in your - * `FirebaseProject` (based on the `packageName` or `bundleId` associated with - * the data stream). Then, as applicable, the data streams and apps are linked. - * Note that this auto-linking only applies to Android Apps and iOS Apps. If no - * corresponding data streams are found for your Firebase Apps, new data streams - * are provisioned in the Google Analytics property for each of your Firebase - * Apps. Note that a new data stream is always provisioned for a Web App even if - * it was previously associated with a data stream in your Analytics property. - * - * Learn more about the hierarchy and structure of Google Analytics accounts in - * the [Analytics - * documentation](https://support.google.com/analytics/answer/9303323). - * - * The result of this call is an [`Operation`](../../v1beta1/operations). Poll - * the `Operation` to track the provisioning process by calling GetOperation - * until [`done`](../../v1beta1/operations#Operation.FIELDS.done) is `true`. - * When `done` is `true`, the `Operation` has either succeeded or failed. If the - * `Operation` succeeded, its - * [`response`](../../v1beta1/operations#Operation.FIELDS.response) is set to an - * AnalyticsDetails; if the `Operation` failed, its - * [`error`](../../v1beta1/operations#Operation.FIELDS.error) is set to a - * google.rpc.Status. - * - * To call `AddGoogleAnalytics`, a member must be an Owner for the existing - * `FirebaseProject` and have the [`Edit` - * permission](https://support.google.com/analytics/answer/2884495) for the - * Google Analytics account. - * - * If a `FirebaseProject` already has Google Analytics enabled, and you call - * `AddGoogleAnalytics` using an `analyticsPropertyId` that's different from the - * currently associated property, then the call will fail. Analytics may have - * already been enabled in the Firebase console or by specifying `timeZone` and - * `regionCode` in the call to - * [`AddFirebase`](../../v1beta1/projects/addFirebase). - * (projects.addGoogleAnalytics) - * - * @param string $parent The parent `FirebaseProject` to link to an existing - * Google Analytics account, in the format: projects/projectId - * @param Google_Service_FirebaseManagement_AddGoogleAnalyticsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_FirebaseManagement_Operation - */ - public function addGoogleAnalytics($parent, Google_Service_FirebaseManagement_AddGoogleAnalyticsRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('addGoogleAnalytics', array($params), "Google_Service_FirebaseManagement_Operation"); - } - /** - * Gets the FirebaseProject identified by the specified resource name. - * (projects.get) - * - * @param string $name The fully qualified resource name of the Project, in the - * format: projects/projectId - * @param array $optParams Optional parameters. - * @return Google_Service_FirebaseManagement_FirebaseProject - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_FirebaseManagement_FirebaseProject"); - } - /** - * Gets the configuration artifact used by servers to simplify initialization. - * - * Typically, this configuration is used with the Firebase Admin SDK [initialize - * App](https://firebase.google.com/docs/admin/setup#initialize_the_sdk) - * command. (projects.getAdminSdkConfig) - * - * @param string $name The fully qualified resource name of the Project, in the - * format: projects/projectId/adminSdkConfig - * @param array $optParams Optional parameters. - * @return Google_Service_FirebaseManagement_AdminSdkConfig - */ - public function getAdminSdkConfig($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('getAdminSdkConfig', array($params), "Google_Service_FirebaseManagement_AdminSdkConfig"); - } - /** - * Gets the Google Analytics details currently associated with a - * FirebaseProject. - * - * If the `FirebaseProject` is not yet linked to Google Analytics, then the - * response to `GetAnalyticsDetails` is NOT_FOUND. - * (projects.getAnalyticsDetails) - * - * @param string $name The fully qualified resource name, in the format: - * projects/projectId/analyticsDetails - * @param array $optParams Optional parameters. - * @return Google_Service_FirebaseManagement_AnalyticsDetails - */ - public function getAnalyticsDetails($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('getAnalyticsDetails', array($params), "Google_Service_FirebaseManagement_AnalyticsDetails"); - } - /** - * Lists each FirebaseProject accessible to the caller. - * - * The elements are returned in no particular order, but they will be a - * consistent view of the Projects when additional requests are made with a - * `pageToken`. - * - * This method is eventually consistent with Project mutations, which means - * newly provisioned Projects and recent modifications to existing Projects - * might not be reflected in the set of Projects. The list will include only - * ACTIVE Projects. - * - * Use GetFirebaseProject for consistent reads as well as for additional Project - * details. (projects.listProjects) - * - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Token returned from a previous call to - * `ListFirebaseProjects` indicating where in the set of Projects to resume - * listing. - * @opt_param int pageSize The maximum number of Projects to return in the - * response. - * - * The server may return fewer than this at its discretion. If no value is - * specified (or too large a value is specified), the server will impose its own - * limit. - * - * This value cannot be negative. - * @return Google_Service_FirebaseManagement_ListFirebaseProjectsResponse - */ - public function listProjects($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_FirebaseManagement_ListFirebaseProjectsResponse"); - } - /** - * Updates the attributes of the FirebaseProject identified by the specified - * resource name. - * - * All [query parameters](#query-parameters) are required. (projects.patch) - * - * @param string $name The fully qualified resource name of the Project, in the - * format: projects/projectId - * @param Google_Service_FirebaseManagement_FirebaseProject $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Specifies which fields to update. - * - * If this list is empty, then no state will be updated. Note that the fields - * `name`, `project_id`, and `project_number` are all immutable. - * @return Google_Service_FirebaseManagement_FirebaseProject - */ - public function patch($name, Google_Service_FirebaseManagement_FirebaseProject $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_FirebaseManagement_FirebaseProject"); - } - /** - * Unlinks the specified `FirebaseProject` from its Google Analytics account. - * - * This call removes the association of the specified `FirebaseProject` with its - * current Google Analytics property. However, this call does not delete the - * Google Analytics resources, such as the Google Analytics property or any data - * streams. - * - * These resources may be re-associated later to the `FirebaseProject` by - * calling [`AddGoogleAnalytics`](../../v1beta1/projects/addGoogleAnalytics) and - * specifying the same `analyticsPropertyId`. For Android Apps and iOS Apps, - * this call re-links data streams with their corresponding apps. However, for - * Web Apps, this call provisions a new data stream for each Web App. - * - * To call `RemoveAnalytics`, a member must be an Owner for the - * `FirebaseProject`. (projects.removeAnalytics) - * - * @param string $parent The parent `FirebaseProject` to unlink from its Google - * Analytics account, in the format: projects/projectId - * @param Google_Service_FirebaseManagement_RemoveAnalyticsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_FirebaseManagement_FirebaseEmpty - */ - public function removeAnalytics($parent, Google_Service_FirebaseManagement_RemoveAnalyticsRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('removeAnalytics', array($params), "Google_Service_FirebaseManagement_FirebaseEmpty"); - } - /** - * A convenience method that lists all available Apps for the specified - * FirebaseProject. - * - * Typically, interaction with an App should be done using the platform-specific - * service, but some tool use-cases require a summary of all known Apps (such as - * for App selector interfaces). (projects.searchApps) - * - * @param string $parent The parent Project for which to list Apps, in the - * format: projects/projectId - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Token returned from a previous call to - * `SearchFirebaseApps` indicating where in the set of Apps to resume listing. - * @opt_param int pageSize The maximum number of Apps to return in the response. - * - * The server may return fewer than this value at its discretion. If no value is - * specified (or too large a value is specified), then the server will impose - * its own limit. - * - * This value cannot be negative. - * @return Google_Service_FirebaseManagement_SearchFirebaseAppsResponse - */ - public function searchApps($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('searchApps', array($params), "Google_Service_FirebaseManagement_SearchFirebaseAppsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/Resource/ProjectsAndroidApps.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/Resource/ProjectsAndroidApps.php deleted file mode 100644 index 9b7ccb90..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/Resource/ProjectsAndroidApps.php +++ /dev/null @@ -1,127 +0,0 @@ - - * $firebaseService = new Google_Service_FirebaseManagement(...); - * $androidApps = $firebaseService->androidApps; - * - */ -class Google_Service_FirebaseManagement_Resource_ProjectsAndroidApps extends Google_Service_Resource -{ - /** - * Requests that a new AndroidApp be created. - * - * The result of this call is an `Operation` which can be used to track the - * provisioning process. The `Operation` is automatically deleted after - * completion, so there is no need to call `DeleteOperation`. - * (androidApps.create) - * - * @param string $parent The parent Project for which to list Apps, in the - * format: projects/projectId - * @param Google_Service_FirebaseManagement_AndroidApp $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_FirebaseManagement_Operation - */ - public function create($parent, Google_Service_FirebaseManagement_AndroidApp $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_FirebaseManagement_Operation"); - } - /** - * Gets the AndroidApp identified by the specified resource name. - * (androidApps.get) - * - * @param string $name The fully qualified resource name of the App, in the - * format: projects/projectId/androidApps/appId As an appId is a unique - * identifier, the Unique Resource from Sub-Collection access pattern may be - * used here, in the format: projects/-/androidApps/appId - * @param array $optParams Optional parameters. - * @return Google_Service_FirebaseManagement_AndroidApp - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_FirebaseManagement_AndroidApp"); - } - /** - * Gets the configuration artifact associated with the specified AndroidApp. - * (androidApps.getConfig) - * - * @param string $name The resource name of the App configuration to download, - * in the format: projects/projectId/androidApps/appId/config As an appId is a - * unique identifier, the Unique Resource from Sub-Collection access pattern may - * be used here, in the format: projects/-/androidApps/appId - * @param array $optParams Optional parameters. - * @return Google_Service_FirebaseManagement_AndroidAppConfig - */ - public function getConfig($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('getConfig', array($params), "Google_Service_FirebaseManagement_AndroidAppConfig"); - } - /** - * Lists each AndroidApp associated with the specified parent Project. - * - * The elements are returned in no particular order, but will be a consistent - * view of the Apps when additional requests are made with a `pageToken`. - * (androidApps.listProjectsAndroidApps) - * - * @param string $parent The parent Project for which to list Apps, in the - * format: projects/projectId - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Token returned from a previous call to - * `ListAndroidApps` indicating where in the set of Apps to resume listing. - * @opt_param int pageSize The maximum number of Apps to return in the response. - * - * The server may return fewer than this at its discretion. If no value is - * specified (or too large a value is specified), then the server will impose - * its own limit. - * @return Google_Service_FirebaseManagement_ListAndroidAppsResponse - */ - public function listProjectsAndroidApps($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_FirebaseManagement_ListAndroidAppsResponse"); - } - /** - * Updates the attributes of the AndroidApp identified by the specified resource - * name. (androidApps.patch) - * - * @param string $name The fully qualified resource name of the App, in the - * format: projects/projectId/androidApps/appId - * @param Google_Service_FirebaseManagement_AndroidApp $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Specifies which fields to update. Note that the - * fields `name`, `appId`, `projectId`, and `packageName` are all immutable. - * @return Google_Service_FirebaseManagement_AndroidApp - */ - public function patch($name, Google_Service_FirebaseManagement_AndroidApp $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_FirebaseManagement_AndroidApp"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/Resource/ProjectsAndroidAppsSha.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/Resource/ProjectsAndroidAppsSha.php deleted file mode 100644 index c6f6bfcd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/Resource/ProjectsAndroidAppsSha.php +++ /dev/null @@ -1,79 +0,0 @@ - - * $firebaseService = new Google_Service_FirebaseManagement(...); - * $sha = $firebaseService->sha; - * - */ -class Google_Service_FirebaseManagement_Resource_ProjectsAndroidAppsSha extends Google_Service_Resource -{ - /** - * Adds a SHA certificate to the specified AndroidApp. (sha.create) - * - * @param string $parent The parent App to which a SHA certificate will be - * added, in the format: projects/projectId/androidApps/appId As an appId is a - * unique identifier, the Unique Resource from Sub-Collection access pattern may - * be used here, in the format: projects/-/androidApps/appId - * @param Google_Service_FirebaseManagement_ShaCertificate $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_FirebaseManagement_ShaCertificate - */ - public function create($parent, Google_Service_FirebaseManagement_ShaCertificate $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_FirebaseManagement_ShaCertificate"); - } - /** - * Removes a SHA certificate from the specified AndroidApp. (sha.delete) - * - * @param string $name The fully qualified resource name of the `sha-key`, in - * the format: projects/projectId/androidApps/appId/sha/shaId You can obtain the - * full name from the response of - * [`ListShaCertificates`](../projects.androidApps.sha/list) or the original - * [`CreateShaCertificate`](../projects.androidApps.sha/create). - * @param array $optParams Optional parameters. - * @return Google_Service_FirebaseManagement_FirebaseEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_FirebaseManagement_FirebaseEmpty"); - } - /** - * Returns the list of SHA-1 and SHA-256 certificates for the specified - * AndroidApp. (sha.listProjectsAndroidAppsSha) - * - * @param string $parent The parent App for which to list SHA certificates, in - * the format: projects/projectId/androidApps/appId As an appId is a unique - * identifier, the Unique Resource from Sub-Collection access pattern may be - * used here, in the format: projects/-/androidApps/appId - * @param array $optParams Optional parameters. - * @return Google_Service_FirebaseManagement_ListShaCertificatesResponse - */ - public function listProjectsAndroidAppsSha($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_FirebaseManagement_ListShaCertificatesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/Resource/ProjectsAvailableLocations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/Resource/ProjectsAvailableLocations.php deleted file mode 100644 index 950505fc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/Resource/ProjectsAvailableLocations.php +++ /dev/null @@ -1,75 +0,0 @@ - - * $firebaseService = new Google_Service_FirebaseManagement(...); - * $availableLocations = $firebaseService->availableLocations; - * - */ -class Google_Service_FirebaseManagement_Resource_ProjectsAvailableLocations extends Google_Service_Resource -{ - /** - * Returns a list of valid Google Cloud Platform (GCP) resource locations for - * the specified Project (including a FirebaseProject). - * - * One of these locations can be selected as the Project's [_default_ GCP - * resource location](https://firebase.google.com/docs/projects/locations), - * which is the geographical location where project resources, such as Cloud - * Firestore, will be provisioned by default. However, if the default GCP - * resource location has already been set for the Project, then this setting - * cannot be changed. - * - * This call checks for any location restrictions for the specified Project and, - * thus, might return a subset of all possible GCP resource locations. To list - * all GCP resource locations (regardless of any restrictions), call the - * endpoint without specifying a `projectId` (that is, - * `/v1beta1/{parent=projects/-}/listAvailableLocations`). - * - * To call `ListAvailableLocations` with a specified project, a member must be - * at minimum a Viewer of the project. Calls without a specified project do not - * require any specific project permissions. - * (availableLocations.listProjectsAvailableLocations) - * - * @param string $parent The Project for which to list GCP resource locations, - * in the format: projects/projectId If no project is specified (that is, - * `projects/-`), the returned list does not take into account org-specific or - * project-specific location restrictions. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Token returned from a previous call to - * `ListAvailableLocations` indicating where in the list of locations to resume - * listing. - * @opt_param int pageSize The maximum number of locations to return in the - * response. - * - * The server may return fewer than this value at its discretion. If no value is - * specified (or too large a value is specified), then the server will impose - * its own limit. - * - * This value cannot be negative. - * @return Google_Service_FirebaseManagement_ListAvailableLocationsResponse - */ - public function listProjectsAvailableLocations($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_FirebaseManagement_ListAvailableLocationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/Resource/ProjectsDefaultLocation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/Resource/ProjectsDefaultLocation.php deleted file mode 100644 index a3af22ff..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/Resource/ProjectsDefaultLocation.php +++ /dev/null @@ -1,77 +0,0 @@ - - * $firebaseService = new Google_Service_FirebaseManagement(...); - * $defaultLocation = $firebaseService->defaultLocation; - * - */ -class Google_Service_FirebaseManagement_Resource_ProjectsDefaultLocation extends Google_Service_Resource -{ - /** - * Sets the default Google Cloud Platform (GCP) resource location for the - * specified FirebaseProject. - * - * This method creates an App Engine application with a [default Cloud Storage b - * ucket](https://cloud.google.com/appengine/docs/standard/python/googlecloudsto - * rageclient/setting-up-cloud-storage#activating_a_cloud_storage_bucket), - * located in the specified - * [`location_id`](#body.request_body.FIELDS.location_id). This location must be - * one of the available [GCP resource - * locations](https://firebase.google.com/docs/projects/locations). After the - * default GCP resource location is finalized, or if it was already set, it - * cannot be changed. The default GCP resource location for the specified - * FirebaseProject might already be set because either the GCP `Project` already - * has an App Engine application or `FinalizeDefaultLocation` was previously - * called with a specified `location_id`. Any new calls to - * `FinalizeDefaultLocation` with a different specified `location_id` will - * return a 409 error. - * - * The result of this call is an [`Operation`](../../v1beta1/operations), which - * can be used to track the provisioning process. The - * [`response`](../../v1beta1/operations#Operation.FIELDS.response) type of the - * `Operation` is google.protobuf.Empty. - * - * The `Operation` can be polled by its `name` using GetOperation until `done` - * is true. When `done` is true, the `Operation` has either succeeded or failed. - * If the `Operation` has succeeded, its - * [`response`](../../v1beta1/operations#Operation.FIELDS.response) will be set - * to a google.protobuf.Empty; if the `Operation` has failed, its `error` will - * be set to a google.rpc.Status. The `Operation` is automatically deleted after - * completion, so there is no need to call DeleteOperation. - * - * All fields listed in the [request body](#request-body) are required. - * - * To call `FinalizeDefaultLocation`, a member must be an Owner of the project. - * (defaultLocation.finalize) - * - * @param string $parent The resource name of the Project for which the default - * GCP resource location will be set, in the format: projects/projectId - * @param Google_Service_FirebaseManagement_FinalizeDefaultLocationRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_FirebaseManagement_Operation - */ - public function finalize($parent, Google_Service_FirebaseManagement_FinalizeDefaultLocationRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('finalize', array($params), "Google_Service_FirebaseManagement_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/Resource/ProjectsIosApps.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/Resource/ProjectsIosApps.php deleted file mode 100644 index fbb9877f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/Resource/ProjectsIosApps.php +++ /dev/null @@ -1,125 +0,0 @@ - - * $firebaseService = new Google_Service_FirebaseManagement(...); - * $iosApps = $firebaseService->iosApps; - * - */ -class Google_Service_FirebaseManagement_Resource_ProjectsIosApps extends Google_Service_Resource -{ - /** - * Requests that a new IosApp be created. - * - * The result of this call is an `Operation` which can be used to track the - * provisioning process. The `Operation` is automatically deleted after - * completion, so there is no need to call `DeleteOperation`. (iosApps.create) - * - * @param string $parent The parent Project for which to list Apps, in the - * format: projects/projectId - * @param Google_Service_FirebaseManagement_IosApp $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_FirebaseManagement_Operation - */ - public function create($parent, Google_Service_FirebaseManagement_IosApp $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_FirebaseManagement_Operation"); - } - /** - * Gets the IosApp identified by the specified resource name. (iosApps.get) - * - * @param string $name The fully qualified resource name of the App, in the - * format: projects/projectId/iosApps/appId As an appId is a unique identifier, - * the Unique Resource from Sub-Collection access pattern may be used here, in - * the format: projects/-/iosApps/appId - * @param array $optParams Optional parameters. - * @return Google_Service_FirebaseManagement_IosApp - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_FirebaseManagement_IosApp"); - } - /** - * Gets the configuration artifact associated with the specified IosApp. - * (iosApps.getConfig) - * - * @param string $name The resource name of the App configuration to download, - * in the format: projects/projectId/iosApps/appId/config As an appId is a - * unique identifier, the Unique Resource from Sub-Collection access pattern may - * be used here, in the format: projects/-/iosApps/appId - * @param array $optParams Optional parameters. - * @return Google_Service_FirebaseManagement_IosAppConfig - */ - public function getConfig($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('getConfig', array($params), "Google_Service_FirebaseManagement_IosAppConfig"); - } - /** - * Lists each IosApp associated with the specified parent Project. - * - * The elements are returned in no particular order, but will be a consistent - * view of the Apps when additional requests are made with a `pageToken`. - * (iosApps.listProjectsIosApps) - * - * @param string $parent The parent Project for which to list Apps, in the - * format: projects/projectId - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Token returned from a previous call to - * `ListIosApps` indicating where in the set of Apps to resume listing. - * @opt_param int pageSize The maximum number of Apps to return in the response. - * - * The server may return fewer than this at its discretion. If no value is - * specified (or too large a value is specified), the server will impose its own - * limit. - * @return Google_Service_FirebaseManagement_ListIosAppsResponse - */ - public function listProjectsIosApps($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_FirebaseManagement_ListIosAppsResponse"); - } - /** - * Updates the attributes of the IosApp identified by the specified resource - * name. (iosApps.patch) - * - * @param string $name The fully qualified resource name of the App, in the - * format: projects/projectId/iosApps/appId - * @param Google_Service_FirebaseManagement_IosApp $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Specifies which fields to update. Note that the - * fields `name`, `appId`, `projectId`, and `bundleId` are all immutable. - * @return Google_Service_FirebaseManagement_IosApp - */ - public function patch($name, Google_Service_FirebaseManagement_IosApp $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_FirebaseManagement_IosApp"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/Resource/ProjectsWebApps.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/Resource/ProjectsWebApps.php deleted file mode 100644 index a1bbb2b1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/Resource/ProjectsWebApps.php +++ /dev/null @@ -1,125 +0,0 @@ - - * $firebaseService = new Google_Service_FirebaseManagement(...); - * $webApps = $firebaseService->webApps; - * - */ -class Google_Service_FirebaseManagement_Resource_ProjectsWebApps extends Google_Service_Resource -{ - /** - * Requests that a new WebApp be created. - * - * The result of this call is an `Operation` which can be used to track the - * provisioning process. The `Operation` is automatically deleted after - * completion, so there is no need to call `DeleteOperation`. (webApps.create) - * - * @param string $parent The parent Project for which to list Apps, in the - * format: projects/projectId - * @param Google_Service_FirebaseManagement_WebApp $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_FirebaseManagement_Operation - */ - public function create($parent, Google_Service_FirebaseManagement_WebApp $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_FirebaseManagement_Operation"); - } - /** - * Gets the WebApp identified by the specified resource name. (webApps.get) - * - * @param string $name The fully qualified resource name of the App, in the - * format: projects/projectId/webApps/appId As an appId is a unique identifier, - * the Unique Resource from Sub-Collection access pattern may be used here, in - * the format: projects/-/webApps/appId - * @param array $optParams Optional parameters. - * @return Google_Service_FirebaseManagement_WebApp - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_FirebaseManagement_WebApp"); - } - /** - * Gets the configuration artifact associated with the specified WebApp. - * (webApps.getConfig) - * - * @param string $name The resource name of the App configuration to download, - * in the format: projects/projectId/webApps/appId/config As an appId is a - * unique identifier, the Unique Resource from Sub-Collection access pattern may - * be used here, in the format: projects/-/webApps/appId - * @param array $optParams Optional parameters. - * @return Google_Service_FirebaseManagement_WebAppConfig - */ - public function getConfig($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('getConfig', array($params), "Google_Service_FirebaseManagement_WebAppConfig"); - } - /** - * Lists each WebApp associated with the specified parent Project. - * - * The elements are returned in no particular order, but will be a consistent - * view of the Apps when additional requests are made with a `pageToken`. - * (webApps.listProjectsWebApps) - * - * @param string $parent The parent Project for which to list Apps, in the - * format: projects/projectId - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Token returned from a previous call to - * `ListWebApps` indicating where in the set of Apps to resume listing. - * @opt_param int pageSize The maximum number of Apps to return in the response. - * - * The server may return fewer than this value at its discretion. If no value is - * specified (or too large a value is specified), then the server will impose - * its own limit. - * @return Google_Service_FirebaseManagement_ListWebAppsResponse - */ - public function listProjectsWebApps($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_FirebaseManagement_ListWebAppsResponse"); - } - /** - * Updates the attributes of the WebApp identified by the specified resource - * name. (webApps.patch) - * - * @param string $name The fully qualified resource name of the App, for - * example: projects/projectId/webApps/appId - * @param Google_Service_FirebaseManagement_WebApp $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Specifies which fields to update. Note that the - * fields `name`, `appId`, and `projectId` are all immutable. - * @return Google_Service_FirebaseManagement_WebApp - */ - public function patch($name, Google_Service_FirebaseManagement_WebApp $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_FirebaseManagement_WebApp"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/SearchFirebaseAppsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/SearchFirebaseAppsResponse.php deleted file mode 100644 index 27c9abc9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/SearchFirebaseAppsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -apps = $apps; - } - /** - * @return Google_Service_FirebaseManagement_FirebaseAppInfo - */ - public function getApps() - { - return $this->apps; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/ShaCertificate.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/ShaCertificate.php deleted file mode 100644 index 9c04dffd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/ShaCertificate.php +++ /dev/null @@ -1,48 +0,0 @@ -certType = $certType; - } - public function getCertType() - { - return $this->certType; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setShaHash($shaHash) - { - $this->shaHash = $shaHash; - } - public function getShaHash() - { - return $this->shaHash; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/Status.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/Status.php deleted file mode 100644 index 34699a84..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/Status.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/StatusProto.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/StatusProto.php deleted file mode 100644 index 83936c19..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/StatusProto.php +++ /dev/null @@ -1,89 +0,0 @@ -canonicalCode = $canonicalCode; - } - public function getCanonicalCode() - { - return $this->canonicalCode; - } - public function setCode($code) - { - $this->code = $code; - } - public function getCode() - { - return $this->code; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } - /** - * @param Google_Service_FirebaseManagement_MessageSet - */ - public function setMessageSet(Google_Service_FirebaseManagement_MessageSet $messageSet) - { - $this->messageSet = $messageSet; - } - /** - * @return Google_Service_FirebaseManagement_MessageSet - */ - public function getMessageSet() - { - return $this->messageSet; - } - /** - * @param Google_Service_FirebaseManagement_TypedMessage - */ - public function setPayload(Google_Service_FirebaseManagement_TypedMessage $payload) - { - $this->payload = $payload; - } - /** - * @return Google_Service_FirebaseManagement_TypedMessage - */ - public function getPayload() - { - return $this->payload; - } - public function setSpace($space) - { - $this->space = $space; - } - public function getSpace() - { - return $this->space; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/StreamMapping.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/StreamMapping.php deleted file mode 100644 index c127412a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/StreamMapping.php +++ /dev/null @@ -1,48 +0,0 @@ -app = $app; - } - public function getApp() - { - return $this->app; - } - public function setMeasurementId($measurementId) - { - $this->measurementId = $measurementId; - } - public function getMeasurementId() - { - return $this->measurementId; - } - public function setStreamId($streamId) - { - $this->streamId = $streamId; - } - public function getStreamId() - { - return $this->streamId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/TypedMessage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/TypedMessage.php deleted file mode 100644 index 67691bc5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/TypedMessage.php +++ /dev/null @@ -1,39 +0,0 @@ -message = $message; - } - public function getMessage() - { - return $this->message; - } - public function setTypeId($typeId) - { - $this->typeId = $typeId; - } - public function getTypeId() - { - return $this->typeId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/WebApp.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/WebApp.php deleted file mode 100644 index da5c1b39..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/WebApp.php +++ /dev/null @@ -1,67 +0,0 @@ -appId = $appId; - } - public function getAppId() - { - return $this->appId; - } - public function setAppUrls($appUrls) - { - $this->appUrls = $appUrls; - } - public function getAppUrls() - { - return $this->appUrls; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/WebAppConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/WebAppConfig.php deleted file mode 100644 index ab94a5fd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseManagement/WebAppConfig.php +++ /dev/null @@ -1,102 +0,0 @@ -apiKey = $apiKey; - } - public function getApiKey() - { - return $this->apiKey; - } - public function setAppId($appId) - { - $this->appId = $appId; - } - public function getAppId() - { - return $this->appId; - } - public function setAuthDomain($authDomain) - { - $this->authDomain = $authDomain; - } - public function getAuthDomain() - { - return $this->authDomain; - } - public function setDatabaseURL($databaseURL) - { - $this->databaseURL = $databaseURL; - } - public function getDatabaseURL() - { - return $this->databaseURL; - } - public function setLocationId($locationId) - { - $this->locationId = $locationId; - } - public function getLocationId() - { - return $this->locationId; - } - public function setMeasurementId($measurementId) - { - $this->measurementId = $measurementId; - } - public function getMeasurementId() - { - return $this->measurementId; - } - public function setMessagingSenderId($messagingSenderId) - { - $this->messagingSenderId = $messagingSenderId; - } - public function getMessagingSenderId() - { - return $this->messagingSenderId; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } - public function setStorageBucket($storageBucket) - { - $this->storageBucket = $storageBucket; - } - public function getStorageBucket() - { - return $this->storageBucket; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRemoteConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRemoteConfig.php deleted file mode 100644 index 5f611524..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRemoteConfig.php +++ /dev/null @@ -1,86 +0,0 @@ - - * Firebase Remote Config API allows the 3P clients to manage Remote Config - * conditions and parameters for Firebase applications.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_FirebaseRemoteConfig extends Google_Service -{ - - - public $projects; - - /** - * Constructs the internal representation of the FirebaseRemoteConfig service. - * - * @param Google_Client $client - */ - public function __construct(Google_Client $client) - { - parent::__construct($client); - $this->rootUrl = 'https://firebaseremoteconfig.googleapis.com/'; - $this->servicePath = ''; - $this->version = 'v1'; - $this->serviceName = 'firebaseremoteconfig'; - - $this->projects = new Google_Service_FirebaseRemoteConfig_Resource_Projects( - $this, - $this->serviceName, - 'projects', - array( - 'methods' => array( - 'getRemoteConfig' => array( - 'path' => 'v1/{+project}/remoteConfig', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'updateRemoteConfig' => array( - 'path' => 'v1/{+project}/remoteConfig', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'validateOnly' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRemoteConfig/RemoteConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRemoteConfig/RemoteConfig.php deleted file mode 100644 index 2899e205..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRemoteConfig/RemoteConfig.php +++ /dev/null @@ -1,54 +0,0 @@ -conditions = $conditions; - } - /** - * @return Google_Service_FirebaseRemoteConfig_RemoteConfigCondition - */ - public function getConditions() - { - return $this->conditions; - } - /** - * @param Google_Service_FirebaseRemoteConfig_RemoteConfigParameter - */ - public function setParameters($parameters) - { - $this->parameters = $parameters; - } - /** - * @return Google_Service_FirebaseRemoteConfig_RemoteConfigParameter - */ - public function getParameters() - { - return $this->parameters; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRemoteConfig/RemoteConfigCondition.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRemoteConfig/RemoteConfigCondition.php deleted file mode 100644 index 186c3d81..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRemoteConfig/RemoteConfigCondition.php +++ /dev/null @@ -1,57 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setExpression($expression) - { - $this->expression = $expression; - } - public function getExpression() - { - return $this->expression; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setTagColor($tagColor) - { - $this->tagColor = $tagColor; - } - public function getTagColor() - { - return $this->tagColor; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRemoteConfig/RemoteConfigParameter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRemoteConfig/RemoteConfigParameter.php deleted file mode 100644 index 520a1529..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRemoteConfig/RemoteConfigParameter.php +++ /dev/null @@ -1,62 +0,0 @@ -conditionalValues = $conditionalValues; - } - /** - * @return Google_Service_FirebaseRemoteConfig_RemoteConfigParameterValue - */ - public function getConditionalValues() - { - return $this->conditionalValues; - } - /** - * @param Google_Service_FirebaseRemoteConfig_RemoteConfigParameterValue - */ - public function setDefaultValue(Google_Service_FirebaseRemoteConfig_RemoteConfigParameterValue $defaultValue) - { - $this->defaultValue = $defaultValue; - } - /** - * @return Google_Service_FirebaseRemoteConfig_RemoteConfigParameterValue - */ - public function getDefaultValue() - { - return $this->defaultValue; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRemoteConfig/RemoteConfigParameterValue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRemoteConfig/RemoteConfigParameterValue.php deleted file mode 100644 index d2982d97..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRemoteConfig/RemoteConfigParameterValue.php +++ /dev/null @@ -1,39 +0,0 @@ -useInAppDefault = $useInAppDefault; - } - public function getUseInAppDefault() - { - return $this->useInAppDefault; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRemoteConfig/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRemoteConfig/Resource/Projects.php deleted file mode 100644 index f79d26bb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRemoteConfig/Resource/Projects.php +++ /dev/null @@ -1,81 +0,0 @@ - - * $firebaseremoteconfigService = new Google_Service_FirebaseRemoteConfig(...); - * $projects = $firebaseremoteconfigService->projects; - * - */ -class Google_Service_FirebaseRemoteConfig_Resource_Projects extends Google_Service_Resource -{ - /** - * Get the latest version Remote Configuration for a project. Returns the - * RemoteConfig as the payload, and also the eTag as a response header. - * (projects.getRemoteConfig) - * - * @param string $project The GMP project identifier. Required. See note at the - * beginning of this file regarding project ids. - * @param array $optParams Optional parameters. - * @return Google_Service_FirebaseRemoteConfig_RemoteConfig - */ - public function getRemoteConfig($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('getRemoteConfig', array($params), "Google_Service_FirebaseRemoteConfig_RemoteConfig"); - } - /** - * Update a RemoteConfig. We treat this as an always-existing resource (when it - * is not found in our data store, we treat it as version 0, a template with - * zero conditions and zero parameters). Hence there are no Create or Delete - * operations. Returns the updated template when successful (and the updated - * eTag as a response header), or an error if things go wrong. Possible error - * messages: * VALIDATION_ERROR (HTTP status 400) with additional details if the - * template being passed in can not be validated. * AUTHENTICATION_ERROR (HTTP - * status 401) if the request can not be authenticate (e.g. no access token, or - * invalid access token). * AUTHORIZATION_ERROR (HTTP status 403) if the request - * can not be authorized (e.g. the user has no access to the specified project - * id). * VERSION_MISMATCH (HTTP status 412) when trying to update when the - * expected eTag (passed in via the "If-match" header) is not specified, or is - * specified but does does not match the current eTag. * Internal error (HTTP - * status 500) for Database problems or other internal errors. - * (projects.updateRemoteConfig) - * - * @param string $project The GMP project identifier. Required. See note at the - * beginning of this file regarding project ids. - * @param Google_Service_FirebaseRemoteConfig_RemoteConfig $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool validateOnly Optional. Defaults to false (UpdateRemoteConfig - * call should update the backend if there are no validation/interal errors). - * May be set to true to indicate that, should no validation errors occur, the - * call should return a "200 OK" instead of performing the update. Note that - * other error messages (500 Internal Error, 412 Version Mismatch, etc) may - * still result after flipping to false, even if getting a "200 OK" when calling - * with true. - * @return Google_Service_FirebaseRemoteConfig_RemoteConfig - */ - public function updateRemoteConfig($project, Google_Service_FirebaseRemoteConfig_RemoteConfig $postBody, $optParams = array()) - { - $params = array('project' => $project, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updateRemoteConfig', array($params), "Google_Service_FirebaseRemoteConfig_RemoteConfig"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules.php deleted file mode 100644 index bdba1892..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules.php +++ /dev/null @@ -1,232 +0,0 @@ - - * Creates and manages rules that determine when a Firebase Rules-enabled - * service should permit a request.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_FirebaseRules extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** View and administer all your Firebase data and settings. */ - const FIREBASE = - "https://www.googleapis.com/auth/firebase"; - /** View all your Firebase data and settings. */ - const FIREBASE_READONLY = - "https://www.googleapis.com/auth/firebase.readonly"; - - public $projects; - public $projects_releases; - public $projects_rulesets; - - /** - * Constructs the internal representation of the FirebaseRules service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://firebaserules.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'firebaserules'; - - $this->projects = new Google_Service_FirebaseRules_Resource_Projects( - $this, - $this->serviceName, - 'projects', - array( - 'methods' => array( - 'test' => array( - 'path' => 'v1/{+name}:test', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_releases = new Google_Service_FirebaseRules_Resource_ProjectsReleases( - $this, - $this->serviceName, - 'releases', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+name}/releases', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getExecutable' => array( - 'path' => 'v1/{+name}:getExecutable', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'executableVersion' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'v1/{+name}/releases', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_rulesets = new Google_Service_FirebaseRules_Resource_ProjectsRulesets( - $this, - $this->serviceName, - 'rulesets', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+name}/rulesets', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+name}/rulesets', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/Arg.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/Arg.php deleted file mode 100644 index fd6cbe57..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/Arg.php +++ /dev/null @@ -1,46 +0,0 @@ -anyValue = $anyValue; - } - /** - * @return Google_Service_FirebaseRules_FirebaserulesEmpty - */ - public function getAnyValue() - { - return $this->anyValue; - } - public function setExactValue($exactValue) - { - $this->exactValue = $exactValue; - } - public function getExactValue() - { - return $this->exactValue; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/ExpressionReport.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/ExpressionReport.php deleted file mode 100644 index 7709fc73..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/ExpressionReport.php +++ /dev/null @@ -1,70 +0,0 @@ -children = $children; - } - /** - * @return Google_Service_FirebaseRules_ExpressionReport - */ - public function getChildren() - { - return $this->children; - } - /** - * @param Google_Service_FirebaseRules_SourcePosition - */ - public function setSourcePosition(Google_Service_FirebaseRules_SourcePosition $sourcePosition) - { - $this->sourcePosition = $sourcePosition; - } - /** - * @return Google_Service_FirebaseRules_SourcePosition - */ - public function getSourcePosition() - { - return $this->sourcePosition; - } - /** - * @param Google_Service_FirebaseRules_ValueCount - */ - public function setValues($values) - { - $this->values = $values; - } - /** - * @return Google_Service_FirebaseRules_ValueCount - */ - public function getValues() - { - return $this->values; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/FirebaserulesEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/FirebaserulesEmpty.php deleted file mode 100644 index 83f2353e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/FirebaserulesEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -content = $content; - } - public function getContent() - { - return $this->content; - } - public function setFingerprint($fingerprint) - { - $this->fingerprint = $fingerprint; - } - public function getFingerprint() - { - return $this->fingerprint; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/FunctionCall.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/FunctionCall.php deleted file mode 100644 index d7284aab..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/FunctionCall.php +++ /dev/null @@ -1,40 +0,0 @@ -args = $args; - } - public function getArgs() - { - return $this->args; - } - public function setFunction($function) - { - $this->function = $function; - } - public function getFunction() - { - return $this->function; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/FunctionMock.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/FunctionMock.php deleted file mode 100644 index f3011712..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/FunctionMock.php +++ /dev/null @@ -1,63 +0,0 @@ -args = $args; - } - /** - * @return Google_Service_FirebaseRules_Arg - */ - public function getArgs() - { - return $this->args; - } - public function setFunction($function) - { - $this->function = $function; - } - public function getFunction() - { - return $this->function; - } - /** - * @param Google_Service_FirebaseRules_Result - */ - public function setResult(Google_Service_FirebaseRules_Result $result) - { - $this->result = $result; - } - /** - * @return Google_Service_FirebaseRules_Result - */ - public function getResult() - { - return $this->result; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/GetReleaseExecutableResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/GetReleaseExecutableResponse.php deleted file mode 100644 index c863a999..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/GetReleaseExecutableResponse.php +++ /dev/null @@ -1,75 +0,0 @@ -executable = $executable; - } - public function getExecutable() - { - return $this->executable; - } - public function setExecutableVersion($executableVersion) - { - $this->executableVersion = $executableVersion; - } - public function getExecutableVersion() - { - return $this->executableVersion; - } - public function setLanguage($language) - { - $this->language = $language; - } - public function getLanguage() - { - return $this->language; - } - public function setRulesetName($rulesetName) - { - $this->rulesetName = $rulesetName; - } - public function getRulesetName() - { - return $this->rulesetName; - } - public function setSyncTime($syncTime) - { - $this->syncTime = $syncTime; - } - public function getSyncTime() - { - return $this->syncTime; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/Issue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/Issue.php deleted file mode 100644 index f9816bbe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/Issue.php +++ /dev/null @@ -1,55 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setSeverity($severity) - { - $this->severity = $severity; - } - public function getSeverity() - { - return $this->severity; - } - /** - * @param Google_Service_FirebaseRules_SourcePosition - */ - public function setSourcePosition(Google_Service_FirebaseRules_SourcePosition $sourcePosition) - { - $this->sourcePosition = $sourcePosition; - } - /** - * @return Google_Service_FirebaseRules_SourcePosition - */ - public function getSourcePosition() - { - return $this->sourcePosition; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/ListReleasesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/ListReleasesResponse.php deleted file mode 100644 index a701733f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/ListReleasesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_FirebaseRules_Release - */ - public function setReleases($releases) - { - $this->releases = $releases; - } - /** - * @return Google_Service_FirebaseRules_Release - */ - public function getReleases() - { - return $this->releases; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/ListRulesetsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/ListRulesetsResponse.php deleted file mode 100644 index 776f4e78..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/ListRulesetsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_FirebaseRules_Ruleset - */ - public function setRulesets($rulesets) - { - $this->rulesets = $rulesets; - } - /** - * @return Google_Service_FirebaseRules_Ruleset - */ - public function getRulesets() - { - return $this->rulesets; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/Metadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/Metadata.php deleted file mode 100644 index e8c98266..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/Metadata.php +++ /dev/null @@ -1,31 +0,0 @@ -services = $services; - } - public function getServices() - { - return $this->services; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/Release.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/Release.php deleted file mode 100644 index 3a186795..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/Release.php +++ /dev/null @@ -1,57 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setRulesetName($rulesetName) - { - $this->rulesetName = $rulesetName; - } - public function getRulesetName() - { - return $this->rulesetName; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/Resource/Projects.php deleted file mode 100644 index a92a80cf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/Resource/Projects.php +++ /dev/null @@ -1,66 +0,0 @@ - - * $firebaserulesService = new Google_Service_FirebaseRules(...); - * $projects = $firebaserulesService->projects; - * - */ -class Google_Service_FirebaseRules_Resource_Projects extends Google_Service_Resource -{ - /** - * Test `Source` for syntactic and semantic correctness. Issues present, if any, - * will be returned to the caller with a description, severity, and source - * location. - * - * The test method may be executed with `Source` or a `Ruleset` name. Passing - * `Source` is useful for unit testing new rules. Passing a `Ruleset` name is - * useful for regression testing an existing rule. - * - * The following is an example of `Source` that permits users to upload images - * to a bucket bearing their user id and matching the correct metadata: - * - * _*Example*_ - * - * // Users are allowed to subscribe and unsubscribe to the blog. - * service firebase.storage { match /users/{userId}/images/{imageName} { - * allow write: if userId == request.auth.uid && - * (imageName.matches('*.png$') || imageName.matches('*.jpg$')) - * && resource.mimeType.matches('^image/') } } (projects.test) - * - * @param string $name Tests may either provide `source` or a `Ruleset` resource - * name. - * - * For tests against `source`, the resource name must refer to the project: - * Format: `projects/{project_id}` - * - * For tests against a `Ruleset`, this must be the `Ruleset` resource name: - * Format: `projects/{project_id}/rulesets/{ruleset_id}` - * @param Google_Service_FirebaseRules_TestRulesetRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_FirebaseRules_TestRulesetResponse - */ - public function test($name, Google_Service_FirebaseRules_TestRulesetRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('test', array($params), "Google_Service_FirebaseRules_TestRulesetResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/Resource/ProjectsReleases.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/Resource/ProjectsReleases.php deleted file mode 100644 index 69986ff9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/Resource/ProjectsReleases.php +++ /dev/null @@ -1,184 +0,0 @@ - - * $firebaserulesService = new Google_Service_FirebaseRules(...); - * $releases = $firebaserulesService->releases; - * - */ -class Google_Service_FirebaseRules_Resource_ProjectsReleases extends Google_Service_Resource -{ - /** - * Create a `Release`. - * - * Release names should reflect the developer's deployment practices. For - * example, the release name may include the environment name, application name, - * application version, or any other name meaningful to the developer. Once a - * `Release` refers to a `Ruleset`, the rules can be enforced by Firebase Rules- - * enabled services. - * - * More than one `Release` may be 'live' concurrently. Consider the following - * three `Release` names for `projects/foo` and the `Ruleset` to which they - * refer. - * - * Release Name | Ruleset Name - * --------------------------------|------------- projects/foo/releases/prod - * | projects/foo/rulesets/uuid123 projects/foo/releases/prod/beta | - * projects/foo/rulesets/uuid123 projects/foo/releases/prod/v23 | - * projects/foo/rulesets/uuid456 - * - * The table reflects the `Ruleset` rollout in progress. The `prod` and - * `prod/beta` releases refer to the same `Ruleset`. However, `prod/v23` refers - * to a new `Ruleset`. The `Ruleset` reference for a `Release` may be updated - * using the UpdateRelease method. (releases.create) - * - * @param string $name Resource name for the project which owns this `Release`. - * - * Format: `projects/{project_id}` - * @param Google_Service_FirebaseRules_Release $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_FirebaseRules_Release - */ - public function create($name, Google_Service_FirebaseRules_Release $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_FirebaseRules_Release"); - } - /** - * Delete a `Release` by resource name. (releases.delete) - * - * @param string $name Resource name for the `Release` to delete. - * - * Format: `projects/{project_id}/releases/{release_id}` - * @param array $optParams Optional parameters. - * @return Google_Service_FirebaseRules_FirebaserulesEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_FirebaseRules_FirebaserulesEmpty"); - } - /** - * Get a `Release` by name. (releases.get) - * - * @param string $name Resource name of the `Release`. - * - * Format: `projects/{project_id}/releases/{release_id}` - * @param array $optParams Optional parameters. - * @return Google_Service_FirebaseRules_Release - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_FirebaseRules_Release"); - } - /** - * Get the `Release` executable to use when enforcing rules. - * (releases.getExecutable) - * - * @param string $name Resource name of the `Release`. - * - * Format: `projects/{project_id}/releases/{release_id}` - * @param array $optParams Optional parameters. - * - * @opt_param string executableVersion The requested runtime executable version. - * Defaults to FIREBASE_RULES_EXECUTABLE_V1. - * @return Google_Service_FirebaseRules_GetReleaseExecutableResponse - */ - public function getExecutable($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('getExecutable', array($params), "Google_Service_FirebaseRules_GetReleaseExecutableResponse"); - } - /** - * List the `Release` values for a project. This list may optionally be filtered - * by `Release` name, `Ruleset` name, `TestSuite` name, or any combination - * thereof. (releases.listProjectsReleases) - * - * @param string $name Resource name for the project. - * - * Format: `projects/{project_id}` - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Next page token for the next batch of `Release` - * instances. - * @opt_param int pageSize Page size to load. Maximum of 100. Defaults to 10. - * Note: `page_size` is just a hint and the service may choose to load fewer - * than `page_size` results due to the size of the output. To traverse all of - * the releases, the caller should iterate until the `page_token` on the - * response is empty. - * @opt_param string filter `Release` filter. The list method supports filters - * with restrictions on the `Release.name`, `Release.ruleset_name`, and - * `Release.test_suite_name`. - * - * Example 1: A filter of 'name=prod*' might return `Release`s with names within - * 'projects/foo' prefixed with 'prod': - * - * Name | Ruleset Name - * ------------------------------|------------- projects/foo/releases/prod | - * projects/foo/rulesets/uuid1234 projects/foo/releases/prod/v1 | - * projects/foo/rulesets/uuid1234 projects/foo/releases/prod/v2 | - * projects/foo/rulesets/uuid8888 - * - * Example 2: A filter of `name=prod* ruleset_name=uuid1234` would return only - * `Release` instances for 'projects/foo' with names prefixed with 'prod' - * referring to the same `Ruleset` name of 'uuid1234': - * - * Name | Ruleset Name - * ------------------------------|------------- projects/foo/releases/prod | - * projects/foo/rulesets/1234 projects/foo/releases/prod/v1 | - * projects/foo/rulesets/1234 - * - * In the examples, the filter parameters refer to the search filters are - * relative to the project. Fully qualified prefixed may also be used. e.g. - * `test_suite_name=projects/foo/testsuites/uuid1` - * @return Google_Service_FirebaseRules_ListReleasesResponse - */ - public function listProjectsReleases($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_FirebaseRules_ListReleasesResponse"); - } - /** - * Update a `Release` via PATCH. - * - * Only updates to the `ruleset_name` and `test_suite_name` fields will be - * honored. `Release` rename is not supported. To create a `Release` use the - * CreateRelease method. (releases.patch) - * - * @param string $name Resource name for the project which owns this `Release`. - * - * Format: `projects/{project_id}` - * @param Google_Service_FirebaseRules_UpdateReleaseRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_FirebaseRules_Release - */ - public function patch($name, Google_Service_FirebaseRules_UpdateReleaseRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_FirebaseRules_Release"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/Resource/ProjectsRulesets.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/Resource/ProjectsRulesets.php deleted file mode 100644 index 4cda451a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/Resource/ProjectsRulesets.php +++ /dev/null @@ -1,115 +0,0 @@ - - * $firebaserulesService = new Google_Service_FirebaseRules(...); - * $rulesets = $firebaserulesService->rulesets; - * - */ -class Google_Service_FirebaseRules_Resource_ProjectsRulesets extends Google_Service_Resource -{ - /** - * Create a `Ruleset` from `Source`. - * - * The `Ruleset` is given a unique generated name which is returned to the - * caller. `Source` containing syntactic or semantics errors will result in an - * error response indicating the first error encountered. For a detailed view of - * `Source` issues, use TestRuleset. (rulesets.create) - * - * @param string $name Resource name for Project which owns this `Ruleset`. - * - * Format: `projects/{project_id}` - * @param Google_Service_FirebaseRules_Ruleset $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_FirebaseRules_Ruleset - */ - public function create($name, Google_Service_FirebaseRules_Ruleset $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_FirebaseRules_Ruleset"); - } - /** - * Delete a `Ruleset` by resource name. - * - * If the `Ruleset` is referenced by a `Release` the operation will fail. - * (rulesets.delete) - * - * @param string $name Resource name for the ruleset to delete. - * - * Format: `projects/{project_id}/rulesets/{ruleset_id}` - * @param array $optParams Optional parameters. - * @return Google_Service_FirebaseRules_FirebaserulesEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_FirebaseRules_FirebaserulesEmpty"); - } - /** - * Get a `Ruleset` by name including the full `Source` contents. (rulesets.get) - * - * @param string $name Resource name for the ruleset to get. - * - * Format: `projects/{project_id}/rulesets/{ruleset_id}` - * @param array $optParams Optional parameters. - * @return Google_Service_FirebaseRules_Ruleset - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_FirebaseRules_Ruleset"); - } - /** - * List `Ruleset` metadata only and optionally filter the results by `Ruleset` - * name. - * - * The full `Source` contents of a `Ruleset` may be retrieved with GetRuleset. - * (rulesets.listProjectsRulesets) - * - * @param string $name Resource name for the project. - * - * Format: `projects/{project_id}` - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Next page token for loading the next batch of - * `Ruleset` instances. - * @opt_param int pageSize Page size to load. Maximum of 100. Defaults to 10. - * Note: `page_size` is just a hint and the service may choose to load less than - * `page_size` due to the size of the output. To traverse all of the releases, - * caller should iterate until the `page_token` is empty. - * @opt_param string filter `Ruleset` filter. The list method supports filters - * with restrictions on `Ruleset.name`. - * - * Filters on `Ruleset.create_time` should use the `date` function which parses - * strings that conform to the RFC 3339 date/time specifications. - * - * Example: `create_time > date("2017-01-01T00:00:00Z") AND name=UUID-*` - * @return Google_Service_FirebaseRules_ListRulesetsResponse - */ - public function listProjectsRulesets($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_FirebaseRules_ListRulesetsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/Result.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/Result.php deleted file mode 100644 index a194cef2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/Result.php +++ /dev/null @@ -1,46 +0,0 @@ -undefined = $undefined; - } - /** - * @return Google_Service_FirebaseRules_FirebaserulesEmpty - */ - public function getUndefined() - { - return $this->undefined; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/Ruleset.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/Ruleset.php deleted file mode 100644 index d028e070..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/Ruleset.php +++ /dev/null @@ -1,71 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - /** - * @param Google_Service_FirebaseRules_Metadata - */ - public function setMetadata(Google_Service_FirebaseRules_Metadata $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_FirebaseRules_Metadata - */ - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_FirebaseRules_Source - */ - public function setSource(Google_Service_FirebaseRules_Source $source) - { - $this->source = $source; - } - /** - * @return Google_Service_FirebaseRules_Source - */ - public function getSource() - { - return $this->source; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/Source.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/Source.php deleted file mode 100644 index e0c41cfb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/Source.php +++ /dev/null @@ -1,38 +0,0 @@ -files = $files; - } - /** - * @return Google_Service_FirebaseRules_FirebaserulesFile - */ - public function getFiles() - { - return $this->files; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/SourcePosition.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/SourcePosition.php deleted file mode 100644 index 30c73947..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/SourcePosition.php +++ /dev/null @@ -1,66 +0,0 @@ -column = $column; - } - public function getColumn() - { - return $this->column; - } - public function setCurrentOffset($currentOffset) - { - $this->currentOffset = $currentOffset; - } - public function getCurrentOffset() - { - return $this->currentOffset; - } - public function setEndOffset($endOffset) - { - $this->endOffset = $endOffset; - } - public function getEndOffset() - { - return $this->endOffset; - } - public function setFileName($fileName) - { - $this->fileName = $fileName; - } - public function getFileName() - { - return $this->fileName; - } - public function setLine($line) - { - $this->line = $line; - } - public function getLine() - { - return $this->line; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/TestCase.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/TestCase.php deleted file mode 100644 index 3e382cde..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/TestCase.php +++ /dev/null @@ -1,83 +0,0 @@ -expectation = $expectation; - } - public function getExpectation() - { - return $this->expectation; - } - public function setExpressionReportLevel($expressionReportLevel) - { - $this->expressionReportLevel = $expressionReportLevel; - } - public function getExpressionReportLevel() - { - return $this->expressionReportLevel; - } - /** - * @param Google_Service_FirebaseRules_FunctionMock - */ - public function setFunctionMocks($functionMocks) - { - $this->functionMocks = $functionMocks; - } - /** - * @return Google_Service_FirebaseRules_FunctionMock - */ - public function getFunctionMocks() - { - return $this->functionMocks; - } - public function setPathEncoding($pathEncoding) - { - $this->pathEncoding = $pathEncoding; - } - public function getPathEncoding() - { - return $this->pathEncoding; - } - public function setRequest($request) - { - $this->request = $request; - } - public function getRequest() - { - return $this->request; - } - public function setResource($resource) - { - $this->resource = $resource; - } - public function getResource() - { - return $this->resource; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/TestResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/TestResult.php deleted file mode 100644 index f60e67f9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/TestResult.php +++ /dev/null @@ -1,104 +0,0 @@ -debugMessages = $debugMessages; - } - public function getDebugMessages() - { - return $this->debugMessages; - } - /** - * @param Google_Service_FirebaseRules_SourcePosition - */ - public function setErrorPosition(Google_Service_FirebaseRules_SourcePosition $errorPosition) - { - $this->errorPosition = $errorPosition; - } - /** - * @return Google_Service_FirebaseRules_SourcePosition - */ - public function getErrorPosition() - { - return $this->errorPosition; - } - /** - * @param Google_Service_FirebaseRules_ExpressionReport - */ - public function setExpressionReports($expressionReports) - { - $this->expressionReports = $expressionReports; - } - /** - * @return Google_Service_FirebaseRules_ExpressionReport - */ - public function getExpressionReports() - { - return $this->expressionReports; - } - /** - * @param Google_Service_FirebaseRules_FunctionCall - */ - public function setFunctionCalls($functionCalls) - { - $this->functionCalls = $functionCalls; - } - /** - * @return Google_Service_FirebaseRules_FunctionCall - */ - public function getFunctionCalls() - { - return $this->functionCalls; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - /** - * @param Google_Service_FirebaseRules_VisitedExpression - */ - public function setVisitedExpressions($visitedExpressions) - { - $this->visitedExpressions = $visitedExpressions; - } - /** - * @return Google_Service_FirebaseRules_VisitedExpression - */ - public function getVisitedExpressions() - { - return $this->visitedExpressions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/TestRulesetRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/TestRulesetRequest.php deleted file mode 100644 index 797e7350..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/TestRulesetRequest.php +++ /dev/null @@ -1,53 +0,0 @@ -source = $source; - } - /** - * @return Google_Service_FirebaseRules_Source - */ - public function getSource() - { - return $this->source; - } - /** - * @param Google_Service_FirebaseRules_TestSuite - */ - public function setTestSuite(Google_Service_FirebaseRules_TestSuite $testSuite) - { - $this->testSuite = $testSuite; - } - /** - * @return Google_Service_FirebaseRules_TestSuite - */ - public function getTestSuite() - { - return $this->testSuite; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/TestRulesetResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/TestRulesetResponse.php deleted file mode 100644 index 37a76cbf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/TestRulesetResponse.php +++ /dev/null @@ -1,54 +0,0 @@ -issues = $issues; - } - /** - * @return Google_Service_FirebaseRules_Issue - */ - public function getIssues() - { - return $this->issues; - } - /** - * @param Google_Service_FirebaseRules_TestResult - */ - public function setTestResults($testResults) - { - $this->testResults = $testResults; - } - /** - * @return Google_Service_FirebaseRules_TestResult - */ - public function getTestResults() - { - return $this->testResults; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/TestSuite.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/TestSuite.php deleted file mode 100644 index b3d77365..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/TestSuite.php +++ /dev/null @@ -1,38 +0,0 @@ -testCases = $testCases; - } - /** - * @return Google_Service_FirebaseRules_TestCase - */ - public function getTestCases() - { - return $this->testCases; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/UpdateReleaseRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/UpdateReleaseRequest.php deleted file mode 100644 index 33ab3f5b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/UpdateReleaseRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -release = $release; - } - /** - * @return Google_Service_FirebaseRules_Release - */ - public function getRelease() - { - return $this->release; - } - public function setUpdateMask($updateMask) - { - $this->updateMask = $updateMask; - } - public function getUpdateMask() - { - return $this->updateMask; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/ValueCount.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/ValueCount.php deleted file mode 100644 index 7bbd9507..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/ValueCount.php +++ /dev/null @@ -1,39 +0,0 @@ -count = $count; - } - public function getCount() - { - return $this->count; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/VisitedExpression.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/VisitedExpression.php deleted file mode 100644 index e0f1af61..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRules/VisitedExpression.php +++ /dev/null @@ -1,46 +0,0 @@ -sourcePosition = $sourcePosition; - } - /** - * @return Google_Service_FirebaseRules_SourcePosition - */ - public function getSourcePosition() - { - return $this->sourcePosition; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRulesAPI.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRulesAPI.php deleted file mode 100644 index 8dbe1110..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRulesAPI.php +++ /dev/null @@ -1,212 +0,0 @@ - - * Creates and manages rules that determine when a Firebase Rules-enabled - * service should permit a request.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_FirebaseRulesAPI extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** View and administer all your Firebase data and settings. */ - const FIREBASE = - "https://www.googleapis.com/auth/firebase"; - /** View all your Firebase data and settings. */ - const FIREBASE_READONLY = - "https://www.googleapis.com/auth/firebase.readonly"; - - public $projects; - public $projects_releases; - public $projects_rulesets; - - /** - * Constructs the internal representation of the FirebaseRulesAPI service. - * - * @param Google_Client $client - */ - public function __construct(Google_Client $client) - { - parent::__construct($client); - $this->rootUrl = 'https://firebaserules.googleapis.com/'; - $this->servicePath = ''; - $this->version = 'v1'; - $this->serviceName = 'firebaserules'; - - $this->projects = new Google_Service_FirebaseRulesAPI_Resource_Projects( - $this, - $this->serviceName, - 'projects', - array( - 'methods' => array( - 'test' => array( - 'path' => 'v1/{+name}:test', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_releases = new Google_Service_FirebaseRulesAPI_Resource_ProjectsReleases( - $this, - $this->serviceName, - 'releases', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+name}/releases', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+name}/releases', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'update' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_rulesets = new Google_Service_FirebaseRulesAPI_Resource_ProjectsRulesets( - $this, - $this->serviceName, - 'rulesets', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+name}/rulesets', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+name}/rulesets', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRulesAPI/FirebaserulesEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRulesAPI/FirebaserulesEmpty.php deleted file mode 100644 index 6a6953ee..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRulesAPI/FirebaserulesEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -content = $content; - } - public function getContent() - { - return $this->content; - } - public function setFingerprint($fingerprint) - { - $this->fingerprint = $fingerprint; - } - public function getFingerprint() - { - return $this->fingerprint; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRulesAPI/Issue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRulesAPI/Issue.php deleted file mode 100644 index f8f5551d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRulesAPI/Issue.php +++ /dev/null @@ -1,49 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setSeverity($severity) - { - $this->severity = $severity; - } - public function getSeverity() - { - return $this->severity; - } - public function setSourcePosition(Google_Service_FirebaseRulesAPI_SourcePosition $sourcePosition) - { - $this->sourcePosition = $sourcePosition; - } - public function getSourcePosition() - { - return $this->sourcePosition; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRulesAPI/ListReleasesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRulesAPI/ListReleasesResponse.php deleted file mode 100644 index a275091f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRulesAPI/ListReleasesResponse.php +++ /dev/null @@ -1,41 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setReleases($releases) - { - $this->releases = $releases; - } - public function getReleases() - { - return $this->releases; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRulesAPI/ListRulesetsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRulesAPI/ListRulesetsResponse.php deleted file mode 100644 index 35ad9751..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRulesAPI/ListRulesetsResponse.php +++ /dev/null @@ -1,41 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setRulesets($rulesets) - { - $this->rulesets = $rulesets; - } - public function getRulesets() - { - return $this->rulesets; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRulesAPI/Release.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRulesAPI/Release.php deleted file mode 100644 index 20c9fbd1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRulesAPI/Release.php +++ /dev/null @@ -1,57 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setRulesetName($rulesetName) - { - $this->rulesetName = $rulesetName; - } - public function getRulesetName() - { - return $this->rulesetName; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRulesAPI/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRulesAPI/Resource/Projects.php deleted file mode 100644 index cb51c053..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRulesAPI/Resource/Projects.php +++ /dev/null @@ -1,62 +0,0 @@ - - * $firebaserulesService = new Google_Service_FirebaseRulesAPI(...); - * $projects = $firebaserulesService->projects; - * - */ -class Google_Service_FirebaseRulesAPI_Resource_Projects extends Google_Service_Resource -{ - /** - * Test `Source` for syntactic and semantic correctness. Issues present in the - * rules, if any, will be returned to the caller with a description, severity, - * and source location. - * - * The test method will typically be executed with a developer provided - * `Source`, but if regression testing is desired, this method may be executed - * against a `Ruleset` resource name and the `Source` will be retrieved from the - * persisted `Ruleset`. - * - * The following is an example of `Source` that permits users to upload images - * to a bucket bearing their user id and matching the correct metadata: - * - * _*Example*_ - * - * // Users are allowed to subscribe and unsubscribe to the blog. - * service firebase.storage { match /users/{userId}/images/{imageName} { - * allow write: if userId == request.userId && - * (imageName.endsWith('.png') || imageName.endsWith('.jpg')) && - * resource.mimeType.startsWith('image/') } } (projects.test) - * - * @param string $name Name of the project. - * - * Format: `projects/{project_id}` - * @param Google_Service_FirebaseRulesAPI_TestRulesetRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_FirebaseRulesAPI_TestRulesetResponse - */ - public function test($name, Google_Service_FirebaseRulesAPI_TestRulesetRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('test', array($params), "Google_Service_FirebaseRulesAPI_TestRulesetResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRulesAPI/Resource/ProjectsReleases.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRulesAPI/Resource/ProjectsReleases.php deleted file mode 100644 index c2ad9220..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRulesAPI/Resource/ProjectsReleases.php +++ /dev/null @@ -1,186 +0,0 @@ - - * $firebaserulesService = new Google_Service_FirebaseRulesAPI(...); - * $releases = $firebaserulesService->releases; - * - */ -class Google_Service_FirebaseRulesAPI_Resource_ProjectsReleases extends Google_Service_Resource -{ - /** - * Create a `Release`. - * - * Release names should reflect the developer's deployment practices. For - * example, the release name may include the environment name, application name, - * application version, or any other name meaningful to the developer. Once a - * `Release` refers to a `Ruleset`, the rules can be enforced by Firebase Rules- - * enabled services. - * - * More than one `Release` may be 'live' concurrently. Consider the following - * three `Release` names for `projects/foo` and the `Ruleset` to which they - * refer. - * - * Release Name | Ruleset Name - * --------------------------------|------------- projects/foo/releases/prod - * | projects/foo/rulesets/uuid123 projects/foo/releases/prod/beta | - * projects/foo/rulesets/uuid123 projects/foo/releases/prod/v23 | - * projects/foo/rulesets/uuid456 - * - * The table reflects the `Ruleset` rollout in progress. The `prod` and - * `prod/beta` releases refer to the same `Ruleset`. However, `prod/v23` refers - * to a new `Ruleset`. The `Ruleset` reference for a `Release` may be updated - * using the UpdateRelease method, and the custom `Release` name may be - * referenced by specifying the `X-Firebase-Rules-Release-Name` header. - * (releases.create) - * - * @param string $name Resource name for the project which owns this `Release`. - * - * Format: `projects/{project_id}` - * @param Google_Service_FirebaseRulesAPI_Release $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_FirebaseRulesAPI_Release - */ - public function create($name, Google_Service_FirebaseRulesAPI_Release $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_FirebaseRulesAPI_Release"); - } - /** - * Delete a `Release` by resource name. (releases.delete) - * - * @param string $name Resource name for the `Release` to delete. - * - * Format: `projects/{project_id}/releases/{release_id}` - * @param array $optParams Optional parameters. - * @return Google_Service_FirebaseRulesAPI_FirebaserulesEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_FirebaseRulesAPI_FirebaserulesEmpty"); - } - /** - * Get a `Release` by name. (releases.get) - * - * @param string $name Resource name of the `Release`. - * - * Format: `projects/{project_id}/releases/{release_id}` - * @param array $optParams Optional parameters. - * @return Google_Service_FirebaseRulesAPI_Release - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_FirebaseRulesAPI_Release"); - } - /** - * List the `Release` values for a project. This list may optionally be filtered - * by `Release` name or `Ruleset` id or both. (releases.listProjectsReleases) - * - * @param string $name Resource name for the project. - * - * Format: `projects/{project_id}` - * @param array $optParams Optional parameters. - * - * @opt_param string filter `Release` filter. The list method supports filters - * with restrictions on the `Release` `name` and also on the `Ruleset` - * `ruleset_name`. - * - * Example 1) A filter of 'name=prod*' might return `Release`s with names within - * 'projects/foo' prefixed with 'prod': - * - * Name | Ruleset Name - * ------------------------------|------------- projects/foo/releases/prod | - * projects/foo/rulesets/uuid1234 projects/foo/releases/prod/v1 | - * projects/foo/rulesets/uuid1234 projects/foo/releases/prod/v2 | - * projects/foo/rulesets/uuid8888 - * - * Example 2) A filter of `name=prod* ruleset_name=uuid1234` would return only - * `Release` instances for 'projects/foo' with names prefixed with 'prod' - * referring to the same `Ruleset` name of 'uuid1234': - * - * Name | Ruleset Name - * ------------------------------|------------- projects/foo/releases/prod | - * projects/foo/rulesets/1234 projects/foo/releases/prod/v1 | - * projects/foo/rulesets/1234 - * - * In the examples, the filter parameters refer to the search filters for - * release and ruleset names are relative to the project releases and rulesets - * collections. Fully qualified prefixed may also be used. e.g. - * `name=projects/foo/releases/prod* ruleset_name=projects/foo/rulesets/uuid1` - * @opt_param string pageToken Next page token for the next batch of `Release` - * instances. - * @opt_param int pageSize Page size to load. Maximum of 100. Defaults to 10. - * Note: `page_size` is just a hint and the service may choose to load less than - * `page_size` due to the size of the output. To traverse all of the releases, - * caller should iterate until the `page_token` is empty. - * @return Google_Service_FirebaseRulesAPI_ListReleasesResponse - */ - public function listProjectsReleases($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_FirebaseRulesAPI_ListReleasesResponse"); - } - /** - * Update a `Release`. - * - * Only updates to the `ruleset_name` field will be honored. `Release` rename is - * not supported. To create a `Release` use the CreateRelease method instead. - * (releases.update) - * - * @param string $name Resource name for the `Release`. - * - * `Release` names may be structured `app1/prod/v2` or flat `app1_prod_v2` which - * affords developers a great deal of flexibility in mapping the name to the - * style that best fits their existing development practices. For example, a - * name could refer to an environment, an app, a version, or some combination of - * three. - * - * In the table below, for the project name `projects/foo`, the following - * relative release paths show how flat and structured names might be chosen to - * match a desired development / deployment strategy. - * - * Use Case | Flat Name | Structured Name - * -------------|---------------------|---------------- Environments | - * releases/qa | releases/qa Apps | releases/app1_qa | - * releases/app1/qa Versions | releases/app1_v2_qa | releases/app1/v2/qa - * - * The delimiter between the release name path elements can be almost anything - * and it should work equally well with the release name list filter, but in - * many ways the structured paths provide a clearer picture of the relationship - * between `Release` instances. - * - * Format: `projects/{project_id}/releases/{release_id}` - * @param Google_Service_FirebaseRulesAPI_Release $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_FirebaseRulesAPI_Release - */ - public function update($name, Google_Service_FirebaseRulesAPI_Release $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_FirebaseRulesAPI_Release"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRulesAPI/Resource/ProjectsRulesets.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRulesAPI/Resource/ProjectsRulesets.php deleted file mode 100644 index 23418efc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRulesAPI/Resource/ProjectsRulesets.php +++ /dev/null @@ -1,108 +0,0 @@ - - * $firebaserulesService = new Google_Service_FirebaseRulesAPI(...); - * $rulesets = $firebaserulesService->rulesets; - * - */ -class Google_Service_FirebaseRulesAPI_Resource_ProjectsRulesets extends Google_Service_Resource -{ - /** - * Create a `Ruleset` from `Source`. - * - * The `Ruleset` is given a unique generated name which is returned to the - * caller. `Source` containing syntactic or semantics errors will result in an - * error response indicating the first error encountered. For a detailed view of - * `Source` issues, use TestRuleset. (rulesets.create) - * - * @param string $name Resource name for Project which owns this `Ruleset`. - * - * Format: `projects/{project_id}` - * @param Google_Service_FirebaseRulesAPI_Ruleset $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_FirebaseRulesAPI_Ruleset - */ - public function create($name, Google_Service_FirebaseRulesAPI_Ruleset $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_FirebaseRulesAPI_Ruleset"); - } - /** - * Delete a `Ruleset` by resource name. - * - * If the `Ruleset` is referenced by a `Release` the operation will fail. - * (rulesets.delete) - * - * @param string $name Resource name for the ruleset to delete. - * - * Format: `projects/{project_id}/rulesets/{ruleset_id}` - * @param array $optParams Optional parameters. - * @return Google_Service_FirebaseRulesAPI_FirebaserulesEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_FirebaseRulesAPI_FirebaserulesEmpty"); - } - /** - * Get a `Ruleset` by name including the full `Source` contents. (rulesets.get) - * - * @param string $name Resource name for the ruleset to get. - * - * Format: `projects/{project_id}/rulesets/{ruleset_id}` - * @param array $optParams Optional parameters. - * @return Google_Service_FirebaseRulesAPI_Ruleset - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_FirebaseRulesAPI_Ruleset"); - } - /** - * List `Ruleset` metadata only and optionally filter the results by Ruleset - * name. - * - * The full `Source` contents of a `Ruleset` may be retrieved with GetRuleset. - * (rulesets.listProjectsRulesets) - * - * @param string $name Resource name for the project. - * - * Format: `projects/{project_id}` - * @param array $optParams Optional parameters. - * - * @opt_param int pageSize Page size to load. Maximum of 100. Defaults to 10. - * Note: `page_size` is just a hint and the service may choose to load less than - * `page_size` due to the size of the output. To traverse all of the releases, - * caller should iterate until the `page_token` is empty. - * @opt_param string pageToken Next page token for loading the next batch of - * `Ruleset` instances. - * @return Google_Service_FirebaseRulesAPI_ListRulesetsResponse - */ - public function listProjectsRulesets($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_FirebaseRulesAPI_ListRulesetsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRulesAPI/Ruleset.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRulesAPI/Ruleset.php deleted file mode 100644 index 33f437fc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRulesAPI/Ruleset.php +++ /dev/null @@ -1,49 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setSource(Google_Service_FirebaseRulesAPI_Source $source) - { - $this->source = $source; - } - public function getSource() - { - return $this->source; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRulesAPI/Source.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRulesAPI/Source.php deleted file mode 100644 index ecde5b81..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRulesAPI/Source.php +++ /dev/null @@ -1,32 +0,0 @@ -files = $files; - } - public function getFiles() - { - return $this->files; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRulesAPI/SourcePosition.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRulesAPI/SourcePosition.php deleted file mode 100644 index 79936bb7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRulesAPI/SourcePosition.php +++ /dev/null @@ -1,48 +0,0 @@ -column = $column; - } - public function getColumn() - { - return $this->column; - } - public function setFileName($fileName) - { - $this->fileName = $fileName; - } - public function getFileName() - { - return $this->fileName; - } - public function setLine($line) - { - $this->line = $line; - } - public function getLine() - { - return $this->line; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRulesAPI/TestRulesetRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRulesAPI/TestRulesetRequest.php deleted file mode 100644 index 89eb2f30..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRulesAPI/TestRulesetRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -source = $source; - } - public function getSource() - { - return $this->source; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRulesAPI/TestRulesetResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRulesAPI/TestRulesetResponse.php deleted file mode 100644 index c9b1fd96..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FirebaseRulesAPI/TestRulesetResponse.php +++ /dev/null @@ -1,32 +0,0 @@ -issues = $issues; - } - public function getIssues() - { - return $this->issues; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore.php deleted file mode 100644 index 32501ee7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore.php +++ /dev/null @@ -1,543 +0,0 @@ - - * Accesses the NoSQL document database built for automatic scaling, high - * performance, and ease of application development.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Firestore extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** View and manage your Google Cloud Datastore data. */ - const DATASTORE = - "https://www.googleapis.com/auth/datastore"; - - public $projects_databases; - public $projects_databases_collectionGroups_fields; - public $projects_databases_collectionGroups_indexes; - public $projects_databases_documents; - public $projects_databases_operations; - public $projects_locations; - - /** - * Constructs the internal representation of the Firestore service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://firestore.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'firestore'; - - $this->projects_databases = new Google_Service_Firestore_Resource_ProjectsDatabases( - $this, - $this->serviceName, - 'databases', - array( - 'methods' => array( - 'exportDocuments' => array( - 'path' => 'v1/{+name}:exportDocuments', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'importDocuments' => array( - 'path' => 'v1/{+name}:importDocuments', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_databases_collectionGroups_fields = new Google_Service_Firestore_Resource_ProjectsDatabasesCollectionGroupsFields( - $this, - $this->serviceName, - 'fields', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/fields', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_databases_collectionGroups_indexes = new Google_Service_Firestore_Resource_ProjectsDatabasesCollectionGroupsIndexes( - $this, - $this->serviceName, - 'indexes', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/indexes', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/indexes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->projects_databases_documents = new Google_Service_Firestore_Resource_ProjectsDatabasesDocuments( - $this, - $this->serviceName, - 'documents', - array( - 'methods' => array( - 'batchGet' => array( - 'path' => 'v1/{+database}/documents:batchGet', - 'httpMethod' => 'POST', - 'parameters' => array( - 'database' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'beginTransaction' => array( - 'path' => 'v1/{+database}/documents:beginTransaction', - 'httpMethod' => 'POST', - 'parameters' => array( - 'database' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'commit' => array( - 'path' => 'v1/{+database}/documents:commit', - 'httpMethod' => 'POST', - 'parameters' => array( - 'database' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'createDocument' => array( - 'path' => 'v1/{+parent}/{collectionId}', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'collectionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'mask.fieldPaths' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'documentId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'currentDocument.updateTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'currentDocument.exists' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'transaction' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'mask.fieldPaths' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'readTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/{collectionId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'collectionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'showMissing' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'mask.fieldPaths' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'transaction' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'readTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'listCollectionIds' => array( - 'path' => 'v1/{+parent}:listCollectionIds', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'listen' => array( - 'path' => 'v1/{+database}/documents:listen', - 'httpMethod' => 'POST', - 'parameters' => array( - 'database' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'currentDocument.updateTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'currentDocument.exists' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'updateMask.fieldPaths' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'mask.fieldPaths' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ),'rollback' => array( - 'path' => 'v1/{+database}/documents:rollback', - 'httpMethod' => 'POST', - 'parameters' => array( - 'database' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'runQuery' => array( - 'path' => 'v1/{+parent}:runQuery', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'write' => array( - 'path' => 'v1/{+database}/documents:write', - 'httpMethod' => 'POST', - 'parameters' => array( - 'database' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_databases_operations = new Google_Service_Firestore_Resource_ProjectsDatabasesOperations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'cancel' => array( - 'path' => 'v1/{+name}:cancel', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+name}/operations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_locations = new Google_Service_Firestore_Resource_ProjectsLocations( - $this, - $this->serviceName, - 'locations', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+name}/locations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/ArrayValue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/ArrayValue.php deleted file mode 100644 index fadbb64a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/ArrayValue.php +++ /dev/null @@ -1,38 +0,0 @@ -values = $values; - } - /** - * @return Google_Service_Firestore_Value - */ - public function getValues() - { - return $this->values; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/BatchGetDocumentsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/BatchGetDocumentsRequest.php deleted file mode 100644 index c5b39e08..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/BatchGetDocumentsRequest.php +++ /dev/null @@ -1,81 +0,0 @@ -documents = $documents; - } - public function getDocuments() - { - return $this->documents; - } - /** - * @param Google_Service_Firestore_DocumentMask - */ - public function setMask(Google_Service_Firestore_DocumentMask $mask) - { - $this->mask = $mask; - } - /** - * @return Google_Service_Firestore_DocumentMask - */ - public function getMask() - { - return $this->mask; - } - /** - * @param Google_Service_Firestore_TransactionOptions - */ - public function setNewTransaction(Google_Service_Firestore_TransactionOptions $newTransaction) - { - $this->newTransaction = $newTransaction; - } - /** - * @return Google_Service_Firestore_TransactionOptions - */ - public function getNewTransaction() - { - return $this->newTransaction; - } - public function setReadTime($readTime) - { - $this->readTime = $readTime; - } - public function getReadTime() - { - return $this->readTime; - } - public function setTransaction($transaction) - { - $this->transaction = $transaction; - } - public function getTransaction() - { - return $this->transaction; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/BatchGetDocumentsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/BatchGetDocumentsResponse.php deleted file mode 100644 index f89624e7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/BatchGetDocumentsResponse.php +++ /dev/null @@ -1,64 +0,0 @@ -found = $found; - } - /** - * @return Google_Service_Firestore_Document - */ - public function getFound() - { - return $this->found; - } - public function setMissing($missing) - { - $this->missing = $missing; - } - public function getMissing() - { - return $this->missing; - } - public function setReadTime($readTime) - { - $this->readTime = $readTime; - } - public function getReadTime() - { - return $this->readTime; - } - public function setTransaction($transaction) - { - $this->transaction = $transaction; - } - public function getTransaction() - { - return $this->transaction; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/BeginTransactionRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/BeginTransactionRequest.php deleted file mode 100644 index 634b264c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/BeginTransactionRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -options = $options; - } - /** - * @return Google_Service_Firestore_TransactionOptions - */ - public function getOptions() - { - return $this->options; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/BeginTransactionResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/BeginTransactionResponse.php deleted file mode 100644 index 0aa5a5b5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/BeginTransactionResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -transaction = $transaction; - } - public function getTransaction() - { - return $this->transaction; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/CollectionSelector.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/CollectionSelector.php deleted file mode 100644 index ba5d6731..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/CollectionSelector.php +++ /dev/null @@ -1,39 +0,0 @@ -allDescendants = $allDescendants; - } - public function getAllDescendants() - { - return $this->allDescendants; - } - public function setCollectionId($collectionId) - { - $this->collectionId = $collectionId; - } - public function getCollectionId() - { - return $this->collectionId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/CommitRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/CommitRequest.php deleted file mode 100644 index 5a7f13dd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/CommitRequest.php +++ /dev/null @@ -1,47 +0,0 @@ -transaction = $transaction; - } - public function getTransaction() - { - return $this->transaction; - } - /** - * @param Google_Service_Firestore_Write - */ - public function setWrites($writes) - { - $this->writes = $writes; - } - /** - * @return Google_Service_Firestore_Write - */ - public function getWrites() - { - return $this->writes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/CommitResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/CommitResponse.php deleted file mode 100644 index 5fe6288a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/CommitResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -commitTime = $commitTime; - } - public function getCommitTime() - { - return $this->commitTime; - } - /** - * @param Google_Service_Firestore_WriteResult - */ - public function setWriteResults($writeResults) - { - $this->writeResults = $writeResults; - } - /** - * @return Google_Service_Firestore_WriteResult - */ - public function getWriteResults() - { - return $this->writeResults; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/CompositeFilter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/CompositeFilter.php deleted file mode 100644 index 95243849..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/CompositeFilter.php +++ /dev/null @@ -1,47 +0,0 @@ -filters = $filters; - } - /** - * @return Google_Service_Firestore_Filter - */ - public function getFilters() - { - return $this->filters; - } - public function setOp($op) - { - $this->op = $op; - } - public function getOp() - { - return $this->op; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Cursor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Cursor.php deleted file mode 100644 index 7d20f934..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Cursor.php +++ /dev/null @@ -1,47 +0,0 @@ -before = $before; - } - public function getBefore() - { - return $this->before; - } - /** - * @param Google_Service_Firestore_Value - */ - public function setValues($values) - { - $this->values = $values; - } - /** - * @return Google_Service_Firestore_Value - */ - public function getValues() - { - return $this->values; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Document.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Document.php deleted file mode 100644 index 47eb2308..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Document.php +++ /dev/null @@ -1,64 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - /** - * @param Google_Service_Firestore_Value - */ - public function setFields($fields) - { - $this->fields = $fields; - } - /** - * @return Google_Service_Firestore_Value - */ - public function getFields() - { - return $this->fields; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/DocumentChange.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/DocumentChange.php deleted file mode 100644 index e7c36577..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/DocumentChange.php +++ /dev/null @@ -1,56 +0,0 @@ -document = $document; - } - /** - * @return Google_Service_Firestore_Document - */ - public function getDocument() - { - return $this->document; - } - public function setRemovedTargetIds($removedTargetIds) - { - $this->removedTargetIds = $removedTargetIds; - } - public function getRemovedTargetIds() - { - return $this->removedTargetIds; - } - public function setTargetIds($targetIds) - { - $this->targetIds = $targetIds; - } - public function getTargetIds() - { - return $this->targetIds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/DocumentDelete.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/DocumentDelete.php deleted file mode 100644 index 99a20b53..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/DocumentDelete.php +++ /dev/null @@ -1,49 +0,0 @@ -document = $document; - } - public function getDocument() - { - return $this->document; - } - public function setReadTime($readTime) - { - $this->readTime = $readTime; - } - public function getReadTime() - { - return $this->readTime; - } - public function setRemovedTargetIds($removedTargetIds) - { - $this->removedTargetIds = $removedTargetIds; - } - public function getRemovedTargetIds() - { - return $this->removedTargetIds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/DocumentMask.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/DocumentMask.php deleted file mode 100644 index 505b6ef0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/DocumentMask.php +++ /dev/null @@ -1,31 +0,0 @@ -fieldPaths = $fieldPaths; - } - public function getFieldPaths() - { - return $this->fieldPaths; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/DocumentRemove.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/DocumentRemove.php deleted file mode 100644 index 48b6d543..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/DocumentRemove.php +++ /dev/null @@ -1,49 +0,0 @@ -document = $document; - } - public function getDocument() - { - return $this->document; - } - public function setReadTime($readTime) - { - $this->readTime = $readTime; - } - public function getReadTime() - { - return $this->readTime; - } - public function setRemovedTargetIds($removedTargetIds) - { - $this->removedTargetIds = $removedTargetIds; - } - public function getRemovedTargetIds() - { - return $this->removedTargetIds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/DocumentTransform.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/DocumentTransform.php deleted file mode 100644 index 9370b1e2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/DocumentTransform.php +++ /dev/null @@ -1,47 +0,0 @@ -document = $document; - } - public function getDocument() - { - return $this->document; - } - /** - * @param Google_Service_Firestore_FieldTransform - */ - public function setFieldTransforms($fieldTransforms) - { - $this->fieldTransforms = $fieldTransforms; - } - /** - * @return Google_Service_Firestore_FieldTransform - */ - public function getFieldTransforms() - { - return $this->fieldTransforms; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/DocumentsTarget.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/DocumentsTarget.php deleted file mode 100644 index 11195ce2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/DocumentsTarget.php +++ /dev/null @@ -1,31 +0,0 @@ -documents = $documents; - } - public function getDocuments() - { - return $this->documents; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/ExistenceFilter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/ExistenceFilter.php deleted file mode 100644 index 12b687ad..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/ExistenceFilter.php +++ /dev/null @@ -1,39 +0,0 @@ -count = $count; - } - public function getCount() - { - return $this->count; - } - public function setTargetId($targetId) - { - $this->targetId = $targetId; - } - public function getTargetId() - { - return $this->targetId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/FieldFilter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/FieldFilter.php deleted file mode 100644 index 1abbc533..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/FieldFilter.php +++ /dev/null @@ -1,62 +0,0 @@ -field = $field; - } - /** - * @return Google_Service_Firestore_FieldReference - */ - public function getField() - { - return $this->field; - } - public function setOp($op) - { - $this->op = $op; - } - public function getOp() - { - return $this->op; - } - /** - * @param Google_Service_Firestore_Value - */ - public function setValue(Google_Service_Firestore_Value $value) - { - $this->value = $value; - } - /** - * @return Google_Service_Firestore_Value - */ - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/FieldReference.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/FieldReference.php deleted file mode 100644 index 02c3c475..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/FieldReference.php +++ /dev/null @@ -1,30 +0,0 @@ -fieldPath = $fieldPath; - } - public function getFieldPath() - { - return $this->fieldPath; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/FieldTransform.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/FieldTransform.php deleted file mode 100644 index 93bde733..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/FieldTransform.php +++ /dev/null @@ -1,119 +0,0 @@ -appendMissingElements = $appendMissingElements; - } - /** - * @return Google_Service_Firestore_ArrayValue - */ - public function getAppendMissingElements() - { - return $this->appendMissingElements; - } - public function setFieldPath($fieldPath) - { - $this->fieldPath = $fieldPath; - } - public function getFieldPath() - { - return $this->fieldPath; - } - /** - * @param Google_Service_Firestore_Value - */ - public function setIncrement(Google_Service_Firestore_Value $increment) - { - $this->increment = $increment; - } - /** - * @return Google_Service_Firestore_Value - */ - public function getIncrement() - { - return $this->increment; - } - /** - * @param Google_Service_Firestore_Value - */ - public function setMaximum(Google_Service_Firestore_Value $maximum) - { - $this->maximum = $maximum; - } - /** - * @return Google_Service_Firestore_Value - */ - public function getMaximum() - { - return $this->maximum; - } - /** - * @param Google_Service_Firestore_Value - */ - public function setMinimum(Google_Service_Firestore_Value $minimum) - { - $this->minimum = $minimum; - } - /** - * @return Google_Service_Firestore_Value - */ - public function getMinimum() - { - return $this->minimum; - } - /** - * @param Google_Service_Firestore_ArrayValue - */ - public function setRemoveAllFromArray(Google_Service_Firestore_ArrayValue $removeAllFromArray) - { - $this->removeAllFromArray = $removeAllFromArray; - } - /** - * @return Google_Service_Firestore_ArrayValue - */ - public function getRemoveAllFromArray() - { - return $this->removeAllFromArray; - } - public function setSetToServerValue($setToServerValue) - { - $this->setToServerValue = $setToServerValue; - } - public function getSetToServerValue() - { - return $this->setToServerValue; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Filter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Filter.php deleted file mode 100644 index 569424dc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Filter.php +++ /dev/null @@ -1,69 +0,0 @@ -compositeFilter = $compositeFilter; - } - /** - * @return Google_Service_Firestore_CompositeFilter - */ - public function getCompositeFilter() - { - return $this->compositeFilter; - } - /** - * @param Google_Service_Firestore_FieldFilter - */ - public function setFieldFilter(Google_Service_Firestore_FieldFilter $fieldFilter) - { - $this->fieldFilter = $fieldFilter; - } - /** - * @return Google_Service_Firestore_FieldFilter - */ - public function getFieldFilter() - { - return $this->fieldFilter; - } - /** - * @param Google_Service_Firestore_UnaryFilter - */ - public function setUnaryFilter(Google_Service_Firestore_UnaryFilter $unaryFilter) - { - $this->unaryFilter = $unaryFilter; - } - /** - * @return Google_Service_Firestore_UnaryFilter - */ - public function getUnaryFilter() - { - return $this->unaryFilter; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/FirestoreEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/FirestoreEmpty.php deleted file mode 100644 index f8f2a9e0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/FirestoreEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -collectionIds = $collectionIds; - } - public function getCollectionIds() - { - return $this->collectionIds; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setOperationState($operationState) - { - $this->operationState = $operationState; - } - public function getOperationState() - { - return $this->operationState; - } - public function setOutputUriPrefix($outputUriPrefix) - { - $this->outputUriPrefix = $outputUriPrefix; - } - public function getOutputUriPrefix() - { - return $this->outputUriPrefix; - } - /** - * @param Google_Service_Firestore_GoogleFirestoreAdminV1Progress - */ - public function setProgressBytes(Google_Service_Firestore_GoogleFirestoreAdminV1Progress $progressBytes) - { - $this->progressBytes = $progressBytes; - } - /** - * @return Google_Service_Firestore_GoogleFirestoreAdminV1Progress - */ - public function getProgressBytes() - { - return $this->progressBytes; - } - /** - * @param Google_Service_Firestore_GoogleFirestoreAdminV1Progress - */ - public function setProgressDocuments(Google_Service_Firestore_GoogleFirestoreAdminV1Progress $progressDocuments) - { - $this->progressDocuments = $progressDocuments; - } - /** - * @return Google_Service_Firestore_GoogleFirestoreAdminV1Progress - */ - public function getProgressDocuments() - { - return $this->progressDocuments; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/GoogleFirestoreAdminV1ExportDocumentsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/GoogleFirestoreAdminV1ExportDocumentsRequest.php deleted file mode 100644 index f762983c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/GoogleFirestoreAdminV1ExportDocumentsRequest.php +++ /dev/null @@ -1,40 +0,0 @@ -collectionIds = $collectionIds; - } - public function getCollectionIds() - { - return $this->collectionIds; - } - public function setOutputUriPrefix($outputUriPrefix) - { - $this->outputUriPrefix = $outputUriPrefix; - } - public function getOutputUriPrefix() - { - return $this->outputUriPrefix; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/GoogleFirestoreAdminV1ExportDocumentsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/GoogleFirestoreAdminV1ExportDocumentsResponse.php deleted file mode 100644 index 8dedd7f4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/GoogleFirestoreAdminV1ExportDocumentsResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -outputUriPrefix = $outputUriPrefix; - } - public function getOutputUriPrefix() - { - return $this->outputUriPrefix; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/GoogleFirestoreAdminV1Field.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/GoogleFirestoreAdminV1Field.php deleted file mode 100644 index ac50b892..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/GoogleFirestoreAdminV1Field.php +++ /dev/null @@ -1,46 +0,0 @@ -indexConfig = $indexConfig; - } - /** - * @return Google_Service_Firestore_GoogleFirestoreAdminV1IndexConfig - */ - public function getIndexConfig() - { - return $this->indexConfig; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/GoogleFirestoreAdminV1FieldOperationMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/GoogleFirestoreAdminV1FieldOperationMetadata.php deleted file mode 100644 index a3fc7cfe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/GoogleFirestoreAdminV1FieldOperationMetadata.php +++ /dev/null @@ -1,106 +0,0 @@ -endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setField($field) - { - $this->field = $field; - } - public function getField() - { - return $this->field; - } - /** - * @param Google_Service_Firestore_GoogleFirestoreAdminV1IndexConfigDelta - */ - public function setIndexConfigDeltas($indexConfigDeltas) - { - $this->indexConfigDeltas = $indexConfigDeltas; - } - /** - * @return Google_Service_Firestore_GoogleFirestoreAdminV1IndexConfigDelta - */ - public function getIndexConfigDeltas() - { - return $this->indexConfigDeltas; - } - /** - * @param Google_Service_Firestore_GoogleFirestoreAdminV1Progress - */ - public function setProgressBytes(Google_Service_Firestore_GoogleFirestoreAdminV1Progress $progressBytes) - { - $this->progressBytes = $progressBytes; - } - /** - * @return Google_Service_Firestore_GoogleFirestoreAdminV1Progress - */ - public function getProgressBytes() - { - return $this->progressBytes; - } - /** - * @param Google_Service_Firestore_GoogleFirestoreAdminV1Progress - */ - public function setProgressDocuments(Google_Service_Firestore_GoogleFirestoreAdminV1Progress $progressDocuments) - { - $this->progressDocuments = $progressDocuments; - } - /** - * @return Google_Service_Firestore_GoogleFirestoreAdminV1Progress - */ - public function getProgressDocuments() - { - return $this->progressDocuments; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/GoogleFirestoreAdminV1ImportDocumentsMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/GoogleFirestoreAdminV1ImportDocumentsMetadata.php deleted file mode 100644 index 8d41ce5b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/GoogleFirestoreAdminV1ImportDocumentsMetadata.php +++ /dev/null @@ -1,99 +0,0 @@ -collectionIds = $collectionIds; - } - public function getCollectionIds() - { - return $this->collectionIds; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setInputUriPrefix($inputUriPrefix) - { - $this->inputUriPrefix = $inputUriPrefix; - } - public function getInputUriPrefix() - { - return $this->inputUriPrefix; - } - public function setOperationState($operationState) - { - $this->operationState = $operationState; - } - public function getOperationState() - { - return $this->operationState; - } - /** - * @param Google_Service_Firestore_GoogleFirestoreAdminV1Progress - */ - public function setProgressBytes(Google_Service_Firestore_GoogleFirestoreAdminV1Progress $progressBytes) - { - $this->progressBytes = $progressBytes; - } - /** - * @return Google_Service_Firestore_GoogleFirestoreAdminV1Progress - */ - public function getProgressBytes() - { - return $this->progressBytes; - } - /** - * @param Google_Service_Firestore_GoogleFirestoreAdminV1Progress - */ - public function setProgressDocuments(Google_Service_Firestore_GoogleFirestoreAdminV1Progress $progressDocuments) - { - $this->progressDocuments = $progressDocuments; - } - /** - * @return Google_Service_Firestore_GoogleFirestoreAdminV1Progress - */ - public function getProgressDocuments() - { - return $this->progressDocuments; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/GoogleFirestoreAdminV1ImportDocumentsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/GoogleFirestoreAdminV1ImportDocumentsRequest.php deleted file mode 100644 index 3f946e7b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/GoogleFirestoreAdminV1ImportDocumentsRequest.php +++ /dev/null @@ -1,40 +0,0 @@ -collectionIds = $collectionIds; - } - public function getCollectionIds() - { - return $this->collectionIds; - } - public function setInputUriPrefix($inputUriPrefix) - { - $this->inputUriPrefix = $inputUriPrefix; - } - public function getInputUriPrefix() - { - return $this->inputUriPrefix; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/GoogleFirestoreAdminV1Index.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/GoogleFirestoreAdminV1Index.php deleted file mode 100644 index 2e268e57..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/GoogleFirestoreAdminV1Index.php +++ /dev/null @@ -1,65 +0,0 @@ -fields = $fields; - } - /** - * @return Google_Service_Firestore_GoogleFirestoreAdminV1IndexField - */ - public function getFields() - { - return $this->fields; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setQueryScope($queryScope) - { - $this->queryScope = $queryScope; - } - public function getQueryScope() - { - return $this->queryScope; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/GoogleFirestoreAdminV1IndexConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/GoogleFirestoreAdminV1IndexConfig.php deleted file mode 100644 index d8dd8e02..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/GoogleFirestoreAdminV1IndexConfig.php +++ /dev/null @@ -1,65 +0,0 @@ -ancestorField = $ancestorField; - } - public function getAncestorField() - { - return $this->ancestorField; - } - /** - * @param Google_Service_Firestore_GoogleFirestoreAdminV1Index - */ - public function setIndexes($indexes) - { - $this->indexes = $indexes; - } - /** - * @return Google_Service_Firestore_GoogleFirestoreAdminV1Index - */ - public function getIndexes() - { - return $this->indexes; - } - public function setReverting($reverting) - { - $this->reverting = $reverting; - } - public function getReverting() - { - return $this->reverting; - } - public function setUsesAncestorConfig($usesAncestorConfig) - { - $this->usesAncestorConfig = $usesAncestorConfig; - } - public function getUsesAncestorConfig() - { - return $this->usesAncestorConfig; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/GoogleFirestoreAdminV1IndexConfigDelta.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/GoogleFirestoreAdminV1IndexConfigDelta.php deleted file mode 100644 index 345b4fad..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/GoogleFirestoreAdminV1IndexConfigDelta.php +++ /dev/null @@ -1,46 +0,0 @@ -changeType = $changeType; - } - public function getChangeType() - { - return $this->changeType; - } - /** - * @param Google_Service_Firestore_GoogleFirestoreAdminV1Index - */ - public function setIndex(Google_Service_Firestore_GoogleFirestoreAdminV1Index $index) - { - $this->index = $index; - } - /** - * @return Google_Service_Firestore_GoogleFirestoreAdminV1Index - */ - public function getIndex() - { - return $this->index; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/GoogleFirestoreAdminV1IndexField.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/GoogleFirestoreAdminV1IndexField.php deleted file mode 100644 index 3f618ee3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/GoogleFirestoreAdminV1IndexField.php +++ /dev/null @@ -1,48 +0,0 @@ -arrayConfig = $arrayConfig; - } - public function getArrayConfig() - { - return $this->arrayConfig; - } - public function setFieldPath($fieldPath) - { - $this->fieldPath = $fieldPath; - } - public function getFieldPath() - { - return $this->fieldPath; - } - public function setOrder($order) - { - $this->order = $order; - } - public function getOrder() - { - return $this->order; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/GoogleFirestoreAdminV1IndexOperationMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/GoogleFirestoreAdminV1IndexOperationMetadata.php deleted file mode 100644 index 96da86ed..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/GoogleFirestoreAdminV1IndexOperationMetadata.php +++ /dev/null @@ -1,89 +0,0 @@ -endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setIndex($index) - { - $this->index = $index; - } - public function getIndex() - { - return $this->index; - } - /** - * @param Google_Service_Firestore_GoogleFirestoreAdminV1Progress - */ - public function setProgressBytes(Google_Service_Firestore_GoogleFirestoreAdminV1Progress $progressBytes) - { - $this->progressBytes = $progressBytes; - } - /** - * @return Google_Service_Firestore_GoogleFirestoreAdminV1Progress - */ - public function getProgressBytes() - { - return $this->progressBytes; - } - /** - * @param Google_Service_Firestore_GoogleFirestoreAdminV1Progress - */ - public function setProgressDocuments(Google_Service_Firestore_GoogleFirestoreAdminV1Progress $progressDocuments) - { - $this->progressDocuments = $progressDocuments; - } - /** - * @return Google_Service_Firestore_GoogleFirestoreAdminV1Progress - */ - public function getProgressDocuments() - { - return $this->progressDocuments; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/GoogleFirestoreAdminV1ListFieldsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/GoogleFirestoreAdminV1ListFieldsResponse.php deleted file mode 100644 index d71e8f9f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/GoogleFirestoreAdminV1ListFieldsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -fields = $fields; - } - /** - * @return Google_Service_Firestore_GoogleFirestoreAdminV1Field - */ - public function getFields() - { - return $this->fields; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/GoogleFirestoreAdminV1ListIndexesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/GoogleFirestoreAdminV1ListIndexesResponse.php deleted file mode 100644 index bc16029b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/GoogleFirestoreAdminV1ListIndexesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -indexes = $indexes; - } - /** - * @return Google_Service_Firestore_GoogleFirestoreAdminV1Index - */ - public function getIndexes() - { - return $this->indexes; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/GoogleFirestoreAdminV1LocationMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/GoogleFirestoreAdminV1LocationMetadata.php deleted file mode 100644 index 6072d71b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/GoogleFirestoreAdminV1LocationMetadata.php +++ /dev/null @@ -1,20 +0,0 @@ -completedWork = $completedWork; - } - public function getCompletedWork() - { - return $this->completedWork; - } - public function setEstimatedWork($estimatedWork) - { - $this->estimatedWork = $estimatedWork; - } - public function getEstimatedWork() - { - return $this->estimatedWork; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/GoogleLongrunningCancelOperationRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/GoogleLongrunningCancelOperationRequest.php deleted file mode 100644 index 01a6b4c3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/GoogleLongrunningCancelOperationRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Firestore_GoogleLongrunningOperation - */ - public function setOperations($operations) - { - $this->operations = $operations; - } - /** - * @return Google_Service_Firestore_GoogleLongrunningOperation - */ - public function getOperations() - { - return $this->operations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/GoogleLongrunningOperation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/GoogleLongrunningOperation.php deleted file mode 100644 index 0ceca16f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/GoogleLongrunningOperation.php +++ /dev/null @@ -1,73 +0,0 @@ -done = $done; - } - public function getDone() - { - return $this->done; - } - /** - * @param Google_Service_Firestore_Status - */ - public function setError(Google_Service_Firestore_Status $error) - { - $this->error = $error; - } - /** - * @return Google_Service_Firestore_Status - */ - public function getError() - { - return $this->error; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/LatLng.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/LatLng.php deleted file mode 100644 index 411210d7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/LatLng.php +++ /dev/null @@ -1,39 +0,0 @@ -latitude = $latitude; - } - public function getLatitude() - { - return $this->latitude; - } - public function setLongitude($longitude) - { - $this->longitude = $longitude; - } - public function getLongitude() - { - return $this->longitude; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/ListCollectionIdsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/ListCollectionIdsRequest.php deleted file mode 100644 index 89fc6b99..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/ListCollectionIdsRequest.php +++ /dev/null @@ -1,39 +0,0 @@ -pageSize = $pageSize; - } - public function getPageSize() - { - return $this->pageSize; - } - public function setPageToken($pageToken) - { - $this->pageToken = $pageToken; - } - public function getPageToken() - { - return $this->pageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/ListCollectionIdsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/ListCollectionIdsResponse.php deleted file mode 100644 index 4644e52d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/ListCollectionIdsResponse.php +++ /dev/null @@ -1,40 +0,0 @@ -collectionIds = $collectionIds; - } - public function getCollectionIds() - { - return $this->collectionIds; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/ListDocumentsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/ListDocumentsResponse.php deleted file mode 100644 index ed3fea81..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/ListDocumentsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -documents = $documents; - } - /** - * @return Google_Service_Firestore_Document - */ - public function getDocuments() - { - return $this->documents; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/ListLocationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/ListLocationsResponse.php deleted file mode 100644 index df63892b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/ListLocationsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -locations = $locations; - } - /** - * @return Google_Service_Firestore_Location - */ - public function getLocations() - { - return $this->locations; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/ListenRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/ListenRequest.php deleted file mode 100644 index 1ae0ec50..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/ListenRequest.php +++ /dev/null @@ -1,55 +0,0 @@ -addTarget = $addTarget; - } - /** - * @return Google_Service_Firestore_Target - */ - public function getAddTarget() - { - return $this->addTarget; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setRemoveTarget($removeTarget) - { - $this->removeTarget = $removeTarget; - } - public function getRemoveTarget() - { - return $this->removeTarget; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/ListenResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/ListenResponse.php deleted file mode 100644 index 3c8b69c1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/ListenResponse.php +++ /dev/null @@ -1,101 +0,0 @@ -documentChange = $documentChange; - } - /** - * @return Google_Service_Firestore_DocumentChange - */ - public function getDocumentChange() - { - return $this->documentChange; - } - /** - * @param Google_Service_Firestore_DocumentDelete - */ - public function setDocumentDelete(Google_Service_Firestore_DocumentDelete $documentDelete) - { - $this->documentDelete = $documentDelete; - } - /** - * @return Google_Service_Firestore_DocumentDelete - */ - public function getDocumentDelete() - { - return $this->documentDelete; - } - /** - * @param Google_Service_Firestore_DocumentRemove - */ - public function setDocumentRemove(Google_Service_Firestore_DocumentRemove $documentRemove) - { - $this->documentRemove = $documentRemove; - } - /** - * @return Google_Service_Firestore_DocumentRemove - */ - public function getDocumentRemove() - { - return $this->documentRemove; - } - /** - * @param Google_Service_Firestore_ExistenceFilter - */ - public function setFilter(Google_Service_Firestore_ExistenceFilter $filter) - { - $this->filter = $filter; - } - /** - * @return Google_Service_Firestore_ExistenceFilter - */ - public function getFilter() - { - return $this->filter; - } - /** - * @param Google_Service_Firestore_TargetChange - */ - public function setTargetChange(Google_Service_Firestore_TargetChange $targetChange) - { - $this->targetChange = $targetChange; - } - /** - * @return Google_Service_Firestore_TargetChange - */ - public function getTargetChange() - { - return $this->targetChange; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Location.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Location.php deleted file mode 100644 index 24667ee3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Location.php +++ /dev/null @@ -1,66 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setLocationId($locationId) - { - $this->locationId = $locationId; - } - public function getLocationId() - { - return $this->locationId; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/MapValue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/MapValue.php deleted file mode 100644 index 45097d10..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/MapValue.php +++ /dev/null @@ -1,37 +0,0 @@ -fields = $fields; - } - /** - * @return Google_Service_Firestore_Value - */ - public function getFields() - { - return $this->fields; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Order.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Order.php deleted file mode 100644 index cf1fc45b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Order.php +++ /dev/null @@ -1,46 +0,0 @@ -direction = $direction; - } - public function getDirection() - { - return $this->direction; - } - /** - * @param Google_Service_Firestore_FieldReference - */ - public function setField(Google_Service_Firestore_FieldReference $field) - { - $this->field = $field; - } - /** - * @return Google_Service_Firestore_FieldReference - */ - public function getField() - { - return $this->field; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Precondition.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Precondition.php deleted file mode 100644 index 9746573d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Precondition.php +++ /dev/null @@ -1,39 +0,0 @@ -exists = $exists; - } - public function getExists() - { - return $this->exists; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Projection.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Projection.php deleted file mode 100644 index 29264f03..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Projection.php +++ /dev/null @@ -1,38 +0,0 @@ -fields = $fields; - } - /** - * @return Google_Service_Firestore_FieldReference - */ - public function getFields() - { - return $this->fields; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/QueryTarget.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/QueryTarget.php deleted file mode 100644 index 8e264cd3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/QueryTarget.php +++ /dev/null @@ -1,46 +0,0 @@ -parent = $parent; - } - public function getParent() - { - return $this->parent; - } - /** - * @param Google_Service_Firestore_StructuredQuery - */ - public function setStructuredQuery(Google_Service_Firestore_StructuredQuery $structuredQuery) - { - $this->structuredQuery = $structuredQuery; - } - /** - * @return Google_Service_Firestore_StructuredQuery - */ - public function getStructuredQuery() - { - return $this->structuredQuery; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/ReadOnly.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/ReadOnly.php deleted file mode 100644 index 2c10a7a5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/ReadOnly.php +++ /dev/null @@ -1,30 +0,0 @@ -readTime = $readTime; - } - public function getReadTime() - { - return $this->readTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/ReadWrite.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/ReadWrite.php deleted file mode 100644 index 25e639dc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/ReadWrite.php +++ /dev/null @@ -1,30 +0,0 @@ -retryTransaction = $retryTransaction; - } - public function getRetryTransaction() - { - return $this->retryTransaction; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Resource/Projects.php deleted file mode 100644 index 4e50c755..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Resource/Projects.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $firestoreService = new Google_Service_Firestore(...); - * $projects = $firestoreService->projects; - * - */ -class Google_Service_Firestore_Resource_Projects extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Resource/ProjectsDatabases.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Resource/ProjectsDatabases.php deleted file mode 100644 index 66b01095..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Resource/ProjectsDatabases.php +++ /dev/null @@ -1,70 +0,0 @@ - - * $firestoreService = new Google_Service_Firestore(...); - * $databases = $firestoreService->databases; - * - */ -class Google_Service_Firestore_Resource_ProjectsDatabases extends Google_Service_Resource -{ - /** - * Exports a copy of all or a subset of documents from Google Cloud Firestore to - * another storage system, such as Google Cloud Storage. Recent updates to - * documents may not be reflected in the export. The export occurs in the - * background and its progress can be monitored and managed via the Operation - * resource that is created. The output of an export may only be used once the - * associated operation is done. If an export operation is cancelled before - * completion it may leave partial data behind in Google Cloud Storage. - * (databases.exportDocuments) - * - * @param string $name Required. Database to export. Should be of the form: - * `projects/{project_id}/databases/{database_id}`. - * @param Google_Service_Firestore_GoogleFirestoreAdminV1ExportDocumentsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Firestore_GoogleLongrunningOperation - */ - public function exportDocuments($name, Google_Service_Firestore_GoogleFirestoreAdminV1ExportDocumentsRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('exportDocuments', array($params), "Google_Service_Firestore_GoogleLongrunningOperation"); - } - /** - * Imports documents into Google Cloud Firestore. Existing documents with the - * same name are overwritten. The import occurs in the background and its - * progress can be monitored and managed via the Operation resource that is - * created. If an ImportDocuments operation is cancelled, it is possible that a - * subset of the data has already been imported to Cloud Firestore. - * (databases.importDocuments) - * - * @param string $name Required. Database to import into. Should be of the form: - * `projects/{project_id}/databases/{database_id}`. - * @param Google_Service_Firestore_GoogleFirestoreAdminV1ImportDocumentsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Firestore_GoogleLongrunningOperation - */ - public function importDocuments($name, Google_Service_Firestore_GoogleFirestoreAdminV1ImportDocumentsRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('importDocuments', array($params), "Google_Service_Firestore_GoogleLongrunningOperation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Resource/ProjectsDatabasesCollectionGroups.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Resource/ProjectsDatabasesCollectionGroups.php deleted file mode 100644 index a3eb0a83..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Resource/ProjectsDatabasesCollectionGroups.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $firestoreService = new Google_Service_Firestore(...); - * $collectionGroups = $firestoreService->collectionGroups; - * - */ -class Google_Service_Firestore_Resource_ProjectsDatabasesCollectionGroups extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Resource/ProjectsDatabasesCollectionGroupsFields.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Resource/ProjectsDatabasesCollectionGroupsFields.php deleted file mode 100644 index 95052327..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Resource/ProjectsDatabasesCollectionGroupsFields.php +++ /dev/null @@ -1,121 +0,0 @@ - - * $firestoreService = new Google_Service_Firestore(...); - * $fields = $firestoreService->fields; - * - */ -class Google_Service_Firestore_Resource_ProjectsDatabasesCollectionGroupsFields extends Google_Service_Resource -{ - /** - * Gets the metadata and configuration for a Field. (fields.get) - * - * @param string $name Required. A name of the form `projects/{project_id}/datab - * ases/{database_id}/collectionGroups/{collection_id}/fields/{field_id}` - * @param array $optParams Optional parameters. - * @return Google_Service_Firestore_GoogleFirestoreAdminV1Field - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Firestore_GoogleFirestoreAdminV1Field"); - } - /** - * Lists the field configuration and metadata for this database. - * - * Currently, FirestoreAdmin.ListFields only supports listing fields that have - * been explicitly overridden. To issue this query, call - * FirestoreAdmin.ListFields with the filter set to - * `indexConfig.usesAncestorConfig:false`. - * (fields.listProjectsDatabasesCollectionGroupsFields) - * - * @param string $parent Required. A parent name of the form `projects/{project_ - * id}/databases/{database_id}/collectionGroups/{collection_id}` - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A page token, returned from a previous call to - * FirestoreAdmin.ListFields, that may be used to get the next page of results. - * @opt_param int pageSize The number of results to return. - * @opt_param string filter The filter to apply to list results. Currently, - * FirestoreAdmin.ListFields only supports listing fields that have been - * explicitly overridden. To issue this query, call FirestoreAdmin.ListFields - * with the filter set to `indexConfig.usesAncestorConfig:false`. - * @return Google_Service_Firestore_GoogleFirestoreAdminV1ListFieldsResponse - */ - public function listProjectsDatabasesCollectionGroupsFields($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Firestore_GoogleFirestoreAdminV1ListFieldsResponse"); - } - /** - * Updates a field configuration. Currently, field updates apply only to single - * field index configuration. However, calls to FirestoreAdmin.UpdateField - * should provide a field mask to avoid changing any configuration that the - * caller isn't aware of. The field mask should be specified as: `{ paths: - * "index_config" }`. - * - * This call returns a google.longrunning.Operation which may be used to track - * the status of the field update. The metadata for the operation will be the - * type FieldOperationMetadata. - * - * To configure the default field settings for the database, use the special - * `Field` with resource name: `projects/{project_id}/databases/{database_id}/co - * llectionGroups/__default__/fields`. (fields.patch) - * - * @param string $name A field name of the form `projects/{project_id}/databases - * /{database_id}/collectionGroups/{collection_id}/fields/{field_path}` - * - * A field path may be a simple field name, e.g. `address` or a path to fields - * within map_value , e.g. `address.city`, or a special field path. The only - * valid special field is `*`, which represents any field. - * - * Field paths may be quoted using ` (backtick). The only character that needs - * to be escaped within a quoted field path is the backtick character itself, - * escaped using a backslash. Special characters in field paths that must be - * quoted include: `*`, `.`, ``` (backtick), `[`, `]`, as well as any ascii - * symbolic characters. - * - * Examples: (Note: Comments here are written in markdown syntax, so there is an - * additional layer of backticks to represent a code block) `\`address.city\`` - * represents a field named `address.city`, not the map key `city` in the field - * `address`. `\`*\`` represents a field named `*`, not any field. - * - * A special `Field` contains the default indexing settings for all fields. This - * field's resource name is: `projects/{project_id}/databases/{database_id}/coll - * ectionGroups/__default__/fields` Indexes defined on this `Field` will be - * applied to all fields which do not have their own `Field` index - * configuration. - * @param Google_Service_Firestore_GoogleFirestoreAdminV1Field $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask A mask, relative to the field. If specified, - * only configuration specified by this field_mask will be updated in the field. - * @return Google_Service_Firestore_GoogleLongrunningOperation - */ - public function patch($name, Google_Service_Firestore_GoogleFirestoreAdminV1Field $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Firestore_GoogleLongrunningOperation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Resource/ProjectsDatabasesCollectionGroupsIndexes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Resource/ProjectsDatabasesCollectionGroupsIndexes.php deleted file mode 100644 index 5fe0ca90..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Resource/ProjectsDatabasesCollectionGroupsIndexes.php +++ /dev/null @@ -1,93 +0,0 @@ - - * $firestoreService = new Google_Service_Firestore(...); - * $indexes = $firestoreService->indexes; - * - */ -class Google_Service_Firestore_Resource_ProjectsDatabasesCollectionGroupsIndexes extends Google_Service_Resource -{ - /** - * Creates a composite index. This returns a google.longrunning.Operation which - * may be used to track the status of the creation. The metadata for the - * operation will be the type IndexOperationMetadata. (indexes.create) - * - * @param string $parent Required. A parent name of the form `projects/{project_ - * id}/databases/{database_id}/collectionGroups/{collection_id}` - * @param Google_Service_Firestore_GoogleFirestoreAdminV1Index $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Firestore_GoogleLongrunningOperation - */ - public function create($parent, Google_Service_Firestore_GoogleFirestoreAdminV1Index $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Firestore_GoogleLongrunningOperation"); - } - /** - * Deletes a composite index. (indexes.delete) - * - * @param string $name Required. A name of the form `projects/{project_id}/datab - * ases/{database_id}/collectionGroups/{collection_id}/indexes/{index_id}` - * @param array $optParams Optional parameters. - * @return Google_Service_Firestore_FirestoreEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Firestore_FirestoreEmpty"); - } - /** - * Gets a composite index. (indexes.get) - * - * @param string $name Required. A name of the form `projects/{project_id}/datab - * ases/{database_id}/collectionGroups/{collection_id}/indexes/{index_id}` - * @param array $optParams Optional parameters. - * @return Google_Service_Firestore_GoogleFirestoreAdminV1Index - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Firestore_GoogleFirestoreAdminV1Index"); - } - /** - * Lists composite indexes. - * (indexes.listProjectsDatabasesCollectionGroupsIndexes) - * - * @param string $parent Required. A parent name of the form `projects/{project_ - * id}/databases/{database_id}/collectionGroups/{collection_id}` - * @param array $optParams Optional parameters. - * - * @opt_param string filter The filter to apply to list results. - * @opt_param string pageToken A page token, returned from a previous call to - * FirestoreAdmin.ListIndexes, that may be used to get the next page of results. - * @opt_param int pageSize The number of results to return. - * @return Google_Service_Firestore_GoogleFirestoreAdminV1ListIndexesResponse - */ - public function listProjectsDatabasesCollectionGroupsIndexes($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Firestore_GoogleFirestoreAdminV1ListIndexesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Resource/ProjectsDatabasesDocuments.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Resource/ProjectsDatabasesDocuments.php deleted file mode 100644 index 775dc1ef..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Resource/ProjectsDatabasesDocuments.php +++ /dev/null @@ -1,285 +0,0 @@ - - * $firestoreService = new Google_Service_Firestore(...); - * $documents = $firestoreService->documents; - * - */ -class Google_Service_Firestore_Resource_ProjectsDatabasesDocuments extends Google_Service_Resource -{ - /** - * Gets multiple documents. - * - * Documents returned by this method are not guaranteed to be returned in the - * same order that they were requested. (documents.batchGet) - * - * @param string $database Required. The database name. In the format: - * `projects/{project_id}/databases/{database_id}`. - * @param Google_Service_Firestore_BatchGetDocumentsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Firestore_BatchGetDocumentsResponse - */ - public function batchGet($database, Google_Service_Firestore_BatchGetDocumentsRequest $postBody, $optParams = array()) - { - $params = array('database' => $database, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('batchGet', array($params), "Google_Service_Firestore_BatchGetDocumentsResponse"); - } - /** - * Starts a new transaction. (documents.beginTransaction) - * - * @param string $database Required. The database name. In the format: - * `projects/{project_id}/databases/{database_id}`. - * @param Google_Service_Firestore_BeginTransactionRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Firestore_BeginTransactionResponse - */ - public function beginTransaction($database, Google_Service_Firestore_BeginTransactionRequest $postBody, $optParams = array()) - { - $params = array('database' => $database, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('beginTransaction', array($params), "Google_Service_Firestore_BeginTransactionResponse"); - } - /** - * Commits a transaction, while optionally updating documents. - * (documents.commit) - * - * @param string $database Required. The database name. In the format: - * `projects/{project_id}/databases/{database_id}`. - * @param Google_Service_Firestore_CommitRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Firestore_CommitResponse - */ - public function commit($database, Google_Service_Firestore_CommitRequest $postBody, $optParams = array()) - { - $params = array('database' => $database, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('commit', array($params), "Google_Service_Firestore_CommitResponse"); - } - /** - * Creates a new document. (documents.createDocument) - * - * @param string $parent Required. The parent resource. For example: - * `projects/{project_id}/databases/{database_id}/documents` or `projects/{proje - * ct_id}/databases/{database_id}/documents/chatrooms/{chatroom_id}` - * @param string $collectionId Required. The collection ID, relative to - * `parent`, to list. For example: `chatrooms`. - * @param Google_Service_Firestore_Document $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string mask.fieldPaths The list of field paths in the mask. See - * Document.fields for a field path syntax reference. - * @opt_param string documentId The client-assigned document ID to use for this - * document. - * - * Optional. If not specified, an ID will be assigned by the service. - * @return Google_Service_Firestore_Document - */ - public function createDocument($parent, $collectionId, Google_Service_Firestore_Document $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'collectionId' => $collectionId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('createDocument', array($params), "Google_Service_Firestore_Document"); - } - /** - * Deletes a document. (documents.delete) - * - * @param string $name Required. The resource name of the Document to delete. In - * the format: - * `projects/{project_id}/databases/{database_id}/documents/{document_path}`. - * @param array $optParams Optional parameters. - * - * @opt_param string currentDocument.updateTime When set, the target document - * must exist and have been last updated at that time. - * @opt_param bool currentDocument.exists When set to `true`, the target - * document must exist. When set to `false`, the target document must not exist. - * @return Google_Service_Firestore_FirestoreEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Firestore_FirestoreEmpty"); - } - /** - * Gets a single document. (documents.get) - * - * @param string $name Required. The resource name of the Document to get. In - * the format: - * `projects/{project_id}/databases/{database_id}/documents/{document_path}`. - * @param array $optParams Optional parameters. - * - * @opt_param string transaction Reads the document in a transaction. - * @opt_param string mask.fieldPaths The list of field paths in the mask. See - * Document.fields for a field path syntax reference. - * @opt_param string readTime Reads the version of the document at the given - * time. This may not be older than 60 seconds. - * @return Google_Service_Firestore_Document - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Firestore_Document"); - } - /** - * Lists documents. (documents.listProjectsDatabasesDocuments) - * - * @param string $parent Required. The parent resource name. In the format: - * `projects/{project_id}/databases/{database_id}/documents` or - * `projects/{project_id}/databases/{database_id}/documents/{document_path}`. - * For example: `projects/my-project/databases/my-database/documents` or - * `projects/my-project/databases/my-database/documents/chatrooms/my-chatroom` - * @param string $collectionId Required. The collection ID, relative to - * `parent`, to list. For example: `chatrooms` or `messages`. - * @param array $optParams Optional parameters. - * - * @opt_param bool showMissing If the list should show missing documents. A - * missing document is a document that does not exist but has sub-documents. - * These documents will be returned with a key but will not have fields, - * Document.create_time, or Document.update_time set. - * - * Requests with `show_missing` may not specify `where` or `order_by`. - * @opt_param string pageToken The `next_page_token` value returned from a - * previous List request, if any. - * @opt_param string mask.fieldPaths The list of field paths in the mask. See - * Document.fields for a field path syntax reference. - * @opt_param int pageSize The maximum number of documents to return. - * @opt_param string transaction Reads documents in a transaction. - * @opt_param string readTime Reads documents as they were at the given time. - * This may not be older than 60 seconds. - * @opt_param string orderBy The order to sort results by. For example: - * `priority desc, name`. - * @return Google_Service_Firestore_ListDocumentsResponse - */ - public function listProjectsDatabasesDocuments($parent, $collectionId, $optParams = array()) - { - $params = array('parent' => $parent, 'collectionId' => $collectionId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Firestore_ListDocumentsResponse"); - } - /** - * Lists all the collection IDs underneath a document. - * (documents.listCollectionIds) - * - * @param string $parent Required. The parent document. In the format: - * `projects/{project_id}/databases/{database_id}/documents/{document_path}`. - * For example: `projects/my-project/databases/my-database/documents/chatrooms - * /my-chatroom` - * @param Google_Service_Firestore_ListCollectionIdsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Firestore_ListCollectionIdsResponse - */ - public function listCollectionIds($parent, Google_Service_Firestore_ListCollectionIdsRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('listCollectionIds', array($params), "Google_Service_Firestore_ListCollectionIdsResponse"); - } - /** - * Listens to changes. (documents.listen) - * - * @param string $database Required. The database name. In the format: - * `projects/{project_id}/databases/{database_id}`. - * @param Google_Service_Firestore_ListenRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Firestore_ListenResponse - */ - public function listen($database, Google_Service_Firestore_ListenRequest $postBody, $optParams = array()) - { - $params = array('database' => $database, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('listen', array($params), "Google_Service_Firestore_ListenResponse"); - } - /** - * Updates or inserts a document. (documents.patch) - * - * @param string $name The resource name of the document, for example - * `projects/{project_id}/databases/{database_id}/documents/{document_path}`. - * @param Google_Service_Firestore_Document $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string currentDocument.updateTime When set, the target document - * must exist and have been last updated at that time. - * @opt_param bool currentDocument.exists When set to `true`, the target - * document must exist. When set to `false`, the target document must not exist. - * @opt_param string updateMask.fieldPaths The list of field paths in the mask. - * See Document.fields for a field path syntax reference. - * @opt_param string mask.fieldPaths The list of field paths in the mask. See - * Document.fields for a field path syntax reference. - * @return Google_Service_Firestore_Document - */ - public function patch($name, Google_Service_Firestore_Document $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Firestore_Document"); - } - /** - * Rolls back a transaction. (documents.rollback) - * - * @param string $database Required. The database name. In the format: - * `projects/{project_id}/databases/{database_id}`. - * @param Google_Service_Firestore_RollbackRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Firestore_FirestoreEmpty - */ - public function rollback($database, Google_Service_Firestore_RollbackRequest $postBody, $optParams = array()) - { - $params = array('database' => $database, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('rollback', array($params), "Google_Service_Firestore_FirestoreEmpty"); - } - /** - * Runs a query. (documents.runQuery) - * - * @param string $parent Required. The parent resource name. In the format: - * `projects/{project_id}/databases/{database_id}/documents` or - * `projects/{project_id}/databases/{database_id}/documents/{document_path}`. - * For example: `projects/my-project/databases/my-database/documents` or - * `projects/my-project/databases/my-database/documents/chatrooms/my-chatroom` - * @param Google_Service_Firestore_RunQueryRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Firestore_RunQueryResponse - */ - public function runQuery($parent, Google_Service_Firestore_RunQueryRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('runQuery', array($params), "Google_Service_Firestore_RunQueryResponse"); - } - /** - * Streams batches of document updates and deletes, in order. (documents.write) - * - * @param string $database Required. The database name. In the format: - * `projects/{project_id}/databases/{database_id}`. This is only required in the - * first message. - * @param Google_Service_Firestore_WriteRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Firestore_WriteResponse - */ - public function write($database, Google_Service_Firestore_WriteRequest $postBody, $optParams = array()) - { - $params = array('database' => $database, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('write', array($params), "Google_Service_Firestore_WriteResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Resource/ProjectsDatabasesOperations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Resource/ProjectsDatabasesOperations.php deleted file mode 100644 index 54ac8050..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Resource/ProjectsDatabasesOperations.php +++ /dev/null @@ -1,108 +0,0 @@ - - * $firestoreService = new Google_Service_Firestore(...); - * $operations = $firestoreService->operations; - * - */ -class Google_Service_Firestore_Resource_ProjectsDatabasesOperations extends Google_Service_Resource -{ - /** - * Starts asynchronous cancellation on a long-running operation. The server - * makes a best effort to cancel the operation, but success is not guaranteed. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or - * other methods to check whether the cancellation succeeded or whether the - * operation completed despite cancellation. On successful cancellation, the - * operation is not deleted; instead, it becomes an operation with an - * Operation.error value with a google.rpc.Status.code of 1, corresponding to - * `Code.CANCELLED`. (operations.cancel) - * - * @param string $name The name of the operation resource to be cancelled. - * @param Google_Service_Firestore_GoogleLongrunningCancelOperationRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Firestore_FirestoreEmpty - */ - public function cancel($name, Google_Service_Firestore_GoogleLongrunningCancelOperationRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('cancel', array($params), "Google_Service_Firestore_FirestoreEmpty"); - } - /** - * Deletes a long-running operation. This method indicates that the client is no - * longer interested in the operation result. It does not cancel the operation. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. (operations.delete) - * - * @param string $name The name of the operation resource to be deleted. - * @param array $optParams Optional parameters. - * @return Google_Service_Firestore_FirestoreEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Firestore_FirestoreEmpty"); - } - /** - * Gets the latest state of a long-running operation. Clients can use this - * method to poll the operation result at intervals as recommended by the API - * service. (operations.get) - * - * @param string $name The name of the operation resource. - * @param array $optParams Optional parameters. - * @return Google_Service_Firestore_GoogleLongrunningOperation - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Firestore_GoogleLongrunningOperation"); - } - /** - * Lists operations that match the specified filter in the request. If the - * server doesn't support this method, it returns `UNIMPLEMENTED`. - * - * NOTE: the `name` binding allows API services to override the binding to use - * different resource name schemes, such as `users/operations`. To override the - * binding, API services can add a binding such as - * `"/v1/{name=users}/operations"` to their service configuration. For backwards - * compatibility, the default name includes the operations collection id, - * however overriding users must ensure the name binding is the parent resource, - * without the operations collection id. - * (operations.listProjectsDatabasesOperations) - * - * @param string $name The name of the operation's parent resource. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The standard list page token. - * @opt_param int pageSize The standard list page size. - * @opt_param string filter The standard list filter. - * @return Google_Service_Firestore_GoogleLongrunningListOperationsResponse - */ - public function listProjectsDatabasesOperations($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Firestore_GoogleLongrunningListOperationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Resource/ProjectsLocations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Resource/ProjectsLocations.php deleted file mode 100644 index e3b6708a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Resource/ProjectsLocations.php +++ /dev/null @@ -1,60 +0,0 @@ - - * $firestoreService = new Google_Service_Firestore(...); - * $locations = $firestoreService->locations; - * - */ -class Google_Service_Firestore_Resource_ProjectsLocations extends Google_Service_Resource -{ - /** - * Gets information about a location. (locations.get) - * - * @param string $name Resource name for the location. - * @param array $optParams Optional parameters. - * @return Google_Service_Firestore_Location - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Firestore_Location"); - } - /** - * Lists information about the supported locations for this service. - * (locations.listProjectsLocations) - * - * @param string $name The resource that owns the locations collection, if - * applicable. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The standard list page token. - * @opt_param int pageSize The standard list page size. - * @opt_param string filter The standard list filter. - * @return Google_Service_Firestore_ListLocationsResponse - */ - public function listProjectsLocations($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Firestore_ListLocationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/RollbackRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/RollbackRequest.php deleted file mode 100644 index cb4b8ab8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/RollbackRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -transaction = $transaction; - } - public function getTransaction() - { - return $this->transaction; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/RunQueryRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/RunQueryRequest.php deleted file mode 100644 index a70c796b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/RunQueryRequest.php +++ /dev/null @@ -1,71 +0,0 @@ -newTransaction = $newTransaction; - } - /** - * @return Google_Service_Firestore_TransactionOptions - */ - public function getNewTransaction() - { - return $this->newTransaction; - } - public function setReadTime($readTime) - { - $this->readTime = $readTime; - } - public function getReadTime() - { - return $this->readTime; - } - /** - * @param Google_Service_Firestore_StructuredQuery - */ - public function setStructuredQuery(Google_Service_Firestore_StructuredQuery $structuredQuery) - { - $this->structuredQuery = $structuredQuery; - } - /** - * @return Google_Service_Firestore_StructuredQuery - */ - public function getStructuredQuery() - { - return $this->structuredQuery; - } - public function setTransaction($transaction) - { - $this->transaction = $transaction; - } - public function getTransaction() - { - return $this->transaction; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/RunQueryResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/RunQueryResponse.php deleted file mode 100644 index a2e78af9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/RunQueryResponse.php +++ /dev/null @@ -1,64 +0,0 @@ -document = $document; - } - /** - * @return Google_Service_Firestore_Document - */ - public function getDocument() - { - return $this->document; - } - public function setReadTime($readTime) - { - $this->readTime = $readTime; - } - public function getReadTime() - { - return $this->readTime; - } - public function setSkippedResults($skippedResults) - { - $this->skippedResults = $skippedResults; - } - public function getSkippedResults() - { - return $this->skippedResults; - } - public function setTransaction($transaction) - { - $this->transaction = $transaction; - } - public function getTransaction() - { - return $this->transaction; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Status.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Status.php deleted file mode 100644 index 1880d069..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Status.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/StructuredQuery.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/StructuredQuery.php deleted file mode 100644 index ad65d093..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/StructuredQuery.php +++ /dev/null @@ -1,136 +0,0 @@ -endAt = $endAt; - } - /** - * @return Google_Service_Firestore_Cursor - */ - public function getEndAt() - { - return $this->endAt; - } - /** - * @param Google_Service_Firestore_CollectionSelector - */ - public function setFrom($from) - { - $this->from = $from; - } - /** - * @return Google_Service_Firestore_CollectionSelector - */ - public function getFrom() - { - return $this->from; - } - public function setLimit($limit) - { - $this->limit = $limit; - } - public function getLimit() - { - return $this->limit; - } - public function setOffset($offset) - { - $this->offset = $offset; - } - public function getOffset() - { - return $this->offset; - } - /** - * @param Google_Service_Firestore_Order - */ - public function setOrderBy($orderBy) - { - $this->orderBy = $orderBy; - } - /** - * @return Google_Service_Firestore_Order - */ - public function getOrderBy() - { - return $this->orderBy; - } - /** - * @param Google_Service_Firestore_Projection - */ - public function setSelect(Google_Service_Firestore_Projection $select) - { - $this->select = $select; - } - /** - * @return Google_Service_Firestore_Projection - */ - public function getSelect() - { - return $this->select; - } - /** - * @param Google_Service_Firestore_Cursor - */ - public function setStartAt(Google_Service_Firestore_Cursor $startAt) - { - $this->startAt = $startAt; - } - /** - * @return Google_Service_Firestore_Cursor - */ - public function getStartAt() - { - return $this->startAt; - } - /** - * @param Google_Service_Firestore_Filter - */ - public function setWhere(Google_Service_Firestore_Filter $where) - { - $this->where = $where; - } - /** - * @return Google_Service_Firestore_Filter - */ - public function getWhere() - { - return $this->where; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Target.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Target.php deleted file mode 100644 index 0d5533bf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Target.php +++ /dev/null @@ -1,89 +0,0 @@ -documents = $documents; - } - /** - * @return Google_Service_Firestore_DocumentsTarget - */ - public function getDocuments() - { - return $this->documents; - } - public function setOnce($once) - { - $this->once = $once; - } - public function getOnce() - { - return $this->once; - } - /** - * @param Google_Service_Firestore_QueryTarget - */ - public function setQuery(Google_Service_Firestore_QueryTarget $query) - { - $this->query = $query; - } - /** - * @return Google_Service_Firestore_QueryTarget - */ - public function getQuery() - { - return $this->query; - } - public function setReadTime($readTime) - { - $this->readTime = $readTime; - } - public function getReadTime() - { - return $this->readTime; - } - public function setResumeToken($resumeToken) - { - $this->resumeToken = $resumeToken; - } - public function getResumeToken() - { - return $this->resumeToken; - } - public function setTargetId($targetId) - { - $this->targetId = $targetId; - } - public function getTargetId() - { - return $this->targetId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/TargetChange.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/TargetChange.php deleted file mode 100644 index b600ac1e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/TargetChange.php +++ /dev/null @@ -1,74 +0,0 @@ -cause = $cause; - } - /** - * @return Google_Service_Firestore_Status - */ - public function getCause() - { - return $this->cause; - } - public function setReadTime($readTime) - { - $this->readTime = $readTime; - } - public function getReadTime() - { - return $this->readTime; - } - public function setResumeToken($resumeToken) - { - $this->resumeToken = $resumeToken; - } - public function getResumeToken() - { - return $this->resumeToken; - } - public function setTargetChangeType($targetChangeType) - { - $this->targetChangeType = $targetChangeType; - } - public function getTargetChangeType() - { - return $this->targetChangeType; - } - public function setTargetIds($targetIds) - { - $this->targetIds = $targetIds; - } - public function getTargetIds() - { - return $this->targetIds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/TransactionOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/TransactionOptions.php deleted file mode 100644 index ef056938..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/TransactionOptions.php +++ /dev/null @@ -1,53 +0,0 @@ -readOnly = $readOnly; - } - /** - * @return Google_Service_Firestore_ReadOnly - */ - public function getReadOnly() - { - return $this->readOnly; - } - /** - * @param Google_Service_Firestore_ReadWrite - */ - public function setReadWrite(Google_Service_Firestore_ReadWrite $readWrite) - { - $this->readWrite = $readWrite; - } - /** - * @return Google_Service_Firestore_ReadWrite - */ - public function getReadWrite() - { - return $this->readWrite; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/UnaryFilter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/UnaryFilter.php deleted file mode 100644 index 559c004a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/UnaryFilter.php +++ /dev/null @@ -1,46 +0,0 @@ -field = $field; - } - /** - * @return Google_Service_Firestore_FieldReference - */ - public function getField() - { - return $this->field; - } - public function setOp($op) - { - $this->op = $op; - } - public function getOp() - { - return $this->op; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Value.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Value.php deleted file mode 100644 index 31d699ce..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Value.php +++ /dev/null @@ -1,141 +0,0 @@ -arrayValue = $arrayValue; - } - /** - * @return Google_Service_Firestore_ArrayValue - */ - public function getArrayValue() - { - return $this->arrayValue; - } - public function setBooleanValue($booleanValue) - { - $this->booleanValue = $booleanValue; - } - public function getBooleanValue() - { - return $this->booleanValue; - } - public function setBytesValue($bytesValue) - { - $this->bytesValue = $bytesValue; - } - public function getBytesValue() - { - return $this->bytesValue; - } - public function setDoubleValue($doubleValue) - { - $this->doubleValue = $doubleValue; - } - public function getDoubleValue() - { - return $this->doubleValue; - } - /** - * @param Google_Service_Firestore_LatLng - */ - public function setGeoPointValue(Google_Service_Firestore_LatLng $geoPointValue) - { - $this->geoPointValue = $geoPointValue; - } - /** - * @return Google_Service_Firestore_LatLng - */ - public function getGeoPointValue() - { - return $this->geoPointValue; - } - public function setIntegerValue($integerValue) - { - $this->integerValue = $integerValue; - } - public function getIntegerValue() - { - return $this->integerValue; - } - /** - * @param Google_Service_Firestore_MapValue - */ - public function setMapValue(Google_Service_Firestore_MapValue $mapValue) - { - $this->mapValue = $mapValue; - } - /** - * @return Google_Service_Firestore_MapValue - */ - public function getMapValue() - { - return $this->mapValue; - } - public function setNullValue($nullValue) - { - $this->nullValue = $nullValue; - } - public function getNullValue() - { - return $this->nullValue; - } - public function setReferenceValue($referenceValue) - { - $this->referenceValue = $referenceValue; - } - public function getReferenceValue() - { - return $this->referenceValue; - } - public function setStringValue($stringValue) - { - $this->stringValue = $stringValue; - } - public function getStringValue() - { - return $this->stringValue; - } - public function setTimestampValue($timestampValue) - { - $this->timestampValue = $timestampValue; - } - public function getTimestampValue() - { - return $this->timestampValue; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Write.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Write.php deleted file mode 100644 index 064fbedf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/Write.php +++ /dev/null @@ -1,94 +0,0 @@ -currentDocument = $currentDocument; - } - /** - * @return Google_Service_Firestore_Precondition - */ - public function getCurrentDocument() - { - return $this->currentDocument; - } - public function setDelete($delete) - { - $this->delete = $delete; - } - public function getDelete() - { - return $this->delete; - } - /** - * @param Google_Service_Firestore_DocumentTransform - */ - public function setTransform(Google_Service_Firestore_DocumentTransform $transform) - { - $this->transform = $transform; - } - /** - * @return Google_Service_Firestore_DocumentTransform - */ - public function getTransform() - { - return $this->transform; - } - /** - * @param Google_Service_Firestore_Document - */ - public function setUpdate(Google_Service_Firestore_Document $update) - { - $this->update = $update; - } - /** - * @return Google_Service_Firestore_Document - */ - public function getUpdate() - { - return $this->update; - } - /** - * @param Google_Service_Firestore_DocumentMask - */ - public function setUpdateMask(Google_Service_Firestore_DocumentMask $updateMask) - { - $this->updateMask = $updateMask; - } - /** - * @return Google_Service_Firestore_DocumentMask - */ - public function getUpdateMask() - { - return $this->updateMask; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/WriteRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/WriteRequest.php deleted file mode 100644 index e2251da7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/WriteRequest.php +++ /dev/null @@ -1,65 +0,0 @@ -labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setStreamId($streamId) - { - $this->streamId = $streamId; - } - public function getStreamId() - { - return $this->streamId; - } - public function setStreamToken($streamToken) - { - $this->streamToken = $streamToken; - } - public function getStreamToken() - { - return $this->streamToken; - } - /** - * @param Google_Service_Firestore_Write - */ - public function setWrites($writes) - { - $this->writes = $writes; - } - /** - * @return Google_Service_Firestore_Write - */ - public function getWrites() - { - return $this->writes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/WriteResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/WriteResponse.php deleted file mode 100644 index f786c456..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/WriteResponse.php +++ /dev/null @@ -1,65 +0,0 @@ -commitTime = $commitTime; - } - public function getCommitTime() - { - return $this->commitTime; - } - public function setStreamId($streamId) - { - $this->streamId = $streamId; - } - public function getStreamId() - { - return $this->streamId; - } - public function setStreamToken($streamToken) - { - $this->streamToken = $streamToken; - } - public function getStreamToken() - { - return $this->streamToken; - } - /** - * @param Google_Service_Firestore_WriteResult - */ - public function setWriteResults($writeResults) - { - $this->writeResults = $writeResults; - } - /** - * @return Google_Service_Firestore_WriteResult - */ - public function getWriteResults() - { - return $this->writeResults; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/WriteResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/WriteResult.php deleted file mode 100644 index 5cfd25ac..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Firestore/WriteResult.php +++ /dev/null @@ -1,47 +0,0 @@ -transformResults = $transformResults; - } - /** - * @return Google_Service_Firestore_Value - */ - public function getTransformResults() - { - return $this->transformResults; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness.php deleted file mode 100644 index 5a186598..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness.php +++ /dev/null @@ -1,412 +0,0 @@ - - * Stores and accesses user data in the fitness store from apps on any platform.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Fitness extends Google_Service -{ - /** Use Google Fit to see and store your physical activity data. */ - const FITNESS_ACTIVITY_READ = - "https://www.googleapis.com/auth/fitness.activity.read"; - /** See and add to your Google Fit physical activity data. */ - const FITNESS_ACTIVITY_WRITE = - "https://www.googleapis.com/auth/fitness.activity.write"; - /** See info about your blood glucose in Google Fit. I consent to Google sharing my blood glucose information with this app.. */ - const FITNESS_BLOOD_GLUCOSE_READ = - "https://www.googleapis.com/auth/fitness.blood_glucose.read"; - /** See and add info about your blood glucose to Google Fit. I consent to Google sharing my blood glucose information with this app.. */ - const FITNESS_BLOOD_GLUCOSE_WRITE = - "https://www.googleapis.com/auth/fitness.blood_glucose.write"; - /** See info about your blood pressure in Google Fit. I consent to Google sharing my blood pressure information with this app.. */ - const FITNESS_BLOOD_PRESSURE_READ = - "https://www.googleapis.com/auth/fitness.blood_pressure.read"; - /** See and add info about your blood pressure in Google Fit. I consent to Google sharing my blood pressure information with this app.. */ - const FITNESS_BLOOD_PRESSURE_WRITE = - "https://www.googleapis.com/auth/fitness.blood_pressure.write"; - /** See info about your body measurements and heart rate in Google Fit. */ - const FITNESS_BODY_READ = - "https://www.googleapis.com/auth/fitness.body.read"; - /** See and add info about your body measurements and heart rate to Google Fit. */ - const FITNESS_BODY_WRITE = - "https://www.googleapis.com/auth/fitness.body.write"; - /** See info about your body temperature in Google Fit. I consent to Google sharing my body temperature information with this app.. */ - const FITNESS_BODY_TEMPERATURE_READ = - "https://www.googleapis.com/auth/fitness.body_temperature.read"; - /** See and add to info about your body temperature in Google Fit. I consent to Google sharing my body temperature information with this app.. */ - const FITNESS_BODY_TEMPERATURE_WRITE = - "https://www.googleapis.com/auth/fitness.body_temperature.write"; - /** See your Google Fit speed and distance data. */ - const FITNESS_LOCATION_READ = - "https://www.googleapis.com/auth/fitness.location.read"; - /** See and add to your Google Fit location data. */ - const FITNESS_LOCATION_WRITE = - "https://www.googleapis.com/auth/fitness.location.write"; - /** See info about your nutrition in Google Fit. */ - const FITNESS_NUTRITION_READ = - "https://www.googleapis.com/auth/fitness.nutrition.read"; - /** See and add to info about your nutrition in Google Fit. */ - const FITNESS_NUTRITION_WRITE = - "https://www.googleapis.com/auth/fitness.nutrition.write"; - /** See info about your oxygen saturation in Google Fit. I consent to Google sharing my oxygen saturation information with this app.. */ - const FITNESS_OXYGEN_SATURATION_READ = - "https://www.googleapis.com/auth/fitness.oxygen_saturation.read"; - /** See and add info about your oxygen saturation in Google Fit. I consent to Google sharing my oxygen saturation information with this app.. */ - const FITNESS_OXYGEN_SATURATION_WRITE = - "https://www.googleapis.com/auth/fitness.oxygen_saturation.write"; - /** See info about your reproductive health in Google Fit. I consent to Google sharing my reporductive health information with this app.. */ - const FITNESS_REPRODUCTIVE_HEALTH_READ = - "https://www.googleapis.com/auth/fitness.reproductive_health.read"; - /** See and add info about your reproductive health in Google Fit. I consent to Google sharing my reporductive health information with this app.. */ - const FITNESS_REPRODUCTIVE_HEALTH_WRITE = - "https://www.googleapis.com/auth/fitness.reproductive_health.write"; - - public $users_dataSources; - public $users_dataSources_dataPointChanges; - public $users_dataSources_datasets; - public $users_dataset; - public $users_sessions; - - /** - * Constructs the internal representation of the Fitness service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://www.googleapis.com/'; - $this->servicePath = 'fitness/v1/users/'; - $this->batchPath = 'batch/fitness/v1'; - $this->version = 'v1'; - $this->serviceName = 'fitness'; - - $this->users_dataSources = new Google_Service_Fitness_Resource_UsersDataSources( - $this, - $this->serviceName, - 'dataSources', - array( - 'methods' => array( - 'create' => array( - 'path' => '{userId}/dataSources', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => '{userId}/dataSources/{dataSourceId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'dataSourceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{userId}/dataSources/{dataSourceId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'dataSourceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{userId}/dataSources', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'dataTypeName' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ),'update' => array( - 'path' => '{userId}/dataSources/{dataSourceId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'dataSourceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->users_dataSources_dataPointChanges = new Google_Service_Fitness_Resource_UsersDataSourcesDataPointChanges( - $this, - $this->serviceName, - 'dataPointChanges', - array( - 'methods' => array( - 'list' => array( - 'path' => '{userId}/dataSources/{dataSourceId}/dataPointChanges', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'dataSourceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'limit' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->users_dataSources_datasets = new Google_Service_Fitness_Resource_UsersDataSourcesDatasets( - $this, - $this->serviceName, - 'datasets', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{userId}/dataSources/{dataSourceId}/datasets/{datasetId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'dataSourceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'datasetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'currentTimeMillis' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'modifiedTimeMillis' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{userId}/dataSources/{dataSourceId}/datasets/{datasetId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'dataSourceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'datasetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'limit' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => '{userId}/dataSources/{dataSourceId}/datasets/{datasetId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'dataSourceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'datasetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'currentTimeMillis' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->users_dataset = new Google_Service_Fitness_Resource_UsersDataset( - $this, - $this->serviceName, - 'dataset', - array( - 'methods' => array( - 'aggregate' => array( - 'path' => '{userId}/dataset:aggregate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->users_sessions = new Google_Service_Fitness_Resource_UsersSessions( - $this, - $this->serviceName, - 'sessions', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{userId}/sessions/{sessionId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sessionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'currentTimeMillis' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{userId}/sessions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'activityType' => array( - 'location' => 'query', - 'type' => 'integer', - 'repeated' => true, - ), - 'endTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'includeDeleted' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'startTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => '{userId}/sessions/{sessionId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sessionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'currentTimeMillis' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/AggregateBucket.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/AggregateBucket.php deleted file mode 100644 index f2edfd7d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/AggregateBucket.php +++ /dev/null @@ -1,90 +0,0 @@ -activity = $activity; - } - public function getActivity() - { - return $this->activity; - } - /** - * @param Google_Service_Fitness_Dataset - */ - public function setDataset($dataset) - { - $this->dataset = $dataset; - } - /** - * @return Google_Service_Fitness_Dataset - */ - public function getDataset() - { - return $this->dataset; - } - public function setEndTimeMillis($endTimeMillis) - { - $this->endTimeMillis = $endTimeMillis; - } - public function getEndTimeMillis() - { - return $this->endTimeMillis; - } - /** - * @param Google_Service_Fitness_Session - */ - public function setSession(Google_Service_Fitness_Session $session) - { - $this->session = $session; - } - /** - * @return Google_Service_Fitness_Session - */ - public function getSession() - { - return $this->session; - } - public function setStartTimeMillis($startTimeMillis) - { - $this->startTimeMillis = $startTimeMillis; - } - public function getStartTimeMillis() - { - return $this->startTimeMillis; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/AggregateBy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/AggregateBy.php deleted file mode 100644 index 0a58cb08..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/AggregateBy.php +++ /dev/null @@ -1,39 +0,0 @@ -dataSourceId = $dataSourceId; - } - public function getDataSourceId() - { - return $this->dataSourceId; - } - public function setDataTypeName($dataTypeName) - { - $this->dataTypeName = $dataTypeName; - } - public function getDataTypeName() - { - return $this->dataTypeName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/AggregateRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/AggregateRequest.php deleted file mode 100644 index c0302f93..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/AggregateRequest.php +++ /dev/null @@ -1,129 +0,0 @@ -aggregateBy = $aggregateBy; - } - /** - * @return Google_Service_Fitness_AggregateBy - */ - public function getAggregateBy() - { - return $this->aggregateBy; - } - /** - * @param Google_Service_Fitness_BucketByActivity - */ - public function setBucketByActivitySegment(Google_Service_Fitness_BucketByActivity $bucketByActivitySegment) - { - $this->bucketByActivitySegment = $bucketByActivitySegment; - } - /** - * @return Google_Service_Fitness_BucketByActivity - */ - public function getBucketByActivitySegment() - { - return $this->bucketByActivitySegment; - } - /** - * @param Google_Service_Fitness_BucketByActivity - */ - public function setBucketByActivityType(Google_Service_Fitness_BucketByActivity $bucketByActivityType) - { - $this->bucketByActivityType = $bucketByActivityType; - } - /** - * @return Google_Service_Fitness_BucketByActivity - */ - public function getBucketByActivityType() - { - return $this->bucketByActivityType; - } - /** - * @param Google_Service_Fitness_BucketBySession - */ - public function setBucketBySession(Google_Service_Fitness_BucketBySession $bucketBySession) - { - $this->bucketBySession = $bucketBySession; - } - /** - * @return Google_Service_Fitness_BucketBySession - */ - public function getBucketBySession() - { - return $this->bucketBySession; - } - /** - * @param Google_Service_Fitness_BucketByTime - */ - public function setBucketByTime(Google_Service_Fitness_BucketByTime $bucketByTime) - { - $this->bucketByTime = $bucketByTime; - } - /** - * @return Google_Service_Fitness_BucketByTime - */ - public function getBucketByTime() - { - return $this->bucketByTime; - } - public function setEndTimeMillis($endTimeMillis) - { - $this->endTimeMillis = $endTimeMillis; - } - public function getEndTimeMillis() - { - return $this->endTimeMillis; - } - public function setFilteredDataQualityStandard($filteredDataQualityStandard) - { - $this->filteredDataQualityStandard = $filteredDataQualityStandard; - } - public function getFilteredDataQualityStandard() - { - return $this->filteredDataQualityStandard; - } - public function setStartTimeMillis($startTimeMillis) - { - $this->startTimeMillis = $startTimeMillis; - } - public function getStartTimeMillis() - { - return $this->startTimeMillis; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/AggregateResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/AggregateResponse.php deleted file mode 100644 index 58263de3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/AggregateResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -bucket = $bucket; - } - /** - * @return Google_Service_Fitness_AggregateBucket - */ - public function getBucket() - { - return $this->bucket; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/Application.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/Application.php deleted file mode 100644 index 01dd6810..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/Application.php +++ /dev/null @@ -1,57 +0,0 @@ -detailsUrl = $detailsUrl; - } - public function getDetailsUrl() - { - return $this->detailsUrl; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPackageName($packageName) - { - $this->packageName = $packageName; - } - public function getPackageName() - { - return $this->packageName; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/BucketByActivity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/BucketByActivity.php deleted file mode 100644 index 9fd8f251..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/BucketByActivity.php +++ /dev/null @@ -1,39 +0,0 @@ -activityDataSourceId = $activityDataSourceId; - } - public function getActivityDataSourceId() - { - return $this->activityDataSourceId; - } - public function setMinDurationMillis($minDurationMillis) - { - $this->minDurationMillis = $minDurationMillis; - } - public function getMinDurationMillis() - { - return $this->minDurationMillis; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/BucketBySession.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/BucketBySession.php deleted file mode 100644 index 8d4ce8b4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/BucketBySession.php +++ /dev/null @@ -1,30 +0,0 @@ -minDurationMillis = $minDurationMillis; - } - public function getMinDurationMillis() - { - return $this->minDurationMillis; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/BucketByTime.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/BucketByTime.php deleted file mode 100644 index 0c94e69c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/BucketByTime.php +++ /dev/null @@ -1,46 +0,0 @@ -durationMillis = $durationMillis; - } - public function getDurationMillis() - { - return $this->durationMillis; - } - /** - * @param Google_Service_Fitness_BucketByTimePeriod - */ - public function setPeriod(Google_Service_Fitness_BucketByTimePeriod $period) - { - $this->period = $period; - } - /** - * @return Google_Service_Fitness_BucketByTimePeriod - */ - public function getPeriod() - { - return $this->period; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/BucketByTimePeriod.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/BucketByTimePeriod.php deleted file mode 100644 index 7d947ff6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/BucketByTimePeriod.php +++ /dev/null @@ -1,48 +0,0 @@ -timeZoneId = $timeZoneId; - } - public function getTimeZoneId() - { - return $this->timeZoneId; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/DataPoint.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/DataPoint.php deleted file mode 100644 index 69aafdc6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/DataPoint.php +++ /dev/null @@ -1,101 +0,0 @@ -computationTimeMillis = $computationTimeMillis; - } - public function getComputationTimeMillis() - { - return $this->computationTimeMillis; - } - public function setDataTypeName($dataTypeName) - { - $this->dataTypeName = $dataTypeName; - } - public function getDataTypeName() - { - return $this->dataTypeName; - } - public function setEndTimeNanos($endTimeNanos) - { - $this->endTimeNanos = $endTimeNanos; - } - public function getEndTimeNanos() - { - return $this->endTimeNanos; - } - public function setModifiedTimeMillis($modifiedTimeMillis) - { - $this->modifiedTimeMillis = $modifiedTimeMillis; - } - public function getModifiedTimeMillis() - { - return $this->modifiedTimeMillis; - } - public function setOriginDataSourceId($originDataSourceId) - { - $this->originDataSourceId = $originDataSourceId; - } - public function getOriginDataSourceId() - { - return $this->originDataSourceId; - } - public function setRawTimestampNanos($rawTimestampNanos) - { - $this->rawTimestampNanos = $rawTimestampNanos; - } - public function getRawTimestampNanos() - { - return $this->rawTimestampNanos; - } - public function setStartTimeNanos($startTimeNanos) - { - $this->startTimeNanos = $startTimeNanos; - } - public function getStartTimeNanos() - { - return $this->startTimeNanos; - } - /** - * @param Google_Service_Fitness_Value - */ - public function setValue($value) - { - $this->value = $value; - } - /** - * @return Google_Service_Fitness_Value - */ - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/DataSource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/DataSource.php deleted file mode 100644 index 449188e7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/DataSource.php +++ /dev/null @@ -1,115 +0,0 @@ -application = $application; - } - /** - * @return Google_Service_Fitness_Application - */ - public function getApplication() - { - return $this->application; - } - public function setDataQualityStandard($dataQualityStandard) - { - $this->dataQualityStandard = $dataQualityStandard; - } - public function getDataQualityStandard() - { - return $this->dataQualityStandard; - } - public function setDataStreamId($dataStreamId) - { - $this->dataStreamId = $dataStreamId; - } - public function getDataStreamId() - { - return $this->dataStreamId; - } - public function setDataStreamName($dataStreamName) - { - $this->dataStreamName = $dataStreamName; - } - public function getDataStreamName() - { - return $this->dataStreamName; - } - /** - * @param Google_Service_Fitness_DataType - */ - public function setDataType(Google_Service_Fitness_DataType $dataType) - { - $this->dataType = $dataType; - } - /** - * @return Google_Service_Fitness_DataType - */ - public function getDataType() - { - return $this->dataType; - } - /** - * @param Google_Service_Fitness_Device - */ - public function setDevice(Google_Service_Fitness_Device $device) - { - $this->device = $device; - } - /** - * @return Google_Service_Fitness_Device - */ - public function getDevice() - { - return $this->device; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/DataType.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/DataType.php deleted file mode 100644 index b15fcdc2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/DataType.php +++ /dev/null @@ -1,47 +0,0 @@ -field = $field; - } - /** - * @return Google_Service_Fitness_DataTypeField - */ - public function getField() - { - return $this->field; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/DataTypeField.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/DataTypeField.php deleted file mode 100644 index a821beca..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/DataTypeField.php +++ /dev/null @@ -1,48 +0,0 @@ -format = $format; - } - public function getFormat() - { - return $this->format; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOptional($optional) - { - $this->optional = $optional; - } - public function getOptional() - { - return $this->optional; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/Dataset.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/Dataset.php deleted file mode 100644 index f4891c38..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/Dataset.php +++ /dev/null @@ -1,74 +0,0 @@ -dataSourceId = $dataSourceId; - } - public function getDataSourceId() - { - return $this->dataSourceId; - } - public function setMaxEndTimeNs($maxEndTimeNs) - { - $this->maxEndTimeNs = $maxEndTimeNs; - } - public function getMaxEndTimeNs() - { - return $this->maxEndTimeNs; - } - public function setMinStartTimeNs($minStartTimeNs) - { - $this->minStartTimeNs = $minStartTimeNs; - } - public function getMinStartTimeNs() - { - return $this->minStartTimeNs; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Fitness_DataPoint - */ - public function setPoint($point) - { - $this->point = $point; - } - /** - * @return Google_Service_Fitness_DataPoint - */ - public function getPoint() - { - return $this->point; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/Device.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/Device.php deleted file mode 100644 index 9a5dfe9d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/Device.php +++ /dev/null @@ -1,66 +0,0 @@ -manufacturer = $manufacturer; - } - public function getManufacturer() - { - return $this->manufacturer; - } - public function setModel($model) - { - $this->model = $model; - } - public function getModel() - { - return $this->model; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setUid($uid) - { - $this->uid = $uid; - } - public function getUid() - { - return $this->uid; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/ListDataPointChangesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/ListDataPointChangesResponse.php deleted file mode 100644 index 4963afad..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/ListDataPointChangesResponse.php +++ /dev/null @@ -1,72 +0,0 @@ -dataSourceId = $dataSourceId; - } - public function getDataSourceId() - { - return $this->dataSourceId; - } - /** - * @param Google_Service_Fitness_DataPoint - */ - public function setDeletedDataPoint($deletedDataPoint) - { - $this->deletedDataPoint = $deletedDataPoint; - } - /** - * @return Google_Service_Fitness_DataPoint - */ - public function getDeletedDataPoint() - { - return $this->deletedDataPoint; - } - /** - * @param Google_Service_Fitness_DataPoint - */ - public function setInsertedDataPoint($insertedDataPoint) - { - $this->insertedDataPoint = $insertedDataPoint; - } - /** - * @return Google_Service_Fitness_DataPoint - */ - public function getInsertedDataPoint() - { - return $this->insertedDataPoint; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/ListDataSourcesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/ListDataSourcesResponse.php deleted file mode 100644 index c9f58d10..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/ListDataSourcesResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -dataSource = $dataSource; - } - /** - * @return Google_Service_Fitness_DataSource - */ - public function getDataSource() - { - return $this->dataSource; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/ListSessionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/ListSessionsResponse.php deleted file mode 100644 index 08e6c823..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/ListSessionsResponse.php +++ /dev/null @@ -1,72 +0,0 @@ -deletedSession = $deletedSession; - } - /** - * @return Google_Service_Fitness_Session - */ - public function getDeletedSession() - { - return $this->deletedSession; - } - public function setHasMoreData($hasMoreData) - { - $this->hasMoreData = $hasMoreData; - } - public function getHasMoreData() - { - return $this->hasMoreData; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Fitness_Session - */ - public function setSession($session) - { - $this->session = $session; - } - /** - * @return Google_Service_Fitness_Session - */ - public function getSession() - { - return $this->session; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/MapValue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/MapValue.php deleted file mode 100644 index 0a7b3150..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/MapValue.php +++ /dev/null @@ -1,30 +0,0 @@ -fpVal = $fpVal; - } - public function getFpVal() - { - return $this->fpVal; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/Resource/Users.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/Resource/Users.php deleted file mode 100644 index 7062c449..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/Resource/Users.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $fitnessService = new Google_Service_Fitness(...); - * $users = $fitnessService->users; - * - */ -class Google_Service_Fitness_Resource_Users extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/Resource/UsersDataSources.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/Resource/UsersDataSources.php deleted file mode 100644 index fbebdb08..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/Resource/UsersDataSources.php +++ /dev/null @@ -1,141 +0,0 @@ - - * $fitnessService = new Google_Service_Fitness(...); - * $dataSources = $fitnessService->dataSources; - * - */ -class Google_Service_Fitness_Resource_UsersDataSources extends Google_Service_Resource -{ - /** - * A data source is a unique source of sensor data. Data sources can expose raw - * data coming from hardware sensors on local or companion devices. They can - * also expose derived data, created by transforming or merging other data - * sources. Multiple data sources can exist for the same data type. Every data - * point in every dataset inserted into or read from the Fitness API has an - * associated data source. - * - * Each data source produces a unique stream of dataset updates, with a unique - * data source identifier. Not all changes to data source affect the data stream - * ID, so that data collected by updated versions of the same application/device - * can still be considered to belong to the same data source. - * - * Data sources are addressed using a string generated by the server, based on - * the contents of the source being created. - * - * Creates a new data source that is unique across all data sources belonging to - * this user. The dataStreamId field should be excluded. This will be - * automatically generated by the server with the correct format. If a - * dataStreamId is included, it must match the format that the server would - * generate. This format is a combination of some fields from the data source, - * and has a specific order. If it doesn't match, the request will fail with an - * error. - * - * In addition to the data source fields reflected into the data source ID, the - * developer project number that is authenticated when creating the data source - * is included. This developer project number is obfuscated when read by any - * other developer reading public data types. (dataSources.create) - * - * @param string $userId Create the data source for the person identified. Use - * me to indicate the authenticated user. Only me is supported at this time. - * @param Google_Service_Fitness_DataSource $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Fitness_DataSource - */ - public function create($userId, Google_Service_Fitness_DataSource $postBody, $optParams = array()) - { - $params = array('userId' => $userId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Fitness_DataSource"); - } - /** - * Deletes the specified data source. The request will fail if the data source - * contains any data points. (dataSources.delete) - * - * @param string $userId Retrieve a data source for the person identified. Use - * me to indicate the authenticated user. Only me is supported at this time. - * @param string $dataSourceId The data stream ID of the data source to delete. - * @param array $optParams Optional parameters. - * @return Google_Service_Fitness_DataSource - */ - public function delete($userId, $dataSourceId, $optParams = array()) - { - $params = array('userId' => $userId, 'dataSourceId' => $dataSourceId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Fitness_DataSource"); - } - /** - * Returns the specified data source. (dataSources.get) - * - * @param string $userId Retrieve a data source for the person identified. Use - * me to indicate the authenticated user. Only me is supported at this time. - * @param string $dataSourceId The data stream ID of the data source to - * retrieve. - * @param array $optParams Optional parameters. - * @return Google_Service_Fitness_DataSource - */ - public function get($userId, $dataSourceId, $optParams = array()) - { - $params = array('userId' => $userId, 'dataSourceId' => $dataSourceId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Fitness_DataSource"); - } - /** - * Lists all data sources that are visible to the developer, using the OAuth - * scopes provided. The list is not exhaustive; the user may have private data - * sources that are only visible to other developers, or calls using other - * scopes. (dataSources.listUsersDataSources) - * - * @param string $userId List data sources for the person identified. Use me to - * indicate the authenticated user. Only me is supported at this time. - * @param array $optParams Optional parameters. - * - * @opt_param string dataTypeName The names of data types to include in the - * list. If not specified, all data sources will be returned. - * @return Google_Service_Fitness_ListDataSourcesResponse - */ - public function listUsersDataSources($userId, $optParams = array()) - { - $params = array('userId' => $userId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Fitness_ListDataSourcesResponse"); - } - /** - * Updates the specified data source. The dataStreamId, dataType, type, - * dataStreamName, and device properties with the exception of version, cannot - * be modified. - * - * Data sources are identified by their dataStreamId. (dataSources.update) - * - * @param string $userId Update the data source for the person identified. Use - * me to indicate the authenticated user. Only me is supported at this time. - * @param string $dataSourceId The data stream ID of the data source to update. - * @param Google_Service_Fitness_DataSource $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Fitness_DataSource - */ - public function update($userId, $dataSourceId, Google_Service_Fitness_DataSource $postBody, $optParams = array()) - { - $params = array('userId' => $userId, 'dataSourceId' => $dataSourceId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Fitness_DataSource"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/Resource/UsersDataSourcesDataPointChanges.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/Resource/UsersDataSourcesDataPointChanges.php deleted file mode 100644 index 4891a4dd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/Resource/UsersDataSourcesDataPointChanges.php +++ /dev/null @@ -1,51 +0,0 @@ - - * $fitnessService = new Google_Service_Fitness(...); - * $dataPointChanges = $fitnessService->dataPointChanges; - * - */ -class Google_Service_Fitness_Resource_UsersDataSourcesDataPointChanges extends Google_Service_Resource -{ - /** - * Queries for user's data point changes for a particular data source. - * (dataPointChanges.listUsersDataSourcesDataPointChanges) - * - * @param string $userId List data points for the person identified. Use me to - * indicate the authenticated user. Only me is supported at this time. - * @param string $dataSourceId The data stream ID of the data source that - * created the dataset. - * @param array $optParams Optional parameters. - * - * @opt_param int limit If specified, no more than this many data point changes - * will be included in the response. - * @opt_param string pageToken The continuation token, which is used to page - * through large result sets. To get the next page of results, set this - * parameter to the value of nextPageToken from the previous response. - * @return Google_Service_Fitness_ListDataPointChangesResponse - */ - public function listUsersDataSourcesDataPointChanges($userId, $dataSourceId, $optParams = array()) - { - $params = array('userId' => $userId, 'dataSourceId' => $dataSourceId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Fitness_ListDataPointChangesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/Resource/UsersDataSourcesDatasets.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/Resource/UsersDataSourcesDatasets.php deleted file mode 100644 index 4f1a57b6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/Resource/UsersDataSourcesDatasets.php +++ /dev/null @@ -1,119 +0,0 @@ - - * $fitnessService = new Google_Service_Fitness(...); - * $datasets = $fitnessService->datasets; - * - */ -class Google_Service_Fitness_Resource_UsersDataSourcesDatasets extends Google_Service_Resource -{ - /** - * Performs an inclusive delete of all data points whose start and end times - * have any overlap with the time range specified by the dataset ID. For most - * data types, the entire data point will be deleted. For data types where the - * time span represents a consistent value (such as - * com.google.activity.segment), and a data point straddles either end point of - * the dataset, only the overlapping portion of the data point will be deleted. - * (datasets.delete) - * - * @param string $userId Delete a dataset for the person identified. Use me to - * indicate the authenticated user. Only me is supported at this time. - * @param string $dataSourceId The data stream ID of the data source that - * created the dataset. - * @param string $datasetId Dataset identifier that is a composite of the - * minimum data point start time and maximum data point end time represented as - * nanoseconds from the epoch. The ID is formatted like: "startTime-endTime" - * where startTime and endTime are 64 bit integers. - * @param array $optParams Optional parameters. - * - * @opt_param string currentTimeMillis The client's current time in milliseconds - * since epoch. - * @opt_param string modifiedTimeMillis When the operation was performed on the - * client. - */ - public function delete($userId, $dataSourceId, $datasetId, $optParams = array()) - { - $params = array('userId' => $userId, 'dataSourceId' => $dataSourceId, 'datasetId' => $datasetId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Returns a dataset containing all data points whose start and end times - * overlap with the specified range of the dataset minimum start time and - * maximum end time. Specifically, any data point whose start time is less than - * or equal to the dataset end time and whose end time is greater than or equal - * to the dataset start time. (datasets.get) - * - * @param string $userId Retrieve a dataset for the person identified. Use me to - * indicate the authenticated user. Only me is supported at this time. - * @param string $dataSourceId The data stream ID of the data source that - * created the dataset. - * @param string $datasetId Dataset identifier that is a composite of the - * minimum data point start time and maximum data point end time represented as - * nanoseconds from the epoch. The ID is formatted like: "startTime-endTime" - * where startTime and endTime are 64 bit integers. - * @param array $optParams Optional parameters. - * - * @opt_param int limit If specified, no more than this many data points will be - * included in the dataset. If there are more data points in the dataset, - * nextPageToken will be set in the dataset response. - * @opt_param string pageToken The continuation token, which is used to page - * through large datasets. To get the next page of a dataset, set this parameter - * to the value of nextPageToken from the previous response. Each subsequent - * call will yield a partial dataset with data point end timestamps that are - * strictly smaller than those in the previous partial response. - * @return Google_Service_Fitness_Dataset - */ - public function get($userId, $dataSourceId, $datasetId, $optParams = array()) - { - $params = array('userId' => $userId, 'dataSourceId' => $dataSourceId, 'datasetId' => $datasetId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Fitness_Dataset"); - } - /** - * Adds data points to a dataset. The dataset need not be previously created. - * All points within the given dataset will be returned with subsquent calls to - * retrieve this dataset. Data points can belong to more than one dataset. This - * method does not use patch semantics. (datasets.patch) - * - * @param string $userId Patch a dataset for the person identified. Use me to - * indicate the authenticated user. Only me is supported at this time. - * @param string $dataSourceId The data stream ID of the data source that - * created the dataset. - * @param string $datasetId Dataset identifier that is a composite of the - * minimum data point start time and maximum data point end time represented as - * nanoseconds from the epoch. The ID is formatted like: "startTime-endTime" - * where startTime and endTime are 64 bit integers. - * @param Google_Service_Fitness_Dataset $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string currentTimeMillis The client's current time in milliseconds - * since epoch. Note that the minStartTimeNs and maxEndTimeNs properties in the - * request body are in nanoseconds instead of milliseconds. - * @return Google_Service_Fitness_Dataset - */ - public function patch($userId, $dataSourceId, $datasetId, Google_Service_Fitness_Dataset $postBody, $optParams = array()) - { - $params = array('userId' => $userId, 'dataSourceId' => $dataSourceId, 'datasetId' => $datasetId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Fitness_Dataset"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/Resource/UsersDataset.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/Resource/UsersDataset.php deleted file mode 100644 index 0857f87a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/Resource/UsersDataset.php +++ /dev/null @@ -1,46 +0,0 @@ - - * $fitnessService = new Google_Service_Fitness(...); - * $dataset = $fitnessService->dataset; - * - */ -class Google_Service_Fitness_Resource_UsersDataset extends Google_Service_Resource -{ - /** - * Aggregates data of a certain type or stream into buckets divided by a given - * type of boundary. Multiple data sets of multiple types and from multiple - * sources can be aggregated into exactly one bucket type per request. - * (dataset.aggregate) - * - * @param string $userId Aggregate data for the person identified. Use me to - * indicate the authenticated user. Only me is supported at this time. - * @param Google_Service_Fitness_AggregateRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Fitness_AggregateResponse - */ - public function aggregate($userId, Google_Service_Fitness_AggregateRequest $postBody, $optParams = array()) - { - $params = array('userId' => $userId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('aggregate', array($params), "Google_Service_Fitness_AggregateResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/Resource/UsersSessions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/Resource/UsersSessions.php deleted file mode 100644 index ea2b98ae..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/Resource/UsersSessions.php +++ /dev/null @@ -1,95 +0,0 @@ - - * $fitnessService = new Google_Service_Fitness(...); - * $sessions = $fitnessService->sessions; - * - */ -class Google_Service_Fitness_Resource_UsersSessions extends Google_Service_Resource -{ - /** - * Deletes a session specified by the given session ID. (sessions.delete) - * - * @param string $userId Delete a session for the person identified. Use me to - * indicate the authenticated user. Only me is supported at this time. - * @param string $sessionId The ID of the session to be deleted. - * @param array $optParams Optional parameters. - * - * @opt_param string currentTimeMillis The client's current time in milliseconds - * since epoch. - */ - public function delete($userId, $sessionId, $optParams = array()) - { - $params = array('userId' => $userId, 'sessionId' => $sessionId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Lists sessions previously created. (sessions.listUsersSessions) - * - * @param string $userId List sessions for the person identified. Use me to - * indicate the authenticated user. Only me is supported at this time. - * @param array $optParams Optional parameters. - * - * @opt_param int activityType If non-empty, only sessions with these activity - * types should be returned. - * @opt_param string endTime An RFC3339 timestamp. Only sessions ending between - * the start and end times will be included in the response. - * @opt_param bool includeDeleted If true, deleted sessions will be returned. - * When set to true, sessions returned in this response will only have an ID and - * will not have any other fields. - * @opt_param string pageToken The continuation token, which is used for - * incremental syncing. To get the next batch of changes, set this parameter to - * the value of nextPageToken from the previous response. This token is treated - * as a timestamp (in millis since epoch). If specified, the API returns - * sessions modified since this time. The page token is ignored if either start - * or end time is specified. If none of start time, end time, and the page token - * is specified, sessions modified in the last 30 days are returned. - * @opt_param string startTime An RFC3339 timestamp. Only sessions ending - * between the start and end times will be included in the response. - * @return Google_Service_Fitness_ListSessionsResponse - */ - public function listUsersSessions($userId, $optParams = array()) - { - $params = array('userId' => $userId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Fitness_ListSessionsResponse"); - } - /** - * Updates or insert a given session. (sessions.update) - * - * @param string $userId Create sessions for the person identified. Use me to - * indicate the authenticated user. Only me is supported at this time. - * @param string $sessionId The ID of the session to be created. - * @param Google_Service_Fitness_Session $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string currentTimeMillis The client's current time in milliseconds - * since epoch. - * @return Google_Service_Fitness_Session - */ - public function update($userId, $sessionId, Google_Service_Fitness_Session $postBody, $optParams = array()) - { - $params = array('userId' => $userId, 'sessionId' => $sessionId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Fitness_Session"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/Session.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/Session.php deleted file mode 100644 index f4b4f013..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/Session.php +++ /dev/null @@ -1,109 +0,0 @@ -activeTimeMillis = $activeTimeMillis; - } - public function getActiveTimeMillis() - { - return $this->activeTimeMillis; - } - public function setActivityType($activityType) - { - $this->activityType = $activityType; - } - public function getActivityType() - { - return $this->activityType; - } - /** - * @param Google_Service_Fitness_Application - */ - public function setApplication(Google_Service_Fitness_Application $application) - { - $this->application = $application; - } - /** - * @return Google_Service_Fitness_Application - */ - public function getApplication() - { - return $this->application; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setEndTimeMillis($endTimeMillis) - { - $this->endTimeMillis = $endTimeMillis; - } - public function getEndTimeMillis() - { - return $this->endTimeMillis; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setModifiedTimeMillis($modifiedTimeMillis) - { - $this->modifiedTimeMillis = $modifiedTimeMillis; - } - public function getModifiedTimeMillis() - { - return $this->modifiedTimeMillis; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setStartTimeMillis($startTimeMillis) - { - $this->startTimeMillis = $startTimeMillis; - } - public function getStartTimeMillis() - { - return $this->startTimeMillis; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/Value.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/Value.php deleted file mode 100644 index 93e0475b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/Value.php +++ /dev/null @@ -1,65 +0,0 @@ -fpVal = $fpVal; - } - public function getFpVal() - { - return $this->fpVal; - } - public function setIntVal($intVal) - { - $this->intVal = $intVal; - } - public function getIntVal() - { - return $this->intVal; - } - /** - * @param Google_Service_Fitness_ValueMapValEntry - */ - public function setMapVal($mapVal) - { - $this->mapVal = $mapVal; - } - /** - * @return Google_Service_Fitness_ValueMapValEntry - */ - public function getMapVal() - { - return $this->mapVal; - } - public function setStringVal($stringVal) - { - $this->stringVal = $stringVal; - } - public function getStringVal() - { - return $this->stringVal; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/ValueMapValEntry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/ValueMapValEntry.php deleted file mode 100644 index 1c1faa42..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fitness/ValueMapValEntry.php +++ /dev/null @@ -1,46 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - /** - * @param Google_Service_Fitness_MapValue - */ - public function setValue(Google_Service_Fitness_MapValue $value) - { - $this->value = $value; - } - /** - * @return Google_Service_Fitness_MapValue - */ - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FlightAvailability.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FlightAvailability.php deleted file mode 100644 index 3fec321a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FlightAvailability.php +++ /dev/null @@ -1,66 +0,0 @@ - - * The Google Flight Availability API provides flight availability to partner - * airlines.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_FlightAvailability extends Google_Service -{ - - - public $v1; - - /** - * Constructs the internal representation of the FlightAvailability service. - * - * @param Google_Client $client - */ - public function __construct(Google_Client $client) - { - parent::__construct($client); - $this->rootUrl = 'https://flightavailability.googleapis.com/'; - $this->servicePath = ''; - $this->version = 'v1'; - $this->serviceName = 'flightavailability'; - - $this->v1 = new Google_Service_FlightAvailability_Resource_V1( - $this, - $this->serviceName, - 'v1', - array( - 'methods' => array( - 'query' => array( - 'path' => 'v1:query', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FlightAvailability/FlightavailabilityDate.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FlightAvailability/FlightavailabilityDate.php deleted file mode 100644 index daee3c5c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FlightAvailability/FlightavailabilityDate.php +++ /dev/null @@ -1,48 +0,0 @@ -day = $day; - } - public function getDay() - { - return $this->day; - } - public function setMonth($month) - { - $this->month = $month; - } - public function getMonth() - { - return $this->month; - } - public function setYear($year) - { - $this->year = $year; - } - public function getYear() - { - return $this->year; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FlightAvailability/FlightavailabilityPartnerAvailAnswers.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FlightAvailability/FlightavailabilityPartnerAvailAnswers.php deleted file mode 100644 index 7dc904e4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FlightAvailability/FlightavailabilityPartnerAvailAnswers.php +++ /dev/null @@ -1,47 +0,0 @@ -answers = $answers; - } - /** - * @return Google_Service_FlightAvailability_FlightavailabilityPartnerAvailAnswersAnswer - */ - public function getAnswers() - { - return $this->answers; - } - public function setNarrative($narrative) - { - $this->narrative = $narrative; - } - public function getNarrative() - { - return $this->narrative; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FlightAvailability/FlightavailabilityPartnerAvailAnswersAnswer.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FlightAvailability/FlightavailabilityPartnerAvailAnswersAnswer.php deleted file mode 100644 index 89251f23..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FlightAvailability/FlightavailabilityPartnerAvailAnswersAnswer.php +++ /dev/null @@ -1,56 +0,0 @@ -foundNoSolution = $foundNoSolution; - } - public function getFoundNoSolution() - { - return $this->foundNoSolution; - } - public function setNarrative($narrative) - { - $this->narrative = $narrative; - } - public function getNarrative() - { - return $this->narrative; - } - /** - * @param Google_Service_FlightAvailability_FlightavailabilityPartnerAvailAnswersSolution - */ - public function setSolutions($solutions) - { - $this->solutions = $solutions; - } - /** - * @return Google_Service_FlightAvailability_FlightavailabilityPartnerAvailAnswersSolution - */ - public function getSolutions() - { - return $this->solutions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FlightAvailability/FlightavailabilityPartnerAvailAnswersConstraint.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FlightAvailability/FlightavailabilityPartnerAvailAnswersConstraint.php deleted file mode 100644 index 07cdeb76..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FlightAvailability/FlightavailabilityPartnerAvailAnswersConstraint.php +++ /dev/null @@ -1,31 +0,0 @@ -segmentIndices = $segmentIndices; - } - public function getSegmentIndices() - { - return $this->segmentIndices; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FlightAvailability/FlightavailabilityPartnerAvailAnswersConstraintWithEquivalence.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FlightAvailability/FlightavailabilityPartnerAvailAnswersConstraintWithEquivalence.php deleted file mode 100644 index 86f89b5f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FlightAvailability/FlightavailabilityPartnerAvailAnswersConstraintWithEquivalence.php +++ /dev/null @@ -1,47 +0,0 @@ -equivalentBookingCodes = $equivalentBookingCodes; - } - /** - * @return Google_Service_FlightAvailability_FlightavailabilityPartnerAvailAnswersEquivalentBookingCodes - */ - public function getEquivalentBookingCodes() - { - return $this->equivalentBookingCodes; - } - public function setSegmentIndices($segmentIndices) - { - $this->segmentIndices = $segmentIndices; - } - public function getSegmentIndices() - { - return $this->segmentIndices; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FlightAvailability/FlightavailabilityPartnerAvailAnswersConstraints.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FlightAvailability/FlightavailabilityPartnerAvailAnswersConstraints.php deleted file mode 100644 index e71052e2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FlightAvailability/FlightavailabilityPartnerAvailAnswersConstraints.php +++ /dev/null @@ -1,70 +0,0 @@ -diffBookingCodes = $diffBookingCodes; - } - /** - * @return Google_Service_FlightAvailability_FlightavailabilityPartnerAvailAnswersConstraintWithEquivalence - */ - public function getDiffBookingCodes() - { - return $this->diffBookingCodes; - } - /** - * @param Google_Service_FlightAvailability_FlightavailabilityPartnerAvailAnswersConstraint - */ - public function setMarriedSegments($marriedSegments) - { - $this->marriedSegments = $marriedSegments; - } - /** - * @return Google_Service_FlightAvailability_FlightavailabilityPartnerAvailAnswersConstraint - */ - public function getMarriedSegments() - { - return $this->marriedSegments; - } - /** - * @param Google_Service_FlightAvailability_FlightavailabilityPartnerAvailAnswersConstraintWithEquivalence - */ - public function setSameBookingCodes($sameBookingCodes) - { - $this->sameBookingCodes = $sameBookingCodes; - } - /** - * @return Google_Service_FlightAvailability_FlightavailabilityPartnerAvailAnswersConstraintWithEquivalence - */ - public function getSameBookingCodes() - { - return $this->sameBookingCodes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FlightAvailability/FlightavailabilityPartnerAvailAnswersEquivalentBookingCodes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FlightAvailability/FlightavailabilityPartnerAvailAnswersEquivalentBookingCodes.php deleted file mode 100644 index 21716a1f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FlightAvailability/FlightavailabilityPartnerAvailAnswersEquivalentBookingCodes.php +++ /dev/null @@ -1,31 +0,0 @@ -bookingCodes = $bookingCodes; - } - public function getBookingCodes() - { - return $this->bookingCodes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FlightAvailability/FlightavailabilityPartnerAvailAnswersSeatCount.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FlightAvailability/FlightavailabilityPartnerAvailAnswersSeatCount.php deleted file mode 100644 index 7c387dc2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FlightAvailability/FlightavailabilityPartnerAvailAnswersSeatCount.php +++ /dev/null @@ -1,55 +0,0 @@ -bookingCode = $bookingCode; - } - public function getBookingCode() - { - return $this->bookingCode; - } - public function setCount($count) - { - $this->count = $count; - } - public function getCount() - { - return $this->count; - } - /** - * @param Google_Service_FlightAvailability_FlightavailabilityPartnerAvailAnswersSeatCountSeatsFlag - */ - public function setSeatsFlag(Google_Service_FlightAvailability_FlightavailabilityPartnerAvailAnswersSeatCountSeatsFlag $seatsFlag) - { - $this->seatsFlag = $seatsFlag; - } - /** - * @return Google_Service_FlightAvailability_FlightavailabilityPartnerAvailAnswersSeatCountSeatsFlag - */ - public function getSeatsFlag() - { - return $this->seatsFlag; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FlightAvailability/FlightavailabilityPartnerAvailAnswersSeatCountSeatsFlag.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FlightAvailability/FlightavailabilityPartnerAvailAnswersSeatCountSeatsFlag.php deleted file mode 100644 index 7fd4fede..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FlightAvailability/FlightavailabilityPartnerAvailAnswersSeatCountSeatsFlag.php +++ /dev/null @@ -1,66 +0,0 @@ -infinityFlag = $infinityFlag; - } - public function getInfinityFlag() - { - return $this->infinityFlag; - } - public function setNonOperating($nonOperating) - { - $this->nonOperating = $nonOperating; - } - public function getNonOperating() - { - return $this->nonOperating; - } - public function setOnRequest($onRequest) - { - $this->onRequest = $onRequest; - } - public function getOnRequest() - { - return $this->onRequest; - } - public function setWaitlistClosed($waitlistClosed) - { - $this->waitlistClosed = $waitlistClosed; - } - public function getWaitlistClosed() - { - return $this->waitlistClosed; - } - public function setWaitlistOpen($waitlistOpen) - { - $this->waitlistOpen = $waitlistOpen; - } - public function getWaitlistOpen() - { - return $this->waitlistOpen; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FlightAvailability/FlightavailabilityPartnerAvailAnswersSegmentCounts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FlightAvailability/FlightavailabilityPartnerAvailAnswersSegmentCounts.php deleted file mode 100644 index 569e83d2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FlightAvailability/FlightavailabilityPartnerAvailAnswersSegmentCounts.php +++ /dev/null @@ -1,56 +0,0 @@ -narrative = $narrative; - } - public function getNarrative() - { - return $this->narrative; - } - /** - * @param Google_Service_FlightAvailability_FlightavailabilityPartnerAvailAnswersSeatCount - */ - public function setSeatCounts($seatCounts) - { - $this->seatCounts = $seatCounts; - } - /** - * @return Google_Service_FlightAvailability_FlightavailabilityPartnerAvailAnswersSeatCount - */ - public function getSeatCounts() - { - return $this->seatCounts; - } - public function setSegmentIndex($segmentIndex) - { - $this->segmentIndex = $segmentIndex; - } - public function getSegmentIndex() - { - return $this->segmentIndex; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FlightAvailability/FlightavailabilityPartnerAvailAnswersSolution.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FlightAvailability/FlightavailabilityPartnerAvailAnswersSolution.php deleted file mode 100644 index 52e1199a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FlightAvailability/FlightavailabilityPartnerAvailAnswersSolution.php +++ /dev/null @@ -1,72 +0,0 @@ -constraints = $constraints; - } - /** - * @return Google_Service_FlightAvailability_FlightavailabilityPartnerAvailAnswersConstraints - */ - public function getConstraints() - { - return $this->constraints; - } - public function setNarrative($narrative) - { - $this->narrative = $narrative; - } - public function getNarrative() - { - return $this->narrative; - } - /** - * @param Google_Service_FlightAvailability_FlightavailabilityPartnerAvailAnswersSegmentCounts - */ - public function setSegmentCounts($segmentCounts) - { - $this->segmentCounts = $segmentCounts; - } - /** - * @return Google_Service_FlightAvailability_FlightavailabilityPartnerAvailAnswersSegmentCounts - */ - public function getSegmentCounts() - { - return $this->segmentCounts; - } - public function setTimestampTime($timestampTime) - { - $this->timestampTime = $timestampTime; - } - public function getTimestampTime() - { - return $this->timestampTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FlightAvailability/FlightavailabilityPartnerAvailQuestions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FlightAvailability/FlightavailabilityPartnerAvailQuestions.php deleted file mode 100644 index 733810f2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FlightAvailability/FlightavailabilityPartnerAvailQuestions.php +++ /dev/null @@ -1,54 +0,0 @@ -parameters = $parameters; - } - /** - * @return Google_Service_FlightAvailability_FlightavailabilityPartnerAvailQuestionsParameters - */ - public function getParameters() - { - return $this->parameters; - } - /** - * @param Google_Service_FlightAvailability_FlightavailabilityPartnerAvailQuestionsQuestion - */ - public function setQuestions($questions) - { - $this->questions = $questions; - } - /** - * @return Google_Service_FlightAvailability_FlightavailabilityPartnerAvailQuestionsQuestion - */ - public function getQuestions() - { - return $this->questions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FlightAvailability/FlightavailabilityPartnerAvailQuestionsParameters.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FlightAvailability/FlightavailabilityPartnerAvailQuestionsParameters.php deleted file mode 100644 index cd398c29..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FlightAvailability/FlightavailabilityPartnerAvailQuestionsParameters.php +++ /dev/null @@ -1,72 +0,0 @@ -carrierPreferredAnswer = $carrierPreferredAnswer; - } - public function getCarrierPreferredAnswer() - { - return $this->carrierPreferredAnswer; - } - /** - * @param Google_Service_FlightAvailability_FlightavailabilityPartnerAvailQuestionsSegment - */ - public function setJourneyDataSegments($journeyDataSegments) - { - $this->journeyDataSegments = $journeyDataSegments; - } - /** - * @return Google_Service_FlightAvailability_FlightavailabilityPartnerAvailQuestionsSegment - */ - public function getJourneyDataSegments() - { - return $this->journeyDataSegments; - } - /** - * @param Google_Service_FlightAvailability_FlightavailabilityPartnerAvailQuestionsPointOfSale - */ - public function setPointOfSale(Google_Service_FlightAvailability_FlightavailabilityPartnerAvailQuestionsPointOfSale $pointOfSale) - { - $this->pointOfSale = $pointOfSale; - } - /** - * @return Google_Service_FlightAvailability_FlightavailabilityPartnerAvailQuestionsPointOfSale - */ - public function getPointOfSale() - { - return $this->pointOfSale; - } - public function setSeamlessAdjustment($seamlessAdjustment) - { - $this->seamlessAdjustment = $seamlessAdjustment; - } - public function getSeamlessAdjustment() - { - return $this->seamlessAdjustment; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FlightAvailability/FlightavailabilityPartnerAvailQuestionsPointOfSale.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FlightAvailability/FlightavailabilityPartnerAvailQuestionsPointOfSale.php deleted file mode 100644 index c64b0c8f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FlightAvailability/FlightavailabilityPartnerAvailQuestionsPointOfSale.php +++ /dev/null @@ -1,67 +0,0 @@ -salesAirport = $salesAirport; - } - public function getSalesAirport() - { - return $this->salesAirport; - } - public function setSalesCarriers($salesCarriers) - { - $this->salesCarriers = $salesCarriers; - } - public function getSalesCarriers() - { - return $this->salesCarriers; - } - public function setSalesCity($salesCity) - { - $this->salesCity = $salesCity; - } - public function getSalesCity() - { - return $this->salesCity; - } - public function setSalesCountry($salesCountry) - { - $this->salesCountry = $salesCountry; - } - public function getSalesCountry() - { - return $this->salesCountry; - } - public function setSalesCrss($salesCrss) - { - $this->salesCrss = $salesCrss; - } - public function getSalesCrss() - { - return $this->salesCrss; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FlightAvailability/FlightavailabilityPartnerAvailQuestionsQuestion.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FlightAvailability/FlightavailabilityPartnerAvailQuestionsQuestion.php deleted file mode 100644 index ad516816..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FlightAvailability/FlightavailabilityPartnerAvailQuestionsQuestion.php +++ /dev/null @@ -1,47 +0,0 @@ -journeyOriginCity = $journeyOriginCity; - } - public function getJourneyOriginCity() - { - return $this->journeyOriginCity; - } - /** - * @param Google_Service_FlightAvailability_FlightavailabilityPartnerAvailQuestionsSegment - */ - public function setSegments($segments) - { - $this->segments = $segments; - } - /** - * @return Google_Service_FlightAvailability_FlightavailabilityPartnerAvailQuestionsSegment - */ - public function getSegments() - { - return $this->segments; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FlightAvailability/FlightavailabilityPartnerAvailQuestionsSegment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FlightAvailability/FlightavailabilityPartnerAvailQuestionsSegment.php deleted file mode 100644 index 0c208116..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FlightAvailability/FlightavailabilityPartnerAvailQuestionsSegment.php +++ /dev/null @@ -1,91 +0,0 @@ -bookingCode = $bookingCode; - } - public function getBookingCode() - { - return $this->bookingCode; - } - public function setCarrier($carrier) - { - $this->carrier = $carrier; - } - public function getCarrier() - { - return $this->carrier; - } - /** - * @param Google_Service_FlightAvailability_FlightavailabilityDate - */ - public function setDepartureDate(Google_Service_FlightAvailability_FlightavailabilityDate $departureDate) - { - $this->departureDate = $departureDate; - } - /** - * @return Google_Service_FlightAvailability_FlightavailabilityDate - */ - public function getDepartureDate() - { - return $this->departureDate; - } - public function setDestination($destination) - { - $this->destination = $destination; - } - public function getDestination() - { - return $this->destination; - } - public function setFlightNumber($flightNumber) - { - $this->flightNumber = $flightNumber; - } - public function getFlightNumber() - { - return $this->flightNumber; - } - public function setOrigin($origin) - { - $this->origin = $origin; - } - public function getOrigin() - { - return $this->origin; - } - public function setPassiveSegment($passiveSegment) - { - $this->passiveSegment = $passiveSegment; - } - public function getPassiveSegment() - { - return $this->passiveSegment; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FlightAvailability/Resource/V1.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FlightAvailability/Resource/V1.php deleted file mode 100644 index 6273a009..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/FlightAvailability/Resource/V1.php +++ /dev/null @@ -1,42 +0,0 @@ - - * $flightavailabilityService = new Google_Service_FlightAvailability(...); - * $v1 = $flightavailabilityService->v1; - * - */ -class Google_Service_FlightAvailability_Resource_V1 extends Google_Service_Resource -{ - /** - * Called by a partner: receives questions, each of which consists of one or - * more segments, and returns answers with availability data. (v1.query) - * - * @param Google_Service_FlightAvailability_FlightavailabilityPartnerAvailQuestions $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_FlightAvailability_FlightavailabilityPartnerAvailAnswers - */ - public function query(Google_Service_FlightAvailability_FlightavailabilityPartnerAvailQuestions $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('query', array($params), "Google_Service_FlightAvailability_FlightavailabilityPartnerAvailAnswers"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Freebase.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Freebase.php deleted file mode 100644 index 6540490a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Freebase.php +++ /dev/null @@ -1,258 +0,0 @@ - - * Find Freebase entities using textual queries and other constraints.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Freebase extends Google_Service -{ - - - - private $base_methods; - /** - * Constructs the internal representation of the Freebase service. - * - * @param Google_Client $client - */ - public function __construct(Google_Client $client) - { - parent::__construct($client); - $this->rootUrl = 'https://www.googleapis.com/'; - $this->servicePath = 'freebase/v1/'; - $this->version = 'v1'; - $this->serviceName = 'freebase'; - - $this->base_methods = new Google_Service_Resource( - $this, - $this->serviceName, - '', - array( - 'methods' => array( - 'reconcile' => array( - 'path' => 'reconcile', - 'httpMethod' => 'GET', - 'parameters' => array( - 'confidence' => array( - 'location' => 'query', - 'type' => 'number', - ), - 'kind' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'lang' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'limit' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'name' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'prop' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ),'search' => array( - 'path' => 'search', - 'httpMethod' => 'GET', - 'parameters' => array( - 'as_of_time' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'callback' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'cursor' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'domain' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'encode' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'exact' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'format' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'help' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'indent' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'lang' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'limit' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'mid' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'mql_output' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'output' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'prefixed' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'query' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'scoring' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'spell' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'stemmed' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'type' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'with' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'without' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ), - ) - ) - ); - } - /** - * Reconcile entities to Freebase open data. (reconcile) - * - * @param array $optParams Optional parameters. - * - * @opt_param float confidence Required confidence for a candidate to match. - * Must be between .5 and 1.0 - * @opt_param string kind Classifications of entity e.g. type, category, title. - * @opt_param string lang Languages for names and values. First language is used - * for display. Default is 'en'. - * @opt_param int limit Maximum number of candidates to return. - * @opt_param string name Name of entity. - * @opt_param string prop Property values for entity formatted as : - * @return Google_Service_Freebase_ReconcileGet - */ - public function reconcile($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->base_methods->call('reconcile', array($params), "Google_Service_Freebase_ReconcileGet"); - } - /** - * Search Freebase open data. (search) - * - * @param array $optParams Optional parameters. - * - * @opt_param string as_of_time A mql as_of_time value to use with mql_output - * queries. - * @opt_param string callback JS method name for JSONP callbacks. - * @opt_param int cursor The cursor value to use for the next page of results. - * @opt_param string domain Restrict to topics with this Freebase domain id. - * @opt_param string encode The encoding of the response. You can use this - * parameter to enable html encoding. - * @opt_param bool exact Query on exact name and keys only. - * @opt_param string filter A filter to apply to the query. - * @opt_param string format Structural format of the json response. - * @opt_param string help The keyword to request help on. - * @opt_param bool indent Whether to indent the json results or not. - * @opt_param string lang The code of the language to run the query with. - * Default is 'en'. - * @opt_param int limit Maximum number of results to return. - * @opt_param string mid A mid to use instead of a query. - * @opt_param string mql_output The MQL query to run againist the results to - * extract more data. - * @opt_param string output An output expression to request data from matches. - * @opt_param bool prefixed Prefix match against names and aliases. - * @opt_param string query Query term to search for. - * @opt_param string scoring Relevance scoring algorithm to use. - * @opt_param string spell Request 'did you mean' suggestions - * @opt_param bool stemmed Query on stemmed names and aliases. May not be used - * with prefixed. - * @opt_param string type Restrict to topics with this Freebase type id. - * @opt_param string with A rule to match against. - * @opt_param string without A rule to not match against. - */ - public function search($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->base_methods->call('search', array($params)); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Freebase/ReconcileCandidate.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Freebase/ReconcileCandidate.php deleted file mode 100644 index d4273e00..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Freebase/ReconcileCandidate.php +++ /dev/null @@ -1,67 +0,0 @@ -confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - public function setLang($lang) - { - $this->lang = $lang; - } - public function getLang() - { - return $this->lang; - } - public function setMid($mid) - { - $this->mid = $mid; - } - public function getMid() - { - return $this->mid; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNotable(Google_Service_Freebase_ReconcileCandidateNotable $notable) - { - $this->notable = $notable; - } - public function getNotable() - { - return $this->notable; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Freebase/ReconcileCandidateNotable.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Freebase/ReconcileCandidateNotable.php deleted file mode 100644 index c53bf308..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Freebase/ReconcileCandidateNotable.php +++ /dev/null @@ -1,39 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Freebase/ReconcileGet.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Freebase/ReconcileGet.php deleted file mode 100644 index 2558101d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Freebase/ReconcileGet.php +++ /dev/null @@ -1,62 +0,0 @@ -candidate = $candidate; - } - public function getCandidate() - { - return $this->candidate; - } - public function setCosts(Google_Service_Freebase_ReconcileGetCosts $costs) - { - $this->costs = $costs; - } - public function getCosts() - { - return $this->costs; - } - public function setMatch(Google_Service_Freebase_ReconcileCandidate $match) - { - $this->match = $match; - } - public function getMatch() - { - return $this->match; - } - public function setWarning($warning) - { - $this->warning = $warning; - } - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Freebase/ReconcileGetCosts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Freebase/ReconcileGetCosts.php deleted file mode 100644 index 1c6c8659..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Freebase/ReconcileGetCosts.php +++ /dev/null @@ -1,39 +0,0 @@ -hits = $hits; - } - public function getHits() - { - return $this->hits; - } - public function setMs($ms) - { - $this->ms = $ms; - } - public function getMs() - { - return $this->ms; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Freebase/ReconcileGetWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Freebase/ReconcileGetWarning.php deleted file mode 100644 index 27a535d5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Freebase/ReconcileGetWarning.php +++ /dev/null @@ -1,48 +0,0 @@ -location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } - public function setReason($reason) - { - $this->reason = $reason; - } - public function getReason() - { - return $this->reason; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables.php deleted file mode 100644 index b845c10e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables.php +++ /dev/null @@ -1,642 +0,0 @@ - - * API for working with Fusion Tables data.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Fusiontables extends Google_Service -{ - /** Manage your Fusion Tables. */ - const FUSIONTABLES = - "https://www.googleapis.com/auth/fusiontables"; - /** View your Fusion Tables. */ - const FUSIONTABLES_READONLY = - "https://www.googleapis.com/auth/fusiontables.readonly"; - - public $column; - public $query; - public $style; - public $table; - public $task; - public $template; - - /** - * Constructs the internal representation of the Fusiontables service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://www.googleapis.com/'; - $this->servicePath = 'fusiontables/v2/'; - $this->batchPath = 'batch/fusiontables/v2'; - $this->version = 'v2'; - $this->serviceName = 'fusiontables'; - - $this->column = new Google_Service_Fusiontables_Resource_Column( - $this, - $this->serviceName, - 'column', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'tables/{tableId}/columns/{columnId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'columnId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'tables/{tableId}/columns/{columnId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'columnId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'tables/{tableId}/columns', - 'httpMethod' => 'POST', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'tables/{tableId}/columns', - 'httpMethod' => 'GET', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'tables/{tableId}/columns/{columnId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'columnId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'tables/{tableId}/columns/{columnId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'columnId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->query = new Google_Service_Fusiontables_Resource_Query( - $this, - $this->serviceName, - 'query', - array( - 'methods' => array( - 'sql' => array( - 'path' => 'query', - 'httpMethod' => 'POST', - 'parameters' => array( - 'sql' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'hdrs' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'typed' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'sqlGet' => array( - 'path' => 'query', - 'httpMethod' => 'GET', - 'parameters' => array( - 'sql' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'hdrs' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'typed' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ), - ) - ) - ); - $this->style = new Google_Service_Fusiontables_Resource_Style( - $this, - $this->serviceName, - 'style', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'tables/{tableId}/styles/{styleId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'styleId' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'tables/{tableId}/styles/{styleId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'styleId' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'tables/{tableId}/styles', - 'httpMethod' => 'POST', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'tables/{tableId}/styles', - 'httpMethod' => 'GET', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'tables/{tableId}/styles/{styleId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'styleId' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'tables/{tableId}/styles/{styleId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'styleId' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->table = new Google_Service_Fusiontables_Resource_Table( - $this, - $this->serviceName, - 'table', - array( - 'methods' => array( - 'copy' => array( - 'path' => 'tables/{tableId}/copy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'copyPresentation' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'delete' => array( - 'path' => 'tables/{tableId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'tables/{tableId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'importRows' => array( - 'path' => 'tables/{tableId}/import', - 'httpMethod' => 'POST', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'delimiter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'encoding' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'endLine' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'isStrict' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'startLine' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'importTable' => array( - 'path' => 'tables/import', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'delimiter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'encoding' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'insert' => array( - 'path' => 'tables', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'list' => array( - 'path' => 'tables', - 'httpMethod' => 'GET', - 'parameters' => array( - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'tables/{tableId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'replaceViewDefinition' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'refetchSheet' => array( - 'path' => 'tables/{tableId}/refetch', - 'httpMethod' => 'POST', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'replaceRows' => array( - 'path' => 'tables/{tableId}/replace', - 'httpMethod' => 'POST', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'delimiter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'encoding' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'endLine' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'isStrict' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'startLine' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'update' => array( - 'path' => 'tables/{tableId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'replaceViewDefinition' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ), - ) - ) - ); - $this->task = new Google_Service_Fusiontables_Resource_Task( - $this, - $this->serviceName, - 'task', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'tables/{tableId}/tasks/{taskId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'taskId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'tables/{tableId}/tasks/{taskId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'taskId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'tables/{tableId}/tasks', - 'httpMethod' => 'GET', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'startIndex' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->template = new Google_Service_Fusiontables_Resource_Template( - $this, - $this->serviceName, - 'template', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'tables/{tableId}/templates/{templateId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'templateId' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'tables/{tableId}/templates/{templateId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'templateId' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'tables/{tableId}/templates', - 'httpMethod' => 'POST', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'tables/{tableId}/templates', - 'httpMethod' => 'GET', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'tables/{tableId}/templates/{templateId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'templateId' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'tables/{tableId}/templates/{templateId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'tableId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'templateId' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/Bucket.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/Bucket.php deleted file mode 100644 index 56dcde4a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/Bucket.php +++ /dev/null @@ -1,75 +0,0 @@ -color = $color; - } - public function getColor() - { - return $this->color; - } - public function setIcon($icon) - { - $this->icon = $icon; - } - public function getIcon() - { - return $this->icon; - } - public function setMax($max) - { - $this->max = $max; - } - public function getMax() - { - return $this->max; - } - public function setMin($min) - { - $this->min = $min; - } - public function getMin() - { - return $this->min; - } - public function setOpacity($opacity) - { - $this->opacity = $opacity; - } - public function getOpacity() - { - return $this->opacity; - } - public function setWeight($weight) - { - $this->weight = $weight; - } - public function getWeight() - { - return $this->weight; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/Column.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/Column.php deleted file mode 100644 index 09f76a2a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/Column.php +++ /dev/null @@ -1,137 +0,0 @@ -baseColumn = $baseColumn; - } - /** - * @return Google_Service_Fusiontables_ColumnBaseColumn - */ - public function getBaseColumn() - { - return $this->baseColumn; - } - public function setColumnId($columnId) - { - $this->columnId = $columnId; - } - public function getColumnId() - { - return $this->columnId; - } - public function setColumnJsonSchema($columnJsonSchema) - { - $this->columnJsonSchema = $columnJsonSchema; - } - public function getColumnJsonSchema() - { - return $this->columnJsonSchema; - } - public function setColumnPropertiesJson($columnPropertiesJson) - { - $this->columnPropertiesJson = $columnPropertiesJson; - } - public function getColumnPropertiesJson() - { - return $this->columnPropertiesJson; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setFormatPattern($formatPattern) - { - $this->formatPattern = $formatPattern; - } - public function getFormatPattern() - { - return $this->formatPattern; - } - public function setGraphPredicate($graphPredicate) - { - $this->graphPredicate = $graphPredicate; - } - public function getGraphPredicate() - { - return $this->graphPredicate; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setValidValues($validValues) - { - $this->validValues = $validValues; - } - public function getValidValues() - { - return $this->validValues; - } - public function setValidateData($validateData) - { - $this->validateData = $validateData; - } - public function getValidateData() - { - return $this->validateData; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/ColumnBaseColumn.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/ColumnBaseColumn.php deleted file mode 100644 index 922d0d58..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/ColumnBaseColumn.php +++ /dev/null @@ -1,39 +0,0 @@ -columnId = $columnId; - } - public function getColumnId() - { - return $this->columnId; - } - public function setTableIndex($tableIndex) - { - $this->tableIndex = $tableIndex; - } - public function getTableIndex() - { - return $this->tableIndex; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/ColumnList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/ColumnList.php deleted file mode 100644 index 141c62f3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/ColumnList.php +++ /dev/null @@ -1,65 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Fusiontables_Column - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setTotalItems($totalItems) - { - $this->totalItems = $totalItems; - } - public function getTotalItems() - { - return $this->totalItems; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/Geometry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/Geometry.php deleted file mode 100644 index 56ecf26f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/Geometry.php +++ /dev/null @@ -1,49 +0,0 @@ -geometries = $geometries; - } - public function getGeometries() - { - return $this->geometries; - } - public function setGeometry($geometry) - { - $this->geometry = $geometry; - } - public function getGeometry() - { - return $this->geometry; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/Import.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/Import.php deleted file mode 100644 index 41077bd3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/Import.php +++ /dev/null @@ -1,39 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNumRowsReceived($numRowsReceived) - { - $this->numRowsReceived = $numRowsReceived; - } - public function getNumRowsReceived() - { - return $this->numRowsReceived; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/Line.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/Line.php deleted file mode 100644 index ca62c2c1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/Line.php +++ /dev/null @@ -1,40 +0,0 @@ -coordinates = $coordinates; - } - public function getCoordinates() - { - return $this->coordinates; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/LineStyle.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/LineStyle.php deleted file mode 100644 index 721e92db..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/LineStyle.php +++ /dev/null @@ -1,80 +0,0 @@ -strokeColor = $strokeColor; - } - public function getStrokeColor() - { - return $this->strokeColor; - } - /** - * @param Google_Service_Fusiontables_StyleFunction - */ - public function setStrokeColorStyler(Google_Service_Fusiontables_StyleFunction $strokeColorStyler) - { - $this->strokeColorStyler = $strokeColorStyler; - } - /** - * @return Google_Service_Fusiontables_StyleFunction - */ - public function getStrokeColorStyler() - { - return $this->strokeColorStyler; - } - public function setStrokeOpacity($strokeOpacity) - { - $this->strokeOpacity = $strokeOpacity; - } - public function getStrokeOpacity() - { - return $this->strokeOpacity; - } - public function setStrokeWeight($strokeWeight) - { - $this->strokeWeight = $strokeWeight; - } - public function getStrokeWeight() - { - return $this->strokeWeight; - } - /** - * @param Google_Service_Fusiontables_StyleFunction - */ - public function setStrokeWeightStyler(Google_Service_Fusiontables_StyleFunction $strokeWeightStyler) - { - $this->strokeWeightStyler = $strokeWeightStyler; - } - /** - * @return Google_Service_Fusiontables_StyleFunction - */ - public function getStrokeWeightStyler() - { - return $this->strokeWeightStyler; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/Point.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/Point.php deleted file mode 100644 index c68845bc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/Point.php +++ /dev/null @@ -1,40 +0,0 @@ -coordinates = $coordinates; - } - public function getCoordinates() - { - return $this->coordinates; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/PointStyle.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/PointStyle.php deleted file mode 100644 index bec88641..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/PointStyle.php +++ /dev/null @@ -1,46 +0,0 @@ -iconName = $iconName; - } - public function getIconName() - { - return $this->iconName; - } - /** - * @param Google_Service_Fusiontables_StyleFunction - */ - public function setIconStyler(Google_Service_Fusiontables_StyleFunction $iconStyler) - { - $this->iconStyler = $iconStyler; - } - /** - * @return Google_Service_Fusiontables_StyleFunction - */ - public function getIconStyler() - { - return $this->iconStyler; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/Polygon.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/Polygon.php deleted file mode 100644 index 50540584..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/Polygon.php +++ /dev/null @@ -1,40 +0,0 @@ -coordinates = $coordinates; - } - public function getCoordinates() - { - return $this->coordinates; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/PolygonStyle.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/PolygonStyle.php deleted file mode 100644 index 9572e25c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/PolygonStyle.php +++ /dev/null @@ -1,114 +0,0 @@ -fillColor = $fillColor; - } - public function getFillColor() - { - return $this->fillColor; - } - /** - * @param Google_Service_Fusiontables_StyleFunction - */ - public function setFillColorStyler(Google_Service_Fusiontables_StyleFunction $fillColorStyler) - { - $this->fillColorStyler = $fillColorStyler; - } - /** - * @return Google_Service_Fusiontables_StyleFunction - */ - public function getFillColorStyler() - { - return $this->fillColorStyler; - } - public function setFillOpacity($fillOpacity) - { - $this->fillOpacity = $fillOpacity; - } - public function getFillOpacity() - { - return $this->fillOpacity; - } - public function setStrokeColor($strokeColor) - { - $this->strokeColor = $strokeColor; - } - public function getStrokeColor() - { - return $this->strokeColor; - } - /** - * @param Google_Service_Fusiontables_StyleFunction - */ - public function setStrokeColorStyler(Google_Service_Fusiontables_StyleFunction $strokeColorStyler) - { - $this->strokeColorStyler = $strokeColorStyler; - } - /** - * @return Google_Service_Fusiontables_StyleFunction - */ - public function getStrokeColorStyler() - { - return $this->strokeColorStyler; - } - public function setStrokeOpacity($strokeOpacity) - { - $this->strokeOpacity = $strokeOpacity; - } - public function getStrokeOpacity() - { - return $this->strokeOpacity; - } - public function setStrokeWeight($strokeWeight) - { - $this->strokeWeight = $strokeWeight; - } - public function getStrokeWeight() - { - return $this->strokeWeight; - } - /** - * @param Google_Service_Fusiontables_StyleFunction - */ - public function setStrokeWeightStyler(Google_Service_Fusiontables_StyleFunction $strokeWeightStyler) - { - $this->strokeWeightStyler = $strokeWeightStyler; - } - /** - * @return Google_Service_Fusiontables_StyleFunction - */ - public function getStrokeWeightStyler() - { - return $this->strokeWeightStyler; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/Resource/Column.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/Resource/Column.php deleted file mode 100644 index bbdadddd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/Resource/Column.php +++ /dev/null @@ -1,121 +0,0 @@ - - * $fusiontablesService = new Google_Service_Fusiontables(...); - * $column = $fusiontablesService->column; - * - */ -class Google_Service_Fusiontables_Resource_Column extends Google_Service_Resource -{ - /** - * Deletes the specified column. (column.delete) - * - * @param string $tableId Table from which the column is being deleted. - * @param string $columnId Name or identifier for the column being deleted. - * @param array $optParams Optional parameters. - */ - public function delete($tableId, $columnId, $optParams = array()) - { - $params = array('tableId' => $tableId, 'columnId' => $columnId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Retrieves a specific column by its ID. (column.get) - * - * @param string $tableId Table to which the column belongs. - * @param string $columnId Name or identifier for the column that is being - * requested. - * @param array $optParams Optional parameters. - * @return Google_Service_Fusiontables_Column - */ - public function get($tableId, $columnId, $optParams = array()) - { - $params = array('tableId' => $tableId, 'columnId' => $columnId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Fusiontables_Column"); - } - /** - * Adds a new column to the table. (column.insert) - * - * @param string $tableId Table for which a new column is being added. - * @param Google_Service_Fusiontables_Column $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Fusiontables_Column - */ - public function insert($tableId, Google_Service_Fusiontables_Column $postBody, $optParams = array()) - { - $params = array('tableId' => $tableId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Fusiontables_Column"); - } - /** - * Retrieves a list of columns. (column.listColumn) - * - * @param string $tableId Table whose columns are being listed. - * @param array $optParams Optional parameters. - * - * @opt_param string maxResults Maximum number of columns to return. Default is - * 5. - * @opt_param string pageToken Continuation token specifying which result page - * to return. - * @return Google_Service_Fusiontables_ColumnList - */ - public function listColumn($tableId, $optParams = array()) - { - $params = array('tableId' => $tableId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Fusiontables_ColumnList"); - } - /** - * Updates the name or type of an existing column. This method supports patch - * semantics. (column.patch) - * - * @param string $tableId Table for which the column is being updated. - * @param string $columnId Name or identifier for the column that is being - * updated. - * @param Google_Service_Fusiontables_Column $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Fusiontables_Column - */ - public function patch($tableId, $columnId, Google_Service_Fusiontables_Column $postBody, $optParams = array()) - { - $params = array('tableId' => $tableId, 'columnId' => $columnId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Fusiontables_Column"); - } - /** - * Updates the name or type of an existing column. (column.update) - * - * @param string $tableId Table for which the column is being updated. - * @param string $columnId Name or identifier for the column that is being - * updated. - * @param Google_Service_Fusiontables_Column $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Fusiontables_Column - */ - public function update($tableId, $columnId, Google_Service_Fusiontables_Column $postBody, $optParams = array()) - { - $params = array('tableId' => $tableId, 'columnId' => $columnId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Fusiontables_Column"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/Resource/Query.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/Resource/Query.php deleted file mode 100644 index 7a00fb0f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/Resource/Query.php +++ /dev/null @@ -1,70 +0,0 @@ - - * $fusiontablesService = new Google_Service_Fusiontables(...); - * $query = $fusiontablesService->query; - * - */ -class Google_Service_Fusiontables_Resource_Query extends Google_Service_Resource -{ - /** - * Executes a Fusion Tables SQL statement, which can be any of - SELECT - INSERT - * - UPDATE - DELETE - SHOW - DESCRIBE - CREATE statement. (query.sql) - * - * @param string $sql A Fusion Tables SQL statement, which can be any of - - * SELECT - INSERT - UPDATE - DELETE - SHOW - DESCRIBE - CREATE - * @param array $optParams Optional parameters. - * - * @opt_param bool hdrs Whether column names are included in the first row. - * Default is true. - * @opt_param bool typed Whether typed values are returned in the (JSON) - * response: numbers for numeric values and parsed geometries for KML values. - * Default is true. - * @return Google_Service_Fusiontables_Sqlresponse - */ - public function sql($sql, $optParams = array()) - { - $params = array('sql' => $sql); - $params = array_merge($params, $optParams); - return $this->call('sql', array($params), "Google_Service_Fusiontables_Sqlresponse"); - } - /** - * Executes a SQL statement which can be any of - SELECT - SHOW - DESCRIBE - * (query.sqlGet) - * - * @param string $sql A SQL statement which can be any of - SELECT - SHOW - - * DESCRIBE - * @param array $optParams Optional parameters. - * - * @opt_param bool hdrs Whether column names are included (in the first row). - * Default is true. - * @opt_param bool typed Whether typed values are returned in the (JSON) - * response: numbers for numeric values and parsed geometries for KML values. - * Default is true. - * @return Google_Service_Fusiontables_Sqlresponse - */ - public function sqlGet($sql, $optParams = array()) - { - $params = array('sql' => $sql); - $params = array_merge($params, $optParams); - return $this->call('sqlGet', array($params), "Google_Service_Fusiontables_Sqlresponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/Resource/Style.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/Resource/Style.php deleted file mode 100644 index fe977109..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/Resource/Style.php +++ /dev/null @@ -1,118 +0,0 @@ - - * $fusiontablesService = new Google_Service_Fusiontables(...); - * $style = $fusiontablesService->style; - * - */ -class Google_Service_Fusiontables_Resource_Style extends Google_Service_Resource -{ - /** - * Deletes a style. (style.delete) - * - * @param string $tableId Table from which the style is being deleted - * @param int $styleId Identifier (within a table) for the style being deleted - * @param array $optParams Optional parameters. - */ - public function delete($tableId, $styleId, $optParams = array()) - { - $params = array('tableId' => $tableId, 'styleId' => $styleId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Gets a specific style. (style.get) - * - * @param string $tableId Table to which the requested style belongs - * @param int $styleId Identifier (integer) for a specific style in a table - * @param array $optParams Optional parameters. - * @return Google_Service_Fusiontables_StyleSetting - */ - public function get($tableId, $styleId, $optParams = array()) - { - $params = array('tableId' => $tableId, 'styleId' => $styleId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Fusiontables_StyleSetting"); - } - /** - * Adds a new style for the table. (style.insert) - * - * @param string $tableId Table for which a new style is being added - * @param Google_Service_Fusiontables_StyleSetting $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Fusiontables_StyleSetting - */ - public function insert($tableId, Google_Service_Fusiontables_StyleSetting $postBody, $optParams = array()) - { - $params = array('tableId' => $tableId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Fusiontables_StyleSetting"); - } - /** - * Retrieves a list of styles. (style.listStyle) - * - * @param string $tableId Table whose styles are being listed - * @param array $optParams Optional parameters. - * - * @opt_param string maxResults Maximum number of styles to return. Optional. - * Default is 5. - * @opt_param string pageToken Continuation token specifying which result page - * to return. Optional. - * @return Google_Service_Fusiontables_StyleSettingList - */ - public function listStyle($tableId, $optParams = array()) - { - $params = array('tableId' => $tableId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Fusiontables_StyleSettingList"); - } - /** - * Updates an existing style. This method supports patch semantics. - * (style.patch) - * - * @param string $tableId Table whose style is being updated. - * @param int $styleId Identifier (within a table) for the style being updated. - * @param Google_Service_Fusiontables_StyleSetting $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Fusiontables_StyleSetting - */ - public function patch($tableId, $styleId, Google_Service_Fusiontables_StyleSetting $postBody, $optParams = array()) - { - $params = array('tableId' => $tableId, 'styleId' => $styleId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Fusiontables_StyleSetting"); - } - /** - * Updates an existing style. (style.update) - * - * @param string $tableId Table whose style is being updated. - * @param int $styleId Identifier (within a table) for the style being updated. - * @param Google_Service_Fusiontables_StyleSetting $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Fusiontables_StyleSetting - */ - public function update($tableId, $styleId, Google_Service_Fusiontables_StyleSetting $postBody, $optParams = array()) - { - $params = array('tableId' => $tableId, 'styleId' => $styleId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Fusiontables_StyleSetting"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/Resource/Table.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/Resource/Table.php deleted file mode 100644 index 353afaee..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/Resource/Table.php +++ /dev/null @@ -1,228 +0,0 @@ - - * $fusiontablesService = new Google_Service_Fusiontables(...); - * $table = $fusiontablesService->table; - * - */ -class Google_Service_Fusiontables_Resource_Table extends Google_Service_Resource -{ - /** - * Copies a table. (table.copy) - * - * @param string $tableId ID of the table that is being copied. - * @param array $optParams Optional parameters. - * - * @opt_param bool copyPresentation Whether to also copy tabs, styles, and - * templates. Default is false. - * @return Google_Service_Fusiontables_Table - */ - public function copy($tableId, $optParams = array()) - { - $params = array('tableId' => $tableId); - $params = array_merge($params, $optParams); - return $this->call('copy', array($params), "Google_Service_Fusiontables_Table"); - } - /** - * Deletes a table. (table.delete) - * - * @param string $tableId ID of the table to be deleted. - * @param array $optParams Optional parameters. - */ - public function delete($tableId, $optParams = array()) - { - $params = array('tableId' => $tableId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Retrieves a specific table by its ID. (table.get) - * - * @param string $tableId Identifier for the table being requested. - * @param array $optParams Optional parameters. - * @return Google_Service_Fusiontables_Table - */ - public function get($tableId, $optParams = array()) - { - $params = array('tableId' => $tableId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Fusiontables_Table"); - } - /** - * Imports more rows into a table. (table.importRows) - * - * @param string $tableId The table into which new rows are being imported. - * @param array $optParams Optional parameters. - * - * @opt_param string delimiter The delimiter used to separate cell values. This - * can only consist of a single character. Default is ,. - * @opt_param string encoding The encoding of the content. Default is UTF-8. Use - * auto-detect if you are unsure of the encoding. - * @opt_param int endLine The index of the line up to which data will be - * imported. Default is to import the entire file. If endLine is negative, it is - * an offset from the end of the file; the imported content will exclude the - * last endLine lines. - * @opt_param bool isStrict Whether the imported CSV must have the same number - * of values for each row. If false, rows with fewer values will be padded with - * empty values. Default is true. - * @opt_param int startLine The index of the first line from which to start - * importing, inclusive. Default is 0. - * @return Google_Service_Fusiontables_Import - */ - public function importRows($tableId, $optParams = array()) - { - $params = array('tableId' => $tableId); - $params = array_merge($params, $optParams); - return $this->call('importRows', array($params), "Google_Service_Fusiontables_Import"); - } - /** - * Imports a new table. (table.importTable) - * - * @param string $name The name to be assigned to the new table. - * @param array $optParams Optional parameters. - * - * @opt_param string delimiter The delimiter used to separate cell values. This - * can only consist of a single character. Default is ,. - * @opt_param string encoding The encoding of the content. Default is UTF-8. Use - * auto-detect if you are unsure of the encoding. - * @return Google_Service_Fusiontables_Table - */ - public function importTable($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('importTable', array($params), "Google_Service_Fusiontables_Table"); - } - /** - * Creates a new table. (table.insert) - * - * @param Google_Service_Fusiontables_Table $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Fusiontables_Table - */ - public function insert(Google_Service_Fusiontables_Table $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Fusiontables_Table"); - } - /** - * Retrieves a list of tables a user owns. (table.listTable) - * - * @param array $optParams Optional parameters. - * - * @opt_param string maxResults Maximum number of tables to return. Default is - * 5. - * @opt_param string pageToken Continuation token specifying which result page - * to return. - * @return Google_Service_Fusiontables_TableList - */ - public function listTable($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Fusiontables_TableList"); - } - /** - * Updates an existing table. Unless explicitly requested, only the name, - * description, and attribution will be updated. This method supports patch - * semantics. (table.patch) - * - * @param string $tableId ID of the table that is being updated. - * @param Google_Service_Fusiontables_Table $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool replaceViewDefinition Whether the view definition is also - * updated. The specified view definition replaces the existing one. Only a view - * can be updated with a new definition. - * @return Google_Service_Fusiontables_Table - */ - public function patch($tableId, Google_Service_Fusiontables_Table $postBody, $optParams = array()) - { - $params = array('tableId' => $tableId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Fusiontables_Table"); - } - /** - * Replaces rows of the table with the rows of the spreadsheet that is first - * imported from. Current rows remain visible until all replacement rows are - * ready. (table.refetchSheet) - * - * @param string $tableId Table whose rows will be replaced from the - * spreadsheet. - * @param array $optParams Optional parameters. - * @return Google_Service_Fusiontables_Task - */ - public function refetchSheet($tableId, $optParams = array()) - { - $params = array('tableId' => $tableId); - $params = array_merge($params, $optParams); - return $this->call('refetchSheet', array($params), "Google_Service_Fusiontables_Task"); - } - /** - * Replaces rows of an existing table. Current rows remain visible until all - * replacement rows are ready. (table.replaceRows) - * - * @param string $tableId Table whose rows will be replaced. - * @param array $optParams Optional parameters. - * - * @opt_param string delimiter The delimiter used to separate cell values. This - * can only consist of a single character. Default is ,. - * @opt_param string encoding The encoding of the content. Default is UTF-8. Use - * 'auto-detect' if you are unsure of the encoding. - * @opt_param int endLine The index of the line up to which data will be - * imported. Default is to import the entire file. If endLine is negative, it is - * an offset from the end of the file; the imported content will exclude the - * last endLine lines. - * @opt_param bool isStrict Whether the imported CSV must have the same number - * of column values for each row. If true, throws an exception if the CSV does - * not have the same number of columns. If false, rows with fewer column values - * will be padded with empty values. Default is true. - * @opt_param int startLine The index of the first line from which to start - * importing, inclusive. Default is 0. - * @return Google_Service_Fusiontables_Task - */ - public function replaceRows($tableId, $optParams = array()) - { - $params = array('tableId' => $tableId); - $params = array_merge($params, $optParams); - return $this->call('replaceRows', array($params), "Google_Service_Fusiontables_Task"); - } - /** - * Updates an existing table. Unless explicitly requested, only the name, - * description, and attribution will be updated. (table.update) - * - * @param string $tableId ID of the table that is being updated. - * @param Google_Service_Fusiontables_Table $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool replaceViewDefinition Whether the view definition is also - * updated. The specified view definition replaces the existing one. Only a view - * can be updated with a new definition. - * @return Google_Service_Fusiontables_Table - */ - public function update($tableId, Google_Service_Fusiontables_Table $postBody, $optParams = array()) - { - $params = array('tableId' => $tableId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Fusiontables_Table"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/Resource/Task.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/Resource/Task.php deleted file mode 100644 index 34e191f7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/Resource/Task.php +++ /dev/null @@ -1,75 +0,0 @@ - - * $fusiontablesService = new Google_Service_Fusiontables(...); - * $task = $fusiontablesService->task; - * - */ -class Google_Service_Fusiontables_Resource_Task extends Google_Service_Resource -{ - /** - * Deletes a specific task by its ID, unless that task has already started - * running. (task.delete) - * - * @param string $tableId Table from which the task is being deleted. - * @param string $taskId The identifier of the task to delete. - * @param array $optParams Optional parameters. - */ - public function delete($tableId, $taskId, $optParams = array()) - { - $params = array('tableId' => $tableId, 'taskId' => $taskId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Retrieves a specific task by its ID. (task.get) - * - * @param string $tableId Table to which the task belongs. - * @param string $taskId The identifier of the task to get. - * @param array $optParams Optional parameters. - * @return Google_Service_Fusiontables_Task - */ - public function get($tableId, $taskId, $optParams = array()) - { - $params = array('tableId' => $tableId, 'taskId' => $taskId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Fusiontables_Task"); - } - /** - * Retrieves a list of tasks. (task.listTask) - * - * @param string $tableId Table whose tasks are being listed. - * @param array $optParams Optional parameters. - * - * @opt_param string maxResults Maximum number of tasks to return. Default is 5. - * @opt_param string pageToken Continuation token specifying which result page - * to return. - * @opt_param string startIndex Index of the first result returned in the - * current page. - * @return Google_Service_Fusiontables_TaskList - */ - public function listTask($tableId, $optParams = array()) - { - $params = array('tableId' => $tableId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Fusiontables_TaskList"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/Resource/Template.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/Resource/Template.php deleted file mode 100644 index af222c72..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/Resource/Template.php +++ /dev/null @@ -1,119 +0,0 @@ - - * $fusiontablesService = new Google_Service_Fusiontables(...); - * $template = $fusiontablesService->template; - * - */ -class Google_Service_Fusiontables_Resource_Template extends Google_Service_Resource -{ - /** - * Deletes a template (template.delete) - * - * @param string $tableId Table from which the template is being deleted - * @param int $templateId Identifier for the template which is being deleted - * @param array $optParams Optional parameters. - */ - public function delete($tableId, $templateId, $optParams = array()) - { - $params = array('tableId' => $tableId, 'templateId' => $templateId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Retrieves a specific template by its id (template.get) - * - * @param string $tableId Table to which the template belongs - * @param int $templateId Identifier for the template that is being requested - * @param array $optParams Optional parameters. - * @return Google_Service_Fusiontables_Template - */ - public function get($tableId, $templateId, $optParams = array()) - { - $params = array('tableId' => $tableId, 'templateId' => $templateId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Fusiontables_Template"); - } - /** - * Creates a new template for the table. (template.insert) - * - * @param string $tableId Table for which a new template is being created - * @param Google_Service_Fusiontables_Template $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Fusiontables_Template - */ - public function insert($tableId, Google_Service_Fusiontables_Template $postBody, $optParams = array()) - { - $params = array('tableId' => $tableId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Fusiontables_Template"); - } - /** - * Retrieves a list of templates. (template.listTemplate) - * - * @param string $tableId Identifier for the table whose templates are being - * requested - * @param array $optParams Optional parameters. - * - * @opt_param string maxResults Maximum number of templates to return. Optional. - * Default is 5. - * @opt_param string pageToken Continuation token specifying which results page - * to return. Optional. - * @return Google_Service_Fusiontables_TemplateList - */ - public function listTemplate($tableId, $optParams = array()) - { - $params = array('tableId' => $tableId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Fusiontables_TemplateList"); - } - /** - * Updates an existing template. This method supports patch semantics. - * (template.patch) - * - * @param string $tableId Table to which the updated template belongs - * @param int $templateId Identifier for the template that is being updated - * @param Google_Service_Fusiontables_Template $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Fusiontables_Template - */ - public function patch($tableId, $templateId, Google_Service_Fusiontables_Template $postBody, $optParams = array()) - { - $params = array('tableId' => $tableId, 'templateId' => $templateId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Fusiontables_Template"); - } - /** - * Updates an existing template (template.update) - * - * @param string $tableId Table to which the updated template belongs - * @param int $templateId Identifier for the template that is being updated - * @param Google_Service_Fusiontables_Template $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Fusiontables_Template - */ - public function update($tableId, $templateId, Google_Service_Fusiontables_Template $postBody, $optParams = array()) - { - $params = array('tableId' => $tableId, 'templateId' => $templateId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Fusiontables_Template"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/Sqlresponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/Sqlresponse.php deleted file mode 100644 index 2a4c1ae8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/Sqlresponse.php +++ /dev/null @@ -1,49 +0,0 @@ -columns = $columns; - } - public function getColumns() - { - return $this->columns; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setRows($rows) - { - $this->rows = $rows; - } - public function getRows() - { - return $this->rows; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/StyleFunction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/StyleFunction.php deleted file mode 100644 index 626c9d08..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/StyleFunction.php +++ /dev/null @@ -1,72 +0,0 @@ -buckets = $buckets; - } - /** - * @return Google_Service_Fusiontables_Bucket - */ - public function getBuckets() - { - return $this->buckets; - } - public function setColumnName($columnName) - { - $this->columnName = $columnName; - } - public function getColumnName() - { - return $this->columnName; - } - /** - * @param Google_Service_Fusiontables_StyleFunctionGradient - */ - public function setGradient(Google_Service_Fusiontables_StyleFunctionGradient $gradient) - { - $this->gradient = $gradient; - } - /** - * @return Google_Service_Fusiontables_StyleFunctionGradient - */ - public function getGradient() - { - return $this->gradient; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/StyleFunctionGradient.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/StyleFunctionGradient.php deleted file mode 100644 index 45287606..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/StyleFunctionGradient.php +++ /dev/null @@ -1,56 +0,0 @@ -colors = $colors; - } - /** - * @return Google_Service_Fusiontables_StyleFunctionGradientColors - */ - public function getColors() - { - return $this->colors; - } - public function setMax($max) - { - $this->max = $max; - } - public function getMax() - { - return $this->max; - } - public function setMin($min) - { - $this->min = $min; - } - public function getMin() - { - return $this->min; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/StyleFunctionGradientColors.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/StyleFunctionGradientColors.php deleted file mode 100644 index 4a9fe913..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/StyleFunctionGradientColors.php +++ /dev/null @@ -1,39 +0,0 @@ -color = $color; - } - public function getColor() - { - return $this->color; - } - public function setOpacity($opacity) - { - $this->opacity = $opacity; - } - public function getOpacity() - { - return $this->opacity; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/StyleSetting.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/StyleSetting.php deleted file mode 100644 index 40d565b3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/StyleSetting.php +++ /dev/null @@ -1,105 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Fusiontables_PointStyle - */ - public function setMarkerOptions(Google_Service_Fusiontables_PointStyle $markerOptions) - { - $this->markerOptions = $markerOptions; - } - /** - * @return Google_Service_Fusiontables_PointStyle - */ - public function getMarkerOptions() - { - return $this->markerOptions; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Fusiontables_PolygonStyle - */ - public function setPolygonOptions(Google_Service_Fusiontables_PolygonStyle $polygonOptions) - { - $this->polygonOptions = $polygonOptions; - } - /** - * @return Google_Service_Fusiontables_PolygonStyle - */ - public function getPolygonOptions() - { - return $this->polygonOptions; - } - /** - * @param Google_Service_Fusiontables_LineStyle - */ - public function setPolylineOptions(Google_Service_Fusiontables_LineStyle $polylineOptions) - { - $this->polylineOptions = $polylineOptions; - } - /** - * @return Google_Service_Fusiontables_LineStyle - */ - public function getPolylineOptions() - { - return $this->polylineOptions; - } - public function setStyleId($styleId) - { - $this->styleId = $styleId; - } - public function getStyleId() - { - return $this->styleId; - } - public function setTableId($tableId) - { - $this->tableId = $tableId; - } - public function getTableId() - { - return $this->tableId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/StyleSettingList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/StyleSettingList.php deleted file mode 100644 index 5e0405d5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/StyleSettingList.php +++ /dev/null @@ -1,65 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Fusiontables_StyleSetting - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setTotalItems($totalItems) - { - $this->totalItems = $totalItems; - } - public function getTotalItems() - { - return $this->totalItems; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/Table.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/Table.php deleted file mode 100644 index 1d1a8ba4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/Table.php +++ /dev/null @@ -1,146 +0,0 @@ -attribution = $attribution; - } - public function getAttribution() - { - return $this->attribution; - } - public function setAttributionLink($attributionLink) - { - $this->attributionLink = $attributionLink; - } - public function getAttributionLink() - { - return $this->attributionLink; - } - public function setBaseTableIds($baseTableIds) - { - $this->baseTableIds = $baseTableIds; - } - public function getBaseTableIds() - { - return $this->baseTableIds; - } - public function setColumnPropertiesJsonSchema($columnPropertiesJsonSchema) - { - $this->columnPropertiesJsonSchema = $columnPropertiesJsonSchema; - } - public function getColumnPropertiesJsonSchema() - { - return $this->columnPropertiesJsonSchema; - } - /** - * @param Google_Service_Fusiontables_Column - */ - public function setColumns($columns) - { - $this->columns = $columns; - } - /** - * @return Google_Service_Fusiontables_Column - */ - public function getColumns() - { - return $this->columns; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setIsExportable($isExportable) - { - $this->isExportable = $isExportable; - } - public function getIsExportable() - { - return $this->isExportable; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setSql($sql) - { - $this->sql = $sql; - } - public function getSql() - { - return $this->sql; - } - public function setTableId($tableId) - { - $this->tableId = $tableId; - } - public function getTableId() - { - return $this->tableId; - } - public function setTablePropertiesJson($tablePropertiesJson) - { - $this->tablePropertiesJson = $tablePropertiesJson; - } - public function getTablePropertiesJson() - { - return $this->tablePropertiesJson; - } - public function setTablePropertiesJsonSchema($tablePropertiesJsonSchema) - { - $this->tablePropertiesJsonSchema = $tablePropertiesJsonSchema; - } - public function getTablePropertiesJsonSchema() - { - return $this->tablePropertiesJsonSchema; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/TableList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/TableList.php deleted file mode 100644 index d31297cb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/TableList.php +++ /dev/null @@ -1,56 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Fusiontables_Table - */ - public function getItems() - { - return $this->items; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/Task.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/Task.php deleted file mode 100644 index 3230c92d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/Task.php +++ /dev/null @@ -1,66 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setProgress($progress) - { - $this->progress = $progress; - } - public function getProgress() - { - return $this->progress; - } - public function setStarted($started) - { - $this->started = $started; - } - public function getStarted() - { - return $this->started; - } - public function setTaskId($taskId) - { - $this->taskId = $taskId; - } - public function getTaskId() - { - return $this->taskId; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/TaskList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/TaskList.php deleted file mode 100644 index 68fe1808..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/TaskList.php +++ /dev/null @@ -1,65 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Fusiontables_Task - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setTotalItems($totalItems) - { - $this->totalItems = $totalItems; - } - public function getTotalItems() - { - return $this->totalItems; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/Template.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/Template.php deleted file mode 100644 index 74a3e03d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/Template.php +++ /dev/null @@ -1,76 +0,0 @@ -automaticColumnNames = $automaticColumnNames; - } - public function getAutomaticColumnNames() - { - return $this->automaticColumnNames; - } - public function setBody($body) - { - $this->body = $body; - } - public function getBody() - { - return $this->body; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setTableId($tableId) - { - $this->tableId = $tableId; - } - public function getTableId() - { - return $this->tableId; - } - public function setTemplateId($templateId) - { - $this->templateId = $templateId; - } - public function getTemplateId() - { - return $this->templateId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/TemplateList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/TemplateList.php deleted file mode 100644 index 577c2817..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Fusiontables/TemplateList.php +++ /dev/null @@ -1,65 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Fusiontables_Template - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setTotalItems($totalItems) - { - $this->totalItems = $totalItems; - } - public function getTotalItems() - { - return $this->totalItems; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games.php deleted file mode 100644 index e406c95d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games.php +++ /dev/null @@ -1,996 +0,0 @@ - - * The API for Google Play Game Services.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Games extends Google_Service -{ - /** View and manage its own configuration data in your Google Drive. */ - const DRIVE_APPDATA = - "https://www.googleapis.com/auth/drive.appdata"; - /** Create, edit, and delete your Google Play Games activity. */ - const GAMES = - "https://www.googleapis.com/auth/games"; - - public $achievementDefinitions; - public $achievements; - public $applications; - public $events; - public $leaderboards; - public $metagame; - public $players; - public $pushtokens; - public $revisions; - public $rooms; - public $scores; - public $snapshots; - public $turnBasedMatches; - - /** - * Constructs the internal representation of the Games service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://www.googleapis.com/'; - $this->servicePath = 'games/v1/'; - $this->batchPath = 'batch/games/v1'; - $this->version = 'v1'; - $this->serviceName = 'games'; - - $this->achievementDefinitions = new Google_Service_Games_Resource_AchievementDefinitions( - $this, - $this->serviceName, - 'achievementDefinitions', - array( - 'methods' => array( - 'list' => array( - 'path' => 'achievements', - 'httpMethod' => 'GET', - 'parameters' => array( - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->achievements = new Google_Service_Games_Resource_Achievements( - $this, - $this->serviceName, - 'achievements', - array( - 'methods' => array( - 'increment' => array( - 'path' => 'achievements/{achievementId}/increment', - 'httpMethod' => 'POST', - 'parameters' => array( - 'achievementId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'stepsToIncrement' => array( - 'location' => 'query', - 'type' => 'integer', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'players/{playerId}/achievements', - 'httpMethod' => 'GET', - 'parameters' => array( - 'playerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'state' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'reveal' => array( - 'path' => 'achievements/{achievementId}/reveal', - 'httpMethod' => 'POST', - 'parameters' => array( - 'achievementId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setStepsAtLeast' => array( - 'path' => 'achievements/{achievementId}/setStepsAtLeast', - 'httpMethod' => 'POST', - 'parameters' => array( - 'achievementId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'steps' => array( - 'location' => 'query', - 'type' => 'integer', - 'required' => true, - ), - ), - ),'unlock' => array( - 'path' => 'achievements/{achievementId}/unlock', - 'httpMethod' => 'POST', - 'parameters' => array( - 'achievementId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'builtinGameId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'updateMultiple' => array( - 'path' => 'achievements/updateMultiple', - 'httpMethod' => 'POST', - 'parameters' => array( - 'builtinGameId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->applications = new Google_Service_Games_Resource_Applications( - $this, - $this->serviceName, - 'applications', - array( - 'methods' => array( - 'get' => array( - 'path' => 'applications/{applicationId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'applicationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'platformType' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'played' => array( - 'path' => 'applications/played', - 'httpMethod' => 'POST', - 'parameters' => array( - 'builtinGameId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'verify' => array( - 'path' => 'applications/{applicationId}/verify', - 'httpMethod' => 'GET', - 'parameters' => array( - 'applicationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->events = new Google_Service_Games_Resource_Events( - $this, - $this->serviceName, - 'events', - array( - 'methods' => array( - 'listByPlayer' => array( - 'path' => 'events', - 'httpMethod' => 'GET', - 'parameters' => array( - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'listDefinitions' => array( - 'path' => 'eventDefinitions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'record' => array( - 'path' => 'events', - 'httpMethod' => 'POST', - 'parameters' => array( - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->leaderboards = new Google_Service_Games_Resource_Leaderboards( - $this, - $this->serviceName, - 'leaderboards', - array( - 'methods' => array( - 'get' => array( - 'path' => 'leaderboards/{leaderboardId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'leaderboardId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'leaderboards', - 'httpMethod' => 'GET', - 'parameters' => array( - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->metagame = new Google_Service_Games_Resource_Metagame( - $this, - $this->serviceName, - 'metagame', - array( - 'methods' => array( - 'getMetagameConfig' => array( - 'path' => 'metagameConfig', - 'httpMethod' => 'GET', - 'parameters' => array(), - ),'listCategoriesByPlayer' => array( - 'path' => 'players/{playerId}/categories/{collection}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'playerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'collection' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->players = new Google_Service_Games_Resource_Players( - $this, - $this->serviceName, - 'players', - array( - 'methods' => array( - 'get' => array( - 'path' => 'players/{playerId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'playerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'players/me/players/{collection}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'collection' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->pushtokens = new Google_Service_Games_Resource_Pushtokens( - $this, - $this->serviceName, - 'pushtokens', - array( - 'methods' => array( - 'remove' => array( - 'path' => 'pushtokens/remove', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'update' => array( - 'path' => 'pushtokens', - 'httpMethod' => 'PUT', - 'parameters' => array(), - ), - ) - ) - ); - $this->revisions = new Google_Service_Games_Resource_Revisions( - $this, - $this->serviceName, - 'revisions', - array( - 'methods' => array( - 'check' => array( - 'path' => 'revisions/check', - 'httpMethod' => 'GET', - 'parameters' => array( - 'clientRevision' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->rooms = new Google_Service_Games_Resource_Rooms( - $this, - $this->serviceName, - 'rooms', - array( - 'methods' => array( - 'create' => array( - 'path' => 'rooms/create', - 'httpMethod' => 'POST', - 'parameters' => array( - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'decline' => array( - 'path' => 'rooms/{roomId}/decline', - 'httpMethod' => 'POST', - 'parameters' => array( - 'roomId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'dismiss' => array( - 'path' => 'rooms/{roomId}/dismiss', - 'httpMethod' => 'POST', - 'parameters' => array( - 'roomId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'rooms/{roomId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'roomId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'join' => array( - 'path' => 'rooms/{roomId}/join', - 'httpMethod' => 'POST', - 'parameters' => array( - 'roomId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'leave' => array( - 'path' => 'rooms/{roomId}/leave', - 'httpMethod' => 'POST', - 'parameters' => array( - 'roomId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'rooms', - 'httpMethod' => 'GET', - 'parameters' => array( - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'reportStatus' => array( - 'path' => 'rooms/{roomId}/reportstatus', - 'httpMethod' => 'POST', - 'parameters' => array( - 'roomId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->scores = new Google_Service_Games_Resource_Scores( - $this, - $this->serviceName, - 'scores', - array( - 'methods' => array( - 'get' => array( - 'path' => 'players/{playerId}/leaderboards/{leaderboardId}/scores/{timeSpan}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'playerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'leaderboardId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'timeSpan' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'includeRankType' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'leaderboards/{leaderboardId}/scores/{collection}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'leaderboardId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'collection' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'timeSpan' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'listWindow' => array( - 'path' => 'leaderboards/{leaderboardId}/window/{collection}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'leaderboardId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'collection' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'timeSpan' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'resultsAbove' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'returnTopIfAbsent' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'submit' => array( - 'path' => 'leaderboards/{leaderboardId}/scores', - 'httpMethod' => 'POST', - 'parameters' => array( - 'leaderboardId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'score' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'scoreTag' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'submitMultiple' => array( - 'path' => 'leaderboards/scores', - 'httpMethod' => 'POST', - 'parameters' => array( - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->snapshots = new Google_Service_Games_Resource_Snapshots( - $this, - $this->serviceName, - 'snapshots', - array( - 'methods' => array( - 'get' => array( - 'path' => 'snapshots/{snapshotId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'snapshotId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'players/{playerId}/snapshots', - 'httpMethod' => 'GET', - 'parameters' => array( - 'playerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->turnBasedMatches = new Google_Service_Games_Resource_TurnBasedMatches( - $this, - $this->serviceName, - 'turnBasedMatches', - array( - 'methods' => array( - 'cancel' => array( - 'path' => 'turnbasedmatches/{matchId}/cancel', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'matchId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'create' => array( - 'path' => 'turnbasedmatches/create', - 'httpMethod' => 'POST', - 'parameters' => array( - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'decline' => array( - 'path' => 'turnbasedmatches/{matchId}/decline', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'matchId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'dismiss' => array( - 'path' => 'turnbasedmatches/{matchId}/dismiss', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'matchId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'finish' => array( - 'path' => 'turnbasedmatches/{matchId}/finish', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'matchId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'turnbasedmatches/{matchId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'matchId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'includeMatchData' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'join' => array( - 'path' => 'turnbasedmatches/{matchId}/join', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'matchId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'leave' => array( - 'path' => 'turnbasedmatches/{matchId}/leave', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'matchId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'leaveTurn' => array( - 'path' => 'turnbasedmatches/{matchId}/leaveTurn', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'matchId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'matchVersion' => array( - 'location' => 'query', - 'type' => 'integer', - 'required' => true, - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pendingParticipantId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'turnbasedmatches', - 'httpMethod' => 'GET', - 'parameters' => array( - 'includeMatchData' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxCompletedMatches' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'rematch' => array( - 'path' => 'turnbasedmatches/{matchId}/rematch', - 'httpMethod' => 'POST', - 'parameters' => array( - 'matchId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'sync' => array( - 'path' => 'turnbasedmatches/sync', - 'httpMethod' => 'GET', - 'parameters' => array( - 'includeMatchData' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxCompletedMatches' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'takeTurn' => array( - 'path' => 'turnbasedmatches/{matchId}/turn', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'matchId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/AchievementDefinition.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/AchievementDefinition.php deleted file mode 100644 index 3d4a55fa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/AchievementDefinition.php +++ /dev/null @@ -1,138 +0,0 @@ -achievementType = $achievementType; - } - public function getAchievementType() - { - return $this->achievementType; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setExperiencePoints($experiencePoints) - { - $this->experiencePoints = $experiencePoints; - } - public function getExperiencePoints() - { - return $this->experiencePoints; - } - public function setFormattedTotalSteps($formattedTotalSteps) - { - $this->formattedTotalSteps = $formattedTotalSteps; - } - public function getFormattedTotalSteps() - { - return $this->formattedTotalSteps; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setInitialState($initialState) - { - $this->initialState = $initialState; - } - public function getInitialState() - { - return $this->initialState; - } - public function setIsRevealedIconUrlDefault($isRevealedIconUrlDefault) - { - $this->isRevealedIconUrlDefault = $isRevealedIconUrlDefault; - } - public function getIsRevealedIconUrlDefault() - { - return $this->isRevealedIconUrlDefault; - } - public function setIsUnlockedIconUrlDefault($isUnlockedIconUrlDefault) - { - $this->isUnlockedIconUrlDefault = $isUnlockedIconUrlDefault; - } - public function getIsUnlockedIconUrlDefault() - { - return $this->isUnlockedIconUrlDefault; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setRevealedIconUrl($revealedIconUrl) - { - $this->revealedIconUrl = $revealedIconUrl; - } - public function getRevealedIconUrl() - { - return $this->revealedIconUrl; - } - public function setTotalSteps($totalSteps) - { - $this->totalSteps = $totalSteps; - } - public function getTotalSteps() - { - return $this->totalSteps; - } - public function setUnlockedIconUrl($unlockedIconUrl) - { - $this->unlockedIconUrl = $unlockedIconUrl; - } - public function getUnlockedIconUrl() - { - return $this->unlockedIconUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/AchievementDefinitionsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/AchievementDefinitionsListResponse.php deleted file mode 100644 index a7d39b7b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/AchievementDefinitionsListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Games_AchievementDefinition - */ - public function getItems() - { - return $this->items; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/AchievementIncrementResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/AchievementIncrementResponse.php deleted file mode 100644 index 40ca7569..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/AchievementIncrementResponse.php +++ /dev/null @@ -1,48 +0,0 @@ -currentSteps = $currentSteps; - } - public function getCurrentSteps() - { - return $this->currentSteps; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNewlyUnlocked($newlyUnlocked) - { - $this->newlyUnlocked = $newlyUnlocked; - } - public function getNewlyUnlocked() - { - return $this->newlyUnlocked; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/AchievementRevealResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/AchievementRevealResponse.php deleted file mode 100644 index 2d1dee1d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/AchievementRevealResponse.php +++ /dev/null @@ -1,39 +0,0 @@ -currentState = $currentState; - } - public function getCurrentState() - { - return $this->currentState; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/AchievementSetStepsAtLeastResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/AchievementSetStepsAtLeastResponse.php deleted file mode 100644 index 1a10e42f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/AchievementSetStepsAtLeastResponse.php +++ /dev/null @@ -1,48 +0,0 @@ -currentSteps = $currentSteps; - } - public function getCurrentSteps() - { - return $this->currentSteps; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNewlyUnlocked($newlyUnlocked) - { - $this->newlyUnlocked = $newlyUnlocked; - } - public function getNewlyUnlocked() - { - return $this->newlyUnlocked; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/AchievementUnlockResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/AchievementUnlockResponse.php deleted file mode 100644 index 2165f3ad..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/AchievementUnlockResponse.php +++ /dev/null @@ -1,39 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNewlyUnlocked($newlyUnlocked) - { - $this->newlyUnlocked = $newlyUnlocked; - } - public function getNewlyUnlocked() - { - return $this->newlyUnlocked; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/AchievementUpdateMultipleRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/AchievementUpdateMultipleRequest.php deleted file mode 100644 index f94bba54..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/AchievementUpdateMultipleRequest.php +++ /dev/null @@ -1,47 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Games_AchievementUpdateRequest - */ - public function setUpdates($updates) - { - $this->updates = $updates; - } - /** - * @return Google_Service_Games_AchievementUpdateRequest - */ - public function getUpdates() - { - return $this->updates; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/AchievementUpdateMultipleResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/AchievementUpdateMultipleResponse.php deleted file mode 100644 index a7d0931b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/AchievementUpdateMultipleResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Games_AchievementUpdateResponse - */ - public function setUpdatedAchievements($updatedAchievements) - { - $this->updatedAchievements = $updatedAchievements; - } - /** - * @return Google_Service_Games_AchievementUpdateResponse - */ - public function getUpdatedAchievements() - { - return $this->updatedAchievements; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/AchievementUpdateRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/AchievementUpdateRequest.php deleted file mode 100644 index 143a9f60..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/AchievementUpdateRequest.php +++ /dev/null @@ -1,80 +0,0 @@ -achievementId = $achievementId; - } - public function getAchievementId() - { - return $this->achievementId; - } - /** - * @param Google_Service_Games_GamesAchievementIncrement - */ - public function setIncrementPayload(Google_Service_Games_GamesAchievementIncrement $incrementPayload) - { - $this->incrementPayload = $incrementPayload; - } - /** - * @return Google_Service_Games_GamesAchievementIncrement - */ - public function getIncrementPayload() - { - return $this->incrementPayload; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Games_GamesAchievementSetStepsAtLeast - */ - public function setSetStepsAtLeastPayload(Google_Service_Games_GamesAchievementSetStepsAtLeast $setStepsAtLeastPayload) - { - $this->setStepsAtLeastPayload = $setStepsAtLeastPayload; - } - /** - * @return Google_Service_Games_GamesAchievementSetStepsAtLeast - */ - public function getSetStepsAtLeastPayload() - { - return $this->setStepsAtLeastPayload; - } - public function setUpdateType($updateType) - { - $this->updateType = $updateType; - } - public function getUpdateType() - { - return $this->updateType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/AchievementUpdateResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/AchievementUpdateResponse.php deleted file mode 100644 index 5259c8d3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/AchievementUpdateResponse.php +++ /dev/null @@ -1,75 +0,0 @@ -achievementId = $achievementId; - } - public function getAchievementId() - { - return $this->achievementId; - } - public function setCurrentState($currentState) - { - $this->currentState = $currentState; - } - public function getCurrentState() - { - return $this->currentState; - } - public function setCurrentSteps($currentSteps) - { - $this->currentSteps = $currentSteps; - } - public function getCurrentSteps() - { - return $this->currentSteps; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNewlyUnlocked($newlyUnlocked) - { - $this->newlyUnlocked = $newlyUnlocked; - } - public function getNewlyUnlocked() - { - return $this->newlyUnlocked; - } - public function setUpdateOccurred($updateOccurred) - { - $this->updateOccurred = $updateOccurred; - } - public function getUpdateOccurred() - { - return $this->updateOccurred; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/AggregateStats.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/AggregateStats.php deleted file mode 100644 index f4b12a3b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/AggregateStats.php +++ /dev/null @@ -1,66 +0,0 @@ -count = $count; - } - public function getCount() - { - return $this->count; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setMax($max) - { - $this->max = $max; - } - public function getMax() - { - return $this->max; - } - public function setMin($min) - { - $this->min = $min; - } - public function getMin() - { - return $this->min; - } - public function setSum($sum) - { - $this->sum = $sum; - } - public function getSum() - { - return $this->sum; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/AnonymousPlayer.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/AnonymousPlayer.php deleted file mode 100644 index 9650de07..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/AnonymousPlayer.php +++ /dev/null @@ -1,48 +0,0 @@ -avatarImageUrl = $avatarImageUrl; - } - public function getAvatarImageUrl() - { - return $this->avatarImageUrl; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Application.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Application.php deleted file mode 100644 index 3ea234f0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Application.php +++ /dev/null @@ -1,164 +0,0 @@ - "achievement_count", - "leaderboardCount" => "leaderboard_count", - ); - public $achievementCount; - protected $assetsType = 'Google_Service_Games_ImageAsset'; - protected $assetsDataType = 'array'; - public $author; - protected $categoryType = 'Google_Service_Games_ApplicationCategory'; - protected $categoryDataType = ''; - public $description; - public $enabledFeatures; - public $id; - protected $instancesType = 'Google_Service_Games_Instance'; - protected $instancesDataType = 'array'; - public $kind; - public $lastUpdatedTimestamp; - public $leaderboardCount; - public $name; - public $themeColor; - - public function setAchievementCount($achievementCount) - { - $this->achievementCount = $achievementCount; - } - public function getAchievementCount() - { - return $this->achievementCount; - } - /** - * @param Google_Service_Games_ImageAsset - */ - public function setAssets($assets) - { - $this->assets = $assets; - } - /** - * @return Google_Service_Games_ImageAsset - */ - public function getAssets() - { - return $this->assets; - } - public function setAuthor($author) - { - $this->author = $author; - } - public function getAuthor() - { - return $this->author; - } - /** - * @param Google_Service_Games_ApplicationCategory - */ - public function setCategory(Google_Service_Games_ApplicationCategory $category) - { - $this->category = $category; - } - /** - * @return Google_Service_Games_ApplicationCategory - */ - public function getCategory() - { - return $this->category; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setEnabledFeatures($enabledFeatures) - { - $this->enabledFeatures = $enabledFeatures; - } - public function getEnabledFeatures() - { - return $this->enabledFeatures; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Games_Instance - */ - public function setInstances($instances) - { - $this->instances = $instances; - } - /** - * @return Google_Service_Games_Instance - */ - public function getInstances() - { - return $this->instances; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLastUpdatedTimestamp($lastUpdatedTimestamp) - { - $this->lastUpdatedTimestamp = $lastUpdatedTimestamp; - } - public function getLastUpdatedTimestamp() - { - return $this->lastUpdatedTimestamp; - } - public function setLeaderboardCount($leaderboardCount) - { - $this->leaderboardCount = $leaderboardCount; - } - public function getLeaderboardCount() - { - return $this->leaderboardCount; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setThemeColor($themeColor) - { - $this->themeColor = $themeColor; - } - public function getThemeColor() - { - return $this->themeColor; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/ApplicationCategory.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/ApplicationCategory.php deleted file mode 100644 index 2c244dcd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/ApplicationCategory.php +++ /dev/null @@ -1,48 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setPrimary($primary) - { - $this->primary = $primary; - } - public function getPrimary() - { - return $this->primary; - } - public function setSecondary($secondary) - { - $this->secondary = $secondary; - } - public function getSecondary() - { - return $this->secondary; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/ApplicationVerifyResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/ApplicationVerifyResponse.php deleted file mode 100644 index 5fe264d8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/ApplicationVerifyResponse.php +++ /dev/null @@ -1,52 +0,0 @@ - "alternate_player_id", - "playerId" => "player_id", - ); - public $alternatePlayerId; - public $kind; - public $playerId; - - public function setAlternatePlayerId($alternatePlayerId) - { - $this->alternatePlayerId = $alternatePlayerId; - } - public function getAlternatePlayerId() - { - return $this->alternatePlayerId; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setPlayerId($playerId) - { - $this->playerId = $playerId; - } - public function getPlayerId() - { - return $this->playerId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Category.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Category.php deleted file mode 100644 index 4cf8c986..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Category.php +++ /dev/null @@ -1,48 +0,0 @@ -category = $category; - } - public function getCategory() - { - return $this->category; - } - public function setExperiencePoints($experiencePoints) - { - $this->experiencePoints = $experiencePoints; - } - public function getExperiencePoints() - { - return $this->experiencePoints; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/CategoryListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/CategoryListResponse.php deleted file mode 100644 index 8e31e432..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/CategoryListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Games_Category - */ - public function getItems() - { - return $this->items; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/EventBatchRecordFailure.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/EventBatchRecordFailure.php deleted file mode 100644 index 78fbf8e0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/EventBatchRecordFailure.php +++ /dev/null @@ -1,55 +0,0 @@ -failureCause = $failureCause; - } - public function getFailureCause() - { - return $this->failureCause; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Games_EventPeriodRange - */ - public function setRange(Google_Service_Games_EventPeriodRange $range) - { - $this->range = $range; - } - /** - * @return Google_Service_Games_EventPeriodRange - */ - public function getRange() - { - return $this->range; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/EventChild.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/EventChild.php deleted file mode 100644 index cb660928..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/EventChild.php +++ /dev/null @@ -1,39 +0,0 @@ -childId = $childId; - } - public function getChildId() - { - return $this->childId; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/EventDefinition.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/EventDefinition.php deleted file mode 100644 index 77aaa156..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/EventDefinition.php +++ /dev/null @@ -1,101 +0,0 @@ -childEvents = $childEvents; - } - /** - * @return Google_Service_Games_EventChild - */ - public function getChildEvents() - { - return $this->childEvents; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setImageUrl($imageUrl) - { - $this->imageUrl = $imageUrl; - } - public function getImageUrl() - { - return $this->imageUrl; - } - public function setIsDefaultImageUrl($isDefaultImageUrl) - { - $this->isDefaultImageUrl = $isDefaultImageUrl; - } - public function getIsDefaultImageUrl() - { - return $this->isDefaultImageUrl; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setVisibility($visibility) - { - $this->visibility = $visibility; - } - public function getVisibility() - { - return $this->visibility; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/EventDefinitionListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/EventDefinitionListResponse.php deleted file mode 100644 index cccf84bf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/EventDefinitionListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Games_EventDefinition - */ - public function getItems() - { - return $this->items; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/EventPeriodRange.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/EventPeriodRange.php deleted file mode 100644 index acf0208c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/EventPeriodRange.php +++ /dev/null @@ -1,48 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setPeriodEndMillis($periodEndMillis) - { - $this->periodEndMillis = $periodEndMillis; - } - public function getPeriodEndMillis() - { - return $this->periodEndMillis; - } - public function setPeriodStartMillis($periodStartMillis) - { - $this->periodStartMillis = $periodStartMillis; - } - public function getPeriodStartMillis() - { - return $this->periodStartMillis; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/EventPeriodUpdate.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/EventPeriodUpdate.php deleted file mode 100644 index e1502787..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/EventPeriodUpdate.php +++ /dev/null @@ -1,63 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Games_EventPeriodRange - */ - public function setTimePeriod(Google_Service_Games_EventPeriodRange $timePeriod) - { - $this->timePeriod = $timePeriod; - } - /** - * @return Google_Service_Games_EventPeriodRange - */ - public function getTimePeriod() - { - return $this->timePeriod; - } - /** - * @param Google_Service_Games_EventUpdateRequest - */ - public function setUpdates($updates) - { - $this->updates = $updates; - } - /** - * @return Google_Service_Games_EventUpdateRequest - */ - public function getUpdates() - { - return $this->updates; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/EventRecordFailure.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/EventRecordFailure.php deleted file mode 100644 index 10d36bee..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/EventRecordFailure.php +++ /dev/null @@ -1,48 +0,0 @@ -eventId = $eventId; - } - public function getEventId() - { - return $this->eventId; - } - public function setFailureCause($failureCause) - { - $this->failureCause = $failureCause; - } - public function getFailureCause() - { - return $this->failureCause; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/EventRecordRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/EventRecordRequest.php deleted file mode 100644 index e3d66a6e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/EventRecordRequest.php +++ /dev/null @@ -1,65 +0,0 @@ -currentTimeMillis = $currentTimeMillis; - } - public function getCurrentTimeMillis() - { - return $this->currentTimeMillis; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setRequestId($requestId) - { - $this->requestId = $requestId; - } - public function getRequestId() - { - return $this->requestId; - } - /** - * @param Google_Service_Games_EventPeriodUpdate - */ - public function setTimePeriods($timePeriods) - { - $this->timePeriods = $timePeriods; - } - /** - * @return Google_Service_Games_EventPeriodUpdate - */ - public function getTimePeriods() - { - return $this->timePeriods; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/EventUpdateRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/EventUpdateRequest.php deleted file mode 100644 index 2a7160fc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/EventUpdateRequest.php +++ /dev/null @@ -1,48 +0,0 @@ -definitionId = $definitionId; - } - public function getDefinitionId() - { - return $this->definitionId; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setUpdateCount($updateCount) - { - $this->updateCount = $updateCount; - } - public function getUpdateCount() - { - return $this->updateCount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/EventUpdateResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/EventUpdateResponse.php deleted file mode 100644 index 68797b10..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/EventUpdateResponse.php +++ /dev/null @@ -1,79 +0,0 @@ -batchFailures = $batchFailures; - } - /** - * @return Google_Service_Games_EventBatchRecordFailure - */ - public function getBatchFailures() - { - return $this->batchFailures; - } - /** - * @param Google_Service_Games_EventRecordFailure - */ - public function setEventFailures($eventFailures) - { - $this->eventFailures = $eventFailures; - } - /** - * @return Google_Service_Games_EventRecordFailure - */ - public function getEventFailures() - { - return $this->eventFailures; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Games_PlayerEvent - */ - public function setPlayerEvents($playerEvents) - { - $this->playerEvents = $playerEvents; - } - /** - * @return Google_Service_Games_PlayerEvent - */ - public function getPlayerEvents() - { - return $this->playerEvents; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/GamesAchievementIncrement.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/GamesAchievementIncrement.php deleted file mode 100644 index e7b9e482..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/GamesAchievementIncrement.php +++ /dev/null @@ -1,48 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setRequestId($requestId) - { - $this->requestId = $requestId; - } - public function getRequestId() - { - return $this->requestId; - } - public function setSteps($steps) - { - $this->steps = $steps; - } - public function getSteps() - { - return $this->steps; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/GamesAchievementSetStepsAtLeast.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/GamesAchievementSetStepsAtLeast.php deleted file mode 100644 index 19287493..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/GamesAchievementSetStepsAtLeast.php +++ /dev/null @@ -1,39 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setSteps($steps) - { - $this->steps = $steps; - } - public function getSteps() - { - return $this->steps; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/ImageAsset.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/ImageAsset.php deleted file mode 100644 index 2a9f39a0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/ImageAsset.php +++ /dev/null @@ -1,66 +0,0 @@ -height = $height; - } - public function getHeight() - { - return $this->height; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } - public function setWidth($width) - { - $this->width = $width; - } - public function getWidth() - { - return $this->width; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Instance.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Instance.php deleted file mode 100644 index 83ba0b52..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Instance.php +++ /dev/null @@ -1,123 +0,0 @@ -acquisitionUri = $acquisitionUri; - } - public function getAcquisitionUri() - { - return $this->acquisitionUri; - } - /** - * @param Google_Service_Games_InstanceAndroidDetails - */ - public function setAndroidInstance(Google_Service_Games_InstanceAndroidDetails $androidInstance) - { - $this->androidInstance = $androidInstance; - } - /** - * @return Google_Service_Games_InstanceAndroidDetails - */ - public function getAndroidInstance() - { - return $this->androidInstance; - } - /** - * @param Google_Service_Games_InstanceIosDetails - */ - public function setIosInstance(Google_Service_Games_InstanceIosDetails $iosInstance) - { - $this->iosInstance = $iosInstance; - } - /** - * @return Google_Service_Games_InstanceIosDetails - */ - public function getIosInstance() - { - return $this->iosInstance; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPlatformType($platformType) - { - $this->platformType = $platformType; - } - public function getPlatformType() - { - return $this->platformType; - } - public function setRealtimePlay($realtimePlay) - { - $this->realtimePlay = $realtimePlay; - } - public function getRealtimePlay() - { - return $this->realtimePlay; - } - public function setTurnBasedPlay($turnBasedPlay) - { - $this->turnBasedPlay = $turnBasedPlay; - } - public function getTurnBasedPlay() - { - return $this->turnBasedPlay; - } - /** - * @param Google_Service_Games_InstanceWebDetails - */ - public function setWebInstance(Google_Service_Games_InstanceWebDetails $webInstance) - { - $this->webInstance = $webInstance; - } - /** - * @return Google_Service_Games_InstanceWebDetails - */ - public function getWebInstance() - { - return $this->webInstance; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/InstanceAndroidDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/InstanceAndroidDetails.php deleted file mode 100644 index 65407b5a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/InstanceAndroidDetails.php +++ /dev/null @@ -1,57 +0,0 @@ -enablePiracyCheck = $enablePiracyCheck; - } - public function getEnablePiracyCheck() - { - return $this->enablePiracyCheck; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setPackageName($packageName) - { - $this->packageName = $packageName; - } - public function getPackageName() - { - return $this->packageName; - } - public function setPreferred($preferred) - { - $this->preferred = $preferred; - } - public function getPreferred() - { - return $this->preferred; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/InstanceIosDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/InstanceIosDetails.php deleted file mode 100644 index 4c4d75d2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/InstanceIosDetails.php +++ /dev/null @@ -1,84 +0,0 @@ -bundleIdentifier = $bundleIdentifier; - } - public function getBundleIdentifier() - { - return $this->bundleIdentifier; - } - public function setItunesAppId($itunesAppId) - { - $this->itunesAppId = $itunesAppId; - } - public function getItunesAppId() - { - return $this->itunesAppId; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setPreferredForIpad($preferredForIpad) - { - $this->preferredForIpad = $preferredForIpad; - } - public function getPreferredForIpad() - { - return $this->preferredForIpad; - } - public function setPreferredForIphone($preferredForIphone) - { - $this->preferredForIphone = $preferredForIphone; - } - public function getPreferredForIphone() - { - return $this->preferredForIphone; - } - public function setSupportIpad($supportIpad) - { - $this->supportIpad = $supportIpad; - } - public function getSupportIpad() - { - return $this->supportIpad; - } - public function setSupportIphone($supportIphone) - { - $this->supportIphone = $supportIphone; - } - public function getSupportIphone() - { - return $this->supportIphone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/InstanceWebDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/InstanceWebDetails.php deleted file mode 100644 index f6d5abbe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/InstanceWebDetails.php +++ /dev/null @@ -1,48 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLaunchUrl($launchUrl) - { - $this->launchUrl = $launchUrl; - } - public function getLaunchUrl() - { - return $this->launchUrl; - } - public function setPreferred($preferred) - { - $this->preferred = $preferred; - } - public function getPreferred() - { - return $this->preferred; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Leaderboard.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Leaderboard.php deleted file mode 100644 index ca0331bc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Leaderboard.php +++ /dev/null @@ -1,75 +0,0 @@ -iconUrl = $iconUrl; - } - public function getIconUrl() - { - return $this->iconUrl; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setIsIconUrlDefault($isIconUrlDefault) - { - $this->isIconUrlDefault = $isIconUrlDefault; - } - public function getIsIconUrlDefault() - { - return $this->isIconUrlDefault; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOrder($order) - { - $this->order = $order; - } - public function getOrder() - { - return $this->order; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/LeaderboardEntry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/LeaderboardEntry.php deleted file mode 100644 index 65ed852d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/LeaderboardEntry.php +++ /dev/null @@ -1,109 +0,0 @@ -formattedScore = $formattedScore; - } - public function getFormattedScore() - { - return $this->formattedScore; - } - public function setFormattedScoreRank($formattedScoreRank) - { - $this->formattedScoreRank = $formattedScoreRank; - } - public function getFormattedScoreRank() - { - return $this->formattedScoreRank; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Games_Player - */ - public function setPlayer(Google_Service_Games_Player $player) - { - $this->player = $player; - } - /** - * @return Google_Service_Games_Player - */ - public function getPlayer() - { - return $this->player; - } - public function setScoreRank($scoreRank) - { - $this->scoreRank = $scoreRank; - } - public function getScoreRank() - { - return $this->scoreRank; - } - public function setScoreTag($scoreTag) - { - $this->scoreTag = $scoreTag; - } - public function getScoreTag() - { - return $this->scoreTag; - } - public function setScoreValue($scoreValue) - { - $this->scoreValue = $scoreValue; - } - public function getScoreValue() - { - return $this->scoreValue; - } - public function setTimeSpan($timeSpan) - { - $this->timeSpan = $timeSpan; - } - public function getTimeSpan() - { - return $this->timeSpan; - } - public function setWriteTimestampMillis($writeTimestampMillis) - { - $this->writeTimestampMillis = $writeTimestampMillis; - } - public function getWriteTimestampMillis() - { - return $this->writeTimestampMillis; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/LeaderboardListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/LeaderboardListResponse.php deleted file mode 100644 index 1ef9233c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/LeaderboardListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Games_Leaderboard - */ - public function getItems() - { - return $this->items; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/LeaderboardScoreRank.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/LeaderboardScoreRank.php deleted file mode 100644 index 6612ae9e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/LeaderboardScoreRank.php +++ /dev/null @@ -1,66 +0,0 @@ -formattedNumScores = $formattedNumScores; - } - public function getFormattedNumScores() - { - return $this->formattedNumScores; - } - public function setFormattedRank($formattedRank) - { - $this->formattedRank = $formattedRank; - } - public function getFormattedRank() - { - return $this->formattedRank; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNumScores($numScores) - { - $this->numScores = $numScores; - } - public function getNumScores() - { - return $this->numScores; - } - public function setRank($rank) - { - $this->rank = $rank; - } - public function getRank() - { - return $this->rank; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/LeaderboardScores.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/LeaderboardScores.php deleted file mode 100644 index 207c208c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/LeaderboardScores.php +++ /dev/null @@ -1,90 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Games_LeaderboardEntry - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setNumScores($numScores) - { - $this->numScores = $numScores; - } - public function getNumScores() - { - return $this->numScores; - } - /** - * @param Google_Service_Games_LeaderboardEntry - */ - public function setPlayerScore(Google_Service_Games_LeaderboardEntry $playerScore) - { - $this->playerScore = $playerScore; - } - /** - * @return Google_Service_Games_LeaderboardEntry - */ - public function getPlayerScore() - { - return $this->playerScore; - } - public function setPrevPageToken($prevPageToken) - { - $this->prevPageToken = $prevPageToken; - } - public function getPrevPageToken() - { - return $this->prevPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/MetagameConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/MetagameConfig.php deleted file mode 100644 index 74a07be4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/MetagameConfig.php +++ /dev/null @@ -1,56 +0,0 @@ -currentVersion = $currentVersion; - } - public function getCurrentVersion() - { - return $this->currentVersion; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Games_PlayerLevel - */ - public function setPlayerLevels($playerLevels) - { - $this->playerLevels = $playerLevels; - } - /** - * @return Google_Service_Games_PlayerLevel - */ - public function getPlayerLevels() - { - return $this->playerLevels; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/NetworkDiagnostics.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/NetworkDiagnostics.php deleted file mode 100644 index 56526c30..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/NetworkDiagnostics.php +++ /dev/null @@ -1,84 +0,0 @@ -androidNetworkSubtype = $androidNetworkSubtype; - } - public function getAndroidNetworkSubtype() - { - return $this->androidNetworkSubtype; - } - public function setAndroidNetworkType($androidNetworkType) - { - $this->androidNetworkType = $androidNetworkType; - } - public function getAndroidNetworkType() - { - return $this->androidNetworkType; - } - public function setIosNetworkType($iosNetworkType) - { - $this->iosNetworkType = $iosNetworkType; - } - public function getIosNetworkType() - { - return $this->iosNetworkType; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNetworkOperatorCode($networkOperatorCode) - { - $this->networkOperatorCode = $networkOperatorCode; - } - public function getNetworkOperatorCode() - { - return $this->networkOperatorCode; - } - public function setNetworkOperatorName($networkOperatorName) - { - $this->networkOperatorName = $networkOperatorName; - } - public function getNetworkOperatorName() - { - return $this->networkOperatorName; - } - public function setRegistrationLatencyMillis($registrationLatencyMillis) - { - $this->registrationLatencyMillis = $registrationLatencyMillis; - } - public function getRegistrationLatencyMillis() - { - return $this->registrationLatencyMillis; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/ParticipantResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/ParticipantResult.php deleted file mode 100644 index 396102a1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/ParticipantResult.php +++ /dev/null @@ -1,57 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setParticipantId($participantId) - { - $this->participantId = $participantId; - } - public function getParticipantId() - { - return $this->participantId; - } - public function setPlacing($placing) - { - $this->placing = $placing; - } - public function getPlacing() - { - return $this->placing; - } - public function setResult($result) - { - $this->result = $result; - } - public function getResult() - { - return $this->result; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PeerChannelDiagnostics.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PeerChannelDiagnostics.php deleted file mode 100644 index e256d468..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PeerChannelDiagnostics.php +++ /dev/null @@ -1,114 +0,0 @@ -bytesReceived = $bytesReceived; - } - /** - * @return Google_Service_Games_AggregateStats - */ - public function getBytesReceived() - { - return $this->bytesReceived; - } - /** - * @param Google_Service_Games_AggregateStats - */ - public function setBytesSent(Google_Service_Games_AggregateStats $bytesSent) - { - $this->bytesSent = $bytesSent; - } - /** - * @return Google_Service_Games_AggregateStats - */ - public function getBytesSent() - { - return $this->bytesSent; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNumMessagesLost($numMessagesLost) - { - $this->numMessagesLost = $numMessagesLost; - } - public function getNumMessagesLost() - { - return $this->numMessagesLost; - } - public function setNumMessagesReceived($numMessagesReceived) - { - $this->numMessagesReceived = $numMessagesReceived; - } - public function getNumMessagesReceived() - { - return $this->numMessagesReceived; - } - public function setNumMessagesSent($numMessagesSent) - { - $this->numMessagesSent = $numMessagesSent; - } - public function getNumMessagesSent() - { - return $this->numMessagesSent; - } - public function setNumSendFailures($numSendFailures) - { - $this->numSendFailures = $numSendFailures; - } - public function getNumSendFailures() - { - return $this->numSendFailures; - } - /** - * @param Google_Service_Games_AggregateStats - */ - public function setRoundtripLatencyMillis(Google_Service_Games_AggregateStats $roundtripLatencyMillis) - { - $this->roundtripLatencyMillis = $roundtripLatencyMillis; - } - /** - * @return Google_Service_Games_AggregateStats - */ - public function getRoundtripLatencyMillis() - { - return $this->roundtripLatencyMillis; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PeerSessionDiagnostics.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PeerSessionDiagnostics.php deleted file mode 100644 index 53b7723d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PeerSessionDiagnostics.php +++ /dev/null @@ -1,80 +0,0 @@ -connectedTimestampMillis = $connectedTimestampMillis; - } - public function getConnectedTimestampMillis() - { - return $this->connectedTimestampMillis; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setParticipantId($participantId) - { - $this->participantId = $participantId; - } - public function getParticipantId() - { - return $this->participantId; - } - /** - * @param Google_Service_Games_PeerChannelDiagnostics - */ - public function setReliableChannel(Google_Service_Games_PeerChannelDiagnostics $reliableChannel) - { - $this->reliableChannel = $reliableChannel; - } - /** - * @return Google_Service_Games_PeerChannelDiagnostics - */ - public function getReliableChannel() - { - return $this->reliableChannel; - } - /** - * @param Google_Service_Games_PeerChannelDiagnostics - */ - public function setUnreliableChannel(Google_Service_Games_PeerChannelDiagnostics $unreliableChannel) - { - $this->unreliableChannel = $unreliableChannel; - } - /** - * @return Google_Service_Games_PeerChannelDiagnostics - */ - public function getUnreliableChannel() - { - return $this->unreliableChannel; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Played.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Played.php deleted file mode 100644 index d8fbaec8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Played.php +++ /dev/null @@ -1,48 +0,0 @@ -autoMatched = $autoMatched; - } - public function getAutoMatched() - { - return $this->autoMatched; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setTimeMillis($timeMillis) - { - $this->timeMillis = $timeMillis; - } - public function getTimeMillis() - { - return $this->timeMillis; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Player.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Player.php deleted file mode 100644 index c0059cea..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Player.php +++ /dev/null @@ -1,166 +0,0 @@ -avatarImageUrl = $avatarImageUrl; - } - public function getAvatarImageUrl() - { - return $this->avatarImageUrl; - } - public function setBannerUrlLandscape($bannerUrlLandscape) - { - $this->bannerUrlLandscape = $bannerUrlLandscape; - } - public function getBannerUrlLandscape() - { - return $this->bannerUrlLandscape; - } - public function setBannerUrlPortrait($bannerUrlPortrait) - { - $this->bannerUrlPortrait = $bannerUrlPortrait; - } - public function getBannerUrlPortrait() - { - return $this->bannerUrlPortrait; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - /** - * @param Google_Service_Games_PlayerExperienceInfo - */ - public function setExperienceInfo(Google_Service_Games_PlayerExperienceInfo $experienceInfo) - { - $this->experienceInfo = $experienceInfo; - } - /** - * @return Google_Service_Games_PlayerExperienceInfo - */ - public function getExperienceInfo() - { - return $this->experienceInfo; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Games_Played - */ - public function setLastPlayedWith(Google_Service_Games_Played $lastPlayedWith) - { - $this->lastPlayedWith = $lastPlayedWith; - } - /** - * @return Google_Service_Games_Played - */ - public function getLastPlayedWith() - { - return $this->lastPlayedWith; - } - /** - * @param Google_Service_Games_PlayerName - */ - public function setName(Google_Service_Games_PlayerName $name) - { - $this->name = $name; - } - /** - * @return Google_Service_Games_PlayerName - */ - public function getName() - { - return $this->name; - } - public function setOriginalPlayerId($originalPlayerId) - { - $this->originalPlayerId = $originalPlayerId; - } - public function getOriginalPlayerId() - { - return $this->originalPlayerId; - } - public function setPlayerId($playerId) - { - $this->playerId = $playerId; - } - public function getPlayerId() - { - return $this->playerId; - } - public function setPlayerStattus($playerStattus) - { - $this->playerStattus = $playerStattus; - } - public function getPlayerStattus() - { - return $this->playerStattus; - } - /** - * @param Google_Service_Games_ProfileSettings - */ - public function setProfileSettings(Google_Service_Games_ProfileSettings $profileSettings) - { - $this->profileSettings = $profileSettings; - } - /** - * @return Google_Service_Games_ProfileSettings - */ - public function getProfileSettings() - { - return $this->profileSettings; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PlayerAchievement.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PlayerAchievement.php deleted file mode 100644 index d0e607b1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PlayerAchievement.php +++ /dev/null @@ -1,84 +0,0 @@ -achievementState = $achievementState; - } - public function getAchievementState() - { - return $this->achievementState; - } - public function setCurrentSteps($currentSteps) - { - $this->currentSteps = $currentSteps; - } - public function getCurrentSteps() - { - return $this->currentSteps; - } - public function setExperiencePoints($experiencePoints) - { - $this->experiencePoints = $experiencePoints; - } - public function getExperiencePoints() - { - return $this->experiencePoints; - } - public function setFormattedCurrentStepsString($formattedCurrentStepsString) - { - $this->formattedCurrentStepsString = $formattedCurrentStepsString; - } - public function getFormattedCurrentStepsString() - { - return $this->formattedCurrentStepsString; - } - 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 setLastUpdatedTimestamp($lastUpdatedTimestamp) - { - $this->lastUpdatedTimestamp = $lastUpdatedTimestamp; - } - public function getLastUpdatedTimestamp() - { - return $this->lastUpdatedTimestamp; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PlayerAchievementListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PlayerAchievementListResponse.php deleted file mode 100644 index e1c462bc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PlayerAchievementListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Games_PlayerAchievement - */ - public function getItems() - { - return $this->items; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PlayerEvent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PlayerEvent.php deleted file mode 100644 index 9ac5ca3a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PlayerEvent.php +++ /dev/null @@ -1,66 +0,0 @@ -definitionId = $definitionId; - } - public function getDefinitionId() - { - return $this->definitionId; - } - public function setFormattedNumEvents($formattedNumEvents) - { - $this->formattedNumEvents = $formattedNumEvents; - } - public function getFormattedNumEvents() - { - return $this->formattedNumEvents; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNumEvents($numEvents) - { - $this->numEvents = $numEvents; - } - public function getNumEvents() - { - return $this->numEvents; - } - public function setPlayerId($playerId) - { - $this->playerId = $playerId; - } - public function getPlayerId() - { - return $this->playerId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PlayerEventListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PlayerEventListResponse.php deleted file mode 100644 index d2853aeb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PlayerEventListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Games_PlayerEvent - */ - public function getItems() - { - return $this->items; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PlayerExperienceInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PlayerExperienceInfo.php deleted file mode 100644 index 1d94764e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PlayerExperienceInfo.php +++ /dev/null @@ -1,80 +0,0 @@ -currentExperiencePoints = $currentExperiencePoints; - } - public function getCurrentExperiencePoints() - { - return $this->currentExperiencePoints; - } - /** - * @param Google_Service_Games_PlayerLevel - */ - public function setCurrentLevel(Google_Service_Games_PlayerLevel $currentLevel) - { - $this->currentLevel = $currentLevel; - } - /** - * @return Google_Service_Games_PlayerLevel - */ - public function getCurrentLevel() - { - return $this->currentLevel; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLastLevelUpTimestampMillis($lastLevelUpTimestampMillis) - { - $this->lastLevelUpTimestampMillis = $lastLevelUpTimestampMillis; - } - public function getLastLevelUpTimestampMillis() - { - return $this->lastLevelUpTimestampMillis; - } - /** - * @param Google_Service_Games_PlayerLevel - */ - public function setNextLevel(Google_Service_Games_PlayerLevel $nextLevel) - { - $this->nextLevel = $nextLevel; - } - /** - * @return Google_Service_Games_PlayerLevel - */ - public function getNextLevel() - { - return $this->nextLevel; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PlayerLeaderboardScore.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PlayerLeaderboardScore.php deleted file mode 100644 index 31106f66..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PlayerLeaderboardScore.php +++ /dev/null @@ -1,119 +0,0 @@ - "leaderboard_id", - ); - public $kind; - public $leaderboardId; - protected $publicRankType = 'Google_Service_Games_LeaderboardScoreRank'; - protected $publicRankDataType = ''; - public $scoreString; - public $scoreTag; - public $scoreValue; - protected $socialRankType = 'Google_Service_Games_LeaderboardScoreRank'; - protected $socialRankDataType = ''; - public $timeSpan; - public $writeTimestamp; - - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLeaderboardId($leaderboardId) - { - $this->leaderboardId = $leaderboardId; - } - public function getLeaderboardId() - { - return $this->leaderboardId; - } - /** - * @param Google_Service_Games_LeaderboardScoreRank - */ - public function setPublicRank(Google_Service_Games_LeaderboardScoreRank $publicRank) - { - $this->publicRank = $publicRank; - } - /** - * @return Google_Service_Games_LeaderboardScoreRank - */ - public function getPublicRank() - { - return $this->publicRank; - } - public function setScoreString($scoreString) - { - $this->scoreString = $scoreString; - } - public function getScoreString() - { - return $this->scoreString; - } - public function setScoreTag($scoreTag) - { - $this->scoreTag = $scoreTag; - } - public function getScoreTag() - { - return $this->scoreTag; - } - public function setScoreValue($scoreValue) - { - $this->scoreValue = $scoreValue; - } - public function getScoreValue() - { - return $this->scoreValue; - } - /** - * @param Google_Service_Games_LeaderboardScoreRank - */ - public function setSocialRank(Google_Service_Games_LeaderboardScoreRank $socialRank) - { - $this->socialRank = $socialRank; - } - /** - * @return Google_Service_Games_LeaderboardScoreRank - */ - public function getSocialRank() - { - return $this->socialRank; - } - public function setTimeSpan($timeSpan) - { - $this->timeSpan = $timeSpan; - } - public function getTimeSpan() - { - return $this->timeSpan; - } - public function setWriteTimestamp($writeTimestamp) - { - $this->writeTimestamp = $writeTimestamp; - } - public function getWriteTimestamp() - { - return $this->writeTimestamp; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PlayerLeaderboardScoreListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PlayerLeaderboardScoreListResponse.php deleted file mode 100644 index bd90edef..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PlayerLeaderboardScoreListResponse.php +++ /dev/null @@ -1,72 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Games_PlayerLeaderboardScore - */ - public function getItems() - { - return $this->items; - } - 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_Games_Player - */ - public function setPlayer(Google_Service_Games_Player $player) - { - $this->player = $player; - } - /** - * @return Google_Service_Games_Player - */ - public function getPlayer() - { - return $this->player; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PlayerLevel.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PlayerLevel.php deleted file mode 100644 index 4f98947e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PlayerLevel.php +++ /dev/null @@ -1,57 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLevel($level) - { - $this->level = $level; - } - public function getLevel() - { - return $this->level; - } - public function setMaxExperiencePoints($maxExperiencePoints) - { - $this->maxExperiencePoints = $maxExperiencePoints; - } - public function getMaxExperiencePoints() - { - return $this->maxExperiencePoints; - } - public function setMinExperiencePoints($minExperiencePoints) - { - $this->minExperiencePoints = $minExperiencePoints; - } - public function getMinExperiencePoints() - { - return $this->minExperiencePoints; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PlayerListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PlayerListResponse.php deleted file mode 100644 index 1bd5b642..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PlayerListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Games_Player - */ - public function getItems() - { - return $this->items; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PlayerName.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PlayerName.php deleted file mode 100644 index a5df77db..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PlayerName.php +++ /dev/null @@ -1,39 +0,0 @@ -familyName = $familyName; - } - public function getFamilyName() - { - return $this->familyName; - } - public function setGivenName($givenName) - { - $this->givenName = $givenName; - } - public function getGivenName() - { - return $this->givenName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PlayerScore.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PlayerScore.php deleted file mode 100644 index 51d7baf7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PlayerScore.php +++ /dev/null @@ -1,66 +0,0 @@ -formattedScore = $formattedScore; - } - public function getFormattedScore() - { - return $this->formattedScore; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setScore($score) - { - $this->score = $score; - } - public function getScore() - { - return $this->score; - } - public function setScoreTag($scoreTag) - { - $this->scoreTag = $scoreTag; - } - public function getScoreTag() - { - return $this->scoreTag; - } - public function setTimeSpan($timeSpan) - { - $this->timeSpan = $timeSpan; - } - public function getTimeSpan() - { - return $this->timeSpan; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PlayerScoreListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PlayerScoreListResponse.php deleted file mode 100644 index 4ae8d8f9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PlayerScoreListResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Games_PlayerScoreResponse - */ - public function setSubmittedScores($submittedScores) - { - $this->submittedScores = $submittedScores; - } - /** - * @return Google_Service_Games_PlayerScoreResponse - */ - public function getSubmittedScores() - { - return $this->submittedScores; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PlayerScoreResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PlayerScoreResponse.php deleted file mode 100644 index b30f8f72..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PlayerScoreResponse.php +++ /dev/null @@ -1,83 +0,0 @@ -beatenScoreTimeSpans = $beatenScoreTimeSpans; - } - public function getBeatenScoreTimeSpans() - { - return $this->beatenScoreTimeSpans; - } - public function setFormattedScore($formattedScore) - { - $this->formattedScore = $formattedScore; - } - public function getFormattedScore() - { - return $this->formattedScore; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLeaderboardId($leaderboardId) - { - $this->leaderboardId = $leaderboardId; - } - public function getLeaderboardId() - { - return $this->leaderboardId; - } - public function setScoreTag($scoreTag) - { - $this->scoreTag = $scoreTag; - } - public function getScoreTag() - { - return $this->scoreTag; - } - /** - * @param Google_Service_Games_PlayerScore - */ - public function setUnbeatenScores($unbeatenScores) - { - $this->unbeatenScores = $unbeatenScores; - } - /** - * @return Google_Service_Games_PlayerScore - */ - public function getUnbeatenScores() - { - return $this->unbeatenScores; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PlayerScoreSubmissionList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PlayerScoreSubmissionList.php deleted file mode 100644 index c255821e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PlayerScoreSubmissionList.php +++ /dev/null @@ -1,47 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Games_ScoreSubmission - */ - public function setScores($scores) - { - $this->scores = $scores; - } - /** - * @return Google_Service_Games_ScoreSubmission - */ - public function getScores() - { - return $this->scores; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/ProfileSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/ProfileSettings.php deleted file mode 100644 index a90d6935..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/ProfileSettings.php +++ /dev/null @@ -1,39 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setProfileVisible($profileVisible) - { - $this->profileVisible = $profileVisible; - } - public function getProfileVisible() - { - return $this->profileVisible; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PushToken.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PushToken.php deleted file mode 100644 index cfa3a01d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PushToken.php +++ /dev/null @@ -1,64 +0,0 @@ -clientRevision = $clientRevision; - } - public function getClientRevision() - { - return $this->clientRevision; - } - /** - * @param Google_Service_Games_PushTokenId - */ - public function setId(Google_Service_Games_PushTokenId $id) - { - $this->id = $id; - } - /** - * @return Google_Service_Games_PushTokenId - */ - public function getId() - { - return $this->id; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLanguage($language) - { - $this->language = $language; - } - public function getLanguage() - { - return $this->language; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PushTokenId.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PushTokenId.php deleted file mode 100644 index 6f7a2c10..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PushTokenId.php +++ /dev/null @@ -1,46 +0,0 @@ -ios = $ios; - } - /** - * @return Google_Service_Games_PushTokenIdIos - */ - public function getIos() - { - return $this->ios; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PushTokenIdIos.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PushTokenIdIos.php deleted file mode 100644 index 3aac75fd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/PushTokenIdIos.php +++ /dev/null @@ -1,43 +0,0 @@ - "apns_device_token", - "apnsEnvironment" => "apns_environment", - ); - public $apnsDeviceToken; - public $apnsEnvironment; - - public function setApnsDeviceToken($apnsDeviceToken) - { - $this->apnsDeviceToken = $apnsDeviceToken; - } - public function getApnsDeviceToken() - { - return $this->apnsDeviceToken; - } - public function setApnsEnvironment($apnsEnvironment) - { - $this->apnsEnvironment = $apnsEnvironment; - } - public function getApnsEnvironment() - { - return $this->apnsEnvironment; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Resource/AchievementDefinitions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Resource/AchievementDefinitions.php deleted file mode 100644 index ee7e5dab..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Resource/AchievementDefinitions.php +++ /dev/null @@ -1,48 +0,0 @@ - - * $gamesService = new Google_Service_Games(...); - * $achievementDefinitions = $gamesService->achievementDefinitions; - * - */ -class Google_Service_Games_Resource_AchievementDefinitions extends Google_Service_Resource -{ - /** - * Lists all the achievement definitions for your application. - * (achievementDefinitions.listAchievementDefinitions) - * - * @param array $optParams Optional parameters. - * - * @opt_param string language The preferred language to use for strings returned - * by this method. - * @opt_param int maxResults The maximum number of achievement resources to - * return in the response, used for paging. For any response, the actual number - * of achievement resources returned may be less than the specified maxResults. - * @opt_param string pageToken The token returned by the previous request. - * @return Google_Service_Games_AchievementDefinitionsListResponse - */ - public function listAchievementDefinitions($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Games_AchievementDefinitionsListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Resource/Achievements.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Resource/Achievements.php deleted file mode 100644 index 505a7f85..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Resource/Achievements.php +++ /dev/null @@ -1,137 +0,0 @@ - - * $gamesService = new Google_Service_Games(...); - * $achievements = $gamesService->achievements; - * - */ -class Google_Service_Games_Resource_Achievements extends Google_Service_Resource -{ - /** - * Increments the steps of the achievement with the given ID for the currently - * authenticated player. (achievements.increment) - * - * @param string $achievementId The ID of the achievement used by this method. - * @param int $stepsToIncrement The number of steps to increment. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId A randomly generated numeric ID for each request - * specified by the caller. This number is used at the server to ensure that the - * request is handled correctly across retries. - * @return Google_Service_Games_AchievementIncrementResponse - */ - public function increment($achievementId, $stepsToIncrement, $optParams = array()) - { - $params = array('achievementId' => $achievementId, 'stepsToIncrement' => $stepsToIncrement); - $params = array_merge($params, $optParams); - return $this->call('increment', array($params), "Google_Service_Games_AchievementIncrementResponse"); - } - /** - * Lists the progress for all your application's achievements for the currently - * authenticated player. (achievements.listAchievements) - * - * @param string $playerId A player ID. A value of me may be used in place of - * the authenticated player's ID. - * @param array $optParams Optional parameters. - * - * @opt_param string language The preferred language to use for strings returned - * by this method. - * @opt_param int maxResults The maximum number of achievement resources to - * return in the response, used for paging. For any response, the actual number - * of achievement resources returned may be less than the specified maxResults. - * @opt_param string pageToken The token returned by the previous request. - * @opt_param string state Tells the server to return only achievements with the - * specified state. If this parameter isn't specified, all achievements are - * returned. - * @return Google_Service_Games_PlayerAchievementListResponse - */ - public function listAchievements($playerId, $optParams = array()) - { - $params = array('playerId' => $playerId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Games_PlayerAchievementListResponse"); - } - /** - * Sets the state of the achievement with the given ID to REVEALED for the - * currently authenticated player. (achievements.reveal) - * - * @param string $achievementId The ID of the achievement used by this method. - * @param array $optParams Optional parameters. - * @return Google_Service_Games_AchievementRevealResponse - */ - public function reveal($achievementId, $optParams = array()) - { - $params = array('achievementId' => $achievementId); - $params = array_merge($params, $optParams); - return $this->call('reveal', array($params), "Google_Service_Games_AchievementRevealResponse"); - } - /** - * Sets the steps for the currently authenticated player towards unlocking an - * achievement. If the steps parameter is less than the current number of steps - * that the player already gained for the achievement, the achievement is not - * modified. (achievements.setStepsAtLeast) - * - * @param string $achievementId The ID of the achievement used by this method. - * @param int $steps The minimum value to set the steps to. - * @param array $optParams Optional parameters. - * @return Google_Service_Games_AchievementSetStepsAtLeastResponse - */ - public function setStepsAtLeast($achievementId, $steps, $optParams = array()) - { - $params = array('achievementId' => $achievementId, 'steps' => $steps); - $params = array_merge($params, $optParams); - return $this->call('setStepsAtLeast', array($params), "Google_Service_Games_AchievementSetStepsAtLeastResponse"); - } - /** - * Unlocks this achievement for the currently authenticated player. - * (achievements.unlock) - * - * @param string $achievementId The ID of the achievement used by this method. - * @param array $optParams Optional parameters. - * - * @opt_param string builtinGameId Override used only by built-in games in Play - * Games application. - * @return Google_Service_Games_AchievementUnlockResponse - */ - public function unlock($achievementId, $optParams = array()) - { - $params = array('achievementId' => $achievementId); - $params = array_merge($params, $optParams); - return $this->call('unlock', array($params), "Google_Service_Games_AchievementUnlockResponse"); - } - /** - * Updates multiple achievements for the currently authenticated player. - * (achievements.updateMultiple) - * - * @param Google_Service_Games_AchievementUpdateMultipleRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string builtinGameId Override used only by built-in games in Play - * Games application. - * @return Google_Service_Games_AchievementUpdateMultipleResponse - */ - public function updateMultiple(Google_Service_Games_AchievementUpdateMultipleRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updateMultiple', array($params), "Google_Service_Games_AchievementUpdateMultipleResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Resource/Applications.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Resource/Applications.php deleted file mode 100644 index 2a3a0f1a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Resource/Applications.php +++ /dev/null @@ -1,80 +0,0 @@ - - * $gamesService = new Google_Service_Games(...); - * $applications = $gamesService->applications; - * - */ -class Google_Service_Games_Resource_Applications extends Google_Service_Resource -{ - /** - * Retrieves the metadata of the application with the given ID. If the requested - * application is not available for the specified platformType, the returned - * response will not include any instance data. (applications.get) - * - * @param string $applicationId The application ID from the Google Play - * developer console. - * @param array $optParams Optional parameters. - * - * @opt_param string language The preferred language to use for strings returned - * by this method. - * @opt_param string platformType Restrict application details returned to the - * specific platform. - * @return Google_Service_Games_Application - */ - public function get($applicationId, $optParams = array()) - { - $params = array('applicationId' => $applicationId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Games_Application"); - } - /** - * Indicate that the the currently authenticated user is playing your - * application. (applications.played) - * - * @param array $optParams Optional parameters. - * - * @opt_param string builtinGameId Override used only by built-in games in Play - * Games application. - */ - public function played($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('played', array($params)); - } - /** - * Verifies the auth token provided with this request is for the application - * with the specified ID, and returns the ID of the player it was granted for. - * (applications.verify) - * - * @param string $applicationId The application ID from the Google Play - * developer console. - * @param array $optParams Optional parameters. - * @return Google_Service_Games_ApplicationVerifyResponse - */ - public function verify($applicationId, $optParams = array()) - { - $params = array('applicationId' => $applicationId); - $params = array_merge($params, $optParams); - return $this->call('verify', array($params), "Google_Service_Games_ApplicationVerifyResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Resource/Events.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Resource/Events.php deleted file mode 100644 index 906d4764..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Resource/Events.php +++ /dev/null @@ -1,85 +0,0 @@ - - * $gamesService = new Google_Service_Games(...); - * $events = $gamesService->events; - * - */ -class Google_Service_Games_Resource_Events extends Google_Service_Resource -{ - /** - * Returns a list showing the current progress on events in this application for - * the currently authenticated user. (events.listByPlayer) - * - * @param array $optParams Optional parameters. - * - * @opt_param string language The preferred language to use for strings returned - * by this method. - * @opt_param int maxResults The maximum number of events to return in the - * response, used for paging. For any response, the actual number of events to - * return may be less than the specified maxResults. - * @opt_param string pageToken The token returned by the previous request. - * @return Google_Service_Games_PlayerEventListResponse - */ - public function listByPlayer($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('listByPlayer', array($params), "Google_Service_Games_PlayerEventListResponse"); - } - /** - * Returns a list of the event definitions in this application. - * (events.listDefinitions) - * - * @param array $optParams Optional parameters. - * - * @opt_param string language The preferred language to use for strings returned - * by this method. - * @opt_param int maxResults The maximum number of event definitions to return - * in the response, used for paging. For any response, the actual number of - * event definitions to return may be less than the specified maxResults. - * @opt_param string pageToken The token returned by the previous request. - * @return Google_Service_Games_EventDefinitionListResponse - */ - public function listDefinitions($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('listDefinitions', array($params), "Google_Service_Games_EventDefinitionListResponse"); - } - /** - * Records a batch of changes to the number of times events have occurred for - * the currently authenticated user of this application. (events.record) - * - * @param Google_Service_Games_EventRecordRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string language The preferred language to use for strings returned - * by this method. - * @return Google_Service_Games_EventUpdateResponse - */ - public function record(Google_Service_Games_EventRecordRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('record', array($params), "Google_Service_Games_EventUpdateResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Resource/Leaderboards.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Resource/Leaderboards.php deleted file mode 100644 index eeb7be43..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Resource/Leaderboards.php +++ /dev/null @@ -1,65 +0,0 @@ - - * $gamesService = new Google_Service_Games(...); - * $leaderboards = $gamesService->leaderboards; - * - */ -class Google_Service_Games_Resource_Leaderboards extends Google_Service_Resource -{ - /** - * Retrieves the metadata of the leaderboard with the given ID. - * (leaderboards.get) - * - * @param string $leaderboardId The ID of the leaderboard. - * @param array $optParams Optional parameters. - * - * @opt_param string language The preferred language to use for strings returned - * by this method. - * @return Google_Service_Games_Leaderboard - */ - public function get($leaderboardId, $optParams = array()) - { - $params = array('leaderboardId' => $leaderboardId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Games_Leaderboard"); - } - /** - * Lists all the leaderboard metadata for your application. - * (leaderboards.listLeaderboards) - * - * @param array $optParams Optional parameters. - * - * @opt_param string language The preferred language to use for strings returned - * by this method. - * @opt_param int maxResults The maximum number of leaderboards to return in the - * response. For any response, the actual number of leaderboards returned may be - * less than the specified maxResults. - * @opt_param string pageToken The token returned by the previous request. - * @return Google_Service_Games_LeaderboardListResponse - */ - public function listLeaderboards($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Games_LeaderboardListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Resource/Metagame.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Resource/Metagame.php deleted file mode 100644 index 30693c1b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Resource/Metagame.php +++ /dev/null @@ -1,65 +0,0 @@ - - * $gamesService = new Google_Service_Games(...); - * $metagame = $gamesService->metagame; - * - */ -class Google_Service_Games_Resource_Metagame extends Google_Service_Resource -{ - /** - * Return the metagame configuration data for the calling application. - * (metagame.getMetagameConfig) - * - * @param array $optParams Optional parameters. - * @return Google_Service_Games_MetagameConfig - */ - public function getMetagameConfig($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('getMetagameConfig', array($params), "Google_Service_Games_MetagameConfig"); - } - /** - * List play data aggregated per category for the player corresponding to - * playerId. (metagame.listCategoriesByPlayer) - * - * @param string $playerId A player ID. A value of me may be used in place of - * the authenticated player's ID. - * @param string $collection The collection of categories for which data will be - * returned. - * @param array $optParams Optional parameters. - * - * @opt_param string language The preferred language to use for strings returned - * by this method. - * @opt_param int maxResults The maximum number of category resources to return - * in the response, used for paging. For any response, the actual number of - * category resources returned may be less than the specified maxResults. - * @opt_param string pageToken The token returned by the previous request. - * @return Google_Service_Games_CategoryListResponse - */ - public function listCategoriesByPlayer($playerId, $collection, $optParams = array()) - { - $params = array('playerId' => $playerId, 'collection' => $collection); - $params = array_merge($params, $optParams); - return $this->call('listCategoriesByPlayer', array($params), "Google_Service_Games_CategoryListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Resource/Players.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Resource/Players.php deleted file mode 100644 index 8e5927c6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Resource/Players.php +++ /dev/null @@ -1,67 +0,0 @@ - - * $gamesService = new Google_Service_Games(...); - * $players = $gamesService->players; - * - */ -class Google_Service_Games_Resource_Players extends Google_Service_Resource -{ - /** - * Retrieves the Player resource with the given ID. To retrieve the player for - * the currently authenticated user, set playerId to me. (players.get) - * - * @param string $playerId A player ID. A value of me may be used in place of - * the authenticated player's ID. - * @param array $optParams Optional parameters. - * - * @opt_param string language The preferred language to use for strings returned - * by this method. - * @return Google_Service_Games_Player - */ - public function get($playerId, $optParams = array()) - { - $params = array('playerId' => $playerId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Games_Player"); - } - /** - * Get the collection of players for the currently authenticated user. - * (players.listPlayers) - * - * @param string $collection Collection of players being retrieved - * @param array $optParams Optional parameters. - * - * @opt_param string language The preferred language to use for strings returned - * by this method. - * @opt_param int maxResults The maximum number of player resources to return in - * the response, used for paging. For any response, the actual number of player - * resources returned may be less than the specified maxResults. - * @opt_param string pageToken The token returned by the previous request. - * @return Google_Service_Games_PlayerListResponse - */ - public function listPlayers($collection, $optParams = array()) - { - $params = array('collection' => $collection); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Games_PlayerListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Resource/Pushtokens.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Resource/Pushtokens.php deleted file mode 100644 index 5e9f89a3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Resource/Pushtokens.php +++ /dev/null @@ -1,54 +0,0 @@ - - * $gamesService = new Google_Service_Games(...); - * $pushtokens = $gamesService->pushtokens; - * - */ -class Google_Service_Games_Resource_Pushtokens extends Google_Service_Resource -{ - /** - * Removes a push token for the current user and application. Removing a non- - * existent push token will report success. (pushtokens.remove) - * - * @param Google_Service_Games_PushTokenId $postBody - * @param array $optParams Optional parameters. - */ - public function remove(Google_Service_Games_PushTokenId $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('remove', array($params)); - } - /** - * Registers a push token for the current user and application. - * (pushtokens.update) - * - * @param Google_Service_Games_PushToken $postBody - * @param array $optParams Optional parameters. - */ - public function update(Google_Service_Games_PushToken $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params)); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Resource/Revisions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Resource/Revisions.php deleted file mode 100644 index 46af1c1c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Resource/Revisions.php +++ /dev/null @@ -1,45 +0,0 @@ - - * $gamesService = new Google_Service_Games(...); - * $revisions = $gamesService->revisions; - * - */ -class Google_Service_Games_Resource_Revisions extends Google_Service_Resource -{ - /** - * Checks whether the games client is out of date. (revisions.check) - * - * @param string $clientRevision The revision of the client SDK used by your - * application. Format: [PLATFORM_TYPE]:[VERSION_NUMBER]. Possible values of - * PLATFORM_TYPE are: - "ANDROID" - Client is running the Android SDK. - - * "IOS" - Client is running the iOS SDK. - "WEB_APP" - Client is running as a - * Web App. - * @param array $optParams Optional parameters. - * @return Google_Service_Games_RevisionCheckResponse - */ - public function check($clientRevision, $optParams = array()) - { - $params = array('clientRevision' => $clientRevision); - $params = array_merge($params, $optParams); - return $this->call('check', array($params), "Google_Service_Games_RevisionCheckResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Resource/Rooms.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Resource/Rooms.php deleted file mode 100644 index 2cc22043..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Resource/Rooms.php +++ /dev/null @@ -1,165 +0,0 @@ - - * $gamesService = new Google_Service_Games(...); - * $rooms = $gamesService->rooms; - * - */ -class Google_Service_Games_Resource_Rooms extends Google_Service_Resource -{ - /** - * Create a room. For internal use by the Games SDK only. Calling this method - * directly is unsupported. (rooms.create) - * - * @param Google_Service_Games_RoomCreateRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string language The preferred language to use for strings returned - * by this method. - * @return Google_Service_Games_Room - */ - public function create(Google_Service_Games_RoomCreateRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Games_Room"); - } - /** - * Decline an invitation to join a room. For internal use by the Games SDK only. - * Calling this method directly is unsupported. (rooms.decline) - * - * @param string $roomId The ID of the room. - * @param array $optParams Optional parameters. - * - * @opt_param string language The preferred language to use for strings returned - * by this method. - * @return Google_Service_Games_Room - */ - public function decline($roomId, $optParams = array()) - { - $params = array('roomId' => $roomId); - $params = array_merge($params, $optParams); - return $this->call('decline', array($params), "Google_Service_Games_Room"); - } - /** - * Dismiss an invitation to join a room. For internal use by the Games SDK only. - * Calling this method directly is unsupported. (rooms.dismiss) - * - * @param string $roomId The ID of the room. - * @param array $optParams Optional parameters. - */ - public function dismiss($roomId, $optParams = array()) - { - $params = array('roomId' => $roomId); - $params = array_merge($params, $optParams); - return $this->call('dismiss', array($params)); - } - /** - * Get the data for a room. (rooms.get) - * - * @param string $roomId The ID of the room. - * @param array $optParams Optional parameters. - * - * @opt_param string language The preferred language to use for strings returned - * by this method. - * @return Google_Service_Games_Room - */ - public function get($roomId, $optParams = array()) - { - $params = array('roomId' => $roomId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Games_Room"); - } - /** - * Join a room. For internal use by the Games SDK only. Calling this method - * directly is unsupported. (rooms.join) - * - * @param string $roomId The ID of the room. - * @param Google_Service_Games_RoomJoinRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string language The preferred language to use for strings returned - * by this method. - * @return Google_Service_Games_Room - */ - public function join($roomId, Google_Service_Games_RoomJoinRequest $postBody, $optParams = array()) - { - $params = array('roomId' => $roomId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('join', array($params), "Google_Service_Games_Room"); - } - /** - * Leave a room. For internal use by the Games SDK only. Calling this method - * directly is unsupported. (rooms.leave) - * - * @param string $roomId The ID of the room. - * @param Google_Service_Games_RoomLeaveRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string language The preferred language to use for strings returned - * by this method. - * @return Google_Service_Games_Room - */ - public function leave($roomId, Google_Service_Games_RoomLeaveRequest $postBody, $optParams = array()) - { - $params = array('roomId' => $roomId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('leave', array($params), "Google_Service_Games_Room"); - } - /** - * Returns invitations to join rooms. (rooms.listRooms) - * - * @param array $optParams Optional parameters. - * - * @opt_param string language The preferred language to use for strings returned - * by this method. - * @opt_param int maxResults The maximum number of rooms to return in the - * response, used for paging. For any response, the actual number of rooms to - * return may be less than the specified maxResults. - * @opt_param string pageToken The token returned by the previous request. - * @return Google_Service_Games_RoomList - */ - public function listRooms($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Games_RoomList"); - } - /** - * Updates sent by a client reporting the status of peers in a room. For - * internal use by the Games SDK only. Calling this method directly is - * unsupported. (rooms.reportStatus) - * - * @param string $roomId The ID of the room. - * @param Google_Service_Games_RoomP2PStatuses $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string language The preferred language to use for strings returned - * by this method. - * @return Google_Service_Games_RoomStatus - */ - public function reportStatus($roomId, Google_Service_Games_RoomP2PStatuses $postBody, $optParams = array()) - { - $params = array('roomId' => $roomId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('reportStatus', array($params), "Google_Service_Games_RoomStatus"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Resource/Scores.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Resource/Scores.php deleted file mode 100644 index 8c931602..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Resource/Scores.php +++ /dev/null @@ -1,153 +0,0 @@ - - * $gamesService = new Google_Service_Games(...); - * $scores = $gamesService->scores; - * - */ -class Google_Service_Games_Resource_Scores extends Google_Service_Resource -{ - /** - * Get high scores, and optionally ranks, in leaderboards for the currently - * authenticated player. For a specific time span, leaderboardId can be set to - * ALL to retrieve data for all leaderboards in a given time span. NOTE: You - * cannot ask for 'ALL' leaderboards and 'ALL' timeSpans in the same request; - * only one parameter may be set to 'ALL'. (scores.get) - * - * @param string $playerId A player ID. A value of me may be used in place of - * the authenticated player's ID. - * @param string $leaderboardId The ID of the leaderboard. Can be set to 'ALL' - * to retrieve data for all leaderboards for this application. - * @param string $timeSpan The time span for the scores and ranks you're - * requesting. - * @param array $optParams Optional parameters. - * - * @opt_param string includeRankType The types of ranks to return. If the - * parameter is omitted, no ranks will be returned. - * @opt_param string language The preferred language to use for strings returned - * by this method. - * @opt_param int maxResults The maximum number of leaderboard scores to return - * in the response. For any response, the actual number of leaderboard scores - * returned may be less than the specified maxResults. - * @opt_param string pageToken The token returned by the previous request. - * @return Google_Service_Games_PlayerLeaderboardScoreListResponse - */ - public function get($playerId, $leaderboardId, $timeSpan, $optParams = array()) - { - $params = array('playerId' => $playerId, 'leaderboardId' => $leaderboardId, 'timeSpan' => $timeSpan); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Games_PlayerLeaderboardScoreListResponse"); - } - /** - * Lists the scores in a leaderboard, starting from the top. (scores.listScores) - * - * @param string $leaderboardId The ID of the leaderboard. - * @param string $collection The collection of scores you're requesting. - * @param string $timeSpan The time span for the scores and ranks you're - * requesting. - * @param array $optParams Optional parameters. - * - * @opt_param string language The preferred language to use for strings returned - * by this method. - * @opt_param int maxResults The maximum number of leaderboard scores to return - * in the response. For any response, the actual number of leaderboard scores - * returned may be less than the specified maxResults. - * @opt_param string pageToken The token returned by the previous request. - * @return Google_Service_Games_LeaderboardScores - */ - public function listScores($leaderboardId, $collection, $timeSpan, $optParams = array()) - { - $params = array('leaderboardId' => $leaderboardId, 'collection' => $collection, 'timeSpan' => $timeSpan); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Games_LeaderboardScores"); - } - /** - * Lists the scores in a leaderboard around (and including) a player's score. - * (scores.listWindow) - * - * @param string $leaderboardId The ID of the leaderboard. - * @param string $collection The collection of scores you're requesting. - * @param string $timeSpan The time span for the scores and ranks you're - * requesting. - * @param array $optParams Optional parameters. - * - * @opt_param string language The preferred language to use for strings returned - * by this method. - * @opt_param int maxResults The maximum number of leaderboard scores to return - * in the response. For any response, the actual number of leaderboard scores - * returned may be less than the specified maxResults. - * @opt_param string pageToken The token returned by the previous request. - * @opt_param int resultsAbove The preferred number of scores to return above - * the player's score. More scores may be returned if the player is at the - * bottom of the leaderboard; fewer may be returned if the player is at the top. - * Must be less than or equal to maxResults. - * @opt_param bool returnTopIfAbsent True if the top scores should be returned - * when the player is not in the leaderboard. Defaults to true. - * @return Google_Service_Games_LeaderboardScores - */ - public function listWindow($leaderboardId, $collection, $timeSpan, $optParams = array()) - { - $params = array('leaderboardId' => $leaderboardId, 'collection' => $collection, 'timeSpan' => $timeSpan); - $params = array_merge($params, $optParams); - return $this->call('listWindow', array($params), "Google_Service_Games_LeaderboardScores"); - } - /** - * Submits a score to the specified leaderboard. (scores.submit) - * - * @param string $leaderboardId The ID of the leaderboard. - * @param string $score The score you're submitting. The submitted score is - * ignored if it is worse than a previously submitted score, where worse depends - * on the leaderboard sort order. The meaning of the score value depends on the - * leaderboard format type. For fixed-point, the score represents the raw value. - * For time, the score represents elapsed time in milliseconds. For currency, - * the score represents a value in micro units. - * @param array $optParams Optional parameters. - * - * @opt_param string language The preferred language to use for strings returned - * by this method. - * @opt_param string scoreTag Additional information about the score you're - * submitting. Values must contain no more than 64 URI-safe characters as - * defined by section 2.3 of RFC 3986. - * @return Google_Service_Games_PlayerScoreResponse - */ - public function submit($leaderboardId, $score, $optParams = array()) - { - $params = array('leaderboardId' => $leaderboardId, 'score' => $score); - $params = array_merge($params, $optParams); - return $this->call('submit', array($params), "Google_Service_Games_PlayerScoreResponse"); - } - /** - * Submits multiple scores to leaderboards. (scores.submitMultiple) - * - * @param Google_Service_Games_PlayerScoreSubmissionList $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string language The preferred language to use for strings returned - * by this method. - * @return Google_Service_Games_PlayerScoreListResponse - */ - public function submitMultiple(Google_Service_Games_PlayerScoreSubmissionList $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('submitMultiple', array($params), "Google_Service_Games_PlayerScoreListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Resource/Snapshots.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Resource/Snapshots.php deleted file mode 100644 index f9e00cd3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Resource/Snapshots.php +++ /dev/null @@ -1,66 +0,0 @@ - - * $gamesService = new Google_Service_Games(...); - * $snapshots = $gamesService->snapshots; - * - */ -class Google_Service_Games_Resource_Snapshots extends Google_Service_Resource -{ - /** - * Retrieves the metadata for a given snapshot ID. (snapshots.get) - * - * @param string $snapshotId The ID of the snapshot. - * @param array $optParams Optional parameters. - * - * @opt_param string language The preferred language to use for strings returned - * by this method. - * @return Google_Service_Games_Snapshot - */ - public function get($snapshotId, $optParams = array()) - { - $params = array('snapshotId' => $snapshotId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Games_Snapshot"); - } - /** - * Retrieves a list of snapshots created by your application for the player - * corresponding to the player ID. (snapshots.listSnapshots) - * - * @param string $playerId A player ID. A value of me may be used in place of - * the authenticated player's ID. - * @param array $optParams Optional parameters. - * - * @opt_param string language The preferred language to use for strings returned - * by this method. - * @opt_param int maxResults The maximum number of snapshot resources to return - * in the response, used for paging. For any response, the actual number of - * snapshot resources returned may be less than the specified maxResults. - * @opt_param string pageToken The token returned by the previous request. - * @return Google_Service_Games_SnapshotListResponse - */ - public function listSnapshots($playerId, $optParams = array()) - { - $params = array('playerId' => $playerId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Games_SnapshotListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Resource/TurnBasedMatches.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Resource/TurnBasedMatches.php deleted file mode 100644 index 9e32542b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Resource/TurnBasedMatches.php +++ /dev/null @@ -1,274 +0,0 @@ - - * $gamesService = new Google_Service_Games(...); - * $turnBasedMatches = $gamesService->turnBasedMatches; - * - */ -class Google_Service_Games_Resource_TurnBasedMatches extends Google_Service_Resource -{ - /** - * Cancel a turn-based match. (turnBasedMatches.cancel) - * - * @param string $matchId The ID of the match. - * @param array $optParams Optional parameters. - */ - public function cancel($matchId, $optParams = array()) - { - $params = array('matchId' => $matchId); - $params = array_merge($params, $optParams); - return $this->call('cancel', array($params)); - } - /** - * Create a turn-based match. (turnBasedMatches.create) - * - * @param Google_Service_Games_TurnBasedMatchCreateRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string language The preferred language to use for strings returned - * by this method. - * @return Google_Service_Games_TurnBasedMatch - */ - public function create(Google_Service_Games_TurnBasedMatchCreateRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Games_TurnBasedMatch"); - } - /** - * Decline an invitation to play a turn-based match. (turnBasedMatches.decline) - * - * @param string $matchId The ID of the match. - * @param array $optParams Optional parameters. - * - * @opt_param string language The preferred language to use for strings returned - * by this method. - * @return Google_Service_Games_TurnBasedMatch - */ - public function decline($matchId, $optParams = array()) - { - $params = array('matchId' => $matchId); - $params = array_merge($params, $optParams); - return $this->call('decline', array($params), "Google_Service_Games_TurnBasedMatch"); - } - /** - * Dismiss a turn-based match from the match list. The match will no longer show - * up in the list and will not generate notifications. - * (turnBasedMatches.dismiss) - * - * @param string $matchId The ID of the match. - * @param array $optParams Optional parameters. - */ - public function dismiss($matchId, $optParams = array()) - { - $params = array('matchId' => $matchId); - $params = array_merge($params, $optParams); - return $this->call('dismiss', array($params)); - } - /** - * Finish a turn-based match. Each player should make this call once, after all - * results are in. Only the player whose turn it is may make the first call to - * Finish, and can pass in the final match state. (turnBasedMatches.finish) - * - * @param string $matchId The ID of the match. - * @param Google_Service_Games_TurnBasedMatchResults $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string language The preferred language to use for strings returned - * by this method. - * @return Google_Service_Games_TurnBasedMatch - */ - public function finish($matchId, Google_Service_Games_TurnBasedMatchResults $postBody, $optParams = array()) - { - $params = array('matchId' => $matchId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('finish', array($params), "Google_Service_Games_TurnBasedMatch"); - } - /** - * Get the data for a turn-based match. (turnBasedMatches.get) - * - * @param string $matchId The ID of the match. - * @param array $optParams Optional parameters. - * - * @opt_param bool includeMatchData Get match data along with metadata. - * @opt_param string language The preferred language to use for strings returned - * by this method. - * @return Google_Service_Games_TurnBasedMatch - */ - public function get($matchId, $optParams = array()) - { - $params = array('matchId' => $matchId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Games_TurnBasedMatch"); - } - /** - * Join a turn-based match. (turnBasedMatches.join) - * - * @param string $matchId The ID of the match. - * @param array $optParams Optional parameters. - * - * @opt_param string language The preferred language to use for strings returned - * by this method. - * @return Google_Service_Games_TurnBasedMatch - */ - public function join($matchId, $optParams = array()) - { - $params = array('matchId' => $matchId); - $params = array_merge($params, $optParams); - return $this->call('join', array($params), "Google_Service_Games_TurnBasedMatch"); - } - /** - * Leave a turn-based match when it is not the current player's turn, without - * canceling the match. (turnBasedMatches.leave) - * - * @param string $matchId The ID of the match. - * @param array $optParams Optional parameters. - * - * @opt_param string language The preferred language to use for strings returned - * by this method. - * @return Google_Service_Games_TurnBasedMatch - */ - public function leave($matchId, $optParams = array()) - { - $params = array('matchId' => $matchId); - $params = array_merge($params, $optParams); - return $this->call('leave', array($params), "Google_Service_Games_TurnBasedMatch"); - } - /** - * Leave a turn-based match during the current player's turn, without canceling - * the match. (turnBasedMatches.leaveTurn) - * - * @param string $matchId The ID of the match. - * @param int $matchVersion The version of the match being updated. - * @param array $optParams Optional parameters. - * - * @opt_param string language The preferred language to use for strings returned - * by this method. - * @opt_param string pendingParticipantId The ID of another participant who - * should take their turn next. If not set, the match will wait for other - * player(s) to join via automatching; this is only valid if automatch criteria - * is set on the match with remaining slots for automatched players. - * @return Google_Service_Games_TurnBasedMatch - */ - public function leaveTurn($matchId, $matchVersion, $optParams = array()) - { - $params = array('matchId' => $matchId, 'matchVersion' => $matchVersion); - $params = array_merge($params, $optParams); - return $this->call('leaveTurn', array($params), "Google_Service_Games_TurnBasedMatch"); - } - /** - * Returns turn-based matches the player is or was involved in. - * (turnBasedMatches.listTurnBasedMatches) - * - * @param array $optParams Optional parameters. - * - * @opt_param bool includeMatchData True if match data should be returned in the - * response. Note that not all data will necessarily be returned if - * include_match_data is true; the server may decide to only return data for - * some of the matches to limit download size for the client. The remainder of - * the data for these matches will be retrievable on request. - * @opt_param string language The preferred language to use for strings returned - * by this method. - * @opt_param int maxCompletedMatches The maximum number of completed or - * canceled matches to return in the response. If not set, all matches returned - * could be completed or canceled. - * @opt_param int maxResults The maximum number of matches to return in the - * response, used for paging. For any response, the actual number of matches to - * return may be less than the specified maxResults. - * @opt_param string pageToken The token returned by the previous request. - * @return Google_Service_Games_TurnBasedMatchList - */ - public function listTurnBasedMatches($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Games_TurnBasedMatchList"); - } - /** - * Create a rematch of a match that was previously completed, with the same - * participants. This can be called by only one player on a match still in their - * list; the player must have called Finish first. Returns the newly created - * match; it will be the caller's turn. (turnBasedMatches.rematch) - * - * @param string $matchId The ID of the match. - * @param array $optParams Optional parameters. - * - * @opt_param string language The preferred language to use for strings returned - * by this method. - * @opt_param string requestId A randomly generated numeric ID for each request - * specified by the caller. This number is used at the server to ensure that the - * request is handled correctly across retries. - * @return Google_Service_Games_TurnBasedMatchRematch - */ - public function rematch($matchId, $optParams = array()) - { - $params = array('matchId' => $matchId); - $params = array_merge($params, $optParams); - return $this->call('rematch', array($params), "Google_Service_Games_TurnBasedMatchRematch"); - } - /** - * Returns turn-based matches the player is or was involved in that changed - * since the last sync call, with the least recent changes coming first. Matches - * that should be removed from the local cache will have a status of - * MATCH_DELETED. (turnBasedMatches.sync) - * - * @param array $optParams Optional parameters. - * - * @opt_param bool includeMatchData True if match data should be returned in the - * response. Note that not all data will necessarily be returned if - * include_match_data is true; the server may decide to only return data for - * some of the matches to limit download size for the client. The remainder of - * the data for these matches will be retrievable on request. - * @opt_param string language The preferred language to use for strings returned - * by this method. - * @opt_param int maxCompletedMatches The maximum number of completed or - * canceled matches to return in the response. If not set, all matches returned - * could be completed or canceled. - * @opt_param int maxResults The maximum number of matches to return in the - * response, used for paging. For any response, the actual number of matches to - * return may be less than the specified maxResults. - * @opt_param string pageToken The token returned by the previous request. - * @return Google_Service_Games_TurnBasedMatchSync - */ - public function sync($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('sync', array($params), "Google_Service_Games_TurnBasedMatchSync"); - } - /** - * Commit the results of a player turn. (turnBasedMatches.takeTurn) - * - * @param string $matchId The ID of the match. - * @param Google_Service_Games_TurnBasedMatchTurn $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string language The preferred language to use for strings returned - * by this method. - * @return Google_Service_Games_TurnBasedMatch - */ - public function takeTurn($matchId, Google_Service_Games_TurnBasedMatchTurn $postBody, $optParams = array()) - { - $params = array('matchId' => $matchId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('takeTurn', array($params), "Google_Service_Games_TurnBasedMatch"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/RevisionCheckResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/RevisionCheckResponse.php deleted file mode 100644 index 3af26267..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/RevisionCheckResponse.php +++ /dev/null @@ -1,48 +0,0 @@ -apiVersion = $apiVersion; - } - public function getApiVersion() - { - return $this->apiVersion; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setRevisionStatus($revisionStatus) - { - $this->revisionStatus = $revisionStatus; - } - public function getRevisionStatus() - { - return $this->revisionStatus; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Room.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Room.php deleted file mode 100644 index 39c0e5d5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Room.php +++ /dev/null @@ -1,174 +0,0 @@ -applicationId = $applicationId; - } - public function getApplicationId() - { - return $this->applicationId; - } - /** - * @param Google_Service_Games_RoomAutoMatchingCriteria - */ - public function setAutoMatchingCriteria(Google_Service_Games_RoomAutoMatchingCriteria $autoMatchingCriteria) - { - $this->autoMatchingCriteria = $autoMatchingCriteria; - } - /** - * @return Google_Service_Games_RoomAutoMatchingCriteria - */ - public function getAutoMatchingCriteria() - { - return $this->autoMatchingCriteria; - } - /** - * @param Google_Service_Games_RoomAutoMatchStatus - */ - public function setAutoMatchingStatus(Google_Service_Games_RoomAutoMatchStatus $autoMatchingStatus) - { - $this->autoMatchingStatus = $autoMatchingStatus; - } - /** - * @return Google_Service_Games_RoomAutoMatchStatus - */ - public function getAutoMatchingStatus() - { - return $this->autoMatchingStatus; - } - /** - * @param Google_Service_Games_RoomModification - */ - public function setCreationDetails(Google_Service_Games_RoomModification $creationDetails) - { - $this->creationDetails = $creationDetails; - } - /** - * @return Google_Service_Games_RoomModification - */ - public function getCreationDetails() - { - return $this->creationDetails; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setInviterId($inviterId) - { - $this->inviterId = $inviterId; - } - public function getInviterId() - { - return $this->inviterId; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Games_RoomModification - */ - public function setLastUpdateDetails(Google_Service_Games_RoomModification $lastUpdateDetails) - { - $this->lastUpdateDetails = $lastUpdateDetails; - } - /** - * @return Google_Service_Games_RoomModification - */ - public function getLastUpdateDetails() - { - return $this->lastUpdateDetails; - } - /** - * @param Google_Service_Games_RoomParticipant - */ - public function setParticipants($participants) - { - $this->participants = $participants; - } - /** - * @return Google_Service_Games_RoomParticipant - */ - public function getParticipants() - { - return $this->participants; - } - public function setRoomId($roomId) - { - $this->roomId = $roomId; - } - public function getRoomId() - { - return $this->roomId; - } - public function setRoomStatusVersion($roomStatusVersion) - { - $this->roomStatusVersion = $roomStatusVersion; - } - public function getRoomStatusVersion() - { - return $this->roomStatusVersion; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setVariant($variant) - { - $this->variant = $variant; - } - public function getVariant() - { - return $this->variant; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/RoomAutoMatchStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/RoomAutoMatchStatus.php deleted file mode 100644 index 8c37731c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/RoomAutoMatchStatus.php +++ /dev/null @@ -1,39 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setWaitEstimateSeconds($waitEstimateSeconds) - { - $this->waitEstimateSeconds = $waitEstimateSeconds; - } - public function getWaitEstimateSeconds() - { - return $this->waitEstimateSeconds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/RoomAutoMatchingCriteria.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/RoomAutoMatchingCriteria.php deleted file mode 100644 index a7fd0ed0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/RoomAutoMatchingCriteria.php +++ /dev/null @@ -1,57 +0,0 @@ -exclusiveBitmask = $exclusiveBitmask; - } - public function getExclusiveBitmask() - { - return $this->exclusiveBitmask; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setMaxAutoMatchingPlayers($maxAutoMatchingPlayers) - { - $this->maxAutoMatchingPlayers = $maxAutoMatchingPlayers; - } - public function getMaxAutoMatchingPlayers() - { - return $this->maxAutoMatchingPlayers; - } - public function setMinAutoMatchingPlayers($minAutoMatchingPlayers) - { - $this->minAutoMatchingPlayers = $minAutoMatchingPlayers; - } - public function getMinAutoMatchingPlayers() - { - return $this->minAutoMatchingPlayers; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/RoomClientAddress.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/RoomClientAddress.php deleted file mode 100644 index f8865841..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/RoomClientAddress.php +++ /dev/null @@ -1,39 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setXmppAddress($xmppAddress) - { - $this->xmppAddress = $xmppAddress; - } - public function getXmppAddress() - { - return $this->xmppAddress; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/RoomCreateRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/RoomCreateRequest.php deleted file mode 100644 index 1997538c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/RoomCreateRequest.php +++ /dev/null @@ -1,115 +0,0 @@ -autoMatchingCriteria = $autoMatchingCriteria; - } - /** - * @return Google_Service_Games_RoomAutoMatchingCriteria - */ - public function getAutoMatchingCriteria() - { - return $this->autoMatchingCriteria; - } - public function setCapabilities($capabilities) - { - $this->capabilities = $capabilities; - } - public function getCapabilities() - { - return $this->capabilities; - } - /** - * @param Google_Service_Games_RoomClientAddress - */ - public function setClientAddress(Google_Service_Games_RoomClientAddress $clientAddress) - { - $this->clientAddress = $clientAddress; - } - /** - * @return Google_Service_Games_RoomClientAddress - */ - public function getClientAddress() - { - return $this->clientAddress; - } - public function setInvitedPlayerIds($invitedPlayerIds) - { - $this->invitedPlayerIds = $invitedPlayerIds; - } - public function getInvitedPlayerIds() - { - return $this->invitedPlayerIds; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Games_NetworkDiagnostics - */ - public function setNetworkDiagnostics(Google_Service_Games_NetworkDiagnostics $networkDiagnostics) - { - $this->networkDiagnostics = $networkDiagnostics; - } - /** - * @return Google_Service_Games_NetworkDiagnostics - */ - public function getNetworkDiagnostics() - { - return $this->networkDiagnostics; - } - public function setRequestId($requestId) - { - $this->requestId = $requestId; - } - public function getRequestId() - { - return $this->requestId; - } - public function setVariant($variant) - { - $this->variant = $variant; - } - public function getVariant() - { - return $this->variant; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/RoomJoinRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/RoomJoinRequest.php deleted file mode 100644 index c73e4662..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/RoomJoinRequest.php +++ /dev/null @@ -1,72 +0,0 @@ -capabilities = $capabilities; - } - public function getCapabilities() - { - return $this->capabilities; - } - /** - * @param Google_Service_Games_RoomClientAddress - */ - public function setClientAddress(Google_Service_Games_RoomClientAddress $clientAddress) - { - $this->clientAddress = $clientAddress; - } - /** - * @return Google_Service_Games_RoomClientAddress - */ - public function getClientAddress() - { - return $this->clientAddress; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Games_NetworkDiagnostics - */ - public function setNetworkDiagnostics(Google_Service_Games_NetworkDiagnostics $networkDiagnostics) - { - $this->networkDiagnostics = $networkDiagnostics; - } - /** - * @return Google_Service_Games_NetworkDiagnostics - */ - public function getNetworkDiagnostics() - { - return $this->networkDiagnostics; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/RoomLeaveDiagnostics.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/RoomLeaveDiagnostics.php deleted file mode 100644 index f61aaeb1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/RoomLeaveDiagnostics.php +++ /dev/null @@ -1,101 +0,0 @@ -androidNetworkSubtype = $androidNetworkSubtype; - } - public function getAndroidNetworkSubtype() - { - return $this->androidNetworkSubtype; - } - public function setAndroidNetworkType($androidNetworkType) - { - $this->androidNetworkType = $androidNetworkType; - } - public function getAndroidNetworkType() - { - return $this->androidNetworkType; - } - public function setIosNetworkType($iosNetworkType) - { - $this->iosNetworkType = $iosNetworkType; - } - public function getIosNetworkType() - { - return $this->iosNetworkType; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNetworkOperatorCode($networkOperatorCode) - { - $this->networkOperatorCode = $networkOperatorCode; - } - public function getNetworkOperatorCode() - { - return $this->networkOperatorCode; - } - public function setNetworkOperatorName($networkOperatorName) - { - $this->networkOperatorName = $networkOperatorName; - } - public function getNetworkOperatorName() - { - return $this->networkOperatorName; - } - /** - * @param Google_Service_Games_PeerSessionDiagnostics - */ - public function setPeerSession($peerSession) - { - $this->peerSession = $peerSession; - } - /** - * @return Google_Service_Games_PeerSessionDiagnostics - */ - public function getPeerSession() - { - return $this->peerSession; - } - public function setSocketsUsed($socketsUsed) - { - $this->socketsUsed = $socketsUsed; - } - public function getSocketsUsed() - { - return $this->socketsUsed; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/RoomLeaveRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/RoomLeaveRequest.php deleted file mode 100644 index abfbe859..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/RoomLeaveRequest.php +++ /dev/null @@ -1,55 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Games_RoomLeaveDiagnostics - */ - public function setLeaveDiagnostics(Google_Service_Games_RoomLeaveDiagnostics $leaveDiagnostics) - { - $this->leaveDiagnostics = $leaveDiagnostics; - } - /** - * @return Google_Service_Games_RoomLeaveDiagnostics - */ - public function getLeaveDiagnostics() - { - return $this->leaveDiagnostics; - } - public function setReason($reason) - { - $this->reason = $reason; - } - public function getReason() - { - return $this->reason; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/RoomList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/RoomList.php deleted file mode 100644 index 128e7b57..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/RoomList.php +++ /dev/null @@ -1,56 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Games_Room - */ - public function getItems() - { - return $this->items; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/RoomModification.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/RoomModification.php deleted file mode 100644 index c4278987..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/RoomModification.php +++ /dev/null @@ -1,48 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setModifiedTimestampMillis($modifiedTimestampMillis) - { - $this->modifiedTimestampMillis = $modifiedTimestampMillis; - } - public function getModifiedTimestampMillis() - { - return $this->modifiedTimestampMillis; - } - public function setParticipantId($participantId) - { - $this->participantId = $participantId; - } - public function getParticipantId() - { - return $this->participantId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/RoomP2PStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/RoomP2PStatus.php deleted file mode 100644 index 89a35ff2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/RoomP2PStatus.php +++ /dev/null @@ -1,87 +0,0 @@ - "error_reason", - ); - public $connectionSetupLatencyMillis; - public $error; - public $errorReason; - public $kind; - public $participantId; - public $status; - public $unreliableRoundtripLatencyMillis; - - public function setConnectionSetupLatencyMillis($connectionSetupLatencyMillis) - { - $this->connectionSetupLatencyMillis = $connectionSetupLatencyMillis; - } - public function getConnectionSetupLatencyMillis() - { - return $this->connectionSetupLatencyMillis; - } - public function setError($error) - { - $this->error = $error; - } - public function getError() - { - return $this->error; - } - public function setErrorReason($errorReason) - { - $this->errorReason = $errorReason; - } - public function getErrorReason() - { - return $this->errorReason; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setParticipantId($participantId) - { - $this->participantId = $participantId; - } - public function getParticipantId() - { - return $this->participantId; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setUnreliableRoundtripLatencyMillis($unreliableRoundtripLatencyMillis) - { - $this->unreliableRoundtripLatencyMillis = $unreliableRoundtripLatencyMillis; - } - public function getUnreliableRoundtripLatencyMillis() - { - return $this->unreliableRoundtripLatencyMillis; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/RoomP2PStatuses.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/RoomP2PStatuses.php deleted file mode 100644 index b376a13b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/RoomP2PStatuses.php +++ /dev/null @@ -1,47 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Games_RoomP2PStatus - */ - public function setUpdates($updates) - { - $this->updates = $updates; - } - /** - * @return Google_Service_Games_RoomP2PStatus - */ - public function getUpdates() - { - return $this->updates; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/RoomParticipant.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/RoomParticipant.php deleted file mode 100644 index 04c69c41..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/RoomParticipant.php +++ /dev/null @@ -1,133 +0,0 @@ -autoMatched = $autoMatched; - } - public function getAutoMatched() - { - return $this->autoMatched; - } - /** - * @param Google_Service_Games_AnonymousPlayer - */ - public function setAutoMatchedPlayer(Google_Service_Games_AnonymousPlayer $autoMatchedPlayer) - { - $this->autoMatchedPlayer = $autoMatchedPlayer; - } - /** - * @return Google_Service_Games_AnonymousPlayer - */ - public function getAutoMatchedPlayer() - { - return $this->autoMatchedPlayer; - } - public function setCapabilities($capabilities) - { - $this->capabilities = $capabilities; - } - public function getCapabilities() - { - return $this->capabilities; - } - /** - * @param Google_Service_Games_RoomClientAddress - */ - public function setClientAddress(Google_Service_Games_RoomClientAddress $clientAddress) - { - $this->clientAddress = $clientAddress; - } - /** - * @return Google_Service_Games_RoomClientAddress - */ - public function getClientAddress() - { - return $this->clientAddress; - } - public function setConnected($connected) - { - $this->connected = $connected; - } - public function getConnected() - { - return $this->connected; - } - 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 setLeaveReason($leaveReason) - { - $this->leaveReason = $leaveReason; - } - public function getLeaveReason() - { - return $this->leaveReason; - } - /** - * @param Google_Service_Games_Player - */ - public function setPlayer(Google_Service_Games_Player $player) - { - $this->player = $player; - } - /** - * @return Google_Service_Games_Player - */ - public function getPlayer() - { - return $this->player; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/RoomStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/RoomStatus.php deleted file mode 100644 index fe97b0f5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/RoomStatus.php +++ /dev/null @@ -1,90 +0,0 @@ -autoMatchingStatus = $autoMatchingStatus; - } - /** - * @return Google_Service_Games_RoomAutoMatchStatus - */ - public function getAutoMatchingStatus() - { - return $this->autoMatchingStatus; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Games_RoomParticipant - */ - public function setParticipants($participants) - { - $this->participants = $participants; - } - /** - * @return Google_Service_Games_RoomParticipant - */ - public function getParticipants() - { - return $this->participants; - } - public function setRoomId($roomId) - { - $this->roomId = $roomId; - } - public function getRoomId() - { - return $this->roomId; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setStatusVersion($statusVersion) - { - $this->statusVersion = $statusVersion; - } - public function getStatusVersion() - { - return $this->statusVersion; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/ScoreSubmission.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/ScoreSubmission.php deleted file mode 100644 index e2ed383c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/ScoreSubmission.php +++ /dev/null @@ -1,66 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLeaderboardId($leaderboardId) - { - $this->leaderboardId = $leaderboardId; - } - public function getLeaderboardId() - { - return $this->leaderboardId; - } - public function setScore($score) - { - $this->score = $score; - } - public function getScore() - { - return $this->score; - } - public function setScoreTag($scoreTag) - { - $this->scoreTag = $scoreTag; - } - public function getScoreTag() - { - return $this->scoreTag; - } - public function setSignature($signature) - { - $this->signature = $signature; - } - public function getSignature() - { - return $this->signature; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Snapshot.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Snapshot.php deleted file mode 100644 index 1e0ebf09..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/Snapshot.php +++ /dev/null @@ -1,127 +0,0 @@ -coverImage = $coverImage; - } - /** - * @return Google_Service_Games_SnapshotImage - */ - public function getCoverImage() - { - return $this->coverImage; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDriveId($driveId) - { - $this->driveId = $driveId; - } - public function getDriveId() - { - return $this->driveId; - } - public function setDurationMillis($durationMillis) - { - $this->durationMillis = $durationMillis; - } - public function getDurationMillis() - { - return $this->durationMillis; - } - 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 setLastModifiedMillis($lastModifiedMillis) - { - $this->lastModifiedMillis = $lastModifiedMillis; - } - public function getLastModifiedMillis() - { - return $this->lastModifiedMillis; - } - public function setProgressValue($progressValue) - { - $this->progressValue = $progressValue; - } - public function getProgressValue() - { - return $this->progressValue; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setUniqueName($uniqueName) - { - $this->uniqueName = $uniqueName; - } - public function getUniqueName() - { - return $this->uniqueName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/SnapshotImage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/SnapshotImage.php deleted file mode 100644 index 3a372307..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/SnapshotImage.php +++ /dev/null @@ -1,69 +0,0 @@ - "mime_type", - ); - public $height; - public $kind; - public $mimeType; - public $url; - public $width; - - public function setHeight($height) - { - $this->height = $height; - } - public function getHeight() - { - return $this->height; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setMimeType($mimeType) - { - $this->mimeType = $mimeType; - } - public function getMimeType() - { - return $this->mimeType; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } - public function setWidth($width) - { - $this->width = $width; - } - public function getWidth() - { - return $this->width; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/SnapshotListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/SnapshotListResponse.php deleted file mode 100644 index 8e14e848..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/SnapshotListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Games_Snapshot - */ - public function getItems() - { - return $this->items; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/TurnBasedAutoMatchingCriteria.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/TurnBasedAutoMatchingCriteria.php deleted file mode 100644 index 4fcd88f8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/TurnBasedAutoMatchingCriteria.php +++ /dev/null @@ -1,57 +0,0 @@ -exclusiveBitmask = $exclusiveBitmask; - } - public function getExclusiveBitmask() - { - return $this->exclusiveBitmask; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setMaxAutoMatchingPlayers($maxAutoMatchingPlayers) - { - $this->maxAutoMatchingPlayers = $maxAutoMatchingPlayers; - } - public function getMaxAutoMatchingPlayers() - { - return $this->maxAutoMatchingPlayers; - } - public function setMinAutoMatchingPlayers($minAutoMatchingPlayers) - { - $this->minAutoMatchingPlayers = $minAutoMatchingPlayers; - } - public function getMinAutoMatchingPlayers() - { - return $this->minAutoMatchingPlayers; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/TurnBasedMatch.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/TurnBasedMatch.php deleted file mode 100644 index dc8e52de..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/TurnBasedMatch.php +++ /dev/null @@ -1,251 +0,0 @@ -applicationId = $applicationId; - } - public function getApplicationId() - { - return $this->applicationId; - } - /** - * @param Google_Service_Games_TurnBasedAutoMatchingCriteria - */ - public function setAutoMatchingCriteria(Google_Service_Games_TurnBasedAutoMatchingCriteria $autoMatchingCriteria) - { - $this->autoMatchingCriteria = $autoMatchingCriteria; - } - /** - * @return Google_Service_Games_TurnBasedAutoMatchingCriteria - */ - public function getAutoMatchingCriteria() - { - return $this->autoMatchingCriteria; - } - /** - * @param Google_Service_Games_TurnBasedMatchModification - */ - public function setCreationDetails(Google_Service_Games_TurnBasedMatchModification $creationDetails) - { - $this->creationDetails = $creationDetails; - } - /** - * @return Google_Service_Games_TurnBasedMatchModification - */ - public function getCreationDetails() - { - return $this->creationDetails; - } - /** - * @param Google_Service_Games_TurnBasedMatchData - */ - public function setData(Google_Service_Games_TurnBasedMatchData $data) - { - $this->data = $data; - } - /** - * @return Google_Service_Games_TurnBasedMatchData - */ - public function getData() - { - return $this->data; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setInviterId($inviterId) - { - $this->inviterId = $inviterId; - } - public function getInviterId() - { - return $this->inviterId; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Games_TurnBasedMatchModification - */ - public function setLastUpdateDetails(Google_Service_Games_TurnBasedMatchModification $lastUpdateDetails) - { - $this->lastUpdateDetails = $lastUpdateDetails; - } - /** - * @return Google_Service_Games_TurnBasedMatchModification - */ - public function getLastUpdateDetails() - { - return $this->lastUpdateDetails; - } - public function setMatchId($matchId) - { - $this->matchId = $matchId; - } - public function getMatchId() - { - return $this->matchId; - } - public function setMatchNumber($matchNumber) - { - $this->matchNumber = $matchNumber; - } - public function getMatchNumber() - { - return $this->matchNumber; - } - public function setMatchVersion($matchVersion) - { - $this->matchVersion = $matchVersion; - } - public function getMatchVersion() - { - return $this->matchVersion; - } - /** - * @param Google_Service_Games_TurnBasedMatchParticipant - */ - public function setParticipants($participants) - { - $this->participants = $participants; - } - /** - * @return Google_Service_Games_TurnBasedMatchParticipant - */ - public function getParticipants() - { - return $this->participants; - } - public function setPendingParticipantId($pendingParticipantId) - { - $this->pendingParticipantId = $pendingParticipantId; - } - public function getPendingParticipantId() - { - return $this->pendingParticipantId; - } - /** - * @param Google_Service_Games_TurnBasedMatchData - */ - public function setPreviousMatchData(Google_Service_Games_TurnBasedMatchData $previousMatchData) - { - $this->previousMatchData = $previousMatchData; - } - /** - * @return Google_Service_Games_TurnBasedMatchData - */ - public function getPreviousMatchData() - { - return $this->previousMatchData; - } - public function setRematchId($rematchId) - { - $this->rematchId = $rematchId; - } - public function getRematchId() - { - return $this->rematchId; - } - /** - * @param Google_Service_Games_ParticipantResult - */ - public function setResults($results) - { - $this->results = $results; - } - /** - * @return Google_Service_Games_ParticipantResult - */ - public function getResults() - { - return $this->results; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setUserMatchStatus($userMatchStatus) - { - $this->userMatchStatus = $userMatchStatus; - } - public function getUserMatchStatus() - { - return $this->userMatchStatus; - } - public function setVariant($variant) - { - $this->variant = $variant; - } - public function getVariant() - { - return $this->variant; - } - public function setWithParticipantId($withParticipantId) - { - $this->withParticipantId = $withParticipantId; - } - public function getWithParticipantId() - { - return $this->withParticipantId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/TurnBasedMatchCreateRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/TurnBasedMatchCreateRequest.php deleted file mode 100644 index 05f5df7d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/TurnBasedMatchCreateRequest.php +++ /dev/null @@ -1,74 +0,0 @@ -autoMatchingCriteria = $autoMatchingCriteria; - } - /** - * @return Google_Service_Games_TurnBasedAutoMatchingCriteria - */ - public function getAutoMatchingCriteria() - { - return $this->autoMatchingCriteria; - } - public function setInvitedPlayerIds($invitedPlayerIds) - { - $this->invitedPlayerIds = $invitedPlayerIds; - } - public function getInvitedPlayerIds() - { - return $this->invitedPlayerIds; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setRequestId($requestId) - { - $this->requestId = $requestId; - } - public function getRequestId() - { - return $this->requestId; - } - public function setVariant($variant) - { - $this->variant = $variant; - } - public function getVariant() - { - return $this->variant; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/TurnBasedMatchData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/TurnBasedMatchData.php deleted file mode 100644 index d5b726ef..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/TurnBasedMatchData.php +++ /dev/null @@ -1,48 +0,0 @@ -data = $data; - } - public function getData() - { - return $this->data; - } - public function setDataAvailable($dataAvailable) - { - $this->dataAvailable = $dataAvailable; - } - public function getDataAvailable() - { - return $this->dataAvailable; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/TurnBasedMatchDataRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/TurnBasedMatchDataRequest.php deleted file mode 100644 index e9ab1a18..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/TurnBasedMatchDataRequest.php +++ /dev/null @@ -1,39 +0,0 @@ -data = $data; - } - public function getData() - { - return $this->data; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/TurnBasedMatchList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/TurnBasedMatchList.php deleted file mode 100644 index b5a1d966..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/TurnBasedMatchList.php +++ /dev/null @@ -1,56 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Games_TurnBasedMatch - */ - public function getItems() - { - return $this->items; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/TurnBasedMatchModification.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/TurnBasedMatchModification.php deleted file mode 100644 index db812d15..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/TurnBasedMatchModification.php +++ /dev/null @@ -1,48 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setModifiedTimestampMillis($modifiedTimestampMillis) - { - $this->modifiedTimestampMillis = $modifiedTimestampMillis; - } - public function getModifiedTimestampMillis() - { - return $this->modifiedTimestampMillis; - } - public function setParticipantId($participantId) - { - $this->participantId = $participantId; - } - public function getParticipantId() - { - return $this->participantId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/TurnBasedMatchParticipant.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/TurnBasedMatchParticipant.php deleted file mode 100644 index 313f6d56..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/TurnBasedMatchParticipant.php +++ /dev/null @@ -1,89 +0,0 @@ -autoMatched = $autoMatched; - } - public function getAutoMatched() - { - return $this->autoMatched; - } - /** - * @param Google_Service_Games_AnonymousPlayer - */ - public function setAutoMatchedPlayer(Google_Service_Games_AnonymousPlayer $autoMatchedPlayer) - { - $this->autoMatchedPlayer = $autoMatchedPlayer; - } - /** - * @return Google_Service_Games_AnonymousPlayer - */ - public function getAutoMatchedPlayer() - { - return $this->autoMatchedPlayer; - } - 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; - } - /** - * @param Google_Service_Games_Player - */ - public function setPlayer(Google_Service_Games_Player $player) - { - $this->player = $player; - } - /** - * @return Google_Service_Games_Player - */ - public function getPlayer() - { - return $this->player; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/TurnBasedMatchRematch.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/TurnBasedMatchRematch.php deleted file mode 100644 index fc596f0a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/TurnBasedMatchRematch.php +++ /dev/null @@ -1,62 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Games_TurnBasedMatch - */ - public function setPreviousMatch(Google_Service_Games_TurnBasedMatch $previousMatch) - { - $this->previousMatch = $previousMatch; - } - /** - * @return Google_Service_Games_TurnBasedMatch - */ - public function getPreviousMatch() - { - return $this->previousMatch; - } - /** - * @param Google_Service_Games_TurnBasedMatch - */ - public function setRematch(Google_Service_Games_TurnBasedMatch $rematch) - { - $this->rematch = $rematch; - } - /** - * @return Google_Service_Games_TurnBasedMatch - */ - public function getRematch() - { - return $this->rematch; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/TurnBasedMatchResults.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/TurnBasedMatchResults.php deleted file mode 100644 index 37dcfbf9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/TurnBasedMatchResults.php +++ /dev/null @@ -1,72 +0,0 @@ -data = $data; - } - /** - * @return Google_Service_Games_TurnBasedMatchDataRequest - */ - public function getData() - { - return $this->data; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setMatchVersion($matchVersion) - { - $this->matchVersion = $matchVersion; - } - public function getMatchVersion() - { - return $this->matchVersion; - } - /** - * @param Google_Service_Games_ParticipantResult - */ - public function setResults($results) - { - $this->results = $results; - } - /** - * @return Google_Service_Games_ParticipantResult - */ - public function getResults() - { - return $this->results; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/TurnBasedMatchSync.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/TurnBasedMatchSync.php deleted file mode 100644 index 1ed352c3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/TurnBasedMatchSync.php +++ /dev/null @@ -1,65 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Games_TurnBasedMatch - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setMoreAvailable($moreAvailable) - { - $this->moreAvailable = $moreAvailable; - } - public function getMoreAvailable() - { - return $this->moreAvailable; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/TurnBasedMatchTurn.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/TurnBasedMatchTurn.php deleted file mode 100644 index 1a680d39..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Games/TurnBasedMatchTurn.php +++ /dev/null @@ -1,81 +0,0 @@ -data = $data; - } - /** - * @return Google_Service_Games_TurnBasedMatchDataRequest - */ - public function getData() - { - return $this->data; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setMatchVersion($matchVersion) - { - $this->matchVersion = $matchVersion; - } - public function getMatchVersion() - { - return $this->matchVersion; - } - public function setPendingParticipantId($pendingParticipantId) - { - $this->pendingParticipantId = $pendingParticipantId; - } - public function getPendingParticipantId() - { - return $this->pendingParticipantId; - } - /** - * @param Google_Service_Games_ParticipantResult - */ - public function setResults($results) - { - $this->results = $results; - } - /** - * @return Google_Service_Games_ParticipantResult - */ - public function getResults() - { - return $this->results; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesConfiguration.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesConfiguration.php deleted file mode 100644 index b4bcffaf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesConfiguration.php +++ /dev/null @@ -1,238 +0,0 @@ - - * The Publishing API for Google Play Game Services.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_GamesConfiguration extends Google_Service -{ - /** View and manage your Google Play Developer account. */ - const ANDROIDPUBLISHER = - "https://www.googleapis.com/auth/androidpublisher"; - - public $achievementConfigurations; - public $imageConfigurations; - public $leaderboardConfigurations; - - /** - * Constructs the internal representation of the GamesConfiguration service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://www.googleapis.com/'; - $this->servicePath = 'games/v1configuration/'; - $this->batchPath = 'batch/gamesConfiguration/v1configuration'; - $this->version = 'v1configuration'; - $this->serviceName = 'gamesConfiguration'; - - $this->achievementConfigurations = new Google_Service_GamesConfiguration_Resource_AchievementConfigurations( - $this, - $this->serviceName, - 'achievementConfigurations', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'achievements/{achievementId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'achievementId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'achievements/{achievementId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'achievementId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'applications/{applicationId}/achievements', - 'httpMethod' => 'POST', - 'parameters' => array( - 'applicationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'applications/{applicationId}/achievements', - 'httpMethod' => 'GET', - 'parameters' => array( - 'applicationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'achievements/{achievementId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'achievementId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'achievements/{achievementId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'achievementId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->imageConfigurations = new Google_Service_GamesConfiguration_Resource_ImageConfigurations( - $this, - $this->serviceName, - 'imageConfigurations', - array( - 'methods' => array( - 'upload' => array( - 'path' => 'images/{resourceId}/imageType/{imageType}', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resourceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'imageType' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->leaderboardConfigurations = new Google_Service_GamesConfiguration_Resource_LeaderboardConfigurations( - $this, - $this->serviceName, - 'leaderboardConfigurations', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'leaderboards/{leaderboardId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'leaderboardId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'leaderboards/{leaderboardId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'leaderboardId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'applications/{applicationId}/leaderboards', - 'httpMethod' => 'POST', - 'parameters' => array( - 'applicationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'applications/{applicationId}/leaderboards', - 'httpMethod' => 'GET', - 'parameters' => array( - 'applicationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'leaderboards/{leaderboardId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'leaderboardId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'leaderboards/{leaderboardId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'leaderboardId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesConfiguration/AchievementConfiguration.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesConfiguration/AchievementConfiguration.php deleted file mode 100644 index a22b4048..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesConfiguration/AchievementConfiguration.php +++ /dev/null @@ -1,107 +0,0 @@ -achievementType = $achievementType; - } - public function getAchievementType() - { - return $this->achievementType; - } - /** - * @param Google_Service_GamesConfiguration_AchievementConfigurationDetail - */ - public function setDraft(Google_Service_GamesConfiguration_AchievementConfigurationDetail $draft) - { - $this->draft = $draft; - } - /** - * @return Google_Service_GamesConfiguration_AchievementConfigurationDetail - */ - public function getDraft() - { - return $this->draft; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setInitialState($initialState) - { - $this->initialState = $initialState; - } - public function getInitialState() - { - return $this->initialState; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_GamesConfiguration_AchievementConfigurationDetail - */ - public function setPublished(Google_Service_GamesConfiguration_AchievementConfigurationDetail $published) - { - $this->published = $published; - } - /** - * @return Google_Service_GamesConfiguration_AchievementConfigurationDetail - */ - public function getPublished() - { - return $this->published; - } - public function setStepsToUnlock($stepsToUnlock) - { - $this->stepsToUnlock = $stepsToUnlock; - } - public function getStepsToUnlock() - { - return $this->stepsToUnlock; - } - public function setToken($token) - { - $this->token = $token; - } - public function getToken() - { - return $this->token; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesConfiguration/AchievementConfigurationDetail.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesConfiguration/AchievementConfigurationDetail.php deleted file mode 100644 index f575d87b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesConfiguration/AchievementConfigurationDetail.php +++ /dev/null @@ -1,89 +0,0 @@ -description = $description; - } - /** - * @return Google_Service_GamesConfiguration_LocalizedStringBundle - */ - public function getDescription() - { - return $this->description; - } - public function setIconUrl($iconUrl) - { - $this->iconUrl = $iconUrl; - } - public function getIconUrl() - { - return $this->iconUrl; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_GamesConfiguration_LocalizedStringBundle - */ - public function setName(Google_Service_GamesConfiguration_LocalizedStringBundle $name) - { - $this->name = $name; - } - /** - * @return Google_Service_GamesConfiguration_LocalizedStringBundle - */ - public function getName() - { - return $this->name; - } - public function setPointValue($pointValue) - { - $this->pointValue = $pointValue; - } - public function getPointValue() - { - return $this->pointValue; - } - public function setSortRank($sortRank) - { - $this->sortRank = $sortRank; - } - public function getSortRank() - { - return $this->sortRank; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesConfiguration/AchievementConfigurationListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesConfiguration/AchievementConfigurationListResponse.php deleted file mode 100644 index 2cd312df..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesConfiguration/AchievementConfigurationListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_GamesConfiguration_AchievementConfiguration - */ - public function getItems() - { - return $this->items; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesConfiguration/GamesNumberAffixConfiguration.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesConfiguration/GamesNumberAffixConfiguration.php deleted file mode 100644 index 20173f36..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesConfiguration/GamesNumberAffixConfiguration.php +++ /dev/null @@ -1,117 +0,0 @@ -few = $few; - } - /** - * @return Google_Service_GamesConfiguration_LocalizedStringBundle - */ - public function getFew() - { - return $this->few; - } - /** - * @param Google_Service_GamesConfiguration_LocalizedStringBundle - */ - public function setMany(Google_Service_GamesConfiguration_LocalizedStringBundle $many) - { - $this->many = $many; - } - /** - * @return Google_Service_GamesConfiguration_LocalizedStringBundle - */ - public function getMany() - { - return $this->many; - } - /** - * @param Google_Service_GamesConfiguration_LocalizedStringBundle - */ - public function setOne(Google_Service_GamesConfiguration_LocalizedStringBundle $one) - { - $this->one = $one; - } - /** - * @return Google_Service_GamesConfiguration_LocalizedStringBundle - */ - public function getOne() - { - return $this->one; - } - /** - * @param Google_Service_GamesConfiguration_LocalizedStringBundle - */ - public function setOther(Google_Service_GamesConfiguration_LocalizedStringBundle $other) - { - $this->other = $other; - } - /** - * @return Google_Service_GamesConfiguration_LocalizedStringBundle - */ - public function getOther() - { - return $this->other; - } - /** - * @param Google_Service_GamesConfiguration_LocalizedStringBundle - */ - public function setTwo(Google_Service_GamesConfiguration_LocalizedStringBundle $two) - { - $this->two = $two; - } - /** - * @return Google_Service_GamesConfiguration_LocalizedStringBundle - */ - public function getTwo() - { - return $this->two; - } - /** - * @param Google_Service_GamesConfiguration_LocalizedStringBundle - */ - public function setZero(Google_Service_GamesConfiguration_LocalizedStringBundle $zero) - { - $this->zero = $zero; - } - /** - * @return Google_Service_GamesConfiguration_LocalizedStringBundle - */ - public function getZero() - { - return $this->zero; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesConfiguration/GamesNumberFormatConfiguration.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesConfiguration/GamesNumberFormatConfiguration.php deleted file mode 100644 index 19d3db8b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesConfiguration/GamesNumberFormatConfiguration.php +++ /dev/null @@ -1,64 +0,0 @@ -currencyCode = $currencyCode; - } - public function getCurrencyCode() - { - return $this->currencyCode; - } - public function setNumDecimalPlaces($numDecimalPlaces) - { - $this->numDecimalPlaces = $numDecimalPlaces; - } - public function getNumDecimalPlaces() - { - return $this->numDecimalPlaces; - } - public function setNumberFormatType($numberFormatType) - { - $this->numberFormatType = $numberFormatType; - } - public function getNumberFormatType() - { - return $this->numberFormatType; - } - /** - * @param Google_Service_GamesConfiguration_GamesNumberAffixConfiguration - */ - public function setSuffix(Google_Service_GamesConfiguration_GamesNumberAffixConfiguration $suffix) - { - $this->suffix = $suffix; - } - /** - * @return Google_Service_GamesConfiguration_GamesNumberAffixConfiguration - */ - public function getSuffix() - { - return $this->suffix; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesConfiguration/ImageConfiguration.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesConfiguration/ImageConfiguration.php deleted file mode 100644 index 09898b86..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesConfiguration/ImageConfiguration.php +++ /dev/null @@ -1,57 +0,0 @@ -imageType = $imageType; - } - public function getImageType() - { - return $this->imageType; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setResourceId($resourceId) - { - $this->resourceId = $resourceId; - } - public function getResourceId() - { - return $this->resourceId; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesConfiguration/LeaderboardConfiguration.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesConfiguration/LeaderboardConfiguration.php deleted file mode 100644 index d96459a1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesConfiguration/LeaderboardConfiguration.php +++ /dev/null @@ -1,107 +0,0 @@ -draft = $draft; - } - /** - * @return Google_Service_GamesConfiguration_LeaderboardConfigurationDetail - */ - public function getDraft() - { - return $this->draft; - } - 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; - } - /** - * @param Google_Service_GamesConfiguration_LeaderboardConfigurationDetail - */ - public function setPublished(Google_Service_GamesConfiguration_LeaderboardConfigurationDetail $published) - { - $this->published = $published; - } - /** - * @return Google_Service_GamesConfiguration_LeaderboardConfigurationDetail - */ - public function getPublished() - { - return $this->published; - } - public function setScoreMax($scoreMax) - { - $this->scoreMax = $scoreMax; - } - public function getScoreMax() - { - return $this->scoreMax; - } - public function setScoreMin($scoreMin) - { - $this->scoreMin = $scoreMin; - } - public function getScoreMin() - { - return $this->scoreMin; - } - public function setScoreOrder($scoreOrder) - { - $this->scoreOrder = $scoreOrder; - } - public function getScoreOrder() - { - return $this->scoreOrder; - } - public function setToken($token) - { - $this->token = $token; - } - public function getToken() - { - return $this->token; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesConfiguration/LeaderboardConfigurationDetail.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesConfiguration/LeaderboardConfigurationDetail.php deleted file mode 100644 index c0c8ecf0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesConfiguration/LeaderboardConfigurationDetail.php +++ /dev/null @@ -1,80 +0,0 @@ -iconUrl = $iconUrl; - } - public function getIconUrl() - { - return $this->iconUrl; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_GamesConfiguration_LocalizedStringBundle - */ - public function setName(Google_Service_GamesConfiguration_LocalizedStringBundle $name) - { - $this->name = $name; - } - /** - * @return Google_Service_GamesConfiguration_LocalizedStringBundle - */ - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_GamesConfiguration_GamesNumberFormatConfiguration - */ - public function setScoreFormat(Google_Service_GamesConfiguration_GamesNumberFormatConfiguration $scoreFormat) - { - $this->scoreFormat = $scoreFormat; - } - /** - * @return Google_Service_GamesConfiguration_GamesNumberFormatConfiguration - */ - public function getScoreFormat() - { - return $this->scoreFormat; - } - public function setSortRank($sortRank) - { - $this->sortRank = $sortRank; - } - public function getSortRank() - { - return $this->sortRank; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesConfiguration/LeaderboardConfigurationListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesConfiguration/LeaderboardConfigurationListResponse.php deleted file mode 100644 index 2ead1cca..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesConfiguration/LeaderboardConfigurationListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_GamesConfiguration_LeaderboardConfiguration - */ - public function getItems() - { - return $this->items; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesConfiguration/LocalizedString.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesConfiguration/LocalizedString.php deleted file mode 100644 index f9142cf7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesConfiguration/LocalizedString.php +++ /dev/null @@ -1,48 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLocale($locale) - { - $this->locale = $locale; - } - public function getLocale() - { - return $this->locale; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesConfiguration/LocalizedStringBundle.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesConfiguration/LocalizedStringBundle.php deleted file mode 100644 index 96367615..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesConfiguration/LocalizedStringBundle.php +++ /dev/null @@ -1,47 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_GamesConfiguration_LocalizedString - */ - public function setTranslations($translations) - { - $this->translations = $translations; - } - /** - * @return Google_Service_GamesConfiguration_LocalizedString - */ - public function getTranslations() - { - return $this->translations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesConfiguration/Resource/AchievementConfigurations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesConfiguration/Resource/AchievementConfigurations.php deleted file mode 100644 index 5578b865..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesConfiguration/Resource/AchievementConfigurations.php +++ /dev/null @@ -1,121 +0,0 @@ - - * $gamesConfigurationService = new Google_Service_GamesConfiguration(...); - * $achievementConfigurations = $gamesConfigurationService->achievementConfigurations; - * - */ -class Google_Service_GamesConfiguration_Resource_AchievementConfigurations extends Google_Service_Resource -{ - /** - * Delete the achievement configuration with the given ID. - * (achievementConfigurations.delete) - * - * @param string $achievementId The ID of the achievement used by this method. - * @param array $optParams Optional parameters. - */ - public function delete($achievementId, $optParams = array()) - { - $params = array('achievementId' => $achievementId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Retrieves the metadata of the achievement configuration with the given ID. - * (achievementConfigurations.get) - * - * @param string $achievementId The ID of the achievement used by this method. - * @param array $optParams Optional parameters. - * @return Google_Service_GamesConfiguration_AchievementConfiguration - */ - public function get($achievementId, $optParams = array()) - { - $params = array('achievementId' => $achievementId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_GamesConfiguration_AchievementConfiguration"); - } - /** - * Insert a new achievement configuration in this application. - * (achievementConfigurations.insert) - * - * @param string $applicationId The application ID from the Google Play - * developer console. - * @param Google_Service_GamesConfiguration_AchievementConfiguration $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_GamesConfiguration_AchievementConfiguration - */ - public function insert($applicationId, Google_Service_GamesConfiguration_AchievementConfiguration $postBody, $optParams = array()) - { - $params = array('applicationId' => $applicationId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_GamesConfiguration_AchievementConfiguration"); - } - /** - * Returns a list of the achievement configurations in this application. - * (achievementConfigurations.listAchievementConfigurations) - * - * @param string $applicationId The application ID from the Google Play - * developer console. - * @param array $optParams Optional parameters. - * - * @opt_param int maxResults The maximum number of resource configurations to - * return in the response, used for paging. For any response, the actual number - * of resources returned may be less than the specified maxResults. - * @opt_param string pageToken The token returned by the previous request. - * @return Google_Service_GamesConfiguration_AchievementConfigurationListResponse - */ - public function listAchievementConfigurations($applicationId, $optParams = array()) - { - $params = array('applicationId' => $applicationId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_GamesConfiguration_AchievementConfigurationListResponse"); - } - /** - * Update the metadata of the achievement configuration with the given ID. This - * method supports patch semantics. (achievementConfigurations.patch) - * - * @param string $achievementId The ID of the achievement used by this method. - * @param Google_Service_GamesConfiguration_AchievementConfiguration $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_GamesConfiguration_AchievementConfiguration - */ - public function patch($achievementId, Google_Service_GamesConfiguration_AchievementConfiguration $postBody, $optParams = array()) - { - $params = array('achievementId' => $achievementId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_GamesConfiguration_AchievementConfiguration"); - } - /** - * Update the metadata of the achievement configuration with the given ID. - * (achievementConfigurations.update) - * - * @param string $achievementId The ID of the achievement used by this method. - * @param Google_Service_GamesConfiguration_AchievementConfiguration $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_GamesConfiguration_AchievementConfiguration - */ - public function update($achievementId, Google_Service_GamesConfiguration_AchievementConfiguration $postBody, $optParams = array()) - { - $params = array('achievementId' => $achievementId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_GamesConfiguration_AchievementConfiguration"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesConfiguration/Resource/ImageConfigurations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesConfiguration/Resource/ImageConfigurations.php deleted file mode 100644 index 427eb473..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesConfiguration/Resource/ImageConfigurations.php +++ /dev/null @@ -1,43 +0,0 @@ - - * $gamesConfigurationService = new Google_Service_GamesConfiguration(...); - * $imageConfigurations = $gamesConfigurationService->imageConfigurations; - * - */ -class Google_Service_GamesConfiguration_Resource_ImageConfigurations extends Google_Service_Resource -{ - /** - * Uploads an image for a resource with the given ID and image type. - * (imageConfigurations.upload) - * - * @param string $resourceId The ID of the resource used by this method. - * @param string $imageType Selects which image in a resource for this method. - * @param array $optParams Optional parameters. - * @return Google_Service_GamesConfiguration_ImageConfiguration - */ - public function upload($resourceId, $imageType, $optParams = array()) - { - $params = array('resourceId' => $resourceId, 'imageType' => $imageType); - $params = array_merge($params, $optParams); - return $this->call('upload', array($params), "Google_Service_GamesConfiguration_ImageConfiguration"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesConfiguration/Resource/LeaderboardConfigurations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesConfiguration/Resource/LeaderboardConfigurations.php deleted file mode 100644 index 55e480b8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesConfiguration/Resource/LeaderboardConfigurations.php +++ /dev/null @@ -1,121 +0,0 @@ - - * $gamesConfigurationService = new Google_Service_GamesConfiguration(...); - * $leaderboardConfigurations = $gamesConfigurationService->leaderboardConfigurations; - * - */ -class Google_Service_GamesConfiguration_Resource_LeaderboardConfigurations extends Google_Service_Resource -{ - /** - * Delete the leaderboard configuration with the given ID. - * (leaderboardConfigurations.delete) - * - * @param string $leaderboardId The ID of the leaderboard. - * @param array $optParams Optional parameters. - */ - public function delete($leaderboardId, $optParams = array()) - { - $params = array('leaderboardId' => $leaderboardId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Retrieves the metadata of the leaderboard configuration with the given ID. - * (leaderboardConfigurations.get) - * - * @param string $leaderboardId The ID of the leaderboard. - * @param array $optParams Optional parameters. - * @return Google_Service_GamesConfiguration_LeaderboardConfiguration - */ - public function get($leaderboardId, $optParams = array()) - { - $params = array('leaderboardId' => $leaderboardId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_GamesConfiguration_LeaderboardConfiguration"); - } - /** - * Insert a new leaderboard configuration in this application. - * (leaderboardConfigurations.insert) - * - * @param string $applicationId The application ID from the Google Play - * developer console. - * @param Google_Service_GamesConfiguration_LeaderboardConfiguration $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_GamesConfiguration_LeaderboardConfiguration - */ - public function insert($applicationId, Google_Service_GamesConfiguration_LeaderboardConfiguration $postBody, $optParams = array()) - { - $params = array('applicationId' => $applicationId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_GamesConfiguration_LeaderboardConfiguration"); - } - /** - * Returns a list of the leaderboard configurations in this application. - * (leaderboardConfigurations.listLeaderboardConfigurations) - * - * @param string $applicationId The application ID from the Google Play - * developer console. - * @param array $optParams Optional parameters. - * - * @opt_param int maxResults The maximum number of resource configurations to - * return in the response, used for paging. For any response, the actual number - * of resources returned may be less than the specified maxResults. - * @opt_param string pageToken The token returned by the previous request. - * @return Google_Service_GamesConfiguration_LeaderboardConfigurationListResponse - */ - public function listLeaderboardConfigurations($applicationId, $optParams = array()) - { - $params = array('applicationId' => $applicationId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_GamesConfiguration_LeaderboardConfigurationListResponse"); - } - /** - * Update the metadata of the leaderboard configuration with the given ID. This - * method supports patch semantics. (leaderboardConfigurations.patch) - * - * @param string $leaderboardId The ID of the leaderboard. - * @param Google_Service_GamesConfiguration_LeaderboardConfiguration $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_GamesConfiguration_LeaderboardConfiguration - */ - public function patch($leaderboardId, Google_Service_GamesConfiguration_LeaderboardConfiguration $postBody, $optParams = array()) - { - $params = array('leaderboardId' => $leaderboardId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_GamesConfiguration_LeaderboardConfiguration"); - } - /** - * Update the metadata of the leaderboard configuration with the given ID. - * (leaderboardConfigurations.update) - * - * @param string $leaderboardId The ID of the leaderboard. - * @param Google_Service_GamesConfiguration_LeaderboardConfiguration $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_GamesConfiguration_LeaderboardConfiguration - */ - public function update($leaderboardId, Google_Service_GamesConfiguration_LeaderboardConfiguration $postBody, $optParams = array()) - { - $params = array('leaderboardId' => $leaderboardId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_GamesConfiguration_LeaderboardConfiguration"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement.php deleted file mode 100644 index 969099e5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement.php +++ /dev/null @@ -1,291 +0,0 @@ - - * The Management API for Google Play Game Services.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_GamesManagement extends Google_Service -{ - /** Create, edit, and delete your Google Play Games activity. */ - const GAMES = - "https://www.googleapis.com/auth/games"; - - public $achievements; - public $applications; - public $events; - public $players; - public $rooms; - public $scores; - public $turnBasedMatches; - - /** - * Constructs the internal representation of the GamesManagement service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://www.googleapis.com/'; - $this->servicePath = 'games/v1management/'; - $this->batchPath = 'batch/gamesManagement/v1management'; - $this->version = 'v1management'; - $this->serviceName = 'gamesManagement'; - - $this->achievements = new Google_Service_GamesManagement_Resource_Achievements( - $this, - $this->serviceName, - 'achievements', - array( - 'methods' => array( - 'reset' => array( - 'path' => 'achievements/{achievementId}/reset', - 'httpMethod' => 'POST', - 'parameters' => array( - 'achievementId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'resetAll' => array( - 'path' => 'achievements/reset', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'resetAllForAllPlayers' => array( - 'path' => 'achievements/resetAllForAllPlayers', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'resetForAllPlayers' => array( - 'path' => 'achievements/{achievementId}/resetForAllPlayers', - 'httpMethod' => 'POST', - 'parameters' => array( - 'achievementId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'resetMultipleForAllPlayers' => array( - 'path' => 'achievements/resetMultipleForAllPlayers', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->applications = new Google_Service_GamesManagement_Resource_Applications( - $this, - $this->serviceName, - 'applications', - array( - 'methods' => array( - 'listHidden' => array( - 'path' => 'applications/{applicationId}/players/hidden', - 'httpMethod' => 'GET', - 'parameters' => array( - 'applicationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->events = new Google_Service_GamesManagement_Resource_Events( - $this, - $this->serviceName, - 'events', - array( - 'methods' => array( - 'reset' => array( - 'path' => 'events/{eventId}/reset', - 'httpMethod' => 'POST', - 'parameters' => array( - 'eventId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'resetAll' => array( - 'path' => 'events/reset', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'resetAllForAllPlayers' => array( - 'path' => 'events/resetAllForAllPlayers', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'resetForAllPlayers' => array( - 'path' => 'events/{eventId}/resetForAllPlayers', - 'httpMethod' => 'POST', - 'parameters' => array( - 'eventId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'resetMultipleForAllPlayers' => array( - 'path' => 'events/resetMultipleForAllPlayers', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->players = new Google_Service_GamesManagement_Resource_Players( - $this, - $this->serviceName, - 'players', - array( - 'methods' => array( - 'hide' => array( - 'path' => 'applications/{applicationId}/players/hidden/{playerId}', - 'httpMethod' => 'POST', - 'parameters' => array( - 'applicationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'playerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'unhide' => array( - 'path' => 'applications/{applicationId}/players/hidden/{playerId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'applicationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'playerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->rooms = new Google_Service_GamesManagement_Resource_Rooms( - $this, - $this->serviceName, - 'rooms', - array( - 'methods' => array( - 'reset' => array( - 'path' => 'rooms/reset', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'resetForAllPlayers' => array( - 'path' => 'rooms/resetForAllPlayers', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->scores = new Google_Service_GamesManagement_Resource_Scores( - $this, - $this->serviceName, - 'scores', - array( - 'methods' => array( - 'reset' => array( - 'path' => 'leaderboards/{leaderboardId}/scores/reset', - 'httpMethod' => 'POST', - 'parameters' => array( - 'leaderboardId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'resetAll' => array( - 'path' => 'scores/reset', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'resetAllForAllPlayers' => array( - 'path' => 'scores/resetAllForAllPlayers', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'resetForAllPlayers' => array( - 'path' => 'leaderboards/{leaderboardId}/scores/resetForAllPlayers', - 'httpMethod' => 'POST', - 'parameters' => array( - 'leaderboardId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'resetMultipleForAllPlayers' => array( - 'path' => 'scores/resetMultipleForAllPlayers', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->turnBasedMatches = new Google_Service_GamesManagement_Resource_TurnBasedMatches( - $this, - $this->serviceName, - 'turnBasedMatches', - array( - 'methods' => array( - 'reset' => array( - 'path' => 'turnbasedmatches/reset', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'resetForAllPlayers' => array( - 'path' => 'turnbasedmatches/resetForAllPlayers', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/AchievementResetAllResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/AchievementResetAllResponse.php deleted file mode 100644 index 55ff9911..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/AchievementResetAllResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_GamesManagement_AchievementResetResponse - */ - public function setResults($results) - { - $this->results = $results; - } - /** - * @return Google_Service_GamesManagement_AchievementResetResponse - */ - public function getResults() - { - return $this->results; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/AchievementResetMultipleForAllRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/AchievementResetMultipleForAllRequest.php deleted file mode 100644 index c39942fb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/AchievementResetMultipleForAllRequest.php +++ /dev/null @@ -1,43 +0,0 @@ - "achievement_ids", - ); - public $achievementIds; - public $kind; - - public function setAchievementIds($achievementIds) - { - $this->achievementIds = $achievementIds; - } - public function getAchievementIds() - { - return $this->achievementIds; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/AchievementResetResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/AchievementResetResponse.php deleted file mode 100644 index 6e4760bb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/AchievementResetResponse.php +++ /dev/null @@ -1,57 +0,0 @@ -currentState = $currentState; - } - public function getCurrentState() - { - return $this->currentState; - } - public function setDefinitionId($definitionId) - { - $this->definitionId = $definitionId; - } - public function getDefinitionId() - { - return $this->definitionId; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setUpdateOccurred($updateOccurred) - { - $this->updateOccurred = $updateOccurred; - } - public function getUpdateOccurred() - { - return $this->updateOccurred; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/EventsResetMultipleForAllRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/EventsResetMultipleForAllRequest.php deleted file mode 100644 index c43edc53..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/EventsResetMultipleForAllRequest.php +++ /dev/null @@ -1,43 +0,0 @@ - "event_ids", - ); - public $eventIds; - public $kind; - - public function setEventIds($eventIds) - { - $this->eventIds = $eventIds; - } - public function getEventIds() - { - return $this->eventIds; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/GamesPlayedResource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/GamesPlayedResource.php deleted file mode 100644 index ae6e7368..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/GamesPlayedResource.php +++ /dev/null @@ -1,39 +0,0 @@ -autoMatched = $autoMatched; - } - public function getAutoMatched() - { - return $this->autoMatched; - } - public function setTimeMillis($timeMillis) - { - $this->timeMillis = $timeMillis; - } - public function getTimeMillis() - { - return $this->timeMillis; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/GamesPlayerExperienceInfoResource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/GamesPlayerExperienceInfoResource.php deleted file mode 100644 index 6ab1f570..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/GamesPlayerExperienceInfoResource.php +++ /dev/null @@ -1,71 +0,0 @@ -currentExperiencePoints = $currentExperiencePoints; - } - public function getCurrentExperiencePoints() - { - return $this->currentExperiencePoints; - } - /** - * @param Google_Service_GamesManagement_GamesPlayerLevelResource - */ - public function setCurrentLevel(Google_Service_GamesManagement_GamesPlayerLevelResource $currentLevel) - { - $this->currentLevel = $currentLevel; - } - /** - * @return Google_Service_GamesManagement_GamesPlayerLevelResource - */ - public function getCurrentLevel() - { - return $this->currentLevel; - } - public function setLastLevelUpTimestampMillis($lastLevelUpTimestampMillis) - { - $this->lastLevelUpTimestampMillis = $lastLevelUpTimestampMillis; - } - public function getLastLevelUpTimestampMillis() - { - return $this->lastLevelUpTimestampMillis; - } - /** - * @param Google_Service_GamesManagement_GamesPlayerLevelResource - */ - public function setNextLevel(Google_Service_GamesManagement_GamesPlayerLevelResource $nextLevel) - { - $this->nextLevel = $nextLevel; - } - /** - * @return Google_Service_GamesManagement_GamesPlayerLevelResource - */ - public function getNextLevel() - { - return $this->nextLevel; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/GamesPlayerLevelResource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/GamesPlayerLevelResource.php deleted file mode 100644 index d3851058..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/GamesPlayerLevelResource.php +++ /dev/null @@ -1,48 +0,0 @@ -level = $level; - } - public function getLevel() - { - return $this->level; - } - public function setMaxExperiencePoints($maxExperiencePoints) - { - $this->maxExperiencePoints = $maxExperiencePoints; - } - public function getMaxExperiencePoints() - { - return $this->maxExperiencePoints; - } - public function setMinExperiencePoints($minExperiencePoints) - { - $this->minExperiencePoints = $minExperiencePoints; - } - public function getMinExperiencePoints() - { - return $this->minExperiencePoints; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/HiddenPlayer.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/HiddenPlayer.php deleted file mode 100644 index eaf53ffc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/HiddenPlayer.php +++ /dev/null @@ -1,55 +0,0 @@ -hiddenTimeMillis = $hiddenTimeMillis; - } - public function getHiddenTimeMillis() - { - return $this->hiddenTimeMillis; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_GamesManagement_Player - */ - public function setPlayer(Google_Service_GamesManagement_Player $player) - { - $this->player = $player; - } - /** - * @return Google_Service_GamesManagement_Player - */ - public function getPlayer() - { - return $this->player; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/HiddenPlayerList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/HiddenPlayerList.php deleted file mode 100644 index 4b9ee76d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/HiddenPlayerList.php +++ /dev/null @@ -1,56 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_GamesManagement_HiddenPlayer - */ - public function getItems() - { - return $this->items; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/Player.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/Player.php deleted file mode 100644 index d3bede8d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/Player.php +++ /dev/null @@ -1,166 +0,0 @@ -avatarImageUrl = $avatarImageUrl; - } - public function getAvatarImageUrl() - { - return $this->avatarImageUrl; - } - public function setBannerUrlLandscape($bannerUrlLandscape) - { - $this->bannerUrlLandscape = $bannerUrlLandscape; - } - public function getBannerUrlLandscape() - { - return $this->bannerUrlLandscape; - } - public function setBannerUrlPortrait($bannerUrlPortrait) - { - $this->bannerUrlPortrait = $bannerUrlPortrait; - } - public function getBannerUrlPortrait() - { - return $this->bannerUrlPortrait; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - /** - * @param Google_Service_GamesManagement_GamesPlayerExperienceInfoResource - */ - public function setExperienceInfo(Google_Service_GamesManagement_GamesPlayerExperienceInfoResource $experienceInfo) - { - $this->experienceInfo = $experienceInfo; - } - /** - * @return Google_Service_GamesManagement_GamesPlayerExperienceInfoResource - */ - public function getExperienceInfo() - { - return $this->experienceInfo; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_GamesManagement_GamesPlayedResource - */ - public function setLastPlayedWith(Google_Service_GamesManagement_GamesPlayedResource $lastPlayedWith) - { - $this->lastPlayedWith = $lastPlayedWith; - } - /** - * @return Google_Service_GamesManagement_GamesPlayedResource - */ - public function getLastPlayedWith() - { - return $this->lastPlayedWith; - } - /** - * @param Google_Service_GamesManagement_PlayerName - */ - public function setName(Google_Service_GamesManagement_PlayerName $name) - { - $this->name = $name; - } - /** - * @return Google_Service_GamesManagement_PlayerName - */ - public function getName() - { - return $this->name; - } - public function setOriginalPlayerId($originalPlayerId) - { - $this->originalPlayerId = $originalPlayerId; - } - public function getOriginalPlayerId() - { - return $this->originalPlayerId; - } - public function setPlayerId($playerId) - { - $this->playerId = $playerId; - } - public function getPlayerId() - { - return $this->playerId; - } - public function setPlayerStattus($playerStattus) - { - $this->playerStattus = $playerStattus; - } - public function getPlayerStattus() - { - return $this->playerStattus; - } - /** - * @param Google_Service_GamesManagement_ProfileSettings - */ - public function setProfileSettings(Google_Service_GamesManagement_ProfileSettings $profileSettings) - { - $this->profileSettings = $profileSettings; - } - /** - * @return Google_Service_GamesManagement_ProfileSettings - */ - public function getProfileSettings() - { - return $this->profileSettings; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/PlayerName.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/PlayerName.php deleted file mode 100644 index 28bcb47c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/PlayerName.php +++ /dev/null @@ -1,39 +0,0 @@ -familyName = $familyName; - } - public function getFamilyName() - { - return $this->familyName; - } - public function setGivenName($givenName) - { - $this->givenName = $givenName; - } - public function getGivenName() - { - return $this->givenName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/PlayerScoreResetAllResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/PlayerScoreResetAllResponse.php deleted file mode 100644 index 7b5c07e0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/PlayerScoreResetAllResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_GamesManagement_PlayerScoreResetResponse - */ - public function setResults($results) - { - $this->results = $results; - } - /** - * @return Google_Service_GamesManagement_PlayerScoreResetResponse - */ - public function getResults() - { - return $this->results; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/PlayerScoreResetResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/PlayerScoreResetResponse.php deleted file mode 100644 index d3d0bb7b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/PlayerScoreResetResponse.php +++ /dev/null @@ -1,49 +0,0 @@ -definitionId = $definitionId; - } - public function getDefinitionId() - { - return $this->definitionId; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setResetScoreTimeSpans($resetScoreTimeSpans) - { - $this->resetScoreTimeSpans = $resetScoreTimeSpans; - } - public function getResetScoreTimeSpans() - { - return $this->resetScoreTimeSpans; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/ProfileSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/ProfileSettings.php deleted file mode 100644 index 4967eb86..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/ProfileSettings.php +++ /dev/null @@ -1,39 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setProfileVisible($profileVisible) - { - $this->profileVisible = $profileVisible; - } - public function getProfileVisible() - { - return $this->profileVisible; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/Resource/Achievements.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/Resource/Achievements.php deleted file mode 100644 index 84ce79fe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/Resource/Achievements.php +++ /dev/null @@ -1,98 +0,0 @@ - - * $gamesManagementService = new Google_Service_GamesManagement(...); - * $achievements = $gamesManagementService->achievements; - * - */ -class Google_Service_GamesManagement_Resource_Achievements extends Google_Service_Resource -{ - /** - * Resets the achievement with the given ID for the currently authenticated - * player. This method is only accessible to whitelisted tester accounts for - * your application. (achievements.reset) - * - * @param string $achievementId The ID of the achievement used by this method. - * @param array $optParams Optional parameters. - * @return Google_Service_GamesManagement_AchievementResetResponse - */ - public function reset($achievementId, $optParams = array()) - { - $params = array('achievementId' => $achievementId); - $params = array_merge($params, $optParams); - return $this->call('reset', array($params), "Google_Service_GamesManagement_AchievementResetResponse"); - } - /** - * Resets all achievements for the currently authenticated player for your - * application. This method is only accessible to whitelisted tester accounts - * for your application. (achievements.resetAll) - * - * @param array $optParams Optional parameters. - * @return Google_Service_GamesManagement_AchievementResetAllResponse - */ - public function resetAll($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('resetAll', array($params), "Google_Service_GamesManagement_AchievementResetAllResponse"); - } - /** - * Resets all draft achievements for all players. This method is only available - * to user accounts for your developer console. - * (achievements.resetAllForAllPlayers) - * - * @param array $optParams Optional parameters. - */ - public function resetAllForAllPlayers($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('resetAllForAllPlayers', array($params)); - } - /** - * Resets the achievement with the given ID for all players. This method is only - * available to user accounts for your developer console. Only draft - * achievements can be reset. (achievements.resetForAllPlayers) - * - * @param string $achievementId The ID of the achievement used by this method. - * @param array $optParams Optional parameters. - */ - public function resetForAllPlayers($achievementId, $optParams = array()) - { - $params = array('achievementId' => $achievementId); - $params = array_merge($params, $optParams); - return $this->call('resetForAllPlayers', array($params)); - } - /** - * Resets achievements with the given IDs for all players. This method is only - * available to user accounts for your developer console. Only draft - * achievements may be reset. (achievements.resetMultipleForAllPlayers) - * - * @param Google_Service_GamesManagement_AchievementResetMultipleForAllRequest $postBody - * @param array $optParams Optional parameters. - */ - public function resetMultipleForAllPlayers(Google_Service_GamesManagement_AchievementResetMultipleForAllRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('resetMultipleForAllPlayers', array($params)); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/Resource/Applications.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/Resource/Applications.php deleted file mode 100644 index 6af92165..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/Resource/Applications.php +++ /dev/null @@ -1,49 +0,0 @@ - - * $gamesManagementService = new Google_Service_GamesManagement(...); - * $applications = $gamesManagementService->applications; - * - */ -class Google_Service_GamesManagement_Resource_Applications extends Google_Service_Resource -{ - /** - * Get the list of players hidden from the given application. This method is - * only available to user accounts for your developer console. - * (applications.listHidden) - * - * @param string $applicationId The application ID from the Google Play - * developer console. - * @param array $optParams Optional parameters. - * - * @opt_param int maxResults The maximum number of player resources to return in - * the response, used for paging. For any response, the actual number of player - * resources returned may be less than the specified maxResults. - * @opt_param string pageToken The token returned by the previous request. - * @return Google_Service_GamesManagement_HiddenPlayerList - */ - public function listHidden($applicationId, $optParams = array()) - { - $params = array('applicationId' => $applicationId); - $params = array_merge($params, $optParams); - return $this->call('listHidden', array($params), "Google_Service_GamesManagement_HiddenPlayerList"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/Resource/Events.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/Resource/Events.php deleted file mode 100644 index 0a29618f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/Resource/Events.php +++ /dev/null @@ -1,95 +0,0 @@ - - * $gamesManagementService = new Google_Service_GamesManagement(...); - * $events = $gamesManagementService->events; - * - */ -class Google_Service_GamesManagement_Resource_Events extends Google_Service_Resource -{ - /** - * Resets all player progress on the event with the given ID for the currently - * authenticated player. This method is only accessible to whitelisted tester - * accounts for your application. (events.reset) - * - * @param string $eventId The ID of the event. - * @param array $optParams Optional parameters. - */ - public function reset($eventId, $optParams = array()) - { - $params = array('eventId' => $eventId); - $params = array_merge($params, $optParams); - return $this->call('reset', array($params)); - } - /** - * Resets all player progress on all events for the currently authenticated - * player. This method is only accessible to whitelisted tester accounts for - * your application. (events.resetAll) - * - * @param array $optParams Optional parameters. - */ - public function resetAll($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('resetAll', array($params)); - } - /** - * Resets all draft events for all players. This method is only available to - * user accounts for your developer console. (events.resetAllForAllPlayers) - * - * @param array $optParams Optional parameters. - */ - public function resetAllForAllPlayers($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('resetAllForAllPlayers', array($params)); - } - /** - * Resets the event with the given ID for all players. This method is only - * available to user accounts for your developer console. Only draft events can - * be reset. (events.resetForAllPlayers) - * - * @param string $eventId The ID of the event. - * @param array $optParams Optional parameters. - */ - public function resetForAllPlayers($eventId, $optParams = array()) - { - $params = array('eventId' => $eventId); - $params = array_merge($params, $optParams); - return $this->call('resetForAllPlayers', array($params)); - } - /** - * Resets events with the given IDs for all players. This method is only - * available to user accounts for your developer console. Only draft events may - * be reset. (events.resetMultipleForAllPlayers) - * - * @param Google_Service_GamesManagement_EventsResetMultipleForAllRequest $postBody - * @param array $optParams Optional parameters. - */ - public function resetMultipleForAllPlayers(Google_Service_GamesManagement_EventsResetMultipleForAllRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('resetMultipleForAllPlayers', array($params)); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/Resource/Players.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/Resource/Players.php deleted file mode 100644 index ce042fd1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/Resource/Players.php +++ /dev/null @@ -1,62 +0,0 @@ - - * $gamesManagementService = new Google_Service_GamesManagement(...); - * $players = $gamesManagementService->players; - * - */ -class Google_Service_GamesManagement_Resource_Players extends Google_Service_Resource -{ - /** - * Hide the given player's leaderboard scores from the given application. This - * method is only available to user accounts for your developer console. - * (players.hide) - * - * @param string $applicationId The application ID from the Google Play - * developer console. - * @param string $playerId A player ID. A value of me may be used in place of - * the authenticated player's ID. - * @param array $optParams Optional parameters. - */ - public function hide($applicationId, $playerId, $optParams = array()) - { - $params = array('applicationId' => $applicationId, 'playerId' => $playerId); - $params = array_merge($params, $optParams); - return $this->call('hide', array($params)); - } - /** - * Unhide the given player's leaderboard scores from the given application. This - * method is only available to user accounts for your developer console. - * (players.unhide) - * - * @param string $applicationId The application ID from the Google Play - * developer console. - * @param string $playerId A player ID. A value of me may be used in place of - * the authenticated player's ID. - * @param array $optParams Optional parameters. - */ - public function unhide($applicationId, $playerId, $optParams = array()) - { - $params = array('applicationId' => $applicationId, 'playerId' => $playerId); - $params = array_merge($params, $optParams); - return $this->call('unhide', array($params)); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/Resource/Rooms.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/Resource/Rooms.php deleted file mode 100644 index e2806960..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/Resource/Rooms.php +++ /dev/null @@ -1,54 +0,0 @@ - - * $gamesManagementService = new Google_Service_GamesManagement(...); - * $rooms = $gamesManagementService->rooms; - * - */ -class Google_Service_GamesManagement_Resource_Rooms extends Google_Service_Resource -{ - /** - * Reset all rooms for the currently authenticated player for your application. - * This method is only accessible to whitelisted tester accounts for your - * application. (rooms.reset) - * - * @param array $optParams Optional parameters. - */ - public function reset($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('reset', array($params)); - } - /** - * Deletes rooms where the only room participants are from whitelisted tester - * accounts for your application. This method is only available to user accounts - * for your developer console. (rooms.resetForAllPlayers) - * - * @param array $optParams Optional parameters. - */ - public function resetForAllPlayers($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('resetForAllPlayers', array($params)); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/Resource/Scores.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/Resource/Scores.php deleted file mode 100644 index 687e4352..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/Resource/Scores.php +++ /dev/null @@ -1,98 +0,0 @@ - - * $gamesManagementService = new Google_Service_GamesManagement(...); - * $scores = $gamesManagementService->scores; - * - */ -class Google_Service_GamesManagement_Resource_Scores extends Google_Service_Resource -{ - /** - * Resets scores for the leaderboard with the given ID for the currently - * authenticated player. This method is only accessible to whitelisted tester - * accounts for your application. (scores.reset) - * - * @param string $leaderboardId The ID of the leaderboard. - * @param array $optParams Optional parameters. - * @return Google_Service_GamesManagement_PlayerScoreResetResponse - */ - public function reset($leaderboardId, $optParams = array()) - { - $params = array('leaderboardId' => $leaderboardId); - $params = array_merge($params, $optParams); - return $this->call('reset', array($params), "Google_Service_GamesManagement_PlayerScoreResetResponse"); - } - /** - * Resets all scores for all leaderboards for the currently authenticated - * players. This method is only accessible to whitelisted tester accounts for - * your application. (scores.resetAll) - * - * @param array $optParams Optional parameters. - * @return Google_Service_GamesManagement_PlayerScoreResetAllResponse - */ - public function resetAll($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('resetAll', array($params), "Google_Service_GamesManagement_PlayerScoreResetAllResponse"); - } - /** - * Resets scores for all draft leaderboards for all players. This method is only - * available to user accounts for your developer console. - * (scores.resetAllForAllPlayers) - * - * @param array $optParams Optional parameters. - */ - public function resetAllForAllPlayers($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('resetAllForAllPlayers', array($params)); - } - /** - * Resets scores for the leaderboard with the given ID for all players. This - * method is only available to user accounts for your developer console. Only - * draft leaderboards can be reset. (scores.resetForAllPlayers) - * - * @param string $leaderboardId The ID of the leaderboard. - * @param array $optParams Optional parameters. - */ - public function resetForAllPlayers($leaderboardId, $optParams = array()) - { - $params = array('leaderboardId' => $leaderboardId); - $params = array_merge($params, $optParams); - return $this->call('resetForAllPlayers', array($params)); - } - /** - * Resets scores for the leaderboards with the given IDs for all players. This - * method is only available to user accounts for your developer console. Only - * draft leaderboards may be reset. (scores.resetMultipleForAllPlayers) - * - * @param Google_Service_GamesManagement_ScoresResetMultipleForAllRequest $postBody - * @param array $optParams Optional parameters. - */ - public function resetMultipleForAllPlayers(Google_Service_GamesManagement_ScoresResetMultipleForAllRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('resetMultipleForAllPlayers', array($params)); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/Resource/TurnBasedMatches.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/Resource/TurnBasedMatches.php deleted file mode 100644 index 61314fa0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/Resource/TurnBasedMatches.php +++ /dev/null @@ -1,54 +0,0 @@ - - * $gamesManagementService = new Google_Service_GamesManagement(...); - * $turnBasedMatches = $gamesManagementService->turnBasedMatches; - * - */ -class Google_Service_GamesManagement_Resource_TurnBasedMatches extends Google_Service_Resource -{ - /** - * Reset all turn-based match data for a user. This method is only accessible to - * whitelisted tester accounts for your application. (turnBasedMatches.reset) - * - * @param array $optParams Optional parameters. - */ - public function reset($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('reset', array($params)); - } - /** - * Deletes turn-based matches where the only match participants are from - * whitelisted tester accounts for your application. This method is only - * available to user accounts for your developer console. - * (turnBasedMatches.resetForAllPlayers) - * - * @param array $optParams Optional parameters. - */ - public function resetForAllPlayers($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('resetForAllPlayers', array($params)); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/ScoresResetMultipleForAllRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/ScoresResetMultipleForAllRequest.php deleted file mode 100644 index 84511aef..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GamesManagement/ScoresResetMultipleForAllRequest.php +++ /dev/null @@ -1,43 +0,0 @@ - "leaderboard_ids", - ); - public $kind; - public $leaderboardIds; - - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLeaderboardIds($leaderboardIds) - { - $this->leaderboardIds = $leaderboardIds; - } - public function getLeaderboardIds() - { - return $this->leaderboardIds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics.php deleted file mode 100644 index 899d0cc0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics.php +++ /dev/null @@ -1,110 +0,0 @@ - - * Uploads, processes, queries, and searches Genomics data in the cloud.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Genomics extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** View and manage Genomics data. */ - const GENOMICS = - "https://www.googleapis.com/auth/genomics"; - - public $operations; - - /** - * Constructs the internal representation of the Genomics service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://genomics.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'genomics'; - - $this->operations = new Google_Service_Genomics_Resource_Operations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'cancel' => array( - 'path' => 'v1/{+name}:cancel', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/CancelOperationRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/CancelOperationRequest.php deleted file mode 100644 index 6c8ba704..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/CancelOperationRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -diskNames = $diskNames; - } - public function getDiskNames() - { - return $this->diskNames; - } - public function setInstanceName($instanceName) - { - $this->instanceName = $instanceName; - } - public function getInstanceName() - { - return $this->instanceName; - } - public function setMachineType($machineType) - { - $this->machineType = $machineType; - } - public function getMachineType() - { - return $this->machineType; - } - public function setZone($zone) - { - $this->zone = $zone; - } - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/ContainerKilledEvent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/ContainerKilledEvent.php deleted file mode 100644 index 87eef98f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/ContainerKilledEvent.php +++ /dev/null @@ -1,30 +0,0 @@ -actionId = $actionId; - } - public function getActionId() - { - return $this->actionId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/ContainerStartedEvent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/ContainerStartedEvent.php deleted file mode 100644 index eb25e181..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/ContainerStartedEvent.php +++ /dev/null @@ -1,48 +0,0 @@ -actionId = $actionId; - } - public function getActionId() - { - return $this->actionId; - } - public function setIpAddress($ipAddress) - { - $this->ipAddress = $ipAddress; - } - public function getIpAddress() - { - return $this->ipAddress; - } - public function setPortMappings($portMappings) - { - $this->portMappings = $portMappings; - } - public function getPortMappings() - { - return $this->portMappings; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/ContainerStoppedEvent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/ContainerStoppedEvent.php deleted file mode 100644 index 27369c5d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/ContainerStoppedEvent.php +++ /dev/null @@ -1,48 +0,0 @@ -actionId = $actionId; - } - public function getActionId() - { - return $this->actionId; - } - public function setExitStatus($exitStatus) - { - $this->exitStatus = $exitStatus; - } - public function getExitStatus() - { - return $this->exitStatus; - } - public function setStderr($stderr) - { - $this->stderr = $stderr; - } - public function getStderr() - { - return $this->stderr; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/DelayedEvent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/DelayedEvent.php deleted file mode 100644 index 2c1e6179..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/DelayedEvent.php +++ /dev/null @@ -1,40 +0,0 @@ -cause = $cause; - } - public function getCause() - { - return $this->cause; - } - public function setMetrics($metrics) - { - $this->metrics = $metrics; - } - public function getMetrics() - { - return $this->metrics; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/Event.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/Event.php deleted file mode 100644 index f3de7575..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/Event.php +++ /dev/null @@ -1,48 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setTimestamp($timestamp) - { - $this->timestamp = $timestamp; - } - public function getTimestamp() - { - return $this->timestamp; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/FailedEvent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/FailedEvent.php deleted file mode 100644 index 3080da34..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/FailedEvent.php +++ /dev/null @@ -1,39 +0,0 @@ -cause = $cause; - } - public function getCause() - { - return $this->cause; - } - public function setCode($code) - { - $this->code = $code; - } - public function getCode() - { - return $this->code; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/GenomicsEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/GenomicsEmpty.php deleted file mode 100644 index baa80fae..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/GenomicsEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Genomics_Operation - */ - public function setOperations($operations) - { - $this->operations = $operations; - } - /** - * @return Google_Service_Genomics_Operation - */ - public function getOperations() - { - return $this->operations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/Operation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/Operation.php deleted file mode 100644 index a3e4255c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/Operation.php +++ /dev/null @@ -1,73 +0,0 @@ -done = $done; - } - public function getDone() - { - return $this->done; - } - /** - * @param Google_Service_Genomics_Status - */ - public function setError(Google_Service_Genomics_Status $error) - { - $this->error = $error; - } - /** - * @return Google_Service_Genomics_Status - */ - public function getError() - { - return $this->error; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/OperationEvent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/OperationEvent.php deleted file mode 100644 index 0fb6f153..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/OperationEvent.php +++ /dev/null @@ -1,48 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/OperationMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/OperationMetadata.php deleted file mode 100644 index 961428fa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/OperationMetadata.php +++ /dev/null @@ -1,110 +0,0 @@ -clientId = $clientId; - } - public function getClientId() - { - return $this->clientId; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - /** - * @param Google_Service_Genomics_OperationEvent - */ - public function setEvents($events) - { - $this->events = $events; - } - /** - * @return Google_Service_Genomics_OperationEvent - */ - public function getEvents() - { - return $this->events; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } - public function setRequest($request) - { - $this->request = $request; - } - public function getRequest() - { - return $this->request; - } - public function setRuntimeMetadata($runtimeMetadata) - { - $this->runtimeMetadata = $runtimeMetadata; - } - public function getRuntimeMetadata() - { - return $this->runtimeMetadata; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/PullStartedEvent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/PullStartedEvent.php deleted file mode 100644 index 328a1cdf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/PullStartedEvent.php +++ /dev/null @@ -1,30 +0,0 @@ -imageUri = $imageUri; - } - public function getImageUri() - { - return $this->imageUri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/PullStoppedEvent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/PullStoppedEvent.php deleted file mode 100644 index 7f22cefd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/PullStoppedEvent.php +++ /dev/null @@ -1,30 +0,0 @@ -imageUri = $imageUri; - } - public function getImageUri() - { - return $this->imageUri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/Resource/Operations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/Resource/Operations.php deleted file mode 100644 index 93a38279..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/Resource/Operations.php +++ /dev/null @@ -1,113 +0,0 @@ - - * $genomicsService = new Google_Service_Genomics(...); - * $operations = $genomicsService->operations; - * - */ -class Google_Service_Genomics_Resource_Operations extends Google_Service_Resource -{ - /** - * Starts asynchronous cancellation on a long-running operation. The server - * makes a best effort to cancel the operation, but success is not guaranteed. - * Clients may use Operations.GetOperation or Operations.ListOperations to check - * whether the cancellation succeeded or the operation completed despite - * cancellation. Authorization requires the following [Google - * IAM](https://cloud.google.com/iam) permission - * - * * `genomics.operations.cancel` (operations.cancel) - * - * @param string $name The name of the operation resource to be cancelled. - * @param Google_Service_Genomics_CancelOperationRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Genomics_GenomicsEmpty - */ - public function cancel($name, Google_Service_Genomics_CancelOperationRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('cancel', array($params), "Google_Service_Genomics_GenomicsEmpty"); - } - /** - * Gets the latest state of a long-running operation. Clients can use this - * method to poll the operation result at intervals as recommended by the API - * service. Authorization requires the following [Google - * IAM](https://cloud.google.com/iam) permission - * - * * `genomics.operations.get` (operations.get) - * - * @param string $name The name of the operation resource. - * @param array $optParams Optional parameters. - * @return Google_Service_Genomics_Operation - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Genomics_Operation"); - } - /** - * Lists operations that match the specified filter in the request. - * Authorization requires the following [Google - * IAM](https://cloud.google.com/iam) permission - * - * * `genomics.operations.list` (operations.listOperations) - * - * @param string $name The name of the operation's parent resource. - * @param array $optParams Optional parameters. - * - * @opt_param string filter A string for filtering Operations. In v2alpha1, the - * following filter fields are supported - * - * * createTime The time this job was created * events The set of event (names) - * that have occurred while running the pipeline. The operator can be used - * to determine if a particular event has occurred. * error If the pipeline is - * running, this value is NULL. Once the pipeline finishes, the value is the - * standard Google error code. * labels.key or labels."key with space" where key - * is a label key. * done If the pipeline is running, this value is false. Once - * the pipeline finishes, the value is true. - * - * In v1 and v1alpha2, the following filter fields are supported - * - * * projectId Required. Corresponds to OperationMetadata.projectId. * - * createTime The time this job was created, in seconds from the - * [epoch](http://en.wikipedia.org/wiki/Unix_time). Can use `>=` and/or `<=` - * operators. * status Can be `RUNNING`, `SUCCESS`, `FAILURE`, or `CANCELED`. - * Only one status may be specified. * labels.key where key is a label key. - * - * Examples - * - * * `projectId = my-project AND createTime >= 1432140000` * `projectId = my- - * project AND createTime >= 1432140000 AND createTime <= 1432150000 AND status - * = RUNNING` * `projectId = my-project AND labels.color = *` * `projectId = my- - * project AND labels.color = red` - * @opt_param string pageToken The standard list page token. - * @opt_param int pageSize The maximum number of results to return. The maximum - * value is 256. - * @return Google_Service_Genomics_ListOperationsResponse - */ - public function listOperations($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Genomics_ListOperationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/RunPipelineResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/RunPipelineResponse.php deleted file mode 100644 index 4b5ab2ee..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/RunPipelineResponse.php +++ /dev/null @@ -1,20 +0,0 @@ -computeEngine = $computeEngine; - } - /** - * @return Google_Service_Genomics_ComputeEngine - */ - public function getComputeEngine() - { - return $this->computeEngine; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/Status.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/Status.php deleted file mode 100644 index 546f81e1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/Status.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/UnexpectedExitStatusEvent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/UnexpectedExitStatusEvent.php deleted file mode 100644 index 3e5c2544..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/UnexpectedExitStatusEvent.php +++ /dev/null @@ -1,39 +0,0 @@ -actionId = $actionId; - } - public function getActionId() - { - return $this->actionId; - } - public function setExitStatus($exitStatus) - { - $this->exitStatus = $exitStatus; - } - public function getExitStatus() - { - return $this->exitStatus; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/WorkerAssignedEvent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/WorkerAssignedEvent.php deleted file mode 100644 index b32064c4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/WorkerAssignedEvent.php +++ /dev/null @@ -1,48 +0,0 @@ -instance = $instance; - } - public function getInstance() - { - return $this->instance; - } - public function setMachineType($machineType) - { - $this->machineType = $machineType; - } - public function getMachineType() - { - return $this->machineType; - } - public function setZone($zone) - { - $this->zone = $zone; - } - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/WorkerReleasedEvent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/WorkerReleasedEvent.php deleted file mode 100644 index c4f9d412..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Genomics/WorkerReleasedEvent.php +++ /dev/null @@ -1,39 +0,0 @@ -instance = $instance; - } - public function getInstance() - { - return $this->instance; - } - public function setZone($zone) - { - $this->zone = $zone; - } - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail.php deleted file mode 100644 index 0f96d8f2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail.php +++ /dev/null @@ -1,1231 +0,0 @@ - - * Access Gmail mailboxes including sending user email.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Gmail extends Google_Service -{ - /** Read, compose, send, and permanently delete all your email from Gmail. */ - const MAIL_GOOGLE_COM = - "https://mail.google.com/"; - /** Manage drafts and send emails when you interact with the add-on. */ - const GMAIL_ADDONS_CURRENT_ACTION_COMPOSE = - "https://www.googleapis.com/auth/gmail.addons.current.action.compose"; - /** View your email messages when you interact with the add-on. */ - const GMAIL_ADDONS_CURRENT_MESSAGE_ACTION = - "https://www.googleapis.com/auth/gmail.addons.current.message.action"; - /** View your email message metadata when the add-on is running. */ - const GMAIL_ADDONS_CURRENT_MESSAGE_METADATA = - "https://www.googleapis.com/auth/gmail.addons.current.message.metadata"; - /** View your email messages when the add-on is running. */ - const GMAIL_ADDONS_CURRENT_MESSAGE_READONLY = - "https://www.googleapis.com/auth/gmail.addons.current.message.readonly"; - /** Manage drafts and send emails. */ - const GMAIL_COMPOSE = - "https://www.googleapis.com/auth/gmail.compose"; - /** Insert mail into your mailbox. */ - const GMAIL_INSERT = - "https://www.googleapis.com/auth/gmail.insert"; - /** Manage mailbox labels. */ - const GMAIL_LABELS = - "https://www.googleapis.com/auth/gmail.labels"; - /** View your email message metadata such as labels and headers, but not the email body. */ - const GMAIL_METADATA = - "https://www.googleapis.com/auth/gmail.metadata"; - /** View and modify but not delete your email. */ - const GMAIL_MODIFY = - "https://www.googleapis.com/auth/gmail.modify"; - /** View your email messages and settings. */ - const GMAIL_READONLY = - "https://www.googleapis.com/auth/gmail.readonly"; - /** Send email on your behalf. */ - const GMAIL_SEND = - "https://www.googleapis.com/auth/gmail.send"; - /** Manage your basic mail settings. */ - const GMAIL_SETTINGS_BASIC = - "https://www.googleapis.com/auth/gmail.settings.basic"; - /** Manage your sensitive mail settings, including who can manage your mail. */ - const GMAIL_SETTINGS_SHARING = - "https://www.googleapis.com/auth/gmail.settings.sharing"; - - public $users; - public $users_drafts; - public $users_history; - public $users_labels; - public $users_messages; - public $users_messages_attachments; - public $users_settings; - public $users_settings_delegates; - public $users_settings_filters; - public $users_settings_forwardingAddresses; - public $users_settings_sendAs; - public $users_settings_sendAs_smimeInfo; - public $users_threads; - - /** - * Constructs the internal representation of the Gmail service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://www.googleapis.com/'; - $this->servicePath = 'gmail/v1/users/'; - $this->batchPath = 'batch/gmail/v1'; - $this->version = 'v1'; - $this->serviceName = 'gmail'; - - $this->users = new Google_Service_Gmail_Resource_Users( - $this, - $this->serviceName, - 'users', - array( - 'methods' => array( - 'getProfile' => array( - 'path' => '{userId}/profile', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'stop' => array( - 'path' => '{userId}/stop', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'watch' => array( - 'path' => '{userId}/watch', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->users_drafts = new Google_Service_Gmail_Resource_UsersDrafts( - $this, - $this->serviceName, - 'drafts', - array( - 'methods' => array( - 'create' => array( - 'path' => '{userId}/drafts', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => '{userId}/drafts/{id}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{userId}/drafts/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'format' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{userId}/drafts', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'includeSpamTrash' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'q' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'send' => array( - 'path' => '{userId}/drafts/send', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => '{userId}/drafts/{id}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->users_history = new Google_Service_Gmail_Resource_UsersHistory( - $this, - $this->serviceName, - 'history', - array( - 'methods' => array( - 'list' => array( - 'path' => '{userId}/history', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'historyTypes' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'labelId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'startHistoryId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->users_labels = new Google_Service_Gmail_Resource_UsersLabels( - $this, - $this->serviceName, - 'labels', - array( - 'methods' => array( - 'create' => array( - 'path' => '{userId}/labels', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => '{userId}/labels/{id}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{userId}/labels/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{userId}/labels', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => '{userId}/labels/{id}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => '{userId}/labels/{id}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->users_messages = new Google_Service_Gmail_Resource_UsersMessages( - $this, - $this->serviceName, - 'messages', - array( - 'methods' => array( - 'batchDelete' => array( - 'path' => '{userId}/messages/batchDelete', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'batchModify' => array( - 'path' => '{userId}/messages/batchModify', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => '{userId}/messages/{id}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{userId}/messages/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'format' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'metadataHeaders' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ),'import' => array( - 'path' => '{userId}/messages/import', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'deleted' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'internalDateSource' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'neverMarkSpam' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'processForCalendar' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'insert' => array( - 'path' => '{userId}/messages', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'deleted' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'internalDateSource' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{userId}/messages', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'includeSpamTrash' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'labelIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'q' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'modify' => array( - 'path' => '{userId}/messages/{id}/modify', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'send' => array( - 'path' => '{userId}/messages/send', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'trash' => array( - 'path' => '{userId}/messages/{id}/trash', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'untrash' => array( - 'path' => '{userId}/messages/{id}/untrash', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->users_messages_attachments = new Google_Service_Gmail_Resource_UsersMessagesAttachments( - $this, - $this->serviceName, - 'attachments', - array( - 'methods' => array( - 'get' => array( - 'path' => '{userId}/messages/{messageId}/attachments/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'messageId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->users_settings = new Google_Service_Gmail_Resource_UsersSettings( - $this, - $this->serviceName, - 'settings', - array( - 'methods' => array( - 'getAutoForwarding' => array( - 'path' => '{userId}/settings/autoForwarding', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getImap' => array( - 'path' => '{userId}/settings/imap', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getLanguage' => array( - 'path' => '{userId}/settings/language', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getPop' => array( - 'path' => '{userId}/settings/pop', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getVacation' => array( - 'path' => '{userId}/settings/vacation', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'updateAutoForwarding' => array( - 'path' => '{userId}/settings/autoForwarding', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'updateImap' => array( - 'path' => '{userId}/settings/imap', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'updateLanguage' => array( - 'path' => '{userId}/settings/language', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'updatePop' => array( - 'path' => '{userId}/settings/pop', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'updateVacation' => array( - 'path' => '{userId}/settings/vacation', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->users_settings_delegates = new Google_Service_Gmail_Resource_UsersSettingsDelegates( - $this, - $this->serviceName, - 'delegates', - array( - 'methods' => array( - 'create' => array( - 'path' => '{userId}/settings/delegates', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => '{userId}/settings/delegates/{delegateEmail}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'delegateEmail' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{userId}/settings/delegates/{delegateEmail}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'delegateEmail' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{userId}/settings/delegates', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->users_settings_filters = new Google_Service_Gmail_Resource_UsersSettingsFilters( - $this, - $this->serviceName, - 'filters', - array( - 'methods' => array( - 'create' => array( - 'path' => '{userId}/settings/filters', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => '{userId}/settings/filters/{id}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{userId}/settings/filters/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{userId}/settings/filters', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->users_settings_forwardingAddresses = new Google_Service_Gmail_Resource_UsersSettingsForwardingAddresses( - $this, - $this->serviceName, - 'forwardingAddresses', - array( - 'methods' => array( - 'create' => array( - 'path' => '{userId}/settings/forwardingAddresses', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => '{userId}/settings/forwardingAddresses/{forwardingEmail}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'forwardingEmail' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{userId}/settings/forwardingAddresses/{forwardingEmail}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'forwardingEmail' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{userId}/settings/forwardingAddresses', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->users_settings_sendAs = new Google_Service_Gmail_Resource_UsersSettingsSendAs( - $this, - $this->serviceName, - 'sendAs', - array( - 'methods' => array( - 'create' => array( - 'path' => '{userId}/settings/sendAs', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => '{userId}/settings/sendAs/{sendAsEmail}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sendAsEmail' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{userId}/settings/sendAs/{sendAsEmail}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sendAsEmail' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{userId}/settings/sendAs', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => '{userId}/settings/sendAs/{sendAsEmail}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sendAsEmail' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => '{userId}/settings/sendAs/{sendAsEmail}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sendAsEmail' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'verify' => array( - 'path' => '{userId}/settings/sendAs/{sendAsEmail}/verify', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sendAsEmail' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->users_settings_sendAs_smimeInfo = new Google_Service_Gmail_Resource_UsersSettingsSendAsSmimeInfo( - $this, - $this->serviceName, - 'smimeInfo', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{userId}/settings/sendAs/{sendAsEmail}/smimeInfo/{id}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sendAsEmail' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{userId}/settings/sendAs/{sendAsEmail}/smimeInfo/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sendAsEmail' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{userId}/settings/sendAs/{sendAsEmail}/smimeInfo', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sendAsEmail' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{userId}/settings/sendAs/{sendAsEmail}/smimeInfo', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sendAsEmail' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setDefault' => array( - 'path' => '{userId}/settings/sendAs/{sendAsEmail}/smimeInfo/{id}/setDefault', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sendAsEmail' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->users_threads = new Google_Service_Gmail_Resource_UsersThreads( - $this, - $this->serviceName, - 'threads', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{userId}/threads/{id}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{userId}/threads/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'format' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'metadataHeaders' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ),'list' => array( - 'path' => '{userId}/threads', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'includeSpamTrash' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'labelIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'q' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'modify' => array( - 'path' => '{userId}/threads/{id}/modify', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'trash' => array( - 'path' => '{userId}/threads/{id}/trash', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'untrash' => array( - 'path' => '{userId}/threads/{id}/untrash', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/AutoForwarding.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/AutoForwarding.php deleted file mode 100644 index 86afef2e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/AutoForwarding.php +++ /dev/null @@ -1,48 +0,0 @@ -disposition = $disposition; - } - public function getDisposition() - { - return $this->disposition; - } - public function setEmailAddress($emailAddress) - { - $this->emailAddress = $emailAddress; - } - public function getEmailAddress() - { - return $this->emailAddress; - } - public function setEnabled($enabled) - { - $this->enabled = $enabled; - } - public function getEnabled() - { - return $this->enabled; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/BatchDeleteMessagesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/BatchDeleteMessagesRequest.php deleted file mode 100644 index 136acf6f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/BatchDeleteMessagesRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -ids = $ids; - } - public function getIds() - { - return $this->ids; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/BatchModifyMessagesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/BatchModifyMessagesRequest.php deleted file mode 100644 index 911c2219..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/BatchModifyMessagesRequest.php +++ /dev/null @@ -1,49 +0,0 @@ -addLabelIds = $addLabelIds; - } - public function getAddLabelIds() - { - return $this->addLabelIds; - } - public function setIds($ids) - { - $this->ids = $ids; - } - public function getIds() - { - return $this->ids; - } - public function setRemoveLabelIds($removeLabelIds) - { - $this->removeLabelIds = $removeLabelIds; - } - public function getRemoveLabelIds() - { - return $this->removeLabelIds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Delegate.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Delegate.php deleted file mode 100644 index 72d6a4db..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Delegate.php +++ /dev/null @@ -1,39 +0,0 @@ -delegateEmail = $delegateEmail; - } - public function getDelegateEmail() - { - return $this->delegateEmail; - } - public function setVerificationStatus($verificationStatus) - { - $this->verificationStatus = $verificationStatus; - } - public function getVerificationStatus() - { - return $this->verificationStatus; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Draft.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Draft.php deleted file mode 100644 index b2f9cc67..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Draft.php +++ /dev/null @@ -1,46 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Gmail_Message - */ - public function setMessage(Google_Service_Gmail_Message $message) - { - $this->message = $message; - } - /** - * @return Google_Service_Gmail_Message - */ - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Filter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Filter.php deleted file mode 100644 index ee40b182..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Filter.php +++ /dev/null @@ -1,62 +0,0 @@ -action = $action; - } - /** - * @return Google_Service_Gmail_FilterAction - */ - public function getAction() - { - return $this->action; - } - /** - * @param Google_Service_Gmail_FilterCriteria - */ - public function setCriteria(Google_Service_Gmail_FilterCriteria $criteria) - { - $this->criteria = $criteria; - } - /** - * @return Google_Service_Gmail_FilterCriteria - */ - public function getCriteria() - { - return $this->criteria; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/FilterAction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/FilterAction.php deleted file mode 100644 index e11c467a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/FilterAction.php +++ /dev/null @@ -1,49 +0,0 @@ -addLabelIds = $addLabelIds; - } - public function getAddLabelIds() - { - return $this->addLabelIds; - } - public function setForward($forward) - { - $this->forward = $forward; - } - public function getForward() - { - return $this->forward; - } - public function setRemoveLabelIds($removeLabelIds) - { - $this->removeLabelIds = $removeLabelIds; - } - public function getRemoveLabelIds() - { - return $this->removeLabelIds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/FilterCriteria.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/FilterCriteria.php deleted file mode 100644 index 1b26c4d1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/FilterCriteria.php +++ /dev/null @@ -1,102 +0,0 @@ -excludeChats = $excludeChats; - } - public function getExcludeChats() - { - return $this->excludeChats; - } - public function setFrom($from) - { - $this->from = $from; - } - public function getFrom() - { - return $this->from; - } - public function setHasAttachment($hasAttachment) - { - $this->hasAttachment = $hasAttachment; - } - public function getHasAttachment() - { - return $this->hasAttachment; - } - public function setNegatedQuery($negatedQuery) - { - $this->negatedQuery = $negatedQuery; - } - public function getNegatedQuery() - { - return $this->negatedQuery; - } - public function setQuery($query) - { - $this->query = $query; - } - public function getQuery() - { - return $this->query; - } - public function setSize($size) - { - $this->size = $size; - } - public function getSize() - { - return $this->size; - } - public function setSizeComparison($sizeComparison) - { - $this->sizeComparison = $sizeComparison; - } - public function getSizeComparison() - { - return $this->sizeComparison; - } - public function setSubject($subject) - { - $this->subject = $subject; - } - public function getSubject() - { - return $this->subject; - } - public function setTo($to) - { - $this->to = $to; - } - public function getTo() - { - return $this->to; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/ForwardingAddress.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/ForwardingAddress.php deleted file mode 100644 index f2ea60e4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/ForwardingAddress.php +++ /dev/null @@ -1,39 +0,0 @@ -forwardingEmail = $forwardingEmail; - } - public function getForwardingEmail() - { - return $this->forwardingEmail; - } - public function setVerificationStatus($verificationStatus) - { - $this->verificationStatus = $verificationStatus; - } - public function getVerificationStatus() - { - return $this->verificationStatus; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/History.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/History.php deleted file mode 100644 index 35b65fa0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/History.php +++ /dev/null @@ -1,111 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Gmail_HistoryLabelAdded - */ - public function setLabelsAdded($labelsAdded) - { - $this->labelsAdded = $labelsAdded; - } - /** - * @return Google_Service_Gmail_HistoryLabelAdded - */ - public function getLabelsAdded() - { - return $this->labelsAdded; - } - /** - * @param Google_Service_Gmail_HistoryLabelRemoved - */ - public function setLabelsRemoved($labelsRemoved) - { - $this->labelsRemoved = $labelsRemoved; - } - /** - * @return Google_Service_Gmail_HistoryLabelRemoved - */ - public function getLabelsRemoved() - { - return $this->labelsRemoved; - } - /** - * @param Google_Service_Gmail_Message - */ - public function setMessages($messages) - { - $this->messages = $messages; - } - /** - * @return Google_Service_Gmail_Message - */ - public function getMessages() - { - return $this->messages; - } - /** - * @param Google_Service_Gmail_HistoryMessageAdded - */ - public function setMessagesAdded($messagesAdded) - { - $this->messagesAdded = $messagesAdded; - } - /** - * @return Google_Service_Gmail_HistoryMessageAdded - */ - public function getMessagesAdded() - { - return $this->messagesAdded; - } - /** - * @param Google_Service_Gmail_HistoryMessageDeleted - */ - public function setMessagesDeleted($messagesDeleted) - { - $this->messagesDeleted = $messagesDeleted; - } - /** - * @return Google_Service_Gmail_HistoryMessageDeleted - */ - public function getMessagesDeleted() - { - return $this->messagesDeleted; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/HistoryLabelAdded.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/HistoryLabelAdded.php deleted file mode 100644 index 82923773..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/HistoryLabelAdded.php +++ /dev/null @@ -1,47 +0,0 @@ -labelIds = $labelIds; - } - public function getLabelIds() - { - return $this->labelIds; - } - /** - * @param Google_Service_Gmail_Message - */ - public function setMessage(Google_Service_Gmail_Message $message) - { - $this->message = $message; - } - /** - * @return Google_Service_Gmail_Message - */ - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/HistoryLabelRemoved.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/HistoryLabelRemoved.php deleted file mode 100644 index 873f6daf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/HistoryLabelRemoved.php +++ /dev/null @@ -1,47 +0,0 @@ -labelIds = $labelIds; - } - public function getLabelIds() - { - return $this->labelIds; - } - /** - * @param Google_Service_Gmail_Message - */ - public function setMessage(Google_Service_Gmail_Message $message) - { - $this->message = $message; - } - /** - * @return Google_Service_Gmail_Message - */ - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/HistoryMessageAdded.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/HistoryMessageAdded.php deleted file mode 100644 index 5f863570..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/HistoryMessageAdded.php +++ /dev/null @@ -1,37 +0,0 @@ -message = $message; - } - /** - * @return Google_Service_Gmail_Message - */ - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/HistoryMessageDeleted.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/HistoryMessageDeleted.php deleted file mode 100644 index 0afa7975..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/HistoryMessageDeleted.php +++ /dev/null @@ -1,37 +0,0 @@ -message = $message; - } - /** - * @return Google_Service_Gmail_Message - */ - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/ImapSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/ImapSettings.php deleted file mode 100644 index df939b72..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/ImapSettings.php +++ /dev/null @@ -1,57 +0,0 @@ -autoExpunge = $autoExpunge; - } - public function getAutoExpunge() - { - return $this->autoExpunge; - } - public function setEnabled($enabled) - { - $this->enabled = $enabled; - } - public function getEnabled() - { - return $this->enabled; - } - public function setExpungeBehavior($expungeBehavior) - { - $this->expungeBehavior = $expungeBehavior; - } - public function getExpungeBehavior() - { - return $this->expungeBehavior; - } - public function setMaxFolderSize($maxFolderSize) - { - $this->maxFolderSize = $maxFolderSize; - } - public function getMaxFolderSize() - { - return $this->maxFolderSize; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Label.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Label.php deleted file mode 100644 index f428a932..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Label.php +++ /dev/null @@ -1,118 +0,0 @@ -color = $color; - } - /** - * @return Google_Service_Gmail_LabelColor - */ - public function getColor() - { - return $this->color; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setLabelListVisibility($labelListVisibility) - { - $this->labelListVisibility = $labelListVisibility; - } - public function getLabelListVisibility() - { - return $this->labelListVisibility; - } - public function setMessageListVisibility($messageListVisibility) - { - $this->messageListVisibility = $messageListVisibility; - } - public function getMessageListVisibility() - { - return $this->messageListVisibility; - } - public function setMessagesTotal($messagesTotal) - { - $this->messagesTotal = $messagesTotal; - } - public function getMessagesTotal() - { - return $this->messagesTotal; - } - public function setMessagesUnread($messagesUnread) - { - $this->messagesUnread = $messagesUnread; - } - public function getMessagesUnread() - { - return $this->messagesUnread; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setThreadsTotal($threadsTotal) - { - $this->threadsTotal = $threadsTotal; - } - public function getThreadsTotal() - { - return $this->threadsTotal; - } - public function setThreadsUnread($threadsUnread) - { - $this->threadsUnread = $threadsUnread; - } - public function getThreadsUnread() - { - return $this->threadsUnread; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/LabelColor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/LabelColor.php deleted file mode 100644 index 10c31874..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/LabelColor.php +++ /dev/null @@ -1,39 +0,0 @@ -backgroundColor = $backgroundColor; - } - public function getBackgroundColor() - { - return $this->backgroundColor; - } - public function setTextColor($textColor) - { - $this->textColor = $textColor; - } - public function getTextColor() - { - return $this->textColor; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/LanguageSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/LanguageSettings.php deleted file mode 100644 index 077bd854..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/LanguageSettings.php +++ /dev/null @@ -1,30 +0,0 @@ -displayLanguage = $displayLanguage; - } - public function getDisplayLanguage() - { - return $this->displayLanguage; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/ListDelegatesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/ListDelegatesResponse.php deleted file mode 100644 index b0f19c10..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/ListDelegatesResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -delegates = $delegates; - } - /** - * @return Google_Service_Gmail_Delegate - */ - public function getDelegates() - { - return $this->delegates; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/ListDraftsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/ListDraftsResponse.php deleted file mode 100644 index dbfce468..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/ListDraftsResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -drafts = $drafts; - } - /** - * @return Google_Service_Gmail_Draft - */ - public function getDrafts() - { - return $this->drafts; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setResultSizeEstimate($resultSizeEstimate) - { - $this->resultSizeEstimate = $resultSizeEstimate; - } - public function getResultSizeEstimate() - { - return $this->resultSizeEstimate; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/ListFiltersResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/ListFiltersResponse.php deleted file mode 100644 index 589d7824..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/ListFiltersResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -filter = $filter; - } - /** - * @return Google_Service_Gmail_Filter - */ - public function getFilter() - { - return $this->filter; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/ListForwardingAddressesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/ListForwardingAddressesResponse.php deleted file mode 100644 index 477f861e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/ListForwardingAddressesResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -forwardingAddresses = $forwardingAddresses; - } - /** - * @return Google_Service_Gmail_ForwardingAddress - */ - public function getForwardingAddresses() - { - return $this->forwardingAddresses; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/ListHistoryResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/ListHistoryResponse.php deleted file mode 100644 index a0d7d679..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/ListHistoryResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -history = $history; - } - /** - * @return Google_Service_Gmail_History - */ - public function getHistory() - { - return $this->history; - } - public function setHistoryId($historyId) - { - $this->historyId = $historyId; - } - public function getHistoryId() - { - return $this->historyId; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/ListLabelsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/ListLabelsResponse.php deleted file mode 100644 index 9075e9c5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/ListLabelsResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -labels = $labels; - } - /** - * @return Google_Service_Gmail_Label - */ - public function getLabels() - { - return $this->labels; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/ListMessagesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/ListMessagesResponse.php deleted file mode 100644 index e246fe18..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/ListMessagesResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -messages = $messages; - } - /** - * @return Google_Service_Gmail_Message - */ - public function getMessages() - { - return $this->messages; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setResultSizeEstimate($resultSizeEstimate) - { - $this->resultSizeEstimate = $resultSizeEstimate; - } - public function getResultSizeEstimate() - { - return $this->resultSizeEstimate; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/ListSendAsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/ListSendAsResponse.php deleted file mode 100644 index 6048c421..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/ListSendAsResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -sendAs = $sendAs; - } - /** - * @return Google_Service_Gmail_SendAs - */ - public function getSendAs() - { - return $this->sendAs; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/ListSmimeInfoResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/ListSmimeInfoResponse.php deleted file mode 100644 index 277907a1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/ListSmimeInfoResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -smimeInfo = $smimeInfo; - } - /** - * @return Google_Service_Gmail_SmimeInfo - */ - public function getSmimeInfo() - { - return $this->smimeInfo; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/ListThreadsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/ListThreadsResponse.php deleted file mode 100644 index 347a39c4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/ListThreadsResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setResultSizeEstimate($resultSizeEstimate) - { - $this->resultSizeEstimate = $resultSizeEstimate; - } - public function getResultSizeEstimate() - { - return $this->resultSizeEstimate; - } - /** - * @param Google_Service_Gmail_Thread - */ - public function setThreads($threads) - { - $this->threads = $threads; - } - /** - * @return Google_Service_Gmail_Thread - */ - public function getThreads() - { - return $this->threads; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Message.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Message.php deleted file mode 100644 index b5d0bc8c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Message.php +++ /dev/null @@ -1,110 +0,0 @@ -historyId = $historyId; - } - public function getHistoryId() - { - return $this->historyId; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setInternalDate($internalDate) - { - $this->internalDate = $internalDate; - } - public function getInternalDate() - { - return $this->internalDate; - } - public function setLabelIds($labelIds) - { - $this->labelIds = $labelIds; - } - public function getLabelIds() - { - return $this->labelIds; - } - /** - * @param Google_Service_Gmail_MessagePart - */ - public function setPayload(Google_Service_Gmail_MessagePart $payload) - { - $this->payload = $payload; - } - /** - * @return Google_Service_Gmail_MessagePart - */ - public function getPayload() - { - return $this->payload; - } - public function setRaw($raw) - { - $this->raw = $raw; - } - public function getRaw() - { - return $this->raw; - } - public function setSizeEstimate($sizeEstimate) - { - $this->sizeEstimate = $sizeEstimate; - } - public function getSizeEstimate() - { - return $this->sizeEstimate; - } - public function setSnippet($snippet) - { - $this->snippet = $snippet; - } - public function getSnippet() - { - return $this->snippet; - } - public function setThreadId($threadId) - { - $this->threadId = $threadId; - } - public function getThreadId() - { - return $this->threadId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/MessagePart.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/MessagePart.php deleted file mode 100644 index e8270e1d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/MessagePart.php +++ /dev/null @@ -1,97 +0,0 @@ -body = $body; - } - /** - * @return Google_Service_Gmail_MessagePartBody - */ - public function getBody() - { - return $this->body; - } - public function setFilename($filename) - { - $this->filename = $filename; - } - public function getFilename() - { - return $this->filename; - } - /** - * @param Google_Service_Gmail_MessagePartHeader - */ - public function setHeaders($headers) - { - $this->headers = $headers; - } - /** - * @return Google_Service_Gmail_MessagePartHeader - */ - public function getHeaders() - { - return $this->headers; - } - public function setMimeType($mimeType) - { - $this->mimeType = $mimeType; - } - public function getMimeType() - { - return $this->mimeType; - } - public function setPartId($partId) - { - $this->partId = $partId; - } - public function getPartId() - { - return $this->partId; - } - /** - * @param Google_Service_Gmail_MessagePart - */ - public function setParts($parts) - { - $this->parts = $parts; - } - /** - * @return Google_Service_Gmail_MessagePart - */ - public function getParts() - { - return $this->parts; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/MessagePartBody.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/MessagePartBody.php deleted file mode 100644 index 89323eff..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/MessagePartBody.php +++ /dev/null @@ -1,48 +0,0 @@ -attachmentId = $attachmentId; - } - public function getAttachmentId() - { - return $this->attachmentId; - } - public function setData($data) - { - $this->data = $data; - } - public function getData() - { - return $this->data; - } - public function setSize($size) - { - $this->size = $size; - } - public function getSize() - { - return $this->size; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/MessagePartHeader.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/MessagePartHeader.php deleted file mode 100644 index 8789faf5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/MessagePartHeader.php +++ /dev/null @@ -1,39 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/ModifyMessageRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/ModifyMessageRequest.php deleted file mode 100644 index 7f37a47e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/ModifyMessageRequest.php +++ /dev/null @@ -1,40 +0,0 @@ -addLabelIds = $addLabelIds; - } - public function getAddLabelIds() - { - return $this->addLabelIds; - } - public function setRemoveLabelIds($removeLabelIds) - { - $this->removeLabelIds = $removeLabelIds; - } - public function getRemoveLabelIds() - { - return $this->removeLabelIds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/ModifyThreadRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/ModifyThreadRequest.php deleted file mode 100644 index a8fec013..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/ModifyThreadRequest.php +++ /dev/null @@ -1,40 +0,0 @@ -addLabelIds = $addLabelIds; - } - public function getAddLabelIds() - { - return $this->addLabelIds; - } - public function setRemoveLabelIds($removeLabelIds) - { - $this->removeLabelIds = $removeLabelIds; - } - public function getRemoveLabelIds() - { - return $this->removeLabelIds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/PopSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/PopSettings.php deleted file mode 100644 index 6069dc8f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/PopSettings.php +++ /dev/null @@ -1,39 +0,0 @@ -accessWindow = $accessWindow; - } - public function getAccessWindow() - { - return $this->accessWindow; - } - public function setDisposition($disposition) - { - $this->disposition = $disposition; - } - public function getDisposition() - { - return $this->disposition; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Profile.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Profile.php deleted file mode 100644 index 7dda18c0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Profile.php +++ /dev/null @@ -1,57 +0,0 @@ -emailAddress = $emailAddress; - } - public function getEmailAddress() - { - return $this->emailAddress; - } - public function setHistoryId($historyId) - { - $this->historyId = $historyId; - } - public function getHistoryId() - { - return $this->historyId; - } - public function setMessagesTotal($messagesTotal) - { - $this->messagesTotal = $messagesTotal; - } - public function getMessagesTotal() - { - return $this->messagesTotal; - } - public function setThreadsTotal($threadsTotal) - { - $this->threadsTotal = $threadsTotal; - } - public function getThreadsTotal() - { - return $this->threadsTotal; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Resource/Users.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Resource/Users.php deleted file mode 100644 index 947fc56d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Resource/Users.php +++ /dev/null @@ -1,71 +0,0 @@ - - * $gmailService = new Google_Service_Gmail(...); - * $users = $gmailService->users; - * - */ -class Google_Service_Gmail_Resource_Users extends Google_Service_Resource -{ - /** - * Gets the current user's Gmail profile. (users.getProfile) - * - * @param string $userId The user's email address. The special value me can be - * used to indicate the authenticated user. - * @param array $optParams Optional parameters. - * @return Google_Service_Gmail_Profile - */ - public function getProfile($userId, $optParams = array()) - { - $params = array('userId' => $userId); - $params = array_merge($params, $optParams); - return $this->call('getProfile', array($params), "Google_Service_Gmail_Profile"); - } - /** - * Stop receiving push notifications for the given user mailbox. (users.stop) - * - * @param string $userId The user's email address. The special value me can be - * used to indicate the authenticated user. - * @param array $optParams Optional parameters. - */ - public function stop($userId, $optParams = array()) - { - $params = array('userId' => $userId); - $params = array_merge($params, $optParams); - return $this->call('stop', array($params)); - } - /** - * Set up or update a push notification watch on the given user mailbox. - * (users.watch) - * - * @param string $userId The user's email address. The special value me can be - * used to indicate the authenticated user. - * @param Google_Service_Gmail_WatchRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Gmail_WatchResponse - */ - public function watch($userId, Google_Service_Gmail_WatchRequest $postBody, $optParams = array()) - { - $params = array('userId' => $userId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('watch', array($params), "Google_Service_Gmail_WatchResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Resource/UsersDrafts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Resource/UsersDrafts.php deleted file mode 100644 index d0ec543f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Resource/UsersDrafts.php +++ /dev/null @@ -1,130 +0,0 @@ - - * $gmailService = new Google_Service_Gmail(...); - * $drafts = $gmailService->drafts; - * - */ -class Google_Service_Gmail_Resource_UsersDrafts extends Google_Service_Resource -{ - /** - * Creates a new draft with the DRAFT label. (drafts.create) - * - * @param string $userId The user's email address. The special value me can be - * used to indicate the authenticated user. - * @param Google_Service_Gmail_Draft $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Gmail_Draft - */ - public function create($userId, Google_Service_Gmail_Draft $postBody, $optParams = array()) - { - $params = array('userId' => $userId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Gmail_Draft"); - } - /** - * Immediately and permanently deletes the specified draft. Does not simply - * trash it. (drafts.delete) - * - * @param string $userId The user's email address. The special value me can be - * used to indicate the authenticated user. - * @param string $id The ID of the draft to delete. - * @param array $optParams Optional parameters. - */ - public function delete($userId, $id, $optParams = array()) - { - $params = array('userId' => $userId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Gets the specified draft. (drafts.get) - * - * @param string $userId The user's email address. The special value me can be - * used to indicate the authenticated user. - * @param string $id The ID of the draft to retrieve. - * @param array $optParams Optional parameters. - * - * @opt_param string format The format to return the draft in. - * @return Google_Service_Gmail_Draft - */ - public function get($userId, $id, $optParams = array()) - { - $params = array('userId' => $userId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Gmail_Draft"); - } - /** - * Lists the drafts in the user's mailbox. (drafts.listUsersDrafts) - * - * @param string $userId The user's email address. The special value me can be - * used to indicate the authenticated user. - * @param array $optParams Optional parameters. - * - * @opt_param bool includeSpamTrash Include drafts from SPAM and TRASH in the - * results. - * @opt_param string maxResults Maximum number of drafts to return. - * @opt_param string pageToken Page token to retrieve a specific page of results - * in the list. - * @opt_param string q Only return draft messages matching the specified query. - * Supports the same query format as the Gmail search box. For example, - * "from:someuser@example.com rfc822msgid: is:unread". - * @return Google_Service_Gmail_ListDraftsResponse - */ - public function listUsersDrafts($userId, $optParams = array()) - { - $params = array('userId' => $userId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Gmail_ListDraftsResponse"); - } - /** - * Sends the specified, existing draft to the recipients in the To, Cc, and Bcc - * headers. (drafts.send) - * - * @param string $userId The user's email address. The special value me can be - * used to indicate the authenticated user. - * @param Google_Service_Gmail_Draft $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Gmail_Message - */ - public function send($userId, Google_Service_Gmail_Draft $postBody, $optParams = array()) - { - $params = array('userId' => $userId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('send', array($params), "Google_Service_Gmail_Message"); - } - /** - * Replaces a draft's content. (drafts.update) - * - * @param string $userId The user's email address. The special value me can be - * used to indicate the authenticated user. - * @param string $id The ID of the draft to update. - * @param Google_Service_Gmail_Draft $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Gmail_Draft - */ - public function update($userId, $id, Google_Service_Gmail_Draft $postBody, $optParams = array()) - { - $params = array('userId' => $userId, 'id' => $id, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Gmail_Draft"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Resource/UsersHistory.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Resource/UsersHistory.php deleted file mode 100644 index 128bd17d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Resource/UsersHistory.php +++ /dev/null @@ -1,61 +0,0 @@ - - * $gmailService = new Google_Service_Gmail(...); - * $history = $gmailService->history; - * - */ -class Google_Service_Gmail_Resource_UsersHistory extends Google_Service_Resource -{ - /** - * Lists the history of all changes to the given mailbox. History results are - * returned in chronological order (increasing historyId). - * (history.listUsersHistory) - * - * @param string $userId The user's email address. The special value me can be - * used to indicate the authenticated user. - * @param array $optParams Optional parameters. - * - * @opt_param string historyTypes History types to be returned by the function - * @opt_param string labelId Only return messages with a label matching the ID. - * @opt_param string maxResults The maximum number of history records to return. - * @opt_param string pageToken Page token to retrieve a specific page of results - * in the list. - * @opt_param string startHistoryId Required. Returns history records after the - * specified startHistoryId. The supplied startHistoryId should be obtained from - * the historyId of a message, thread, or previous list response. History IDs - * increase chronologically but are not contiguous with random gaps in between - * valid IDs. Supplying an invalid or out of date startHistoryId typically - * returns an HTTP 404 error code. A historyId is typically valid for at least a - * week, but in some rare circumstances may be valid for only a few hours. If - * you receive an HTTP 404 error response, your application should perform a - * full sync. If you receive no nextPageToken in the response, there are no - * updates to retrieve and you can store the returned historyId for a future - * request. - * @return Google_Service_Gmail_ListHistoryResponse - */ - public function listUsersHistory($userId, $optParams = array()) - { - $params = array('userId' => $userId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Gmail_ListHistoryResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Resource/UsersLabels.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Resource/UsersLabels.php deleted file mode 100644 index 88b33ce7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Resource/UsersLabels.php +++ /dev/null @@ -1,120 +0,0 @@ - - * $gmailService = new Google_Service_Gmail(...); - * $labels = $gmailService->labels; - * - */ -class Google_Service_Gmail_Resource_UsersLabels extends Google_Service_Resource -{ - /** - * Creates a new label. (labels.create) - * - * @param string $userId The user's email address. The special value me can be - * used to indicate the authenticated user. - * @param Google_Service_Gmail_Label $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Gmail_Label - */ - public function create($userId, Google_Service_Gmail_Label $postBody, $optParams = array()) - { - $params = array('userId' => $userId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Gmail_Label"); - } - /** - * Immediately and permanently deletes the specified label and removes it from - * any messages and threads that it is applied to. (labels.delete) - * - * @param string $userId The user's email address. The special value me can be - * used to indicate the authenticated user. - * @param string $id The ID of the label to delete. - * @param array $optParams Optional parameters. - */ - public function delete($userId, $id, $optParams = array()) - { - $params = array('userId' => $userId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Gets the specified label. (labels.get) - * - * @param string $userId The user's email address. The special value me can be - * used to indicate the authenticated user. - * @param string $id The ID of the label to retrieve. - * @param array $optParams Optional parameters. - * @return Google_Service_Gmail_Label - */ - public function get($userId, $id, $optParams = array()) - { - $params = array('userId' => $userId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Gmail_Label"); - } - /** - * Lists all labels in the user's mailbox. (labels.listUsersLabels) - * - * @param string $userId The user's email address. The special value me can be - * used to indicate the authenticated user. - * @param array $optParams Optional parameters. - * @return Google_Service_Gmail_ListLabelsResponse - */ - public function listUsersLabels($userId, $optParams = array()) - { - $params = array('userId' => $userId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Gmail_ListLabelsResponse"); - } - /** - * Updates the specified label. This method supports patch semantics. - * (labels.patch) - * - * @param string $userId The user's email address. The special value me can be - * used to indicate the authenticated user. - * @param string $id The ID of the label to update. - * @param Google_Service_Gmail_Label $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Gmail_Label - */ - public function patch($userId, $id, Google_Service_Gmail_Label $postBody, $optParams = array()) - { - $params = array('userId' => $userId, 'id' => $id, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Gmail_Label"); - } - /** - * Updates the specified label. (labels.update) - * - * @param string $userId The user's email address. The special value me can be - * used to indicate the authenticated user. - * @param string $id The ID of the label to update. - * @param Google_Service_Gmail_Label $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Gmail_Label - */ - public function update($userId, $id, Google_Service_Gmail_Label $postBody, $optParams = array()) - { - $params = array('userId' => $userId, 'id' => $id, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Gmail_Label"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Resource/UsersMessages.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Resource/UsersMessages.php deleted file mode 100644 index 67c737b9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Resource/UsersMessages.php +++ /dev/null @@ -1,229 +0,0 @@ - - * $gmailService = new Google_Service_Gmail(...); - * $messages = $gmailService->messages; - * - */ -class Google_Service_Gmail_Resource_UsersMessages extends Google_Service_Resource -{ - /** - * Deletes many messages by message ID. Provides no guarantees that messages - * were not already deleted or even existed at all. (messages.batchDelete) - * - * @param string $userId The user's email address. The special value me can be - * used to indicate the authenticated user. - * @param Google_Service_Gmail_BatchDeleteMessagesRequest $postBody - * @param array $optParams Optional parameters. - */ - public function batchDelete($userId, Google_Service_Gmail_BatchDeleteMessagesRequest $postBody, $optParams = array()) - { - $params = array('userId' => $userId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('batchDelete', array($params)); - } - /** - * Modifies the labels on the specified messages. (messages.batchModify) - * - * @param string $userId The user's email address. The special value me can be - * used to indicate the authenticated user. - * @param Google_Service_Gmail_BatchModifyMessagesRequest $postBody - * @param array $optParams Optional parameters. - */ - public function batchModify($userId, Google_Service_Gmail_BatchModifyMessagesRequest $postBody, $optParams = array()) - { - $params = array('userId' => $userId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('batchModify', array($params)); - } - /** - * Immediately and permanently deletes the specified message. This operation - * cannot be undone. Prefer messages.trash instead. (messages.delete) - * - * @param string $userId The user's email address. The special value me can be - * used to indicate the authenticated user. - * @param string $id The ID of the message to delete. - * @param array $optParams Optional parameters. - */ - public function delete($userId, $id, $optParams = array()) - { - $params = array('userId' => $userId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Gets the specified message. (messages.get) - * - * @param string $userId The user's email address. The special value me can be - * used to indicate the authenticated user. - * @param string $id The ID of the message to retrieve. - * @param array $optParams Optional parameters. - * - * @opt_param string format The format to return the message in. - * @opt_param string metadataHeaders When given and format is METADATA, only - * include headers specified. - * @return Google_Service_Gmail_Message - */ - public function get($userId, $id, $optParams = array()) - { - $params = array('userId' => $userId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Gmail_Message"); - } - /** - * Imports a message into only this user's mailbox, with standard email delivery - * scanning and classification similar to receiving via SMTP. Does not send a - * message. (messages.import) - * - * @param string $userId The user's email address. The special value me can be - * used to indicate the authenticated user. - * @param Google_Service_Gmail_Message $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool deleted Mark the email as permanently deleted (not TRASH) and - * only visible in Google Vault to a Vault administrator. Only used for G Suite - * accounts. - * @opt_param string internalDateSource Source for Gmail's internal date of the - * message. - * @opt_param bool neverMarkSpam Ignore the Gmail spam classifier decision and - * never mark this email as SPAM in the mailbox. - * @opt_param bool processForCalendar Process calendar invites in the email and - * add any extracted meetings to the Google Calendar for this user. - * @return Google_Service_Gmail_Message - */ - public function import($userId, Google_Service_Gmail_Message $postBody, $optParams = array()) - { - $params = array('userId' => $userId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('import', array($params), "Google_Service_Gmail_Message"); - } - /** - * Directly inserts a message into only this user's mailbox similar to IMAP - * APPEND, bypassing most scanning and classification. Does not send a message. - * (messages.insert) - * - * @param string $userId The user's email address. The special value me can be - * used to indicate the authenticated user. - * @param Google_Service_Gmail_Message $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool deleted Mark the email as permanently deleted (not TRASH) and - * only visible in Google Vault to a Vault administrator. Only used for G Suite - * accounts. - * @opt_param string internalDateSource Source for Gmail's internal date of the - * message. - * @return Google_Service_Gmail_Message - */ - public function insert($userId, Google_Service_Gmail_Message $postBody, $optParams = array()) - { - $params = array('userId' => $userId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Gmail_Message"); - } - /** - * Lists the messages in the user's mailbox. (messages.listUsersMessages) - * - * @param string $userId The user's email address. The special value me can be - * used to indicate the authenticated user. - * @param array $optParams Optional parameters. - * - * @opt_param bool includeSpamTrash Include messages from SPAM and TRASH in the - * results. - * @opt_param string labelIds Only return messages with labels that match all of - * the specified label IDs. - * @opt_param string maxResults Maximum number of messages to return. - * @opt_param string pageToken Page token to retrieve a specific page of results - * in the list. - * @opt_param string q Only return messages matching the specified query. - * Supports the same query format as the Gmail search box. For example, - * "from:someuser@example.com rfc822msgid: is:unread". Parameter cannot be used - * when accessing the api using the gmail.metadata scope. - * @return Google_Service_Gmail_ListMessagesResponse - */ - public function listUsersMessages($userId, $optParams = array()) - { - $params = array('userId' => $userId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Gmail_ListMessagesResponse"); - } - /** - * Modifies the labels on the specified message. (messages.modify) - * - * @param string $userId The user's email address. The special value me can be - * used to indicate the authenticated user. - * @param string $id The ID of the message to modify. - * @param Google_Service_Gmail_ModifyMessageRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Gmail_Message - */ - public function modify($userId, $id, Google_Service_Gmail_ModifyMessageRequest $postBody, $optParams = array()) - { - $params = array('userId' => $userId, 'id' => $id, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('modify', array($params), "Google_Service_Gmail_Message"); - } - /** - * Sends the specified message to the recipients in the To, Cc, and Bcc headers. - * (messages.send) - * - * @param string $userId The user's email address. The special value me can be - * used to indicate the authenticated user. - * @param Google_Service_Gmail_Message $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Gmail_Message - */ - public function send($userId, Google_Service_Gmail_Message $postBody, $optParams = array()) - { - $params = array('userId' => $userId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('send', array($params), "Google_Service_Gmail_Message"); - } - /** - * Moves the specified message to the trash. (messages.trash) - * - * @param string $userId The user's email address. The special value me can be - * used to indicate the authenticated user. - * @param string $id The ID of the message to Trash. - * @param array $optParams Optional parameters. - * @return Google_Service_Gmail_Message - */ - public function trash($userId, $id, $optParams = array()) - { - $params = array('userId' => $userId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('trash', array($params), "Google_Service_Gmail_Message"); - } - /** - * Removes the specified message from the trash. (messages.untrash) - * - * @param string $userId The user's email address. The special value me can be - * used to indicate the authenticated user. - * @param string $id The ID of the message to remove from Trash. - * @param array $optParams Optional parameters. - * @return Google_Service_Gmail_Message - */ - public function untrash($userId, $id, $optParams = array()) - { - $params = array('userId' => $userId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('untrash', array($params), "Google_Service_Gmail_Message"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Resource/UsersMessagesAttachments.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Resource/UsersMessagesAttachments.php deleted file mode 100644 index 6c3a5e48..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Resource/UsersMessagesAttachments.php +++ /dev/null @@ -1,44 +0,0 @@ - - * $gmailService = new Google_Service_Gmail(...); - * $attachments = $gmailService->attachments; - * - */ -class Google_Service_Gmail_Resource_UsersMessagesAttachments extends Google_Service_Resource -{ - /** - * Gets the specified message attachment. (attachments.get) - * - * @param string $userId The user's email address. The special value me can be - * used to indicate the authenticated user. - * @param string $messageId The ID of the message containing the attachment. - * @param string $id The ID of the attachment. - * @param array $optParams Optional parameters. - * @return Google_Service_Gmail_MessagePartBody - */ - public function get($userId, $messageId, $id, $optParams = array()) - { - $params = array('userId' => $userId, 'messageId' => $messageId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Gmail_MessagePartBody"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Resource/UsersSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Resource/UsersSettings.php deleted file mode 100644 index ccf5d9bc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Resource/UsersSettings.php +++ /dev/null @@ -1,184 +0,0 @@ - - * $gmailService = new Google_Service_Gmail(...); - * $settings = $gmailService->settings; - * - */ -class Google_Service_Gmail_Resource_UsersSettings extends Google_Service_Resource -{ - /** - * Gets the auto-forwarding setting for the specified account. - * (settings.getAutoForwarding) - * - * @param string $userId User's email address. The special value "me" can be - * used to indicate the authenticated user. - * @param array $optParams Optional parameters. - * @return Google_Service_Gmail_AutoForwarding - */ - public function getAutoForwarding($userId, $optParams = array()) - { - $params = array('userId' => $userId); - $params = array_merge($params, $optParams); - return $this->call('getAutoForwarding', array($params), "Google_Service_Gmail_AutoForwarding"); - } - /** - * Gets IMAP settings. (settings.getImap) - * - * @param string $userId User's email address. The special value "me" can be - * used to indicate the authenticated user. - * @param array $optParams Optional parameters. - * @return Google_Service_Gmail_ImapSettings - */ - public function getImap($userId, $optParams = array()) - { - $params = array('userId' => $userId); - $params = array_merge($params, $optParams); - return $this->call('getImap', array($params), "Google_Service_Gmail_ImapSettings"); - } - /** - * Gets language settings. (settings.getLanguage) - * - * @param string $userId User's email address. The special value "me" can be - * used to indicate the authenticated user. - * @param array $optParams Optional parameters. - * @return Google_Service_Gmail_LanguageSettings - */ - public function getLanguage($userId, $optParams = array()) - { - $params = array('userId' => $userId); - $params = array_merge($params, $optParams); - return $this->call('getLanguage', array($params), "Google_Service_Gmail_LanguageSettings"); - } - /** - * Gets POP settings. (settings.getPop) - * - * @param string $userId User's email address. The special value "me" can be - * used to indicate the authenticated user. - * @param array $optParams Optional parameters. - * @return Google_Service_Gmail_PopSettings - */ - public function getPop($userId, $optParams = array()) - { - $params = array('userId' => $userId); - $params = array_merge($params, $optParams); - return $this->call('getPop', array($params), "Google_Service_Gmail_PopSettings"); - } - /** - * Gets vacation responder settings. (settings.getVacation) - * - * @param string $userId User's email address. The special value "me" can be - * used to indicate the authenticated user. - * @param array $optParams Optional parameters. - * @return Google_Service_Gmail_VacationSettings - */ - public function getVacation($userId, $optParams = array()) - { - $params = array('userId' => $userId); - $params = array_merge($params, $optParams); - return $this->call('getVacation', array($params), "Google_Service_Gmail_VacationSettings"); - } - /** - * Updates the auto-forwarding setting for the specified account. A verified - * forwarding address must be specified when auto-forwarding is enabled. - * - * This method is only available to service account clients that have been - * delegated domain-wide authority. (settings.updateAutoForwarding) - * - * @param string $userId User's email address. The special value "me" can be - * used to indicate the authenticated user. - * @param Google_Service_Gmail_AutoForwarding $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Gmail_AutoForwarding - */ - public function updateAutoForwarding($userId, Google_Service_Gmail_AutoForwarding $postBody, $optParams = array()) - { - $params = array('userId' => $userId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updateAutoForwarding', array($params), "Google_Service_Gmail_AutoForwarding"); - } - /** - * Updates IMAP settings. (settings.updateImap) - * - * @param string $userId User's email address. The special value "me" can be - * used to indicate the authenticated user. - * @param Google_Service_Gmail_ImapSettings $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Gmail_ImapSettings - */ - public function updateImap($userId, Google_Service_Gmail_ImapSettings $postBody, $optParams = array()) - { - $params = array('userId' => $userId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updateImap', array($params), "Google_Service_Gmail_ImapSettings"); - } - /** - * Updates language settings. - * - * If successful, the return object contains the displayLanguage that was saved - * for the user, which may differ from the value passed into the request. This - * is because the requested displayLanguage may not be directly supported by - * Gmail but have a close variant that is, and so the variant may be chosen and - * saved instead. (settings.updateLanguage) - * - * @param string $userId User's email address. The special value "me" can be - * used to indicate the authenticated user. - * @param Google_Service_Gmail_LanguageSettings $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Gmail_LanguageSettings - */ - public function updateLanguage($userId, Google_Service_Gmail_LanguageSettings $postBody, $optParams = array()) - { - $params = array('userId' => $userId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updateLanguage', array($params), "Google_Service_Gmail_LanguageSettings"); - } - /** - * Updates POP settings. (settings.updatePop) - * - * @param string $userId User's email address. The special value "me" can be - * used to indicate the authenticated user. - * @param Google_Service_Gmail_PopSettings $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Gmail_PopSettings - */ - public function updatePop($userId, Google_Service_Gmail_PopSettings $postBody, $optParams = array()) - { - $params = array('userId' => $userId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updatePop', array($params), "Google_Service_Gmail_PopSettings"); - } - /** - * Updates vacation responder settings. (settings.updateVacation) - * - * @param string $userId User's email address. The special value "me" can be - * used to indicate the authenticated user. - * @param Google_Service_Gmail_VacationSettings $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Gmail_VacationSettings - */ - public function updateVacation($userId, Google_Service_Gmail_VacationSettings $postBody, $optParams = array()) - { - $params = array('userId' => $userId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updateVacation', array($params), "Google_Service_Gmail_VacationSettings"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Resource/UsersSettingsDelegates.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Resource/UsersSettingsDelegates.php deleted file mode 100644 index 35383e37..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Resource/UsersSettingsDelegates.php +++ /dev/null @@ -1,119 +0,0 @@ - - * $gmailService = new Google_Service_Gmail(...); - * $delegates = $gmailService->delegates; - * - */ -class Google_Service_Gmail_Resource_UsersSettingsDelegates extends Google_Service_Resource -{ - /** - * Adds a delegate with its verification status set directly to accepted, - * without sending any verification email. The delegate user must be a member of - * the same G Suite organization as the delegator user. - * - * Gmail imposes limitations on the number of delegates and delegators each user - * in a G Suite organization can have. These limits depend on your organization, - * but in general each user can have up to 25 delegates and up to 10 delegators. - * - * Note that a delegate user must be referred to by their primary email address, - * and not an email alias. - * - * Also note that when a new delegate is created, there may be up to a one - * minute delay before the new delegate is available for use. - * - * This method is only available to service account clients that have been - * delegated domain-wide authority. (delegates.create) - * - * @param string $userId User's email address. The special value "me" can be - * used to indicate the authenticated user. - * @param Google_Service_Gmail_Delegate $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Gmail_Delegate - */ - public function create($userId, Google_Service_Gmail_Delegate $postBody, $optParams = array()) - { - $params = array('userId' => $userId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Gmail_Delegate"); - } - /** - * Removes the specified delegate (which can be of any verification status), and - * revokes any verification that may have been required for using it. - * - * Note that a delegate user must be referred to by their primary email address, - * and not an email alias. - * - * This method is only available to service account clients that have been - * delegated domain-wide authority. (delegates.delete) - * - * @param string $userId User's email address. The special value "me" can be - * used to indicate the authenticated user. - * @param string $delegateEmail The email address of the user to be removed as a - * delegate. - * @param array $optParams Optional parameters. - */ - public function delete($userId, $delegateEmail, $optParams = array()) - { - $params = array('userId' => $userId, 'delegateEmail' => $delegateEmail); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Gets the specified delegate. - * - * Note that a delegate user must be referred to by their primary email address, - * and not an email alias. - * - * This method is only available to service account clients that have been - * delegated domain-wide authority. (delegates.get) - * - * @param string $userId User's email address. The special value "me" can be - * used to indicate the authenticated user. - * @param string $delegateEmail The email address of the user whose delegate - * relationship is to be retrieved. - * @param array $optParams Optional parameters. - * @return Google_Service_Gmail_Delegate - */ - public function get($userId, $delegateEmail, $optParams = array()) - { - $params = array('userId' => $userId, 'delegateEmail' => $delegateEmail); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Gmail_Delegate"); - } - /** - * Lists the delegates for the specified account. - * - * This method is only available to service account clients that have been - * delegated domain-wide authority. (delegates.listUsersSettingsDelegates) - * - * @param string $userId User's email address. The special value "me" can be - * used to indicate the authenticated user. - * @param array $optParams Optional parameters. - * @return Google_Service_Gmail_ListDelegatesResponse - */ - public function listUsersSettingsDelegates($userId, $optParams = array()) - { - $params = array('userId' => $userId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Gmail_ListDelegatesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Resource/UsersSettingsFilters.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Resource/UsersSettingsFilters.php deleted file mode 100644 index d142bc29..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Resource/UsersSettingsFilters.php +++ /dev/null @@ -1,86 +0,0 @@ - - * $gmailService = new Google_Service_Gmail(...); - * $filters = $gmailService->filters; - * - */ -class Google_Service_Gmail_Resource_UsersSettingsFilters extends Google_Service_Resource -{ - /** - * Creates a filter. (filters.create) - * - * @param string $userId User's email address. The special value "me" can be - * used to indicate the authenticated user. - * @param Google_Service_Gmail_Filter $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Gmail_Filter - */ - public function create($userId, Google_Service_Gmail_Filter $postBody, $optParams = array()) - { - $params = array('userId' => $userId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Gmail_Filter"); - } - /** - * Deletes a filter. (filters.delete) - * - * @param string $userId User's email address. The special value "me" can be - * used to indicate the authenticated user. - * @param string $id The ID of the filter to be deleted. - * @param array $optParams Optional parameters. - */ - public function delete($userId, $id, $optParams = array()) - { - $params = array('userId' => $userId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Gets a filter. (filters.get) - * - * @param string $userId User's email address. The special value "me" can be - * used to indicate the authenticated user. - * @param string $id The ID of the filter to be fetched. - * @param array $optParams Optional parameters. - * @return Google_Service_Gmail_Filter - */ - public function get($userId, $id, $optParams = array()) - { - $params = array('userId' => $userId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Gmail_Filter"); - } - /** - * Lists the message filters of a Gmail user. (filters.listUsersSettingsFilters) - * - * @param string $userId User's email address. The special value "me" can be - * used to indicate the authenticated user. - * @param array $optParams Optional parameters. - * @return Google_Service_Gmail_ListFiltersResponse - */ - public function listUsersSettingsFilters($userId, $optParams = array()) - { - $params = array('userId' => $userId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Gmail_ListFiltersResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Resource/UsersSettingsForwardingAddresses.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Resource/UsersSettingsForwardingAddresses.php deleted file mode 100644 index b0e25086..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Resource/UsersSettingsForwardingAddresses.php +++ /dev/null @@ -1,97 +0,0 @@ - - * $gmailService = new Google_Service_Gmail(...); - * $forwardingAddresses = $gmailService->forwardingAddresses; - * - */ -class Google_Service_Gmail_Resource_UsersSettingsForwardingAddresses extends Google_Service_Resource -{ - /** - * Creates a forwarding address. If ownership verification is required, a - * message will be sent to the recipient and the resource's verification status - * will be set to pending; otherwise, the resource will be created with - * verification status set to accepted. - * - * This method is only available to service account clients that have been - * delegated domain-wide authority. (forwardingAddresses.create) - * - * @param string $userId User's email address. The special value "me" can be - * used to indicate the authenticated user. - * @param Google_Service_Gmail_ForwardingAddress $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Gmail_ForwardingAddress - */ - public function create($userId, Google_Service_Gmail_ForwardingAddress $postBody, $optParams = array()) - { - $params = array('userId' => $userId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Gmail_ForwardingAddress"); - } - /** - * Deletes the specified forwarding address and revokes any verification that - * may have been required. - * - * This method is only available to service account clients that have been - * delegated domain-wide authority. (forwardingAddresses.delete) - * - * @param string $userId User's email address. The special value "me" can be - * used to indicate the authenticated user. - * @param string $forwardingEmail The forwarding address to be deleted. - * @param array $optParams Optional parameters. - */ - public function delete($userId, $forwardingEmail, $optParams = array()) - { - $params = array('userId' => $userId, 'forwardingEmail' => $forwardingEmail); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Gets the specified forwarding address. (forwardingAddresses.get) - * - * @param string $userId User's email address. The special value "me" can be - * used to indicate the authenticated user. - * @param string $forwardingEmail The forwarding address to be retrieved. - * @param array $optParams Optional parameters. - * @return Google_Service_Gmail_ForwardingAddress - */ - public function get($userId, $forwardingEmail, $optParams = array()) - { - $params = array('userId' => $userId, 'forwardingEmail' => $forwardingEmail); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Gmail_ForwardingAddress"); - } - /** - * Lists the forwarding addresses for the specified account. - * (forwardingAddresses.listUsersSettingsForwardingAddresses) - * - * @param string $userId User's email address. The special value "me" can be - * used to indicate the authenticated user. - * @param array $optParams Optional parameters. - * @return Google_Service_Gmail_ListForwardingAddressesResponse - */ - public function listUsersSettingsForwardingAddresses($userId, $optParams = array()) - { - $params = array('userId' => $userId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Gmail_ListForwardingAddressesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Resource/UsersSettingsSendAs.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Resource/UsersSettingsSendAs.php deleted file mode 100644 index f3c45cfb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Resource/UsersSettingsSendAs.php +++ /dev/null @@ -1,162 +0,0 @@ - - * $gmailService = new Google_Service_Gmail(...); - * $sendAs = $gmailService->sendAs; - * - */ -class Google_Service_Gmail_Resource_UsersSettingsSendAs extends Google_Service_Resource -{ - /** - * Creates a custom "from" send-as alias. If an SMTP MSA is specified, Gmail - * will attempt to connect to the SMTP service to validate the configuration - * before creating the alias. If ownership verification is required for the - * alias, a message will be sent to the email address and the resource's - * verification status will be set to pending; otherwise, the resource will be - * created with verification status set to accepted. If a signature is provided, - * Gmail will sanitize the HTML before saving it with the alias. - * - * This method is only available to service account clients that have been - * delegated domain-wide authority. (sendAs.create) - * - * @param string $userId User's email address. The special value "me" can be - * used to indicate the authenticated user. - * @param Google_Service_Gmail_SendAs $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Gmail_SendAs - */ - public function create($userId, Google_Service_Gmail_SendAs $postBody, $optParams = array()) - { - $params = array('userId' => $userId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Gmail_SendAs"); - } - /** - * Deletes the specified send-as alias. Revokes any verification that may have - * been required for using it. - * - * This method is only available to service account clients that have been - * delegated domain-wide authority. (sendAs.delete) - * - * @param string $userId User's email address. The special value "me" can be - * used to indicate the authenticated user. - * @param string $sendAsEmail The send-as alias to be deleted. - * @param array $optParams Optional parameters. - */ - public function delete($userId, $sendAsEmail, $optParams = array()) - { - $params = array('userId' => $userId, 'sendAsEmail' => $sendAsEmail); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Gets the specified send-as alias. Fails with an HTTP 404 error if the - * specified address is not a member of the collection. (sendAs.get) - * - * @param string $userId User's email address. The special value "me" can be - * used to indicate the authenticated user. - * @param string $sendAsEmail The send-as alias to be retrieved. - * @param array $optParams Optional parameters. - * @return Google_Service_Gmail_SendAs - */ - public function get($userId, $sendAsEmail, $optParams = array()) - { - $params = array('userId' => $userId, 'sendAsEmail' => $sendAsEmail); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Gmail_SendAs"); - } - /** - * Lists the send-as aliases for the specified account. The result includes the - * primary send-as address associated with the account as well as any custom - * "from" aliases. (sendAs.listUsersSettingsSendAs) - * - * @param string $userId User's email address. The special value "me" can be - * used to indicate the authenticated user. - * @param array $optParams Optional parameters. - * @return Google_Service_Gmail_ListSendAsResponse - */ - public function listUsersSettingsSendAs($userId, $optParams = array()) - { - $params = array('userId' => $userId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Gmail_ListSendAsResponse"); - } - /** - * Updates a send-as alias. If a signature is provided, Gmail will sanitize the - * HTML before saving it with the alias. - * - * Addresses other than the primary address for the account can only be updated - * by service account clients that have been delegated domain-wide authority. - * This method supports patch semantics. (sendAs.patch) - * - * @param string $userId User's email address. The special value "me" can be - * used to indicate the authenticated user. - * @param string $sendAsEmail The send-as alias to be updated. - * @param Google_Service_Gmail_SendAs $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Gmail_SendAs - */ - public function patch($userId, $sendAsEmail, Google_Service_Gmail_SendAs $postBody, $optParams = array()) - { - $params = array('userId' => $userId, 'sendAsEmail' => $sendAsEmail, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Gmail_SendAs"); - } - /** - * Updates a send-as alias. If a signature is provided, Gmail will sanitize the - * HTML before saving it with the alias. - * - * Addresses other than the primary address for the account can only be updated - * by service account clients that have been delegated domain-wide authority. - * (sendAs.update) - * - * @param string $userId User's email address. The special value "me" can be - * used to indicate the authenticated user. - * @param string $sendAsEmail The send-as alias to be updated. - * @param Google_Service_Gmail_SendAs $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Gmail_SendAs - */ - public function update($userId, $sendAsEmail, Google_Service_Gmail_SendAs $postBody, $optParams = array()) - { - $params = array('userId' => $userId, 'sendAsEmail' => $sendAsEmail, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Gmail_SendAs"); - } - /** - * Sends a verification email to the specified send-as alias address. The - * verification status must be pending. - * - * This method is only available to service account clients that have been - * delegated domain-wide authority. (sendAs.verify) - * - * @param string $userId User's email address. The special value "me" can be - * used to indicate the authenticated user. - * @param string $sendAsEmail The send-as alias to be verified. - * @param array $optParams Optional parameters. - */ - public function verify($userId, $sendAsEmail, $optParams = array()) - { - $params = array('userId' => $userId, 'sendAsEmail' => $sendAsEmail); - $params = array_merge($params, $optParams); - return $this->call('verify', array($params)); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Resource/UsersSettingsSendAsSmimeInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Resource/UsersSettingsSendAsSmimeInfo.php deleted file mode 100644 index ffb17fa8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Resource/UsersSettingsSendAsSmimeInfo.php +++ /dev/null @@ -1,115 +0,0 @@ - - * $gmailService = new Google_Service_Gmail(...); - * $smimeInfo = $gmailService->smimeInfo; - * - */ -class Google_Service_Gmail_Resource_UsersSettingsSendAsSmimeInfo extends Google_Service_Resource -{ - /** - * Deletes the specified S/MIME config for the specified send-as alias. - * (smimeInfo.delete) - * - * @param string $userId The user's email address. The special value me can be - * used to indicate the authenticated user. - * @param string $sendAsEmail The email address that appears in the "From:" - * header for mail sent using this alias. - * @param string $id The immutable ID for the SmimeInfo. - * @param array $optParams Optional parameters. - */ - public function delete($userId, $sendAsEmail, $id, $optParams = array()) - { - $params = array('userId' => $userId, 'sendAsEmail' => $sendAsEmail, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Gets the specified S/MIME config for the specified send-as alias. - * (smimeInfo.get) - * - * @param string $userId The user's email address. The special value me can be - * used to indicate the authenticated user. - * @param string $sendAsEmail The email address that appears in the "From:" - * header for mail sent using this alias. - * @param string $id The immutable ID for the SmimeInfo. - * @param array $optParams Optional parameters. - * @return Google_Service_Gmail_SmimeInfo - */ - public function get($userId, $sendAsEmail, $id, $optParams = array()) - { - $params = array('userId' => $userId, 'sendAsEmail' => $sendAsEmail, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Gmail_SmimeInfo"); - } - /** - * Insert (upload) the given S/MIME config for the specified send-as alias. Note - * that pkcs12 format is required for the key. (smimeInfo.insert) - * - * @param string $userId The user's email address. The special value me can be - * used to indicate the authenticated user. - * @param string $sendAsEmail The email address that appears in the "From:" - * header for mail sent using this alias. - * @param Google_Service_Gmail_SmimeInfo $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Gmail_SmimeInfo - */ - public function insert($userId, $sendAsEmail, Google_Service_Gmail_SmimeInfo $postBody, $optParams = array()) - { - $params = array('userId' => $userId, 'sendAsEmail' => $sendAsEmail, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Gmail_SmimeInfo"); - } - /** - * Lists S/MIME configs for the specified send-as alias. - * (smimeInfo.listUsersSettingsSendAsSmimeInfo) - * - * @param string $userId The user's email address. The special value me can be - * used to indicate the authenticated user. - * @param string $sendAsEmail The email address that appears in the "From:" - * header for mail sent using this alias. - * @param array $optParams Optional parameters. - * @return Google_Service_Gmail_ListSmimeInfoResponse - */ - public function listUsersSettingsSendAsSmimeInfo($userId, $sendAsEmail, $optParams = array()) - { - $params = array('userId' => $userId, 'sendAsEmail' => $sendAsEmail); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Gmail_ListSmimeInfoResponse"); - } - /** - * Sets the default S/MIME config for the specified send-as alias. - * (smimeInfo.setDefault) - * - * @param string $userId The user's email address. The special value me can be - * used to indicate the authenticated user. - * @param string $sendAsEmail The email address that appears in the "From:" - * header for mail sent using this alias. - * @param string $id The immutable ID for the SmimeInfo. - * @param array $optParams Optional parameters. - */ - public function setDefault($userId, $sendAsEmail, $id, $optParams = array()) - { - $params = array('userId' => $userId, 'sendAsEmail' => $sendAsEmail, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('setDefault', array($params)); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Resource/UsersThreads.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Resource/UsersThreads.php deleted file mode 100644 index b8909c47..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Resource/UsersThreads.php +++ /dev/null @@ -1,135 +0,0 @@ - - * $gmailService = new Google_Service_Gmail(...); - * $threads = $gmailService->threads; - * - */ -class Google_Service_Gmail_Resource_UsersThreads extends Google_Service_Resource -{ - /** - * Immediately and permanently deletes the specified thread. This operation - * cannot be undone. Prefer threads.trash instead. (threads.delete) - * - * @param string $userId The user's email address. The special value me can be - * used to indicate the authenticated user. - * @param string $id ID of the Thread to delete. - * @param array $optParams Optional parameters. - */ - public function delete($userId, $id, $optParams = array()) - { - $params = array('userId' => $userId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Gets the specified thread. (threads.get) - * - * @param string $userId The user's email address. The special value me can be - * used to indicate the authenticated user. - * @param string $id The ID of the thread to retrieve. - * @param array $optParams Optional parameters. - * - * @opt_param string format The format to return the messages in. - * @opt_param string metadataHeaders When given and format is METADATA, only - * include headers specified. - * @return Google_Service_Gmail_Thread - */ - public function get($userId, $id, $optParams = array()) - { - $params = array('userId' => $userId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Gmail_Thread"); - } - /** - * Lists the threads in the user's mailbox. (threads.listUsersThreads) - * - * @param string $userId The user's email address. The special value me can be - * used to indicate the authenticated user. - * @param array $optParams Optional parameters. - * - * @opt_param bool includeSpamTrash Include threads from SPAM and TRASH in the - * results. - * @opt_param string labelIds Only return threads with labels that match all of - * the specified label IDs. - * @opt_param string maxResults Maximum number of threads to return. - * @opt_param string pageToken Page token to retrieve a specific page of results - * in the list. - * @opt_param string q Only return threads matching the specified query. - * Supports the same query format as the Gmail search box. For example, - * "from:someuser@example.com rfc822msgid: is:unread". Parameter cannot be used - * when accessing the api using the gmail.metadata scope. - * @return Google_Service_Gmail_ListThreadsResponse - */ - public function listUsersThreads($userId, $optParams = array()) - { - $params = array('userId' => $userId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Gmail_ListThreadsResponse"); - } - /** - * Modifies the labels applied to the thread. This applies to all messages in - * the thread. (threads.modify) - * - * @param string $userId The user's email address. The special value me can be - * used to indicate the authenticated user. - * @param string $id The ID of the thread to modify. - * @param Google_Service_Gmail_ModifyThreadRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Gmail_Thread - */ - public function modify($userId, $id, Google_Service_Gmail_ModifyThreadRequest $postBody, $optParams = array()) - { - $params = array('userId' => $userId, 'id' => $id, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('modify', array($params), "Google_Service_Gmail_Thread"); - } - /** - * Moves the specified thread to the trash. (threads.trash) - * - * @param string $userId The user's email address. The special value me can be - * used to indicate the authenticated user. - * @param string $id The ID of the thread to Trash. - * @param array $optParams Optional parameters. - * @return Google_Service_Gmail_Thread - */ - public function trash($userId, $id, $optParams = array()) - { - $params = array('userId' => $userId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('trash', array($params), "Google_Service_Gmail_Thread"); - } - /** - * Removes the specified thread from the trash. (threads.untrash) - * - * @param string $userId The user's email address. The special value me can be - * used to indicate the authenticated user. - * @param string $id The ID of the thread to remove from Trash. - * @param array $optParams Optional parameters. - * @return Google_Service_Gmail_Thread - */ - public function untrash($userId, $id, $optParams = array()) - { - $params = array('userId' => $userId, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('untrash', array($params), "Google_Service_Gmail_Thread"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/SendAs.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/SendAs.php deleted file mode 100644 index 82f96cdf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/SendAs.php +++ /dev/null @@ -1,109 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setIsDefault($isDefault) - { - $this->isDefault = $isDefault; - } - public function getIsDefault() - { - return $this->isDefault; - } - public function setIsPrimary($isPrimary) - { - $this->isPrimary = $isPrimary; - } - public function getIsPrimary() - { - return $this->isPrimary; - } - public function setReplyToAddress($replyToAddress) - { - $this->replyToAddress = $replyToAddress; - } - public function getReplyToAddress() - { - return $this->replyToAddress; - } - public function setSendAsEmail($sendAsEmail) - { - $this->sendAsEmail = $sendAsEmail; - } - public function getSendAsEmail() - { - return $this->sendAsEmail; - } - public function setSignature($signature) - { - $this->signature = $signature; - } - public function getSignature() - { - return $this->signature; - } - /** - * @param Google_Service_Gmail_SmtpMsa - */ - public function setSmtpMsa(Google_Service_Gmail_SmtpMsa $smtpMsa) - { - $this->smtpMsa = $smtpMsa; - } - /** - * @return Google_Service_Gmail_SmtpMsa - */ - public function getSmtpMsa() - { - return $this->smtpMsa; - } - public function setTreatAsAlias($treatAsAlias) - { - $this->treatAsAlias = $treatAsAlias; - } - public function getTreatAsAlias() - { - return $this->treatAsAlias; - } - public function setVerificationStatus($verificationStatus) - { - $this->verificationStatus = $verificationStatus; - } - public function getVerificationStatus() - { - return $this->verificationStatus; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/SmimeInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/SmimeInfo.php deleted file mode 100644 index 0e218027..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/SmimeInfo.php +++ /dev/null @@ -1,84 +0,0 @@ -encryptedKeyPassword = $encryptedKeyPassword; - } - public function getEncryptedKeyPassword() - { - return $this->encryptedKeyPassword; - } - public function setExpiration($expiration) - { - $this->expiration = $expiration; - } - public function getExpiration() - { - return $this->expiration; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setIsDefault($isDefault) - { - $this->isDefault = $isDefault; - } - public function getIsDefault() - { - return $this->isDefault; - } - public function setIssuerCn($issuerCn) - { - $this->issuerCn = $issuerCn; - } - public function getIssuerCn() - { - return $this->issuerCn; - } - public function setPem($pem) - { - $this->pem = $pem; - } - public function getPem() - { - return $this->pem; - } - public function setPkcs12($pkcs12) - { - $this->pkcs12 = $pkcs12; - } - public function getPkcs12() - { - return $this->pkcs12; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/SmtpMsa.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/SmtpMsa.php deleted file mode 100644 index c0191386..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/SmtpMsa.php +++ /dev/null @@ -1,66 +0,0 @@ -host = $host; - } - public function getHost() - { - return $this->host; - } - public function setPassword($password) - { - $this->password = $password; - } - public function getPassword() - { - return $this->password; - } - public function setPort($port) - { - $this->port = $port; - } - public function getPort() - { - return $this->port; - } - public function setSecurityMode($securityMode) - { - $this->securityMode = $securityMode; - } - public function getSecurityMode() - { - return $this->securityMode; - } - public function setUsername($username) - { - $this->username = $username; - } - public function getUsername() - { - return $this->username; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Thread.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Thread.php deleted file mode 100644 index 74a0f0ab..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/Thread.php +++ /dev/null @@ -1,65 +0,0 @@ -historyId = $historyId; - } - public function getHistoryId() - { - return $this->historyId; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Gmail_Message - */ - public function setMessages($messages) - { - $this->messages = $messages; - } - /** - * @return Google_Service_Gmail_Message - */ - public function getMessages() - { - return $this->messages; - } - public function setSnippet($snippet) - { - $this->snippet = $snippet; - } - public function getSnippet() - { - return $this->snippet; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/VacationSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/VacationSettings.php deleted file mode 100644 index 1e990dbb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/VacationSettings.php +++ /dev/null @@ -1,93 +0,0 @@ -enableAutoReply = $enableAutoReply; - } - public function getEnableAutoReply() - { - return $this->enableAutoReply; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setResponseBodyHtml($responseBodyHtml) - { - $this->responseBodyHtml = $responseBodyHtml; - } - public function getResponseBodyHtml() - { - return $this->responseBodyHtml; - } - public function setResponseBodyPlainText($responseBodyPlainText) - { - $this->responseBodyPlainText = $responseBodyPlainText; - } - public function getResponseBodyPlainText() - { - return $this->responseBodyPlainText; - } - public function setResponseSubject($responseSubject) - { - $this->responseSubject = $responseSubject; - } - public function getResponseSubject() - { - return $this->responseSubject; - } - public function setRestrictToContacts($restrictToContacts) - { - $this->restrictToContacts = $restrictToContacts; - } - public function getRestrictToContacts() - { - return $this->restrictToContacts; - } - public function setRestrictToDomain($restrictToDomain) - { - $this->restrictToDomain = $restrictToDomain; - } - public function getRestrictToDomain() - { - return $this->restrictToDomain; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/WatchRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/WatchRequest.php deleted file mode 100644 index 5fa9144f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/WatchRequest.php +++ /dev/null @@ -1,49 +0,0 @@ -labelFilterAction = $labelFilterAction; - } - public function getLabelFilterAction() - { - return $this->labelFilterAction; - } - public function setLabelIds($labelIds) - { - $this->labelIds = $labelIds; - } - public function getLabelIds() - { - return $this->labelIds; - } - public function setTopicName($topicName) - { - $this->topicName = $topicName; - } - public function getTopicName() - { - return $this->topicName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/WatchResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/WatchResponse.php deleted file mode 100644 index d7dc3bfe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Gmail/WatchResponse.php +++ /dev/null @@ -1,39 +0,0 @@ -expiration = $expiration; - } - public function getExpiration() - { - return $this->expiration; - } - public function setHistoryId($historyId) - { - $this->historyId = $historyId; - } - public function getHistoryId() - { - return $this->historyId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GroupsMigration.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GroupsMigration.php deleted file mode 100644 index af08fed6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GroupsMigration.php +++ /dev/null @@ -1,75 +0,0 @@ - - * Groups Migration Api.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_GroupsMigration extends Google_Service -{ - /** Manage messages in groups on your domain. */ - const APPS_GROUPS_MIGRATION = - "https://www.googleapis.com/auth/apps.groups.migration"; - - public $archive; - - /** - * Constructs the internal representation of the GroupsMigration service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://www.googleapis.com/'; - $this->servicePath = 'groups/v1/groups/'; - $this->batchPath = 'batch/groupsmigration/v1'; - $this->version = 'v1'; - $this->serviceName = 'groupsmigration'; - - $this->archive = new Google_Service_GroupsMigration_Resource_Archive( - $this, - $this->serviceName, - 'archive', - array( - 'methods' => array( - 'insert' => array( - 'path' => '{groupId}/archive', - 'httpMethod' => 'POST', - 'parameters' => array( - 'groupId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GroupsMigration/Groups.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GroupsMigration/Groups.php deleted file mode 100644 index 35d4bfb4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GroupsMigration/Groups.php +++ /dev/null @@ -1,39 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setResponseCode($responseCode) - { - $this->responseCode = $responseCode; - } - public function getResponseCode() - { - return $this->responseCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GroupsMigration/Resource/Archive.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GroupsMigration/Resource/Archive.php deleted file mode 100644 index 0b977b0b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/GroupsMigration/Resource/Archive.php +++ /dev/null @@ -1,41 +0,0 @@ - - * $groupsmigrationService = new Google_Service_GroupsMigration(...); - * $archive = $groupsmigrationService->archive; - * - */ -class Google_Service_GroupsMigration_Resource_Archive extends Google_Service_Resource -{ - /** - * Inserts a new mail into the archive of the Google group. (archive.insert) - * - * @param string $groupId The group ID - * @param array $optParams Optional parameters. - * @return Google_Service_GroupsMigration_Groups - */ - public function insert($groupId, $optParams = array()) - { - $params = array('groupId' => $groupId); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_GroupsMigration_Groups"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Groupssettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Groupssettings.php deleted file mode 100644 index 645085c2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Groupssettings.php +++ /dev/null @@ -1,95 +0,0 @@ - - * Manages permission levels and related settings of a group.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Groupssettings extends Google_Service -{ - /** View and manage the settings of a G Suite group. */ - const APPS_GROUPS_SETTINGS = - "https://www.googleapis.com/auth/apps.groups.settings"; - - public $groups; - - /** - * Constructs the internal representation of the Groupssettings service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://www.googleapis.com/'; - $this->servicePath = 'groups/v1/groups/'; - $this->batchPath = 'batch/groupssettings/v1'; - $this->version = 'v1'; - $this->serviceName = 'groupssettings'; - - $this->groups = new Google_Service_Groupssettings_Resource_Groups( - $this, - $this->serviceName, - 'groups', - array( - 'methods' => array( - 'get' => array( - 'path' => '{groupUniqueId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'groupUniqueId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => '{groupUniqueId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'groupUniqueId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => '{groupUniqueId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'groupUniqueId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Groupssettings/Groups.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Groupssettings/Groups.php deleted file mode 100644 index 02ce9291..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Groupssettings/Groups.php +++ /dev/null @@ -1,570 +0,0 @@ -allowExternalMembers = $allowExternalMembers; - } - public function getAllowExternalMembers() - { - return $this->allowExternalMembers; - } - public function setAllowGoogleCommunication($allowGoogleCommunication) - { - $this->allowGoogleCommunication = $allowGoogleCommunication; - } - public function getAllowGoogleCommunication() - { - return $this->allowGoogleCommunication; - } - public function setAllowWebPosting($allowWebPosting) - { - $this->allowWebPosting = $allowWebPosting; - } - public function getAllowWebPosting() - { - return $this->allowWebPosting; - } - public function setArchiveOnly($archiveOnly) - { - $this->archiveOnly = $archiveOnly; - } - public function getArchiveOnly() - { - return $this->archiveOnly; - } - public function setCustomFooterText($customFooterText) - { - $this->customFooterText = $customFooterText; - } - public function getCustomFooterText() - { - return $this->customFooterText; - } - public function setCustomReplyTo($customReplyTo) - { - $this->customReplyTo = $customReplyTo; - } - public function getCustomReplyTo() - { - return $this->customReplyTo; - } - public function setCustomRolesEnabledForSettingsToBeMerged($customRolesEnabledForSettingsToBeMerged) - { - $this->customRolesEnabledForSettingsToBeMerged = $customRolesEnabledForSettingsToBeMerged; - } - public function getCustomRolesEnabledForSettingsToBeMerged() - { - return $this->customRolesEnabledForSettingsToBeMerged; - } - public function setDefaultMessageDenyNotificationText($defaultMessageDenyNotificationText) - { - $this->defaultMessageDenyNotificationText = $defaultMessageDenyNotificationText; - } - public function getDefaultMessageDenyNotificationText() - { - return $this->defaultMessageDenyNotificationText; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setEmail($email) - { - $this->email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setEnableCollaborativeInbox($enableCollaborativeInbox) - { - $this->enableCollaborativeInbox = $enableCollaborativeInbox; - } - public function getEnableCollaborativeInbox() - { - return $this->enableCollaborativeInbox; - } - public function setFavoriteRepliesOnTop($favoriteRepliesOnTop) - { - $this->favoriteRepliesOnTop = $favoriteRepliesOnTop; - } - public function getFavoriteRepliesOnTop() - { - return $this->favoriteRepliesOnTop; - } - public function setIncludeCustomFooter($includeCustomFooter) - { - $this->includeCustomFooter = $includeCustomFooter; - } - public function getIncludeCustomFooter() - { - return $this->includeCustomFooter; - } - public function setIncludeInGlobalAddressList($includeInGlobalAddressList) - { - $this->includeInGlobalAddressList = $includeInGlobalAddressList; - } - public function getIncludeInGlobalAddressList() - { - return $this->includeInGlobalAddressList; - } - public function setIsArchived($isArchived) - { - $this->isArchived = $isArchived; - } - public function getIsArchived() - { - return $this->isArchived; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setMaxMessageBytes($maxMessageBytes) - { - $this->maxMessageBytes = $maxMessageBytes; - } - public function getMaxMessageBytes() - { - return $this->maxMessageBytes; - } - public function setMembersCanPostAsTheGroup($membersCanPostAsTheGroup) - { - $this->membersCanPostAsTheGroup = $membersCanPostAsTheGroup; - } - public function getMembersCanPostAsTheGroup() - { - return $this->membersCanPostAsTheGroup; - } - public function setMessageDisplayFont($messageDisplayFont) - { - $this->messageDisplayFont = $messageDisplayFont; - } - public function getMessageDisplayFont() - { - return $this->messageDisplayFont; - } - public function setMessageModerationLevel($messageModerationLevel) - { - $this->messageModerationLevel = $messageModerationLevel; - } - public function getMessageModerationLevel() - { - return $this->messageModerationLevel; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPrimaryLanguage($primaryLanguage) - { - $this->primaryLanguage = $primaryLanguage; - } - public function getPrimaryLanguage() - { - return $this->primaryLanguage; - } - public function setReplyTo($replyTo) - { - $this->replyTo = $replyTo; - } - public function getReplyTo() - { - return $this->replyTo; - } - public function setSendMessageDenyNotification($sendMessageDenyNotification) - { - $this->sendMessageDenyNotification = $sendMessageDenyNotification; - } - public function getSendMessageDenyNotification() - { - return $this->sendMessageDenyNotification; - } - public function setShowInGroupDirectory($showInGroupDirectory) - { - $this->showInGroupDirectory = $showInGroupDirectory; - } - public function getShowInGroupDirectory() - { - return $this->showInGroupDirectory; - } - public function setSpamModerationLevel($spamModerationLevel) - { - $this->spamModerationLevel = $spamModerationLevel; - } - public function getSpamModerationLevel() - { - return $this->spamModerationLevel; - } - public function setWhoCanAdd($whoCanAdd) - { - $this->whoCanAdd = $whoCanAdd; - } - public function getWhoCanAdd() - { - return $this->whoCanAdd; - } - public function setWhoCanAddReferences($whoCanAddReferences) - { - $this->whoCanAddReferences = $whoCanAddReferences; - } - public function getWhoCanAddReferences() - { - return $this->whoCanAddReferences; - } - public function setWhoCanApproveMembers($whoCanApproveMembers) - { - $this->whoCanApproveMembers = $whoCanApproveMembers; - } - public function getWhoCanApproveMembers() - { - return $this->whoCanApproveMembers; - } - public function setWhoCanApproveMessages($whoCanApproveMessages) - { - $this->whoCanApproveMessages = $whoCanApproveMessages; - } - public function getWhoCanApproveMessages() - { - return $this->whoCanApproveMessages; - } - public function setWhoCanAssignTopics($whoCanAssignTopics) - { - $this->whoCanAssignTopics = $whoCanAssignTopics; - } - public function getWhoCanAssignTopics() - { - return $this->whoCanAssignTopics; - } - public function setWhoCanAssistContent($whoCanAssistContent) - { - $this->whoCanAssistContent = $whoCanAssistContent; - } - public function getWhoCanAssistContent() - { - return $this->whoCanAssistContent; - } - public function setWhoCanBanUsers($whoCanBanUsers) - { - $this->whoCanBanUsers = $whoCanBanUsers; - } - public function getWhoCanBanUsers() - { - return $this->whoCanBanUsers; - } - public function setWhoCanContactOwner($whoCanContactOwner) - { - $this->whoCanContactOwner = $whoCanContactOwner; - } - public function getWhoCanContactOwner() - { - return $this->whoCanContactOwner; - } - public function setWhoCanDeleteAnyPost($whoCanDeleteAnyPost) - { - $this->whoCanDeleteAnyPost = $whoCanDeleteAnyPost; - } - public function getWhoCanDeleteAnyPost() - { - return $this->whoCanDeleteAnyPost; - } - public function setWhoCanDeleteTopics($whoCanDeleteTopics) - { - $this->whoCanDeleteTopics = $whoCanDeleteTopics; - } - public function getWhoCanDeleteTopics() - { - return $this->whoCanDeleteTopics; - } - public function setWhoCanDiscoverGroup($whoCanDiscoverGroup) - { - $this->whoCanDiscoverGroup = $whoCanDiscoverGroup; - } - public function getWhoCanDiscoverGroup() - { - return $this->whoCanDiscoverGroup; - } - public function setWhoCanEnterFreeFormTags($whoCanEnterFreeFormTags) - { - $this->whoCanEnterFreeFormTags = $whoCanEnterFreeFormTags; - } - public function getWhoCanEnterFreeFormTags() - { - return $this->whoCanEnterFreeFormTags; - } - public function setWhoCanHideAbuse($whoCanHideAbuse) - { - $this->whoCanHideAbuse = $whoCanHideAbuse; - } - public function getWhoCanHideAbuse() - { - return $this->whoCanHideAbuse; - } - public function setWhoCanInvite($whoCanInvite) - { - $this->whoCanInvite = $whoCanInvite; - } - public function getWhoCanInvite() - { - return $this->whoCanInvite; - } - public function setWhoCanJoin($whoCanJoin) - { - $this->whoCanJoin = $whoCanJoin; - } - public function getWhoCanJoin() - { - return $this->whoCanJoin; - } - public function setWhoCanLeaveGroup($whoCanLeaveGroup) - { - $this->whoCanLeaveGroup = $whoCanLeaveGroup; - } - public function getWhoCanLeaveGroup() - { - return $this->whoCanLeaveGroup; - } - public function setWhoCanLockTopics($whoCanLockTopics) - { - $this->whoCanLockTopics = $whoCanLockTopics; - } - public function getWhoCanLockTopics() - { - return $this->whoCanLockTopics; - } - public function setWhoCanMakeTopicsSticky($whoCanMakeTopicsSticky) - { - $this->whoCanMakeTopicsSticky = $whoCanMakeTopicsSticky; - } - public function getWhoCanMakeTopicsSticky() - { - return $this->whoCanMakeTopicsSticky; - } - public function setWhoCanMarkDuplicate($whoCanMarkDuplicate) - { - $this->whoCanMarkDuplicate = $whoCanMarkDuplicate; - } - public function getWhoCanMarkDuplicate() - { - return $this->whoCanMarkDuplicate; - } - public function setWhoCanMarkFavoriteReplyOnAnyTopic($whoCanMarkFavoriteReplyOnAnyTopic) - { - $this->whoCanMarkFavoriteReplyOnAnyTopic = $whoCanMarkFavoriteReplyOnAnyTopic; - } - public function getWhoCanMarkFavoriteReplyOnAnyTopic() - { - return $this->whoCanMarkFavoriteReplyOnAnyTopic; - } - public function setWhoCanMarkFavoriteReplyOnOwnTopic($whoCanMarkFavoriteReplyOnOwnTopic) - { - $this->whoCanMarkFavoriteReplyOnOwnTopic = $whoCanMarkFavoriteReplyOnOwnTopic; - } - public function getWhoCanMarkFavoriteReplyOnOwnTopic() - { - return $this->whoCanMarkFavoriteReplyOnOwnTopic; - } - public function setWhoCanMarkNoResponseNeeded($whoCanMarkNoResponseNeeded) - { - $this->whoCanMarkNoResponseNeeded = $whoCanMarkNoResponseNeeded; - } - public function getWhoCanMarkNoResponseNeeded() - { - return $this->whoCanMarkNoResponseNeeded; - } - public function setWhoCanModerateContent($whoCanModerateContent) - { - $this->whoCanModerateContent = $whoCanModerateContent; - } - public function getWhoCanModerateContent() - { - return $this->whoCanModerateContent; - } - public function setWhoCanModerateMembers($whoCanModerateMembers) - { - $this->whoCanModerateMembers = $whoCanModerateMembers; - } - public function getWhoCanModerateMembers() - { - return $this->whoCanModerateMembers; - } - public function setWhoCanModifyMembers($whoCanModifyMembers) - { - $this->whoCanModifyMembers = $whoCanModifyMembers; - } - public function getWhoCanModifyMembers() - { - return $this->whoCanModifyMembers; - } - public function setWhoCanModifyTagsAndCategories($whoCanModifyTagsAndCategories) - { - $this->whoCanModifyTagsAndCategories = $whoCanModifyTagsAndCategories; - } - public function getWhoCanModifyTagsAndCategories() - { - return $this->whoCanModifyTagsAndCategories; - } - public function setWhoCanMoveTopicsIn($whoCanMoveTopicsIn) - { - $this->whoCanMoveTopicsIn = $whoCanMoveTopicsIn; - } - public function getWhoCanMoveTopicsIn() - { - return $this->whoCanMoveTopicsIn; - } - public function setWhoCanMoveTopicsOut($whoCanMoveTopicsOut) - { - $this->whoCanMoveTopicsOut = $whoCanMoveTopicsOut; - } - public function getWhoCanMoveTopicsOut() - { - return $this->whoCanMoveTopicsOut; - } - public function setWhoCanPostAnnouncements($whoCanPostAnnouncements) - { - $this->whoCanPostAnnouncements = $whoCanPostAnnouncements; - } - public function getWhoCanPostAnnouncements() - { - return $this->whoCanPostAnnouncements; - } - public function setWhoCanPostMessage($whoCanPostMessage) - { - $this->whoCanPostMessage = $whoCanPostMessage; - } - public function getWhoCanPostMessage() - { - return $this->whoCanPostMessage; - } - public function setWhoCanTakeTopics($whoCanTakeTopics) - { - $this->whoCanTakeTopics = $whoCanTakeTopics; - } - public function getWhoCanTakeTopics() - { - return $this->whoCanTakeTopics; - } - public function setWhoCanUnassignTopic($whoCanUnassignTopic) - { - $this->whoCanUnassignTopic = $whoCanUnassignTopic; - } - public function getWhoCanUnassignTopic() - { - return $this->whoCanUnassignTopic; - } - public function setWhoCanUnmarkFavoriteReplyOnAnyTopic($whoCanUnmarkFavoriteReplyOnAnyTopic) - { - $this->whoCanUnmarkFavoriteReplyOnAnyTopic = $whoCanUnmarkFavoriteReplyOnAnyTopic; - } - public function getWhoCanUnmarkFavoriteReplyOnAnyTopic() - { - return $this->whoCanUnmarkFavoriteReplyOnAnyTopic; - } - public function setWhoCanViewGroup($whoCanViewGroup) - { - $this->whoCanViewGroup = $whoCanViewGroup; - } - public function getWhoCanViewGroup() - { - return $this->whoCanViewGroup; - } - public function setWhoCanViewMembership($whoCanViewMembership) - { - $this->whoCanViewMembership = $whoCanViewMembership; - } - public function getWhoCanViewMembership() - { - return $this->whoCanViewMembership; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Groupssettings/Resource/Groups.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Groupssettings/Resource/Groups.php deleted file mode 100644 index 6f7520ea..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Groupssettings/Resource/Groups.php +++ /dev/null @@ -1,70 +0,0 @@ - - * $groupssettingsService = new Google_Service_Groupssettings(...); - * $groups = $groupssettingsService->groups; - * - */ -class Google_Service_Groupssettings_Resource_Groups extends Google_Service_Resource -{ - /** - * Gets one resource by id. (groups.get) - * - * @param string $groupUniqueId The group's email address. - * @param array $optParams Optional parameters. - * @return Google_Service_Groupssettings_Groups - */ - public function get($groupUniqueId, $optParams = array()) - { - $params = array('groupUniqueId' => $groupUniqueId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Groupssettings_Groups"); - } - /** - * Updates an existing resource. This method supports patch semantics. - * (groups.patch) - * - * @param string $groupUniqueId The group's email address. - * @param Google_Service_Groupssettings_Groups $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Groupssettings_Groups - */ - public function patch($groupUniqueId, Google_Service_Groupssettings_Groups $postBody, $optParams = array()) - { - $params = array('groupUniqueId' => $groupUniqueId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Groupssettings_Groups"); - } - /** - * Updates an existing resource. (groups.update) - * - * @param string $groupUniqueId The group's email address. - * @param Google_Service_Groupssettings_Groups $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Groupssettings_Groups - */ - public function update($groupUniqueId, Google_Service_Groupssettings_Groups $postBody, $optParams = array()) - { - $params = array('groupUniqueId' => $groupUniqueId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Groupssettings_Groups"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat.php deleted file mode 100644 index cef860f2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat.php +++ /dev/null @@ -1,184 +0,0 @@ - - * Enables bots to fetch information and perform actions in Hangouts Chat.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_HangoutsChat extends Google_Service -{ - - - public $spaces; - public $spaces_members; - public $spaces_messages; - - /** - * Constructs the internal representation of the HangoutsChat service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://chat.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'chat'; - - $this->spaces = new Google_Service_HangoutsChat_Resource_Spaces( - $this, - $this->serviceName, - 'spaces', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/spaces', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->spaces_members = new Google_Service_HangoutsChat_Resource_SpacesMembers( - $this, - $this->serviceName, - 'members', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/members', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->spaces_messages = new Google_Service_HangoutsChat_Resource_SpacesMessages( - $this, - $this->serviceName, - 'messages', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/messages', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'threadKey' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/ActionParameter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/ActionParameter.php deleted file mode 100644 index c55f90e8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/ActionParameter.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/ActionResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/ActionResponse.php deleted file mode 100644 index 8e6488cf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/ActionResponse.php +++ /dev/null @@ -1,39 +0,0 @@ -type = $type; - } - public function getType() - { - return $this->type; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/Annotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/Annotation.php deleted file mode 100644 index b1f3c3a3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/Annotation.php +++ /dev/null @@ -1,64 +0,0 @@ -length = $length; - } - public function getLength() - { - return $this->length; - } - public function setStartIndex($startIndex) - { - $this->startIndex = $startIndex; - } - public function getStartIndex() - { - return $this->startIndex; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - /** - * @param Google_Service_HangoutsChat_UserMentionMetadata - */ - public function setUserMention(Google_Service_HangoutsChat_UserMentionMetadata $userMention) - { - $this->userMention = $userMention; - } - /** - * @return Google_Service_HangoutsChat_UserMentionMetadata - */ - public function getUserMention() - { - return $this->userMention; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/Button.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/Button.php deleted file mode 100644 index a4877a82..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/Button.php +++ /dev/null @@ -1,53 +0,0 @@ -imageButton = $imageButton; - } - /** - * @return Google_Service_HangoutsChat_ImageButton - */ - public function getImageButton() - { - return $this->imageButton; - } - /** - * @param Google_Service_HangoutsChat_TextButton - */ - public function setTextButton(Google_Service_HangoutsChat_TextButton $textButton) - { - $this->textButton = $textButton; - } - /** - * @return Google_Service_HangoutsChat_TextButton - */ - public function getTextButton() - { - return $this->textButton; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/Card.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/Card.php deleted file mode 100644 index 0eb036f5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/Card.php +++ /dev/null @@ -1,79 +0,0 @@ -cardActions = $cardActions; - } - /** - * @return Google_Service_HangoutsChat_CardAction - */ - public function getCardActions() - { - return $this->cardActions; - } - /** - * @param Google_Service_HangoutsChat_CardHeader - */ - public function setHeader(Google_Service_HangoutsChat_CardHeader $header) - { - $this->header = $header; - } - /** - * @return Google_Service_HangoutsChat_CardHeader - */ - public function getHeader() - { - return $this->header; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_HangoutsChat_Section - */ - public function setSections($sections) - { - $this->sections = $sections; - } - /** - * @return Google_Service_HangoutsChat_Section - */ - public function getSections() - { - return $this->sections; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/CardAction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/CardAction.php deleted file mode 100644 index d4408cbd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/CardAction.php +++ /dev/null @@ -1,46 +0,0 @@ -actionLabel = $actionLabel; - } - public function getActionLabel() - { - return $this->actionLabel; - } - /** - * @param Google_Service_HangoutsChat_OnClick - */ - public function setOnClick(Google_Service_HangoutsChat_OnClick $onClick) - { - $this->onClick = $onClick; - } - /** - * @return Google_Service_HangoutsChat_OnClick - */ - public function getOnClick() - { - return $this->onClick; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/CardHeader.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/CardHeader.php deleted file mode 100644 index 276ba5d3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/CardHeader.php +++ /dev/null @@ -1,57 +0,0 @@ -imageStyle = $imageStyle; - } - public function getImageStyle() - { - return $this->imageStyle; - } - public function setImageUrl($imageUrl) - { - $this->imageUrl = $imageUrl; - } - public function getImageUrl() - { - return $this->imageUrl; - } - public function setSubtitle($subtitle) - { - $this->subtitle = $subtitle; - } - public function getSubtitle() - { - return $this->subtitle; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/ChatEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/ChatEmpty.php deleted file mode 100644 index 48e76548..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/ChatEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -action = $action; - } - /** - * @return Google_Service_HangoutsChat_FormAction - */ - public function getAction() - { - return $this->action; - } - public function setConfigCompleteRedirectUrl($configCompleteRedirectUrl) - { - $this->configCompleteRedirectUrl = $configCompleteRedirectUrl; - } - public function getConfigCompleteRedirectUrl() - { - return $this->configCompleteRedirectUrl; - } - public function setEventTime($eventTime) - { - $this->eventTime = $eventTime; - } - public function getEventTime() - { - return $this->eventTime; - } - /** - * @param Google_Service_HangoutsChat_Message - */ - public function setMessage(Google_Service_HangoutsChat_Message $message) - { - $this->message = $message; - } - /** - * @return Google_Service_HangoutsChat_Message - */ - public function getMessage() - { - return $this->message; - } - /** - * @param Google_Service_HangoutsChat_Space - */ - public function setSpace(Google_Service_HangoutsChat_Space $space) - { - $this->space = $space; - } - /** - * @return Google_Service_HangoutsChat_Space - */ - public function getSpace() - { - return $this->space; - } - public function setThreadKey($threadKey) - { - $this->threadKey = $threadKey; - } - public function getThreadKey() - { - return $this->threadKey; - } - public function setToken($token) - { - $this->token = $token; - } - public function getToken() - { - return $this->token; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - /** - * @param Google_Service_HangoutsChat_User - */ - public function setUser(Google_Service_HangoutsChat_User $user) - { - $this->user = $user; - } - /** - * @return Google_Service_HangoutsChat_User - */ - public function getUser() - { - return $this->user; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/FormAction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/FormAction.php deleted file mode 100644 index 00efdf51..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/FormAction.php +++ /dev/null @@ -1,47 +0,0 @@ -actionMethodName = $actionMethodName; - } - public function getActionMethodName() - { - return $this->actionMethodName; - } - /** - * @param Google_Service_HangoutsChat_ActionParameter - */ - public function setParameters($parameters) - { - $this->parameters = $parameters; - } - /** - * @return Google_Service_HangoutsChat_ActionParameter - */ - public function getParameters() - { - return $this->parameters; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/Image.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/Image.php deleted file mode 100644 index 56283297..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/Image.php +++ /dev/null @@ -1,55 +0,0 @@ -aspectRatio = $aspectRatio; - } - public function getAspectRatio() - { - return $this->aspectRatio; - } - public function setImageUrl($imageUrl) - { - $this->imageUrl = $imageUrl; - } - public function getImageUrl() - { - return $this->imageUrl; - } - /** - * @param Google_Service_HangoutsChat_OnClick - */ - public function setOnClick(Google_Service_HangoutsChat_OnClick $onClick) - { - $this->onClick = $onClick; - } - /** - * @return Google_Service_HangoutsChat_OnClick - */ - public function getOnClick() - { - return $this->onClick; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/ImageButton.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/ImageButton.php deleted file mode 100644 index 67497114..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/ImageButton.php +++ /dev/null @@ -1,64 +0,0 @@ -icon = $icon; - } - public function getIcon() - { - return $this->icon; - } - public function setIconUrl($iconUrl) - { - $this->iconUrl = $iconUrl; - } - public function getIconUrl() - { - return $this->iconUrl; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_HangoutsChat_OnClick - */ - public function setOnClick(Google_Service_HangoutsChat_OnClick $onClick) - { - $this->onClick = $onClick; - } - /** - * @return Google_Service_HangoutsChat_OnClick - */ - public function getOnClick() - { - return $this->onClick; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/KeyValue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/KeyValue.php deleted file mode 100644 index 3369f7c2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/KeyValue.php +++ /dev/null @@ -1,107 +0,0 @@ -bottomLabel = $bottomLabel; - } - public function getBottomLabel() - { - return $this->bottomLabel; - } - /** - * @param Google_Service_HangoutsChat_Button - */ - public function setButton(Google_Service_HangoutsChat_Button $button) - { - $this->button = $button; - } - /** - * @return Google_Service_HangoutsChat_Button - */ - public function getButton() - { - return $this->button; - } - public function setContent($content) - { - $this->content = $content; - } - public function getContent() - { - return $this->content; - } - public function setContentMultiline($contentMultiline) - { - $this->contentMultiline = $contentMultiline; - } - public function getContentMultiline() - { - return $this->contentMultiline; - } - public function setIcon($icon) - { - $this->icon = $icon; - } - public function getIcon() - { - return $this->icon; - } - public function setIconUrl($iconUrl) - { - $this->iconUrl = $iconUrl; - } - public function getIconUrl() - { - return $this->iconUrl; - } - /** - * @param Google_Service_HangoutsChat_OnClick - */ - public function setOnClick(Google_Service_HangoutsChat_OnClick $onClick) - { - $this->onClick = $onClick; - } - /** - * @return Google_Service_HangoutsChat_OnClick - */ - public function getOnClick() - { - return $this->onClick; - } - public function setTopLabel($topLabel) - { - $this->topLabel = $topLabel; - } - public function getTopLabel() - { - return $this->topLabel; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/ListMembershipsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/ListMembershipsResponse.php deleted file mode 100644 index 29c59093..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/ListMembershipsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -memberships = $memberships; - } - /** - * @return Google_Service_HangoutsChat_Membership - */ - public function getMemberships() - { - return $this->memberships; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/ListSpacesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/ListSpacesResponse.php deleted file mode 100644 index c1660424..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/ListSpacesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_HangoutsChat_Space - */ - public function setSpaces($spaces) - { - $this->spaces = $spaces; - } - /** - * @return Google_Service_HangoutsChat_Space - */ - public function getSpaces() - { - return $this->spaces; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/Membership.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/Membership.php deleted file mode 100644 index f7a1d75d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/Membership.php +++ /dev/null @@ -1,64 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - /** - * @param Google_Service_HangoutsChat_User - */ - public function setMember(Google_Service_HangoutsChat_User $member) - { - $this->member = $member; - } - /** - * @return Google_Service_HangoutsChat_User - */ - public function getMember() - { - return $this->member; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/Message.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/Message.php deleted file mode 100644 index c51edcac..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/Message.php +++ /dev/null @@ -1,172 +0,0 @@ -actionResponse = $actionResponse; - } - /** - * @return Google_Service_HangoutsChat_ActionResponse - */ - public function getActionResponse() - { - return $this->actionResponse; - } - /** - * @param Google_Service_HangoutsChat_Annotation - */ - public function setAnnotations($annotations) - { - $this->annotations = $annotations; - } - /** - * @return Google_Service_HangoutsChat_Annotation - */ - public function getAnnotations() - { - return $this->annotations; - } - public function setArgumentText($argumentText) - { - $this->argumentText = $argumentText; - } - public function getArgumentText() - { - return $this->argumentText; - } - /** - * @param Google_Service_HangoutsChat_Card - */ - public function setCards($cards) - { - $this->cards = $cards; - } - /** - * @return Google_Service_HangoutsChat_Card - */ - public function getCards() - { - return $this->cards; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setFallbackText($fallbackText) - { - $this->fallbackText = $fallbackText; - } - public function getFallbackText() - { - return $this->fallbackText; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPreviewText($previewText) - { - $this->previewText = $previewText; - } - public function getPreviewText() - { - return $this->previewText; - } - /** - * @param Google_Service_HangoutsChat_User - */ - public function setSender(Google_Service_HangoutsChat_User $sender) - { - $this->sender = $sender; - } - /** - * @return Google_Service_HangoutsChat_User - */ - public function getSender() - { - return $this->sender; - } - /** - * @param Google_Service_HangoutsChat_Space - */ - public function setSpace(Google_Service_HangoutsChat_Space $space) - { - $this->space = $space; - } - /** - * @return Google_Service_HangoutsChat_Space - */ - public function getSpace() - { - return $this->space; - } - public function setText($text) - { - $this->text = $text; - } - public function getText() - { - return $this->text; - } - /** - * @param Google_Service_HangoutsChat_Thread - */ - public function setThread(Google_Service_HangoutsChat_Thread $thread) - { - $this->thread = $thread; - } - /** - * @return Google_Service_HangoutsChat_Thread - */ - public function getThread() - { - return $this->thread; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/OnClick.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/OnClick.php deleted file mode 100644 index 7916fb19..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/OnClick.php +++ /dev/null @@ -1,53 +0,0 @@ -action = $action; - } - /** - * @return Google_Service_HangoutsChat_FormAction - */ - public function getAction() - { - return $this->action; - } - /** - * @param Google_Service_HangoutsChat_OpenLink - */ - public function setOpenLink(Google_Service_HangoutsChat_OpenLink $openLink) - { - $this->openLink = $openLink; - } - /** - * @return Google_Service_HangoutsChat_OpenLink - */ - public function getOpenLink() - { - return $this->openLink; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/OpenLink.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/OpenLink.php deleted file mode 100644 index 11c5075c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/OpenLink.php +++ /dev/null @@ -1,30 +0,0 @@ -url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/Resource/Spaces.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/Resource/Spaces.php deleted file mode 100644 index 3c8918b6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/Resource/Spaces.php +++ /dev/null @@ -1,62 +0,0 @@ - - * $chatService = new Google_Service_HangoutsChat(...); - * $spaces = $chatService->spaces; - * - */ -class Google_Service_HangoutsChat_Resource_Spaces extends Google_Service_Resource -{ - /** - * Returns a space. (spaces.get) - * - * @param string $name Required. Resource name of the space, in the form - * "spaces". - * - * Example: spaces/AAAAMpdlehY - * @param array $optParams Optional parameters. - * @return Google_Service_HangoutsChat_Space - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_HangoutsChat_Space"); - } - /** - * Lists spaces the caller is a member of. (spaces.listSpaces) - * - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A token identifying a page of results the server - * should return. - * @opt_param int pageSize Requested page size. The value is capped at 1000. - * Server may return fewer results than requested. If unspecified, server will - * default to 100. - * @return Google_Service_HangoutsChat_ListSpacesResponse - */ - public function listSpaces($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_HangoutsChat_ListSpacesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/Resource/SpacesMembers.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/Resource/SpacesMembers.php deleted file mode 100644 index 13e701e4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/Resource/SpacesMembers.php +++ /dev/null @@ -1,66 +0,0 @@ - - * $chatService = new Google_Service_HangoutsChat(...); - * $members = $chatService->members; - * - */ -class Google_Service_HangoutsChat_Resource_SpacesMembers extends Google_Service_Resource -{ - /** - * Returns a membership. (members.get) - * - * @param string $name Required. Resource name of the membership to be - * retrieved, in the form "spaces/members". - * - * Example: spaces/AAAAMpdlehY/members/105115627578887013105 - * @param array $optParams Optional parameters. - * @return Google_Service_HangoutsChat_Membership - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_HangoutsChat_Membership"); - } - /** - * Lists human memberships in a space. (members.listSpacesMembers) - * - * @param string $parent Required. The resource name of the space for which - * membership list is to be fetched, in the form "spaces". - * - * Example: spaces/AAAAMpdlehY - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A token identifying a page of results the server - * should return. - * @opt_param int pageSize Requested page size. The value is capped at 1000. - * Server may return fewer results than requested. If unspecified, server will - * default to 100. - * @return Google_Service_HangoutsChat_ListMembershipsResponse - */ - public function listSpacesMembers($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_HangoutsChat_ListMembershipsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/Resource/SpacesMessages.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/Resource/SpacesMessages.php deleted file mode 100644 index 11cb1fbe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/Resource/SpacesMessages.php +++ /dev/null @@ -1,106 +0,0 @@ - - * $chatService = new Google_Service_HangoutsChat(...); - * $messages = $chatService->messages; - * - */ -class Google_Service_HangoutsChat_Resource_SpacesMessages extends Google_Service_Resource -{ - /** - * Creates a message. (messages.create) - * - * @param string $parent Required. Space resource name, in the form "spaces". - * Example: spaces/AAAAMpdlehY - * @param Google_Service_HangoutsChat_Message $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string threadKey Opaque thread identifier string that can be - * specified to group messages into a single thread. If this is the first - * message with a given thread identifier, a new thread is created. Subsequent - * messages with the same thread identifier will be posted into the same thread. - * This relieves bots and webhooks from having to store the Hangouts Chat thread - * ID of a thread (created earlier by them) to post further updates to it. - * - * Has no effect if thread field, corresponding to an existing thread, is set in - * message. - * @return Google_Service_HangoutsChat_Message - */ - public function create($parent, Google_Service_HangoutsChat_Message $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_HangoutsChat_Message"); - } - /** - * Deletes a message. (messages.delete) - * - * @param string $name Required. Resource name of the message to be deleted, in - * the form "spaces/messages" - * - * Example: spaces/AAAAMpdlehY/messages/UMxbHmzDlr4.UMxbHmzDlr4 - * @param array $optParams Optional parameters. - * @return Google_Service_HangoutsChat_ChatEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_HangoutsChat_ChatEmpty"); - } - /** - * Returns a message. (messages.get) - * - * @param string $name Required. Resource name of the message to be retrieved, - * in the form "spaces/messages". - * - * Example: spaces/AAAAMpdlehY/messages/UMxbHmzDlr4.UMxbHmzDlr4 - * @param array $optParams Optional parameters. - * @return Google_Service_HangoutsChat_Message - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_HangoutsChat_Message"); - } - /** - * Updates a message. (messages.update) - * - * @param string $name Resource name, in the form "spaces/messages". - * - * Example: spaces/AAAAMpdlehY/messages/UMxbHmzDlr4.UMxbHmzDlr4 - * @param Google_Service_HangoutsChat_Message $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Required. The field paths to be updated, comma - * separated if there are multiple. - * - * Currently supported field paths: * text * cards - * @return Google_Service_HangoutsChat_Message - */ - public function update($name, Google_Service_HangoutsChat_Message $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_HangoutsChat_Message"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/Section.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/Section.php deleted file mode 100644 index 21ae1cdc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/Section.php +++ /dev/null @@ -1,47 +0,0 @@ -header = $header; - } - public function getHeader() - { - return $this->header; - } - /** - * @param Google_Service_HangoutsChat_WidgetMarkup - */ - public function setWidgets($widgets) - { - $this->widgets = $widgets; - } - /** - * @return Google_Service_HangoutsChat_WidgetMarkup - */ - public function getWidgets() - { - return $this->widgets; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/Space.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/Space.php deleted file mode 100644 index 462c989f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/Space.php +++ /dev/null @@ -1,48 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/TextButton.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/TextButton.php deleted file mode 100644 index 33449adf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/TextButton.php +++ /dev/null @@ -1,46 +0,0 @@ -onClick = $onClick; - } - /** - * @return Google_Service_HangoutsChat_OnClick - */ - public function getOnClick() - { - return $this->onClick; - } - public function setText($text) - { - $this->text = $text; - } - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/TextParagraph.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/TextParagraph.php deleted file mode 100644 index 43720806..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/TextParagraph.php +++ /dev/null @@ -1,30 +0,0 @@ -text = $text; - } - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/Thread.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/Thread.php deleted file mode 100644 index adf29959..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/Thread.php +++ /dev/null @@ -1,30 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/User.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/User.php deleted file mode 100644 index aa26654c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/User.php +++ /dev/null @@ -1,48 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/UserMentionMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/UserMentionMetadata.php deleted file mode 100644 index 903f0c71..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/UserMentionMetadata.php +++ /dev/null @@ -1,46 +0,0 @@ -type = $type; - } - public function getType() - { - return $this->type; - } - /** - * @param Google_Service_HangoutsChat_User - */ - public function setUser(Google_Service_HangoutsChat_User $user) - { - $this->user = $user; - } - /** - * @return Google_Service_HangoutsChat_User - */ - public function getUser() - { - return $this->user; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/WidgetMarkup.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/WidgetMarkup.php deleted file mode 100644 index ad5b5ab1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HangoutsChat/WidgetMarkup.php +++ /dev/null @@ -1,86 +0,0 @@ -buttons = $buttons; - } - /** - * @return Google_Service_HangoutsChat_Button - */ - public function getButtons() - { - return $this->buttons; - } - /** - * @param Google_Service_HangoutsChat_Image - */ - public function setImage(Google_Service_HangoutsChat_Image $image) - { - $this->image = $image; - } - /** - * @return Google_Service_HangoutsChat_Image - */ - public function getImage() - { - return $this->image; - } - /** - * @param Google_Service_HangoutsChat_KeyValue - */ - public function setKeyValue(Google_Service_HangoutsChat_KeyValue $keyValue) - { - $this->keyValue = $keyValue; - } - /** - * @return Google_Service_HangoutsChat_KeyValue - */ - public function getKeyValue() - { - return $this->keyValue; - } - /** - * @param Google_Service_HangoutsChat_TextParagraph - */ - public function setTextParagraph(Google_Service_HangoutsChat_TextParagraph $textParagraph) - { - $this->textParagraph = $textParagraph; - } - /** - * @return Google_Service_HangoutsChat_TextParagraph - */ - public function getTextParagraph() - { - return $this->textParagraph; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService.php deleted file mode 100644 index 83a93dd5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService.php +++ /dev/null @@ -1,104 +0,0 @@ - -

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_HomeGraphService extends Google_Service -{ - - - public $agentUsers; - public $devices; - - /** - * Constructs the internal representation of the HomeGraphService service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://homegraph.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'homegraph'; - - $this->agentUsers = new Google_Service_HomeGraphService_Resource_AgentUsers( - $this, - $this->serviceName, - 'agentUsers', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'v1/{+agentUserId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'agentUserId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->devices = new Google_Service_HomeGraphService_Resource_Devices( - $this, - $this->serviceName, - 'devices', - array( - 'methods' => array( - 'query' => array( - 'path' => 'v1/devices:query', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'reportStateAndNotification' => array( - 'path' => 'v1/devices:reportStateAndNotification', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'requestSync' => array( - 'path' => 'v1/devices:requestSync', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'sync' => array( - 'path' => 'v1/devices:sync', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/AgentDeviceId.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/AgentDeviceId.php deleted file mode 100644 index cdae7c35..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/AgentDeviceId.php +++ /dev/null @@ -1,30 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/AgentOtherDeviceId.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/AgentOtherDeviceId.php deleted file mode 100644 index 61d05e0f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/AgentOtherDeviceId.php +++ /dev/null @@ -1,39 +0,0 @@ -agentId = $agentId; - } - public function getAgentId() - { - return $this->agentId; - } - public function setDeviceId($deviceId) - { - $this->deviceId = $deviceId; - } - public function getDeviceId() - { - return $this->deviceId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/Device.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/Device.php deleted file mode 100644 index 29980b70..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/Device.php +++ /dev/null @@ -1,151 +0,0 @@ -attributes = $attributes; - } - public function getAttributes() - { - return $this->attributes; - } - public function setCustomData($customData) - { - $this->customData = $customData; - } - public function getCustomData() - { - return $this->customData; - } - /** - * @param Google_Service_HomeGraphService_DeviceInfo - */ - public function setDeviceInfo(Google_Service_HomeGraphService_DeviceInfo $deviceInfo) - { - $this->deviceInfo = $deviceInfo; - } - /** - * @return Google_Service_HomeGraphService_DeviceInfo - */ - public function getDeviceInfo() - { - return $this->deviceInfo; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_HomeGraphService_DeviceNames - */ - public function setName(Google_Service_HomeGraphService_DeviceNames $name) - { - $this->name = $name; - } - /** - * @return Google_Service_HomeGraphService_DeviceNames - */ - public function getName() - { - return $this->name; - } - public function setNotificationSupportedByAgent($notificationSupportedByAgent) - { - $this->notificationSupportedByAgent = $notificationSupportedByAgent; - } - public function getNotificationSupportedByAgent() - { - return $this->notificationSupportedByAgent; - } - /** - * @param Google_Service_HomeGraphService_AgentOtherDeviceId - */ - public function setOtherDeviceIds($otherDeviceIds) - { - $this->otherDeviceIds = $otherDeviceIds; - } - /** - * @return Google_Service_HomeGraphService_AgentOtherDeviceId - */ - public function getOtherDeviceIds() - { - return $this->otherDeviceIds; - } - public function setRoomHint($roomHint) - { - $this->roomHint = $roomHint; - } - public function getRoomHint() - { - return $this->roomHint; - } - public function setStructureHint($structureHint) - { - $this->structureHint = $structureHint; - } - public function getStructureHint() - { - return $this->structureHint; - } - public function setTraits($traits) - { - $this->traits = $traits; - } - public function getTraits() - { - return $this->traits; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setWillReportState($willReportState) - { - $this->willReportState = $willReportState; - } - public function getWillReportState() - { - return $this->willReportState; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/DeviceInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/DeviceInfo.php deleted file mode 100644 index ef6583d9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/DeviceInfo.php +++ /dev/null @@ -1,57 +0,0 @@ -hwVersion = $hwVersion; - } - public function getHwVersion() - { - return $this->hwVersion; - } - public function setManufacturer($manufacturer) - { - $this->manufacturer = $manufacturer; - } - public function getManufacturer() - { - return $this->manufacturer; - } - public function setModel($model) - { - $this->model = $model; - } - public function getModel() - { - return $this->model; - } - public function setSwVersion($swVersion) - { - $this->swVersion = $swVersion; - } - public function getSwVersion() - { - return $this->swVersion; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/DeviceNames.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/DeviceNames.php deleted file mode 100644 index 83ce84e1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/DeviceNames.php +++ /dev/null @@ -1,49 +0,0 @@ -defaultNames = $defaultNames; - } - public function getDefaultNames() - { - return $this->defaultNames; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNicknames($nicknames) - { - $this->nicknames = $nicknames; - } - public function getNicknames() - { - return $this->nicknames; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/HomegraphEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/HomegraphEmpty.php deleted file mode 100644 index fe6ee052..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/HomegraphEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -agentUserId = $agentUserId; - } - public function getAgentUserId() - { - return $this->agentUserId; - } - /** - * @param Google_Service_HomeGraphService_QueryRequestInput - */ - public function setInputs($inputs) - { - $this->inputs = $inputs; - } - /** - * @return Google_Service_HomeGraphService_QueryRequestInput - */ - public function getInputs() - { - return $this->inputs; - } - public function setRequestId($requestId) - { - $this->requestId = $requestId; - } - public function getRequestId() - { - return $this->requestId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/QueryRequestInput.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/QueryRequestInput.php deleted file mode 100644 index 8c1ce7e2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/QueryRequestInput.php +++ /dev/null @@ -1,37 +0,0 @@ -payload = $payload; - } - /** - * @return Google_Service_HomeGraphService_QueryRequestPayload - */ - public function getPayload() - { - return $this->payload; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/QueryRequestPayload.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/QueryRequestPayload.php deleted file mode 100644 index 0c19ee5b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/QueryRequestPayload.php +++ /dev/null @@ -1,38 +0,0 @@ -devices = $devices; - } - /** - * @return Google_Service_HomeGraphService_AgentDeviceId - */ - public function getDevices() - { - return $this->devices; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/QueryResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/QueryResponse.php deleted file mode 100644 index 6ee976db..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/QueryResponse.php +++ /dev/null @@ -1,46 +0,0 @@ -payload = $payload; - } - /** - * @return Google_Service_HomeGraphService_QueryResponsePayload - */ - public function getPayload() - { - return $this->payload; - } - public function setRequestId($requestId) - { - $this->requestId = $requestId; - } - public function getRequestId() - { - return $this->requestId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/QueryResponsePayload.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/QueryResponsePayload.php deleted file mode 100644 index 8b850831..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/QueryResponsePayload.php +++ /dev/null @@ -1,30 +0,0 @@ -devices = $devices; - } - public function getDevices() - { - return $this->devices; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/ReportStateAndNotificationDevice.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/ReportStateAndNotificationDevice.php deleted file mode 100644 index 149af1da..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/ReportStateAndNotificationDevice.php +++ /dev/null @@ -1,39 +0,0 @@ -notifications = $notifications; - } - public function getNotifications() - { - return $this->notifications; - } - public function setStates($states) - { - $this->states = $states; - } - public function getStates() - { - return $this->states; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/ReportStateAndNotificationRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/ReportStateAndNotificationRequest.php deleted file mode 100644 index 66865165..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/ReportStateAndNotificationRequest.php +++ /dev/null @@ -1,73 +0,0 @@ -agentUserId = $agentUserId; - } - public function getAgentUserId() - { - return $this->agentUserId; - } - public function setEventId($eventId) - { - $this->eventId = $eventId; - } - public function getEventId() - { - return $this->eventId; - } - public function setFollowUpToken($followUpToken) - { - $this->followUpToken = $followUpToken; - } - public function getFollowUpToken() - { - return $this->followUpToken; - } - /** - * @param Google_Service_HomeGraphService_StateAndNotificationPayload - */ - public function setPayload(Google_Service_HomeGraphService_StateAndNotificationPayload $payload) - { - $this->payload = $payload; - } - /** - * @return Google_Service_HomeGraphService_StateAndNotificationPayload - */ - public function getPayload() - { - return $this->payload; - } - public function setRequestId($requestId) - { - $this->requestId = $requestId; - } - public function getRequestId() - { - return $this->requestId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/ReportStateAndNotificationResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/ReportStateAndNotificationResponse.php deleted file mode 100644 index f158faae..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/ReportStateAndNotificationResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -requestId = $requestId; - } - public function getRequestId() - { - return $this->requestId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/RequestSyncDevicesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/RequestSyncDevicesRequest.php deleted file mode 100644 index c228246d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/RequestSyncDevicesRequest.php +++ /dev/null @@ -1,39 +0,0 @@ -agentUserId = $agentUserId; - } - public function getAgentUserId() - { - return $this->agentUserId; - } - public function setAsync($async) - { - $this->async = $async; - } - public function getAsync() - { - return $this->async; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/RequestSyncDevicesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/RequestSyncDevicesResponse.php deleted file mode 100644 index d7ac8bfb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/RequestSyncDevicesResponse.php +++ /dev/null @@ -1,20 +0,0 @@ - - * $homegraphService = new Google_Service_HomeGraphService(...); - * $agentUsers = $homegraphService->agentUsers; - * - */ -class Google_Service_HomeGraphService_Resource_AgentUsers extends Google_Service_Resource -{ - /** - * Unlinks an agent user from Google. As a result, all data related to this user - * will be deleted. - * - * Here is how the agent user is created in Google: - * - * 1. When a user opens their Google Home App, they can begin linking a 3p - * partner. 2. User is guided through the OAuth process. 3. After entering the - * 3p credentials, Google gets the 3p OAuth token and uses it to make a Sync - * call to the 3p partner and gets back all of the user's data, including - * `agent_user_id` and devices. 4. Google creates the agent user and stores a - * mapping from the `agent_user_id` -> Google ID mapping. Google also - * stores all of the user's devices under that Google ID. - * - * The mapping from `agent_user_id` to Google ID is many to many, since one - * Google user can have multiple 3p accounts, and multiple Google users can map - * to one `agent_user_id` (e.g., a husband and wife share one Nest account - * username/password). - * - * The third-party user's identity is passed in as `agent_user_id`. The agent is - * identified by the JWT signed by the partner's service account. - * - * Note: Special characters (except "/") in `agent_user_id` must be URL-encoded. - * (agentUsers.delete) - * - * @param string $agentUserId Required. Third-party user ID. - * @param array $optParams Optional parameters. - * - * @opt_param string requestId Request ID used for debugging. - * @return Google_Service_HomeGraphService_HomegraphEmpty - */ - public function delete($agentUserId, $optParams = array()) - { - $params = array('agentUserId' => $agentUserId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_HomeGraphService_HomegraphEmpty"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/Resource/Devices.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/Resource/Devices.php deleted file mode 100644 index 082d0b7f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/Resource/Devices.php +++ /dev/null @@ -1,104 +0,0 @@ - - * $homegraphService = new Google_Service_HomeGraphService(...); - * $devices = $homegraphService->devices; - * - */ -class Google_Service_HomeGraphService_Resource_Devices extends Google_Service_Resource -{ - /** - * Gets the device states for the devices in QueryRequest. The third-party - * user's identity is passed in as `agent_user_id`. The agent is identified by - * the JWT signed by the third-party partner's service account. (devices.query) - * - * @param Google_Service_HomeGraphService_QueryRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_HomeGraphService_QueryResponse - */ - public function query(Google_Service_HomeGraphService_QueryRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('query', array($params), "Google_Service_HomeGraphService_QueryResponse"); - } - /** - * Reports device state and optionally sends device notifications. Called by an - * agent when the device state of a third-party changes or the agent wants to - * send a notification about the device. See [Implement Report - * State](/actions/smarthome/report-state) for more information. This method - * updates a predefined set of states for a device, which all devices have - * according to their prescribed traits (for example, a light will have the - * [OnOff](/actions/smarthome/traits/onoff) trait that reports the state `on` as - * a boolean value). A new state may not be created and an INVALID_ARGUMENT code - * will be thrown if so. It also optionally takes in a list of Notifications - * that may be created, which are associated to this state change. - * - * The third-party user's identity is passed in as `agent_user_id`. The agent is - * identified by the JWT signed by the partner's service account. - * (devices.reportStateAndNotification) - * - * @param Google_Service_HomeGraphService_ReportStateAndNotificationRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_HomeGraphService_ReportStateAndNotificationResponse - */ - public function reportStateAndNotification(Google_Service_HomeGraphService_ReportStateAndNotificationRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('reportStateAndNotification', array($params), "Google_Service_HomeGraphService_ReportStateAndNotificationResponse"); - } - /** - * Requests a `SYNC` call from Google to a 3p partner's home control agent for a - * user. - * - * The third-party user's identity is passed in as `agent_user_id` (see - * RequestSyncDevicesRequest) and forwarded back to the agent. The agent is - * identified by the API key or JWT signed by the partner's service account. - * (devices.requestSync) - * - * @param Google_Service_HomeGraphService_RequestSyncDevicesRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_HomeGraphService_RequestSyncDevicesResponse - */ - public function requestSync(Google_Service_HomeGraphService_RequestSyncDevicesRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('requestSync', array($params), "Google_Service_HomeGraphService_RequestSyncDevicesResponse"); - } - /** - * Gets all the devices associated with the given third-party user. The third- - * party user's identity is passed in as `agent_user_id`. The agent is - * identified by the JWT signed by the third-party partner's service account. - * (devices.sync) - * - * @param Google_Service_HomeGraphService_SyncRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_HomeGraphService_SyncResponse - */ - public function sync(Google_Service_HomeGraphService_SyncRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('sync', array($params), "Google_Service_HomeGraphService_SyncResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/StateAndNotificationPayload.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/StateAndNotificationPayload.php deleted file mode 100644 index d8fdc9cf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/StateAndNotificationPayload.php +++ /dev/null @@ -1,37 +0,0 @@ -devices = $devices; - } - /** - * @return Google_Service_HomeGraphService_ReportStateAndNotificationDevice - */ - public function getDevices() - { - return $this->devices; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/SyncRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/SyncRequest.php deleted file mode 100644 index 297b15cf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/SyncRequest.php +++ /dev/null @@ -1,39 +0,0 @@ -agentUserId = $agentUserId; - } - public function getAgentUserId() - { - return $this->agentUserId; - } - public function setRequestId($requestId) - { - $this->requestId = $requestId; - } - public function getRequestId() - { - return $this->requestId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/SyncResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/SyncResponse.php deleted file mode 100644 index cf8d0bd5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/SyncResponse.php +++ /dev/null @@ -1,46 +0,0 @@ -payload = $payload; - } - /** - * @return Google_Service_HomeGraphService_SyncResponsePayload - */ - public function getPayload() - { - return $this->payload; - } - public function setRequestId($requestId) - { - $this->requestId = $requestId; - } - public function getRequestId() - { - return $this->requestId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/SyncResponsePayload.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/SyncResponsePayload.php deleted file mode 100644 index 708c27cd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/HomeGraphService/SyncResponsePayload.php +++ /dev/null @@ -1,47 +0,0 @@ -agentUserId = $agentUserId; - } - public function getAgentUserId() - { - return $this->agentUserId; - } - /** - * @param Google_Service_HomeGraphService_Device - */ - public function setDevices($devices) - { - $this->devices = $devices; - } - /** - * @return Google_Service_HomeGraphService_Device - */ - public function getDevices() - { - return $this->devices; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IAMCredentials.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IAMCredentials.php deleted file mode 100644 index 29d1b74d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IAMCredentials.php +++ /dev/null @@ -1,105 +0,0 @@ - - * Creates short-lived, limited-privilege credentials for IAM service accounts.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_IAMCredentials extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - - public $projects_serviceAccounts; - - /** - * Constructs the internal representation of the IAMCredentials service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://iamcredentials.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'iamcredentials'; - - $this->projects_serviceAccounts = new Google_Service_IAMCredentials_Resource_ProjectsServiceAccounts( - $this, - $this->serviceName, - 'serviceAccounts', - array( - 'methods' => array( - 'generateAccessToken' => array( - 'path' => 'v1/{+name}:generateAccessToken', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'generateIdToken' => array( - 'path' => 'v1/{+name}:generateIdToken', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'signBlob' => array( - 'path' => 'v1/{+name}:signBlob', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'signJwt' => array( - 'path' => 'v1/{+name}:signJwt', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IAMCredentials/GenerateAccessTokenRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IAMCredentials/GenerateAccessTokenRequest.php deleted file mode 100644 index 17b21874..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IAMCredentials/GenerateAccessTokenRequest.php +++ /dev/null @@ -1,49 +0,0 @@ -delegates = $delegates; - } - public function getDelegates() - { - return $this->delegates; - } - public function setLifetime($lifetime) - { - $this->lifetime = $lifetime; - } - public function getLifetime() - { - return $this->lifetime; - } - public function setScope($scope) - { - $this->scope = $scope; - } - public function getScope() - { - return $this->scope; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IAMCredentials/GenerateAccessTokenResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IAMCredentials/GenerateAccessTokenResponse.php deleted file mode 100644 index 1d3af875..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IAMCredentials/GenerateAccessTokenResponse.php +++ /dev/null @@ -1,39 +0,0 @@ -accessToken = $accessToken; - } - public function getAccessToken() - { - return $this->accessToken; - } - public function setExpireTime($expireTime) - { - $this->expireTime = $expireTime; - } - public function getExpireTime() - { - return $this->expireTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IAMCredentials/GenerateIdTokenRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IAMCredentials/GenerateIdTokenRequest.php deleted file mode 100644 index e3d6bb62..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IAMCredentials/GenerateIdTokenRequest.php +++ /dev/null @@ -1,49 +0,0 @@ -audience = $audience; - } - public function getAudience() - { - return $this->audience; - } - public function setDelegates($delegates) - { - $this->delegates = $delegates; - } - public function getDelegates() - { - return $this->delegates; - } - public function setIncludeEmail($includeEmail) - { - $this->includeEmail = $includeEmail; - } - public function getIncludeEmail() - { - return $this->includeEmail; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IAMCredentials/GenerateIdTokenResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IAMCredentials/GenerateIdTokenResponse.php deleted file mode 100644 index f4a044e9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IAMCredentials/GenerateIdTokenResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -token = $token; - } - public function getToken() - { - return $this->token; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IAMCredentials/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IAMCredentials/Resource/Projects.php deleted file mode 100644 index 688caada..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IAMCredentials/Resource/Projects.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $iamcredentialsService = new Google_Service_IAMCredentials(...); - * $projects = $iamcredentialsService->projects; - * - */ -class Google_Service_IAMCredentials_Resource_Projects extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IAMCredentials/Resource/ProjectsServiceAccounts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IAMCredentials/Resource/ProjectsServiceAccounts.php deleted file mode 100644 index d6bac30c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IAMCredentials/Resource/ProjectsServiceAccounts.php +++ /dev/null @@ -1,100 +0,0 @@ - - * $iamcredentialsService = new Google_Service_IAMCredentials(...); - * $serviceAccounts = $iamcredentialsService->serviceAccounts; - * - */ -class Google_Service_IAMCredentials_Resource_ProjectsServiceAccounts extends Google_Service_Resource -{ - /** - * Generates an OAuth 2.0 access token for a service account. - * (serviceAccounts.generateAccessToken) - * - * @param string $name Required. The resource name of the service account for - * which the credentials are requested, in the following format: - * `projects/-/serviceAccounts/{ACCOUNT_EMAIL_OR_UNIQUEID}`. The `-` wildcard - * character is required; replacing it with a project ID is invalid. - * @param Google_Service_IAMCredentials_GenerateAccessTokenRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_IAMCredentials_GenerateAccessTokenResponse - */ - public function generateAccessToken($name, Google_Service_IAMCredentials_GenerateAccessTokenRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('generateAccessToken', array($params), "Google_Service_IAMCredentials_GenerateAccessTokenResponse"); - } - /** - * Generates an OpenID Connect ID token for a service account. - * (serviceAccounts.generateIdToken) - * - * @param string $name Required. The resource name of the service account for - * which the credentials are requested, in the following format: - * `projects/-/serviceAccounts/{ACCOUNT_EMAIL_OR_UNIQUEID}`. The `-` wildcard - * character is required; replacing it with a project ID is invalid. - * @param Google_Service_IAMCredentials_GenerateIdTokenRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_IAMCredentials_GenerateIdTokenResponse - */ - public function generateIdToken($name, Google_Service_IAMCredentials_GenerateIdTokenRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('generateIdToken', array($params), "Google_Service_IAMCredentials_GenerateIdTokenResponse"); - } - /** - * Signs a blob using a service account's system-managed private key. - * (serviceAccounts.signBlob) - * - * @param string $name Required. The resource name of the service account for - * which the credentials are requested, in the following format: - * `projects/-/serviceAccounts/{ACCOUNT_EMAIL_OR_UNIQUEID}`. The `-` wildcard - * character is required; replacing it with a project ID is invalid. - * @param Google_Service_IAMCredentials_SignBlobRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_IAMCredentials_SignBlobResponse - */ - public function signBlob($name, Google_Service_IAMCredentials_SignBlobRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('signBlob', array($params), "Google_Service_IAMCredentials_SignBlobResponse"); - } - /** - * Signs a JWT using a service account's system-managed private key. - * (serviceAccounts.signJwt) - * - * @param string $name Required. The resource name of the service account for - * which the credentials are requested, in the following format: - * `projects/-/serviceAccounts/{ACCOUNT_EMAIL_OR_UNIQUEID}`. The `-` wildcard - * character is required; replacing it with a project ID is invalid. - * @param Google_Service_IAMCredentials_SignJwtRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_IAMCredentials_SignJwtResponse - */ - public function signJwt($name, Google_Service_IAMCredentials_SignJwtRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('signJwt', array($params), "Google_Service_IAMCredentials_SignJwtResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IAMCredentials/SignBlobRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IAMCredentials/SignBlobRequest.php deleted file mode 100644 index 0a12e884..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IAMCredentials/SignBlobRequest.php +++ /dev/null @@ -1,40 +0,0 @@ -delegates = $delegates; - } - public function getDelegates() - { - return $this->delegates; - } - public function setPayload($payload) - { - $this->payload = $payload; - } - public function getPayload() - { - return $this->payload; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IAMCredentials/SignBlobResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IAMCredentials/SignBlobResponse.php deleted file mode 100644 index f2bf534a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IAMCredentials/SignBlobResponse.php +++ /dev/null @@ -1,39 +0,0 @@ -keyId = $keyId; - } - public function getKeyId() - { - return $this->keyId; - } - public function setSignedBlob($signedBlob) - { - $this->signedBlob = $signedBlob; - } - public function getSignedBlob() - { - return $this->signedBlob; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IAMCredentials/SignJwtRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IAMCredentials/SignJwtRequest.php deleted file mode 100644 index c3768861..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IAMCredentials/SignJwtRequest.php +++ /dev/null @@ -1,40 +0,0 @@ -delegates = $delegates; - } - public function getDelegates() - { - return $this->delegates; - } - public function setPayload($payload) - { - $this->payload = $payload; - } - public function getPayload() - { - return $this->payload; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IAMCredentials/SignJwtResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IAMCredentials/SignJwtResponse.php deleted file mode 100644 index 25da5802..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IAMCredentials/SignJwtResponse.php +++ /dev/null @@ -1,39 +0,0 @@ -keyId = $keyId; - } - public function getKeyId() - { - return $this->keyId; - } - public function setSignedJwt($signedJwt) - { - $this->signedJwt = $signedJwt; - } - public function getSignedJwt() - { - return $this->signedJwt; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam.php deleted file mode 100644 index fee422b1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam.php +++ /dev/null @@ -1,563 +0,0 @@ - - * Manages identity and access control for Google Cloud Platform resources, - * including the creation of service accounts, which you can use to authenticate - * to Google and make API calls.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Iam extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - - public $iamPolicies; - public $organizations_roles; - public $permissions; - public $projects_roles; - public $projects_serviceAccounts; - public $projects_serviceAccounts_keys; - public $roles; - - /** - * Constructs the internal representation of the Iam service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://iam.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'iam'; - - $this->iamPolicies = new Google_Service_Iam_Resource_IamPolicies( - $this, - $this->serviceName, - 'iamPolicies', - array( - 'methods' => array( - 'lintPolicy' => array( - 'path' => 'v1/iamPolicies:lintPolicy', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'queryAuditableServices' => array( - 'path' => 'v1/iamPolicies:queryAuditableServices', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->organizations_roles = new Google_Service_Iam_Resource_OrganizationsRoles( - $this, - $this->serviceName, - 'roles', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/roles', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'etag' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/roles', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'showDeleted' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'undelete' => array( - 'path' => 'v1/{+name}:undelete', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->permissions = new Google_Service_Iam_Resource_Permissions( - $this, - $this->serviceName, - 'permissions', - array( - 'methods' => array( - 'queryTestablePermissions' => array( - 'path' => 'v1/permissions:queryTestablePermissions', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->projects_roles = new Google_Service_Iam_Resource_ProjectsRoles( - $this, - $this->serviceName, - 'roles', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/roles', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'etag' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/roles', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'showDeleted' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'undelete' => array( - 'path' => 'v1/{+name}:undelete', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_serviceAccounts = new Google_Service_Iam_Resource_ProjectsServiceAccounts( - $this, - $this->serviceName, - 'serviceAccounts', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+name}/serviceAccounts', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'disable' => array( - 'path' => 'v1/{+name}:disable', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'enable' => array( - 'path' => 'v1/{+name}:enable', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getIamPolicy' => array( - 'path' => 'v1/{+resource}:getIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'options.requestedPolicyVersion' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'list' => array( - 'path' => 'v1/{+name}/serviceAccounts', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setIamPolicy' => array( - 'path' => 'v1/{+resource}:setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'signBlob' => array( - 'path' => 'v1/{+name}:signBlob', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'signJwt' => array( - 'path' => 'v1/{+name}:signJwt', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => 'v1/{+resource}:testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'undelete' => array( - 'path' => 'v1/{+name}:undelete', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_serviceAccounts_keys = new Google_Service_Iam_Resource_ProjectsServiceAccountsKeys( - $this, - $this->serviceName, - 'keys', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+name}/keys', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'publicKeyType' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'v1/{+name}/keys', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'keyTypes' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ),'upload' => array( - 'path' => 'v1/{+name}/keys:upload', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->roles = new Google_Service_Iam_Resource_Roles( - $this, - $this->serviceName, - 'roles', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/roles', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'parent' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'showDeleted' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'queryGrantableRoles' => array( - 'path' => 'v1/roles:queryGrantableRoles', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/AdminAuditData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/AdminAuditData.php deleted file mode 100644 index be186d1f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/AdminAuditData.php +++ /dev/null @@ -1,37 +0,0 @@ -permissionDelta = $permissionDelta; - } - /** - * @return Google_Service_Iam_PermissionDelta - */ - public function getPermissionDelta() - { - return $this->permissionDelta; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/AuditConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/AuditConfig.php deleted file mode 100644 index f7e40019..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/AuditConfig.php +++ /dev/null @@ -1,47 +0,0 @@ -auditLogConfigs = $auditLogConfigs; - } - /** - * @return Google_Service_Iam_AuditLogConfig - */ - public function getAuditLogConfigs() - { - return $this->auditLogConfigs; - } - public function setService($service) - { - $this->service = $service; - } - public function getService() - { - return $this->service; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/AuditData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/AuditData.php deleted file mode 100644 index e014a08e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/AuditData.php +++ /dev/null @@ -1,37 +0,0 @@ -policyDelta = $policyDelta; - } - /** - * @return Google_Service_Iam_PolicyDelta - */ - public function getPolicyDelta() - { - return $this->policyDelta; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/AuditLogConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/AuditLogConfig.php deleted file mode 100644 index a2040cb1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/AuditLogConfig.php +++ /dev/null @@ -1,40 +0,0 @@ -exemptedMembers = $exemptedMembers; - } - public function getExemptedMembers() - { - return $this->exemptedMembers; - } - public function setLogType($logType) - { - $this->logType = $logType; - } - public function getLogType() - { - return $this->logType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/AuditableService.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/AuditableService.php deleted file mode 100644 index 632e2a0b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/AuditableService.php +++ /dev/null @@ -1,30 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/Binding.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/Binding.php deleted file mode 100644 index 68e1a083..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/Binding.php +++ /dev/null @@ -1,56 +0,0 @@ -condition = $condition; - } - /** - * @return Google_Service_Iam_Expr - */ - public function getCondition() - { - return $this->condition; - } - public function setMembers($members) - { - $this->members = $members; - } - public function getMembers() - { - return $this->members; - } - public function setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/BindingDelta.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/BindingDelta.php deleted file mode 100644 index 9b5d4f1a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/BindingDelta.php +++ /dev/null @@ -1,64 +0,0 @@ -action = $action; - } - public function getAction() - { - return $this->action; - } - /** - * @param Google_Service_Iam_Expr - */ - public function setCondition(Google_Service_Iam_Expr $condition) - { - $this->condition = $condition; - } - /** - * @return Google_Service_Iam_Expr - */ - public function getCondition() - { - return $this->condition; - } - public function setMember($member) - { - $this->member = $member; - } - public function getMember() - { - return $this->member; - } - public function setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/CreateRoleRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/CreateRoleRequest.php deleted file mode 100644 index 34131c95..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/CreateRoleRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -role = $role; - } - /** - * @return Google_Service_Iam_Role - */ - public function getRole() - { - return $this->role; - } - public function setRoleId($roleId) - { - $this->roleId = $roleId; - } - public function getRoleId() - { - return $this->roleId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/CreateServiceAccountKeyRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/CreateServiceAccountKeyRequest.php deleted file mode 100644 index 340367b9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/CreateServiceAccountKeyRequest.php +++ /dev/null @@ -1,39 +0,0 @@ -keyAlgorithm = $keyAlgorithm; - } - public function getKeyAlgorithm() - { - return $this->keyAlgorithm; - } - public function setPrivateKeyType($privateKeyType) - { - $this->privateKeyType = $privateKeyType; - } - public function getPrivateKeyType() - { - return $this->privateKeyType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/CreateServiceAccountRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/CreateServiceAccountRequest.php deleted file mode 100644 index 9d1ede83..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/CreateServiceAccountRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - /** - * @param Google_Service_Iam_ServiceAccount - */ - public function setServiceAccount(Google_Service_Iam_ServiceAccount $serviceAccount) - { - $this->serviceAccount = $serviceAccount; - } - /** - * @return Google_Service_Iam_ServiceAccount - */ - public function getServiceAccount() - { - return $this->serviceAccount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/DisableServiceAccountRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/DisableServiceAccountRequest.php deleted file mode 100644 index a75a4c6e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/DisableServiceAccountRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setExpression($expression) - { - $this->expression = $expression; - } - public function getExpression() - { - return $this->expression; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/IamEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/IamEmpty.php deleted file mode 100644 index fa31a1f9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/IamEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -condition = $condition; - } - /** - * @return Google_Service_Iam_Expr - */ - public function getCondition() - { - return $this->condition; - } - public function setFullResourceName($fullResourceName) - { - $this->fullResourceName = $fullResourceName; - } - public function getFullResourceName() - { - return $this->fullResourceName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/LintPolicyResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/LintPolicyResponse.php deleted file mode 100644 index b0dabf2d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/LintPolicyResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -lintResults = $lintResults; - } - /** - * @return Google_Service_Iam_LintResult - */ - public function getLintResults() - { - return $this->lintResults; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/LintResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/LintResult.php deleted file mode 100644 index 5b6772d1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/LintResult.php +++ /dev/null @@ -1,75 +0,0 @@ -debugMessage = $debugMessage; - } - public function getDebugMessage() - { - return $this->debugMessage; - } - public function setFieldName($fieldName) - { - $this->fieldName = $fieldName; - } - public function getFieldName() - { - return $this->fieldName; - } - public function setLevel($level) - { - $this->level = $level; - } - public function getLevel() - { - return $this->level; - } - public function setLocationOffset($locationOffset) - { - $this->locationOffset = $locationOffset; - } - public function getLocationOffset() - { - return $this->locationOffset; - } - public function setSeverity($severity) - { - $this->severity = $severity; - } - public function getSeverity() - { - return $this->severity; - } - public function setValidationUnitName($validationUnitName) - { - $this->validationUnitName = $validationUnitName; - } - public function getValidationUnitName() - { - return $this->validationUnitName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/ListRolesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/ListRolesResponse.php deleted file mode 100644 index 54e31a56..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/ListRolesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Iam_Role - */ - public function setRoles($roles) - { - $this->roles = $roles; - } - /** - * @return Google_Service_Iam_Role - */ - public function getRoles() - { - return $this->roles; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/ListServiceAccountKeysResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/ListServiceAccountKeysResponse.php deleted file mode 100644 index 91f3dc65..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/ListServiceAccountKeysResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -keys = $keys; - } - /** - * @return Google_Service_Iam_ServiceAccountKey - */ - public function getKeys() - { - return $this->keys; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/ListServiceAccountsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/ListServiceAccountsResponse.php deleted file mode 100644 index b29173cf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/ListServiceAccountsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -accounts = $accounts; - } - /** - * @return Google_Service_Iam_ServiceAccount - */ - public function getAccounts() - { - return $this->accounts; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/PatchServiceAccountRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/PatchServiceAccountRequest.php deleted file mode 100644 index 3e12cbf6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/PatchServiceAccountRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -serviceAccount = $serviceAccount; - } - /** - * @return Google_Service_Iam_ServiceAccount - */ - public function getServiceAccount() - { - return $this->serviceAccount; - } - public function setUpdateMask($updateMask) - { - $this->updateMask = $updateMask; - } - public function getUpdateMask() - { - return $this->updateMask; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/Permission.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/Permission.php deleted file mode 100644 index e846c5d3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/Permission.php +++ /dev/null @@ -1,93 +0,0 @@ -apiDisabled = $apiDisabled; - } - public function getApiDisabled() - { - return $this->apiDisabled; - } - public function setCustomRolesSupportLevel($customRolesSupportLevel) - { - $this->customRolesSupportLevel = $customRolesSupportLevel; - } - public function getCustomRolesSupportLevel() - { - return $this->customRolesSupportLevel; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOnlyInPredefinedRoles($onlyInPredefinedRoles) - { - $this->onlyInPredefinedRoles = $onlyInPredefinedRoles; - } - public function getOnlyInPredefinedRoles() - { - return $this->onlyInPredefinedRoles; - } - public function setPrimaryPermission($primaryPermission) - { - $this->primaryPermission = $primaryPermission; - } - public function getPrimaryPermission() - { - return $this->primaryPermission; - } - public function setStage($stage) - { - $this->stage = $stage; - } - public function getStage() - { - return $this->stage; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/PermissionDelta.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/PermissionDelta.php deleted file mode 100644 index 3d6e839a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/PermissionDelta.php +++ /dev/null @@ -1,40 +0,0 @@ -addedPermissions = $addedPermissions; - } - public function getAddedPermissions() - { - return $this->addedPermissions; - } - public function setRemovedPermissions($removedPermissions) - { - $this->removedPermissions = $removedPermissions; - } - public function getRemovedPermissions() - { - return $this->removedPermissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/Policy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/Policy.php deleted file mode 100644 index b0e65eba..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/Policy.php +++ /dev/null @@ -1,72 +0,0 @@ -auditConfigs = $auditConfigs; - } - /** - * @return Google_Service_Iam_AuditConfig - */ - public function getAuditConfigs() - { - return $this->auditConfigs; - } - /** - * @param Google_Service_Iam_Binding - */ - public function setBindings($bindings) - { - $this->bindings = $bindings; - } - /** - * @return Google_Service_Iam_Binding - */ - public function getBindings() - { - return $this->bindings; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/PolicyDelta.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/PolicyDelta.php deleted file mode 100644 index 48b6da2f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/PolicyDelta.php +++ /dev/null @@ -1,38 +0,0 @@ -bindingDeltas = $bindingDeltas; - } - /** - * @return Google_Service_Iam_BindingDelta - */ - public function getBindingDeltas() - { - return $this->bindingDeltas; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/QueryAuditableServicesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/QueryAuditableServicesRequest.php deleted file mode 100644 index fb651926..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/QueryAuditableServicesRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -fullResourceName = $fullResourceName; - } - public function getFullResourceName() - { - return $this->fullResourceName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/QueryAuditableServicesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/QueryAuditableServicesResponse.php deleted file mode 100644 index f9a728b2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/QueryAuditableServicesResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -services = $services; - } - /** - * @return Google_Service_Iam_AuditableService - */ - public function getServices() - { - return $this->services; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/QueryGrantableRolesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/QueryGrantableRolesRequest.php deleted file mode 100644 index b5e8db98..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/QueryGrantableRolesRequest.php +++ /dev/null @@ -1,57 +0,0 @@ -fullResourceName = $fullResourceName; - } - public function getFullResourceName() - { - return $this->fullResourceName; - } - public function setPageSize($pageSize) - { - $this->pageSize = $pageSize; - } - public function getPageSize() - { - return $this->pageSize; - } - public function setPageToken($pageToken) - { - $this->pageToken = $pageToken; - } - public function getPageToken() - { - return $this->pageToken; - } - public function setView($view) - { - $this->view = $view; - } - public function getView() - { - return $this->view; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/QueryGrantableRolesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/QueryGrantableRolesResponse.php deleted file mode 100644 index ec8be716..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/QueryGrantableRolesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Iam_Role - */ - public function setRoles($roles) - { - $this->roles = $roles; - } - /** - * @return Google_Service_Iam_Role - */ - public function getRoles() - { - return $this->roles; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/QueryTestablePermissionsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/QueryTestablePermissionsRequest.php deleted file mode 100644 index ceaf9328..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/QueryTestablePermissionsRequest.php +++ /dev/null @@ -1,48 +0,0 @@ -fullResourceName = $fullResourceName; - } - public function getFullResourceName() - { - return $this->fullResourceName; - } - public function setPageSize($pageSize) - { - $this->pageSize = $pageSize; - } - public function getPageSize() - { - return $this->pageSize; - } - public function setPageToken($pageToken) - { - $this->pageToken = $pageToken; - } - public function getPageToken() - { - return $this->pageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/QueryTestablePermissionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/QueryTestablePermissionsResponse.php deleted file mode 100644 index 98db17ef..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/QueryTestablePermissionsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Iam_Permission - */ - public function setPermissions($permissions) - { - $this->permissions = $permissions; - } - /** - * @return Google_Service_Iam_Permission - */ - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/Resource/IamPolicies.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/Resource/IamPolicies.php deleted file mode 100644 index d301def7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/Resource/IamPolicies.php +++ /dev/null @@ -1,66 +0,0 @@ - - * $iamService = new Google_Service_Iam(...); - * $iamPolicies = $iamService->iamPolicies; - * - */ -class Google_Service_Iam_Resource_IamPolicies extends Google_Service_Resource -{ - /** - * Lints a Cloud IAM policy object or its sub fields. Currently supports - * google.iam.v1.Binding.condition. - * - * Each lint operation consists of multiple lint validation units. Each unit - * inspects the input object in regard to a particular linting aspect and issues - * a google.iam.admin.v1.LintResult disclosing the result. - * - * The set of applicable validation units is determined by the Cloud IAM server - * and is not configurable. - * - * Regardless of any lint issues or their severities, successful calls to - * `lintPolicy` return an HTTP 200 OK status code. (iamPolicies.lintPolicy) - * - * @param Google_Service_Iam_LintPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Iam_LintPolicyResponse - */ - public function lintPolicy(Google_Service_Iam_LintPolicyRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('lintPolicy', array($params), "Google_Service_Iam_LintPolicyResponse"); - } - /** - * Returns a list of services that support service level audit logging - * configuration for the given resource. (iamPolicies.queryAuditableServices) - * - * @param Google_Service_Iam_QueryAuditableServicesRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Iam_QueryAuditableServicesResponse - */ - public function queryAuditableServices(Google_Service_Iam_QueryAuditableServicesRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('queryAuditableServices', array($params), "Google_Service_Iam_QueryAuditableServicesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/Resource/Organizations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/Resource/Organizations.php deleted file mode 100644 index 403b94c3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/Resource/Organizations.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $iamService = new Google_Service_Iam(...); - * $organizations = $iamService->organizations; - * - */ -class Google_Service_Iam_Resource_Organizations extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/Resource/OrganizationsRoles.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/Resource/OrganizationsRoles.php deleted file mode 100644 index c5109b5b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/Resource/OrganizationsRoles.php +++ /dev/null @@ -1,254 +0,0 @@ - - * $iamService = new Google_Service_Iam(...); - * $roles = $iamService->roles; - * - */ -class Google_Service_Iam_Resource_OrganizationsRoles extends Google_Service_Resource -{ - /** - * Creates a new Role. (roles.create) - * - * @param string $parent The `parent` parameter's value depends on the target - * resource for the request, namely - * [`projects`](/iam/reference/rest/v1/projects.roles) or - * [`organizations`](/iam/reference/rest/v1/organizations.roles). Each resource - * type's `parent` value format is described below: - * - * * [`projects.roles.create()`](/iam/reference/rest/v1/projects.roles/create): - * `projects/{PROJECT_ID}`. This method creates project-level [custom - * roles](/iam/docs/understanding-custom-roles). Example request URL: - * `https://iam.googleapis.com/v1/projects/{PROJECT_ID}/roles` - * - * * [`organizations.roles.create()`](/iam/reference/rest/v1/organizations.roles - * /create): `organizations/{ORGANIZATION_ID}`. This method creates - * organization-level [custom roles](/iam/docs/understanding-custom-roles). - * Example request URL: - * `https://iam.googleapis.com/v1/organizations/{ORGANIZATION_ID}/roles` - * - * Note: Wildcard (*) values are invalid; you must specify a complete project ID - * or organization ID. - * @param Google_Service_Iam_CreateRoleRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Iam_Role - */ - public function create($parent, Google_Service_Iam_CreateRoleRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Iam_Role"); - } - /** - * Soft deletes a role. The role is suspended and cannot be used to create new - * IAM Policy Bindings. The Role will not be included in `ListRoles()` unless - * `show_deleted` is set in the `ListRolesRequest`. The Role contains the - * deleted boolean set. Existing Bindings remains, but are inactive. The Role - * can be undeleted within 7 days. After 7 days the Role is deleted and all - * Bindings associated with the role are removed. (roles.delete) - * - * @param string $name The `name` parameter's value depends on the target - * resource for the request, namely - * [`projects`](/iam/reference/rest/v1/projects.roles) or - * [`organizations`](/iam/reference/rest/v1/organizations.roles). Each resource - * type's `name` value format is described below: - * - * * [`projects.roles.delete()`](/iam/reference/rest/v1/projects.roles/delete): - * `projects/{PROJECT_ID}/roles/{CUSTOM_ROLE_ID}`. This method deletes only - * [custom roles](/iam/docs/understanding-custom-roles) that have been created - * at the project level. Example request URL: - * `https://iam.googleapis.com/v1/projects/{PROJECT_ID}/roles/{CUSTOM_ROLE_ID}` - * - * * [`organizations.roles.delete()`](/iam/reference/rest/v1/organizations.roles - * /delete): `organizations/{ORGANIZATION_ID}/roles/{CUSTOM_ROLE_ID}`. This - * method deletes only [custom roles](/iam/docs/understanding-custom-roles) - * that have been created at the organization level. Example request URL: `h - * ttps://iam.googleapis.com/v1/organizations/{ORGANIZATION_ID}/roles/{CUSTOM_RO - * LE_ID}` - * - * Note: Wildcard (*) values are invalid; you must specify a complete project ID - * or organization ID. - * @param array $optParams Optional parameters. - * - * @opt_param string etag Used to perform a consistent read-modify-write. - * @return Google_Service_Iam_Role - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Iam_Role"); - } - /** - * Gets a Role definition. (roles.get) - * - * @param string $name The `name` parameter's value depends on the target - * resource for the request, namely [`roles`](/iam/reference/rest/v1/roles), - * [`projects`](/iam/reference/rest/v1/projects.roles), or - * [`organizations`](/iam/reference/rest/v1/organizations.roles). Each resource - * type's `name` value format is described below: - * - * * [`roles.get()`](/iam/reference/rest/v1/roles/get): `roles/{ROLE_NAME}`. - * This method returns results from all [predefined roles](/iam/docs - * /understanding-roles#predefined_roles) in Cloud IAM. Example request URL: - * `https://iam.googleapis.com/v1/roles/{ROLE_NAME}` - * - * * [`projects.roles.get()`](/iam/reference/rest/v1/projects.roles/get): - * `projects/{PROJECT_ID}/roles/{CUSTOM_ROLE_ID}`. This method returns only - * [custom roles](/iam/docs/understanding-custom-roles) that have been created - * at the project level. Example request URL: - * `https://iam.googleapis.com/v1/projects/{PROJECT_ID}/roles/{CUSTOM_ROLE_ID}` - * - * * [`organizations.roles.get()`](/iam/reference/rest/v1/organizations.roles/ge - * t): `organizations/{ORGANIZATION_ID}/roles/{CUSTOM_ROLE_ID}`. This method - * returns only [custom roles](/iam/docs/understanding-custom-roles) that have - * been created at the organization level. Example request URL: `https://iam.g - * oogleapis.com/v1/organizations/{ORGANIZATION_ID}/roles/{CUSTOM_ROLE_ID}` - * - * Note: Wildcard (*) values are invalid; you must specify a complete project ID - * or organization ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Iam_Role - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Iam_Role"); - } - /** - * Lists the Roles defined on a resource. (roles.listOrganizationsRoles) - * - * @param string $parent The `parent` parameter's value depends on the target - * resource for the request, namely [`roles`](/iam/reference/rest/v1/roles), - * [`projects`](/iam/reference/rest/v1/projects.roles), or - * [`organizations`](/iam/reference/rest/v1/organizations.roles). Each resource - * type's `parent` value format is described below: - * - * * [`roles.list()`](/iam/reference/rest/v1/roles/list): An empty string. - * This method doesn't require a resource; it simply returns all [predefined - * roles](/iam/docs/understanding-roles#predefined_roles) in Cloud IAM. - * Example request URL: `https://iam.googleapis.com/v1/roles` - * - * * [`projects.roles.list()`](/iam/reference/rest/v1/projects.roles/list): - * `projects/{PROJECT_ID}`. This method lists all project-level [custom - * roles](/iam/docs/understanding-custom-roles). Example request URL: - * `https://iam.googleapis.com/v1/projects/{PROJECT_ID}/roles` - * - * * [`organizations.roles.list()`](/iam/reference/rest/v1/organizations.roles/l - * ist): `organizations/{ORGANIZATION_ID}`. This method lists all - * organization-level [custom roles](/iam/docs/understanding-custom-roles). - * Example request URL: - * `https://iam.googleapis.com/v1/organizations/{ORGANIZATION_ID}/roles` - * - * Note: Wildcard (*) values are invalid; you must specify a complete project ID - * or organization ID. - * @param array $optParams Optional parameters. - * - * @opt_param bool showDeleted Include Roles that have been deleted. - * @opt_param string pageToken Optional pagination token returned in an earlier - * ListRolesResponse. - * @opt_param int pageSize Optional limit on the number of roles to include in - * the response. - * @opt_param string view Optional view for the returned Role objects. When - * `FULL` is specified, the `includedPermissions` field is returned, which - * includes a list of all permissions in the role. The default value is `BASIC`, - * which does not return the `includedPermissions` field. - * @return Google_Service_Iam_ListRolesResponse - */ - public function listOrganizationsRoles($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Iam_ListRolesResponse"); - } - /** - * Updates a Role definition. (roles.patch) - * - * @param string $name The `name` parameter's value depends on the target - * resource for the request, namely - * [`projects`](/iam/reference/rest/v1/projects.roles) or - * [`organizations`](/iam/reference/rest/v1/organizations.roles). Each resource - * type's `name` value format is described below: - * - * * [`projects.roles.patch()`](/iam/reference/rest/v1/projects.roles/patch): - * `projects/{PROJECT_ID}/roles/{CUSTOM_ROLE_ID}`. This method updates only - * [custom roles](/iam/docs/understanding-custom-roles) that have been created - * at the project level. Example request URL: - * `https://iam.googleapis.com/v1/projects/{PROJECT_ID}/roles/{CUSTOM_ROLE_ID}` - * - * * [`organizations.roles.patch()`](/iam/reference/rest/v1/organizations.roles/ - * patch): `organizations/{ORGANIZATION_ID}/roles/{CUSTOM_ROLE_ID}`. This - * method updates only [custom roles](/iam/docs/understanding-custom-roles) - * that have been created at the organization level. Example request URL: `h - * ttps://iam.googleapis.com/v1/organizations/{ORGANIZATION_ID}/roles/{CUSTOM_RO - * LE_ID}` - * - * Note: Wildcard (*) values are invalid; you must specify a complete project ID - * or organization ID. - * @param Google_Service_Iam_Role $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask A mask describing which fields in the Role have - * changed. - * @return Google_Service_Iam_Role - */ - public function patch($name, Google_Service_Iam_Role $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Iam_Role"); - } - /** - * Undelete a Role, bringing it back in its previous state. (roles.undelete) - * - * @param string $name The `name` parameter's value depends on the target - * resource for the request, namely - * [`projects`](/iam/reference/rest/v1/projects.roles) or - * [`organizations`](/iam/reference/rest/v1/organizations.roles). Each resource - * type's `name` value format is described below: - * - * * [`projects.roles.undelete()`](/iam/reference/rest/v1/projects.roles/undelet - * e): `projects/{PROJECT_ID}/roles/{CUSTOM_ROLE_ID}`. This method undeletes - * only [custom roles](/iam/docs/understanding-custom-roles) that have been - * created at the project level. Example request URL: - * `https://iam.googleapis.com/v1/projects/{PROJECT_ID}/roles/{CUSTOM_ROLE_ID}` - * - * * [`organizations.roles.undelete()`](/iam/reference/rest/v1/organizations.rol - * es/undelete): `organizations/{ORGANIZATION_ID}/roles/{CUSTOM_ROLE_ID}`. - * This method undeletes only [custom roles](/iam/docs/understanding-custom- - * roles) that have been created at the organization level. Example request - * URL: `https://iam.googleapis.com/v1/organizations/{ORGANIZATION_ID}/roles/{ - * CUSTOM_ROLE_ID}` - * - * Note: Wildcard (*) values are invalid; you must specify a complete project ID - * or organization ID. - * @param Google_Service_Iam_UndeleteRoleRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Iam_Role - */ - public function undelete($name, Google_Service_Iam_UndeleteRoleRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('undelete', array($params), "Google_Service_Iam_Role"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/Resource/Permissions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/Resource/Permissions.php deleted file mode 100644 index 1a388f25..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/Resource/Permissions.php +++ /dev/null @@ -1,43 +0,0 @@ - - * $iamService = new Google_Service_Iam(...); - * $permissions = $iamService->permissions; - * - */ -class Google_Service_Iam_Resource_Permissions extends Google_Service_Resource -{ - /** - * Lists the permissions testable on a resource. A permission is testable if it - * can be tested for an identity on a resource. - * (permissions.queryTestablePermissions) - * - * @param Google_Service_Iam_QueryTestablePermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Iam_QueryTestablePermissionsResponse - */ - public function queryTestablePermissions(Google_Service_Iam_QueryTestablePermissionsRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('queryTestablePermissions', array($params), "Google_Service_Iam_QueryTestablePermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/Resource/Projects.php deleted file mode 100644 index a2bfba9a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/Resource/Projects.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $iamService = new Google_Service_Iam(...); - * $projects = $iamService->projects; - * - */ -class Google_Service_Iam_Resource_Projects extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/Resource/ProjectsRoles.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/Resource/ProjectsRoles.php deleted file mode 100644 index 09f46379..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/Resource/ProjectsRoles.php +++ /dev/null @@ -1,254 +0,0 @@ - - * $iamService = new Google_Service_Iam(...); - * $roles = $iamService->roles; - * - */ -class Google_Service_Iam_Resource_ProjectsRoles extends Google_Service_Resource -{ - /** - * Creates a new Role. (roles.create) - * - * @param string $parent The `parent` parameter's value depends on the target - * resource for the request, namely - * [`projects`](/iam/reference/rest/v1/projects.roles) or - * [`organizations`](/iam/reference/rest/v1/organizations.roles). Each resource - * type's `parent` value format is described below: - * - * * [`projects.roles.create()`](/iam/reference/rest/v1/projects.roles/create): - * `projects/{PROJECT_ID}`. This method creates project-level [custom - * roles](/iam/docs/understanding-custom-roles). Example request URL: - * `https://iam.googleapis.com/v1/projects/{PROJECT_ID}/roles` - * - * * [`organizations.roles.create()`](/iam/reference/rest/v1/organizations.roles - * /create): `organizations/{ORGANIZATION_ID}`. This method creates - * organization-level [custom roles](/iam/docs/understanding-custom-roles). - * Example request URL: - * `https://iam.googleapis.com/v1/organizations/{ORGANIZATION_ID}/roles` - * - * Note: Wildcard (*) values are invalid; you must specify a complete project ID - * or organization ID. - * @param Google_Service_Iam_CreateRoleRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Iam_Role - */ - public function create($parent, Google_Service_Iam_CreateRoleRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Iam_Role"); - } - /** - * Soft deletes a role. The role is suspended and cannot be used to create new - * IAM Policy Bindings. The Role will not be included in `ListRoles()` unless - * `show_deleted` is set in the `ListRolesRequest`. The Role contains the - * deleted boolean set. Existing Bindings remains, but are inactive. The Role - * can be undeleted within 7 days. After 7 days the Role is deleted and all - * Bindings associated with the role are removed. (roles.delete) - * - * @param string $name The `name` parameter's value depends on the target - * resource for the request, namely - * [`projects`](/iam/reference/rest/v1/projects.roles) or - * [`organizations`](/iam/reference/rest/v1/organizations.roles). Each resource - * type's `name` value format is described below: - * - * * [`projects.roles.delete()`](/iam/reference/rest/v1/projects.roles/delete): - * `projects/{PROJECT_ID}/roles/{CUSTOM_ROLE_ID}`. This method deletes only - * [custom roles](/iam/docs/understanding-custom-roles) that have been created - * at the project level. Example request URL: - * `https://iam.googleapis.com/v1/projects/{PROJECT_ID}/roles/{CUSTOM_ROLE_ID}` - * - * * [`organizations.roles.delete()`](/iam/reference/rest/v1/organizations.roles - * /delete): `organizations/{ORGANIZATION_ID}/roles/{CUSTOM_ROLE_ID}`. This - * method deletes only [custom roles](/iam/docs/understanding-custom-roles) - * that have been created at the organization level. Example request URL: `h - * ttps://iam.googleapis.com/v1/organizations/{ORGANIZATION_ID}/roles/{CUSTOM_RO - * LE_ID}` - * - * Note: Wildcard (*) values are invalid; you must specify a complete project ID - * or organization ID. - * @param array $optParams Optional parameters. - * - * @opt_param string etag Used to perform a consistent read-modify-write. - * @return Google_Service_Iam_Role - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Iam_Role"); - } - /** - * Gets a Role definition. (roles.get) - * - * @param string $name The `name` parameter's value depends on the target - * resource for the request, namely [`roles`](/iam/reference/rest/v1/roles), - * [`projects`](/iam/reference/rest/v1/projects.roles), or - * [`organizations`](/iam/reference/rest/v1/organizations.roles). Each resource - * type's `name` value format is described below: - * - * * [`roles.get()`](/iam/reference/rest/v1/roles/get): `roles/{ROLE_NAME}`. - * This method returns results from all [predefined roles](/iam/docs - * /understanding-roles#predefined_roles) in Cloud IAM. Example request URL: - * `https://iam.googleapis.com/v1/roles/{ROLE_NAME}` - * - * * [`projects.roles.get()`](/iam/reference/rest/v1/projects.roles/get): - * `projects/{PROJECT_ID}/roles/{CUSTOM_ROLE_ID}`. This method returns only - * [custom roles](/iam/docs/understanding-custom-roles) that have been created - * at the project level. Example request URL: - * `https://iam.googleapis.com/v1/projects/{PROJECT_ID}/roles/{CUSTOM_ROLE_ID}` - * - * * [`organizations.roles.get()`](/iam/reference/rest/v1/organizations.roles/ge - * t): `organizations/{ORGANIZATION_ID}/roles/{CUSTOM_ROLE_ID}`. This method - * returns only [custom roles](/iam/docs/understanding-custom-roles) that have - * been created at the organization level. Example request URL: `https://iam.g - * oogleapis.com/v1/organizations/{ORGANIZATION_ID}/roles/{CUSTOM_ROLE_ID}` - * - * Note: Wildcard (*) values are invalid; you must specify a complete project ID - * or organization ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Iam_Role - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Iam_Role"); - } - /** - * Lists the Roles defined on a resource. (roles.listProjectsRoles) - * - * @param string $parent The `parent` parameter's value depends on the target - * resource for the request, namely [`roles`](/iam/reference/rest/v1/roles), - * [`projects`](/iam/reference/rest/v1/projects.roles), or - * [`organizations`](/iam/reference/rest/v1/organizations.roles). Each resource - * type's `parent` value format is described below: - * - * * [`roles.list()`](/iam/reference/rest/v1/roles/list): An empty string. - * This method doesn't require a resource; it simply returns all [predefined - * roles](/iam/docs/understanding-roles#predefined_roles) in Cloud IAM. - * Example request URL: `https://iam.googleapis.com/v1/roles` - * - * * [`projects.roles.list()`](/iam/reference/rest/v1/projects.roles/list): - * `projects/{PROJECT_ID}`. This method lists all project-level [custom - * roles](/iam/docs/understanding-custom-roles). Example request URL: - * `https://iam.googleapis.com/v1/projects/{PROJECT_ID}/roles` - * - * * [`organizations.roles.list()`](/iam/reference/rest/v1/organizations.roles/l - * ist): `organizations/{ORGANIZATION_ID}`. This method lists all - * organization-level [custom roles](/iam/docs/understanding-custom-roles). - * Example request URL: - * `https://iam.googleapis.com/v1/organizations/{ORGANIZATION_ID}/roles` - * - * Note: Wildcard (*) values are invalid; you must specify a complete project ID - * or organization ID. - * @param array $optParams Optional parameters. - * - * @opt_param string view Optional view for the returned Role objects. When - * `FULL` is specified, the `includedPermissions` field is returned, which - * includes a list of all permissions in the role. The default value is `BASIC`, - * which does not return the `includedPermissions` field. - * @opt_param bool showDeleted Include Roles that have been deleted. - * @opt_param string pageToken Optional pagination token returned in an earlier - * ListRolesResponse. - * @opt_param int pageSize Optional limit on the number of roles to include in - * the response. - * @return Google_Service_Iam_ListRolesResponse - */ - public function listProjectsRoles($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Iam_ListRolesResponse"); - } - /** - * Updates a Role definition. (roles.patch) - * - * @param string $name The `name` parameter's value depends on the target - * resource for the request, namely - * [`projects`](/iam/reference/rest/v1/projects.roles) or - * [`organizations`](/iam/reference/rest/v1/organizations.roles). Each resource - * type's `name` value format is described below: - * - * * [`projects.roles.patch()`](/iam/reference/rest/v1/projects.roles/patch): - * `projects/{PROJECT_ID}/roles/{CUSTOM_ROLE_ID}`. This method updates only - * [custom roles](/iam/docs/understanding-custom-roles) that have been created - * at the project level. Example request URL: - * `https://iam.googleapis.com/v1/projects/{PROJECT_ID}/roles/{CUSTOM_ROLE_ID}` - * - * * [`organizations.roles.patch()`](/iam/reference/rest/v1/organizations.roles/ - * patch): `organizations/{ORGANIZATION_ID}/roles/{CUSTOM_ROLE_ID}`. This - * method updates only [custom roles](/iam/docs/understanding-custom-roles) - * that have been created at the organization level. Example request URL: `h - * ttps://iam.googleapis.com/v1/organizations/{ORGANIZATION_ID}/roles/{CUSTOM_RO - * LE_ID}` - * - * Note: Wildcard (*) values are invalid; you must specify a complete project ID - * or organization ID. - * @param Google_Service_Iam_Role $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask A mask describing which fields in the Role have - * changed. - * @return Google_Service_Iam_Role - */ - public function patch($name, Google_Service_Iam_Role $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Iam_Role"); - } - /** - * Undelete a Role, bringing it back in its previous state. (roles.undelete) - * - * @param string $name The `name` parameter's value depends on the target - * resource for the request, namely - * [`projects`](/iam/reference/rest/v1/projects.roles) or - * [`organizations`](/iam/reference/rest/v1/organizations.roles). Each resource - * type's `name` value format is described below: - * - * * [`projects.roles.undelete()`](/iam/reference/rest/v1/projects.roles/undelet - * e): `projects/{PROJECT_ID}/roles/{CUSTOM_ROLE_ID}`. This method undeletes - * only [custom roles](/iam/docs/understanding-custom-roles) that have been - * created at the project level. Example request URL: - * `https://iam.googleapis.com/v1/projects/{PROJECT_ID}/roles/{CUSTOM_ROLE_ID}` - * - * * [`organizations.roles.undelete()`](/iam/reference/rest/v1/organizations.rol - * es/undelete): `organizations/{ORGANIZATION_ID}/roles/{CUSTOM_ROLE_ID}`. - * This method undeletes only [custom roles](/iam/docs/understanding-custom- - * roles) that have been created at the organization level. Example request - * URL: `https://iam.googleapis.com/v1/organizations/{ORGANIZATION_ID}/roles/{ - * CUSTOM_ROLE_ID}` - * - * Note: Wildcard (*) values are invalid; you must specify a complete project ID - * or organization ID. - * @param Google_Service_Iam_UndeleteRoleRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Iam_Role - */ - public function undelete($name, Google_Service_Iam_UndeleteRoleRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('undelete', array($params), "Google_Service_Iam_Role"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/Resource/ProjectsServiceAccounts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/Resource/ProjectsServiceAccounts.php deleted file mode 100644 index 65cc1108..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/Resource/ProjectsServiceAccounts.php +++ /dev/null @@ -1,370 +0,0 @@ - - * $iamService = new Google_Service_Iam(...); - * $serviceAccounts = $iamService->serviceAccounts; - * - */ -class Google_Service_Iam_Resource_ProjectsServiceAccounts extends Google_Service_Resource -{ - /** - * Creates a ServiceAccount and returns it. (serviceAccounts.create) - * - * @param string $name Required. The resource name of the project associated - * with the service accounts, such as `projects/my-project-123`. - * @param Google_Service_Iam_CreateServiceAccountRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Iam_ServiceAccount - */ - public function create($name, Google_Service_Iam_CreateServiceAccountRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Iam_ServiceAccount"); - } - /** - * Deletes a ServiceAccount. (serviceAccounts.delete) - * - * @param string $name Required. The resource name of the service account in the - * following format: `projects/{PROJECT_ID}/serviceAccounts/{ACCOUNT}`. Using - * `-` as a wildcard for the `PROJECT_ID` will infer the project from the - * account. The `ACCOUNT` value can be the `email` address or the `unique_id` of - * the service account. - * @param array $optParams Optional parameters. - * @return Google_Service_Iam_IamEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Iam_IamEmpty"); - } - /** - * DisableServiceAccount is currently in the alpha launch stage. - * - * Disables a ServiceAccount, which immediately prevents the service account - * from authenticating and gaining access to APIs. - * - * Disabled service accounts can be safely restored by using - * EnableServiceAccount at any point. Deleted service accounts cannot be - * restored using this method. - * - * Disabling a service account that is bound to VMs, Apps, Functions, or other - * jobs will cause those jobs to lose access to resources if they are using the - * disabled service account. - * - * To improve reliability of your services and avoid unexpected outages, it is - * recommended to first disable a service account rather than delete it. After - * disabling the service account, wait at least 24 hours to verify there are no - * unintended consequences, and then delete the service account. - * (serviceAccounts.disable) - * - * @param string $name The resource name of the service account in the following - * format: `projects/{PROJECT_ID}/serviceAccounts/{ACCOUNT}`. Using `-` as a - * wildcard for the `PROJECT_ID` will infer the project from the account. The - * `ACCOUNT` value can be the `email` address or the `unique_id` of the service - * account. - * @param Google_Service_Iam_DisableServiceAccountRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Iam_IamEmpty - */ - public function disable($name, Google_Service_Iam_DisableServiceAccountRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('disable', array($params), "Google_Service_Iam_IamEmpty"); - } - /** - * EnableServiceAccount is currently in the alpha launch stage. - * - * Restores a disabled ServiceAccount that has been manually disabled by using - * DisableServiceAccount. Service accounts that have been disabled by other - * means or for other reasons, such as abuse, cannot be restored using this - * method. - * - * EnableServiceAccount will have no effect on a service account that is not - * disabled. Enabling an already enabled service account will have no effect. - * (serviceAccounts.enable) - * - * @param string $name The resource name of the service account in the following - * format: `projects/{PROJECT_ID}/serviceAccounts/{ACCOUNT}`. Using `-` as a - * wildcard for the `PROJECT_ID` will infer the project from the account. The - * `ACCOUNT` value can be the `email` address or the `unique_id` of the service - * account. - * @param Google_Service_Iam_EnableServiceAccountRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Iam_IamEmpty - */ - public function enable($name, Google_Service_Iam_EnableServiceAccountRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('enable', array($params), "Google_Service_Iam_IamEmpty"); - } - /** - * Gets a ServiceAccount. (serviceAccounts.get) - * - * @param string $name Required. The resource name of the service account in the - * following format: `projects/{PROJECT_ID}/serviceAccounts/{ACCOUNT}`. Using - * `-` as a wildcard for the `PROJECT_ID` will infer the project from the - * account. The `ACCOUNT` value can be the `email` address or the `unique_id` of - * the service account. - * @param array $optParams Optional parameters. - * @return Google_Service_Iam_ServiceAccount - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Iam_ServiceAccount"); - } - /** - * Returns the Cloud IAM access control policy for a ServiceAccount. - * - * Note: Service accounts are both [resources and identities](/iam/docs/service- - * accounts#service_account_permissions). This method treats the service account - * as a resource. It returns the Cloud IAM policy that reflects what members - * have access to the service account. - * - * This method does not return what resources the service account has access to. - * To see if a service account has access to a resource, call the `getIamPolicy` - * method on the target resource. For example, to view grants for a project, - * call the [projects.getIamPolicy](/resource- - * manager/reference/rest/v1/projects/getIamPolicy) method. - * (serviceAccounts.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. - * @return Google_Service_Iam_Policy - */ - public function getIamPolicy($resource, $optParams = array()) - { - $params = array('resource' => $resource); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_Iam_Policy"); - } - /** - * Lists ServiceAccounts for a project. - * (serviceAccounts.listProjectsServiceAccounts) - * - * @param string $name Required. The resource name of the project associated - * with the service accounts, such as `projects/my-project-123`. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Optional pagination token returned in an earlier - * ListServiceAccountsResponse.next_page_token. - * @opt_param int pageSize Optional limit on the number of service accounts to - * include in the response. Further accounts can subsequently be obtained by - * including the ListServiceAccountsResponse.next_page_token in a subsequent - * request. - * @return Google_Service_Iam_ListServiceAccountsResponse - */ - public function listProjectsServiceAccounts($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Iam_ListServiceAccountsResponse"); - } - /** - * Patches a ServiceAccount. - * - * Currently, only the following fields are updatable: `display_name` and - * `description`. - * - * Only fields specified in the request are guaranteed to be returned in the - * response. Other fields in the response may be empty. - * - * Note: The field mask is required. (serviceAccounts.patch) - * - * @param string $name The resource name of the service account in the following - * format: `projects/{PROJECT_ID}/serviceAccounts/{ACCOUNT}`. - * - * Requests using `-` as a wildcard for the `PROJECT_ID` will infer the project - * from the `account` and the `ACCOUNT` value can be the `email` address or the - * `unique_id` of the service account. - * - * In responses the resource name will always be in the format - * `projects/{PROJECT_ID}/serviceAccounts/{ACCOUNT}`. - * @param Google_Service_Iam_PatchServiceAccountRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Iam_ServiceAccount - */ - public function patch($name, Google_Service_Iam_PatchServiceAccountRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Iam_ServiceAccount"); - } - /** - * Sets the Cloud IAM access control policy for a ServiceAccount. - * - * Note: Service accounts are both [resources and identities](/iam/docs/service- - * accounts#service_account_permissions). This method treats the service account - * as a resource. Use it to grant members access to the service account, such as - * when they need to impersonate it. - * - * This method does not grant the service account access to other resources, - * such as projects. To grant a service account access to resources, include the - * service account in the Cloud IAM policy for the desired resource, then call - * the appropriate `setIamPolicy` method on the target resource. For example, to - * grant a service account access to a project, call the [projects.setIamPolicy - * ](/resource-manager/reference/rest/v1/projects/setIamPolicy) method. - * (serviceAccounts.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_Iam_SetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Iam_Policy - */ - public function setIamPolicy($resource, Google_Service_Iam_SetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_Iam_Policy"); - } - /** - * **Note**: This method is in the process of being deprecated. Call the [`signB - * lob()`](/iam/credentials/reference/rest/v1/projects.serviceAccounts/signBlob) - * method of the Cloud IAM Service Account Credentials API instead. - * - * Signs a blob using a service account's system-managed private key. - * (serviceAccounts.signBlob) - * - * @param string $name Required. The resource name of the service account in the - * following format: `projects/{PROJECT_ID}/serviceAccounts/{ACCOUNT}`. Using - * `-` as a wildcard for the `PROJECT_ID` will infer the project from the - * account. The `ACCOUNT` value can be the `email` address or the `unique_id` of - * the service account. - * @param Google_Service_Iam_SignBlobRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Iam_SignBlobResponse - */ - public function signBlob($name, Google_Service_Iam_SignBlobRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('signBlob', array($params), "Google_Service_Iam_SignBlobResponse"); - } - /** - * **Note**: This method is in the process of being deprecated. Call the [`signJ - * wt()`](/iam/credentials/reference/rest/v1/projects.serviceAccounts/signJwt) - * method of the Cloud IAM Service Account Credentials API instead. - * - * Signs a JWT using a service account's system-managed private key. - * - * If no expiry time (`exp`) is provided in the `SignJwtRequest`, IAM sets an an - * expiry time of one hour by default. If you request an expiry time of more - * than one hour, the request will fail. (serviceAccounts.signJwt) - * - * @param string $name Required. The resource name of the service account in the - * following format: `projects/{PROJECT_ID}/serviceAccounts/{ACCOUNT}`. Using - * `-` as a wildcard for the `PROJECT_ID` will infer the project from the - * account. The `ACCOUNT` value can be the `email` address or the `unique_id` of - * the service account. - * @param Google_Service_Iam_SignJwtRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Iam_SignJwtResponse - */ - public function signJwt($name, Google_Service_Iam_SignJwtRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('signJwt', array($params), "Google_Service_Iam_SignJwtResponse"); - } - /** - * Tests the specified permissions against the IAM access control policy for a - * ServiceAccount. (serviceAccounts.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_Iam_TestIamPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Iam_TestIamPermissionsResponse - */ - public function testIamPermissions($resource, Google_Service_Iam_TestIamPermissionsRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_Iam_TestIamPermissionsResponse"); - } - /** - * Restores a deleted ServiceAccount. This is to be used as an action of last - * resort. A service account may not always be restorable. - * (serviceAccounts.undelete) - * - * @param string $name The resource name of the service account in the following - * format: `projects/{PROJECT_ID}/serviceAccounts/{ACCOUNT_UNIQUE_ID}`. Using - * `-` as a wildcard for the `PROJECT_ID` will infer the project from the - * account. - * @param Google_Service_Iam_UndeleteServiceAccountRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Iam_UndeleteServiceAccountResponse - */ - public function undelete($name, Google_Service_Iam_UndeleteServiceAccountRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('undelete', array($params), "Google_Service_Iam_UndeleteServiceAccountResponse"); - } - /** - * Note: This method is in the process of being deprecated. Use - * PatchServiceAccount instead. - * - * Updates a ServiceAccount. - * - * Currently, only the following fields are updatable: `display_name` and - * `description`. (serviceAccounts.update) - * - * @param string $name The resource name of the service account in the following - * format: `projects/{PROJECT_ID}/serviceAccounts/{ACCOUNT}`. - * - * Requests using `-` as a wildcard for the `PROJECT_ID` will infer the project - * from the `account` and the `ACCOUNT` value can be the `email` address or the - * `unique_id` of the service account. - * - * In responses the resource name will always be in the format - * `projects/{PROJECT_ID}/serviceAccounts/{ACCOUNT}`. - * @param Google_Service_Iam_ServiceAccount $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Iam_ServiceAccount - */ - public function update($name, Google_Service_Iam_ServiceAccount $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Iam_ServiceAccount"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/Resource/ProjectsServiceAccountsKeys.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/Resource/ProjectsServiceAccountsKeys.php deleted file mode 100644 index dd81b0c9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/Resource/ProjectsServiceAccountsKeys.php +++ /dev/null @@ -1,128 +0,0 @@ - - * $iamService = new Google_Service_Iam(...); - * $keys = $iamService->keys; - * - */ -class Google_Service_Iam_Resource_ProjectsServiceAccountsKeys extends Google_Service_Resource -{ - /** - * Creates a ServiceAccountKey and returns it. (keys.create) - * - * @param string $name Required. The resource name of the service account in the - * following format: `projects/{PROJECT_ID}/serviceAccounts/{ACCOUNT}`. Using - * `-` as a wildcard for the `PROJECT_ID` will infer the project from the - * account. The `ACCOUNT` value can be the `email` address or the `unique_id` of - * the service account. - * @param Google_Service_Iam_CreateServiceAccountKeyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Iam_ServiceAccountKey - */ - public function create($name, Google_Service_Iam_CreateServiceAccountKeyRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Iam_ServiceAccountKey"); - } - /** - * Deletes a ServiceAccountKey. (keys.delete) - * - * @param string $name Required. The resource name of the service account key in - * the following format: - * `projects/{PROJECT_ID}/serviceAccounts/{ACCOUNT}/keys/{key}`. Using `-` as a - * wildcard for the `PROJECT_ID` will infer the project from the account. The - * `ACCOUNT` value can be the `email` address or the `unique_id` of the service - * account. - * @param array $optParams Optional parameters. - * @return Google_Service_Iam_IamEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Iam_IamEmpty"); - } - /** - * Gets the ServiceAccountKey by key id. (keys.get) - * - * @param string $name Required. The resource name of the service account key in - * the following format: - * `projects/{PROJECT_ID}/serviceAccounts/{ACCOUNT}/keys/{key}`. - * - * Using `-` as a wildcard for the `PROJECT_ID` will infer the project from the - * account. The `ACCOUNT` value can be the `email` address or the `unique_id` of - * the service account. - * @param array $optParams Optional parameters. - * - * @opt_param string publicKeyType The output format of the public key - * requested. X509_PEM is the default output format. - * @return Google_Service_Iam_ServiceAccountKey - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Iam_ServiceAccountKey"); - } - /** - * Lists ServiceAccountKeys. (keys.listProjectsServiceAccountsKeys) - * - * @param string $name Required. The resource name of the service account in the - * following format: `projects/{PROJECT_ID}/serviceAccounts/{ACCOUNT}`. - * - * Using `-` as a wildcard for the `PROJECT_ID`, will infer the project from the - * account. The `ACCOUNT` value can be the `email` address or the `unique_id` of - * the service account. - * @param array $optParams Optional parameters. - * - * @opt_param string keyTypes Filters the types of keys the user wants to - * include in the list response. Duplicate key types are not allowed. If no key - * type is provided, all keys are returned. - * @return Google_Service_Iam_ListServiceAccountKeysResponse - */ - public function listProjectsServiceAccountsKeys($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Iam_ListServiceAccountKeysResponse"); - } - /** - * Upload public key for a given service account. This rpc will create a - * ServiceAccountKey that has the provided public key and returns it. - * (keys.upload) - * - * @param string $name The resource name of the service account in the following - * format: `projects/{PROJECT_ID}/serviceAccounts/{ACCOUNT}`. Using `-` as a - * wildcard for the `PROJECT_ID` will infer the project from the account. The - * `ACCOUNT` value can be the `email` address or the `unique_id` of the service - * account. - * @param Google_Service_Iam_UploadServiceAccountKeyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Iam_ServiceAccountKey - */ - public function upload($name, Google_Service_Iam_UploadServiceAccountKeyRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('upload', array($params), "Google_Service_Iam_ServiceAccountKey"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/Resource/Roles.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/Resource/Roles.php deleted file mode 100644 index 93e5f6fb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/Resource/Roles.php +++ /dev/null @@ -1,126 +0,0 @@ - - * $iamService = new Google_Service_Iam(...); - * $roles = $iamService->roles; - * - */ -class Google_Service_Iam_Resource_Roles extends Google_Service_Resource -{ - /** - * Gets a Role definition. (roles.get) - * - * @param string $name The `name` parameter's value depends on the target - * resource for the request, namely [`roles`](/iam/reference/rest/v1/roles), - * [`projects`](/iam/reference/rest/v1/projects.roles), or - * [`organizations`](/iam/reference/rest/v1/organizations.roles). Each resource - * type's `name` value format is described below: - * - * * [`roles.get()`](/iam/reference/rest/v1/roles/get): `roles/{ROLE_NAME}`. - * This method returns results from all [predefined roles](/iam/docs - * /understanding-roles#predefined_roles) in Cloud IAM. Example request URL: - * `https://iam.googleapis.com/v1/roles/{ROLE_NAME}` - * - * * [`projects.roles.get()`](/iam/reference/rest/v1/projects.roles/get): - * `projects/{PROJECT_ID}/roles/{CUSTOM_ROLE_ID}`. This method returns only - * [custom roles](/iam/docs/understanding-custom-roles) that have been created - * at the project level. Example request URL: - * `https://iam.googleapis.com/v1/projects/{PROJECT_ID}/roles/{CUSTOM_ROLE_ID}` - * - * * [`organizations.roles.get()`](/iam/reference/rest/v1/organizations.roles/ge - * t): `organizations/{ORGANIZATION_ID}/roles/{CUSTOM_ROLE_ID}`. This method - * returns only [custom roles](/iam/docs/understanding-custom-roles) that have - * been created at the organization level. Example request URL: `https://iam.g - * oogleapis.com/v1/organizations/{ORGANIZATION_ID}/roles/{CUSTOM_ROLE_ID}` - * - * Note: Wildcard (*) values are invalid; you must specify a complete project ID - * or organization ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Iam_Role - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Iam_Role"); - } - /** - * Lists the Roles defined on a resource. (roles.listRoles) - * - * @param array $optParams Optional parameters. - * - * @opt_param int pageSize Optional limit on the number of roles to include in - * the response. - * @opt_param string view Optional view for the returned Role objects. When - * `FULL` is specified, the `includedPermissions` field is returned, which - * includes a list of all permissions in the role. The default value is `BASIC`, - * which does not return the `includedPermissions` field. - * @opt_param string parent The `parent` parameter's value depends on the target - * resource for the request, namely [`roles`](/iam/reference/rest/v1/roles), - * [`projects`](/iam/reference/rest/v1/projects.roles), or - * [`organizations`](/iam/reference/rest/v1/organizations.roles). Each resource - * type's `parent` value format is described below: - * - * * [`roles.list()`](/iam/reference/rest/v1/roles/list): An empty string. - * This method doesn't require a resource; it simply returns all [predefined - * roles](/iam/docs/understanding-roles#predefined_roles) in Cloud IAM. - * Example request URL: `https://iam.googleapis.com/v1/roles` - * - * * [`projects.roles.list()`](/iam/reference/rest/v1/projects.roles/list): - * `projects/{PROJECT_ID}`. This method lists all project-level [custom - * roles](/iam/docs/understanding-custom-roles). Example request URL: - * `https://iam.googleapis.com/v1/projects/{PROJECT_ID}/roles` - * - * * [`organizations.roles.list()`](/iam/reference/rest/v1/organizations.roles/l - * ist): `organizations/{ORGANIZATION_ID}`. This method lists all - * organization-level [custom roles](/iam/docs/understanding-custom-roles). - * Example request URL: - * `https://iam.googleapis.com/v1/organizations/{ORGANIZATION_ID}/roles` - * - * Note: Wildcard (*) values are invalid; you must specify a complete project ID - * or organization ID. - * @opt_param bool showDeleted Include Roles that have been deleted. - * @opt_param string pageToken Optional pagination token returned in an earlier - * ListRolesResponse. - * @return Google_Service_Iam_ListRolesResponse - */ - public function listRoles($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Iam_ListRolesResponse"); - } - /** - * Queries roles that can be granted on a particular resource. A role is - * grantable if it can be used as the role in a binding for a policy for that - * resource. (roles.queryGrantableRoles) - * - * @param Google_Service_Iam_QueryGrantableRolesRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Iam_QueryGrantableRolesResponse - */ - public function queryGrantableRoles(Google_Service_Iam_QueryGrantableRolesRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('queryGrantableRoles', array($params), "Google_Service_Iam_QueryGrantableRolesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/Role.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/Role.php deleted file mode 100644 index daa12312..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/Role.php +++ /dev/null @@ -1,85 +0,0 @@ -deleted = $deleted; - } - public function getDeleted() - { - return $this->deleted; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setIncludedPermissions($includedPermissions) - { - $this->includedPermissions = $includedPermissions; - } - public function getIncludedPermissions() - { - return $this->includedPermissions; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setStage($stage) - { - $this->stage = $stage; - } - public function getStage() - { - return $this->stage; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/ServiceAccount.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/ServiceAccount.php deleted file mode 100644 index 3f0c820f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/ServiceAccount.php +++ /dev/null @@ -1,102 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisabled($disabled) - { - $this->disabled = $disabled; - } - public function getDisabled() - { - return $this->disabled; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setEmail($email) - { - $this->email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOauth2ClientId($oauth2ClientId) - { - $this->oauth2ClientId = $oauth2ClientId; - } - public function getOauth2ClientId() - { - return $this->oauth2ClientId; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } - public function setUniqueId($uniqueId) - { - $this->uniqueId = $uniqueId; - } - public function getUniqueId() - { - return $this->uniqueId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/ServiceAccountKey.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/ServiceAccountKey.php deleted file mode 100644 index 6e2bc343..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/ServiceAccountKey.php +++ /dev/null @@ -1,102 +0,0 @@ -keyAlgorithm = $keyAlgorithm; - } - public function getKeyAlgorithm() - { - return $this->keyAlgorithm; - } - public function setKeyOrigin($keyOrigin) - { - $this->keyOrigin = $keyOrigin; - } - public function getKeyOrigin() - { - return $this->keyOrigin; - } - public function setKeyType($keyType) - { - $this->keyType = $keyType; - } - public function getKeyType() - { - return $this->keyType; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPrivateKeyData($privateKeyData) - { - $this->privateKeyData = $privateKeyData; - } - public function getPrivateKeyData() - { - return $this->privateKeyData; - } - public function setPrivateKeyType($privateKeyType) - { - $this->privateKeyType = $privateKeyType; - } - public function getPrivateKeyType() - { - return $this->privateKeyType; - } - public function setPublicKeyData($publicKeyData) - { - $this->publicKeyData = $publicKeyData; - } - public function getPublicKeyData() - { - return $this->publicKeyData; - } - public function setValidAfterTime($validAfterTime) - { - $this->validAfterTime = $validAfterTime; - } - public function getValidAfterTime() - { - return $this->validAfterTime; - } - public function setValidBeforeTime($validBeforeTime) - { - $this->validBeforeTime = $validBeforeTime; - } - public function getValidBeforeTime() - { - return $this->validBeforeTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/SetIamPolicyRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/SetIamPolicyRequest.php deleted file mode 100644 index 84336b59..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/SetIamPolicyRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -policy = $policy; - } - /** - * @return Google_Service_Iam_Policy - */ - public function getPolicy() - { - return $this->policy; - } - public function setUpdateMask($updateMask) - { - $this->updateMask = $updateMask; - } - public function getUpdateMask() - { - return $this->updateMask; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/SignBlobRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/SignBlobRequest.php deleted file mode 100644 index f1dccccd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/SignBlobRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -bytesToSign = $bytesToSign; - } - public function getBytesToSign() - { - return $this->bytesToSign; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/SignBlobResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/SignBlobResponse.php deleted file mode 100644 index 2ddf190f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/SignBlobResponse.php +++ /dev/null @@ -1,39 +0,0 @@ -keyId = $keyId; - } - public function getKeyId() - { - return $this->keyId; - } - public function setSignature($signature) - { - $this->signature = $signature; - } - public function getSignature() - { - return $this->signature; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/SignJwtRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/SignJwtRequest.php deleted file mode 100644 index 42249747..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/SignJwtRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -payload = $payload; - } - public function getPayload() - { - return $this->payload; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/SignJwtResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/SignJwtResponse.php deleted file mode 100644 index cce0e050..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/SignJwtResponse.php +++ /dev/null @@ -1,39 +0,0 @@ -keyId = $keyId; - } - public function getKeyId() - { - return $this->keyId; - } - public function setSignedJwt($signedJwt) - { - $this->signedJwt = $signedJwt; - } - public function getSignedJwt() - { - return $this->signedJwt; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/TestIamPermissionsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/TestIamPermissionsRequest.php deleted file mode 100644 index 29c720e1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/TestIamPermissionsRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/TestIamPermissionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/TestIamPermissionsResponse.php deleted file mode 100644 index 76533ccb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/TestIamPermissionsResponse.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/UndeleteRoleRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/UndeleteRoleRequest.php deleted file mode 100644 index 945331ca..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/UndeleteRoleRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/UndeleteServiceAccountRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/UndeleteServiceAccountRequest.php deleted file mode 100644 index fefbdedd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/UndeleteServiceAccountRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -restoredAccount = $restoredAccount; - } - /** - * @return Google_Service_Iam_ServiceAccount - */ - public function getRestoredAccount() - { - return $this->restoredAccount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/UploadServiceAccountKeyRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/UploadServiceAccountKeyRequest.php deleted file mode 100644 index f4319219..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Iam/UploadServiceAccountKeyRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -publicKeyData = $publicKeyData; - } - public function getPublicKeyData() - { - return $this->publicKeyData; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit.php deleted file mode 100644 index 8d202e70..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit.php +++ /dev/null @@ -1,157 +0,0 @@ - - * Help the third party sites to implement federated login.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_IdentityToolkit extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** View and administer all your Firebase data and settings. */ - const FIREBASE = - "https://www.googleapis.com/auth/firebase"; - - public $relyingparty; - - /** - * Constructs the internal representation of the IdentityToolkit service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://www.googleapis.com/'; - $this->servicePath = 'identitytoolkit/v3/relyingparty/'; - $this->batchPath = 'batch/identitytoolkit/v3'; - $this->version = 'v3'; - $this->serviceName = 'identitytoolkit'; - - $this->relyingparty = new Google_Service_IdentityToolkit_Resource_Relyingparty( - $this, - $this->serviceName, - 'relyingparty', - array( - 'methods' => array( - 'createAuthUri' => array( - 'path' => 'createAuthUri', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'deleteAccount' => array( - 'path' => 'deleteAccount', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'downloadAccount' => array( - 'path' => 'downloadAccount', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'emailLinkSignin' => array( - 'path' => 'emailLinkSignin', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'getAccountInfo' => array( - 'path' => 'getAccountInfo', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'getOobConfirmationCode' => array( - 'path' => 'getOobConfirmationCode', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'getProjectConfig' => array( - 'path' => 'getProjectConfig', - 'httpMethod' => 'GET', - 'parameters' => array( - 'delegatedProjectNumber' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'projectNumber' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'getPublicKeys' => array( - 'path' => 'publicKeys', - 'httpMethod' => 'GET', - 'parameters' => array(), - ),'getRecaptchaParam' => array( - 'path' => 'getRecaptchaParam', - 'httpMethod' => 'GET', - 'parameters' => array(), - ),'resetPassword' => array( - 'path' => 'resetPassword', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'sendVerificationCode' => array( - 'path' => 'sendVerificationCode', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'setAccountInfo' => array( - 'path' => 'setAccountInfo', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'setProjectConfig' => array( - 'path' => 'setProjectConfig', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'signOutUser' => array( - 'path' => 'signOutUser', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'signupNewUser' => array( - 'path' => 'signupNewUser', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'uploadAccount' => array( - 'path' => 'uploadAccount', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'verifyAssertion' => array( - 'path' => 'verifyAssertion', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'verifyCustomToken' => array( - 'path' => 'verifyCustomToken', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'verifyPassword' => array( - 'path' => 'verifyPassword', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'verifyPhoneNumber' => array( - 'path' => 'verifyPhoneNumber', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/CreateAuthUriResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/CreateAuthUriResponse.php deleted file mode 100644 index bcea9141..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/CreateAuthUriResponse.php +++ /dev/null @@ -1,103 +0,0 @@ -allProviders = $allProviders; - } - public function getAllProviders() - { - return $this->allProviders; - } - public function setAuthUri($authUri) - { - $this->authUri = $authUri; - } - public function getAuthUri() - { - return $this->authUri; - } - public function setCaptchaRequired($captchaRequired) - { - $this->captchaRequired = $captchaRequired; - } - public function getCaptchaRequired() - { - return $this->captchaRequired; - } - public function setForExistingProvider($forExistingProvider) - { - $this->forExistingProvider = $forExistingProvider; - } - public function getForExistingProvider() - { - return $this->forExistingProvider; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setProviderId($providerId) - { - $this->providerId = $providerId; - } - public function getProviderId() - { - return $this->providerId; - } - public function setRegistered($registered) - { - $this->registered = $registered; - } - public function getRegistered() - { - return $this->registered; - } - public function setSessionId($sessionId) - { - $this->sessionId = $sessionId; - } - public function getSessionId() - { - return $this->sessionId; - } - public function setSigninMethods($signinMethods) - { - $this->signinMethods = $signinMethods; - } - public function getSigninMethods() - { - return $this->signinMethods; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/DeleteAccountResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/DeleteAccountResponse.php deleted file mode 100644 index d399286a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/DeleteAccountResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/DownloadAccountResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/DownloadAccountResponse.php deleted file mode 100644 index b7a15e1f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/DownloadAccountResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_IdentityToolkit_UserInfo - */ - public function setUsers($users) - { - $this->users = $users; - } - /** - * @return Google_Service_IdentityToolkit_UserInfo - */ - public function getUsers() - { - return $this->users; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/EmailLinkSigninResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/EmailLinkSigninResponse.php deleted file mode 100644 index 1ec12ded..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/EmailLinkSigninResponse.php +++ /dev/null @@ -1,84 +0,0 @@ -email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setExpiresIn($expiresIn) - { - $this->expiresIn = $expiresIn; - } - public function getExpiresIn() - { - return $this->expiresIn; - } - public function setIdToken($idToken) - { - $this->idToken = $idToken; - } - public function getIdToken() - { - return $this->idToken; - } - public function setIsNewUser($isNewUser) - { - $this->isNewUser = $isNewUser; - } - public function getIsNewUser() - { - return $this->isNewUser; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLocalId($localId) - { - $this->localId = $localId; - } - public function getLocalId() - { - return $this->localId; - } - public function setRefreshToken($refreshToken) - { - $this->refreshToken = $refreshToken; - } - public function getRefreshToken() - { - return $this->refreshToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/EmailTemplate.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/EmailTemplate.php deleted file mode 100644 index b7f15a18..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/EmailTemplate.php +++ /dev/null @@ -1,75 +0,0 @@ -body = $body; - } - public function getBody() - { - return $this->body; - } - public function setFormat($format) - { - $this->format = $format; - } - public function getFormat() - { - return $this->format; - } - public function setFrom($from) - { - $this->from = $from; - } - public function getFrom() - { - return $this->from; - } - public function setFromDisplayName($fromDisplayName) - { - $this->fromDisplayName = $fromDisplayName; - } - public function getFromDisplayName() - { - return $this->fromDisplayName; - } - public function setReplyTo($replyTo) - { - $this->replyTo = $replyTo; - } - public function getReplyTo() - { - return $this->replyTo; - } - public function setSubject($subject) - { - $this->subject = $subject; - } - public function getSubject() - { - return $this->subject; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/GetAccountInfoResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/GetAccountInfoResponse.php deleted file mode 100644 index b0a2f609..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/GetAccountInfoResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_IdentityToolkit_UserInfo - */ - public function setUsers($users) - { - $this->users = $users; - } - /** - * @return Google_Service_IdentityToolkit_UserInfo - */ - public function getUsers() - { - return $this->users; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/GetOobConfirmationCodeResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/GetOobConfirmationCodeResponse.php deleted file mode 100644 index 04ac390c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/GetOobConfirmationCodeResponse.php +++ /dev/null @@ -1,48 +0,0 @@ -email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setOobCode($oobCode) - { - $this->oobCode = $oobCode; - } - public function getOobCode() - { - return $this->oobCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/GetRecaptchaParamResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/GetRecaptchaParamResponse.php deleted file mode 100644 index e658dbd9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/GetRecaptchaParamResponse.php +++ /dev/null @@ -1,48 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setRecaptchaSiteKey($recaptchaSiteKey) - { - $this->recaptchaSiteKey = $recaptchaSiteKey; - } - public function getRecaptchaSiteKey() - { - return $this->recaptchaSiteKey; - } - public function setRecaptchaStoken($recaptchaStoken) - { - $this->recaptchaStoken = $recaptchaStoken; - } - public function getRecaptchaStoken() - { - return $this->recaptchaStoken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartyCreateAuthUriRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartyCreateAuthUriRequest.php deleted file mode 100644 index 4554b790..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartyCreateAuthUriRequest.php +++ /dev/null @@ -1,165 +0,0 @@ -appId = $appId; - } - public function getAppId() - { - return $this->appId; - } - public function setAuthFlowType($authFlowType) - { - $this->authFlowType = $authFlowType; - } - public function getAuthFlowType() - { - return $this->authFlowType; - } - public function setClientId($clientId) - { - $this->clientId = $clientId; - } - public function getClientId() - { - return $this->clientId; - } - public function setContext($context) - { - $this->context = $context; - } - public function getContext() - { - return $this->context; - } - public function setContinueUri($continueUri) - { - $this->continueUri = $continueUri; - } - public function getContinueUri() - { - return $this->continueUri; - } - public function setCustomParameter($customParameter) - { - $this->customParameter = $customParameter; - } - public function getCustomParameter() - { - return $this->customParameter; - } - public function setHostedDomain($hostedDomain) - { - $this->hostedDomain = $hostedDomain; - } - public function getHostedDomain() - { - return $this->hostedDomain; - } - public function setIdentifier($identifier) - { - $this->identifier = $identifier; - } - public function getIdentifier() - { - return $this->identifier; - } - public function setOauthConsumerKey($oauthConsumerKey) - { - $this->oauthConsumerKey = $oauthConsumerKey; - } - public function getOauthConsumerKey() - { - return $this->oauthConsumerKey; - } - public function setOauthScope($oauthScope) - { - $this->oauthScope = $oauthScope; - } - public function getOauthScope() - { - return $this->oauthScope; - } - public function setOpenidRealm($openidRealm) - { - $this->openidRealm = $openidRealm; - } - public function getOpenidRealm() - { - return $this->openidRealm; - } - public function setOtaApp($otaApp) - { - $this->otaApp = $otaApp; - } - public function getOtaApp() - { - return $this->otaApp; - } - public function setProviderId($providerId) - { - $this->providerId = $providerId; - } - public function getProviderId() - { - return $this->providerId; - } - public function setSessionId($sessionId) - { - $this->sessionId = $sessionId; - } - public function getSessionId() - { - return $this->sessionId; - } - public function setTenantId($tenantId) - { - $this->tenantId = $tenantId; - } - public function getTenantId() - { - return $this->tenantId; - } - public function setTenantProjectNumber($tenantProjectNumber) - { - $this->tenantProjectNumber = $tenantProjectNumber; - } - public function getTenantProjectNumber() - { - return $this->tenantProjectNumber; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartyDeleteAccountRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartyDeleteAccountRequest.php deleted file mode 100644 index 32ee972b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartyDeleteAccountRequest.php +++ /dev/null @@ -1,48 +0,0 @@ -delegatedProjectNumber = $delegatedProjectNumber; - } - public function getDelegatedProjectNumber() - { - return $this->delegatedProjectNumber; - } - public function setIdToken($idToken) - { - $this->idToken = $idToken; - } - public function getIdToken() - { - return $this->idToken; - } - public function setLocalId($localId) - { - $this->localId = $localId; - } - public function getLocalId() - { - return $this->localId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartyDownloadAccountRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartyDownloadAccountRequest.php deleted file mode 100644 index 0daf60b6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartyDownloadAccountRequest.php +++ /dev/null @@ -1,57 +0,0 @@ -delegatedProjectNumber = $delegatedProjectNumber; - } - public function getDelegatedProjectNumber() - { - return $this->delegatedProjectNumber; - } - public function setMaxResults($maxResults) - { - $this->maxResults = $maxResults; - } - public function getMaxResults() - { - return $this->maxResults; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setTargetProjectId($targetProjectId) - { - $this->targetProjectId = $targetProjectId; - } - public function getTargetProjectId() - { - return $this->targetProjectId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartyEmailLinkSigninRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartyEmailLinkSigninRequest.php deleted file mode 100644 index 9df053a6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartyEmailLinkSigninRequest.php +++ /dev/null @@ -1,48 +0,0 @@ -email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setIdToken($idToken) - { - $this->idToken = $idToken; - } - public function getIdToken() - { - return $this->idToken; - } - public function setOobCode($oobCode) - { - $this->oobCode = $oobCode; - } - public function getOobCode() - { - return $this->oobCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartyGetAccountInfoRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartyGetAccountInfoRequest.php deleted file mode 100644 index a6b82419..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartyGetAccountInfoRequest.php +++ /dev/null @@ -1,67 +0,0 @@ -delegatedProjectNumber = $delegatedProjectNumber; - } - public function getDelegatedProjectNumber() - { - return $this->delegatedProjectNumber; - } - public function setEmail($email) - { - $this->email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setIdToken($idToken) - { - $this->idToken = $idToken; - } - public function getIdToken() - { - return $this->idToken; - } - public function setLocalId($localId) - { - $this->localId = $localId; - } - public function getLocalId() - { - return $this->localId; - } - public function setPhoneNumber($phoneNumber) - { - $this->phoneNumber = $phoneNumber; - } - public function getPhoneNumber() - { - return $this->phoneNumber; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartyGetProjectConfigResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartyGetProjectConfigResponse.php deleted file mode 100644 index 89a6e849..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartyGetProjectConfigResponse.php +++ /dev/null @@ -1,165 +0,0 @@ -allowPasswordUser = $allowPasswordUser; - } - public function getAllowPasswordUser() - { - return $this->allowPasswordUser; - } - public function setApiKey($apiKey) - { - $this->apiKey = $apiKey; - } - public function getApiKey() - { - return $this->apiKey; - } - public function setAuthorizedDomains($authorizedDomains) - { - $this->authorizedDomains = $authorizedDomains; - } - public function getAuthorizedDomains() - { - return $this->authorizedDomains; - } - /** - * @param Google_Service_IdentityToolkit_EmailTemplate - */ - public function setChangeEmailTemplate(Google_Service_IdentityToolkit_EmailTemplate $changeEmailTemplate) - { - $this->changeEmailTemplate = $changeEmailTemplate; - } - /** - * @return Google_Service_IdentityToolkit_EmailTemplate - */ - public function getChangeEmailTemplate() - { - return $this->changeEmailTemplate; - } - public function setDynamicLinksDomain($dynamicLinksDomain) - { - $this->dynamicLinksDomain = $dynamicLinksDomain; - } - public function getDynamicLinksDomain() - { - return $this->dynamicLinksDomain; - } - public function setEnableAnonymousUser($enableAnonymousUser) - { - $this->enableAnonymousUser = $enableAnonymousUser; - } - public function getEnableAnonymousUser() - { - return $this->enableAnonymousUser; - } - /** - * @param Google_Service_IdentityToolkit_IdpConfig - */ - public function setIdpConfig($idpConfig) - { - $this->idpConfig = $idpConfig; - } - /** - * @return Google_Service_IdentityToolkit_IdpConfig - */ - public function getIdpConfig() - { - return $this->idpConfig; - } - /** - * @param Google_Service_IdentityToolkit_EmailTemplate - */ - public function setLegacyResetPasswordTemplate(Google_Service_IdentityToolkit_EmailTemplate $legacyResetPasswordTemplate) - { - $this->legacyResetPasswordTemplate = $legacyResetPasswordTemplate; - } - /** - * @return Google_Service_IdentityToolkit_EmailTemplate - */ - public function getLegacyResetPasswordTemplate() - { - return $this->legacyResetPasswordTemplate; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } - /** - * @param Google_Service_IdentityToolkit_EmailTemplate - */ - public function setResetPasswordTemplate(Google_Service_IdentityToolkit_EmailTemplate $resetPasswordTemplate) - { - $this->resetPasswordTemplate = $resetPasswordTemplate; - } - /** - * @return Google_Service_IdentityToolkit_EmailTemplate - */ - public function getResetPasswordTemplate() - { - return $this->resetPasswordTemplate; - } - public function setUseEmailSending($useEmailSending) - { - $this->useEmailSending = $useEmailSending; - } - public function getUseEmailSending() - { - return $this->useEmailSending; - } - /** - * @param Google_Service_IdentityToolkit_EmailTemplate - */ - public function setVerifyEmailTemplate(Google_Service_IdentityToolkit_EmailTemplate $verifyEmailTemplate) - { - $this->verifyEmailTemplate = $verifyEmailTemplate; - } - /** - * @return Google_Service_IdentityToolkit_EmailTemplate - */ - public function getVerifyEmailTemplate() - { - return $this->verifyEmailTemplate; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartyResetPasswordRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartyResetPasswordRequest.php deleted file mode 100644 index 5f5d9bf7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartyResetPasswordRequest.php +++ /dev/null @@ -1,57 +0,0 @@ -email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setNewPassword($newPassword) - { - $this->newPassword = $newPassword; - } - public function getNewPassword() - { - return $this->newPassword; - } - public function setOldPassword($oldPassword) - { - $this->oldPassword = $oldPassword; - } - public function getOldPassword() - { - return $this->oldPassword; - } - public function setOobCode($oobCode) - { - $this->oobCode = $oobCode; - } - public function getOobCode() - { - return $this->oobCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartySendVerificationCodeRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartySendVerificationCodeRequest.php deleted file mode 100644 index 03ca6edf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartySendVerificationCodeRequest.php +++ /dev/null @@ -1,57 +0,0 @@ -iosReceipt = $iosReceipt; - } - public function getIosReceipt() - { - return $this->iosReceipt; - } - public function setIosSecret($iosSecret) - { - $this->iosSecret = $iosSecret; - } - public function getIosSecret() - { - return $this->iosSecret; - } - public function setPhoneNumber($phoneNumber) - { - $this->phoneNumber = $phoneNumber; - } - public function getPhoneNumber() - { - return $this->phoneNumber; - } - public function setRecaptchaToken($recaptchaToken) - { - $this->recaptchaToken = $recaptchaToken; - } - public function getRecaptchaToken() - { - return $this->recaptchaToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartySendVerificationCodeResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartySendVerificationCodeResponse.php deleted file mode 100644 index f63a2f99..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartySendVerificationCodeResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -sessionInfo = $sessionInfo; - } - public function getSessionInfo() - { - return $this->sessionInfo; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartySetAccountInfoRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartySetAccountInfoRequest.php deleted file mode 100644 index f05bfe48..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartySetAccountInfoRequest.php +++ /dev/null @@ -1,229 +0,0 @@ -captchaChallenge = $captchaChallenge; - } - public function getCaptchaChallenge() - { - return $this->captchaChallenge; - } - public function setCaptchaResponse($captchaResponse) - { - $this->captchaResponse = $captchaResponse; - } - public function getCaptchaResponse() - { - return $this->captchaResponse; - } - public function setCreatedAt($createdAt) - { - $this->createdAt = $createdAt; - } - public function getCreatedAt() - { - return $this->createdAt; - } - public function setCustomAttributes($customAttributes) - { - $this->customAttributes = $customAttributes; - } - public function getCustomAttributes() - { - return $this->customAttributes; - } - public function setDelegatedProjectNumber($delegatedProjectNumber) - { - $this->delegatedProjectNumber = $delegatedProjectNumber; - } - public function getDelegatedProjectNumber() - { - return $this->delegatedProjectNumber; - } - public function setDeleteAttribute($deleteAttribute) - { - $this->deleteAttribute = $deleteAttribute; - } - public function getDeleteAttribute() - { - return $this->deleteAttribute; - } - public function setDeleteProvider($deleteProvider) - { - $this->deleteProvider = $deleteProvider; - } - public function getDeleteProvider() - { - return $this->deleteProvider; - } - public function setDisableUser($disableUser) - { - $this->disableUser = $disableUser; - } - public function getDisableUser() - { - return $this->disableUser; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setEmail($email) - { - $this->email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setEmailVerified($emailVerified) - { - $this->emailVerified = $emailVerified; - } - public function getEmailVerified() - { - return $this->emailVerified; - } - public function setIdToken($idToken) - { - $this->idToken = $idToken; - } - public function getIdToken() - { - return $this->idToken; - } - public function setInstanceId($instanceId) - { - $this->instanceId = $instanceId; - } - public function getInstanceId() - { - return $this->instanceId; - } - public function setLastLoginAt($lastLoginAt) - { - $this->lastLoginAt = $lastLoginAt; - } - public function getLastLoginAt() - { - return $this->lastLoginAt; - } - public function setLocalId($localId) - { - $this->localId = $localId; - } - public function getLocalId() - { - return $this->localId; - } - public function setOobCode($oobCode) - { - $this->oobCode = $oobCode; - } - public function getOobCode() - { - return $this->oobCode; - } - public function setPassword($password) - { - $this->password = $password; - } - public function getPassword() - { - return $this->password; - } - public function setPhoneNumber($phoneNumber) - { - $this->phoneNumber = $phoneNumber; - } - public function getPhoneNumber() - { - return $this->phoneNumber; - } - public function setPhotoUrl($photoUrl) - { - $this->photoUrl = $photoUrl; - } - public function getPhotoUrl() - { - return $this->photoUrl; - } - public function setProvider($provider) - { - $this->provider = $provider; - } - public function getProvider() - { - return $this->provider; - } - public function setReturnSecureToken($returnSecureToken) - { - $this->returnSecureToken = $returnSecureToken; - } - public function getReturnSecureToken() - { - return $this->returnSecureToken; - } - public function setUpgradeToFederatedLogin($upgradeToFederatedLogin) - { - $this->upgradeToFederatedLogin = $upgradeToFederatedLogin; - } - public function getUpgradeToFederatedLogin() - { - return $this->upgradeToFederatedLogin; - } - public function setValidSince($validSince) - { - $this->validSince = $validSince; - } - public function getValidSince() - { - return $this->validSince; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartySetProjectConfigRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartySetProjectConfigRequest.php deleted file mode 100644 index a58d2d69..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartySetProjectConfigRequest.php +++ /dev/null @@ -1,156 +0,0 @@ -allowPasswordUser = $allowPasswordUser; - } - public function getAllowPasswordUser() - { - return $this->allowPasswordUser; - } - public function setApiKey($apiKey) - { - $this->apiKey = $apiKey; - } - public function getApiKey() - { - return $this->apiKey; - } - public function setAuthorizedDomains($authorizedDomains) - { - $this->authorizedDomains = $authorizedDomains; - } - public function getAuthorizedDomains() - { - return $this->authorizedDomains; - } - /** - * @param Google_Service_IdentityToolkit_EmailTemplate - */ - public function setChangeEmailTemplate(Google_Service_IdentityToolkit_EmailTemplate $changeEmailTemplate) - { - $this->changeEmailTemplate = $changeEmailTemplate; - } - /** - * @return Google_Service_IdentityToolkit_EmailTemplate - */ - public function getChangeEmailTemplate() - { - return $this->changeEmailTemplate; - } - public function setDelegatedProjectNumber($delegatedProjectNumber) - { - $this->delegatedProjectNumber = $delegatedProjectNumber; - } - public function getDelegatedProjectNumber() - { - return $this->delegatedProjectNumber; - } - public function setEnableAnonymousUser($enableAnonymousUser) - { - $this->enableAnonymousUser = $enableAnonymousUser; - } - public function getEnableAnonymousUser() - { - return $this->enableAnonymousUser; - } - /** - * @param Google_Service_IdentityToolkit_IdpConfig - */ - public function setIdpConfig($idpConfig) - { - $this->idpConfig = $idpConfig; - } - /** - * @return Google_Service_IdentityToolkit_IdpConfig - */ - public function getIdpConfig() - { - return $this->idpConfig; - } - /** - * @param Google_Service_IdentityToolkit_EmailTemplate - */ - public function setLegacyResetPasswordTemplate(Google_Service_IdentityToolkit_EmailTemplate $legacyResetPasswordTemplate) - { - $this->legacyResetPasswordTemplate = $legacyResetPasswordTemplate; - } - /** - * @return Google_Service_IdentityToolkit_EmailTemplate - */ - public function getLegacyResetPasswordTemplate() - { - return $this->legacyResetPasswordTemplate; - } - /** - * @param Google_Service_IdentityToolkit_EmailTemplate - */ - public function setResetPasswordTemplate(Google_Service_IdentityToolkit_EmailTemplate $resetPasswordTemplate) - { - $this->resetPasswordTemplate = $resetPasswordTemplate; - } - /** - * @return Google_Service_IdentityToolkit_EmailTemplate - */ - public function getResetPasswordTemplate() - { - return $this->resetPasswordTemplate; - } - public function setUseEmailSending($useEmailSending) - { - $this->useEmailSending = $useEmailSending; - } - public function getUseEmailSending() - { - return $this->useEmailSending; - } - /** - * @param Google_Service_IdentityToolkit_EmailTemplate - */ - public function setVerifyEmailTemplate(Google_Service_IdentityToolkit_EmailTemplate $verifyEmailTemplate) - { - $this->verifyEmailTemplate = $verifyEmailTemplate; - } - /** - * @return Google_Service_IdentityToolkit_EmailTemplate - */ - public function getVerifyEmailTemplate() - { - return $this->verifyEmailTemplate; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartySetProjectConfigResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartySetProjectConfigResponse.php deleted file mode 100644 index 1f5df755..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartySetProjectConfigResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartySignOutUserRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartySignOutUserRequest.php deleted file mode 100644 index 67412a92..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartySignOutUserRequest.php +++ /dev/null @@ -1,39 +0,0 @@ -instanceId = $instanceId; - } - public function getInstanceId() - { - return $this->instanceId; - } - public function setLocalId($localId) - { - $this->localId = $localId; - } - public function getLocalId() - { - return $this->localId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartySignOutUserResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartySignOutUserResponse.php deleted file mode 100644 index 700a8f58..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartySignOutUserResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -localId = $localId; - } - public function getLocalId() - { - return $this->localId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartySignupNewUserRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartySignupNewUserRequest.php deleted file mode 100644 index c4f116ce..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartySignupNewUserRequest.php +++ /dev/null @@ -1,147 +0,0 @@ -captchaChallenge = $captchaChallenge; - } - public function getCaptchaChallenge() - { - return $this->captchaChallenge; - } - public function setCaptchaResponse($captchaResponse) - { - $this->captchaResponse = $captchaResponse; - } - public function getCaptchaResponse() - { - return $this->captchaResponse; - } - public function setDisabled($disabled) - { - $this->disabled = $disabled; - } - public function getDisabled() - { - return $this->disabled; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setEmail($email) - { - $this->email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setEmailVerified($emailVerified) - { - $this->emailVerified = $emailVerified; - } - public function getEmailVerified() - { - return $this->emailVerified; - } - public function setIdToken($idToken) - { - $this->idToken = $idToken; - } - public function getIdToken() - { - return $this->idToken; - } - public function setInstanceId($instanceId) - { - $this->instanceId = $instanceId; - } - public function getInstanceId() - { - return $this->instanceId; - } - public function setLocalId($localId) - { - $this->localId = $localId; - } - public function getLocalId() - { - return $this->localId; - } - public function setPassword($password) - { - $this->password = $password; - } - public function getPassword() - { - return $this->password; - } - public function setPhoneNumber($phoneNumber) - { - $this->phoneNumber = $phoneNumber; - } - public function getPhoneNumber() - { - return $this->phoneNumber; - } - public function setPhotoUrl($photoUrl) - { - $this->photoUrl = $photoUrl; - } - public function getPhotoUrl() - { - return $this->photoUrl; - } - public function setTenantId($tenantId) - { - $this->tenantId = $tenantId; - } - public function getTenantId() - { - return $this->tenantId; - } - public function setTenantProjectNumber($tenantProjectNumber) - { - $this->tenantProjectNumber = $tenantProjectNumber; - } - public function getTenantProjectNumber() - { - return $this->tenantProjectNumber; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartyUploadAccountRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartyUploadAccountRequest.php deleted file mode 100644 index ce0dff2f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartyUploadAccountRequest.php +++ /dev/null @@ -1,155 +0,0 @@ -allowOverwrite = $allowOverwrite; - } - public function getAllowOverwrite() - { - return $this->allowOverwrite; - } - public function setBlockSize($blockSize) - { - $this->blockSize = $blockSize; - } - public function getBlockSize() - { - return $this->blockSize; - } - public function setCpuMemCost($cpuMemCost) - { - $this->cpuMemCost = $cpuMemCost; - } - public function getCpuMemCost() - { - return $this->cpuMemCost; - } - public function setDelegatedProjectNumber($delegatedProjectNumber) - { - $this->delegatedProjectNumber = $delegatedProjectNumber; - } - public function getDelegatedProjectNumber() - { - return $this->delegatedProjectNumber; - } - public function setDkLen($dkLen) - { - $this->dkLen = $dkLen; - } - public function getDkLen() - { - return $this->dkLen; - } - public function setHashAlgorithm($hashAlgorithm) - { - $this->hashAlgorithm = $hashAlgorithm; - } - public function getHashAlgorithm() - { - return $this->hashAlgorithm; - } - public function setMemoryCost($memoryCost) - { - $this->memoryCost = $memoryCost; - } - public function getMemoryCost() - { - return $this->memoryCost; - } - public function setParallelization($parallelization) - { - $this->parallelization = $parallelization; - } - public function getParallelization() - { - return $this->parallelization; - } - public function setRounds($rounds) - { - $this->rounds = $rounds; - } - public function getRounds() - { - return $this->rounds; - } - public function setSaltSeparator($saltSeparator) - { - $this->saltSeparator = $saltSeparator; - } - public function getSaltSeparator() - { - return $this->saltSeparator; - } - public function setSanityCheck($sanityCheck) - { - $this->sanityCheck = $sanityCheck; - } - public function getSanityCheck() - { - return $this->sanityCheck; - } - public function setSignerKey($signerKey) - { - $this->signerKey = $signerKey; - } - public function getSignerKey() - { - return $this->signerKey; - } - public function setTargetProjectId($targetProjectId) - { - $this->targetProjectId = $targetProjectId; - } - public function getTargetProjectId() - { - return $this->targetProjectId; - } - /** - * @param Google_Service_IdentityToolkit_UserInfo - */ - public function setUsers($users) - { - $this->users = $users; - } - /** - * @return Google_Service_IdentityToolkit_UserInfo - */ - public function getUsers() - { - return $this->users; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartyVerifyAssertionRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartyVerifyAssertionRequest.php deleted file mode 100644 index 537868f0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartyVerifyAssertionRequest.php +++ /dev/null @@ -1,138 +0,0 @@ -autoCreate = $autoCreate; - } - public function getAutoCreate() - { - return $this->autoCreate; - } - public function setDelegatedProjectNumber($delegatedProjectNumber) - { - $this->delegatedProjectNumber = $delegatedProjectNumber; - } - public function getDelegatedProjectNumber() - { - return $this->delegatedProjectNumber; - } - public function setIdToken($idToken) - { - $this->idToken = $idToken; - } - public function getIdToken() - { - return $this->idToken; - } - public function setInstanceId($instanceId) - { - $this->instanceId = $instanceId; - } - public function getInstanceId() - { - return $this->instanceId; - } - public function setPendingIdToken($pendingIdToken) - { - $this->pendingIdToken = $pendingIdToken; - } - public function getPendingIdToken() - { - return $this->pendingIdToken; - } - public function setPostBody($postBody) - { - $this->postBody = $postBody; - } - public function getPostBody() - { - return $this->postBody; - } - public function setRequestUri($requestUri) - { - $this->requestUri = $requestUri; - } - public function getRequestUri() - { - return $this->requestUri; - } - public function setReturnIdpCredential($returnIdpCredential) - { - $this->returnIdpCredential = $returnIdpCredential; - } - public function getReturnIdpCredential() - { - return $this->returnIdpCredential; - } - public function setReturnRefreshToken($returnRefreshToken) - { - $this->returnRefreshToken = $returnRefreshToken; - } - public function getReturnRefreshToken() - { - return $this->returnRefreshToken; - } - public function setReturnSecureToken($returnSecureToken) - { - $this->returnSecureToken = $returnSecureToken; - } - public function getReturnSecureToken() - { - return $this->returnSecureToken; - } - public function setSessionId($sessionId) - { - $this->sessionId = $sessionId; - } - public function getSessionId() - { - return $this->sessionId; - } - public function setTenantId($tenantId) - { - $this->tenantId = $tenantId; - } - public function getTenantId() - { - return $this->tenantId; - } - public function setTenantProjectNumber($tenantProjectNumber) - { - $this->tenantProjectNumber = $tenantProjectNumber; - } - public function getTenantProjectNumber() - { - return $this->tenantProjectNumber; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartyVerifyCustomTokenRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartyVerifyCustomTokenRequest.php deleted file mode 100644 index 2b9741b2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartyVerifyCustomTokenRequest.php +++ /dev/null @@ -1,57 +0,0 @@ -delegatedProjectNumber = $delegatedProjectNumber; - } - public function getDelegatedProjectNumber() - { - return $this->delegatedProjectNumber; - } - public function setInstanceId($instanceId) - { - $this->instanceId = $instanceId; - } - public function getInstanceId() - { - return $this->instanceId; - } - public function setReturnSecureToken($returnSecureToken) - { - $this->returnSecureToken = $returnSecureToken; - } - public function getReturnSecureToken() - { - return $this->returnSecureToken; - } - public function setToken($token) - { - $this->token = $token; - } - public function getToken() - { - return $this->token; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartyVerifyPasswordRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartyVerifyPasswordRequest.php deleted file mode 100644 index d0e732c1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartyVerifyPasswordRequest.php +++ /dev/null @@ -1,120 +0,0 @@ -captchaChallenge = $captchaChallenge; - } - public function getCaptchaChallenge() - { - return $this->captchaChallenge; - } - public function setCaptchaResponse($captchaResponse) - { - $this->captchaResponse = $captchaResponse; - } - public function getCaptchaResponse() - { - return $this->captchaResponse; - } - public function setDelegatedProjectNumber($delegatedProjectNumber) - { - $this->delegatedProjectNumber = $delegatedProjectNumber; - } - public function getDelegatedProjectNumber() - { - return $this->delegatedProjectNumber; - } - public function setEmail($email) - { - $this->email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setIdToken($idToken) - { - $this->idToken = $idToken; - } - public function getIdToken() - { - return $this->idToken; - } - public function setInstanceId($instanceId) - { - $this->instanceId = $instanceId; - } - public function getInstanceId() - { - return $this->instanceId; - } - public function setPassword($password) - { - $this->password = $password; - } - public function getPassword() - { - return $this->password; - } - public function setPendingIdToken($pendingIdToken) - { - $this->pendingIdToken = $pendingIdToken; - } - public function getPendingIdToken() - { - return $this->pendingIdToken; - } - public function setReturnSecureToken($returnSecureToken) - { - $this->returnSecureToken = $returnSecureToken; - } - public function getReturnSecureToken() - { - return $this->returnSecureToken; - } - public function setTenantId($tenantId) - { - $this->tenantId = $tenantId; - } - public function getTenantId() - { - return $this->tenantId; - } - public function setTenantProjectNumber($tenantProjectNumber) - { - $this->tenantProjectNumber = $tenantProjectNumber; - } - public function getTenantProjectNumber() - { - return $this->tenantProjectNumber; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartyVerifyPhoneNumberRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartyVerifyPhoneNumberRequest.php deleted file mode 100644 index 014916cc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartyVerifyPhoneNumberRequest.php +++ /dev/null @@ -1,84 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setIdToken($idToken) - { - $this->idToken = $idToken; - } - public function getIdToken() - { - return $this->idToken; - } - public function setOperation($operation) - { - $this->operation = $operation; - } - public function getOperation() - { - return $this->operation; - } - public function setPhoneNumber($phoneNumber) - { - $this->phoneNumber = $phoneNumber; - } - public function getPhoneNumber() - { - return $this->phoneNumber; - } - public function setSessionInfo($sessionInfo) - { - $this->sessionInfo = $sessionInfo; - } - public function getSessionInfo() - { - return $this->sessionInfo; - } - public function setTemporaryProof($temporaryProof) - { - $this->temporaryProof = $temporaryProof; - } - public function getTemporaryProof() - { - return $this->temporaryProof; - } - public function setVerificationProof($verificationProof) - { - $this->verificationProof = $verificationProof; - } - public function getVerificationProof() - { - return $this->verificationProof; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartyVerifyPhoneNumberResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartyVerifyPhoneNumberResponse.php deleted file mode 100644 index 124f5beb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdentitytoolkitRelyingpartyVerifyPhoneNumberResponse.php +++ /dev/null @@ -1,111 +0,0 @@ -expiresIn = $expiresIn; - } - public function getExpiresIn() - { - return $this->expiresIn; - } - public function setIdToken($idToken) - { - $this->idToken = $idToken; - } - public function getIdToken() - { - return $this->idToken; - } - public function setIsNewUser($isNewUser) - { - $this->isNewUser = $isNewUser; - } - public function getIsNewUser() - { - return $this->isNewUser; - } - public function setLocalId($localId) - { - $this->localId = $localId; - } - public function getLocalId() - { - return $this->localId; - } - public function setPhoneNumber($phoneNumber) - { - $this->phoneNumber = $phoneNumber; - } - public function getPhoneNumber() - { - return $this->phoneNumber; - } - public function setRefreshToken($refreshToken) - { - $this->refreshToken = $refreshToken; - } - public function getRefreshToken() - { - return $this->refreshToken; - } - public function setTemporaryProof($temporaryProof) - { - $this->temporaryProof = $temporaryProof; - } - public function getTemporaryProof() - { - return $this->temporaryProof; - } - public function setTemporaryProofExpiresIn($temporaryProofExpiresIn) - { - $this->temporaryProofExpiresIn = $temporaryProofExpiresIn; - } - public function getTemporaryProofExpiresIn() - { - return $this->temporaryProofExpiresIn; - } - public function setVerificationProof($verificationProof) - { - $this->verificationProof = $verificationProof; - } - public function getVerificationProof() - { - return $this->verificationProof; - } - public function setVerificationProofExpiresIn($verificationProofExpiresIn) - { - $this->verificationProofExpiresIn = $verificationProofExpiresIn; - } - public function getVerificationProofExpiresIn() - { - return $this->verificationProofExpiresIn; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdpConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdpConfig.php deleted file mode 100644 index 7a3f8801..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/IdpConfig.php +++ /dev/null @@ -1,76 +0,0 @@ -clientId = $clientId; - } - public function getClientId() - { - return $this->clientId; - } - public function setEnabled($enabled) - { - $this->enabled = $enabled; - } - public function getEnabled() - { - return $this->enabled; - } - public function setExperimentPercent($experimentPercent) - { - $this->experimentPercent = $experimentPercent; - } - public function getExperimentPercent() - { - return $this->experimentPercent; - } - public function setProvider($provider) - { - $this->provider = $provider; - } - public function getProvider() - { - return $this->provider; - } - public function setSecret($secret) - { - $this->secret = $secret; - } - public function getSecret() - { - return $this->secret; - } - public function setWhitelistedAudiences($whitelistedAudiences) - { - $this->whitelistedAudiences = $whitelistedAudiences; - } - public function getWhitelistedAudiences() - { - return $this->whitelistedAudiences; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/Relyingparty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/Relyingparty.php deleted file mode 100644 index f6ce7195..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/Relyingparty.php +++ /dev/null @@ -1,156 +0,0 @@ -androidInstallApp = $androidInstallApp; - } - public function getAndroidInstallApp() - { - return $this->androidInstallApp; - } - public function setAndroidMinimumVersion($androidMinimumVersion) - { - $this->androidMinimumVersion = $androidMinimumVersion; - } - public function getAndroidMinimumVersion() - { - return $this->androidMinimumVersion; - } - public function setAndroidPackageName($androidPackageName) - { - $this->androidPackageName = $androidPackageName; - } - public function getAndroidPackageName() - { - return $this->androidPackageName; - } - public function setCanHandleCodeInApp($canHandleCodeInApp) - { - $this->canHandleCodeInApp = $canHandleCodeInApp; - } - public function getCanHandleCodeInApp() - { - return $this->canHandleCodeInApp; - } - public function setCaptchaResp($captchaResp) - { - $this->captchaResp = $captchaResp; - } - public function getCaptchaResp() - { - return $this->captchaResp; - } - public function setChallenge($challenge) - { - $this->challenge = $challenge; - } - public function getChallenge() - { - return $this->challenge; - } - public function setContinueUrl($continueUrl) - { - $this->continueUrl = $continueUrl; - } - public function getContinueUrl() - { - return $this->continueUrl; - } - public function setEmail($email) - { - $this->email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setIOSAppStoreId($iOSAppStoreId) - { - $this->iOSAppStoreId = $iOSAppStoreId; - } - public function getIOSAppStoreId() - { - return $this->iOSAppStoreId; - } - public function setIOSBundleId($iOSBundleId) - { - $this->iOSBundleId = $iOSBundleId; - } - public function getIOSBundleId() - { - return $this->iOSBundleId; - } - public function setIdToken($idToken) - { - $this->idToken = $idToken; - } - public function getIdToken() - { - return $this->idToken; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNewEmail($newEmail) - { - $this->newEmail = $newEmail; - } - public function getNewEmail() - { - return $this->newEmail; - } - public function setRequestType($requestType) - { - $this->requestType = $requestType; - } - public function getRequestType() - { - return $this->requestType; - } - public function setUserIp($userIp) - { - $this->userIp = $userIp; - } - public function getUserIp() - { - return $this->userIp; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/ResetPasswordResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/ResetPasswordResponse.php deleted file mode 100644 index eb060e73..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/ResetPasswordResponse.php +++ /dev/null @@ -1,57 +0,0 @@ -email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNewEmail($newEmail) - { - $this->newEmail = $newEmail; - } - public function getNewEmail() - { - return $this->newEmail; - } - public function setRequestType($requestType) - { - $this->requestType = $requestType; - } - public function getRequestType() - { - return $this->requestType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/Resource/Relyingparty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/Resource/Relyingparty.php deleted file mode 100644 index d2644db2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/Resource/Relyingparty.php +++ /dev/null @@ -1,292 +0,0 @@ - - * $identitytoolkitService = new Google_Service_IdentityToolkit(...); - * $relyingparty = $identitytoolkitService->relyingparty; - * - */ -class Google_Service_IdentityToolkit_Resource_Relyingparty extends Google_Service_Resource -{ - /** - * Creates the URI used by the IdP to authenticate the user. - * (relyingparty.createAuthUri) - * - * @param Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyCreateAuthUriRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_IdentityToolkit_CreateAuthUriResponse - */ - public function createAuthUri(Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyCreateAuthUriRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('createAuthUri', array($params), "Google_Service_IdentityToolkit_CreateAuthUriResponse"); - } - /** - * Delete user account. (relyingparty.deleteAccount) - * - * @param Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyDeleteAccountRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_IdentityToolkit_DeleteAccountResponse - */ - public function deleteAccount(Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyDeleteAccountRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('deleteAccount', array($params), "Google_Service_IdentityToolkit_DeleteAccountResponse"); - } - /** - * Batch download user accounts. (relyingparty.downloadAccount) - * - * @param Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyDownloadAccountRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_IdentityToolkit_DownloadAccountResponse - */ - public function downloadAccount(Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyDownloadAccountRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('downloadAccount', array($params), "Google_Service_IdentityToolkit_DownloadAccountResponse"); - } - /** - * Reset password for a user. (relyingparty.emailLinkSignin) - * - * @param Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyEmailLinkSigninRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_IdentityToolkit_EmailLinkSigninResponse - */ - public function emailLinkSignin(Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyEmailLinkSigninRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('emailLinkSignin', array($params), "Google_Service_IdentityToolkit_EmailLinkSigninResponse"); - } - /** - * Returns the account info. (relyingparty.getAccountInfo) - * - * @param Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyGetAccountInfoRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_IdentityToolkit_GetAccountInfoResponse - */ - public function getAccountInfo(Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyGetAccountInfoRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('getAccountInfo', array($params), "Google_Service_IdentityToolkit_GetAccountInfoResponse"); - } - /** - * Get a code for user action confirmation. - * (relyingparty.getOobConfirmationCode) - * - * @param Google_Service_IdentityToolkit_Relyingparty $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_IdentityToolkit_GetOobConfirmationCodeResponse - */ - public function getOobConfirmationCode(Google_Service_IdentityToolkit_Relyingparty $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('getOobConfirmationCode', array($params), "Google_Service_IdentityToolkit_GetOobConfirmationCodeResponse"); - } - /** - * Get project configuration. (relyingparty.getProjectConfig) - * - * @param array $optParams Optional parameters. - * - * @opt_param string delegatedProjectNumber Delegated GCP project number of the - * request. - * @opt_param string projectNumber GCP project number of the request. - * @return Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyGetProjectConfigResponse - */ - public function getProjectConfig($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('getProjectConfig', array($params), "Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyGetProjectConfigResponse"); - } - /** - * Get token signing public key. (relyingparty.getPublicKeys) - * - * @param array $optParams Optional parameters. - * @return Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyGetPublicKeysResponse - */ - public function getPublicKeys($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('getPublicKeys', array($params), "Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyGetPublicKeysResponse"); - } - /** - * Get recaptcha secure param. (relyingparty.getRecaptchaParam) - * - * @param array $optParams Optional parameters. - * @return Google_Service_IdentityToolkit_GetRecaptchaParamResponse - */ - public function getRecaptchaParam($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('getRecaptchaParam', array($params), "Google_Service_IdentityToolkit_GetRecaptchaParamResponse"); - } - /** - * Reset password for a user. (relyingparty.resetPassword) - * - * @param Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyResetPasswordRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_IdentityToolkit_ResetPasswordResponse - */ - public function resetPassword(Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyResetPasswordRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('resetPassword', array($params), "Google_Service_IdentityToolkit_ResetPasswordResponse"); - } - /** - * Send SMS verification code. (relyingparty.sendVerificationCode) - * - * @param Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartySendVerificationCodeRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartySendVerificationCodeResponse - */ - public function sendVerificationCode(Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartySendVerificationCodeRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('sendVerificationCode', array($params), "Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartySendVerificationCodeResponse"); - } - /** - * Set account info for a user. (relyingparty.setAccountInfo) - * - * @param Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartySetAccountInfoRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_IdentityToolkit_SetAccountInfoResponse - */ - public function setAccountInfo(Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartySetAccountInfoRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setAccountInfo', array($params), "Google_Service_IdentityToolkit_SetAccountInfoResponse"); - } - /** - * Set project configuration. (relyingparty.setProjectConfig) - * - * @param Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartySetProjectConfigRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartySetProjectConfigResponse - */ - public function setProjectConfig(Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartySetProjectConfigRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setProjectConfig', array($params), "Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartySetProjectConfigResponse"); - } - /** - * Sign out user. (relyingparty.signOutUser) - * - * @param Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartySignOutUserRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartySignOutUserResponse - */ - public function signOutUser(Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartySignOutUserRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('signOutUser', array($params), "Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartySignOutUserResponse"); - } - /** - * Signup new user. (relyingparty.signupNewUser) - * - * @param Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartySignupNewUserRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_IdentityToolkit_SignupNewUserResponse - */ - public function signupNewUser(Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartySignupNewUserRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('signupNewUser', array($params), "Google_Service_IdentityToolkit_SignupNewUserResponse"); - } - /** - * Batch upload existing user accounts. (relyingparty.uploadAccount) - * - * @param Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyUploadAccountRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_IdentityToolkit_UploadAccountResponse - */ - public function uploadAccount(Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyUploadAccountRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('uploadAccount', array($params), "Google_Service_IdentityToolkit_UploadAccountResponse"); - } - /** - * Verifies the assertion returned by the IdP. (relyingparty.verifyAssertion) - * - * @param Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyVerifyAssertionRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_IdentityToolkit_VerifyAssertionResponse - */ - public function verifyAssertion(Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyVerifyAssertionRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('verifyAssertion', array($params), "Google_Service_IdentityToolkit_VerifyAssertionResponse"); - } - /** - * Verifies the developer asserted ID token. (relyingparty.verifyCustomToken) - * - * @param Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyVerifyCustomTokenRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_IdentityToolkit_VerifyCustomTokenResponse - */ - public function verifyCustomToken(Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyVerifyCustomTokenRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('verifyCustomToken', array($params), "Google_Service_IdentityToolkit_VerifyCustomTokenResponse"); - } - /** - * Verifies the user entered password. (relyingparty.verifyPassword) - * - * @param Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyVerifyPasswordRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_IdentityToolkit_VerifyPasswordResponse - */ - public function verifyPassword(Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyVerifyPasswordRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('verifyPassword', array($params), "Google_Service_IdentityToolkit_VerifyPasswordResponse"); - } - /** - * Verifies ownership of a phone number and creates/updates the user account - * accordingly. (relyingparty.verifyPhoneNumber) - * - * @param Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyVerifyPhoneNumberRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyVerifyPhoneNumberResponse - */ - public function verifyPhoneNumber(Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyVerifyPhoneNumberRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('verifyPhoneNumber', array($params), "Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyVerifyPhoneNumberResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/SetAccountInfoResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/SetAccountInfoResponse.php deleted file mode 100644 index 1c2ded5e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/SetAccountInfoResponse.php +++ /dev/null @@ -1,137 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setEmail($email) - { - $this->email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setEmailVerified($emailVerified) - { - $this->emailVerified = $emailVerified; - } - public function getEmailVerified() - { - return $this->emailVerified; - } - public function setExpiresIn($expiresIn) - { - $this->expiresIn = $expiresIn; - } - public function getExpiresIn() - { - return $this->expiresIn; - } - public function setIdToken($idToken) - { - $this->idToken = $idToken; - } - public function getIdToken() - { - return $this->idToken; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLocalId($localId) - { - $this->localId = $localId; - } - public function getLocalId() - { - return $this->localId; - } - public function setNewEmail($newEmail) - { - $this->newEmail = $newEmail; - } - public function getNewEmail() - { - return $this->newEmail; - } - public function setPasswordHash($passwordHash) - { - $this->passwordHash = $passwordHash; - } - public function getPasswordHash() - { - return $this->passwordHash; - } - public function setPhotoUrl($photoUrl) - { - $this->photoUrl = $photoUrl; - } - public function getPhotoUrl() - { - return $this->photoUrl; - } - /** - * @param Google_Service_IdentityToolkit_SetAccountInfoResponseProviderUserInfo - */ - public function setProviderUserInfo($providerUserInfo) - { - $this->providerUserInfo = $providerUserInfo; - } - /** - * @return Google_Service_IdentityToolkit_SetAccountInfoResponseProviderUserInfo - */ - public function getProviderUserInfo() - { - return $this->providerUserInfo; - } - public function setRefreshToken($refreshToken) - { - $this->refreshToken = $refreshToken; - } - public function getRefreshToken() - { - return $this->refreshToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/SetAccountInfoResponseProviderUserInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/SetAccountInfoResponseProviderUserInfo.php deleted file mode 100644 index fee9570e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/SetAccountInfoResponseProviderUserInfo.php +++ /dev/null @@ -1,57 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setFederatedId($federatedId) - { - $this->federatedId = $federatedId; - } - public function getFederatedId() - { - return $this->federatedId; - } - public function setPhotoUrl($photoUrl) - { - $this->photoUrl = $photoUrl; - } - public function getPhotoUrl() - { - return $this->photoUrl; - } - public function setProviderId($providerId) - { - $this->providerId = $providerId; - } - public function getProviderId() - { - return $this->providerId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/SignupNewUserResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/SignupNewUserResponse.php deleted file mode 100644 index 773424d2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/SignupNewUserResponse.php +++ /dev/null @@ -1,84 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setEmail($email) - { - $this->email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setExpiresIn($expiresIn) - { - $this->expiresIn = $expiresIn; - } - public function getExpiresIn() - { - return $this->expiresIn; - } - public function setIdToken($idToken) - { - $this->idToken = $idToken; - } - public function getIdToken() - { - return $this->idToken; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLocalId($localId) - { - $this->localId = $localId; - } - public function getLocalId() - { - return $this->localId; - } - public function setRefreshToken($refreshToken) - { - $this->refreshToken = $refreshToken; - } - public function getRefreshToken() - { - return $this->refreshToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/UploadAccountResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/UploadAccountResponse.php deleted file mode 100644 index 7cfa9f23..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/UploadAccountResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -error = $error; - } - /** - * @return Google_Service_IdentityToolkit_UploadAccountResponseError - */ - public function getError() - { - return $this->error; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/UploadAccountResponseError.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/UploadAccountResponseError.php deleted file mode 100644 index 366d16d4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/UploadAccountResponseError.php +++ /dev/null @@ -1,39 +0,0 @@ -index = $index; - } - public function getIndex() - { - return $this->index; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/UserInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/UserInfo.php deleted file mode 100644 index c622e480..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/UserInfo.php +++ /dev/null @@ -1,200 +0,0 @@ -createdAt = $createdAt; - } - public function getCreatedAt() - { - return $this->createdAt; - } - public function setCustomAttributes($customAttributes) - { - $this->customAttributes = $customAttributes; - } - public function getCustomAttributes() - { - return $this->customAttributes; - } - public function setCustomAuth($customAuth) - { - $this->customAuth = $customAuth; - } - public function getCustomAuth() - { - return $this->customAuth; - } - public function setDisabled($disabled) - { - $this->disabled = $disabled; - } - public function getDisabled() - { - return $this->disabled; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setEmail($email) - { - $this->email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setEmailVerified($emailVerified) - { - $this->emailVerified = $emailVerified; - } - public function getEmailVerified() - { - return $this->emailVerified; - } - public function setLastLoginAt($lastLoginAt) - { - $this->lastLoginAt = $lastLoginAt; - } - public function getLastLoginAt() - { - return $this->lastLoginAt; - } - public function setLocalId($localId) - { - $this->localId = $localId; - } - public function getLocalId() - { - return $this->localId; - } - public function setPasswordHash($passwordHash) - { - $this->passwordHash = $passwordHash; - } - public function getPasswordHash() - { - return $this->passwordHash; - } - public function setPasswordUpdatedAt($passwordUpdatedAt) - { - $this->passwordUpdatedAt = $passwordUpdatedAt; - } - public function getPasswordUpdatedAt() - { - return $this->passwordUpdatedAt; - } - public function setPhoneNumber($phoneNumber) - { - $this->phoneNumber = $phoneNumber; - } - public function getPhoneNumber() - { - return $this->phoneNumber; - } - public function setPhotoUrl($photoUrl) - { - $this->photoUrl = $photoUrl; - } - public function getPhotoUrl() - { - return $this->photoUrl; - } - /** - * @param Google_Service_IdentityToolkit_UserInfoProviderUserInfo - */ - public function setProviderUserInfo($providerUserInfo) - { - $this->providerUserInfo = $providerUserInfo; - } - /** - * @return Google_Service_IdentityToolkit_UserInfoProviderUserInfo - */ - public function getProviderUserInfo() - { - return $this->providerUserInfo; - } - public function setRawPassword($rawPassword) - { - $this->rawPassword = $rawPassword; - } - public function getRawPassword() - { - return $this->rawPassword; - } - public function setSalt($salt) - { - $this->salt = $salt; - } - public function getSalt() - { - return $this->salt; - } - public function setScreenName($screenName) - { - $this->screenName = $screenName; - } - public function getScreenName() - { - return $this->screenName; - } - public function setValidSince($validSince) - { - $this->validSince = $validSince; - } - public function getValidSince() - { - return $this->validSince; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/UserInfoProviderUserInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/UserInfoProviderUserInfo.php deleted file mode 100644 index 2fc0ee11..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/UserInfoProviderUserInfo.php +++ /dev/null @@ -1,93 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setEmail($email) - { - $this->email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setFederatedId($federatedId) - { - $this->federatedId = $federatedId; - } - public function getFederatedId() - { - return $this->federatedId; - } - public function setPhoneNumber($phoneNumber) - { - $this->phoneNumber = $phoneNumber; - } - public function getPhoneNumber() - { - return $this->phoneNumber; - } - public function setPhotoUrl($photoUrl) - { - $this->photoUrl = $photoUrl; - } - public function getPhotoUrl() - { - return $this->photoUrl; - } - public function setProviderId($providerId) - { - $this->providerId = $providerId; - } - public function getProviderId() - { - return $this->providerId; - } - public function setRawId($rawId) - { - $this->rawId = $rawId; - } - public function getRawId() - { - return $this->rawId; - } - public function setScreenName($screenName) - { - $this->screenName = $screenName; - } - public function getScreenName() - { - return $this->screenName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/VerifyAssertionResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/VerifyAssertionResponse.php deleted file mode 100644 index ccdbbc44..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/VerifyAssertionResponse.php +++ /dev/null @@ -1,373 +0,0 @@ -action = $action; - } - public function getAction() - { - return $this->action; - } - public function setAppInstallationUrl($appInstallationUrl) - { - $this->appInstallationUrl = $appInstallationUrl; - } - public function getAppInstallationUrl() - { - return $this->appInstallationUrl; - } - public function setAppScheme($appScheme) - { - $this->appScheme = $appScheme; - } - public function getAppScheme() - { - return $this->appScheme; - } - public function setContext($context) - { - $this->context = $context; - } - public function getContext() - { - return $this->context; - } - public function setDateOfBirth($dateOfBirth) - { - $this->dateOfBirth = $dateOfBirth; - } - public function getDateOfBirth() - { - return $this->dateOfBirth; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setEmail($email) - { - $this->email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setEmailRecycled($emailRecycled) - { - $this->emailRecycled = $emailRecycled; - } - public function getEmailRecycled() - { - return $this->emailRecycled; - } - public function setEmailVerified($emailVerified) - { - $this->emailVerified = $emailVerified; - } - public function getEmailVerified() - { - return $this->emailVerified; - } - public function setErrorMessage($errorMessage) - { - $this->errorMessage = $errorMessage; - } - public function getErrorMessage() - { - return $this->errorMessage; - } - public function setExpiresIn($expiresIn) - { - $this->expiresIn = $expiresIn; - } - public function getExpiresIn() - { - return $this->expiresIn; - } - public function setFederatedId($federatedId) - { - $this->federatedId = $federatedId; - } - public function getFederatedId() - { - return $this->federatedId; - } - public function setFirstName($firstName) - { - $this->firstName = $firstName; - } - public function getFirstName() - { - return $this->firstName; - } - public function setFullName($fullName) - { - $this->fullName = $fullName; - } - public function getFullName() - { - return $this->fullName; - } - public function setIdToken($idToken) - { - $this->idToken = $idToken; - } - public function getIdToken() - { - return $this->idToken; - } - public function setInputEmail($inputEmail) - { - $this->inputEmail = $inputEmail; - } - public function getInputEmail() - { - return $this->inputEmail; - } - public function setIsNewUser($isNewUser) - { - $this->isNewUser = $isNewUser; - } - public function getIsNewUser() - { - return $this->isNewUser; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLanguage($language) - { - $this->language = $language; - } - public function getLanguage() - { - return $this->language; - } - public function setLastName($lastName) - { - $this->lastName = $lastName; - } - public function getLastName() - { - return $this->lastName; - } - public function setLocalId($localId) - { - $this->localId = $localId; - } - public function getLocalId() - { - return $this->localId; - } - public function setNeedConfirmation($needConfirmation) - { - $this->needConfirmation = $needConfirmation; - } - public function getNeedConfirmation() - { - return $this->needConfirmation; - } - public function setNeedEmail($needEmail) - { - $this->needEmail = $needEmail; - } - public function getNeedEmail() - { - return $this->needEmail; - } - public function setNickName($nickName) - { - $this->nickName = $nickName; - } - public function getNickName() - { - return $this->nickName; - } - public function setOauthAccessToken($oauthAccessToken) - { - $this->oauthAccessToken = $oauthAccessToken; - } - public function getOauthAccessToken() - { - return $this->oauthAccessToken; - } - public function setOauthAuthorizationCode($oauthAuthorizationCode) - { - $this->oauthAuthorizationCode = $oauthAuthorizationCode; - } - public function getOauthAuthorizationCode() - { - return $this->oauthAuthorizationCode; - } - public function setOauthExpireIn($oauthExpireIn) - { - $this->oauthExpireIn = $oauthExpireIn; - } - public function getOauthExpireIn() - { - return $this->oauthExpireIn; - } - public function setOauthIdToken($oauthIdToken) - { - $this->oauthIdToken = $oauthIdToken; - } - public function getOauthIdToken() - { - return $this->oauthIdToken; - } - public function setOauthRequestToken($oauthRequestToken) - { - $this->oauthRequestToken = $oauthRequestToken; - } - public function getOauthRequestToken() - { - return $this->oauthRequestToken; - } - public function setOauthScope($oauthScope) - { - $this->oauthScope = $oauthScope; - } - public function getOauthScope() - { - return $this->oauthScope; - } - public function setOauthTokenSecret($oauthTokenSecret) - { - $this->oauthTokenSecret = $oauthTokenSecret; - } - public function getOauthTokenSecret() - { - return $this->oauthTokenSecret; - } - public function setOriginalEmail($originalEmail) - { - $this->originalEmail = $originalEmail; - } - public function getOriginalEmail() - { - return $this->originalEmail; - } - public function setPhotoUrl($photoUrl) - { - $this->photoUrl = $photoUrl; - } - public function getPhotoUrl() - { - return $this->photoUrl; - } - public function setProviderId($providerId) - { - $this->providerId = $providerId; - } - public function getProviderId() - { - return $this->providerId; - } - public function setRawUserInfo($rawUserInfo) - { - $this->rawUserInfo = $rawUserInfo; - } - public function getRawUserInfo() - { - return $this->rawUserInfo; - } - public function setRefreshToken($refreshToken) - { - $this->refreshToken = $refreshToken; - } - public function getRefreshToken() - { - return $this->refreshToken; - } - public function setScreenName($screenName) - { - $this->screenName = $screenName; - } - public function getScreenName() - { - return $this->screenName; - } - public function setTimeZone($timeZone) - { - $this->timeZone = $timeZone; - } - public function getTimeZone() - { - return $this->timeZone; - } - public function setVerifiedProvider($verifiedProvider) - { - $this->verifiedProvider = $verifiedProvider; - } - public function getVerifiedProvider() - { - return $this->verifiedProvider; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/VerifyCustomTokenResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/VerifyCustomTokenResponse.php deleted file mode 100644 index 07312613..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/VerifyCustomTokenResponse.php +++ /dev/null @@ -1,66 +0,0 @@ -expiresIn = $expiresIn; - } - public function getExpiresIn() - { - return $this->expiresIn; - } - public function setIdToken($idToken) - { - $this->idToken = $idToken; - } - public function getIdToken() - { - return $this->idToken; - } - public function setIsNewUser($isNewUser) - { - $this->isNewUser = $isNewUser; - } - public function getIsNewUser() - { - return $this->isNewUser; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setRefreshToken($refreshToken) - { - $this->refreshToken = $refreshToken; - } - public function getRefreshToken() - { - return $this->refreshToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/VerifyPasswordResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/VerifyPasswordResponse.php deleted file mode 100644 index 93be641b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/VerifyPasswordResponse.php +++ /dev/null @@ -1,129 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setEmail($email) - { - $this->email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setExpiresIn($expiresIn) - { - $this->expiresIn = $expiresIn; - } - public function getExpiresIn() - { - return $this->expiresIn; - } - public function setIdToken($idToken) - { - $this->idToken = $idToken; - } - public function getIdToken() - { - return $this->idToken; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLocalId($localId) - { - $this->localId = $localId; - } - public function getLocalId() - { - return $this->localId; - } - public function setOauthAccessToken($oauthAccessToken) - { - $this->oauthAccessToken = $oauthAccessToken; - } - public function getOauthAccessToken() - { - return $this->oauthAccessToken; - } - public function setOauthAuthorizationCode($oauthAuthorizationCode) - { - $this->oauthAuthorizationCode = $oauthAuthorizationCode; - } - public function getOauthAuthorizationCode() - { - return $this->oauthAuthorizationCode; - } - public function setOauthExpireIn($oauthExpireIn) - { - $this->oauthExpireIn = $oauthExpireIn; - } - public function getOauthExpireIn() - { - return $this->oauthExpireIn; - } - public function setPhotoUrl($photoUrl) - { - $this->photoUrl = $photoUrl; - } - public function getPhotoUrl() - { - return $this->photoUrl; - } - public function setRefreshToken($refreshToken) - { - $this->refreshToken = $refreshToken; - } - public function getRefreshToken() - { - return $this->refreshToken; - } - public function setRegistered($registered) - { - $this->registered = $registered; - } - public function getRegistered() - { - return $this->registered; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Indexing.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Indexing.php deleted file mode 100644 index 60d57357..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Indexing.php +++ /dev/null @@ -1,78 +0,0 @@ - - * Notifies Google when your web pages change.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Indexing extends Google_Service -{ - /** Submit data to Google for indexing. */ - const INDEXING = - "https://www.googleapis.com/auth/indexing"; - - public $urlNotifications; - - /** - * Constructs the internal representation of the Indexing service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://indexing.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v3'; - $this->serviceName = 'indexing'; - - $this->urlNotifications = new Google_Service_Indexing_Resource_UrlNotifications( - $this, - $this->serviceName, - 'urlNotifications', - array( - 'methods' => array( - 'getMetadata' => array( - 'path' => 'v3/urlNotifications/metadata', - 'httpMethod' => 'GET', - 'parameters' => array( - 'url' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'publish' => array( - 'path' => 'v3/urlNotifications:publish', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Indexing/PublishUrlNotificationResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Indexing/PublishUrlNotificationResponse.php deleted file mode 100644 index 1c7feba8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Indexing/PublishUrlNotificationResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -urlNotificationMetadata = $urlNotificationMetadata; - } - /** - * @return Google_Service_Indexing_UrlNotificationMetadata - */ - public function getUrlNotificationMetadata() - { - return $this->urlNotificationMetadata; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Indexing/Resource/UrlNotifications.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Indexing/Resource/UrlNotifications.php deleted file mode 100644 index ec15f217..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Indexing/Resource/UrlNotifications.php +++ /dev/null @@ -1,58 +0,0 @@ - - * $indexingService = new Google_Service_Indexing(...); - * $urlNotifications = $indexingService->urlNotifications; - * - */ -class Google_Service_Indexing_Resource_UrlNotifications extends Google_Service_Resource -{ - /** - * Gets metadata about a Web Document. This method can _only_ be used to query - * URLs that were previously seen in successful Indexing API notifications. - * Includes the latest `UrlNotification` received via this API. - * (urlNotifications.getMetadata) - * - * @param array $optParams Optional parameters. - * - * @opt_param string url URL that is being queried. - * @return Google_Service_Indexing_UrlNotificationMetadata - */ - public function getMetadata($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('getMetadata', array($params), "Google_Service_Indexing_UrlNotificationMetadata"); - } - /** - * Notifies that a URL has been updated or deleted. (urlNotifications.publish) - * - * @param Google_Service_Indexing_UrlNotification $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Indexing_PublishUrlNotificationResponse - */ - public function publish(Google_Service_Indexing_UrlNotification $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('publish', array($params), "Google_Service_Indexing_PublishUrlNotificationResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Indexing/UrlNotification.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Indexing/UrlNotification.php deleted file mode 100644 index 2bfbdeb4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Indexing/UrlNotification.php +++ /dev/null @@ -1,48 +0,0 @@ -notifyTime = $notifyTime; - } - public function getNotifyTime() - { - return $this->notifyTime; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Indexing/UrlNotificationMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Indexing/UrlNotificationMetadata.php deleted file mode 100644 index 0fa8722b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Indexing/UrlNotificationMetadata.php +++ /dev/null @@ -1,62 +0,0 @@ -latestRemove = $latestRemove; - } - /** - * @return Google_Service_Indexing_UrlNotification - */ - public function getLatestRemove() - { - return $this->latestRemove; - } - /** - * @param Google_Service_Indexing_UrlNotification - */ - public function setLatestUpdate(Google_Service_Indexing_UrlNotification $latestUpdate) - { - $this->latestUpdate = $latestUpdate; - } - /** - * @return Google_Service_Indexing_UrlNotification - */ - public function getLatestUpdate() - { - return $this->latestUpdate; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService.php deleted file mode 100644 index 4cb6891a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService.php +++ /dev/null @@ -1,293 +0,0 @@ - - * Cloud Talent Solution provides the capability to create, read, update, and - * delete job postings, as well as search jobs based on keywords and filters.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_JobService extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** Manage job postings. */ - const JOBS = - "https://www.googleapis.com/auth/jobs"; - - public $companies; - public $companies_jobs; - public $jobs; - public $v2; - - /** - * Constructs the internal representation of the JobService service. - * - * @param Google_Client $client - */ - public function __construct(Google_Client $client) - { - parent::__construct($client); - $this->rootUrl = 'https://jobs.googleapis.com/'; - $this->servicePath = ''; - $this->version = 'v2'; - $this->serviceName = 'jobs'; - - $this->companies = new Google_Service_JobService_Resource_Companies( - $this, - $this->serviceName, - 'companies', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v2/companies', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'delete' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2/companies', - 'httpMethod' => 'GET', - 'parameters' => array( - 'mustHaveOpenJobs' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateCompanyFields' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->companies_jobs = new Google_Service_JobService_Resource_CompaniesJobs( - $this, - $this->serviceName, - 'jobs', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v2/{+companyName}/jobs', - 'httpMethod' => 'GET', - 'parameters' => array( - 'companyName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'includeJobsCount' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'idsOnly' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'jobRequisitionId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->jobs = new Google_Service_JobService_Resource_Jobs( - $this, - $this->serviceName, - 'jobs', - array( - 'methods' => array( - 'batchDelete' => array( - 'path' => 'v2/jobs:batchDelete', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'create' => array( - 'path' => 'v2/jobs', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'delete' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'disableFastProcess' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'deleteByFilter' => array( - 'path' => 'v2/jobs:deleteByFilter', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'get' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'histogram' => array( - 'path' => 'v2/jobs:histogram', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'list' => array( - 'path' => 'v2/jobs', - 'httpMethod' => 'GET', - 'parameters' => array( - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'idsOnly' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'patch' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'search' => array( - 'path' => 'v2/jobs:search', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'searchForAlert' => array( - 'path' => 'v2/jobs:searchForAlert', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->v2 = new Google_Service_JobService_Resource_V2( - $this, - $this->serviceName, - 'v2', - array( - 'methods' => array( - 'complete' => array( - 'path' => 'v2:complete', - 'httpMethod' => 'GET', - 'parameters' => array( - 'type' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'companyName' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'scope' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'query' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'languageCode' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/BatchDeleteJobsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/BatchDeleteJobsRequest.php deleted file mode 100644 index 1f06a783..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/BatchDeleteJobsRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -filter = $filter; - } - public function getFilter() - { - return $this->filter; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/BucketRange.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/BucketRange.php deleted file mode 100644 index ab160178..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/BucketRange.php +++ /dev/null @@ -1,39 +0,0 @@ -from = $from; - } - public function getFrom() - { - return $this->from; - } - public function setTo($to) - { - $this->to = $to; - } - public function getTo() - { - return $this->to; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/BucketizedCount.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/BucketizedCount.php deleted file mode 100644 index 567880c0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/BucketizedCount.php +++ /dev/null @@ -1,46 +0,0 @@ -count = $count; - } - public function getCount() - { - return $this->count; - } - /** - * @param Google_Service_JobService_BucketRange - */ - public function setRange(Google_Service_JobService_BucketRange $range) - { - $this->range = $range; - } - /** - * @return Google_Service_JobService_BucketRange - */ - public function getRange() - { - return $this->range; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/CommuteInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/CommuteInfo.php deleted file mode 100644 index 510a977b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/CommuteInfo.php +++ /dev/null @@ -1,46 +0,0 @@ -jobLocation = $jobLocation; - } - /** - * @return Google_Service_JobService_JobLocation - */ - public function getJobLocation() - { - return $this->jobLocation; - } - public function setTravelDuration($travelDuration) - { - $this->travelDuration = $travelDuration; - } - public function getTravelDuration() - { - return $this->travelDuration; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/CommutePreference.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/CommutePreference.php deleted file mode 100644 index c7e06257..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/CommutePreference.php +++ /dev/null @@ -1,82 +0,0 @@ -allowNonStreetLevelAddress = $allowNonStreetLevelAddress; - } - public function getAllowNonStreetLevelAddress() - { - return $this->allowNonStreetLevelAddress; - } - public function setDepartureHourLocal($departureHourLocal) - { - $this->departureHourLocal = $departureHourLocal; - } - public function getDepartureHourLocal() - { - return $this->departureHourLocal; - } - public function setMethod($method) - { - $this->method = $method; - } - public function getMethod() - { - return $this->method; - } - public function setRoadTraffic($roadTraffic) - { - $this->roadTraffic = $roadTraffic; - } - public function getRoadTraffic() - { - return $this->roadTraffic; - } - /** - * @param Google_Service_JobService_LatLng - */ - public function setStartLocation(Google_Service_JobService_LatLng $startLocation) - { - $this->startLocation = $startLocation; - } - /** - * @return Google_Service_JobService_LatLng - */ - public function getStartLocation() - { - return $this->startLocation; - } - public function setTravelTime($travelTime) - { - $this->travelTime = $travelTime; - } - public function getTravelTime() - { - return $this->travelTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/Company.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/Company.php deleted file mode 100644 index 153d6433..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/Company.php +++ /dev/null @@ -1,198 +0,0 @@ -careerPageLink = $careerPageLink; - } - public function getCareerPageLink() - { - return $this->careerPageLink; - } - /** - * @param Google_Service_JobService_CompanyInfoSource - */ - public function setCompanyInfoSources($companyInfoSources) - { - $this->companyInfoSources = $companyInfoSources; - } - /** - * @return Google_Service_JobService_CompanyInfoSource - */ - public function getCompanyInfoSources() - { - return $this->companyInfoSources; - } - public function setCompanySize($companySize) - { - $this->companySize = $companySize; - } - public function getCompanySize() - { - return $this->companySize; - } - public function setDisableLocationOptimization($disableLocationOptimization) - { - $this->disableLocationOptimization = $disableLocationOptimization; - } - public function getDisableLocationOptimization() - { - return $this->disableLocationOptimization; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setDistributorBillingCompanyId($distributorBillingCompanyId) - { - $this->distributorBillingCompanyId = $distributorBillingCompanyId; - } - public function getDistributorBillingCompanyId() - { - return $this->distributorBillingCompanyId; - } - public function setDistributorCompanyId($distributorCompanyId) - { - $this->distributorCompanyId = $distributorCompanyId; - } - public function getDistributorCompanyId() - { - return $this->distributorCompanyId; - } - public function setEeoText($eeoText) - { - $this->eeoText = $eeoText; - } - public function getEeoText() - { - return $this->eeoText; - } - public function setHiringAgency($hiringAgency) - { - $this->hiringAgency = $hiringAgency; - } - public function getHiringAgency() - { - return $this->hiringAgency; - } - public function setHqLocation($hqLocation) - { - $this->hqLocation = $hqLocation; - } - public function getHqLocation() - { - return $this->hqLocation; - } - public function setImageUrl($imageUrl) - { - $this->imageUrl = $imageUrl; - } - public function getImageUrl() - { - return $this->imageUrl; - } - public function setKeywordSearchableCustomAttributes($keywordSearchableCustomAttributes) - { - $this->keywordSearchableCustomAttributes = $keywordSearchableCustomAttributes; - } - public function getKeywordSearchableCustomAttributes() - { - return $this->keywordSearchableCustomAttributes; - } - public function setKeywordSearchableCustomFields($keywordSearchableCustomFields) - { - $this->keywordSearchableCustomFields = $keywordSearchableCustomFields; - } - public function getKeywordSearchableCustomFields() - { - return $this->keywordSearchableCustomFields; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_JobService_JobLocation - */ - public function setStructuredCompanyHqLocation(Google_Service_JobService_JobLocation $structuredCompanyHqLocation) - { - $this->structuredCompanyHqLocation = $structuredCompanyHqLocation; - } - /** - * @return Google_Service_JobService_JobLocation - */ - public function getStructuredCompanyHqLocation() - { - return $this->structuredCompanyHqLocation; - } - public function setSuspended($suspended) - { - $this->suspended = $suspended; - } - public function getSuspended() - { - return $this->suspended; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setWebsite($website) - { - $this->website = $website; - } - public function getWebsite() - { - return $this->website; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/CompanyInfoSource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/CompanyInfoSource.php deleted file mode 100644 index 7c8d37f3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/CompanyInfoSource.php +++ /dev/null @@ -1,57 +0,0 @@ -freebaseMid = $freebaseMid; - } - public function getFreebaseMid() - { - return $this->freebaseMid; - } - public function setGplusId($gplusId) - { - $this->gplusId = $gplusId; - } - public function getGplusId() - { - return $this->gplusId; - } - public function setMapsCid($mapsCid) - { - $this->mapsCid = $mapsCid; - } - public function getMapsCid() - { - return $this->mapsCid; - } - public function setUnknownTypeId($unknownTypeId) - { - $this->unknownTypeId = $unknownTypeId; - } - public function getUnknownTypeId() - { - return $this->unknownTypeId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/CompensationEntry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/CompensationEntry.php deleted file mode 100644 index 1c5acb93..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/CompensationEntry.php +++ /dev/null @@ -1,89 +0,0 @@ -amount = $amount; - } - /** - * @return Google_Service_JobService_Money - */ - public function getAmount() - { - return $this->amount; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setExpectedUnitsPerYear($expectedUnitsPerYear) - { - $this->expectedUnitsPerYear = $expectedUnitsPerYear; - } - public function getExpectedUnitsPerYear() - { - return $this->expectedUnitsPerYear; - } - /** - * @param Google_Service_JobService_CompensationRange - */ - public function setRange(Google_Service_JobService_CompensationRange $range) - { - $this->range = $range; - } - /** - * @return Google_Service_JobService_CompensationRange - */ - public function getRange() - { - return $this->range; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setUnit($unit) - { - $this->unit = $unit; - } - public function getUnit() - { - return $this->unit; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/CompensationFilter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/CompensationFilter.php deleted file mode 100644 index 142e2a71..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/CompensationFilter.php +++ /dev/null @@ -1,65 +0,0 @@ -includeJobsWithUnspecifiedCompensationRange = $includeJobsWithUnspecifiedCompensationRange; - } - public function getIncludeJobsWithUnspecifiedCompensationRange() - { - return $this->includeJobsWithUnspecifiedCompensationRange; - } - /** - * @param Google_Service_JobService_CompensationRange - */ - public function setRange(Google_Service_JobService_CompensationRange $range) - { - $this->range = $range; - } - /** - * @return Google_Service_JobService_CompensationRange - */ - public function getRange() - { - return $this->range; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setUnits($units) - { - $this->units = $units; - } - public function getUnits() - { - return $this->units; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/CompensationHistogramRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/CompensationHistogramRequest.php deleted file mode 100644 index 5f4e8bdd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/CompensationHistogramRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -bucketingOption = $bucketingOption; - } - /** - * @return Google_Service_JobService_NumericBucketingOption - */ - public function getBucketingOption() - { - return $this->bucketingOption; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/CompensationHistogramResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/CompensationHistogramResult.php deleted file mode 100644 index ff6dfaa5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/CompensationHistogramResult.php +++ /dev/null @@ -1,46 +0,0 @@ -result = $result; - } - /** - * @return Google_Service_JobService_NumericBucketingResult - */ - public function getResult() - { - return $this->result; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/CompensationInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/CompensationInfo.php deleted file mode 100644 index 6caa1978..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/CompensationInfo.php +++ /dev/null @@ -1,127 +0,0 @@ -amount = $amount; - } - /** - * @return Google_Service_JobService_Money - */ - public function getAmount() - { - return $this->amount; - } - /** - * @param Google_Service_JobService_CompensationRange - */ - public function setAnnualizedBaseCompensationRange(Google_Service_JobService_CompensationRange $annualizedBaseCompensationRange) - { - $this->annualizedBaseCompensationRange = $annualizedBaseCompensationRange; - } - /** - * @return Google_Service_JobService_CompensationRange - */ - public function getAnnualizedBaseCompensationRange() - { - return $this->annualizedBaseCompensationRange; - } - /** - * @param Google_Service_JobService_CompensationRange - */ - public function setAnnualizedTotalCompensationRange(Google_Service_JobService_CompensationRange $annualizedTotalCompensationRange) - { - $this->annualizedTotalCompensationRange = $annualizedTotalCompensationRange; - } - /** - * @return Google_Service_JobService_CompensationRange - */ - public function getAnnualizedTotalCompensationRange() - { - return $this->annualizedTotalCompensationRange; - } - /** - * @param Google_Service_JobService_CompensationEntry - */ - public function setEntries($entries) - { - $this->entries = $entries; - } - /** - * @return Google_Service_JobService_CompensationEntry - */ - public function getEntries() - { - return $this->entries; - } - /** - * @param Google_Service_JobService_Money - */ - public function setMax(Google_Service_JobService_Money $max) - { - $this->max = $max; - } - /** - * @return Google_Service_JobService_Money - */ - public function getMax() - { - return $this->max; - } - /** - * @param Google_Service_JobService_Money - */ - public function setMin(Google_Service_JobService_Money $min) - { - $this->min = $min; - } - /** - * @return Google_Service_JobService_Money - */ - public function getMin() - { - return $this->min; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/CompensationRange.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/CompensationRange.php deleted file mode 100644 index 29a80ca7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/CompensationRange.php +++ /dev/null @@ -1,53 +0,0 @@ -max = $max; - } - /** - * @return Google_Service_JobService_Money - */ - public function getMax() - { - return $this->max; - } - /** - * @param Google_Service_JobService_Money - */ - public function setMin(Google_Service_JobService_Money $min) - { - $this->min = $min; - } - /** - * @return Google_Service_JobService_Money - */ - public function getMin() - { - return $this->min; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/CompleteQueryResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/CompleteQueryResponse.php deleted file mode 100644 index d0f65e29..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/CompleteQueryResponse.php +++ /dev/null @@ -1,54 +0,0 @@ -completionResults = $completionResults; - } - /** - * @return Google_Service_JobService_CompletionResult - */ - public function getCompletionResults() - { - return $this->completionResults; - } - /** - * @param Google_Service_JobService_ResponseMetadata - */ - public function setMetadata(Google_Service_JobService_ResponseMetadata $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_JobService_ResponseMetadata - */ - public function getMetadata() - { - return $this->metadata; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/CompletionResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/CompletionResult.php deleted file mode 100644 index ef8cf009..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/CompletionResult.php +++ /dev/null @@ -1,48 +0,0 @@ -imageUrl = $imageUrl; - } - public function getImageUrl() - { - return $this->imageUrl; - } - public function setSuggestion($suggestion) - { - $this->suggestion = $suggestion; - } - public function getSuggestion() - { - return $this->suggestion; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/CreateJobRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/CreateJobRequest.php deleted file mode 100644 index 87ceedab..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/CreateJobRequest.php +++ /dev/null @@ -1,62 +0,0 @@ -disableStreetAddressResolution = $disableStreetAddressResolution; - } - public function getDisableStreetAddressResolution() - { - return $this->disableStreetAddressResolution; - } - /** - * @param Google_Service_JobService_Job - */ - public function setJob(Google_Service_JobService_Job $job) - { - $this->job = $job; - } - /** - * @return Google_Service_JobService_Job - */ - public function getJob() - { - return $this->job; - } - /** - * @param Google_Service_JobService_JobProcessingOptions - */ - public function setProcessingOptions(Google_Service_JobService_JobProcessingOptions $processingOptions) - { - $this->processingOptions = $processingOptions; - } - /** - * @return Google_Service_JobService_JobProcessingOptions - */ - public function getProcessingOptions() - { - return $this->processingOptions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/CustomAttribute.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/CustomAttribute.php deleted file mode 100644 index 0510b12e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/CustomAttribute.php +++ /dev/null @@ -1,55 +0,0 @@ -filterable = $filterable; - } - public function getFilterable() - { - return $this->filterable; - } - public function setLongValue($longValue) - { - $this->longValue = $longValue; - } - public function getLongValue() - { - return $this->longValue; - } - /** - * @param Google_Service_JobService_StringValues - */ - public function setStringValues(Google_Service_JobService_StringValues $stringValues) - { - $this->stringValues = $stringValues; - } - /** - * @return Google_Service_JobService_StringValues - */ - public function getStringValues() - { - return $this->stringValues; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/CustomAttributeHistogramRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/CustomAttributeHistogramRequest.php deleted file mode 100644 index cc4e20c2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/CustomAttributeHistogramRequest.php +++ /dev/null @@ -1,55 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - /** - * @param Google_Service_JobService_NumericBucketingOption - */ - public function setLongValueHistogramBucketingOption(Google_Service_JobService_NumericBucketingOption $longValueHistogramBucketingOption) - { - $this->longValueHistogramBucketingOption = $longValueHistogramBucketingOption; - } - /** - * @return Google_Service_JobService_NumericBucketingOption - */ - public function getLongValueHistogramBucketingOption() - { - return $this->longValueHistogramBucketingOption; - } - public function setStringValueHistogram($stringValueHistogram) - { - $this->stringValueHistogram = $stringValueHistogram; - } - public function getStringValueHistogram() - { - return $this->stringValueHistogram; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/CustomAttributeHistogramResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/CustomAttributeHistogramResult.php deleted file mode 100644 index d0612362..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/CustomAttributeHistogramResult.php +++ /dev/null @@ -1,55 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - /** - * @param Google_Service_JobService_NumericBucketingResult - */ - public function setLongValueHistogramResult(Google_Service_JobService_NumericBucketingResult $longValueHistogramResult) - { - $this->longValueHistogramResult = $longValueHistogramResult; - } - /** - * @return Google_Service_JobService_NumericBucketingResult - */ - public function getLongValueHistogramResult() - { - return $this->longValueHistogramResult; - } - public function setStringValueHistogramResult($stringValueHistogramResult) - { - $this->stringValueHistogramResult = $stringValueHistogramResult; - } - public function getStringValueHistogramResult() - { - return $this->stringValueHistogramResult; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/CustomField.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/CustomField.php deleted file mode 100644 index 28a6f7f2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/CustomField.php +++ /dev/null @@ -1,31 +0,0 @@ -values = $values; - } - public function getValues() - { - return $this->values; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/CustomFieldFilter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/CustomFieldFilter.php deleted file mode 100644 index 2b3fb728..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/CustomFieldFilter.php +++ /dev/null @@ -1,40 +0,0 @@ -queries = $queries; - } - public function getQueries() - { - return $this->queries; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/Date.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/Date.php deleted file mode 100644 index a27842b6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/Date.php +++ /dev/null @@ -1,48 +0,0 @@ -day = $day; - } - public function getDay() - { - return $this->day; - } - public function setMonth($month) - { - $this->month = $month; - } - public function getMonth() - { - return $this->month; - } - public function setYear($year) - { - $this->year = $year; - } - public function getYear() - { - return $this->year; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/DeleteJobsByFilterRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/DeleteJobsByFilterRequest.php deleted file mode 100644 index 17f13d68..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/DeleteJobsByFilterRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -disableFastProcess = $disableFastProcess; - } - public function getDisableFastProcess() - { - return $this->disableFastProcess; - } - /** - * @param Google_Service_JobService_Filter - */ - public function setFilter(Google_Service_JobService_Filter $filter) - { - $this->filter = $filter; - } - /** - * @return Google_Service_JobService_Filter - */ - public function getFilter() - { - return $this->filter; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/DeviceInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/DeviceInfo.php deleted file mode 100644 index 1ac5bb56..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/DeviceInfo.php +++ /dev/null @@ -1,39 +0,0 @@ -deviceType = $deviceType; - } - public function getDeviceType() - { - return $this->deviceType; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/ExtendedCompensationFilter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/ExtendedCompensationFilter.php deleted file mode 100644 index c95dc21c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/ExtendedCompensationFilter.php +++ /dev/null @@ -1,74 +0,0 @@ -compensationRange = $compensationRange; - } - /** - * @return Google_Service_JobService_ExtendedCompensationInfoCompensationRange - */ - public function getCompensationRange() - { - return $this->compensationRange; - } - public function setCompensationUnits($compensationUnits) - { - $this->compensationUnits = $compensationUnits; - } - public function getCompensationUnits() - { - return $this->compensationUnits; - } - public function setCurrency($currency) - { - $this->currency = $currency; - } - public function getCurrency() - { - return $this->currency; - } - public function setIncludeJobWithUnspecifiedCompensationRange($includeJobWithUnspecifiedCompensationRange) - { - $this->includeJobWithUnspecifiedCompensationRange = $includeJobWithUnspecifiedCompensationRange; - } - public function getIncludeJobWithUnspecifiedCompensationRange() - { - return $this->includeJobWithUnspecifiedCompensationRange; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/ExtendedCompensationInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/ExtendedCompensationInfo.php deleted file mode 100644 index 7ecd64e4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/ExtendedCompensationInfo.php +++ /dev/null @@ -1,97 +0,0 @@ -annualizedBaseCompensationRange = $annualizedBaseCompensationRange; - } - /** - * @return Google_Service_JobService_ExtendedCompensationInfoCompensationRange - */ - public function getAnnualizedBaseCompensationRange() - { - return $this->annualizedBaseCompensationRange; - } - public function setAnnualizedBaseCompensationUnspecified($annualizedBaseCompensationUnspecified) - { - $this->annualizedBaseCompensationUnspecified = $annualizedBaseCompensationUnspecified; - } - public function getAnnualizedBaseCompensationUnspecified() - { - return $this->annualizedBaseCompensationUnspecified; - } - /** - * @param Google_Service_JobService_ExtendedCompensationInfoCompensationRange - */ - public function setAnnualizedTotalCompensationRange(Google_Service_JobService_ExtendedCompensationInfoCompensationRange $annualizedTotalCompensationRange) - { - $this->annualizedTotalCompensationRange = $annualizedTotalCompensationRange; - } - /** - * @return Google_Service_JobService_ExtendedCompensationInfoCompensationRange - */ - public function getAnnualizedTotalCompensationRange() - { - return $this->annualizedTotalCompensationRange; - } - public function setAnnualizedTotalCompensationUnspecified($annualizedTotalCompensationUnspecified) - { - $this->annualizedTotalCompensationUnspecified = $annualizedTotalCompensationUnspecified; - } - public function getAnnualizedTotalCompensationUnspecified() - { - return $this->annualizedTotalCompensationUnspecified; - } - public function setCurrency($currency) - { - $this->currency = $currency; - } - public function getCurrency() - { - return $this->currency; - } - /** - * @param Google_Service_JobService_ExtendedCompensationInfoCompensationEntry - */ - public function setEntries($entries) - { - $this->entries = $entries; - } - /** - * @return Google_Service_JobService_ExtendedCompensationInfoCompensationEntry - */ - public function getEntries() - { - return $this->entries; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/ExtendedCompensationInfoCompensationEntry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/ExtendedCompensationInfoCompensationEntry.php deleted file mode 100644 index 5f1c6c97..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/ExtendedCompensationInfoCompensationEntry.php +++ /dev/null @@ -1,105 +0,0 @@ -amount = $amount; - } - /** - * @return Google_Service_JobService_ExtendedCompensationInfoDecimal - */ - public function getAmount() - { - return $this->amount; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - /** - * @param Google_Service_JobService_ExtendedCompensationInfoDecimal - */ - public function setExpectedUnitsPerYear(Google_Service_JobService_ExtendedCompensationInfoDecimal $expectedUnitsPerYear) - { - $this->expectedUnitsPerYear = $expectedUnitsPerYear; - } - /** - * @return Google_Service_JobService_ExtendedCompensationInfoDecimal - */ - public function getExpectedUnitsPerYear() - { - return $this->expectedUnitsPerYear; - } - /** - * @param Google_Service_JobService_ExtendedCompensationInfoCompensationRange - */ - public function setRange(Google_Service_JobService_ExtendedCompensationInfoCompensationRange $range) - { - $this->range = $range; - } - /** - * @return Google_Service_JobService_ExtendedCompensationInfoCompensationRange - */ - public function getRange() - { - return $this->range; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setUnit($unit) - { - $this->unit = $unit; - } - public function getUnit() - { - return $this->unit; - } - public function setUnspecified($unspecified) - { - $this->unspecified = $unspecified; - } - public function getUnspecified() - { - return $this->unspecified; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/ExtendedCompensationInfoCompensationRange.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/ExtendedCompensationInfoCompensationRange.php deleted file mode 100644 index aaa9680c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/ExtendedCompensationInfoCompensationRange.php +++ /dev/null @@ -1,53 +0,0 @@ -max = $max; - } - /** - * @return Google_Service_JobService_ExtendedCompensationInfoDecimal - */ - public function getMax() - { - return $this->max; - } - /** - * @param Google_Service_JobService_ExtendedCompensationInfoDecimal - */ - public function setMin(Google_Service_JobService_ExtendedCompensationInfoDecimal $min) - { - $this->min = $min; - } - /** - * @return Google_Service_JobService_ExtendedCompensationInfoDecimal - */ - public function getMin() - { - return $this->min; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/ExtendedCompensationInfoDecimal.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/ExtendedCompensationInfoDecimal.php deleted file mode 100644 index 5a62b4dd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/ExtendedCompensationInfoDecimal.php +++ /dev/null @@ -1,39 +0,0 @@ -micros = $micros; - } - public function getMicros() - { - return $this->micros; - } - public function setUnits($units) - { - $this->units = $units; - } - public function getUnits() - { - return $this->units; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/Filter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/Filter.php deleted file mode 100644 index eae898cd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/Filter.php +++ /dev/null @@ -1,30 +0,0 @@ -requisitionId = $requisitionId; - } - public function getRequisitionId() - { - return $this->requisitionId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/GetHistogramRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/GetHistogramRequest.php deleted file mode 100644 index a77ceca6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/GetHistogramRequest.php +++ /dev/null @@ -1,88 +0,0 @@ -allowBroadening = $allowBroadening; - } - public function getAllowBroadening() - { - return $this->allowBroadening; - } - /** - * @param Google_Service_JobService_JobFilters - */ - public function setFilters(Google_Service_JobService_JobFilters $filters) - { - $this->filters = $filters; - } - /** - * @return Google_Service_JobService_JobFilters - */ - public function getFilters() - { - return $this->filters; - } - /** - * @param Google_Service_JobService_JobQuery - */ - public function setQuery(Google_Service_JobService_JobQuery $query) - { - $this->query = $query; - } - /** - * @return Google_Service_JobService_JobQuery - */ - public function getQuery() - { - return $this->query; - } - /** - * @param Google_Service_JobService_RequestMetadata - */ - public function setRequestMetadata(Google_Service_JobService_RequestMetadata $requestMetadata) - { - $this->requestMetadata = $requestMetadata; - } - /** - * @return Google_Service_JobService_RequestMetadata - */ - public function getRequestMetadata() - { - return $this->requestMetadata; - } - public function setSearchTypes($searchTypes) - { - $this->searchTypes = $searchTypes; - } - public function getSearchTypes() - { - return $this->searchTypes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/GetHistogramResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/GetHistogramResponse.php deleted file mode 100644 index 9a123937..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/GetHistogramResponse.php +++ /dev/null @@ -1,54 +0,0 @@ -metadata = $metadata; - } - /** - * @return Google_Service_JobService_ResponseMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - /** - * @param Google_Service_JobService_HistogramResult - */ - public function setResults($results) - { - $this->results = $results; - } - /** - * @return Google_Service_JobService_HistogramResult - */ - public function getResults() - { - return $this->results; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/HistogramFacets.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/HistogramFacets.php deleted file mode 100644 index cdd9c5b6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/HistogramFacets.php +++ /dev/null @@ -1,63 +0,0 @@ -compensationHistogramFacets = $compensationHistogramFacets; - } - /** - * @return Google_Service_JobService_CompensationHistogramRequest - */ - public function getCompensationHistogramFacets() - { - return $this->compensationHistogramFacets; - } - /** - * @param Google_Service_JobService_CustomAttributeHistogramRequest - */ - public function setCustomAttributeHistogramFacets($customAttributeHistogramFacets) - { - $this->customAttributeHistogramFacets = $customAttributeHistogramFacets; - } - /** - * @return Google_Service_JobService_CustomAttributeHistogramRequest - */ - public function getCustomAttributeHistogramFacets() - { - return $this->customAttributeHistogramFacets; - } - public function setSimpleHistogramFacets($simpleHistogramFacets) - { - $this->simpleHistogramFacets = $simpleHistogramFacets; - } - public function getSimpleHistogramFacets() - { - return $this->simpleHistogramFacets; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/HistogramResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/HistogramResult.php deleted file mode 100644 index 265b1685..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/HistogramResult.php +++ /dev/null @@ -1,39 +0,0 @@ -searchType = $searchType; - } - public function getSearchType() - { - return $this->searchType; - } - public function setValues($values) - { - $this->values = $values; - } - public function getValues() - { - return $this->values; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/HistogramResults.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/HistogramResults.php deleted file mode 100644 index 57982e46..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/HistogramResults.php +++ /dev/null @@ -1,70 +0,0 @@ -compensationHistogramResults = $compensationHistogramResults; - } - /** - * @return Google_Service_JobService_CompensationHistogramResult - */ - public function getCompensationHistogramResults() - { - return $this->compensationHistogramResults; - } - /** - * @param Google_Service_JobService_CustomAttributeHistogramResult - */ - public function setCustomAttributeHistogramResults($customAttributeHistogramResults) - { - $this->customAttributeHistogramResults = $customAttributeHistogramResults; - } - /** - * @return Google_Service_JobService_CustomAttributeHistogramResult - */ - public function getCustomAttributeHistogramResults() - { - return $this->customAttributeHistogramResults; - } - /** - * @param Google_Service_JobService_HistogramResult - */ - public function setSimpleHistogramResults($simpleHistogramResults) - { - $this->simpleHistogramResults = $simpleHistogramResults; - } - /** - * @return Google_Service_JobService_HistogramResult - */ - public function getSimpleHistogramResults() - { - return $this->simpleHistogramResults; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/Job.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/Job.php deleted file mode 100644 index ffccf9d8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/Job.php +++ /dev/null @@ -1,434 +0,0 @@ -applicationEmailList = $applicationEmailList; - } - public function getApplicationEmailList() - { - return $this->applicationEmailList; - } - public function setApplicationInstruction($applicationInstruction) - { - $this->applicationInstruction = $applicationInstruction; - } - public function getApplicationInstruction() - { - return $this->applicationInstruction; - } - public function setApplicationUrls($applicationUrls) - { - $this->applicationUrls = $applicationUrls; - } - public function getApplicationUrls() - { - return $this->applicationUrls; - } - public function setBenefits($benefits) - { - $this->benefits = $benefits; - } - public function getBenefits() - { - return $this->benefits; - } - public function setCompanyDisplayName($companyDisplayName) - { - $this->companyDisplayName = $companyDisplayName; - } - public function getCompanyDisplayName() - { - return $this->companyDisplayName; - } - public function setCompanyName($companyName) - { - $this->companyName = $companyName; - } - public function getCompanyName() - { - return $this->companyName; - } - public function setCompanyTitle($companyTitle) - { - $this->companyTitle = $companyTitle; - } - public function getCompanyTitle() - { - return $this->companyTitle; - } - /** - * @param Google_Service_JobService_CompensationInfo - */ - public function setCompensationInfo(Google_Service_JobService_CompensationInfo $compensationInfo) - { - $this->compensationInfo = $compensationInfo; - } - /** - * @return Google_Service_JobService_CompensationInfo - */ - public function getCompensationInfo() - { - return $this->compensationInfo; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - /** - * @param Google_Service_JobService_CustomAttribute - */ - public function setCustomAttributes($customAttributes) - { - $this->customAttributes = $customAttributes; - } - /** - * @return Google_Service_JobService_CustomAttribute - */ - public function getCustomAttributes() - { - return $this->customAttributes; - } - public function setDepartment($department) - { - $this->department = $department; - } - public function getDepartment() - { - return $this->department; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDistributorCompanyId($distributorCompanyId) - { - $this->distributorCompanyId = $distributorCompanyId; - } - public function getDistributorCompanyId() - { - return $this->distributorCompanyId; - } - public function setEducationLevels($educationLevels) - { - $this->educationLevels = $educationLevels; - } - public function getEducationLevels() - { - return $this->educationLevels; - } - public function setEmploymentTypes($employmentTypes) - { - $this->employmentTypes = $employmentTypes; - } - public function getEmploymentTypes() - { - return $this->employmentTypes; - } - /** - * @param Google_Service_JobService_Date - */ - public function setEndDate(Google_Service_JobService_Date $endDate) - { - $this->endDate = $endDate; - } - /** - * @return Google_Service_JobService_Date - */ - public function getEndDate() - { - return $this->endDate; - } - public function setExpireTime($expireTime) - { - $this->expireTime = $expireTime; - } - public function getExpireTime() - { - return $this->expireTime; - } - /** - * @param Google_Service_JobService_Date - */ - public function setExpiryDate(Google_Service_JobService_Date $expiryDate) - { - $this->expiryDate = $expiryDate; - } - /** - * @return Google_Service_JobService_Date - */ - public function getExpiryDate() - { - return $this->expiryDate; - } - /** - * @param Google_Service_JobService_ExtendedCompensationInfo - */ - public function setExtendedCompensationInfo(Google_Service_JobService_ExtendedCompensationInfo $extendedCompensationInfo) - { - $this->extendedCompensationInfo = $extendedCompensationInfo; - } - /** - * @return Google_Service_JobService_ExtendedCompensationInfo - */ - public function getExtendedCompensationInfo() - { - return $this->extendedCompensationInfo; - } - /** - * @param Google_Service_JobService_CustomField - */ - public function setFilterableCustomFields($filterableCustomFields) - { - $this->filterableCustomFields = $filterableCustomFields; - } - /** - * @return Google_Service_JobService_CustomField - */ - public function getFilterableCustomFields() - { - return $this->filterableCustomFields; - } - public function setIncentives($incentives) - { - $this->incentives = $incentives; - } - public function getIncentives() - { - return $this->incentives; - } - /** - * @param Google_Service_JobService_JobLocation - */ - public function setJobLocations($jobLocations) - { - $this->jobLocations = $jobLocations; - } - /** - * @return Google_Service_JobService_JobLocation - */ - public function getJobLocations() - { - return $this->jobLocations; - } - public function setJobTitle($jobTitle) - { - $this->jobTitle = $jobTitle; - } - public function getJobTitle() - { - return $this->jobTitle; - } - public function setLanguageCode($languageCode) - { - $this->languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } - public function setLevel($level) - { - $this->level = $level; - } - public function getLevel() - { - return $this->level; - } - public function setLocations($locations) - { - $this->locations = $locations; - } - public function getLocations() - { - return $this->locations; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPromotionValue($promotionValue) - { - $this->promotionValue = $promotionValue; - } - public function getPromotionValue() - { - return $this->promotionValue; - } - /** - * @param Google_Service_JobService_Date - */ - public function setPublishDate(Google_Service_JobService_Date $publishDate) - { - $this->publishDate = $publishDate; - } - /** - * @return Google_Service_JobService_Date - */ - public function getPublishDate() - { - return $this->publishDate; - } - public function setQualifications($qualifications) - { - $this->qualifications = $qualifications; - } - public function getQualifications() - { - return $this->qualifications; - } - public function setReferenceUrl($referenceUrl) - { - $this->referenceUrl = $referenceUrl; - } - public function getReferenceUrl() - { - return $this->referenceUrl; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - public function setRequisitionId($requisitionId) - { - $this->requisitionId = $requisitionId; - } - public function getRequisitionId() - { - return $this->requisitionId; - } - public function setResponsibilities($responsibilities) - { - $this->responsibilities = $responsibilities; - } - public function getResponsibilities() - { - return $this->responsibilities; - } - /** - * @param Google_Service_JobService_Date - */ - public function setStartDate(Google_Service_JobService_Date $startDate) - { - $this->startDate = $startDate; - } - /** - * @return Google_Service_JobService_Date - */ - public function getStartDate() - { - return $this->startDate; - } - /** - * @param Google_Service_JobService_CustomField - */ - public function setUnindexedCustomFields($unindexedCustomFields) - { - $this->unindexedCustomFields = $unindexedCustomFields; - } - /** - * @return Google_Service_JobService_CustomField - */ - public function getUnindexedCustomFields() - { - return $this->unindexedCustomFields; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } - public function setVisibility($visibility) - { - $this->visibility = $visibility; - } - public function getVisibility() - { - return $this->visibility; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/JobFilters.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/JobFilters.php deleted file mode 100644 index 8610eab6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/JobFilters.php +++ /dev/null @@ -1,192 +0,0 @@ -categories = $categories; - } - public function getCategories() - { - return $this->categories; - } - /** - * @param Google_Service_JobService_CommutePreference - */ - public function setCommuteFilter(Google_Service_JobService_CommutePreference $commuteFilter) - { - $this->commuteFilter = $commuteFilter; - } - /** - * @return Google_Service_JobService_CommutePreference - */ - public function getCommuteFilter() - { - return $this->commuteFilter; - } - public function setCompanyNames($companyNames) - { - $this->companyNames = $companyNames; - } - public function getCompanyNames() - { - return $this->companyNames; - } - public function setCompanyTitles($companyTitles) - { - $this->companyTitles = $companyTitles; - } - public function getCompanyTitles() - { - return $this->companyTitles; - } - /** - * @param Google_Service_JobService_CompensationFilter - */ - public function setCompensationFilter(Google_Service_JobService_CompensationFilter $compensationFilter) - { - $this->compensationFilter = $compensationFilter; - } - /** - * @return Google_Service_JobService_CompensationFilter - */ - public function getCompensationFilter() - { - return $this->compensationFilter; - } - public function setCustomAttributeFilter($customAttributeFilter) - { - $this->customAttributeFilter = $customAttributeFilter; - } - public function getCustomAttributeFilter() - { - return $this->customAttributeFilter; - } - /** - * @param Google_Service_JobService_CustomFieldFilter - */ - public function setCustomFieldFilters($customFieldFilters) - { - $this->customFieldFilters = $customFieldFilters; - } - /** - * @return Google_Service_JobService_CustomFieldFilter - */ - public function getCustomFieldFilters() - { - return $this->customFieldFilters; - } - public function setDisableSpellCheck($disableSpellCheck) - { - $this->disableSpellCheck = $disableSpellCheck; - } - public function getDisableSpellCheck() - { - return $this->disableSpellCheck; - } - public function setEmploymentTypes($employmentTypes) - { - $this->employmentTypes = $employmentTypes; - } - public function getEmploymentTypes() - { - return $this->employmentTypes; - } - /** - * @param Google_Service_JobService_ExtendedCompensationFilter - */ - public function setExtendedCompensationFilter(Google_Service_JobService_ExtendedCompensationFilter $extendedCompensationFilter) - { - $this->extendedCompensationFilter = $extendedCompensationFilter; - } - /** - * @return Google_Service_JobService_ExtendedCompensationFilter - */ - public function getExtendedCompensationFilter() - { - return $this->extendedCompensationFilter; - } - public function setLanguageCodes($languageCodes) - { - $this->languageCodes = $languageCodes; - } - public function getLanguageCodes() - { - return $this->languageCodes; - } - /** - * @param Google_Service_JobService_LocationFilter - */ - public function setLocationFilters($locationFilters) - { - $this->locationFilters = $locationFilters; - } - /** - * @return Google_Service_JobService_LocationFilter - */ - public function getLocationFilters() - { - return $this->locationFilters; - } - public function setPublishDateRange($publishDateRange) - { - $this->publishDateRange = $publishDateRange; - } - public function getPublishDateRange() - { - return $this->publishDateRange; - } - public function setQuery($query) - { - $this->query = $query; - } - public function getQuery() - { - return $this->query; - } - public function setTenantJobOnly($tenantJobOnly) - { - $this->tenantJobOnly = $tenantJobOnly; - } - public function getTenantJobOnly() - { - return $this->tenantJobOnly; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/JobLocation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/JobLocation.php deleted file mode 100644 index b59206fd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/JobLocation.php +++ /dev/null @@ -1,71 +0,0 @@ -latLng = $latLng; - } - /** - * @return Google_Service_JobService_LatLng - */ - public function getLatLng() - { - return $this->latLng; - } - public function setLocationType($locationType) - { - $this->locationType = $locationType; - } - public function getLocationType() - { - return $this->locationType; - } - /** - * @param Google_Service_JobService_PostalAddress - */ - public function setPostalAddress(Google_Service_JobService_PostalAddress $postalAddress) - { - $this->postalAddress = $postalAddress; - } - /** - * @return Google_Service_JobService_PostalAddress - */ - public function getPostalAddress() - { - return $this->postalAddress; - } - public function setRadiusMeters($radiusMeters) - { - $this->radiusMeters = $radiusMeters; - } - public function getRadiusMeters() - { - return $this->radiusMeters; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/JobProcessingOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/JobProcessingOptions.php deleted file mode 100644 index d44aec72..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/JobProcessingOptions.php +++ /dev/null @@ -1,39 +0,0 @@ -disableStreetAddressResolution = $disableStreetAddressResolution; - } - public function getDisableStreetAddressResolution() - { - return $this->disableStreetAddressResolution; - } - public function setHtmlSanitization($htmlSanitization) - { - $this->htmlSanitization = $htmlSanitization; - } - public function getHtmlSanitization() - { - return $this->htmlSanitization; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/JobQuery.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/JobQuery.php deleted file mode 100644 index 09a2655d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/JobQuery.php +++ /dev/null @@ -1,151 +0,0 @@ -categories = $categories; - } - public function getCategories() - { - return $this->categories; - } - /** - * @param Google_Service_JobService_CommutePreference - */ - public function setCommuteFilter(Google_Service_JobService_CommutePreference $commuteFilter) - { - $this->commuteFilter = $commuteFilter; - } - /** - * @return Google_Service_JobService_CommutePreference - */ - public function getCommuteFilter() - { - return $this->commuteFilter; - } - public function setCompanyDisplayNames($companyDisplayNames) - { - $this->companyDisplayNames = $companyDisplayNames; - } - public function getCompanyDisplayNames() - { - return $this->companyDisplayNames; - } - public function setCompanyNames($companyNames) - { - $this->companyNames = $companyNames; - } - public function getCompanyNames() - { - return $this->companyNames; - } - /** - * @param Google_Service_JobService_CompensationFilter - */ - public function setCompensationFilter(Google_Service_JobService_CompensationFilter $compensationFilter) - { - $this->compensationFilter = $compensationFilter; - } - /** - * @return Google_Service_JobService_CompensationFilter - */ - public function getCompensationFilter() - { - return $this->compensationFilter; - } - public function setCustomAttributeFilter($customAttributeFilter) - { - $this->customAttributeFilter = $customAttributeFilter; - } - public function getCustomAttributeFilter() - { - return $this->customAttributeFilter; - } - public function setDisableSpellCheck($disableSpellCheck) - { - $this->disableSpellCheck = $disableSpellCheck; - } - public function getDisableSpellCheck() - { - return $this->disableSpellCheck; - } - public function setEmploymentTypes($employmentTypes) - { - $this->employmentTypes = $employmentTypes; - } - public function getEmploymentTypes() - { - return $this->employmentTypes; - } - public function setLanguageCodes($languageCodes) - { - $this->languageCodes = $languageCodes; - } - public function getLanguageCodes() - { - return $this->languageCodes; - } - /** - * @param Google_Service_JobService_LocationFilter - */ - public function setLocationFilters($locationFilters) - { - $this->locationFilters = $locationFilters; - } - /** - * @return Google_Service_JobService_LocationFilter - */ - public function getLocationFilters() - { - return $this->locationFilters; - } - public function setPublishDateRange($publishDateRange) - { - $this->publishDateRange = $publishDateRange; - } - public function getPublishDateRange() - { - return $this->publishDateRange; - } - public function setQuery($query) - { - $this->query = $query; - } - public function getQuery() - { - return $this->query; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/JobsEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/JobsEmpty.php deleted file mode 100644 index 184fba0b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/JobsEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -latitude = $latitude; - } - public function getLatitude() - { - return $this->latitude; - } - public function setLongitude($longitude) - { - $this->longitude = $longitude; - } - public function getLongitude() - { - return $this->longitude; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/ListCompaniesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/ListCompaniesResponse.php deleted file mode 100644 index 4fabb32d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/ListCompaniesResponse.php +++ /dev/null @@ -1,63 +0,0 @@ -companies = $companies; - } - /** - * @return Google_Service_JobService_Company - */ - public function getCompanies() - { - return $this->companies; - } - /** - * @param Google_Service_JobService_ResponseMetadata - */ - public function setMetadata(Google_Service_JobService_ResponseMetadata $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_JobService_ResponseMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/ListCompanyJobsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/ListCompanyJobsResponse.php deleted file mode 100644 index 27f56867..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/ListCompanyJobsResponse.php +++ /dev/null @@ -1,72 +0,0 @@ -jobs = $jobs; - } - /** - * @return Google_Service_JobService_Job - */ - public function getJobs() - { - return $this->jobs; - } - /** - * @param Google_Service_JobService_ResponseMetadata - */ - public function setMetadata(Google_Service_JobService_ResponseMetadata $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_JobService_ResponseMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setTotalSize($totalSize) - { - $this->totalSize = $totalSize; - } - public function getTotalSize() - { - return $this->totalSize; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/ListJobsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/ListJobsResponse.php deleted file mode 100644 index dd94b636..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/ListJobsResponse.php +++ /dev/null @@ -1,63 +0,0 @@ -jobs = $jobs; - } - /** - * @return Google_Service_JobService_Job - */ - public function getJobs() - { - return $this->jobs; - } - /** - * @param Google_Service_JobService_ResponseMetadata - */ - public function setMetadata(Google_Service_JobService_ResponseMetadata $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_JobService_ResponseMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/LocationFilter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/LocationFilter.php deleted file mode 100644 index 619847e0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/LocationFilter.php +++ /dev/null @@ -1,73 +0,0 @@ -distanceInMiles = $distanceInMiles; - } - public function getDistanceInMiles() - { - return $this->distanceInMiles; - } - public function setIsTelecommute($isTelecommute) - { - $this->isTelecommute = $isTelecommute; - } - public function getIsTelecommute() - { - return $this->isTelecommute; - } - /** - * @param Google_Service_JobService_LatLng - */ - public function setLatLng(Google_Service_JobService_LatLng $latLng) - { - $this->latLng = $latLng; - } - /** - * @return Google_Service_JobService_LatLng - */ - public function getLatLng() - { - return $this->latLng; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setRegionCode($regionCode) - { - $this->regionCode = $regionCode; - } - public function getRegionCode() - { - return $this->regionCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/MatchingJob.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/MatchingJob.php deleted file mode 100644 index 4a89f366..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/MatchingJob.php +++ /dev/null @@ -1,80 +0,0 @@ -commuteInfo = $commuteInfo; - } - /** - * @return Google_Service_JobService_CommuteInfo - */ - public function getCommuteInfo() - { - return $this->commuteInfo; - } - /** - * @param Google_Service_JobService_Job - */ - public function setJob(Google_Service_JobService_Job $job) - { - $this->job = $job; - } - /** - * @return Google_Service_JobService_Job - */ - public function getJob() - { - return $this->job; - } - public function setJobSummary($jobSummary) - { - $this->jobSummary = $jobSummary; - } - public function getJobSummary() - { - return $this->jobSummary; - } - public function setJobTitleSnippet($jobTitleSnippet) - { - $this->jobTitleSnippet = $jobTitleSnippet; - } - public function getJobTitleSnippet() - { - return $this->jobTitleSnippet; - } - public function setSearchTextSnippet($searchTextSnippet) - { - $this->searchTextSnippet = $searchTextSnippet; - } - public function getSearchTextSnippet() - { - return $this->searchTextSnippet; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/Money.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/Money.php deleted file mode 100644 index 7a2e6f5e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/Money.php +++ /dev/null @@ -1,48 +0,0 @@ -currencyCode = $currencyCode; - } - public function getCurrencyCode() - { - return $this->currencyCode; - } - public function setNanos($nanos) - { - $this->nanos = $nanos; - } - public function getNanos() - { - return $this->nanos; - } - public function setUnits($units) - { - $this->units = $units; - } - public function getUnits() - { - return $this->units; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/NumericBucketingOption.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/NumericBucketingOption.php deleted file mode 100644 index f5f1ac10..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/NumericBucketingOption.php +++ /dev/null @@ -1,40 +0,0 @@ -bucketBounds = $bucketBounds; - } - public function getBucketBounds() - { - return $this->bucketBounds; - } - public function setRequiresMinMax($requiresMinMax) - { - $this->requiresMinMax = $requiresMinMax; - } - public function getRequiresMinMax() - { - return $this->requiresMinMax; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/NumericBucketingResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/NumericBucketingResult.php deleted file mode 100644 index 7fce659b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/NumericBucketingResult.php +++ /dev/null @@ -1,56 +0,0 @@ -counts = $counts; - } - /** - * @return Google_Service_JobService_BucketizedCount - */ - public function getCounts() - { - return $this->counts; - } - public function setMaxValue($maxValue) - { - $this->maxValue = $maxValue; - } - public function getMaxValue() - { - return $this->maxValue; - } - public function setMinValue($minValue) - { - $this->minValue = $minValue; - } - public function getMinValue() - { - return $this->minValue; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/PostalAddress.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/PostalAddress.php deleted file mode 100644 index fde80dab..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/PostalAddress.php +++ /dev/null @@ -1,121 +0,0 @@ -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 setOrganization($organization) - { - $this->organization = $organization; - } - public function getOrganization() - { - return $this->organization; - } - public function setPostalCode($postalCode) - { - $this->postalCode = $postalCode; - } - public function getPostalCode() - { - return $this->postalCode; - } - public function setRecipients($recipients) - { - $this->recipients = $recipients; - } - public function getRecipients() - { - return $this->recipients; - } - public function setRegionCode($regionCode) - { - $this->regionCode = $regionCode; - } - public function getRegionCode() - { - return $this->regionCode; - } - public function setRevision($revision) - { - $this->revision = $revision; - } - public function getRevision() - { - return $this->revision; - } - public function setSortingCode($sortingCode) - { - $this->sortingCode = $sortingCode; - } - public function getSortingCode() - { - return $this->sortingCode; - } - public function setSublocality($sublocality) - { - $this->sublocality = $sublocality; - } - public function getSublocality() - { - return $this->sublocality; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/RequestMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/RequestMetadata.php deleted file mode 100644 index f05c09e9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/RequestMetadata.php +++ /dev/null @@ -1,64 +0,0 @@ -deviceInfo = $deviceInfo; - } - /** - * @return Google_Service_JobService_DeviceInfo - */ - public function getDeviceInfo() - { - return $this->deviceInfo; - } - public function setDomain($domain) - { - $this->domain = $domain; - } - public function getDomain() - { - return $this->domain; - } - public function setSessionId($sessionId) - { - $this->sessionId = $sessionId; - } - public function getSessionId() - { - return $this->sessionId; - } - public function setUserId($userId) - { - $this->userId = $userId; - } - public function getUserId() - { - return $this->userId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/Resource/Companies.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/Resource/Companies.php deleted file mode 100644 index 1d421534..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/Resource/Companies.php +++ /dev/null @@ -1,135 +0,0 @@ - - * $jobsService = new Google_Service_JobService(...); - * $companies = $jobsService->companies; - * - */ -class Google_Service_JobService_Resource_Companies extends Google_Service_Resource -{ - /** - * Creates a new company entity. (companies.create) - * - * @param Google_Service_JobService_Company $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_JobService_Company - */ - public function create(Google_Service_JobService_Company $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_JobService_Company"); - } - /** - * Deletes the specified company. (companies.delete) - * - * @param string $name Required. - * - * The resource name of the company to be deleted, such as, - * "companies/0000aaaa-1111-bbbb-2222-cccc3333dddd". - * @param array $optParams Optional parameters. - * @return Google_Service_JobService_JobsEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_JobService_JobsEmpty"); - } - /** - * Retrieves the specified company. (companies.get) - * - * @param string $name Required. - * - * Resource name of the company to retrieve, such as - * "companies/0000aaaa-1111-bbbb-2222-cccc3333dddd". - * @param array $optParams Optional parameters. - * @return Google_Service_JobService_Company - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_JobService_Company"); - } - /** - * Lists all companies associated with a Cloud Talent Solution account. - * (companies.listCompanies) - * - * @param array $optParams Optional parameters. - * - * @opt_param bool mustHaveOpenJobs Optional. - * - * Set to true if the companies request must have open jobs. - * - * Defaults to false. - * - * If true, at most page_size of companies are fetched, among which only those - * with open jobs are returned. - * @opt_param string pageToken Optional. - * - * The starting indicator from which to return results. - * @opt_param int pageSize Optional. - * - * The maximum number of companies to be returned, at most 100. Default is 100 - * if a non-positive number is provided. - * @return Google_Service_JobService_ListCompaniesResponse - */ - public function listCompanies($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_JobService_ListCompaniesResponse"); - } - /** - * Updates the specified company. Company names can't be updated. To update a - * company name, delete the company and all jobs associated with it, and only - * then re-create them. (companies.patch) - * - * @param string $name Required during company update. - * - * The resource name for a company. This is generated by the service when a - * company is created, for example, - * "companies/0000aaaa-1111-bbbb-2222-cccc3333dddd". - * @param Google_Service_JobService_Company $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateCompanyFields Optional but strongly recommended to be - * provided for the best service experience. - * - * If update_company_fields is provided, only the specified fields in company - * are updated. Otherwise all the fields are updated. - * - * A field mask to specify the company fields to update. Valid values are: - * - * * displayName * website * imageUrl * companySize * - * distributorBillingCompanyId * companyInfoSources * careerPageLink * - * hiringAgency * hqLocation * eeoText * keywordSearchableCustomAttributes * - * title (deprecated) * keywordSearchableCustomFields (deprecated) - * @return Google_Service_JobService_Company - */ - public function patch($name, Google_Service_JobService_Company $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_JobService_Company"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/Resource/CompaniesJobs.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/Resource/CompaniesJobs.php deleted file mode 100644 index ce4610ee..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/Resource/CompaniesJobs.php +++ /dev/null @@ -1,80 +0,0 @@ - - * $jobsService = new Google_Service_JobService(...); - * $jobs = $jobsService->jobs; - * - */ -class Google_Service_JobService_Resource_CompaniesJobs extends Google_Service_Resource -{ - /** - * Deprecated. Use ListJobs instead. - * - * Lists all jobs associated with a company. (jobs.listCompaniesJobs) - * - * @param string $companyName Required. - * - * The resource name of the company that owns the jobs to be listed, such as, - * "companies/0000aaaa-1111-bbbb-2222-cccc3333dddd". - * @param array $optParams Optional parameters. - * - * @opt_param bool includeJobsCount Deprecated. Please DO NOT use this field - * except for small companies. Suggest counting jobs page by page instead. - * - * Optional. - * - * Set to true if the total number of open jobs is to be returned. - * - * Defaults to false. - * @opt_param string pageToken Optional. - * - * The starting point of a query result. - * @opt_param bool idsOnly Optional. - * - * If set to `true`, only job ID, job requisition ID and language code will be - * returned. - * - * A typical use is to synchronize job repositories. - * - * Defaults to false. - * @opt_param int pageSize Optional. - * - * The maximum number of jobs to be returned per page of results. - * - * If ids_only is set to true, the maximum allowed page size is 1000. Otherwise, - * the maximum allowed page size is 100. - * - * Default is 100 if empty or a number < 1 is specified. - * @opt_param string jobRequisitionId Optional. - * - * The requisition ID, also known as posting ID, assigned by the company to the - * job. - * - * The maximum number of allowable characters is 225. - * @return Google_Service_JobService_ListCompanyJobsResponse - */ - public function listCompaniesJobs($companyName, $optParams = array()) - { - $params = array('companyName' => $companyName); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_JobService_ListCompanyJobsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/Resource/Jobs.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/Resource/Jobs.php deleted file mode 100644 index fc4c2235..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/Resource/Jobs.php +++ /dev/null @@ -1,246 +0,0 @@ - - * $jobsService = new Google_Service_JobService(...); - * $jobs = $jobsService->jobs; - * - */ -class Google_Service_JobService_Resource_Jobs extends Google_Service_Resource -{ - /** - * Deletes a list of Job postings by filter. (jobs.batchDelete) - * - * @param Google_Service_JobService_BatchDeleteJobsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_JobService_JobsEmpty - */ - public function batchDelete(Google_Service_JobService_BatchDeleteJobsRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('batchDelete', array($params), "Google_Service_JobService_JobsEmpty"); - } - /** - * Creates a new job. - * - * Typically, the job becomes searchable within 10 seconds, but it may take up - * to 5 minutes. (jobs.create) - * - * @param Google_Service_JobService_CreateJobRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_JobService_Job - */ - public function create(Google_Service_JobService_CreateJobRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_JobService_Job"); - } - /** - * Deletes the specified job. - * - * Typically, the job becomes unsearchable within 10 seconds, but it may take up - * to 5 minutes. (jobs.delete) - * - * @param string $name Required. - * - * The resource name of the job to be deleted, such as "jobs/11111111". - * @param array $optParams Optional parameters. - * - * @opt_param bool disableFastProcess Deprecated. This field is not working - * anymore. - * - * Optional. - * - * If set to true, this call waits for all processing steps to complete before - * the job is cleaned up. Otherwise, the call returns while some steps are still - * taking place asynchronously, hence faster. - * @return Google_Service_JobService_JobsEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_JobService_JobsEmpty"); - } - /** - * Deprecated. Use BatchDeleteJobs instead. - * - * Deletes the specified job by filter. You can specify whether to synchronously - * wait for validation, indexing, and general processing to be completed before - * the response is returned. (jobs.deleteByFilter) - * - * @param Google_Service_JobService_DeleteJobsByFilterRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_JobService_JobsEmpty - */ - public function deleteByFilter(Google_Service_JobService_DeleteJobsByFilterRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('deleteByFilter', array($params), "Google_Service_JobService_JobsEmpty"); - } - /** - * Retrieves the specified job, whose status is OPEN or recently EXPIRED within - * the last 90 days. (jobs.get) - * - * @param string $name Required. - * - * The resource name of the job to retrieve, such as "jobs/11111111". - * @param array $optParams Optional parameters. - * @return Google_Service_JobService_Job - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_JobService_Job"); - } - /** - * Deprecated. Use SearchJobsRequest.histogram_facets instead to make a single - * call with both search and histogram. - * - * Retrieves a histogram for the given GetHistogramRequest. This call provides a - * structured count of jobs that match against the search query, grouped by - * specified facets. - * - * This call constrains the visibility of jobs present in the database, and only - * counts jobs the caller has permission to search against. - * - * For example, use this call to generate the number of jobs in the U.S. by - * state. (jobs.histogram) - * - * @param Google_Service_JobService_GetHistogramRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_JobService_GetHistogramResponse - */ - public function histogram(Google_Service_JobService_GetHistogramRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('histogram', array($params), "Google_Service_JobService_GetHistogramResponse"); - } - /** - * Lists jobs by filter. (jobs.listJobs) - * - * @param array $optParams Optional parameters. - * - * @opt_param string filter Required. - * - * The filter string specifies the jobs to be enumerated. - * - * Supported operator: =, AND - * - * The fields eligible for filtering are: - * - * * `companyName` (Required) * `requisitionId` (Optional) - * - * Sample Query: - * - * * companyName = "companies/123" * companyName = "companies/123" AND - * requisitionId = "req-1" - * @opt_param string pageToken Optional. - * - * The starting point of a query result. - * @opt_param int pageSize Optional. - * - * The maximum number of jobs to be returned per page of results. - * - * If ids_only is set to true, the maximum allowed page size is 1000. Otherwise, - * the maximum allowed page size is 100. - * - * Default is 100 if empty or a number < 1 is specified. - * @opt_param bool idsOnly Optional. - * - * If set to `true`, only Job.name, Job.requisition_id and Job.language_code - * will be returned. - * - * A typical use case is to synchronize job repositories. - * - * Defaults to false. - * @return Google_Service_JobService_ListJobsResponse - */ - public function listJobs($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_JobService_ListJobsResponse"); - } - /** - * Updates specified job. - * - * Typically, updated contents become visible in search results within 10 - * seconds, but it may take up to 5 minutes. (jobs.patch) - * - * @param string $name Required during job update. - * - * Resource name assigned to a job by the API, for example, "/jobs/foo". Use of - * this field in job queries and API calls is preferred over the use of - * requisition_id since this value is unique. - * @param Google_Service_JobService_UpdateJobRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_JobService_Job - */ - public function patch($name, Google_Service_JobService_UpdateJobRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_JobService_Job"); - } - /** - * Searches for jobs using the provided SearchJobsRequest. - * - * This call constrains the visibility of jobs present in the database, and only - * returns jobs that the caller has permission to search against. (jobs.search) - * - * @param Google_Service_JobService_SearchJobsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_JobService_SearchJobsResponse - */ - public function search(Google_Service_JobService_SearchJobsRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('search', array($params), "Google_Service_JobService_SearchJobsResponse"); - } - /** - * Searches for jobs using the provided SearchJobsRequest. - * - * This API call is intended for the use case of targeting passive job seekers - * (for example, job seekers who have signed up to receive email alerts about - * potential job opportunities), and has different algorithmic adjustments that - * are targeted to passive job seekers. - * - * This call constrains the visibility of jobs present in the database, and only - * returns jobs the caller has permission to search against. - * (jobs.searchForAlert) - * - * @param Google_Service_JobService_SearchJobsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_JobService_SearchJobsResponse - */ - public function searchForAlert(Google_Service_JobService_SearchJobsRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('searchForAlert', array($params), "Google_Service_JobService_SearchJobsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/Resource/V2.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/Resource/V2.php deleted file mode 100644 index 0e18f5d1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/Resource/V2.php +++ /dev/null @@ -1,71 +0,0 @@ - - * $jobsService = new Google_Service_JobService(...); - * $v2 = $jobsService->v2; - * - */ -class Google_Service_JobService_Resource_V2 extends Google_Service_Resource -{ - /** - * Completes the specified prefix with job keyword suggestions. Intended for use - * by a job search auto-complete search box. (v2.complete) - * - * @param array $optParams Optional parameters. - * - * @opt_param string type Optional. - * - * The completion topic. The default is CompletionType.COMBINED. - * @opt_param string companyName Optional. - * - * If provided, restricts completion to the specified company. - * @opt_param string scope Optional. - * - * The scope of the completion. The defaults is CompletionScope.PUBLIC. - * @opt_param int pageSize Required. - * - * Completion result count. The maximum allowed page size is 10. - * @opt_param string query Required. - * - * The query used to generate suggestions. - * @opt_param string languageCode Required. - * - * The language of the query. This is the BCP-47 language code, such as "en-US" - * or "sr-Latn". For more information, see [Tags for Identifying - * Languages](https://tools.ietf.org/html/bcp47). - * - * For CompletionType.JOB_TITLE type, only open jobs with same language_code are - * returned. - * - * For CompletionType.COMPANY_NAME type, only companies having open jobs with - * same language_code are returned. - * - * For CompletionType.COMBINED type, only open jobs with same language_code or - * companies having open jobs with same language_code are returned. - * @return Google_Service_JobService_CompleteQueryResponse - */ - public function complete($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('complete', array($params), "Google_Service_JobService_CompleteQueryResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/ResponseMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/ResponseMetadata.php deleted file mode 100644 index 38a6d976..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/ResponseMetadata.php +++ /dev/null @@ -1,49 +0,0 @@ -experimentIdList = $experimentIdList; - } - public function getExperimentIdList() - { - return $this->experimentIdList; - } - public function setMode($mode) - { - $this->mode = $mode; - } - public function getMode() - { - return $this->mode; - } - public function setRequestId($requestId) - { - $this->requestId = $requestId; - } - public function getRequestId() - { - return $this->requestId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/SearchJobsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/SearchJobsRequest.php deleted file mode 100644 index 19b5770b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/SearchJobsRequest.php +++ /dev/null @@ -1,175 +0,0 @@ -disableRelevanceThresholding = $disableRelevanceThresholding; - } - public function getDisableRelevanceThresholding() - { - return $this->disableRelevanceThresholding; - } - public function setEnableBroadening($enableBroadening) - { - $this->enableBroadening = $enableBroadening; - } - public function getEnableBroadening() - { - return $this->enableBroadening; - } - public function setEnablePreciseResultSize($enablePreciseResultSize) - { - $this->enablePreciseResultSize = $enablePreciseResultSize; - } - public function getEnablePreciseResultSize() - { - return $this->enablePreciseResultSize; - } - /** - * @param Google_Service_JobService_JobFilters - */ - public function setFilters(Google_Service_JobService_JobFilters $filters) - { - $this->filters = $filters; - } - /** - * @return Google_Service_JobService_JobFilters - */ - public function getFilters() - { - return $this->filters; - } - /** - * @param Google_Service_JobService_HistogramFacets - */ - public function setHistogramFacets(Google_Service_JobService_HistogramFacets $histogramFacets) - { - $this->histogramFacets = $histogramFacets; - } - /** - * @return Google_Service_JobService_HistogramFacets - */ - public function getHistogramFacets() - { - return $this->histogramFacets; - } - public function setJobView($jobView) - { - $this->jobView = $jobView; - } - public function getJobView() - { - return $this->jobView; - } - public function setMode($mode) - { - $this->mode = $mode; - } - public function getMode() - { - return $this->mode; - } - public function setOffset($offset) - { - $this->offset = $offset; - } - public function getOffset() - { - return $this->offset; - } - public function setOrderBy($orderBy) - { - $this->orderBy = $orderBy; - } - public function getOrderBy() - { - return $this->orderBy; - } - public function setPageSize($pageSize) - { - $this->pageSize = $pageSize; - } - public function getPageSize() - { - return $this->pageSize; - } - public function setPageToken($pageToken) - { - $this->pageToken = $pageToken; - } - public function getPageToken() - { - return $this->pageToken; - } - /** - * @param Google_Service_JobService_JobQuery - */ - public function setQuery(Google_Service_JobService_JobQuery $query) - { - $this->query = $query; - } - /** - * @return Google_Service_JobService_JobQuery - */ - public function getQuery() - { - return $this->query; - } - /** - * @param Google_Service_JobService_RequestMetadata - */ - public function setRequestMetadata(Google_Service_JobService_RequestMetadata $requestMetadata) - { - $this->requestMetadata = $requestMetadata; - } - /** - * @return Google_Service_JobService_RequestMetadata - */ - public function getRequestMetadata() - { - return $this->requestMetadata; - } - public function setSortBy($sortBy) - { - $this->sortBy = $sortBy; - } - public function getSortBy() - { - return $this->sortBy; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/SearchJobsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/SearchJobsResponse.php deleted file mode 100644 index af997b77..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/SearchJobsResponse.php +++ /dev/null @@ -1,163 +0,0 @@ -appliedCommuteFilter = $appliedCommuteFilter; - } - /** - * @return Google_Service_JobService_CommutePreference - */ - public function getAppliedCommuteFilter() - { - return $this->appliedCommuteFilter; - } - /** - * @param Google_Service_JobService_JobLocation - */ - public function setAppliedJobLocationFilters($appliedJobLocationFilters) - { - $this->appliedJobLocationFilters = $appliedJobLocationFilters; - } - /** - * @return Google_Service_JobService_JobLocation - */ - public function getAppliedJobLocationFilters() - { - return $this->appliedJobLocationFilters; - } - public function setEstimatedTotalSize($estimatedTotalSize) - { - $this->estimatedTotalSize = $estimatedTotalSize; - } - public function getEstimatedTotalSize() - { - return $this->estimatedTotalSize; - } - /** - * @param Google_Service_JobService_HistogramResults - */ - public function setHistogramResults(Google_Service_JobService_HistogramResults $histogramResults) - { - $this->histogramResults = $histogramResults; - } - /** - * @return Google_Service_JobService_HistogramResults - */ - public function getHistogramResults() - { - return $this->histogramResults; - } - public function setJobView($jobView) - { - $this->jobView = $jobView; - } - public function getJobView() - { - return $this->jobView; - } - /** - * @param Google_Service_JobService_MatchingJob - */ - public function setMatchingJobs($matchingJobs) - { - $this->matchingJobs = $matchingJobs; - } - /** - * @return Google_Service_JobService_MatchingJob - */ - public function getMatchingJobs() - { - return $this->matchingJobs; - } - /** - * @param Google_Service_JobService_ResponseMetadata - */ - public function setMetadata(Google_Service_JobService_ResponseMetadata $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_JobService_ResponseMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setNumJobsFromBroadenedQuery($numJobsFromBroadenedQuery) - { - $this->numJobsFromBroadenedQuery = $numJobsFromBroadenedQuery; - } - public function getNumJobsFromBroadenedQuery() - { - return $this->numJobsFromBroadenedQuery; - } - /** - * @param Google_Service_JobService_SpellingCorrection - */ - public function setSpellResult(Google_Service_JobService_SpellingCorrection $spellResult) - { - $this->spellResult = $spellResult; - } - /** - * @return Google_Service_JobService_SpellingCorrection - */ - public function getSpellResult() - { - return $this->spellResult; - } - public function setTotalSize($totalSize) - { - $this->totalSize = $totalSize; - } - public function getTotalSize() - { - return $this->totalSize; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/SpellingCorrection.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/SpellingCorrection.php deleted file mode 100644 index a1362ab0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/SpellingCorrection.php +++ /dev/null @@ -1,39 +0,0 @@ -corrected = $corrected; - } - public function getCorrected() - { - return $this->corrected; - } - public function setCorrectedText($correctedText) - { - $this->correctedText = $correctedText; - } - public function getCorrectedText() - { - return $this->correctedText; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/StringValues.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/StringValues.php deleted file mode 100644 index 7dee12e0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/StringValues.php +++ /dev/null @@ -1,31 +0,0 @@ -values = $values; - } - public function getValues() - { - return $this->values; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/UpdateJobRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/UpdateJobRequest.php deleted file mode 100644 index 2b4b8237..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/JobService/UpdateJobRequest.php +++ /dev/null @@ -1,71 +0,0 @@ -disableStreetAddressResolution = $disableStreetAddressResolution; - } - public function getDisableStreetAddressResolution() - { - return $this->disableStreetAddressResolution; - } - /** - * @param Google_Service_JobService_Job - */ - public function setJob(Google_Service_JobService_Job $job) - { - $this->job = $job; - } - /** - * @return Google_Service_JobService_Job - */ - public function getJob() - { - return $this->job; - } - /** - * @param Google_Service_JobService_JobProcessingOptions - */ - public function setProcessingOptions(Google_Service_JobService_JobProcessingOptions $processingOptions) - { - $this->processingOptions = $processingOptions; - } - /** - * @return Google_Service_JobService_JobProcessingOptions - */ - public function getProcessingOptions() - { - return $this->processingOptions; - } - public function setUpdateJobFields($updateJobFields) - { - $this->updateJobFields = $updateJobFields; - } - public function getUpdateJobFields() - { - return $this->updateJobFields; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Kgsearch.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Kgsearch.php deleted file mode 100644 index 9a0e292a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Kgsearch.php +++ /dev/null @@ -1,99 +0,0 @@ - - * Searches the Google Knowledge Graph for entities.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Kgsearch extends Google_Service -{ - - - public $entities; - - /** - * Constructs the internal representation of the Kgsearch service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://kgsearch.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'kgsearch'; - - $this->entities = new Google_Service_Kgsearch_Resource_Entities( - $this, - $this->serviceName, - 'entities', - array( - 'methods' => array( - 'search' => array( - 'path' => 'v1/entities:search', - 'httpMethod' => 'GET', - 'parameters' => array( - 'prefix' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'query' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'types' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'indent' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'languages' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'ids' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'limit' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Kgsearch/Resource/Entities.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Kgsearch/Resource/Entities.php deleted file mode 100644 index 053bdca9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Kgsearch/Resource/Entities.php +++ /dev/null @@ -1,56 +0,0 @@ - - * $kgsearchService = new Google_Service_Kgsearch(...); - * $entities = $kgsearchService->entities; - * - */ -class Google_Service_Kgsearch_Resource_Entities extends Google_Service_Resource -{ - /** - * Searches Knowledge Graph for entities that match the constraints. A list of - * matched entities will be returned in response, which will be in JSON-LD - * format and compatible with http://schema.org (entities.search) - * - * @param array $optParams Optional parameters. - * - * @opt_param bool prefix Enables prefix match against names and aliases of - * entities - * @opt_param string query The literal query string for search. - * @opt_param string types Restricts returned entities with these types, e.g. - * Person (as defined in http://schema.org/Person). If multiple types are - * specified, returned entities will contain one or more of these types. - * @opt_param bool indent Enables indenting of json results. - * @opt_param string languages The list of language codes (defined in ISO 693) - * to run the query with, e.g. 'en'. - * @opt_param string ids The list of entity id to be used for search instead of - * query string. To specify multiple ids in the HTTP request, repeat the - * parameter in the URL as in ...?ids=A=B - * @opt_param int limit Limits the number of entities to be returned. - * @return Google_Service_Kgsearch_SearchResponse - */ - public function search($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('search', array($params), "Google_Service_Kgsearch_SearchResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Kgsearch/SearchResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Kgsearch/SearchResponse.php deleted file mode 100644 index d63c970a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Kgsearch/SearchResponse.php +++ /dev/null @@ -1,53 +0,0 @@ - "@context", - "type" => "@type", - ); - public $context; - public $type; - public $itemListElement; - - public function setContext($context) - { - $this->context = $context; - } - public function getContext() - { - return $this->context; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setItemListElement($itemListElement) - { - $this->itemListElement = $itemListElement; - } - public function getItemListElement() - { - return $this->itemListElement; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Libraryagent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Libraryagent.php deleted file mode 100644 index f2377e84..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Libraryagent.php +++ /dev/null @@ -1,147 +0,0 @@ - - * A simple Google Example Library API.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Libraryagent extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - - public $shelves; - public $shelves_books; - - /** - * Constructs the internal representation of the Libraryagent service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://libraryagent.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'libraryagent'; - - $this->shelves = new Google_Service_Libraryagent_Resource_Shelves( - $this, - $this->serviceName, - 'shelves', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/shelves', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->shelves_books = new Google_Service_Libraryagent_Resource_ShelvesBooks( - $this, - $this->serviceName, - 'books', - array( - 'methods' => array( - 'borrow' => array( - 'path' => 'v1/{+name}:borrow', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/books', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'return' => array( - 'path' => 'v1/{+name}:return', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Libraryagent/GoogleExampleLibraryagentV1Book.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Libraryagent/GoogleExampleLibraryagentV1Book.php deleted file mode 100644 index 1ff49ba0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Libraryagent/GoogleExampleLibraryagentV1Book.php +++ /dev/null @@ -1,57 +0,0 @@ -author = $author; - } - public function getAuthor() - { - return $this->author; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setRead($read) - { - $this->read = $read; - } - public function getRead() - { - return $this->read; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Libraryagent/GoogleExampleLibraryagentV1ListBooksResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Libraryagent/GoogleExampleLibraryagentV1ListBooksResponse.php deleted file mode 100644 index d4758bd1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Libraryagent/GoogleExampleLibraryagentV1ListBooksResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -books = $books; - } - /** - * @return Google_Service_Libraryagent_GoogleExampleLibraryagentV1Book - */ - public function getBooks() - { - return $this->books; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Libraryagent/GoogleExampleLibraryagentV1ListShelvesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Libraryagent/GoogleExampleLibraryagentV1ListShelvesResponse.php deleted file mode 100644 index d5c92c34..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Libraryagent/GoogleExampleLibraryagentV1ListShelvesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Libraryagent_GoogleExampleLibraryagentV1Shelf - */ - public function setShelves($shelves) - { - $this->shelves = $shelves; - } - /** - * @return Google_Service_Libraryagent_GoogleExampleLibraryagentV1Shelf - */ - public function getShelves() - { - return $this->shelves; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Libraryagent/GoogleExampleLibraryagentV1Shelf.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Libraryagent/GoogleExampleLibraryagentV1Shelf.php deleted file mode 100644 index c107dc34..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Libraryagent/GoogleExampleLibraryagentV1Shelf.php +++ /dev/null @@ -1,39 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setTheme($theme) - { - $this->theme = $theme; - } - public function getTheme() - { - return $this->theme; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Libraryagent/Resource/Shelves.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Libraryagent/Resource/Shelves.php deleted file mode 100644 index c322e007..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Libraryagent/Resource/Shelves.php +++ /dev/null @@ -1,62 +0,0 @@ - - * $libraryagentService = new Google_Service_Libraryagent(...); - * $shelves = $libraryagentService->shelves; - * - */ -class Google_Service_Libraryagent_Resource_Shelves extends Google_Service_Resource -{ - /** - * Gets a shelf. Returns NOT_FOUND if the shelf does not exist. (shelves.get) - * - * @param string $name Required. The name of the shelf to retrieve. - * @param array $optParams Optional parameters. - * @return Google_Service_Libraryagent_GoogleExampleLibraryagentV1Shelf - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Libraryagent_GoogleExampleLibraryagentV1Shelf"); - } - /** - * Lists shelves. The order is unspecified but deterministic. Newly created - * shelves will not necessarily be added to the end of this list. - * (shelves.listShelves) - * - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A token identifying a page of results the server - * should return. Typically, this is the value of - * ListShelvesResponse.next_page_token returned from the previous call to - * `ListShelves` method. - * @opt_param int pageSize Requested page size. Server may return fewer shelves - * than requested. If unspecified, server will pick an appropriate default. - * @return Google_Service_Libraryagent_GoogleExampleLibraryagentV1ListShelvesResponse - */ - public function listShelves($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Libraryagent_GoogleExampleLibraryagentV1ListShelvesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Libraryagent/Resource/ShelvesBooks.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Libraryagent/Resource/ShelvesBooks.php deleted file mode 100644 index 7ce5ba40..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Libraryagent/Resource/ShelvesBooks.php +++ /dev/null @@ -1,95 +0,0 @@ - - * $libraryagentService = new Google_Service_Libraryagent(...); - * $books = $libraryagentService->books; - * - */ -class Google_Service_Libraryagent_Resource_ShelvesBooks extends Google_Service_Resource -{ - /** - * Borrow a book from the library. Returns the book if it is borrowed - * successfully. Returns NOT_FOUND if the book does not exist in the library. - * Returns quota exceeded error if the amount of books borrowed exceeds - * allocation quota in any dimensions. (books.borrow) - * - * @param string $name Required. The name of the book to borrow. - * @param array $optParams Optional parameters. - * @return Google_Service_Libraryagent_GoogleExampleLibraryagentV1Book - */ - public function borrow($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('borrow', array($params), "Google_Service_Libraryagent_GoogleExampleLibraryagentV1Book"); - } - /** - * Gets a book. Returns NOT_FOUND if the book does not exist. (books.get) - * - * @param string $name Required. The name of the book to retrieve. - * @param array $optParams Optional parameters. - * @return Google_Service_Libraryagent_GoogleExampleLibraryagentV1Book - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Libraryagent_GoogleExampleLibraryagentV1Book"); - } - /** - * Lists books in a shelf. The order is unspecified but deterministic. Newly - * created books will not necessarily be added to the end of this list. Returns - * NOT_FOUND if the shelf does not exist. (books.listShelvesBooks) - * - * @param string $parent Required. The name of the shelf whose books we'd like - * to list. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A token identifying a page of results the server - * should return. Typically, this is the value of - * ListBooksResponse.next_page_token. returned from the previous call to - * `ListBooks` method. - * @opt_param int pageSize Requested page size. Server may return fewer books - * than requested. If unspecified, server will pick an appropriate default. - * @return Google_Service_Libraryagent_GoogleExampleLibraryagentV1ListBooksResponse - */ - public function listShelvesBooks($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Libraryagent_GoogleExampleLibraryagentV1ListBooksResponse"); - } - /** - * Return a book to the library. Returns the book if it is returned to the - * library successfully. Returns error if the book does not belong to the - * library or the users didn't borrow before. (books.returnShelvesBooks) - * - * @param string $name Required. The name of the book to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Libraryagent_GoogleExampleLibraryagentV1Book - */ - public function returnShelvesBooks($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('return', array($params), "Google_Service_Libraryagent_GoogleExampleLibraryagentV1Book"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Licensing.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Licensing.php deleted file mode 100644 index 688878e7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Licensing.php +++ /dev/null @@ -1,211 +0,0 @@ - - * Licensing API to view and manage licenses for your domain

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Licensing extends Google_Service -{ - /** View and manage G Suite licenses for your domain. */ - const APPS_LICENSING = - "https://www.googleapis.com/auth/apps.licensing"; - - public $licenseAssignments; - - /** - * Constructs the internal representation of the Licensing service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://www.googleapis.com/'; - $this->servicePath = 'apps/licensing/v1/product/'; - $this->batchPath = 'batch/licensing/v1'; - $this->version = 'v1'; - $this->serviceName = 'licensing'; - - $this->licenseAssignments = new Google_Service_Licensing_Resource_LicenseAssignments( - $this, - $this->serviceName, - 'licenseAssignments', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{productId}/sku/{skuId}/user/{userId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'productId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'skuId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{productId}/sku/{skuId}/user/{userId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'productId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'skuId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{productId}/sku/{skuId}/user', - 'httpMethod' => 'POST', - 'parameters' => array( - 'productId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'skuId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'listForProduct' => array( - 'path' => '{productId}/users', - 'httpMethod' => 'GET', - 'parameters' => array( - 'productId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'customerId' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'listForProductAndSku' => array( - 'path' => '{productId}/sku/{skuId}/users', - 'httpMethod' => 'GET', - 'parameters' => array( - 'productId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'skuId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'customerId' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => '{productId}/sku/{skuId}/user/{userId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'productId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'skuId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => '{productId}/sku/{skuId}/user/{userId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'productId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'skuId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Licensing/LicenseAssignment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Licensing/LicenseAssignment.php deleted file mode 100644 index 5e1b3d95..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Licensing/LicenseAssignment.php +++ /dev/null @@ -1,93 +0,0 @@ -etags = $etags; - } - public function getEtags() - { - return $this->etags; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setProductId($productId) - { - $this->productId = $productId; - } - public function getProductId() - { - return $this->productId; - } - public function setProductName($productName) - { - $this->productName = $productName; - } - public function getProductName() - { - return $this->productName; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setSkuId($skuId) - { - $this->skuId = $skuId; - } - public function getSkuId() - { - return $this->skuId; - } - public function setSkuName($skuName) - { - $this->skuName = $skuName; - } - public function getSkuName() - { - return $this->skuName; - } - public function setUserId($userId) - { - $this->userId = $userId; - } - public function getUserId() - { - return $this->userId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Licensing/LicenseAssignmentInsert.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Licensing/LicenseAssignmentInsert.php deleted file mode 100644 index 7d7d5c52..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Licensing/LicenseAssignmentInsert.php +++ /dev/null @@ -1,30 +0,0 @@ -userId = $userId; - } - public function getUserId() - { - return $this->userId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Licensing/LicenseAssignmentList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Licensing/LicenseAssignmentList.php deleted file mode 100644 index 833971f6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Licensing/LicenseAssignmentList.php +++ /dev/null @@ -1,65 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_Licensing_LicenseAssignment - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Licensing_LicenseAssignment - */ - public function getItems() - { - return $this->items; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Licensing/Resource/LicenseAssignments.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Licensing/Resource/LicenseAssignments.php deleted file mode 100644 index 269fd60e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Licensing/Resource/LicenseAssignments.php +++ /dev/null @@ -1,186 +0,0 @@ - - * $licensingService = new Google_Service_Licensing(...); - * $licenseAssignments = $licensingService->licenseAssignments; - * - */ -class Google_Service_Licensing_Resource_LicenseAssignments extends Google_Service_Resource -{ - /** - * Revoke a license. (licenseAssignments.delete) - * - * @param string $productId A product's unique identifier. For more information - * about products in this version of the API, see Products and SKUs. - * @param string $skuId A product SKU's unique identifier. For more information - * about available SKUs in this version of the API, see Products and SKUs. - * @param string $userId The user's current primary email address. If the user's - * email address changes, use the new email address in your API requests. Since - * a userId is subject to change, do not use a userId value as a key for - * persistent data. This key could break if the current user's email address - * changes. If the userId is suspended, the license status changes. - * @param array $optParams Optional parameters. - */ - public function delete($productId, $skuId, $userId, $optParams = array()) - { - $params = array('productId' => $productId, 'skuId' => $skuId, 'userId' => $userId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Get a specific user's license by product SKU. (licenseAssignments.get) - * - * @param string $productId A product's unique identifier. For more information - * about products in this version of the API, see Products and SKUs. - * @param string $skuId A product SKU's unique identifier. For more information - * about available SKUs in this version of the API, see Products and SKUs. - * @param string $userId The user's current primary email address. If the user's - * email address changes, use the new email address in your API requests. Since - * a userId is subject to change, do not use a userId value as a key for - * persistent data. This key could break if the current user's email address - * changes. If the userId is suspended, the license status changes. - * @param array $optParams Optional parameters. - * @return Google_Service_Licensing_LicenseAssignment - */ - public function get($productId, $skuId, $userId, $optParams = array()) - { - $params = array('productId' => $productId, 'skuId' => $skuId, 'userId' => $userId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Licensing_LicenseAssignment"); - } - /** - * Assign a license. (licenseAssignments.insert) - * - * @param string $productId A product's unique identifier. For more information - * about products in this version of the API, see Products and SKUs. - * @param string $skuId A product SKU's unique identifier. For more information - * about available SKUs in this version of the API, see Products and SKUs. - * @param Google_Service_Licensing_LicenseAssignmentInsert $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Licensing_LicenseAssignment - */ - public function insert($productId, $skuId, Google_Service_Licensing_LicenseAssignmentInsert $postBody, $optParams = array()) - { - $params = array('productId' => $productId, 'skuId' => $skuId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Licensing_LicenseAssignment"); - } - /** - * List all users assigned licenses for a specific product SKU. - * (licenseAssignments.listForProduct) - * - * @param string $productId A product's unique identifier. For more information - * about products in this version of the API, see Products and SKUs. - * @param string $customerId Customer's customerId. A previous version of this - * API accepted the primary domain name as a value for this field. If the - * customer is suspended, the server returns an error. - * @param array $optParams Optional parameters. - * - * @opt_param string maxResults The maxResults query string determines how many - * entries are returned on each page of a large response. This is an optional - * parameter. The value must be a positive number. - * @opt_param string pageToken Token to fetch the next page of data. The - * maxResults query string is related to the pageToken since maxResults - * determines how many entries are returned on each page. This is an optional - * query string. If not specified, the server returns the first page. - * @return Google_Service_Licensing_LicenseAssignmentList - */ - public function listForProduct($productId, $customerId, $optParams = array()) - { - $params = array('productId' => $productId, 'customerId' => $customerId); - $params = array_merge($params, $optParams); - return $this->call('listForProduct', array($params), "Google_Service_Licensing_LicenseAssignmentList"); - } - /** - * List all users assigned licenses for a specific product SKU. - * (licenseAssignments.listForProductAndSku) - * - * @param string $productId A product's unique identifier. For more information - * about products in this version of the API, see Products and SKUs. - * @param string $skuId A product SKU's unique identifier. For more information - * about available SKUs in this version of the API, see Products and SKUs. - * @param string $customerId Customer's customerId. A previous version of this - * API accepted the primary domain name as a value for this field. If the - * customer is suspended, the server returns an error. - * @param array $optParams Optional parameters. - * - * @opt_param string maxResults The maxResults query string determines how many - * entries are returned on each page of a large response. This is an optional - * parameter. The value must be a positive number. - * @opt_param string pageToken Token to fetch the next page of data. The - * maxResults query string is related to the pageToken since maxResults - * determines how many entries are returned on each page. This is an optional - * query string. If not specified, the server returns the first page. - * @return Google_Service_Licensing_LicenseAssignmentList - */ - public function listForProductAndSku($productId, $skuId, $customerId, $optParams = array()) - { - $params = array('productId' => $productId, 'skuId' => $skuId, 'customerId' => $customerId); - $params = array_merge($params, $optParams); - return $this->call('listForProductAndSku', array($params), "Google_Service_Licensing_LicenseAssignmentList"); - } - /** - * Reassign a user's product SKU with a different SKU in the same product. This - * method supports patch semantics. (licenseAssignments.patch) - * - * @param string $productId A product's unique identifier. For more information - * about products in this version of the API, see Products and SKUs. - * @param string $skuId A product SKU's unique identifier. For more information - * about available SKUs in this version of the API, see Products and SKUs. - * @param string $userId The user's current primary email address. If the user's - * email address changes, use the new email address in your API requests. Since - * a userId is subject to change, do not use a userId value as a key for - * persistent data. This key could break if the current user's email address - * changes. If the userId is suspended, the license status changes. - * @param Google_Service_Licensing_LicenseAssignment $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Licensing_LicenseAssignment - */ - public function patch($productId, $skuId, $userId, Google_Service_Licensing_LicenseAssignment $postBody, $optParams = array()) - { - $params = array('productId' => $productId, 'skuId' => $skuId, 'userId' => $userId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Licensing_LicenseAssignment"); - } - /** - * Reassign a user's product SKU with a different SKU in the same product. - * (licenseAssignments.update) - * - * @param string $productId A product's unique identifier. For more information - * about products in this version of the API, see Products and SKUs. - * @param string $skuId A product SKU's unique identifier. For more information - * about available SKUs in this version of the API, see Products and SKUs. - * @param string $userId The user's current primary email address. If the user's - * email address changes, use the new email address in your API requests. Since - * a userId is subject to change, do not use a userId value as a key for - * persistent data. This key could break if the current user's email address - * changes. If the userId is suspended, the license status changes. - * @param Google_Service_Licensing_LicenseAssignment $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Licensing_LicenseAssignment - */ - public function update($productId, $skuId, $userId, Google_Service_Licensing_LicenseAssignment $postBody, $optParams = array()) - { - $params = array('productId' => $productId, 'skuId' => $skuId, 'userId' => $userId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Licensing_LicenseAssignment"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging.php deleted file mode 100644 index 245707b3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging.php +++ /dev/null @@ -1,1288 +0,0 @@ - - * Writes log entries and manages your Stackdriver Logging configuration. The - * table entries below are presented in alphabetical order, not in order of - * common use. For explanations of the concepts found in the table entries, read - * the Stackdriver Logging documentation.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Logging extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** View your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM_READ_ONLY = - "https://www.googleapis.com/auth/cloud-platform.read-only"; - /** Administrate log data for your projects. */ - const LOGGING_ADMIN = - "https://www.googleapis.com/auth/logging.admin"; - /** View log data for your projects. */ - const LOGGING_READ = - "https://www.googleapis.com/auth/logging.read"; - /** Submit log data for your projects. */ - const LOGGING_WRITE = - "https://www.googleapis.com/auth/logging.write"; - - public $billingAccounts_exclusions; - public $billingAccounts_logs; - public $billingAccounts_sinks; - public $entries; - public $exclusions; - public $folders_exclusions; - public $folders_logs; - public $folders_sinks; - public $logs; - public $monitoredResourceDescriptors; - public $organizations; - public $organizations_exclusions; - public $organizations_logs; - public $organizations_sinks; - public $projects_exclusions; - public $projects_logs; - public $projects_metrics; - public $projects_sinks; - public $sinks; - public $v2; - - /** - * Constructs the internal representation of the Logging service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://logging.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v2'; - $this->serviceName = 'logging'; - - $this->billingAccounts_exclusions = new Google_Service_Logging_Resource_BillingAccountsExclusions( - $this, - $this->serviceName, - 'exclusions', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v2/{+parent}/exclusions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2/{+parent}/exclusions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->billingAccounts_logs = new Google_Service_Logging_Resource_BillingAccountsLogs( - $this, - $this->serviceName, - 'logs', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'v2/{+logName}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'logName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2/{+parent}/logs', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->billingAccounts_sinks = new Google_Service_Logging_Resource_BillingAccountsSinks( - $this, - $this->serviceName, - 'sinks', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v2/{+parent}/sinks', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'uniqueWriterIdentity' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'delete' => array( - 'path' => 'v2/{+sinkName}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'sinkName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v2/{+sinkName}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'sinkName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2/{+parent}/sinks', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v2/{+sinkName}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'sinkName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'uniqueWriterIdentity' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'v2/{+sinkName}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'sinkName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'uniqueWriterIdentity' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->entries = new Google_Service_Logging_Resource_Entries( - $this, - $this->serviceName, - 'entries', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v2/entries:list', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'write' => array( - 'path' => 'v2/entries:write', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->exclusions = new Google_Service_Logging_Resource_Exclusions( - $this, - $this->serviceName, - 'exclusions', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v2/{+parent}/exclusions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2/{+parent}/exclusions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->folders_exclusions = new Google_Service_Logging_Resource_FoldersExclusions( - $this, - $this->serviceName, - 'exclusions', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v2/{+parent}/exclusions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2/{+parent}/exclusions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->folders_logs = new Google_Service_Logging_Resource_FoldersLogs( - $this, - $this->serviceName, - 'logs', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'v2/{+logName}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'logName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2/{+parent}/logs', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->folders_sinks = new Google_Service_Logging_Resource_FoldersSinks( - $this, - $this->serviceName, - 'sinks', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v2/{+parent}/sinks', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'uniqueWriterIdentity' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'delete' => array( - 'path' => 'v2/{+sinkName}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'sinkName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v2/{+sinkName}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'sinkName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2/{+parent}/sinks', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'v2/{+sinkName}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'sinkName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'uniqueWriterIdentity' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'v2/{+sinkName}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'sinkName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'uniqueWriterIdentity' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->logs = new Google_Service_Logging_Resource_Logs( - $this, - $this->serviceName, - 'logs', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'v2/{+logName}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'logName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2/{+parent}/logs', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->monitoredResourceDescriptors = new Google_Service_Logging_Resource_MonitoredResourceDescriptors( - $this, - $this->serviceName, - 'monitoredResourceDescriptors', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v2/monitoredResourceDescriptors', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->organizations = new Google_Service_Logging_Resource_Organizations( - $this, - $this->serviceName, - 'organizations', - array( - 'methods' => array( - 'getCmekSettings' => array( - 'path' => 'v2/{+name}/cmekSettings', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'updateCmekSettings' => array( - 'path' => 'v2/{+name}/cmekSettings', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->organizations_exclusions = new Google_Service_Logging_Resource_OrganizationsExclusions( - $this, - $this->serviceName, - 'exclusions', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v2/{+parent}/exclusions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2/{+parent}/exclusions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->organizations_logs = new Google_Service_Logging_Resource_OrganizationsLogs( - $this, - $this->serviceName, - 'logs', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'v2/{+logName}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'logName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2/{+parent}/logs', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->organizations_sinks = new Google_Service_Logging_Resource_OrganizationsSinks( - $this, - $this->serviceName, - 'sinks', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v2/{+parent}/sinks', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'uniqueWriterIdentity' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'delete' => array( - 'path' => 'v2/{+sinkName}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'sinkName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v2/{+sinkName}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'sinkName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2/{+parent}/sinks', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v2/{+sinkName}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'sinkName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'uniqueWriterIdentity' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'v2/{+sinkName}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'sinkName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'uniqueWriterIdentity' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_exclusions = new Google_Service_Logging_Resource_ProjectsExclusions( - $this, - $this->serviceName, - 'exclusions', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v2/{+parent}/exclusions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2/{+parent}/exclusions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_logs = new Google_Service_Logging_Resource_ProjectsLogs( - $this, - $this->serviceName, - 'logs', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'v2/{+logName}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'logName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2/{+parent}/logs', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->projects_metrics = new Google_Service_Logging_Resource_ProjectsMetrics( - $this, - $this->serviceName, - 'metrics', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v2/{+parent}/metrics', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v2/{+metricName}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'metricName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v2/{+metricName}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'metricName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2/{+parent}/metrics', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'update' => array( - 'path' => 'v2/{+metricName}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'metricName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_sinks = new Google_Service_Logging_Resource_ProjectsSinks( - $this, - $this->serviceName, - 'sinks', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v2/{+parent}/sinks', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'uniqueWriterIdentity' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'delete' => array( - 'path' => 'v2/{+sinkName}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'sinkName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v2/{+sinkName}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'sinkName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2/{+parent}/sinks', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v2/{+sinkName}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'sinkName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'uniqueWriterIdentity' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'v2/{+sinkName}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'sinkName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'uniqueWriterIdentity' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->sinks = new Google_Service_Logging_Resource_Sinks( - $this, - $this->serviceName, - 'sinks', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v2/{+parent}/sinks', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'uniqueWriterIdentity' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'delete' => array( - 'path' => 'v2/{+sinkName}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'sinkName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v2/{+sinkName}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'sinkName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2/{+parent}/sinks', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'update' => array( - 'path' => 'v2/{+sinkName}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'sinkName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'uniqueWriterIdentity' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->v2 = new Google_Service_Logging_Resource_V2( - $this, - $this->serviceName, - 'v2', - array( - 'methods' => array( - 'getCmekSettings' => array( - 'path' => 'v2/{+name}/cmekSettings', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'updateCmekSettings' => array( - 'path' => 'v2/{+name}/cmekSettings', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/BigQueryOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/BigQueryOptions.php deleted file mode 100644 index f4e6af1b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/BigQueryOptions.php +++ /dev/null @@ -1,39 +0,0 @@ -usePartitionedTables = $usePartitionedTables; - } - public function getUsePartitionedTables() - { - return $this->usePartitionedTables; - } - public function setUsesTimestampColumnPartitioning($usesTimestampColumnPartitioning) - { - $this->usesTimestampColumnPartitioning = $usesTimestampColumnPartitioning; - } - public function getUsesTimestampColumnPartitioning() - { - return $this->usesTimestampColumnPartitioning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/BucketOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/BucketOptions.php deleted file mode 100644 index 534a70d9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/BucketOptions.php +++ /dev/null @@ -1,69 +0,0 @@ -explicitBuckets = $explicitBuckets; - } - /** - * @return Google_Service_Logging_Explicit - */ - public function getExplicitBuckets() - { - return $this->explicitBuckets; - } - /** - * @param Google_Service_Logging_Exponential - */ - public function setExponentialBuckets(Google_Service_Logging_Exponential $exponentialBuckets) - { - $this->exponentialBuckets = $exponentialBuckets; - } - /** - * @return Google_Service_Logging_Exponential - */ - public function getExponentialBuckets() - { - return $this->exponentialBuckets; - } - /** - * @param Google_Service_Logging_Linear - */ - public function setLinearBuckets(Google_Service_Logging_Linear $linearBuckets) - { - $this->linearBuckets = $linearBuckets; - } - /** - * @return Google_Service_Logging_Linear - */ - public function getLinearBuckets() - { - return $this->linearBuckets; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/CmekSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/CmekSettings.php deleted file mode 100644 index 88fd80fe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/CmekSettings.php +++ /dev/null @@ -1,48 +0,0 @@ -kmsKeyName = $kmsKeyName; - } - public function getKmsKeyName() - { - return $this->kmsKeyName; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setServiceAccountId($serviceAccountId) - { - $this->serviceAccountId = $serviceAccountId; - } - public function getServiceAccountId() - { - return $this->serviceAccountId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Explicit.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Explicit.php deleted file mode 100644 index d8d728ab..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Explicit.php +++ /dev/null @@ -1,31 +0,0 @@ -bounds = $bounds; - } - public function getBounds() - { - return $this->bounds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Exponential.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Exponential.php deleted file mode 100644 index b86612e0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Exponential.php +++ /dev/null @@ -1,48 +0,0 @@ -growthFactor = $growthFactor; - } - public function getGrowthFactor() - { - return $this->growthFactor; - } - public function setNumFiniteBuckets($numFiniteBuckets) - { - $this->numFiniteBuckets = $numFiniteBuckets; - } - public function getNumFiniteBuckets() - { - return $this->numFiniteBuckets; - } - public function setScale($scale) - { - $this->scale = $scale; - } - public function getScale() - { - return $this->scale; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/HttpRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/HttpRequest.php deleted file mode 100644 index ab569584..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/HttpRequest.php +++ /dev/null @@ -1,156 +0,0 @@ -cacheFillBytes = $cacheFillBytes; - } - public function getCacheFillBytes() - { - return $this->cacheFillBytes; - } - public function setCacheHit($cacheHit) - { - $this->cacheHit = $cacheHit; - } - public function getCacheHit() - { - return $this->cacheHit; - } - public function setCacheLookup($cacheLookup) - { - $this->cacheLookup = $cacheLookup; - } - public function getCacheLookup() - { - return $this->cacheLookup; - } - public function setCacheValidatedWithOriginServer($cacheValidatedWithOriginServer) - { - $this->cacheValidatedWithOriginServer = $cacheValidatedWithOriginServer; - } - public function getCacheValidatedWithOriginServer() - { - return $this->cacheValidatedWithOriginServer; - } - public function setLatency($latency) - { - $this->latency = $latency; - } - public function getLatency() - { - return $this->latency; - } - public function setProtocol($protocol) - { - $this->protocol = $protocol; - } - public function getProtocol() - { - return $this->protocol; - } - public function setReferer($referer) - { - $this->referer = $referer; - } - public function getReferer() - { - return $this->referer; - } - public function setRemoteIp($remoteIp) - { - $this->remoteIp = $remoteIp; - } - public function getRemoteIp() - { - return $this->remoteIp; - } - public function setRequestMethod($requestMethod) - { - $this->requestMethod = $requestMethod; - } - public function getRequestMethod() - { - return $this->requestMethod; - } - public function setRequestSize($requestSize) - { - $this->requestSize = $requestSize; - } - public function getRequestSize() - { - return $this->requestSize; - } - public function setRequestUrl($requestUrl) - { - $this->requestUrl = $requestUrl; - } - public function getRequestUrl() - { - return $this->requestUrl; - } - public function setResponseSize($responseSize) - { - $this->responseSize = $responseSize; - } - public function getResponseSize() - { - return $this->responseSize; - } - public function setServerIp($serverIp) - { - $this->serverIp = $serverIp; - } - public function getServerIp() - { - return $this->serverIp; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setUserAgent($userAgent) - { - $this->userAgent = $userAgent; - } - public function getUserAgent() - { - return $this->userAgent; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/LabelDescriptor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/LabelDescriptor.php deleted file mode 100644 index 6ddece74..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/LabelDescriptor.php +++ /dev/null @@ -1,48 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setKey($key) - { - $this->key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValueType($valueType) - { - $this->valueType = $valueType; - } - public function getValueType() - { - return $this->valueType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Linear.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Linear.php deleted file mode 100644 index 6770d371..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Linear.php +++ /dev/null @@ -1,48 +0,0 @@ -numFiniteBuckets = $numFiniteBuckets; - } - public function getNumFiniteBuckets() - { - return $this->numFiniteBuckets; - } - public function setOffset($offset) - { - $this->offset = $offset; - } - public function getOffset() - { - return $this->offset; - } - public function setWidth($width) - { - $this->width = $width; - } - public function getWidth() - { - return $this->width; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/ListExclusionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/ListExclusionsResponse.php deleted file mode 100644 index ce28ac7b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/ListExclusionsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -exclusions = $exclusions; - } - /** - * @return Google_Service_Logging_LogExclusion - */ - public function getExclusions() - { - return $this->exclusions; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/ListLogEntriesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/ListLogEntriesRequest.php deleted file mode 100644 index 9c8957df..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/ListLogEntriesRequest.php +++ /dev/null @@ -1,76 +0,0 @@ -filter = $filter; - } - public function getFilter() - { - return $this->filter; - } - public function setOrderBy($orderBy) - { - $this->orderBy = $orderBy; - } - public function getOrderBy() - { - return $this->orderBy; - } - public function setPageSize($pageSize) - { - $this->pageSize = $pageSize; - } - public function getPageSize() - { - return $this->pageSize; - } - public function setPageToken($pageToken) - { - $this->pageToken = $pageToken; - } - public function getPageToken() - { - return $this->pageToken; - } - public function setProjectIds($projectIds) - { - $this->projectIds = $projectIds; - } - public function getProjectIds() - { - return $this->projectIds; - } - public function setResourceNames($resourceNames) - { - $this->resourceNames = $resourceNames; - } - public function getResourceNames() - { - return $this->resourceNames; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/ListLogEntriesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/ListLogEntriesResponse.php deleted file mode 100644 index f6e832b3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/ListLogEntriesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -entries = $entries; - } - /** - * @return Google_Service_Logging_LogEntry - */ - public function getEntries() - { - return $this->entries; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/ListLogMetricsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/ListLogMetricsResponse.php deleted file mode 100644 index a52b4daf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/ListLogMetricsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -metrics = $metrics; - } - /** - * @return Google_Service_Logging_LogMetric - */ - public function getMetrics() - { - return $this->metrics; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/ListLogsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/ListLogsResponse.php deleted file mode 100644 index 581ec26b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/ListLogsResponse.php +++ /dev/null @@ -1,40 +0,0 @@ -logNames = $logNames; - } - public function getLogNames() - { - return $this->logNames; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/ListMonitoredResourceDescriptorsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/ListMonitoredResourceDescriptorsResponse.php deleted file mode 100644 index 50e58e92..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/ListMonitoredResourceDescriptorsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Logging_MonitoredResourceDescriptor - */ - public function setResourceDescriptors($resourceDescriptors) - { - $this->resourceDescriptors = $resourceDescriptors; - } - /** - * @return Google_Service_Logging_MonitoredResourceDescriptor - */ - public function getResourceDescriptors() - { - return $this->resourceDescriptors; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/ListSinksResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/ListSinksResponse.php deleted file mode 100644 index a71c012c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/ListSinksResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Logging_LogSink - */ - public function setSinks($sinks) - { - $this->sinks = $sinks; - } - /** - * @return Google_Service_Logging_LogSink - */ - public function getSinks() - { - return $this->sinks; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/LogEntry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/LogEntry.php deleted file mode 100644 index b42dacc9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/LogEntry.php +++ /dev/null @@ -1,209 +0,0 @@ -httpRequest = $httpRequest; - } - /** - * @return Google_Service_Logging_HttpRequest - */ - public function getHttpRequest() - { - return $this->httpRequest; - } - public function setInsertId($insertId) - { - $this->insertId = $insertId; - } - public function getInsertId() - { - return $this->insertId; - } - public function setJsonPayload($jsonPayload) - { - $this->jsonPayload = $jsonPayload; - } - public function getJsonPayload() - { - return $this->jsonPayload; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setLogName($logName) - { - $this->logName = $logName; - } - public function getLogName() - { - return $this->logName; - } - /** - * @param Google_Service_Logging_MonitoredResourceMetadata - */ - public function setMetadata(Google_Service_Logging_MonitoredResourceMetadata $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_Logging_MonitoredResourceMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - /** - * @param Google_Service_Logging_LogEntryOperation - */ - public function setOperation(Google_Service_Logging_LogEntryOperation $operation) - { - $this->operation = $operation; - } - /** - * @return Google_Service_Logging_LogEntryOperation - */ - public function getOperation() - { - return $this->operation; - } - public function setProtoPayload($protoPayload) - { - $this->protoPayload = $protoPayload; - } - public function getProtoPayload() - { - return $this->protoPayload; - } - public function setReceiveTimestamp($receiveTimestamp) - { - $this->receiveTimestamp = $receiveTimestamp; - } - public function getReceiveTimestamp() - { - return $this->receiveTimestamp; - } - /** - * @param Google_Service_Logging_MonitoredResource - */ - public function setResource(Google_Service_Logging_MonitoredResource $resource) - { - $this->resource = $resource; - } - /** - * @return Google_Service_Logging_MonitoredResource - */ - public function getResource() - { - return $this->resource; - } - public function setSeverity($severity) - { - $this->severity = $severity; - } - public function getSeverity() - { - return $this->severity; - } - /** - * @param Google_Service_Logging_LogEntrySourceLocation - */ - public function setSourceLocation(Google_Service_Logging_LogEntrySourceLocation $sourceLocation) - { - $this->sourceLocation = $sourceLocation; - } - /** - * @return Google_Service_Logging_LogEntrySourceLocation - */ - public function getSourceLocation() - { - return $this->sourceLocation; - } - public function setSpanId($spanId) - { - $this->spanId = $spanId; - } - public function getSpanId() - { - return $this->spanId; - } - public function setTextPayload($textPayload) - { - $this->textPayload = $textPayload; - } - public function getTextPayload() - { - return $this->textPayload; - } - public function setTimestamp($timestamp) - { - $this->timestamp = $timestamp; - } - public function getTimestamp() - { - return $this->timestamp; - } - public function setTrace($trace) - { - $this->trace = $trace; - } - public function getTrace() - { - return $this->trace; - } - public function setTraceSampled($traceSampled) - { - $this->traceSampled = $traceSampled; - } - public function getTraceSampled() - { - return $this->traceSampled; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/LogEntryOperation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/LogEntryOperation.php deleted file mode 100644 index 15d7f6ea..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/LogEntryOperation.php +++ /dev/null @@ -1,57 +0,0 @@ -first = $first; - } - public function getFirst() - { - return $this->first; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setLast($last) - { - $this->last = $last; - } - public function getLast() - { - return $this->last; - } - public function setProducer($producer) - { - $this->producer = $producer; - } - public function getProducer() - { - return $this->producer; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/LogEntrySourceLocation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/LogEntrySourceLocation.php deleted file mode 100644 index 91c28107..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/LogEntrySourceLocation.php +++ /dev/null @@ -1,48 +0,0 @@ -file = $file; - } - public function getFile() - { - return $this->file; - } - public function setFunction($function) - { - $this->function = $function; - } - public function getFunction() - { - return $this->function; - } - public function setLine($line) - { - $this->line = $line; - } - public function getLine() - { - return $this->line; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/LogExclusion.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/LogExclusion.php deleted file mode 100644 index 83de31b8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/LogExclusion.php +++ /dev/null @@ -1,75 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisabled($disabled) - { - $this->disabled = $disabled; - } - public function getDisabled() - { - return $this->disabled; - } - public function setFilter($filter) - { - $this->filter = $filter; - } - public function getFilter() - { - return $this->filter; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/LogLine.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/LogLine.php deleted file mode 100644 index 1021f1e6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/LogLine.php +++ /dev/null @@ -1,64 +0,0 @@ -logMessage = $logMessage; - } - public function getLogMessage() - { - return $this->logMessage; - } - public function setSeverity($severity) - { - $this->severity = $severity; - } - public function getSeverity() - { - return $this->severity; - } - /** - * @param Google_Service_Logging_SourceLocation - */ - public function setSourceLocation(Google_Service_Logging_SourceLocation $sourceLocation) - { - $this->sourceLocation = $sourceLocation; - } - /** - * @return Google_Service_Logging_SourceLocation - */ - public function getSourceLocation() - { - return $this->sourceLocation; - } - public function setTime($time) - { - $this->time = $time; - } - public function getTime() - { - return $this->time; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/LogMetric.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/LogMetric.php deleted file mode 100644 index 988d1761..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/LogMetric.php +++ /dev/null @@ -1,125 +0,0 @@ -bucketOptions = $bucketOptions; - } - /** - * @return Google_Service_Logging_BucketOptions - */ - public function getBucketOptions() - { - return $this->bucketOptions; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setFilter($filter) - { - $this->filter = $filter; - } - public function getFilter() - { - return $this->filter; - } - public function setLabelExtractors($labelExtractors) - { - $this->labelExtractors = $labelExtractors; - } - public function getLabelExtractors() - { - return $this->labelExtractors; - } - /** - * @param Google_Service_Logging_MetricDescriptor - */ - public function setMetricDescriptor(Google_Service_Logging_MetricDescriptor $metricDescriptor) - { - $this->metricDescriptor = $metricDescriptor; - } - /** - * @return Google_Service_Logging_MetricDescriptor - */ - public function getMetricDescriptor() - { - return $this->metricDescriptor; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } - public function setValueExtractor($valueExtractor) - { - $this->valueExtractor = $valueExtractor; - } - public function getValueExtractor() - { - return $this->valueExtractor; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/LogSink.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/LogSink.php deleted file mode 100644 index d9badfe7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/LogSink.php +++ /dev/null @@ -1,145 +0,0 @@ -bigqueryOptions = $bigqueryOptions; - } - /** - * @return Google_Service_Logging_BigQueryOptions - */ - public function getBigqueryOptions() - { - return $this->bigqueryOptions; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDestination($destination) - { - $this->destination = $destination; - } - public function getDestination() - { - return $this->destination; - } - public function setDisabled($disabled) - { - $this->disabled = $disabled; - } - public function getDisabled() - { - return $this->disabled; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setFilter($filter) - { - $this->filter = $filter; - } - public function getFilter() - { - return $this->filter; - } - public function setIncludeChildren($includeChildren) - { - $this->includeChildren = $includeChildren; - } - public function getIncludeChildren() - { - return $this->includeChildren; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOutputVersionFormat($outputVersionFormat) - { - $this->outputVersionFormat = $outputVersionFormat; - } - public function getOutputVersionFormat() - { - return $this->outputVersionFormat; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } - public function setWriterIdentity($writerIdentity) - { - $this->writerIdentity = $writerIdentity; - } - public function getWriterIdentity() - { - return $this->writerIdentity; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/LoggingEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/LoggingEmpty.php deleted file mode 100644 index a9292f20..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/LoggingEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - /** - * @param Google_Service_Logging_LabelDescriptor - */ - public function setLabels($labels) - { - $this->labels = $labels; - } - /** - * @return Google_Service_Logging_LabelDescriptor - */ - public function getLabels() - { - return $this->labels; - } - public function setLaunchStage($launchStage) - { - $this->launchStage = $launchStage; - } - public function getLaunchStage() - { - return $this->launchStage; - } - /** - * @param Google_Service_Logging_MetricDescriptorMetadata - */ - public function setMetadata(Google_Service_Logging_MetricDescriptorMetadata $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_Logging_MetricDescriptorMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - public function setMetricKind($metricKind) - { - $this->metricKind = $metricKind; - } - public function getMetricKind() - { - return $this->metricKind; - } - public function setMonitoredResourceTypes($monitoredResourceTypes) - { - $this->monitoredResourceTypes = $monitoredResourceTypes; - } - public function getMonitoredResourceTypes() - { - return $this->monitoredResourceTypes; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setUnit($unit) - { - $this->unit = $unit; - } - public function getUnit() - { - return $this->unit; - } - public function setValueType($valueType) - { - $this->valueType = $valueType; - } - public function getValueType() - { - return $this->valueType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/MetricDescriptorMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/MetricDescriptorMetadata.php deleted file mode 100644 index cd43261b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/MetricDescriptorMetadata.php +++ /dev/null @@ -1,48 +0,0 @@ -ingestDelay = $ingestDelay; - } - public function getIngestDelay() - { - return $this->ingestDelay; - } - public function setLaunchStage($launchStage) - { - $this->launchStage = $launchStage; - } - public function getLaunchStage() - { - return $this->launchStage; - } - public function setSamplePeriod($samplePeriod) - { - $this->samplePeriod = $samplePeriod; - } - public function getSamplePeriod() - { - return $this->samplePeriod; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/MonitoredResource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/MonitoredResource.php deleted file mode 100644 index bef8a6d5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/MonitoredResource.php +++ /dev/null @@ -1,39 +0,0 @@ -labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/MonitoredResourceDescriptor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/MonitoredResourceDescriptor.php deleted file mode 100644 index 2b5285c6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/MonitoredResourceDescriptor.php +++ /dev/null @@ -1,83 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - /** - * @param Google_Service_Logging_LabelDescriptor - */ - public function setLabels($labels) - { - $this->labels = $labels; - } - /** - * @return Google_Service_Logging_LabelDescriptor - */ - public function getLabels() - { - return $this->labels; - } - public function setLaunchStage($launchStage) - { - $this->launchStage = $launchStage; - } - public function getLaunchStage() - { - return $this->launchStage; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/MonitoredResourceMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/MonitoredResourceMetadata.php deleted file mode 100644 index 3517293c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/MonitoredResourceMetadata.php +++ /dev/null @@ -1,39 +0,0 @@ -systemLabels = $systemLabels; - } - public function getSystemLabels() - { - return $this->systemLabels; - } - public function setUserLabels($userLabels) - { - $this->userLabels = $userLabels; - } - public function getUserLabels() - { - return $this->userLabels; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/RequestLog.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/RequestLog.php deleted file mode 100644 index 48fd6fec..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/RequestLog.php +++ /dev/null @@ -1,333 +0,0 @@ -appEngineRelease = $appEngineRelease; - } - public function getAppEngineRelease() - { - return $this->appEngineRelease; - } - public function setAppId($appId) - { - $this->appId = $appId; - } - public function getAppId() - { - return $this->appId; - } - public function setCost($cost) - { - $this->cost = $cost; - } - public function getCost() - { - return $this->cost; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setFinished($finished) - { - $this->finished = $finished; - } - public function getFinished() - { - return $this->finished; - } - public function setFirst($first) - { - $this->first = $first; - } - public function getFirst() - { - return $this->first; - } - public function setHost($host) - { - $this->host = $host; - } - public function getHost() - { - return $this->host; - } - public function setHttpVersion($httpVersion) - { - $this->httpVersion = $httpVersion; - } - public function getHttpVersion() - { - return $this->httpVersion; - } - public function setInstanceId($instanceId) - { - $this->instanceId = $instanceId; - } - public function getInstanceId() - { - return $this->instanceId; - } - public function setInstanceIndex($instanceIndex) - { - $this->instanceIndex = $instanceIndex; - } - public function getInstanceIndex() - { - return $this->instanceIndex; - } - public function setIp($ip) - { - $this->ip = $ip; - } - public function getIp() - { - return $this->ip; - } - public function setLatency($latency) - { - $this->latency = $latency; - } - public function getLatency() - { - return $this->latency; - } - /** - * @param Google_Service_Logging_LogLine - */ - public function setLine($line) - { - $this->line = $line; - } - /** - * @return Google_Service_Logging_LogLine - */ - public function getLine() - { - return $this->line; - } - public function setMegaCycles($megaCycles) - { - $this->megaCycles = $megaCycles; - } - public function getMegaCycles() - { - return $this->megaCycles; - } - public function setMethod($method) - { - $this->method = $method; - } - public function getMethod() - { - return $this->method; - } - public function setModuleId($moduleId) - { - $this->moduleId = $moduleId; - } - public function getModuleId() - { - return $this->moduleId; - } - public function setNickname($nickname) - { - $this->nickname = $nickname; - } - public function getNickname() - { - return $this->nickname; - } - public function setPendingTime($pendingTime) - { - $this->pendingTime = $pendingTime; - } - public function getPendingTime() - { - return $this->pendingTime; - } - public function setReferrer($referrer) - { - $this->referrer = $referrer; - } - public function getReferrer() - { - return $this->referrer; - } - public function setRequestId($requestId) - { - $this->requestId = $requestId; - } - public function getRequestId() - { - return $this->requestId; - } - public function setResource($resource) - { - $this->resource = $resource; - } - public function getResource() - { - return $this->resource; - } - public function setResponseSize($responseSize) - { - $this->responseSize = $responseSize; - } - public function getResponseSize() - { - return $this->responseSize; - } - /** - * @param Google_Service_Logging_SourceReference - */ - public function setSourceReference($sourceReference) - { - $this->sourceReference = $sourceReference; - } - /** - * @return Google_Service_Logging_SourceReference - */ - public function getSourceReference() - { - return $this->sourceReference; - } - 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 setTaskName($taskName) - { - $this->taskName = $taskName; - } - public function getTaskName() - { - return $this->taskName; - } - public function setTaskQueueName($taskQueueName) - { - $this->taskQueueName = $taskQueueName; - } - public function getTaskQueueName() - { - return $this->taskQueueName; - } - public function setTraceId($traceId) - { - $this->traceId = $traceId; - } - public function getTraceId() - { - return $this->traceId; - } - public function setTraceSampled($traceSampled) - { - $this->traceSampled = $traceSampled; - } - public function getTraceSampled() - { - return $this->traceSampled; - } - public function setUrlMapEntry($urlMapEntry) - { - $this->urlMapEntry = $urlMapEntry; - } - public function getUrlMapEntry() - { - return $this->urlMapEntry; - } - public function setUserAgent($userAgent) - { - $this->userAgent = $userAgent; - } - public function getUserAgent() - { - return $this->userAgent; - } - public function setVersionId($versionId) - { - $this->versionId = $versionId; - } - public function getVersionId() - { - return $this->versionId; - } - public function setWasLoadingRequest($wasLoadingRequest) - { - $this->wasLoadingRequest = $wasLoadingRequest; - } - public function getWasLoadingRequest() - { - return $this->wasLoadingRequest; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/BillingAccounts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/BillingAccounts.php deleted file mode 100644 index 41d9fe27..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/BillingAccounts.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $loggingService = new Google_Service_Logging(...); - * $billingAccounts = $loggingService->billingAccounts; - * - */ -class Google_Service_Logging_Resource_BillingAccounts extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/BillingAccountsExclusions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/BillingAccountsExclusions.php deleted file mode 100644 index aeccb01d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/BillingAccountsExclusions.php +++ /dev/null @@ -1,133 +0,0 @@ - - * $loggingService = new Google_Service_Logging(...); - * $exclusions = $loggingService->exclusions; - * - */ -class Google_Service_Logging_Resource_BillingAccountsExclusions extends Google_Service_Resource -{ - /** - * Creates a new exclusion in a specified parent resource. Only log entries - * belonging to that resource can be excluded. You can have up to 10 exclusions - * in a resource. (exclusions.create) - * - * @param string $parent Required. The parent resource in which to create the - * exclusion: "projects/[PROJECT_ID]" "organizations/[ORGANIZATION_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]" "folders/[FOLDER_ID]" Examples: - * "projects/my-logging-project", "organizations/123456789". - * @param Google_Service_Logging_LogExclusion $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Logging_LogExclusion - */ - public function create($parent, Google_Service_Logging_LogExclusion $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Logging_LogExclusion"); - } - /** - * Deletes an exclusion. (exclusions.delete) - * - * @param string $name Required. The resource name of an existing exclusion to - * delete: "projects/[PROJECT_ID]/exclusions/[EXCLUSION_ID]" - * "organizations/[ORGANIZATION_ID]/exclusions/[EXCLUSION_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]/exclusions/[EXCLUSION_ID]" - * "folders/[FOLDER_ID]/exclusions/[EXCLUSION_ID]" Example: "projects/my- - * project-id/exclusions/my-exclusion-id". - * @param array $optParams Optional parameters. - * @return Google_Service_Logging_LoggingEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Logging_LoggingEmpty"); - } - /** - * Gets the description of an exclusion. (exclusions.get) - * - * @param string $name Required. The resource name of an existing exclusion: - * "projects/[PROJECT_ID]/exclusions/[EXCLUSION_ID]" - * "organizations/[ORGANIZATION_ID]/exclusions/[EXCLUSION_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]/exclusions/[EXCLUSION_ID]" - * "folders/[FOLDER_ID]/exclusions/[EXCLUSION_ID]" Example: "projects/my- - * project-id/exclusions/my-exclusion-id". - * @param array $optParams Optional parameters. - * @return Google_Service_Logging_LogExclusion - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Logging_LogExclusion"); - } - /** - * Lists all the exclusions in a parent resource. - * (exclusions.listBillingAccountsExclusions) - * - * @param string $parent Required. The parent resource whose exclusions are to - * be listed. "projects/[PROJECT_ID]" "organizations/[ORGANIZATION_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]" "folders/[FOLDER_ID]" - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Optional. If present, then retrieve the next - * batch of results from the preceding call to this method. pageToken must be - * the value of nextPageToken from the previous response. The values of other - * method parameters should be identical to those in the previous call. - * @opt_param int pageSize Optional. The maximum number of results to return - * from this request. Non-positive values are ignored. The presence of - * nextPageToken in the response indicates that more results might be available. - * @return Google_Service_Logging_ListExclusionsResponse - */ - public function listBillingAccountsExclusions($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Logging_ListExclusionsResponse"); - } - /** - * Changes one or more properties of an existing exclusion. (exclusions.patch) - * - * @param string $name Required. The resource name of the exclusion to update: - * "projects/[PROJECT_ID]/exclusions/[EXCLUSION_ID]" - * "organizations/[ORGANIZATION_ID]/exclusions/[EXCLUSION_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]/exclusions/[EXCLUSION_ID]" - * "folders/[FOLDER_ID]/exclusions/[EXCLUSION_ID]" Example: "projects/my- - * project-id/exclusions/my-exclusion-id". - * @param Google_Service_Logging_LogExclusion $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Required. A non-empty list of fields to change - * in the existing exclusion. New values for the fields are taken from the - * corresponding fields in the LogExclusion included in this request. Fields not - * mentioned in update_mask are not changed and are ignored in the request.For - * example, to change the filter and description of an exclusion, specify an - * update_mask of "filter,description". - * @return Google_Service_Logging_LogExclusion - */ - public function patch($name, Google_Service_Logging_LogExclusion $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Logging_LogExclusion"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/BillingAccountsLogs.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/BillingAccountsLogs.php deleted file mode 100644 index 9110a460..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/BillingAccountsLogs.php +++ /dev/null @@ -1,75 +0,0 @@ - - * $loggingService = new Google_Service_Logging(...); - * $logs = $loggingService->logs; - * - */ -class Google_Service_Logging_Resource_BillingAccountsLogs extends Google_Service_Resource -{ - /** - * Deletes all the log entries in a log. The log reappears if it receives new - * entries. Log entries written shortly before the delete operation might not be - * deleted. Entries received after the delete operation with a timestamp before - * the operation will be deleted. (logs.delete) - * - * @param string $logName Required. The resource name of the log to delete: - * "projects/[PROJECT_ID]/logs/[LOG_ID]" - * "organizations/[ORGANIZATION_ID]/logs/[LOG_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]/logs/[LOG_ID]" - * "folders/[FOLDER_ID]/logs/[LOG_ID]" [LOG_ID] must be URL-encoded. For - * example, "projects/my-project-id/logs/syslog", "organizations/1234567890/logs - * /cloudresourcemanager.googleapis.com%2Factivity". For more information about - * log names, see LogEntry. - * @param array $optParams Optional parameters. - * @return Google_Service_Logging_LoggingEmpty - */ - public function delete($logName, $optParams = array()) - { - $params = array('logName' => $logName); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Logging_LoggingEmpty"); - } - /** - * Lists the logs in projects, organizations, folders, or billing accounts. Only - * logs that have entries are listed. (logs.listBillingAccountsLogs) - * - * @param string $parent Required. The resource name that owns the logs: - * "projects/[PROJECT_ID]" "organizations/[ORGANIZATION_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]" "folders/[FOLDER_ID]" - * @param array $optParams Optional parameters. - * - * @opt_param int pageSize Optional. The maximum number of results to return - * from this request. Non-positive values are ignored. The presence of - * nextPageToken in the response indicates that more results might be available. - * @opt_param string pageToken Optional. If present, then retrieve the next - * batch of results from the preceding call to this method. pageToken must be - * the value of nextPageToken from the previous response. The values of other - * method parameters should be identical to those in the previous call. - * @return Google_Service_Logging_ListLogsResponse - */ - public function listBillingAccountsLogs($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Logging_ListLogsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/BillingAccountsSinks.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/BillingAccountsSinks.php deleted file mode 100644 index 78c22714..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/BillingAccountsSinks.php +++ /dev/null @@ -1,204 +0,0 @@ - - * $loggingService = new Google_Service_Logging(...); - * $sinks = $loggingService->sinks; - * - */ -class Google_Service_Logging_Resource_BillingAccountsSinks extends Google_Service_Resource -{ - /** - * Creates a sink that exports specified log entries to a destination. The - * export of newly-ingested log entries begins immediately, unless the sink's - * writer_identity is not permitted to write to the destination. A sink can - * export log entries only from the resource owning the sink. (sinks.create) - * - * @param string $parent Required. The resource in which to create the sink: - * "projects/[PROJECT_ID]" "organizations/[ORGANIZATION_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]" "folders/[FOLDER_ID]" Examples: - * "projects/my-logging-project", "organizations/123456789". - * @param Google_Service_Logging_LogSink $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool uniqueWriterIdentity Optional. Determines the kind of IAM - * identity returned as writer_identity in the new sink. If this value is - * omitted or set to false, and if the sink's parent is a project, then the - * value returned as writer_identity is the same group or service account used - * by Logging before the addition of writer identities to this API. The sink's - * destination must be in the same project as the sink itself.If this field is - * set to true, or if the sink is owned by a non-project resource such as an - * organization, then the value of writer_identity will be a unique service - * account used only for exports from the new sink. For more information, see - * writer_identity in LogSink. - * @return Google_Service_Logging_LogSink - */ - public function create($parent, Google_Service_Logging_LogSink $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Logging_LogSink"); - } - /** - * Deletes a sink. If the sink has a unique writer_identity, then that service - * account is also deleted. (sinks.delete) - * - * @param string $sinkName Required. The full resource name of the sink to - * delete, including the parent resource and the sink identifier: - * "projects/[PROJECT_ID]/sinks/[SINK_ID]" - * "organizations/[ORGANIZATION_ID]/sinks/[SINK_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]/sinks/[SINK_ID]" - * "folders/[FOLDER_ID]/sinks/[SINK_ID]" Example: "projects/my-project-id/sinks - * /my-sink-id". - * @param array $optParams Optional parameters. - * @return Google_Service_Logging_LoggingEmpty - */ - public function delete($sinkName, $optParams = array()) - { - $params = array('sinkName' => $sinkName); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Logging_LoggingEmpty"); - } - /** - * Gets a sink. (sinks.get) - * - * @param string $sinkName Required. The resource name of the sink: - * "projects/[PROJECT_ID]/sinks/[SINK_ID]" - * "organizations/[ORGANIZATION_ID]/sinks/[SINK_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]/sinks/[SINK_ID]" - * "folders/[FOLDER_ID]/sinks/[SINK_ID]" Example: "projects/my-project-id/sinks - * /my-sink-id". - * @param array $optParams Optional parameters. - * @return Google_Service_Logging_LogSink - */ - public function get($sinkName, $optParams = array()) - { - $params = array('sinkName' => $sinkName); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Logging_LogSink"); - } - /** - * Lists sinks. (sinks.listBillingAccountsSinks) - * - * @param string $parent Required. The parent resource whose sinks are to be - * listed: "projects/[PROJECT_ID]" "organizations/[ORGANIZATION_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]" "folders/[FOLDER_ID]" - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Optional. If present, then retrieve the next - * batch of results from the preceding call to this method. pageToken must be - * the value of nextPageToken from the previous response. The values of other - * method parameters should be identical to those in the previous call. - * @opt_param int pageSize Optional. The maximum number of results to return - * from this request. Non-positive values are ignored. The presence of - * nextPageToken in the response indicates that more results might be available. - * @return Google_Service_Logging_ListSinksResponse - */ - public function listBillingAccountsSinks($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Logging_ListSinksResponse"); - } - /** - * Updates a sink. This method replaces the following fields in the existing - * sink with values from the new sink: destination, and filter.The updated sink - * might also have a new writer_identity; see the unique_writer_identity field. - * (sinks.patch) - * - * @param string $sinkName Required. The full resource name of the sink to - * update, including the parent resource and the sink identifier: - * "projects/[PROJECT_ID]/sinks/[SINK_ID]" - * "organizations/[ORGANIZATION_ID]/sinks/[SINK_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]/sinks/[SINK_ID]" - * "folders/[FOLDER_ID]/sinks/[SINK_ID]" Example: "projects/my-project-id/sinks - * /my-sink-id". - * @param Google_Service_Logging_LogSink $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool uniqueWriterIdentity Optional. See sinks.create for a - * description of this field. When updating a sink, the effect of this field on - * the value of writer_identity in the updated sink depends on both the old and - * new values of this field: If the old and new values of this field are both - * false or both true, then there is no change to the sink's writer_identity. If - * the old value is false and the new value is true, then writer_identity is - * changed to a unique service account. It is an error if the old value is true - * and the new value is set to false or defaulted to false. - * @opt_param string updateMask Optional. Field mask that specifies the fields - * in sink that need an update. A sink field will be overwritten if, and only - * if, it is in the update mask. name and output only fields cannot be - * updated.An empty updateMask is temporarily treated as using the following - * mask for backwards compatibility purposes: - * destination,filter,includeChildren At some point in the future, behavior will - * be removed and specifying an empty updateMask will be an error.For a detailed - * FieldMask definition, see https://developers.google.com/protocol- - * buffers/docs/reference/google.protobuf#google.protobuf.FieldMaskExample: - * updateMask=filter. - * @return Google_Service_Logging_LogSink - */ - public function patch($sinkName, Google_Service_Logging_LogSink $postBody, $optParams = array()) - { - $params = array('sinkName' => $sinkName, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Logging_LogSink"); - } - /** - * Updates a sink. This method replaces the following fields in the existing - * sink with values from the new sink: destination, and filter.The updated sink - * might also have a new writer_identity; see the unique_writer_identity field. - * (sinks.update) - * - * @param string $sinkName Required. The full resource name of the sink to - * update, including the parent resource and the sink identifier: - * "projects/[PROJECT_ID]/sinks/[SINK_ID]" - * "organizations/[ORGANIZATION_ID]/sinks/[SINK_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]/sinks/[SINK_ID]" - * "folders/[FOLDER_ID]/sinks/[SINK_ID]" Example: "projects/my-project-id/sinks - * /my-sink-id". - * @param Google_Service_Logging_LogSink $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool uniqueWriterIdentity Optional. See sinks.create for a - * description of this field. When updating a sink, the effect of this field on - * the value of writer_identity in the updated sink depends on both the old and - * new values of this field: If the old and new values of this field are both - * false or both true, then there is no change to the sink's writer_identity. If - * the old value is false and the new value is true, then writer_identity is - * changed to a unique service account. It is an error if the old value is true - * and the new value is set to false or defaulted to false. - * @opt_param string updateMask Optional. Field mask that specifies the fields - * in sink that need an update. A sink field will be overwritten if, and only - * if, it is in the update mask. name and output only fields cannot be - * updated.An empty updateMask is temporarily treated as using the following - * mask for backwards compatibility purposes: - * destination,filter,includeChildren At some point in the future, behavior will - * be removed and specifying an empty updateMask will be an error.For a detailed - * FieldMask definition, see https://developers.google.com/protocol- - * buffers/docs/reference/google.protobuf#google.protobuf.FieldMaskExample: - * updateMask=filter. - * @return Google_Service_Logging_LogSink - */ - public function update($sinkName, Google_Service_Logging_LogSink $postBody, $optParams = array()) - { - $params = array('sinkName' => $sinkName, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Logging_LogSink"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/Entries.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/Entries.php deleted file mode 100644 index c9a8209b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/Entries.php +++ /dev/null @@ -1,61 +0,0 @@ - - * $loggingService = new Google_Service_Logging(...); - * $entries = $loggingService->entries; - * - */ -class Google_Service_Logging_Resource_Entries extends Google_Service_Resource -{ - /** - * Lists log entries. Use this method to retrieve log entries that originated - * from a project/folder/organization/billing account. For ways to export log - * entries, see Exporting Logs. (entries.listEntries) - * - * @param Google_Service_Logging_ListLogEntriesRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Logging_ListLogEntriesResponse - */ - public function listEntries(Google_Service_Logging_ListLogEntriesRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Logging_ListLogEntriesResponse"); - } - /** - * Writes log entries to Logging. This API method is the only way to send log - * entries to Logging. This method is used, directly or indirectly, by the - * Logging agent (fluentd) and all logging libraries configured to use Logging. - * A single request may contain log entries for a maximum of 1000 different - * resources (projects, organizations, billing accounts or folders) - * (entries.write) - * - * @param Google_Service_Logging_WriteLogEntriesRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Logging_WriteLogEntriesResponse - */ - public function write(Google_Service_Logging_WriteLogEntriesRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('write', array($params), "Google_Service_Logging_WriteLogEntriesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/Exclusions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/Exclusions.php deleted file mode 100644 index ee572738..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/Exclusions.php +++ /dev/null @@ -1,132 +0,0 @@ - - * $loggingService = new Google_Service_Logging(...); - * $exclusions = $loggingService->exclusions; - * - */ -class Google_Service_Logging_Resource_Exclusions extends Google_Service_Resource -{ - /** - * Creates a new exclusion in a specified parent resource. Only log entries - * belonging to that resource can be excluded. You can have up to 10 exclusions - * in a resource. (exclusions.create) - * - * @param string $parent Required. The parent resource in which to create the - * exclusion: "projects/[PROJECT_ID]" "organizations/[ORGANIZATION_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]" "folders/[FOLDER_ID]" Examples: - * "projects/my-logging-project", "organizations/123456789". - * @param Google_Service_Logging_LogExclusion $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Logging_LogExclusion - */ - public function create($parent, Google_Service_Logging_LogExclusion $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Logging_LogExclusion"); - } - /** - * Deletes an exclusion. (exclusions.delete) - * - * @param string $name Required. The resource name of an existing exclusion to - * delete: "projects/[PROJECT_ID]/exclusions/[EXCLUSION_ID]" - * "organizations/[ORGANIZATION_ID]/exclusions/[EXCLUSION_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]/exclusions/[EXCLUSION_ID]" - * "folders/[FOLDER_ID]/exclusions/[EXCLUSION_ID]" Example: "projects/my- - * project-id/exclusions/my-exclusion-id". - * @param array $optParams Optional parameters. - * @return Google_Service_Logging_LoggingEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Logging_LoggingEmpty"); - } - /** - * Gets the description of an exclusion. (exclusions.get) - * - * @param string $name Required. The resource name of an existing exclusion: - * "projects/[PROJECT_ID]/exclusions/[EXCLUSION_ID]" - * "organizations/[ORGANIZATION_ID]/exclusions/[EXCLUSION_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]/exclusions/[EXCLUSION_ID]" - * "folders/[FOLDER_ID]/exclusions/[EXCLUSION_ID]" Example: "projects/my- - * project-id/exclusions/my-exclusion-id". - * @param array $optParams Optional parameters. - * @return Google_Service_Logging_LogExclusion - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Logging_LogExclusion"); - } - /** - * Lists all the exclusions in a parent resource. (exclusions.listExclusions) - * - * @param string $parent Required. The parent resource whose exclusions are to - * be listed. "projects/[PROJECT_ID]" "organizations/[ORGANIZATION_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]" "folders/[FOLDER_ID]" - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Optional. If present, then retrieve the next - * batch of results from the preceding call to this method. pageToken must be - * the value of nextPageToken from the previous response. The values of other - * method parameters should be identical to those in the previous call. - * @opt_param int pageSize Optional. The maximum number of results to return - * from this request. Non-positive values are ignored. The presence of - * nextPageToken in the response indicates that more results might be available. - * @return Google_Service_Logging_ListExclusionsResponse - */ - public function listExclusions($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Logging_ListExclusionsResponse"); - } - /** - * Changes one or more properties of an existing exclusion. (exclusions.patch) - * - * @param string $name Required. The resource name of the exclusion to update: - * "projects/[PROJECT_ID]/exclusions/[EXCLUSION_ID]" - * "organizations/[ORGANIZATION_ID]/exclusions/[EXCLUSION_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]/exclusions/[EXCLUSION_ID]" - * "folders/[FOLDER_ID]/exclusions/[EXCLUSION_ID]" Example: "projects/my- - * project-id/exclusions/my-exclusion-id". - * @param Google_Service_Logging_LogExclusion $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Required. A non-empty list of fields to change - * in the existing exclusion. New values for the fields are taken from the - * corresponding fields in the LogExclusion included in this request. Fields not - * mentioned in update_mask are not changed and are ignored in the request.For - * example, to change the filter and description of an exclusion, specify an - * update_mask of "filter,description". - * @return Google_Service_Logging_LogExclusion - */ - public function patch($name, Google_Service_Logging_LogExclusion $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Logging_LogExclusion"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/Folders.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/Folders.php deleted file mode 100644 index c7f63c69..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/Folders.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $loggingService = new Google_Service_Logging(...); - * $folders = $loggingService->folders; - * - */ -class Google_Service_Logging_Resource_Folders extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/FoldersExclusions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/FoldersExclusions.php deleted file mode 100644 index 98d38db5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/FoldersExclusions.php +++ /dev/null @@ -1,133 +0,0 @@ - - * $loggingService = new Google_Service_Logging(...); - * $exclusions = $loggingService->exclusions; - * - */ -class Google_Service_Logging_Resource_FoldersExclusions extends Google_Service_Resource -{ - /** - * Creates a new exclusion in a specified parent resource. Only log entries - * belonging to that resource can be excluded. You can have up to 10 exclusions - * in a resource. (exclusions.create) - * - * @param string $parent Required. The parent resource in which to create the - * exclusion: "projects/[PROJECT_ID]" "organizations/[ORGANIZATION_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]" "folders/[FOLDER_ID]" Examples: - * "projects/my-logging-project", "organizations/123456789". - * @param Google_Service_Logging_LogExclusion $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Logging_LogExclusion - */ - public function create($parent, Google_Service_Logging_LogExclusion $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Logging_LogExclusion"); - } - /** - * Deletes an exclusion. (exclusions.delete) - * - * @param string $name Required. The resource name of an existing exclusion to - * delete: "projects/[PROJECT_ID]/exclusions/[EXCLUSION_ID]" - * "organizations/[ORGANIZATION_ID]/exclusions/[EXCLUSION_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]/exclusions/[EXCLUSION_ID]" - * "folders/[FOLDER_ID]/exclusions/[EXCLUSION_ID]" Example: "projects/my- - * project-id/exclusions/my-exclusion-id". - * @param array $optParams Optional parameters. - * @return Google_Service_Logging_LoggingEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Logging_LoggingEmpty"); - } - /** - * Gets the description of an exclusion. (exclusions.get) - * - * @param string $name Required. The resource name of an existing exclusion: - * "projects/[PROJECT_ID]/exclusions/[EXCLUSION_ID]" - * "organizations/[ORGANIZATION_ID]/exclusions/[EXCLUSION_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]/exclusions/[EXCLUSION_ID]" - * "folders/[FOLDER_ID]/exclusions/[EXCLUSION_ID]" Example: "projects/my- - * project-id/exclusions/my-exclusion-id". - * @param array $optParams Optional parameters. - * @return Google_Service_Logging_LogExclusion - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Logging_LogExclusion"); - } - /** - * Lists all the exclusions in a parent resource. - * (exclusions.listFoldersExclusions) - * - * @param string $parent Required. The parent resource whose exclusions are to - * be listed. "projects/[PROJECT_ID]" "organizations/[ORGANIZATION_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]" "folders/[FOLDER_ID]" - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Optional. If present, then retrieve the next - * batch of results from the preceding call to this method. pageToken must be - * the value of nextPageToken from the previous response. The values of other - * method parameters should be identical to those in the previous call. - * @opt_param int pageSize Optional. The maximum number of results to return - * from this request. Non-positive values are ignored. The presence of - * nextPageToken in the response indicates that more results might be available. - * @return Google_Service_Logging_ListExclusionsResponse - */ - public function listFoldersExclusions($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Logging_ListExclusionsResponse"); - } - /** - * Changes one or more properties of an existing exclusion. (exclusions.patch) - * - * @param string $name Required. The resource name of the exclusion to update: - * "projects/[PROJECT_ID]/exclusions/[EXCLUSION_ID]" - * "organizations/[ORGANIZATION_ID]/exclusions/[EXCLUSION_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]/exclusions/[EXCLUSION_ID]" - * "folders/[FOLDER_ID]/exclusions/[EXCLUSION_ID]" Example: "projects/my- - * project-id/exclusions/my-exclusion-id". - * @param Google_Service_Logging_LogExclusion $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Required. A non-empty list of fields to change - * in the existing exclusion. New values for the fields are taken from the - * corresponding fields in the LogExclusion included in this request. Fields not - * mentioned in update_mask are not changed and are ignored in the request.For - * example, to change the filter and description of an exclusion, specify an - * update_mask of "filter,description". - * @return Google_Service_Logging_LogExclusion - */ - public function patch($name, Google_Service_Logging_LogExclusion $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Logging_LogExclusion"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/FoldersLogs.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/FoldersLogs.php deleted file mode 100644 index 17ed3279..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/FoldersLogs.php +++ /dev/null @@ -1,75 +0,0 @@ - - * $loggingService = new Google_Service_Logging(...); - * $logs = $loggingService->logs; - * - */ -class Google_Service_Logging_Resource_FoldersLogs extends Google_Service_Resource -{ - /** - * Deletes all the log entries in a log. The log reappears if it receives new - * entries. Log entries written shortly before the delete operation might not be - * deleted. Entries received after the delete operation with a timestamp before - * the operation will be deleted. (logs.delete) - * - * @param string $logName Required. The resource name of the log to delete: - * "projects/[PROJECT_ID]/logs/[LOG_ID]" - * "organizations/[ORGANIZATION_ID]/logs/[LOG_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]/logs/[LOG_ID]" - * "folders/[FOLDER_ID]/logs/[LOG_ID]" [LOG_ID] must be URL-encoded. For - * example, "projects/my-project-id/logs/syslog", "organizations/1234567890/logs - * /cloudresourcemanager.googleapis.com%2Factivity". For more information about - * log names, see LogEntry. - * @param array $optParams Optional parameters. - * @return Google_Service_Logging_LoggingEmpty - */ - public function delete($logName, $optParams = array()) - { - $params = array('logName' => $logName); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Logging_LoggingEmpty"); - } - /** - * Lists the logs in projects, organizations, folders, or billing accounts. Only - * logs that have entries are listed. (logs.listFoldersLogs) - * - * @param string $parent Required. The resource name that owns the logs: - * "projects/[PROJECT_ID]" "organizations/[ORGANIZATION_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]" "folders/[FOLDER_ID]" - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Optional. If present, then retrieve the next - * batch of results from the preceding call to this method. pageToken must be - * the value of nextPageToken from the previous response. The values of other - * method parameters should be identical to those in the previous call. - * @opt_param int pageSize Optional. The maximum number of results to return - * from this request. Non-positive values are ignored. The presence of - * nextPageToken in the response indicates that more results might be available. - * @return Google_Service_Logging_ListLogsResponse - */ - public function listFoldersLogs($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Logging_ListLogsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/FoldersSinks.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/FoldersSinks.php deleted file mode 100644 index 29c6f610..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/FoldersSinks.php +++ /dev/null @@ -1,204 +0,0 @@ - - * $loggingService = new Google_Service_Logging(...); - * $sinks = $loggingService->sinks; - * - */ -class Google_Service_Logging_Resource_FoldersSinks extends Google_Service_Resource -{ - /** - * Creates a sink that exports specified log entries to a destination. The - * export of newly-ingested log entries begins immediately, unless the sink's - * writer_identity is not permitted to write to the destination. A sink can - * export log entries only from the resource owning the sink. (sinks.create) - * - * @param string $parent Required. The resource in which to create the sink: - * "projects/[PROJECT_ID]" "organizations/[ORGANIZATION_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]" "folders/[FOLDER_ID]" Examples: - * "projects/my-logging-project", "organizations/123456789". - * @param Google_Service_Logging_LogSink $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool uniqueWriterIdentity Optional. Determines the kind of IAM - * identity returned as writer_identity in the new sink. If this value is - * omitted or set to false, and if the sink's parent is a project, then the - * value returned as writer_identity is the same group or service account used - * by Logging before the addition of writer identities to this API. The sink's - * destination must be in the same project as the sink itself.If this field is - * set to true, or if the sink is owned by a non-project resource such as an - * organization, then the value of writer_identity will be a unique service - * account used only for exports from the new sink. For more information, see - * writer_identity in LogSink. - * @return Google_Service_Logging_LogSink - */ - public function create($parent, Google_Service_Logging_LogSink $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Logging_LogSink"); - } - /** - * Deletes a sink. If the sink has a unique writer_identity, then that service - * account is also deleted. (sinks.delete) - * - * @param string $sinkName Required. The full resource name of the sink to - * delete, including the parent resource and the sink identifier: - * "projects/[PROJECT_ID]/sinks/[SINK_ID]" - * "organizations/[ORGANIZATION_ID]/sinks/[SINK_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]/sinks/[SINK_ID]" - * "folders/[FOLDER_ID]/sinks/[SINK_ID]" Example: "projects/my-project-id/sinks - * /my-sink-id". - * @param array $optParams Optional parameters. - * @return Google_Service_Logging_LoggingEmpty - */ - public function delete($sinkName, $optParams = array()) - { - $params = array('sinkName' => $sinkName); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Logging_LoggingEmpty"); - } - /** - * Gets a sink. (sinks.get) - * - * @param string $sinkName Required. The resource name of the sink: - * "projects/[PROJECT_ID]/sinks/[SINK_ID]" - * "organizations/[ORGANIZATION_ID]/sinks/[SINK_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]/sinks/[SINK_ID]" - * "folders/[FOLDER_ID]/sinks/[SINK_ID]" Example: "projects/my-project-id/sinks - * /my-sink-id". - * @param array $optParams Optional parameters. - * @return Google_Service_Logging_LogSink - */ - public function get($sinkName, $optParams = array()) - { - $params = array('sinkName' => $sinkName); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Logging_LogSink"); - } - /** - * Lists sinks. (sinks.listFoldersSinks) - * - * @param string $parent Required. The parent resource whose sinks are to be - * listed: "projects/[PROJECT_ID]" "organizations/[ORGANIZATION_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]" "folders/[FOLDER_ID]" - * @param array $optParams Optional parameters. - * - * @opt_param int pageSize Optional. The maximum number of results to return - * from this request. Non-positive values are ignored. The presence of - * nextPageToken in the response indicates that more results might be available. - * @opt_param string pageToken Optional. If present, then retrieve the next - * batch of results from the preceding call to this method. pageToken must be - * the value of nextPageToken from the previous response. The values of other - * method parameters should be identical to those in the previous call. - * @return Google_Service_Logging_ListSinksResponse - */ - public function listFoldersSinks($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Logging_ListSinksResponse"); - } - /** - * Updates a sink. This method replaces the following fields in the existing - * sink with values from the new sink: destination, and filter.The updated sink - * might also have a new writer_identity; see the unique_writer_identity field. - * (sinks.patch) - * - * @param string $sinkName Required. The full resource name of the sink to - * update, including the parent resource and the sink identifier: - * "projects/[PROJECT_ID]/sinks/[SINK_ID]" - * "organizations/[ORGANIZATION_ID]/sinks/[SINK_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]/sinks/[SINK_ID]" - * "folders/[FOLDER_ID]/sinks/[SINK_ID]" Example: "projects/my-project-id/sinks - * /my-sink-id". - * @param Google_Service_Logging_LogSink $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool uniqueWriterIdentity Optional. See sinks.create for a - * description of this field. When updating a sink, the effect of this field on - * the value of writer_identity in the updated sink depends on both the old and - * new values of this field: If the old and new values of this field are both - * false or both true, then there is no change to the sink's writer_identity. If - * the old value is false and the new value is true, then writer_identity is - * changed to a unique service account. It is an error if the old value is true - * and the new value is set to false or defaulted to false. - * @opt_param string updateMask Optional. Field mask that specifies the fields - * in sink that need an update. A sink field will be overwritten if, and only - * if, it is in the update mask. name and output only fields cannot be - * updated.An empty updateMask is temporarily treated as using the following - * mask for backwards compatibility purposes: - * destination,filter,includeChildren At some point in the future, behavior will - * be removed and specifying an empty updateMask will be an error.For a detailed - * FieldMask definition, see https://developers.google.com/protocol- - * buffers/docs/reference/google.protobuf#google.protobuf.FieldMaskExample: - * updateMask=filter. - * @return Google_Service_Logging_LogSink - */ - public function patch($sinkName, Google_Service_Logging_LogSink $postBody, $optParams = array()) - { - $params = array('sinkName' => $sinkName, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Logging_LogSink"); - } - /** - * Updates a sink. This method replaces the following fields in the existing - * sink with values from the new sink: destination, and filter.The updated sink - * might also have a new writer_identity; see the unique_writer_identity field. - * (sinks.update) - * - * @param string $sinkName Required. The full resource name of the sink to - * update, including the parent resource and the sink identifier: - * "projects/[PROJECT_ID]/sinks/[SINK_ID]" - * "organizations/[ORGANIZATION_ID]/sinks/[SINK_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]/sinks/[SINK_ID]" - * "folders/[FOLDER_ID]/sinks/[SINK_ID]" Example: "projects/my-project-id/sinks - * /my-sink-id". - * @param Google_Service_Logging_LogSink $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool uniqueWriterIdentity Optional. See sinks.create for a - * description of this field. When updating a sink, the effect of this field on - * the value of writer_identity in the updated sink depends on both the old and - * new values of this field: If the old and new values of this field are both - * false or both true, then there is no change to the sink's writer_identity. If - * the old value is false and the new value is true, then writer_identity is - * changed to a unique service account. It is an error if the old value is true - * and the new value is set to false or defaulted to false. - * @opt_param string updateMask Optional. Field mask that specifies the fields - * in sink that need an update. A sink field will be overwritten if, and only - * if, it is in the update mask. name and output only fields cannot be - * updated.An empty updateMask is temporarily treated as using the following - * mask for backwards compatibility purposes: - * destination,filter,includeChildren At some point in the future, behavior will - * be removed and specifying an empty updateMask will be an error.For a detailed - * FieldMask definition, see https://developers.google.com/protocol- - * buffers/docs/reference/google.protobuf#google.protobuf.FieldMaskExample: - * updateMask=filter. - * @return Google_Service_Logging_LogSink - */ - public function update($sinkName, Google_Service_Logging_LogSink $postBody, $optParams = array()) - { - $params = array('sinkName' => $sinkName, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Logging_LogSink"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/Logs.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/Logs.php deleted file mode 100644 index 78859827..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/Logs.php +++ /dev/null @@ -1,75 +0,0 @@ - - * $loggingService = new Google_Service_Logging(...); - * $logs = $loggingService->logs; - * - */ -class Google_Service_Logging_Resource_Logs extends Google_Service_Resource -{ - /** - * Deletes all the log entries in a log. The log reappears if it receives new - * entries. Log entries written shortly before the delete operation might not be - * deleted. Entries received after the delete operation with a timestamp before - * the operation will be deleted. (logs.delete) - * - * @param string $logName Required. The resource name of the log to delete: - * "projects/[PROJECT_ID]/logs/[LOG_ID]" - * "organizations/[ORGANIZATION_ID]/logs/[LOG_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]/logs/[LOG_ID]" - * "folders/[FOLDER_ID]/logs/[LOG_ID]" [LOG_ID] must be URL-encoded. For - * example, "projects/my-project-id/logs/syslog", "organizations/1234567890/logs - * /cloudresourcemanager.googleapis.com%2Factivity". For more information about - * log names, see LogEntry. - * @param array $optParams Optional parameters. - * @return Google_Service_Logging_LoggingEmpty - */ - public function delete($logName, $optParams = array()) - { - $params = array('logName' => $logName); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Logging_LoggingEmpty"); - } - /** - * Lists the logs in projects, organizations, folders, or billing accounts. Only - * logs that have entries are listed. (logs.listLogs) - * - * @param string $parent Required. The resource name that owns the logs: - * "projects/[PROJECT_ID]" "organizations/[ORGANIZATION_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]" "folders/[FOLDER_ID]" - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Optional. If present, then retrieve the next - * batch of results from the preceding call to this method. pageToken must be - * the value of nextPageToken from the previous response. The values of other - * method parameters should be identical to those in the previous call. - * @opt_param int pageSize Optional. The maximum number of results to return - * from this request. Non-positive values are ignored. The presence of - * nextPageToken in the response indicates that more results might be available. - * @return Google_Service_Logging_ListLogsResponse - */ - public function listLogs($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Logging_ListLogsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/MonitoredResourceDescriptors.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/MonitoredResourceDescriptors.php deleted file mode 100644 index e29c2e6b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/MonitoredResourceDescriptors.php +++ /dev/null @@ -1,49 +0,0 @@ - - * $loggingService = new Google_Service_Logging(...); - * $monitoredResourceDescriptors = $loggingService->monitoredResourceDescriptors; - * - */ -class Google_Service_Logging_Resource_MonitoredResourceDescriptors extends Google_Service_Resource -{ - /** - * Lists the descriptors for monitored resource types used by Logging. - * (monitoredResourceDescriptors.listMonitoredResourceDescriptors) - * - * @param array $optParams Optional parameters. - * - * @opt_param int pageSize Optional. The maximum number of results to return - * from this request. Non-positive values are ignored. The presence of - * nextPageToken in the response indicates that more results might be available. - * @opt_param string pageToken Optional. If present, then retrieve the next - * batch of results from the preceding call to this method. pageToken must be - * the value of nextPageToken from the previous response. The values of other - * method parameters should be identical to those in the previous call. - * @return Google_Service_Logging_ListMonitoredResourceDescriptorsResponse - */ - public function listMonitoredResourceDescriptors($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Logging_ListMonitoredResourceDescriptorsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/Organizations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/Organizations.php deleted file mode 100644 index c6da94b8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/Organizations.php +++ /dev/null @@ -1,85 +0,0 @@ - - * $loggingService = new Google_Service_Logging(...); - * $organizations = $loggingService->organizations; - * - */ -class Google_Service_Logging_Resource_Organizations extends Google_Service_Resource -{ - /** - * Gets the Logs Router CMEK settings for the given resource.Note: CMEK for the - * Logs Router can currently only be configured for GCP organizations. Once - * configured, it applies to all projects and folders in the GCP - * organization.See Enabling CMEK for Logs Router for more information. - * (organizations.getCmekSettings) - * - * @param string $name Required. The resource for which to retrieve CMEK - * settings. "projects/[PROJECT_ID]/cmekSettings" - * "organizations/[ORGANIZATION_ID]/cmekSettings" - * "billingAccounts/[BILLING_ACCOUNT_ID]/cmekSettings" - * "folders/[FOLDER_ID]/cmekSettings" Example: - * "organizations/12345/cmekSettings".Note: CMEK for the Logs Router can - * currently only be configured for GCP organizations. Once configured, it - * applies to all projects and folders in the GCP organization. - * @param array $optParams Optional parameters. - * @return Google_Service_Logging_CmekSettings - */ - public function getCmekSettings($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('getCmekSettings', array($params), "Google_Service_Logging_CmekSettings"); - } - /** - * Updates the Logs Router CMEK settings for the given resource.Note: CMEK for - * the Logs Router can currently only be configured for GCP organizations. Once - * configured, it applies to all projects and folders in the GCP - * organization.UpdateCmekSettings will fail if 1) kms_key_name is invalid, or - * 2) the associated service account does not have the required - * roles/cloudkms.cryptoKeyEncrypterDecrypter role assigned for the key, or 3) - * access to the key is disabled.See Enabling CMEK for Logs Router for more - * information. (organizations.updateCmekSettings) - * - * @param string $name Required. The resource name for the CMEK settings to - * update. "projects/[PROJECT_ID]/cmekSettings" - * "organizations/[ORGANIZATION_ID]/cmekSettings" - * "billingAccounts/[BILLING_ACCOUNT_ID]/cmekSettings" - * "folders/[FOLDER_ID]/cmekSettings" Example: - * "organizations/12345/cmekSettings".Note: CMEK for the Logs Router can - * currently only be configured for GCP organizations. Once configured, it - * applies to all projects and folders in the GCP organization. - * @param Google_Service_Logging_CmekSettings $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Optional. Field mask identifying which fields - * from cmek_settings should be updated. A field will be overwritten if and only - * if it is in the update mask. Output only fields cannot be updated.See - * FieldMask for more information.Example: "updateMask=kmsKeyName" - * @return Google_Service_Logging_CmekSettings - */ - public function updateCmekSettings($name, Google_Service_Logging_CmekSettings $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updateCmekSettings', array($params), "Google_Service_Logging_CmekSettings"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/OrganizationsExclusions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/OrganizationsExclusions.php deleted file mode 100644 index acbaba9f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/OrganizationsExclusions.php +++ /dev/null @@ -1,133 +0,0 @@ - - * $loggingService = new Google_Service_Logging(...); - * $exclusions = $loggingService->exclusions; - * - */ -class Google_Service_Logging_Resource_OrganizationsExclusions extends Google_Service_Resource -{ - /** - * Creates a new exclusion in a specified parent resource. Only log entries - * belonging to that resource can be excluded. You can have up to 10 exclusions - * in a resource. (exclusions.create) - * - * @param string $parent Required. The parent resource in which to create the - * exclusion: "projects/[PROJECT_ID]" "organizations/[ORGANIZATION_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]" "folders/[FOLDER_ID]" Examples: - * "projects/my-logging-project", "organizations/123456789". - * @param Google_Service_Logging_LogExclusion $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Logging_LogExclusion - */ - public function create($parent, Google_Service_Logging_LogExclusion $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Logging_LogExclusion"); - } - /** - * Deletes an exclusion. (exclusions.delete) - * - * @param string $name Required. The resource name of an existing exclusion to - * delete: "projects/[PROJECT_ID]/exclusions/[EXCLUSION_ID]" - * "organizations/[ORGANIZATION_ID]/exclusions/[EXCLUSION_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]/exclusions/[EXCLUSION_ID]" - * "folders/[FOLDER_ID]/exclusions/[EXCLUSION_ID]" Example: "projects/my- - * project-id/exclusions/my-exclusion-id". - * @param array $optParams Optional parameters. - * @return Google_Service_Logging_LoggingEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Logging_LoggingEmpty"); - } - /** - * Gets the description of an exclusion. (exclusions.get) - * - * @param string $name Required. The resource name of an existing exclusion: - * "projects/[PROJECT_ID]/exclusions/[EXCLUSION_ID]" - * "organizations/[ORGANIZATION_ID]/exclusions/[EXCLUSION_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]/exclusions/[EXCLUSION_ID]" - * "folders/[FOLDER_ID]/exclusions/[EXCLUSION_ID]" Example: "projects/my- - * project-id/exclusions/my-exclusion-id". - * @param array $optParams Optional parameters. - * @return Google_Service_Logging_LogExclusion - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Logging_LogExclusion"); - } - /** - * Lists all the exclusions in a parent resource. - * (exclusions.listOrganizationsExclusions) - * - * @param string $parent Required. The parent resource whose exclusions are to - * be listed. "projects/[PROJECT_ID]" "organizations/[ORGANIZATION_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]" "folders/[FOLDER_ID]" - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Optional. If present, then retrieve the next - * batch of results from the preceding call to this method. pageToken must be - * the value of nextPageToken from the previous response. The values of other - * method parameters should be identical to those in the previous call. - * @opt_param int pageSize Optional. The maximum number of results to return - * from this request. Non-positive values are ignored. The presence of - * nextPageToken in the response indicates that more results might be available. - * @return Google_Service_Logging_ListExclusionsResponse - */ - public function listOrganizationsExclusions($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Logging_ListExclusionsResponse"); - } - /** - * Changes one or more properties of an existing exclusion. (exclusions.patch) - * - * @param string $name Required. The resource name of the exclusion to update: - * "projects/[PROJECT_ID]/exclusions/[EXCLUSION_ID]" - * "organizations/[ORGANIZATION_ID]/exclusions/[EXCLUSION_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]/exclusions/[EXCLUSION_ID]" - * "folders/[FOLDER_ID]/exclusions/[EXCLUSION_ID]" Example: "projects/my- - * project-id/exclusions/my-exclusion-id". - * @param Google_Service_Logging_LogExclusion $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Required. A non-empty list of fields to change - * in the existing exclusion. New values for the fields are taken from the - * corresponding fields in the LogExclusion included in this request. Fields not - * mentioned in update_mask are not changed and are ignored in the request.For - * example, to change the filter and description of an exclusion, specify an - * update_mask of "filter,description". - * @return Google_Service_Logging_LogExclusion - */ - public function patch($name, Google_Service_Logging_LogExclusion $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Logging_LogExclusion"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/OrganizationsLogs.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/OrganizationsLogs.php deleted file mode 100644 index 2d3e75aa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/OrganizationsLogs.php +++ /dev/null @@ -1,75 +0,0 @@ - - * $loggingService = new Google_Service_Logging(...); - * $logs = $loggingService->logs; - * - */ -class Google_Service_Logging_Resource_OrganizationsLogs extends Google_Service_Resource -{ - /** - * Deletes all the log entries in a log. The log reappears if it receives new - * entries. Log entries written shortly before the delete operation might not be - * deleted. Entries received after the delete operation with a timestamp before - * the operation will be deleted. (logs.delete) - * - * @param string $logName Required. The resource name of the log to delete: - * "projects/[PROJECT_ID]/logs/[LOG_ID]" - * "organizations/[ORGANIZATION_ID]/logs/[LOG_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]/logs/[LOG_ID]" - * "folders/[FOLDER_ID]/logs/[LOG_ID]" [LOG_ID] must be URL-encoded. For - * example, "projects/my-project-id/logs/syslog", "organizations/1234567890/logs - * /cloudresourcemanager.googleapis.com%2Factivity". For more information about - * log names, see LogEntry. - * @param array $optParams Optional parameters. - * @return Google_Service_Logging_LoggingEmpty - */ - public function delete($logName, $optParams = array()) - { - $params = array('logName' => $logName); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Logging_LoggingEmpty"); - } - /** - * Lists the logs in projects, organizations, folders, or billing accounts. Only - * logs that have entries are listed. (logs.listOrganizationsLogs) - * - * @param string $parent Required. The resource name that owns the logs: - * "projects/[PROJECT_ID]" "organizations/[ORGANIZATION_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]" "folders/[FOLDER_ID]" - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Optional. If present, then retrieve the next - * batch of results from the preceding call to this method. pageToken must be - * the value of nextPageToken from the previous response. The values of other - * method parameters should be identical to those in the previous call. - * @opt_param int pageSize Optional. The maximum number of results to return - * from this request. Non-positive values are ignored. The presence of - * nextPageToken in the response indicates that more results might be available. - * @return Google_Service_Logging_ListLogsResponse - */ - public function listOrganizationsLogs($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Logging_ListLogsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/OrganizationsSinks.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/OrganizationsSinks.php deleted file mode 100644 index 66d70c17..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/OrganizationsSinks.php +++ /dev/null @@ -1,204 +0,0 @@ - - * $loggingService = new Google_Service_Logging(...); - * $sinks = $loggingService->sinks; - * - */ -class Google_Service_Logging_Resource_OrganizationsSinks extends Google_Service_Resource -{ - /** - * Creates a sink that exports specified log entries to a destination. The - * export of newly-ingested log entries begins immediately, unless the sink's - * writer_identity is not permitted to write to the destination. A sink can - * export log entries only from the resource owning the sink. (sinks.create) - * - * @param string $parent Required. The resource in which to create the sink: - * "projects/[PROJECT_ID]" "organizations/[ORGANIZATION_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]" "folders/[FOLDER_ID]" Examples: - * "projects/my-logging-project", "organizations/123456789". - * @param Google_Service_Logging_LogSink $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool uniqueWriterIdentity Optional. Determines the kind of IAM - * identity returned as writer_identity in the new sink. If this value is - * omitted or set to false, and if the sink's parent is a project, then the - * value returned as writer_identity is the same group or service account used - * by Logging before the addition of writer identities to this API. The sink's - * destination must be in the same project as the sink itself.If this field is - * set to true, or if the sink is owned by a non-project resource such as an - * organization, then the value of writer_identity will be a unique service - * account used only for exports from the new sink. For more information, see - * writer_identity in LogSink. - * @return Google_Service_Logging_LogSink - */ - public function create($parent, Google_Service_Logging_LogSink $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Logging_LogSink"); - } - /** - * Deletes a sink. If the sink has a unique writer_identity, then that service - * account is also deleted. (sinks.delete) - * - * @param string $sinkName Required. The full resource name of the sink to - * delete, including the parent resource and the sink identifier: - * "projects/[PROJECT_ID]/sinks/[SINK_ID]" - * "organizations/[ORGANIZATION_ID]/sinks/[SINK_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]/sinks/[SINK_ID]" - * "folders/[FOLDER_ID]/sinks/[SINK_ID]" Example: "projects/my-project-id/sinks - * /my-sink-id". - * @param array $optParams Optional parameters. - * @return Google_Service_Logging_LoggingEmpty - */ - public function delete($sinkName, $optParams = array()) - { - $params = array('sinkName' => $sinkName); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Logging_LoggingEmpty"); - } - /** - * Gets a sink. (sinks.get) - * - * @param string $sinkName Required. The resource name of the sink: - * "projects/[PROJECT_ID]/sinks/[SINK_ID]" - * "organizations/[ORGANIZATION_ID]/sinks/[SINK_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]/sinks/[SINK_ID]" - * "folders/[FOLDER_ID]/sinks/[SINK_ID]" Example: "projects/my-project-id/sinks - * /my-sink-id". - * @param array $optParams Optional parameters. - * @return Google_Service_Logging_LogSink - */ - public function get($sinkName, $optParams = array()) - { - $params = array('sinkName' => $sinkName); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Logging_LogSink"); - } - /** - * Lists sinks. (sinks.listOrganizationsSinks) - * - * @param string $parent Required. The parent resource whose sinks are to be - * listed: "projects/[PROJECT_ID]" "organizations/[ORGANIZATION_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]" "folders/[FOLDER_ID]" - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Optional. If present, then retrieve the next - * batch of results from the preceding call to this method. pageToken must be - * the value of nextPageToken from the previous response. The values of other - * method parameters should be identical to those in the previous call. - * @opt_param int pageSize Optional. The maximum number of results to return - * from this request. Non-positive values are ignored. The presence of - * nextPageToken in the response indicates that more results might be available. - * @return Google_Service_Logging_ListSinksResponse - */ - public function listOrganizationsSinks($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Logging_ListSinksResponse"); - } - /** - * Updates a sink. This method replaces the following fields in the existing - * sink with values from the new sink: destination, and filter.The updated sink - * might also have a new writer_identity; see the unique_writer_identity field. - * (sinks.patch) - * - * @param string $sinkName Required. The full resource name of the sink to - * update, including the parent resource and the sink identifier: - * "projects/[PROJECT_ID]/sinks/[SINK_ID]" - * "organizations/[ORGANIZATION_ID]/sinks/[SINK_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]/sinks/[SINK_ID]" - * "folders/[FOLDER_ID]/sinks/[SINK_ID]" Example: "projects/my-project-id/sinks - * /my-sink-id". - * @param Google_Service_Logging_LogSink $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool uniqueWriterIdentity Optional. See sinks.create for a - * description of this field. When updating a sink, the effect of this field on - * the value of writer_identity in the updated sink depends on both the old and - * new values of this field: If the old and new values of this field are both - * false or both true, then there is no change to the sink's writer_identity. If - * the old value is false and the new value is true, then writer_identity is - * changed to a unique service account. It is an error if the old value is true - * and the new value is set to false or defaulted to false. - * @opt_param string updateMask Optional. Field mask that specifies the fields - * in sink that need an update. A sink field will be overwritten if, and only - * if, it is in the update mask. name and output only fields cannot be - * updated.An empty updateMask is temporarily treated as using the following - * mask for backwards compatibility purposes: - * destination,filter,includeChildren At some point in the future, behavior will - * be removed and specifying an empty updateMask will be an error.For a detailed - * FieldMask definition, see https://developers.google.com/protocol- - * buffers/docs/reference/google.protobuf#google.protobuf.FieldMaskExample: - * updateMask=filter. - * @return Google_Service_Logging_LogSink - */ - public function patch($sinkName, Google_Service_Logging_LogSink $postBody, $optParams = array()) - { - $params = array('sinkName' => $sinkName, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Logging_LogSink"); - } - /** - * Updates a sink. This method replaces the following fields in the existing - * sink with values from the new sink: destination, and filter.The updated sink - * might also have a new writer_identity; see the unique_writer_identity field. - * (sinks.update) - * - * @param string $sinkName Required. The full resource name of the sink to - * update, including the parent resource and the sink identifier: - * "projects/[PROJECT_ID]/sinks/[SINK_ID]" - * "organizations/[ORGANIZATION_ID]/sinks/[SINK_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]/sinks/[SINK_ID]" - * "folders/[FOLDER_ID]/sinks/[SINK_ID]" Example: "projects/my-project-id/sinks - * /my-sink-id". - * @param Google_Service_Logging_LogSink $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool uniqueWriterIdentity Optional. See sinks.create for a - * description of this field. When updating a sink, the effect of this field on - * the value of writer_identity in the updated sink depends on both the old and - * new values of this field: If the old and new values of this field are both - * false or both true, then there is no change to the sink's writer_identity. If - * the old value is false and the new value is true, then writer_identity is - * changed to a unique service account. It is an error if the old value is true - * and the new value is set to false or defaulted to false. - * @opt_param string updateMask Optional. Field mask that specifies the fields - * in sink that need an update. A sink field will be overwritten if, and only - * if, it is in the update mask. name and output only fields cannot be - * updated.An empty updateMask is temporarily treated as using the following - * mask for backwards compatibility purposes: - * destination,filter,includeChildren At some point in the future, behavior will - * be removed and specifying an empty updateMask will be an error.For a detailed - * FieldMask definition, see https://developers.google.com/protocol- - * buffers/docs/reference/google.protobuf#google.protobuf.FieldMaskExample: - * updateMask=filter. - * @return Google_Service_Logging_LogSink - */ - public function update($sinkName, Google_Service_Logging_LogSink $postBody, $optParams = array()) - { - $params = array('sinkName' => $sinkName, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Logging_LogSink"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/Projects.php deleted file mode 100644 index e2cffcbd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/Projects.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $loggingService = new Google_Service_Logging(...); - * $projects = $loggingService->projects; - * - */ -class Google_Service_Logging_Resource_Projects extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/ProjectsExclusions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/ProjectsExclusions.php deleted file mode 100644 index a3e4e4eb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/ProjectsExclusions.php +++ /dev/null @@ -1,133 +0,0 @@ - - * $loggingService = new Google_Service_Logging(...); - * $exclusions = $loggingService->exclusions; - * - */ -class Google_Service_Logging_Resource_ProjectsExclusions extends Google_Service_Resource -{ - /** - * Creates a new exclusion in a specified parent resource. Only log entries - * belonging to that resource can be excluded. You can have up to 10 exclusions - * in a resource. (exclusions.create) - * - * @param string $parent Required. The parent resource in which to create the - * exclusion: "projects/[PROJECT_ID]" "organizations/[ORGANIZATION_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]" "folders/[FOLDER_ID]" Examples: - * "projects/my-logging-project", "organizations/123456789". - * @param Google_Service_Logging_LogExclusion $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Logging_LogExclusion - */ - public function create($parent, Google_Service_Logging_LogExclusion $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Logging_LogExclusion"); - } - /** - * Deletes an exclusion. (exclusions.delete) - * - * @param string $name Required. The resource name of an existing exclusion to - * delete: "projects/[PROJECT_ID]/exclusions/[EXCLUSION_ID]" - * "organizations/[ORGANIZATION_ID]/exclusions/[EXCLUSION_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]/exclusions/[EXCLUSION_ID]" - * "folders/[FOLDER_ID]/exclusions/[EXCLUSION_ID]" Example: "projects/my- - * project-id/exclusions/my-exclusion-id". - * @param array $optParams Optional parameters. - * @return Google_Service_Logging_LoggingEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Logging_LoggingEmpty"); - } - /** - * Gets the description of an exclusion. (exclusions.get) - * - * @param string $name Required. The resource name of an existing exclusion: - * "projects/[PROJECT_ID]/exclusions/[EXCLUSION_ID]" - * "organizations/[ORGANIZATION_ID]/exclusions/[EXCLUSION_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]/exclusions/[EXCLUSION_ID]" - * "folders/[FOLDER_ID]/exclusions/[EXCLUSION_ID]" Example: "projects/my- - * project-id/exclusions/my-exclusion-id". - * @param array $optParams Optional parameters. - * @return Google_Service_Logging_LogExclusion - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Logging_LogExclusion"); - } - /** - * Lists all the exclusions in a parent resource. - * (exclusions.listProjectsExclusions) - * - * @param string $parent Required. The parent resource whose exclusions are to - * be listed. "projects/[PROJECT_ID]" "organizations/[ORGANIZATION_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]" "folders/[FOLDER_ID]" - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Optional. If present, then retrieve the next - * batch of results from the preceding call to this method. pageToken must be - * the value of nextPageToken from the previous response. The values of other - * method parameters should be identical to those in the previous call. - * @opt_param int pageSize Optional. The maximum number of results to return - * from this request. Non-positive values are ignored. The presence of - * nextPageToken in the response indicates that more results might be available. - * @return Google_Service_Logging_ListExclusionsResponse - */ - public function listProjectsExclusions($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Logging_ListExclusionsResponse"); - } - /** - * Changes one or more properties of an existing exclusion. (exclusions.patch) - * - * @param string $name Required. The resource name of the exclusion to update: - * "projects/[PROJECT_ID]/exclusions/[EXCLUSION_ID]" - * "organizations/[ORGANIZATION_ID]/exclusions/[EXCLUSION_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]/exclusions/[EXCLUSION_ID]" - * "folders/[FOLDER_ID]/exclusions/[EXCLUSION_ID]" Example: "projects/my- - * project-id/exclusions/my-exclusion-id". - * @param Google_Service_Logging_LogExclusion $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Required. A non-empty list of fields to change - * in the existing exclusion. New values for the fields are taken from the - * corresponding fields in the LogExclusion included in this request. Fields not - * mentioned in update_mask are not changed and are ignored in the request.For - * example, to change the filter and description of an exclusion, specify an - * update_mask of "filter,description". - * @return Google_Service_Logging_LogExclusion - */ - public function patch($name, Google_Service_Logging_LogExclusion $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Logging_LogExclusion"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/ProjectsLogs.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/ProjectsLogs.php deleted file mode 100644 index baf52dd7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/ProjectsLogs.php +++ /dev/null @@ -1,75 +0,0 @@ - - * $loggingService = new Google_Service_Logging(...); - * $logs = $loggingService->logs; - * - */ -class Google_Service_Logging_Resource_ProjectsLogs extends Google_Service_Resource -{ - /** - * Deletes all the log entries in a log. The log reappears if it receives new - * entries. Log entries written shortly before the delete operation might not be - * deleted. Entries received after the delete operation with a timestamp before - * the operation will be deleted. (logs.delete) - * - * @param string $logName Required. The resource name of the log to delete: - * "projects/[PROJECT_ID]/logs/[LOG_ID]" - * "organizations/[ORGANIZATION_ID]/logs/[LOG_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]/logs/[LOG_ID]" - * "folders/[FOLDER_ID]/logs/[LOG_ID]" [LOG_ID] must be URL-encoded. For - * example, "projects/my-project-id/logs/syslog", "organizations/1234567890/logs - * /cloudresourcemanager.googleapis.com%2Factivity". For more information about - * log names, see LogEntry. - * @param array $optParams Optional parameters. - * @return Google_Service_Logging_LoggingEmpty - */ - public function delete($logName, $optParams = array()) - { - $params = array('logName' => $logName); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Logging_LoggingEmpty"); - } - /** - * Lists the logs in projects, organizations, folders, or billing accounts. Only - * logs that have entries are listed. (logs.listProjectsLogs) - * - * @param string $parent Required. The resource name that owns the logs: - * "projects/[PROJECT_ID]" "organizations/[ORGANIZATION_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]" "folders/[FOLDER_ID]" - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Optional. If present, then retrieve the next - * batch of results from the preceding call to this method. pageToken must be - * the value of nextPageToken from the previous response. The values of other - * method parameters should be identical to those in the previous call. - * @opt_param int pageSize Optional. The maximum number of results to return - * from this request. Non-positive values are ignored. The presence of - * nextPageToken in the response indicates that more results might be available. - * @return Google_Service_Logging_ListLogsResponse - */ - public function listProjectsLogs($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Logging_ListLogsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/ProjectsMetrics.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/ProjectsMetrics.php deleted file mode 100644 index 792da603..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/ProjectsMetrics.php +++ /dev/null @@ -1,111 +0,0 @@ - - * $loggingService = new Google_Service_Logging(...); - * $metrics = $loggingService->metrics; - * - */ -class Google_Service_Logging_Resource_ProjectsMetrics extends Google_Service_Resource -{ - /** - * Creates a logs-based metric. (metrics.create) - * - * @param string $parent The resource name of the project in which to create the - * metric: "projects/[PROJECT_ID]" The new metric must be provided in the - * request. - * @param Google_Service_Logging_LogMetric $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Logging_LogMetric - */ - public function create($parent, Google_Service_Logging_LogMetric $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Logging_LogMetric"); - } - /** - * Deletes a logs-based metric. (metrics.delete) - * - * @param string $metricName The resource name of the metric to delete: - * "projects/[PROJECT_ID]/metrics/[METRIC_ID]" - * @param array $optParams Optional parameters. - * @return Google_Service_Logging_LoggingEmpty - */ - public function delete($metricName, $optParams = array()) - { - $params = array('metricName' => $metricName); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Logging_LoggingEmpty"); - } - /** - * Gets a logs-based metric. (metrics.get) - * - * @param string $metricName The resource name of the desired metric: - * "projects/[PROJECT_ID]/metrics/[METRIC_ID]" - * @param array $optParams Optional parameters. - * @return Google_Service_Logging_LogMetric - */ - public function get($metricName, $optParams = array()) - { - $params = array('metricName' => $metricName); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Logging_LogMetric"); - } - /** - * Lists logs-based metrics. (metrics.listProjectsMetrics) - * - * @param string $parent Required. The name of the project containing the - * metrics: "projects/[PROJECT_ID]" - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Optional. If present, then retrieve the next - * batch of results from the preceding call to this method. pageToken must be - * the value of nextPageToken from the previous response. The values of other - * method parameters should be identical to those in the previous call. - * @opt_param int pageSize Optional. The maximum number of results to return - * from this request. Non-positive values are ignored. The presence of - * nextPageToken in the response indicates that more results might be available. - * @return Google_Service_Logging_ListLogMetricsResponse - */ - public function listProjectsMetrics($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Logging_ListLogMetricsResponse"); - } - /** - * Creates or updates a logs-based metric. (metrics.update) - * - * @param string $metricName The resource name of the metric to update: - * "projects/[PROJECT_ID]/metrics/[METRIC_ID]" The updated metric must be - * provided in the request and it's name field must be the same as [METRIC_ID] - * If the metric does not exist in [PROJECT_ID], then a new metric is created. - * @param Google_Service_Logging_LogMetric $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Logging_LogMetric - */ - public function update($metricName, Google_Service_Logging_LogMetric $postBody, $optParams = array()) - { - $params = array('metricName' => $metricName, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Logging_LogMetric"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/ProjectsSinks.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/ProjectsSinks.php deleted file mode 100644 index 566d5821..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/ProjectsSinks.php +++ /dev/null @@ -1,204 +0,0 @@ - - * $loggingService = new Google_Service_Logging(...); - * $sinks = $loggingService->sinks; - * - */ -class Google_Service_Logging_Resource_ProjectsSinks extends Google_Service_Resource -{ - /** - * Creates a sink that exports specified log entries to a destination. The - * export of newly-ingested log entries begins immediately, unless the sink's - * writer_identity is not permitted to write to the destination. A sink can - * export log entries only from the resource owning the sink. (sinks.create) - * - * @param string $parent Required. The resource in which to create the sink: - * "projects/[PROJECT_ID]" "organizations/[ORGANIZATION_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]" "folders/[FOLDER_ID]" Examples: - * "projects/my-logging-project", "organizations/123456789". - * @param Google_Service_Logging_LogSink $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool uniqueWriterIdentity Optional. Determines the kind of IAM - * identity returned as writer_identity in the new sink. If this value is - * omitted or set to false, and if the sink's parent is a project, then the - * value returned as writer_identity is the same group or service account used - * by Logging before the addition of writer identities to this API. The sink's - * destination must be in the same project as the sink itself.If this field is - * set to true, or if the sink is owned by a non-project resource such as an - * organization, then the value of writer_identity will be a unique service - * account used only for exports from the new sink. For more information, see - * writer_identity in LogSink. - * @return Google_Service_Logging_LogSink - */ - public function create($parent, Google_Service_Logging_LogSink $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Logging_LogSink"); - } - /** - * Deletes a sink. If the sink has a unique writer_identity, then that service - * account is also deleted. (sinks.delete) - * - * @param string $sinkName Required. The full resource name of the sink to - * delete, including the parent resource and the sink identifier: - * "projects/[PROJECT_ID]/sinks/[SINK_ID]" - * "organizations/[ORGANIZATION_ID]/sinks/[SINK_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]/sinks/[SINK_ID]" - * "folders/[FOLDER_ID]/sinks/[SINK_ID]" Example: "projects/my-project-id/sinks - * /my-sink-id". - * @param array $optParams Optional parameters. - * @return Google_Service_Logging_LoggingEmpty - */ - public function delete($sinkName, $optParams = array()) - { - $params = array('sinkName' => $sinkName); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Logging_LoggingEmpty"); - } - /** - * Gets a sink. (sinks.get) - * - * @param string $sinkName Required. The resource name of the sink: - * "projects/[PROJECT_ID]/sinks/[SINK_ID]" - * "organizations/[ORGANIZATION_ID]/sinks/[SINK_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]/sinks/[SINK_ID]" - * "folders/[FOLDER_ID]/sinks/[SINK_ID]" Example: "projects/my-project-id/sinks - * /my-sink-id". - * @param array $optParams Optional parameters. - * @return Google_Service_Logging_LogSink - */ - public function get($sinkName, $optParams = array()) - { - $params = array('sinkName' => $sinkName); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Logging_LogSink"); - } - /** - * Lists sinks. (sinks.listProjectsSinks) - * - * @param string $parent Required. The parent resource whose sinks are to be - * listed: "projects/[PROJECT_ID]" "organizations/[ORGANIZATION_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]" "folders/[FOLDER_ID]" - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Optional. If present, then retrieve the next - * batch of results from the preceding call to this method. pageToken must be - * the value of nextPageToken from the previous response. The values of other - * method parameters should be identical to those in the previous call. - * @opt_param int pageSize Optional. The maximum number of results to return - * from this request. Non-positive values are ignored. The presence of - * nextPageToken in the response indicates that more results might be available. - * @return Google_Service_Logging_ListSinksResponse - */ - public function listProjectsSinks($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Logging_ListSinksResponse"); - } - /** - * Updates a sink. This method replaces the following fields in the existing - * sink with values from the new sink: destination, and filter.The updated sink - * might also have a new writer_identity; see the unique_writer_identity field. - * (sinks.patch) - * - * @param string $sinkName Required. The full resource name of the sink to - * update, including the parent resource and the sink identifier: - * "projects/[PROJECT_ID]/sinks/[SINK_ID]" - * "organizations/[ORGANIZATION_ID]/sinks/[SINK_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]/sinks/[SINK_ID]" - * "folders/[FOLDER_ID]/sinks/[SINK_ID]" Example: "projects/my-project-id/sinks - * /my-sink-id". - * @param Google_Service_Logging_LogSink $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool uniqueWriterIdentity Optional. See sinks.create for a - * description of this field. When updating a sink, the effect of this field on - * the value of writer_identity in the updated sink depends on both the old and - * new values of this field: If the old and new values of this field are both - * false or both true, then there is no change to the sink's writer_identity. If - * the old value is false and the new value is true, then writer_identity is - * changed to a unique service account. It is an error if the old value is true - * and the new value is set to false or defaulted to false. - * @opt_param string updateMask Optional. Field mask that specifies the fields - * in sink that need an update. A sink field will be overwritten if, and only - * if, it is in the update mask. name and output only fields cannot be - * updated.An empty updateMask is temporarily treated as using the following - * mask for backwards compatibility purposes: - * destination,filter,includeChildren At some point in the future, behavior will - * be removed and specifying an empty updateMask will be an error.For a detailed - * FieldMask definition, see https://developers.google.com/protocol- - * buffers/docs/reference/google.protobuf#google.protobuf.FieldMaskExample: - * updateMask=filter. - * @return Google_Service_Logging_LogSink - */ - public function patch($sinkName, Google_Service_Logging_LogSink $postBody, $optParams = array()) - { - $params = array('sinkName' => $sinkName, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Logging_LogSink"); - } - /** - * Updates a sink. This method replaces the following fields in the existing - * sink with values from the new sink: destination, and filter.The updated sink - * might also have a new writer_identity; see the unique_writer_identity field. - * (sinks.update) - * - * @param string $sinkName Required. The full resource name of the sink to - * update, including the parent resource and the sink identifier: - * "projects/[PROJECT_ID]/sinks/[SINK_ID]" - * "organizations/[ORGANIZATION_ID]/sinks/[SINK_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]/sinks/[SINK_ID]" - * "folders/[FOLDER_ID]/sinks/[SINK_ID]" Example: "projects/my-project-id/sinks - * /my-sink-id". - * @param Google_Service_Logging_LogSink $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool uniqueWriterIdentity Optional. See sinks.create for a - * description of this field. When updating a sink, the effect of this field on - * the value of writer_identity in the updated sink depends on both the old and - * new values of this field: If the old and new values of this field are both - * false or both true, then there is no change to the sink's writer_identity. If - * the old value is false and the new value is true, then writer_identity is - * changed to a unique service account. It is an error if the old value is true - * and the new value is set to false or defaulted to false. - * @opt_param string updateMask Optional. Field mask that specifies the fields - * in sink that need an update. A sink field will be overwritten if, and only - * if, it is in the update mask. name and output only fields cannot be - * updated.An empty updateMask is temporarily treated as using the following - * mask for backwards compatibility purposes: - * destination,filter,includeChildren At some point in the future, behavior will - * be removed and specifying an empty updateMask will be an error.For a detailed - * FieldMask definition, see https://developers.google.com/protocol- - * buffers/docs/reference/google.protobuf#google.protobuf.FieldMaskExample: - * updateMask=filter. - * @return Google_Service_Logging_LogSink - */ - public function update($sinkName, Google_Service_Logging_LogSink $postBody, $optParams = array()) - { - $params = array('sinkName' => $sinkName, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Logging_LogSink"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/Sinks.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/Sinks.php deleted file mode 100644 index e94f0062..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/Sinks.php +++ /dev/null @@ -1,162 +0,0 @@ - - * $loggingService = new Google_Service_Logging(...); - * $sinks = $loggingService->sinks; - * - */ -class Google_Service_Logging_Resource_Sinks extends Google_Service_Resource -{ - /** - * Creates a sink that exports specified log entries to a destination. The - * export of newly-ingested log entries begins immediately, unless the sink's - * writer_identity is not permitted to write to the destination. A sink can - * export log entries only from the resource owning the sink. (sinks.create) - * - * @param string $parent Required. The resource in which to create the sink: - * "projects/[PROJECT_ID]" "organizations/[ORGANIZATION_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]" "folders/[FOLDER_ID]" Examples: - * "projects/my-logging-project", "organizations/123456789". - * @param Google_Service_Logging_LogSink $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool uniqueWriterIdentity Optional. Determines the kind of IAM - * identity returned as writer_identity in the new sink. If this value is - * omitted or set to false, and if the sink's parent is a project, then the - * value returned as writer_identity is the same group or service account used - * by Logging before the addition of writer identities to this API. The sink's - * destination must be in the same project as the sink itself.If this field is - * set to true, or if the sink is owned by a non-project resource such as an - * organization, then the value of writer_identity will be a unique service - * account used only for exports from the new sink. For more information, see - * writer_identity in LogSink. - * @return Google_Service_Logging_LogSink - */ - public function create($parent, Google_Service_Logging_LogSink $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Logging_LogSink"); - } - /** - * Deletes a sink. If the sink has a unique writer_identity, then that service - * account is also deleted. (sinks.delete) - * - * @param string $sinkName Required. The full resource name of the sink to - * delete, including the parent resource and the sink identifier: - * "projects/[PROJECT_ID]/sinks/[SINK_ID]" - * "organizations/[ORGANIZATION_ID]/sinks/[SINK_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]/sinks/[SINK_ID]" - * "folders/[FOLDER_ID]/sinks/[SINK_ID]" Example: "projects/my-project-id/sinks - * /my-sink-id". - * @param array $optParams Optional parameters. - * @return Google_Service_Logging_LoggingEmpty - */ - public function delete($sinkName, $optParams = array()) - { - $params = array('sinkName' => $sinkName); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Logging_LoggingEmpty"); - } - /** - * Gets a sink. (sinks.get) - * - * @param string $sinkName Required. The resource name of the sink: - * "projects/[PROJECT_ID]/sinks/[SINK_ID]" - * "organizations/[ORGANIZATION_ID]/sinks/[SINK_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]/sinks/[SINK_ID]" - * "folders/[FOLDER_ID]/sinks/[SINK_ID]" Example: "projects/my-project-id/sinks - * /my-sink-id". - * @param array $optParams Optional parameters. - * @return Google_Service_Logging_LogSink - */ - public function get($sinkName, $optParams = array()) - { - $params = array('sinkName' => $sinkName); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Logging_LogSink"); - } - /** - * Lists sinks. (sinks.listSinks) - * - * @param string $parent Required. The parent resource whose sinks are to be - * listed: "projects/[PROJECT_ID]" "organizations/[ORGANIZATION_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]" "folders/[FOLDER_ID]" - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Optional. If present, then retrieve the next - * batch of results from the preceding call to this method. pageToken must be - * the value of nextPageToken from the previous response. The values of other - * method parameters should be identical to those in the previous call. - * @opt_param int pageSize Optional. The maximum number of results to return - * from this request. Non-positive values are ignored. The presence of - * nextPageToken in the response indicates that more results might be available. - * @return Google_Service_Logging_ListSinksResponse - */ - public function listSinks($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Logging_ListSinksResponse"); - } - /** - * Updates a sink. This method replaces the following fields in the existing - * sink with values from the new sink: destination, and filter.The updated sink - * might also have a new writer_identity; see the unique_writer_identity field. - * (sinks.update) - * - * @param string $sinkName Required. The full resource name of the sink to - * update, including the parent resource and the sink identifier: - * "projects/[PROJECT_ID]/sinks/[SINK_ID]" - * "organizations/[ORGANIZATION_ID]/sinks/[SINK_ID]" - * "billingAccounts/[BILLING_ACCOUNT_ID]/sinks/[SINK_ID]" - * "folders/[FOLDER_ID]/sinks/[SINK_ID]" Example: "projects/my-project-id/sinks - * /my-sink-id". - * @param Google_Service_Logging_LogSink $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool uniqueWriterIdentity Optional. See sinks.create for a - * description of this field. When updating a sink, the effect of this field on - * the value of writer_identity in the updated sink depends on both the old and - * new values of this field: If the old and new values of this field are both - * false or both true, then there is no change to the sink's writer_identity. If - * the old value is false and the new value is true, then writer_identity is - * changed to a unique service account. It is an error if the old value is true - * and the new value is set to false or defaulted to false. - * @opt_param string updateMask Optional. Field mask that specifies the fields - * in sink that need an update. A sink field will be overwritten if, and only - * if, it is in the update mask. name and output only fields cannot be - * updated.An empty updateMask is temporarily treated as using the following - * mask for backwards compatibility purposes: - * destination,filter,includeChildren At some point in the future, behavior will - * be removed and specifying an empty updateMask will be an error.For a detailed - * FieldMask definition, see https://developers.google.com/protocol- - * buffers/docs/reference/google.protobuf#google.protobuf.FieldMaskExample: - * updateMask=filter. - * @return Google_Service_Logging_LogSink - */ - public function update($sinkName, Google_Service_Logging_LogSink $postBody, $optParams = array()) - { - $params = array('sinkName' => $sinkName, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Logging_LogSink"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/V2.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/V2.php deleted file mode 100644 index 82743f54..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/Resource/V2.php +++ /dev/null @@ -1,85 +0,0 @@ - - * $loggingService = new Google_Service_Logging(...); - * $v2 = $loggingService->v2; - * - */ -class Google_Service_Logging_Resource_V2 extends Google_Service_Resource -{ - /** - * Gets the Logs Router CMEK settings for the given resource.Note: CMEK for the - * Logs Router can currently only be configured for GCP organizations. Once - * configured, it applies to all projects and folders in the GCP - * organization.See Enabling CMEK for Logs Router for more information. - * (v2.getCmekSettings) - * - * @param string $name Required. The resource for which to retrieve CMEK - * settings. "projects/[PROJECT_ID]/cmekSettings" - * "organizations/[ORGANIZATION_ID]/cmekSettings" - * "billingAccounts/[BILLING_ACCOUNT_ID]/cmekSettings" - * "folders/[FOLDER_ID]/cmekSettings" Example: - * "organizations/12345/cmekSettings".Note: CMEK for the Logs Router can - * currently only be configured for GCP organizations. Once configured, it - * applies to all projects and folders in the GCP organization. - * @param array $optParams Optional parameters. - * @return Google_Service_Logging_CmekSettings - */ - public function getCmekSettings($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('getCmekSettings', array($params), "Google_Service_Logging_CmekSettings"); - } - /** - * Updates the Logs Router CMEK settings for the given resource.Note: CMEK for - * the Logs Router can currently only be configured for GCP organizations. Once - * configured, it applies to all projects and folders in the GCP - * organization.UpdateCmekSettings will fail if 1) kms_key_name is invalid, or - * 2) the associated service account does not have the required - * roles/cloudkms.cryptoKeyEncrypterDecrypter role assigned for the key, or 3) - * access to the key is disabled.See Enabling CMEK for Logs Router for more - * information. (v2.updateCmekSettings) - * - * @param string $name Required. The resource name for the CMEK settings to - * update. "projects/[PROJECT_ID]/cmekSettings" - * "organizations/[ORGANIZATION_ID]/cmekSettings" - * "billingAccounts/[BILLING_ACCOUNT_ID]/cmekSettings" - * "folders/[FOLDER_ID]/cmekSettings" Example: - * "organizations/12345/cmekSettings".Note: CMEK for the Logs Router can - * currently only be configured for GCP organizations. Once configured, it - * applies to all projects and folders in the GCP organization. - * @param Google_Service_Logging_CmekSettings $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Optional. Field mask identifying which fields - * from cmek_settings should be updated. A field will be overwritten if and only - * if it is in the update mask. Output only fields cannot be updated.See - * FieldMask for more information.Example: "updateMask=kmsKeyName" - * @return Google_Service_Logging_CmekSettings - */ - public function updateCmekSettings($name, Google_Service_Logging_CmekSettings $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updateCmekSettings', array($params), "Google_Service_Logging_CmekSettings"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/SourceLocation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/SourceLocation.php deleted file mode 100644 index 212c4b23..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/SourceLocation.php +++ /dev/null @@ -1,48 +0,0 @@ -file = $file; - } - public function getFile() - { - return $this->file; - } - public function setFunctionName($functionName) - { - $this->functionName = $functionName; - } - public function getFunctionName() - { - return $this->functionName; - } - public function setLine($line) - { - $this->line = $line; - } - public function getLine() - { - return $this->line; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/SourceReference.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/SourceReference.php deleted file mode 100644 index 91c278cc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/SourceReference.php +++ /dev/null @@ -1,39 +0,0 @@ -repository = $repository; - } - public function getRepository() - { - return $this->repository; - } - public function setRevisionId($revisionId) - { - $this->revisionId = $revisionId; - } - public function getRevisionId() - { - return $this->revisionId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/WriteLogEntriesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/WriteLogEntriesRequest.php deleted file mode 100644 index 132aef7c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/WriteLogEntriesRequest.php +++ /dev/null @@ -1,90 +0,0 @@ -dryRun = $dryRun; - } - public function getDryRun() - { - return $this->dryRun; - } - /** - * @param Google_Service_Logging_LogEntry - */ - public function setEntries($entries) - { - $this->entries = $entries; - } - /** - * @return Google_Service_Logging_LogEntry - */ - public function getEntries() - { - return $this->entries; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setLogName($logName) - { - $this->logName = $logName; - } - public function getLogName() - { - return $this->logName; - } - public function setPartialSuccess($partialSuccess) - { - $this->partialSuccess = $partialSuccess; - } - public function getPartialSuccess() - { - return $this->partialSuccess; - } - /** - * @param Google_Service_Logging_MonitoredResource - */ - public function setResource(Google_Service_Logging_MonitoredResource $resource) - { - $this->resource = $resource; - } - /** - * @return Google_Service_Logging_MonitoredResource - */ - public function getResource() - { - return $this->resource; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/WriteLogEntriesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/WriteLogEntriesResponse.php deleted file mode 100644 index 3e1c34b6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Logging/WriteLogEntriesResponse.php +++ /dev/null @@ -1,20 +0,0 @@ - - * The Deployment Manager API allows users to declaratively configure, deploy - * and run complex solutions on the Google Cloud Platform.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Manager extends Google_Service -{ - /** View and manage your applications deployed on Google App Engine. */ - const APPENGINE_ADMIN = - "https://www.googleapis.com/auth/appengine.admin"; - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** View your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM_READ_ONLY = - "https://www.googleapis.com/auth/cloud-platform.read-only"; - /** View and manage your Google Compute Engine resources. */ - const COMPUTE = - "https://www.googleapis.com/auth/compute"; - /** Manage your data in Google Cloud Storage. */ - const DEVSTORAGE_READ_WRITE = - "https://www.googleapis.com/auth/devstorage.read_write"; - /** View and manage your Google Cloud Platform management resources and deployment status information. */ - const NDEV_CLOUDMAN = - "https://www.googleapis.com/auth/ndev.cloudman"; - /** View your Google Cloud Platform management resources and deployment status information. */ - const NDEV_CLOUDMAN_READONLY = - "https://www.googleapis.com/auth/ndev.cloudman.readonly"; - - public $deployments; - public $templates; - - /** - * Constructs the internal representation of the Manager service. - * - * @param Google_Client $client - */ - public function __construct(Google_Client $client) - { - parent::__construct($client); - $this->rootUrl = 'https://www.googleapis.com/'; - $this->servicePath = 'manager/v1beta2/projects/'; - $this->version = 'v1beta2'; - $this->serviceName = 'manager'; - - $this->deployments = new Google_Service_Manager_DeploymentsResource( - $this, - $this->serviceName, - 'deployments', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{projectId}/regions/{region}/deployments/{deploymentName}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'deploymentName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{projectId}/regions/{region}/deployments/{deploymentName}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'deploymentName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{projectId}/regions/{region}/deployments', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{projectId}/regions/{region}/deployments', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'region' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->templates = new Google_Service_Manager_TemplatesResource( - $this, - $this->serviceName, - 'templates', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{projectId}/templates/{templateName}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'templateName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{projectId}/templates/{templateName}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'templateName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{projectId}/templates', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{projectId}/templates', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/AccessConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/AccessConfig.php deleted file mode 100644 index 957a09e9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/AccessConfig.php +++ /dev/null @@ -1,48 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setNatIp($natIp) - { - $this->natIp = $natIp; - } - public function getNatIp() - { - return $this->natIp; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/Action.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/Action.php deleted file mode 100644 index 38693406..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/Action.php +++ /dev/null @@ -1,40 +0,0 @@ -commands = $commands; - } - public function getCommands() - { - return $this->commands; - } - public function setTimeoutMs($timeoutMs) - { - $this->timeoutMs = $timeoutMs; - } - public function getTimeoutMs() - { - return $this->timeoutMs; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/AllowedRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/AllowedRule.php deleted file mode 100644 index 929ea749..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/AllowedRule.php +++ /dev/null @@ -1,43 +0,0 @@ - "IPProtocol", - ); - public $iPProtocol; - public $ports; - - public function setIPProtocol($iPProtocol) - { - $this->iPProtocol = $iPProtocol; - } - public function getIPProtocol() - { - return $this->iPProtocol; - } - public function setPorts($ports) - { - $this->ports = $ports; - } - public function getPorts() - { - return $this->ports; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/AutoscalingModule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/AutoscalingModule.php deleted file mode 100644 index 51563478..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/AutoscalingModule.php +++ /dev/null @@ -1,84 +0,0 @@ -coolDownPeriodSec = $coolDownPeriodSec; - } - public function getCoolDownPeriodSec() - { - return $this->coolDownPeriodSec; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setMaxNumReplicas($maxNumReplicas) - { - $this->maxNumReplicas = $maxNumReplicas; - } - public function getMaxNumReplicas() - { - return $this->maxNumReplicas; - } - public function setMinNumReplicas($minNumReplicas) - { - $this->minNumReplicas = $minNumReplicas; - } - public function getMinNumReplicas() - { - return $this->minNumReplicas; - } - public function setSignalType($signalType) - { - $this->signalType = $signalType; - } - public function getSignalType() - { - return $this->signalType; - } - public function setTargetModule($targetModule) - { - $this->targetModule = $targetModule; - } - public function getTargetModule() - { - return $this->targetModule; - } - public function setTargetUtilization($targetUtilization) - { - $this->targetUtilization = $targetUtilization; - } - public function getTargetUtilization() - { - return $this->targetUtilization; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/AutoscalingModuleStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/AutoscalingModuleStatus.php deleted file mode 100644 index 7113e289..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/AutoscalingModuleStatus.php +++ /dev/null @@ -1,30 +0,0 @@ -autoscalingConfigUrl = $autoscalingConfigUrl; - } - public function getAutoscalingConfigUrl() - { - return $this->autoscalingConfigUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/DeployState.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/DeployState.php deleted file mode 100644 index f73d18e7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/DeployState.php +++ /dev/null @@ -1,39 +0,0 @@ -details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/Deployment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/Deployment.php deleted file mode 100644 index 32776f39..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/Deployment.php +++ /dev/null @@ -1,88 +0,0 @@ -creationDate = $creationDate; - } - public function getCreationDate() - { - return $this->creationDate; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setModules($modules) - { - $this->modules = $modules; - } - public function getModules() - { - return $this->modules; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOverrides($overrides) - { - $this->overrides = $overrides; - } - public function getOverrides() - { - return $this->overrides; - } - public function setState(Google_Service_Manager_DeployState $state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setTemplateName($templateName) - { - $this->templateName = $templateName; - } - public function getTemplateName() - { - return $this->templateName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/DeploymentsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/DeploymentsListResponse.php deleted file mode 100644 index 8cf2bdf7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/DeploymentsListResponse.php +++ /dev/null @@ -1,41 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setResources($resources) - { - $this->resources = $resources; - } - public function getResources() - { - return $this->resources; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/DeploymentsResource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/DeploymentsResource.php deleted file mode 100644 index 0a012f9c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/DeploymentsResource.php +++ /dev/null @@ -1,92 +0,0 @@ - - * $managerService = new Google_Service_Manager(...); - * $deployments = $managerService->deployments; - * - */ -class Google_Service_Manager_DeploymentsResource extends Google_Service_Resource -{ - /** - * (deployments.delete) - * - * @param string $projectId - * @param string $region - * @param string $deploymentName - * @param array $optParams Optional parameters. - */ - public function delete($projectId, $region, $deploymentName, $optParams = array()) - { - $params = array('projectId' => $projectId, 'region' => $region, 'deploymentName' => $deploymentName); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * (deployments.get) - * - * @param string $projectId - * @param string $region - * @param string $deploymentName - * @param array $optParams Optional parameters. - * @return Google_Service_Deployment - */ - public function get($projectId, $region, $deploymentName, $optParams = array()) - { - $params = array('projectId' => $projectId, 'region' => $region, 'deploymentName' => $deploymentName); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Manager_Deployment"); - } - /** - * (deployments.insert) - * - * @param string $projectId - * @param string $region - * @param Google_Deployment $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Deployment - */ - public function insert($projectId, $region, Google_Service_Manager_Deployment $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'region' => $region, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Manager_Deployment"); - } - /** - * (deployments.listDeployments) - * - * @param string $projectId - * @param string $region - * @param array $optParams Optional parameters. - * - * @opt_param int maxResults Maximum count of results to be returned. Acceptable - * values are 0 to 100, inclusive. (Default: 50) - * @opt_param string pageToken Specifies a nextPageToken returned by a previous - * list request. This token can be used to request the next page of results from - * a previous list request. - * @return Google_Service_DeploymentsListResponse - */ - public function listDeployments($projectId, $region, $optParams = array()) - { - $params = array('projectId' => $projectId, 'region' => $region); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Manager_DeploymentsListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/DiskAttachment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/DiskAttachment.php deleted file mode 100644 index 5ff4a0bd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/DiskAttachment.php +++ /dev/null @@ -1,39 +0,0 @@ -deviceName = $deviceName; - } - public function getDeviceName() - { - return $this->deviceName; - } - public function setIndex($index) - { - $this->index = $index; - } - public function getIndex() - { - return $this->index; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/EnvVariable.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/EnvVariable.php deleted file mode 100644 index c820747e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/EnvVariable.php +++ /dev/null @@ -1,39 +0,0 @@ -hidden = $hidden; - } - public function getHidden() - { - return $this->hidden; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/ExistingDisk.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/ExistingDisk.php deleted file mode 100644 index 34b84f1f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/ExistingDisk.php +++ /dev/null @@ -1,40 +0,0 @@ -attachment = $attachment; - } - public function getAttachment() - { - return $this->attachment; - } - public function setSource($source) - { - $this->source = $source; - } - public function getSource() - { - return $this->source; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/FirewallModule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/FirewallModule.php deleted file mode 100644 index 7e7ab114..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/FirewallModule.php +++ /dev/null @@ -1,77 +0,0 @@ -allowed = $allowed; - } - public function getAllowed() - { - return $this->allowed; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setNetwork($network) - { - $this->network = $network; - } - public function getNetwork() - { - return $this->network; - } - public function setSourceRanges($sourceRanges) - { - $this->sourceRanges = $sourceRanges; - } - public function getSourceRanges() - { - return $this->sourceRanges; - } - public function setSourceTags($sourceTags) - { - $this->sourceTags = $sourceTags; - } - public function getSourceTags() - { - return $this->sourceTags; - } - public function setTargetTags($targetTags) - { - $this->targetTags = $targetTags; - } - public function getTargetTags() - { - return $this->targetTags; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/FirewallModuleStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/FirewallModuleStatus.php deleted file mode 100644 index d6fb3f41..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/FirewallModuleStatus.php +++ /dev/null @@ -1,30 +0,0 @@ -firewallUrl = $firewallUrl; - } - public function getFirewallUrl() - { - return $this->firewallUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/HealthCheckModule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/HealthCheckModule.php deleted file mode 100644 index 64702097..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/HealthCheckModule.php +++ /dev/null @@ -1,93 +0,0 @@ -checkIntervalSec = $checkIntervalSec; - } - public function getCheckIntervalSec() - { - return $this->checkIntervalSec; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setHealthyThreshold($healthyThreshold) - { - $this->healthyThreshold = $healthyThreshold; - } - public function getHealthyThreshold() - { - return $this->healthyThreshold; - } - public function setHost($host) - { - $this->host = $host; - } - public function getHost() - { - return $this->host; - } - public function setPath($path) - { - $this->path = $path; - } - public function getPath() - { - return $this->path; - } - public function setPort($port) - { - $this->port = $port; - } - public function getPort() - { - return $this->port; - } - public function setTimeoutSec($timeoutSec) - { - $this->timeoutSec = $timeoutSec; - } - public function getTimeoutSec() - { - return $this->timeoutSec; - } - public function setUnhealthyThreshold($unhealthyThreshold) - { - $this->unhealthyThreshold = $unhealthyThreshold; - } - public function getUnhealthyThreshold() - { - return $this->unhealthyThreshold; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/HealthCheckModuleStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/HealthCheckModuleStatus.php deleted file mode 100644 index 0ac2065a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/HealthCheckModuleStatus.php +++ /dev/null @@ -1,30 +0,0 @@ -healthCheckUrl = $healthCheckUrl; - } - public function getHealthCheckUrl() - { - return $this->healthCheckUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/LbModule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/LbModule.php deleted file mode 100644 index 6346bc18..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/LbModule.php +++ /dev/null @@ -1,85 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setHealthChecks($healthChecks) - { - $this->healthChecks = $healthChecks; - } - public function getHealthChecks() - { - return $this->healthChecks; - } - public function setIpAddress($ipAddress) - { - $this->ipAddress = $ipAddress; - } - public function getIpAddress() - { - return $this->ipAddress; - } - public function setIpProtocol($ipProtocol) - { - $this->ipProtocol = $ipProtocol; - } - public function getIpProtocol() - { - return $this->ipProtocol; - } - public function setPortRange($portRange) - { - $this->portRange = $portRange; - } - public function getPortRange() - { - return $this->portRange; - } - public function setSessionAffinity($sessionAffinity) - { - $this->sessionAffinity = $sessionAffinity; - } - public function getSessionAffinity() - { - return $this->sessionAffinity; - } - public function setTargetModules($targetModules) - { - $this->targetModules = $targetModules; - } - public function getTargetModules() - { - return $this->targetModules; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/LbModuleStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/LbModuleStatus.php deleted file mode 100644 index 95a99e23..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/LbModuleStatus.php +++ /dev/null @@ -1,39 +0,0 @@ -forwardingRuleUrl = $forwardingRuleUrl; - } - public function getForwardingRuleUrl() - { - return $this->forwardingRuleUrl; - } - public function setTargetPoolUrl($targetPoolUrl) - { - $this->targetPoolUrl = $targetPoolUrl; - } - public function getTargetPoolUrl() - { - return $this->targetPoolUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/Metadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/Metadata.php deleted file mode 100644 index ba370a37..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/Metadata.php +++ /dev/null @@ -1,41 +0,0 @@ -fingerPrint = $fingerPrint; - } - public function getFingerPrint() - { - return $this->fingerPrint; - } - public function setItems($items) - { - $this->items = $items; - } - public function getItems() - { - return $this->items; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/MetadataItem.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/MetadataItem.php deleted file mode 100644 index c7d5ec89..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/MetadataItem.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/Module.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/Module.php deleted file mode 100644 index 5f49cc4d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/Module.php +++ /dev/null @@ -1,90 +0,0 @@ -autoscalingModule = $autoscalingModule; - } - public function getAutoscalingModule() - { - return $this->autoscalingModule; - } - public function setFirewallModule(Google_Service_Manager_FirewallModule $firewallModule) - { - $this->firewallModule = $firewallModule; - } - public function getFirewallModule() - { - return $this->firewallModule; - } - public function setHealthCheckModule(Google_Service_Manager_HealthCheckModule $healthCheckModule) - { - $this->healthCheckModule = $healthCheckModule; - } - public function getHealthCheckModule() - { - return $this->healthCheckModule; - } - public function setLbModule(Google_Service_Manager_LbModule $lbModule) - { - $this->lbModule = $lbModule; - } - public function getLbModule() - { - return $this->lbModule; - } - public function setNetworkModule(Google_Service_Manager_NetworkModule $networkModule) - { - $this->networkModule = $networkModule; - } - public function getNetworkModule() - { - return $this->networkModule; - } - public function setReplicaPoolModule(Google_Service_Manager_ReplicaPoolModule $replicaPoolModule) - { - $this->replicaPoolModule = $replicaPoolModule; - } - public function getReplicaPoolModule() - { - return $this->replicaPoolModule; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/ModuleStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/ModuleStatus.php deleted file mode 100644 index c4e66a0a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/ModuleStatus.php +++ /dev/null @@ -1,100 +0,0 @@ -autoscalingModuleStatus = $autoscalingModuleStatus; - } - public function getAutoscalingModuleStatus() - { - return $this->autoscalingModuleStatus; - } - public function setFirewallModuleStatus(Google_Service_Manager_FirewallModuleStatus $firewallModuleStatus) - { - $this->firewallModuleStatus = $firewallModuleStatus; - } - public function getFirewallModuleStatus() - { - return $this->firewallModuleStatus; - } - public function setHealthCheckModuleStatus(Google_Service_Manager_HealthCheckModuleStatus $healthCheckModuleStatus) - { - $this->healthCheckModuleStatus = $healthCheckModuleStatus; - } - public function getHealthCheckModuleStatus() - { - return $this->healthCheckModuleStatus; - } - public function setLbModuleStatus(Google_Service_Manager_LbModuleStatus $lbModuleStatus) - { - $this->lbModuleStatus = $lbModuleStatus; - } - public function getLbModuleStatus() - { - return $this->lbModuleStatus; - } - public function setNetworkModuleStatus(Google_Service_Manager_NetworkModuleStatus $networkModuleStatus) - { - $this->networkModuleStatus = $networkModuleStatus; - } - public function getNetworkModuleStatus() - { - return $this->networkModuleStatus; - } - public function setReplicaPoolModuleStatus(Google_Service_Manager_ReplicaPoolModuleStatus $replicaPoolModuleStatus) - { - $this->replicaPoolModuleStatus = $replicaPoolModuleStatus; - } - public function getReplicaPoolModuleStatus() - { - return $this->replicaPoolModuleStatus; - } - public function setState(Google_Service_Manager_DeployState $state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/NetworkInterface.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/NetworkInterface.php deleted file mode 100644 index f2f18bcc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/NetworkInterface.php +++ /dev/null @@ -1,59 +0,0 @@ -accessConfigs = $accessConfigs; - } - public function getAccessConfigs() - { - return $this->accessConfigs; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNetwork($network) - { - $this->network = $network; - } - public function getNetwork() - { - return $this->network; - } - public function setNetworkIp($networkIp) - { - $this->networkIp = $networkIp; - } - public function getNetworkIp() - { - return $this->networkIp; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/NetworkModule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/NetworkModule.php deleted file mode 100644 index 71aadc8b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/NetworkModule.php +++ /dev/null @@ -1,51 +0,0 @@ - "IPv4Range", - ); - public $iPv4Range; - public $description; - public $gatewayIPv4; - - public function setIPv4Range($iPv4Range) - { - $this->iPv4Range = $iPv4Range; - } - public function getIPv4Range() - { - return $this->iPv4Range; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setGatewayIPv4($gatewayIPv4) - { - $this->gatewayIPv4 = $gatewayIPv4; - } - public function getGatewayIPv4() - { - return $this->gatewayIPv4; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/NetworkModuleStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/NetworkModuleStatus.php deleted file mode 100644 index c8990ac7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/NetworkModuleStatus.php +++ /dev/null @@ -1,30 +0,0 @@ -networkUrl = $networkUrl; - } - public function getNetworkUrl() - { - return $this->networkUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/NewDisk.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/NewDisk.php deleted file mode 100644 index 54901cd8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/NewDisk.php +++ /dev/null @@ -1,59 +0,0 @@ -attachment = $attachment; - } - public function getAttachment() - { - return $this->attachment; - } - public function setAutoDelete($autoDelete) - { - $this->autoDelete = $autoDelete; - } - public function getAutoDelete() - { - return $this->autoDelete; - } - public function setBoot($boot) - { - $this->boot = $boot; - } - public function getBoot() - { - return $this->boot; - } - public function setInitializeParams(Google_Service_Manager_NewDiskInitializeParams $initializeParams) - { - $this->initializeParams = $initializeParams; - } - public function getInitializeParams() - { - return $this->initializeParams; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/NewDiskInitializeParams.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/NewDiskInitializeParams.php deleted file mode 100644 index a9a364c8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/NewDiskInitializeParams.php +++ /dev/null @@ -1,48 +0,0 @@ -diskSizeGb = $diskSizeGb; - } - public function getDiskSizeGb() - { - return $this->diskSizeGb; - } - public function setDiskType($diskType) - { - $this->diskType = $diskType; - } - public function getDiskType() - { - return $this->diskType; - } - public function setSourceImage($sourceImage) - { - $this->sourceImage = $sourceImage; - } - public function getSourceImage() - { - return $this->sourceImage; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/ParamOverride.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/ParamOverride.php deleted file mode 100644 index b15c7e70..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/ParamOverride.php +++ /dev/null @@ -1,39 +0,0 @@ -path = $path; - } - public function getPath() - { - return $this->path; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/ReplicaPoolModule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/ReplicaPoolModule.php deleted file mode 100644 index 4e9f19d4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/ReplicaPoolModule.php +++ /dev/null @@ -1,69 +0,0 @@ -envVariables = $envVariables; - } - public function getEnvVariables() - { - return $this->envVariables; - } - public function setHealthChecks($healthChecks) - { - $this->healthChecks = $healthChecks; - } - public function getHealthChecks() - { - return $this->healthChecks; - } - public function setNumReplicas($numReplicas) - { - $this->numReplicas = $numReplicas; - } - public function getNumReplicas() - { - return $this->numReplicas; - } - public function setReplicaPoolParams(Google_Service_Manager_ReplicaPoolParams $replicaPoolParams) - { - $this->replicaPoolParams = $replicaPoolParams; - } - public function getReplicaPoolParams() - { - return $this->replicaPoolParams; - } - public function setResourceView($resourceView) - { - $this->resourceView = $resourceView; - } - public function getResourceView() - { - return $this->resourceView; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/ReplicaPoolModuleStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/ReplicaPoolModuleStatus.php deleted file mode 100644 index b2c569e9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/ReplicaPoolModuleStatus.php +++ /dev/null @@ -1,39 +0,0 @@ -replicaPoolUrl = $replicaPoolUrl; - } - public function getReplicaPoolUrl() - { - return $this->replicaPoolUrl; - } - public function setResourceViewUrl($resourceViewUrl) - { - $this->resourceViewUrl = $resourceViewUrl; - } - public function getResourceViewUrl() - { - return $this->resourceViewUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/ReplicaPoolParams.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/ReplicaPoolParams.php deleted file mode 100644 index c4a638c7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/ReplicaPoolParams.php +++ /dev/null @@ -1,31 +0,0 @@ -v1beta1 = $v1beta1; - } - public function getV1beta1() - { - return $this->v1beta1; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/ReplicaPoolParamsV1Beta1.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/ReplicaPoolParamsV1Beta1.php deleted file mode 100644 index 1019a012..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/ReplicaPoolParamsV1Beta1.php +++ /dev/null @@ -1,154 +0,0 @@ -autoRestart = $autoRestart; - } - public function getAutoRestart() - { - return $this->autoRestart; - } - public function setBaseInstanceName($baseInstanceName) - { - $this->baseInstanceName = $baseInstanceName; - } - public function getBaseInstanceName() - { - return $this->baseInstanceName; - } - public function setCanIpForward($canIpForward) - { - $this->canIpForward = $canIpForward; - } - public function getCanIpForward() - { - return $this->canIpForward; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisksToAttach($disksToAttach) - { - $this->disksToAttach = $disksToAttach; - } - public function getDisksToAttach() - { - return $this->disksToAttach; - } - public function setDisksToCreate($disksToCreate) - { - $this->disksToCreate = $disksToCreate; - } - public function getDisksToCreate() - { - return $this->disksToCreate; - } - public function setInitAction($initAction) - { - $this->initAction = $initAction; - } - public function getInitAction() - { - return $this->initAction; - } - public function setMachineType($machineType) - { - $this->machineType = $machineType; - } - public function getMachineType() - { - return $this->machineType; - } - public function setMetadata(Google_Service_Manager_Metadata $metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setNetworkInterfaces($networkInterfaces) - { - $this->networkInterfaces = $networkInterfaces; - } - public function getNetworkInterfaces() - { - return $this->networkInterfaces; - } - public function setOnHostMaintenance($onHostMaintenance) - { - $this->onHostMaintenance = $onHostMaintenance; - } - public function getOnHostMaintenance() - { - return $this->onHostMaintenance; - } - public function setServiceAccounts($serviceAccounts) - { - $this->serviceAccounts = $serviceAccounts; - } - public function getServiceAccounts() - { - return $this->serviceAccounts; - } - public function setTags(Google_Service_Manager_Tag $tags) - { - $this->tags = $tags; - } - public function getTags() - { - return $this->tags; - } - public function setZone($zone) - { - $this->zone = $zone; - } - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/ServiceAccount.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/ServiceAccount.php deleted file mode 100644 index 14548312..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/ServiceAccount.php +++ /dev/null @@ -1,40 +0,0 @@ -email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setScopes($scopes) - { - $this->scopes = $scopes; - } - public function getScopes() - { - return $this->scopes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/Tag.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/Tag.php deleted file mode 100644 index 0acbd09b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/Tag.php +++ /dev/null @@ -1,40 +0,0 @@ -fingerPrint = $fingerPrint; - } - public function getFingerPrint() - { - return $this->fingerPrint; - } - public function setItems($items) - { - $this->items = $items; - } - public function getItems() - { - return $this->items; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/Template.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/Template.php deleted file mode 100644 index fd16dae9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/Template.php +++ /dev/null @@ -1,59 +0,0 @@ -actions = $actions; - } - public function getActions() - { - return $this->actions; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setModules($modules) - { - $this->modules = $modules; - } - public function getModules() - { - return $this->modules; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/TemplatesListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/TemplatesListResponse.php deleted file mode 100644 index 0675ad0e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/TemplatesListResponse.php +++ /dev/null @@ -1,41 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setResources($resources) - { - $this->resources = $resources; - } - public function getResources() - { - return $this->resources; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/TemplatesResource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/TemplatesResource.php deleted file mode 100644 index 93a7af77..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Manager/TemplatesResource.php +++ /dev/null @@ -1,88 +0,0 @@ - - * $managerService = new Google_Service_Manager(...); - * $templates = $managerService->templates; - * - */ -class Google_Service_Manager_TemplatesResource extends Google_Service_Resource -{ - /** - * (templates.delete) - * - * @param string $projectId - * @param string $templateName - * @param array $optParams Optional parameters. - */ - public function delete($projectId, $templateName, $optParams = array()) - { - $params = array('projectId' => $projectId, 'templateName' => $templateName); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * (templates.get) - * - * @param string $projectId - * @param string $templateName - * @param array $optParams Optional parameters. - * @return Google_Service_Template - */ - public function get($projectId, $templateName, $optParams = array()) - { - $params = array('projectId' => $projectId, 'templateName' => $templateName); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Manager_Template"); - } - /** - * (templates.insert) - * - * @param string $projectId - * @param Google_Template $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Template - */ - public function insert($projectId, Google_Service_Manager_Template $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Manager_Template"); - } - /** - * (templates.listTemplates) - * - * @param string $projectId - * @param array $optParams Optional parameters. - * - * @opt_param int maxResults Maximum count of results to be returned. Acceptable - * values are 0 to 100, inclusive. (Default: 50) - * @opt_param string pageToken Specifies a nextPageToken returned by a previous - * list request. This token can be used to request the next page of results from - * a previous list request. - * @return Google_Service_TemplatesListResponse - */ - public function listTemplates($projectId, $optParams = array()) - { - $params = array('projectId' => $projectId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Manager_TemplatesListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ManufacturerCenter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ManufacturerCenter.php deleted file mode 100644 index 061071ec..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ManufacturerCenter.php +++ /dev/null @@ -1,138 +0,0 @@ - - * Public API for managing Manufacturer Center related data.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_ManufacturerCenter extends Google_Service -{ - /** Manage your product listings for Google Manufacturer Center. */ - const MANUFACTURERCENTER = - "https://www.googleapis.com/auth/manufacturercenter"; - - public $accounts_products; - - /** - * Constructs the internal representation of the ManufacturerCenter service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://manufacturers.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'manufacturers'; - - $this->accounts_products = new Google_Service_ManufacturerCenter_Resource_AccountsProducts( - $this, - $this->serviceName, - 'products', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'v1/{+parent}/products/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+parent}/products/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'include' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/products', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'include' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ),'update' => array( - 'path' => 'v1/{+parent}/products/{+name}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ManufacturerCenter/Attributes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ManufacturerCenter/Attributes.php deleted file mode 100644 index 8b1dd780..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ManufacturerCenter/Attributes.php +++ /dev/null @@ -1,386 +0,0 @@ -additionalImageLink = $additionalImageLink; - } - /** - * @return Google_Service_ManufacturerCenter_Image - */ - public function getAdditionalImageLink() - { - return $this->additionalImageLink; - } - public function setAgeGroup($ageGroup) - { - $this->ageGroup = $ageGroup; - } - public function getAgeGroup() - { - return $this->ageGroup; - } - public function setBrand($brand) - { - $this->brand = $brand; - } - public function getBrand() - { - return $this->brand; - } - /** - * @param Google_Service_ManufacturerCenter_Capacity - */ - public function setCapacity(Google_Service_ManufacturerCenter_Capacity $capacity) - { - $this->capacity = $capacity; - } - /** - * @return Google_Service_ManufacturerCenter_Capacity - */ - public function getCapacity() - { - return $this->capacity; - } - public function setColor($color) - { - $this->color = $color; - } - public function getColor() - { - return $this->color; - } - /** - * @param Google_Service_ManufacturerCenter_Count - */ - public function setCount(Google_Service_ManufacturerCenter_Count $count) - { - $this->count = $count; - } - /** - * @return Google_Service_ManufacturerCenter_Count - */ - public function getCount() - { - return $this->count; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisclosureDate($disclosureDate) - { - $this->disclosureDate = $disclosureDate; - } - public function getDisclosureDate() - { - return $this->disclosureDate; - } - public function setExcludedDestination($excludedDestination) - { - $this->excludedDestination = $excludedDestination; - } - public function getExcludedDestination() - { - return $this->excludedDestination; - } - /** - * @param Google_Service_ManufacturerCenter_FeatureDescription - */ - public function setFeatureDescription($featureDescription) - { - $this->featureDescription = $featureDescription; - } - /** - * @return Google_Service_ManufacturerCenter_FeatureDescription - */ - public function getFeatureDescription() - { - return $this->featureDescription; - } - public function setFlavor($flavor) - { - $this->flavor = $flavor; - } - public function getFlavor() - { - return $this->flavor; - } - public function setFormat($format) - { - $this->format = $format; - } - public function getFormat() - { - return $this->format; - } - public function setGender($gender) - { - $this->gender = $gender; - } - public function getGender() - { - return $this->gender; - } - public function setGtin($gtin) - { - $this->gtin = $gtin; - } - public function getGtin() - { - return $this->gtin; - } - /** - * @param Google_Service_ManufacturerCenter_Image - */ - public function setImageLink(Google_Service_ManufacturerCenter_Image $imageLink) - { - $this->imageLink = $imageLink; - } - /** - * @return Google_Service_ManufacturerCenter_Image - */ - public function getImageLink() - { - return $this->imageLink; - } - public function setIncludedDestination($includedDestination) - { - $this->includedDestination = $includedDestination; - } - public function getIncludedDestination() - { - return $this->includedDestination; - } - public function setItemGroupId($itemGroupId) - { - $this->itemGroupId = $itemGroupId; - } - public function getItemGroupId() - { - return $this->itemGroupId; - } - public function setMaterial($material) - { - $this->material = $material; - } - public function getMaterial() - { - return $this->material; - } - public function setMpn($mpn) - { - $this->mpn = $mpn; - } - public function getMpn() - { - return $this->mpn; - } - public function setPattern($pattern) - { - $this->pattern = $pattern; - } - public function getPattern() - { - return $this->pattern; - } - /** - * @param Google_Service_ManufacturerCenter_ProductDetail - */ - public function setProductDetail($productDetail) - { - $this->productDetail = $productDetail; - } - /** - * @return Google_Service_ManufacturerCenter_ProductDetail - */ - public function getProductDetail() - { - return $this->productDetail; - } - public function setProductLine($productLine) - { - $this->productLine = $productLine; - } - public function getProductLine() - { - return $this->productLine; - } - public function setProductName($productName) - { - $this->productName = $productName; - } - public function getProductName() - { - return $this->productName; - } - public function setProductPageUrl($productPageUrl) - { - $this->productPageUrl = $productPageUrl; - } - public function getProductPageUrl() - { - return $this->productPageUrl; - } - public function setProductType($productType) - { - $this->productType = $productType; - } - public function getProductType() - { - return $this->productType; - } - public function setReleaseDate($releaseDate) - { - $this->releaseDate = $releaseDate; - } - public function getReleaseDate() - { - return $this->releaseDate; - } - public function setScent($scent) - { - $this->scent = $scent; - } - public function getScent() - { - return $this->scent; - } - public function setSize($size) - { - $this->size = $size; - } - public function getSize() - { - return $this->size; - } - public function setSizeSystem($sizeSystem) - { - $this->sizeSystem = $sizeSystem; - } - public function getSizeSystem() - { - return $this->sizeSystem; - } - public function setSizeType($sizeType) - { - $this->sizeType = $sizeType; - } - public function getSizeType() - { - return $this->sizeType; - } - /** - * @param Google_Service_ManufacturerCenter_Price - */ - public function setSuggestedRetailPrice(Google_Service_ManufacturerCenter_Price $suggestedRetailPrice) - { - $this->suggestedRetailPrice = $suggestedRetailPrice; - } - /** - * @return Google_Service_ManufacturerCenter_Price - */ - public function getSuggestedRetailPrice() - { - return $this->suggestedRetailPrice; - } - public function setTargetClientId($targetClientId) - { - $this->targetClientId = $targetClientId; - } - public function getTargetClientId() - { - return $this->targetClientId; - } - public function setTheme($theme) - { - $this->theme = $theme; - } - public function getTheme() - { - return $this->theme; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setVideoLink($videoLink) - { - $this->videoLink = $videoLink; - } - public function getVideoLink() - { - return $this->videoLink; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ManufacturerCenter/Capacity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ManufacturerCenter/Capacity.php deleted file mode 100644 index b0433c25..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ManufacturerCenter/Capacity.php +++ /dev/null @@ -1,39 +0,0 @@ -unit = $unit; - } - public function getUnit() - { - return $this->unit; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ManufacturerCenter/Count.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ManufacturerCenter/Count.php deleted file mode 100644 index fd609003..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ManufacturerCenter/Count.php +++ /dev/null @@ -1,39 +0,0 @@ -unit = $unit; - } - public function getUnit() - { - return $this->unit; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ManufacturerCenter/DestinationStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ManufacturerCenter/DestinationStatus.php deleted file mode 100644 index ad09d1be..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ManufacturerCenter/DestinationStatus.php +++ /dev/null @@ -1,39 +0,0 @@ -destination = $destination; - } - public function getDestination() - { - return $this->destination; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ManufacturerCenter/FeatureDescription.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ManufacturerCenter/FeatureDescription.php deleted file mode 100644 index e919e61d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ManufacturerCenter/FeatureDescription.php +++ /dev/null @@ -1,55 +0,0 @@ -headline = $headline; - } - public function getHeadline() - { - return $this->headline; - } - /** - * @param Google_Service_ManufacturerCenter_Image - */ - public function setImage(Google_Service_ManufacturerCenter_Image $image) - { - $this->image = $image; - } - /** - * @return Google_Service_ManufacturerCenter_Image - */ - public function getImage() - { - return $this->image; - } - public function setText($text) - { - $this->text = $text; - } - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ManufacturerCenter/Image.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ManufacturerCenter/Image.php deleted file mode 100644 index a5396196..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ManufacturerCenter/Image.php +++ /dev/null @@ -1,48 +0,0 @@ -imageUrl = $imageUrl; - } - public function getImageUrl() - { - return $this->imageUrl; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ManufacturerCenter/Issue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ManufacturerCenter/Issue.php deleted file mode 100644 index aca5b34f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ManufacturerCenter/Issue.php +++ /dev/null @@ -1,93 +0,0 @@ -attribute = $attribute; - } - public function getAttribute() - { - return $this->attribute; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDestination($destination) - { - $this->destination = $destination; - } - public function getDestination() - { - return $this->destination; - } - public function setResolution($resolution) - { - $this->resolution = $resolution; - } - public function getResolution() - { - return $this->resolution; - } - public function setSeverity($severity) - { - $this->severity = $severity; - } - public function getSeverity() - { - return $this->severity; - } - public function setTimestamp($timestamp) - { - $this->timestamp = $timestamp; - } - public function getTimestamp() - { - return $this->timestamp; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ManufacturerCenter/ListProductsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ManufacturerCenter/ListProductsResponse.php deleted file mode 100644 index b03b425f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ManufacturerCenter/ListProductsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_ManufacturerCenter_Product - */ - public function setProducts($products) - { - $this->products = $products; - } - /** - * @return Google_Service_ManufacturerCenter_Product - */ - public function getProducts() - { - return $this->products; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ManufacturerCenter/ManufacturersEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ManufacturerCenter/ManufacturersEmpty.php deleted file mode 100644 index c67b0739..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ManufacturerCenter/ManufacturersEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -amount = $amount; - } - public function getAmount() - { - return $this->amount; - } - public function setCurrency($currency) - { - $this->currency = $currency; - } - public function getCurrency() - { - return $this->currency; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ManufacturerCenter/Product.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ManufacturerCenter/Product.php deleted file mode 100644 index f2198d92..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ManufacturerCenter/Product.php +++ /dev/null @@ -1,115 +0,0 @@ -attributes = $attributes; - } - /** - * @return Google_Service_ManufacturerCenter_Attributes - */ - public function getAttributes() - { - return $this->attributes; - } - public function setContentLanguage($contentLanguage) - { - $this->contentLanguage = $contentLanguage; - } - public function getContentLanguage() - { - return $this->contentLanguage; - } - /** - * @param Google_Service_ManufacturerCenter_DestinationStatus - */ - public function setDestinationStatuses($destinationStatuses) - { - $this->destinationStatuses = $destinationStatuses; - } - /** - * @return Google_Service_ManufacturerCenter_DestinationStatus - */ - public function getDestinationStatuses() - { - return $this->destinationStatuses; - } - /** - * @param Google_Service_ManufacturerCenter_Issue - */ - public function setIssues($issues) - { - $this->issues = $issues; - } - /** - * @return Google_Service_ManufacturerCenter_Issue - */ - public function getIssues() - { - return $this->issues; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setParent($parent) - { - $this->parent = $parent; - } - public function getParent() - { - return $this->parent; - } - public function setProductId($productId) - { - $this->productId = $productId; - } - public function getProductId() - { - return $this->productId; - } - public function setTargetCountry($targetCountry) - { - $this->targetCountry = $targetCountry; - } - public function getTargetCountry() - { - return $this->targetCountry; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ManufacturerCenter/ProductDetail.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ManufacturerCenter/ProductDetail.php deleted file mode 100644 index 231a4551..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ManufacturerCenter/ProductDetail.php +++ /dev/null @@ -1,48 +0,0 @@ -attributeName = $attributeName; - } - public function getAttributeName() - { - return $this->attributeName; - } - public function setAttributeValue($attributeValue) - { - $this->attributeValue = $attributeValue; - } - public function getAttributeValue() - { - return $this->attributeValue; - } - public function setSectionName($sectionName) - { - $this->sectionName = $sectionName; - } - public function getSectionName() - { - return $this->sectionName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ManufacturerCenter/Resource/Accounts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ManufacturerCenter/Resource/Accounts.php deleted file mode 100644 index caed2b00..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ManufacturerCenter/Resource/Accounts.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $manufacturersService = new Google_Service_ManufacturerCenter(...); - * $accounts = $manufacturersService->accounts; - * - */ -class Google_Service_ManufacturerCenter_Resource_Accounts extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ManufacturerCenter/Resource/AccountsProducts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ManufacturerCenter/Resource/AccountsProducts.php deleted file mode 100644 index a63896bc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ManufacturerCenter/Resource/AccountsProducts.php +++ /dev/null @@ -1,152 +0,0 @@ - - * $manufacturersService = new Google_Service_ManufacturerCenter(...); - * $products = $manufacturersService->products; - * - */ -class Google_Service_ManufacturerCenter_Resource_AccountsProducts extends Google_Service_Resource -{ - /** - * Deletes the product from a Manufacturer Center account. (products.delete) - * - * @param string $parent Parent ID in the format `accounts/{account_id}`. - * - * `account_id` - The ID of the Manufacturer Center account. - * @param string $name Name in the format - * `{target_country}:{content_language}:{product_id}`. - * - * `target_country` - The target country of the product as a CLDR territory - * code (for example, US). - * - * `content_language` - The content language of the product as a two-letter - * ISO 639-1 language code (for example, en). - * - * `product_id` - The ID of the product. For more information, see - * https://support.google.com/manufacturers/answer/6124116#id. - * @param array $optParams Optional parameters. - * @return Google_Service_ManufacturerCenter_ManufacturersEmpty - */ - public function delete($parent, $name, $optParams = array()) - { - $params = array('parent' => $parent, 'name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_ManufacturerCenter_ManufacturersEmpty"); - } - /** - * Gets the product from a Manufacturer Center account, including product - * issues. - * - * A recently updated product takes around 15 minutes to process. Changes are - * only visible after it has been processed. While some issues may be available - * once the product has been processed, other issues may take days to appear. - * (products.get) - * - * @param string $parent Parent ID in the format `accounts/{account_id}`. - * - * `account_id` - The ID of the Manufacturer Center account. - * @param string $name Name in the format - * `{target_country}:{content_language}:{product_id}`. - * - * `target_country` - The target country of the product as a CLDR territory - * code (for example, US). - * - * `content_language` - The content language of the product as a two-letter - * ISO 639-1 language code (for example, en). - * - * `product_id` - The ID of the product. For more information, see - * https://support.google.com/manufacturers/answer/6124116#id. - * @param array $optParams Optional parameters. - * - * @opt_param string include The information to be included in the response. - * Only sections listed here will be returned. - * @return Google_Service_ManufacturerCenter_Product - */ - public function get($parent, $name, $optParams = array()) - { - $params = array('parent' => $parent, 'name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_ManufacturerCenter_Product"); - } - /** - * Lists all the products in a Manufacturer Center account. - * (products.listAccountsProducts) - * - * @param string $parent Parent ID in the format `accounts/{account_id}`. - * - * `account_id` - The ID of the Manufacturer Center account. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The token returned by the previous request. - * @opt_param int pageSize Maximum number of product statuses to return in the - * response, used for paging. - * @opt_param string include The information to be included in the response. - * Only sections listed here will be returned. - * @return Google_Service_ManufacturerCenter_ListProductsResponse - */ - public function listAccountsProducts($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_ManufacturerCenter_ListProductsResponse"); - } - /** - * Inserts or updates the attributes of the product in a Manufacturer Center - * account. - * - * Creates a product with the provided attributes. If the product already - * exists, then all attributes are replaced with the new ones. The checks at - * upload time are minimal. All required attributes need to be present for a - * product to be valid. Issues may show up later after the API has accepted a - * new upload for a product and it is possible to overwrite an existing valid - * product with an invalid product. To detect this, you should retrieve the - * product and check it for issues once the new version is available. - * - * Uploaded attributes first need to be processed before they can be retrieved. - * Until then, new products will be unavailable, and retrieval of previously - * uploaded products will return the original state of the product. - * (products.update) - * - * @param string $parent Parent ID in the format `accounts/{account_id}`. - * - * `account_id` - The ID of the Manufacturer Center account. - * @param string $name Name in the format - * `{target_country}:{content_language}:{product_id}`. - * - * `target_country` - The target country of the product as a CLDR territory - * code (for example, US). - * - * `content_language` - The content language of the product as a two-letter - * ISO 639-1 language code (for example, en). - * - * `product_id` - The ID of the product. For more information, see - * https://support.google.com/manufacturers/answer/6124116#id. - * @param Google_Service_ManufacturerCenter_Attributes $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ManufacturerCenter_ManufacturersEmpty - */ - public function update($parent, $name, Google_Service_ManufacturerCenter_Attributes $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_ManufacturerCenter_ManufacturersEmpty"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror.php deleted file mode 100644 index 3800c19c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror.php +++ /dev/null @@ -1,381 +0,0 @@ - - * Interacts with Glass users via the timeline.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Mirror extends Google_Service -{ - /** View your location. */ - const GLASS_LOCATION = - "https://www.googleapis.com/auth/glass.location"; - /** View and manage your Glass timeline. */ - const GLASS_TIMELINE = - "https://www.googleapis.com/auth/glass.timeline"; - - public $accounts; - public $contacts; - public $locations; - public $settings; - public $subscriptions; - public $timeline; - public $timeline_attachments; - - /** - * Constructs the internal representation of the Mirror service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://www.googleapis.com/'; - $this->servicePath = 'mirror/v1/'; - $this->batchPath = 'batch/mirror/v1'; - $this->version = 'v1'; - $this->serviceName = 'mirror'; - - $this->accounts = new Google_Service_Mirror_Resource_Accounts( - $this, - $this->serviceName, - 'accounts', - array( - 'methods' => array( - 'insert' => array( - 'path' => 'accounts/{userToken}/{accountType}/{accountName}', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userToken' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'accountType' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'accountName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->contacts = new Google_Service_Mirror_Resource_Contacts( - $this, - $this->serviceName, - 'contacts', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'contacts/{id}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'contacts/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'contacts', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'list' => array( - 'path' => 'contacts', - 'httpMethod' => 'GET', - 'parameters' => array(), - ),'patch' => array( - 'path' => 'contacts/{id}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'contacts/{id}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->locations = new Google_Service_Mirror_Resource_Locations( - $this, - $this->serviceName, - 'locations', - array( - 'methods' => array( - 'get' => array( - 'path' => 'locations/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'locations', - 'httpMethod' => 'GET', - 'parameters' => array(), - ), - ) - ) - ); - $this->settings = new Google_Service_Mirror_Resource_Settings( - $this, - $this->serviceName, - 'settings', - array( - 'methods' => array( - 'get' => array( - 'path' => 'settings/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->subscriptions = new Google_Service_Mirror_Resource_Subscriptions( - $this, - $this->serviceName, - 'subscriptions', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'subscriptions/{id}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'subscriptions', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'list' => array( - 'path' => 'subscriptions', - 'httpMethod' => 'GET', - 'parameters' => array(), - ),'update' => array( - 'path' => 'subscriptions/{id}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->timeline = new Google_Service_Mirror_Resource_Timeline( - $this, - $this->serviceName, - 'timeline', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'timeline/{id}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'timeline/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'timeline', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'list' => array( - 'path' => 'timeline', - 'httpMethod' => 'GET', - 'parameters' => array( - 'bundleId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'includeDeleted' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pinnedOnly' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'sourceItemId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'timeline/{id}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'timeline/{id}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->timeline_attachments = new Google_Service_Mirror_Resource_TimelineAttachments( - $this, - $this->serviceName, - 'attachments', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'timeline/{itemId}/attachments/{attachmentId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'itemId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'attachmentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'timeline/{itemId}/attachments/{attachmentId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'itemId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'attachmentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'timeline/{itemId}/attachments', - 'httpMethod' => 'POST', - 'parameters' => array( - 'itemId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'timeline/{itemId}/attachments', - 'httpMethod' => 'GET', - 'parameters' => array( - 'itemId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/Account.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/Account.php deleted file mode 100644 index 376af56a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/Account.php +++ /dev/null @@ -1,72 +0,0 @@ -authTokens = $authTokens; - } - /** - * @return Google_Service_Mirror_AuthToken - */ - public function getAuthTokens() - { - return $this->authTokens; - } - public function setFeatures($features) - { - $this->features = $features; - } - public function getFeatures() - { - return $this->features; - } - public function setPassword($password) - { - $this->password = $password; - } - public function getPassword() - { - return $this->password; - } - /** - * @param Google_Service_Mirror_UserData - */ - public function setUserData($userData) - { - $this->userData = $userData; - } - /** - * @return Google_Service_Mirror_UserData - */ - public function getUserData() - { - return $this->userData; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/Attachment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/Attachment.php deleted file mode 100644 index aad7d129..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/Attachment.php +++ /dev/null @@ -1,57 +0,0 @@ -contentType = $contentType; - } - public function getContentType() - { - return $this->contentType; - } - public function setContentUrl($contentUrl) - { - $this->contentUrl = $contentUrl; - } - public function getContentUrl() - { - return $this->contentUrl; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setIsProcessingContent($isProcessingContent) - { - $this->isProcessingContent = $isProcessingContent; - } - public function getIsProcessingContent() - { - return $this->isProcessingContent; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/AttachmentsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/AttachmentsListResponse.php deleted file mode 100644 index a2ae5dbf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/AttachmentsListResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Mirror_Attachment - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/AuthToken.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/AuthToken.php deleted file mode 100644 index f049e087..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/AuthToken.php +++ /dev/null @@ -1,39 +0,0 @@ -authToken = $authToken; - } - public function getAuthToken() - { - return $this->authToken; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/Command.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/Command.php deleted file mode 100644 index edd36c59..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/Command.php +++ /dev/null @@ -1,30 +0,0 @@ -type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/Contact.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/Contact.php deleted file mode 100644 index 1ab46731..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/Contact.php +++ /dev/null @@ -1,137 +0,0 @@ -acceptCommands = $acceptCommands; - } - /** - * @return Google_Service_Mirror_Command - */ - public function getAcceptCommands() - { - return $this->acceptCommands; - } - public function setAcceptTypes($acceptTypes) - { - $this->acceptTypes = $acceptTypes; - } - public function getAcceptTypes() - { - return $this->acceptTypes; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setImageUrls($imageUrls) - { - $this->imageUrls = $imageUrls; - } - public function getImageUrls() - { - return $this->imageUrls; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setPhoneNumber($phoneNumber) - { - $this->phoneNumber = $phoneNumber; - } - public function getPhoneNumber() - { - return $this->phoneNumber; - } - public function setPriority($priority) - { - $this->priority = $priority; - } - public function getPriority() - { - return $this->priority; - } - public function setSharingFeatures($sharingFeatures) - { - $this->sharingFeatures = $sharingFeatures; - } - public function getSharingFeatures() - { - return $this->sharingFeatures; - } - public function setSource($source) - { - $this->source = $source; - } - public function getSource() - { - return $this->source; - } - public function setSpeakableName($speakableName) - { - $this->speakableName = $speakableName; - } - public function getSpeakableName() - { - return $this->speakableName; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/ContactsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/ContactsListResponse.php deleted file mode 100644 index dcc2108b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/ContactsListResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Mirror_Contact - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/Location.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/Location.php deleted file mode 100644 index a43a04dc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/Location.php +++ /dev/null @@ -1,93 +0,0 @@ -accuracy = $accuracy; - } - public function getAccuracy() - { - return $this->accuracy; - } - public function setAddress($address) - { - $this->address = $address; - } - public function getAddress() - { - return $this->address; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - 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 setLatitude($latitude) - { - $this->latitude = $latitude; - } - public function getLatitude() - { - return $this->latitude; - } - public function setLongitude($longitude) - { - $this->longitude = $longitude; - } - public function getLongitude() - { - return $this->longitude; - } - public function setTimestamp($timestamp) - { - $this->timestamp = $timestamp; - } - public function getTimestamp() - { - return $this->timestamp; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/LocationsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/LocationsListResponse.php deleted file mode 100644 index 1ede3b50..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/LocationsListResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Mirror_Location - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/MenuItem.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/MenuItem.php deleted file mode 100644 index c10fa168..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/MenuItem.php +++ /dev/null @@ -1,86 +0,0 @@ - "contextual_command", - ); - public $action; - public $contextualCommand; - public $id; - public $payload; - public $removeWhenSelected; - protected $valuesType = 'Google_Service_Mirror_MenuValue'; - protected $valuesDataType = 'array'; - - public function setAction($action) - { - $this->action = $action; - } - public function getAction() - { - return $this->action; - } - public function setContextualCommand($contextualCommand) - { - $this->contextualCommand = $contextualCommand; - } - public function getContextualCommand() - { - return $this->contextualCommand; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setPayload($payload) - { - $this->payload = $payload; - } - public function getPayload() - { - return $this->payload; - } - public function setRemoveWhenSelected($removeWhenSelected) - { - $this->removeWhenSelected = $removeWhenSelected; - } - public function getRemoveWhenSelected() - { - return $this->removeWhenSelected; - } - /** - * @param Google_Service_Mirror_MenuValue - */ - public function setValues($values) - { - $this->values = $values; - } - /** - * @return Google_Service_Mirror_MenuValue - */ - public function getValues() - { - return $this->values; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/MenuValue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/MenuValue.php deleted file mode 100644 index f3667a55..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/MenuValue.php +++ /dev/null @@ -1,48 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setIconUrl($iconUrl) - { - $this->iconUrl = $iconUrl; - } - public function getIconUrl() - { - return $this->iconUrl; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/Notification.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/Notification.php deleted file mode 100644 index a4a5ee37..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/Notification.php +++ /dev/null @@ -1,83 +0,0 @@ -collection = $collection; - } - public function getCollection() - { - return $this->collection; - } - public function setItemId($itemId) - { - $this->itemId = $itemId; - } - public function getItemId() - { - return $this->itemId; - } - public function setOperation($operation) - { - $this->operation = $operation; - } - public function getOperation() - { - return $this->operation; - } - /** - * @param Google_Service_Mirror_UserAction - */ - public function setUserActions($userActions) - { - $this->userActions = $userActions; - } - /** - * @return Google_Service_Mirror_UserAction - */ - public function getUserActions() - { - return $this->userActions; - } - public function setUserToken($userToken) - { - $this->userToken = $userToken; - } - public function getUserToken() - { - return $this->userToken; - } - public function setVerifyToken($verifyToken) - { - $this->verifyToken = $verifyToken; - } - public function getVerifyToken() - { - return $this->verifyToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/NotificationConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/NotificationConfig.php deleted file mode 100644 index c74af9cf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/NotificationConfig.php +++ /dev/null @@ -1,39 +0,0 @@ -deliveryTime = $deliveryTime; - } - public function getDeliveryTime() - { - return $this->deliveryTime; - } - public function setLevel($level) - { - $this->level = $level; - } - public function getLevel() - { - return $this->level; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/Resource/Accounts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/Resource/Accounts.php deleted file mode 100644 index 8615ebaf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/Resource/Accounts.php +++ /dev/null @@ -1,46 +0,0 @@ - - * $mirrorService = new Google_Service_Mirror(...); - * $accounts = $mirrorService->accounts; - * - */ -class Google_Service_Mirror_Resource_Accounts extends Google_Service_Resource -{ - /** - * Inserts a new account for a user (accounts.insert) - * - * @param string $userToken The ID for the user. - * @param string $accountType Account type to be passed to Android Account - * Manager. - * @param string $accountName The name of the account to be passed to the - * Android Account Manager. - * @param Google_Service_Mirror_Account $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Mirror_Account - */ - public function insert($userToken, $accountType, $accountName, Google_Service_Mirror_Account $postBody, $optParams = array()) - { - $params = array('userToken' => $userToken, 'accountType' => $accountType, 'accountName' => $accountName, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Mirror_Account"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/Resource/Contacts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/Resource/Contacts.php deleted file mode 100644 index ce4dd5d7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/Resource/Contacts.php +++ /dev/null @@ -1,108 +0,0 @@ - - * $mirrorService = new Google_Service_Mirror(...); - * $contacts = $mirrorService->contacts; - * - */ -class Google_Service_Mirror_Resource_Contacts extends Google_Service_Resource -{ - /** - * Deletes a contact. (contacts.delete) - * - * @param string $id The ID of the contact. - * @param array $optParams Optional parameters. - */ - public function delete($id, $optParams = array()) - { - $params = array('id' => $id); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Gets a single contact by ID. (contacts.get) - * - * @param string $id The ID of the contact. - * @param array $optParams Optional parameters. - * @return Google_Service_Mirror_Contact - */ - public function get($id, $optParams = array()) - { - $params = array('id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Mirror_Contact"); - } - /** - * Inserts a new contact. (contacts.insert) - * - * @param Google_Service_Mirror_Contact $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Mirror_Contact - */ - public function insert(Google_Service_Mirror_Contact $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Mirror_Contact"); - } - /** - * Retrieves a list of contacts for the authenticated user. - * (contacts.listContacts) - * - * @param array $optParams Optional parameters. - * @return Google_Service_Mirror_ContactsListResponse - */ - public function listContacts($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Mirror_ContactsListResponse"); - } - /** - * Updates a contact in place. This method supports patch semantics. - * (contacts.patch) - * - * @param string $id The ID of the contact. - * @param Google_Service_Mirror_Contact $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Mirror_Contact - */ - public function patch($id, Google_Service_Mirror_Contact $postBody, $optParams = array()) - { - $params = array('id' => $id, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Mirror_Contact"); - } - /** - * Updates a contact in place. (contacts.update) - * - * @param string $id The ID of the contact. - * @param Google_Service_Mirror_Contact $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Mirror_Contact - */ - public function update($id, Google_Service_Mirror_Contact $postBody, $optParams = array()) - { - $params = array('id' => $id, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Mirror_Contact"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/Resource/Locations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/Resource/Locations.php deleted file mode 100644 index 7567edb1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/Resource/Locations.php +++ /dev/null @@ -1,54 +0,0 @@ - - * $mirrorService = new Google_Service_Mirror(...); - * $locations = $mirrorService->locations; - * - */ -class Google_Service_Mirror_Resource_Locations extends Google_Service_Resource -{ - /** - * Gets a single location by ID. (locations.get) - * - * @param string $id The ID of the location or latest for the last known - * location. - * @param array $optParams Optional parameters. - * @return Google_Service_Mirror_Location - */ - public function get($id, $optParams = array()) - { - $params = array('id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Mirror_Location"); - } - /** - * Retrieves a list of locations for the user. (locations.listLocations) - * - * @param array $optParams Optional parameters. - * @return Google_Service_Mirror_LocationsListResponse - */ - public function listLocations($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Mirror_LocationsListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/Resource/Settings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/Resource/Settings.php deleted file mode 100644 index 6f0fade1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/Resource/Settings.php +++ /dev/null @@ -1,45 +0,0 @@ - - * $mirrorService = new Google_Service_Mirror(...); - * $settings = $mirrorService->settings; - * - */ -class Google_Service_Mirror_Resource_Settings extends Google_Service_Resource -{ - /** - * Gets a single setting by ID. (settings.get) - * - * @param string $id The ID of the setting. The following IDs are valid: - - * locale - The key to the user’s language/locale (BCP 47 identifier) that - * Glassware should use to render localized content. - timezone - The key to - * the user’s current time zone region as defined in the tz database. Example: - * America/Los_Angeles. - * @param array $optParams Optional parameters. - * @return Google_Service_Mirror_Setting - */ - public function get($id, $optParams = array()) - { - $params = array('id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Mirror_Setting"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/Resource/Subscriptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/Resource/Subscriptions.php deleted file mode 100644 index fce22a50..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/Resource/Subscriptions.php +++ /dev/null @@ -1,80 +0,0 @@ - - * $mirrorService = new Google_Service_Mirror(...); - * $subscriptions = $mirrorService->subscriptions; - * - */ -class Google_Service_Mirror_Resource_Subscriptions extends Google_Service_Resource -{ - /** - * Deletes a subscription. (subscriptions.delete) - * - * @param string $id The ID of the subscription. - * @param array $optParams Optional parameters. - */ - public function delete($id, $optParams = array()) - { - $params = array('id' => $id); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Creates a new subscription. (subscriptions.insert) - * - * @param Google_Service_Mirror_Subscription $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Mirror_Subscription - */ - public function insert(Google_Service_Mirror_Subscription $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Mirror_Subscription"); - } - /** - * Retrieves a list of subscriptions for the authenticated user and service. - * (subscriptions.listSubscriptions) - * - * @param array $optParams Optional parameters. - * @return Google_Service_Mirror_SubscriptionsListResponse - */ - public function listSubscriptions($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Mirror_SubscriptionsListResponse"); - } - /** - * Updates an existing subscription in place. (subscriptions.update) - * - * @param string $id The ID of the subscription. - * @param Google_Service_Mirror_Subscription $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Mirror_Subscription - */ - public function update($id, Google_Service_Mirror_Subscription $postBody, $optParams = array()) - { - $params = array('id' => $id, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Mirror_Subscription"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/Resource/Timeline.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/Resource/Timeline.php deleted file mode 100644 index 071e6953..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/Resource/Timeline.php +++ /dev/null @@ -1,121 +0,0 @@ - - * $mirrorService = new Google_Service_Mirror(...); - * $timeline = $mirrorService->timeline; - * - */ -class Google_Service_Mirror_Resource_Timeline extends Google_Service_Resource -{ - /** - * Deletes a timeline item. (timeline.delete) - * - * @param string $id The ID of the timeline item. - * @param array $optParams Optional parameters. - */ - public function delete($id, $optParams = array()) - { - $params = array('id' => $id); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Gets a single timeline item by ID. (timeline.get) - * - * @param string $id The ID of the timeline item. - * @param array $optParams Optional parameters. - * @return Google_Service_Mirror_TimelineItem - */ - public function get($id, $optParams = array()) - { - $params = array('id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Mirror_TimelineItem"); - } - /** - * Inserts a new item into the timeline. (timeline.insert) - * - * @param Google_Service_Mirror_TimelineItem $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Mirror_TimelineItem - */ - public function insert(Google_Service_Mirror_TimelineItem $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Mirror_TimelineItem"); - } - /** - * Retrieves a list of timeline items for the authenticated user. - * (timeline.listTimeline) - * - * @param array $optParams Optional parameters. - * - * @opt_param string bundleId If provided, only items with the given bundleId - * will be returned. - * @opt_param bool includeDeleted If true, tombstone records for deleted items - * will be returned. - * @opt_param string maxResults The maximum number of items to include in the - * response, used for paging. - * @opt_param string orderBy Controls the order in which timeline items are - * returned. - * @opt_param string pageToken Token for the page of results to return. - * @opt_param bool pinnedOnly If true, only pinned items will be returned. - * @opt_param string sourceItemId If provided, only items with the given - * sourceItemId will be returned. - * @return Google_Service_Mirror_TimelineListResponse - */ - public function listTimeline($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Mirror_TimelineListResponse"); - } - /** - * Updates a timeline item in place. This method supports patch semantics. - * (timeline.patch) - * - * @param string $id The ID of the timeline item. - * @param Google_Service_Mirror_TimelineItem $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Mirror_TimelineItem - */ - public function patch($id, Google_Service_Mirror_TimelineItem $postBody, $optParams = array()) - { - $params = array('id' => $id, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Mirror_TimelineItem"); - } - /** - * Updates a timeline item in place. (timeline.update) - * - * @param string $id The ID of the timeline item. - * @param Google_Service_Mirror_TimelineItem $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Mirror_TimelineItem - */ - public function update($id, Google_Service_Mirror_TimelineItem $postBody, $optParams = array()) - { - $params = array('id' => $id, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Mirror_TimelineItem"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/Resource/TimelineAttachments.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/Resource/TimelineAttachments.php deleted file mode 100644 index c529d506..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/Resource/TimelineAttachments.php +++ /dev/null @@ -1,84 +0,0 @@ - - * $mirrorService = new Google_Service_Mirror(...); - * $attachments = $mirrorService->attachments; - * - */ -class Google_Service_Mirror_Resource_TimelineAttachments extends Google_Service_Resource -{ - /** - * Deletes an attachment from a timeline item. (attachments.delete) - * - * @param string $itemId The ID of the timeline item the attachment belongs to. - * @param string $attachmentId The ID of the attachment. - * @param array $optParams Optional parameters. - */ - public function delete($itemId, $attachmentId, $optParams = array()) - { - $params = array('itemId' => $itemId, 'attachmentId' => $attachmentId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Retrieves an attachment on a timeline item by item ID and attachment ID. - * (attachments.get) - * - * @param string $itemId The ID of the timeline item the attachment belongs to. - * @param string $attachmentId The ID of the attachment. - * @param array $optParams Optional parameters. - * @return Google_Service_Mirror_Attachment - */ - public function get($itemId, $attachmentId, $optParams = array()) - { - $params = array('itemId' => $itemId, 'attachmentId' => $attachmentId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Mirror_Attachment"); - } - /** - * Adds a new attachment to a timeline item. (attachments.insert) - * - * @param string $itemId The ID of the timeline item the attachment belongs to. - * @param array $optParams Optional parameters. - * @return Google_Service_Mirror_Attachment - */ - public function insert($itemId, $optParams = array()) - { - $params = array('itemId' => $itemId); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Mirror_Attachment"); - } - /** - * Returns a list of attachments for a timeline item. - * (attachments.listTimelineAttachments) - * - * @param string $itemId The ID of the timeline item whose attachments should be - * listed. - * @param array $optParams Optional parameters. - * @return Google_Service_Mirror_AttachmentsListResponse - */ - public function listTimelineAttachments($itemId, $optParams = array()) - { - $params = array('itemId' => $itemId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Mirror_AttachmentsListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/Setting.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/Setting.php deleted file mode 100644 index 9d9dbfb4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/Setting.php +++ /dev/null @@ -1,48 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/Subscription.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/Subscription.php deleted file mode 100644 index f57a8c6d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/Subscription.php +++ /dev/null @@ -1,110 +0,0 @@ -callbackUrl = $callbackUrl; - } - public function getCallbackUrl() - { - return $this->callbackUrl; - } - public function setCollection($collection) - { - $this->collection = $collection; - } - public function getCollection() - { - return $this->collection; - } - 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; - } - /** - * @param Google_Service_Mirror_Notification - */ - public function setNotification(Google_Service_Mirror_Notification $notification) - { - $this->notification = $notification; - } - /** - * @return Google_Service_Mirror_Notification - */ - public function getNotification() - { - return $this->notification; - } - public function setOperation($operation) - { - $this->operation = $operation; - } - public function getOperation() - { - return $this->operation; - } - public function setUpdated($updated) - { - $this->updated = $updated; - } - public function getUpdated() - { - return $this->updated; - } - public function setUserToken($userToken) - { - $this->userToken = $userToken; - } - public function getUserToken() - { - return $this->userToken; - } - public function setVerifyToken($verifyToken) - { - $this->verifyToken = $verifyToken; - } - public function getVerifyToken() - { - return $this->verifyToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/SubscriptionsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/SubscriptionsListResponse.php deleted file mode 100644 index 8b27dd1d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/SubscriptionsListResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Mirror_Subscription - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/TimelineItem.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/TimelineItem.php deleted file mode 100644 index 6f3d6428..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/TimelineItem.php +++ /dev/null @@ -1,298 +0,0 @@ -attachments = $attachments; - } - /** - * @return Google_Service_Mirror_Attachment - */ - public function getAttachments() - { - return $this->attachments; - } - public function setBundleId($bundleId) - { - $this->bundleId = $bundleId; - } - public function getBundleId() - { - return $this->bundleId; - } - public function setCanonicalUrl($canonicalUrl) - { - $this->canonicalUrl = $canonicalUrl; - } - public function getCanonicalUrl() - { - return $this->canonicalUrl; - } - public function setCreated($created) - { - $this->created = $created; - } - public function getCreated() - { - return $this->created; - } - /** - * @param Google_Service_Mirror_Contact - */ - public function setCreator(Google_Service_Mirror_Contact $creator) - { - $this->creator = $creator; - } - /** - * @return Google_Service_Mirror_Contact - */ - public function getCreator() - { - return $this->creator; - } - public function setDisplayTime($displayTime) - { - $this->displayTime = $displayTime; - } - public function getDisplayTime() - { - return $this->displayTime; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setHtml($html) - { - $this->html = $html; - } - public function getHtml() - { - return $this->html; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setInReplyTo($inReplyTo) - { - $this->inReplyTo = $inReplyTo; - } - public function getInReplyTo() - { - return $this->inReplyTo; - } - public function setIsBundleCover($isBundleCover) - { - $this->isBundleCover = $isBundleCover; - } - public function getIsBundleCover() - { - return $this->isBundleCover; - } - public function setIsDeleted($isDeleted) - { - $this->isDeleted = $isDeleted; - } - public function getIsDeleted() - { - return $this->isDeleted; - } - public function setIsPinned($isPinned) - { - $this->isPinned = $isPinned; - } - public function getIsPinned() - { - return $this->isPinned; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Mirror_Location - */ - public function setLocation(Google_Service_Mirror_Location $location) - { - $this->location = $location; - } - /** - * @return Google_Service_Mirror_Location - */ - public function getLocation() - { - return $this->location; - } - /** - * @param Google_Service_Mirror_MenuItem - */ - public function setMenuItems($menuItems) - { - $this->menuItems = $menuItems; - } - /** - * @return Google_Service_Mirror_MenuItem - */ - public function getMenuItems() - { - return $this->menuItems; - } - /** - * @param Google_Service_Mirror_NotificationConfig - */ - public function setNotification(Google_Service_Mirror_NotificationConfig $notification) - { - $this->notification = $notification; - } - /** - * @return Google_Service_Mirror_NotificationConfig - */ - public function getNotification() - { - return $this->notification; - } - public function setPinScore($pinScore) - { - $this->pinScore = $pinScore; - } - public function getPinScore() - { - return $this->pinScore; - } - /** - * @param Google_Service_Mirror_Contact - */ - public function setRecipients($recipients) - { - $this->recipients = $recipients; - } - /** - * @return Google_Service_Mirror_Contact - */ - public function getRecipients() - { - return $this->recipients; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setSourceItemId($sourceItemId) - { - $this->sourceItemId = $sourceItemId; - } - public function getSourceItemId() - { - return $this->sourceItemId; - } - public function setSpeakableText($speakableText) - { - $this->speakableText = $speakableText; - } - public function getSpeakableText() - { - return $this->speakableText; - } - public function setSpeakableType($speakableType) - { - $this->speakableType = $speakableType; - } - public function getSpeakableType() - { - return $this->speakableType; - } - public function setText($text) - { - $this->text = $text; - } - public function getText() - { - return $this->text; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setUpdated($updated) - { - $this->updated = $updated; - } - public function getUpdated() - { - return $this->updated; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/TimelineListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/TimelineListResponse.php deleted file mode 100644 index 0b5daf9d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/TimelineListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Mirror_TimelineItem - */ - public function getItems() - { - return $this->items; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/UserAction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/UserAction.php deleted file mode 100644 index 0feea541..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/UserAction.php +++ /dev/null @@ -1,39 +0,0 @@ -payload = $payload; - } - public function getPayload() - { - return $this->payload; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/UserData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/UserData.php deleted file mode 100644 index e4d56c38..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Mirror/UserData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring.php deleted file mode 100644 index 54fc2ca4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring.php +++ /dev/null @@ -1,907 +0,0 @@ - - * Manages your Stackdriver Monitoring data and configurations. Most projects - * must be associated with a Stackdriver account, with a few exceptions as noted - * on the individual method pages. The table entries below are presented in - * alphabetical order, not in order of common use. For explanations of the - * concepts found in the table entries, read the Stackdriver Monitoring - * documentation.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Monitoring extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** View and write monitoring data for all of your Google and third-party Cloud and API projects. */ - const MONITORING = - "https://www.googleapis.com/auth/monitoring"; - /** View monitoring data for all of your Google Cloud and third-party projects. */ - const MONITORING_READ = - "https://www.googleapis.com/auth/monitoring.read"; - /** Publish metric data to your Google Cloud projects. */ - const MONITORING_WRITE = - "https://www.googleapis.com/auth/monitoring.write"; - - public $projects_alertPolicies; - public $projects_collectdTimeSeries; - public $projects_groups; - public $projects_groups_members; - public $projects_metricDescriptors; - public $projects_monitoredResourceDescriptors; - public $projects_notificationChannelDescriptors; - public $projects_notificationChannels; - public $projects_timeSeries; - public $projects_uptimeCheckConfigs; - public $services; - public $services_serviceLevelObjectives; - public $uptimeCheckIps; - - /** - * Constructs the internal representation of the Monitoring service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://monitoring.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v3'; - $this->serviceName = 'monitoring'; - - $this->projects_alertPolicies = new Google_Service_Monitoring_Resource_ProjectsAlertPolicies( - $this, - $this->serviceName, - 'alertPolicies', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v3/{+name}/alertPolicies', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v3/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v3/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v3/{+name}/alertPolicies', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v3/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_collectdTimeSeries = new Google_Service_Monitoring_Resource_ProjectsCollectdTimeSeries( - $this, - $this->serviceName, - 'collectdTimeSeries', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v3/{+name}/collectdTimeSeries', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_groups = new Google_Service_Monitoring_Resource_ProjectsGroups( - $this, - $this->serviceName, - 'groups', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v3/{+name}/groups', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'validateOnly' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'delete' => array( - 'path' => 'v3/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'recursive' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'get' => array( - 'path' => 'v3/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v3/{+name}/groups', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'ancestorsOfGroup' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'childrenOfGroup' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'descendantsOfGroup' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'v3/{+name}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'validateOnly' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ), - ) - ) - ); - $this->projects_groups_members = new Google_Service_Monitoring_Resource_ProjectsGroupsMembers( - $this, - $this->serviceName, - 'members', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v3/{+name}/members', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'interval.startTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'interval.endTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_metricDescriptors = new Google_Service_Monitoring_Resource_ProjectsMetricDescriptors( - $this, - $this->serviceName, - 'metricDescriptors', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v3/{+name}/metricDescriptors', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v3/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v3/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v3/{+name}/metricDescriptors', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_monitoredResourceDescriptors = new Google_Service_Monitoring_Resource_ProjectsMonitoredResourceDescriptors( - $this, - $this->serviceName, - 'monitoredResourceDescriptors', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v3/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v3/{+name}/monitoredResourceDescriptors', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_notificationChannelDescriptors = new Google_Service_Monitoring_Resource_ProjectsNotificationChannelDescriptors( - $this, - $this->serviceName, - 'notificationChannelDescriptors', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v3/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v3/{+name}/notificationChannelDescriptors', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->projects_notificationChannels = new Google_Service_Monitoring_Resource_ProjectsNotificationChannels( - $this, - $this->serviceName, - 'notificationChannels', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v3/{+name}/notificationChannels', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v3/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'force' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'get' => array( - 'path' => 'v3/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getVerificationCode' => array( - 'path' => 'v3/{+name}:getVerificationCode', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v3/{+name}/notificationChannels', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v3/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'sendVerificationCode' => array( - 'path' => 'v3/{+name}:sendVerificationCode', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'verify' => array( - 'path' => 'v3/{+name}:verify', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_timeSeries = new Google_Service_Monitoring_Resource_ProjectsTimeSeries( - $this, - $this->serviceName, - 'timeSeries', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v3/{+name}/timeSeries', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v3/{+name}/timeSeries', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'interval.endTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'aggregation.alignmentPeriod' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'aggregation.crossSeriesReducer' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'aggregation.perSeriesAligner' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'interval.startTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'aggregation.groupByFields' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ), - ) - ) - ); - $this->projects_uptimeCheckConfigs = new Google_Service_Monitoring_Resource_ProjectsUptimeCheckConfigs( - $this, - $this->serviceName, - 'uptimeCheckConfigs', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v3/{+parent}/uptimeCheckConfigs', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v3/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v3/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v3/{+parent}/uptimeCheckConfigs', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v3/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->services = new Google_Service_Monitoring_Resource_Services( - $this, - $this->serviceName, - 'services', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v3/{+parent}/services', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'serviceId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => 'v3/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v3/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v3/{+parent}/services', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'v3/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->services_serviceLevelObjectives = new Google_Service_Monitoring_Resource_ServicesServiceLevelObjectives( - $this, - $this->serviceName, - 'serviceLevelObjectives', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v3/{+parent}/serviceLevelObjectives', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'serviceLevelObjectiveId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => 'v3/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v3/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'v3/{+parent}/serviceLevelObjectives', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'v3/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->uptimeCheckIps = new Google_Service_Monitoring_Resource_UptimeCheckIps( - $this, - $this->serviceName, - 'uptimeCheckIps', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v3/uptimeCheckIps', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Aggregation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Aggregation.php deleted file mode 100644 index c2ef53c6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Aggregation.php +++ /dev/null @@ -1,58 +0,0 @@ -alignmentPeriod = $alignmentPeriod; - } - public function getAlignmentPeriod() - { - return $this->alignmentPeriod; - } - public function setCrossSeriesReducer($crossSeriesReducer) - { - $this->crossSeriesReducer = $crossSeriesReducer; - } - public function getCrossSeriesReducer() - { - return $this->crossSeriesReducer; - } - public function setGroupByFields($groupByFields) - { - $this->groupByFields = $groupByFields; - } - public function getGroupByFields() - { - return $this->groupByFields; - } - public function setPerSeriesAligner($perSeriesAligner) - { - $this->perSeriesAligner = $perSeriesAligner; - } - public function getPerSeriesAligner() - { - return $this->perSeriesAligner; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/AlertPolicy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/AlertPolicy.php deleted file mode 100644 index a4ff415a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/AlertPolicy.php +++ /dev/null @@ -1,156 +0,0 @@ -combiner = $combiner; - } - public function getCombiner() - { - return $this->combiner; - } - /** - * @param Google_Service_Monitoring_Condition - */ - public function setConditions($conditions) - { - $this->conditions = $conditions; - } - /** - * @return Google_Service_Monitoring_Condition - */ - public function getConditions() - { - return $this->conditions; - } - /** - * @param Google_Service_Monitoring_MutationRecord - */ - public function setCreationRecord(Google_Service_Monitoring_MutationRecord $creationRecord) - { - $this->creationRecord = $creationRecord; - } - /** - * @return Google_Service_Monitoring_MutationRecord - */ - public function getCreationRecord() - { - return $this->creationRecord; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - /** - * @param Google_Service_Monitoring_Documentation - */ - public function setDocumentation(Google_Service_Monitoring_Documentation $documentation) - { - $this->documentation = $documentation; - } - /** - * @return Google_Service_Monitoring_Documentation - */ - public function getDocumentation() - { - return $this->documentation; - } - public function setEnabled($enabled) - { - $this->enabled = $enabled; - } - public function getEnabled() - { - return $this->enabled; - } - /** - * @param Google_Service_Monitoring_MutationRecord - */ - public function setMutationRecord(Google_Service_Monitoring_MutationRecord $mutationRecord) - { - $this->mutationRecord = $mutationRecord; - } - /** - * @return Google_Service_Monitoring_MutationRecord - */ - public function getMutationRecord() - { - return $this->mutationRecord; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNotificationChannels($notificationChannels) - { - $this->notificationChannels = $notificationChannels; - } - public function getNotificationChannels() - { - return $this->notificationChannels; - } - public function setUserLabels($userLabels) - { - $this->userLabels = $userLabels; - } - public function getUserLabels() - { - return $this->userLabels; - } - /** - * @param Google_Service_Monitoring_Status - */ - public function setValidity(Google_Service_Monitoring_Status $validity) - { - $this->validity = $validity; - } - /** - * @return Google_Service_Monitoring_Status - */ - public function getValidity() - { - return $this->validity; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/AppEngine.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/AppEngine.php deleted file mode 100644 index af27c012..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/AppEngine.php +++ /dev/null @@ -1,30 +0,0 @@ -moduleId = $moduleId; - } - public function getModuleId() - { - return $this->moduleId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/AvailabilityCriteria.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/AvailabilityCriteria.php deleted file mode 100644 index 9a3b3088..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/AvailabilityCriteria.php +++ /dev/null @@ -1,20 +0,0 @@ -password = $password; - } - public function getPassword() - { - return $this->password; - } - public function setUsername($username) - { - $this->username = $username; - } - public function getUsername() - { - return $this->username; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/BasicSli.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/BasicSli.php deleted file mode 100644 index 2721a0f3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/BasicSli.php +++ /dev/null @@ -1,81 +0,0 @@ -availability = $availability; - } - /** - * @return Google_Service_Monitoring_AvailabilityCriteria - */ - public function getAvailability() - { - return $this->availability; - } - /** - * @param Google_Service_Monitoring_LatencyCriteria - */ - public function setLatency(Google_Service_Monitoring_LatencyCriteria $latency) - { - $this->latency = $latency; - } - /** - * @return Google_Service_Monitoring_LatencyCriteria - */ - public function getLatency() - { - return $this->latency; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setMethod($method) - { - $this->method = $method; - } - public function getMethod() - { - return $this->method; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/BucketOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/BucketOptions.php deleted file mode 100644 index 86d3450f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/BucketOptions.php +++ /dev/null @@ -1,69 +0,0 @@ -explicitBuckets = $explicitBuckets; - } - /** - * @return Google_Service_Monitoring_Explicit - */ - public function getExplicitBuckets() - { - return $this->explicitBuckets; - } - /** - * @param Google_Service_Monitoring_Exponential - */ - public function setExponentialBuckets(Google_Service_Monitoring_Exponential $exponentialBuckets) - { - $this->exponentialBuckets = $exponentialBuckets; - } - /** - * @return Google_Service_Monitoring_Exponential - */ - public function getExponentialBuckets() - { - return $this->exponentialBuckets; - } - /** - * @param Google_Service_Monitoring_Linear - */ - public function setLinearBuckets(Google_Service_Monitoring_Linear $linearBuckets) - { - $this->linearBuckets = $linearBuckets; - } - /** - * @return Google_Service_Monitoring_Linear - */ - public function getLinearBuckets() - { - return $this->linearBuckets; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/CloudEndpoints.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/CloudEndpoints.php deleted file mode 100644 index f571a21d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/CloudEndpoints.php +++ /dev/null @@ -1,30 +0,0 @@ -service = $service; - } - public function getService() - { - return $this->service; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/ClusterIstio.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/ClusterIstio.php deleted file mode 100644 index 94520df8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/ClusterIstio.php +++ /dev/null @@ -1,57 +0,0 @@ -clusterName = $clusterName; - } - public function getClusterName() - { - return $this->clusterName; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setServiceName($serviceName) - { - $this->serviceName = $serviceName; - } - public function getServiceName() - { - return $this->serviceName; - } - public function setServiceNamespace($serviceNamespace) - { - $this->serviceNamespace = $serviceNamespace; - } - public function getServiceNamespace() - { - return $this->serviceNamespace; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/CollectdPayload.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/CollectdPayload.php deleted file mode 100644 index 289e0845..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/CollectdPayload.php +++ /dev/null @@ -1,108 +0,0 @@ -endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - /** - * @param Google_Service_Monitoring_TypedValue - */ - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_Monitoring_TypedValue - */ - public function getMetadata() - { - return $this->metadata; - } - public function setPlugin($plugin) - { - $this->plugin = $plugin; - } - public function getPlugin() - { - return $this->plugin; - } - public function setPluginInstance($pluginInstance) - { - $this->pluginInstance = $pluginInstance; - } - public function getPluginInstance() - { - return $this->pluginInstance; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setTypeInstance($typeInstance) - { - $this->typeInstance = $typeInstance; - } - public function getTypeInstance() - { - return $this->typeInstance; - } - /** - * @param Google_Service_Monitoring_CollectdValue - */ - public function setValues($values) - { - $this->values = $values; - } - /** - * @return Google_Service_Monitoring_CollectdValue - */ - public function getValues() - { - return $this->values; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/CollectdPayloadError.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/CollectdPayloadError.php deleted file mode 100644 index 77efb905..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/CollectdPayloadError.php +++ /dev/null @@ -1,63 +0,0 @@ -error = $error; - } - /** - * @return Google_Service_Monitoring_Status - */ - public function getError() - { - return $this->error; - } - public function setIndex($index) - { - $this->index = $index; - } - public function getIndex() - { - return $this->index; - } - /** - * @param Google_Service_Monitoring_CollectdValueError - */ - public function setValueErrors($valueErrors) - { - $this->valueErrors = $valueErrors; - } - /** - * @return Google_Service_Monitoring_CollectdValueError - */ - public function getValueErrors() - { - return $this->valueErrors; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/CollectdValue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/CollectdValue.php deleted file mode 100644 index 02c6eda8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/CollectdValue.php +++ /dev/null @@ -1,55 +0,0 @@ -dataSourceName = $dataSourceName; - } - public function getDataSourceName() - { - return $this->dataSourceName; - } - public function setDataSourceType($dataSourceType) - { - $this->dataSourceType = $dataSourceType; - } - public function getDataSourceType() - { - return $this->dataSourceType; - } - /** - * @param Google_Service_Monitoring_TypedValue - */ - public function setValue(Google_Service_Monitoring_TypedValue $value) - { - $this->value = $value; - } - /** - * @return Google_Service_Monitoring_TypedValue - */ - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/CollectdValueError.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/CollectdValueError.php deleted file mode 100644 index ba891590..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/CollectdValueError.php +++ /dev/null @@ -1,46 +0,0 @@ -error = $error; - } - /** - * @return Google_Service_Monitoring_Status - */ - public function getError() - { - return $this->error; - } - public function setIndex($index) - { - $this->index = $index; - } - public function getIndex() - { - return $this->index; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Condition.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Condition.php deleted file mode 100644 index be1c860d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Condition.php +++ /dev/null @@ -1,71 +0,0 @@ -conditionAbsent = $conditionAbsent; - } - /** - * @return Google_Service_Monitoring_MetricAbsence - */ - public function getConditionAbsent() - { - return $this->conditionAbsent; - } - /** - * @param Google_Service_Monitoring_MetricThreshold - */ - public function setConditionThreshold(Google_Service_Monitoring_MetricThreshold $conditionThreshold) - { - $this->conditionThreshold = $conditionThreshold; - } - /** - * @return Google_Service_Monitoring_MetricThreshold - */ - public function getConditionThreshold() - { - return $this->conditionThreshold; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/ContentMatcher.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/ContentMatcher.php deleted file mode 100644 index 6efd1834..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/ContentMatcher.php +++ /dev/null @@ -1,39 +0,0 @@ -content = $content; - } - public function getContent() - { - return $this->content; - } - public function setMatcher($matcher) - { - $this->matcher = $matcher; - } - public function getMatcher() - { - return $this->matcher; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/CreateCollectdTimeSeriesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/CreateCollectdTimeSeriesRequest.php deleted file mode 100644 index fe2c559a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/CreateCollectdTimeSeriesRequest.php +++ /dev/null @@ -1,63 +0,0 @@ -collectdPayloads = $collectdPayloads; - } - /** - * @return Google_Service_Monitoring_CollectdPayload - */ - public function getCollectdPayloads() - { - return $this->collectdPayloads; - } - public function setCollectdVersion($collectdVersion) - { - $this->collectdVersion = $collectdVersion; - } - public function getCollectdVersion() - { - return $this->collectdVersion; - } - /** - * @param Google_Service_Monitoring_MonitoredResource - */ - public function setResource(Google_Service_Monitoring_MonitoredResource $resource) - { - $this->resource = $resource; - } - /** - * @return Google_Service_Monitoring_MonitoredResource - */ - public function getResource() - { - return $this->resource; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/CreateCollectdTimeSeriesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/CreateCollectdTimeSeriesResponse.php deleted file mode 100644 index 8379c141..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/CreateCollectdTimeSeriesResponse.php +++ /dev/null @@ -1,54 +0,0 @@ -payloadErrors = $payloadErrors; - } - /** - * @return Google_Service_Monitoring_CollectdPayloadError - */ - public function getPayloadErrors() - { - return $this->payloadErrors; - } - /** - * @param Google_Service_Monitoring_CreateTimeSeriesSummary - */ - public function setSummary(Google_Service_Monitoring_CreateTimeSeriesSummary $summary) - { - $this->summary = $summary; - } - /** - * @return Google_Service_Monitoring_CreateTimeSeriesSummary - */ - public function getSummary() - { - return $this->summary; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/CreateTimeSeriesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/CreateTimeSeriesRequest.php deleted file mode 100644 index 2f05aa95..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/CreateTimeSeriesRequest.php +++ /dev/null @@ -1,38 +0,0 @@ -timeSeries = $timeSeries; - } - /** - * @return Google_Service_Monitoring_TimeSeries - */ - public function getTimeSeries() - { - return $this->timeSeries; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/CreateTimeSeriesSummary.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/CreateTimeSeriesSummary.php deleted file mode 100644 index c4449a22..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/CreateTimeSeriesSummary.php +++ /dev/null @@ -1,56 +0,0 @@ -errors = $errors; - } - /** - * @return Google_Service_Monitoring_Error - */ - public function getErrors() - { - return $this->errors; - } - public function setSuccessPointCount($successPointCount) - { - $this->successPointCount = $successPointCount; - } - public function getSuccessPointCount() - { - return $this->successPointCount; - } - public function setTotalPointCount($totalPointCount) - { - $this->totalPointCount = $totalPointCount; - } - public function getTotalPointCount() - { - return $this->totalPointCount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Custom.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Custom.php deleted file mode 100644 index d34dbea1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Custom.php +++ /dev/null @@ -1,20 +0,0 @@ -bucketCounts = $bucketCounts; - } - public function getBucketCounts() - { - return $this->bucketCounts; - } - /** - * @param Google_Service_Monitoring_BucketOptions - */ - public function setBucketOptions(Google_Service_Monitoring_BucketOptions $bucketOptions) - { - $this->bucketOptions = $bucketOptions; - } - /** - * @return Google_Service_Monitoring_BucketOptions - */ - public function getBucketOptions() - { - return $this->bucketOptions; - } - public function setCount($count) - { - $this->count = $count; - } - public function getCount() - { - return $this->count; - } - /** - * @param Google_Service_Monitoring_Exemplar - */ - public function setExemplars($exemplars) - { - $this->exemplars = $exemplars; - } - /** - * @return Google_Service_Monitoring_Exemplar - */ - public function getExemplars() - { - return $this->exemplars; - } - public function setMean($mean) - { - $this->mean = $mean; - } - public function getMean() - { - return $this->mean; - } - /** - * @param Google_Service_Monitoring_Range - */ - public function setRange(Google_Service_Monitoring_Range $range) - { - $this->range = $range; - } - /** - * @return Google_Service_Monitoring_Range - */ - public function getRange() - { - return $this->range; - } - public function setSumOfSquaredDeviation($sumOfSquaredDeviation) - { - $this->sumOfSquaredDeviation = $sumOfSquaredDeviation; - } - public function getSumOfSquaredDeviation() - { - return $this->sumOfSquaredDeviation; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/DistributionCut.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/DistributionCut.php deleted file mode 100644 index 4924817b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/DistributionCut.php +++ /dev/null @@ -1,46 +0,0 @@ -distributionFilter = $distributionFilter; - } - public function getDistributionFilter() - { - return $this->distributionFilter; - } - /** - * @param Google_Service_Monitoring_GoogleMonitoringV3Range - */ - public function setRange(Google_Service_Monitoring_GoogleMonitoringV3Range $range) - { - $this->range = $range; - } - /** - * @return Google_Service_Monitoring_GoogleMonitoringV3Range - */ - public function getRange() - { - return $this->range; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Documentation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Documentation.php deleted file mode 100644 index 34d8f795..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Documentation.php +++ /dev/null @@ -1,39 +0,0 @@ -content = $content; - } - public function getContent() - { - return $this->content; - } - public function setMimeType($mimeType) - { - $this->mimeType = $mimeType; - } - public function getMimeType() - { - return $this->mimeType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/DroppedLabels.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/DroppedLabels.php deleted file mode 100644 index 7fe0e305..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/DroppedLabels.php +++ /dev/null @@ -1,30 +0,0 @@ -label = $label; - } - public function getLabel() - { - return $this->label; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Error.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Error.php deleted file mode 100644 index 75c32c86..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Error.php +++ /dev/null @@ -1,46 +0,0 @@ -pointCount = $pointCount; - } - public function getPointCount() - { - return $this->pointCount; - } - /** - * @param Google_Service_Monitoring_Status - */ - public function setStatus(Google_Service_Monitoring_Status $status) - { - $this->status = $status; - } - /** - * @return Google_Service_Monitoring_Status - */ - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Exemplar.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Exemplar.php deleted file mode 100644 index 78dcc4e5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Exemplar.php +++ /dev/null @@ -1,49 +0,0 @@ -attachments = $attachments; - } - public function getAttachments() - { - return $this->attachments; - } - public function setTimestamp($timestamp) - { - $this->timestamp = $timestamp; - } - public function getTimestamp() - { - return $this->timestamp; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Explicit.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Explicit.php deleted file mode 100644 index c9918713..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Explicit.php +++ /dev/null @@ -1,31 +0,0 @@ -bounds = $bounds; - } - public function getBounds() - { - return $this->bounds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Exponential.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Exponential.php deleted file mode 100644 index 9009c1fe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Exponential.php +++ /dev/null @@ -1,48 +0,0 @@ -growthFactor = $growthFactor; - } - public function getGrowthFactor() - { - return $this->growthFactor; - } - public function setNumFiniteBuckets($numFiniteBuckets) - { - $this->numFiniteBuckets = $numFiniteBuckets; - } - public function getNumFiniteBuckets() - { - return $this->numFiniteBuckets; - } - public function setScale($scale) - { - $this->scale = $scale; - } - public function getScale() - { - return $this->scale; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Field.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Field.php deleted file mode 100644 index ff3bcc58..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Field.php +++ /dev/null @@ -1,119 +0,0 @@ -cardinality = $cardinality; - } - public function getCardinality() - { - return $this->cardinality; - } - public function setDefaultValue($defaultValue) - { - $this->defaultValue = $defaultValue; - } - public function getDefaultValue() - { - return $this->defaultValue; - } - public function setJsonName($jsonName) - { - $this->jsonName = $jsonName; - } - public function getJsonName() - { - return $this->jsonName; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNumber($number) - { - $this->number = $number; - } - public function getNumber() - { - return $this->number; - } - public function setOneofIndex($oneofIndex) - { - $this->oneofIndex = $oneofIndex; - } - public function getOneofIndex() - { - return $this->oneofIndex; - } - /** - * @param Google_Service_Monitoring_Option - */ - public function setOptions($options) - { - $this->options = $options; - } - /** - * @return Google_Service_Monitoring_Option - */ - public function getOptions() - { - return $this->options; - } - public function setPacked($packed) - { - $this->packed = $packed; - } - public function getPacked() - { - return $this->packed; - } - public function setTypeUrl($typeUrl) - { - $this->typeUrl = $typeUrl; - } - public function getTypeUrl() - { - return $this->typeUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/GetNotificationChannelVerificationCodeRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/GetNotificationChannelVerificationCodeRequest.php deleted file mode 100644 index f8a12a98..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/GetNotificationChannelVerificationCodeRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -expireTime = $expireTime; - } - public function getExpireTime() - { - return $this->expireTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/GetNotificationChannelVerificationCodeResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/GetNotificationChannelVerificationCodeResponse.php deleted file mode 100644 index 30c8a42c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/GetNotificationChannelVerificationCodeResponse.php +++ /dev/null @@ -1,39 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setExpireTime($expireTime) - { - $this->expireTime = $expireTime; - } - public function getExpireTime() - { - return $this->expireTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/GoogleMonitoringV3Range.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/GoogleMonitoringV3Range.php deleted file mode 100644 index a51c407c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/GoogleMonitoringV3Range.php +++ /dev/null @@ -1,39 +0,0 @@ -max = $max; - } - public function getMax() - { - return $this->max; - } - public function setMin($min) - { - $this->min = $min; - } - public function getMin() - { - return $this->min; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Group.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Group.php deleted file mode 100644 index 1746e1a7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Group.php +++ /dev/null @@ -1,66 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setFilter($filter) - { - $this->filter = $filter; - } - public function getFilter() - { - return $this->filter; - } - public function setIsCluster($isCluster) - { - $this->isCluster = $isCluster; - } - public function getIsCluster() - { - return $this->isCluster; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setParentName($parentName) - { - $this->parentName = $parentName; - } - public function getParentName() - { - return $this->parentName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/HttpCheck.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/HttpCheck.php deleted file mode 100644 index 37ed513a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/HttpCheck.php +++ /dev/null @@ -1,91 +0,0 @@ -authInfo = $authInfo; - } - /** - * @return Google_Service_Monitoring_BasicAuthentication - */ - public function getAuthInfo() - { - return $this->authInfo; - } - public function setHeaders($headers) - { - $this->headers = $headers; - } - public function getHeaders() - { - return $this->headers; - } - public function setMaskHeaders($maskHeaders) - { - $this->maskHeaders = $maskHeaders; - } - public function getMaskHeaders() - { - return $this->maskHeaders; - } - public function setPath($path) - { - $this->path = $path; - } - public function getPath() - { - return $this->path; - } - public function setPort($port) - { - $this->port = $port; - } - public function getPort() - { - return $this->port; - } - public function setUseSsl($useSsl) - { - $this->useSsl = $useSsl; - } - public function getUseSsl() - { - return $this->useSsl; - } - public function setValidateSsl($validateSsl) - { - $this->validateSsl = $validateSsl; - } - public function getValidateSsl() - { - return $this->validateSsl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/InternalChecker.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/InternalChecker.php deleted file mode 100644 index aae0b8ec..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/InternalChecker.php +++ /dev/null @@ -1,75 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setGcpZone($gcpZone) - { - $this->gcpZone = $gcpZone; - } - public function getGcpZone() - { - return $this->gcpZone; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNetwork($network) - { - $this->network = $network; - } - public function getNetwork() - { - return $this->network; - } - public function setPeerProjectId($peerProjectId) - { - $this->peerProjectId = $peerProjectId; - } - public function getPeerProjectId() - { - return $this->peerProjectId; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/LabelDescriptor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/LabelDescriptor.php deleted file mode 100644 index a3805fb4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/LabelDescriptor.php +++ /dev/null @@ -1,48 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setKey($key) - { - $this->key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValueType($valueType) - { - $this->valueType = $valueType; - } - public function getValueType() - { - return $this->valueType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/LatencyCriteria.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/LatencyCriteria.php deleted file mode 100644 index 6090b2f3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/LatencyCriteria.php +++ /dev/null @@ -1,30 +0,0 @@ -threshold = $threshold; - } - public function getThreshold() - { - return $this->threshold; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Linear.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Linear.php deleted file mode 100644 index 307a0105..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Linear.php +++ /dev/null @@ -1,48 +0,0 @@ -numFiniteBuckets = $numFiniteBuckets; - } - public function getNumFiniteBuckets() - { - return $this->numFiniteBuckets; - } - public function setOffset($offset) - { - $this->offset = $offset; - } - public function getOffset() - { - return $this->offset; - } - public function setWidth($width) - { - $this->width = $width; - } - public function getWidth() - { - return $this->width; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/ListAlertPoliciesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/ListAlertPoliciesResponse.php deleted file mode 100644 index 0b82ed03..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/ListAlertPoliciesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -alertPolicies = $alertPolicies; - } - /** - * @return Google_Service_Monitoring_AlertPolicy - */ - public function getAlertPolicies() - { - return $this->alertPolicies; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/ListGroupMembersResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/ListGroupMembersResponse.php deleted file mode 100644 index 56a525a6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/ListGroupMembersResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -members = $members; - } - /** - * @return Google_Service_Monitoring_MonitoredResource - */ - public function getMembers() - { - return $this->members; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setTotalSize($totalSize) - { - $this->totalSize = $totalSize; - } - public function getTotalSize() - { - return $this->totalSize; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/ListGroupsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/ListGroupsResponse.php deleted file mode 100644 index dfc01091..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/ListGroupsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -group = $group; - } - /** - * @return Google_Service_Monitoring_Group - */ - public function getGroup() - { - return $this->group; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/ListMetricDescriptorsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/ListMetricDescriptorsResponse.php deleted file mode 100644 index 5c4c77c1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/ListMetricDescriptorsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -metricDescriptors = $metricDescriptors; - } - /** - * @return Google_Service_Monitoring_MetricDescriptor - */ - public function getMetricDescriptors() - { - return $this->metricDescriptors; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/ListMonitoredResourceDescriptorsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/ListMonitoredResourceDescriptorsResponse.php deleted file mode 100644 index 1627517c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/ListMonitoredResourceDescriptorsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Monitoring_MonitoredResourceDescriptor - */ - public function setResourceDescriptors($resourceDescriptors) - { - $this->resourceDescriptors = $resourceDescriptors; - } - /** - * @return Google_Service_Monitoring_MonitoredResourceDescriptor - */ - public function getResourceDescriptors() - { - return $this->resourceDescriptors; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/ListNotificationChannelDescriptorsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/ListNotificationChannelDescriptorsResponse.php deleted file mode 100644 index 8cd5985e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/ListNotificationChannelDescriptorsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -channelDescriptors = $channelDescriptors; - } - /** - * @return Google_Service_Monitoring_NotificationChannelDescriptor - */ - public function getChannelDescriptors() - { - return $this->channelDescriptors; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/ListNotificationChannelsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/ListNotificationChannelsResponse.php deleted file mode 100644 index e252cc5b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/ListNotificationChannelsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Monitoring_NotificationChannel - */ - public function setNotificationChannels($notificationChannels) - { - $this->notificationChannels = $notificationChannels; - } - /** - * @return Google_Service_Monitoring_NotificationChannel - */ - public function getNotificationChannels() - { - return $this->notificationChannels; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/ListServiceLevelObjectivesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/ListServiceLevelObjectivesResponse.php deleted file mode 100644 index 8735672e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/ListServiceLevelObjectivesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Monitoring_ServiceLevelObjective - */ - public function setServiceLevelObjectives($serviceLevelObjectives) - { - $this->serviceLevelObjectives = $serviceLevelObjectives; - } - /** - * @return Google_Service_Monitoring_ServiceLevelObjective - */ - public function getServiceLevelObjectives() - { - return $this->serviceLevelObjectives; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/ListServicesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/ListServicesResponse.php deleted file mode 100644 index e0cce7c5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/ListServicesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Monitoring_Service - */ - public function setServices($services) - { - $this->services = $services; - } - /** - * @return Google_Service_Monitoring_Service - */ - public function getServices() - { - return $this->services; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/ListTimeSeriesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/ListTimeSeriesResponse.php deleted file mode 100644 index 287eb6be..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/ListTimeSeriesResponse.php +++ /dev/null @@ -1,63 +0,0 @@ -executionErrors = $executionErrors; - } - /** - * @return Google_Service_Monitoring_Status - */ - public function getExecutionErrors() - { - return $this->executionErrors; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Monitoring_TimeSeries - */ - public function setTimeSeries($timeSeries) - { - $this->timeSeries = $timeSeries; - } - /** - * @return Google_Service_Monitoring_TimeSeries - */ - public function getTimeSeries() - { - return $this->timeSeries; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/ListUptimeCheckConfigsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/ListUptimeCheckConfigsResponse.php deleted file mode 100644 index 10582b64..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/ListUptimeCheckConfigsResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setTotalSize($totalSize) - { - $this->totalSize = $totalSize; - } - public function getTotalSize() - { - return $this->totalSize; - } - /** - * @param Google_Service_Monitoring_UptimeCheckConfig - */ - public function setUptimeCheckConfigs($uptimeCheckConfigs) - { - $this->uptimeCheckConfigs = $uptimeCheckConfigs; - } - /** - * @return Google_Service_Monitoring_UptimeCheckConfig - */ - public function getUptimeCheckConfigs() - { - return $this->uptimeCheckConfigs; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/ListUptimeCheckIpsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/ListUptimeCheckIpsResponse.php deleted file mode 100644 index a7e63bb6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/ListUptimeCheckIpsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Monitoring_UptimeCheckIp - */ - public function setUptimeCheckIps($uptimeCheckIps) - { - $this->uptimeCheckIps = $uptimeCheckIps; - } - /** - * @return Google_Service_Monitoring_UptimeCheckIp - */ - public function getUptimeCheckIps() - { - return $this->uptimeCheckIps; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/MeshIstio.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/MeshIstio.php deleted file mode 100644 index dcdf1036..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/MeshIstio.php +++ /dev/null @@ -1,48 +0,0 @@ -meshUid = $meshUid; - } - public function getMeshUid() - { - return $this->meshUid; - } - public function setServiceName($serviceName) - { - $this->serviceName = $serviceName; - } - public function getServiceName() - { - return $this->serviceName; - } - public function setServiceNamespace($serviceNamespace) - { - $this->serviceNamespace = $serviceNamespace; - } - public function getServiceNamespace() - { - return $this->serviceNamespace; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Metric.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Metric.php deleted file mode 100644 index b0828d82..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Metric.php +++ /dev/null @@ -1,39 +0,0 @@ -labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/MetricAbsence.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/MetricAbsence.php deleted file mode 100644 index 4cd2bc64..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/MetricAbsence.php +++ /dev/null @@ -1,72 +0,0 @@ -aggregations = $aggregations; - } - /** - * @return Google_Service_Monitoring_Aggregation - */ - public function getAggregations() - { - return $this->aggregations; - } - public function setDuration($duration) - { - $this->duration = $duration; - } - public function getDuration() - { - return $this->duration; - } - public function setFilter($filter) - { - $this->filter = $filter; - } - public function getFilter() - { - return $this->filter; - } - /** - * @param Google_Service_Monitoring_Trigger - */ - public function setTrigger(Google_Service_Monitoring_Trigger $trigger) - { - $this->trigger = $trigger; - } - /** - * @return Google_Service_Monitoring_Trigger - */ - public function getTrigger() - { - return $this->trigger; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/MetricDescriptor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/MetricDescriptor.php deleted file mode 100644 index eff6124c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/MetricDescriptor.php +++ /dev/null @@ -1,135 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - /** - * @param Google_Service_Monitoring_LabelDescriptor - */ - public function setLabels($labels) - { - $this->labels = $labels; - } - /** - * @return Google_Service_Monitoring_LabelDescriptor - */ - public function getLabels() - { - return $this->labels; - } - public function setLaunchStage($launchStage) - { - $this->launchStage = $launchStage; - } - public function getLaunchStage() - { - return $this->launchStage; - } - /** - * @param Google_Service_Monitoring_MetricDescriptorMetadata - */ - public function setMetadata(Google_Service_Monitoring_MetricDescriptorMetadata $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_Monitoring_MetricDescriptorMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - public function setMetricKind($metricKind) - { - $this->metricKind = $metricKind; - } - public function getMetricKind() - { - return $this->metricKind; - } - public function setMonitoredResourceTypes($monitoredResourceTypes) - { - $this->monitoredResourceTypes = $monitoredResourceTypes; - } - public function getMonitoredResourceTypes() - { - return $this->monitoredResourceTypes; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setUnit($unit) - { - $this->unit = $unit; - } - public function getUnit() - { - return $this->unit; - } - public function setValueType($valueType) - { - $this->valueType = $valueType; - } - public function getValueType() - { - return $this->valueType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/MetricDescriptorMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/MetricDescriptorMetadata.php deleted file mode 100644 index 37580a7c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/MetricDescriptorMetadata.php +++ /dev/null @@ -1,48 +0,0 @@ -ingestDelay = $ingestDelay; - } - public function getIngestDelay() - { - return $this->ingestDelay; - } - public function setLaunchStage($launchStage) - { - $this->launchStage = $launchStage; - } - public function getLaunchStage() - { - return $this->launchStage; - } - public function setSamplePeriod($samplePeriod) - { - $this->samplePeriod = $samplePeriod; - } - public function getSamplePeriod() - { - return $this->samplePeriod; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/MetricRange.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/MetricRange.php deleted file mode 100644 index 4b6881b3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/MetricRange.php +++ /dev/null @@ -1,46 +0,0 @@ -range = $range; - } - /** - * @return Google_Service_Monitoring_GoogleMonitoringV3Range - */ - public function getRange() - { - return $this->range; - } - public function setTimeSeries($timeSeries) - { - $this->timeSeries = $timeSeries; - } - public function getTimeSeries() - { - return $this->timeSeries; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/MetricThreshold.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/MetricThreshold.php deleted file mode 100644 index 30a82292..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/MetricThreshold.php +++ /dev/null @@ -1,115 +0,0 @@ -aggregations = $aggregations; - } - /** - * @return Google_Service_Monitoring_Aggregation - */ - public function getAggregations() - { - return $this->aggregations; - } - public function setComparison($comparison) - { - $this->comparison = $comparison; - } - public function getComparison() - { - return $this->comparison; - } - /** - * @param Google_Service_Monitoring_Aggregation - */ - public function setDenominatorAggregations($denominatorAggregations) - { - $this->denominatorAggregations = $denominatorAggregations; - } - /** - * @return Google_Service_Monitoring_Aggregation - */ - public function getDenominatorAggregations() - { - return $this->denominatorAggregations; - } - public function setDenominatorFilter($denominatorFilter) - { - $this->denominatorFilter = $denominatorFilter; - } - public function getDenominatorFilter() - { - return $this->denominatorFilter; - } - public function setDuration($duration) - { - $this->duration = $duration; - } - public function getDuration() - { - return $this->duration; - } - public function setFilter($filter) - { - $this->filter = $filter; - } - public function getFilter() - { - return $this->filter; - } - public function setThresholdValue($thresholdValue) - { - $this->thresholdValue = $thresholdValue; - } - public function getThresholdValue() - { - return $this->thresholdValue; - } - /** - * @param Google_Service_Monitoring_Trigger - */ - public function setTrigger(Google_Service_Monitoring_Trigger $trigger) - { - $this->trigger = $trigger; - } - /** - * @return Google_Service_Monitoring_Trigger - */ - public function getTrigger() - { - return $this->trigger; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/MonitoredResource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/MonitoredResource.php deleted file mode 100644 index c4c51269..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/MonitoredResource.php +++ /dev/null @@ -1,39 +0,0 @@ -labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/MonitoredResourceDescriptor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/MonitoredResourceDescriptor.php deleted file mode 100644 index 140677ff..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/MonitoredResourceDescriptor.php +++ /dev/null @@ -1,83 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - /** - * @param Google_Service_Monitoring_LabelDescriptor - */ - public function setLabels($labels) - { - $this->labels = $labels; - } - /** - * @return Google_Service_Monitoring_LabelDescriptor - */ - public function getLabels() - { - return $this->labels; - } - public function setLaunchStage($launchStage) - { - $this->launchStage = $launchStage; - } - public function getLaunchStage() - { - return $this->launchStage; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/MonitoredResourceMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/MonitoredResourceMetadata.php deleted file mode 100644 index 8125c606..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/MonitoredResourceMetadata.php +++ /dev/null @@ -1,39 +0,0 @@ -systemLabels = $systemLabels; - } - public function getSystemLabels() - { - return $this->systemLabels; - } - public function setUserLabels($userLabels) - { - $this->userLabels = $userLabels; - } - public function getUserLabels() - { - return $this->userLabels; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/MonitoringEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/MonitoringEmpty.php deleted file mode 100644 index 56946374..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/MonitoringEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -mutateTime = $mutateTime; - } - public function getMutateTime() - { - return $this->mutateTime; - } - public function setMutatedBy($mutatedBy) - { - $this->mutatedBy = $mutatedBy; - } - public function getMutatedBy() - { - return $this->mutatedBy; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/NotificationChannel.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/NotificationChannel.php deleted file mode 100644 index fefbb8a9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/NotificationChannel.php +++ /dev/null @@ -1,93 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setEnabled($enabled) - { - $this->enabled = $enabled; - } - public function getEnabled() - { - return $this->enabled; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setUserLabels($userLabels) - { - $this->userLabels = $userLabels; - } - public function getUserLabels() - { - return $this->userLabels; - } - public function setVerificationStatus($verificationStatus) - { - $this->verificationStatus = $verificationStatus; - } - public function getVerificationStatus() - { - return $this->verificationStatus; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/NotificationChannelDescriptor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/NotificationChannelDescriptor.php deleted file mode 100644 index 65cf4a49..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/NotificationChannelDescriptor.php +++ /dev/null @@ -1,83 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - /** - * @param Google_Service_Monitoring_LabelDescriptor - */ - public function setLabels($labels) - { - $this->labels = $labels; - } - /** - * @return Google_Service_Monitoring_LabelDescriptor - */ - public function getLabels() - { - return $this->labels; - } - public function setLaunchStage($launchStage) - { - $this->launchStage = $launchStage; - } - public function getLaunchStage() - { - return $this->launchStage; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Option.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Option.php deleted file mode 100644 index 669bc37b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Option.php +++ /dev/null @@ -1,39 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/PerformanceThreshold.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/PerformanceThreshold.php deleted file mode 100644 index acbb7d91..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/PerformanceThreshold.php +++ /dev/null @@ -1,62 +0,0 @@ -basicSliPerformance = $basicSliPerformance; - } - /** - * @return Google_Service_Monitoring_BasicSli - */ - public function getBasicSliPerformance() - { - return $this->basicSliPerformance; - } - /** - * @param Google_Service_Monitoring_RequestBasedSli - */ - public function setPerformance(Google_Service_Monitoring_RequestBasedSli $performance) - { - $this->performance = $performance; - } - /** - * @return Google_Service_Monitoring_RequestBasedSli - */ - public function getPerformance() - { - return $this->performance; - } - public function setThreshold($threshold) - { - $this->threshold = $threshold; - } - public function getThreshold() - { - return $this->threshold; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Point.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Point.php deleted file mode 100644 index ac3d2248..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Point.php +++ /dev/null @@ -1,53 +0,0 @@ -interval = $interval; - } - /** - * @return Google_Service_Monitoring_TimeInterval - */ - public function getInterval() - { - return $this->interval; - } - /** - * @param Google_Service_Monitoring_TypedValue - */ - public function setValue(Google_Service_Monitoring_TypedValue $value) - { - $this->value = $value; - } - /** - * @return Google_Service_Monitoring_TypedValue - */ - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Range.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Range.php deleted file mode 100644 index f867ff31..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Range.php +++ /dev/null @@ -1,39 +0,0 @@ -max = $max; - } - public function getMax() - { - return $this->max; - } - public function setMin($min) - { - $this->min = $min; - } - public function getMin() - { - return $this->min; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/RequestBasedSli.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/RequestBasedSli.php deleted file mode 100644 index 4e003876..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/RequestBasedSli.php +++ /dev/null @@ -1,53 +0,0 @@ -distributionCut = $distributionCut; - } - /** - * @return Google_Service_Monitoring_DistributionCut - */ - public function getDistributionCut() - { - return $this->distributionCut; - } - /** - * @param Google_Service_Monitoring_TimeSeriesRatio - */ - public function setGoodTotalRatio(Google_Service_Monitoring_TimeSeriesRatio $goodTotalRatio) - { - $this->goodTotalRatio = $goodTotalRatio; - } - /** - * @return Google_Service_Monitoring_TimeSeriesRatio - */ - public function getGoodTotalRatio() - { - return $this->goodTotalRatio; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Resource/Projects.php deleted file mode 100644 index b2afd3f6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Resource/Projects.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $monitoringService = new Google_Service_Monitoring(...); - * $projects = $monitoringService->projects; - * - */ -class Google_Service_Monitoring_Resource_Projects extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Resource/ProjectsAlertPolicies.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Resource/ProjectsAlertPolicies.php deleted file mode 100644 index 625496cf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Resource/ProjectsAlertPolicies.php +++ /dev/null @@ -1,148 +0,0 @@ - - * $monitoringService = new Google_Service_Monitoring(...); - * $alertPolicies = $monitoringService->alertPolicies; - * - */ -class Google_Service_Monitoring_Resource_ProjectsAlertPolicies extends Google_Service_Resource -{ - /** - * Creates a new alerting policy. (alertPolicies.create) - * - * @param string $name Required. The project in which to create the alerting - * policy. The format is: projects/[PROJECT_ID_OR_NUMBER] Note that this field - * names the parent container in which the alerting policy will be written, not - * the name of the created policy. The alerting policy that is returned will - * have a name that contains a normalized representation of this name as a - * prefix but adds a suffix of the form /alertPolicies/[ALERT_POLICY_ID], - * identifying the policy in the container. - * @param Google_Service_Monitoring_AlertPolicy $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Monitoring_AlertPolicy - */ - public function create($name, Google_Service_Monitoring_AlertPolicy $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Monitoring_AlertPolicy"); - } - /** - * Deletes an alerting policy. (alertPolicies.delete) - * - * @param string $name Required. The alerting policy to delete. The format is: - * projects/[PROJECT_ID_OR_NUMBER]/alertPolicies/[ALERT_POLICY_ID] For more - * information, see AlertPolicy. - * @param array $optParams Optional parameters. - * @return Google_Service_Monitoring_MonitoringEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Monitoring_MonitoringEmpty"); - } - /** - * Gets a single alerting policy. (alertPolicies.get) - * - * @param string $name Required. The alerting policy to retrieve. The format is: - * projects/[PROJECT_ID_OR_NUMBER]/alertPolicies/[ALERT_POLICY_ID] - * @param array $optParams Optional parameters. - * @return Google_Service_Monitoring_AlertPolicy - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Monitoring_AlertPolicy"); - } - /** - * Lists the existing alerting policies for the project. - * (alertPolicies.listProjectsAlertPolicies) - * - * @param string $name Required. The project whose alert policies are to be - * listed. The format is: projects/[PROJECT_ID_OR_NUMBER] Note that this field - * names the parent container in which the alerting policies to be listed are - * stored. To retrieve a single alerting policy by name, use the GetAlertPolicy - * operation, instead. - * @param array $optParams Optional parameters. - * - * @opt_param string filter If provided, this field specifies the criteria that - * must be met by alert policies to be included in the response.For more - * details, see sorting and filtering. - * @opt_param string orderBy A comma-separated list of fields by which to sort - * the result. Supports the same set of field references as the filter field. - * Entries can be prefixed with a minus sign to sort by the field in descending - * order.For more details, see sorting and filtering. - * @opt_param string pageToken If this field is not empty then it must contain - * the nextPageToken value returned by a previous call to this method. Using - * this field causes the method to return more results from the previous method - * call. - * @opt_param int pageSize The maximum number of results to return in a single - * response. - * @return Google_Service_Monitoring_ListAlertPoliciesResponse - */ - public function listProjectsAlertPolicies($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Monitoring_ListAlertPoliciesResponse"); - } - /** - * Updates an alerting policy. You can either replace the entire policy with a - * new one or replace only certain fields in the current alerting policy by - * specifying the fields to be updated via updateMask. Returns the updated - * alerting policy. (alertPolicies.patch) - * - * @param string $name Required if the policy exists. The resource name for this - * policy. The format is: - * projects/[PROJECT_ID_OR_NUMBER]/alertPolicies/[ALERT_POLICY_ID] - * [ALERT_POLICY_ID] is assigned by Stackdriver Monitoring when the policy is - * created. When calling the alertPolicies.create method, do not include the - * name field in the alerting policy passed as part of the request. - * @param Google_Service_Monitoring_AlertPolicy $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Optional. A list of alerting policy field names. - * If this field is not empty, each listed field in the existing alerting policy - * is set to the value of the corresponding field in the supplied policy - * (alert_policy), or to the field's default value if the field is not in the - * supplied alerting policy. Fields not listed retain their previous - * value.Examples of valid field masks include display_name, documentation, - * documentation.content, documentation.mime_type, user_labels, - * user_label.nameofkey, enabled, conditions, combiner, etc.If this field is - * empty, then the supplied alerting policy replaces the existing policy. It is - * the same as deleting the existing policy and adding the supplied policy, - * except for the following: The new policy will have the same [ALERT_POLICY_ID] - * as the former policy. This gives you continuity with the former policy in - * your notifications and incidents. Conditions in the new policy will keep - * their former [CONDITION_ID] if the supplied condition includes the name field - * with that [CONDITION_ID]. If the supplied condition omits the name field, - * then a new [CONDITION_ID] is created. - * @return Google_Service_Monitoring_AlertPolicy - */ - public function patch($name, Google_Service_Monitoring_AlertPolicy $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Monitoring_AlertPolicy"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Resource/ProjectsCollectdTimeSeries.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Resource/ProjectsCollectdTimeSeries.php deleted file mode 100644 index 877421e5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Resource/ProjectsCollectdTimeSeries.php +++ /dev/null @@ -1,45 +0,0 @@ - - * $monitoringService = new Google_Service_Monitoring(...); - * $collectdTimeSeries = $monitoringService->collectdTimeSeries; - * - */ -class Google_Service_Monitoring_Resource_ProjectsCollectdTimeSeries extends Google_Service_Resource -{ - /** - * Stackdriver Monitoring Agent only: Creates a new time series.This method is - * only for use by the Stackdriver Monitoring Agent. Use - * projects.timeSeries.create instead. (collectdTimeSeries.create) - * - * @param string $name The project in which to create the time series. The - * format is: projects/[PROJECT_ID_OR_NUMBER] - * @param Google_Service_Monitoring_CreateCollectdTimeSeriesRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Monitoring_CreateCollectdTimeSeriesResponse - */ - public function create($name, Google_Service_Monitoring_CreateCollectdTimeSeriesRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Monitoring_CreateCollectdTimeSeriesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Resource/ProjectsGroups.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Resource/ProjectsGroups.php deleted file mode 100644 index 65f06de3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Resource/ProjectsGroups.php +++ /dev/null @@ -1,134 +0,0 @@ - - * $monitoringService = new Google_Service_Monitoring(...); - * $groups = $monitoringService->groups; - * - */ -class Google_Service_Monitoring_Resource_ProjectsGroups extends Google_Service_Resource -{ - /** - * Creates a new group. (groups.create) - * - * @param string $name Required. The project in which to create the group. The - * format is: projects/[PROJECT_ID_OR_NUMBER] - * @param Google_Service_Monitoring_Group $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool validateOnly If true, validate this request but do not create - * the group. - * @return Google_Service_Monitoring_Group - */ - public function create($name, Google_Service_Monitoring_Group $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Monitoring_Group"); - } - /** - * Deletes an existing group. (groups.delete) - * - * @param string $name Required. The group to delete. The format is: - * projects/[PROJECT_ID_OR_NUMBER]/groups/[GROUP_ID] - * @param array $optParams Optional parameters. - * - * @opt_param bool recursive If this field is true, then the request means to - * delete a group with all its descendants. Otherwise, the request means to - * delete a group only when it has no descendants. The default value is false. - * @return Google_Service_Monitoring_MonitoringEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Monitoring_MonitoringEmpty"); - } - /** - * Gets a single group. (groups.get) - * - * @param string $name Required. The group to retrieve. The format is: - * projects/[PROJECT_ID_OR_NUMBER]/groups/[GROUP_ID] - * @param array $optParams Optional parameters. - * @return Google_Service_Monitoring_Group - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Monitoring_Group"); - } - /** - * Lists the existing groups. (groups.listProjectsGroups) - * - * @param string $name Required. The project whose groups are to be listed. The - * format is: projects/[PROJECT_ID_OR_NUMBER] - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken If this field is not empty then it must contain - * the next_page_token value returned by a previous call to this method. Using - * this field causes the method to return additional results from the previous - * method call. - * @opt_param int pageSize A positive number that is the maximum number of - * results to return. - * @opt_param string ancestorsOfGroup A group name. The format is: - * projects/[PROJECT_ID_OR_NUMBER]/groups/[GROUP_ID] Returns groups that are - * ancestors of the specified group. The groups are returned in order, starting - * with the immediate parent and ending with the most distant ancestor. If the - * specified group has no immediate parent, the results are empty. - * @opt_param string childrenOfGroup A group name. The format is: - * projects/[PROJECT_ID_OR_NUMBER]/groups/[GROUP_ID] Returns groups whose - * parent_name field contains the group name. If no groups have this parent, the - * results are empty. - * @opt_param string descendantsOfGroup A group name. The format is: - * projects/[PROJECT_ID_OR_NUMBER]/groups/[GROUP_ID] Returns the descendants of - * the specified group. This is a superset of the results returned by the - * children_of_group filter, and includes children-of-children, and so forth. - * @return Google_Service_Monitoring_ListGroupsResponse - */ - public function listProjectsGroups($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Monitoring_ListGroupsResponse"); - } - /** - * Updates an existing group. You can change any group attributes except name. - * (groups.update) - * - * @param string $name Output only. The name of this group. The format is: - * projects/[PROJECT_ID_OR_NUMBER]/groups/[GROUP_ID] When creating a group, this - * field is ignored and a new name is created consisting of the project - * specified in the call to CreateGroup and a unique [GROUP_ID] that is - * generated automatically. - * @param Google_Service_Monitoring_Group $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool validateOnly If true, validate this request but do not update - * the existing group. - * @return Google_Service_Monitoring_Group - */ - public function update($name, Google_Service_Monitoring_Group $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Monitoring_Group"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Resource/ProjectsGroupsMembers.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Resource/ProjectsGroupsMembers.php deleted file mode 100644 index f04399f1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Resource/ProjectsGroupsMembers.php +++ /dev/null @@ -1,59 +0,0 @@ - - * $monitoringService = new Google_Service_Monitoring(...); - * $members = $monitoringService->members; - * - */ -class Google_Service_Monitoring_Resource_ProjectsGroupsMembers extends Google_Service_Resource -{ - /** - * Lists the monitored resources that are members of a group. - * (members.listProjectsGroupsMembers) - * - * @param string $name Required. The group whose members are listed. The format - * is: projects/[PROJECT_ID_OR_NUMBER]/groups/[GROUP_ID] - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken If this field is not empty then it must contain - * the next_page_token value returned by a previous call to this method. Using - * this field causes the method to return additional results from the previous - * method call. - * @opt_param int pageSize A positive number that is the maximum number of - * results to return. - * @opt_param string interval.startTime Optional. The beginning of the time - * interval. The default value for the start time is the end time. The start - * time must not be later than the end time. - * @opt_param string interval.endTime Required. The end of the time interval. - * @opt_param string filter An optional list filter describing the members to be - * returned. The filter may reference the type, labels, and metadata of - * monitored resources that comprise the group. For example, to return only - * resources representing Compute Engine VM instances, use this filter: - * `resource.type = "gce_instance"` - * @return Google_Service_Monitoring_ListGroupMembersResponse - */ - public function listProjectsGroupsMembers($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Monitoring_ListGroupMembersResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Resource/ProjectsMetricDescriptors.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Resource/ProjectsMetricDescriptors.php deleted file mode 100644 index 8c830927..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Resource/ProjectsMetricDescriptors.php +++ /dev/null @@ -1,106 +0,0 @@ - - * $monitoringService = new Google_Service_Monitoring(...); - * $metricDescriptors = $monitoringService->metricDescriptors; - * - */ -class Google_Service_Monitoring_Resource_ProjectsMetricDescriptors extends Google_Service_Resource -{ - /** - * Creates a new metric descriptor. User-created metric descriptors define - * custom metrics. (metricDescriptors.create) - * - * @param string $name Required. The project on which to execute the request. - * The format is: projects/[PROJECT_ID_OR_NUMBER] - * @param Google_Service_Monitoring_MetricDescriptor $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Monitoring_MetricDescriptor - */ - public function create($name, Google_Service_Monitoring_MetricDescriptor $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Monitoring_MetricDescriptor"); - } - /** - * Deletes a metric descriptor. Only user-created custom metrics can be deleted. - * (metricDescriptors.delete) - * - * @param string $name Required. The metric descriptor on which to execute the - * request. The format is: - * projects/[PROJECT_ID_OR_NUMBER]/metricDescriptors/[METRIC_ID] An example of - * [METRIC_ID] is: "custom.googleapis.com/my_test_metric". - * @param array $optParams Optional parameters. - * @return Google_Service_Monitoring_MonitoringEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Monitoring_MonitoringEmpty"); - } - /** - * Gets a single metric descriptor. This method does not require a Stackdriver - * account. (metricDescriptors.get) - * - * @param string $name Required. The metric descriptor on which to execute the - * request. The format is: - * projects/[PROJECT_ID_OR_NUMBER]/metricDescriptors/[METRIC_ID] An example - * value of [METRIC_ID] is - * "compute.googleapis.com/instance/disk/read_bytes_count". - * @param array $optParams Optional parameters. - * @return Google_Service_Monitoring_MetricDescriptor - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Monitoring_MetricDescriptor"); - } - /** - * Lists metric descriptors that match a filter. This method does not require a - * Stackdriver account. (metricDescriptors.listProjectsMetricDescriptors) - * - * @param string $name Required. The project on which to execute the request. - * The format is: projects/[PROJECT_ID_OR_NUMBER] - * @param array $optParams Optional parameters. - * - * @opt_param int pageSize A positive number that is the maximum number of - * results to return. - * @opt_param string filter If this field is empty, all custom and system- - * defined metric descriptors are returned. Otherwise, the filter specifies - * which metric descriptors are to be returned. For example, the following - * filter matches all custom metrics: metric.type = - * starts_with("custom.googleapis.com/") - * @opt_param string pageToken If this field is not empty then it must contain - * the nextPageToken value returned by a previous call to this method. Using - * this field causes the method to return additional results from the previous - * method call. - * @return Google_Service_Monitoring_ListMetricDescriptorsResponse - */ - public function listProjectsMetricDescriptors($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Monitoring_ListMetricDescriptorsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Resource/ProjectsMonitoredResourceDescriptors.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Resource/ProjectsMonitoredResourceDescriptors.php deleted file mode 100644 index 07e12c29..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Resource/ProjectsMonitoredResourceDescriptors.php +++ /dev/null @@ -1,73 +0,0 @@ - - * $monitoringService = new Google_Service_Monitoring(...); - * $monitoredResourceDescriptors = $monitoringService->monitoredResourceDescriptors; - * - */ -class Google_Service_Monitoring_Resource_ProjectsMonitoredResourceDescriptors extends Google_Service_Resource -{ - /** - * Gets a single monitored resource descriptor. This method does not require a - * Stackdriver account. (monitoredResourceDescriptors.get) - * - * @param string $name Required. The monitored resource descriptor to get. The - * format is: - * projects/[PROJECT_ID_OR_NUMBER]/monitoredResourceDescriptors/[RESOURCE_TYPE] - * The [RESOURCE_TYPE] is a predefined type, such as cloudsql_database. - * @param array $optParams Optional parameters. - * @return Google_Service_Monitoring_MonitoredResourceDescriptor - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Monitoring_MonitoredResourceDescriptor"); - } - /** - * Lists monitored resource descriptors that match a filter. This method does - * not require a Stackdriver account. - * (monitoredResourceDescriptors.listProjectsMonitoredResourceDescriptors) - * - * @param string $name Required. The project on which to execute the request. - * The format is: projects/[PROJECT_ID_OR_NUMBER] - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken If this field is not empty then it must contain - * the nextPageToken value returned by a previous call to this method. Using - * this field causes the method to return additional results from the previous - * method call. - * @opt_param int pageSize A positive number that is the maximum number of - * results to return. - * @opt_param string filter An optional filter describing the descriptors to be - * returned. The filter can reference the descriptor's type and labels. For - * example, the following filter returns only Google Compute Engine descriptors - * that have an id label: resource.type = starts_with("gce_") AND - * resource.label:id - * @return Google_Service_Monitoring_ListMonitoredResourceDescriptorsResponse - */ - public function listProjectsMonitoredResourceDescriptors($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Monitoring_ListMonitoredResourceDescriptorsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Resource/ProjectsNotificationChannelDescriptors.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Resource/ProjectsNotificationChannelDescriptors.php deleted file mode 100644 index 5283b703..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Resource/ProjectsNotificationChannelDescriptors.php +++ /dev/null @@ -1,71 +0,0 @@ - - * $monitoringService = new Google_Service_Monitoring(...); - * $notificationChannelDescriptors = $monitoringService->notificationChannelDescriptors; - * - */ -class Google_Service_Monitoring_Resource_ProjectsNotificationChannelDescriptors extends Google_Service_Resource -{ - /** - * Gets a single channel descriptor. The descriptor indicates which fields are - * expected / permitted for a notification channel of the given type. - * (notificationChannelDescriptors.get) - * - * @param string $name Required. The channel type for which to execute the - * request. The format is: - * projects/[PROJECT_ID_OR_NUMBER]/notificationChannelDescriptors/[CHANNEL_TYPE] - * @param array $optParams Optional parameters. - * @return Google_Service_Monitoring_NotificationChannelDescriptor - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Monitoring_NotificationChannelDescriptor"); - } - /** - * Lists the descriptors for supported channel types. The use of descriptors - * makes it possible for new channel types to be dynamically added. - * (notificationChannelDescriptors.listProjectsNotificationChannelDescriptors) - * - * @param string $name Required. The REST resource name of the parent from which - * to retrieve the notification channel descriptors. The expected syntax is: - * projects/[PROJECT_ID_OR_NUMBER] Note that this names the parent container in - * which to look for the descriptors; to retrieve a single descriptor by name, - * use the GetNotificationChannelDescriptor operation, instead. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken If non-empty, page_token must contain a value - * returned as the next_page_token in a previous response to request the next - * set of results. - * @opt_param int pageSize The maximum number of results to return in a single - * response. If not set to a positive number, a reasonable value will be chosen - * by the service. - * @return Google_Service_Monitoring_ListNotificationChannelDescriptorsResponse - */ - public function listProjectsNotificationChannelDescriptors($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Monitoring_ListNotificationChannelDescriptorsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Resource/ProjectsNotificationChannels.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Resource/ProjectsNotificationChannels.php deleted file mode 100644 index f9d46599..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Resource/ProjectsNotificationChannels.php +++ /dev/null @@ -1,208 +0,0 @@ - - * $monitoringService = new Google_Service_Monitoring(...); - * $notificationChannels = $monitoringService->notificationChannels; - * - */ -class Google_Service_Monitoring_Resource_ProjectsNotificationChannels extends Google_Service_Resource -{ - /** - * Creates a new notification channel, representing a single notification - * endpoint such as an email address, SMS number, or PagerDuty service. - * (notificationChannels.create) - * - * @param string $name Required. The project on which to execute the request. - * The format is: projects/[PROJECT_ID_OR_NUMBER] This names the container into - * which the channel will be written, this does not name the newly created - * channel. The resulting channel's name will have a normalized version of this - * field as a prefix, but will add /notificationChannels/[CHANNEL_ID] to - * identify the channel. - * @param Google_Service_Monitoring_NotificationChannel $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Monitoring_NotificationChannel - */ - public function create($name, Google_Service_Monitoring_NotificationChannel $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Monitoring_NotificationChannel"); - } - /** - * Deletes a notification channel. (notificationChannels.delete) - * - * @param string $name Required. The channel for which to execute the request. - * The format is: - * projects/[PROJECT_ID_OR_NUMBER]/notificationChannels/[CHANNEL_ID] - * @param array $optParams Optional parameters. - * - * @opt_param bool force If true, the notification channel will be deleted - * regardless of its use in alert policies (the policies will be updated to - * remove the channel). If false, channels that are still referenced by an - * existing alerting policy will fail to be deleted in a delete operation. - * @return Google_Service_Monitoring_MonitoringEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Monitoring_MonitoringEmpty"); - } - /** - * Gets a single notification channel. The channel includes the relevant - * configuration details with which the channel was created. However, the - * response may truncate or omit passwords, API keys, or other private key - * matter and thus the response may not be 100% identical to the information - * that was supplied in the call to the create method. - * (notificationChannels.get) - * - * @param string $name Required. The channel for which to execute the request. - * The format is: - * projects/[PROJECT_ID_OR_NUMBER]/notificationChannels/[CHANNEL_ID] - * @param array $optParams Optional parameters. - * @return Google_Service_Monitoring_NotificationChannel - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Monitoring_NotificationChannel"); - } - /** - * Requests a verification code for an already verified channel that can then be - * used in a call to VerifyNotificationChannel() on a different channel with an - * equivalent identity in the same or in a different project. This makes it - * possible to copy a channel between projects without requiring manual - * reverification of the channel. If the channel is not in the verified state, - * this method will fail (in other words, this may only be used if the - * SendNotificationChannelVerificationCode and VerifyNotificationChannel paths - * have already been used to put the given channel into the verified - * state).There is no guarantee that the verification codes returned by this - * method will be of a similar structure or form as the ones that are delivered - * to the channel via SendNotificationChannelVerificationCode; while - * VerifyNotificationChannel() will recognize both the codes delivered via - * SendNotificationChannelVerificationCode() and returned from - * GetNotificationChannelVerificationCode(), it is typically the case that the - * verification codes delivered via SendNotificationChannelVerificationCode() - * will be shorter and also have a shorter expiration (e.g. codes such as - * "G-123456") whereas GetVerificationCode() will typically return a much - * longer, websafe base 64 encoded string that has a longer expiration time. - * (notificationChannels.getVerificationCode) - * - * @param string $name Required. The notification channel for which a - * verification code is to be generated and retrieved. This must name a channel - * that is already verified; if the specified channel is not verified, the - * request will fail. - * @param Google_Service_Monitoring_GetNotificationChannelVerificationCodeRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Monitoring_GetNotificationChannelVerificationCodeResponse - */ - public function getVerificationCode($name, Google_Service_Monitoring_GetNotificationChannelVerificationCodeRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('getVerificationCode', array($params), "Google_Service_Monitoring_GetNotificationChannelVerificationCodeResponse"); - } - /** - * Lists the notification channels that have been created for the project. - * (notificationChannels.listProjectsNotificationChannels) - * - * @param string $name Required. The project on which to execute the request. - * The format is: projects/[PROJECT_ID_OR_NUMBER] This names the container in - * which to look for the notification channels; it does not name a specific - * channel. To query a specific channel by REST resource name, use the - * GetNotificationChannel operation. - * @param array $optParams Optional parameters. - * - * @opt_param string filter If provided, this field specifies the criteria that - * must be met by notification channels to be included in the response.For more - * details, see sorting and filtering. - * @opt_param string orderBy A comma-separated list of fields by which to sort - * the result. Supports the same set of fields as in filter. Entries can be - * prefixed with a minus sign to sort in descending rather than ascending - * order.For more details, see sorting and filtering. - * @opt_param string pageToken If non-empty, page_token must contain a value - * returned as the next_page_token in a previous response to request the next - * set of results. - * @opt_param int pageSize The maximum number of results to return in a single - * response. If not set to a positive number, a reasonable value will be chosen - * by the service. - * @return Google_Service_Monitoring_ListNotificationChannelsResponse - */ - public function listProjectsNotificationChannels($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Monitoring_ListNotificationChannelsResponse"); - } - /** - * Updates a notification channel. Fields not specified in the field mask remain - * unchanged. (notificationChannels.patch) - * - * @param string $name The full REST resource name for this channel. The format - * is: projects/[PROJECT_ID_OR_NUMBER]/notificationChannels/[CHANNEL_ID] The - * [CHANNEL_ID] is automatically assigned by the server on creation. - * @param Google_Service_Monitoring_NotificationChannel $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask The fields to update. - * @return Google_Service_Monitoring_NotificationChannel - */ - public function patch($name, Google_Service_Monitoring_NotificationChannel $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Monitoring_NotificationChannel"); - } - /** - * Causes a verification code to be delivered to the channel. The code can then - * be supplied in VerifyNotificationChannel to verify the channel. - * (notificationChannels.sendVerificationCode) - * - * @param string $name Required. The notification channel to which to send a - * verification code. - * @param Google_Service_Monitoring_SendNotificationChannelVerificationCodeRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Monitoring_MonitoringEmpty - */ - public function sendVerificationCode($name, Google_Service_Monitoring_SendNotificationChannelVerificationCodeRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('sendVerificationCode', array($params), "Google_Service_Monitoring_MonitoringEmpty"); - } - /** - * Verifies a NotificationChannel by proving receipt of the code delivered to - * the channel as a result of calling SendNotificationChannelVerificationCode. - * (notificationChannels.verify) - * - * @param string $name Required. The notification channel to verify. - * @param Google_Service_Monitoring_VerifyNotificationChannelRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Monitoring_NotificationChannel - */ - public function verify($name, Google_Service_Monitoring_VerifyNotificationChannelRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('verify', array($params), "Google_Service_Monitoring_NotificationChannel"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Resource/ProjectsTimeSeries.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Resource/ProjectsTimeSeries.php deleted file mode 100644 index 17192ff3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Resource/ProjectsTimeSeries.php +++ /dev/null @@ -1,128 +0,0 @@ - - * $monitoringService = new Google_Service_Monitoring(...); - * $timeSeries = $monitoringService->timeSeries; - * - */ -class Google_Service_Monitoring_Resource_ProjectsTimeSeries extends Google_Service_Resource -{ - /** - * Creates or adds data to one or more time series. The response is empty if all - * time series in the request were written. If any time series could not be - * written, a corresponding failure message is included in the error response. - * (timeSeries.create) - * - * @param string $name Required. The project on which to execute the request. - * The format is: projects/[PROJECT_ID_OR_NUMBER] - * @param Google_Service_Monitoring_CreateTimeSeriesRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Monitoring_MonitoringEmpty - */ - public function create($name, Google_Service_Monitoring_CreateTimeSeriesRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Monitoring_MonitoringEmpty"); - } - /** - * Lists time series that match a filter. This method does not require a - * Stackdriver account. (timeSeries.listProjectsTimeSeries) - * - * @param string $name Required. The project on which to execute the request. - * The format is: projects/[PROJECT_ID_OR_NUMBER] - * @param array $optParams Optional parameters. - * - * @opt_param string interval.endTime Required. The end of the time interval. - * @opt_param string aggregation.alignmentPeriod The alignment_period specifies - * a time interval, in seconds, that is used to divide the data in all the time - * series into consistent blocks of time. This will be done before the per- - * series aligner can be applied to the data.The value must be at least 60 - * seconds. If a per-series aligner other than ALIGN_NONE is specified, this - * field is required or an error is returned. If no per-series aligner is - * specified, or the aligner ALIGN_NONE is specified, then this field is - * ignored. - * @opt_param int pageSize A positive number that is the maximum number of - * results to return. If page_size is empty or more than 100,000 results, the - * effective page_size is 100,000 results. If view is set to FULL, this is the - * maximum number of Points returned. If view is set to HEADERS, this is the - * maximum number of TimeSeries returned. - * @opt_param string orderBy Unsupported: must be left blank. The points in each - * time series are currently returned in reverse time order (most recent to - * oldest). - * @opt_param string aggregation.crossSeriesReducer The reduction operation to - * be used to combine time series into a single time series, where the value of - * each data point in the resulting series is a function of all the already - * aligned values in the input time series.Not all reducer operations can be - * applied to all time series. The valid choices depend on the metric_kind and - * the value_type of the original time series. Reduction can yield a time series - * with a different metric_kind or value_type than the input time series.Time - * series data must first be aligned (see per_series_aligner) in order to - * perform cross-time series reduction. If cross_series_reducer is specified, - * then per_series_aligner must be specified, and must not be ALIGN_NONE. An - * alignment_period must also be specified; otherwise, an error is returned. - * @opt_param string filter Required. A monitoring filter that specifies which - * time series should be returned. The filter must specify a single metric type, - * and can additionally specify metric labels and other information. For - * example: metric.type = "compute.googleapis.com/instance/cpu/usage_time" AND - * metric.labels.instance_name = "my-instance-name" - * @opt_param string aggregation.perSeriesAligner An Aligner describes how to - * bring the data points in a single time series into temporal alignment. Except - * for ALIGN_NONE, all alignments cause all the data points in an - * alignment_period to be mathematically grouped together, resulting in a single - * data point for each alignment_period with end timestamp at the end of the - * period.Not all alignment operations may be applied to all time series. The - * valid choices depend on the metric_kind and value_type of the original time - * series. Alignment can change the metric_kind or the value_type of the time - * series.Time series data must be aligned in order to perform cross-time series - * reduction. If cross_series_reducer is specified, then per_series_aligner must - * be specified and not equal to ALIGN_NONE and alignment_period must be - * specified; otherwise, an error is returned. - * @opt_param string pageToken If this field is not empty then it must contain - * the nextPageToken value returned by a previous call to this method. Using - * this field causes the method to return additional results from the previous - * method call. - * @opt_param string interval.startTime Optional. The beginning of the time - * interval. The default value for the start time is the end time. The start - * time must not be later than the end time. - * @opt_param string view Required. Specifies which information is returned - * about the time series. - * @opt_param string aggregation.groupByFields The set of fields to preserve - * when cross_series_reducer is specified. The group_by_fields determine how the - * time series are partitioned into subsets prior to applying the aggregation - * operation. Each subset contains time series that have the same value for each - * of the grouping fields. Each individual time series is a member of exactly - * one subset. The cross_series_reducer is applied to each subset of time - * series. It is not possible to reduce across different resource types, so this - * field implicitly contains resource.type. Fields not specified in - * group_by_fields are aggregated away. If group_by_fields is not specified and - * all the time series have the same resource type, then the time series are - * aggregated into a single output time series. If cross_series_reducer is not - * defined, this field is ignored. - * @return Google_Service_Monitoring_ListTimeSeriesResponse - */ - public function listProjectsTimeSeries($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Monitoring_ListTimeSeriesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Resource/ProjectsUptimeCheckConfigs.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Resource/ProjectsUptimeCheckConfigs.php deleted file mode 100644 index 692ad2f6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Resource/ProjectsUptimeCheckConfigs.php +++ /dev/null @@ -1,128 +0,0 @@ - - * $monitoringService = new Google_Service_Monitoring(...); - * $uptimeCheckConfigs = $monitoringService->uptimeCheckConfigs; - * - */ -class Google_Service_Monitoring_Resource_ProjectsUptimeCheckConfigs extends Google_Service_Resource -{ - /** - * Creates a new Uptime check configuration. (uptimeCheckConfigs.create) - * - * @param string $parent Required. The project in which to create the Uptime - * check. The format is: projects/[PROJECT_ID_OR_NUMBER] - * @param Google_Service_Monitoring_UptimeCheckConfig $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Monitoring_UptimeCheckConfig - */ - public function create($parent, Google_Service_Monitoring_UptimeCheckConfig $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Monitoring_UptimeCheckConfig"); - } - /** - * Deletes an Uptime check configuration. Note that this method will fail if the - * Uptime check configuration is referenced by an alert policy or other - * dependent configs that would be rendered invalid by the deletion. - * (uptimeCheckConfigs.delete) - * - * @param string $name Required. The Uptime check configuration to delete. The - * format is: - * projects/[PROJECT_ID_OR_NUMBER]/uptimeCheckConfigs/[UPTIME_CHECK_ID] - * @param array $optParams Optional parameters. - * @return Google_Service_Monitoring_MonitoringEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Monitoring_MonitoringEmpty"); - } - /** - * Gets a single Uptime check configuration. (uptimeCheckConfigs.get) - * - * @param string $name Required. The Uptime check configuration to retrieve. The - * format is: - * projects/[PROJECT_ID_OR_NUMBER]/uptimeCheckConfigs/[UPTIME_CHECK_ID] - * @param array $optParams Optional parameters. - * @return Google_Service_Monitoring_UptimeCheckConfig - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Monitoring_UptimeCheckConfig"); - } - /** - * Lists the existing valid Uptime check configurations for the project (leaving - * out any invalid configurations). - * (uptimeCheckConfigs.listProjectsUptimeCheckConfigs) - * - * @param string $parent Required. The project whose Uptime check configurations - * are listed. The format is: projects/[PROJECT_ID_OR_NUMBER] - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken If this field is not empty then it must contain - * the nextPageToken value returned by a previous call to this method. Using - * this field causes the method to return more results from the previous method - * call. - * @opt_param int pageSize The maximum number of results to return in a single - * response. The server may further constrain the maximum number of results - * returned in a single page. If the page_size is <=0, the server will decide - * the number of results to be returned. - * @return Google_Service_Monitoring_ListUptimeCheckConfigsResponse - */ - public function listProjectsUptimeCheckConfigs($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Monitoring_ListUptimeCheckConfigsResponse"); - } - /** - * Updates an Uptime check configuration. You can either replace the entire - * configuration with a new one or replace only certain fields in the current - * configuration by specifying the fields to be updated via updateMask. Returns - * the updated configuration. (uptimeCheckConfigs.patch) - * - * @param string $name A unique resource name for this Uptime check - * configuration. The format is: - * projects/[PROJECT_ID_OR_NUMBER]/uptimeCheckConfigs/[UPTIME_CHECK_ID] This - * field should be omitted when creating the Uptime check configuration; on - * create, the resource name is assigned by the server and included in the - * response. - * @param Google_Service_Monitoring_UptimeCheckConfig $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Optional. If present, only the listed fields in - * the current Uptime check configuration are updated with values from the new - * configuration. If this field is empty, then the current configuration is - * completely replaced with the new configuration. - * @return Google_Service_Monitoring_UptimeCheckConfig - */ - public function patch($name, Google_Service_Monitoring_UptimeCheckConfig $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Monitoring_UptimeCheckConfig"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Resource/Services.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Resource/Services.php deleted file mode 100644 index 426c207d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Resource/Services.php +++ /dev/null @@ -1,123 +0,0 @@ - - * $monitoringService = new Google_Service_Monitoring(...); - * $services = $monitoringService->services; - * - */ -class Google_Service_Monitoring_Resource_Services extends Google_Service_Resource -{ - /** - * Create a Service. (services.create) - * - * @param string $parent Required. Resource name of the parent workspace. The - * format is: projects/[PROJECT_ID_OR_NUMBER] - * @param Google_Service_Monitoring_Service $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string serviceId Optional. The Service id to use for this Service. - * If omitted, an id will be generated instead. Must match the pattern - * [a-z0-9\-]+ - * @return Google_Service_Monitoring_Service - */ - public function create($parent, Google_Service_Monitoring_Service $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Monitoring_Service"); - } - /** - * Soft delete this Service. (services.delete) - * - * @param string $name Required. Resource name of the Service to delete. The - * format is: projects/[PROJECT_ID_OR_NUMBER]/services/[SERVICE_ID] - * @param array $optParams Optional parameters. - * @return Google_Service_Monitoring_MonitoringEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Monitoring_MonitoringEmpty"); - } - /** - * Get the named Service. (services.get) - * - * @param string $name Required. Resource name of the Service. The format is: - * projects/[PROJECT_ID_OR_NUMBER]/services/[SERVICE_ID] - * @param array $optParams Optional parameters. - * @return Google_Service_Monitoring_Service - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Monitoring_Service"); - } - /** - * List Services for this workspace. (services.listServices) - * - * @param string $parent Required. Resource name of the parent containing the - * listed services, either a project or Stackdriver Account (workspace). The - * formats are: projects/[PROJECT_ID_OR_NUMBER] workspaces/[HOST_PROJECT_ID] - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken If this field is not empty then it must contain - * the nextPageToken value returned by a previous call to this method. Using - * this field causes the method to return additional results from the previous - * method call. - * @opt_param int pageSize A non-negative number that is the maximum number of - * results to return. When 0, use default page size. - * @opt_param string filter A filter specifying what Services to return. The - * filter currently supports the following fields: - `identifier_case` - - * `app_engine.module_id` - `cloud_endpoints.service` - `cluster_istio.location` - * - `cluster_istio.cluster_name` - `cluster_istio.service_namespace` - - * `cluster_istio.service_name` identifier_case refers to which option in the - * identifier oneof is populated. For example, the filter identifier_case = - * "CUSTOM" would match all services with a value for the custom field. Valid - * options are "CUSTOM", "APP_ENGINE", "CLOUD_ENDPOINTS", and "CLUSTER_ISTIO". - * @return Google_Service_Monitoring_ListServicesResponse - */ - public function listServices($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Monitoring_ListServicesResponse"); - } - /** - * Update this Service. (services.patch) - * - * @param string $name Resource name for this Service. The format is: - * projects/[PROJECT_ID_OR_NUMBER]/services/[SERVICE_ID} - * @param Google_Service_Monitoring_Service $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask A set of field paths defining which fields to - * use for the update. - * @return Google_Service_Monitoring_Service - */ - public function patch($name, Google_Service_Monitoring_Service $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Monitoring_Service"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Resource/ServicesServiceLevelObjectives.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Resource/ServicesServiceLevelObjectives.php deleted file mode 100644 index e6eb5950..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Resource/ServicesServiceLevelObjectives.php +++ /dev/null @@ -1,130 +0,0 @@ - - * $monitoringService = new Google_Service_Monitoring(...); - * $serviceLevelObjectives = $monitoringService->serviceLevelObjectives; - * - */ -class Google_Service_Monitoring_Resource_ServicesServiceLevelObjectives extends Google_Service_Resource -{ - /** - * Create a ServiceLevelObjective for the given Service. - * (serviceLevelObjectives.create) - * - * @param string $parent Required. Resource name of the parent Service. The - * format is: projects/[PROJECT_ID_OR_NUMBER]/services/[SERVICE_ID] - * @param Google_Service_Monitoring_ServiceLevelObjective $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string serviceLevelObjectiveId Optional. The ServiceLevelObjective - * id to use for this ServiceLevelObjective. If omitted, an id will be generated - * instead. Must match the pattern [a-z0-9\-]+ - * @return Google_Service_Monitoring_ServiceLevelObjective - */ - public function create($parent, Google_Service_Monitoring_ServiceLevelObjective $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Monitoring_ServiceLevelObjective"); - } - /** - * Delete the given ServiceLevelObjective. (serviceLevelObjectives.delete) - * - * @param string $name Required. Resource name of the ServiceLevelObjective to - * delete. The format is: projects/[PROJECT_ID_OR_NUMBER]/services/[SERVICE_ID]/ - * serviceLevelObjectives/[SLO_NAME] - * @param array $optParams Optional parameters. - * @return Google_Service_Monitoring_MonitoringEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Monitoring_MonitoringEmpty"); - } - /** - * Get a ServiceLevelObjective by name. (serviceLevelObjectives.get) - * - * @param string $name Required. Resource name of the ServiceLevelObjective to - * get. The format is: projects/[PROJECT_ID_OR_NUMBER]/services/[SERVICE_ID]/ser - * viceLevelObjectives/[SLO_NAME] - * @param array $optParams Optional parameters. - * - * @opt_param string view View of the ServiceLevelObjective to return. If - * DEFAULT, return the ServiceLevelObjective as originally defined. If EXPLICIT - * and the ServiceLevelObjective is defined in terms of a BasicSli, replace the - * BasicSli with a RequestBasedSli spelling out how the SLI is computed. - * @return Google_Service_Monitoring_ServiceLevelObjective - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Monitoring_ServiceLevelObjective"); - } - /** - * List the ServiceLevelObjectives for the given Service. - * (serviceLevelObjectives.listServicesServiceLevelObjectives) - * - * @param string $parent Required. Resource name of the parent Service. The - * format is: projects/[PROJECT_ID_OR_NUMBER]/services/[SERVICE_ID] - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken If this field is not empty then it must contain - * the nextPageToken value returned by a previous call to this method. Using - * this field causes the method to return additional results from the previous - * method call. - * @opt_param int pageSize A non-negative number that is the maximum number of - * results to return. When 0, use default page size. - * @opt_param string view View of the ServiceLevelObjectives to return. If - * DEFAULT, return each ServiceLevelObjective as originally defined. If EXPLICIT - * and the ServiceLevelObjective is defined in terms of a BasicSli, replace the - * BasicSli with a RequestBasedSli spelling out how the SLI is computed. - * @opt_param string filter A filter specifying what ServiceLevelObjectives to - * return. - * @return Google_Service_Monitoring_ListServiceLevelObjectivesResponse - */ - public function listServicesServiceLevelObjectives($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Monitoring_ListServiceLevelObjectivesResponse"); - } - /** - * Update the given ServiceLevelObjective. (serviceLevelObjectives.patch) - * - * @param string $name Resource name for this ServiceLevelObjective. The format - * is: projects/[PROJECT_ID_OR_NUMBER]/services/[SERVICE_ID]/serviceLevelObjecti - * ves/[SLO_NAME] - * @param Google_Service_Monitoring_ServiceLevelObjective $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask A set of field paths defining which fields to - * use for the update. - * @return Google_Service_Monitoring_ServiceLevelObjective - */ - public function patch($name, Google_Service_Monitoring_ServiceLevelObjective $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Monitoring_ServiceLevelObjective"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Resource/UptimeCheckIps.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Resource/UptimeCheckIps.php deleted file mode 100644 index 04b786e7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Resource/UptimeCheckIps.php +++ /dev/null @@ -1,50 +0,0 @@ - - * $monitoringService = new Google_Service_Monitoring(...); - * $uptimeCheckIps = $monitoringService->uptimeCheckIps; - * - */ -class Google_Service_Monitoring_Resource_UptimeCheckIps extends Google_Service_Resource -{ - /** - * Returns the list of IP addresses that checkers run from - * (uptimeCheckIps.listUptimeCheckIps) - * - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken If this field is not empty then it must contain - * the nextPageToken value returned by a previous call to this method. Using - * this field causes the method to return more results from the previous method - * call. NOTE: this field is not yet implemented - * @opt_param int pageSize The maximum number of results to return in a single - * response. The server may further constrain the maximum number of results - * returned in a single page. If the page_size is <=0, the server will decide - * the number of results to be returned. NOTE: this field is not yet implemented - * @return Google_Service_Monitoring_ListUptimeCheckIpsResponse - */ - public function listUptimeCheckIps($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Monitoring_ListUptimeCheckIpsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/ResourceGroup.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/ResourceGroup.php deleted file mode 100644 index 44781963..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/ResourceGroup.php +++ /dev/null @@ -1,39 +0,0 @@ -groupId = $groupId; - } - public function getGroupId() - { - return $this->groupId; - } - public function setResourceType($resourceType) - { - $this->resourceType = $resourceType; - } - public function getResourceType() - { - return $this->resourceType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/SendNotificationChannelVerificationCodeRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/SendNotificationChannelVerificationCodeRequest.php deleted file mode 100644 index 0c152bd5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/SendNotificationChannelVerificationCodeRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -appEngine = $appEngine; - } - /** - * @return Google_Service_Monitoring_AppEngine - */ - public function getAppEngine() - { - return $this->appEngine; - } - /** - * @param Google_Service_Monitoring_CloudEndpoints - */ - public function setCloudEndpoints(Google_Service_Monitoring_CloudEndpoints $cloudEndpoints) - { - $this->cloudEndpoints = $cloudEndpoints; - } - /** - * @return Google_Service_Monitoring_CloudEndpoints - */ - public function getCloudEndpoints() - { - return $this->cloudEndpoints; - } - /** - * @param Google_Service_Monitoring_ClusterIstio - */ - public function setClusterIstio(Google_Service_Monitoring_ClusterIstio $clusterIstio) - { - $this->clusterIstio = $clusterIstio; - } - /** - * @return Google_Service_Monitoring_ClusterIstio - */ - public function getClusterIstio() - { - return $this->clusterIstio; - } - /** - * @param Google_Service_Monitoring_Custom - */ - public function setCustom(Google_Service_Monitoring_Custom $custom) - { - $this->custom = $custom; - } - /** - * @return Google_Service_Monitoring_Custom - */ - public function getCustom() - { - return $this->custom; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - /** - * @param Google_Service_Monitoring_MeshIstio - */ - public function setMeshIstio(Google_Service_Monitoring_MeshIstio $meshIstio) - { - $this->meshIstio = $meshIstio; - } - /** - * @return Google_Service_Monitoring_MeshIstio - */ - public function getMeshIstio() - { - return $this->meshIstio; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Monitoring_Telemetry - */ - public function setTelemetry(Google_Service_Monitoring_Telemetry $telemetry) - { - $this->telemetry = $telemetry; - } - /** - * @return Google_Service_Monitoring_Telemetry - */ - public function getTelemetry() - { - return $this->telemetry; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/ServiceLevelIndicator.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/ServiceLevelIndicator.php deleted file mode 100644 index 21a0b5a7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/ServiceLevelIndicator.php +++ /dev/null @@ -1,69 +0,0 @@ -basicSli = $basicSli; - } - /** - * @return Google_Service_Monitoring_BasicSli - */ - public function getBasicSli() - { - return $this->basicSli; - } - /** - * @param Google_Service_Monitoring_RequestBasedSli - */ - public function setRequestBased(Google_Service_Monitoring_RequestBasedSli $requestBased) - { - $this->requestBased = $requestBased; - } - /** - * @return Google_Service_Monitoring_RequestBasedSli - */ - public function getRequestBased() - { - return $this->requestBased; - } - /** - * @param Google_Service_Monitoring_WindowsBasedSli - */ - public function setWindowsBased(Google_Service_Monitoring_WindowsBasedSli $windowsBased) - { - $this->windowsBased = $windowsBased; - } - /** - * @return Google_Service_Monitoring_WindowsBasedSli - */ - public function getWindowsBased() - { - return $this->windowsBased; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/ServiceLevelObjective.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/ServiceLevelObjective.php deleted file mode 100644 index a97bd07b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/ServiceLevelObjective.php +++ /dev/null @@ -1,82 +0,0 @@ -calendarPeriod = $calendarPeriod; - } - public function getCalendarPeriod() - { - return $this->calendarPeriod; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setGoal($goal) - { - $this->goal = $goal; - } - public function getGoal() - { - return $this->goal; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setRollingPeriod($rollingPeriod) - { - $this->rollingPeriod = $rollingPeriod; - } - public function getRollingPeriod() - { - return $this->rollingPeriod; - } - /** - * @param Google_Service_Monitoring_ServiceLevelIndicator - */ - public function setServiceLevelIndicator(Google_Service_Monitoring_ServiceLevelIndicator $serviceLevelIndicator) - { - $this->serviceLevelIndicator = $serviceLevelIndicator; - } - /** - * @return Google_Service_Monitoring_ServiceLevelIndicator - */ - public function getServiceLevelIndicator() - { - return $this->serviceLevelIndicator; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/SourceContext.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/SourceContext.php deleted file mode 100644 index df6627be..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/SourceContext.php +++ /dev/null @@ -1,30 +0,0 @@ -fileName = $fileName; - } - public function getFileName() - { - return $this->fileName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/SpanContext.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/SpanContext.php deleted file mode 100644 index d2a7e0d4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/SpanContext.php +++ /dev/null @@ -1,30 +0,0 @@ -spanName = $spanName; - } - public function getSpanName() - { - return $this->spanName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Status.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Status.php deleted file mode 100644 index 331ad510..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Status.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/TcpCheck.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/TcpCheck.php deleted file mode 100644 index 2cdb6e43..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/TcpCheck.php +++ /dev/null @@ -1,30 +0,0 @@ -port = $port; - } - public function getPort() - { - return $this->port; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Telemetry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Telemetry.php deleted file mode 100644 index 6e77873d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Telemetry.php +++ /dev/null @@ -1,30 +0,0 @@ -resourceName = $resourceName; - } - public function getResourceName() - { - return $this->resourceName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/TimeInterval.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/TimeInterval.php deleted file mode 100644 index 6fe95511..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/TimeInterval.php +++ /dev/null @@ -1,39 +0,0 @@ -endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/TimeSeries.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/TimeSeries.php deleted file mode 100644 index 056a6741..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/TimeSeries.php +++ /dev/null @@ -1,104 +0,0 @@ -metadata = $metadata; - } - /** - * @return Google_Service_Monitoring_MonitoredResourceMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - /** - * @param Google_Service_Monitoring_Metric - */ - public function setMetric(Google_Service_Monitoring_Metric $metric) - { - $this->metric = $metric; - } - /** - * @return Google_Service_Monitoring_Metric - */ - public function getMetric() - { - return $this->metric; - } - public function setMetricKind($metricKind) - { - $this->metricKind = $metricKind; - } - public function getMetricKind() - { - return $this->metricKind; - } - /** - * @param Google_Service_Monitoring_Point - */ - public function setPoints($points) - { - $this->points = $points; - } - /** - * @return Google_Service_Monitoring_Point - */ - public function getPoints() - { - return $this->points; - } - /** - * @param Google_Service_Monitoring_MonitoredResource - */ - public function setResource(Google_Service_Monitoring_MonitoredResource $resource) - { - $this->resource = $resource; - } - /** - * @return Google_Service_Monitoring_MonitoredResource - */ - public function getResource() - { - return $this->resource; - } - public function setValueType($valueType) - { - $this->valueType = $valueType; - } - public function getValueType() - { - return $this->valueType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/TimeSeriesRatio.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/TimeSeriesRatio.php deleted file mode 100644 index 5f874980..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/TimeSeriesRatio.php +++ /dev/null @@ -1,48 +0,0 @@ -badServiceFilter = $badServiceFilter; - } - public function getBadServiceFilter() - { - return $this->badServiceFilter; - } - public function setGoodServiceFilter($goodServiceFilter) - { - $this->goodServiceFilter = $goodServiceFilter; - } - public function getGoodServiceFilter() - { - return $this->goodServiceFilter; - } - public function setTotalServiceFilter($totalServiceFilter) - { - $this->totalServiceFilter = $totalServiceFilter; - } - public function getTotalServiceFilter() - { - return $this->totalServiceFilter; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Trigger.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Trigger.php deleted file mode 100644 index 2dcdc27a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Trigger.php +++ /dev/null @@ -1,39 +0,0 @@ -count = $count; - } - public function getCount() - { - return $this->count; - } - public function setPercent($percent) - { - $this->percent = $percent; - } - public function getPercent() - { - return $this->percent; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Type.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Type.php deleted file mode 100644 index 69abf766..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/Type.php +++ /dev/null @@ -1,97 +0,0 @@ -fields = $fields; - } - /** - * @return Google_Service_Monitoring_Field - */ - public function getFields() - { - return $this->fields; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOneofs($oneofs) - { - $this->oneofs = $oneofs; - } - public function getOneofs() - { - return $this->oneofs; - } - /** - * @param Google_Service_Monitoring_Option - */ - public function setOptions($options) - { - $this->options = $options; - } - /** - * @return Google_Service_Monitoring_Option - */ - public function getOptions() - { - return $this->options; - } - /** - * @param Google_Service_Monitoring_SourceContext - */ - public function setSourceContext(Google_Service_Monitoring_SourceContext $sourceContext) - { - $this->sourceContext = $sourceContext; - } - /** - * @return Google_Service_Monitoring_SourceContext - */ - public function getSourceContext() - { - return $this->sourceContext; - } - public function setSyntax($syntax) - { - $this->syntax = $syntax; - } - public function getSyntax() - { - return $this->syntax; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/TypedValue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/TypedValue.php deleted file mode 100644 index 7a30eab7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/TypedValue.php +++ /dev/null @@ -1,73 +0,0 @@ -boolValue = $boolValue; - } - public function getBoolValue() - { - return $this->boolValue; - } - /** - * @param Google_Service_Monitoring_Distribution - */ - public function setDistributionValue(Google_Service_Monitoring_Distribution $distributionValue) - { - $this->distributionValue = $distributionValue; - } - /** - * @return Google_Service_Monitoring_Distribution - */ - public function getDistributionValue() - { - return $this->distributionValue; - } - public function setDoubleValue($doubleValue) - { - $this->doubleValue = $doubleValue; - } - public function getDoubleValue() - { - return $this->doubleValue; - } - public function setInt64Value($int64Value) - { - $this->int64Value = $int64Value; - } - public function getInt64Value() - { - return $this->int64Value; - } - public function setStringValue($stringValue) - { - $this->stringValue = $stringValue; - } - public function getStringValue() - { - return $this->stringValue; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/UptimeCheckConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/UptimeCheckConfig.php deleted file mode 100644 index bbfd4bc0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/UptimeCheckConfig.php +++ /dev/null @@ -1,172 +0,0 @@ -contentMatchers = $contentMatchers; - } - /** - * @return Google_Service_Monitoring_ContentMatcher - */ - public function getContentMatchers() - { - return $this->contentMatchers; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - /** - * @param Google_Service_Monitoring_HttpCheck - */ - public function setHttpCheck(Google_Service_Monitoring_HttpCheck $httpCheck) - { - $this->httpCheck = $httpCheck; - } - /** - * @return Google_Service_Monitoring_HttpCheck - */ - public function getHttpCheck() - { - return $this->httpCheck; - } - /** - * @param Google_Service_Monitoring_InternalChecker - */ - public function setInternalCheckers($internalCheckers) - { - $this->internalCheckers = $internalCheckers; - } - /** - * @return Google_Service_Monitoring_InternalChecker - */ - public function getInternalCheckers() - { - return $this->internalCheckers; - } - public function setIsInternal($isInternal) - { - $this->isInternal = $isInternal; - } - public function getIsInternal() - { - return $this->isInternal; - } - /** - * @param Google_Service_Monitoring_MonitoredResource - */ - public function setMonitoredResource(Google_Service_Monitoring_MonitoredResource $monitoredResource) - { - $this->monitoredResource = $monitoredResource; - } - /** - * @return Google_Service_Monitoring_MonitoredResource - */ - public function getMonitoredResource() - { - return $this->monitoredResource; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPeriod($period) - { - $this->period = $period; - } - public function getPeriod() - { - return $this->period; - } - /** - * @param Google_Service_Monitoring_ResourceGroup - */ - public function setResourceGroup(Google_Service_Monitoring_ResourceGroup $resourceGroup) - { - $this->resourceGroup = $resourceGroup; - } - /** - * @return Google_Service_Monitoring_ResourceGroup - */ - public function getResourceGroup() - { - return $this->resourceGroup; - } - public function setSelectedRegions($selectedRegions) - { - $this->selectedRegions = $selectedRegions; - } - public function getSelectedRegions() - { - return $this->selectedRegions; - } - /** - * @param Google_Service_Monitoring_TcpCheck - */ - public function setTcpCheck(Google_Service_Monitoring_TcpCheck $tcpCheck) - { - $this->tcpCheck = $tcpCheck; - } - /** - * @return Google_Service_Monitoring_TcpCheck - */ - public function getTcpCheck() - { - return $this->tcpCheck; - } - public function setTimeout($timeout) - { - $this->timeout = $timeout; - } - public function getTimeout() - { - return $this->timeout; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/UptimeCheckIp.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/UptimeCheckIp.php deleted file mode 100644 index 08753314..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/UptimeCheckIp.php +++ /dev/null @@ -1,48 +0,0 @@ -ipAddress = $ipAddress; - } - public function getIpAddress() - { - return $this->ipAddress; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/VerifyNotificationChannelRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/VerifyNotificationChannelRequest.php deleted file mode 100644 index 4e306927..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/VerifyNotificationChannelRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/WindowsBasedSli.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/WindowsBasedSli.php deleted file mode 100644 index ba9abcbe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Monitoring/WindowsBasedSli.php +++ /dev/null @@ -1,87 +0,0 @@ -goodBadMetricFilter = $goodBadMetricFilter; - } - public function getGoodBadMetricFilter() - { - return $this->goodBadMetricFilter; - } - /** - * @param Google_Service_Monitoring_PerformanceThreshold - */ - public function setGoodTotalRatioThreshold(Google_Service_Monitoring_PerformanceThreshold $goodTotalRatioThreshold) - { - $this->goodTotalRatioThreshold = $goodTotalRatioThreshold; - } - /** - * @return Google_Service_Monitoring_PerformanceThreshold - */ - public function getGoodTotalRatioThreshold() - { - return $this->goodTotalRatioThreshold; - } - /** - * @param Google_Service_Monitoring_MetricRange - */ - public function setMetricMeanInRange(Google_Service_Monitoring_MetricRange $metricMeanInRange) - { - $this->metricMeanInRange = $metricMeanInRange; - } - /** - * @return Google_Service_Monitoring_MetricRange - */ - public function getMetricMeanInRange() - { - return $this->metricMeanInRange; - } - /** - * @param Google_Service_Monitoring_MetricRange - */ - public function setMetricSumInRange(Google_Service_Monitoring_MetricRange $metricSumInRange) - { - $this->metricSumInRange = $metricSumInRange; - } - /** - * @return Google_Service_Monitoring_MetricRange - */ - public function getMetricSumInRange() - { - return $this->metricSumInRange; - } - public function setWindowPeriod($windowPeriod) - { - $this->windowPeriod = $windowPeriod; - } - public function getWindowPeriod() - { - return $this->windowPeriod; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Oauth2.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Oauth2.php deleted file mode 100644 index 80e65cc1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Oauth2.php +++ /dev/null @@ -1,149 +0,0 @@ - - * Obtains end-user authorization grants for use with other Google APIs.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Oauth2 extends Google_Service -{ - /** Associate you with your personal info on Google. */ - const PLUS_ME = - "https://www.googleapis.com/auth/plus.me"; - /** View your email address. */ - const USERINFO_EMAIL = - "https://www.googleapis.com/auth/userinfo.email"; - /** See your personal info, including any personal info you've made publicly available. */ - const USERINFO_PROFILE = - "https://www.googleapis.com/auth/userinfo.profile"; - - public $userinfo; - public $userinfo_v2_me; - private $base_methods; - /** - * Constructs the internal representation of the Oauth2 service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://www.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch/oauth2/v2'; - $this->version = 'v2'; - $this->serviceName = 'oauth2'; - - $this->userinfo = new Google_Service_Oauth2_Resource_Userinfo( - $this, - $this->serviceName, - 'userinfo', - array( - 'methods' => array( - 'get' => array( - 'path' => 'oauth2/v2/userinfo', - 'httpMethod' => 'GET', - 'parameters' => array(), - ), - ) - ) - ); - $this->userinfo_v2_me = new Google_Service_Oauth2_Resource_UserinfoV2Me( - $this, - $this->serviceName, - 'me', - array( - 'methods' => array( - 'get' => array( - 'path' => 'userinfo/v2/me', - 'httpMethod' => 'GET', - 'parameters' => array(), - ), - ) - ) - ); - $this->base_methods = new Google_Service_Resource( - $this, - $this->serviceName, - '', - array( - 'methods' => array( - 'getCertForOpenIdConnect' => array( - 'path' => 'oauth2/v2/certs', - 'httpMethod' => 'GET', - 'parameters' => array(), - ),'tokeninfo' => array( - 'path' => 'oauth2/v2/tokeninfo', - 'httpMethod' => 'POST', - 'parameters' => array( - 'access_token' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'id_token' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'token_handle' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } - /** - * (getCertForOpenIdConnect) - * - * @param array $optParams Optional parameters. - * @return Google_Service_Oauth2_Jwk - */ - public function getCertForOpenIdConnect($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->base_methods->call('getCertForOpenIdConnect', array($params), "Google_Service_Oauth2_Jwk"); - } - /** - * (tokeninfo) - * - * @param array $optParams Optional parameters. - * - * @opt_param string access_token - * @opt_param string id_token - * @opt_param string token_handle - * @return Google_Service_Oauth2_Tokeninfo - */ - public function tokeninfo($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->base_methods->call('tokeninfo', array($params), "Google_Service_Oauth2_Tokeninfo"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Oauth2/Jwk.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Oauth2/Jwk.php deleted file mode 100644 index 5f045450..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Oauth2/Jwk.php +++ /dev/null @@ -1,38 +0,0 @@ -keys = $keys; - } - /** - * @return Google_Service_Oauth2_JwkKeys - */ - public function getKeys() - { - return $this->keys; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Oauth2/JwkKeys.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Oauth2/JwkKeys.php deleted file mode 100644 index cf969f74..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Oauth2/JwkKeys.php +++ /dev/null @@ -1,75 +0,0 @@ -alg = $alg; - } - public function getAlg() - { - return $this->alg; - } - public function setE($e) - { - $this->e = $e; - } - public function getE() - { - return $this->e; - } - public function setKid($kid) - { - $this->kid = $kid; - } - public function getKid() - { - return $this->kid; - } - public function setKty($kty) - { - $this->kty = $kty; - } - public function getKty() - { - return $this->kty; - } - public function setN($n) - { - $this->n = $n; - } - public function getN() - { - return $this->n; - } - public function setUse($use) - { - $this->use = $use; - } - public function getUse() - { - return $this->use; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Oauth2/Resource/Userinfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Oauth2/Resource/Userinfo.php deleted file mode 100644 index d240763b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Oauth2/Resource/Userinfo.php +++ /dev/null @@ -1,40 +0,0 @@ - - * $oauth2Service = new Google_Service_Oauth2(...); - * $userinfo = $oauth2Service->userinfo; - * - */ -class Google_Service_Oauth2_Resource_Userinfo extends Google_Service_Resource -{ - /** - * (userinfo.get) - * - * @param array $optParams Optional parameters. - * @return Google_Service_Oauth2_Userinfoplus - */ - public function get($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Oauth2_Userinfoplus"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Oauth2/Resource/UserinfoV2.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Oauth2/Resource/UserinfoV2.php deleted file mode 100644 index e4fa8b30..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Oauth2/Resource/UserinfoV2.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $oauth2Service = new Google_Service_Oauth2(...); - * $v2 = $oauth2Service->v2; - * - */ -class Google_Service_Oauth2_Resource_UserinfoV2 extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Oauth2/Resource/UserinfoV2Me.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Oauth2/Resource/UserinfoV2Me.php deleted file mode 100644 index cf575e59..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Oauth2/Resource/UserinfoV2Me.php +++ /dev/null @@ -1,40 +0,0 @@ - - * $oauth2Service = new Google_Service_Oauth2(...); - * $me = $oauth2Service->me; - * - */ -class Google_Service_Oauth2_Resource_UserinfoV2Me extends Google_Service_Resource -{ - /** - * (me.get) - * - * @param array $optParams Optional parameters. - * @return Google_Service_Oauth2_Userinfoplus - */ - public function get($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Oauth2_Userinfoplus"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Oauth2/Tokeninfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Oauth2/Tokeninfo.php deleted file mode 100644 index 4dee6945..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Oauth2/Tokeninfo.php +++ /dev/null @@ -1,110 +0,0 @@ - "access_type", - "expiresIn" => "expires_in", - "issuedTo" => "issued_to", - "tokenHandle" => "token_handle", - "userId" => "user_id", - "verifiedEmail" => "verified_email", - ); - public $accessType; - public $audience; - public $email; - public $expiresIn; - public $issuedTo; - public $scope; - public $tokenHandle; - public $userId; - public $verifiedEmail; - - public function setAccessType($accessType) - { - $this->accessType = $accessType; - } - public function getAccessType() - { - return $this->accessType; - } - public function setAudience($audience) - { - $this->audience = $audience; - } - public function getAudience() - { - return $this->audience; - } - public function setEmail($email) - { - $this->email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setExpiresIn($expiresIn) - { - $this->expiresIn = $expiresIn; - } - public function getExpiresIn() - { - return $this->expiresIn; - } - public function setIssuedTo($issuedTo) - { - $this->issuedTo = $issuedTo; - } - public function getIssuedTo() - { - return $this->issuedTo; - } - public function setScope($scope) - { - $this->scope = $scope; - } - public function getScope() - { - return $this->scope; - } - public function setTokenHandle($tokenHandle) - { - $this->tokenHandle = $tokenHandle; - } - public function getTokenHandle() - { - return $this->tokenHandle; - } - public function setUserId($userId) - { - $this->userId = $userId; - } - public function getUserId() - { - return $this->userId; - } - public function setVerifiedEmail($verifiedEmail) - { - $this->verifiedEmail = $verifiedEmail; - } - public function getVerifiedEmail() - { - return $this->verifiedEmail; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Oauth2/Userinfoplus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Oauth2/Userinfoplus.php deleted file mode 100644 index ac6aa0e4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Oauth2/Userinfoplus.php +++ /dev/null @@ -1,125 +0,0 @@ - "family_name", - "givenName" => "given_name", - "verifiedEmail" => "verified_email", - ); - public $email; - public $familyName; - public $gender; - public $givenName; - public $hd; - public $id; - public $link; - public $locale; - public $name; - public $picture; - public $verifiedEmail; - - public function setEmail($email) - { - $this->email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setFamilyName($familyName) - { - $this->familyName = $familyName; - } - public function getFamilyName() - { - return $this->familyName; - } - public function setGender($gender) - { - $this->gender = $gender; - } - public function getGender() - { - return $this->gender; - } - public function setGivenName($givenName) - { - $this->givenName = $givenName; - } - public function getGivenName() - { - return $this->givenName; - } - public function setHd($hd) - { - $this->hd = $hd; - } - public function getHd() - { - return $this->hd; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setLink($link) - { - $this->link = $link; - } - public function getLink() - { - return $this->link; - } - public function setLocale($locale) - { - $this->locale = $locale; - } - public function getLocale() - { - return $this->locale; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPicture($picture) - { - $this->picture = $picture; - } - public function getPicture() - { - return $this->picture; - } - public function setVerifiedEmail($verifiedEmail) - { - $this->verifiedEmail = $verifiedEmail; - } - public function getVerifiedEmail() - { - return $this->verifiedEmail; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights.php deleted file mode 100644 index a9f6acd8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights.php +++ /dev/null @@ -1,102 +0,0 @@ - - * The PageSpeed Insights API lets you analyze the performance of your website - * with a simple API. It offers tailored suggestions for how you can optimize - * your site, and lets you easily integrate PageSpeed Insights analysis into - * your development tools and workflow.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_PagespeedInsights extends Google_Service -{ - /** Associate you with your personal info on Google. */ - const OPENID = - "openid"; - - public $pagespeedapi; - - /** - * Constructs the internal representation of the PagespeedInsights service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://pagespeedonline.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v5'; - $this->serviceName = 'pagespeedonline'; - - $this->pagespeedapi = new Google_Service_PagespeedInsights_Resource_Pagespeedapi( - $this, - $this->serviceName, - 'pagespeedapi', - array( - 'methods' => array( - 'runpagespeed' => array( - 'path' => 'pagespeedonline/v5/runPagespeed', - 'httpMethod' => 'GET', - 'parameters' => array( - 'strategy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'utm_source' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'category' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'utm_campaign' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'url' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'captchaToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/AuditRefs.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/AuditRefs.php deleted file mode 100644 index c269528a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/AuditRefs.php +++ /dev/null @@ -1,48 +0,0 @@ -group = $group; - } - public function getGroup() - { - return $this->group; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setWeight($weight) - { - $this->weight = $weight; - } - public function getWeight() - { - return $this->weight; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/Bucket.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/Bucket.php deleted file mode 100644 index 9d554ce1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/Bucket.php +++ /dev/null @@ -1,48 +0,0 @@ -max = $max; - } - public function getMax() - { - return $this->max; - } - public function setMin($min) - { - $this->min = $min; - } - public function getMin() - { - return $this->min; - } - public function setProportion($proportion) - { - $this->proportion = $proportion; - } - public function getProportion() - { - return $this->proportion; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/Categories.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/Categories.php deleted file mode 100644 index 355e8c43..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/Categories.php +++ /dev/null @@ -1,104 +0,0 @@ - "best-practices", - ); - protected $accessibilityType = 'Google_Service_PagespeedInsights_LighthouseCategoryV5'; - protected $accessibilityDataType = ''; - protected $bestPracticesType = 'Google_Service_PagespeedInsights_LighthouseCategoryV5'; - protected $bestPracticesDataType = ''; - protected $performanceType = 'Google_Service_PagespeedInsights_LighthouseCategoryV5'; - protected $performanceDataType = ''; - protected $pwaType = 'Google_Service_PagespeedInsights_LighthouseCategoryV5'; - protected $pwaDataType = ''; - protected $seoType = 'Google_Service_PagespeedInsights_LighthouseCategoryV5'; - protected $seoDataType = ''; - - /** - * @param Google_Service_PagespeedInsights_LighthouseCategoryV5 - */ - public function setAccessibility(Google_Service_PagespeedInsights_LighthouseCategoryV5 $accessibility) - { - $this->accessibility = $accessibility; - } - /** - * @return Google_Service_PagespeedInsights_LighthouseCategoryV5 - */ - public function getAccessibility() - { - return $this->accessibility; - } - /** - * @param Google_Service_PagespeedInsights_LighthouseCategoryV5 - */ - public function setBestPractices(Google_Service_PagespeedInsights_LighthouseCategoryV5 $bestPractices) - { - $this->bestPractices = $bestPractices; - } - /** - * @return Google_Service_PagespeedInsights_LighthouseCategoryV5 - */ - public function getBestPractices() - { - return $this->bestPractices; - } - /** - * @param Google_Service_PagespeedInsights_LighthouseCategoryV5 - */ - public function setPerformance(Google_Service_PagespeedInsights_LighthouseCategoryV5 $performance) - { - $this->performance = $performance; - } - /** - * @return Google_Service_PagespeedInsights_LighthouseCategoryV5 - */ - public function getPerformance() - { - return $this->performance; - } - /** - * @param Google_Service_PagespeedInsights_LighthouseCategoryV5 - */ - public function setPwa(Google_Service_PagespeedInsights_LighthouseCategoryV5 $pwa) - { - $this->pwa = $pwa; - } - /** - * @return Google_Service_PagespeedInsights_LighthouseCategoryV5 - */ - public function getPwa() - { - return $this->pwa; - } - /** - * @param Google_Service_PagespeedInsights_LighthouseCategoryV5 - */ - public function setSeo(Google_Service_PagespeedInsights_LighthouseCategoryV5 $seo) - { - $this->seo = $seo; - } - /** - * @return Google_Service_PagespeedInsights_LighthouseCategoryV5 - */ - public function getSeo() - { - return $this->seo; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/CategoryGroupV5.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/CategoryGroupV5.php deleted file mode 100644 index f85e1bdf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/CategoryGroupV5.php +++ /dev/null @@ -1,39 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/ConfigSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/ConfigSettings.php deleted file mode 100644 index 7ccf0005..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/ConfigSettings.php +++ /dev/null @@ -1,57 +0,0 @@ -channel = $channel; - } - public function getChannel() - { - return $this->channel; - } - public function setEmulatedFormFactor($emulatedFormFactor) - { - $this->emulatedFormFactor = $emulatedFormFactor; - } - public function getEmulatedFormFactor() - { - return $this->emulatedFormFactor; - } - public function setLocale($locale) - { - $this->locale = $locale; - } - public function getLocale() - { - return $this->locale; - } - public function setOnlyCategories($onlyCategories) - { - $this->onlyCategories = $onlyCategories; - } - public function getOnlyCategories() - { - return $this->onlyCategories; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/Environment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/Environment.php deleted file mode 100644 index ecca0474..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/Environment.php +++ /dev/null @@ -1,48 +0,0 @@ -benchmarkIndex = $benchmarkIndex; - } - public function getBenchmarkIndex() - { - return $this->benchmarkIndex; - } - public function setHostUserAgent($hostUserAgent) - { - $this->hostUserAgent = $hostUserAgent; - } - public function getHostUserAgent() - { - return $this->hostUserAgent; - } - public function setNetworkUserAgent($networkUserAgent) - { - $this->networkUserAgent = $networkUserAgent; - } - public function getNetworkUserAgent() - { - return $this->networkUserAgent; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/I18n.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/I18n.php deleted file mode 100644 index 8ac5745f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/I18n.php +++ /dev/null @@ -1,37 +0,0 @@ -rendererFormattedStrings = $rendererFormattedStrings; - } - /** - * @return Google_Service_PagespeedInsights_RendererFormattedStrings - */ - public function getRendererFormattedStrings() - { - return $this->rendererFormattedStrings; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/LighthouseAuditResultV5.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/LighthouseAuditResultV5.php deleted file mode 100644 index 14ec10c3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/LighthouseAuditResultV5.php +++ /dev/null @@ -1,120 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setDisplayValue($displayValue) - { - $this->displayValue = $displayValue; - } - public function getDisplayValue() - { - return $this->displayValue; - } - public function setErrorMessage($errorMessage) - { - $this->errorMessage = $errorMessage; - } - public function getErrorMessage() - { - return $this->errorMessage; - } - public function setExplanation($explanation) - { - $this->explanation = $explanation; - } - public function getExplanation() - { - return $this->explanation; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setNumericValue($numericValue) - { - $this->numericValue = $numericValue; - } - public function getNumericValue() - { - return $this->numericValue; - } - public function setScore($score) - { - $this->score = $score; - } - public function getScore() - { - return $this->score; - } - public function setScoreDisplayMode($scoreDisplayMode) - { - $this->scoreDisplayMode = $scoreDisplayMode; - } - public function getScoreDisplayMode() - { - return $this->scoreDisplayMode; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setWarnings($warnings) - { - $this->warnings = $warnings; - } - public function getWarnings() - { - return $this->warnings; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/LighthouseCategoryV5.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/LighthouseCategoryV5.php deleted file mode 100644 index 09c7e7b9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/LighthouseCategoryV5.php +++ /dev/null @@ -1,83 +0,0 @@ -auditRefs = $auditRefs; - } - /** - * @return Google_Service_PagespeedInsights_AuditRefs - */ - public function getAuditRefs() - { - return $this->auditRefs; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setManualDescription($manualDescription) - { - $this->manualDescription = $manualDescription; - } - public function getManualDescription() - { - return $this->manualDescription; - } - public function setScore($score) - { - $this->score = $score; - } - public function getScore() - { - return $this->score; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/LighthouseResultV5.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/LighthouseResultV5.php deleted file mode 100644 index 1b64a246..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/LighthouseResultV5.php +++ /dev/null @@ -1,220 +0,0 @@ -audits = $audits; - } - /** - * @return Google_Service_PagespeedInsights_LighthouseAuditResultV5 - */ - public function getAudits() - { - return $this->audits; - } - /** - * @param Google_Service_PagespeedInsights_Categories - */ - public function setCategories(Google_Service_PagespeedInsights_Categories $categories) - { - $this->categories = $categories; - } - /** - * @return Google_Service_PagespeedInsights_Categories - */ - public function getCategories() - { - return $this->categories; - } - /** - * @param Google_Service_PagespeedInsights_CategoryGroupV5 - */ - public function setCategoryGroups($categoryGroups) - { - $this->categoryGroups = $categoryGroups; - } - /** - * @return Google_Service_PagespeedInsights_CategoryGroupV5 - */ - public function getCategoryGroups() - { - return $this->categoryGroups; - } - /** - * @param Google_Service_PagespeedInsights_ConfigSettings - */ - public function setConfigSettings(Google_Service_PagespeedInsights_ConfigSettings $configSettings) - { - $this->configSettings = $configSettings; - } - /** - * @return Google_Service_PagespeedInsights_ConfigSettings - */ - public function getConfigSettings() - { - return $this->configSettings; - } - /** - * @param Google_Service_PagespeedInsights_Environment - */ - public function setEnvironment(Google_Service_PagespeedInsights_Environment $environment) - { - $this->environment = $environment; - } - /** - * @return Google_Service_PagespeedInsights_Environment - */ - public function getEnvironment() - { - return $this->environment; - } - public function setFetchTime($fetchTime) - { - $this->fetchTime = $fetchTime; - } - public function getFetchTime() - { - return $this->fetchTime; - } - public function setFinalUrl($finalUrl) - { - $this->finalUrl = $finalUrl; - } - public function getFinalUrl() - { - return $this->finalUrl; - } - /** - * @param Google_Service_PagespeedInsights_I18n - */ - public function setI18n(Google_Service_PagespeedInsights_I18n $i18n) - { - $this->i18n = $i18n; - } - /** - * @return Google_Service_PagespeedInsights_I18n - */ - public function getI18n() - { - return $this->i18n; - } - public function setLighthouseVersion($lighthouseVersion) - { - $this->lighthouseVersion = $lighthouseVersion; - } - public function getLighthouseVersion() - { - return $this->lighthouseVersion; - } - public function setRequestedUrl($requestedUrl) - { - $this->requestedUrl = $requestedUrl; - } - public function getRequestedUrl() - { - return $this->requestedUrl; - } - public function setRunWarnings($runWarnings) - { - $this->runWarnings = $runWarnings; - } - public function getRunWarnings() - { - return $this->runWarnings; - } - /** - * @param Google_Service_PagespeedInsights_RuntimeError - */ - public function setRuntimeError(Google_Service_PagespeedInsights_RuntimeError $runtimeError) - { - $this->runtimeError = $runtimeError; - } - /** - * @return Google_Service_PagespeedInsights_RuntimeError - */ - public function getRuntimeError() - { - return $this->runtimeError; - } - /** - * @param Google_Service_PagespeedInsights_StackPack - */ - public function setStackPacks($stackPacks) - { - $this->stackPacks = $stackPacks; - } - /** - * @return Google_Service_PagespeedInsights_StackPack - */ - public function getStackPacks() - { - return $this->stackPacks; - } - /** - * @param Google_Service_PagespeedInsights_Timing - */ - public function setTiming(Google_Service_PagespeedInsights_Timing $timing) - { - $this->timing = $timing; - } - /** - * @return Google_Service_PagespeedInsights_Timing - */ - public function getTiming() - { - return $this->timing; - } - public function setUserAgent($userAgent) - { - $this->userAgent = $userAgent; - } - public function getUserAgent() - { - return $this->userAgent; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/PagespeedApiLoadingExperienceV5.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/PagespeedApiLoadingExperienceV5.php deleted file mode 100644 index c58db9a1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/PagespeedApiLoadingExperienceV5.php +++ /dev/null @@ -1,68 +0,0 @@ - "initial_url", - "overallCategory" => "overall_category", - ); - public $id; - public $initialUrl; - protected $metricsType = 'Google_Service_PagespeedInsights_UserPageLoadMetricV5'; - protected $metricsDataType = 'map'; - public $overallCategory; - - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setInitialUrl($initialUrl) - { - $this->initialUrl = $initialUrl; - } - public function getInitialUrl() - { - return $this->initialUrl; - } - /** - * @param Google_Service_PagespeedInsights_UserPageLoadMetricV5 - */ - public function setMetrics($metrics) - { - $this->metrics = $metrics; - } - /** - * @return Google_Service_PagespeedInsights_UserPageLoadMetricV5 - */ - public function getMetrics() - { - return $this->metrics; - } - public function setOverallCategory($overallCategory) - { - $this->overallCategory = $overallCategory; - } - public function getOverallCategory() - { - return $this->overallCategory; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/PagespeedApiPagespeedResponseV5.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/PagespeedApiPagespeedResponseV5.php deleted file mode 100644 index ddcd48c4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/PagespeedApiPagespeedResponseV5.php +++ /dev/null @@ -1,121 +0,0 @@ -analysisUTCTimestamp = $analysisUTCTimestamp; - } - public function getAnalysisUTCTimestamp() - { - return $this->analysisUTCTimestamp; - } - public function setCaptchaResult($captchaResult) - { - $this->captchaResult = $captchaResult; - } - public function getCaptchaResult() - { - return $this->captchaResult; - } - 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; - } - /** - * @param Google_Service_PagespeedInsights_LighthouseResultV5 - */ - public function setLighthouseResult(Google_Service_PagespeedInsights_LighthouseResultV5 $lighthouseResult) - { - $this->lighthouseResult = $lighthouseResult; - } - /** - * @return Google_Service_PagespeedInsights_LighthouseResultV5 - */ - public function getLighthouseResult() - { - return $this->lighthouseResult; - } - /** - * @param Google_Service_PagespeedInsights_PagespeedApiLoadingExperienceV5 - */ - public function setLoadingExperience(Google_Service_PagespeedInsights_PagespeedApiLoadingExperienceV5 $loadingExperience) - { - $this->loadingExperience = $loadingExperience; - } - /** - * @return Google_Service_PagespeedInsights_PagespeedApiLoadingExperienceV5 - */ - public function getLoadingExperience() - { - return $this->loadingExperience; - } - /** - * @param Google_Service_PagespeedInsights_PagespeedApiLoadingExperienceV5 - */ - public function setOriginLoadingExperience(Google_Service_PagespeedInsights_PagespeedApiLoadingExperienceV5 $originLoadingExperience) - { - $this->originLoadingExperience = $originLoadingExperience; - } - /** - * @return Google_Service_PagespeedInsights_PagespeedApiLoadingExperienceV5 - */ - public function getOriginLoadingExperience() - { - return $this->originLoadingExperience; - } - /** - * @param Google_Service_PagespeedInsights_PagespeedVersion - */ - public function setVersion(Google_Service_PagespeedInsights_PagespeedVersion $version) - { - $this->version = $version; - } - /** - * @return Google_Service_PagespeedInsights_PagespeedVersion - */ - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/PagespeedVersion.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/PagespeedVersion.php deleted file mode 100644 index 1f68c7fe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/PagespeedVersion.php +++ /dev/null @@ -1,39 +0,0 @@ -major = $major; - } - public function getMajor() - { - return $this->major; - } - public function setMinor($minor) - { - $this->minor = $minor; - } - public function getMinor() - { - return $this->minor; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/RendererFormattedStrings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/RendererFormattedStrings.php deleted file mode 100644 index 1fb980af..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/RendererFormattedStrings.php +++ /dev/null @@ -1,165 +0,0 @@ -auditGroupExpandTooltip = $auditGroupExpandTooltip; - } - public function getAuditGroupExpandTooltip() - { - return $this->auditGroupExpandTooltip; - } - public function setCrcInitialNavigation($crcInitialNavigation) - { - $this->crcInitialNavigation = $crcInitialNavigation; - } - public function getCrcInitialNavigation() - { - return $this->crcInitialNavigation; - } - public function setCrcLongestDurationLabel($crcLongestDurationLabel) - { - $this->crcLongestDurationLabel = $crcLongestDurationLabel; - } - public function getCrcLongestDurationLabel() - { - return $this->crcLongestDurationLabel; - } - public function setErrorLabel($errorLabel) - { - $this->errorLabel = $errorLabel; - } - public function getErrorLabel() - { - return $this->errorLabel; - } - public function setErrorMissingAuditInfo($errorMissingAuditInfo) - { - $this->errorMissingAuditInfo = $errorMissingAuditInfo; - } - public function getErrorMissingAuditInfo() - { - return $this->errorMissingAuditInfo; - } - public function setLabDataTitle($labDataTitle) - { - $this->labDataTitle = $labDataTitle; - } - public function getLabDataTitle() - { - return $this->labDataTitle; - } - public function setLsPerformanceCategoryDescription($lsPerformanceCategoryDescription) - { - $this->lsPerformanceCategoryDescription = $lsPerformanceCategoryDescription; - } - public function getLsPerformanceCategoryDescription() - { - return $this->lsPerformanceCategoryDescription; - } - public function setManualAuditsGroupTitle($manualAuditsGroupTitle) - { - $this->manualAuditsGroupTitle = $manualAuditsGroupTitle; - } - public function getManualAuditsGroupTitle() - { - return $this->manualAuditsGroupTitle; - } - public function setNotApplicableAuditsGroupTitle($notApplicableAuditsGroupTitle) - { - $this->notApplicableAuditsGroupTitle = $notApplicableAuditsGroupTitle; - } - public function getNotApplicableAuditsGroupTitle() - { - return $this->notApplicableAuditsGroupTitle; - } - public function setOpportunityResourceColumnLabel($opportunityResourceColumnLabel) - { - $this->opportunityResourceColumnLabel = $opportunityResourceColumnLabel; - } - public function getOpportunityResourceColumnLabel() - { - return $this->opportunityResourceColumnLabel; - } - public function setOpportunitySavingsColumnLabel($opportunitySavingsColumnLabel) - { - $this->opportunitySavingsColumnLabel = $opportunitySavingsColumnLabel; - } - public function getOpportunitySavingsColumnLabel() - { - return $this->opportunitySavingsColumnLabel; - } - public function setPassedAuditsGroupTitle($passedAuditsGroupTitle) - { - $this->passedAuditsGroupTitle = $passedAuditsGroupTitle; - } - public function getPassedAuditsGroupTitle() - { - return $this->passedAuditsGroupTitle; - } - public function setScorescaleLabel($scorescaleLabel) - { - $this->scorescaleLabel = $scorescaleLabel; - } - public function getScorescaleLabel() - { - return $this->scorescaleLabel; - } - public function setToplevelWarningsMessage($toplevelWarningsMessage) - { - $this->toplevelWarningsMessage = $toplevelWarningsMessage; - } - public function getToplevelWarningsMessage() - { - return $this->toplevelWarningsMessage; - } - public function setVarianceDisclaimer($varianceDisclaimer) - { - $this->varianceDisclaimer = $varianceDisclaimer; - } - public function getVarianceDisclaimer() - { - return $this->varianceDisclaimer; - } - public function setWarningHeader($warningHeader) - { - $this->warningHeader = $warningHeader; - } - public function getWarningHeader() - { - return $this->warningHeader; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/Resource/Pagespeedapi.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/Resource/Pagespeedapi.php deleted file mode 100644 index ed09a265..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/Resource/Pagespeedapi.php +++ /dev/null @@ -1,53 +0,0 @@ - - * $pagespeedonlineService = new Google_Service_PagespeedInsights(...); - * $pagespeedapi = $pagespeedonlineService->pagespeedapi; - * - */ -class Google_Service_PagespeedInsights_Resource_Pagespeedapi extends Google_Service_Resource -{ - /** - * Runs PageSpeed analysis on the page at the specified URL, and returns - * PageSpeed scores, a list of suggestions to make that page faster, and other - * information. (pagespeedapi.runpagespeed) - * - * @param array $optParams Optional parameters. - * - * @opt_param string strategy The analysis strategy (desktop or mobile) to use, - * and desktop is the default - * @opt_param string utm_source Campaign source for analytics. - * @opt_param string category A Lighthouse category to run; if none are given, - * only Performance category will be run - * @opt_param string locale The locale used to localize formatted results - * @opt_param string utm_campaign Campaign name for analytics. - * @opt_param string url The URL to fetch and analyze - * @opt_param string captchaToken The captcha token passed when filling out a - * captcha. - * @return Google_Service_PagespeedInsights_PagespeedApiPagespeedResponseV5 - */ - public function runpagespeed($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('runpagespeed', array($params), "Google_Service_PagespeedInsights_PagespeedApiPagespeedResponseV5"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/RuntimeError.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/RuntimeError.php deleted file mode 100644 index 17e84981..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/RuntimeError.php +++ /dev/null @@ -1,39 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/StackPack.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/StackPack.php deleted file mode 100644 index 982a0a84..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/StackPack.php +++ /dev/null @@ -1,57 +0,0 @@ -descriptions = $descriptions; - } - public function getDescriptions() - { - return $this->descriptions; - } - public function setIconDataURL($iconDataURL) - { - $this->iconDataURL = $iconDataURL; - } - public function getIconDataURL() - { - return $this->iconDataURL; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/Timing.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/Timing.php deleted file mode 100644 index 23538399..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/Timing.php +++ /dev/null @@ -1,30 +0,0 @@ -total = $total; - } - public function getTotal() - { - return $this->total; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/UserPageLoadMetricV5.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/UserPageLoadMetricV5.php deleted file mode 100644 index fdc13ef8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PagespeedInsights/UserPageLoadMetricV5.php +++ /dev/null @@ -1,83 +0,0 @@ -category = $category; - } - public function getCategory() - { - return $this->category; - } - /** - * @param Google_Service_PagespeedInsights_Bucket - */ - public function setDistributions($distributions) - { - $this->distributions = $distributions; - } - /** - * @return Google_Service_PagespeedInsights_Bucket - */ - public function getDistributions() - { - return $this->distributions; - } - public function setFormFactor($formFactor) - { - $this->formFactor = $formFactor; - } - public function getFormFactor() - { - return $this->formFactor; - } - public function setMedian($median) - { - $this->median = $median; - } - public function getMedian() - { - return $this->median; - } - public function setMetricId($metricId) - { - $this->metricId = $metricId; - } - public function getMetricId() - { - return $this->metricId; - } - public function setPercentile($percentile) - { - $this->percentile = $percentile; - } - public function getPercentile() - { - return $this->percentile; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline.php deleted file mode 100644 index b5643f85..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline.php +++ /dev/null @@ -1,95 +0,0 @@ - - * Analyzes the performance of a web page and provides tailored suggestions to - * make that page faster.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Pagespeedonline extends Google_Service -{ - - - public $pagespeedapi; - - /** - * Constructs the internal representation of the Pagespeedonline service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://www.googleapis.com/'; - $this->servicePath = 'pagespeedonline/v5/'; - $this->batchPath = 'batch/pagespeedonline/v5'; - $this->version = 'v5'; - $this->serviceName = 'pagespeedonline'; - - $this->pagespeedapi = new Google_Service_Pagespeedonline_Resource_Pagespeedapi( - $this, - $this->serviceName, - 'pagespeedapi', - array( - 'methods' => array( - 'runpagespeed' => array( - 'path' => 'runPagespeed', - 'httpMethod' => 'GET', - 'parameters' => array( - 'url' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'category' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'strategy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'utm_campaign' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'utm_source' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/LighthouseAuditResultV5.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/LighthouseAuditResultV5.php deleted file mode 100644 index d721142c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/LighthouseAuditResultV5.php +++ /dev/null @@ -1,120 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setDisplayValue($displayValue) - { - $this->displayValue = $displayValue; - } - public function getDisplayValue() - { - return $this->displayValue; - } - public function setErrorMessage($errorMessage) - { - $this->errorMessage = $errorMessage; - } - public function getErrorMessage() - { - return $this->errorMessage; - } - public function setExplanation($explanation) - { - $this->explanation = $explanation; - } - public function getExplanation() - { - return $this->explanation; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setNumericValue($numericValue) - { - $this->numericValue = $numericValue; - } - public function getNumericValue() - { - return $this->numericValue; - } - public function setScore($score) - { - $this->score = $score; - } - public function getScore() - { - return $this->score; - } - public function setScoreDisplayMode($scoreDisplayMode) - { - $this->scoreDisplayMode = $scoreDisplayMode; - } - public function getScoreDisplayMode() - { - return $this->scoreDisplayMode; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setWarnings($warnings) - { - $this->warnings = $warnings; - } - public function getWarnings() - { - return $this->warnings; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/LighthouseCategoryV5.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/LighthouseCategoryV5.php deleted file mode 100644 index 501df388..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/LighthouseCategoryV5.php +++ /dev/null @@ -1,83 +0,0 @@ -auditRefs = $auditRefs; - } - /** - * @return Google_Service_Pagespeedonline_LighthouseCategoryV5AuditRefs - */ - public function getAuditRefs() - { - return $this->auditRefs; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setManualDescription($manualDescription) - { - $this->manualDescription = $manualDescription; - } - public function getManualDescription() - { - return $this->manualDescription; - } - public function setScore($score) - { - $this->score = $score; - } - public function getScore() - { - return $this->score; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/LighthouseCategoryV5AuditRefs.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/LighthouseCategoryV5AuditRefs.php deleted file mode 100644 index 1435bc4c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/LighthouseCategoryV5AuditRefs.php +++ /dev/null @@ -1,48 +0,0 @@ -group = $group; - } - public function getGroup() - { - return $this->group; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setWeight($weight) - { - $this->weight = $weight; - } - public function getWeight() - { - return $this->weight; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/LighthouseResultV5.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/LighthouseResultV5.php deleted file mode 100644 index 06676329..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/LighthouseResultV5.php +++ /dev/null @@ -1,220 +0,0 @@ -audits = $audits; - } - /** - * @return Google_Service_Pagespeedonline_LighthouseAuditResultV5 - */ - public function getAudits() - { - return $this->audits; - } - /** - * @param Google_Service_Pagespeedonline_LighthouseResultV5Categories - */ - public function setCategories(Google_Service_Pagespeedonline_LighthouseResultV5Categories $categories) - { - $this->categories = $categories; - } - /** - * @return Google_Service_Pagespeedonline_LighthouseResultV5Categories - */ - public function getCategories() - { - return $this->categories; - } - /** - * @param Google_Service_Pagespeedonline_LighthouseResultV5CategoryGroupsElement - */ - public function setCategoryGroups($categoryGroups) - { - $this->categoryGroups = $categoryGroups; - } - /** - * @return Google_Service_Pagespeedonline_LighthouseResultV5CategoryGroupsElement - */ - public function getCategoryGroups() - { - return $this->categoryGroups; - } - /** - * @param Google_Service_Pagespeedonline_LighthouseResultV5ConfigSettings - */ - public function setConfigSettings(Google_Service_Pagespeedonline_LighthouseResultV5ConfigSettings $configSettings) - { - $this->configSettings = $configSettings; - } - /** - * @return Google_Service_Pagespeedonline_LighthouseResultV5ConfigSettings - */ - public function getConfigSettings() - { - return $this->configSettings; - } - /** - * @param Google_Service_Pagespeedonline_LighthouseResultV5Environment - */ - public function setEnvironment(Google_Service_Pagespeedonline_LighthouseResultV5Environment $environment) - { - $this->environment = $environment; - } - /** - * @return Google_Service_Pagespeedonline_LighthouseResultV5Environment - */ - public function getEnvironment() - { - return $this->environment; - } - public function setFetchTime($fetchTime) - { - $this->fetchTime = $fetchTime; - } - public function getFetchTime() - { - return $this->fetchTime; - } - public function setFinalUrl($finalUrl) - { - $this->finalUrl = $finalUrl; - } - public function getFinalUrl() - { - return $this->finalUrl; - } - /** - * @param Google_Service_Pagespeedonline_LighthouseResultV5I18n - */ - public function setI18n(Google_Service_Pagespeedonline_LighthouseResultV5I18n $i18n) - { - $this->i18n = $i18n; - } - /** - * @return Google_Service_Pagespeedonline_LighthouseResultV5I18n - */ - public function getI18n() - { - return $this->i18n; - } - public function setLighthouseVersion($lighthouseVersion) - { - $this->lighthouseVersion = $lighthouseVersion; - } - public function getLighthouseVersion() - { - return $this->lighthouseVersion; - } - public function setRequestedUrl($requestedUrl) - { - $this->requestedUrl = $requestedUrl; - } - public function getRequestedUrl() - { - return $this->requestedUrl; - } - public function setRunWarnings($runWarnings) - { - $this->runWarnings = $runWarnings; - } - public function getRunWarnings() - { - return $this->runWarnings; - } - /** - * @param Google_Service_Pagespeedonline_LighthouseResultV5RuntimeError - */ - public function setRuntimeError(Google_Service_Pagespeedonline_LighthouseResultV5RuntimeError $runtimeError) - { - $this->runtimeError = $runtimeError; - } - /** - * @return Google_Service_Pagespeedonline_LighthouseResultV5RuntimeError - */ - public function getRuntimeError() - { - return $this->runtimeError; - } - /** - * @param Google_Service_Pagespeedonline_LighthouseResultV5StackPacks - */ - public function setStackPacks($stackPacks) - { - $this->stackPacks = $stackPacks; - } - /** - * @return Google_Service_Pagespeedonline_LighthouseResultV5StackPacks - */ - public function getStackPacks() - { - return $this->stackPacks; - } - /** - * @param Google_Service_Pagespeedonline_LighthouseResultV5Timing - */ - public function setTiming(Google_Service_Pagespeedonline_LighthouseResultV5Timing $timing) - { - $this->timing = $timing; - } - /** - * @return Google_Service_Pagespeedonline_LighthouseResultV5Timing - */ - public function getTiming() - { - return $this->timing; - } - public function setUserAgent($userAgent) - { - $this->userAgent = $userAgent; - } - public function getUserAgent() - { - return $this->userAgent; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/LighthouseResultV5Categories.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/LighthouseResultV5Categories.php deleted file mode 100644 index f22d0088..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/LighthouseResultV5Categories.php +++ /dev/null @@ -1,104 +0,0 @@ - "best-practices", - ); - protected $accessibilityType = 'Google_Service_Pagespeedonline_LighthouseCategoryV5'; - protected $accessibilityDataType = ''; - protected $bestPracticesType = 'Google_Service_Pagespeedonline_LighthouseCategoryV5'; - protected $bestPracticesDataType = ''; - protected $performanceType = 'Google_Service_Pagespeedonline_LighthouseCategoryV5'; - protected $performanceDataType = ''; - protected $pwaType = 'Google_Service_Pagespeedonline_LighthouseCategoryV5'; - protected $pwaDataType = ''; - protected $seoType = 'Google_Service_Pagespeedonline_LighthouseCategoryV5'; - protected $seoDataType = ''; - - /** - * @param Google_Service_Pagespeedonline_LighthouseCategoryV5 - */ - public function setAccessibility(Google_Service_Pagespeedonline_LighthouseCategoryV5 $accessibility) - { - $this->accessibility = $accessibility; - } - /** - * @return Google_Service_Pagespeedonline_LighthouseCategoryV5 - */ - public function getAccessibility() - { - return $this->accessibility; - } - /** - * @param Google_Service_Pagespeedonline_LighthouseCategoryV5 - */ - public function setBestPractices(Google_Service_Pagespeedonline_LighthouseCategoryV5 $bestPractices) - { - $this->bestPractices = $bestPractices; - } - /** - * @return Google_Service_Pagespeedonline_LighthouseCategoryV5 - */ - public function getBestPractices() - { - return $this->bestPractices; - } - /** - * @param Google_Service_Pagespeedonline_LighthouseCategoryV5 - */ - public function setPerformance(Google_Service_Pagespeedonline_LighthouseCategoryV5 $performance) - { - $this->performance = $performance; - } - /** - * @return Google_Service_Pagespeedonline_LighthouseCategoryV5 - */ - public function getPerformance() - { - return $this->performance; - } - /** - * @param Google_Service_Pagespeedonline_LighthouseCategoryV5 - */ - public function setPwa(Google_Service_Pagespeedonline_LighthouseCategoryV5 $pwa) - { - $this->pwa = $pwa; - } - /** - * @return Google_Service_Pagespeedonline_LighthouseCategoryV5 - */ - public function getPwa() - { - return $this->pwa; - } - /** - * @param Google_Service_Pagespeedonline_LighthouseCategoryV5 - */ - public function setSeo(Google_Service_Pagespeedonline_LighthouseCategoryV5 $seo) - { - $this->seo = $seo; - } - /** - * @return Google_Service_Pagespeedonline_LighthouseCategoryV5 - */ - public function getSeo() - { - return $this->seo; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/LighthouseResultV5CategoryGroupsElement.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/LighthouseResultV5CategoryGroupsElement.php deleted file mode 100644 index 7cad20f8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/LighthouseResultV5CategoryGroupsElement.php +++ /dev/null @@ -1,39 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/LighthouseResultV5ConfigSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/LighthouseResultV5ConfigSettings.php deleted file mode 100644 index 173e66f6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/LighthouseResultV5ConfigSettings.php +++ /dev/null @@ -1,48 +0,0 @@ -emulatedFormFactor = $emulatedFormFactor; - } - public function getEmulatedFormFactor() - { - return $this->emulatedFormFactor; - } - public function setLocale($locale) - { - $this->locale = $locale; - } - public function getLocale() - { - return $this->locale; - } - public function setOnlyCategories($onlyCategories) - { - $this->onlyCategories = $onlyCategories; - } - public function getOnlyCategories() - { - return $this->onlyCategories; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/LighthouseResultV5Environment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/LighthouseResultV5Environment.php deleted file mode 100644 index 4745251f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/LighthouseResultV5Environment.php +++ /dev/null @@ -1,48 +0,0 @@ -benchmarkIndex = $benchmarkIndex; - } - public function getBenchmarkIndex() - { - return $this->benchmarkIndex; - } - public function setHostUserAgent($hostUserAgent) - { - $this->hostUserAgent = $hostUserAgent; - } - public function getHostUserAgent() - { - return $this->hostUserAgent; - } - public function setNetworkUserAgent($networkUserAgent) - { - $this->networkUserAgent = $networkUserAgent; - } - public function getNetworkUserAgent() - { - return $this->networkUserAgent; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/LighthouseResultV5I18n.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/LighthouseResultV5I18n.php deleted file mode 100644 index aa501a2b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/LighthouseResultV5I18n.php +++ /dev/null @@ -1,37 +0,0 @@ -rendererFormattedStrings = $rendererFormattedStrings; - } - /** - * @return Google_Service_Pagespeedonline_LighthouseResultV5I18nRendererFormattedStrings - */ - public function getRendererFormattedStrings() - { - return $this->rendererFormattedStrings; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/LighthouseResultV5I18nRendererFormattedStrings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/LighthouseResultV5I18nRendererFormattedStrings.php deleted file mode 100644 index 1f834001..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/LighthouseResultV5I18nRendererFormattedStrings.php +++ /dev/null @@ -1,165 +0,0 @@ -auditGroupExpandTooltip = $auditGroupExpandTooltip; - } - public function getAuditGroupExpandTooltip() - { - return $this->auditGroupExpandTooltip; - } - public function setCrcInitialNavigation($crcInitialNavigation) - { - $this->crcInitialNavigation = $crcInitialNavigation; - } - public function getCrcInitialNavigation() - { - return $this->crcInitialNavigation; - } - public function setCrcLongestDurationLabel($crcLongestDurationLabel) - { - $this->crcLongestDurationLabel = $crcLongestDurationLabel; - } - public function getCrcLongestDurationLabel() - { - return $this->crcLongestDurationLabel; - } - public function setErrorLabel($errorLabel) - { - $this->errorLabel = $errorLabel; - } - public function getErrorLabel() - { - return $this->errorLabel; - } - public function setErrorMissingAuditInfo($errorMissingAuditInfo) - { - $this->errorMissingAuditInfo = $errorMissingAuditInfo; - } - public function getErrorMissingAuditInfo() - { - return $this->errorMissingAuditInfo; - } - public function setLabDataTitle($labDataTitle) - { - $this->labDataTitle = $labDataTitle; - } - public function getLabDataTitle() - { - return $this->labDataTitle; - } - public function setLsPerformanceCategoryDescription($lsPerformanceCategoryDescription) - { - $this->lsPerformanceCategoryDescription = $lsPerformanceCategoryDescription; - } - public function getLsPerformanceCategoryDescription() - { - return $this->lsPerformanceCategoryDescription; - } - public function setManualAuditsGroupTitle($manualAuditsGroupTitle) - { - $this->manualAuditsGroupTitle = $manualAuditsGroupTitle; - } - public function getManualAuditsGroupTitle() - { - return $this->manualAuditsGroupTitle; - } - public function setNotApplicableAuditsGroupTitle($notApplicableAuditsGroupTitle) - { - $this->notApplicableAuditsGroupTitle = $notApplicableAuditsGroupTitle; - } - public function getNotApplicableAuditsGroupTitle() - { - return $this->notApplicableAuditsGroupTitle; - } - public function setOpportunityResourceColumnLabel($opportunityResourceColumnLabel) - { - $this->opportunityResourceColumnLabel = $opportunityResourceColumnLabel; - } - public function getOpportunityResourceColumnLabel() - { - return $this->opportunityResourceColumnLabel; - } - public function setOpportunitySavingsColumnLabel($opportunitySavingsColumnLabel) - { - $this->opportunitySavingsColumnLabel = $opportunitySavingsColumnLabel; - } - public function getOpportunitySavingsColumnLabel() - { - return $this->opportunitySavingsColumnLabel; - } - public function setPassedAuditsGroupTitle($passedAuditsGroupTitle) - { - $this->passedAuditsGroupTitle = $passedAuditsGroupTitle; - } - public function getPassedAuditsGroupTitle() - { - return $this->passedAuditsGroupTitle; - } - public function setScorescaleLabel($scorescaleLabel) - { - $this->scorescaleLabel = $scorescaleLabel; - } - public function getScorescaleLabel() - { - return $this->scorescaleLabel; - } - public function setToplevelWarningsMessage($toplevelWarningsMessage) - { - $this->toplevelWarningsMessage = $toplevelWarningsMessage; - } - public function getToplevelWarningsMessage() - { - return $this->toplevelWarningsMessage; - } - public function setVarianceDisclaimer($varianceDisclaimer) - { - $this->varianceDisclaimer = $varianceDisclaimer; - } - public function getVarianceDisclaimer() - { - return $this->varianceDisclaimer; - } - public function setWarningHeader($warningHeader) - { - $this->warningHeader = $warningHeader; - } - public function getWarningHeader() - { - return $this->warningHeader; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/LighthouseResultV5RuntimeError.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/LighthouseResultV5RuntimeError.php deleted file mode 100644 index 28bf0785..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/LighthouseResultV5RuntimeError.php +++ /dev/null @@ -1,39 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/LighthouseResultV5StackPacks.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/LighthouseResultV5StackPacks.php deleted file mode 100644 index 22c2726e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/LighthouseResultV5StackPacks.php +++ /dev/null @@ -1,57 +0,0 @@ -descriptions = $descriptions; - } - public function getDescriptions() - { - return $this->descriptions; - } - public function setIconDataURL($iconDataURL) - { - $this->iconDataURL = $iconDataURL; - } - public function getIconDataURL() - { - return $this->iconDataURL; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/LighthouseResultV5Timing.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/LighthouseResultV5Timing.php deleted file mode 100644 index 34c96439..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/LighthouseResultV5Timing.php +++ /dev/null @@ -1,30 +0,0 @@ -total = $total; - } - public function getTotal() - { - return $this->total; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/PagespeedApiLoadingExperienceV5.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/PagespeedApiLoadingExperienceV5.php deleted file mode 100644 index 4b81201c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/PagespeedApiLoadingExperienceV5.php +++ /dev/null @@ -1,68 +0,0 @@ - "initial_url", - "overallCategory" => "overall_category", - ); - public $id; - public $initialUrl; - protected $metricsType = 'Google_Service_Pagespeedonline_PagespeedApiLoadingExperienceV5MetricsElement'; - protected $metricsDataType = 'map'; - public $overallCategory; - - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setInitialUrl($initialUrl) - { - $this->initialUrl = $initialUrl; - } - public function getInitialUrl() - { - return $this->initialUrl; - } - /** - * @param Google_Service_Pagespeedonline_PagespeedApiLoadingExperienceV5MetricsElement - */ - public function setMetrics($metrics) - { - $this->metrics = $metrics; - } - /** - * @return Google_Service_Pagespeedonline_PagespeedApiLoadingExperienceV5MetricsElement - */ - public function getMetrics() - { - return $this->metrics; - } - public function setOverallCategory($overallCategory) - { - $this->overallCategory = $overallCategory; - } - public function getOverallCategory() - { - return $this->overallCategory; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/PagespeedApiLoadingExperienceV5MetricsElement.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/PagespeedApiLoadingExperienceV5MetricsElement.php deleted file mode 100644 index 578fc055..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/PagespeedApiLoadingExperienceV5MetricsElement.php +++ /dev/null @@ -1,56 +0,0 @@ -category = $category; - } - public function getCategory() - { - return $this->category; - } - /** - * @param Google_Service_Pagespeedonline_PagespeedApiLoadingExperienceV5MetricsElementDistributions - */ - public function setDistributions($distributions) - { - $this->distributions = $distributions; - } - /** - * @return Google_Service_Pagespeedonline_PagespeedApiLoadingExperienceV5MetricsElementDistributions - */ - public function getDistributions() - { - return $this->distributions; - } - public function setPercentile($percentile) - { - $this->percentile = $percentile; - } - public function getPercentile() - { - return $this->percentile; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/PagespeedApiLoadingExperienceV5MetricsElementDistributions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/PagespeedApiLoadingExperienceV5MetricsElementDistributions.php deleted file mode 100644 index d94bf06a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/PagespeedApiLoadingExperienceV5MetricsElementDistributions.php +++ /dev/null @@ -1,48 +0,0 @@ -max = $max; - } - public function getMax() - { - return $this->max; - } - public function setMin($min) - { - $this->min = $min; - } - public function getMin() - { - return $this->min; - } - public function setProportion($proportion) - { - $this->proportion = $proportion; - } - public function getProportion() - { - return $this->proportion; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/PagespeedApiPagespeedResponseV5.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/PagespeedApiPagespeedResponseV5.php deleted file mode 100644 index cd91cec8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/PagespeedApiPagespeedResponseV5.php +++ /dev/null @@ -1,121 +0,0 @@ -analysisUTCTimestamp = $analysisUTCTimestamp; - } - public function getAnalysisUTCTimestamp() - { - return $this->analysisUTCTimestamp; - } - public function setCaptchaResult($captchaResult) - { - $this->captchaResult = $captchaResult; - } - public function getCaptchaResult() - { - return $this->captchaResult; - } - 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; - } - /** - * @param Google_Service_Pagespeedonline_LighthouseResultV5 - */ - public function setLighthouseResult(Google_Service_Pagespeedonline_LighthouseResultV5 $lighthouseResult) - { - $this->lighthouseResult = $lighthouseResult; - } - /** - * @return Google_Service_Pagespeedonline_LighthouseResultV5 - */ - public function getLighthouseResult() - { - return $this->lighthouseResult; - } - /** - * @param Google_Service_Pagespeedonline_PagespeedApiLoadingExperienceV5 - */ - public function setLoadingExperience(Google_Service_Pagespeedonline_PagespeedApiLoadingExperienceV5 $loadingExperience) - { - $this->loadingExperience = $loadingExperience; - } - /** - * @return Google_Service_Pagespeedonline_PagespeedApiLoadingExperienceV5 - */ - public function getLoadingExperience() - { - return $this->loadingExperience; - } - /** - * @param Google_Service_Pagespeedonline_PagespeedApiLoadingExperienceV5 - */ - public function setOriginLoadingExperience(Google_Service_Pagespeedonline_PagespeedApiLoadingExperienceV5 $originLoadingExperience) - { - $this->originLoadingExperience = $originLoadingExperience; - } - /** - * @return Google_Service_Pagespeedonline_PagespeedApiLoadingExperienceV5 - */ - public function getOriginLoadingExperience() - { - return $this->originLoadingExperience; - } - /** - * @param Google_Service_Pagespeedonline_PagespeedApiPagespeedResponseV5Version - */ - public function setVersion(Google_Service_Pagespeedonline_PagespeedApiPagespeedResponseV5Version $version) - { - $this->version = $version; - } - /** - * @return Google_Service_Pagespeedonline_PagespeedApiPagespeedResponseV5Version - */ - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/PagespeedApiPagespeedResponseV5Version.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/PagespeedApiPagespeedResponseV5Version.php deleted file mode 100644 index 99dbad6a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/PagespeedApiPagespeedResponseV5Version.php +++ /dev/null @@ -1,39 +0,0 @@ -major = $major; - } - public function getMajor() - { - return $this->major; - } - public function setMinor($minor) - { - $this->minor = $minor; - } - public function getMinor() - { - return $this->minor; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/Resource/Pagespeedapi.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/Resource/Pagespeedapi.php deleted file mode 100644 index 60559ae9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pagespeedonline/Resource/Pagespeedapi.php +++ /dev/null @@ -1,51 +0,0 @@ - - * $pagespeedonlineService = new Google_Service_Pagespeedonline(...); - * $pagespeedapi = $pagespeedonlineService->pagespeedapi; - * - */ -class Google_Service_Pagespeedonline_Resource_Pagespeedapi extends Google_Service_Resource -{ - /** - * Runs PageSpeed analysis on the page at the specified URL, and returns - * PageSpeed scores, a list of suggestions to make that page faster, and other - * information. (pagespeedapi.runpagespeed) - * - * @param string $url The URL to fetch and analyze - * @param array $optParams Optional parameters. - * - * @opt_param string category A Lighthouse category to run; if none are given, - * only Performance category will be run - * @opt_param string locale The locale used to localize formatted results - * @opt_param string strategy The analysis strategy (desktop or mobile) to use, - * and desktop is the default - * @opt_param string utm_campaign Campaign name for analytics. - * @opt_param string utm_source Campaign source for analytics. - * @return Google_Service_Pagespeedonline_PagespeedApiPagespeedResponseV5 - */ - public function runpagespeed($url, $optParams = array()) - { - $params = array('url' => $url); - $params = array_merge($params, $optParams); - return $this->call('runpagespeed', array($params), "Google_Service_Pagespeedonline_PagespeedApiPagespeedResponseV5"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners.php deleted file mode 100644 index 486542f6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners.php +++ /dev/null @@ -1,828 +0,0 @@ - - * Searches certified companies and creates contact leads with them, and also - * audits the usage of clients.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Partners extends Google_Service -{ - - - public $analytics; - public $clientMessages; - public $companies; - public $companies_leads; - public $leads; - public $offers; - public $offers_history; - public $userEvents; - public $userStates; - public $users; - public $v2; - - /** - * Constructs the internal representation of the Partners service. - * - * @param Google_Client $client - */ - public function __construct(Google_Client $client) - { - parent::__construct($client); - $this->rootUrl = 'https://partners.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v2'; - $this->serviceName = 'partners'; - - $this->analytics = new Google_Service_Partners_Resource_Analytics( - $this, - $this->serviceName, - 'analytics', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v2/analytics', - 'httpMethod' => 'GET', - 'parameters' => array( - 'requestMetadata.userOverrides.userId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.partnersSessionId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'requestMetadata.trafficSource.trafficSourceId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.userOverrides.ipAddress' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.experimentIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'requestMetadata.trafficSource.trafficSubId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->clientMessages = new Google_Service_Partners_Resource_ClientMessages( - $this, - $this->serviceName, - 'clientMessages', - array( - 'methods' => array( - 'log' => array( - 'path' => 'v2/clientMessages:log', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->companies = new Google_Service_Partners_Resource_Companies( - $this, - $this->serviceName, - 'companies', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v2/companies/{companyId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'companyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestMetadata.trafficSource.trafficSourceId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.userOverrides.ipAddress' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.experimentIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'currencyCode' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.trafficSource.trafficSubId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.userOverrides.userId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.partnersSessionId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'address' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'v2/companies', - 'httpMethod' => 'GET', - 'parameters' => array( - 'services' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'requestMetadata.trafficSource.trafficSourceId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxMonthlyBudget.units' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.trafficSource.trafficSubId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'minMonthlyBudget.nanos' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'requestMetadata.partnersSessionId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'companyName' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'industries' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'websiteUrl' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'gpsMotivations' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'languageCodes' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'requestMetadata.userOverrides.ipAddress' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.experimentIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'specializations' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'maxMonthlyBudget.currencyCode' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.userOverrides.userId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'minMonthlyBudget.currencyCode' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'address' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'minMonthlyBudget.units' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxMonthlyBudget.nanos' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->companies_leads = new Google_Service_Partners_Resource_CompaniesLeads( - $this, - $this->serviceName, - 'leads', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v2/companies/{companyId}/leads', - 'httpMethod' => 'POST', - 'parameters' => array( - 'companyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->leads = new Google_Service_Partners_Resource_Leads( - $this, - $this->serviceName, - 'leads', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v2/leads', - 'httpMethod' => 'GET', - 'parameters' => array( - 'requestMetadata.experimentIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'requestMetadata.trafficSource.trafficSubId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.userOverrides.userId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.partnersSessionId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'requestMetadata.trafficSource.trafficSourceId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.userOverrides.ipAddress' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->offers = new Google_Service_Partners_Resource_Offers( - $this, - $this->serviceName, - 'offers', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v2/offers', - 'httpMethod' => 'GET', - 'parameters' => array( - 'requestMetadata.userOverrides.userId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.partnersSessionId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.trafficSource.trafficSourceId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.userOverrides.ipAddress' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.experimentIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'requestMetadata.trafficSource.trafficSubId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->offers_history = new Google_Service_Partners_Resource_OffersHistory( - $this, - $this->serviceName, - 'history', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v2/offers/history', - 'httpMethod' => 'GET', - 'parameters' => array( - 'requestMetadata.partnersSessionId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.userOverrides.userId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'requestMetadata.trafficSource.trafficSourceId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.userOverrides.ipAddress' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'entireCompany' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'requestMetadata.experimentIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.trafficSource.trafficSubId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->userEvents = new Google_Service_Partners_Resource_UserEvents( - $this, - $this->serviceName, - 'userEvents', - array( - 'methods' => array( - 'log' => array( - 'path' => 'v2/userEvents:log', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->userStates = new Google_Service_Partners_Resource_UserStates( - $this, - $this->serviceName, - 'userStates', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v2/userStates', - 'httpMethod' => 'GET', - 'parameters' => array( - 'requestMetadata.locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.userOverrides.ipAddress' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.experimentIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'requestMetadata.trafficSource.trafficSubId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.userOverrides.userId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.partnersSessionId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.trafficSource.trafficSourceId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->users = new Google_Service_Partners_Resource_Users( - $this, - $this->serviceName, - 'users', - array( - 'methods' => array( - 'createCompanyRelation' => array( - 'path' => 'v2/users/{userId}/companyRelation', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestMetadata.partnersSessionId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.userOverrides.userId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.trafficSource.trafficSourceId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.userOverrides.ipAddress' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.experimentIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'requestMetadata.trafficSource.trafficSubId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'deleteCompanyRelation' => array( - 'path' => 'v2/users/{userId}/companyRelation', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestMetadata.locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.userOverrides.ipAddress' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.experimentIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'requestMetadata.trafficSource.trafficSubId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.userOverrides.userId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.partnersSessionId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.trafficSource.trafficSourceId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'v2/users/{userId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestMetadata.userOverrides.userId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.partnersSessionId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userView' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.trafficSource.trafficSourceId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.userOverrides.ipAddress' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.experimentIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'requestMetadata.trafficSource.trafficSubId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'updateProfile' => array( - 'path' => 'v2/users/profile', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'requestMetadata.locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.userOverrides.ipAddress' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.experimentIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'requestMetadata.trafficSource.trafficSubId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.userOverrides.userId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.partnersSessionId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.trafficSource.trafficSourceId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->v2 = new Google_Service_Partners_Resource_V2( - $this, - $this->serviceName, - 'v2', - array( - 'methods' => array( - 'getPartnersstatus' => array( - 'path' => 'v2/partnersstatus', - 'httpMethod' => 'GET', - 'parameters' => array( - 'requestMetadata.locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.userOverrides.ipAddress' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.experimentIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'requestMetadata.trafficSource.trafficSubId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.userOverrides.userId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.partnersSessionId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.trafficSource.trafficSourceId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'updateCompanies' => array( - 'path' => 'v2/companies', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'requestMetadata.experimentIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'requestMetadata.trafficSource.trafficSubId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.partnersSessionId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.userOverrides.userId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.trafficSource.trafficSourceId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.userOverrides.ipAddress' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'updateLeads' => array( - 'path' => 'v2/leads', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'requestMetadata.experimentIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'requestMetadata.trafficSource.trafficSubId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.userOverrides.userId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.partnersSessionId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.trafficSource.trafficSourceId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMetadata.userOverrides.ipAddress' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/AdWordsManagerAccountInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/AdWordsManagerAccountInfo.php deleted file mode 100644 index 0c194624..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/AdWordsManagerAccountInfo.php +++ /dev/null @@ -1,39 +0,0 @@ -customerName = $customerName; - } - public function getCustomerName() - { - return $this->customerName; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Analytics.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Analytics.php deleted file mode 100644 index 5e7c6545..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Analytics.php +++ /dev/null @@ -1,85 +0,0 @@ -contacts = $contacts; - } - /** - * @return Google_Service_Partners_AnalyticsDataPoint - */ - public function getContacts() - { - return $this->contacts; - } - /** - * @param Google_Service_Partners_Date - */ - public function setEventDate(Google_Service_Partners_Date $eventDate) - { - $this->eventDate = $eventDate; - } - /** - * @return Google_Service_Partners_Date - */ - public function getEventDate() - { - return $this->eventDate; - } - /** - * @param Google_Service_Partners_AnalyticsDataPoint - */ - public function setProfileViews(Google_Service_Partners_AnalyticsDataPoint $profileViews) - { - $this->profileViews = $profileViews; - } - /** - * @return Google_Service_Partners_AnalyticsDataPoint - */ - public function getProfileViews() - { - return $this->profileViews; - } - /** - * @param Google_Service_Partners_AnalyticsDataPoint - */ - public function setSearchViews(Google_Service_Partners_AnalyticsDataPoint $searchViews) - { - $this->searchViews = $searchViews; - } - /** - * @return Google_Service_Partners_AnalyticsDataPoint - */ - public function getSearchViews() - { - return $this->searchViews; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/AnalyticsDataPoint.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/AnalyticsDataPoint.php deleted file mode 100644 index 566efdce..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/AnalyticsDataPoint.php +++ /dev/null @@ -1,47 +0,0 @@ -eventCount = $eventCount; - } - public function getEventCount() - { - return $this->eventCount; - } - /** - * @param Google_Service_Partners_LatLng - */ - public function setEventLocations($eventLocations) - { - $this->eventLocations = $eventLocations; - } - /** - * @return Google_Service_Partners_LatLng - */ - public function getEventLocations() - { - return $this->eventLocations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/AnalyticsSummary.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/AnalyticsSummary.php deleted file mode 100644 index 7648572f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/AnalyticsSummary.php +++ /dev/null @@ -1,48 +0,0 @@ -contactsCount = $contactsCount; - } - public function getContactsCount() - { - return $this->contactsCount; - } - public function setProfileViewsCount($profileViewsCount) - { - $this->profileViewsCount = $profileViewsCount; - } - public function getProfileViewsCount() - { - return $this->profileViewsCount; - } - public function setSearchViewsCount($searchViewsCount) - { - $this->searchViewsCount = $searchViewsCount; - } - public function getSearchViewsCount() - { - return $this->searchViewsCount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/AvailableOffer.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/AvailableOffer.php deleted file mode 100644 index 08793d0c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/AvailableOffer.php +++ /dev/null @@ -1,144 +0,0 @@ -available = $available; - } - public function getAvailable() - { - return $this->available; - } - /** - * @param Google_Service_Partners_CountryOfferInfo - */ - public function setCountryOfferInfos($countryOfferInfos) - { - $this->countryOfferInfos = $countryOfferInfos; - } - /** - * @return Google_Service_Partners_CountryOfferInfo - */ - public function getCountryOfferInfos() - { - return $this->countryOfferInfos; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setMaxAccountAge($maxAccountAge) - { - $this->maxAccountAge = $maxAccountAge; - } - public function getMaxAccountAge() - { - return $this->maxAccountAge; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOfferLevel($offerLevel) - { - $this->offerLevel = $offerLevel; - } - public function getOfferLevel() - { - return $this->offerLevel; - } - public function setOfferType($offerType) - { - $this->offerType = $offerType; - } - public function getOfferType() - { - return $this->offerType; - } - /** - * @param Google_Service_Partners_OfferCustomer - */ - public function setQualifiedCustomer($qualifiedCustomer) - { - $this->qualifiedCustomer = $qualifiedCustomer; - } - /** - * @return Google_Service_Partners_OfferCustomer - */ - public function getQualifiedCustomer() - { - return $this->qualifiedCustomer; - } - public function setQualifiedCustomersComplete($qualifiedCustomersComplete) - { - $this->qualifiedCustomersComplete = $qualifiedCustomersComplete; - } - public function getQualifiedCustomersComplete() - { - return $this->qualifiedCustomersComplete; - } - public function setShowSpecialOfferCopy($showSpecialOfferCopy) - { - $this->showSpecialOfferCopy = $showSpecialOfferCopy; - } - public function getShowSpecialOfferCopy() - { - return $this->showSpecialOfferCopy; - } - public function setTerms($terms) - { - $this->terms = $terms; - } - public function getTerms() - { - return $this->terms; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Certification.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Certification.php deleted file mode 100644 index 1743fa90..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Certification.php +++ /dev/null @@ -1,66 +0,0 @@ -achieved = $achieved; - } - public function getAchieved() - { - return $this->achieved; - } - public function setCertificationType($certificationType) - { - $this->certificationType = $certificationType; - } - public function getCertificationType() - { - return $this->certificationType; - } - public function setExpiration($expiration) - { - $this->expiration = $expiration; - } - public function getExpiration() - { - return $this->expiration; - } - public function setLastAchieved($lastAchieved) - { - $this->lastAchieved = $lastAchieved; - } - public function getLastAchieved() - { - return $this->lastAchieved; - } - public function setWarning($warning) - { - $this->warning = $warning; - } - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/CertificationExamStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/CertificationExamStatus.php deleted file mode 100644 index 2bcc2e16..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/CertificationExamStatus.php +++ /dev/null @@ -1,39 +0,0 @@ -numberUsersPass = $numberUsersPass; - } - public function getNumberUsersPass() - { - return $this->numberUsersPass; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/CertificationStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/CertificationStatus.php deleted file mode 100644 index 2d3daeda..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/CertificationStatus.php +++ /dev/null @@ -1,65 +0,0 @@ -examStatuses = $examStatuses; - } - /** - * @return Google_Service_Partners_CertificationExamStatus - */ - public function getExamStatuses() - { - return $this->examStatuses; - } - public function setIsCertified($isCertified) - { - $this->isCertified = $isCertified; - } - public function getIsCertified() - { - return $this->isCertified; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setUserCount($userCount) - { - $this->userCount = $userCount; - } - public function getUserCount() - { - return $this->userCount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Company.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Company.php deleted file mode 100644 index 764448ff..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Company.php +++ /dev/null @@ -1,283 +0,0 @@ -additionalWebsites = $additionalWebsites; - } - public function getAdditionalWebsites() - { - return $this->additionalWebsites; - } - public function setAutoApprovalEmailDomains($autoApprovalEmailDomains) - { - $this->autoApprovalEmailDomains = $autoApprovalEmailDomains; - } - public function getAutoApprovalEmailDomains() - { - return $this->autoApprovalEmailDomains; - } - public function setBadgeAuthorityInAwn($badgeAuthorityInAwn) - { - $this->badgeAuthorityInAwn = $badgeAuthorityInAwn; - } - public function getBadgeAuthorityInAwn() - { - return $this->badgeAuthorityInAwn; - } - public function setBadgeTier($badgeTier) - { - $this->badgeTier = $badgeTier; - } - public function getBadgeTier() - { - return $this->badgeTier; - } - /** - * @param Google_Service_Partners_CertificationStatus - */ - public function setCertificationStatuses($certificationStatuses) - { - $this->certificationStatuses = $certificationStatuses; - } - /** - * @return Google_Service_Partners_CertificationStatus - */ - public function getCertificationStatuses() - { - return $this->certificationStatuses; - } - public function setCompanyTypes($companyTypes) - { - $this->companyTypes = $companyTypes; - } - public function getCompanyTypes() - { - return $this->companyTypes; - } - /** - * @param Google_Service_Partners_Money - */ - public function setConvertedMinMonthlyBudget(Google_Service_Partners_Money $convertedMinMonthlyBudget) - { - $this->convertedMinMonthlyBudget = $convertedMinMonthlyBudget; - } - /** - * @return Google_Service_Partners_Money - */ - public function getConvertedMinMonthlyBudget() - { - return $this->convertedMinMonthlyBudget; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setIndustries($industries) - { - $this->industries = $industries; - } - public function getIndustries() - { - return $this->industries; - } - /** - * @param Google_Service_Partners_LocalizedCompanyInfo - */ - public function setLocalizedInfos($localizedInfos) - { - $this->localizedInfos = $localizedInfos; - } - /** - * @return Google_Service_Partners_LocalizedCompanyInfo - */ - public function getLocalizedInfos() - { - return $this->localizedInfos; - } - /** - * @param Google_Service_Partners_Location - */ - public function setLocations($locations) - { - $this->locations = $locations; - } - /** - * @return Google_Service_Partners_Location - */ - public function getLocations() - { - return $this->locations; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Partners_Money - */ - public function setOriginalMinMonthlyBudget(Google_Service_Partners_Money $originalMinMonthlyBudget) - { - $this->originalMinMonthlyBudget = $originalMinMonthlyBudget; - } - /** - * @return Google_Service_Partners_Money - */ - public function getOriginalMinMonthlyBudget() - { - return $this->originalMinMonthlyBudget; - } - public function setPrimaryAdwordsManagerAccountId($primaryAdwordsManagerAccountId) - { - $this->primaryAdwordsManagerAccountId = $primaryAdwordsManagerAccountId; - } - public function getPrimaryAdwordsManagerAccountId() - { - return $this->primaryAdwordsManagerAccountId; - } - public function setPrimaryLanguageCode($primaryLanguageCode) - { - $this->primaryLanguageCode = $primaryLanguageCode; - } - public function getPrimaryLanguageCode() - { - return $this->primaryLanguageCode; - } - /** - * @param Google_Service_Partners_Location - */ - public function setPrimaryLocation(Google_Service_Partners_Location $primaryLocation) - { - $this->primaryLocation = $primaryLocation; - } - /** - * @return Google_Service_Partners_Location - */ - public function getPrimaryLocation() - { - return $this->primaryLocation; - } - public function setProfileStatus($profileStatus) - { - $this->profileStatus = $profileStatus; - } - public function getProfileStatus() - { - return $this->profileStatus; - } - /** - * @param Google_Service_Partners_PublicProfile - */ - public function setPublicProfile(Google_Service_Partners_PublicProfile $publicProfile) - { - $this->publicProfile = $publicProfile; - } - /** - * @return Google_Service_Partners_PublicProfile - */ - public function getPublicProfile() - { - return $this->publicProfile; - } - /** - * @param Google_Service_Partners_Rank - */ - public function setRanks($ranks) - { - $this->ranks = $ranks; - } - /** - * @return Google_Service_Partners_Rank - */ - public function getRanks() - { - return $this->ranks; - } - public function setServices($services) - { - $this->services = $services; - } - public function getServices() - { - return $this->services; - } - /** - * @param Google_Service_Partners_SpecializationStatus - */ - public function setSpecializationStatus($specializationStatus) - { - $this->specializationStatus = $specializationStatus; - } - /** - * @return Google_Service_Partners_SpecializationStatus - */ - public function getSpecializationStatus() - { - return $this->specializationStatus; - } - public function setWebsiteUrl($websiteUrl) - { - $this->websiteUrl = $websiteUrl; - } - public function getWebsiteUrl() - { - return $this->websiteUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/CompanyRelation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/CompanyRelation.php deleted file mode 100644 index cb7c37fd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/CompanyRelation.php +++ /dev/null @@ -1,207 +0,0 @@ -address = $address; - } - public function getAddress() - { - return $this->address; - } - public function setBadgeTier($badgeTier) - { - $this->badgeTier = $badgeTier; - } - public function getBadgeTier() - { - return $this->badgeTier; - } - public function setCompanyAdmin($companyAdmin) - { - $this->companyAdmin = $companyAdmin; - } - public function getCompanyAdmin() - { - return $this->companyAdmin; - } - public function setCompanyId($companyId) - { - $this->companyId = $companyId; - } - public function getCompanyId() - { - return $this->companyId; - } - public function setCreationTime($creationTime) - { - $this->creationTime = $creationTime; - } - public function getCreationTime() - { - return $this->creationTime; - } - public function setInternalCompanyId($internalCompanyId) - { - $this->internalCompanyId = $internalCompanyId; - } - public function getInternalCompanyId() - { - return $this->internalCompanyId; - } - public function setIsPending($isPending) - { - $this->isPending = $isPending; - } - public function getIsPending() - { - return $this->isPending; - } - public function setLogoUrl($logoUrl) - { - $this->logoUrl = $logoUrl; - } - public function getLogoUrl() - { - return $this->logoUrl; - } - public function setManagerAccount($managerAccount) - { - $this->managerAccount = $managerAccount; - } - public function getManagerAccount() - { - return $this->managerAccount; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPhoneNumber($phoneNumber) - { - $this->phoneNumber = $phoneNumber; - } - public function getPhoneNumber() - { - return $this->phoneNumber; - } - /** - * @param Google_Service_Partners_Location - */ - public function setPrimaryAddress(Google_Service_Partners_Location $primaryAddress) - { - $this->primaryAddress = $primaryAddress; - } - /** - * @return Google_Service_Partners_Location - */ - public function getPrimaryAddress() - { - return $this->primaryAddress; - } - public function setPrimaryCountryCode($primaryCountryCode) - { - $this->primaryCountryCode = $primaryCountryCode; - } - public function getPrimaryCountryCode() - { - return $this->primaryCountryCode; - } - public function setPrimaryLanguageCode($primaryLanguageCode) - { - $this->primaryLanguageCode = $primaryLanguageCode; - } - public function getPrimaryLanguageCode() - { - return $this->primaryLanguageCode; - } - public function setResolvedTimestamp($resolvedTimestamp) - { - $this->resolvedTimestamp = $resolvedTimestamp; - } - public function getResolvedTimestamp() - { - return $this->resolvedTimestamp; - } - public function setSegment($segment) - { - $this->segment = $segment; - } - public function getSegment() - { - return $this->segment; - } - /** - * @param Google_Service_Partners_SpecializationStatus - */ - public function setSpecializationStatus($specializationStatus) - { - $this->specializationStatus = $specializationStatus; - } - /** - * @return Google_Service_Partners_SpecializationStatus - */ - public function getSpecializationStatus() - { - return $this->specializationStatus; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setWebsite($website) - { - $this->website = $website; - } - public function getWebsite() - { - return $this->website; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/CountryOfferInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/CountryOfferInfo.php deleted file mode 100644 index d9fd9f5a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/CountryOfferInfo.php +++ /dev/null @@ -1,57 +0,0 @@ -getYAmount = $getYAmount; - } - public function getGetYAmount() - { - return $this->getYAmount; - } - public function setOfferCountryCode($offerCountryCode) - { - $this->offerCountryCode = $offerCountryCode; - } - public function getOfferCountryCode() - { - return $this->offerCountryCode; - } - public function setOfferType($offerType) - { - $this->offerType = $offerType; - } - public function getOfferType() - { - return $this->offerType; - } - public function setSpendXAmount($spendXAmount) - { - $this->spendXAmount = $spendXAmount; - } - public function getSpendXAmount() - { - return $this->spendXAmount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/CreateLeadRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/CreateLeadRequest.php deleted file mode 100644 index aec0457d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/CreateLeadRequest.php +++ /dev/null @@ -1,69 +0,0 @@ -lead = $lead; - } - /** - * @return Google_Service_Partners_Lead - */ - public function getLead() - { - return $this->lead; - } - /** - * @param Google_Service_Partners_RecaptchaChallenge - */ - public function setRecaptchaChallenge(Google_Service_Partners_RecaptchaChallenge $recaptchaChallenge) - { - $this->recaptchaChallenge = $recaptchaChallenge; - } - /** - * @return Google_Service_Partners_RecaptchaChallenge - */ - public function getRecaptchaChallenge() - { - return $this->recaptchaChallenge; - } - /** - * @param Google_Service_Partners_RequestMetadata - */ - public function setRequestMetadata(Google_Service_Partners_RequestMetadata $requestMetadata) - { - $this->requestMetadata = $requestMetadata; - } - /** - * @return Google_Service_Partners_RequestMetadata - */ - public function getRequestMetadata() - { - return $this->requestMetadata; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/CreateLeadResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/CreateLeadResponse.php deleted file mode 100644 index 22ed48ac..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/CreateLeadResponse.php +++ /dev/null @@ -1,62 +0,0 @@ -lead = $lead; - } - /** - * @return Google_Service_Partners_Lead - */ - public function getLead() - { - return $this->lead; - } - public function setRecaptchaStatus($recaptchaStatus) - { - $this->recaptchaStatus = $recaptchaStatus; - } - public function getRecaptchaStatus() - { - return $this->recaptchaStatus; - } - /** - * @param Google_Service_Partners_ResponseMetadata - */ - public function setResponseMetadata(Google_Service_Partners_ResponseMetadata $responseMetadata) - { - $this->responseMetadata = $responseMetadata; - } - /** - * @return Google_Service_Partners_ResponseMetadata - */ - public function getResponseMetadata() - { - return $this->responseMetadata; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Date.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Date.php deleted file mode 100644 index 3a33357d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Date.php +++ /dev/null @@ -1,48 +0,0 @@ -day = $day; - } - public function getDay() - { - return $this->day; - } - public function setMonth($month) - { - $this->month = $month; - } - public function getMonth() - { - return $this->month; - } - public function setYear($year) - { - $this->year = $year; - } - public function getYear() - { - return $this->year; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/DebugInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/DebugInfo.php deleted file mode 100644 index 8f64c053..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/DebugInfo.php +++ /dev/null @@ -1,48 +0,0 @@ -serverInfo = $serverInfo; - } - public function getServerInfo() - { - return $this->serverInfo; - } - public function setServerTraceInfo($serverTraceInfo) - { - $this->serverTraceInfo = $serverTraceInfo; - } - public function getServerTraceInfo() - { - return $this->serverTraceInfo; - } - public function setServiceUrl($serviceUrl) - { - $this->serviceUrl = $serviceUrl; - } - public function getServiceUrl() - { - return $this->serviceUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/EventData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/EventData.php deleted file mode 100644 index 09ee8ee9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/EventData.php +++ /dev/null @@ -1,40 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValues($values) - { - $this->values = $values; - } - public function getValues() - { - return $this->values; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/ExamStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/ExamStatus.php deleted file mode 100644 index a80d43a8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/ExamStatus.php +++ /dev/null @@ -1,75 +0,0 @@ -examType = $examType; - } - public function getExamType() - { - return $this->examType; - } - public function setExpiration($expiration) - { - $this->expiration = $expiration; - } - public function getExpiration() - { - return $this->expiration; - } - public function setLastPassed($lastPassed) - { - $this->lastPassed = $lastPassed; - } - public function getLastPassed() - { - return $this->lastPassed; - } - public function setPassed($passed) - { - $this->passed = $passed; - } - public function getPassed() - { - return $this->passed; - } - public function setTaken($taken) - { - $this->taken = $taken; - } - public function getTaken() - { - return $this->taken; - } - public function setWarning($warning) - { - $this->warning = $warning; - } - public function getWarning() - { - return $this->warning; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/GetCompanyResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/GetCompanyResponse.php deleted file mode 100644 index fbfbaf7f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/GetCompanyResponse.php +++ /dev/null @@ -1,53 +0,0 @@ -company = $company; - } - /** - * @return Google_Service_Partners_Company - */ - public function getCompany() - { - return $this->company; - } - /** - * @param Google_Service_Partners_ResponseMetadata - */ - public function setResponseMetadata(Google_Service_Partners_ResponseMetadata $responseMetadata) - { - $this->responseMetadata = $responseMetadata; - } - /** - * @return Google_Service_Partners_ResponseMetadata - */ - public function getResponseMetadata() - { - return $this->responseMetadata; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/GetPartnersStatusResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/GetPartnersStatusResponse.php deleted file mode 100644 index 2790f2c0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/GetPartnersStatusResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -responseMetadata = $responseMetadata; - } - /** - * @return Google_Service_Partners_ResponseMetadata - */ - public function getResponseMetadata() - { - return $this->responseMetadata; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/HistoricalOffer.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/HistoricalOffer.php deleted file mode 100644 index bff183db..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/HistoricalOffer.php +++ /dev/null @@ -1,129 +0,0 @@ -adwordsUrl = $adwordsUrl; - } - public function getAdwordsUrl() - { - return $this->adwordsUrl; - } - public function setClientEmail($clientEmail) - { - $this->clientEmail = $clientEmail; - } - public function getClientEmail() - { - return $this->clientEmail; - } - public function setClientId($clientId) - { - $this->clientId = $clientId; - } - public function getClientId() - { - return $this->clientId; - } - public function setClientName($clientName) - { - $this->clientName = $clientName; - } - public function getClientName() - { - return $this->clientName; - } - public function setCreationTime($creationTime) - { - $this->creationTime = $creationTime; - } - public function getCreationTime() - { - return $this->creationTime; - } - public function setExpirationTime($expirationTime) - { - $this->expirationTime = $expirationTime; - } - public function getExpirationTime() - { - return $this->expirationTime; - } - public function setLastModifiedTime($lastModifiedTime) - { - $this->lastModifiedTime = $lastModifiedTime; - } - public function getLastModifiedTime() - { - return $this->lastModifiedTime; - } - public function setOfferCode($offerCode) - { - $this->offerCode = $offerCode; - } - public function getOfferCode() - { - return $this->offerCode; - } - public function setOfferCountryCode($offerCountryCode) - { - $this->offerCountryCode = $offerCountryCode; - } - public function getOfferCountryCode() - { - return $this->offerCountryCode; - } - public function setOfferType($offerType) - { - $this->offerType = $offerType; - } - public function getOfferType() - { - return $this->offerType; - } - public function setSenderName($senderName) - { - $this->senderName = $senderName; - } - public function getSenderName() - { - return $this->senderName; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/LatLng.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/LatLng.php deleted file mode 100644 index 61e00ea0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/LatLng.php +++ /dev/null @@ -1,39 +0,0 @@ -latitude = $latitude; - } - public function getLatitude() - { - return $this->latitude; - } - public function setLongitude($longitude) - { - $this->longitude = $longitude; - } - public function getLongitude() - { - return $this->longitude; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Lead.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Lead.php deleted file mode 100644 index 49e174ad..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Lead.php +++ /dev/null @@ -1,164 +0,0 @@ -adwordsCustomerId = $adwordsCustomerId; - } - public function getAdwordsCustomerId() - { - return $this->adwordsCustomerId; - } - public function setComments($comments) - { - $this->comments = $comments; - } - public function getComments() - { - return $this->comments; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setEmail($email) - { - $this->email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setFamilyName($familyName) - { - $this->familyName = $familyName; - } - public function getFamilyName() - { - return $this->familyName; - } - public function setGivenName($givenName) - { - $this->givenName = $givenName; - } - public function getGivenName() - { - return $this->givenName; - } - public function setGpsMotivations($gpsMotivations) - { - $this->gpsMotivations = $gpsMotivations; - } - public function getGpsMotivations() - { - return $this->gpsMotivations; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setLanguageCode($languageCode) - { - $this->languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } - public function setMarketingOptIn($marketingOptIn) - { - $this->marketingOptIn = $marketingOptIn; - } - public function getMarketingOptIn() - { - return $this->marketingOptIn; - } - /** - * @param Google_Service_Partners_Money - */ - public function setMinMonthlyBudget(Google_Service_Partners_Money $minMonthlyBudget) - { - $this->minMonthlyBudget = $minMonthlyBudget; - } - /** - * @return Google_Service_Partners_Money - */ - public function getMinMonthlyBudget() - { - return $this->minMonthlyBudget; - } - public function setPhoneNumber($phoneNumber) - { - $this->phoneNumber = $phoneNumber; - } - public function getPhoneNumber() - { - return $this->phoneNumber; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setWebsiteUrl($websiteUrl) - { - $this->websiteUrl = $websiteUrl; - } - public function getWebsiteUrl() - { - return $this->websiteUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/ListAnalyticsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/ListAnalyticsResponse.php deleted file mode 100644 index f3c2326e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/ListAnalyticsResponse.php +++ /dev/null @@ -1,79 +0,0 @@ -analytics = $analytics; - } - /** - * @return Google_Service_Partners_Analytics - */ - public function getAnalytics() - { - return $this->analytics; - } - /** - * @param Google_Service_Partners_AnalyticsSummary - */ - public function setAnalyticsSummary(Google_Service_Partners_AnalyticsSummary $analyticsSummary) - { - $this->analyticsSummary = $analyticsSummary; - } - /** - * @return Google_Service_Partners_AnalyticsSummary - */ - public function getAnalyticsSummary() - { - return $this->analyticsSummary; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Partners_ResponseMetadata - */ - public function setResponseMetadata(Google_Service_Partners_ResponseMetadata $responseMetadata) - { - $this->responseMetadata = $responseMetadata; - } - /** - * @return Google_Service_Partners_ResponseMetadata - */ - public function getResponseMetadata() - { - return $this->responseMetadata; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/ListCompaniesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/ListCompaniesResponse.php deleted file mode 100644 index c4dd799c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/ListCompaniesResponse.php +++ /dev/null @@ -1,63 +0,0 @@ -companies = $companies; - } - /** - * @return Google_Service_Partners_Company - */ - public function getCompanies() - { - return $this->companies; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Partners_ResponseMetadata - */ - public function setResponseMetadata(Google_Service_Partners_ResponseMetadata $responseMetadata) - { - $this->responseMetadata = $responseMetadata; - } - /** - * @return Google_Service_Partners_ResponseMetadata - */ - public function getResponseMetadata() - { - return $this->responseMetadata; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/ListLeadsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/ListLeadsResponse.php deleted file mode 100644 index 28763f6a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/ListLeadsResponse.php +++ /dev/null @@ -1,72 +0,0 @@ -leads = $leads; - } - /** - * @return Google_Service_Partners_Lead - */ - public function getLeads() - { - return $this->leads; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Partners_ResponseMetadata - */ - public function setResponseMetadata(Google_Service_Partners_ResponseMetadata $responseMetadata) - { - $this->responseMetadata = $responseMetadata; - } - /** - * @return Google_Service_Partners_ResponseMetadata - */ - public function getResponseMetadata() - { - return $this->responseMetadata; - } - public function setTotalSize($totalSize) - { - $this->totalSize = $totalSize; - } - public function getTotalSize() - { - return $this->totalSize; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/ListOffersHistoryResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/ListOffersHistoryResponse.php deleted file mode 100644 index e493f5c0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/ListOffersHistoryResponse.php +++ /dev/null @@ -1,90 +0,0 @@ -canShowEntireCompany = $canShowEntireCompany; - } - public function getCanShowEntireCompany() - { - return $this->canShowEntireCompany; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Partners_HistoricalOffer - */ - public function setOffers($offers) - { - $this->offers = $offers; - } - /** - * @return Google_Service_Partners_HistoricalOffer - */ - public function getOffers() - { - return $this->offers; - } - /** - * @param Google_Service_Partners_ResponseMetadata - */ - public function setResponseMetadata(Google_Service_Partners_ResponseMetadata $responseMetadata) - { - $this->responseMetadata = $responseMetadata; - } - /** - * @return Google_Service_Partners_ResponseMetadata - */ - public function getResponseMetadata() - { - return $this->responseMetadata; - } - public function setShowingEntireCompany($showingEntireCompany) - { - $this->showingEntireCompany = $showingEntireCompany; - } - public function getShowingEntireCompany() - { - return $this->showingEntireCompany; - } - public function setTotalResults($totalResults) - { - $this->totalResults = $totalResults; - } - public function getTotalResults() - { - return $this->totalResults; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/ListOffersResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/ListOffersResponse.php deleted file mode 100644 index dab2d22f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/ListOffersResponse.php +++ /dev/null @@ -1,63 +0,0 @@ -availableOffers = $availableOffers; - } - /** - * @return Google_Service_Partners_AvailableOffer - */ - public function getAvailableOffers() - { - return $this->availableOffers; - } - public function setNoOfferReason($noOfferReason) - { - $this->noOfferReason = $noOfferReason; - } - public function getNoOfferReason() - { - return $this->noOfferReason; - } - /** - * @param Google_Service_Partners_ResponseMetadata - */ - public function setResponseMetadata(Google_Service_Partners_ResponseMetadata $responseMetadata) - { - $this->responseMetadata = $responseMetadata; - } - /** - * @return Google_Service_Partners_ResponseMetadata - */ - public function getResponseMetadata() - { - return $this->responseMetadata; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/ListUserStatesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/ListUserStatesResponse.php deleted file mode 100644 index 06df3f30..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/ListUserStatesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -responseMetadata = $responseMetadata; - } - /** - * @return Google_Service_Partners_ResponseMetadata - */ - public function getResponseMetadata() - { - return $this->responseMetadata; - } - public function setUserStates($userStates) - { - $this->userStates = $userStates; - } - public function getUserStates() - { - return $this->userStates; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/LocalizedCompanyInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/LocalizedCompanyInfo.php deleted file mode 100644 index f4c63f6b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/LocalizedCompanyInfo.php +++ /dev/null @@ -1,58 +0,0 @@ -countryCodes = $countryCodes; - } - public function getCountryCodes() - { - return $this->countryCodes; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setLanguageCode($languageCode) - { - $this->languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } - public function setOverview($overview) - { - $this->overview = $overview; - } - public function getOverview() - { - return $this->overview; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Location.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Location.php deleted file mode 100644 index 927d0be6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Location.php +++ /dev/null @@ -1,119 +0,0 @@ -address = $address; - } - public function getAddress() - { - return $this->address; - } - public function setAddressLine($addressLine) - { - $this->addressLine = $addressLine; - } - public function getAddressLine() - { - return $this->addressLine; - } - public function setAdministrativeArea($administrativeArea) - { - $this->administrativeArea = $administrativeArea; - } - public function getAdministrativeArea() - { - return $this->administrativeArea; - } - public function setDependentLocality($dependentLocality) - { - $this->dependentLocality = $dependentLocality; - } - public function getDependentLocality() - { - return $this->dependentLocality; - } - public function setLanguageCode($languageCode) - { - $this->languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } - /** - * @param Google_Service_Partners_LatLng - */ - public function setLatLng(Google_Service_Partners_LatLng $latLng) - { - $this->latLng = $latLng; - } - /** - * @return Google_Service_Partners_LatLng - */ - public function getLatLng() - { - return $this->latLng; - } - 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 setSortingCode($sortingCode) - { - $this->sortingCode = $sortingCode; - } - public function getSortingCode() - { - return $this->sortingCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/LogMessageRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/LogMessageRequest.php deleted file mode 100644 index 6a5122f7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/LogMessageRequest.php +++ /dev/null @@ -1,64 +0,0 @@ -clientInfo = $clientInfo; - } - public function getClientInfo() - { - return $this->clientInfo; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setLevel($level) - { - $this->level = $level; - } - public function getLevel() - { - return $this->level; - } - /** - * @param Google_Service_Partners_RequestMetadata - */ - public function setRequestMetadata(Google_Service_Partners_RequestMetadata $requestMetadata) - { - $this->requestMetadata = $requestMetadata; - } - /** - * @return Google_Service_Partners_RequestMetadata - */ - public function getRequestMetadata() - { - return $this->requestMetadata; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/LogMessageResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/LogMessageResponse.php deleted file mode 100644 index 2ffd3514..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/LogMessageResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -responseMetadata = $responseMetadata; - } - /** - * @return Google_Service_Partners_ResponseMetadata - */ - public function getResponseMetadata() - { - return $this->responseMetadata; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/LogUserEventRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/LogUserEventRequest.php deleted file mode 100644 index 3d670c91..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/LogUserEventRequest.php +++ /dev/null @@ -1,106 +0,0 @@ -eventAction = $eventAction; - } - public function getEventAction() - { - return $this->eventAction; - } - public function setEventCategory($eventCategory) - { - $this->eventCategory = $eventCategory; - } - public function getEventCategory() - { - return $this->eventCategory; - } - /** - * @param Google_Service_Partners_EventData - */ - public function setEventDatas($eventDatas) - { - $this->eventDatas = $eventDatas; - } - /** - * @return Google_Service_Partners_EventData - */ - public function getEventDatas() - { - return $this->eventDatas; - } - public function setEventScope($eventScope) - { - $this->eventScope = $eventScope; - } - public function getEventScope() - { - return $this->eventScope; - } - /** - * @param Google_Service_Partners_Lead - */ - public function setLead(Google_Service_Partners_Lead $lead) - { - $this->lead = $lead; - } - /** - * @return Google_Service_Partners_Lead - */ - public function getLead() - { - return $this->lead; - } - /** - * @param Google_Service_Partners_RequestMetadata - */ - public function setRequestMetadata(Google_Service_Partners_RequestMetadata $requestMetadata) - { - $this->requestMetadata = $requestMetadata; - } - /** - * @return Google_Service_Partners_RequestMetadata - */ - public function getRequestMetadata() - { - return $this->requestMetadata; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/LogUserEventResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/LogUserEventResponse.php deleted file mode 100644 index e931c782..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/LogUserEventResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -responseMetadata = $responseMetadata; - } - /** - * @return Google_Service_Partners_ResponseMetadata - */ - public function getResponseMetadata() - { - return $this->responseMetadata; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Money.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Money.php deleted file mode 100644 index 3507a470..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Money.php +++ /dev/null @@ -1,48 +0,0 @@ -currencyCode = $currencyCode; - } - public function getCurrencyCode() - { - return $this->currencyCode; - } - public function setNanos($nanos) - { - $this->nanos = $nanos; - } - public function getNanos() - { - return $this->nanos; - } - public function setUnits($units) - { - $this->units = $units; - } - public function getUnits() - { - return $this->units; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/OfferCustomer.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/OfferCustomer.php deleted file mode 100644 index 872ad287..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/OfferCustomer.php +++ /dev/null @@ -1,102 +0,0 @@ -adwordsUrl = $adwordsUrl; - } - public function getAdwordsUrl() - { - return $this->adwordsUrl; - } - public function setCountryCode($countryCode) - { - $this->countryCode = $countryCode; - } - public function getCountryCode() - { - return $this->countryCode; - } - public function setCreationTime($creationTime) - { - $this->creationTime = $creationTime; - } - public function getCreationTime() - { - return $this->creationTime; - } - public function setEligibilityDaysLeft($eligibilityDaysLeft) - { - $this->eligibilityDaysLeft = $eligibilityDaysLeft; - } - public function getEligibilityDaysLeft() - { - return $this->eligibilityDaysLeft; - } - public function setExternalCid($externalCid) - { - $this->externalCid = $externalCid; - } - public function getExternalCid() - { - return $this->externalCid; - } - public function setGetYAmount($getYAmount) - { - $this->getYAmount = $getYAmount; - } - public function getGetYAmount() - { - return $this->getYAmount; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOfferType($offerType) - { - $this->offerType = $offerType; - } - public function getOfferType() - { - return $this->offerType; - } - public function setSpendXAmount($spendXAmount) - { - $this->spendXAmount = $spendXAmount; - } - public function getSpendXAmount() - { - return $this->spendXAmount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/OptIns.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/OptIns.php deleted file mode 100644 index 7a0d9aa0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/OptIns.php +++ /dev/null @@ -1,66 +0,0 @@ -marketComm = $marketComm; - } - public function getMarketComm() - { - return $this->marketComm; - } - public function setPerformanceSuggestions($performanceSuggestions) - { - $this->performanceSuggestions = $performanceSuggestions; - } - public function getPerformanceSuggestions() - { - return $this->performanceSuggestions; - } - public function setPhoneContact($phoneContact) - { - $this->phoneContact = $phoneContact; - } - public function getPhoneContact() - { - return $this->phoneContact; - } - public function setPhysicalMail($physicalMail) - { - $this->physicalMail = $physicalMail; - } - public function getPhysicalMail() - { - return $this->physicalMail; - } - public function setSpecialOffers($specialOffers) - { - $this->specialOffers = $specialOffers; - } - public function getSpecialOffers() - { - return $this->specialOffers; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/PartnersEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/PartnersEmpty.php deleted file mode 100644 index f53ab570..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/PartnersEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -displayImageUrl = $displayImageUrl; - } - public function getDisplayImageUrl() - { - return $this->displayImageUrl; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setProfileImage($profileImage) - { - $this->profileImage = $profileImage; - } - public function getProfileImage() - { - return $this->profileImage; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Rank.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Rank.php deleted file mode 100644 index 160599d1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Rank.php +++ /dev/null @@ -1,39 +0,0 @@ -type = $type; - } - public function getType() - { - return $this->type; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/RecaptchaChallenge.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/RecaptchaChallenge.php deleted file mode 100644 index cd8f639e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/RecaptchaChallenge.php +++ /dev/null @@ -1,39 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/RequestMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/RequestMetadata.php deleted file mode 100644 index a458f82e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/RequestMetadata.php +++ /dev/null @@ -1,81 +0,0 @@ -experimentIds = $experimentIds; - } - public function getExperimentIds() - { - return $this->experimentIds; - } - public function setLocale($locale) - { - $this->locale = $locale; - } - public function getLocale() - { - return $this->locale; - } - public function setPartnersSessionId($partnersSessionId) - { - $this->partnersSessionId = $partnersSessionId; - } - public function getPartnersSessionId() - { - return $this->partnersSessionId; - } - /** - * @param Google_Service_Partners_TrafficSource - */ - public function setTrafficSource(Google_Service_Partners_TrafficSource $trafficSource) - { - $this->trafficSource = $trafficSource; - } - /** - * @return Google_Service_Partners_TrafficSource - */ - public function getTrafficSource() - { - return $this->trafficSource; - } - /** - * @param Google_Service_Partners_UserOverrides - */ - public function setUserOverrides(Google_Service_Partners_UserOverrides $userOverrides) - { - $this->userOverrides = $userOverrides; - } - /** - * @return Google_Service_Partners_UserOverrides - */ - public function getUserOverrides() - { - return $this->userOverrides; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Resource/Analytics.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Resource/Analytics.php deleted file mode 100644 index 4a15c863..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Resource/Analytics.php +++ /dev/null @@ -1,70 +0,0 @@ - - * $partnersService = new Google_Service_Partners(...); - * $analytics = $partnersService->analytics; - * - */ -class Google_Service_Partners_Resource_Analytics extends Google_Service_Resource -{ - /** - * Lists analytics data for a user's associated company. Should only be called - * within the context of an authorized logged in user. (analytics.listAnalytics) - * - * @param array $optParams Optional parameters. - * - * @opt_param string requestMetadata.userOverrides.userId Logged-in user ID to - * impersonate instead of the user's ID. - * @opt_param string requestMetadata.partnersSessionId Google Partners session - * ID. - * @opt_param string pageToken A token identifying a page of results that the - * server returns. Typically, this is the value of - * `ListAnalyticsResponse.next_page_token` returned from the previous call to - * ListAnalytics. Will be a date string in `YYYY-MM-DD` format representing the - * end date of the date range of results to return. If unspecified or set to "", - * default value is the current date. - * @opt_param int pageSize Requested page size. Server may return fewer - * analytics than requested. If unspecified or set to 0, default value is 30. - * Specifies the number of days in the date range when querying analytics. The - * `page_token` represents the end date of the date range and the start date is - * calculated using the `page_size` as the number of days BEFORE the end date. - * Must be a non-negative integer. - * @opt_param string requestMetadata.trafficSource.trafficSourceId Identifier to - * indicate where the traffic comes from. An identifier has multiple letters - * created by a team which redirected the traffic to us. - * @opt_param string requestMetadata.locale Locale to use for the current - * request. - * @opt_param string requestMetadata.userOverrides.ipAddress IP address to use - * instead of the user's geo-located IP address. - * @opt_param string requestMetadata.experimentIds Experiment IDs the current - * request belongs to. - * @opt_param string requestMetadata.trafficSource.trafficSubId Second level - * identifier to indicate where the traffic comes from. An identifier has - * multiple letters created by a team which redirected the traffic to us. - * @return Google_Service_Partners_ListAnalyticsResponse - */ - public function listAnalytics($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Partners_ListAnalyticsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Resource/ClientMessages.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Resource/ClientMessages.php deleted file mode 100644 index 1d68f2ee..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Resource/ClientMessages.php +++ /dev/null @@ -1,43 +0,0 @@ - - * $partnersService = new Google_Service_Partners(...); - * $clientMessages = $partnersService->clientMessages; - * - */ -class Google_Service_Partners_Resource_ClientMessages extends Google_Service_Resource -{ - /** - * Logs a generic message from the client, such as `Failed to render component`, - * `Profile page is running slow`, `More than 500 users have accessed this - * result.`, etc. (clientMessages.log) - * - * @param Google_Service_Partners_LogMessageRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Partners_LogMessageResponse - */ - public function log(Google_Service_Partners_LogMessageRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('log', array($params), "Google_Service_Partners_LogMessageResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Resource/Companies.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Resource/Companies.php deleted file mode 100644 index d33a971c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Resource/Companies.php +++ /dev/null @@ -1,150 +0,0 @@ - - * $partnersService = new Google_Service_Partners(...); - * $companies = $partnersService->companies; - * - */ -class Google_Service_Partners_Resource_Companies extends Google_Service_Resource -{ - /** - * Gets a company. (companies.get) - * - * @param string $companyId The ID of the company to retrieve. - * @param array $optParams Optional parameters. - * - * @opt_param string requestMetadata.trafficSource.trafficSourceId Identifier to - * indicate where the traffic comes from. An identifier has multiple letters - * created by a team which redirected the traffic to us. - * @opt_param string requestMetadata.userOverrides.ipAddress IP address to use - * instead of the user's geo-located IP address. - * @opt_param string requestMetadata.experimentIds Experiment IDs the current - * request belongs to. - * @opt_param string currencyCode If the company's budget is in a different - * currency code than this one, then the converted budget is converted to this - * currency code. - * @opt_param string orderBy How to order addresses within the returned company. - * Currently, only `address` and `address desc` is supported which will sorted - * by closest to farthest in distance from given address and farthest to closest - * distance from given address respectively. - * @opt_param string requestMetadata.trafficSource.trafficSubId Second level - * identifier to indicate where the traffic comes from. An identifier has - * multiple letters created by a team which redirected the traffic to us. - * @opt_param string requestMetadata.userOverrides.userId Logged-in user ID to - * impersonate instead of the user's ID. - * @opt_param string requestMetadata.partnersSessionId Google Partners session - * ID. - * @opt_param string view The view of `Company` resource to be returned. This - * must not be `COMPANY_VIEW_UNSPECIFIED`. - * @opt_param string requestMetadata.locale Locale to use for the current - * request. - * @opt_param string address The address to use for sorting the company's - * addresses by proximity. If not given, the geo-located address of the request - * is used. Used when order_by is set. - * @return Google_Service_Partners_GetCompanyResponse - */ - public function get($companyId, $optParams = array()) - { - $params = array('companyId' => $companyId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Partners_GetCompanyResponse"); - } - /** - * Lists companies. (companies.listCompanies) - * - * @param array $optParams Optional parameters. - * - * @opt_param string services List of services that the returned agencies should - * provide. If this is not empty, any returned agency must have at least one of - * these services, or one of the specializations in the "specializations" field. - * @opt_param string requestMetadata.trafficSource.trafficSourceId Identifier to - * indicate where the traffic comes from. An identifier has multiple letters - * created by a team which redirected the traffic to us. - * @opt_param string maxMonthlyBudget.units The whole units of the amount. For - * example if `currencyCode` is `"USD"`, then 1 unit is one US dollar. - * @opt_param string requestMetadata.trafficSource.trafficSubId Second level - * identifier to indicate where the traffic comes from. An identifier has - * multiple letters created by a team which redirected the traffic to us. - * @opt_param int minMonthlyBudget.nanos Number of nano (10^-9) units of the - * amount. The value must be between -999,999,999 and +999,999,999 inclusive. If - * `units` is positive, `nanos` must be positive or zero. If `units` is zero, - * `nanos` can be positive, zero, or negative. If `units` is negative, `nanos` - * must be negative or zero. For example $-1.75 is represented as `units`=-1 and - * `nanos`=-750,000,000. - * @opt_param string requestMetadata.partnersSessionId Google Partners session - * ID. - * @opt_param string pageToken A token identifying a page of results that the - * server returns. Typically, this is the value of - * `ListCompaniesResponse.next_page_token` returned from the previous call to - * ListCompanies. - * @opt_param string companyName Company name to search for. - * @opt_param string industries List of industries the company can help with. - * @opt_param string websiteUrl Website URL that will help to find a better - * matched company. . - * @opt_param string gpsMotivations List of reasons for using Google Partner - * Search to get companies. - * @opt_param string languageCodes List of language codes that company can - * support. Only primary language subtags are accepted as defined by BCP 47 - * (IETF BCP 47, "Tags for Identifying Languages"). - * @opt_param int pageSize Requested page size. Server may return fewer - * companies than requested. If unspecified, server picks an appropriate - * default. - * @opt_param string requestMetadata.userOverrides.ipAddress IP address to use - * instead of the user's geo-located IP address. - * @opt_param string requestMetadata.experimentIds Experiment IDs the current - * request belongs to. - * @opt_param string orderBy How to order addresses within the returned - * companies. Currently, only `address` and `address desc` is supported which - * will sorted by closest to farthest in distance from given address and - * farthest to closest distance from given address respectively. - * @opt_param string specializations List of specializations that the returned - * agencies should provide. If this is not empty, any returned agency must have - * at least one of these specializations, or one of the services in the - * "services" field. - * @opt_param string maxMonthlyBudget.currencyCode The 3-letter currency code - * defined in ISO 4217. - * @opt_param string requestMetadata.userOverrides.userId Logged-in user ID to - * impersonate instead of the user's ID. - * @opt_param string minMonthlyBudget.currencyCode The 3-letter currency code - * defined in ISO 4217. - * @opt_param string view The view of the `Company` resource to be returned. - * This must not be `COMPANY_VIEW_UNSPECIFIED`. - * @opt_param string requestMetadata.locale Locale to use for the current - * request. - * @opt_param string address The address to use when searching for companies. If - * not given, the geo-located address of the request is used. - * @opt_param string minMonthlyBudget.units The whole units of the amount. For - * example if `currencyCode` is `"USD"`, then 1 unit is one US dollar. - * @opt_param int maxMonthlyBudget.nanos Number of nano (10^-9) units of the - * amount. The value must be between -999,999,999 and +999,999,999 inclusive. If - * `units` is positive, `nanos` must be positive or zero. If `units` is zero, - * `nanos` can be positive, zero, or negative. If `units` is negative, `nanos` - * must be negative or zero. For example $-1.75 is represented as `units`=-1 and - * `nanos`=-750,000,000. - * @return Google_Service_Partners_ListCompaniesResponse - */ - public function listCompanies($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Partners_ListCompaniesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Resource/CompaniesLeads.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Resource/CompaniesLeads.php deleted file mode 100644 index c5463f32..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Resource/CompaniesLeads.php +++ /dev/null @@ -1,42 +0,0 @@ - - * $partnersService = new Google_Service_Partners(...); - * $leads = $partnersService->leads; - * - */ -class Google_Service_Partners_Resource_CompaniesLeads extends Google_Service_Resource -{ - /** - * Creates an advertiser lead for the given company ID. (leads.create) - * - * @param string $companyId The ID of the company to contact. - * @param Google_Service_Partners_CreateLeadRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Partners_CreateLeadResponse - */ - public function create($companyId, Google_Service_Partners_CreateLeadRequest $postBody, $optParams = array()) - { - $params = array('companyId' => $companyId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Partners_CreateLeadResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Resource/Leads.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Resource/Leads.php deleted file mode 100644 index c59579af..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Resource/Leads.php +++ /dev/null @@ -1,66 +0,0 @@ - - * $partnersService = new Google_Service_Partners(...); - * $leads = $partnersService->leads; - * - */ -class Google_Service_Partners_Resource_Leads extends Google_Service_Resource -{ - /** - * Lists advertiser leads for a user's associated company. Should only be called - * within the context of an authorized logged in user. (leads.listLeads) - * - * @param array $optParams Optional parameters. - * - * @opt_param string requestMetadata.experimentIds Experiment IDs the current - * request belongs to. - * @opt_param string requestMetadata.trafficSource.trafficSubId Second level - * identifier to indicate where the traffic comes from. An identifier has - * multiple letters created by a team which redirected the traffic to us. - * @opt_param string orderBy How to order Leads. Currently, only `create_time` - * and `create_time desc` are supported - * @opt_param string requestMetadata.userOverrides.userId Logged-in user ID to - * impersonate instead of the user's ID. - * @opt_param string requestMetadata.partnersSessionId Google Partners session - * ID. - * @opt_param string pageToken A token identifying a page of results that the - * server returns. Typically, this is the value of - * `ListLeadsResponse.next_page_token` returned from the previous call to - * ListLeads. - * @opt_param int pageSize Requested page size. Server may return fewer leads - * than requested. If unspecified, server picks an appropriate default. - * @opt_param string requestMetadata.trafficSource.trafficSourceId Identifier to - * indicate where the traffic comes from. An identifier has multiple letters - * created by a team which redirected the traffic to us. - * @opt_param string requestMetadata.locale Locale to use for the current - * request. - * @opt_param string requestMetadata.userOverrides.ipAddress IP address to use - * instead of the user's geo-located IP address. - * @return Google_Service_Partners_ListLeadsResponse - */ - public function listLeads($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Partners_ListLeadsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Resource/Offers.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Resource/Offers.php deleted file mode 100644 index ae16f8da..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Resource/Offers.php +++ /dev/null @@ -1,57 +0,0 @@ - - * $partnersService = new Google_Service_Partners(...); - * $offers = $partnersService->offers; - * - */ -class Google_Service_Partners_Resource_Offers extends Google_Service_Resource -{ - /** - * Lists the Offers available for the current user (offers.listOffers) - * - * @param array $optParams Optional parameters. - * - * @opt_param string requestMetadata.userOverrides.userId Logged-in user ID to - * impersonate instead of the user's ID. - * @opt_param string requestMetadata.partnersSessionId Google Partners session - * ID. - * @opt_param string requestMetadata.trafficSource.trafficSourceId Identifier to - * indicate where the traffic comes from. An identifier has multiple letters - * created by a team which redirected the traffic to us. - * @opt_param string requestMetadata.locale Locale to use for the current - * request. - * @opt_param string requestMetadata.userOverrides.ipAddress IP address to use - * instead of the user's geo-located IP address. - * @opt_param string requestMetadata.experimentIds Experiment IDs the current - * request belongs to. - * @opt_param string requestMetadata.trafficSource.trafficSubId Second level - * identifier to indicate where the traffic comes from. An identifier has - * multiple letters created by a team which redirected the traffic to us. - * @return Google_Service_Partners_ListOffersResponse - */ - public function listOffers($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Partners_ListOffersResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Resource/OffersHistory.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Resource/OffersHistory.php deleted file mode 100644 index 5bc2c3b2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Resource/OffersHistory.php +++ /dev/null @@ -1,66 +0,0 @@ - - * $partnersService = new Google_Service_Partners(...); - * $history = $partnersService->history; - * - */ -class Google_Service_Partners_Resource_OffersHistory extends Google_Service_Resource -{ - /** - * Lists the Historical Offers for the current user (or user's entire company) - * (history.listOffersHistory) - * - * @param array $optParams Optional parameters. - * - * @opt_param string requestMetadata.partnersSessionId Google Partners session - * ID. - * @opt_param string requestMetadata.userOverrides.userId Logged-in user ID to - * impersonate instead of the user's ID. - * @opt_param string pageToken Token to retrieve a specific page. - * @opt_param int pageSize Maximum number of rows to return per page. - * @opt_param string requestMetadata.trafficSource.trafficSourceId Identifier to - * indicate where the traffic comes from. An identifier has multiple letters - * created by a team which redirected the traffic to us. - * @opt_param string requestMetadata.locale Locale to use for the current - * request. - * @opt_param string requestMetadata.userOverrides.ipAddress IP address to use - * instead of the user's geo-located IP address. - * @opt_param bool entireCompany if true, show history for the entire company. - * Requires user to be admin. - * @opt_param string requestMetadata.experimentIds Experiment IDs the current - * request belongs to. - * @opt_param string orderBy Comma-separated list of fields to order by, e.g.: - * "foo,bar,baz". Use "foo desc" to sort descending. List of valid field names - * is: name, offer_code, expiration_time, status, last_modified_time, - * sender_name, creation_time, country_code, offer_type. - * @opt_param string requestMetadata.trafficSource.trafficSubId Second level - * identifier to indicate where the traffic comes from. An identifier has - * multiple letters created by a team which redirected the traffic to us. - * @return Google_Service_Partners_ListOffersHistoryResponse - */ - public function listOffersHistory($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Partners_ListOffersHistoryResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Resource/UserEvents.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Resource/UserEvents.php deleted file mode 100644 index e68b1f3e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Resource/UserEvents.php +++ /dev/null @@ -1,41 +0,0 @@ - - * $partnersService = new Google_Service_Partners(...); - * $userEvents = $partnersService->userEvents; - * - */ -class Google_Service_Partners_Resource_UserEvents extends Google_Service_Resource -{ - /** - * Logs a user event. (userEvents.log) - * - * @param Google_Service_Partners_LogUserEventRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Partners_LogUserEventResponse - */ - public function log(Google_Service_Partners_LogUserEventRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('log', array($params), "Google_Service_Partners_LogUserEventResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Resource/UserStates.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Resource/UserStates.php deleted file mode 100644 index bfb36404..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Resource/UserStates.php +++ /dev/null @@ -1,57 +0,0 @@ - - * $partnersService = new Google_Service_Partners(...); - * $userStates = $partnersService->userStates; - * - */ -class Google_Service_Partners_Resource_UserStates extends Google_Service_Resource -{ - /** - * Lists states for current user. (userStates.listUserStates) - * - * @param array $optParams Optional parameters. - * - * @opt_param string requestMetadata.locale Locale to use for the current - * request. - * @opt_param string requestMetadata.userOverrides.ipAddress IP address to use - * instead of the user's geo-located IP address. - * @opt_param string requestMetadata.experimentIds Experiment IDs the current - * request belongs to. - * @opt_param string requestMetadata.trafficSource.trafficSubId Second level - * identifier to indicate where the traffic comes from. An identifier has - * multiple letters created by a team which redirected the traffic to us. - * @opt_param string requestMetadata.userOverrides.userId Logged-in user ID to - * impersonate instead of the user's ID. - * @opt_param string requestMetadata.partnersSessionId Google Partners session - * ID. - * @opt_param string requestMetadata.trafficSource.trafficSourceId Identifier to - * indicate where the traffic comes from. An identifier has multiple letters - * created by a team which redirected the traffic to us. - * @return Google_Service_Partners_ListUserStatesResponse - */ - public function listUserStates($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Partners_ListUserStatesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Resource/Users.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Resource/Users.php deleted file mode 100644 index 570bad43..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Resource/Users.php +++ /dev/null @@ -1,157 +0,0 @@ - - * $partnersService = new Google_Service_Partners(...); - * $users = $partnersService->users; - * - */ -class Google_Service_Partners_Resource_Users extends Google_Service_Resource -{ - /** - * Creates a user's company relation. Affiliates the user to a company. - * (users.createCompanyRelation) - * - * @param string $userId The ID of the user. Can be set to me to mean the - * currently authenticated user. - * @param Google_Service_Partners_CompanyRelation $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestMetadata.partnersSessionId Google Partners session - * ID. - * @opt_param string requestMetadata.userOverrides.userId Logged-in user ID to - * impersonate instead of the user's ID. - * @opt_param string requestMetadata.trafficSource.trafficSourceId Identifier to - * indicate where the traffic comes from. An identifier has multiple letters - * created by a team which redirected the traffic to us. - * @opt_param string requestMetadata.locale Locale to use for the current - * request. - * @opt_param string requestMetadata.userOverrides.ipAddress IP address to use - * instead of the user's geo-located IP address. - * @opt_param string requestMetadata.experimentIds Experiment IDs the current - * request belongs to. - * @opt_param string requestMetadata.trafficSource.trafficSubId Second level - * identifier to indicate where the traffic comes from. An identifier has - * multiple letters created by a team which redirected the traffic to us. - * @return Google_Service_Partners_CompanyRelation - */ - public function createCompanyRelation($userId, Google_Service_Partners_CompanyRelation $postBody, $optParams = array()) - { - $params = array('userId' => $userId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('createCompanyRelation', array($params), "Google_Service_Partners_CompanyRelation"); - } - /** - * Deletes a user's company relation. Unaffiliaites the user from a company. - * (users.deleteCompanyRelation) - * - * @param string $userId The ID of the user. Can be set to me to mean the - * currently authenticated user. - * @param array $optParams Optional parameters. - * - * @opt_param string requestMetadata.locale Locale to use for the current - * request. - * @opt_param string requestMetadata.userOverrides.ipAddress IP address to use - * instead of the user's geo-located IP address. - * @opt_param string requestMetadata.experimentIds Experiment IDs the current - * request belongs to. - * @opt_param string requestMetadata.trafficSource.trafficSubId Second level - * identifier to indicate where the traffic comes from. An identifier has - * multiple letters created by a team which redirected the traffic to us. - * @opt_param string requestMetadata.userOverrides.userId Logged-in user ID to - * impersonate instead of the user's ID. - * @opt_param string requestMetadata.partnersSessionId Google Partners session - * ID. - * @opt_param string requestMetadata.trafficSource.trafficSourceId Identifier to - * indicate where the traffic comes from. An identifier has multiple letters - * created by a team which redirected the traffic to us. - * @return Google_Service_Partners_PartnersEmpty - */ - public function deleteCompanyRelation($userId, $optParams = array()) - { - $params = array('userId' => $userId); - $params = array_merge($params, $optParams); - return $this->call('deleteCompanyRelation', array($params), "Google_Service_Partners_PartnersEmpty"); - } - /** - * Gets a user. (users.get) - * - * @param string $userId Identifier of the user. Can be set to me to mean the - * currently authenticated user. - * @param array $optParams Optional parameters. - * - * @opt_param string requestMetadata.userOverrides.userId Logged-in user ID to - * impersonate instead of the user's ID. - * @opt_param string requestMetadata.partnersSessionId Google Partners session - * ID. - * @opt_param string userView Specifies what parts of the user information to - * return. - * @opt_param string requestMetadata.trafficSource.trafficSourceId Identifier to - * indicate where the traffic comes from. An identifier has multiple letters - * created by a team which redirected the traffic to us. - * @opt_param string requestMetadata.locale Locale to use for the current - * request. - * @opt_param string requestMetadata.userOverrides.ipAddress IP address to use - * instead of the user's geo-located IP address. - * @opt_param string requestMetadata.experimentIds Experiment IDs the current - * request belongs to. - * @opt_param string requestMetadata.trafficSource.trafficSubId Second level - * identifier to indicate where the traffic comes from. An identifier has - * multiple letters created by a team which redirected the traffic to us. - * @return Google_Service_Partners_User - */ - public function get($userId, $optParams = array()) - { - $params = array('userId' => $userId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Partners_User"); - } - /** - * Updates a user's profile. A user can only update their own profile and should - * only be called within the context of a logged in user. (users.updateProfile) - * - * @param Google_Service_Partners_UserProfile $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestMetadata.locale Locale to use for the current - * request. - * @opt_param string requestMetadata.userOverrides.ipAddress IP address to use - * instead of the user's geo-located IP address. - * @opt_param string requestMetadata.experimentIds Experiment IDs the current - * request belongs to. - * @opt_param string requestMetadata.trafficSource.trafficSubId Second level - * identifier to indicate where the traffic comes from. An identifier has - * multiple letters created by a team which redirected the traffic to us. - * @opt_param string requestMetadata.userOverrides.userId Logged-in user ID to - * impersonate instead of the user's ID. - * @opt_param string requestMetadata.partnersSessionId Google Partners session - * ID. - * @opt_param string requestMetadata.trafficSource.trafficSourceId Identifier to - * indicate where the traffic comes from. An identifier has multiple letters - * created by a team which redirected the traffic to us. - * @return Google_Service_Partners_UserProfile - */ - public function updateProfile(Google_Service_Partners_UserProfile $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updateProfile', array($params), "Google_Service_Partners_UserProfile"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Resource/V2.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Resource/V2.php deleted file mode 100644 index e545b2bc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/Resource/V2.php +++ /dev/null @@ -1,124 +0,0 @@ - - * $partnersService = new Google_Service_Partners(...); - * $v2 = $partnersService->v2; - * - */ -class Google_Service_Partners_Resource_V2 extends Google_Service_Resource -{ - /** - * Gets Partners Status of the logged in user's agency. Should only be called if - * the logged in user is the admin of the agency. (v2.getPartnersstatus) - * - * @param array $optParams Optional parameters. - * - * @opt_param string requestMetadata.locale Locale to use for the current - * request. - * @opt_param string requestMetadata.userOverrides.ipAddress IP address to use - * instead of the user's geo-located IP address. - * @opt_param string requestMetadata.experimentIds Experiment IDs the current - * request belongs to. - * @opt_param string requestMetadata.trafficSource.trafficSubId Second level - * identifier to indicate where the traffic comes from. An identifier has - * multiple letters created by a team which redirected the traffic to us. - * @opt_param string requestMetadata.userOverrides.userId Logged-in user ID to - * impersonate instead of the user's ID. - * @opt_param string requestMetadata.partnersSessionId Google Partners session - * ID. - * @opt_param string requestMetadata.trafficSource.trafficSourceId Identifier to - * indicate where the traffic comes from. An identifier has multiple letters - * created by a team which redirected the traffic to us. - * @return Google_Service_Partners_GetPartnersStatusResponse - */ - public function getPartnersstatus($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('getPartnersstatus', array($params), "Google_Service_Partners_GetPartnersStatusResponse"); - } - /** - * Update company. Should only be called within the context of an authorized - * logged in user. (v2.updateCompanies) - * - * @param Google_Service_Partners_Company $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestMetadata.experimentIds Experiment IDs the current - * request belongs to. - * @opt_param string requestMetadata.trafficSource.trafficSubId Second level - * identifier to indicate where the traffic comes from. An identifier has - * multiple letters created by a team which redirected the traffic to us. - * @opt_param string requestMetadata.partnersSessionId Google Partners session - * ID. - * @opt_param string requestMetadata.userOverrides.userId Logged-in user ID to - * impersonate instead of the user's ID. - * @opt_param string requestMetadata.trafficSource.trafficSourceId Identifier to - * indicate where the traffic comes from. An identifier has multiple letters - * created by a team which redirected the traffic to us. - * @opt_param string requestMetadata.locale Locale to use for the current - * request. - * @opt_param string requestMetadata.userOverrides.ipAddress IP address to use - * instead of the user's geo-located IP address. - * @opt_param string updateMask Standard field mask for the set of fields to be - * updated. Required with at least 1 value in FieldMask's paths. - * @return Google_Service_Partners_Company - */ - public function updateCompanies(Google_Service_Partners_Company $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updateCompanies', array($params), "Google_Service_Partners_Company"); - } - /** - * Updates the specified lead. (v2.updateLeads) - * - * @param Google_Service_Partners_Lead $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestMetadata.experimentIds Experiment IDs the current - * request belongs to. - * @opt_param string requestMetadata.trafficSource.trafficSubId Second level - * identifier to indicate where the traffic comes from. An identifier has - * multiple letters created by a team which redirected the traffic to us. - * @opt_param string requestMetadata.userOverrides.userId Logged-in user ID to - * impersonate instead of the user's ID. - * @opt_param string requestMetadata.partnersSessionId Google Partners session - * ID. - * @opt_param string requestMetadata.trafficSource.trafficSourceId Identifier to - * indicate where the traffic comes from. An identifier has multiple letters - * created by a team which redirected the traffic to us. - * @opt_param string requestMetadata.locale Locale to use for the current - * request. - * @opt_param string requestMetadata.userOverrides.ipAddress IP address to use - * instead of the user's geo-located IP address. - * @opt_param string updateMask Standard field mask for the set of fields to be - * updated. Required with at least 1 value in FieldMask's paths. Only `state` - * and `adwords_customer_id` are currently supported. - * @return Google_Service_Partners_Lead - */ - public function updateLeads(Google_Service_Partners_Lead $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updateLeads', array($params), "Google_Service_Partners_Lead"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/ResponseMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/ResponseMetadata.php deleted file mode 100644 index b01684c6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/ResponseMetadata.php +++ /dev/null @@ -1,37 +0,0 @@ -debugInfo = $debugInfo; - } - /** - * @return Google_Service_Partners_DebugInfo - */ - public function getDebugInfo() - { - return $this->debugInfo; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/SpecializationStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/SpecializationStatus.php deleted file mode 100644 index 4aa98e8b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/SpecializationStatus.php +++ /dev/null @@ -1,39 +0,0 @@ -badgeSpecialization = $badgeSpecialization; - } - public function getBadgeSpecialization() - { - return $this->badgeSpecialization; - } - public function setBadgeSpecializationState($badgeSpecializationState) - { - $this->badgeSpecializationState = $badgeSpecializationState; - } - public function getBadgeSpecializationState() - { - return $this->badgeSpecializationState; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/TrafficSource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/TrafficSource.php deleted file mode 100644 index f1c631e2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/TrafficSource.php +++ /dev/null @@ -1,39 +0,0 @@ -trafficSourceId = $trafficSourceId; - } - public function getTrafficSourceId() - { - return $this->trafficSourceId; - } - public function setTrafficSubId($trafficSubId) - { - $this->trafficSubId = $trafficSubId; - } - public function getTrafficSubId() - { - return $this->trafficSubId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/User.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/User.php deleted file mode 100644 index 03799ff6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/User.php +++ /dev/null @@ -1,172 +0,0 @@ -afaInfoShared = $afaInfoShared; - } - public function getAfaInfoShared() - { - return $this->afaInfoShared; - } - /** - * @param Google_Service_Partners_AdWordsManagerAccountInfo - */ - public function setAvailableAdwordsManagerAccounts($availableAdwordsManagerAccounts) - { - $this->availableAdwordsManagerAccounts = $availableAdwordsManagerAccounts; - } - /** - * @return Google_Service_Partners_AdWordsManagerAccountInfo - */ - public function getAvailableAdwordsManagerAccounts() - { - return $this->availableAdwordsManagerAccounts; - } - /** - * @param Google_Service_Partners_Certification - */ - public function setCertificationStatus($certificationStatus) - { - $this->certificationStatus = $certificationStatus; - } - /** - * @return Google_Service_Partners_Certification - */ - public function getCertificationStatus() - { - return $this->certificationStatus; - } - /** - * @param Google_Service_Partners_CompanyRelation - */ - public function setCompany(Google_Service_Partners_CompanyRelation $company) - { - $this->company = $company; - } - /** - * @return Google_Service_Partners_CompanyRelation - */ - public function getCompany() - { - return $this->company; - } - public function setCompanyVerificationEmail($companyVerificationEmail) - { - $this->companyVerificationEmail = $companyVerificationEmail; - } - public function getCompanyVerificationEmail() - { - return $this->companyVerificationEmail; - } - /** - * @param Google_Service_Partners_ExamStatus - */ - public function setExamStatus($examStatus) - { - $this->examStatus = $examStatus; - } - /** - * @return Google_Service_Partners_ExamStatus - */ - public function getExamStatus() - { - return $this->examStatus; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setInternalId($internalId) - { - $this->internalId = $internalId; - } - public function getInternalId() - { - return $this->internalId; - } - public function setLastAccessTime($lastAccessTime) - { - $this->lastAccessTime = $lastAccessTime; - } - public function getLastAccessTime() - { - return $this->lastAccessTime; - } - public function setPrimaryEmails($primaryEmails) - { - $this->primaryEmails = $primaryEmails; - } - public function getPrimaryEmails() - { - return $this->primaryEmails; - } - /** - * @param Google_Service_Partners_UserProfile - */ - public function setProfile(Google_Service_Partners_UserProfile $profile) - { - $this->profile = $profile; - } - /** - * @return Google_Service_Partners_UserProfile - */ - public function getProfile() - { - return $this->profile; - } - /** - * @param Google_Service_Partners_PublicProfile - */ - public function setPublicProfile(Google_Service_Partners_PublicProfile $publicProfile) - { - $this->publicProfile = $publicProfile; - } - /** - * @return Google_Service_Partners_PublicProfile - */ - public function getPublicProfile() - { - return $this->publicProfile; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/UserOverrides.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/UserOverrides.php deleted file mode 100644 index 6f106a9d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/UserOverrides.php +++ /dev/null @@ -1,39 +0,0 @@ -ipAddress = $ipAddress; - } - public function getIpAddress() - { - return $this->ipAddress; - } - public function setUserId($userId) - { - $this->userId = $userId; - } - public function getUserId() - { - return $this->userId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/UserProfile.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/UserProfile.php deleted file mode 100644 index 3c337460..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Partners/UserProfile.php +++ /dev/null @@ -1,171 +0,0 @@ -address = $address; - } - /** - * @return Google_Service_Partners_Location - */ - public function getAddress() - { - return $this->address; - } - public function setAdwordsManagerAccount($adwordsManagerAccount) - { - $this->adwordsManagerAccount = $adwordsManagerAccount; - } - public function getAdwordsManagerAccount() - { - return $this->adwordsManagerAccount; - } - public function setChannels($channels) - { - $this->channels = $channels; - } - public function getChannels() - { - return $this->channels; - } - public function setEmailAddress($emailAddress) - { - $this->emailAddress = $emailAddress; - } - public function getEmailAddress() - { - return $this->emailAddress; - } - /** - * @param Google_Service_Partners_OptIns - */ - public function setEmailOptIns(Google_Service_Partners_OptIns $emailOptIns) - { - $this->emailOptIns = $emailOptIns; - } - /** - * @return Google_Service_Partners_OptIns - */ - public function getEmailOptIns() - { - return $this->emailOptIns; - } - public function setFamilyName($familyName) - { - $this->familyName = $familyName; - } - public function getFamilyName() - { - return $this->familyName; - } - public function setGivenName($givenName) - { - $this->givenName = $givenName; - } - public function getGivenName() - { - return $this->givenName; - } - public function setIndustries($industries) - { - $this->industries = $industries; - } - public function getIndustries() - { - return $this->industries; - } - public function setJobFunctions($jobFunctions) - { - $this->jobFunctions = $jobFunctions; - } - public function getJobFunctions() - { - return $this->jobFunctions; - } - public function setLanguages($languages) - { - $this->languages = $languages; - } - public function getLanguages() - { - return $this->languages; - } - public function setMarkets($markets) - { - $this->markets = $markets; - } - public function getMarkets() - { - return $this->markets; - } - public function setMigrateToAfa($migrateToAfa) - { - $this->migrateToAfa = $migrateToAfa; - } - public function getMigrateToAfa() - { - return $this->migrateToAfa; - } - public function setPhoneNumber($phoneNumber) - { - $this->phoneNumber = $phoneNumber; - } - public function getPhoneNumber() - { - return $this->phoneNumber; - } - public function setPrimaryCountryCode($primaryCountryCode) - { - $this->primaryCountryCode = $primaryCountryCode; - } - public function getPrimaryCountryCode() - { - return $this->primaryCountryCode; - } - public function setProfilePublic($profilePublic) - { - $this->profilePublic = $profilePublic; - } - public function getProfilePublic() - { - return $this->profilePublic; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People.php deleted file mode 100644 index 60f2ca67..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People.php +++ /dev/null @@ -1,160 +0,0 @@ - - * Provides access to information about profiles and contacts.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_People extends Google_Service -{ - /** Manage your contacts. */ - const CONTACTS = - "https://www.googleapis.com/auth/contacts"; - /** View your contacts. */ - const CONTACTS_READONLY = - "https://www.googleapis.com/auth/contacts.readonly"; - /** Know the list of people in your circles, your age range, and language. */ - const PLUS_LOGIN = - "https://www.googleapis.com/auth/plus.login"; - /** View your street addresses. */ - const USER_ADDRESSES_READ = - "https://www.googleapis.com/auth/user.addresses.read"; - /** View your complete date of birth. */ - const USER_BIRTHDAY_READ = - "https://www.googleapis.com/auth/user.birthday.read"; - /** View your email addresses. */ - const USER_EMAILS_READ = - "https://www.googleapis.com/auth/user.emails.read"; - /** View your phone numbers. */ - const USER_PHONENUMBERS_READ = - "https://www.googleapis.com/auth/user.phonenumbers.read"; - /** View your email address. */ - const USERINFO_EMAIL = - "https://www.googleapis.com/auth/userinfo.email"; - /** View your basic profile info. */ - const USERINFO_PROFILE = - "https://www.googleapis.com/auth/userinfo.profile"; - - public $people; - public $people_connections; - - /** - * Constructs the internal representation of the People service. - * - * @param Google_Client $client - */ - public function __construct(Google_Client $client) - { - parent::__construct($client); - $this->rootUrl = 'https://people.googleapis.com/'; - $this->servicePath = ''; - $this->version = 'v1'; - $this->serviceName = 'people'; - - $this->people = new Google_Service_People_Resource_People( - $this, - $this->serviceName, - 'people', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/{+resourceName}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'resourceName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestMask.includeField' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'getBatchGet' => array( - 'path' => 'v1/people:batchGet', - 'httpMethod' => 'GET', - 'parameters' => array( - 'requestMask.includeField' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'resourceNames' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ), - ) - ) - ); - $this->people_connections = new Google_Service_People_Resource_PeopleConnections( - $this, - $this->serviceName, - 'connections', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1/{+resourceName}/connections', - 'httpMethod' => 'GET', - 'parameters' => array( - 'resourceName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sortOrder' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestSyncToken' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'requestMask.includeField' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'syncToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Address.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Address.php deleted file mode 100644 index 48b7e9a0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Address.php +++ /dev/null @@ -1,130 +0,0 @@ -city = $city; - } - public function getCity() - { - return $this->city; - } - public function setCountry($country) - { - $this->country = $country; - } - public function getCountry() - { - return $this->country; - } - public function setCountryCode($countryCode) - { - $this->countryCode = $countryCode; - } - public function getCountryCode() - { - return $this->countryCode; - } - public function setExtendedAddress($extendedAddress) - { - $this->extendedAddress = $extendedAddress; - } - public function getExtendedAddress() - { - return $this->extendedAddress; - } - public function setFormattedType($formattedType) - { - $this->formattedType = $formattedType; - } - public function getFormattedType() - { - return $this->formattedType; - } - public function setFormattedValue($formattedValue) - { - $this->formattedValue = $formattedValue; - } - public function getFormattedValue() - { - return $this->formattedValue; - } - public function setMetadata(Google_Service_People_FieldMetadata $metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setPoBox($poBox) - { - $this->poBox = $poBox; - } - public function getPoBox() - { - return $this->poBox; - } - public function setPostalCode($postalCode) - { - $this->postalCode = $postalCode; - } - public function getPostalCode() - { - return $this->postalCode; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - public function setStreetAddress($streetAddress) - { - $this->streetAddress = $streetAddress; - } - public function getStreetAddress() - { - return $this->streetAddress; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/AgeRangeType.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/AgeRangeType.php deleted file mode 100644 index 25ad216b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/AgeRangeType.php +++ /dev/null @@ -1,40 +0,0 @@ -ageRange = $ageRange; - } - public function getAgeRange() - { - return $this->ageRange; - } - public function setMetadata(Google_Service_People_FieldMetadata $metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Biography.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Biography.php deleted file mode 100644 index 5947f892..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Biography.php +++ /dev/null @@ -1,49 +0,0 @@ -contentType = $contentType; - } - public function getContentType() - { - return $this->contentType; - } - public function setMetadata(Google_Service_People_FieldMetadata $metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Birthday.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Birthday.php deleted file mode 100644 index e9254f53..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Birthday.php +++ /dev/null @@ -1,50 +0,0 @@ -date = $date; - } - public function getDate() - { - return $this->date; - } - public function setMetadata(Google_Service_People_FieldMetadata $metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setText($text) - { - $this->text = $text; - } - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/BraggingRights.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/BraggingRights.php deleted file mode 100644 index 8f66e79f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/BraggingRights.php +++ /dev/null @@ -1,40 +0,0 @@ -metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/ContactGroupMembership.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/ContactGroupMembership.php deleted file mode 100644 index ae06b4a8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/ContactGroupMembership.php +++ /dev/null @@ -1,30 +0,0 @@ -contactGroupId = $contactGroupId; - } - public function getContactGroupId() - { - return $this->contactGroupId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/CoverPhoto.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/CoverPhoto.php deleted file mode 100644 index 676cd38e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/CoverPhoto.php +++ /dev/null @@ -1,49 +0,0 @@ -default = $default; - } - public function getDefault() - { - return $this->default; - } - public function setMetadata(Google_Service_People_FieldMetadata $metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Date.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Date.php deleted file mode 100644 index 14ffb706..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Date.php +++ /dev/null @@ -1,48 +0,0 @@ -day = $day; - } - public function getDay() - { - return $this->day; - } - public function setMonth($month) - { - $this->month = $month; - } - public function getMonth() - { - return $this->month; - } - public function setYear($year) - { - $this->year = $year; - } - public function getYear() - { - return $this->year; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/DomainMembership.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/DomainMembership.php deleted file mode 100644 index b4206da6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/DomainMembership.php +++ /dev/null @@ -1,30 +0,0 @@ -inViewerDomain = $inViewerDomain; - } - public function getInViewerDomain() - { - return $this->inViewerDomain; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/EmailAddress.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/EmailAddress.php deleted file mode 100644 index 361b26fa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/EmailAddress.php +++ /dev/null @@ -1,67 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setFormattedType($formattedType) - { - $this->formattedType = $formattedType; - } - public function getFormattedType() - { - return $this->formattedType; - } - public function setMetadata(Google_Service_People_FieldMetadata $metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Event.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Event.php deleted file mode 100644 index 89b073ab..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Event.php +++ /dev/null @@ -1,59 +0,0 @@ -date = $date; - } - public function getDate() - { - return $this->date; - } - public function setFormattedType($formattedType) - { - $this->formattedType = $formattedType; - } - public function getFormattedType() - { - return $this->formattedType; - } - public function setMetadata(Google_Service_People_FieldMetadata $metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/FieldMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/FieldMetadata.php deleted file mode 100644 index 8c0f892c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/FieldMetadata.php +++ /dev/null @@ -1,49 +0,0 @@ -primary = $primary; - } - public function getPrimary() - { - return $this->primary; - } - public function setSource(Google_Service_People_Source $source) - { - $this->source = $source; - } - public function getSource() - { - return $this->source; - } - public function setVerified($verified) - { - $this->verified = $verified; - } - public function getVerified() - { - return $this->verified; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Gender.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Gender.php deleted file mode 100644 index faa7316e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Gender.php +++ /dev/null @@ -1,49 +0,0 @@ -formattedValue = $formattedValue; - } - public function getFormattedValue() - { - return $this->formattedValue; - } - public function setMetadata(Google_Service_People_FieldMetadata $metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/GetPeopleResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/GetPeopleResponse.php deleted file mode 100644 index 38a6018c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/GetPeopleResponse.php +++ /dev/null @@ -1,32 +0,0 @@ -responses = $responses; - } - public function getResponses() - { - return $this->responses; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/ImClient.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/ImClient.php deleted file mode 100644 index 76278112..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/ImClient.php +++ /dev/null @@ -1,76 +0,0 @@ -formattedProtocol = $formattedProtocol; - } - public function getFormattedProtocol() - { - return $this->formattedProtocol; - } - public function setFormattedType($formattedType) - { - $this->formattedType = $formattedType; - } - public function getFormattedType() - { - return $this->formattedType; - } - public function setMetadata(Google_Service_People_FieldMetadata $metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setProtocol($protocol) - { - $this->protocol = $protocol; - } - public function getProtocol() - { - return $this->protocol; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setUsername($username) - { - $this->username = $username; - } - public function getUsername() - { - return $this->username; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Interest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Interest.php deleted file mode 100644 index 094ff0af..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Interest.php +++ /dev/null @@ -1,40 +0,0 @@ -metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/ListConnectionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/ListConnectionsResponse.php deleted file mode 100644 index 6c020bf0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/ListConnectionsResponse.php +++ /dev/null @@ -1,50 +0,0 @@ -connections = $connections; - } - public function getConnections() - { - return $this->connections; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setNextSyncToken($nextSyncToken) - { - $this->nextSyncToken = $nextSyncToken; - } - public function getNextSyncToken() - { - return $this->nextSyncToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Locale.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Locale.php deleted file mode 100644 index b6071a0f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Locale.php +++ /dev/null @@ -1,40 +0,0 @@ -metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Membership.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Membership.php deleted file mode 100644 index c3910f89..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Membership.php +++ /dev/null @@ -1,51 +0,0 @@ -contactGroupMembership = $contactGroupMembership; - } - public function getContactGroupMembership() - { - return $this->contactGroupMembership; - } - public function setDomainMembership(Google_Service_People_DomainMembership $domainMembership) - { - $this->domainMembership = $domainMembership; - } - public function getDomainMembership() - { - return $this->domainMembership; - } - public function setMetadata(Google_Service_People_FieldMetadata $metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Name.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Name.php deleted file mode 100644 index e76bd6ea..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Name.php +++ /dev/null @@ -1,148 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setDisplayNameLastFirst($displayNameLastFirst) - { - $this->displayNameLastFirst = $displayNameLastFirst; - } - public function getDisplayNameLastFirst() - { - return $this->displayNameLastFirst; - } - public function setFamilyName($familyName) - { - $this->familyName = $familyName; - } - public function getFamilyName() - { - return $this->familyName; - } - public function setGivenName($givenName) - { - $this->givenName = $givenName; - } - public function getGivenName() - { - return $this->givenName; - } - public function setHonorificPrefix($honorificPrefix) - { - $this->honorificPrefix = $honorificPrefix; - } - public function getHonorificPrefix() - { - return $this->honorificPrefix; - } - public function setHonorificSuffix($honorificSuffix) - { - $this->honorificSuffix = $honorificSuffix; - } - public function getHonorificSuffix() - { - return $this->honorificSuffix; - } - public function setMetadata(Google_Service_People_FieldMetadata $metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setMiddleName($middleName) - { - $this->middleName = $middleName; - } - public function getMiddleName() - { - return $this->middleName; - } - public function setPhoneticFamilyName($phoneticFamilyName) - { - $this->phoneticFamilyName = $phoneticFamilyName; - } - public function getPhoneticFamilyName() - { - return $this->phoneticFamilyName; - } - public function setPhoneticFullName($phoneticFullName) - { - $this->phoneticFullName = $phoneticFullName; - } - public function getPhoneticFullName() - { - return $this->phoneticFullName; - } - public function setPhoneticGivenName($phoneticGivenName) - { - $this->phoneticGivenName = $phoneticGivenName; - } - public function getPhoneticGivenName() - { - return $this->phoneticGivenName; - } - public function setPhoneticHonorificPrefix($phoneticHonorificPrefix) - { - $this->phoneticHonorificPrefix = $phoneticHonorificPrefix; - } - public function getPhoneticHonorificPrefix() - { - return $this->phoneticHonorificPrefix; - } - public function setPhoneticHonorificSuffix($phoneticHonorificSuffix) - { - $this->phoneticHonorificSuffix = $phoneticHonorificSuffix; - } - public function getPhoneticHonorificSuffix() - { - return $this->phoneticHonorificSuffix; - } - public function setPhoneticMiddleName($phoneticMiddleName) - { - $this->phoneticMiddleName = $phoneticMiddleName; - } - public function getPhoneticMiddleName() - { - return $this->phoneticMiddleName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Nickname.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Nickname.php deleted file mode 100644 index 6ce688ed..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Nickname.php +++ /dev/null @@ -1,49 +0,0 @@ -metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Occupation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Occupation.php deleted file mode 100644 index 49ebf90a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Occupation.php +++ /dev/null @@ -1,40 +0,0 @@ -metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Organization.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Organization.php deleted file mode 100644 index dbcfba65..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Organization.php +++ /dev/null @@ -1,150 +0,0 @@ -current = $current; - } - public function getCurrent() - { - return $this->current; - } - public function setDepartment($department) - { - $this->department = $department; - } - public function getDepartment() - { - return $this->department; - } - public function setDomain($domain) - { - $this->domain = $domain; - } - public function getDomain() - { - return $this->domain; - } - public function setEndDate(Google_Service_People_Date $endDate) - { - $this->endDate = $endDate; - } - public function getEndDate() - { - return $this->endDate; - } - public function setFormattedType($formattedType) - { - $this->formattedType = $formattedType; - } - public function getFormattedType() - { - return $this->formattedType; - } - public function setJobDescription($jobDescription) - { - $this->jobDescription = $jobDescription; - } - public function getJobDescription() - { - return $this->jobDescription; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setMetadata(Google_Service_People_FieldMetadata $metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPhoneticName($phoneticName) - { - $this->phoneticName = $phoneticName; - } - public function getPhoneticName() - { - return $this->phoneticName; - } - public function setStartDate(Google_Service_People_Date $startDate) - { - $this->startDate = $startDate; - } - public function getStartDate() - { - return $this->startDate; - } - public function setSymbol($symbol) - { - $this->symbol = $symbol; - } - public function getSymbol() - { - return $this->symbol; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Person.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Person.php deleted file mode 100644 index 328176d6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Person.php +++ /dev/null @@ -1,319 +0,0 @@ -addresses = $addresses; - } - public function getAddresses() - { - return $this->addresses; - } - public function setAgeRange($ageRange) - { - $this->ageRange = $ageRange; - } - public function getAgeRange() - { - return $this->ageRange; - } - public function setAgeRanges($ageRanges) - { - $this->ageRanges = $ageRanges; - } - public function getAgeRanges() - { - return $this->ageRanges; - } - public function setBiographies($biographies) - { - $this->biographies = $biographies; - } - public function getBiographies() - { - return $this->biographies; - } - public function setBirthdays($birthdays) - { - $this->birthdays = $birthdays; - } - public function getBirthdays() - { - return $this->birthdays; - } - public function setBraggingRights($braggingRights) - { - $this->braggingRights = $braggingRights; - } - public function getBraggingRights() - { - return $this->braggingRights; - } - public function setCoverPhotos($coverPhotos) - { - $this->coverPhotos = $coverPhotos; - } - public function getCoverPhotos() - { - return $this->coverPhotos; - } - public function setEmailAddresses($emailAddresses) - { - $this->emailAddresses = $emailAddresses; - } - public function getEmailAddresses() - { - return $this->emailAddresses; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setEvents($events) - { - $this->events = $events; - } - public function getEvents() - { - return $this->events; - } - public function setGenders($genders) - { - $this->genders = $genders; - } - public function getGenders() - { - return $this->genders; - } - public function setImClients($imClients) - { - $this->imClients = $imClients; - } - public function getImClients() - { - return $this->imClients; - } - public function setInterests($interests) - { - $this->interests = $interests; - } - public function getInterests() - { - return $this->interests; - } - public function setLocales($locales) - { - $this->locales = $locales; - } - public function getLocales() - { - return $this->locales; - } - public function setMemberships($memberships) - { - $this->memberships = $memberships; - } - public function getMemberships() - { - return $this->memberships; - } - public function setMetadata(Google_Service_People_PersonMetadata $metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setNames($names) - { - $this->names = $names; - } - public function getNames() - { - return $this->names; - } - public function setNicknames($nicknames) - { - $this->nicknames = $nicknames; - } - public function getNicknames() - { - return $this->nicknames; - } - public function setOccupations($occupations) - { - $this->occupations = $occupations; - } - public function getOccupations() - { - return $this->occupations; - } - public function setOrganizations($organizations) - { - $this->organizations = $organizations; - } - public function getOrganizations() - { - return $this->organizations; - } - public function setPhoneNumbers($phoneNumbers) - { - $this->phoneNumbers = $phoneNumbers; - } - public function getPhoneNumbers() - { - return $this->phoneNumbers; - } - public function setPhotos($photos) - { - $this->photos = $photos; - } - public function getPhotos() - { - return $this->photos; - } - public function setRelations($relations) - { - $this->relations = $relations; - } - public function getRelations() - { - return $this->relations; - } - public function setRelationshipInterests($relationshipInterests) - { - $this->relationshipInterests = $relationshipInterests; - } - public function getRelationshipInterests() - { - return $this->relationshipInterests; - } - public function setRelationshipStatuses($relationshipStatuses) - { - $this->relationshipStatuses = $relationshipStatuses; - } - public function getRelationshipStatuses() - { - return $this->relationshipStatuses; - } - public function setResidences($residences) - { - $this->residences = $residences; - } - public function getResidences() - { - return $this->residences; - } - public function setResourceName($resourceName) - { - $this->resourceName = $resourceName; - } - public function getResourceName() - { - return $this->resourceName; - } - public function setSkills($skills) - { - $this->skills = $skills; - } - public function getSkills() - { - return $this->skills; - } - public function setTaglines($taglines) - { - $this->taglines = $taglines; - } - public function getTaglines() - { - return $this->taglines; - } - public function setUrls($urls) - { - $this->urls = $urls; - } - public function getUrls() - { - return $this->urls; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/PersonMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/PersonMetadata.php deleted file mode 100644 index 470201a7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/PersonMetadata.php +++ /dev/null @@ -1,68 +0,0 @@ -deleted = $deleted; - } - public function getDeleted() - { - return $this->deleted; - } - public function setLinkedPeopleResourceNames($linkedPeopleResourceNames) - { - $this->linkedPeopleResourceNames = $linkedPeopleResourceNames; - } - public function getLinkedPeopleResourceNames() - { - return $this->linkedPeopleResourceNames; - } - public function setObjectType($objectType) - { - $this->objectType = $objectType; - } - public function getObjectType() - { - return $this->objectType; - } - public function setPreviousResourceNames($previousResourceNames) - { - $this->previousResourceNames = $previousResourceNames; - } - public function getPreviousResourceNames() - { - return $this->previousResourceNames; - } - public function setSources($sources) - { - $this->sources = $sources; - } - public function getSources() - { - return $this->sources; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/PersonResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/PersonResponse.php deleted file mode 100644 index 78c8e902..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/PersonResponse.php +++ /dev/null @@ -1,49 +0,0 @@ -httpStatusCode = $httpStatusCode; - } - public function getHttpStatusCode() - { - return $this->httpStatusCode; - } - public function setPerson(Google_Service_People_Person $person) - { - $this->person = $person; - } - public function getPerson() - { - return $this->person; - } - public function setRequestedResourceName($requestedResourceName) - { - $this->requestedResourceName = $requestedResourceName; - } - public function getRequestedResourceName() - { - return $this->requestedResourceName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/PhoneNumber.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/PhoneNumber.php deleted file mode 100644 index 73376350..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/PhoneNumber.php +++ /dev/null @@ -1,67 +0,0 @@ -canonicalForm = $canonicalForm; - } - public function getCanonicalForm() - { - return $this->canonicalForm; - } - public function setFormattedType($formattedType) - { - $this->formattedType = $formattedType; - } - public function getFormattedType() - { - return $this->formattedType; - } - public function setMetadata(Google_Service_People_FieldMetadata $metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Photo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Photo.php deleted file mode 100644 index d09358a9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Photo.php +++ /dev/null @@ -1,40 +0,0 @@ -metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/ProfileMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/ProfileMetadata.php deleted file mode 100644 index 0bbd0dd7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/ProfileMetadata.php +++ /dev/null @@ -1,30 +0,0 @@ -objectType = $objectType; - } - public function getObjectType() - { - return $this->objectType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Relation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Relation.php deleted file mode 100644 index 0bbe2300..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Relation.php +++ /dev/null @@ -1,58 +0,0 @@ -formattedType = $formattedType; - } - public function getFormattedType() - { - return $this->formattedType; - } - public function setMetadata(Google_Service_People_FieldMetadata $metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setPerson($person) - { - $this->person = $person; - } - public function getPerson() - { - return $this->person; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/RelationshipInterest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/RelationshipInterest.php deleted file mode 100644 index 78361308..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/RelationshipInterest.php +++ /dev/null @@ -1,49 +0,0 @@ -formattedValue = $formattedValue; - } - public function getFormattedValue() - { - return $this->formattedValue; - } - public function setMetadata(Google_Service_People_FieldMetadata $metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/RelationshipStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/RelationshipStatus.php deleted file mode 100644 index a6ea207d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/RelationshipStatus.php +++ /dev/null @@ -1,49 +0,0 @@ -formattedValue = $formattedValue; - } - public function getFormattedValue() - { - return $this->formattedValue; - } - public function setMetadata(Google_Service_People_FieldMetadata $metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Residence.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Residence.php deleted file mode 100644 index f954f90f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Residence.php +++ /dev/null @@ -1,49 +0,0 @@ -current = $current; - } - public function getCurrent() - { - return $this->current; - } - public function setMetadata(Google_Service_People_FieldMetadata $metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Resource/People.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Resource/People.php deleted file mode 100644 index 22163b60..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Resource/People.php +++ /dev/null @@ -1,78 +0,0 @@ - - * $peopleService = new Google_Service_People(...); - * $people = $peopleService->people; - * - */ -class Google_Service_People_Resource_People extends Google_Service_Resource -{ - /** - * Provides information about a person resource for a resource name. Use - * `people/me` to indicate the authenticated user. (people.get) - * - * @param string $resourceName The resource name of the person to provide - * information about. - * - * - To get information about the authenticated user, specify `people/me`. - To - * get information about any user, specify the resource name that identifies - * the user, such as the resource names returned by - * [`people.connections.list`](/people/api/rest/v1/people.connections/list). - * @param array $optParams Optional parameters. - * - * @opt_param string requestMask.includeField Comma-separated list of fields to - * be included in the response. Omitting this field will include all fields - * except for connections.list requests, which have a default mask that includes - * common fields like metadata, name, photo, and profile url. Each path should - * start with `person.`: for example, `person.names` or `person.photos`. - * @return Google_Service_People_Person - */ - public function get($resourceName, $optParams = array()) - { - $params = array('resourceName' => $resourceName); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_People_Person"); - } - /** - * Provides information about a list of specific people by specifying a list of - * requested resource names. Use `people/me` to indicate the authenticated user. - * (people.getBatchGet) - * - * @param array $optParams Optional parameters. - * - * @opt_param string requestMask.includeField Comma-separated list of fields to - * be included in the response. Omitting this field will include all fields - * except for connections.list requests, which have a default mask that includes - * common fields like metadata, name, photo, and profile url. Each path should - * start with `person.`: for example, `person.names` or `person.photos`. - * @opt_param string resourceNames The resource name, such as one returned by - * [`people.connections.list`](/people/api/rest/v1/people.connections/list), of - * one of the people to provide information about. You can include this - * parameter up to 50 times in one request. - * @return Google_Service_People_GetPeopleResponse - */ - public function getBatchGet($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('getBatchGet', array($params), "Google_Service_People_GetPeopleResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Resource/PeopleConnections.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Resource/PeopleConnections.php deleted file mode 100644 index 6a82491f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Resource/PeopleConnections.php +++ /dev/null @@ -1,59 +0,0 @@ - - * $peopleService = new Google_Service_People(...); - * $connections = $peopleService->connections; - * - */ -class Google_Service_People_Resource_PeopleConnections extends Google_Service_Resource -{ - /** - * Provides a list of the authenticated user's contacts merged with any linked - * profiles. (connections.listPeopleConnections) - * - * @param string $resourceName The resource name to return connections for. Only - * `people/me` is valid. - * @param array $optParams Optional parameters. - * - * @opt_param string sortOrder The order in which the connections should be - * sorted. Defaults to `LAST_MODIFIED_ASCENDING`. - * @opt_param bool requestSyncToken Whether the response should include a sync - * token, which can be used to get all changes since the last request. - * @opt_param string pageToken The token of the page to be returned. - * @opt_param int pageSize The number of connections to include in the response. - * Valid values are between 1 and 500, inclusive. Defaults to 100. - * @opt_param string requestMask.includeField Comma-separated list of fields to - * be included in the response. Omitting this field will include all fields - * except for connections.list requests, which have a default mask that includes - * common fields like metadata, name, photo, and profile url. Each path should - * start with `person.`: for example, `person.names` or `person.photos`. - * @opt_param string syncToken A sync token, returned by a previous call to - * `people.connections.list`. Only resources changed since the sync token was - * created will be returned. - * @return Google_Service_People_ListConnectionsResponse - */ - public function listPeopleConnections($resourceName, $optParams = array()) - { - $params = array('resourceName' => $resourceName); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_People_ListConnectionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Skill.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Skill.php deleted file mode 100644 index 416ac6a1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Skill.php +++ /dev/null @@ -1,40 +0,0 @@ -metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Source.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Source.php deleted file mode 100644 index 5e2cb213..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Source.php +++ /dev/null @@ -1,58 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setProfileMetadata(Google_Service_People_ProfileMetadata $profileMetadata) - { - $this->profileMetadata = $profileMetadata; - } - public function getProfileMetadata() - { - return $this->profileMetadata; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Tagline.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Tagline.php deleted file mode 100644 index 546bf652..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Tagline.php +++ /dev/null @@ -1,40 +0,0 @@ -metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Url.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Url.php deleted file mode 100644 index d5f7df85..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/People/Url.php +++ /dev/null @@ -1,58 +0,0 @@ -formattedType = $formattedType; - } - public function getFormattedType() - { - return $this->formattedType; - } - public function setMetadata(Google_Service_People_FieldMetadata $metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService.php deleted file mode 100644 index 736b15b0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService.php +++ /dev/null @@ -1,331 +0,0 @@ - - * Provides access to information about profiles and contacts.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_PeopleService extends Google_Service -{ - /** See, edit, download, and permanently delete your contacts. */ - const CONTACTS = - "https://www.googleapis.com/auth/contacts"; - /** See and download your contacts. */ - const CONTACTS_READONLY = - "https://www.googleapis.com/auth/contacts.readonly"; - /** View your street addresses. */ - const USER_ADDRESSES_READ = - "https://www.googleapis.com/auth/user.addresses.read"; - /** View your complete date of birth. */ - const USER_BIRTHDAY_READ = - "https://www.googleapis.com/auth/user.birthday.read"; - /** View your email addresses. */ - const USER_EMAILS_READ = - "https://www.googleapis.com/auth/user.emails.read"; - /** See your education, work history and org info. */ - const USER_ORGANIZATION_READ = - "https://www.googleapis.com/auth/user.organization.read"; - /** View your phone numbers. */ - const USER_PHONENUMBERS_READ = - "https://www.googleapis.com/auth/user.phonenumbers.read"; - /** View your email address. */ - const USERINFO_EMAIL = - "https://www.googleapis.com/auth/userinfo.email"; - /** See your personal info, including any personal info you've made publicly available. */ - const USERINFO_PROFILE = - "https://www.googleapis.com/auth/userinfo.profile"; - - public $contactGroups; - public $contactGroups_members; - public $people; - public $people_connections; - - /** - * Constructs the internal representation of the PeopleService service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://people.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'people'; - - $this->contactGroups = new Google_Service_PeopleService_Resource_ContactGroups( - $this, - $this->serviceName, - 'contactGroups', - array( - 'methods' => array( - 'batchGet' => array( - 'path' => 'v1/contactGroups:batchGet', - 'httpMethod' => 'GET', - 'parameters' => array( - 'resourceNames' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'maxMembers' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'create' => array( - 'path' => 'v1/contactGroups', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'delete' => array( - 'path' => 'v1/{+resourceName}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'resourceName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'deleteContacts' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'get' => array( - 'path' => 'v1/{+resourceName}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'resourceName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxMembers' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'list' => array( - 'path' => 'v1/contactGroups', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'syncToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'v1/{+resourceName}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'resourceName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->contactGroups_members = new Google_Service_PeopleService_Resource_ContactGroupsMembers( - $this, - $this->serviceName, - 'members', - array( - 'methods' => array( - 'modify' => array( - 'path' => 'v1/{+resourceName}/members:modify', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resourceName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->people = new Google_Service_PeopleService_Resource_People( - $this, - $this->serviceName, - 'people', - array( - 'methods' => array( - 'createContact' => array( - 'path' => 'v1/people:createContact', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'deleteContact' => array( - 'path' => 'v1/{+resourceName}:deleteContact', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'resourceName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'deleteContactPhoto' => array( - 'path' => 'v1/{+resourceName}:deleteContactPhoto', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'resourceName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'personFields' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'v1/{+resourceName}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'resourceName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'personFields' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMask.includeField' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'getBatchGet' => array( - 'path' => 'v1/people:batchGet', - 'httpMethod' => 'GET', - 'parameters' => array( - 'personFields' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMask.includeField' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'resourceNames' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ),'updateContact' => array( - 'path' => 'v1/{+resourceName}:updateContact', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'resourceName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updatePersonFields' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'updateContactPhoto' => array( - 'path' => 'v1/{+resourceName}:updateContactPhoto', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'resourceName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->people_connections = new Google_Service_PeopleService_Resource_PeopleConnections( - $this, - $this->serviceName, - 'connections', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1/{+resourceName}/connections', - 'httpMethod' => 'GET', - 'parameters' => array( - 'resourceName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'syncToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'personFields' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortOrder' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestSyncToken' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'requestMask.includeField' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Address.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Address.php deleted file mode 100644 index 001a30d0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Address.php +++ /dev/null @@ -1,136 +0,0 @@ -city = $city; - } - public function getCity() - { - return $this->city; - } - public function setCountry($country) - { - $this->country = $country; - } - public function getCountry() - { - return $this->country; - } - public function setCountryCode($countryCode) - { - $this->countryCode = $countryCode; - } - public function getCountryCode() - { - return $this->countryCode; - } - public function setExtendedAddress($extendedAddress) - { - $this->extendedAddress = $extendedAddress; - } - public function getExtendedAddress() - { - return $this->extendedAddress; - } - public function setFormattedType($formattedType) - { - $this->formattedType = $formattedType; - } - public function getFormattedType() - { - return $this->formattedType; - } - public function setFormattedValue($formattedValue) - { - $this->formattedValue = $formattedValue; - } - public function getFormattedValue() - { - return $this->formattedValue; - } - /** - * @param Google_Service_PeopleService_FieldMetadata - */ - public function setMetadata(Google_Service_PeopleService_FieldMetadata $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_PeopleService_FieldMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - public function setPoBox($poBox) - { - $this->poBox = $poBox; - } - public function getPoBox() - { - return $this->poBox; - } - public function setPostalCode($postalCode) - { - $this->postalCode = $postalCode; - } - public function getPostalCode() - { - return $this->postalCode; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - public function setStreetAddress($streetAddress) - { - $this->streetAddress = $streetAddress; - } - public function getStreetAddress() - { - return $this->streetAddress; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/AgeRangeType.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/AgeRangeType.php deleted file mode 100644 index 75c0b332..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/AgeRangeType.php +++ /dev/null @@ -1,46 +0,0 @@ -ageRange = $ageRange; - } - public function getAgeRange() - { - return $this->ageRange; - } - /** - * @param Google_Service_PeopleService_FieldMetadata - */ - public function setMetadata(Google_Service_PeopleService_FieldMetadata $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_PeopleService_FieldMetadata - */ - public function getMetadata() - { - return $this->metadata; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/BatchGetContactGroupsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/BatchGetContactGroupsResponse.php deleted file mode 100644 index 7f2c0bb1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/BatchGetContactGroupsResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -responses = $responses; - } - /** - * @return Google_Service_PeopleService_ContactGroupResponse - */ - public function getResponses() - { - return $this->responses; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Biography.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Biography.php deleted file mode 100644 index 081ecd45..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Biography.php +++ /dev/null @@ -1,55 +0,0 @@ -contentType = $contentType; - } - public function getContentType() - { - return $this->contentType; - } - /** - * @param Google_Service_PeopleService_FieldMetadata - */ - public function setMetadata(Google_Service_PeopleService_FieldMetadata $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_PeopleService_FieldMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Birthday.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Birthday.php deleted file mode 100644 index 828e47b8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Birthday.php +++ /dev/null @@ -1,62 +0,0 @@ -date = $date; - } - /** - * @return Google_Service_PeopleService_Date - */ - public function getDate() - { - return $this->date; - } - /** - * @param Google_Service_PeopleService_FieldMetadata - */ - public function setMetadata(Google_Service_PeopleService_FieldMetadata $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_PeopleService_FieldMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - public function setText($text) - { - $this->text = $text; - } - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/BraggingRights.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/BraggingRights.php deleted file mode 100644 index c07734b3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/BraggingRights.php +++ /dev/null @@ -1,46 +0,0 @@ -metadata = $metadata; - } - /** - * @return Google_Service_PeopleService_FieldMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/ContactGroup.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/ContactGroup.php deleted file mode 100644 index 67706460..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/ContactGroup.php +++ /dev/null @@ -1,101 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setFormattedName($formattedName) - { - $this->formattedName = $formattedName; - } - public function getFormattedName() - { - return $this->formattedName; - } - public function setGroupType($groupType) - { - $this->groupType = $groupType; - } - public function getGroupType() - { - return $this->groupType; - } - public function setMemberCount($memberCount) - { - $this->memberCount = $memberCount; - } - public function getMemberCount() - { - return $this->memberCount; - } - public function setMemberResourceNames($memberResourceNames) - { - $this->memberResourceNames = $memberResourceNames; - } - public function getMemberResourceNames() - { - return $this->memberResourceNames; - } - /** - * @param Google_Service_PeopleService_ContactGroupMetadata - */ - public function setMetadata(Google_Service_PeopleService_ContactGroupMetadata $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_PeopleService_ContactGroupMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setResourceName($resourceName) - { - $this->resourceName = $resourceName; - } - public function getResourceName() - { - return $this->resourceName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/ContactGroupMembership.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/ContactGroupMembership.php deleted file mode 100644 index 015f902d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/ContactGroupMembership.php +++ /dev/null @@ -1,39 +0,0 @@ -contactGroupId = $contactGroupId; - } - public function getContactGroupId() - { - return $this->contactGroupId; - } - public function setContactGroupResourceName($contactGroupResourceName) - { - $this->contactGroupResourceName = $contactGroupResourceName; - } - public function getContactGroupResourceName() - { - return $this->contactGroupResourceName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/ContactGroupMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/ContactGroupMetadata.php deleted file mode 100644 index 0d1efa70..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/ContactGroupMetadata.php +++ /dev/null @@ -1,39 +0,0 @@ -deleted = $deleted; - } - public function getDeleted() - { - return $this->deleted; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/ContactGroupResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/ContactGroupResponse.php deleted file mode 100644 index ed63557d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/ContactGroupResponse.php +++ /dev/null @@ -1,62 +0,0 @@ -contactGroup = $contactGroup; - } - /** - * @return Google_Service_PeopleService_ContactGroup - */ - public function getContactGroup() - { - return $this->contactGroup; - } - public function setRequestedResourceName($requestedResourceName) - { - $this->requestedResourceName = $requestedResourceName; - } - public function getRequestedResourceName() - { - return $this->requestedResourceName; - } - /** - * @param Google_Service_PeopleService_Status - */ - public function setStatus(Google_Service_PeopleService_Status $status) - { - $this->status = $status; - } - /** - * @return Google_Service_PeopleService_Status - */ - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/CoverPhoto.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/CoverPhoto.php deleted file mode 100644 index 31c370b6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/CoverPhoto.php +++ /dev/null @@ -1,55 +0,0 @@ -default = $default; - } - public function getDefault() - { - return $this->default; - } - /** - * @param Google_Service_PeopleService_FieldMetadata - */ - public function setMetadata(Google_Service_PeopleService_FieldMetadata $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_PeopleService_FieldMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/CreateContactGroupRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/CreateContactGroupRequest.php deleted file mode 100644 index 79b50238..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/CreateContactGroupRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -contactGroup = $contactGroup; - } - /** - * @return Google_Service_PeopleService_ContactGroup - */ - public function getContactGroup() - { - return $this->contactGroup; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Date.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Date.php deleted file mode 100644 index adc83ff5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Date.php +++ /dev/null @@ -1,48 +0,0 @@ -day = $day; - } - public function getDay() - { - return $this->day; - } - public function setMonth($month) - { - $this->month = $month; - } - public function getMonth() - { - return $this->month; - } - public function setYear($year) - { - $this->year = $year; - } - public function getYear() - { - return $this->year; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/DeleteContactPhotoResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/DeleteContactPhotoResponse.php deleted file mode 100644 index 03f9f1fd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/DeleteContactPhotoResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -person = $person; - } - /** - * @return Google_Service_PeopleService_Person - */ - public function getPerson() - { - return $this->person; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/DomainMembership.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/DomainMembership.php deleted file mode 100644 index 9e4f89a2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/DomainMembership.php +++ /dev/null @@ -1,30 +0,0 @@ -inViewerDomain = $inViewerDomain; - } - public function getInViewerDomain() - { - return $this->inViewerDomain; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/EmailAddress.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/EmailAddress.php deleted file mode 100644 index c9da1c7b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/EmailAddress.php +++ /dev/null @@ -1,73 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setFormattedType($formattedType) - { - $this->formattedType = $formattedType; - } - public function getFormattedType() - { - return $this->formattedType; - } - /** - * @param Google_Service_PeopleService_FieldMetadata - */ - public function setMetadata(Google_Service_PeopleService_FieldMetadata $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_PeopleService_FieldMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Event.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Event.php deleted file mode 100644 index c265c05d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Event.php +++ /dev/null @@ -1,71 +0,0 @@ -date = $date; - } - /** - * @return Google_Service_PeopleService_Date - */ - public function getDate() - { - return $this->date; - } - public function setFormattedType($formattedType) - { - $this->formattedType = $formattedType; - } - public function getFormattedType() - { - return $this->formattedType; - } - /** - * @param Google_Service_PeopleService_FieldMetadata - */ - public function setMetadata(Google_Service_PeopleService_FieldMetadata $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_PeopleService_FieldMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/FieldMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/FieldMetadata.php deleted file mode 100644 index 90157ec6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/FieldMetadata.php +++ /dev/null @@ -1,55 +0,0 @@ -primary = $primary; - } - public function getPrimary() - { - return $this->primary; - } - /** - * @param Google_Service_PeopleService_Source - */ - public function setSource(Google_Service_PeopleService_Source $source) - { - $this->source = $source; - } - /** - * @return Google_Service_PeopleService_Source - */ - public function getSource() - { - return $this->source; - } - public function setVerified($verified) - { - $this->verified = $verified; - } - public function getVerified() - { - return $this->verified; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Gender.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Gender.php deleted file mode 100644 index 7d03f456..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Gender.php +++ /dev/null @@ -1,55 +0,0 @@ -formattedValue = $formattedValue; - } - public function getFormattedValue() - { - return $this->formattedValue; - } - /** - * @param Google_Service_PeopleService_FieldMetadata - */ - public function setMetadata(Google_Service_PeopleService_FieldMetadata $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_PeopleService_FieldMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/GetPeopleResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/GetPeopleResponse.php deleted file mode 100644 index 892ad88d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/GetPeopleResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -responses = $responses; - } - /** - * @return Google_Service_PeopleService_PersonResponse - */ - public function getResponses() - { - return $this->responses; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/ImClient.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/ImClient.php deleted file mode 100644 index 3db9b976..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/ImClient.php +++ /dev/null @@ -1,82 +0,0 @@ -formattedProtocol = $formattedProtocol; - } - public function getFormattedProtocol() - { - return $this->formattedProtocol; - } - public function setFormattedType($formattedType) - { - $this->formattedType = $formattedType; - } - public function getFormattedType() - { - return $this->formattedType; - } - /** - * @param Google_Service_PeopleService_FieldMetadata - */ - public function setMetadata(Google_Service_PeopleService_FieldMetadata $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_PeopleService_FieldMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - public function setProtocol($protocol) - { - $this->protocol = $protocol; - } - public function getProtocol() - { - return $this->protocol; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setUsername($username) - { - $this->username = $username; - } - public function getUsername() - { - return $this->username; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Interest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Interest.php deleted file mode 100644 index ec0b7467..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Interest.php +++ /dev/null @@ -1,46 +0,0 @@ -metadata = $metadata; - } - /** - * @return Google_Service_PeopleService_FieldMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/ListConnectionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/ListConnectionsResponse.php deleted file mode 100644 index 089c5364..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/ListConnectionsResponse.php +++ /dev/null @@ -1,74 +0,0 @@ -connections = $connections; - } - /** - * @return Google_Service_PeopleService_Person - */ - public function getConnections() - { - return $this->connections; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setNextSyncToken($nextSyncToken) - { - $this->nextSyncToken = $nextSyncToken; - } - public function getNextSyncToken() - { - return $this->nextSyncToken; - } - public function setTotalItems($totalItems) - { - $this->totalItems = $totalItems; - } - public function getTotalItems() - { - return $this->totalItems; - } - public function setTotalPeople($totalPeople) - { - $this->totalPeople = $totalPeople; - } - public function getTotalPeople() - { - return $this->totalPeople; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/ListContactGroupsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/ListContactGroupsResponse.php deleted file mode 100644 index 2e4fc891..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/ListContactGroupsResponse.php +++ /dev/null @@ -1,65 +0,0 @@ -contactGroups = $contactGroups; - } - /** - * @return Google_Service_PeopleService_ContactGroup - */ - public function getContactGroups() - { - return $this->contactGroups; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setNextSyncToken($nextSyncToken) - { - $this->nextSyncToken = $nextSyncToken; - } - public function getNextSyncToken() - { - return $this->nextSyncToken; - } - public function setTotalItems($totalItems) - { - $this->totalItems = $totalItems; - } - public function getTotalItems() - { - return $this->totalItems; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Locale.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Locale.php deleted file mode 100644 index f05d1d77..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Locale.php +++ /dev/null @@ -1,46 +0,0 @@ -metadata = $metadata; - } - /** - * @return Google_Service_PeopleService_FieldMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Membership.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Membership.php deleted file mode 100644 index d38ae6b6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Membership.php +++ /dev/null @@ -1,69 +0,0 @@ -contactGroupMembership = $contactGroupMembership; - } - /** - * @return Google_Service_PeopleService_ContactGroupMembership - */ - public function getContactGroupMembership() - { - return $this->contactGroupMembership; - } - /** - * @param Google_Service_PeopleService_DomainMembership - */ - public function setDomainMembership(Google_Service_PeopleService_DomainMembership $domainMembership) - { - $this->domainMembership = $domainMembership; - } - /** - * @return Google_Service_PeopleService_DomainMembership - */ - public function getDomainMembership() - { - return $this->domainMembership; - } - /** - * @param Google_Service_PeopleService_FieldMetadata - */ - public function setMetadata(Google_Service_PeopleService_FieldMetadata $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_PeopleService_FieldMetadata - */ - public function getMetadata() - { - return $this->metadata; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/ModifyContactGroupMembersRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/ModifyContactGroupMembersRequest.php deleted file mode 100644 index 899c96e9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/ModifyContactGroupMembersRequest.php +++ /dev/null @@ -1,40 +0,0 @@ -resourceNamesToAdd = $resourceNamesToAdd; - } - public function getResourceNamesToAdd() - { - return $this->resourceNamesToAdd; - } - public function setResourceNamesToRemove($resourceNamesToRemove) - { - $this->resourceNamesToRemove = $resourceNamesToRemove; - } - public function getResourceNamesToRemove() - { - return $this->resourceNamesToRemove; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/ModifyContactGroupMembersResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/ModifyContactGroupMembersResponse.php deleted file mode 100644 index 2dd412ab..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/ModifyContactGroupMembersResponse.php +++ /dev/null @@ -1,40 +0,0 @@ -canNotRemoveLastContactGroupResourceNames = $canNotRemoveLastContactGroupResourceNames; - } - public function getCanNotRemoveLastContactGroupResourceNames() - { - return $this->canNotRemoveLastContactGroupResourceNames; - } - public function setNotFoundResourceNames($notFoundResourceNames) - { - $this->notFoundResourceNames = $notFoundResourceNames; - } - public function getNotFoundResourceNames() - { - return $this->notFoundResourceNames; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Name.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Name.php deleted file mode 100644 index e8993921..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Name.php +++ /dev/null @@ -1,154 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setDisplayNameLastFirst($displayNameLastFirst) - { - $this->displayNameLastFirst = $displayNameLastFirst; - } - public function getDisplayNameLastFirst() - { - return $this->displayNameLastFirst; - } - public function setFamilyName($familyName) - { - $this->familyName = $familyName; - } - public function getFamilyName() - { - return $this->familyName; - } - public function setGivenName($givenName) - { - $this->givenName = $givenName; - } - public function getGivenName() - { - return $this->givenName; - } - public function setHonorificPrefix($honorificPrefix) - { - $this->honorificPrefix = $honorificPrefix; - } - public function getHonorificPrefix() - { - return $this->honorificPrefix; - } - public function setHonorificSuffix($honorificSuffix) - { - $this->honorificSuffix = $honorificSuffix; - } - public function getHonorificSuffix() - { - return $this->honorificSuffix; - } - /** - * @param Google_Service_PeopleService_FieldMetadata - */ - public function setMetadata(Google_Service_PeopleService_FieldMetadata $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_PeopleService_FieldMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - public function setMiddleName($middleName) - { - $this->middleName = $middleName; - } - public function getMiddleName() - { - return $this->middleName; - } - public function setPhoneticFamilyName($phoneticFamilyName) - { - $this->phoneticFamilyName = $phoneticFamilyName; - } - public function getPhoneticFamilyName() - { - return $this->phoneticFamilyName; - } - public function setPhoneticFullName($phoneticFullName) - { - $this->phoneticFullName = $phoneticFullName; - } - public function getPhoneticFullName() - { - return $this->phoneticFullName; - } - public function setPhoneticGivenName($phoneticGivenName) - { - $this->phoneticGivenName = $phoneticGivenName; - } - public function getPhoneticGivenName() - { - return $this->phoneticGivenName; - } - public function setPhoneticHonorificPrefix($phoneticHonorificPrefix) - { - $this->phoneticHonorificPrefix = $phoneticHonorificPrefix; - } - public function getPhoneticHonorificPrefix() - { - return $this->phoneticHonorificPrefix; - } - public function setPhoneticHonorificSuffix($phoneticHonorificSuffix) - { - $this->phoneticHonorificSuffix = $phoneticHonorificSuffix; - } - public function getPhoneticHonorificSuffix() - { - return $this->phoneticHonorificSuffix; - } - public function setPhoneticMiddleName($phoneticMiddleName) - { - $this->phoneticMiddleName = $phoneticMiddleName; - } - public function getPhoneticMiddleName() - { - return $this->phoneticMiddleName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Nickname.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Nickname.php deleted file mode 100644 index ce5490cb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Nickname.php +++ /dev/null @@ -1,55 +0,0 @@ -metadata = $metadata; - } - /** - * @return Google_Service_PeopleService_FieldMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Occupation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Occupation.php deleted file mode 100644 index fef2e075..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Occupation.php +++ /dev/null @@ -1,46 +0,0 @@ -metadata = $metadata; - } - /** - * @return Google_Service_PeopleService_FieldMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Organization.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Organization.php deleted file mode 100644 index e0b47d92..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Organization.php +++ /dev/null @@ -1,168 +0,0 @@ -current = $current; - } - public function getCurrent() - { - return $this->current; - } - public function setDepartment($department) - { - $this->department = $department; - } - public function getDepartment() - { - return $this->department; - } - public function setDomain($domain) - { - $this->domain = $domain; - } - public function getDomain() - { - return $this->domain; - } - /** - * @param Google_Service_PeopleService_Date - */ - public function setEndDate(Google_Service_PeopleService_Date $endDate) - { - $this->endDate = $endDate; - } - /** - * @return Google_Service_PeopleService_Date - */ - public function getEndDate() - { - return $this->endDate; - } - public function setFormattedType($formattedType) - { - $this->formattedType = $formattedType; - } - public function getFormattedType() - { - return $this->formattedType; - } - public function setJobDescription($jobDescription) - { - $this->jobDescription = $jobDescription; - } - public function getJobDescription() - { - return $this->jobDescription; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - /** - * @param Google_Service_PeopleService_FieldMetadata - */ - public function setMetadata(Google_Service_PeopleService_FieldMetadata $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_PeopleService_FieldMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPhoneticName($phoneticName) - { - $this->phoneticName = $phoneticName; - } - public function getPhoneticName() - { - return $this->phoneticName; - } - /** - * @param Google_Service_PeopleService_Date - */ - public function setStartDate(Google_Service_PeopleService_Date $startDate) - { - $this->startDate = $startDate; - } - /** - * @return Google_Service_PeopleService_Date - */ - public function getStartDate() - { - return $this->startDate; - } - public function setSymbol($symbol) - { - $this->symbol = $symbol; - } - public function getSymbol() - { - return $this->symbol; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/PeopleEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/PeopleEmpty.php deleted file mode 100644 index e7105ea0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/PeopleEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -addresses = $addresses; - } - /** - * @return Google_Service_PeopleService_Address - */ - public function getAddresses() - { - return $this->addresses; - } - public function setAgeRange($ageRange) - { - $this->ageRange = $ageRange; - } - public function getAgeRange() - { - return $this->ageRange; - } - /** - * @param Google_Service_PeopleService_AgeRangeType - */ - public function setAgeRanges($ageRanges) - { - $this->ageRanges = $ageRanges; - } - /** - * @return Google_Service_PeopleService_AgeRangeType - */ - public function getAgeRanges() - { - return $this->ageRanges; - } - /** - * @param Google_Service_PeopleService_Biography - */ - public function setBiographies($biographies) - { - $this->biographies = $biographies; - } - /** - * @return Google_Service_PeopleService_Biography - */ - public function getBiographies() - { - return $this->biographies; - } - /** - * @param Google_Service_PeopleService_Birthday - */ - public function setBirthdays($birthdays) - { - $this->birthdays = $birthdays; - } - /** - * @return Google_Service_PeopleService_Birthday - */ - public function getBirthdays() - { - return $this->birthdays; - } - /** - * @param Google_Service_PeopleService_BraggingRights - */ - public function setBraggingRights($braggingRights) - { - $this->braggingRights = $braggingRights; - } - /** - * @return Google_Service_PeopleService_BraggingRights - */ - public function getBraggingRights() - { - return $this->braggingRights; - } - /** - * @param Google_Service_PeopleService_CoverPhoto - */ - public function setCoverPhotos($coverPhotos) - { - $this->coverPhotos = $coverPhotos; - } - /** - * @return Google_Service_PeopleService_CoverPhoto - */ - public function getCoverPhotos() - { - return $this->coverPhotos; - } - /** - * @param Google_Service_PeopleService_EmailAddress - */ - public function setEmailAddresses($emailAddresses) - { - $this->emailAddresses = $emailAddresses; - } - /** - * @return Google_Service_PeopleService_EmailAddress - */ - public function getEmailAddresses() - { - return $this->emailAddresses; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_PeopleService_Event - */ - public function setEvents($events) - { - $this->events = $events; - } - /** - * @return Google_Service_PeopleService_Event - */ - public function getEvents() - { - return $this->events; - } - /** - * @param Google_Service_PeopleService_Gender - */ - public function setGenders($genders) - { - $this->genders = $genders; - } - /** - * @return Google_Service_PeopleService_Gender - */ - public function getGenders() - { - return $this->genders; - } - /** - * @param Google_Service_PeopleService_ImClient - */ - public function setImClients($imClients) - { - $this->imClients = $imClients; - } - /** - * @return Google_Service_PeopleService_ImClient - */ - public function getImClients() - { - return $this->imClients; - } - /** - * @param Google_Service_PeopleService_Interest - */ - public function setInterests($interests) - { - $this->interests = $interests; - } - /** - * @return Google_Service_PeopleService_Interest - */ - public function getInterests() - { - return $this->interests; - } - /** - * @param Google_Service_PeopleService_Locale - */ - public function setLocales($locales) - { - $this->locales = $locales; - } - /** - * @return Google_Service_PeopleService_Locale - */ - public function getLocales() - { - return $this->locales; - } - /** - * @param Google_Service_PeopleService_Membership - */ - public function setMemberships($memberships) - { - $this->memberships = $memberships; - } - /** - * @return Google_Service_PeopleService_Membership - */ - public function getMemberships() - { - return $this->memberships; - } - /** - * @param Google_Service_PeopleService_PersonMetadata - */ - public function setMetadata(Google_Service_PeopleService_PersonMetadata $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_PeopleService_PersonMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - /** - * @param Google_Service_PeopleService_Name - */ - public function setNames($names) - { - $this->names = $names; - } - /** - * @return Google_Service_PeopleService_Name - */ - public function getNames() - { - return $this->names; - } - /** - * @param Google_Service_PeopleService_Nickname - */ - public function setNicknames($nicknames) - { - $this->nicknames = $nicknames; - } - /** - * @return Google_Service_PeopleService_Nickname - */ - public function getNicknames() - { - return $this->nicknames; - } - /** - * @param Google_Service_PeopleService_Occupation - */ - public function setOccupations($occupations) - { - $this->occupations = $occupations; - } - /** - * @return Google_Service_PeopleService_Occupation - */ - public function getOccupations() - { - return $this->occupations; - } - /** - * @param Google_Service_PeopleService_Organization - */ - public function setOrganizations($organizations) - { - $this->organizations = $organizations; - } - /** - * @return Google_Service_PeopleService_Organization - */ - public function getOrganizations() - { - return $this->organizations; - } - /** - * @param Google_Service_PeopleService_PhoneNumber - */ - public function setPhoneNumbers($phoneNumbers) - { - $this->phoneNumbers = $phoneNumbers; - } - /** - * @return Google_Service_PeopleService_PhoneNumber - */ - public function getPhoneNumbers() - { - return $this->phoneNumbers; - } - /** - * @param Google_Service_PeopleService_Photo - */ - public function setPhotos($photos) - { - $this->photos = $photos; - } - /** - * @return Google_Service_PeopleService_Photo - */ - public function getPhotos() - { - return $this->photos; - } - /** - * @param Google_Service_PeopleService_Relation - */ - public function setRelations($relations) - { - $this->relations = $relations; - } - /** - * @return Google_Service_PeopleService_Relation - */ - public function getRelations() - { - return $this->relations; - } - /** - * @param Google_Service_PeopleService_RelationshipInterest - */ - public function setRelationshipInterests($relationshipInterests) - { - $this->relationshipInterests = $relationshipInterests; - } - /** - * @return Google_Service_PeopleService_RelationshipInterest - */ - public function getRelationshipInterests() - { - return $this->relationshipInterests; - } - /** - * @param Google_Service_PeopleService_RelationshipStatus - */ - public function setRelationshipStatuses($relationshipStatuses) - { - $this->relationshipStatuses = $relationshipStatuses; - } - /** - * @return Google_Service_PeopleService_RelationshipStatus - */ - public function getRelationshipStatuses() - { - return $this->relationshipStatuses; - } - /** - * @param Google_Service_PeopleService_Residence - */ - public function setResidences($residences) - { - $this->residences = $residences; - } - /** - * @return Google_Service_PeopleService_Residence - */ - public function getResidences() - { - return $this->residences; - } - public function setResourceName($resourceName) - { - $this->resourceName = $resourceName; - } - public function getResourceName() - { - return $this->resourceName; - } - /** - * @param Google_Service_PeopleService_SipAddress - */ - public function setSipAddresses($sipAddresses) - { - $this->sipAddresses = $sipAddresses; - } - /** - * @return Google_Service_PeopleService_SipAddress - */ - public function getSipAddresses() - { - return $this->sipAddresses; - } - /** - * @param Google_Service_PeopleService_Skill - */ - public function setSkills($skills) - { - $this->skills = $skills; - } - /** - * @return Google_Service_PeopleService_Skill - */ - public function getSkills() - { - return $this->skills; - } - /** - * @param Google_Service_PeopleService_Tagline - */ - public function setTaglines($taglines) - { - $this->taglines = $taglines; - } - /** - * @return Google_Service_PeopleService_Tagline - */ - public function getTaglines() - { - return $this->taglines; - } - /** - * @param Google_Service_PeopleService_Url - */ - public function setUrls($urls) - { - $this->urls = $urls; - } - /** - * @return Google_Service_PeopleService_Url - */ - public function getUrls() - { - return $this->urls; - } - /** - * @param Google_Service_PeopleService_UserDefined - */ - public function setUserDefined($userDefined) - { - $this->userDefined = $userDefined; - } - /** - * @return Google_Service_PeopleService_UserDefined - */ - public function getUserDefined() - { - return $this->userDefined; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/PersonMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/PersonMetadata.php deleted file mode 100644 index f2367e62..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/PersonMetadata.php +++ /dev/null @@ -1,74 +0,0 @@ -deleted = $deleted; - } - public function getDeleted() - { - return $this->deleted; - } - public function setLinkedPeopleResourceNames($linkedPeopleResourceNames) - { - $this->linkedPeopleResourceNames = $linkedPeopleResourceNames; - } - public function getLinkedPeopleResourceNames() - { - return $this->linkedPeopleResourceNames; - } - public function setObjectType($objectType) - { - $this->objectType = $objectType; - } - public function getObjectType() - { - return $this->objectType; - } - public function setPreviousResourceNames($previousResourceNames) - { - $this->previousResourceNames = $previousResourceNames; - } - public function getPreviousResourceNames() - { - return $this->previousResourceNames; - } - /** - * @param Google_Service_PeopleService_Source - */ - public function setSources($sources) - { - $this->sources = $sources; - } - /** - * @return Google_Service_PeopleService_Source - */ - public function getSources() - { - return $this->sources; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/PersonResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/PersonResponse.php deleted file mode 100644 index c7edf707..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/PersonResponse.php +++ /dev/null @@ -1,71 +0,0 @@ -httpStatusCode = $httpStatusCode; - } - public function getHttpStatusCode() - { - return $this->httpStatusCode; - } - /** - * @param Google_Service_PeopleService_Person - */ - public function setPerson(Google_Service_PeopleService_Person $person) - { - $this->person = $person; - } - /** - * @return Google_Service_PeopleService_Person - */ - public function getPerson() - { - return $this->person; - } - public function setRequestedResourceName($requestedResourceName) - { - $this->requestedResourceName = $requestedResourceName; - } - public function getRequestedResourceName() - { - return $this->requestedResourceName; - } - /** - * @param Google_Service_PeopleService_Status - */ - public function setStatus(Google_Service_PeopleService_Status $status) - { - $this->status = $status; - } - /** - * @return Google_Service_PeopleService_Status - */ - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/PhoneNumber.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/PhoneNumber.php deleted file mode 100644 index 64cbf237..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/PhoneNumber.php +++ /dev/null @@ -1,73 +0,0 @@ -canonicalForm = $canonicalForm; - } - public function getCanonicalForm() - { - return $this->canonicalForm; - } - public function setFormattedType($formattedType) - { - $this->formattedType = $formattedType; - } - public function getFormattedType() - { - return $this->formattedType; - } - /** - * @param Google_Service_PeopleService_FieldMetadata - */ - public function setMetadata(Google_Service_PeopleService_FieldMetadata $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_PeopleService_FieldMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Photo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Photo.php deleted file mode 100644 index 3ca5232b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Photo.php +++ /dev/null @@ -1,55 +0,0 @@ -default = $default; - } - public function getDefault() - { - return $this->default; - } - /** - * @param Google_Service_PeopleService_FieldMetadata - */ - public function setMetadata(Google_Service_PeopleService_FieldMetadata $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_PeopleService_FieldMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/ProfileMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/ProfileMetadata.php deleted file mode 100644 index 1ff06658..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/ProfileMetadata.php +++ /dev/null @@ -1,40 +0,0 @@ -objectType = $objectType; - } - public function getObjectType() - { - return $this->objectType; - } - public function setUserTypes($userTypes) - { - $this->userTypes = $userTypes; - } - public function getUserTypes() - { - return $this->userTypes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Relation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Relation.php deleted file mode 100644 index 2e379a85..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Relation.php +++ /dev/null @@ -1,64 +0,0 @@ -formattedType = $formattedType; - } - public function getFormattedType() - { - return $this->formattedType; - } - /** - * @param Google_Service_PeopleService_FieldMetadata - */ - public function setMetadata(Google_Service_PeopleService_FieldMetadata $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_PeopleService_FieldMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - public function setPerson($person) - { - $this->person = $person; - } - public function getPerson() - { - return $this->person; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/RelationshipInterest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/RelationshipInterest.php deleted file mode 100644 index cf09e896..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/RelationshipInterest.php +++ /dev/null @@ -1,55 +0,0 @@ -formattedValue = $formattedValue; - } - public function getFormattedValue() - { - return $this->formattedValue; - } - /** - * @param Google_Service_PeopleService_FieldMetadata - */ - public function setMetadata(Google_Service_PeopleService_FieldMetadata $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_PeopleService_FieldMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/RelationshipStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/RelationshipStatus.php deleted file mode 100644 index dd4cbaa4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/RelationshipStatus.php +++ /dev/null @@ -1,55 +0,0 @@ -formattedValue = $formattedValue; - } - public function getFormattedValue() - { - return $this->formattedValue; - } - /** - * @param Google_Service_PeopleService_FieldMetadata - */ - public function setMetadata(Google_Service_PeopleService_FieldMetadata $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_PeopleService_FieldMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Residence.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Residence.php deleted file mode 100644 index 310e5b0f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Residence.php +++ /dev/null @@ -1,55 +0,0 @@ -current = $current; - } - public function getCurrent() - { - return $this->current; - } - /** - * @param Google_Service_PeopleService_FieldMetadata - */ - public function setMetadata(Google_Service_PeopleService_FieldMetadata $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_PeopleService_FieldMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Resource/ContactGroups.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Resource/ContactGroups.php deleted file mode 100644 index 9b13e1f7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Resource/ContactGroups.php +++ /dev/null @@ -1,138 +0,0 @@ - - * $peopleService = new Google_Service_PeopleService(...); - * $contactGroups = $peopleService->contactGroups; - * - */ -class Google_Service_PeopleService_Resource_ContactGroups extends Google_Service_Resource -{ - /** - * Get a list of contact groups owned by the authenticated user by specifying a - * list of contact group resource names. (contactGroups.batchGet) - * - * @param array $optParams Optional parameters. - * - * @opt_param string resourceNames Required. The resource names of the contact - * groups to get. - * @opt_param int maxMembers Optional. Specifies the maximum number of members - * to return for each group. Defaults to 0 if not set, which will return zero - * members. - * @return Google_Service_PeopleService_BatchGetContactGroupsResponse - */ - public function batchGet($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('batchGet', array($params), "Google_Service_PeopleService_BatchGetContactGroupsResponse"); - } - /** - * Create a new contact group owned by the authenticated user. - * (contactGroups.create) - * - * @param Google_Service_PeopleService_CreateContactGroupRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_PeopleService_ContactGroup - */ - public function create(Google_Service_PeopleService_CreateContactGroupRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_PeopleService_ContactGroup"); - } - /** - * Delete an existing contact group owned by the authenticated user by - * specifying a contact group resource name. (contactGroups.delete) - * - * @param string $resourceName Required. The resource name of the contact group - * to delete. - * @param array $optParams Optional parameters. - * - * @opt_param bool deleteContacts Optional. Set to true to also delete the - * contacts in the specified group. - * @return Google_Service_PeopleService_PeopleEmpty - */ - public function delete($resourceName, $optParams = array()) - { - $params = array('resourceName' => $resourceName); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_PeopleService_PeopleEmpty"); - } - /** - * Get a specific contact group owned by the authenticated user by specifying a - * contact group resource name. (contactGroups.get) - * - * @param string $resourceName Required. The resource name of the contact group - * to get. - * @param array $optParams Optional parameters. - * - * @opt_param int maxMembers Optional. Specifies the maximum number of members - * to return. Defaults to 0 if not set, which will return zero members. - * @return Google_Service_PeopleService_ContactGroup - */ - public function get($resourceName, $optParams = array()) - { - $params = array('resourceName' => $resourceName); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_PeopleService_ContactGroup"); - } - /** - * List all contact groups owned by the authenticated user. Members of the - * contact groups are not populated. (contactGroups.listContactGroups) - * - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Optional. The next_page_token value returned from - * a previous call to - * [ListContactGroups](/people/api/rest/v1/contactgroups/list). Requests the - * next page of resources. - * @opt_param int pageSize Optional. The maximum number of resources to return. - * Valid values are between 1 and 1000, inclusive. Defaults to 30 if not set or - * set to 0. - * @opt_param string syncToken Optional. A sync token, returned by a previous - * call to `contactgroups.list`. Only resources changed since the sync token was - * created will be returned. - * @return Google_Service_PeopleService_ListContactGroupsResponse - */ - public function listContactGroups($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_PeopleService_ListContactGroupsResponse"); - } - /** - * Update the name of an existing contact group owned by the authenticated user. - * (contactGroups.update) - * - * @param string $resourceName The resource name for the contact group, assigned - * by the server. An ASCII string, in the form of - * `contactGroups/{contact_group_id}`. - * @param Google_Service_PeopleService_UpdateContactGroupRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_PeopleService_ContactGroup - */ - public function update($resourceName, Google_Service_PeopleService_UpdateContactGroupRequest $postBody, $optParams = array()) - { - $params = array('resourceName' => $resourceName, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_PeopleService_ContactGroup"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Resource/ContactGroupsMembers.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Resource/ContactGroupsMembers.php deleted file mode 100644 index b4966841..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Resource/ContactGroupsMembers.php +++ /dev/null @@ -1,47 +0,0 @@ - - * $peopleService = new Google_Service_PeopleService(...); - * $members = $peopleService->members; - * - */ -class Google_Service_PeopleService_Resource_ContactGroupsMembers extends Google_Service_Resource -{ - /** - * Modify the members of a contact group owned by the authenticated user. - * - * The only system contact groups that can have members added are - * `contactGroups/myContacts` and `contactGroups/starred`. Other system contact - * groups are deprecated and can only have contacts removed. (members.modify) - * - * @param string $resourceName Required. The resource name of the contact group - * to modify. - * @param Google_Service_PeopleService_ModifyContactGroupMembersRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_PeopleService_ModifyContactGroupMembersResponse - */ - public function modify($resourceName, Google_Service_PeopleService_ModifyContactGroupMembersRequest $postBody, $optParams = array()) - { - $params = array('resourceName' => $resourceName, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('modify', array($params), "Google_Service_PeopleService_ModifyContactGroupMembersResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Resource/People.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Resource/People.php deleted file mode 100644 index fa9f57a7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Resource/People.php +++ /dev/null @@ -1,213 +0,0 @@ - - * $peopleService = new Google_Service_PeopleService(...); - * $people = $peopleService->people; - * - */ -class Google_Service_PeopleService_Resource_People extends Google_Service_Resource -{ - /** - * Create a new contact and return the person resource for that contact. - * (people.createContact) - * - * @param Google_Service_PeopleService_Person $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_PeopleService_Person - */ - public function createContact(Google_Service_PeopleService_Person $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('createContact', array($params), "Google_Service_PeopleService_Person"); - } - /** - * Delete a contact person. Any non-contact data will not be deleted. - * (people.deleteContact) - * - * @param string $resourceName Required. The resource name of the contact to - * delete. - * @param array $optParams Optional parameters. - * @return Google_Service_PeopleService_PeopleEmpty - */ - public function deleteContact($resourceName, $optParams = array()) - { - $params = array('resourceName' => $resourceName); - $params = array_merge($params, $optParams); - return $this->call('deleteContact', array($params), "Google_Service_PeopleService_PeopleEmpty"); - } - /** - * Delete a contact's photo. (people.deleteContactPhoto) - * - * @param string $resourceName Required. The resource name of the contact whose - * photo will be deleted. - * @param array $optParams Optional parameters. - * - * @opt_param string personFields Optional. A field mask to restrict which - * fields on the person are returned. Multiple fields can be specified by - * separating them with commas. Defaults to empty if not set, which will skip - * the post mutate get. Valid values are: - * - * * addresses * ageRanges * biographies * birthdays * braggingRights * - * coverPhotos * emailAddresses * events * genders * imClients * interests * - * locales * memberships * metadata * names * nicknames * occupations * - * organizations * phoneNumbers * photos * relations * relationshipInterests * - * relationshipStatuses * residences * sipAddresses * skills * taglines * urls * - * userDefined - * @return Google_Service_PeopleService_DeleteContactPhotoResponse - */ - public function deleteContactPhoto($resourceName, $optParams = array()) - { - $params = array('resourceName' => $resourceName); - $params = array_merge($params, $optParams); - return $this->call('deleteContactPhoto', array($params), "Google_Service_PeopleService_DeleteContactPhotoResponse"); - } - /** - * Provides information about a person by specifying a resource name. Use - * `people/me` to indicate the authenticated user. - * - * The request throws a 400 error if 'personFields' is not specified. - * (people.get) - * - * @param string $resourceName Required. The resource name of the person to - * provide information about. - * - * - To get information about the authenticated user, specify `people/me`. - To - * get information about a google account, specify `people/{account_id}`. - To - * get information about a contact, specify the resource name that identifies - * the contact as returned by - * [`people.connections.list`](/people/api/rest/v1/people.connections/list). - * @param array $optParams Optional parameters. - * - * @opt_param string personFields Required. A field mask to restrict which - * fields on the person are returned. Multiple fields can be specified by - * separating them with commas. Valid values are: - * - * * addresses * ageRanges * biographies * birthdays * braggingRights * - * coverPhotos * emailAddresses * events * genders * imClients * interests * - * locales * memberships * metadata * names * nicknames * occupations * - * organizations * phoneNumbers * photos * relations * relationshipInterests * - * relationshipStatuses * residences * sipAddresses * skills * taglines * urls * - * userDefined - * @opt_param string requestMask.includeField Required. Comma-separated list of - * person fields to be included in the response. Each path should start with - * `person.`: for example, `person.names` or `person.photos`. - * @return Google_Service_PeopleService_Person - */ - public function get($resourceName, $optParams = array()) - { - $params = array('resourceName' => $resourceName); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_PeopleService_Person"); - } - /** - * Provides information about a list of specific people by specifying a list of - * requested resource names. Use `people/me` to indicate the authenticated user. - * - * The request throws a 400 error if 'personFields' is not specified. - * (people.getBatchGet) - * - * @param array $optParams Optional parameters. - * - * @opt_param string personFields Required. A field mask to restrict which - * fields on each person are returned. Multiple fields can be specified by - * separating them with commas. Valid values are: - * - * * addresses * ageRanges * biographies * birthdays * braggingRights * - * coverPhotos * emailAddresses * events * genders * imClients * interests * - * locales * memberships * metadata * names * nicknames * occupations * - * organizations * phoneNumbers * photos * relations * relationshipInterests * - * relationshipStatuses * residences * sipAddresses * skills * taglines * urls * - * userDefined - * @opt_param string requestMask.includeField Required. Comma-separated list of - * person fields to be included in the response. Each path should start with - * `person.`: for example, `person.names` or `person.photos`. - * @opt_param string resourceNames Required. The resource names of the people to - * provide information about. - * - * - To get information about the authenticated user, specify `people/me`. - To - * get information about a google account, specify `people/{account_id}`. - To - * get information about a contact, specify the resource name that identifies - * the contact as returned by - * [`people.connections.list`](/people/api/rest/v1/people.connections/list). - * - * You can include up to 50 resource names in one request. - * @return Google_Service_PeopleService_GetPeopleResponse - */ - public function getBatchGet($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('getBatchGet', array($params), "Google_Service_PeopleService_GetPeopleResponse"); - } - /** - * Update contact data for an existing contact person. Any non-contact data will - * not be modified. - * - * The request throws a 400 error if `updatePersonFields` is not specified. - * - * The request throws a 400 error if `person.metadata.sources` is not specified - * for the contact to be updated. - * - * The request throws a 400 error with an error with reason - * `"failedPrecondition"` if `person.metadata.sources.etag` is different than - * the contact's etag, which indicates the contact has changed since its data - * was read. Clients should get the latest person and re-apply their updates to - * the latest person. (people.updateContact) - * - * @param string $resourceName The resource name for the person, assigned by the - * server. An ASCII string with a max length of 27 characters, in the form of - * `people/{person_id}`. - * @param Google_Service_PeopleService_Person $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updatePersonFields Required. A field mask to restrict which - * fields on the person are updated. Multiple fields can be specified by - * separating them with commas. All updated fields will be replaced. Valid - * values are: - * - * * addresses * biographies * birthdays * emailAddresses * events * genders * - * imClients * interests * locales * memberships * names * nicknames * - * occupations * organizations * phoneNumbers * relations * residences * - * sipAddresses * urls * userDefined - * @return Google_Service_PeopleService_Person - */ - public function updateContact($resourceName, Google_Service_PeopleService_Person $postBody, $optParams = array()) - { - $params = array('resourceName' => $resourceName, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updateContact', array($params), "Google_Service_PeopleService_Person"); - } - /** - * Update a contact's photo. (people.updateContactPhoto) - * - * @param string $resourceName Required. Person resource name - * @param Google_Service_PeopleService_UpdateContactPhotoRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_PeopleService_UpdateContactPhotoResponse - */ - public function updateContactPhoto($resourceName, Google_Service_PeopleService_UpdateContactPhotoRequest $postBody, $optParams = array()) - { - $params = array('resourceName' => $resourceName, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updateContactPhoto', array($params), "Google_Service_PeopleService_UpdateContactPhotoResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Resource/PeopleConnections.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Resource/PeopleConnections.php deleted file mode 100644 index 547a0740..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Resource/PeopleConnections.php +++ /dev/null @@ -1,75 +0,0 @@ - - * $peopleService = new Google_Service_PeopleService(...); - * $connections = $peopleService->connections; - * - */ -class Google_Service_PeopleService_Resource_PeopleConnections extends Google_Service_Resource -{ - /** - * Provides a list of the authenticated user's contacts merged with any - * connected profiles. - * - * The request throws a 400 error if 'personFields' is not specified. - * (connections.listPeopleConnections) - * - * @param string $resourceName Required. The resource name to return connections - * for. Only `people/me` is valid. - * @param array $optParams Optional parameters. - * - * @opt_param string syncToken Optional. A sync token returned by a previous - * call to `people.connections.list`. Only resources changed since the sync - * token was created will be returned. Sync requests that specify `sync_token` - * have an additional rate limit. - * @opt_param string personFields Required. A field mask to restrict which - * fields on each person are returned. Multiple fields can be specified by - * separating them with commas. Valid values are: - * - * * addresses * ageRanges * biographies * birthdays * braggingRights * - * coverPhotos * emailAddresses * events * genders * imClients * interests * - * locales * memberships * metadata * names * nicknames * occupations * - * organizations * phoneNumbers * photos * relations * relationshipInterests * - * relationshipStatuses * residences * sipAddresses * skills * taglines * urls * - * userDefined - * @opt_param string sortOrder Optional. The order in which the connections - * should be sorted. Defaults to `LAST_MODIFIED_ASCENDING`. - * @opt_param bool requestSyncToken Optional. Whether the response should - * include a sync token, which can be used to get all changes since the last - * request. For subsequent sync requests use the `sync_token` param instead. - * Initial sync requests that specify `request_sync_token` have an additional - * rate limit. - * @opt_param string pageToken Optional. The token of the page to be returned. - * @opt_param string requestMask.includeField Required. Comma-separated list of - * person fields to be included in the response. Each path should start with - * `person.`: for example, `person.names` or `person.photos`. - * @opt_param int pageSize Optional. The number of connections to include in the - * response. Valid values are between 1 and 2000, inclusive. Defaults to 100 if - * not set or set to 0. - * @return Google_Service_PeopleService_ListConnectionsResponse - */ - public function listPeopleConnections($resourceName, $optParams = array()) - { - $params = array('resourceName' => $resourceName); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_PeopleService_ListConnectionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/SipAddress.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/SipAddress.php deleted file mode 100644 index cbe54960..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/SipAddress.php +++ /dev/null @@ -1,64 +0,0 @@ -formattedType = $formattedType; - } - public function getFormattedType() - { - return $this->formattedType; - } - /** - * @param Google_Service_PeopleService_FieldMetadata - */ - public function setMetadata(Google_Service_PeopleService_FieldMetadata $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_PeopleService_FieldMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Skill.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Skill.php deleted file mode 100644 index fe188f9a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Skill.php +++ /dev/null @@ -1,46 +0,0 @@ -metadata = $metadata; - } - /** - * @return Google_Service_PeopleService_FieldMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Source.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Source.php deleted file mode 100644 index 07b867c9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Source.php +++ /dev/null @@ -1,73 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_PeopleService_ProfileMetadata - */ - public function setProfileMetadata(Google_Service_PeopleService_ProfileMetadata $profileMetadata) - { - $this->profileMetadata = $profileMetadata; - } - /** - * @return Google_Service_PeopleService_ProfileMetadata - */ - public function getProfileMetadata() - { - return $this->profileMetadata; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Status.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Status.php deleted file mode 100644 index e4fc649d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Status.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Tagline.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Tagline.php deleted file mode 100644 index 60434403..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Tagline.php +++ /dev/null @@ -1,46 +0,0 @@ -metadata = $metadata; - } - /** - * @return Google_Service_PeopleService_FieldMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/UpdateContactGroupRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/UpdateContactGroupRequest.php deleted file mode 100644 index cb6886c0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/UpdateContactGroupRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -contactGroup = $contactGroup; - } - /** - * @return Google_Service_PeopleService_ContactGroup - */ - public function getContactGroup() - { - return $this->contactGroup; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/UpdateContactPhotoRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/UpdateContactPhotoRequest.php deleted file mode 100644 index 35d7e8a3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/UpdateContactPhotoRequest.php +++ /dev/null @@ -1,39 +0,0 @@ -personFields = $personFields; - } - public function getPersonFields() - { - return $this->personFields; - } - public function setPhotoBytes($photoBytes) - { - $this->photoBytes = $photoBytes; - } - public function getPhotoBytes() - { - return $this->photoBytes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/UpdateContactPhotoResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/UpdateContactPhotoResponse.php deleted file mode 100644 index e0882a2c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/UpdateContactPhotoResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -person = $person; - } - /** - * @return Google_Service_PeopleService_Person - */ - public function getPerson() - { - return $this->person; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Url.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Url.php deleted file mode 100644 index 5043b934..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/Url.php +++ /dev/null @@ -1,64 +0,0 @@ -formattedType = $formattedType; - } - public function getFormattedType() - { - return $this->formattedType; - } - /** - * @param Google_Service_PeopleService_FieldMetadata - */ - public function setMetadata(Google_Service_PeopleService_FieldMetadata $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_PeopleService_FieldMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/UserDefined.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/UserDefined.php deleted file mode 100644 index e5578629..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PeopleService/UserDefined.php +++ /dev/null @@ -1,55 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - /** - * @param Google_Service_PeopleService_FieldMetadata - */ - public function setMetadata(Google_Service_PeopleService_FieldMetadata $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_PeopleService_FieldMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary.php deleted file mode 100644 index 9ff41350..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary.php +++ /dev/null @@ -1,182 +0,0 @@ - - * Manage photos, videos, and albums in Google Photos

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_PhotosLibrary extends Google_Service -{ - /** View the photos, videos and albums in your Google Photos. */ - const DRIVE_PHOTOS_READONLY = - "https://www.googleapis.com/auth/drive.photos.readonly"; - /** View and manage your Google Photos library. */ - const PHOTOSLIBRARY = - "https://www.googleapis.com/auth/photoslibrary"; - /** Add to your Google Photos library. */ - const PHOTOSLIBRARY_APPENDONLY = - "https://www.googleapis.com/auth/photoslibrary.appendonly"; - /** View your Google Photos library. */ - const PHOTOSLIBRARY_READONLY = - "https://www.googleapis.com/auth/photoslibrary.readonly"; - /** Manage photos added by this app. */ - const PHOTOSLIBRARY_READONLY_APPCREATEDDATA = - "https://www.googleapis.com/auth/photoslibrary.readonly.appcreateddata"; - /** Manage and add to shared albums on your behalf. */ - const PHOTOSLIBRARY_SHARING = - "https://www.googleapis.com/auth/photoslibrary.sharing"; - - public $albums; - public $mediaItems; - public $sharedAlbums; - - /** - * Constructs the internal representation of the PhotosLibrary service. - * - * @param Google_Client $client - */ - public function __construct(Google_Client $client) - { - parent::__construct($client); - $this->rootUrl = 'https://photoslibrary.googleapis.com/'; - $this->servicePath = ''; - $this->version = 'v1'; - $this->serviceName = 'photoslibrary'; - - $this->albums = new Google_Service_PhotosLibrary_Resource_Albums( - $this, - $this->serviceName, - 'albums', - array( - 'methods' => array( - 'addEnrichment' => array( - 'path' => 'v1/albums/{+albumId}:addEnrichment', - 'httpMethod' => 'POST', - 'parameters' => array( - 'albumId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'create' => array( - 'path' => 'v1/albums', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'get' => array( - 'path' => 'v1/albums/{+albumId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'albumId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/albums', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'share' => array( - 'path' => 'v1/albums/{+albumId}:share', - 'httpMethod' => 'POST', - 'parameters' => array( - 'albumId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->mediaItems = new Google_Service_PhotosLibrary_Resource_MediaItems( - $this, - $this->serviceName, - 'mediaItems', - array( - 'methods' => array( - 'batchCreate' => array( - 'path' => 'v1/mediaItems:batchCreate', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'get' => array( - 'path' => 'v1/mediaItems/{+mediaItemId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'mediaItemId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'search' => array( - 'path' => 'v1/mediaItems:search', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->sharedAlbums = new Google_Service_PhotosLibrary_Resource_SharedAlbums( - $this, - $this->serviceName, - 'sharedAlbums', - array( - 'methods' => array( - 'join' => array( - 'path' => 'v1/sharedAlbums:join', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'list' => array( - 'path' => 'v1/sharedAlbums', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/AddEnrichmentToAlbumRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/AddEnrichmentToAlbumRequest.php deleted file mode 100644 index beec53e2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/AddEnrichmentToAlbumRequest.php +++ /dev/null @@ -1,53 +0,0 @@ -albumPosition = $albumPosition; - } - /** - * @return Google_Service_PhotosLibrary_AlbumPosition - */ - public function getAlbumPosition() - { - return $this->albumPosition; - } - /** - * @param Google_Service_PhotosLibrary_NewEnrichmentItem - */ - public function setNewEnrichmentItem(Google_Service_PhotosLibrary_NewEnrichmentItem $newEnrichmentItem) - { - $this->newEnrichmentItem = $newEnrichmentItem; - } - /** - * @return Google_Service_PhotosLibrary_NewEnrichmentItem - */ - public function getNewEnrichmentItem() - { - return $this->newEnrichmentItem; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/AddEnrichmentToAlbumResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/AddEnrichmentToAlbumResponse.php deleted file mode 100644 index a6ae13d1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/AddEnrichmentToAlbumResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -enrichmentItem = $enrichmentItem; - } - /** - * @return Google_Service_PhotosLibrary_EnrichmentItem - */ - public function getEnrichmentItem() - { - return $this->enrichmentItem; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/Album.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/Album.php deleted file mode 100644 index dc5b2926..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/Album.php +++ /dev/null @@ -1,91 +0,0 @@ -coverPhotoBaseUrl = $coverPhotoBaseUrl; - } - public function getCoverPhotoBaseUrl() - { - return $this->coverPhotoBaseUrl; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setIsWriteable($isWriteable) - { - $this->isWriteable = $isWriteable; - } - public function getIsWriteable() - { - return $this->isWriteable; - } - public function setProductUrl($productUrl) - { - $this->productUrl = $productUrl; - } - public function getProductUrl() - { - return $this->productUrl; - } - /** - * @param Google_Service_PhotosLibrary_ShareInfo - */ - public function setShareInfo(Google_Service_PhotosLibrary_ShareInfo $shareInfo) - { - $this->shareInfo = $shareInfo; - } - /** - * @return Google_Service_PhotosLibrary_ShareInfo - */ - public function getShareInfo() - { - return $this->shareInfo; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setTotalMediaItems($totalMediaItems) - { - $this->totalMediaItems = $totalMediaItems; - } - public function getTotalMediaItems() - { - return $this->totalMediaItems; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/AlbumPosition.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/AlbumPosition.php deleted file mode 100644 index 5d7d7ad7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/AlbumPosition.php +++ /dev/null @@ -1,48 +0,0 @@ -position = $position; - } - public function getPosition() - { - return $this->position; - } - public function setRelativeEnrichmentItemId($relativeEnrichmentItemId) - { - $this->relativeEnrichmentItemId = $relativeEnrichmentItemId; - } - public function getRelativeEnrichmentItemId() - { - return $this->relativeEnrichmentItemId; - } - public function setRelativeMediaItemId($relativeMediaItemId) - { - $this->relativeMediaItemId = $relativeMediaItemId; - } - public function getRelativeMediaItemId() - { - return $this->relativeMediaItemId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/BatchCreateMediaItemsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/BatchCreateMediaItemsRequest.php deleted file mode 100644 index e21d70f2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/BatchCreateMediaItemsRequest.php +++ /dev/null @@ -1,63 +0,0 @@ -albumId = $albumId; - } - public function getAlbumId() - { - return $this->albumId; - } - /** - * @param Google_Service_PhotosLibrary_AlbumPosition - */ - public function setAlbumPosition(Google_Service_PhotosLibrary_AlbumPosition $albumPosition) - { - $this->albumPosition = $albumPosition; - } - /** - * @return Google_Service_PhotosLibrary_AlbumPosition - */ - public function getAlbumPosition() - { - return $this->albumPosition; - } - /** - * @param Google_Service_PhotosLibrary_NewMediaItem - */ - public function setNewMediaItems($newMediaItems) - { - $this->newMediaItems = $newMediaItems; - } - /** - * @return Google_Service_PhotosLibrary_NewMediaItem - */ - public function getNewMediaItems() - { - return $this->newMediaItems; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/BatchCreateMediaItemsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/BatchCreateMediaItemsResponse.php deleted file mode 100644 index 5303ff8a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/BatchCreateMediaItemsResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -newMediaItemResults = $newMediaItemResults; - } - /** - * @return Google_Service_PhotosLibrary_NewMediaItemResult - */ - public function getNewMediaItemResults() - { - return $this->newMediaItemResults; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/ContentFilter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/ContentFilter.php deleted file mode 100644 index c5ceb1cf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/ContentFilter.php +++ /dev/null @@ -1,40 +0,0 @@ -excludedContentCategories = $excludedContentCategories; - } - public function getExcludedContentCategories() - { - return $this->excludedContentCategories; - } - public function setIncludedContentCategories($includedContentCategories) - { - $this->includedContentCategories = $includedContentCategories; - } - public function getIncludedContentCategories() - { - return $this->includedContentCategories; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/ContributorInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/ContributorInfo.php deleted file mode 100644 index 9966e298..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/ContributorInfo.php +++ /dev/null @@ -1,39 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setProfilePictureBaseUrl($profilePictureBaseUrl) - { - $this->profilePictureBaseUrl = $profilePictureBaseUrl; - } - public function getProfilePictureBaseUrl() - { - return $this->profilePictureBaseUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/CreateAlbumRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/CreateAlbumRequest.php deleted file mode 100644 index 1aadd6ab..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/CreateAlbumRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -album = $album; - } - /** - * @return Google_Service_PhotosLibrary_Album - */ - public function getAlbum() - { - return $this->album; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/Date.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/Date.php deleted file mode 100644 index 97274ff5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/Date.php +++ /dev/null @@ -1,48 +0,0 @@ -day = $day; - } - public function getDay() - { - return $this->day; - } - public function setMonth($month) - { - $this->month = $month; - } - public function getMonth() - { - return $this->month; - } - public function setYear($year) - { - $this->year = $year; - } - public function getYear() - { - return $this->year; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/DateFilter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/DateFilter.php deleted file mode 100644 index 5880428d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/DateFilter.php +++ /dev/null @@ -1,54 +0,0 @@ -dates = $dates; - } - /** - * @return Google_Service_PhotosLibrary_Date - */ - public function getDates() - { - return $this->dates; - } - /** - * @param Google_Service_PhotosLibrary_DateRange - */ - public function setRanges($ranges) - { - $this->ranges = $ranges; - } - /** - * @return Google_Service_PhotosLibrary_DateRange - */ - public function getRanges() - { - return $this->ranges; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/DateRange.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/DateRange.php deleted file mode 100644 index 6f305ae8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/DateRange.php +++ /dev/null @@ -1,53 +0,0 @@ -endDate = $endDate; - } - /** - * @return Google_Service_PhotosLibrary_Date - */ - public function getEndDate() - { - return $this->endDate; - } - /** - * @param Google_Service_PhotosLibrary_Date - */ - public function setStartDate(Google_Service_PhotosLibrary_Date $startDate) - { - $this->startDate = $startDate; - } - /** - * @return Google_Service_PhotosLibrary_Date - */ - public function getStartDate() - { - return $this->startDate; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/EnrichmentItem.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/EnrichmentItem.php deleted file mode 100644 index f4b00bfb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/EnrichmentItem.php +++ /dev/null @@ -1,30 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/Filters.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/Filters.php deleted file mode 100644 index 3369a6c9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/Filters.php +++ /dev/null @@ -1,78 +0,0 @@ -contentFilter = $contentFilter; - } - /** - * @return Google_Service_PhotosLibrary_ContentFilter - */ - public function getContentFilter() - { - return $this->contentFilter; - } - /** - * @param Google_Service_PhotosLibrary_DateFilter - */ - public function setDateFilter(Google_Service_PhotosLibrary_DateFilter $dateFilter) - { - $this->dateFilter = $dateFilter; - } - /** - * @return Google_Service_PhotosLibrary_DateFilter - */ - public function getDateFilter() - { - return $this->dateFilter; - } - public function setIncludeArchivedMedia($includeArchivedMedia) - { - $this->includeArchivedMedia = $includeArchivedMedia; - } - public function getIncludeArchivedMedia() - { - return $this->includeArchivedMedia; - } - /** - * @param Google_Service_PhotosLibrary_MediaTypeFilter - */ - public function setMediaTypeFilter(Google_Service_PhotosLibrary_MediaTypeFilter $mediaTypeFilter) - { - $this->mediaTypeFilter = $mediaTypeFilter; - } - /** - * @return Google_Service_PhotosLibrary_MediaTypeFilter - */ - public function getMediaTypeFilter() - { - return $this->mediaTypeFilter; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/JoinSharedAlbumRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/JoinSharedAlbumRequest.php deleted file mode 100644 index df44a9a1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/JoinSharedAlbumRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -shareToken = $shareToken; - } - public function getShareToken() - { - return $this->shareToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/JoinSharedAlbumResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/JoinSharedAlbumResponse.php deleted file mode 100644 index 1f49fac9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/JoinSharedAlbumResponse.php +++ /dev/null @@ -1,20 +0,0 @@ -latitude = $latitude; - } - public function getLatitude() - { - return $this->latitude; - } - public function setLongitude($longitude) - { - $this->longitude = $longitude; - } - public function getLongitude() - { - return $this->longitude; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/ListAlbumsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/ListAlbumsResponse.php deleted file mode 100644 index 3ba23f55..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/ListAlbumsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -albums = $albums; - } - /** - * @return Google_Service_PhotosLibrary_Album - */ - public function getAlbums() - { - return $this->albums; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/ListSharedAlbumsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/ListSharedAlbumsResponse.php deleted file mode 100644 index 613375bc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/ListSharedAlbumsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_PhotosLibrary_Album - */ - public function setSharedAlbums($sharedAlbums) - { - $this->sharedAlbums = $sharedAlbums; - } - /** - * @return Google_Service_PhotosLibrary_Album - */ - public function getSharedAlbums() - { - return $this->sharedAlbums; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/Location.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/Location.php deleted file mode 100644 index d489d1e9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/Location.php +++ /dev/null @@ -1,46 +0,0 @@ -latlng = $latlng; - } - /** - * @return Google_Service_PhotosLibrary_LatLng - */ - public function getLatlng() - { - return $this->latlng; - } - public function setLocationName($locationName) - { - $this->locationName = $locationName; - } - public function getLocationName() - { - return $this->locationName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/LocationEnrichment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/LocationEnrichment.php deleted file mode 100644 index 26699ecb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/LocationEnrichment.php +++ /dev/null @@ -1,37 +0,0 @@ -location = $location; - } - /** - * @return Google_Service_PhotosLibrary_Location - */ - public function getLocation() - { - return $this->location; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/MapEnrichment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/MapEnrichment.php deleted file mode 100644 index 4b648ee7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/MapEnrichment.php +++ /dev/null @@ -1,53 +0,0 @@ -destination = $destination; - } - /** - * @return Google_Service_PhotosLibrary_Location - */ - public function getDestination() - { - return $this->destination; - } - /** - * @param Google_Service_PhotosLibrary_Location - */ - public function setOrigin(Google_Service_PhotosLibrary_Location $origin) - { - $this->origin = $origin; - } - /** - * @return Google_Service_PhotosLibrary_Location - */ - public function getOrigin() - { - return $this->origin; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/MediaItem.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/MediaItem.php deleted file mode 100644 index 37511d2b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/MediaItem.php +++ /dev/null @@ -1,98 +0,0 @@ -baseUrl = $baseUrl; - } - public function getBaseUrl() - { - return $this->baseUrl; - } - /** - * @param Google_Service_PhotosLibrary_ContributorInfo - */ - public function setContributorInfo(Google_Service_PhotosLibrary_ContributorInfo $contributorInfo) - { - $this->contributorInfo = $contributorInfo; - } - /** - * @return Google_Service_PhotosLibrary_ContributorInfo - */ - public function getContributorInfo() - { - return $this->contributorInfo; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_PhotosLibrary_MediaMetadata - */ - public function setMediaMetadata(Google_Service_PhotosLibrary_MediaMetadata $mediaMetadata) - { - $this->mediaMetadata = $mediaMetadata; - } - /** - * @return Google_Service_PhotosLibrary_MediaMetadata - */ - public function getMediaMetadata() - { - return $this->mediaMetadata; - } - public function setMimeType($mimeType) - { - $this->mimeType = $mimeType; - } - public function getMimeType() - { - return $this->mimeType; - } - public function setProductUrl($productUrl) - { - $this->productUrl = $productUrl; - } - public function getProductUrl() - { - return $this->productUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/MediaMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/MediaMetadata.php deleted file mode 100644 index 5ba9e097..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/MediaMetadata.php +++ /dev/null @@ -1,80 +0,0 @@ -creationTime = $creationTime; - } - public function getCreationTime() - { - return $this->creationTime; - } - public function setHeight($height) - { - $this->height = $height; - } - public function getHeight() - { - return $this->height; - } - /** - * @param Google_Service_PhotosLibrary_Photo - */ - public function setPhoto(Google_Service_PhotosLibrary_Photo $photo) - { - $this->photo = $photo; - } - /** - * @return Google_Service_PhotosLibrary_Photo - */ - public function getPhoto() - { - return $this->photo; - } - /** - * @param Google_Service_PhotosLibrary_Video - */ - public function setVideo(Google_Service_PhotosLibrary_Video $video) - { - $this->video = $video; - } - /** - * @return Google_Service_PhotosLibrary_Video - */ - public function getVideo() - { - return $this->video; - } - public function setWidth($width) - { - $this->width = $width; - } - public function getWidth() - { - return $this->width; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/MediaTypeFilter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/MediaTypeFilter.php deleted file mode 100644 index e1cdb37c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/MediaTypeFilter.php +++ /dev/null @@ -1,31 +0,0 @@ -mediaTypes = $mediaTypes; - } - public function getMediaTypes() - { - return $this->mediaTypes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/NewEnrichmentItem.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/NewEnrichmentItem.php deleted file mode 100644 index f1068610..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/NewEnrichmentItem.php +++ /dev/null @@ -1,69 +0,0 @@ -locationEnrichment = $locationEnrichment; - } - /** - * @return Google_Service_PhotosLibrary_LocationEnrichment - */ - public function getLocationEnrichment() - { - return $this->locationEnrichment; - } - /** - * @param Google_Service_PhotosLibrary_MapEnrichment - */ - public function setMapEnrichment(Google_Service_PhotosLibrary_MapEnrichment $mapEnrichment) - { - $this->mapEnrichment = $mapEnrichment; - } - /** - * @return Google_Service_PhotosLibrary_MapEnrichment - */ - public function getMapEnrichment() - { - return $this->mapEnrichment; - } - /** - * @param Google_Service_PhotosLibrary_TextEnrichment - */ - public function setTextEnrichment(Google_Service_PhotosLibrary_TextEnrichment $textEnrichment) - { - $this->textEnrichment = $textEnrichment; - } - /** - * @return Google_Service_PhotosLibrary_TextEnrichment - */ - public function getTextEnrichment() - { - return $this->textEnrichment; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/NewMediaItem.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/NewMediaItem.php deleted file mode 100644 index 0591baf8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/NewMediaItem.php +++ /dev/null @@ -1,46 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - /** - * @param Google_Service_PhotosLibrary_SimpleMediaItem - */ - public function setSimpleMediaItem(Google_Service_PhotosLibrary_SimpleMediaItem $simpleMediaItem) - { - $this->simpleMediaItem = $simpleMediaItem; - } - /** - * @return Google_Service_PhotosLibrary_SimpleMediaItem - */ - public function getSimpleMediaItem() - { - return $this->simpleMediaItem; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/NewMediaItemResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/NewMediaItemResult.php deleted file mode 100644 index 479c34da..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/NewMediaItemResult.php +++ /dev/null @@ -1,62 +0,0 @@ -mediaItem = $mediaItem; - } - /** - * @return Google_Service_PhotosLibrary_MediaItem - */ - public function getMediaItem() - { - return $this->mediaItem; - } - /** - * @param Google_Service_PhotosLibrary_Status - */ - public function setStatus(Google_Service_PhotosLibrary_Status $status) - { - $this->status = $status; - } - /** - * @return Google_Service_PhotosLibrary_Status - */ - public function getStatus() - { - return $this->status; - } - public function setUploadToken($uploadToken) - { - $this->uploadToken = $uploadToken; - } - public function getUploadToken() - { - return $this->uploadToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/Photo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/Photo.php deleted file mode 100644 index 5362fb8a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/Photo.php +++ /dev/null @@ -1,75 +0,0 @@ -apertureFNumber = $apertureFNumber; - } - public function getApertureFNumber() - { - return $this->apertureFNumber; - } - public function setCameraMake($cameraMake) - { - $this->cameraMake = $cameraMake; - } - public function getCameraMake() - { - return $this->cameraMake; - } - public function setCameraModel($cameraModel) - { - $this->cameraModel = $cameraModel; - } - public function getCameraModel() - { - return $this->cameraModel; - } - public function setExposureTime($exposureTime) - { - $this->exposureTime = $exposureTime; - } - public function getExposureTime() - { - return $this->exposureTime; - } - public function setFocalLength($focalLength) - { - $this->focalLength = $focalLength; - } - public function getFocalLength() - { - return $this->focalLength; - } - public function setIsoEquivalent($isoEquivalent) - { - $this->isoEquivalent = $isoEquivalent; - } - public function getIsoEquivalent() - { - return $this->isoEquivalent; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/Resource/Albums.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/Resource/Albums.php deleted file mode 100644 index 91f17b7e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/Resource/Albums.php +++ /dev/null @@ -1,108 +0,0 @@ - - * $photoslibraryService = new Google_Service_PhotosLibrary(...); - * $albums = $photoslibraryService->albums; - * - */ -class Google_Service_PhotosLibrary_Resource_Albums extends Google_Service_Resource -{ - /** - * Adds an enrichment to a specified position in a defined album. - * (albums.addEnrichment) - * - * @param string $albumId Identifier of the album where the enrichment will be - * added. - * @param Google_Service_PhotosLibrary_AddEnrichmentToAlbumRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_PhotosLibrary_AddEnrichmentToAlbumResponse - */ - public function addEnrichment($albumId, Google_Service_PhotosLibrary_AddEnrichmentToAlbumRequest $postBody, $optParams = array()) - { - $params = array('albumId' => $albumId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('addEnrichment', array($params), "Google_Service_PhotosLibrary_AddEnrichmentToAlbumResponse"); - } - /** - * Creates an album in a user's Google Photos library. (albums.create) - * - * @param Google_Service_PhotosLibrary_CreateAlbumRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_PhotosLibrary_Album - */ - public function create(Google_Service_PhotosLibrary_CreateAlbumRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_PhotosLibrary_Album"); - } - /** - * Returns the album specified by the given album id. (albums.get) - * - * @param string $albumId Identifier of the album to be requested. - * @param array $optParams Optional parameters. - * @return Google_Service_PhotosLibrary_Album - */ - public function get($albumId, $optParams = array()) - { - $params = array('albumId' => $albumId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_PhotosLibrary_Album"); - } - /** - * Lists all albums shown to a user in the 'Albums' tab of the Google Photos - * app. (albums.listAlbums) - * - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A continuation token to get the next page of the - * results. Adding this to the request will return the rows after the pageToken. - * The pageToken should be the value returned in the nextPageToken parameter in - * the response to the listAlbums request. - * @opt_param int pageSize Maximum number of albums to return in the response. - * The default number of albums to return at a time is 20. The maximum page size - * is 50. - * @return Google_Service_PhotosLibrary_ListAlbumsResponse - */ - public function listAlbums($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_PhotosLibrary_ListAlbumsResponse"); - } - /** - * Marks an album as 'shared' and accessible to other users. This action can - * only be performed on albums which were created by the developer via the API. - * (albums.share) - * - * @param string $albumId Identifier of the album to be shared. This album id - * must belong to an album created by the developer. . - * @param Google_Service_PhotosLibrary_ShareAlbumRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_PhotosLibrary_ShareAlbumResponse - */ - public function share($albumId, Google_Service_PhotosLibrary_ShareAlbumRequest $postBody, $optParams = array()) - { - $params = array('albumId' => $albumId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('share', array($params), "Google_Service_PhotosLibrary_ShareAlbumResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/Resource/MediaItems.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/Resource/MediaItems.php deleted file mode 100644 index f6161e57..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/Resource/MediaItems.php +++ /dev/null @@ -1,85 +0,0 @@ - - * $photoslibraryService = new Google_Service_PhotosLibrary(...); - * $mediaItems = $photoslibraryService->mediaItems; - * - */ -class Google_Service_PhotosLibrary_Resource_MediaItems extends Google_Service_Resource -{ - /** - * Creates one or more media items in a user's Google Photos library. If an - * album id is specified, the media item(s) are also added to the album. By - * default the media item(s) will be added to the end of the library or album. - * - * If an album id and position are both defined, then the media items will be - * added to the album at the specified position. - * - * If multiple media items are given, they will be inserted at the specified - * position. (mediaItems.batchCreate) - * - * @param Google_Service_PhotosLibrary_BatchCreateMediaItemsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_PhotosLibrary_BatchCreateMediaItemsResponse - */ - public function batchCreate(Google_Service_PhotosLibrary_BatchCreateMediaItemsRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('batchCreate', array($params), "Google_Service_PhotosLibrary_BatchCreateMediaItemsResponse"); - } - /** - * Returns the media item specified based on a given media item id. - * (mediaItems.get) - * - * @param string $mediaItemId Identifier of media item to be requested. - * @param array $optParams Optional parameters. - * @return Google_Service_PhotosLibrary_MediaItem - */ - public function get($mediaItemId, $optParams = array()) - { - $params = array('mediaItemId' => $mediaItemId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_PhotosLibrary_MediaItem"); - } - /** - * Searches for media items in a user's Google Photos library. If no filters are - * set, then all media items in the user's library will be returned. - * - * If an album is set, all media items in the specified album will be returned. - * - * If filters are specified, anything that matches the filters from the user's - * library will be listed. - * - * If an album and filters are set, then this will result in an error. - * (mediaItems.search) - * - * @param Google_Service_PhotosLibrary_SearchMediaItemsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_PhotosLibrary_SearchMediaItemsResponse - */ - public function search(Google_Service_PhotosLibrary_SearchMediaItemsRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('search', array($params), "Google_Service_PhotosLibrary_SearchMediaItemsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/Resource/SharedAlbums.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/Resource/SharedAlbums.php deleted file mode 100644 index 0a7d62a4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/Resource/SharedAlbums.php +++ /dev/null @@ -1,62 +0,0 @@ - - * $photoslibraryService = new Google_Service_PhotosLibrary(...); - * $sharedAlbums = $photoslibraryService->sharedAlbums; - * - */ -class Google_Service_PhotosLibrary_Resource_SharedAlbums extends Google_Service_Resource -{ - /** - * Joins a shared album on behalf of the Google Photos user. (sharedAlbums.join) - * - * @param Google_Service_PhotosLibrary_JoinSharedAlbumRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_PhotosLibrary_JoinSharedAlbumResponse - */ - public function join(Google_Service_PhotosLibrary_JoinSharedAlbumRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('join', array($params), "Google_Service_PhotosLibrary_JoinSharedAlbumResponse"); - } - /** - * Lists all shared albums shown to a user in the 'Sharing' tab of the Google - * Photos app. (sharedAlbums.listSharedAlbums) - * - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A continuation token to get the next page of the - * results. Adding this to the request will return the rows after the pageToken. - * The pageToken should be the value returned in the nextPageToken parameter in - * the response to the listSharedAlbums request. - * @opt_param int pageSize Maximum number of albums to return in the response. - * The default number of albums to return at a time is 20. The maximum page size - * is 50. - * @return Google_Service_PhotosLibrary_ListSharedAlbumsResponse - */ - public function listSharedAlbums($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_PhotosLibrary_ListSharedAlbumsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/SearchMediaItemsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/SearchMediaItemsRequest.php deleted file mode 100644 index ee3882d0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/SearchMediaItemsRequest.php +++ /dev/null @@ -1,64 +0,0 @@ -albumId = $albumId; - } - public function getAlbumId() - { - return $this->albumId; - } - /** - * @param Google_Service_PhotosLibrary_Filters - */ - public function setFilters(Google_Service_PhotosLibrary_Filters $filters) - { - $this->filters = $filters; - } - /** - * @return Google_Service_PhotosLibrary_Filters - */ - public function getFilters() - { - return $this->filters; - } - public function setPageSize($pageSize) - { - $this->pageSize = $pageSize; - } - public function getPageSize() - { - return $this->pageSize; - } - public function setPageToken($pageToken) - { - $this->pageToken = $pageToken; - } - public function getPageToken() - { - return $this->pageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/SearchMediaItemsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/SearchMediaItemsResponse.php deleted file mode 100644 index 2523d00e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/SearchMediaItemsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -mediaItems = $mediaItems; - } - /** - * @return Google_Service_PhotosLibrary_MediaItem - */ - public function getMediaItems() - { - return $this->mediaItems; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/ShareAlbumRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/ShareAlbumRequest.php deleted file mode 100644 index 128caec1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/ShareAlbumRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -sharedAlbumOptions = $sharedAlbumOptions; - } - /** - * @return Google_Service_PhotosLibrary_SharedAlbumOptions - */ - public function getSharedAlbumOptions() - { - return $this->sharedAlbumOptions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/ShareAlbumResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/ShareAlbumResponse.php deleted file mode 100644 index 988b9a58..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/ShareAlbumResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -shareInfo = $shareInfo; - } - /** - * @return Google_Service_PhotosLibrary_ShareInfo - */ - public function getShareInfo() - { - return $this->shareInfo; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/ShareInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/ShareInfo.php deleted file mode 100644 index 5796a535..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/ShareInfo.php +++ /dev/null @@ -1,55 +0,0 @@ -shareToken = $shareToken; - } - public function getShareToken() - { - return $this->shareToken; - } - public function setShareableUrl($shareableUrl) - { - $this->shareableUrl = $shareableUrl; - } - public function getShareableUrl() - { - return $this->shareableUrl; - } - /** - * @param Google_Service_PhotosLibrary_SharedAlbumOptions - */ - public function setSharedAlbumOptions(Google_Service_PhotosLibrary_SharedAlbumOptions $sharedAlbumOptions) - { - $this->sharedAlbumOptions = $sharedAlbumOptions; - } - /** - * @return Google_Service_PhotosLibrary_SharedAlbumOptions - */ - public function getSharedAlbumOptions() - { - return $this->sharedAlbumOptions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/SharedAlbumOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/SharedAlbumOptions.php deleted file mode 100644 index 535d9928..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/SharedAlbumOptions.php +++ /dev/null @@ -1,39 +0,0 @@ -isCollaborative = $isCollaborative; - } - public function getIsCollaborative() - { - return $this->isCollaborative; - } - public function setIsCommentable($isCommentable) - { - $this->isCommentable = $isCommentable; - } - public function getIsCommentable() - { - return $this->isCommentable; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/SimpleMediaItem.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/SimpleMediaItem.php deleted file mode 100644 index 5de5ba88..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/SimpleMediaItem.php +++ /dev/null @@ -1,30 +0,0 @@ -uploadToken = $uploadToken; - } - public function getUploadToken() - { - return $this->uploadToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/Status.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/Status.php deleted file mode 100644 index ff0ca4db..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/Status.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/TextEnrichment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/TextEnrichment.php deleted file mode 100644 index 57d463d9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/TextEnrichment.php +++ /dev/null @@ -1,30 +0,0 @@ -text = $text; - } - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/Video.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/Video.php deleted file mode 100644 index 35d563ba..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PhotosLibrary/Video.php +++ /dev/null @@ -1,57 +0,0 @@ -cameraMake = $cameraMake; - } - public function getCameraMake() - { - return $this->cameraMake; - } - public function setCameraModel($cameraModel) - { - $this->cameraModel = $cameraModel; - } - public function getCameraModel() - { - return $this->cameraModel; - } - public function setFps($fps) - { - $this->fps = $fps; - } - public function getFps() - { - return $this->fps; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlayMovies.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlayMovies.php deleted file mode 100644 index d2d674b5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlayMovies.php +++ /dev/null @@ -1,299 +0,0 @@ - - * Gets the delivery status of titles for Google Play Movies Partners.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_PlayMovies extends Google_Service -{ - /** View the digital assets you publish on Google Play Movies and TV. */ - const PLAYMOVIES_PARTNER_READONLY = - "https://www.googleapis.com/auth/playmovies_partner.readonly"; - - public $accounts_avails; - public $accounts_orders; - public $accounts_storeInfos; - public $accounts_storeInfos_country; - - /** - * Constructs the internal representation of the PlayMovies service. - * - * @param Google_Client $client - */ - public function __construct(Google_Client $client) - { - parent::__construct($client); - $this->rootUrl = 'https://playmoviespartner.googleapis.com/'; - $this->servicePath = ''; - $this->version = 'v1'; - $this->serviceName = 'playmoviespartner'; - - $this->accounts_avails = new Google_Service_PlayMovies_Resource_AccountsAvails( - $this, - $this->serviceName, - 'avails', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/accounts/{accountId}/avails/{availId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'availId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/accounts/{accountId}/avails', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pphNames' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'altId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'studioNames' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'territories' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'title' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'videoIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'altIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ), - ) - ) - ); - $this->accounts_orders = new Google_Service_PlayMovies_Resource_AccountsOrders( - $this, - $this->serviceName, - 'orders', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/accounts/{accountId}/orders/{orderId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'orderId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/accounts/{accountId}/orders', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'status' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'name' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'studioNames' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'customId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'videoIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pphNames' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ), - ) - ) - ); - $this->accounts_storeInfos = new Google_Service_PlayMovies_Resource_AccountsStoreInfos( - $this, - $this->serviceName, - 'storeInfos', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1/accounts/{accountId}/storeInfos', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'mids' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'pphNames' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'countries' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'name' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'studioNames' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'seasonIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'videoIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'videoId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->accounts_storeInfos_country = new Google_Service_PlayMovies_Resource_AccountsStoreInfosCountry( - $this, - $this->serviceName, - 'country', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/accounts/{accountId}/storeInfos/{videoId}/country/{country}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'videoId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'country' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlayMovies/Avail.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlayMovies/Avail.php deleted file mode 100644 index 37852ae3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlayMovies/Avail.php +++ /dev/null @@ -1,319 +0,0 @@ -altId = $altId; - } - public function getAltId() - { - return $this->altId; - } - public function setAvailId($availId) - { - $this->availId = $availId; - } - public function getAvailId() - { - return $this->availId; - } - public function setCaptionExemption($captionExemption) - { - $this->captionExemption = $captionExemption; - } - public function getCaptionExemption() - { - return $this->captionExemption; - } - public function setCaptionIncluded($captionIncluded) - { - $this->captionIncluded = $captionIncluded; - } - public function getCaptionIncluded() - { - return $this->captionIncluded; - } - public function setContentId($contentId) - { - $this->contentId = $contentId; - } - public function getContentId() - { - return $this->contentId; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setEncodeId($encodeId) - { - $this->encodeId = $encodeId; - } - public function getEncodeId() - { - return $this->encodeId; - } - public function setEnd($end) - { - $this->end = $end; - } - public function getEnd() - { - return $this->end; - } - public function setEpisodeAltId($episodeAltId) - { - $this->episodeAltId = $episodeAltId; - } - public function getEpisodeAltId() - { - return $this->episodeAltId; - } - public function setEpisodeNumber($episodeNumber) - { - $this->episodeNumber = $episodeNumber; - } - public function getEpisodeNumber() - { - return $this->episodeNumber; - } - public function setEpisodeTitleInternalAlias($episodeTitleInternalAlias) - { - $this->episodeTitleInternalAlias = $episodeTitleInternalAlias; - } - public function getEpisodeTitleInternalAlias() - { - return $this->episodeTitleInternalAlias; - } - public function setFormatProfile($formatProfile) - { - $this->formatProfile = $formatProfile; - } - public function getFormatProfile() - { - return $this->formatProfile; - } - public function setLicenseType($licenseType) - { - $this->licenseType = $licenseType; - } - public function getLicenseType() - { - return $this->licenseType; - } - public function setPphNames($pphNames) - { - $this->pphNames = $pphNames; - } - public function getPphNames() - { - return $this->pphNames; - } - public function setPriceType($priceType) - { - $this->priceType = $priceType; - } - public function getPriceType() - { - return $this->priceType; - } - public function setPriceValue($priceValue) - { - $this->priceValue = $priceValue; - } - public function getPriceValue() - { - return $this->priceValue; - } - public function setProductId($productId) - { - $this->productId = $productId; - } - public function getProductId() - { - return $this->productId; - } - public function setRatingReason($ratingReason) - { - $this->ratingReason = $ratingReason; - } - public function getRatingReason() - { - return $this->ratingReason; - } - public function setRatingSystem($ratingSystem) - { - $this->ratingSystem = $ratingSystem; - } - public function getRatingSystem() - { - return $this->ratingSystem; - } - public function setRatingValue($ratingValue) - { - $this->ratingValue = $ratingValue; - } - public function getRatingValue() - { - return $this->ratingValue; - } - public function setReleaseDate($releaseDate) - { - $this->releaseDate = $releaseDate; - } - public function getReleaseDate() - { - return $this->releaseDate; - } - public function setSeasonAltId($seasonAltId) - { - $this->seasonAltId = $seasonAltId; - } - public function getSeasonAltId() - { - return $this->seasonAltId; - } - public function setSeasonNumber($seasonNumber) - { - $this->seasonNumber = $seasonNumber; - } - public function getSeasonNumber() - { - return $this->seasonNumber; - } - public function setSeasonTitleInternalAlias($seasonTitleInternalAlias) - { - $this->seasonTitleInternalAlias = $seasonTitleInternalAlias; - } - public function getSeasonTitleInternalAlias() - { - return $this->seasonTitleInternalAlias; - } - public function setSeriesAltId($seriesAltId) - { - $this->seriesAltId = $seriesAltId; - } - public function getSeriesAltId() - { - return $this->seriesAltId; - } - public function setSeriesTitleInternalAlias($seriesTitleInternalAlias) - { - $this->seriesTitleInternalAlias = $seriesTitleInternalAlias; - } - public function getSeriesTitleInternalAlias() - { - return $this->seriesTitleInternalAlias; - } - public function setStart($start) - { - $this->start = $start; - } - public function getStart() - { - return $this->start; - } - public function setStoreLanguage($storeLanguage) - { - $this->storeLanguage = $storeLanguage; - } - public function getStoreLanguage() - { - return $this->storeLanguage; - } - public function setSuppressionLiftDate($suppressionLiftDate) - { - $this->suppressionLiftDate = $suppressionLiftDate; - } - public function getSuppressionLiftDate() - { - return $this->suppressionLiftDate; - } - public function setTerritory($territory) - { - $this->territory = $territory; - } - public function getTerritory() - { - return $this->territory; - } - public function setTitleInternalAlias($titleInternalAlias) - { - $this->titleInternalAlias = $titleInternalAlias; - } - public function getTitleInternalAlias() - { - return $this->titleInternalAlias; - } - public function setVideoId($videoId) - { - $this->videoId = $videoId; - } - public function getVideoId() - { - return $this->videoId; - } - public function setWorkType($workType) - { - $this->workType = $workType; - } - public function getWorkType() - { - return $this->workType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlayMovies/ListAvailsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlayMovies/ListAvailsResponse.php deleted file mode 100644 index dc391cec..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlayMovies/ListAvailsResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -avails = $avails; - } - /** - * @return Google_Service_PlayMovies_Avail - */ - public function getAvails() - { - return $this->avails; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setTotalSize($totalSize) - { - $this->totalSize = $totalSize; - } - public function getTotalSize() - { - return $this->totalSize; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlayMovies/ListOrdersResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlayMovies/ListOrdersResponse.php deleted file mode 100644 index 5dccb501..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlayMovies/ListOrdersResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_PlayMovies_Order - */ - public function setOrders($orders) - { - $this->orders = $orders; - } - /** - * @return Google_Service_PlayMovies_Order - */ - public function getOrders() - { - return $this->orders; - } - public function setTotalSize($totalSize) - { - $this->totalSize = $totalSize; - } - public function getTotalSize() - { - return $this->totalSize; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlayMovies/ListStoreInfosResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlayMovies/ListStoreInfosResponse.php deleted file mode 100644 index c091c1b6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlayMovies/ListStoreInfosResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_PlayMovies_StoreInfo - */ - public function setStoreInfos($storeInfos) - { - $this->storeInfos = $storeInfos; - } - /** - * @return Google_Service_PlayMovies_StoreInfo - */ - public function getStoreInfos() - { - return $this->storeInfos; - } - public function setTotalSize($totalSize) - { - $this->totalSize = $totalSize; - } - public function getTotalSize() - { - return $this->totalSize; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlayMovies/Order.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlayMovies/Order.php deleted file mode 100644 index 2ae69249..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlayMovies/Order.php +++ /dev/null @@ -1,229 +0,0 @@ -approvedTime = $approvedTime; - } - public function getApprovedTime() - { - return $this->approvedTime; - } - public function setChannelId($channelId) - { - $this->channelId = $channelId; - } - public function getChannelId() - { - return $this->channelId; - } - public function setChannelName($channelName) - { - $this->channelName = $channelName; - } - public function getChannelName() - { - return $this->channelName; - } - public function setCountries($countries) - { - $this->countries = $countries; - } - public function getCountries() - { - return $this->countries; - } - public function setCustomId($customId) - { - $this->customId = $customId; - } - public function getCustomId() - { - return $this->customId; - } - public function setEarliestAvailStartTime($earliestAvailStartTime) - { - $this->earliestAvailStartTime = $earliestAvailStartTime; - } - public function getEarliestAvailStartTime() - { - return $this->earliestAvailStartTime; - } - public function setEpisodeName($episodeName) - { - $this->episodeName = $episodeName; - } - public function getEpisodeName() - { - return $this->episodeName; - } - public function setLegacyPriority($legacyPriority) - { - $this->legacyPriority = $legacyPriority; - } - public function getLegacyPriority() - { - return $this->legacyPriority; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNormalizedPriority($normalizedPriority) - { - $this->normalizedPriority = $normalizedPriority; - } - public function getNormalizedPriority() - { - return $this->normalizedPriority; - } - public function setOrderId($orderId) - { - $this->orderId = $orderId; - } - public function getOrderId() - { - return $this->orderId; - } - public function setOrderedTime($orderedTime) - { - $this->orderedTime = $orderedTime; - } - public function getOrderedTime() - { - return $this->orderedTime; - } - public function setPphName($pphName) - { - $this->pphName = $pphName; - } - public function getPphName() - { - return $this->pphName; - } - public function setPriority($priority) - { - $this->priority = $priority; - } - public function getPriority() - { - return $this->priority; - } - public function setReceivedTime($receivedTime) - { - $this->receivedTime = $receivedTime; - } - public function getReceivedTime() - { - return $this->receivedTime; - } - public function setRejectionNote($rejectionNote) - { - $this->rejectionNote = $rejectionNote; - } - public function getRejectionNote() - { - return $this->rejectionNote; - } - public function setSeasonName($seasonName) - { - $this->seasonName = $seasonName; - } - public function getSeasonName() - { - return $this->seasonName; - } - public function setShowName($showName) - { - $this->showName = $showName; - } - public function getShowName() - { - return $this->showName; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setStatusDetail($statusDetail) - { - $this->statusDetail = $statusDetail; - } - public function getStatusDetail() - { - return $this->statusDetail; - } - public function setStudioName($studioName) - { - $this->studioName = $studioName; - } - public function getStudioName() - { - return $this->studioName; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setVideoId($videoId) - { - $this->videoId = $videoId; - } - public function getVideoId() - { - return $this->videoId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlayMovies/Resource/Accounts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlayMovies/Resource/Accounts.php deleted file mode 100644 index cca01237..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlayMovies/Resource/Accounts.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $playmoviespartnerService = new Google_Service_PlayMovies(...); - * $accounts = $playmoviespartnerService->accounts; - * - */ -class Google_Service_PlayMovies_Resource_Accounts extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlayMovies/Resource/AccountsAvails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlayMovies/Resource/AccountsAvails.php deleted file mode 100644 index 49688334..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlayMovies/Resource/AccountsAvails.php +++ /dev/null @@ -1,82 +0,0 @@ - - * $playmoviespartnerService = new Google_Service_PlayMovies(...); - * $avails = $playmoviespartnerService->avails; - * - */ -class Google_Service_PlayMovies_Resource_AccountsAvails extends Google_Service_Resource -{ - /** - * Get an Avail given its avail group id and avail id. (avails.get) - * - * @param string $accountId REQUIRED. See _General rules_ for more information - * about this field. - * @param string $availId REQUIRED. Avail ID. - * @param array $optParams Optional parameters. - * @return Google_Service_PlayMovies_Avail - */ - public function get($accountId, $availId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'availId' => $availId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_PlayMovies_Avail"); - } - /** - * List Avails owned or managed by the partner. - * - * See _Authentication and Authorization rules_ and _List methods rules_ for - * more information about this method. (avails.listAccountsAvails) - * - * @param string $accountId REQUIRED. See _General rules_ for more information - * about this field. - * @param array $optParams Optional parameters. - * - * @opt_param string pphNames See _List methods rules_ for info about this - * field. - * @opt_param string altId Filter Avails that match a case-insensitive, partner- - * specific custom id. NOTE: this field is deprecated and will be removed on V2; - * `alt_ids` should be used instead. - * @opt_param string studioNames See _List methods rules_ for info about this - * field. - * @opt_param string territories Filter Avails that match (case-insensitive) any - * of the given country codes, using the "ISO 3166-1 alpha-2" format (examples: - * "US", "us", "Us"). - * @opt_param string title Filter that matches Avails with a - * `title_internal_alias`, `series_title_internal_alias`, - * `season_title_internal_alias`, or `episode_title_internal_alias` that - * contains the given case-insensitive title. - * @opt_param string videoIds Filter Avails that match any of the given - * `video_id`s. - * @opt_param string pageToken See _List methods rules_ for info about this - * field. - * @opt_param int pageSize See _List methods rules_ for info about this field. - * @opt_param string altIds Filter Avails that match (case-insensitive) any of - * the given partner-specific custom ids. - * @return Google_Service_PlayMovies_ListAvailsResponse - */ - public function listAccountsAvails($accountId, $optParams = array()) - { - $params = array('accountId' => $accountId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_PlayMovies_ListAvailsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlayMovies/Resource/AccountsOrders.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlayMovies/Resource/AccountsOrders.php deleted file mode 100644 index dc093441..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlayMovies/Resource/AccountsOrders.php +++ /dev/null @@ -1,78 +0,0 @@ - - * $playmoviespartnerService = new Google_Service_PlayMovies(...); - * $orders = $playmoviespartnerService->orders; - * - */ -class Google_Service_PlayMovies_Resource_AccountsOrders extends Google_Service_Resource -{ - /** - * Get an Order given its id. - * - * See _Authentication and Authorization rules_ and _Get methods rules_ for more - * information about this method. (orders.get) - * - * @param string $accountId REQUIRED. See _General rules_ for more information - * about this field. - * @param string $orderId REQUIRED. Order ID. - * @param array $optParams Optional parameters. - * @return Google_Service_PlayMovies_Order - */ - public function get($accountId, $orderId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'orderId' => $orderId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_PlayMovies_Order"); - } - /** - * List Orders owned or managed by the partner. - * - * See _Authentication and Authorization rules_ and _List methods rules_ for - * more information about this method. (orders.listAccountsOrders) - * - * @param string $accountId REQUIRED. See _General rules_ for more information - * about this field. - * @param array $optParams Optional parameters. - * - * @opt_param string status Filter Orders that match one of the given status. - * @opt_param string name Filter that matches Orders with a `name`, `show`, - * `season` or `episode` that contains the given case-insensitive name. - * @opt_param string studioNames See _List methods rules_ for info about this - * field. - * @opt_param string pageToken See _List methods rules_ for info about this - * field. - * @opt_param string customId Filter Orders that match a case-insensitive, - * partner-specific custom id. - * @opt_param string videoIds Filter Orders that match any of the given - * `video_id`s. - * @opt_param int pageSize See _List methods rules_ for info about this field. - * @opt_param string pphNames See _List methods rules_ for info about this - * field. - * @return Google_Service_PlayMovies_ListOrdersResponse - */ - public function listAccountsOrders($accountId, $optParams = array()) - { - $params = array('accountId' => $accountId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_PlayMovies_ListOrdersResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlayMovies/Resource/AccountsStoreInfos.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlayMovies/Resource/AccountsStoreInfos.php deleted file mode 100644 index 2c87b9a2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlayMovies/Resource/AccountsStoreInfos.php +++ /dev/null @@ -1,66 +0,0 @@ - - * $playmoviespartnerService = new Google_Service_PlayMovies(...); - * $storeInfos = $playmoviespartnerService->storeInfos; - * - */ -class Google_Service_PlayMovies_Resource_AccountsStoreInfos extends Google_Service_Resource -{ - /** - * List StoreInfos owned or managed by the partner. - * - * See _Authentication and Authorization rules_ and _List methods rules_ for - * more information about this method. (storeInfos.listAccountsStoreInfos) - * - * @param string $accountId REQUIRED. See _General rules_ for more information - * about this field. - * @param array $optParams Optional parameters. - * - * @opt_param int pageSize See _List methods rules_ for info about this field. - * @opt_param string mids Filter StoreInfos that match any of the given `mid`s. - * @opt_param string pphNames See _List methods rules_ for info about this - * field. - * @opt_param string countries Filter StoreInfos that match (case-insensitive) - * any of the given country codes, using the "ISO 3166-1 alpha-2" format - * (examples: "US", "us", "Us"). - * @opt_param string name Filter that matches StoreInfos with a `name` or - * `show_name` that contains the given case-insensitive name. - * @opt_param string studioNames See _List methods rules_ for info about this - * field. - * @opt_param string seasonIds Filter StoreInfos that match any of the given - * `season_id`s. - * @opt_param string videoIds Filter StoreInfos that match any of the given - * `video_id`s. - * @opt_param string videoId Filter StoreInfos that match a given `video_id`. - * NOTE: this field is deprecated and will be removed on V2; `video_ids` should - * be used instead. - * @opt_param string pageToken See _List methods rules_ for info about this - * field. - * @return Google_Service_PlayMovies_ListStoreInfosResponse - */ - public function listAccountsStoreInfos($accountId, $optParams = array()) - { - $params = array('accountId' => $accountId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_PlayMovies_ListStoreInfosResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlayMovies/Resource/AccountsStoreInfosCountry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlayMovies/Resource/AccountsStoreInfosCountry.php deleted file mode 100644 index 22f59c9a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlayMovies/Resource/AccountsStoreInfosCountry.php +++ /dev/null @@ -1,47 +0,0 @@ - - * $playmoviespartnerService = new Google_Service_PlayMovies(...); - * $country = $playmoviespartnerService->country; - * - */ -class Google_Service_PlayMovies_Resource_AccountsStoreInfosCountry extends Google_Service_Resource -{ - /** - * Get a StoreInfo given its video id and country. - * - * See _Authentication and Authorization rules_ and _Get methods rules_ for more - * information about this method. (country.get) - * - * @param string $accountId REQUIRED. See _General rules_ for more information - * about this field. - * @param string $videoId REQUIRED. Video ID. - * @param string $country REQUIRED. Edit country. - * @param array $optParams Optional parameters. - * @return Google_Service_PlayMovies_StoreInfo - */ - public function get($accountId, $videoId, $country, $optParams = array()) - { - $params = array('accountId' => $accountId, 'videoId' => $videoId, 'country' => $country); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_PlayMovies_StoreInfo"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlayMovies/StoreInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlayMovies/StoreInfo.php deleted file mode 100644 index 57fe88dd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlayMovies/StoreInfo.php +++ /dev/null @@ -1,247 +0,0 @@ -audioTracks = $audioTracks; - } - public function getAudioTracks() - { - return $this->audioTracks; - } - public function setCountry($country) - { - $this->country = $country; - } - public function getCountry() - { - return $this->country; - } - public function setEditLevelEidr($editLevelEidr) - { - $this->editLevelEidr = $editLevelEidr; - } - public function getEditLevelEidr() - { - return $this->editLevelEidr; - } - public function setEpisodeNumber($episodeNumber) - { - $this->episodeNumber = $episodeNumber; - } - public function getEpisodeNumber() - { - return $this->episodeNumber; - } - public function setHasAudio51($hasAudio51) - { - $this->hasAudio51 = $hasAudio51; - } - public function getHasAudio51() - { - return $this->hasAudio51; - } - public function setHasEstOffer($hasEstOffer) - { - $this->hasEstOffer = $hasEstOffer; - } - public function getHasEstOffer() - { - return $this->hasEstOffer; - } - public function setHasHdOffer($hasHdOffer) - { - $this->hasHdOffer = $hasHdOffer; - } - public function getHasHdOffer() - { - return $this->hasHdOffer; - } - public function setHasInfoCards($hasInfoCards) - { - $this->hasInfoCards = $hasInfoCards; - } - public function getHasInfoCards() - { - return $this->hasInfoCards; - } - public function setHasSdOffer($hasSdOffer) - { - $this->hasSdOffer = $hasSdOffer; - } - public function getHasSdOffer() - { - return $this->hasSdOffer; - } - public function setHasVodOffer($hasVodOffer) - { - $this->hasVodOffer = $hasVodOffer; - } - public function getHasVodOffer() - { - return $this->hasVodOffer; - } - public function setLiveTime($liveTime) - { - $this->liveTime = $liveTime; - } - public function getLiveTime() - { - return $this->liveTime; - } - public function setMid($mid) - { - $this->mid = $mid; - } - public function getMid() - { - return $this->mid; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPphNames($pphNames) - { - $this->pphNames = $pphNames; - } - public function getPphNames() - { - return $this->pphNames; - } - public function setSeasonId($seasonId) - { - $this->seasonId = $seasonId; - } - public function getSeasonId() - { - return $this->seasonId; - } - public function setSeasonName($seasonName) - { - $this->seasonName = $seasonName; - } - public function getSeasonName() - { - return $this->seasonName; - } - public function setSeasonNumber($seasonNumber) - { - $this->seasonNumber = $seasonNumber; - } - public function getSeasonNumber() - { - return $this->seasonNumber; - } - public function setShowId($showId) - { - $this->showId = $showId; - } - public function getShowId() - { - return $this->showId; - } - public function setShowName($showName) - { - $this->showName = $showName; - } - public function getShowName() - { - return $this->showName; - } - public function setStudioName($studioName) - { - $this->studioName = $studioName; - } - public function getStudioName() - { - return $this->studioName; - } - public function setSubtitles($subtitles) - { - $this->subtitles = $subtitles; - } - public function getSubtitles() - { - return $this->subtitles; - } - public function setTitleLevelEidr($titleLevelEidr) - { - $this->titleLevelEidr = $titleLevelEidr; - } - public function getTitleLevelEidr() - { - return $this->titleLevelEidr; - } - public function setTrailerId($trailerId) - { - $this->trailerId = $trailerId; - } - public function getTrailerId() - { - return $this->trailerId; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setVideoId($videoId) - { - $this->videoId = $videoId; - } - public function getVideoId() - { - return $this->videoId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playcustomapp.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playcustomapp.php deleted file mode 100644 index 64c98247..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playcustomapp.php +++ /dev/null @@ -1,75 +0,0 @@ - - * An API to publish custom Android apps.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Playcustomapp extends Google_Service -{ - /** View and manage your Google Play Developer account. */ - const ANDROIDPUBLISHER = - "https://www.googleapis.com/auth/androidpublisher"; - - public $accounts_customApps; - - /** - * Constructs the internal representation of the Playcustomapp service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://www.googleapis.com/'; - $this->servicePath = 'playcustomapp/v1/accounts/'; - $this->batchPath = 'batch/playcustomapp/v1'; - $this->version = 'v1'; - $this->serviceName = 'playcustomapp'; - - $this->accounts_customApps = new Google_Service_Playcustomapp_Resource_AccountsCustomApps( - $this, - $this->serviceName, - 'customApps', - array( - 'methods' => array( - 'create' => array( - 'path' => '{account}/customApps', - 'httpMethod' => 'POST', - 'parameters' => array( - 'account' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playcustomapp/CustomApp.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playcustomapp/CustomApp.php deleted file mode 100644 index 39a49e20..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playcustomapp/CustomApp.php +++ /dev/null @@ -1,39 +0,0 @@ -languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playcustomapp/Resource/Accounts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playcustomapp/Resource/Accounts.php deleted file mode 100644 index e006aa4e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playcustomapp/Resource/Accounts.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $playcustomappService = new Google_Service_Playcustomapp(...); - * $accounts = $playcustomappService->accounts; - * - */ -class Google_Service_Playcustomapp_Resource_Accounts extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playcustomapp/Resource/AccountsCustomApps.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playcustomapp/Resource/AccountsCustomApps.php deleted file mode 100644 index d24c607a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playcustomapp/Resource/AccountsCustomApps.php +++ /dev/null @@ -1,42 +0,0 @@ - - * $playcustomappService = new Google_Service_Playcustomapp(...); - * $customApps = $playcustomappService->customApps; - * - */ -class Google_Service_Playcustomapp_Resource_AccountsCustomApps extends Google_Service_Resource -{ - /** - * Create and publish a new custom app. (customApps.create) - * - * @param string $account Developer account ID. - * @param Google_Service_Playcustomapp_CustomApp $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Playcustomapp_CustomApp - */ - public function create($account, Google_Service_Playcustomapp_CustomApp $postBody, $optParams = array()) - { - $params = array('account' => $account, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Playcustomapp_CustomApp"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playmoviespartner.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playmoviespartner.php deleted file mode 100644 index 9c5cc1b5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playmoviespartner.php +++ /dev/null @@ -1,339 +0,0 @@ - - * Lets Google Play Movies Partners get the delivery status of their titles.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Playmoviespartner extends Google_Service -{ - /** View the digital assets you publish on Google Play Movies and TV. */ - const PLAYMOVIES_PARTNER_READONLY = - "https://www.googleapis.com/auth/playmovies_partner.readonly"; - - public $accounts_avails; - public $accounts_experienceLocales; - public $accounts_orders; - public $accounts_storeInfos; - public $accounts_storeInfos_country; - - /** - * Constructs the internal representation of the Playmoviespartner service. - * - * @param Google_Client $client - */ - public function __construct(Google_Client $client) - { - parent::__construct($client); - $this->rootUrl = 'https://playmoviespartner.googleapis.com/'; - $this->servicePath = ''; - $this->version = 'v1'; - $this->serviceName = 'playmoviespartner'; - - $this->accounts_avails = new Google_Service_Playmoviespartner_AccountsAvailsResource( - $this, - $this->serviceName, - 'avails', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1/accounts/{accountId}/avails', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pphNames' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'studioNames' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'title' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'territories' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'altId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'videoIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ), - ) - ) - ); - $this->accounts_experienceLocales = new Google_Service_Playmoviespartner_AccountsExperienceLocalesResource( - $this, - $this->serviceName, - 'experienceLocales', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/accounts/{accountId}/experienceLocales/{elId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'elId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/accounts/{accountId}/experienceLocales', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pphNames' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'studioNames' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'titleLevelEidr' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'editLevelEidr' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'status' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'customId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'altCutId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->accounts_orders = new Google_Service_Playmoviespartner_AccountsOrdersResource( - $this, - $this->serviceName, - 'orders', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/accounts/{accountId}/orders/{orderId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'orderId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/accounts/{accountId}/orders', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pphNames' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'studioNames' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'name' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'status' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'customId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->accounts_storeInfos = new Google_Service_Playmoviespartner_AccountsStoreInfosResource( - $this, - $this->serviceName, - 'storeInfos', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1/accounts/{accountId}/storeInfos', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pphNames' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'studioNames' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'videoId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'countries' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'name' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'videoIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ), - ) - ) - ); - $this->accounts_storeInfos_country = new Google_Service_Playmoviespartner_AccountsStoreInfosCountryResource( - $this, - $this->serviceName, - 'country', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/accounts/{accountId}/storeInfos/{videoId}/country/{country}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'videoId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'country' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playmoviespartner/AccountsAvailsResource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playmoviespartner/AccountsAvailsResource.php deleted file mode 100644 index c2c57b9b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playmoviespartner/AccountsAvailsResource.php +++ /dev/null @@ -1,61 +0,0 @@ - - * $playmoviespartnerService = new Google_Service_Playmoviespartner(...); - * $avails = $playmoviespartnerService->avails; - * - */ -class Google_Service_Playmoviespartner_AccountsAvailsResource extends Google_Service_Resource -{ - /** - * List Avails owned or managed by the partner. See _Authentication and - * Authorization rules_ and _List methods rules_ for more information about this - * method. (avails.listAccountsAvails) - * - * @param string $accountId REQUIRED. See _General rules_ for more information - * about this field. - * @param array $optParams Optional parameters. - * - * @opt_param int pageSize See _List methods rules_ for info about this field. - * @opt_param string pageToken See _List methods rules_ for info about this - * field. - * @opt_param string pphNames See _List methods rules_ for info about this - * field. - * @opt_param string studioNames See _List methods rules_ for info about this - * field. - * @opt_param string title Filter Avails that match a case-insensitive substring - * of the default Title name. - * @opt_param string territories Filter Avails that match (case-insensitive) any - * of the given country codes, using the "ISO 3166-1 alpha-2" format (examples: - * "US", "us", "Us"). - * @opt_param string altId Filter Avails that match a case-insensitive, partner- - * specific custom id. - * @opt_param string videoIds Filter Avails that match any of the given - * `video_id`s. - * @return Google_Service_Playmoviespartner_ListAvailsResponse - */ - public function listAccountsAvails($accountId, $optParams = array()) - { - $params = array('accountId' => $accountId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Playmoviespartner_ListAvailsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playmoviespartner/AccountsExperienceLocalesResource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playmoviespartner/AccountsExperienceLocalesResource.php deleted file mode 100644 index 30526830..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playmoviespartner/AccountsExperienceLocalesResource.php +++ /dev/null @@ -1,79 +0,0 @@ - - * $playmoviespartnerService = new Google_Service_Playmoviespartner(...); - * $experienceLocales = $playmoviespartnerService->experienceLocales; - * - */ -class Google_Service_Playmoviespartner_AccountsExperienceLocalesResource extends Google_Service_Resource -{ - /** - * Get an ExperienceLocale given its id. See _Authentication and Authorization - * rules_ and _Get methods rules_ for more information about this method. - * (experienceLocales.get) - * - * @param string $accountId REQUIRED. See _General rules_ for more information - * about this field. - * @param string $elId REQUIRED. ExperienceLocale ID, as defined by Google. - * @param array $optParams Optional parameters. - * @return Google_Service_Playmoviespartner_ExperienceLocale - */ - public function get($accountId, $elId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'elId' => $elId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Playmoviespartner_ExperienceLocale"); - } - /** - * List ExperienceLocales owned or managed by the partner. See _Authentication - * and Authorization rules_ and _List methods rules_ for more information about - * this method. (experienceLocales.listAccountsExperienceLocales) - * - * @param string $accountId REQUIRED. See _General rules_ for more information - * about this field. - * @param array $optParams Optional parameters. - * - * @opt_param int pageSize See _List methods rules_ for info about this field. - * @opt_param string pageToken See _List methods rules_ for info about this - * field. - * @opt_param string pphNames See _List methods rules_ for info about this - * field. - * @opt_param string studioNames See _List methods rules_ for info about this - * field. - * @opt_param string titleLevelEidr Filter ExperienceLocales that match a given - * title-level EIDR. - * @opt_param string editLevelEidr Filter ExperienceLocales that match a given - * edit-level EIDR. - * @opt_param string status Filter ExperienceLocales that match one of the given - * status. - * @opt_param string customId Filter ExperienceLocales that match a case- - * insensitive, partner-specific custom id. - * @opt_param string altCutId Filter ExperienceLocales that match a case- - * insensitive, partner-specific Alternative Cut ID. - * @return Google_Service_Playmoviespartner_ListExperienceLocalesResponse - */ - public function listAccountsExperienceLocales($accountId, $optParams = array()) - { - $params = array('accountId' => $accountId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Playmoviespartner_ListExperienceLocalesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playmoviespartner/AccountsOrdersResource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playmoviespartner/AccountsOrdersResource.php deleted file mode 100644 index 1eac5582..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playmoviespartner/AccountsOrdersResource.php +++ /dev/null @@ -1,73 +0,0 @@ - - * $playmoviespartnerService = new Google_Service_Playmoviespartner(...); - * $orders = $playmoviespartnerService->orders; - * - */ -class Google_Service_Playmoviespartner_AccountsOrdersResource extends Google_Service_Resource -{ - /** - * Get an Order given its id. See _Authentication and Authorization rules_ and - * _Get methods rules_ for more information about this method. (orders.get) - * - * @param string $accountId REQUIRED. See _General rules_ for more information - * about this field. - * @param string $orderId REQUIRED. Order ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Playmoviespartner_Order - */ - public function get($accountId, $orderId, $optParams = array()) - { - $params = array('accountId' => $accountId, 'orderId' => $orderId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Playmoviespartner_Order"); - } - /** - * List Orders owned or managed by the partner. See _Authentication and - * Authorization rules_ and _List methods rules_ for more information about this - * method. (orders.listAccountsOrders) - * - * @param string $accountId REQUIRED. See _General rules_ for more information - * about this field. - * @param array $optParams Optional parameters. - * - * @opt_param int pageSize See _List methods rules_ for info about this field. - * @opt_param string pageToken See _List methods rules_ for info about this - * field. - * @opt_param string pphNames See _List methods rules_ for info about this - * field. - * @opt_param string studioNames See _List methods rules_ for info about this - * field. - * @opt_param string name Filter Orders that match a title name (case- - * insensitive, sub-string match). - * @opt_param string status Filter Orders that match one of the given status. - * @opt_param string customId Filter Orders that match a case-insensitive, - * partner-specific custom id. - * @return Google_Service_Playmoviespartner_ListOrdersResponse - */ - public function listAccountsOrders($accountId, $optParams = array()) - { - $params = array('accountId' => $accountId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Playmoviespartner_ListOrdersResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playmoviespartner/AccountsResource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playmoviespartner/AccountsResource.php deleted file mode 100644 index dafd9fcd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playmoviespartner/AccountsResource.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $playmoviespartnerService = new Google_Service_Playmoviespartner(...); - * $accounts = $playmoviespartnerService->accounts; - * - */ -class Google_Service_Playmoviespartner_AccountsResource extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playmoviespartner/AccountsStoreInfosCountryResource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playmoviespartner/AccountsStoreInfosCountryResource.php deleted file mode 100644 index 11fac671..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playmoviespartner/AccountsStoreInfosCountryResource.php +++ /dev/null @@ -1,46 +0,0 @@ - - * $playmoviespartnerService = new Google_Service_Playmoviespartner(...); - * $country = $playmoviespartnerService->country; - * - */ -class Google_Service_Playmoviespartner_AccountsStoreInfosCountryResource extends Google_Service_Resource -{ - /** - * Get a StoreInfo given its video id and country. See _Authentication and - * Authorization rules_ and _Get methods rules_ for more information about this - * method. (country.get) - * - * @param string $accountId REQUIRED. See _General rules_ for more information - * about this field. - * @param string $videoId REQUIRED. Video ID. - * @param string $country REQUIRED. Edit country. - * @param array $optParams Optional parameters. - * @return Google_Service_Playmoviespartner_StoreInfo - */ - public function get($accountId, $videoId, $country, $optParams = array()) - { - $params = array('accountId' => $accountId, 'videoId' => $videoId, 'country' => $country); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Playmoviespartner_StoreInfo"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playmoviespartner/AccountsStoreInfosResource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playmoviespartner/AccountsStoreInfosResource.php deleted file mode 100644 index e054373f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playmoviespartner/AccountsStoreInfosResource.php +++ /dev/null @@ -1,62 +0,0 @@ - - * $playmoviespartnerService = new Google_Service_Playmoviespartner(...); - * $storeInfos = $playmoviespartnerService->storeInfos; - * - */ -class Google_Service_Playmoviespartner_AccountsStoreInfosResource extends Google_Service_Resource -{ - /** - * List StoreInfos owned or managed by the partner. See _Authentication and - * Authorization rules_ and _List methods rules_ for more information about this - * method. (storeInfos.listAccountsStoreInfos) - * - * @param string $accountId REQUIRED. See _General rules_ for more information - * about this field. - * @param array $optParams Optional parameters. - * - * @opt_param int pageSize See _List methods rules_ for info about this field. - * @opt_param string pageToken See _List methods rules_ for info about this - * field. - * @opt_param string pphNames See _List methods rules_ for info about this - * field. - * @opt_param string studioNames See _List methods rules_ for info about this - * field. - * @opt_param string videoId Filter StoreInfos that match a given `video_id`. - * NOTE: this field is deprecated and will be removed on V2; `video_ids` should - * be used instead. - * @opt_param string countries Filter StoreInfos that match (case-insensitive) - * any of the given country codes, using the "ISO 3166-1 alpha-2" format - * (examples: "US", "us", "Us"). - * @opt_param string name Filter StoreInfos that match a case-insensitive - * substring of the default name. - * @opt_param string videoIds Filter StoreInfos that match any of the given - * `video_id`s. - * @return Google_Service_Playmoviespartner_ListStoreInfosResponse - */ - public function listAccountsStoreInfos($accountId, $optParams = array()) - { - $params = array('accountId' => $accountId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Playmoviespartner_ListStoreInfosResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playmoviespartner/Avail.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playmoviespartner/Avail.php deleted file mode 100644 index e3d42289..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playmoviespartner/Avail.php +++ /dev/null @@ -1,310 +0,0 @@ -altId = $altId; - } - public function getAltId() - { - return $this->altId; - } - public function setCaptionExemption($captionExemption) - { - $this->captionExemption = $captionExemption; - } - public function getCaptionExemption() - { - return $this->captionExemption; - } - public function setCaptionIncluded($captionIncluded) - { - $this->captionIncluded = $captionIncluded; - } - public function getCaptionIncluded() - { - return $this->captionIncluded; - } - public function setContentId($contentId) - { - $this->contentId = $contentId; - } - public function getContentId() - { - return $this->contentId; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setEncodeId($encodeId) - { - $this->encodeId = $encodeId; - } - public function getEncodeId() - { - return $this->encodeId; - } - public function setEnd($end) - { - $this->end = $end; - } - public function getEnd() - { - return $this->end; - } - public function setEpisodeAltId($episodeAltId) - { - $this->episodeAltId = $episodeAltId; - } - public function getEpisodeAltId() - { - return $this->episodeAltId; - } - public function setEpisodeNumber($episodeNumber) - { - $this->episodeNumber = $episodeNumber; - } - public function getEpisodeNumber() - { - return $this->episodeNumber; - } - public function setEpisodeTitleInternalAlias($episodeTitleInternalAlias) - { - $this->episodeTitleInternalAlias = $episodeTitleInternalAlias; - } - public function getEpisodeTitleInternalAlias() - { - return $this->episodeTitleInternalAlias; - } - public function setFormatProfile($formatProfile) - { - $this->formatProfile = $formatProfile; - } - public function getFormatProfile() - { - return $this->formatProfile; - } - public function setLicenseType($licenseType) - { - $this->licenseType = $licenseType; - } - public function getLicenseType() - { - return $this->licenseType; - } - public function setPphNames($pphNames) - { - $this->pphNames = $pphNames; - } - public function getPphNames() - { - return $this->pphNames; - } - public function setPriceType($priceType) - { - $this->priceType = $priceType; - } - public function getPriceType() - { - return $this->priceType; - } - public function setPriceValue($priceValue) - { - $this->priceValue = $priceValue; - } - public function getPriceValue() - { - return $this->priceValue; - } - public function setProductId($productId) - { - $this->productId = $productId; - } - public function getProductId() - { - return $this->productId; - } - public function setRatingReason($ratingReason) - { - $this->ratingReason = $ratingReason; - } - public function getRatingReason() - { - return $this->ratingReason; - } - public function setRatingSystem($ratingSystem) - { - $this->ratingSystem = $ratingSystem; - } - public function getRatingSystem() - { - return $this->ratingSystem; - } - public function setRatingValue($ratingValue) - { - $this->ratingValue = $ratingValue; - } - public function getRatingValue() - { - return $this->ratingValue; - } - public function setReleaseDate($releaseDate) - { - $this->releaseDate = $releaseDate; - } - public function getReleaseDate() - { - return $this->releaseDate; - } - public function setSeasonAltId($seasonAltId) - { - $this->seasonAltId = $seasonAltId; - } - public function getSeasonAltId() - { - return $this->seasonAltId; - } - public function setSeasonNumber($seasonNumber) - { - $this->seasonNumber = $seasonNumber; - } - public function getSeasonNumber() - { - return $this->seasonNumber; - } - public function setSeasonTitleInternalAlias($seasonTitleInternalAlias) - { - $this->seasonTitleInternalAlias = $seasonTitleInternalAlias; - } - public function getSeasonTitleInternalAlias() - { - return $this->seasonTitleInternalAlias; - } - public function setSeriesAltId($seriesAltId) - { - $this->seriesAltId = $seriesAltId; - } - public function getSeriesAltId() - { - return $this->seriesAltId; - } - public function setSeriesTitleInternalAlias($seriesTitleInternalAlias) - { - $this->seriesTitleInternalAlias = $seriesTitleInternalAlias; - } - public function getSeriesTitleInternalAlias() - { - return $this->seriesTitleInternalAlias; - } - public function setStart($start) - { - $this->start = $start; - } - public function getStart() - { - return $this->start; - } - public function setStoreLanguage($storeLanguage) - { - $this->storeLanguage = $storeLanguage; - } - public function getStoreLanguage() - { - return $this->storeLanguage; - } - public function setSuppressionLiftDate($suppressionLiftDate) - { - $this->suppressionLiftDate = $suppressionLiftDate; - } - public function getSuppressionLiftDate() - { - return $this->suppressionLiftDate; - } - public function setTerritory($territory) - { - $this->territory = $territory; - } - public function getTerritory() - { - return $this->territory; - } - public function setTitleInternalAlias($titleInternalAlias) - { - $this->titleInternalAlias = $titleInternalAlias; - } - public function getTitleInternalAlias() - { - return $this->titleInternalAlias; - } - public function setVideoId($videoId) - { - $this->videoId = $videoId; - } - public function getVideoId() - { - return $this->videoId; - } - public function setWorkType($workType) - { - $this->workType = $workType; - } - public function getWorkType() - { - return $this->workType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playmoviespartner/ExperienceLocale.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playmoviespartner/ExperienceLocale.php deleted file mode 100644 index e386a788..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playmoviespartner/ExperienceLocale.php +++ /dev/null @@ -1,229 +0,0 @@ -altCutId = $altCutId; - } - public function getAltCutId() - { - return $this->altCutId; - } - public function setApprovedTime($approvedTime) - { - $this->approvedTime = $approvedTime; - } - public function getApprovedTime() - { - return $this->approvedTime; - } - public function setChannelId($channelId) - { - $this->channelId = $channelId; - } - public function getChannelId() - { - return $this->channelId; - } - public function setCountry($country) - { - $this->country = $country; - } - public function getCountry() - { - return $this->country; - } - public function setCreatedTime($createdTime) - { - $this->createdTime = $createdTime; - } - public function getCreatedTime() - { - return $this->createdTime; - } - public function setCustomIds($customIds) - { - $this->customIds = $customIds; - } - public function getCustomIds() - { - return $this->customIds; - } - public function setEarliestAvailStartTime($earliestAvailStartTime) - { - $this->earliestAvailStartTime = $earliestAvailStartTime; - } - public function getEarliestAvailStartTime() - { - return $this->earliestAvailStartTime; - } - public function setEditLevelEidr($editLevelEidr) - { - $this->editLevelEidr = $editLevelEidr; - } - public function getEditLevelEidr() - { - return $this->editLevelEidr; - } - public function setElId($elId) - { - $this->elId = $elId; - } - public function getElId() - { - return $this->elId; - } - public function setInventoryId($inventoryId) - { - $this->inventoryId = $inventoryId; - } - public function getInventoryId() - { - return $this->inventoryId; - } - public function setLanguage($language) - { - $this->language = $language; - } - public function getLanguage() - { - return $this->language; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNormalizedPriority($normalizedPriority) - { - $this->normalizedPriority = $normalizedPriority; - } - public function getNormalizedPriority() - { - return $this->normalizedPriority; - } - public function setPlayableSequenceId($playableSequenceId) - { - $this->playableSequenceId = $playableSequenceId; - } - public function getPlayableSequenceId() - { - return $this->playableSequenceId; - } - public function setPphNames($pphNames) - { - $this->pphNames = $pphNames; - } - public function getPphNames() - { - return $this->pphNames; - } - public function setPresentationId($presentationId) - { - $this->presentationId = $presentationId; - } - public function getPresentationId() - { - return $this->presentationId; - } - public function setPriority($priority) - { - $this->priority = $priority; - } - public function getPriority() - { - return $this->priority; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setStudioName($studioName) - { - $this->studioName = $studioName; - } - public function getStudioName() - { - return $this->studioName; - } - public function setTitleLevelEidr($titleLevelEidr) - { - $this->titleLevelEidr = $titleLevelEidr; - } - public function getTitleLevelEidr() - { - return $this->titleLevelEidr; - } - public function setTrailerId($trailerId) - { - $this->trailerId = $trailerId; - } - public function getTrailerId() - { - return $this->trailerId; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setVideoId($videoId) - { - $this->videoId = $videoId; - } - public function getVideoId() - { - return $this->videoId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playmoviespartner/ListAvailsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playmoviespartner/ListAvailsResponse.php deleted file mode 100644 index e8bf68fc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playmoviespartner/ListAvailsResponse.php +++ /dev/null @@ -1,41 +0,0 @@ -avails = $avails; - } - public function getAvails() - { - return $this->avails; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playmoviespartner/ListExperienceLocalesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playmoviespartner/ListExperienceLocalesResponse.php deleted file mode 100644 index ed43ab47..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playmoviespartner/ListExperienceLocalesResponse.php +++ /dev/null @@ -1,41 +0,0 @@ -experienceLocales = $experienceLocales; - } - public function getExperienceLocales() - { - return $this->experienceLocales; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playmoviespartner/ListOrdersResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playmoviespartner/ListOrdersResponse.php deleted file mode 100644 index 7b071917..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playmoviespartner/ListOrdersResponse.php +++ /dev/null @@ -1,41 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setOrders($orders) - { - $this->orders = $orders; - } - public function getOrders() - { - return $this->orders; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playmoviespartner/ListStoreInfosResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playmoviespartner/ListStoreInfosResponse.php deleted file mode 100644 index b9e5c742..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playmoviespartner/ListStoreInfosResponse.php +++ /dev/null @@ -1,41 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setStoreInfos($storeInfos) - { - $this->storeInfos = $storeInfos; - } - public function getStoreInfos() - { - return $this->storeInfos; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playmoviespartner/Order.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playmoviespartner/Order.php deleted file mode 100644 index d0405a30..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playmoviespartner/Order.php +++ /dev/null @@ -1,229 +0,0 @@ -approvedTime = $approvedTime; - } - public function getApprovedTime() - { - return $this->approvedTime; - } - public function setChannelId($channelId) - { - $this->channelId = $channelId; - } - public function getChannelId() - { - return $this->channelId; - } - public function setChannelName($channelName) - { - $this->channelName = $channelName; - } - public function getChannelName() - { - return $this->channelName; - } - public function setCountries($countries) - { - $this->countries = $countries; - } - public function getCountries() - { - return $this->countries; - } - public function setCustomId($customId) - { - $this->customId = $customId; - } - public function getCustomId() - { - return $this->customId; - } - public function setEarliestAvailStartTime($earliestAvailStartTime) - { - $this->earliestAvailStartTime = $earliestAvailStartTime; - } - public function getEarliestAvailStartTime() - { - return $this->earliestAvailStartTime; - } - public function setEpisodeName($episodeName) - { - $this->episodeName = $episodeName; - } - public function getEpisodeName() - { - return $this->episodeName; - } - public function setLegacyPriority($legacyPriority) - { - $this->legacyPriority = $legacyPriority; - } - public function getLegacyPriority() - { - return $this->legacyPriority; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNormalizedPriority($normalizedPriority) - { - $this->normalizedPriority = $normalizedPriority; - } - public function getNormalizedPriority() - { - return $this->normalizedPriority; - } - public function setOrderId($orderId) - { - $this->orderId = $orderId; - } - public function getOrderId() - { - return $this->orderId; - } - public function setOrderedTime($orderedTime) - { - $this->orderedTime = $orderedTime; - } - public function getOrderedTime() - { - return $this->orderedTime; - } - public function setPphName($pphName) - { - $this->pphName = $pphName; - } - public function getPphName() - { - return $this->pphName; - } - public function setPriority($priority) - { - $this->priority = $priority; - } - public function getPriority() - { - return $this->priority; - } - public function setReceivedTime($receivedTime) - { - $this->receivedTime = $receivedTime; - } - public function getReceivedTime() - { - return $this->receivedTime; - } - public function setRejectionNote($rejectionNote) - { - $this->rejectionNote = $rejectionNote; - } - public function getRejectionNote() - { - return $this->rejectionNote; - } - public function setSeasonName($seasonName) - { - $this->seasonName = $seasonName; - } - public function getSeasonName() - { - return $this->seasonName; - } - public function setShowName($showName) - { - $this->showName = $showName; - } - public function getShowName() - { - return $this->showName; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setStatusDetail($statusDetail) - { - $this->statusDetail = $statusDetail; - } - public function getStatusDetail() - { - return $this->statusDetail; - } - public function setStudioName($studioName) - { - $this->studioName = $studioName; - } - public function getStudioName() - { - return $this->studioName; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setVideoId($videoId) - { - $this->videoId = $videoId; - } - public function getVideoId() - { - return $this->videoId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playmoviespartner/StoreInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playmoviespartner/StoreInfo.php deleted file mode 100644 index 59f6d6b9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Playmoviespartner/StoreInfo.php +++ /dev/null @@ -1,247 +0,0 @@ -audioTracks = $audioTracks; - } - public function getAudioTracks() - { - return $this->audioTracks; - } - public function setCountry($country) - { - $this->country = $country; - } - public function getCountry() - { - return $this->country; - } - public function setEditLevelEidr($editLevelEidr) - { - $this->editLevelEidr = $editLevelEidr; - } - public function getEditLevelEidr() - { - return $this->editLevelEidr; - } - public function setEpisodeNumber($episodeNumber) - { - $this->episodeNumber = $episodeNumber; - } - public function getEpisodeNumber() - { - return $this->episodeNumber; - } - public function setHasAudio51($hasAudio51) - { - $this->hasAudio51 = $hasAudio51; - } - public function getHasAudio51() - { - return $this->hasAudio51; - } - public function setHasEstOffer($hasEstOffer) - { - $this->hasEstOffer = $hasEstOffer; - } - public function getHasEstOffer() - { - return $this->hasEstOffer; - } - public function setHasHdOffer($hasHdOffer) - { - $this->hasHdOffer = $hasHdOffer; - } - public function getHasHdOffer() - { - return $this->hasHdOffer; - } - public function setHasInfoCards($hasInfoCards) - { - $this->hasInfoCards = $hasInfoCards; - } - public function getHasInfoCards() - { - return $this->hasInfoCards; - } - public function setHasSdOffer($hasSdOffer) - { - $this->hasSdOffer = $hasSdOffer; - } - public function getHasSdOffer() - { - return $this->hasSdOffer; - } - public function setHasVodOffer($hasVodOffer) - { - $this->hasVodOffer = $hasVodOffer; - } - public function getHasVodOffer() - { - return $this->hasVodOffer; - } - public function setLiveTime($liveTime) - { - $this->liveTime = $liveTime; - } - public function getLiveTime() - { - return $this->liveTime; - } - public function setMid($mid) - { - $this->mid = $mid; - } - public function getMid() - { - return $this->mid; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPphNames($pphNames) - { - $this->pphNames = $pphNames; - } - public function getPphNames() - { - return $this->pphNames; - } - public function setSeasonId($seasonId) - { - $this->seasonId = $seasonId; - } - public function getSeasonId() - { - return $this->seasonId; - } - public function setSeasonName($seasonName) - { - $this->seasonName = $seasonName; - } - public function getSeasonName() - { - return $this->seasonName; - } - public function setSeasonNumber($seasonNumber) - { - $this->seasonNumber = $seasonNumber; - } - public function getSeasonNumber() - { - return $this->seasonNumber; - } - public function setShowId($showId) - { - $this->showId = $showId; - } - public function getShowId() - { - return $this->showId; - } - public function setShowName($showName) - { - $this->showName = $showName; - } - public function getShowName() - { - return $this->showName; - } - public function setStudioName($studioName) - { - $this->studioName = $studioName; - } - public function getStudioName() - { - return $this->studioName; - } - public function setSubtitles($subtitles) - { - $this->subtitles = $subtitles; - } - public function getSubtitles() - { - return $this->subtitles; - } - public function setTitleLevelEidr($titleLevelEidr) - { - $this->titleLevelEidr = $titleLevelEidr; - } - public function getTitleLevelEidr() - { - return $this->titleLevelEidr; - } - public function setTrailerId($trailerId) - { - $this->trailerId = $trailerId; - } - public function getTrailerId() - { - return $this->trailerId; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setVideoId($videoId) - { - $this->videoId = $videoId; - } - public function getVideoId() - { - return $this->videoId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus.php deleted file mode 100644 index 8f0d50ab..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus.php +++ /dev/null @@ -1,269 +0,0 @@ - - * Builds on top of the Google+ platform.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Plus extends Google_Service -{ - /** View your basic profile info, including your age range and language. */ - const PLUS_LOGIN = - "https://www.googleapis.com/auth/plus.login"; - /** Associate you with your personal info on Google. */ - const PLUS_ME = - "https://www.googleapis.com/auth/plus.me"; - /** View your email address. */ - const USERINFO_EMAIL = - "https://www.googleapis.com/auth/userinfo.email"; - /** See your personal info, including any personal info you've made publicly available. */ - const USERINFO_PROFILE = - "https://www.googleapis.com/auth/userinfo.profile"; - - public $activities; - public $comments; - public $people; - - /** - * Constructs the internal representation of the Plus service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://www.googleapis.com/'; - $this->servicePath = 'plus/v1/'; - $this->batchPath = 'batch/plus/v1'; - $this->version = 'v1'; - $this->serviceName = 'plus'; - - $this->activities = new Google_Service_Plus_Resource_Activities( - $this, - $this->serviceName, - 'activities', - array( - 'methods' => array( - 'get' => array( - 'path' => 'activities/{activityId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'activityId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'people/{userId}/activities/{collection}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'collection' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'search' => array( - 'path' => 'activities', - 'httpMethod' => 'GET', - 'parameters' => array( - 'query' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->comments = new Google_Service_Plus_Resource_Comments( - $this, - $this->serviceName, - 'comments', - array( - 'methods' => array( - 'get' => array( - 'path' => 'comments/{commentId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'commentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'activities/{activityId}/comments', - 'httpMethod' => 'GET', - 'parameters' => array( - 'activityId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortOrder' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->people = new Google_Service_Plus_Resource_People( - $this, - $this->serviceName, - 'people', - array( - 'methods' => array( - 'get' => array( - 'path' => 'people/{userId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'people/{userId}/people/{collection}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'collection' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'listByActivity' => array( - 'path' => 'activities/{activityId}/people/{collection}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'activityId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'collection' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'search' => array( - 'path' => 'people', - 'httpMethod' => 'GET', - 'parameters' => array( - 'query' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/Acl.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/Acl.php deleted file mode 100644 index 074a97c3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/Acl.php +++ /dev/null @@ -1,56 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - /** - * @param Google_Service_Plus_PlusAclentryResource - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Plus_PlusAclentryResource - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/Activity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/Activity.php deleted file mode 100644 index bcd61f02..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/Activity.php +++ /dev/null @@ -1,236 +0,0 @@ -access = $access; - } - /** - * @return Google_Service_Plus_Acl - */ - public function getAccess() - { - return $this->access; - } - /** - * @param Google_Service_Plus_ActivityActor - */ - public function setActor(Google_Service_Plus_ActivityActor $actor) - { - $this->actor = $actor; - } - /** - * @return Google_Service_Plus_ActivityActor - */ - public function getActor() - { - return $this->actor; - } - public function setAddress($address) - { - $this->address = $address; - } - public function getAddress() - { - return $this->address; - } - public function setAnnotation($annotation) - { - $this->annotation = $annotation; - } - public function getAnnotation() - { - return $this->annotation; - } - public function setCrosspostSource($crosspostSource) - { - $this->crosspostSource = $crosspostSource; - } - public function getCrosspostSource() - { - return $this->crosspostSource; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setGeocode($geocode) - { - $this->geocode = $geocode; - } - public function getGeocode() - { - return $this->geocode; - } - 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; - } - /** - * @param Google_Service_Plus_Place - */ - public function setLocation(Google_Service_Plus_Place $location) - { - $this->location = $location; - } - /** - * @return Google_Service_Plus_Place - */ - public function getLocation() - { - return $this->location; - } - /** - * @param Google_Service_Plus_ActivityObject - */ - public function setObject(Google_Service_Plus_ActivityObject $object) - { - $this->object = $object; - } - /** - * @return Google_Service_Plus_ActivityObject - */ - public function getObject() - { - return $this->object; - } - public function setPlaceId($placeId) - { - $this->placeId = $placeId; - } - public function getPlaceId() - { - return $this->placeId; - } - public function setPlaceName($placeName) - { - $this->placeName = $placeName; - } - public function getPlaceName() - { - return $this->placeName; - } - /** - * @param Google_Service_Plus_ActivityProvider - */ - public function setProvider(Google_Service_Plus_ActivityProvider $provider) - { - $this->provider = $provider; - } - /** - * @return Google_Service_Plus_ActivityProvider - */ - public function getProvider() - { - return $this->provider; - } - public function setPublished($published) - { - $this->published = $published; - } - public function getPublished() - { - return $this->published; - } - public function setRadius($radius) - { - $this->radius = $radius; - } - public function getRadius() - { - return $this->radius; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setUpdated($updated) - { - $this->updated = $updated; - } - public function getUpdated() - { - return $this->updated; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } - public function setVerb($verb) - { - $this->verb = $verb; - } - public function getVerb() - { - return $this->verb; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityActor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityActor.php deleted file mode 100644 index cb0d0686..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityActor.php +++ /dev/null @@ -1,112 +0,0 @@ -clientSpecificActorInfo = $clientSpecificActorInfo; - } - /** - * @return Google_Service_Plus_ActivityActorClientSpecificActorInfo - */ - public function getClientSpecificActorInfo() - { - return $this->clientSpecificActorInfo; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Plus_ActivityActorImage - */ - public function setImage(Google_Service_Plus_ActivityActorImage $image) - { - $this->image = $image; - } - /** - * @return Google_Service_Plus_ActivityActorImage - */ - public function getImage() - { - return $this->image; - } - /** - * @param Google_Service_Plus_ActivityActorName - */ - public function setName(Google_Service_Plus_ActivityActorName $name) - { - $this->name = $name; - } - /** - * @return Google_Service_Plus_ActivityActorName - */ - public function getName() - { - return $this->name; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } - /** - * @param Google_Service_Plus_ActivityActorVerification - */ - public function setVerification(Google_Service_Plus_ActivityActorVerification $verification) - { - $this->verification = $verification; - } - /** - * @return Google_Service_Plus_ActivityActorVerification - */ - public function getVerification() - { - return $this->verification; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityActorClientSpecificActorInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityActorClientSpecificActorInfo.php deleted file mode 100644 index 46eee660..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityActorClientSpecificActorInfo.php +++ /dev/null @@ -1,37 +0,0 @@ -youtubeActorInfo = $youtubeActorInfo; - } - /** - * @return Google_Service_Plus_ActivityActorClientSpecificActorInfoYoutubeActorInfo - */ - public function getYoutubeActorInfo() - { - return $this->youtubeActorInfo; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityActorClientSpecificActorInfoYoutubeActorInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityActorClientSpecificActorInfoYoutubeActorInfo.php deleted file mode 100644 index 4dd475ca..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityActorClientSpecificActorInfoYoutubeActorInfo.php +++ /dev/null @@ -1,30 +0,0 @@ -channelId = $channelId; - } - public function getChannelId() - { - return $this->channelId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityActorImage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityActorImage.php deleted file mode 100644 index 0a8d3ec6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityActorImage.php +++ /dev/null @@ -1,30 +0,0 @@ -url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityActorName.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityActorName.php deleted file mode 100644 index e892bc23..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityActorName.php +++ /dev/null @@ -1,39 +0,0 @@ -familyName = $familyName; - } - public function getFamilyName() - { - return $this->familyName; - } - public function setGivenName($givenName) - { - $this->givenName = $givenName; - } - public function getGivenName() - { - return $this->givenName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityActorVerification.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityActorVerification.php deleted file mode 100644 index 37eb6afd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityActorVerification.php +++ /dev/null @@ -1,30 +0,0 @@ -adHocVerified = $adHocVerified; - } - public function getAdHocVerified() - { - return $this->adHocVerified; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityFeed.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityFeed.php deleted file mode 100644 index 924cdffd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityFeed.php +++ /dev/null @@ -1,110 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Plus_Activity - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Plus_Activity - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextLink($nextLink) - { - $this->nextLink = $nextLink; - } - public function getNextLink() - { - return $this->nextLink; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setUpdated($updated) - { - $this->updated = $updated; - } - public function getUpdated() - { - return $this->updated; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObject.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObject.php deleted file mode 100644 index 487f52e7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObject.php +++ /dev/null @@ -1,147 +0,0 @@ -actor = $actor; - } - /** - * @return Google_Service_Plus_ActivityObjectActor - */ - public function getActor() - { - return $this->actor; - } - /** - * @param Google_Service_Plus_ActivityObjectAttachments - */ - public function setAttachments($attachments) - { - $this->attachments = $attachments; - } - /** - * @return Google_Service_Plus_ActivityObjectAttachments - */ - public function getAttachments() - { - return $this->attachments; - } - public function setContent($content) - { - $this->content = $content; - } - public function getContent() - { - return $this->content; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setObjectType($objectType) - { - $this->objectType = $objectType; - } - public function getObjectType() - { - return $this->objectType; - } - public function setOriginalContent($originalContent) - { - $this->originalContent = $originalContent; - } - public function getOriginalContent() - { - return $this->originalContent; - } - /** - * @param Google_Service_Plus_ActivityObjectPlusoners - */ - public function setPlusoners(Google_Service_Plus_ActivityObjectPlusoners $plusoners) - { - $this->plusoners = $plusoners; - } - /** - * @return Google_Service_Plus_ActivityObjectPlusoners - */ - public function getPlusoners() - { - return $this->plusoners; - } - /** - * @param Google_Service_Plus_ActivityObjectReplies - */ - public function setReplies(Google_Service_Plus_ActivityObjectReplies $replies) - { - $this->replies = $replies; - } - /** - * @return Google_Service_Plus_ActivityObjectReplies - */ - public function getReplies() - { - return $this->replies; - } - /** - * @param Google_Service_Plus_ActivityObjectResharers - */ - public function setResharers(Google_Service_Plus_ActivityObjectResharers $resharers) - { - $this->resharers = $resharers; - } - /** - * @return Google_Service_Plus_ActivityObjectResharers - */ - public function getResharers() - { - return $this->resharers; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectActor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectActor.php deleted file mode 100644 index 928d2cca..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectActor.php +++ /dev/null @@ -1,96 +0,0 @@ -clientSpecificActorInfo = $clientSpecificActorInfo; - } - /** - * @return Google_Service_Plus_ActivityObjectActorClientSpecificActorInfo - */ - public function getClientSpecificActorInfo() - { - return $this->clientSpecificActorInfo; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Plus_ActivityObjectActorImage - */ - public function setImage(Google_Service_Plus_ActivityObjectActorImage $image) - { - $this->image = $image; - } - /** - * @return Google_Service_Plus_ActivityObjectActorImage - */ - public function getImage() - { - return $this->image; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } - /** - * @param Google_Service_Plus_ActivityObjectActorVerification - */ - public function setVerification(Google_Service_Plus_ActivityObjectActorVerification $verification) - { - $this->verification = $verification; - } - /** - * @return Google_Service_Plus_ActivityObjectActorVerification - */ - public function getVerification() - { - return $this->verification; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectActorClientSpecificActorInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectActorClientSpecificActorInfo.php deleted file mode 100644 index eee4f100..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectActorClientSpecificActorInfo.php +++ /dev/null @@ -1,37 +0,0 @@ -youtubeActorInfo = $youtubeActorInfo; - } - /** - * @return Google_Service_Plus_ActivityObjectActorClientSpecificActorInfoYoutubeActorInfo - */ - public function getYoutubeActorInfo() - { - return $this->youtubeActorInfo; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectActorClientSpecificActorInfoYoutubeActorInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectActorClientSpecificActorInfoYoutubeActorInfo.php deleted file mode 100644 index 6a6cb93c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectActorClientSpecificActorInfoYoutubeActorInfo.php +++ /dev/null @@ -1,30 +0,0 @@ -channelId = $channelId; - } - public function getChannelId() - { - return $this->channelId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectActorImage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectActorImage.php deleted file mode 100644 index 51200b9f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectActorImage.php +++ /dev/null @@ -1,30 +0,0 @@ -url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectActorVerification.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectActorVerification.php deleted file mode 100644 index 1e826376..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectActorVerification.php +++ /dev/null @@ -1,30 +0,0 @@ -adHocVerified = $adHocVerified; - } - public function getAdHocVerified() - { - return $this->adHocVerified; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectAttachments.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectAttachments.php deleted file mode 100644 index 24a6c9c4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectAttachments.php +++ /dev/null @@ -1,131 +0,0 @@ -content = $content; - } - public function getContent() - { - return $this->content; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - /** - * @param Google_Service_Plus_ActivityObjectAttachmentsEmbed - */ - public function setEmbed(Google_Service_Plus_ActivityObjectAttachmentsEmbed $embed) - { - $this->embed = $embed; - } - /** - * @return Google_Service_Plus_ActivityObjectAttachmentsEmbed - */ - public function getEmbed() - { - return $this->embed; - } - /** - * @param Google_Service_Plus_ActivityObjectAttachmentsFullImage - */ - public function setFullImage(Google_Service_Plus_ActivityObjectAttachmentsFullImage $fullImage) - { - $this->fullImage = $fullImage; - } - /** - * @return Google_Service_Plus_ActivityObjectAttachmentsFullImage - */ - public function getFullImage() - { - return $this->fullImage; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Plus_ActivityObjectAttachmentsImage - */ - public function setImage(Google_Service_Plus_ActivityObjectAttachmentsImage $image) - { - $this->image = $image; - } - /** - * @return Google_Service_Plus_ActivityObjectAttachmentsImage - */ - public function getImage() - { - return $this->image; - } - public function setObjectType($objectType) - { - $this->objectType = $objectType; - } - public function getObjectType() - { - return $this->objectType; - } - /** - * @param Google_Service_Plus_ActivityObjectAttachmentsThumbnails - */ - public function setThumbnails($thumbnails) - { - $this->thumbnails = $thumbnails; - } - /** - * @return Google_Service_Plus_ActivityObjectAttachmentsThumbnails - */ - public function getThumbnails() - { - return $this->thumbnails; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectAttachmentsEmbed.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectAttachmentsEmbed.php deleted file mode 100644 index 78c29e0d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectAttachmentsEmbed.php +++ /dev/null @@ -1,39 +0,0 @@ -type = $type; - } - public function getType() - { - return $this->type; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectAttachmentsFullImage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectAttachmentsFullImage.php deleted file mode 100644 index 1bea2ec9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectAttachmentsFullImage.php +++ /dev/null @@ -1,57 +0,0 @@ -height = $height; - } - public function getHeight() - { - return $this->height; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } - public function setWidth($width) - { - $this->width = $width; - } - public function getWidth() - { - return $this->width; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectAttachmentsImage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectAttachmentsImage.php deleted file mode 100644 index 5c511dae..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectAttachmentsImage.php +++ /dev/null @@ -1,57 +0,0 @@ -height = $height; - } - public function getHeight() - { - return $this->height; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } - public function setWidth($width) - { - $this->width = $width; - } - public function getWidth() - { - return $this->width; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectAttachmentsThumbnails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectAttachmentsThumbnails.php deleted file mode 100644 index 0561a704..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectAttachmentsThumbnails.php +++ /dev/null @@ -1,55 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - /** - * @param Google_Service_Plus_ActivityObjectAttachmentsThumbnailsImage - */ - public function setImage(Google_Service_Plus_ActivityObjectAttachmentsThumbnailsImage $image) - { - $this->image = $image; - } - /** - * @return Google_Service_Plus_ActivityObjectAttachmentsThumbnailsImage - */ - public function getImage() - { - return $this->image; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectAttachmentsThumbnailsImage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectAttachmentsThumbnailsImage.php deleted file mode 100644 index 20cb3466..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectAttachmentsThumbnailsImage.php +++ /dev/null @@ -1,57 +0,0 @@ -height = $height; - } - public function getHeight() - { - return $this->height; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } - public function setWidth($width) - { - $this->width = $width; - } - public function getWidth() - { - return $this->width; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectPlusoners.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectPlusoners.php deleted file mode 100644 index 1413f2b0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectPlusoners.php +++ /dev/null @@ -1,39 +0,0 @@ -selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setTotalItems($totalItems) - { - $this->totalItems = $totalItems; - } - public function getTotalItems() - { - return $this->totalItems; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectReplies.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectReplies.php deleted file mode 100644 index 755fb6c0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectReplies.php +++ /dev/null @@ -1,39 +0,0 @@ -selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setTotalItems($totalItems) - { - $this->totalItems = $totalItems; - } - public function getTotalItems() - { - return $this->totalItems; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectResharers.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectResharers.php deleted file mode 100644 index 513db6da..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectResharers.php +++ /dev/null @@ -1,39 +0,0 @@ -selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setTotalItems($totalItems) - { - $this->totalItems = $totalItems; - } - public function getTotalItems() - { - return $this->totalItems; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityProvider.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityProvider.php deleted file mode 100644 index c7ef18b6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/ActivityProvider.php +++ /dev/null @@ -1,30 +0,0 @@ -title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/Comment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/Comment.php deleted file mode 100644 index 6138b088..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/Comment.php +++ /dev/null @@ -1,149 +0,0 @@ -actor = $actor; - } - /** - * @return Google_Service_Plus_CommentActor - */ - public function getActor() - { - return $this->actor; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Plus_CommentInReplyTo - */ - public function setInReplyTo($inReplyTo) - { - $this->inReplyTo = $inReplyTo; - } - /** - * @return Google_Service_Plus_CommentInReplyTo - */ - public function getInReplyTo() - { - return $this->inReplyTo; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Plus_CommentObject - */ - public function setObject(Google_Service_Plus_CommentObject $object) - { - $this->object = $object; - } - /** - * @return Google_Service_Plus_CommentObject - */ - public function getObject() - { - return $this->object; - } - /** - * @param Google_Service_Plus_CommentPlusoners - */ - public function setPlusoners(Google_Service_Plus_CommentPlusoners $plusoners) - { - $this->plusoners = $plusoners; - } - /** - * @return Google_Service_Plus_CommentPlusoners - */ - public function getPlusoners() - { - return $this->plusoners; - } - public function setPublished($published) - { - $this->published = $published; - } - public function getPublished() - { - return $this->published; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setUpdated($updated) - { - $this->updated = $updated; - } - public function getUpdated() - { - return $this->updated; - } - public function setVerb($verb) - { - $this->verb = $verb; - } - public function getVerb() - { - return $this->verb; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/CommentActor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/CommentActor.php deleted file mode 100644 index 2b3dd72b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/CommentActor.php +++ /dev/null @@ -1,96 +0,0 @@ -clientSpecificActorInfo = $clientSpecificActorInfo; - } - /** - * @return Google_Service_Plus_CommentActorClientSpecificActorInfo - */ - public function getClientSpecificActorInfo() - { - return $this->clientSpecificActorInfo; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Plus_CommentActorImage - */ - public function setImage(Google_Service_Plus_CommentActorImage $image) - { - $this->image = $image; - } - /** - * @return Google_Service_Plus_CommentActorImage - */ - public function getImage() - { - return $this->image; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } - /** - * @param Google_Service_Plus_CommentActorVerification - */ - public function setVerification(Google_Service_Plus_CommentActorVerification $verification) - { - $this->verification = $verification; - } - /** - * @return Google_Service_Plus_CommentActorVerification - */ - public function getVerification() - { - return $this->verification; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/CommentActorClientSpecificActorInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/CommentActorClientSpecificActorInfo.php deleted file mode 100644 index 880dd34f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/CommentActorClientSpecificActorInfo.php +++ /dev/null @@ -1,37 +0,0 @@ -youtubeActorInfo = $youtubeActorInfo; - } - /** - * @return Google_Service_Plus_CommentActorClientSpecificActorInfoYoutubeActorInfo - */ - public function getYoutubeActorInfo() - { - return $this->youtubeActorInfo; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/CommentActorClientSpecificActorInfoYoutubeActorInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/CommentActorClientSpecificActorInfoYoutubeActorInfo.php deleted file mode 100644 index d3c4c604..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/CommentActorClientSpecificActorInfoYoutubeActorInfo.php +++ /dev/null @@ -1,30 +0,0 @@ -channelId = $channelId; - } - public function getChannelId() - { - return $this->channelId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/CommentActorImage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/CommentActorImage.php deleted file mode 100644 index 3581a593..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/CommentActorImage.php +++ /dev/null @@ -1,30 +0,0 @@ -url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/CommentActorVerification.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/CommentActorVerification.php deleted file mode 100644 index f0549a49..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/CommentActorVerification.php +++ /dev/null @@ -1,30 +0,0 @@ -adHocVerified = $adHocVerified; - } - public function getAdHocVerified() - { - return $this->adHocVerified; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/CommentFeed.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/CommentFeed.php deleted file mode 100644 index 9020f06c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/CommentFeed.php +++ /dev/null @@ -1,101 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Plus_Comment - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Plus_Comment - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextLink($nextLink) - { - $this->nextLink = $nextLink; - } - public function getNextLink() - { - return $this->nextLink; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setUpdated($updated) - { - $this->updated = $updated; - } - public function getUpdated() - { - return $this->updated; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/CommentInReplyTo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/CommentInReplyTo.php deleted file mode 100644 index 8cfdb641..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/CommentInReplyTo.php +++ /dev/null @@ -1,39 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/CommentObject.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/CommentObject.php deleted file mode 100644 index 8f10a919..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/CommentObject.php +++ /dev/null @@ -1,48 +0,0 @@ -content = $content; - } - public function getContent() - { - return $this->content; - } - public function setObjectType($objectType) - { - $this->objectType = $objectType; - } - public function getObjectType() - { - return $this->objectType; - } - public function setOriginalContent($originalContent) - { - $this->originalContent = $originalContent; - } - public function getOriginalContent() - { - return $this->originalContent; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/CommentPlusoners.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/CommentPlusoners.php deleted file mode 100644 index 01deb830..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/CommentPlusoners.php +++ /dev/null @@ -1,30 +0,0 @@ -totalItems = $totalItems; - } - public function getTotalItems() - { - return $this->totalItems; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/PeopleFeed.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/PeopleFeed.php deleted file mode 100644 index 3930ae12..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/PeopleFeed.php +++ /dev/null @@ -1,92 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_Plus_Person - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Plus_Person - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setTotalItems($totalItems) - { - $this->totalItems = $totalItems; - } - public function getTotalItems() - { - return $this->totalItems; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/Person.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/Person.php deleted file mode 100644 index 006f5771..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/Person.php +++ /dev/null @@ -1,348 +0,0 @@ -aboutMe = $aboutMe; - } - public function getAboutMe() - { - return $this->aboutMe; - } - /** - * @param Google_Service_Plus_PersonAgeRange - */ - public function setAgeRange(Google_Service_Plus_PersonAgeRange $ageRange) - { - $this->ageRange = $ageRange; - } - /** - * @return Google_Service_Plus_PersonAgeRange - */ - public function getAgeRange() - { - return $this->ageRange; - } - public function setBirthday($birthday) - { - $this->birthday = $birthday; - } - public function getBirthday() - { - return $this->birthday; - } - public function setBraggingRights($braggingRights) - { - $this->braggingRights = $braggingRights; - } - public function getBraggingRights() - { - return $this->braggingRights; - } - public function setCircledByCount($circledByCount) - { - $this->circledByCount = $circledByCount; - } - public function getCircledByCount() - { - return $this->circledByCount; - } - /** - * @param Google_Service_Plus_PersonCover - */ - public function setCover(Google_Service_Plus_PersonCover $cover) - { - $this->cover = $cover; - } - /** - * @return Google_Service_Plus_PersonCover - */ - public function getCover() - { - return $this->cover; - } - public function setCurrentLocation($currentLocation) - { - $this->currentLocation = $currentLocation; - } - public function getCurrentLocation() - { - return $this->currentLocation; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setDomain($domain) - { - $this->domain = $domain; - } - public function getDomain() - { - return $this->domain; - } - /** - * @param Google_Service_Plus_PersonEmails - */ - public function setEmails($emails) - { - $this->emails = $emails; - } - /** - * @return Google_Service_Plus_PersonEmails - */ - public function getEmails() - { - return $this->emails; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setGender($gender) - { - $this->gender = $gender; - } - public function getGender() - { - return $this->gender; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Plus_PersonImage - */ - public function setImage(Google_Service_Plus_PersonImage $image) - { - $this->image = $image; - } - /** - * @return Google_Service_Plus_PersonImage - */ - public function getImage() - { - return $this->image; - } - public function setIsPlusUser($isPlusUser) - { - $this->isPlusUser = $isPlusUser; - } - public function getIsPlusUser() - { - return $this->isPlusUser; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLanguage($language) - { - $this->language = $language; - } - public function getLanguage() - { - return $this->language; - } - /** - * @param Google_Service_Plus_PersonName - */ - public function setName(Google_Service_Plus_PersonName $name) - { - $this->name = $name; - } - /** - * @return Google_Service_Plus_PersonName - */ - public function getName() - { - return $this->name; - } - public function setNickname($nickname) - { - $this->nickname = $nickname; - } - public function getNickname() - { - return $this->nickname; - } - public function setObjectType($objectType) - { - $this->objectType = $objectType; - } - public function getObjectType() - { - return $this->objectType; - } - public function setOccupation($occupation) - { - $this->occupation = $occupation; - } - public function getOccupation() - { - return $this->occupation; - } - /** - * @param Google_Service_Plus_PersonOrganizations - */ - public function setOrganizations($organizations) - { - $this->organizations = $organizations; - } - /** - * @return Google_Service_Plus_PersonOrganizations - */ - public function getOrganizations() - { - return $this->organizations; - } - /** - * @param Google_Service_Plus_PersonPlacesLived - */ - public function setPlacesLived($placesLived) - { - $this->placesLived = $placesLived; - } - /** - * @return Google_Service_Plus_PersonPlacesLived - */ - public function getPlacesLived() - { - return $this->placesLived; - } - public function setPlusOneCount($plusOneCount) - { - $this->plusOneCount = $plusOneCount; - } - public function getPlusOneCount() - { - return $this->plusOneCount; - } - public function setRelationshipStatus($relationshipStatus) - { - $this->relationshipStatus = $relationshipStatus; - } - public function getRelationshipStatus() - { - return $this->relationshipStatus; - } - public function setSkills($skills) - { - $this->skills = $skills; - } - public function getSkills() - { - return $this->skills; - } - public function setTagline($tagline) - { - $this->tagline = $tagline; - } - public function getTagline() - { - return $this->tagline; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } - /** - * @param Google_Service_Plus_PersonUrls - */ - public function setUrls($urls) - { - $this->urls = $urls; - } - /** - * @return Google_Service_Plus_PersonUrls - */ - public function getUrls() - { - return $this->urls; - } - public function setVerified($verified) - { - $this->verified = $verified; - } - public function getVerified() - { - return $this->verified; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/PersonAgeRange.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/PersonAgeRange.php deleted file mode 100644 index a7f68d22..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/PersonAgeRange.php +++ /dev/null @@ -1,39 +0,0 @@ -max = $max; - } - public function getMax() - { - return $this->max; - } - public function setMin($min) - { - $this->min = $min; - } - public function getMin() - { - return $this->min; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/PersonCover.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/PersonCover.php deleted file mode 100644 index 5031bf44..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/PersonCover.php +++ /dev/null @@ -1,62 +0,0 @@ -coverInfo = $coverInfo; - } - /** - * @return Google_Service_Plus_PersonCoverCoverInfo - */ - public function getCoverInfo() - { - return $this->coverInfo; - } - /** - * @param Google_Service_Plus_PersonCoverCoverPhoto - */ - public function setCoverPhoto(Google_Service_Plus_PersonCoverCoverPhoto $coverPhoto) - { - $this->coverPhoto = $coverPhoto; - } - /** - * @return Google_Service_Plus_PersonCoverCoverPhoto - */ - public function getCoverPhoto() - { - return $this->coverPhoto; - } - public function setLayout($layout) - { - $this->layout = $layout; - } - public function getLayout() - { - return $this->layout; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/PersonCoverCoverInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/PersonCoverCoverInfo.php deleted file mode 100644 index 11071c39..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/PersonCoverCoverInfo.php +++ /dev/null @@ -1,39 +0,0 @@ -leftImageOffset = $leftImageOffset; - } - public function getLeftImageOffset() - { - return $this->leftImageOffset; - } - public function setTopImageOffset($topImageOffset) - { - $this->topImageOffset = $topImageOffset; - } - public function getTopImageOffset() - { - return $this->topImageOffset; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/PersonCoverCoverPhoto.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/PersonCoverCoverPhoto.php deleted file mode 100644 index b0df6d03..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/PersonCoverCoverPhoto.php +++ /dev/null @@ -1,48 +0,0 @@ -height = $height; - } - public function getHeight() - { - return $this->height; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } - public function setWidth($width) - { - $this->width = $width; - } - public function getWidth() - { - return $this->width; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/PersonEmails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/PersonEmails.php deleted file mode 100644 index 815993e5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/PersonEmails.php +++ /dev/null @@ -1,39 +0,0 @@ -type = $type; - } - public function getType() - { - return $this->type; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/PersonImage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/PersonImage.php deleted file mode 100644 index 2beabfcc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/PersonImage.php +++ /dev/null @@ -1,39 +0,0 @@ -isDefault = $isDefault; - } - public function getIsDefault() - { - return $this->isDefault; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/PersonName.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/PersonName.php deleted file mode 100644 index 1a517efe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/PersonName.php +++ /dev/null @@ -1,75 +0,0 @@ -familyName = $familyName; - } - public function getFamilyName() - { - return $this->familyName; - } - public function setFormatted($formatted) - { - $this->formatted = $formatted; - } - public function getFormatted() - { - return $this->formatted; - } - public function setGivenName($givenName) - { - $this->givenName = $givenName; - } - public function getGivenName() - { - return $this->givenName; - } - public function setHonorificPrefix($honorificPrefix) - { - $this->honorificPrefix = $honorificPrefix; - } - public function getHonorificPrefix() - { - return $this->honorificPrefix; - } - public function setHonorificSuffix($honorificSuffix) - { - $this->honorificSuffix = $honorificSuffix; - } - public function getHonorificSuffix() - { - return $this->honorificSuffix; - } - public function setMiddleName($middleName) - { - $this->middleName = $middleName; - } - public function getMiddleName() - { - return $this->middleName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/PersonOrganizations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/PersonOrganizations.php deleted file mode 100644 index 7091b268..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/PersonOrganizations.php +++ /dev/null @@ -1,102 +0,0 @@ -department = $department; - } - public function getDepartment() - { - return $this->department; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setEndDate($endDate) - { - $this->endDate = $endDate; - } - public function getEndDate() - { - return $this->endDate; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPrimary($primary) - { - $this->primary = $primary; - } - public function getPrimary() - { - return $this->primary; - } - public function setStartDate($startDate) - { - $this->startDate = $startDate; - } - public function getStartDate() - { - return $this->startDate; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/PersonPlacesLived.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/PersonPlacesLived.php deleted file mode 100644 index 00ea4203..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/PersonPlacesLived.php +++ /dev/null @@ -1,39 +0,0 @@ -primary = $primary; - } - public function getPrimary() - { - return $this->primary; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/PersonUrls.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/PersonUrls.php deleted file mode 100644 index b68caf19..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/PersonUrls.php +++ /dev/null @@ -1,48 +0,0 @@ -label = $label; - } - public function getLabel() - { - return $this->label; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/Place.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/Place.php deleted file mode 100644 index f8d885c1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/Place.php +++ /dev/null @@ -1,80 +0,0 @@ -address = $address; - } - /** - * @return Google_Service_Plus_PlaceAddress - */ - public function getAddress() - { - return $this->address; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - 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; - } - /** - * @param Google_Service_Plus_PlacePosition - */ - public function setPosition(Google_Service_Plus_PlacePosition $position) - { - $this->position = $position; - } - /** - * @return Google_Service_Plus_PlacePosition - */ - public function getPosition() - { - return $this->position; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/PlaceAddress.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/PlaceAddress.php deleted file mode 100644 index 7c63d5b7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/PlaceAddress.php +++ /dev/null @@ -1,30 +0,0 @@ -formatted = $formatted; - } - public function getFormatted() - { - return $this->formatted; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/PlacePosition.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/PlacePosition.php deleted file mode 100644 index 223cda74..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/PlacePosition.php +++ /dev/null @@ -1,39 +0,0 @@ -latitude = $latitude; - } - public function getLatitude() - { - return $this->latitude; - } - public function setLongitude($longitude) - { - $this->longitude = $longitude; - } - public function getLongitude() - { - return $this->longitude; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/PlusAclentryResource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/PlusAclentryResource.php deleted file mode 100644 index 4b9d388d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/PlusAclentryResource.php +++ /dev/null @@ -1,48 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/Resource/Activities.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/Resource/Activities.php deleted file mode 100644 index 2e0dcd0e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/Resource/Activities.php +++ /dev/null @@ -1,90 +0,0 @@ - - * $plusService = new Google_Service_Plus(...); - * $activities = $plusService->activities; - * - */ -class Google_Service_Plus_Resource_Activities extends Google_Service_Resource -{ - /** - * Shut down. See https://developers.google.com/+/api-shutdown for more details. - * (activities.get) - * - * @param string $activityId The ID of the activity to get. - * @param array $optParams Optional parameters. - * @return Google_Service_Plus_Activity - */ - public function get($activityId, $optParams = array()) - { - $params = array('activityId' => $activityId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Plus_Activity"); - } - /** - * Shut down. See https://developers.google.com/+/api-shutdown for more details. - * (activities.listActivities) - * - * @param string $userId The ID of the user to get activities for. The special - * value "me" can be used to indicate the authenticated user. - * @param string $collection The collection of activities to list. - * @param array $optParams Optional parameters. - * - * @opt_param string maxResults The maximum number of activities to include in - * the response, which is used for paging. For any response, the actual number - * returned might be less than the specified maxResults. - * @opt_param string pageToken The continuation token, which is used to page - * through large result sets. To get the next page of results, set this - * parameter to the value of "nextPageToken" from the previous response. - * @return Google_Service_Plus_ActivityFeed - */ - public function listActivities($userId, $collection, $optParams = array()) - { - $params = array('userId' => $userId, 'collection' => $collection); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Plus_ActivityFeed"); - } - /** - * Shut down. See https://developers.google.com/+/api-shutdown for more details. - * (activities.search) - * - * @param string $query Full-text search query string. - * @param array $optParams Optional parameters. - * - * @opt_param string language Specify the preferred language to search with. See - * search language codes for available values. - * @opt_param string maxResults The maximum number of activities to include in - * the response, which is used for paging. For any response, the actual number - * returned might be less than the specified maxResults. - * @opt_param string orderBy Specifies how to order search results. - * @opt_param string pageToken The continuation token, which is used to page - * through large result sets. To get the next page of results, set this - * parameter to the value of "nextPageToken" from the previous response. This - * token can be of any length. - * @return Google_Service_Plus_ActivityFeed - */ - public function search($query, $optParams = array()) - { - $params = array('query' => $query); - $params = array_merge($params, $optParams); - return $this->call('search', array($params), "Google_Service_Plus_ActivityFeed"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/Resource/Comments.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/Resource/Comments.php deleted file mode 100644 index 7b8b9b15..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/Resource/Comments.php +++ /dev/null @@ -1,64 +0,0 @@ - - * $plusService = new Google_Service_Plus(...); - * $comments = $plusService->comments; - * - */ -class Google_Service_Plus_Resource_Comments extends Google_Service_Resource -{ - /** - * Shut down. See https://developers.google.com/+/api-shutdown for more details. - * (comments.get) - * - * @param string $commentId The ID of the comment to get. - * @param array $optParams Optional parameters. - * @return Google_Service_Plus_Comment - */ - public function get($commentId, $optParams = array()) - { - $params = array('commentId' => $commentId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Plus_Comment"); - } - /** - * Shut down. See https://developers.google.com/+/api-shutdown for more details. - * (comments.listComments) - * - * @param string $activityId The ID of the activity to get comments for. - * @param array $optParams Optional parameters. - * - * @opt_param string maxResults The maximum number of comments to include in the - * response, which is used for paging. For any response, the actual number - * returned might be less than the specified maxResults. - * @opt_param string pageToken The continuation token, which is used to page - * through large result sets. To get the next page of results, set this - * parameter to the value of "nextPageToken" from the previous response. - * @opt_param string sortOrder The order in which to sort the list of comments. - * @return Google_Service_Plus_CommentFeed - */ - public function listComments($activityId, $optParams = array()) - { - $params = array('activityId' => $activityId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Plus_CommentFeed"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/Resource/People.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/Resource/People.php deleted file mode 100644 index f43c0184..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Plus/Resource/People.php +++ /dev/null @@ -1,115 +0,0 @@ - - * $plusService = new Google_Service_Plus(...); - * $people = $plusService->people; - * - */ -class Google_Service_Plus_Resource_People extends Google_Service_Resource -{ - /** - * Get a person's profile. If your app uses scope - * https://www.googleapis.com/auth/plus.login, this method is guaranteed to - * return ageRange and language. (people.get) - * - * @param string $userId The ID of the person to get the profile for. The - * special value "me" can be used to indicate the authenticated user. - * @param array $optParams Optional parameters. - * @return Google_Service_Plus_Person - */ - public function get($userId, $optParams = array()) - { - $params = array('userId' => $userId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Plus_Person"); - } - /** - * List all of the people in the specified collection. (people.listPeople) - * - * @param string $userId Get the collection of people for the person identified. - * Use "me" to indicate the authenticated user. - * @param string $collection The collection of people to list. - * @param array $optParams Optional parameters. - * - * @opt_param string maxResults The maximum number of people to include in the - * response, which is used for paging. For any response, the actual number - * returned might be less than the specified maxResults. - * @opt_param string orderBy The order to return people in. - * @opt_param string pageToken The continuation token, which is used to page - * through large result sets. To get the next page of results, set this - * parameter to the value of "nextPageToken" from the previous response. - * @return Google_Service_Plus_PeopleFeed - */ - public function listPeople($userId, $collection, $optParams = array()) - { - $params = array('userId' => $userId, 'collection' => $collection); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Plus_PeopleFeed"); - } - /** - * Shut down. See https://developers.google.com/+/api-shutdown for more details. - * (people.listByActivity) - * - * @param string $activityId The ID of the activity to get the list of people - * for. - * @param string $collection The collection of people to list. - * @param array $optParams Optional parameters. - * - * @opt_param string maxResults The maximum number of people to include in the - * response, which is used for paging. For any response, the actual number - * returned might be less than the specified maxResults. - * @opt_param string pageToken The continuation token, which is used to page - * through large result sets. To get the next page of results, set this - * parameter to the value of "nextPageToken" from the previous response. - * @return Google_Service_Plus_PeopleFeed - */ - public function listByActivity($activityId, $collection, $optParams = array()) - { - $params = array('activityId' => $activityId, 'collection' => $collection); - $params = array_merge($params, $optParams); - return $this->call('listByActivity', array($params), "Google_Service_Plus_PeopleFeed"); - } - /** - * Shut down. See https://developers.google.com/+/api-shutdown for more details. - * (people.search) - * - * @param string $query Specify a query string for full text search of public - * text in all profiles. - * @param array $optParams Optional parameters. - * - * @opt_param string language Specify the preferred language to search with. See - * search language codes for available values. - * @opt_param string maxResults The maximum number of people to include in the - * response, which is used for paging. For any response, the actual number - * returned might be less than the specified maxResults. - * @opt_param string pageToken The continuation token, which is used to page - * through large result sets. To get the next page of results, set this - * parameter to the value of "nextPageToken" from the previous response. This - * token can be of any length. - * @return Google_Service_Plus_PeopleFeed - */ - public function search($query, $optParams = array()) - { - $params = array('query' => $query); - $params = array_merge($params, $optParams); - return $this->call('search', array($params), "Google_Service_Plus_PeopleFeed"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains.php deleted file mode 100644 index 274632cb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains.php +++ /dev/null @@ -1,317 +0,0 @@ - - * Builds on top of the Google+ platform for Google Apps Domains.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_PlusDomains extends Google_Service -{ - /** View your circles and the people and pages in them. */ - const PLUS_CIRCLES_READ = - "https://www.googleapis.com/auth/plus.circles.read"; - /** View your basic profile info, including your age range and language. */ - const PLUS_LOGIN = - "https://www.googleapis.com/auth/plus.login"; - /** Associate you with your personal info on Google. */ - const PLUS_ME = - "https://www.googleapis.com/auth/plus.me"; - /** Send your photos and videos to Google+. */ - const PLUS_MEDIA_UPLOAD = - "https://www.googleapis.com/auth/plus.media.upload"; - /** View your own Google+ profile and profiles visible to you. */ - const PLUS_PROFILES_READ = - "https://www.googleapis.com/auth/plus.profiles.read"; - /** View your Google+ posts, comments, and stream. */ - const PLUS_STREAM_READ = - "https://www.googleapis.com/auth/plus.stream.read"; - /** View your email address. */ - const USERINFO_EMAIL = - "https://www.googleapis.com/auth/userinfo.email"; - /** See your personal info, including any personal info you've made publicly available. */ - const USERINFO_PROFILE = - "https://www.googleapis.com/auth/userinfo.profile"; - - public $activities; - public $audiences; - public $circles; - public $comments; - public $media; - public $people; - - /** - * Constructs the internal representation of the PlusDomains service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://www.googleapis.com/'; - $this->servicePath = 'plusDomains/v1/'; - $this->batchPath = 'batch/plusDomains/v1'; - $this->version = 'v1'; - $this->serviceName = 'plusDomains'; - - $this->activities = new Google_Service_PlusDomains_Resource_Activities( - $this, - $this->serviceName, - 'activities', - array( - 'methods' => array( - 'get' => array( - 'path' => 'activities/{activityId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'activityId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'people/{userId}/activities/{collection}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'collection' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->audiences = new Google_Service_PlusDomains_Resource_Audiences( - $this, - $this->serviceName, - 'audiences', - array( - 'methods' => array( - 'list' => array( - 'path' => 'people/{userId}/audiences', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->circles = new Google_Service_PlusDomains_Resource_Circles( - $this, - $this->serviceName, - 'circles', - array( - 'methods' => array( - 'list' => array( - 'path' => 'people/{userId}/circles', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->comments = new Google_Service_PlusDomains_Resource_Comments( - $this, - $this->serviceName, - 'comments', - array( - 'methods' => array( - 'get' => array( - 'path' => 'comments/{commentId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'commentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'activities/{activityId}/comments', - 'httpMethod' => 'GET', - 'parameters' => array( - 'activityId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sortOrder' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->media = new Google_Service_PlusDomains_Resource_Media( - $this, - $this->serviceName, - 'media', - array( - 'methods' => array( - 'insert' => array( - 'path' => 'people/{userId}/media/{collection}', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'collection' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->people = new Google_Service_PlusDomains_Resource_People( - $this, - $this->serviceName, - 'people', - array( - 'methods' => array( - 'get' => array( - 'path' => 'people/{userId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'people/{userId}/people/{collection}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'collection' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'listByActivity' => array( - 'path' => 'activities/{activityId}/people/{collection}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'activityId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'collection' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/Acl.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/Acl.php deleted file mode 100644 index 4d2cd889..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/Acl.php +++ /dev/null @@ -1,65 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDomainRestricted($domainRestricted) - { - $this->domainRestricted = $domainRestricted; - } - public function getDomainRestricted() - { - return $this->domainRestricted; - } - /** - * @param Google_Service_PlusDomains_PlusDomainsAclentryResource - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_PlusDomains_PlusDomainsAclentryResource - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/Activity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/Activity.php deleted file mode 100644 index b463c785..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/Activity.php +++ /dev/null @@ -1,236 +0,0 @@ -access = $access; - } - /** - * @return Google_Service_PlusDomains_Acl - */ - public function getAccess() - { - return $this->access; - } - /** - * @param Google_Service_PlusDomains_ActivityActor - */ - public function setActor(Google_Service_PlusDomains_ActivityActor $actor) - { - $this->actor = $actor; - } - /** - * @return Google_Service_PlusDomains_ActivityActor - */ - public function getActor() - { - return $this->actor; - } - public function setAddress($address) - { - $this->address = $address; - } - public function getAddress() - { - return $this->address; - } - public function setAnnotation($annotation) - { - $this->annotation = $annotation; - } - public function getAnnotation() - { - return $this->annotation; - } - public function setCrosspostSource($crosspostSource) - { - $this->crosspostSource = $crosspostSource; - } - public function getCrosspostSource() - { - return $this->crosspostSource; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setGeocode($geocode) - { - $this->geocode = $geocode; - } - public function getGeocode() - { - return $this->geocode; - } - 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; - } - /** - * @param Google_Service_PlusDomains_Place - */ - public function setLocation(Google_Service_PlusDomains_Place $location) - { - $this->location = $location; - } - /** - * @return Google_Service_PlusDomains_Place - */ - public function getLocation() - { - return $this->location; - } - /** - * @param Google_Service_PlusDomains_ActivityObject - */ - public function setObject(Google_Service_PlusDomains_ActivityObject $object) - { - $this->object = $object; - } - /** - * @return Google_Service_PlusDomains_ActivityObject - */ - public function getObject() - { - return $this->object; - } - public function setPlaceId($placeId) - { - $this->placeId = $placeId; - } - public function getPlaceId() - { - return $this->placeId; - } - public function setPlaceName($placeName) - { - $this->placeName = $placeName; - } - public function getPlaceName() - { - return $this->placeName; - } - /** - * @param Google_Service_PlusDomains_ActivityProvider - */ - public function setProvider(Google_Service_PlusDomains_ActivityProvider $provider) - { - $this->provider = $provider; - } - /** - * @return Google_Service_PlusDomains_ActivityProvider - */ - public function getProvider() - { - return $this->provider; - } - public function setPublished($published) - { - $this->published = $published; - } - public function getPublished() - { - return $this->published; - } - public function setRadius($radius) - { - $this->radius = $radius; - } - public function getRadius() - { - return $this->radius; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setUpdated($updated) - { - $this->updated = $updated; - } - public function getUpdated() - { - return $this->updated; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } - public function setVerb($verb) - { - $this->verb = $verb; - } - public function getVerb() - { - return $this->verb; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityActor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityActor.php deleted file mode 100644 index 8b5c087b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityActor.php +++ /dev/null @@ -1,112 +0,0 @@ -clientSpecificActorInfo = $clientSpecificActorInfo; - } - /** - * @return Google_Service_PlusDomains_ActivityActorClientSpecificActorInfo - */ - public function getClientSpecificActorInfo() - { - return $this->clientSpecificActorInfo; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_PlusDomains_ActivityActorImage - */ - public function setImage(Google_Service_PlusDomains_ActivityActorImage $image) - { - $this->image = $image; - } - /** - * @return Google_Service_PlusDomains_ActivityActorImage - */ - public function getImage() - { - return $this->image; - } - /** - * @param Google_Service_PlusDomains_ActivityActorName - */ - public function setName(Google_Service_PlusDomains_ActivityActorName $name) - { - $this->name = $name; - } - /** - * @return Google_Service_PlusDomains_ActivityActorName - */ - public function getName() - { - return $this->name; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } - /** - * @param Google_Service_PlusDomains_ActivityActorVerification - */ - public function setVerification(Google_Service_PlusDomains_ActivityActorVerification $verification) - { - $this->verification = $verification; - } - /** - * @return Google_Service_PlusDomains_ActivityActorVerification - */ - public function getVerification() - { - return $this->verification; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityActorClientSpecificActorInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityActorClientSpecificActorInfo.php deleted file mode 100644 index 0369567e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityActorClientSpecificActorInfo.php +++ /dev/null @@ -1,37 +0,0 @@ -youtubeActorInfo = $youtubeActorInfo; - } - /** - * @return Google_Service_PlusDomains_ActivityActorClientSpecificActorInfoYoutubeActorInfo - */ - public function getYoutubeActorInfo() - { - return $this->youtubeActorInfo; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityActorClientSpecificActorInfoYoutubeActorInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityActorClientSpecificActorInfoYoutubeActorInfo.php deleted file mode 100644 index b62c690c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityActorClientSpecificActorInfoYoutubeActorInfo.php +++ /dev/null @@ -1,30 +0,0 @@ -channelId = $channelId; - } - public function getChannelId() - { - return $this->channelId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityActorImage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityActorImage.php deleted file mode 100644 index 3c2fb499..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityActorImage.php +++ /dev/null @@ -1,30 +0,0 @@ -url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityActorName.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityActorName.php deleted file mode 100644 index a6b40bde..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityActorName.php +++ /dev/null @@ -1,39 +0,0 @@ -familyName = $familyName; - } - public function getFamilyName() - { - return $this->familyName; - } - public function setGivenName($givenName) - { - $this->givenName = $givenName; - } - public function getGivenName() - { - return $this->givenName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityActorVerification.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityActorVerification.php deleted file mode 100644 index 76abb720..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityActorVerification.php +++ /dev/null @@ -1,30 +0,0 @@ -adHocVerified = $adHocVerified; - } - public function getAdHocVerified() - { - return $this->adHocVerified; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityFeed.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityFeed.php deleted file mode 100644 index 21af04a7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityFeed.php +++ /dev/null @@ -1,110 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_PlusDomains_Activity - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_PlusDomains_Activity - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextLink($nextLink) - { - $this->nextLink = $nextLink; - } - public function getNextLink() - { - return $this->nextLink; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setUpdated($updated) - { - $this->updated = $updated; - } - public function getUpdated() - { - return $this->updated; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityObject.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityObject.php deleted file mode 100644 index b0a58a41..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityObject.php +++ /dev/null @@ -1,163 +0,0 @@ -actor = $actor; - } - /** - * @return Google_Service_PlusDomains_ActivityObjectActor - */ - public function getActor() - { - return $this->actor; - } - /** - * @param Google_Service_PlusDomains_ActivityObjectAttachments - */ - public function setAttachments($attachments) - { - $this->attachments = $attachments; - } - /** - * @return Google_Service_PlusDomains_ActivityObjectAttachments - */ - public function getAttachments() - { - return $this->attachments; - } - public function setContent($content) - { - $this->content = $content; - } - public function getContent() - { - return $this->content; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setObjectType($objectType) - { - $this->objectType = $objectType; - } - public function getObjectType() - { - return $this->objectType; - } - public function setOriginalContent($originalContent) - { - $this->originalContent = $originalContent; - } - public function getOriginalContent() - { - return $this->originalContent; - } - /** - * @param Google_Service_PlusDomains_ActivityObjectPlusoners - */ - public function setPlusoners(Google_Service_PlusDomains_ActivityObjectPlusoners $plusoners) - { - $this->plusoners = $plusoners; - } - /** - * @return Google_Service_PlusDomains_ActivityObjectPlusoners - */ - public function getPlusoners() - { - return $this->plusoners; - } - /** - * @param Google_Service_PlusDomains_ActivityObjectReplies - */ - public function setReplies(Google_Service_PlusDomains_ActivityObjectReplies $replies) - { - $this->replies = $replies; - } - /** - * @return Google_Service_PlusDomains_ActivityObjectReplies - */ - public function getReplies() - { - return $this->replies; - } - /** - * @param Google_Service_PlusDomains_ActivityObjectResharers - */ - public function setResharers(Google_Service_PlusDomains_ActivityObjectResharers $resharers) - { - $this->resharers = $resharers; - } - /** - * @return Google_Service_PlusDomains_ActivityObjectResharers - */ - public function getResharers() - { - return $this->resharers; - } - /** - * @param Google_Service_PlusDomains_ActivityObjectStatusForViewer - */ - public function setStatusForViewer(Google_Service_PlusDomains_ActivityObjectStatusForViewer $statusForViewer) - { - $this->statusForViewer = $statusForViewer; - } - /** - * @return Google_Service_PlusDomains_ActivityObjectStatusForViewer - */ - public function getStatusForViewer() - { - return $this->statusForViewer; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityObjectActor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityObjectActor.php deleted file mode 100644 index ed853eff..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityObjectActor.php +++ /dev/null @@ -1,96 +0,0 @@ -clientSpecificActorInfo = $clientSpecificActorInfo; - } - /** - * @return Google_Service_PlusDomains_ActivityObjectActorClientSpecificActorInfo - */ - public function getClientSpecificActorInfo() - { - return $this->clientSpecificActorInfo; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_PlusDomains_ActivityObjectActorImage - */ - public function setImage(Google_Service_PlusDomains_ActivityObjectActorImage $image) - { - $this->image = $image; - } - /** - * @return Google_Service_PlusDomains_ActivityObjectActorImage - */ - public function getImage() - { - return $this->image; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } - /** - * @param Google_Service_PlusDomains_ActivityObjectActorVerification - */ - public function setVerification(Google_Service_PlusDomains_ActivityObjectActorVerification $verification) - { - $this->verification = $verification; - } - /** - * @return Google_Service_PlusDomains_ActivityObjectActorVerification - */ - public function getVerification() - { - return $this->verification; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityObjectActorClientSpecificActorInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityObjectActorClientSpecificActorInfo.php deleted file mode 100644 index e05441bf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityObjectActorClientSpecificActorInfo.php +++ /dev/null @@ -1,37 +0,0 @@ -youtubeActorInfo = $youtubeActorInfo; - } - /** - * @return Google_Service_PlusDomains_ActivityObjectActorClientSpecificActorInfoYoutubeActorInfo - */ - public function getYoutubeActorInfo() - { - return $this->youtubeActorInfo; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityObjectActorClientSpecificActorInfoYoutubeActorInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityObjectActorClientSpecificActorInfoYoutubeActorInfo.php deleted file mode 100644 index ff87697e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityObjectActorClientSpecificActorInfoYoutubeActorInfo.php +++ /dev/null @@ -1,30 +0,0 @@ -channelId = $channelId; - } - public function getChannelId() - { - return $this->channelId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityObjectActorImage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityObjectActorImage.php deleted file mode 100644 index 42c88528..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityObjectActorImage.php +++ /dev/null @@ -1,30 +0,0 @@ -url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityObjectActorVerification.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityObjectActorVerification.php deleted file mode 100644 index c9d55dda..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityObjectActorVerification.php +++ /dev/null @@ -1,30 +0,0 @@ -adHocVerified = $adHocVerified; - } - public function getAdHocVerified() - { - return $this->adHocVerified; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityObjectAttachments.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityObjectAttachments.php deleted file mode 100644 index 23ac5556..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityObjectAttachments.php +++ /dev/null @@ -1,147 +0,0 @@ -content = $content; - } - public function getContent() - { - return $this->content; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - /** - * @param Google_Service_PlusDomains_ActivityObjectAttachmentsEmbed - */ - public function setEmbed(Google_Service_PlusDomains_ActivityObjectAttachmentsEmbed $embed) - { - $this->embed = $embed; - } - /** - * @return Google_Service_PlusDomains_ActivityObjectAttachmentsEmbed - */ - public function getEmbed() - { - return $this->embed; - } - /** - * @param Google_Service_PlusDomains_ActivityObjectAttachmentsFullImage - */ - public function setFullImage(Google_Service_PlusDomains_ActivityObjectAttachmentsFullImage $fullImage) - { - $this->fullImage = $fullImage; - } - /** - * @return Google_Service_PlusDomains_ActivityObjectAttachmentsFullImage - */ - public function getFullImage() - { - return $this->fullImage; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_PlusDomains_ActivityObjectAttachmentsImage - */ - public function setImage(Google_Service_PlusDomains_ActivityObjectAttachmentsImage $image) - { - $this->image = $image; - } - /** - * @return Google_Service_PlusDomains_ActivityObjectAttachmentsImage - */ - public function getImage() - { - return $this->image; - } - public function setObjectType($objectType) - { - $this->objectType = $objectType; - } - public function getObjectType() - { - return $this->objectType; - } - /** - * @param Google_Service_PlusDomains_ActivityObjectAttachmentsPreviewThumbnails - */ - public function setPreviewThumbnails($previewThumbnails) - { - $this->previewThumbnails = $previewThumbnails; - } - /** - * @return Google_Service_PlusDomains_ActivityObjectAttachmentsPreviewThumbnails - */ - public function getPreviewThumbnails() - { - return $this->previewThumbnails; - } - /** - * @param Google_Service_PlusDomains_ActivityObjectAttachmentsThumbnails - */ - public function setThumbnails($thumbnails) - { - $this->thumbnails = $thumbnails; - } - /** - * @return Google_Service_PlusDomains_ActivityObjectAttachmentsThumbnails - */ - public function getThumbnails() - { - return $this->thumbnails; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityObjectAttachmentsEmbed.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityObjectAttachmentsEmbed.php deleted file mode 100644 index d61c75a4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityObjectAttachmentsEmbed.php +++ /dev/null @@ -1,39 +0,0 @@ -type = $type; - } - public function getType() - { - return $this->type; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityObjectAttachmentsFullImage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityObjectAttachmentsFullImage.php deleted file mode 100644 index 89780eb8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityObjectAttachmentsFullImage.php +++ /dev/null @@ -1,57 +0,0 @@ -height = $height; - } - public function getHeight() - { - return $this->height; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } - public function setWidth($width) - { - $this->width = $width; - } - public function getWidth() - { - return $this->width; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityObjectAttachmentsImage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityObjectAttachmentsImage.php deleted file mode 100644 index 483917df..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityObjectAttachmentsImage.php +++ /dev/null @@ -1,57 +0,0 @@ -height = $height; - } - public function getHeight() - { - return $this->height; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } - public function setWidth($width) - { - $this->width = $width; - } - public function getWidth() - { - return $this->width; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityObjectAttachmentsPreviewThumbnails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityObjectAttachmentsPreviewThumbnails.php deleted file mode 100644 index 1b5782ef..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityObjectAttachmentsPreviewThumbnails.php +++ /dev/null @@ -1,30 +0,0 @@ -url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityObjectAttachmentsThumbnails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityObjectAttachmentsThumbnails.php deleted file mode 100644 index dafb4c20..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityObjectAttachmentsThumbnails.php +++ /dev/null @@ -1,55 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - /** - * @param Google_Service_PlusDomains_ActivityObjectAttachmentsThumbnailsImage - */ - public function setImage(Google_Service_PlusDomains_ActivityObjectAttachmentsThumbnailsImage $image) - { - $this->image = $image; - } - /** - * @return Google_Service_PlusDomains_ActivityObjectAttachmentsThumbnailsImage - */ - public function getImage() - { - return $this->image; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityObjectAttachmentsThumbnailsImage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityObjectAttachmentsThumbnailsImage.php deleted file mode 100644 index b7dbfa22..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityObjectAttachmentsThumbnailsImage.php +++ /dev/null @@ -1,57 +0,0 @@ -height = $height; - } - public function getHeight() - { - return $this->height; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } - public function setWidth($width) - { - $this->width = $width; - } - public function getWidth() - { - return $this->width; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityObjectPlusoners.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityObjectPlusoners.php deleted file mode 100644 index fe34576b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityObjectPlusoners.php +++ /dev/null @@ -1,39 +0,0 @@ -selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setTotalItems($totalItems) - { - $this->totalItems = $totalItems; - } - public function getTotalItems() - { - return $this->totalItems; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityObjectReplies.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityObjectReplies.php deleted file mode 100644 index ca6c6c4c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityObjectReplies.php +++ /dev/null @@ -1,39 +0,0 @@ -selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setTotalItems($totalItems) - { - $this->totalItems = $totalItems; - } - public function getTotalItems() - { - return $this->totalItems; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityObjectResharers.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityObjectResharers.php deleted file mode 100644 index 1f701237..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityObjectResharers.php +++ /dev/null @@ -1,39 +0,0 @@ -selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setTotalItems($totalItems) - { - $this->totalItems = $totalItems; - } - public function getTotalItems() - { - return $this->totalItems; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityObjectStatusForViewer.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityObjectStatusForViewer.php deleted file mode 100644 index 09321b44..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityObjectStatusForViewer.php +++ /dev/null @@ -1,66 +0,0 @@ -canComment = $canComment; - } - public function getCanComment() - { - return $this->canComment; - } - public function setCanPlusone($canPlusone) - { - $this->canPlusone = $canPlusone; - } - public function getCanPlusone() - { - return $this->canPlusone; - } - public function setCanUpdate($canUpdate) - { - $this->canUpdate = $canUpdate; - } - public function getCanUpdate() - { - return $this->canUpdate; - } - public function setIsPlusOned($isPlusOned) - { - $this->isPlusOned = $isPlusOned; - } - public function getIsPlusOned() - { - return $this->isPlusOned; - } - public function setResharingDisabled($resharingDisabled) - { - $this->resharingDisabled = $resharingDisabled; - } - public function getResharingDisabled() - { - return $this->resharingDisabled; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityProvider.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityProvider.php deleted file mode 100644 index c0dd5c83..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityProvider.php +++ /dev/null @@ -1,30 +0,0 @@ -title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/Audience.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/Audience.php deleted file mode 100644 index 2ac5f287..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/Audience.php +++ /dev/null @@ -1,73 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_PlusDomains_PlusDomainsAclentryResource - */ - public function setItem(Google_Service_PlusDomains_PlusDomainsAclentryResource $item) - { - $this->item = $item; - } - /** - * @return Google_Service_PlusDomains_PlusDomainsAclentryResource - */ - public function getItem() - { - return $this->item; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setMemberCount($memberCount) - { - $this->memberCount = $memberCount; - } - public function getMemberCount() - { - return $this->memberCount; - } - public function setVisibility($visibility) - { - $this->visibility = $visibility; - } - public function getVisibility() - { - return $this->visibility; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/AudiencesFeed.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/AudiencesFeed.php deleted file mode 100644 index a7b1c9ca..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/AudiencesFeed.php +++ /dev/null @@ -1,74 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_PlusDomains_Audience - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_PlusDomains_Audience - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setTotalItems($totalItems) - { - $this->totalItems = $totalItems; - } - public function getTotalItems() - { - return $this->totalItems; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/Circle.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/Circle.php deleted file mode 100644 index 8b3a83c4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/Circle.php +++ /dev/null @@ -1,91 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - 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; - } - /** - * @param Google_Service_PlusDomains_CirclePeople - */ - public function setPeople(Google_Service_PlusDomains_CirclePeople $people) - { - $this->people = $people; - } - /** - * @return Google_Service_PlusDomains_CirclePeople - */ - public function getPeople() - { - return $this->people; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/CircleFeed.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/CircleFeed.php deleted file mode 100644 index 404a0877..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/CircleFeed.php +++ /dev/null @@ -1,101 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_PlusDomains_Circle - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_PlusDomains_Circle - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextLink($nextLink) - { - $this->nextLink = $nextLink; - } - public function getNextLink() - { - return $this->nextLink; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setTotalItems($totalItems) - { - $this->totalItems = $totalItems; - } - public function getTotalItems() - { - return $this->totalItems; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/CirclePeople.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/CirclePeople.php deleted file mode 100644 index 1cd14ece..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/CirclePeople.php +++ /dev/null @@ -1,30 +0,0 @@ -totalItems = $totalItems; - } - public function getTotalItems() - { - return $this->totalItems; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/Comment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/Comment.php deleted file mode 100644 index 0a4b0f4f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/Comment.php +++ /dev/null @@ -1,149 +0,0 @@ -actor = $actor; - } - /** - * @return Google_Service_PlusDomains_CommentActor - */ - public function getActor() - { - return $this->actor; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_PlusDomains_CommentInReplyTo - */ - public function setInReplyTo($inReplyTo) - { - $this->inReplyTo = $inReplyTo; - } - /** - * @return Google_Service_PlusDomains_CommentInReplyTo - */ - public function getInReplyTo() - { - return $this->inReplyTo; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_PlusDomains_CommentObject - */ - public function setObject(Google_Service_PlusDomains_CommentObject $object) - { - $this->object = $object; - } - /** - * @return Google_Service_PlusDomains_CommentObject - */ - public function getObject() - { - return $this->object; - } - /** - * @param Google_Service_PlusDomains_CommentPlusoners - */ - public function setPlusoners(Google_Service_PlusDomains_CommentPlusoners $plusoners) - { - $this->plusoners = $plusoners; - } - /** - * @return Google_Service_PlusDomains_CommentPlusoners - */ - public function getPlusoners() - { - return $this->plusoners; - } - public function setPublished($published) - { - $this->published = $published; - } - public function getPublished() - { - return $this->published; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setUpdated($updated) - { - $this->updated = $updated; - } - public function getUpdated() - { - return $this->updated; - } - public function setVerb($verb) - { - $this->verb = $verb; - } - public function getVerb() - { - return $this->verb; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/CommentActor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/CommentActor.php deleted file mode 100644 index 48e565c6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/CommentActor.php +++ /dev/null @@ -1,96 +0,0 @@ -clientSpecificActorInfo = $clientSpecificActorInfo; - } - /** - * @return Google_Service_PlusDomains_CommentActorClientSpecificActorInfo - */ - public function getClientSpecificActorInfo() - { - return $this->clientSpecificActorInfo; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_PlusDomains_CommentActorImage - */ - public function setImage(Google_Service_PlusDomains_CommentActorImage $image) - { - $this->image = $image; - } - /** - * @return Google_Service_PlusDomains_CommentActorImage - */ - public function getImage() - { - return $this->image; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } - /** - * @param Google_Service_PlusDomains_CommentActorVerification - */ - public function setVerification(Google_Service_PlusDomains_CommentActorVerification $verification) - { - $this->verification = $verification; - } - /** - * @return Google_Service_PlusDomains_CommentActorVerification - */ - public function getVerification() - { - return $this->verification; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/CommentActorClientSpecificActorInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/CommentActorClientSpecificActorInfo.php deleted file mode 100644 index c99d7623..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/CommentActorClientSpecificActorInfo.php +++ /dev/null @@ -1,37 +0,0 @@ -youtubeActorInfo = $youtubeActorInfo; - } - /** - * @return Google_Service_PlusDomains_CommentActorClientSpecificActorInfoYoutubeActorInfo - */ - public function getYoutubeActorInfo() - { - return $this->youtubeActorInfo; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/CommentActorClientSpecificActorInfoYoutubeActorInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/CommentActorClientSpecificActorInfoYoutubeActorInfo.php deleted file mode 100644 index 63f73097..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/CommentActorClientSpecificActorInfoYoutubeActorInfo.php +++ /dev/null @@ -1,30 +0,0 @@ -channelId = $channelId; - } - public function getChannelId() - { - return $this->channelId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/CommentActorImage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/CommentActorImage.php deleted file mode 100644 index 4e012408..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/CommentActorImage.php +++ /dev/null @@ -1,30 +0,0 @@ -url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/CommentActorVerification.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/CommentActorVerification.php deleted file mode 100644 index fb217abe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/CommentActorVerification.php +++ /dev/null @@ -1,30 +0,0 @@ -adHocVerified = $adHocVerified; - } - public function getAdHocVerified() - { - return $this->adHocVerified; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/CommentFeed.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/CommentFeed.php deleted file mode 100644 index 54d21784..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/CommentFeed.php +++ /dev/null @@ -1,101 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_PlusDomains_Comment - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_PlusDomains_Comment - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextLink($nextLink) - { - $this->nextLink = $nextLink; - } - public function getNextLink() - { - return $this->nextLink; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setUpdated($updated) - { - $this->updated = $updated; - } - public function getUpdated() - { - return $this->updated; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/CommentInReplyTo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/CommentInReplyTo.php deleted file mode 100644 index 33706989..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/CommentInReplyTo.php +++ /dev/null @@ -1,39 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/CommentObject.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/CommentObject.php deleted file mode 100644 index 9a0531f3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/CommentObject.php +++ /dev/null @@ -1,48 +0,0 @@ -content = $content; - } - public function getContent() - { - return $this->content; - } - public function setObjectType($objectType) - { - $this->objectType = $objectType; - } - public function getObjectType() - { - return $this->objectType; - } - public function setOriginalContent($originalContent) - { - $this->originalContent = $originalContent; - } - public function getOriginalContent() - { - return $this->originalContent; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/CommentPlusoners.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/CommentPlusoners.php deleted file mode 100644 index cea4cea0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/CommentPlusoners.php +++ /dev/null @@ -1,30 +0,0 @@ -totalItems = $totalItems; - } - public function getTotalItems() - { - return $this->totalItems; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/Media.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/Media.php deleted file mode 100644 index becc6767..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/Media.php +++ /dev/null @@ -1,205 +0,0 @@ -author = $author; - } - /** - * @return Google_Service_PlusDomains_MediaAuthor - */ - public function getAuthor() - { - return $this->author; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_PlusDomains_MediaExif - */ - public function setExif(Google_Service_PlusDomains_MediaExif $exif) - { - $this->exif = $exif; - } - /** - * @return Google_Service_PlusDomains_MediaExif - */ - public function getExif() - { - return $this->exif; - } - public function setHeight($height) - { - $this->height = $height; - } - public function getHeight() - { - return $this->height; - } - 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 setMediaCreatedTime($mediaCreatedTime) - { - $this->mediaCreatedTime = $mediaCreatedTime; - } - public function getMediaCreatedTime() - { - return $this->mediaCreatedTime; - } - public function setMediaUrl($mediaUrl) - { - $this->mediaUrl = $mediaUrl; - } - public function getMediaUrl() - { - return $this->mediaUrl; - } - public function setPublished($published) - { - $this->published = $published; - } - public function getPublished() - { - return $this->published; - } - public function setSizeBytes($sizeBytes) - { - $this->sizeBytes = $sizeBytes; - } - public function getSizeBytes() - { - return $this->sizeBytes; - } - /** - * @param Google_Service_PlusDomains_Videostream - */ - public function setStreams($streams) - { - $this->streams = $streams; - } - /** - * @return Google_Service_PlusDomains_Videostream - */ - public function getStreams() - { - return $this->streams; - } - public function setSummary($summary) - { - $this->summary = $summary; - } - public function getSummary() - { - return $this->summary; - } - public function setUpdated($updated) - { - $this->updated = $updated; - } - public function getUpdated() - { - return $this->updated; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } - public function setVideoDuration($videoDuration) - { - $this->videoDuration = $videoDuration; - } - public function getVideoDuration() - { - return $this->videoDuration; - } - public function setVideoStatus($videoStatus) - { - $this->videoStatus = $videoStatus; - } - public function getVideoStatus() - { - return $this->videoStatus; - } - public function setWidth($width) - { - $this->width = $width; - } - public function getWidth() - { - return $this->width; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/MediaAuthor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/MediaAuthor.php deleted file mode 100644 index a0647e45..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/MediaAuthor.php +++ /dev/null @@ -1,64 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_PlusDomains_MediaAuthorImage - */ - public function setImage(Google_Service_PlusDomains_MediaAuthorImage $image) - { - $this->image = $image; - } - /** - * @return Google_Service_PlusDomains_MediaAuthorImage - */ - public function getImage() - { - return $this->image; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/MediaAuthorImage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/MediaAuthorImage.php deleted file mode 100644 index 93cd3c58..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/MediaAuthorImage.php +++ /dev/null @@ -1,30 +0,0 @@ -url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/MediaExif.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/MediaExif.php deleted file mode 100644 index eb8183b3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/MediaExif.php +++ /dev/null @@ -1,30 +0,0 @@ -time = $time; - } - public function getTime() - { - return $this->time; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/PeopleFeed.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/PeopleFeed.php deleted file mode 100644 index 4dc1a5b4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/PeopleFeed.php +++ /dev/null @@ -1,92 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_PlusDomains_Person - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_PlusDomains_Person - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setTotalItems($totalItems) - { - $this->totalItems = $totalItems; - } - public function getTotalItems() - { - return $this->totalItems; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/Person.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/Person.php deleted file mode 100644 index 559f265e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/Person.php +++ /dev/null @@ -1,323 +0,0 @@ -aboutMe = $aboutMe; - } - public function getAboutMe() - { - return $this->aboutMe; - } - public function setBirthday($birthday) - { - $this->birthday = $birthday; - } - public function getBirthday() - { - return $this->birthday; - } - public function setBraggingRights($braggingRights) - { - $this->braggingRights = $braggingRights; - } - public function getBraggingRights() - { - return $this->braggingRights; - } - public function setCircledByCount($circledByCount) - { - $this->circledByCount = $circledByCount; - } - public function getCircledByCount() - { - return $this->circledByCount; - } - /** - * @param Google_Service_PlusDomains_PersonCover - */ - public function setCover(Google_Service_PlusDomains_PersonCover $cover) - { - $this->cover = $cover; - } - /** - * @return Google_Service_PlusDomains_PersonCover - */ - public function getCover() - { - return $this->cover; - } - public function setCurrentLocation($currentLocation) - { - $this->currentLocation = $currentLocation; - } - public function getCurrentLocation() - { - return $this->currentLocation; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setDomain($domain) - { - $this->domain = $domain; - } - public function getDomain() - { - return $this->domain; - } - /** - * @param Google_Service_PlusDomains_PersonEmails - */ - public function setEmails($emails) - { - $this->emails = $emails; - } - /** - * @return Google_Service_PlusDomains_PersonEmails - */ - public function getEmails() - { - return $this->emails; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setGender($gender) - { - $this->gender = $gender; - } - public function getGender() - { - return $this->gender; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_PlusDomains_PersonImage - */ - public function setImage(Google_Service_PlusDomains_PersonImage $image) - { - $this->image = $image; - } - /** - * @return Google_Service_PlusDomains_PersonImage - */ - public function getImage() - { - return $this->image; - } - public function setIsPlusUser($isPlusUser) - { - $this->isPlusUser = $isPlusUser; - } - public function getIsPlusUser() - { - return $this->isPlusUser; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_PlusDomains_PersonName - */ - public function setName(Google_Service_PlusDomains_PersonName $name) - { - $this->name = $name; - } - /** - * @return Google_Service_PlusDomains_PersonName - */ - public function getName() - { - return $this->name; - } - public function setNickname($nickname) - { - $this->nickname = $nickname; - } - public function getNickname() - { - return $this->nickname; - } - public function setObjectType($objectType) - { - $this->objectType = $objectType; - } - public function getObjectType() - { - return $this->objectType; - } - public function setOccupation($occupation) - { - $this->occupation = $occupation; - } - public function getOccupation() - { - return $this->occupation; - } - /** - * @param Google_Service_PlusDomains_PersonOrganizations - */ - public function setOrganizations($organizations) - { - $this->organizations = $organizations; - } - /** - * @return Google_Service_PlusDomains_PersonOrganizations - */ - public function getOrganizations() - { - return $this->organizations; - } - /** - * @param Google_Service_PlusDomains_PersonPlacesLived - */ - public function setPlacesLived($placesLived) - { - $this->placesLived = $placesLived; - } - /** - * @return Google_Service_PlusDomains_PersonPlacesLived - */ - public function getPlacesLived() - { - return $this->placesLived; - } - public function setPlusOneCount($plusOneCount) - { - $this->plusOneCount = $plusOneCount; - } - public function getPlusOneCount() - { - return $this->plusOneCount; - } - public function setRelationshipStatus($relationshipStatus) - { - $this->relationshipStatus = $relationshipStatus; - } - public function getRelationshipStatus() - { - return $this->relationshipStatus; - } - public function setSkills($skills) - { - $this->skills = $skills; - } - public function getSkills() - { - return $this->skills; - } - public function setTagline($tagline) - { - $this->tagline = $tagline; - } - public function getTagline() - { - return $this->tagline; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } - /** - * @param Google_Service_PlusDomains_PersonUrls - */ - public function setUrls($urls) - { - $this->urls = $urls; - } - /** - * @return Google_Service_PlusDomains_PersonUrls - */ - public function getUrls() - { - return $this->urls; - } - public function setVerified($verified) - { - $this->verified = $verified; - } - public function getVerified() - { - return $this->verified; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/PersonCover.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/PersonCover.php deleted file mode 100644 index b8af2d69..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/PersonCover.php +++ /dev/null @@ -1,62 +0,0 @@ -coverInfo = $coverInfo; - } - /** - * @return Google_Service_PlusDomains_PersonCoverCoverInfo - */ - public function getCoverInfo() - { - return $this->coverInfo; - } - /** - * @param Google_Service_PlusDomains_PersonCoverCoverPhoto - */ - public function setCoverPhoto(Google_Service_PlusDomains_PersonCoverCoverPhoto $coverPhoto) - { - $this->coverPhoto = $coverPhoto; - } - /** - * @return Google_Service_PlusDomains_PersonCoverCoverPhoto - */ - public function getCoverPhoto() - { - return $this->coverPhoto; - } - public function setLayout($layout) - { - $this->layout = $layout; - } - public function getLayout() - { - return $this->layout; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/PersonCoverCoverInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/PersonCoverCoverInfo.php deleted file mode 100644 index 669b7462..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/PersonCoverCoverInfo.php +++ /dev/null @@ -1,39 +0,0 @@ -leftImageOffset = $leftImageOffset; - } - public function getLeftImageOffset() - { - return $this->leftImageOffset; - } - public function setTopImageOffset($topImageOffset) - { - $this->topImageOffset = $topImageOffset; - } - public function getTopImageOffset() - { - return $this->topImageOffset; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/PersonCoverCoverPhoto.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/PersonCoverCoverPhoto.php deleted file mode 100644 index fd5623ac..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/PersonCoverCoverPhoto.php +++ /dev/null @@ -1,48 +0,0 @@ -height = $height; - } - public function getHeight() - { - return $this->height; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } - public function setWidth($width) - { - $this->width = $width; - } - public function getWidth() - { - return $this->width; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/PersonEmails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/PersonEmails.php deleted file mode 100644 index 92d41269..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/PersonEmails.php +++ /dev/null @@ -1,39 +0,0 @@ -type = $type; - } - public function getType() - { - return $this->type; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/PersonImage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/PersonImage.php deleted file mode 100644 index 7bad6ac1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/PersonImage.php +++ /dev/null @@ -1,39 +0,0 @@ -isDefault = $isDefault; - } - public function getIsDefault() - { - return $this->isDefault; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/PersonName.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/PersonName.php deleted file mode 100644 index fd7e4d3b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/PersonName.php +++ /dev/null @@ -1,75 +0,0 @@ -familyName = $familyName; - } - public function getFamilyName() - { - return $this->familyName; - } - public function setFormatted($formatted) - { - $this->formatted = $formatted; - } - public function getFormatted() - { - return $this->formatted; - } - public function setGivenName($givenName) - { - $this->givenName = $givenName; - } - public function getGivenName() - { - return $this->givenName; - } - public function setHonorificPrefix($honorificPrefix) - { - $this->honorificPrefix = $honorificPrefix; - } - public function getHonorificPrefix() - { - return $this->honorificPrefix; - } - public function setHonorificSuffix($honorificSuffix) - { - $this->honorificSuffix = $honorificSuffix; - } - public function getHonorificSuffix() - { - return $this->honorificSuffix; - } - public function setMiddleName($middleName) - { - $this->middleName = $middleName; - } - public function getMiddleName() - { - return $this->middleName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/PersonOrganizations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/PersonOrganizations.php deleted file mode 100644 index fb14ef5f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/PersonOrganizations.php +++ /dev/null @@ -1,102 +0,0 @@ -department = $department; - } - public function getDepartment() - { - return $this->department; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setEndDate($endDate) - { - $this->endDate = $endDate; - } - public function getEndDate() - { - return $this->endDate; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPrimary($primary) - { - $this->primary = $primary; - } - public function getPrimary() - { - return $this->primary; - } - public function setStartDate($startDate) - { - $this->startDate = $startDate; - } - public function getStartDate() - { - return $this->startDate; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/PersonPlacesLived.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/PersonPlacesLived.php deleted file mode 100644 index 19467afc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/PersonPlacesLived.php +++ /dev/null @@ -1,39 +0,0 @@ -primary = $primary; - } - public function getPrimary() - { - return $this->primary; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/PersonUrls.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/PersonUrls.php deleted file mode 100644 index 9dfe6327..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/PersonUrls.php +++ /dev/null @@ -1,48 +0,0 @@ -label = $label; - } - public function getLabel() - { - return $this->label; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/Place.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/Place.php deleted file mode 100644 index 35caeec6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/Place.php +++ /dev/null @@ -1,80 +0,0 @@ -address = $address; - } - /** - * @return Google_Service_PlusDomains_PlaceAddress - */ - public function getAddress() - { - return $this->address; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - 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; - } - /** - * @param Google_Service_PlusDomains_PlacePosition - */ - public function setPosition(Google_Service_PlusDomains_PlacePosition $position) - { - $this->position = $position; - } - /** - * @return Google_Service_PlusDomains_PlacePosition - */ - public function getPosition() - { - return $this->position; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/PlaceAddress.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/PlaceAddress.php deleted file mode 100644 index b6c051bf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/PlaceAddress.php +++ /dev/null @@ -1,30 +0,0 @@ -formatted = $formatted; - } - public function getFormatted() - { - return $this->formatted; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/PlacePosition.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/PlacePosition.php deleted file mode 100644 index a21f7520..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/PlacePosition.php +++ /dev/null @@ -1,39 +0,0 @@ -latitude = $latitude; - } - public function getLatitude() - { - return $this->latitude; - } - public function setLongitude($longitude) - { - $this->longitude = $longitude; - } - public function getLongitude() - { - return $this->longitude; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/PlusDomainsAclentryResource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/PlusDomainsAclentryResource.php deleted file mode 100644 index 4433e400..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/PlusDomainsAclentryResource.php +++ /dev/null @@ -1,48 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/Resource/Activities.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/Resource/Activities.php deleted file mode 100644 index eb5bed6c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/Resource/Activities.php +++ /dev/null @@ -1,65 +0,0 @@ - - * $plusDomainsService = new Google_Service_PlusDomains(...); - * $activities = $plusDomainsService->activities; - * - */ -class Google_Service_PlusDomains_Resource_Activities extends Google_Service_Resource -{ - /** - * Shut down. See https://developers.google.com/+/api-shutdown for more details. - * (activities.get) - * - * @param string $activityId The ID of the activity to get. - * @param array $optParams Optional parameters. - * @return Google_Service_PlusDomains_Activity - */ - public function get($activityId, $optParams = array()) - { - $params = array('activityId' => $activityId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_PlusDomains_Activity"); - } - /** - * Shut down. See https://developers.google.com/+/api-shutdown for more details. - * (activities.listActivities) - * - * @param string $userId The ID of the user to get activities for. The special - * value "me" can be used to indicate the authenticated user. - * @param string $collection The collection of activities to list. - * @param array $optParams Optional parameters. - * - * @opt_param string maxResults The maximum number of activities to include in - * the response, which is used for paging. For any response, the actual number - * returned might be less than the specified maxResults. - * @opt_param string pageToken The continuation token, which is used to page - * through large result sets. To get the next page of results, set this - * parameter to the value of "nextPageToken" from the previous response. - * @return Google_Service_PlusDomains_ActivityFeed - */ - public function listActivities($userId, $collection, $optParams = array()) - { - $params = array('userId' => $userId, 'collection' => $collection); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_PlusDomains_ActivityFeed"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/Resource/Audiences.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/Resource/Audiences.php deleted file mode 100644 index da982870..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/Resource/Audiences.php +++ /dev/null @@ -1,50 +0,0 @@ - - * $plusDomainsService = new Google_Service_PlusDomains(...); - * $audiences = $plusDomainsService->audiences; - * - */ -class Google_Service_PlusDomains_Resource_Audiences extends Google_Service_Resource -{ - /** - * Shut down. See https://developers.google.com/+/api-shutdown for more details. - * (audiences.listAudiences) - * - * @param string $userId The ID of the user to get audiences for. The special - * value "me" can be used to indicate the authenticated user. - * @param array $optParams Optional parameters. - * - * @opt_param string maxResults The maximum number of circles to include in the - * response, which is used for paging. For any response, the actual number - * returned might be less than the specified maxResults. - * @opt_param string pageToken The continuation token, which is used to page - * through large result sets. To get the next page of results, set this - * parameter to the value of "nextPageToken" from the previous response. - * @return Google_Service_PlusDomains_AudiencesFeed - */ - public function listAudiences($userId, $optParams = array()) - { - $params = array('userId' => $userId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_PlusDomains_AudiencesFeed"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/Resource/Circles.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/Resource/Circles.php deleted file mode 100644 index 541f15de..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/Resource/Circles.php +++ /dev/null @@ -1,50 +0,0 @@ - - * $plusDomainsService = new Google_Service_PlusDomains(...); - * $circles = $plusDomainsService->circles; - * - */ -class Google_Service_PlusDomains_Resource_Circles extends Google_Service_Resource -{ - /** - * Shut down. See https://developers.google.com/+/api-shutdown for more details. - * (circles.listCircles) - * - * @param string $userId The ID of the user to get circles for. The special - * value "me" can be used to indicate the authenticated user. - * @param array $optParams Optional parameters. - * - * @opt_param string maxResults The maximum number of circles to include in the - * response, which is used for paging. For any response, the actual number - * returned might be less than the specified maxResults. - * @opt_param string pageToken The continuation token, which is used to page - * through large result sets. To get the next page of results, set this - * parameter to the value of "nextPageToken" from the previous response. - * @return Google_Service_PlusDomains_CircleFeed - */ - public function listCircles($userId, $optParams = array()) - { - $params = array('userId' => $userId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_PlusDomains_CircleFeed"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/Resource/Comments.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/Resource/Comments.php deleted file mode 100644 index 9d3aea00..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/Resource/Comments.php +++ /dev/null @@ -1,64 +0,0 @@ - - * $plusDomainsService = new Google_Service_PlusDomains(...); - * $comments = $plusDomainsService->comments; - * - */ -class Google_Service_PlusDomains_Resource_Comments extends Google_Service_Resource -{ - /** - * Shut down. See https://developers.google.com/+/api-shutdown for more details. - * (comments.get) - * - * @param string $commentId The ID of the comment to get. - * @param array $optParams Optional parameters. - * @return Google_Service_PlusDomains_Comment - */ - public function get($commentId, $optParams = array()) - { - $params = array('commentId' => $commentId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_PlusDomains_Comment"); - } - /** - * Shut down. See https://developers.google.com/+/api-shutdown for more details. - * (comments.listComments) - * - * @param string $activityId The ID of the activity to get comments for. - * @param array $optParams Optional parameters. - * - * @opt_param string maxResults The maximum number of comments to include in the - * response, which is used for paging. For any response, the actual number - * returned might be less than the specified maxResults. - * @opt_param string pageToken The continuation token, which is used to page - * through large result sets. To get the next page of results, set this - * parameter to the value of "nextPageToken" from the previous response. - * @opt_param string sortOrder The order in which to sort the list of comments. - * @return Google_Service_PlusDomains_CommentFeed - */ - public function listComments($activityId, $optParams = array()) - { - $params = array('activityId' => $activityId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_PlusDomains_CommentFeed"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/Resource/Media.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/Resource/Media.php deleted file mode 100644 index 1ac0ab5c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/Resource/Media.php +++ /dev/null @@ -1,44 +0,0 @@ - - * $plusDomainsService = new Google_Service_PlusDomains(...); - * $media = $plusDomainsService->media; - * - */ -class Google_Service_PlusDomains_Resource_Media extends Google_Service_Resource -{ - /** - * Shut down. See https://developers.google.com/+/api-shutdown for more details. - * (media.insert) - * - * @param string $userId The ID of the user to create the activity on behalf of. - * @param string $collection - * @param Google_Service_PlusDomains_Media $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_PlusDomains_Media - */ - public function insert($userId, $collection, Google_Service_PlusDomains_Media $postBody, $optParams = array()) - { - $params = array('userId' => $userId, 'collection' => $collection, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_PlusDomains_Media"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/Resource/People.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/Resource/People.php deleted file mode 100644 index 34fe573f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/Resource/People.php +++ /dev/null @@ -1,88 +0,0 @@ - - * $plusDomainsService = new Google_Service_PlusDomains(...); - * $people = $plusDomainsService->people; - * - */ -class Google_Service_PlusDomains_Resource_People extends Google_Service_Resource -{ - /** - * Get a person's profile. (people.get) - * - * @param string $userId The ID of the person to get the profile for. The - * special value "me" can be used to indicate the authenticated user. - * @param array $optParams Optional parameters. - * @return Google_Service_PlusDomains_Person - */ - public function get($userId, $optParams = array()) - { - $params = array('userId' => $userId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_PlusDomains_Person"); - } - /** - * List all of the people in the specified collection. (people.listPeople) - * - * @param string $userId Get the collection of people for the person identified. - * Use "me" to indicate the authenticated user. - * @param string $collection The collection of people to list. - * @param array $optParams Optional parameters. - * - * @opt_param string maxResults The maximum number of people to include in the - * response, which is used for paging. For any response, the actual number - * returned might be less than the specified maxResults. - * @opt_param string orderBy The order to return people in. - * @opt_param string pageToken The continuation token, which is used to page - * through large result sets. To get the next page of results, set this - * parameter to the value of "nextPageToken" from the previous response. - * @return Google_Service_PlusDomains_PeopleFeed - */ - public function listPeople($userId, $collection, $optParams = array()) - { - $params = array('userId' => $userId, 'collection' => $collection); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_PlusDomains_PeopleFeed"); - } - /** - * Shut down. See https://developers.google.com/+/api-shutdown for more details. - * (people.listByActivity) - * - * @param string $activityId The ID of the activity to get the list of people - * for. - * @param string $collection The collection of people to list. - * @param array $optParams Optional parameters. - * - * @opt_param string maxResults The maximum number of people to include in the - * response, which is used for paging. For any response, the actual number - * returned might be less than the specified maxResults. - * @opt_param string pageToken The continuation token, which is used to page - * through large result sets. To get the next page of results, set this - * parameter to the value of "nextPageToken" from the previous response. - * @return Google_Service_PlusDomains_PeopleFeed - */ - public function listByActivity($activityId, $collection, $optParams = array()) - { - $params = array('activityId' => $activityId, 'collection' => $collection); - $params = array_merge($params, $optParams); - return $this->call('listByActivity', array($params), "Google_Service_PlusDomains_PeopleFeed"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/Videostream.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/Videostream.php deleted file mode 100644 index 47b237ac..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PlusDomains/Videostream.php +++ /dev/null @@ -1,57 +0,0 @@ -height = $height; - } - public function getHeight() - { - return $this->height; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } - public function setWidth($width) - { - $this->width = $width; - } - public function getWidth() - { - return $this->width; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolicyTroubleshooter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolicyTroubleshooter.php deleted file mode 100644 index f67ecd61..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolicyTroubleshooter.php +++ /dev/null @@ -1,69 +0,0 @@ - -

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_PolicyTroubleshooter extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - - public $iam; - - /** - * Constructs the internal representation of the PolicyTroubleshooter service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://policytroubleshooter.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'policytroubleshooter'; - - $this->iam = new Google_Service_PolicyTroubleshooter_Resource_Iam( - $this, - $this->serviceName, - 'iam', - array( - 'methods' => array( - 'troubleshoot' => array( - 'path' => 'v1/iam:troubleshoot', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolicyTroubleshooter/GoogleCloudPolicytroubleshooterV1AccessTuple.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolicyTroubleshooter/GoogleCloudPolicytroubleshooterV1AccessTuple.php deleted file mode 100644 index a661fed9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolicyTroubleshooter/GoogleCloudPolicytroubleshooterV1AccessTuple.php +++ /dev/null @@ -1,48 +0,0 @@ -fullResourceName = $fullResourceName; - } - public function getFullResourceName() - { - return $this->fullResourceName; - } - public function setPermission($permission) - { - $this->permission = $permission; - } - public function getPermission() - { - return $this->permission; - } - public function setPrincipal($principal) - { - $this->principal = $principal; - } - public function getPrincipal() - { - return $this->principal; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolicyTroubleshooter/GoogleCloudPolicytroubleshooterV1BindingExplanation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolicyTroubleshooter/GoogleCloudPolicytroubleshooterV1BindingExplanation.php deleted file mode 100644 index b4627b76..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolicyTroubleshooter/GoogleCloudPolicytroubleshooterV1BindingExplanation.php +++ /dev/null @@ -1,98 +0,0 @@ -access = $access; - } - public function getAccess() - { - return $this->access; - } - /** - * @param Google_Service_PolicyTroubleshooter_GoogleTypeExpr - */ - public function setCondition(Google_Service_PolicyTroubleshooter_GoogleTypeExpr $condition) - { - $this->condition = $condition; - } - /** - * @return Google_Service_PolicyTroubleshooter_GoogleTypeExpr - */ - public function getCondition() - { - return $this->condition; - } - /** - * @param Google_Service_PolicyTroubleshooter_GoogleCloudPolicytroubleshooterV1BindingExplanationAnnotatedMembership - */ - public function setMemberships($memberships) - { - $this->memberships = $memberships; - } - /** - * @return Google_Service_PolicyTroubleshooter_GoogleCloudPolicytroubleshooterV1BindingExplanationAnnotatedMembership - */ - public function getMemberships() - { - return $this->memberships; - } - public function setRelevance($relevance) - { - $this->relevance = $relevance; - } - public function getRelevance() - { - return $this->relevance; - } - public function setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } - public function setRolePermission($rolePermission) - { - $this->rolePermission = $rolePermission; - } - public function getRolePermission() - { - return $this->rolePermission; - } - public function setRolePermissionRelevance($rolePermissionRelevance) - { - $this->rolePermissionRelevance = $rolePermissionRelevance; - } - public function getRolePermissionRelevance() - { - return $this->rolePermissionRelevance; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolicyTroubleshooter/GoogleCloudPolicytroubleshooterV1BindingExplanationAnnotatedMembership.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolicyTroubleshooter/GoogleCloudPolicytroubleshooterV1BindingExplanationAnnotatedMembership.php deleted file mode 100644 index dd4dfba3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolicyTroubleshooter/GoogleCloudPolicytroubleshooterV1BindingExplanationAnnotatedMembership.php +++ /dev/null @@ -1,39 +0,0 @@ -membership = $membership; - } - public function getMembership() - { - return $this->membership; - } - public function setRelevance($relevance) - { - $this->relevance = $relevance; - } - public function getRelevance() - { - return $this->relevance; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolicyTroubleshooter/GoogleCloudPolicytroubleshooterV1ExplainedPolicy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolicyTroubleshooter/GoogleCloudPolicytroubleshooterV1ExplainedPolicy.php deleted file mode 100644 index 096facf6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolicyTroubleshooter/GoogleCloudPolicytroubleshooterV1ExplainedPolicy.php +++ /dev/null @@ -1,81 +0,0 @@ -access = $access; - } - public function getAccess() - { - return $this->access; - } - /** - * @param Google_Service_PolicyTroubleshooter_GoogleCloudPolicytroubleshooterV1BindingExplanation - */ - public function setBindingExplanations($bindingExplanations) - { - $this->bindingExplanations = $bindingExplanations; - } - /** - * @return Google_Service_PolicyTroubleshooter_GoogleCloudPolicytroubleshooterV1BindingExplanation - */ - public function getBindingExplanations() - { - return $this->bindingExplanations; - } - public function setFullResourceName($fullResourceName) - { - $this->fullResourceName = $fullResourceName; - } - public function getFullResourceName() - { - return $this->fullResourceName; - } - /** - * @param Google_Service_PolicyTroubleshooter_GoogleIamV1Policy - */ - public function setPolicy(Google_Service_PolicyTroubleshooter_GoogleIamV1Policy $policy) - { - $this->policy = $policy; - } - /** - * @return Google_Service_PolicyTroubleshooter_GoogleIamV1Policy - */ - public function getPolicy() - { - return $this->policy; - } - public function setRelevance($relevance) - { - $this->relevance = $relevance; - } - public function getRelevance() - { - return $this->relevance; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolicyTroubleshooter/GoogleCloudPolicytroubleshooterV1TroubleshootIamPolicyRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolicyTroubleshooter/GoogleCloudPolicytroubleshooterV1TroubleshootIamPolicyRequest.php deleted file mode 100644 index ca638d26..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolicyTroubleshooter/GoogleCloudPolicytroubleshooterV1TroubleshootIamPolicyRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -accessTuple = $accessTuple; - } - /** - * @return Google_Service_PolicyTroubleshooter_GoogleCloudPolicytroubleshooterV1AccessTuple - */ - public function getAccessTuple() - { - return $this->accessTuple; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolicyTroubleshooter/GoogleCloudPolicytroubleshooterV1TroubleshootIamPolicyResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolicyTroubleshooter/GoogleCloudPolicytroubleshooterV1TroubleshootIamPolicyResponse.php deleted file mode 100644 index 3babad4a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolicyTroubleshooter/GoogleCloudPolicytroubleshooterV1TroubleshootIamPolicyResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -access = $access; - } - public function getAccess() - { - return $this->access; - } - /** - * @param Google_Service_PolicyTroubleshooter_GoogleCloudPolicytroubleshooterV1ExplainedPolicy - */ - public function setExplainedPolicies($explainedPolicies) - { - $this->explainedPolicies = $explainedPolicies; - } - /** - * @return Google_Service_PolicyTroubleshooter_GoogleCloudPolicytroubleshooterV1ExplainedPolicy - */ - public function getExplainedPolicies() - { - return $this->explainedPolicies; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolicyTroubleshooter/GoogleIamV1AuditConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolicyTroubleshooter/GoogleIamV1AuditConfig.php deleted file mode 100644 index 4bc42b83..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolicyTroubleshooter/GoogleIamV1AuditConfig.php +++ /dev/null @@ -1,47 +0,0 @@ -auditLogConfigs = $auditLogConfigs; - } - /** - * @return Google_Service_PolicyTroubleshooter_GoogleIamV1AuditLogConfig - */ - public function getAuditLogConfigs() - { - return $this->auditLogConfigs; - } - public function setService($service) - { - $this->service = $service; - } - public function getService() - { - return $this->service; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolicyTroubleshooter/GoogleIamV1AuditLogConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolicyTroubleshooter/GoogleIamV1AuditLogConfig.php deleted file mode 100644 index 1ba037a7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolicyTroubleshooter/GoogleIamV1AuditLogConfig.php +++ /dev/null @@ -1,40 +0,0 @@ -exemptedMembers = $exemptedMembers; - } - public function getExemptedMembers() - { - return $this->exemptedMembers; - } - public function setLogType($logType) - { - $this->logType = $logType; - } - public function getLogType() - { - return $this->logType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolicyTroubleshooter/GoogleIamV1Binding.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolicyTroubleshooter/GoogleIamV1Binding.php deleted file mode 100644 index 360c42cf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolicyTroubleshooter/GoogleIamV1Binding.php +++ /dev/null @@ -1,56 +0,0 @@ -condition = $condition; - } - /** - * @return Google_Service_PolicyTroubleshooter_GoogleTypeExpr - */ - public function getCondition() - { - return $this->condition; - } - public function setMembers($members) - { - $this->members = $members; - } - public function getMembers() - { - return $this->members; - } - public function setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolicyTroubleshooter/GoogleIamV1Policy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolicyTroubleshooter/GoogleIamV1Policy.php deleted file mode 100644 index cdf143b9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolicyTroubleshooter/GoogleIamV1Policy.php +++ /dev/null @@ -1,72 +0,0 @@ -auditConfigs = $auditConfigs; - } - /** - * @return Google_Service_PolicyTroubleshooter_GoogleIamV1AuditConfig - */ - public function getAuditConfigs() - { - return $this->auditConfigs; - } - /** - * @param Google_Service_PolicyTroubleshooter_GoogleIamV1Binding - */ - public function setBindings($bindings) - { - $this->bindings = $bindings; - } - /** - * @return Google_Service_PolicyTroubleshooter_GoogleIamV1Binding - */ - public function getBindings() - { - return $this->bindings; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolicyTroubleshooter/GoogleTypeExpr.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolicyTroubleshooter/GoogleTypeExpr.php deleted file mode 100644 index ad9d88f7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolicyTroubleshooter/GoogleTypeExpr.php +++ /dev/null @@ -1,57 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setExpression($expression) - { - $this->expression = $expression; - } - public function getExpression() - { - return $this->expression; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolicyTroubleshooter/Resource/Iam.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolicyTroubleshooter/Resource/Iam.php deleted file mode 100644 index fdac9b62..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolicyTroubleshooter/Resource/Iam.php +++ /dev/null @@ -1,43 +0,0 @@ - - * $policytroubleshooterService = new Google_Service_PolicyTroubleshooter(...); - * $iam = $policytroubleshooterService->iam; - * - */ -class Google_Service_PolicyTroubleshooter_Resource_Iam extends Google_Service_Resource -{ - /** - * Checks whether a member has a specific permission for a specific resource, - * and explains why the member does or does not have that permission. - * (iam.troubleshoot) - * - * @param Google_Service_PolicyTroubleshooter_GoogleCloudPolicytroubleshooterV1TroubleshootIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_PolicyTroubleshooter_GoogleCloudPolicytroubleshooterV1TroubleshootIamPolicyResponse - */ - public function troubleshoot(Google_Service_PolicyTroubleshooter_GoogleCloudPolicytroubleshooterV1TroubleshootIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('troubleshoot', array($params), "Google_Service_PolicyTroubleshooter_GoogleCloudPolicytroubleshooterV1TroubleshootIamPolicyResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService.php deleted file mode 100644 index dff87dd1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService.php +++ /dev/null @@ -1,189 +0,0 @@ - - * The Poly API provides read access to assets hosted on poly.google.com to all, - * and upload access to poly.google.com for whitelisted accounts.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_PolyService extends Google_Service -{ - - - public $assets; - public $users_assets; - public $users_likedassets; - - /** - * Constructs the internal representation of the PolyService service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://poly.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'poly'; - - $this->assets = new Google_Service_PolyService_Resource_Assets( - $this, - $this->serviceName, - 'assets', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/assets', - 'httpMethod' => 'GET', - 'parameters' => array( - 'maxComplexity' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'keywords' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'format' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'curated' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'category' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->users_assets = new Google_Service_PolyService_Resource_UsersAssets( - $this, - $this->serviceName, - 'assets', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1/{+name}/assets', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'visibility' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'format' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->users_likedassets = new Google_Service_PolyService_Resource_UsersLikedassets( - $this, - $this->serviceName, - 'likedassets', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1/{+name}/likedassets', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'format' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/Asset.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/Asset.php deleted file mode 100644 index 1b677228..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/Asset.php +++ /dev/null @@ -1,176 +0,0 @@ -authorName = $authorName; - } - public function getAuthorName() - { - return $this->authorName; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - /** - * @param Google_Service_PolyService_Format - */ - public function setFormats($formats) - { - $this->formats = $formats; - } - /** - * @return Google_Service_PolyService_Format - */ - public function getFormats() - { - return $this->formats; - } - public function setIsCurated($isCurated) - { - $this->isCurated = $isCurated; - } - public function getIsCurated() - { - return $this->isCurated; - } - public function setLicense($license) - { - $this->license = $license; - } - public function getLicense() - { - return $this->license; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_PolyService_PresentationParams - */ - public function setPresentationParams(Google_Service_PolyService_PresentationParams $presentationParams) - { - $this->presentationParams = $presentationParams; - } - /** - * @return Google_Service_PolyService_PresentationParams - */ - public function getPresentationParams() - { - return $this->presentationParams; - } - /** - * @param Google_Service_PolyService_RemixInfo - */ - public function setRemixInfo(Google_Service_PolyService_RemixInfo $remixInfo) - { - $this->remixInfo = $remixInfo; - } - /** - * @return Google_Service_PolyService_RemixInfo - */ - public function getRemixInfo() - { - return $this->remixInfo; - } - /** - * @param Google_Service_PolyService_PolyFile - */ - public function setThumbnail(Google_Service_PolyService_PolyFile $thumbnail) - { - $this->thumbnail = $thumbnail; - } - /** - * @return Google_Service_PolyService_PolyFile - */ - public function getThumbnail() - { - return $this->thumbnail; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } - public function setVisibility($visibility) - { - $this->visibility = $visibility; - } - public function getVisibility() - { - return $this->visibility; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/AssetImportMessage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/AssetImportMessage.php deleted file mode 100644 index 7ab677bd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/AssetImportMessage.php +++ /dev/null @@ -1,71 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setFilePath($filePath) - { - $this->filePath = $filePath; - } - public function getFilePath() - { - return $this->filePath; - } - /** - * @param Google_Service_PolyService_ImageError - */ - public function setImageError(Google_Service_PolyService_ImageError $imageError) - { - $this->imageError = $imageError; - } - /** - * @return Google_Service_PolyService_ImageError - */ - public function getImageError() - { - return $this->imageError; - } - /** - * @param Google_Service_PolyService_ObjParseError - */ - public function setObjParseError(Google_Service_PolyService_ObjParseError $objParseError) - { - $this->objParseError = $objParseError; - } - /** - * @return Google_Service_PolyService_ObjParseError - */ - public function getObjParseError() - { - return $this->objParseError; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/Format.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/Format.php deleted file mode 100644 index 23c45fb2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/Format.php +++ /dev/null @@ -1,79 +0,0 @@ -formatComplexity = $formatComplexity; - } - /** - * @return Google_Service_PolyService_FormatComplexity - */ - public function getFormatComplexity() - { - return $this->formatComplexity; - } - public function setFormatType($formatType) - { - $this->formatType = $formatType; - } - public function getFormatType() - { - return $this->formatType; - } - /** - * @param Google_Service_PolyService_PolyFile - */ - public function setResources($resources) - { - $this->resources = $resources; - } - /** - * @return Google_Service_PolyService_PolyFile - */ - public function getResources() - { - return $this->resources; - } - /** - * @param Google_Service_PolyService_PolyFile - */ - public function setRoot(Google_Service_PolyService_PolyFile $root) - { - $this->root = $root; - } - /** - * @return Google_Service_PolyService_PolyFile - */ - public function getRoot() - { - return $this->root; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/FormatComplexity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/FormatComplexity.php deleted file mode 100644 index b65c87a0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/FormatComplexity.php +++ /dev/null @@ -1,39 +0,0 @@ -lodHint = $lodHint; - } - public function getLodHint() - { - return $this->lodHint; - } - public function setTriangleCount($triangleCount) - { - $this->triangleCount = $triangleCount; - } - public function getTriangleCount() - { - return $this->triangleCount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/ImageError.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/ImageError.php deleted file mode 100644 index ef5903fa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/ImageError.php +++ /dev/null @@ -1,39 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setFilePath($filePath) - { - $this->filePath = $filePath; - } - public function getFilePath() - { - return $this->filePath; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/ListAssetsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/ListAssetsResponse.php deleted file mode 100644 index 3b858445..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/ListAssetsResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -assets = $assets; - } - /** - * @return Google_Service_PolyService_Asset - */ - public function getAssets() - { - return $this->assets; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setTotalSize($totalSize) - { - $this->totalSize = $totalSize; - } - public function getTotalSize() - { - return $this->totalSize; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/ListLikedAssetsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/ListLikedAssetsResponse.php deleted file mode 100644 index d572fd71..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/ListLikedAssetsResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -assets = $assets; - } - /** - * @return Google_Service_PolyService_Asset - */ - public function getAssets() - { - return $this->assets; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setTotalSize($totalSize) - { - $this->totalSize = $totalSize; - } - public function getTotalSize() - { - return $this->totalSize; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/ListUserAssetsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/ListUserAssetsResponse.php deleted file mode 100644 index b99bd755..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/ListUserAssetsResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setTotalSize($totalSize) - { - $this->totalSize = $totalSize; - } - public function getTotalSize() - { - return $this->totalSize; - } - /** - * @param Google_Service_PolyService_UserAsset - */ - public function setUserAssets($userAssets) - { - $this->userAssets = $userAssets; - } - /** - * @return Google_Service_PolyService_UserAsset - */ - public function getUserAssets() - { - return $this->userAssets; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/ObjParseError.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/ObjParseError.php deleted file mode 100644 index 1f2860ad..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/ObjParseError.php +++ /dev/null @@ -1,75 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setEndIndex($endIndex) - { - $this->endIndex = $endIndex; - } - public function getEndIndex() - { - return $this->endIndex; - } - public function setFilePath($filePath) - { - $this->filePath = $filePath; - } - public function getFilePath() - { - return $this->filePath; - } - public function setLine($line) - { - $this->line = $line; - } - public function getLine() - { - return $this->line; - } - public function setLineNumber($lineNumber) - { - $this->lineNumber = $lineNumber; - } - public function getLineNumber() - { - return $this->lineNumber; - } - public function setStartIndex($startIndex) - { - $this->startIndex = $startIndex; - } - public function getStartIndex() - { - return $this->startIndex; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/PolyFile.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/PolyFile.php deleted file mode 100644 index d8c9fafc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/PolyFile.php +++ /dev/null @@ -1,48 +0,0 @@ -contentType = $contentType; - } - public function getContentType() - { - return $this->contentType; - } - public function setRelativePath($relativePath) - { - $this->relativePath = $relativePath; - } - public function getRelativePath() - { - return $this->relativePath; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/PresentationParams.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/PresentationParams.php deleted file mode 100644 index 930e994e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/PresentationParams.php +++ /dev/null @@ -1,55 +0,0 @@ -backgroundColor = $backgroundColor; - } - public function getBackgroundColor() - { - return $this->backgroundColor; - } - public function setColorSpace($colorSpace) - { - $this->colorSpace = $colorSpace; - } - public function getColorSpace() - { - return $this->colorSpace; - } - /** - * @param Google_Service_PolyService_Quaternion - */ - public function setOrientingRotation(Google_Service_PolyService_Quaternion $orientingRotation) - { - $this->orientingRotation = $orientingRotation; - } - /** - * @return Google_Service_PolyService_Quaternion - */ - public function getOrientingRotation() - { - return $this->orientingRotation; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/Quaternion.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/Quaternion.php deleted file mode 100644 index e4bd7b51..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/Quaternion.php +++ /dev/null @@ -1,57 +0,0 @@ -w = $w; - } - public function getW() - { - return $this->w; - } - public function setX($x) - { - $this->x = $x; - } - public function getX() - { - return $this->x; - } - public function setY($y) - { - $this->y = $y; - } - public function getY() - { - return $this->y; - } - public function setZ($z) - { - $this->z = $z; - } - public function getZ() - { - return $this->z; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/RemixInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/RemixInfo.php deleted file mode 100644 index bba5c68d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/RemixInfo.php +++ /dev/null @@ -1,31 +0,0 @@ -sourceAsset = $sourceAsset; - } - public function getSourceAsset() - { - return $this->sourceAsset; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/Resource/Assets.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/Resource/Assets.php deleted file mode 100644 index a35d630a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/Resource/Assets.php +++ /dev/null @@ -1,79 +0,0 @@ - - * $polyService = new Google_Service_PolyService(...); - * $assets = $polyService->assets; - * - */ -class Google_Service_PolyService_Resource_Assets extends Google_Service_Resource -{ - /** - * Returns detailed information about an asset given its name. PRIVATE assets - * are returned only if the currently authenticated user (via OAuth token) is - * the author of the asset. (assets.get) - * - * @param string $name Required. An asset's name in the form - * `assets/{ASSET_ID}`. - * @param array $optParams Optional parameters. - * @return Google_Service_PolyService_Asset - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_PolyService_Asset"); - } - /** - * Lists all public, remixable assets. These are assets with an access level of - * PUBLIC and published under the CC-By license. (assets.listAssets) - * - * @param array $optParams Optional parameters. - * - * @opt_param string maxComplexity Returns assets that are of the specified - * complexity or less. Defaults to COMPLEX. For example, a request for MEDIUM - * assets also includes SIMPLE assets. - * @opt_param string pageToken Specifies a continuation token from a previous - * search whose results were split into multiple pages. To get the next page, - * submit the same request specifying the value from next_page_token. - * @opt_param int pageSize The maximum number of assets to be returned. This - * value must be between `1` and `100`. Defaults to `20`. - * @opt_param string keywords One or more search terms to be matched against all - * text that Poly has indexed for assets, which includes display_name, - * description, and tags. Multiple keywords should be separated by spaces. - * @opt_param string orderBy Specifies an ordering for assets. Acceptable values - * are: `BEST`, `NEWEST`, `OLDEST`. Defaults to `BEST`, which ranks assets based - * on a combination of popularity and other features. - * @opt_param string format Return only assets with the matching format. - * Acceptable values are: `BLOCKS`, `FBX`, `GLTF`, `GLTF2`, `OBJ`, `TILT`. - * @opt_param bool curated Return only assets that have been curated by the Poly - * team. - * @opt_param string category Filter assets based on the specified category. - * Supported values are: `animals`, `architecture`, `art`, `food`, `nature`, - * `objects`, `people`, `scenes`, `technology`, and `transport`. - * @return Google_Service_PolyService_ListAssetsResponse - */ - public function listAssets($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_PolyService_ListAssetsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/Resource/Users.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/Resource/Users.php deleted file mode 100644 index 1d53019c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/Resource/Users.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $polyService = new Google_Service_PolyService(...); - * $users = $polyService->users; - * - */ -class Google_Service_PolyService_Resource_Users extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/Resource/UsersAssets.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/Resource/UsersAssets.php deleted file mode 100644 index c9722778..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/Resource/UsersAssets.php +++ /dev/null @@ -1,59 +0,0 @@ - - * $polyService = new Google_Service_PolyService(...); - * $assets = $polyService->assets; - * - */ -class Google_Service_PolyService_Resource_UsersAssets extends Google_Service_Resource -{ - /** - * Lists assets authored by the given user. Only the value 'me', representing - * the currently-authenticated user, is supported. May include assets with an - * access level of PRIVATE or UNLISTED and assets which are All Rights Reserved - * for the currently-authenticated user. (assets.listUsersAssets) - * - * @param string $name A valid user id. Currently, only the special value 'me', - * representing the currently-authenticated user is supported. To use 'me', you - * must pass an OAuth token with the request. - * @param array $optParams Optional parameters. - * - * @opt_param int pageSize The maximum number of assets to be returned. This - * value must be between `1` and `100`. Defaults to `20`. - * @opt_param string visibility The visibility of the assets to be returned. - * Defaults to VISIBILITY_UNSPECIFIED which returns all assets. - * @opt_param string orderBy Specifies an ordering for assets. Acceptable values - * are: `BEST`, `NEWEST`, `OLDEST`. Defaults to `BEST`, which ranks assets based - * on a combination of popularity and other features. - * @opt_param string format Return only assets with the matching format. - * Acceptable values are: `BLOCKS`, `FBX`, `GLTF`, `GLTF2`, `OBJ`, and `TILT`. - * @opt_param string pageToken Specifies a continuation token from a previous - * search whose results were split into multiple pages. To get the next page, - * submit the same request specifying the value from next_page_token. - * @return Google_Service_PolyService_ListUserAssetsResponse - */ - public function listUsersAssets($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_PolyService_ListUserAssetsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/Resource/UsersLikedassets.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/Resource/UsersLikedassets.php deleted file mode 100644 index 3a443f49..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/Resource/UsersLikedassets.php +++ /dev/null @@ -1,56 +0,0 @@ - - * $polyService = new Google_Service_PolyService(...); - * $likedassets = $polyService->likedassets; - * - */ -class Google_Service_PolyService_Resource_UsersLikedassets extends Google_Service_Resource -{ - /** - * Lists assets that the user has liked. Only the value 'me', representing the - * currently-authenticated user, is supported. May include assets with an access - * level of UNLISTED. (likedassets.listUsersLikedassets) - * - * @param string $name A valid user id. Currently, only the special value 'me', - * representing the currently-authenticated user is supported. To use 'me', you - * must pass an OAuth token with the request. - * @param array $optParams Optional parameters. - * - * @opt_param string orderBy Specifies an ordering for assets. Acceptable values - * are: `BEST`, `NEWEST`, `OLDEST`, 'LIKED_TIME'. Defaults to `LIKED_TIME`, - * which ranks assets based on how recently they were liked. - * @opt_param string pageToken Specifies a continuation token from a previous - * search whose results were split into multiple pages. To get the next page, - * submit the same request specifying the value from next_page_token. - * @opt_param int pageSize The maximum number of assets to be returned. This - * value must be between `1` and `100`. Defaults to `20`. - * @opt_param string format Return only assets with the matching format. - * Acceptable values are: `BLOCKS`, `FBX`, `GLTF`, `GLTF2`, `OBJ`, `TILT`. - * @return Google_Service_PolyService_ListLikedAssetsResponse - */ - public function listUsersLikedassets($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_PolyService_ListLikedAssetsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/StartAssetImportResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/StartAssetImportResponse.php deleted file mode 100644 index 30aee98e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/StartAssetImportResponse.php +++ /dev/null @@ -1,65 +0,0 @@ -assetId = $assetId; - } - public function getAssetId() - { - return $this->assetId; - } - public function setAssetImportId($assetImportId) - { - $this->assetImportId = $assetImportId; - } - public function getAssetImportId() - { - return $this->assetImportId; - } - /** - * @param Google_Service_PolyService_AssetImportMessage - */ - public function setAssetImportMessages($assetImportMessages) - { - $this->assetImportMessages = $assetImportMessages; - } - /** - * @return Google_Service_PolyService_AssetImportMessage - */ - public function getAssetImportMessages() - { - return $this->assetImportMessages; - } - public function setPublishUrl($publishUrl) - { - $this->publishUrl = $publishUrl; - } - public function getPublishUrl() - { - return $this->publishUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/UserAsset.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/UserAsset.php deleted file mode 100644 index 51615fed..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/PolyService/UserAsset.php +++ /dev/null @@ -1,37 +0,0 @@ -asset = $asset; - } - /** - * @return Google_Service_PolyService_Asset - */ - public function getAsset() - { - return $this->asset; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction.php deleted file mode 100644 index afce055f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction.php +++ /dev/null @@ -1,205 +0,0 @@ - - * Lets you access a cloud hosted machine learning service that makes it easy to - * build smart apps

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Prediction extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** Manage your data and permissions in Google Cloud Storage. */ - const DEVSTORAGE_FULL_CONTROL = - "https://www.googleapis.com/auth/devstorage.full_control"; - /** View your data in Google Cloud Storage. */ - const DEVSTORAGE_READ_ONLY = - "https://www.googleapis.com/auth/devstorage.read_only"; - /** Manage your data in Google Cloud Storage. */ - const DEVSTORAGE_READ_WRITE = - "https://www.googleapis.com/auth/devstorage.read_write"; - /** Manage your data in the Google Prediction API. */ - const PREDICTION = - "https://www.googleapis.com/auth/prediction"; - - public $hostedmodels; - public $trainedmodels; - - /** - * Constructs the internal representation of the Prediction service. - * - * @param Google_Client $client - */ - public function __construct(Google_Client $client) - { - parent::__construct($client); - $this->rootUrl = 'https://www.googleapis.com/'; - $this->servicePath = 'prediction/v1.6/projects/'; - $this->version = 'v1.6'; - $this->serviceName = 'prediction'; - - $this->hostedmodels = new Google_Service_Prediction_Resource_Hostedmodels( - $this, - $this->serviceName, - 'hostedmodels', - array( - 'methods' => array( - 'predict' => array( - 'path' => '{project}/hostedmodels/{hostedModelName}/predict', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'hostedModelName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->trainedmodels = new Google_Service_Prediction_Resource_Trainedmodels( - $this, - $this->serviceName, - 'trainedmodels', - array( - 'methods' => array( - 'analyze' => array( - 'path' => '{project}/trainedmodels/{id}/analyze', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => '{project}/trainedmodels/{id}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{project}/trainedmodels/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/trainedmodels', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/trainedmodels/list', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'predict' => array( - 'path' => '{project}/trainedmodels/{id}/predict', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => '{project}/trainedmodels/{id}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/Analyze.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/Analyze.php deleted file mode 100644 index 8af1284f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/Analyze.php +++ /dev/null @@ -1,90 +0,0 @@ -dataDescription = $dataDescription; - } - /** - * @return Google_Service_Prediction_AnalyzeDataDescription - */ - public function getDataDescription() - { - return $this->dataDescription; - } - public function setErrors($errors) - { - $this->errors = $errors; - } - public function getErrors() - { - return $this->errors; - } - 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; - } - /** - * @param Google_Service_Prediction_AnalyzeModelDescription - */ - public function setModelDescription(Google_Service_Prediction_AnalyzeModelDescription $modelDescription) - { - $this->modelDescription = $modelDescription; - } - /** - * @return Google_Service_Prediction_AnalyzeModelDescription - */ - public function getModelDescription() - { - return $this->modelDescription; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/AnalyzeDataDescription.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/AnalyzeDataDescription.php deleted file mode 100644 index c838831d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/AnalyzeDataDescription.php +++ /dev/null @@ -1,54 +0,0 @@ -features = $features; - } - /** - * @return Google_Service_Prediction_AnalyzeDataDescriptionFeatures - */ - public function getFeatures() - { - return $this->features; - } - /** - * @param Google_Service_Prediction_AnalyzeDataDescriptionOutputFeature - */ - public function setOutputFeature(Google_Service_Prediction_AnalyzeDataDescriptionOutputFeature $outputFeature) - { - $this->outputFeature = $outputFeature; - } - /** - * @return Google_Service_Prediction_AnalyzeDataDescriptionOutputFeature - */ - public function getOutputFeature() - { - return $this->outputFeature; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/AnalyzeDataDescriptionFeatures.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/AnalyzeDataDescriptionFeatures.php deleted file mode 100644 index 73219911..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/AnalyzeDataDescriptionFeatures.php +++ /dev/null @@ -1,78 +0,0 @@ -categorical = $categorical; - } - /** - * @return Google_Service_Prediction_AnalyzeDataDescriptionFeaturesCategorical - */ - public function getCategorical() - { - return $this->categorical; - } - public function setIndex($index) - { - $this->index = $index; - } - public function getIndex() - { - return $this->index; - } - /** - * @param Google_Service_Prediction_AnalyzeDataDescriptionFeaturesNumeric - */ - public function setNumeric(Google_Service_Prediction_AnalyzeDataDescriptionFeaturesNumeric $numeric) - { - $this->numeric = $numeric; - } - /** - * @return Google_Service_Prediction_AnalyzeDataDescriptionFeaturesNumeric - */ - public function getNumeric() - { - return $this->numeric; - } - /** - * @param Google_Service_Prediction_AnalyzeDataDescriptionFeaturesText - */ - public function setText(Google_Service_Prediction_AnalyzeDataDescriptionFeaturesText $text) - { - $this->text = $text; - } - /** - * @return Google_Service_Prediction_AnalyzeDataDescriptionFeaturesText - */ - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/AnalyzeDataDescriptionFeaturesCategorical.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/AnalyzeDataDescriptionFeaturesCategorical.php deleted file mode 100644 index aa6b3bd6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/AnalyzeDataDescriptionFeaturesCategorical.php +++ /dev/null @@ -1,47 +0,0 @@ -count = $count; - } - public function getCount() - { - return $this->count; - } - /** - * @param Google_Service_Prediction_AnalyzeDataDescriptionFeaturesCategoricalValues - */ - public function setValues($values) - { - $this->values = $values; - } - /** - * @return Google_Service_Prediction_AnalyzeDataDescriptionFeaturesCategoricalValues - */ - public function getValues() - { - return $this->values; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/AnalyzeDataDescriptionFeaturesCategoricalValues.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/AnalyzeDataDescriptionFeaturesCategoricalValues.php deleted file mode 100644 index a84091a2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/AnalyzeDataDescriptionFeaturesCategoricalValues.php +++ /dev/null @@ -1,39 +0,0 @@ -count = $count; - } - public function getCount() - { - return $this->count; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/AnalyzeDataDescriptionFeaturesNumeric.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/AnalyzeDataDescriptionFeaturesNumeric.php deleted file mode 100644 index ef28a5a3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/AnalyzeDataDescriptionFeaturesNumeric.php +++ /dev/null @@ -1,48 +0,0 @@ -count = $count; - } - public function getCount() - { - return $this->count; - } - public function setMean($mean) - { - $this->mean = $mean; - } - public function getMean() - { - return $this->mean; - } - public function setVariance($variance) - { - $this->variance = $variance; - } - public function getVariance() - { - return $this->variance; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/AnalyzeDataDescriptionFeaturesText.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/AnalyzeDataDescriptionFeaturesText.php deleted file mode 100644 index a97f7fac..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/AnalyzeDataDescriptionFeaturesText.php +++ /dev/null @@ -1,30 +0,0 @@ -count = $count; - } - public function getCount() - { - return $this->count; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/AnalyzeDataDescriptionOutputFeature.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/AnalyzeDataDescriptionOutputFeature.php deleted file mode 100644 index ebff3782..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/AnalyzeDataDescriptionOutputFeature.php +++ /dev/null @@ -1,54 +0,0 @@ -numeric = $numeric; - } - /** - * @return Google_Service_Prediction_AnalyzeDataDescriptionOutputFeatureNumeric - */ - public function getNumeric() - { - return $this->numeric; - } - /** - * @param Google_Service_Prediction_AnalyzeDataDescriptionOutputFeatureText - */ - public function setText($text) - { - $this->text = $text; - } - /** - * @return Google_Service_Prediction_AnalyzeDataDescriptionOutputFeatureText - */ - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/AnalyzeDataDescriptionOutputFeatureNumeric.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/AnalyzeDataDescriptionOutputFeatureNumeric.php deleted file mode 100644 index 4e39058c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/AnalyzeDataDescriptionOutputFeatureNumeric.php +++ /dev/null @@ -1,48 +0,0 @@ -count = $count; - } - public function getCount() - { - return $this->count; - } - public function setMean($mean) - { - $this->mean = $mean; - } - public function getMean() - { - return $this->mean; - } - public function setVariance($variance) - { - $this->variance = $variance; - } - public function getVariance() - { - return $this->variance; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/AnalyzeDataDescriptionOutputFeatureText.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/AnalyzeDataDescriptionOutputFeatureText.php deleted file mode 100644 index 1ee1ad33..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/AnalyzeDataDescriptionOutputFeatureText.php +++ /dev/null @@ -1,39 +0,0 @@ -count = $count; - } - public function getCount() - { - return $this->count; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/AnalyzeModelDescription.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/AnalyzeModelDescription.php deleted file mode 100644 index 264408d4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/AnalyzeModelDescription.php +++ /dev/null @@ -1,55 +0,0 @@ -confusionMatrix = $confusionMatrix; - } - public function getConfusionMatrix() - { - return $this->confusionMatrix; - } - public function setConfusionMatrixRowTotals($confusionMatrixRowTotals) - { - $this->confusionMatrixRowTotals = $confusionMatrixRowTotals; - } - public function getConfusionMatrixRowTotals() - { - return $this->confusionMatrixRowTotals; - } - /** - * @param Google_Service_Prediction_Insert2 - */ - public function setModelinfo(Google_Service_Prediction_Insert2 $modelinfo) - { - $this->modelinfo = $modelinfo; - } - /** - * @return Google_Service_Prediction_Insert2 - */ - public function getModelinfo() - { - return $this->modelinfo; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/Input.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/Input.php deleted file mode 100644 index ce1d5916..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/Input.php +++ /dev/null @@ -1,37 +0,0 @@ -input = $input; - } - /** - * @return Google_Service_Prediction_InputInput - */ - public function getInput() - { - return $this->input; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/InputInput.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/InputInput.php deleted file mode 100644 index 815a769d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/InputInput.php +++ /dev/null @@ -1,31 +0,0 @@ -csvInstance = $csvInstance; - } - public function getCsvInstance() - { - return $this->csvInstance; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/Insert.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/Insert.php deleted file mode 100644 index 08454431..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/Insert.php +++ /dev/null @@ -1,101 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setModelType($modelType) - { - $this->modelType = $modelType; - } - public function getModelType() - { - return $this->modelType; - } - public function setSourceModel($sourceModel) - { - $this->sourceModel = $sourceModel; - } - public function getSourceModel() - { - return $this->sourceModel; - } - public function setStorageDataLocation($storageDataLocation) - { - $this->storageDataLocation = $storageDataLocation; - } - public function getStorageDataLocation() - { - return $this->storageDataLocation; - } - public function setStoragePMMLLocation($storagePMMLLocation) - { - $this->storagePMMLLocation = $storagePMMLLocation; - } - public function getStoragePMMLLocation() - { - return $this->storagePMMLLocation; - } - public function setStoragePMMLModelLocation($storagePMMLModelLocation) - { - $this->storagePMMLModelLocation = $storagePMMLModelLocation; - } - public function getStoragePMMLModelLocation() - { - return $this->storagePMMLModelLocation; - } - /** - * @param Google_Service_Prediction_InsertTrainingInstances - */ - public function setTrainingInstances($trainingInstances) - { - $this->trainingInstances = $trainingInstances; - } - /** - * @return Google_Service_Prediction_InsertTrainingInstances - */ - public function getTrainingInstances() - { - return $this->trainingInstances; - } - public function setUtility($utility) - { - $this->utility = $utility; - } - public function getUtility() - { - return $this->utility; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/Insert2.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/Insert2.php deleted file mode 100644 index 5c907ef0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/Insert2.php +++ /dev/null @@ -1,127 +0,0 @@ -created = $created; - } - public function getCreated() - { - return $this->created; - } - 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; - } - /** - * @param Google_Service_Prediction_Insert2ModelInfo - */ - public function setModelInfo(Google_Service_Prediction_Insert2ModelInfo $modelInfo) - { - $this->modelInfo = $modelInfo; - } - /** - * @return Google_Service_Prediction_Insert2ModelInfo - */ - public function getModelInfo() - { - return $this->modelInfo; - } - public function setModelType($modelType) - { - $this->modelType = $modelType; - } - public function getModelType() - { - return $this->modelType; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setStorageDataLocation($storageDataLocation) - { - $this->storageDataLocation = $storageDataLocation; - } - public function getStorageDataLocation() - { - return $this->storageDataLocation; - } - public function setStoragePMMLLocation($storagePMMLLocation) - { - $this->storagePMMLLocation = $storagePMMLLocation; - } - public function getStoragePMMLLocation() - { - return $this->storagePMMLLocation; - } - public function setStoragePMMLModelLocation($storagePMMLModelLocation) - { - $this->storagePMMLModelLocation = $storagePMMLModelLocation; - } - public function getStoragePMMLModelLocation() - { - return $this->storagePMMLModelLocation; - } - public function setTrainingComplete($trainingComplete) - { - $this->trainingComplete = $trainingComplete; - } - public function getTrainingComplete() - { - return $this->trainingComplete; - } - public function setTrainingStatus($trainingStatus) - { - $this->trainingStatus = $trainingStatus; - } - public function getTrainingStatus() - { - return $this->trainingStatus; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/Insert2ModelInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/Insert2ModelInfo.php deleted file mode 100644 index 09de3cba..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/Insert2ModelInfo.php +++ /dev/null @@ -1,75 +0,0 @@ -classWeightedAccuracy = $classWeightedAccuracy; - } - public function getClassWeightedAccuracy() - { - return $this->classWeightedAccuracy; - } - public function setClassificationAccuracy($classificationAccuracy) - { - $this->classificationAccuracy = $classificationAccuracy; - } - public function getClassificationAccuracy() - { - return $this->classificationAccuracy; - } - public function setMeanSquaredError($meanSquaredError) - { - $this->meanSquaredError = $meanSquaredError; - } - public function getMeanSquaredError() - { - return $this->meanSquaredError; - } - public function setModelType($modelType) - { - $this->modelType = $modelType; - } - public function getModelType() - { - return $this->modelType; - } - public function setNumberInstances($numberInstances) - { - $this->numberInstances = $numberInstances; - } - public function getNumberInstances() - { - return $this->numberInstances; - } - public function setNumberLabels($numberLabels) - { - $this->numberLabels = $numberLabels; - } - public function getNumberLabels() - { - return $this->numberLabels; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/InsertTrainingInstances.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/InsertTrainingInstances.php deleted file mode 100644 index 73b33cd9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/InsertTrainingInstances.php +++ /dev/null @@ -1,40 +0,0 @@ -csvInstance = $csvInstance; - } - public function getCsvInstance() - { - return $this->csvInstance; - } - public function setOutput($output) - { - $this->output = $output; - } - public function getOutput() - { - return $this->output; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/Output.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/Output.php deleted file mode 100644 index 44775c88..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/Output.php +++ /dev/null @@ -1,83 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setOutputLabel($outputLabel) - { - $this->outputLabel = $outputLabel; - } - public function getOutputLabel() - { - return $this->outputLabel; - } - /** - * @param Google_Service_Prediction_OutputOutputMulti - */ - public function setOutputMulti($outputMulti) - { - $this->outputMulti = $outputMulti; - } - /** - * @return Google_Service_Prediction_OutputOutputMulti - */ - public function getOutputMulti() - { - return $this->outputMulti; - } - public function setOutputValue($outputValue) - { - $this->outputValue = $outputValue; - } - public function getOutputValue() - { - return $this->outputValue; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/OutputOutputMulti.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/OutputOutputMulti.php deleted file mode 100644 index 2f990cf9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/OutputOutputMulti.php +++ /dev/null @@ -1,39 +0,0 @@ -label = $label; - } - public function getLabel() - { - return $this->label; - } - public function setScore($score) - { - $this->score = $score; - } - public function getScore() - { - return $this->score; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/PredictionList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/PredictionList.php deleted file mode 100644 index 71bd0d61..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/PredictionList.php +++ /dev/null @@ -1,65 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Prediction_Insert2 - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/Resource/Hostedmodels.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/Resource/Hostedmodels.php deleted file mode 100644 index 097f7a76..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/Resource/Hostedmodels.php +++ /dev/null @@ -1,44 +0,0 @@ - - * $predictionService = new Google_Service_Prediction(...); - * $hostedmodels = $predictionService->hostedmodels; - * - */ -class Google_Service_Prediction_Resource_Hostedmodels extends Google_Service_Resource -{ - /** - * Submit input and request an output against a hosted model. - * (hostedmodels.predict) - * - * @param string $project The project associated with the model. - * @param string $hostedModelName The name of a hosted model. - * @param Google_Service_Prediction_Input $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Prediction_Output - */ - public function predict($project, $hostedModelName, Google_Service_Prediction_Input $postBody, $optParams = array()) - { - $params = array('project' => $project, 'hostedModelName' => $hostedModelName, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('predict', array($params), "Google_Service_Prediction_Output"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/Resource/Trainedmodels.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/Resource/Trainedmodels.php deleted file mode 100644 index 53662292..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/Resource/Trainedmodels.php +++ /dev/null @@ -1,130 +0,0 @@ - - * $predictionService = new Google_Service_Prediction(...); - * $trainedmodels = $predictionService->trainedmodels; - * - */ -class Google_Service_Prediction_Resource_Trainedmodels extends Google_Service_Resource -{ - /** - * Get analysis of the model and the data the model was trained on. - * (trainedmodels.analyze) - * - * @param string $project The project associated with the model. - * @param string $id The unique name for the predictive model. - * @param array $optParams Optional parameters. - * @return Google_Service_Prediction_Analyze - */ - public function analyze($project, $id, $optParams = array()) - { - $params = array('project' => $project, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('analyze', array($params), "Google_Service_Prediction_Analyze"); - } - /** - * Delete a trained model. (trainedmodels.delete) - * - * @param string $project The project associated with the model. - * @param string $id The unique name for the predictive model. - * @param array $optParams Optional parameters. - */ - public function delete($project, $id, $optParams = array()) - { - $params = array('project' => $project, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Check training status of your model. (trainedmodels.get) - * - * @param string $project The project associated with the model. - * @param string $id The unique name for the predictive model. - * @param array $optParams Optional parameters. - * @return Google_Service_Prediction_Insert2 - */ - public function get($project, $id, $optParams = array()) - { - $params = array('project' => $project, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Prediction_Insert2"); - } - /** - * Train a Prediction API model. (trainedmodels.insert) - * - * @param string $project The project associated with the model. - * @param Google_Service_Prediction_Insert $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Prediction_Insert2 - */ - public function insert($project, Google_Service_Prediction_Insert $postBody, $optParams = array()) - { - $params = array('project' => $project, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Prediction_Insert2"); - } - /** - * List available models. (trainedmodels.listTrainedmodels) - * - * @param string $project The project associated with the model. - * @param array $optParams Optional parameters. - * - * @opt_param string maxResults Maximum number of results to return. - * @opt_param string pageToken Pagination token. - * @return Google_Service_Prediction_PredictionList - */ - public function listTrainedmodels($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Prediction_PredictionList"); - } - /** - * Submit model id and request a prediction. (trainedmodels.predict) - * - * @param string $project The project associated with the model. - * @param string $id The unique name for the predictive model. - * @param Google_Service_Prediction_Input $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Prediction_Output - */ - public function predict($project, $id, Google_Service_Prediction_Input $postBody, $optParams = array()) - { - $params = array('project' => $project, 'id' => $id, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('predict', array($params), "Google_Service_Prediction_Output"); - } - /** - * Add new data to a trained model. (trainedmodels.update) - * - * @param string $project The project associated with the model. - * @param string $id The unique name for the predictive model. - * @param Google_Service_Prediction_Update $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Prediction_Insert2 - */ - public function update($project, $id, Google_Service_Prediction_Update $postBody, $optParams = array()) - { - $params = array('project' => $project, 'id' => $id, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Prediction_Insert2"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/Update.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/Update.php deleted file mode 100644 index 41146f85..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Prediction/Update.php +++ /dev/null @@ -1,40 +0,0 @@ -csvInstance = $csvInstance; - } - public function getCsvInstance() - { - return $this->csvInstance; - } - public function setOutput($output) - { - $this->output = $output; - } - public function getOutput() - { - return $this->output; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon.php deleted file mode 100644 index ef1f878d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon.php +++ /dev/null @@ -1,355 +0,0 @@ - - * Registers, manages, indexes, and searches beacons.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Proximitybeacon extends Google_Service -{ - /** View and modify your beacons. */ - const USERLOCATION_BEACON_REGISTRY = - "https://www.googleapis.com/auth/userlocation.beacon.registry"; - - public $beaconinfo; - public $beacons; - public $beacons_attachments; - public $beacons_diagnostics; - public $namespaces; - public $v1beta1; - - /** - * Constructs the internal representation of the Proximitybeacon service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://proximitybeacon.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1beta1'; - $this->serviceName = 'proximitybeacon'; - - $this->beaconinfo = new Google_Service_Proximitybeacon_Resource_Beaconinfo( - $this, - $this->serviceName, - 'beaconinfo', - array( - 'methods' => array( - 'getforobserved' => array( - 'path' => 'v1beta1/beaconinfo:getforobserved', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->beacons = new Google_Service_Proximitybeacon_Resource_Beacons( - $this, - $this->serviceName, - 'beacons', - array( - 'methods' => array( - 'activate' => array( - 'path' => 'v1beta1/{+beaconName}:activate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'beaconName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'projectId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'deactivate' => array( - 'path' => 'v1beta1/{+beaconName}:deactivate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'beaconName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'projectId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'decommission' => array( - 'path' => 'v1beta1/{+beaconName}:decommission', - 'httpMethod' => 'POST', - 'parameters' => array( - 'beaconName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'projectId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => 'v1beta1/{+beaconName}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'beaconName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'projectId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'v1beta1/{+beaconName}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'beaconName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'projectId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'v1beta1/beacons', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'q' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'projectId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'register' => array( - 'path' => 'v1beta1/beacons:register', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'v1beta1/{+beaconName}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'beaconName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'projectId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->beacons_attachments = new Google_Service_Proximitybeacon_Resource_BeaconsAttachments( - $this, - $this->serviceName, - 'attachments', - array( - 'methods' => array( - 'batchDelete' => array( - 'path' => 'v1beta1/{+beaconName}/attachments:batchDelete', - 'httpMethod' => 'POST', - 'parameters' => array( - 'beaconName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'projectId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'namespacedType' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'create' => array( - 'path' => 'v1beta1/{+beaconName}/attachments', - 'httpMethod' => 'POST', - 'parameters' => array( - 'beaconName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'projectId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => 'v1beta1/{+attachmentName}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'attachmentName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'projectId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'v1beta1/{+beaconName}/attachments', - 'httpMethod' => 'GET', - 'parameters' => array( - 'beaconName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'projectId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'namespacedType' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->beacons_diagnostics = new Google_Service_Proximitybeacon_Resource_BeaconsDiagnostics( - $this, - $this->serviceName, - 'diagnostics', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1beta1/{+beaconName}/diagnostics', - 'httpMethod' => 'GET', - 'parameters' => array( - 'beaconName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'alertFilter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'projectId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->namespaces = new Google_Service_Proximitybeacon_Resource_Namespaces( - $this, - $this->serviceName, - 'namespaces', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1beta1/namespaces', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'v1beta1/{+namespaceName}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'namespaceName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'projectId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->v1beta1 = new Google_Service_Proximitybeacon_Resource_V1beta1( - $this, - $this->serviceName, - 'v1beta1', - array( - 'methods' => array( - 'getEidparams' => array( - 'path' => 'v1beta1/eidparams', - 'httpMethod' => 'GET', - 'parameters' => array(), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/AdvertisedId.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/AdvertisedId.php deleted file mode 100644 index 235cd350..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/AdvertisedId.php +++ /dev/null @@ -1,39 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/AttachmentInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/AttachmentInfo.php deleted file mode 100644 index 6fe7ea6e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/AttachmentInfo.php +++ /dev/null @@ -1,48 +0,0 @@ -data = $data; - } - public function getData() - { - return $this->data; - } - public function setMaxDistanceMeters($maxDistanceMeters) - { - $this->maxDistanceMeters = $maxDistanceMeters; - } - public function getMaxDistanceMeters() - { - return $this->maxDistanceMeters; - } - public function setNamespacedType($namespacedType) - { - $this->namespacedType = $namespacedType; - } - public function getNamespacedType() - { - return $this->namespacedType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/Beacon.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/Beacon.php deleted file mode 100644 index b0cbe7aa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/Beacon.php +++ /dev/null @@ -1,148 +0,0 @@ -advertisedId = $advertisedId; - } - /** - * @return Google_Service_Proximitybeacon_AdvertisedId - */ - public function getAdvertisedId() - { - return $this->advertisedId; - } - public function setBeaconName($beaconName) - { - $this->beaconName = $beaconName; - } - public function getBeaconName() - { - return $this->beaconName; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - /** - * @param Google_Service_Proximitybeacon_EphemeralIdRegistration - */ - public function setEphemeralIdRegistration(Google_Service_Proximitybeacon_EphemeralIdRegistration $ephemeralIdRegistration) - { - $this->ephemeralIdRegistration = $ephemeralIdRegistration; - } - /** - * @return Google_Service_Proximitybeacon_EphemeralIdRegistration - */ - public function getEphemeralIdRegistration() - { - return $this->ephemeralIdRegistration; - } - public function setExpectedStability($expectedStability) - { - $this->expectedStability = $expectedStability; - } - public function getExpectedStability() - { - return $this->expectedStability; - } - /** - * @param Google_Service_Proximitybeacon_IndoorLevel - */ - public function setIndoorLevel(Google_Service_Proximitybeacon_IndoorLevel $indoorLevel) - { - $this->indoorLevel = $indoorLevel; - } - /** - * @return Google_Service_Proximitybeacon_IndoorLevel - */ - public function getIndoorLevel() - { - return $this->indoorLevel; - } - /** - * @param Google_Service_Proximitybeacon_LatLng - */ - public function setLatLng(Google_Service_Proximitybeacon_LatLng $latLng) - { - $this->latLng = $latLng; - } - /** - * @return Google_Service_Proximitybeacon_LatLng - */ - public function getLatLng() - { - return $this->latLng; - } - public function setPlaceId($placeId) - { - $this->placeId = $placeId; - } - public function getPlaceId() - { - return $this->placeId; - } - public function setProperties($properties) - { - $this->properties = $properties; - } - public function getProperties() - { - return $this->properties; - } - public function setProvisioningKey($provisioningKey) - { - $this->provisioningKey = $provisioningKey; - } - public function getProvisioningKey() - { - return $this->provisioningKey; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/BeaconAttachment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/BeaconAttachment.php deleted file mode 100644 index 1163b7eb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/BeaconAttachment.php +++ /dev/null @@ -1,66 +0,0 @@ -attachmentName = $attachmentName; - } - public function getAttachmentName() - { - return $this->attachmentName; - } - public function setCreationTimeMs($creationTimeMs) - { - $this->creationTimeMs = $creationTimeMs; - } - public function getCreationTimeMs() - { - return $this->creationTimeMs; - } - public function setData($data) - { - $this->data = $data; - } - public function getData() - { - return $this->data; - } - public function setMaxDistanceMeters($maxDistanceMeters) - { - $this->maxDistanceMeters = $maxDistanceMeters; - } - public function getMaxDistanceMeters() - { - return $this->maxDistanceMeters; - } - public function setNamespacedType($namespacedType) - { - $this->namespacedType = $namespacedType; - } - public function getNamespacedType() - { - return $this->namespacedType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/BeaconInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/BeaconInfo.php deleted file mode 100644 index 37f85c46..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/BeaconInfo.php +++ /dev/null @@ -1,63 +0,0 @@ -advertisedId = $advertisedId; - } - /** - * @return Google_Service_Proximitybeacon_AdvertisedId - */ - public function getAdvertisedId() - { - return $this->advertisedId; - } - /** - * @param Google_Service_Proximitybeacon_AttachmentInfo - */ - public function setAttachments($attachments) - { - $this->attachments = $attachments; - } - /** - * @return Google_Service_Proximitybeacon_AttachmentInfo - */ - public function getAttachments() - { - return $this->attachments; - } - public function setBeaconName($beaconName) - { - $this->beaconName = $beaconName; - } - public function getBeaconName() - { - return $this->beaconName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/Date.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/Date.php deleted file mode 100644 index 9e03322e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/Date.php +++ /dev/null @@ -1,48 +0,0 @@ -day = $day; - } - public function getDay() - { - return $this->day; - } - public function setMonth($month) - { - $this->month = $month; - } - public function getMonth() - { - return $this->month; - } - public function setYear($year) - { - $this->year = $year; - } - public function getYear() - { - return $this->year; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/DeleteAttachmentsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/DeleteAttachmentsResponse.php deleted file mode 100644 index b2835e56..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/DeleteAttachmentsResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -numDeleted = $numDeleted; - } - public function getNumDeleted() - { - return $this->numDeleted; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/Diagnostics.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/Diagnostics.php deleted file mode 100644 index caea3974..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/Diagnostics.php +++ /dev/null @@ -1,56 +0,0 @@ -alerts = $alerts; - } - public function getAlerts() - { - return $this->alerts; - } - public function setBeaconName($beaconName) - { - $this->beaconName = $beaconName; - } - public function getBeaconName() - { - return $this->beaconName; - } - /** - * @param Google_Service_Proximitybeacon_Date - */ - public function setEstimatedLowBatteryDate(Google_Service_Proximitybeacon_Date $estimatedLowBatteryDate) - { - $this->estimatedLowBatteryDate = $estimatedLowBatteryDate; - } - /** - * @return Google_Service_Proximitybeacon_Date - */ - public function getEstimatedLowBatteryDate() - { - return $this->estimatedLowBatteryDate; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/EphemeralIdRegistration.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/EphemeralIdRegistration.php deleted file mode 100644 index 2753256c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/EphemeralIdRegistration.php +++ /dev/null @@ -1,75 +0,0 @@ -beaconEcdhPublicKey = $beaconEcdhPublicKey; - } - public function getBeaconEcdhPublicKey() - { - return $this->beaconEcdhPublicKey; - } - public function setBeaconIdentityKey($beaconIdentityKey) - { - $this->beaconIdentityKey = $beaconIdentityKey; - } - public function getBeaconIdentityKey() - { - return $this->beaconIdentityKey; - } - public function setInitialClockValue($initialClockValue) - { - $this->initialClockValue = $initialClockValue; - } - public function getInitialClockValue() - { - return $this->initialClockValue; - } - public function setInitialEid($initialEid) - { - $this->initialEid = $initialEid; - } - public function getInitialEid() - { - return $this->initialEid; - } - public function setRotationPeriodExponent($rotationPeriodExponent) - { - $this->rotationPeriodExponent = $rotationPeriodExponent; - } - public function getRotationPeriodExponent() - { - return $this->rotationPeriodExponent; - } - public function setServiceEcdhPublicKey($serviceEcdhPublicKey) - { - $this->serviceEcdhPublicKey = $serviceEcdhPublicKey; - } - public function getServiceEcdhPublicKey() - { - return $this->serviceEcdhPublicKey; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/EphemeralIdRegistrationParams.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/EphemeralIdRegistrationParams.php deleted file mode 100644 index 2b5c9f39..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/EphemeralIdRegistrationParams.php +++ /dev/null @@ -1,48 +0,0 @@ -maxRotationPeriodExponent = $maxRotationPeriodExponent; - } - public function getMaxRotationPeriodExponent() - { - return $this->maxRotationPeriodExponent; - } - public function setMinRotationPeriodExponent($minRotationPeriodExponent) - { - $this->minRotationPeriodExponent = $minRotationPeriodExponent; - } - public function getMinRotationPeriodExponent() - { - return $this->minRotationPeriodExponent; - } - public function setServiceEcdhPublicKey($serviceEcdhPublicKey) - { - $this->serviceEcdhPublicKey = $serviceEcdhPublicKey; - } - public function getServiceEcdhPublicKey() - { - return $this->serviceEcdhPublicKey; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/GetInfoForObservedBeaconsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/GetInfoForObservedBeaconsRequest.php deleted file mode 100644 index 4f654970..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/GetInfoForObservedBeaconsRequest.php +++ /dev/null @@ -1,47 +0,0 @@ -namespacedTypes = $namespacedTypes; - } - public function getNamespacedTypes() - { - return $this->namespacedTypes; - } - /** - * @param Google_Service_Proximitybeacon_Observation - */ - public function setObservations($observations) - { - $this->observations = $observations; - } - /** - * @return Google_Service_Proximitybeacon_Observation - */ - public function getObservations() - { - return $this->observations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/GetInfoForObservedBeaconsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/GetInfoForObservedBeaconsResponse.php deleted file mode 100644 index 523e3f97..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/GetInfoForObservedBeaconsResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -beacons = $beacons; - } - /** - * @return Google_Service_Proximitybeacon_BeaconInfo - */ - public function getBeacons() - { - return $this->beacons; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/IndoorLevel.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/IndoorLevel.php deleted file mode 100644 index e64926a7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/IndoorLevel.php +++ /dev/null @@ -1,30 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/LatLng.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/LatLng.php deleted file mode 100644 index 18f1d770..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/LatLng.php +++ /dev/null @@ -1,39 +0,0 @@ -latitude = $latitude; - } - public function getLatitude() - { - return $this->latitude; - } - public function setLongitude($longitude) - { - $this->longitude = $longitude; - } - public function getLongitude() - { - return $this->longitude; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/ListBeaconAttachmentsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/ListBeaconAttachmentsResponse.php deleted file mode 100644 index f2a6bd58..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/ListBeaconAttachmentsResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -attachments = $attachments; - } - /** - * @return Google_Service_Proximitybeacon_BeaconAttachment - */ - public function getAttachments() - { - return $this->attachments; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/ListBeaconsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/ListBeaconsResponse.php deleted file mode 100644 index b4602339..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/ListBeaconsResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -beacons = $beacons; - } - /** - * @return Google_Service_Proximitybeacon_Beacon - */ - public function getBeacons() - { - return $this->beacons; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setTotalCount($totalCount) - { - $this->totalCount = $totalCount; - } - public function getTotalCount() - { - return $this->totalCount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/ListDiagnosticsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/ListDiagnosticsResponse.php deleted file mode 100644 index 2352d328..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/ListDiagnosticsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -diagnostics = $diagnostics; - } - /** - * @return Google_Service_Proximitybeacon_Diagnostics - */ - public function getDiagnostics() - { - return $this->diagnostics; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/ListNamespacesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/ListNamespacesResponse.php deleted file mode 100644 index 3948837a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/ListNamespacesResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -namespaces = $namespaces; - } - /** - * @return Google_Service_Proximitybeacon_ProximitybeaconNamespace - */ - public function getNamespaces() - { - return $this->namespaces; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/Observation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/Observation.php deleted file mode 100644 index d19e88ce..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/Observation.php +++ /dev/null @@ -1,55 +0,0 @@ -advertisedId = $advertisedId; - } - /** - * @return Google_Service_Proximitybeacon_AdvertisedId - */ - public function getAdvertisedId() - { - return $this->advertisedId; - } - public function setTelemetry($telemetry) - { - $this->telemetry = $telemetry; - } - public function getTelemetry() - { - return $this->telemetry; - } - public function setTimestampMs($timestampMs) - { - $this->timestampMs = $timestampMs; - } - public function getTimestampMs() - { - return $this->timestampMs; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/ProximitybeaconEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/ProximitybeaconEmpty.php deleted file mode 100644 index 1383ec32..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/ProximitybeaconEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -namespaceName = $namespaceName; - } - public function getNamespaceName() - { - return $this->namespaceName; - } - public function setServingVisibility($servingVisibility) - { - $this->servingVisibility = $servingVisibility; - } - public function getServingVisibility() - { - return $this->servingVisibility; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/Resource/Beaconinfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/Resource/Beaconinfo.php deleted file mode 100644 index e9886b98..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/Resource/Beaconinfo.php +++ /dev/null @@ -1,45 +0,0 @@ - - * $proximitybeaconService = new Google_Service_Proximitybeacon(...); - * $beaconinfo = $proximitybeaconService->beaconinfo; - * - */ -class Google_Service_Proximitybeacon_Resource_Beaconinfo extends Google_Service_Resource -{ - /** - * Given one or more beacon observations, returns any beacon information and - * attachments accessible to your application. Authorize by using the [API - * key](https://developers.google.com/beacons/proximity/get- - * started#request_a_browser_api_key) for the application. - * (beaconinfo.getforobserved) - * - * @param Google_Service_Proximitybeacon_GetInfoForObservedBeaconsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Proximitybeacon_GetInfoForObservedBeaconsResponse - */ - public function getforobserved(Google_Service_Proximitybeacon_GetInfoForObservedBeaconsRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('getforobserved', array($params), "Google_Service_Proximitybeacon_GetInfoForObservedBeaconsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/Resource/Beacons.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/Resource/Beacons.php deleted file mode 100644 index 803ecd06..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/Resource/Beacons.php +++ /dev/null @@ -1,316 +0,0 @@ - - * $proximitybeaconService = new Google_Service_Proximitybeacon(...); - * $beacons = $proximitybeaconService->beacons; - * - */ -class Google_Service_Proximitybeacon_Resource_Beacons extends Google_Service_Resource -{ - /** - * Activates a beacon. A beacon that is active will return information and - * attachment data when queried via `beaconinfo.getforobserved`. Calling this - * method on an already active beacon will do nothing (but will return a - * successful response code). - * - * Authenticate using an [OAuth access - * token](https://developers.google.com/identity/protocols/OAuth2) from a - * signed-in user with **Is owner** or **Can edit** permissions in the Google - * Developers Console project. (beacons.activate) - * - * @param string $beaconName Beacon that should be activated. A beacon name has - * the format "beacons/N!beaconId" where the beaconId is the base16 ID broadcast - * by the beacon and N is a code for the beacon's type. Possible values are `3` - * for Eddystone-UID, `4` for Eddystone-EID, `1` for iBeacon, or `5` for - * AltBeacon. For Eddystone-EID beacons, you may use either the current EID or - * the beacon's "stable" UID. Required. - * @param array $optParams Optional parameters. - * - * @opt_param string projectId The project id of the beacon to activate. If the - * project id is not specified then the project making the request is used. The - * project id must match the project that owns the beacon. Optional. - * @return Google_Service_Proximitybeacon_ProximitybeaconEmpty - */ - public function activate($beaconName, $optParams = array()) - { - $params = array('beaconName' => $beaconName); - $params = array_merge($params, $optParams); - return $this->call('activate', array($params), "Google_Service_Proximitybeacon_ProximitybeaconEmpty"); - } - /** - * Deactivates a beacon. Once deactivated, the API will not return information - * nor attachment data for the beacon when queried via - * `beaconinfo.getforobserved`. Calling this method on an already inactive - * beacon will do nothing (but will return a successful response code). - * - * Authenticate using an [OAuth access - * token](https://developers.google.com/identity/protocols/OAuth2) from a - * signed-in user with **Is owner** or **Can edit** permissions in the Google - * Developers Console project. (beacons.deactivate) - * - * @param string $beaconName Beacon that should be deactivated. A beacon name - * has the format "beacons/N!beaconId" where the beaconId is the base16 ID - * broadcast by the beacon and N is a code for the beacon's type. Possible - * values are `3` for Eddystone-UID, `4` for Eddystone-EID, `1` for iBeacon, or - * `5` for AltBeacon. For Eddystone-EID beacons, you may use either the current - * EID or the beacon's "stable" UID. Required. - * @param array $optParams Optional parameters. - * - * @opt_param string projectId The project id of the beacon to deactivate. If - * the project id is not specified then the project making the request is used. - * The project id must match the project that owns the beacon. Optional. - * @return Google_Service_Proximitybeacon_ProximitybeaconEmpty - */ - public function deactivate($beaconName, $optParams = array()) - { - $params = array('beaconName' => $beaconName); - $params = array_merge($params, $optParams); - return $this->call('deactivate', array($params), "Google_Service_Proximitybeacon_ProximitybeaconEmpty"); - } - /** - * Decommissions the specified beacon in the service. This beacon will no longer - * be returned from `beaconinfo.getforobserved`. This operation is permanent -- - * you will not be able to re-register a beacon with this ID again. - * - * Authenticate using an [OAuth access - * token](https://developers.google.com/identity/protocols/OAuth2) from a - * signed-in user with **Is owner** or **Can edit** permissions in the Google - * Developers Console project. (beacons.decommission) - * - * @param string $beaconName Beacon that should be decommissioned. A beacon name - * has the format "beacons/N!beaconId" where the beaconId is the base16 ID - * broadcast by the beacon and N is a code for the beacon's type. Possible - * values are `3` for Eddystone-UID, `4` for Eddystone-EID, `1` for iBeacon, or - * `5` for AltBeacon. For Eddystone-EID beacons, you may use either the current - * EID of the beacon's "stable" UID. Required. - * @param array $optParams Optional parameters. - * - * @opt_param string projectId The project id of the beacon to decommission. If - * the project id is not specified then the project making the request is used. - * The project id must match the project that owns the beacon. Optional. - * @return Google_Service_Proximitybeacon_ProximitybeaconEmpty - */ - public function decommission($beaconName, $optParams = array()) - { - $params = array('beaconName' => $beaconName); - $params = array_merge($params, $optParams); - return $this->call('decommission', array($params), "Google_Service_Proximitybeacon_ProximitybeaconEmpty"); - } - /** - * Deletes the specified beacon including all diagnostics data for the beacon as - * well as any attachments on the beacon (including those belonging to other - * projects). This operation cannot be undone. - * - * Authenticate using an [OAuth access - * token](https://developers.google.com/identity/protocols/OAuth2) from a - * signed-in user with **Is owner** or **Can edit** permissions in the Google - * Developers Console project. (beacons.delete) - * - * @param string $beaconName Beacon that should be deleted. A beacon name has - * the format "beacons/N!beaconId" where the beaconId is the base16 ID broadcast - * by the beacon and N is a code for the beacon's type. Possible values are `3` - * for Eddystone-UID, `4` for Eddystone-EID, `1` for iBeacon, or `5` for - * AltBeacon. For Eddystone-EID beacons, you may use either the current EID or - * the beacon's "stable" UID. Required. - * @param array $optParams Optional parameters. - * - * @opt_param string projectId The project id of the beacon to delete. If not - * provided, the project that is making the request is used. Optional. - * @return Google_Service_Proximitybeacon_ProximitybeaconEmpty - */ - public function delete($beaconName, $optParams = array()) - { - $params = array('beaconName' => $beaconName); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Proximitybeacon_ProximitybeaconEmpty"); - } - /** - * Returns detailed information about the specified beacon. - * - * Authenticate using an [OAuth access - * token](https://developers.google.com/identity/protocols/OAuth2) from a - * signed-in user with **viewer**, **Is owner** or **Can edit** permissions in - * the Google Developers Console project. - * - * Requests may supply an Eddystone-EID beacon name in the form: - * `beacons/4!beaconId` where the `beaconId` is the base16 ephemeral ID - * broadcast by the beacon. The returned `Beacon` object will contain the - * beacon's stable Eddystone-UID. Clients not authorized to resolve the beacon's - * ephemeral Eddystone-EID broadcast will receive an error. (beacons.get) - * - * @param string $beaconName Resource name of this beacon. A beacon name has the - * format "beacons/N!beaconId" where the beaconId is the base16 ID broadcast by - * the beacon and N is a code for the beacon's type. Possible values are `3` for - * Eddystone-UID, `4` for Eddystone-EID, `1` for iBeacon, or `5` for AltBeacon. - * For Eddystone-EID beacons, you may use either the current EID or the beacon's - * "stable" UID. Required. - * @param array $optParams Optional parameters. - * - * @opt_param string projectId The project id of the beacon to request. If the - * project id is not specified then the project making the request is used. The - * project id must match the project that owns the beacon. Optional. - * @return Google_Service_Proximitybeacon_Beacon - */ - public function get($beaconName, $optParams = array()) - { - $params = array('beaconName' => $beaconName); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Proximitybeacon_Beacon"); - } - /** - * Searches the beacon registry for beacons that match the given search - * criteria. Only those beacons that the client has permission to list will be - * returned. - * - * Authenticate using an [OAuth access - * token](https://developers.google.com/identity/protocols/OAuth2) from a - * signed-in user with **viewer**, **Is owner** or **Can edit** permissions in - * the Google Developers Console project. (beacons.listBeacons) - * - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A pagination token obtained from a previous - * request to list beacons. - * @opt_param string q Filter query string that supports the following field - * filters: - * - * * **description:`""`** For example: **description:"Room 3"** Returns - * beacons whose description matches tokens in the string "Room 3" (not - * necessarily that exact string). The string must be double-quoted. * - * **status:``** For example: **status:active** Returns beacons whose status - * matches the given value. Values must be one of the Beacon.Status enum - * values (case insensitive). Accepts multiple filters which will be combined - * with OR logic. * **stability:``** For example: **stability:mobile** - * Returns beacons whose expected stability matches the given value. Values - * must be one of the Beacon.Stability enum values (case insensitive). Accepts - * multiple filters which will be combined with OR logic. * **place\_id:`""`** - * For example: **place\_id:"ChIJVSZzVR8FdkgRXGmmm6SslKw="** Returns beacons - * explicitly registered at the given place, expressed as a Place ID obtained - * from [Google Places API](/places/place-id). Does not match places inside - * the given place. Does not consider the beacon's actual location (which may - * be different from its registered place). Accepts multiple filters that will - * be combined with OR logic. The place ID must be double-quoted. * - * **registration\_time`[<|>|<=|>=]`** For example: - * **registration\_time>=1433116800** Returns beacons whose registration time - * matches the given filter. Supports the operators: <, >, <=, and >=. - * Timestamp must be expressed as an integer number of seconds since midnight - * January 1, 1970 UTC. Accepts at most two filters that will be combined with - * AND logic, to support "between" semantics. If more than two are supplied, - * the latter ones are ignored. * **lat:` lng: radius:`** For example: - * **lat:51.1232343 lng:-1.093852 radius:1000** Returns beacons whose - * registered location is within the given circle. When any of these fields - * are given, all are required. Latitude and longitude must be decimal degrees - * between -90.0 and 90.0 and between -180.0 and 180.0 respectively. Radius - * must be an integer number of meters between 10 and 1,000,000 (1000 km). * - * **property:`"="`** For example: **property:"battery-type=CR2032"** - * Returns beacons which have a property of the given name and value. Supports - * multiple filters which will be combined with OR logic. The entire - * name=value string must be double-quoted as one string. * - * **attachment\_type:`""`** For example: **attachment_type:"my-namespace/my- - * type"** Returns beacons having at least one attachment of the given - * namespaced type. Supports "any within this namespace" via the partial - * wildcard syntax: "my-namespace". Supports multiple filters which will be - * combined with OR logic. The string must be double-quoted. * - * **indoor\_level:`""`** For example: **indoor\_level:"1"** Returns beacons - * which are located on the given indoor level. Accepts multiple filters that - * will be combined with OR logic. - * - * Multiple filters on the same field are combined with OR logic (except - * registration_time which is combined with AND logic). Multiple filters on - * different fields are combined with AND logic. Filters should be separated by - * spaces. - * - * As with any HTTP query string parameter, the whole filter expression must be - * URL-encoded. - * - * Example REST request: `GET - * /v1beta1/beacons?q=status:active%20lat:51.123%20lng:-1.095%20radius:1000` - * @opt_param int pageSize The maximum number of records to return for this - * request, up to a server-defined upper limit. - * @opt_param string projectId The project id to list beacons under. If not - * present then the project credential that made the request is used as the - * project. Optional. - * @return Google_Service_Proximitybeacon_ListBeaconsResponse - */ - public function listBeacons($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Proximitybeacon_ListBeaconsResponse"); - } - /** - * Registers a previously unregistered beacon given its `advertisedId`. These - * IDs are unique within the system. An ID can be registered only once. - * - * Authenticate using an [OAuth access - * token](https://developers.google.com/identity/protocols/OAuth2) from a - * signed-in user with **Is owner** or **Can edit** permissions in the Google - * Developers Console project. (beacons.register) - * - * @param Google_Service_Proximitybeacon_Beacon $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string projectId The project id of the project the beacon will be - * registered to. If the project id is not specified then the project making the - * request is used. Optional. - * @return Google_Service_Proximitybeacon_Beacon - */ - public function register(Google_Service_Proximitybeacon_Beacon $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('register', array($params), "Google_Service_Proximitybeacon_Beacon"); - } - /** - * Updates the information about the specified beacon. **Any field that you do - * not populate in the submitted beacon will be permanently erased**, so you - * should follow the "read, modify, write" pattern to avoid inadvertently - * destroying data. - * - * Changes to the beacon status via this method will be silently ignored. To - * update beacon status, use the separate methods on this API for activation, - * deactivation, and decommissioning. Authenticate using an [OAuth access - * token](https://developers.google.com/identity/protocols/OAuth2) from a - * signed-in user with **Is owner** or **Can edit** permissions in the Google - * Developers Console project. (beacons.update) - * - * @param string $beaconName Resource name of this beacon. A beacon name has the - * format "beacons/N!beaconId" where the beaconId is the base16 ID broadcast by - * the beacon and N is a code for the beacon's type. Possible values are `3` for - * Eddystone, `1` for iBeacon, or `5` for AltBeacon. - * - * This field must be left empty when registering. After reading a beacon, - * clients can use the name for future operations. - * @param Google_Service_Proximitybeacon_Beacon $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string projectId The project id of the beacon to update. If the - * project id is not specified then the project making the request is used. The - * project id must match the project that owns the beacon. Optional. - * @return Google_Service_Proximitybeacon_Beacon - */ - public function update($beaconName, Google_Service_Proximitybeacon_Beacon $postBody, $optParams = array()) - { - $params = array('beaconName' => $beaconName, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Proximitybeacon_Beacon"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/Resource/BeaconsAttachments.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/Resource/BeaconsAttachments.php deleted file mode 100644 index b4cad00c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/Resource/BeaconsAttachments.php +++ /dev/null @@ -1,170 +0,0 @@ - - * $proximitybeaconService = new Google_Service_Proximitybeacon(...); - * $attachments = $proximitybeaconService->attachments; - * - */ -class Google_Service_Proximitybeacon_Resource_BeaconsAttachments extends Google_Service_Resource -{ - /** - * Deletes multiple attachments on a given beacon. This operation is permanent - * and cannot be undone. - * - * You can optionally specify `namespacedType` to choose which attachments - * should be deleted. If you do not specify `namespacedType`, all your - * attachments on the given beacon will be deleted. You also may explicitly - * specify `*` to delete all. - * - * Authenticate using an [OAuth access - * token](https://developers.google.com/identity/protocols/OAuth2) from a - * signed-in user with **Is owner** or **Can edit** permissions in the Google - * Developers Console project. (attachments.batchDelete) - * - * @param string $beaconName The beacon whose attachments should be deleted. A - * beacon name has the format "beacons/N!beaconId" where the beaconId is the - * base16 ID broadcast by the beacon and N is a code for the beacon's type. - * Possible values are `3` for Eddystone-UID, `4` for Eddystone-EID, `1` for - * iBeacon, or `5` for AltBeacon. For Eddystone-EID beacons, you may use either - * the current EID or the beacon's "stable" UID. Required. - * @param array $optParams Optional parameters. - * - * @opt_param string projectId The project id to delete beacon attachments - * under. This field can be used when "*" is specified to mean all attachment - * namespaces. Projects may have multiple attachments with multiple namespaces. - * If "*" is specified and the projectId string is empty, then the project - * making the request is used. Optional. - * @opt_param string namespacedType Specifies the namespace and type of - * attachments to delete in `namespace/type` format. Accepts `*` to specify "all - * types in all namespaces". Optional. - * @return Google_Service_Proximitybeacon_DeleteAttachmentsResponse - */ - public function batchDelete($beaconName, $optParams = array()) - { - $params = array('beaconName' => $beaconName); - $params = array_merge($params, $optParams); - return $this->call('batchDelete', array($params), "Google_Service_Proximitybeacon_DeleteAttachmentsResponse"); - } - /** - * Associates the given data with the specified beacon. Attachment data must - * contain two parts: - * - * A namespaced type. The actual attachment data itself. - * - * The namespaced type consists of two parts, the namespace and the type. The - * namespace must be one of the values returned by the `namespaces` endpoint, - * while the type can be a string of any characters except for the forward slash - * (`/`) up to 100 characters in length. - * - * Attachment data can be up to 1024 bytes long. - * - * Authenticate using an [OAuth access - * token](https://developers.google.com/identity/protocols/OAuth2) from a - * signed-in user with **Is owner** or **Can edit** permissions in the Google - * Developers Console project. (attachments.create) - * - * @param string $beaconName Beacon on which the attachment should be created. A - * beacon name has the format "beacons/N!beaconId" where the beaconId is the - * base16 ID broadcast by the beacon and N is a code for the beacon's type. - * Possible values are `3` for Eddystone-UID, `4` for Eddystone-EID, `1` for - * iBeacon, or `5` for AltBeacon. For Eddystone-EID beacons, you may use either - * the current EID or the beacon's "stable" UID. Required. - * @param Google_Service_Proximitybeacon_BeaconAttachment $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string projectId The project id of the project the attachment will - * belong to. If the project id is not specified then the project making the - * request is used. Optional. - * @return Google_Service_Proximitybeacon_BeaconAttachment - */ - public function create($beaconName, Google_Service_Proximitybeacon_BeaconAttachment $postBody, $optParams = array()) - { - $params = array('beaconName' => $beaconName, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Proximitybeacon_BeaconAttachment"); - } - /** - * Deletes the specified attachment for the given beacon. Each attachment has a - * unique attachment name (`attachmentName`) which is returned when you fetch - * the attachment data via this API. You specify this with the delete request to - * control which attachment is removed. This operation cannot be undone. - * - * Authenticate using an [OAuth access - * token](https://developers.google.com/identity/protocols/OAuth2) from a - * signed-in user with **Is owner** or **Can edit** permissions in the Google - * Developers Console project. (attachments.delete) - * - * @param string $attachmentName The attachment name (`attachmentName`) of the - * attachment to remove. For example: - * `beacons/3!893737abc9/attachments/c5e937-af0-494-959-ec49d12738`. For - * Eddystone-EID beacons, the beacon ID portion (`3!893737abc9`) may be the - * beacon's current EID, or its "stable" Eddystone-UID. Required. - * @param array $optParams Optional parameters. - * - * @opt_param string projectId The project id of the attachment to delete. If - * not provided, the project that is making the request is used. Optional. - * @return Google_Service_Proximitybeacon_ProximitybeaconEmpty - */ - public function delete($attachmentName, $optParams = array()) - { - $params = array('attachmentName' => $attachmentName); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Proximitybeacon_ProximitybeaconEmpty"); - } - /** - * Returns the attachments for the specified beacon that match the specified - * namespaced-type pattern. - * - * To control which namespaced types are returned, you add the `namespacedType` - * query parameter to the request. You must either use `*`, to return all - * attachments, or the namespace must be one of the ones returned from the - * `namespaces` endpoint. - * - * Authenticate using an [OAuth access - * token](https://developers.google.com/identity/protocols/OAuth2) from a - * signed-in user with **viewer**, **Is owner** or **Can edit** permissions in - * the Google Developers Console project. (attachments.listBeaconsAttachments) - * - * @param string $beaconName Beacon whose attachments should be fetched. A - * beacon name has the format "beacons/N!beaconId" where the beaconId is the - * base16 ID broadcast by the beacon and N is a code for the beacon's type. - * Possible values are `3` for Eddystone-UID, `4` for Eddystone-EID, `1` for - * iBeacon, or `5` for AltBeacon. For Eddystone-EID beacons, you may use either - * the current EID or the beacon's "stable" UID. Required. - * @param array $optParams Optional parameters. - * - * @opt_param string projectId The project id to list beacon attachments under. - * This field can be used when "*" is specified to mean all attachment - * namespaces. Projects may have multiple attachments with multiple namespaces. - * If "*" is specified and the projectId string is empty, then the project - * making the request is used. Optional. - * @opt_param string namespacedType Specifies the namespace and type of - * attachment to include in response in namespace/type format. Accepts `*` to - * specify "all types in all namespaces". - * @return Google_Service_Proximitybeacon_ListBeaconAttachmentsResponse - */ - public function listBeaconsAttachments($beaconName, $optParams = array()) - { - $params = array('beaconName' => $beaconName); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Proximitybeacon_ListBeaconAttachmentsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/Resource/BeaconsDiagnostics.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/Resource/BeaconsDiagnostics.php deleted file mode 100644 index 1cb3d48b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/Resource/BeaconsDiagnostics.php +++ /dev/null @@ -1,59 +0,0 @@ - - * $proximitybeaconService = new Google_Service_Proximitybeacon(...); - * $diagnostics = $proximitybeaconService->diagnostics; - * - */ -class Google_Service_Proximitybeacon_Resource_BeaconsDiagnostics extends Google_Service_Resource -{ - /** - * List the diagnostics for a single beacon. You can also list diagnostics for - * all the beacons owned by your Google Developers Console project by using the - * beacon name `beacons/-`. - * - * Authenticate using an [OAuth access - * token](https://developers.google.com/identity/protocols/OAuth2) from a - * signed-in user with **viewer**, **Is owner** or **Can edit** permissions in - * the Google Developers Console project. (diagnostics.listBeaconsDiagnostics) - * - * @param string $beaconName Beacon that the diagnostics are for. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Requests results that occur after the - * `page_token`, obtained from the response to a previous request. Optional. - * @opt_param int pageSize Specifies the maximum number of results to return. - * Defaults to 10. Maximum 1000. Optional. - * @opt_param string alertFilter Requests only beacons that have the given - * alert. For example, to find beacons that have low batteries use - * `alert_filter=LOW_BATTERY`. - * @opt_param string projectId Requests only diagnostic records for the given - * project id. If not set, then the project making the request will be used for - * looking up diagnostic records. Optional. - * @return Google_Service_Proximitybeacon_ListDiagnosticsResponse - */ - public function listBeaconsDiagnostics($beaconName, $optParams = array()) - { - $params = array('beaconName' => $beaconName); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Proximitybeacon_ListDiagnosticsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/Resource/Namespaces.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/Resource/Namespaces.php deleted file mode 100644 index d0c024e3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/Resource/Namespaces.php +++ /dev/null @@ -1,70 +0,0 @@ - - * $proximitybeaconService = new Google_Service_Proximitybeacon(...); - * $namespaces = $proximitybeaconService->namespaces; - * - */ -class Google_Service_Proximitybeacon_Resource_Namespaces extends Google_Service_Resource -{ - /** - * Lists all attachment namespaces owned by your Google Developers Console - * project. Attachment data associated with a beacon must include a namespaced - * type, and the namespace must be owned by your project. - * - * Authenticate using an [OAuth access - * token](https://developers.google.com/identity/protocols/OAuth2) from a - * signed-in user with **viewer**, **Is owner** or **Can edit** permissions in - * the Google Developers Console project. (namespaces.listNamespaces) - * - * @param array $optParams Optional parameters. - * - * @opt_param string projectId The project id to list namespaces under. - * Optional. - * @return Google_Service_Proximitybeacon_ListNamespacesResponse - */ - public function listNamespaces($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Proximitybeacon_ListNamespacesResponse"); - } - /** - * Updates the information about the specified namespace. Only the namespace - * visibility can be updated. (namespaces.update) - * - * @param string $namespaceName Resource name of this namespace. Namespaces - * names have the format: namespaces/namespace. - * @param Google_Service_Proximitybeacon_ProximitybeaconNamespace $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string projectId The project id of the namespace to update. If the - * project id is not specified then the project making the request is used. The - * project id must match the project that owns the beacon. Optional. - * @return Google_Service_Proximitybeacon_ProximitybeaconNamespace - */ - public function update($namespaceName, Google_Service_Proximitybeacon_ProximitybeaconNamespace $postBody, $optParams = array()) - { - $params = array('namespaceName' => $namespaceName, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Proximitybeacon_ProximitybeaconNamespace"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/Resource/V1beta1.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/Resource/V1beta1.php deleted file mode 100644 index 25bb2c98..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Proximitybeacon/Resource/V1beta1.php +++ /dev/null @@ -1,46 +0,0 @@ - - * $proximitybeaconService = new Google_Service_Proximitybeacon(...); - * $v1beta1 = $proximitybeaconService->v1beta1; - * - */ -class Google_Service_Proximitybeacon_Resource_V1beta1 extends Google_Service_Resource -{ - /** - * Gets the Proximity Beacon API's current public key and associated parameters - * used to initiate the Diffie-Hellman key exchange required to register a - * beacon that broadcasts the Eddystone-EID format. This key changes - * periodically; clients may cache it and re-use the same public key to - * provision and register multiple beacons. However, clients should be prepared - * to refresh this key when they encounter an error registering an Eddystone-EID - * beacon. (v1beta1.getEidparams) - * - * @param array $optParams Optional parameters. - * @return Google_Service_Proximitybeacon_EphemeralIdRegistrationParams - */ - public function getEidparams($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('getEidparams', array($params), "Google_Service_Proximitybeacon_EphemeralIdRegistrationParams"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub.php deleted file mode 100644 index fd94a461..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub.php +++ /dev/null @@ -1,484 +0,0 @@ - - * Provides reliable, many-to-many, asynchronous messaging between applications.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Pubsub extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** View and manage Pub/Sub topics and subscriptions. */ - const PUBSUB = - "https://www.googleapis.com/auth/pubsub"; - - public $projects_snapshots; - public $projects_subscriptions; - public $projects_topics; - public $projects_topics_snapshots; - public $projects_topics_subscriptions; - - /** - * Constructs the internal representation of the Pubsub service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://pubsub.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'pubsub'; - - $this->projects_snapshots = new Google_Service_Pubsub_Resource_ProjectsSnapshots( - $this, - $this->serviceName, - 'snapshots', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+snapshot}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'snapshot' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+snapshot}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'snapshot' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getIamPolicy' => array( - 'path' => 'v1/{+resource}:getIamPolicy', - 'httpMethod' => 'GET', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'options.requestedPolicyVersion' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'list' => array( - 'path' => 'v1/{+project}/snapshots', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setIamPolicy' => array( - 'path' => 'v1/{+resource}:setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => 'v1/{+resource}:testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_subscriptions = new Google_Service_Pubsub_Resource_ProjectsSubscriptions( - $this, - $this->serviceName, - 'subscriptions', - array( - 'methods' => array( - 'acknowledge' => array( - 'path' => 'v1/{+subscription}:acknowledge', - 'httpMethod' => 'POST', - 'parameters' => array( - 'subscription' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'create' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+subscription}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'subscription' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+subscription}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'subscription' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getIamPolicy' => array( - 'path' => 'v1/{+resource}:getIamPolicy', - 'httpMethod' => 'GET', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'options.requestedPolicyVersion' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'list' => array( - 'path' => 'v1/{+project}/subscriptions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'modifyAckDeadline' => array( - 'path' => 'v1/{+subscription}:modifyAckDeadline', - 'httpMethod' => 'POST', - 'parameters' => array( - 'subscription' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'modifyPushConfig' => array( - 'path' => 'v1/{+subscription}:modifyPushConfig', - 'httpMethod' => 'POST', - 'parameters' => array( - 'subscription' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'pull' => array( - 'path' => 'v1/{+subscription}:pull', - 'httpMethod' => 'POST', - 'parameters' => array( - 'subscription' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'seek' => array( - 'path' => 'v1/{+subscription}:seek', - 'httpMethod' => 'POST', - 'parameters' => array( - 'subscription' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setIamPolicy' => array( - 'path' => 'v1/{+resource}:setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => 'v1/{+resource}:testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_topics = new Google_Service_Pubsub_Resource_ProjectsTopics( - $this, - $this->serviceName, - 'topics', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+topic}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'topic' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+topic}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'topic' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getIamPolicy' => array( - 'path' => 'v1/{+resource}:getIamPolicy', - 'httpMethod' => 'GET', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'options.requestedPolicyVersion' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'list' => array( - 'path' => 'v1/{+project}/topics', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'publish' => array( - 'path' => 'v1/{+topic}:publish', - 'httpMethod' => 'POST', - 'parameters' => array( - 'topic' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setIamPolicy' => array( - 'path' => 'v1/{+resource}:setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => 'v1/{+resource}:testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_topics_snapshots = new Google_Service_Pubsub_Resource_ProjectsTopicsSnapshots( - $this, - $this->serviceName, - 'snapshots', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1/{+topic}/snapshots', - 'httpMethod' => 'GET', - 'parameters' => array( - 'topic' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->projects_topics_subscriptions = new Google_Service_Pubsub_Resource_ProjectsTopicsSubscriptions( - $this, - $this->serviceName, - 'subscriptions', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1/{+topic}/subscriptions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'topic' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/AcknowledgeRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/AcknowledgeRequest.php deleted file mode 100644 index 3481c6fa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/AcknowledgeRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -ackIds = $ackIds; - } - public function getAckIds() - { - return $this->ackIds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/Binding.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/Binding.php deleted file mode 100644 index 1750520f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/Binding.php +++ /dev/null @@ -1,56 +0,0 @@ -condition = $condition; - } - /** - * @return Google_Service_Pubsub_Expr - */ - public function getCondition() - { - return $this->condition; - } - public function setMembers($members) - { - $this->members = $members; - } - public function getMembers() - { - return $this->members; - } - public function setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/CreateSnapshotRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/CreateSnapshotRequest.php deleted file mode 100644 index ae1c3f88..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/CreateSnapshotRequest.php +++ /dev/null @@ -1,39 +0,0 @@ -labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setSubscription($subscription) - { - $this->subscription = $subscription; - } - public function getSubscription() - { - return $this->subscription; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/DeadLetterPolicy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/DeadLetterPolicy.php deleted file mode 100644 index 808723a7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/DeadLetterPolicy.php +++ /dev/null @@ -1,39 +0,0 @@ -deadLetterTopic = $deadLetterTopic; - } - public function getDeadLetterTopic() - { - return $this->deadLetterTopic; - } - public function setMaxDeliveryAttempts($maxDeliveryAttempts) - { - $this->maxDeliveryAttempts = $maxDeliveryAttempts; - } - public function getMaxDeliveryAttempts() - { - return $this->maxDeliveryAttempts; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/ExpirationPolicy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/ExpirationPolicy.php deleted file mode 100644 index 299c995d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/ExpirationPolicy.php +++ /dev/null @@ -1,30 +0,0 @@ -ttl = $ttl; - } - public function getTtl() - { - return $this->ttl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/Expr.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/Expr.php deleted file mode 100644 index 793e3dd7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/Expr.php +++ /dev/null @@ -1,57 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setExpression($expression) - { - $this->expression = $expression; - } - public function getExpression() - { - return $this->expression; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/ListSnapshotsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/ListSnapshotsResponse.php deleted file mode 100644 index c49c2623..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/ListSnapshotsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Pubsub_Snapshot - */ - public function setSnapshots($snapshots) - { - $this->snapshots = $snapshots; - } - /** - * @return Google_Service_Pubsub_Snapshot - */ - public function getSnapshots() - { - return $this->snapshots; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/ListSubscriptionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/ListSubscriptionsResponse.php deleted file mode 100644 index 4e93a34b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/ListSubscriptionsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Pubsub_Subscription - */ - public function setSubscriptions($subscriptions) - { - $this->subscriptions = $subscriptions; - } - /** - * @return Google_Service_Pubsub_Subscription - */ - public function getSubscriptions() - { - return $this->subscriptions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/ListTopicSnapshotsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/ListTopicSnapshotsResponse.php deleted file mode 100644 index 95ea1387..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/ListTopicSnapshotsResponse.php +++ /dev/null @@ -1,40 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setSnapshots($snapshots) - { - $this->snapshots = $snapshots; - } - public function getSnapshots() - { - return $this->snapshots; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/ListTopicSubscriptionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/ListTopicSubscriptionsResponse.php deleted file mode 100644 index 7a550bc2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/ListTopicSubscriptionsResponse.php +++ /dev/null @@ -1,40 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setSubscriptions($subscriptions) - { - $this->subscriptions = $subscriptions; - } - public function getSubscriptions() - { - return $this->subscriptions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/ListTopicsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/ListTopicsResponse.php deleted file mode 100644 index f973b36e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/ListTopicsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Pubsub_Topic - */ - public function setTopics($topics) - { - $this->topics = $topics; - } - /** - * @return Google_Service_Pubsub_Topic - */ - public function getTopics() - { - return $this->topics; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/MessageStoragePolicy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/MessageStoragePolicy.php deleted file mode 100644 index 7693fd4b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/MessageStoragePolicy.php +++ /dev/null @@ -1,31 +0,0 @@ -allowedPersistenceRegions = $allowedPersistenceRegions; - } - public function getAllowedPersistenceRegions() - { - return $this->allowedPersistenceRegions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/ModifyAckDeadlineRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/ModifyAckDeadlineRequest.php deleted file mode 100644 index 84c5b586..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/ModifyAckDeadlineRequest.php +++ /dev/null @@ -1,40 +0,0 @@ -ackDeadlineSeconds = $ackDeadlineSeconds; - } - public function getAckDeadlineSeconds() - { - return $this->ackDeadlineSeconds; - } - public function setAckIds($ackIds) - { - $this->ackIds = $ackIds; - } - public function getAckIds() - { - return $this->ackIds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/ModifyPushConfigRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/ModifyPushConfigRequest.php deleted file mode 100644 index 61660dc3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/ModifyPushConfigRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -pushConfig = $pushConfig; - } - /** - * @return Google_Service_Pubsub_PushConfig - */ - public function getPushConfig() - { - return $this->pushConfig; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/OidcToken.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/OidcToken.php deleted file mode 100644 index 1356406c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/OidcToken.php +++ /dev/null @@ -1,39 +0,0 @@ -audience = $audience; - } - public function getAudience() - { - return $this->audience; - } - public function setServiceAccountEmail($serviceAccountEmail) - { - $this->serviceAccountEmail = $serviceAccountEmail; - } - public function getServiceAccountEmail() - { - return $this->serviceAccountEmail; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/Policy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/Policy.php deleted file mode 100644 index b692d050..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/Policy.php +++ /dev/null @@ -1,56 +0,0 @@ -bindings = $bindings; - } - /** - * @return Google_Service_Pubsub_Binding - */ - public function getBindings() - { - return $this->bindings; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/PublishRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/PublishRequest.php deleted file mode 100644 index ce2f1c58..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/PublishRequest.php +++ /dev/null @@ -1,38 +0,0 @@ -messages = $messages; - } - /** - * @return Google_Service_Pubsub_PubsubMessage - */ - public function getMessages() - { - return $this->messages; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/PublishResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/PublishResponse.php deleted file mode 100644 index 1d56d1d0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/PublishResponse.php +++ /dev/null @@ -1,31 +0,0 @@ -messageIds = $messageIds; - } - public function getMessageIds() - { - return $this->messageIds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/PubsubEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/PubsubEmpty.php deleted file mode 100644 index 610ee02d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/PubsubEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -attributes = $attributes; - } - public function getAttributes() - { - return $this->attributes; - } - public function setData($data) - { - $this->data = $data; - } - public function getData() - { - return $this->data; - } - public function setMessageId($messageId) - { - $this->messageId = $messageId; - } - public function getMessageId() - { - return $this->messageId; - } - public function setPublishTime($publishTime) - { - $this->publishTime = $publishTime; - } - public function getPublishTime() - { - return $this->publishTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/PullRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/PullRequest.php deleted file mode 100644 index eaba8e7e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/PullRequest.php +++ /dev/null @@ -1,39 +0,0 @@ -maxMessages = $maxMessages; - } - public function getMaxMessages() - { - return $this->maxMessages; - } - public function setReturnImmediately($returnImmediately) - { - $this->returnImmediately = $returnImmediately; - } - public function getReturnImmediately() - { - return $this->returnImmediately; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/PullResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/PullResponse.php deleted file mode 100644 index 1d708fdb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/PullResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -receivedMessages = $receivedMessages; - } - /** - * @return Google_Service_Pubsub_ReceivedMessage - */ - public function getReceivedMessages() - { - return $this->receivedMessages; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/PushConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/PushConfig.php deleted file mode 100644 index 73cae279..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/PushConfig.php +++ /dev/null @@ -1,55 +0,0 @@ -attributes = $attributes; - } - public function getAttributes() - { - return $this->attributes; - } - /** - * @param Google_Service_Pubsub_OidcToken - */ - public function setOidcToken(Google_Service_Pubsub_OidcToken $oidcToken) - { - $this->oidcToken = $oidcToken; - } - /** - * @return Google_Service_Pubsub_OidcToken - */ - public function getOidcToken() - { - return $this->oidcToken; - } - public function setPushEndpoint($pushEndpoint) - { - $this->pushEndpoint = $pushEndpoint; - } - public function getPushEndpoint() - { - return $this->pushEndpoint; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/ReceivedMessage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/ReceivedMessage.php deleted file mode 100644 index 713eaff3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/ReceivedMessage.php +++ /dev/null @@ -1,55 +0,0 @@ -ackId = $ackId; - } - public function getAckId() - { - return $this->ackId; - } - public function setDeliveryAttempt($deliveryAttempt) - { - $this->deliveryAttempt = $deliveryAttempt; - } - public function getDeliveryAttempt() - { - return $this->deliveryAttempt; - } - /** - * @param Google_Service_Pubsub_PubsubMessage - */ - public function setMessage(Google_Service_Pubsub_PubsubMessage $message) - { - $this->message = $message; - } - /** - * @return Google_Service_Pubsub_PubsubMessage - */ - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/Resource/Projects.php deleted file mode 100644 index 0269ba02..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/Resource/Projects.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $pubsubService = new Google_Service_Pubsub(...); - * $projects = $pubsubService->projects; - * - */ -class Google_Service_Pubsub_Resource_Projects extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/Resource/ProjectsSnapshots.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/Resource/ProjectsSnapshots.php deleted file mode 100644 index 6970c1b2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/Resource/ProjectsSnapshots.php +++ /dev/null @@ -1,205 +0,0 @@ - - * $pubsubService = new Google_Service_Pubsub(...); - * $snapshots = $pubsubService->snapshots; - * - */ -class Google_Service_Pubsub_Resource_ProjectsSnapshots extends Google_Service_Resource -{ - /** - * Creates a snapshot from the requested subscription. Snapshots are used in - * Seek operations, which allow you to manage message acknowledgments in bulk. - * That is, you can set the acknowledgment state of messages in an existing - * subscription to the state captured by a snapshot. If the snapshot already - * exists, returns `ALREADY_EXISTS`. If the requested subscription doesn't - * exist, returns `NOT_FOUND`. If the backlog in the subscription is too old -- - * and the resulting snapshot would expire in less than 1 hour -- then - * `FAILED_PRECONDITION` is returned. See also the `Snapshot.expire_time` field. - * If the name is not provided in the request, the server will assign a random - * name for this snapshot on the same project as the subscription, conforming to - * the [resource name - * format](https://cloud.google.com/pubsub/docs/admin#resource_names). The - * generated name is populated in the returned Snapshot object. Note that for - * REST API requests, you must specify a name in the request. (snapshots.create) - * - * @param string $name User-provided name for this snapshot. If the name is not - * provided in the request, the server will assign a random name for this - * snapshot on the same project as the subscription. Note that for REST API - * requests, you must specify a name. See the resource name rules. Format is - * `projects/{project}/snapshots/{snap}`. - * @param Google_Service_Pubsub_CreateSnapshotRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Pubsub_Snapshot - */ - public function create($name, Google_Service_Pubsub_CreateSnapshotRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Pubsub_Snapshot"); - } - /** - * Removes an existing snapshot. Snapshots are used in Seek operations, which - * allow you to manage message acknowledgments in bulk. That is, you can set the - * acknowledgment state of messages in an existing subscription to the state - * captured by a snapshot. When the snapshot is deleted, all messages retained - * in the snapshot are immediately dropped. After a snapshot is deleted, a new - * one may be created with the same name, but the new one has no association - * with the old snapshot or its subscription, unless the same subscription is - * specified. (snapshots.delete) - * - * @param string $snapshot The name of the snapshot to delete. Format is - * `projects/{project}/snapshots/{snap}`. - * @param array $optParams Optional parameters. - * @return Google_Service_Pubsub_PubsubEmpty - */ - public function delete($snapshot, $optParams = array()) - { - $params = array('snapshot' => $snapshot); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Pubsub_PubsubEmpty"); - } - /** - * Gets the configuration details of a snapshot. Snapshots are used in Seek - * operations, which allow you to manage message acknowledgments in bulk. That - * is, you can set the acknowledgment state of messages in an existing - * subscription to the state captured by a snapshot. (snapshots.get) - * - * @param string $snapshot The name of the snapshot to get. Format is - * `projects/{project}/snapshots/{snap}`. - * @param array $optParams Optional parameters. - * @return Google_Service_Pubsub_Snapshot - */ - public function get($snapshot, $optParams = array()) - { - $params = array('snapshot' => $snapshot); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Pubsub_Snapshot"); - } - /** - * Gets the access control policy for a resource. Returns an empty policy if the - * resource exists and does not have a policy set. (snapshots.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. - * @return Google_Service_Pubsub_Policy - */ - public function getIamPolicy($resource, $optParams = array()) - { - $params = array('resource' => $resource); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_Pubsub_Policy"); - } - /** - * Lists the existing snapshots. Snapshots are used in Seek operations, which - * allow you to manage message acknowledgments in bulk. That is, you can set the - * acknowledgment state of messages in an existing subscription to the state - * captured by a snapshot. (snapshots.listProjectsSnapshots) - * - * @param string $project The name of the project in which to list snapshots. - * Format is `projects/{project-id}`. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The value returned by the last - * `ListSnapshotsResponse`; indicates that this is a continuation of a prior - * `ListSnapshots` call, and that the system should return the next page of - * data. - * @opt_param int pageSize Maximum number of snapshots to return. - * @return Google_Service_Pubsub_ListSnapshotsResponse - */ - public function listProjectsSnapshots($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Pubsub_ListSnapshotsResponse"); - } - /** - * Updates an existing snapshot. Snapshots are used in Seek operations, which - * allow you to manage message acknowledgments in bulk. That is, you can set the - * acknowledgment state of messages in an existing subscription to the state - * captured by a snapshot. (snapshots.patch) - * - * @param string $name The name of the snapshot. - * @param Google_Service_Pubsub_UpdateSnapshotRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Pubsub_Snapshot - */ - public function patch($name, Google_Service_Pubsub_UpdateSnapshotRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Pubsub_Snapshot"); - } - /** - * Sets the access control policy on the specified resource. Replaces any - * existing policy. - * - * Can return Public Errors: NOT_FOUND, INVALID_ARGUMENT and PERMISSION_DENIED - * (snapshots.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_Pubsub_SetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Pubsub_Policy - */ - public function setIamPolicy($resource, Google_Service_Pubsub_SetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_Pubsub_Policy"); - } - /** - * 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. (snapshots.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_Pubsub_TestIamPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Pubsub_TestIamPermissionsResponse - */ - public function testIamPermissions($resource, Google_Service_Pubsub_TestIamPermissionsRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_Pubsub_TestIamPermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/Resource/ProjectsSubscriptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/Resource/ProjectsSubscriptions.php deleted file mode 100644 index b24e7d24..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/Resource/ProjectsSubscriptions.php +++ /dev/null @@ -1,297 +0,0 @@ - - * $pubsubService = new Google_Service_Pubsub(...); - * $subscriptions = $pubsubService->subscriptions; - * - */ -class Google_Service_Pubsub_Resource_ProjectsSubscriptions extends Google_Service_Resource -{ - /** - * Acknowledges the messages associated with the `ack_ids` in the - * `AcknowledgeRequest`. The Pub/Sub system can remove the relevant messages - * from the subscription. - * - * Acknowledging a message whose ack deadline has expired may succeed, but such - * a message may be redelivered later. Acknowledging a message more than once - * will not result in an error. (subscriptions.acknowledge) - * - * @param string $subscription The subscription whose message is being - * acknowledged. Format is `projects/{project}/subscriptions/{sub}`. - * @param Google_Service_Pubsub_AcknowledgeRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Pubsub_PubsubEmpty - */ - public function acknowledge($subscription, Google_Service_Pubsub_AcknowledgeRequest $postBody, $optParams = array()) - { - $params = array('subscription' => $subscription, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('acknowledge', array($params), "Google_Service_Pubsub_PubsubEmpty"); - } - /** - * Creates a subscription to a given topic. See the - * - * resource name rules. If the subscription already exists, returns - * `ALREADY_EXISTS`. If the corresponding topic doesn't exist, returns - * `NOT_FOUND`. - * - * If the name is not provided in the request, the server will assign a random - * name for this subscription on the same project as the topic, conforming to - * the [resource name - * format](https://cloud.google.com/pubsub/docs/admin#resource_names). The - * generated name is populated in the returned Subscription object. Note that - * for REST API requests, you must specify a name in the request. - * (subscriptions.create) - * - * @param string $name The name of the subscription. It must have the format - * `"projects/{project}/subscriptions/{subscription}"`. `{subscription}` must - * start with a letter, and contain only letters (`[A-Za-z]`), numbers - * (`[0-9]`), dashes (`-`), underscores (`_`), periods (`.`), tildes (`~`), plus - * (`+`) or percent signs (`%`). It must be between 3 and 255 characters in - * length, and it must not start with `"goog"`. - * @param Google_Service_Pubsub_Subscription $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Pubsub_Subscription - */ - public function create($name, Google_Service_Pubsub_Subscription $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Pubsub_Subscription"); - } - /** - * Deletes an existing subscription. All messages retained in the subscription - * are immediately dropped. Calls to `Pull` after deletion will return - * `NOT_FOUND`. After a subscription is deleted, a new one may be created with - * the same name, but the new one has no association with the old subscription - * or its topic unless the same topic is specified. (subscriptions.delete) - * - * @param string $subscription The subscription to delete. Format is - * `projects/{project}/subscriptions/{sub}`. - * @param array $optParams Optional parameters. - * @return Google_Service_Pubsub_PubsubEmpty - */ - public function delete($subscription, $optParams = array()) - { - $params = array('subscription' => $subscription); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Pubsub_PubsubEmpty"); - } - /** - * Gets the configuration details of a subscription. (subscriptions.get) - * - * @param string $subscription The name of the subscription to get. Format is - * `projects/{project}/subscriptions/{sub}`. - * @param array $optParams Optional parameters. - * @return Google_Service_Pubsub_Subscription - */ - public function get($subscription, $optParams = array()) - { - $params = array('subscription' => $subscription); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Pubsub_Subscription"); - } - /** - * Gets the access control policy for a resource. Returns an empty policy if the - * resource exists and does not have a policy set. (subscriptions.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. - * @return Google_Service_Pubsub_Policy - */ - public function getIamPolicy($resource, $optParams = array()) - { - $params = array('resource' => $resource); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_Pubsub_Policy"); - } - /** - * Lists matching subscriptions. (subscriptions.listProjectsSubscriptions) - * - * @param string $project The name of the project in which to list - * subscriptions. Format is `projects/{project-id}`. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The value returned by the last - * `ListSubscriptionsResponse`; indicates that this is a continuation of a prior - * `ListSubscriptions` call, and that the system should return the next page of - * data. - * @opt_param int pageSize Maximum number of subscriptions to return. - * @return Google_Service_Pubsub_ListSubscriptionsResponse - */ - public function listProjectsSubscriptions($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Pubsub_ListSubscriptionsResponse"); - } - /** - * Modifies the ack deadline for a specific message. This method is useful to - * indicate that more time is needed to process a message by the subscriber, or - * to make the message available for redelivery if the processing was - * interrupted. Note that this does not modify the subscription-level - * `ackDeadlineSeconds` used for subsequent messages. - * (subscriptions.modifyAckDeadline) - * - * @param string $subscription The name of the subscription. Format is - * `projects/{project}/subscriptions/{sub}`. - * @param Google_Service_Pubsub_ModifyAckDeadlineRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Pubsub_PubsubEmpty - */ - public function modifyAckDeadline($subscription, Google_Service_Pubsub_ModifyAckDeadlineRequest $postBody, $optParams = array()) - { - $params = array('subscription' => $subscription, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('modifyAckDeadline', array($params), "Google_Service_Pubsub_PubsubEmpty"); - } - /** - * Modifies the `PushConfig` for a specified subscription. - * - * This may be used to change a push subscription to a pull one (signified by an - * empty `PushConfig`) or vice versa, or change the endpoint URL and other - * attributes of a push subscription. Messages will accumulate for delivery - * continuously through the call regardless of changes to the `PushConfig`. - * (subscriptions.modifyPushConfig) - * - * @param string $subscription The name of the subscription. Format is - * `projects/{project}/subscriptions/{sub}`. - * @param Google_Service_Pubsub_ModifyPushConfigRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Pubsub_PubsubEmpty - */ - public function modifyPushConfig($subscription, Google_Service_Pubsub_ModifyPushConfigRequest $postBody, $optParams = array()) - { - $params = array('subscription' => $subscription, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('modifyPushConfig', array($params), "Google_Service_Pubsub_PubsubEmpty"); - } - /** - * Updates an existing subscription. Note that certain properties of a - * subscription, such as its topic, are not modifiable. (subscriptions.patch) - * - * @param string $name The name of the subscription. It must have the format - * `"projects/{project}/subscriptions/{subscription}"`. `{subscription}` must - * start with a letter, and contain only letters (`[A-Za-z]`), numbers - * (`[0-9]`), dashes (`-`), underscores (`_`), periods (`.`), tildes (`~`), plus - * (`+`) or percent signs (`%`). It must be between 3 and 255 characters in - * length, and it must not start with `"goog"`. - * @param Google_Service_Pubsub_UpdateSubscriptionRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Pubsub_Subscription - */ - public function patch($name, Google_Service_Pubsub_UpdateSubscriptionRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Pubsub_Subscription"); - } - /** - * Pulls messages from the server. The server may return `UNAVAILABLE` if there - * are too many concurrent pull requests pending for the given subscription. - * (subscriptions.pull) - * - * @param string $subscription The subscription from which messages should be - * pulled. Format is `projects/{project}/subscriptions/{sub}`. - * @param Google_Service_Pubsub_PullRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Pubsub_PullResponse - */ - public function pull($subscription, Google_Service_Pubsub_PullRequest $postBody, $optParams = array()) - { - $params = array('subscription' => $subscription, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('pull', array($params), "Google_Service_Pubsub_PullResponse"); - } - /** - * Seeks an existing subscription to a point in time or to a given snapshot, - * whichever is provided in the request. Snapshots are used in Seek operations, - * which allow you to manage message acknowledgments in bulk. That is, you can - * set the acknowledgment state of messages in an existing subscription to the - * state captured by a snapshot. Note that both the subscription and the - * snapshot must be on the same topic. (subscriptions.seek) - * - * @param string $subscription The subscription to affect. - * @param Google_Service_Pubsub_SeekRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Pubsub_SeekResponse - */ - public function seek($subscription, Google_Service_Pubsub_SeekRequest $postBody, $optParams = array()) - { - $params = array('subscription' => $subscription, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('seek', array($params), "Google_Service_Pubsub_SeekResponse"); - } - /** - * Sets the access control policy on the specified resource. Replaces any - * existing policy. - * - * Can return Public Errors: NOT_FOUND, INVALID_ARGUMENT and PERMISSION_DENIED - * (subscriptions.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_Pubsub_SetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Pubsub_Policy - */ - public function setIamPolicy($resource, Google_Service_Pubsub_SetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_Pubsub_Policy"); - } - /** - * 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. (subscriptions.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_Pubsub_TestIamPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Pubsub_TestIamPermissionsResponse - */ - public function testIamPermissions($resource, Google_Service_Pubsub_TestIamPermissionsRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_Pubsub_TestIamPermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/Resource/ProjectsTopics.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/Resource/ProjectsTopics.php deleted file mode 100644 index ae36451b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/Resource/ProjectsTopics.php +++ /dev/null @@ -1,204 +0,0 @@ - - * $pubsubService = new Google_Service_Pubsub(...); - * $topics = $pubsubService->topics; - * - */ -class Google_Service_Pubsub_Resource_ProjectsTopics extends Google_Service_Resource -{ - /** - * Creates the given topic with the given name. See the - * - * resource name rules. (topics.create) - * - * @param string $name The name of the topic. It must have the format - * `"projects/{project}/topics/{topic}"`. `{topic}` must start with a letter, - * and contain only letters (`[A-Za-z]`), numbers (`[0-9]`), dashes (`-`), - * underscores (`_`), periods (`.`), tildes (`~`), plus (`+`) or percent signs - * (`%`). It must be between 3 and 255 characters in length, and it must not - * start with `"goog"`. - * @param Google_Service_Pubsub_Topic $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Pubsub_Topic - */ - public function create($name, Google_Service_Pubsub_Topic $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Pubsub_Topic"); - } - /** - * Deletes the topic with the given name. Returns `NOT_FOUND` if the topic does - * not exist. After a topic is deleted, a new topic may be created with the same - * name; this is an entirely new topic with none of the old configuration or - * subscriptions. Existing subscriptions to this topic are not deleted, but - * their `topic` field is set to `_deleted-topic_`. (topics.delete) - * - * @param string $topic Name of the topic to delete. Format is - * `projects/{project}/topics/{topic}`. - * @param array $optParams Optional parameters. - * @return Google_Service_Pubsub_PubsubEmpty - */ - public function delete($topic, $optParams = array()) - { - $params = array('topic' => $topic); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Pubsub_PubsubEmpty"); - } - /** - * Gets the configuration of a topic. (topics.get) - * - * @param string $topic The name of the topic to get. Format is - * `projects/{project}/topics/{topic}`. - * @param array $optParams Optional parameters. - * @return Google_Service_Pubsub_Topic - */ - public function get($topic, $optParams = array()) - { - $params = array('topic' => $topic); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Pubsub_Topic"); - } - /** - * Gets the access control policy for a resource. Returns an empty policy if the - * resource exists and does not have a policy set. (topics.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. - * @return Google_Service_Pubsub_Policy - */ - public function getIamPolicy($resource, $optParams = array()) - { - $params = array('resource' => $resource); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_Pubsub_Policy"); - } - /** - * Lists matching topics. (topics.listProjectsTopics) - * - * @param string $project The name of the project in which to list topics. - * Format is `projects/{project-id}`. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The value returned by the last - * `ListTopicsResponse`; indicates that this is a continuation of a prior - * `ListTopics` call, and that the system should return the next page of data. - * @opt_param int pageSize Maximum number of topics to return. - * @return Google_Service_Pubsub_ListTopicsResponse - */ - public function listProjectsTopics($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Pubsub_ListTopicsResponse"); - } - /** - * Updates an existing topic. Note that certain properties of a topic are not - * modifiable. (topics.patch) - * - * @param string $name The name of the topic. It must have the format - * `"projects/{project}/topics/{topic}"`. `{topic}` must start with a letter, - * and contain only letters (`[A-Za-z]`), numbers (`[0-9]`), dashes (`-`), - * underscores (`_`), periods (`.`), tildes (`~`), plus (`+`) or percent signs - * (`%`). It must be between 3 and 255 characters in length, and it must not - * start with `"goog"`. - * @param Google_Service_Pubsub_UpdateTopicRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Pubsub_Topic - */ - public function patch($name, Google_Service_Pubsub_UpdateTopicRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Pubsub_Topic"); - } - /** - * Adds one or more messages to the topic. Returns `NOT_FOUND` if the topic does - * not exist. (topics.publish) - * - * @param string $topic The messages in the request will be published on this - * topic. Format is `projects/{project}/topics/{topic}`. - * @param Google_Service_Pubsub_PublishRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Pubsub_PublishResponse - */ - public function publish($topic, Google_Service_Pubsub_PublishRequest $postBody, $optParams = array()) - { - $params = array('topic' => $topic, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('publish', array($params), "Google_Service_Pubsub_PublishResponse"); - } - /** - * Sets the access control policy on the specified resource. Replaces any - * existing policy. - * - * Can return Public Errors: NOT_FOUND, INVALID_ARGUMENT and PERMISSION_DENIED - * (topics.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_Pubsub_SetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Pubsub_Policy - */ - public function setIamPolicy($resource, Google_Service_Pubsub_SetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_Pubsub_Policy"); - } - /** - * 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. (topics.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_Pubsub_TestIamPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Pubsub_TestIamPermissionsResponse - */ - public function testIamPermissions($resource, Google_Service_Pubsub_TestIamPermissionsRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_Pubsub_TestIamPermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/Resource/ProjectsTopicsSnapshots.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/Resource/ProjectsTopicsSnapshots.php deleted file mode 100644 index 839eeef6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/Resource/ProjectsTopicsSnapshots.php +++ /dev/null @@ -1,52 +0,0 @@ - - * $pubsubService = new Google_Service_Pubsub(...); - * $snapshots = $pubsubService->snapshots; - * - */ -class Google_Service_Pubsub_Resource_ProjectsTopicsSnapshots extends Google_Service_Resource -{ - /** - * Lists the names of the snapshots on this topic. Snapshots are used in Seek - * operations, which allow you to manage message acknowledgments in bulk. That - * is, you can set the acknowledgment state of messages in an existing - * subscription to the state captured by a snapshot. - * (snapshots.listProjectsTopicsSnapshots) - * - * @param string $topic The name of the topic that snapshots are attached to. - * Format is `projects/{project}/topics/{topic}`. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The value returned by the last - * `ListTopicSnapshotsResponse`; indicates that this is a continuation of a - * prior `ListTopicSnapshots` call, and that the system should return the next - * page of data. - * @opt_param int pageSize Maximum number of snapshot names to return. - * @return Google_Service_Pubsub_ListTopicSnapshotsResponse - */ - public function listProjectsTopicsSnapshots($topic, $optParams = array()) - { - $params = array('topic' => $topic); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Pubsub_ListTopicSnapshotsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/Resource/ProjectsTopicsSubscriptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/Resource/ProjectsTopicsSubscriptions.php deleted file mode 100644 index 442fb4bc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/Resource/ProjectsTopicsSubscriptions.php +++ /dev/null @@ -1,49 +0,0 @@ - - * $pubsubService = new Google_Service_Pubsub(...); - * $subscriptions = $pubsubService->subscriptions; - * - */ -class Google_Service_Pubsub_Resource_ProjectsTopicsSubscriptions extends Google_Service_Resource -{ - /** - * Lists the names of the subscriptions on this topic. - * (subscriptions.listProjectsTopicsSubscriptions) - * - * @param string $topic The name of the topic that subscriptions are attached - * to. Format is `projects/{project}/topics/{topic}`. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The value returned by the last - * `ListTopicSubscriptionsResponse`; indicates that this is a continuation of a - * prior `ListTopicSubscriptions` call, and that the system should return the - * next page of data. - * @opt_param int pageSize Maximum number of subscription names to return. - * @return Google_Service_Pubsub_ListTopicSubscriptionsResponse - */ - public function listProjectsTopicsSubscriptions($topic, $optParams = array()) - { - $params = array('topic' => $topic); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Pubsub_ListTopicSubscriptionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/SeekRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/SeekRequest.php deleted file mode 100644 index 89200f72..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/SeekRequest.php +++ /dev/null @@ -1,39 +0,0 @@ -snapshot = $snapshot; - } - public function getSnapshot() - { - return $this->snapshot; - } - public function setTime($time) - { - $this->time = $time; - } - public function getTime() - { - return $this->time; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/SeekResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/SeekResponse.php deleted file mode 100644 index 36f36403..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/SeekResponse.php +++ /dev/null @@ -1,20 +0,0 @@ -policy = $policy; - } - /** - * @return Google_Service_Pubsub_Policy - */ - public function getPolicy() - { - return $this->policy; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/Snapshot.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/Snapshot.php deleted file mode 100644 index d64f3a4c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/Snapshot.php +++ /dev/null @@ -1,57 +0,0 @@ -expireTime = $expireTime; - } - public function getExpireTime() - { - return $this->expireTime; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setTopic($topic) - { - $this->topic = $topic; - } - public function getTopic() - { - return $this->topic; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/Subscription.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/Subscription.php deleted file mode 100644 index 423c7599..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/Subscription.php +++ /dev/null @@ -1,123 +0,0 @@ -ackDeadlineSeconds = $ackDeadlineSeconds; - } - public function getAckDeadlineSeconds() - { - return $this->ackDeadlineSeconds; - } - /** - * @param Google_Service_Pubsub_DeadLetterPolicy - */ - public function setDeadLetterPolicy(Google_Service_Pubsub_DeadLetterPolicy $deadLetterPolicy) - { - $this->deadLetterPolicy = $deadLetterPolicy; - } - /** - * @return Google_Service_Pubsub_DeadLetterPolicy - */ - public function getDeadLetterPolicy() - { - return $this->deadLetterPolicy; - } - /** - * @param Google_Service_Pubsub_ExpirationPolicy - */ - public function setExpirationPolicy(Google_Service_Pubsub_ExpirationPolicy $expirationPolicy) - { - $this->expirationPolicy = $expirationPolicy; - } - /** - * @return Google_Service_Pubsub_ExpirationPolicy - */ - public function getExpirationPolicy() - { - return $this->expirationPolicy; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setMessageRetentionDuration($messageRetentionDuration) - { - $this->messageRetentionDuration = $messageRetentionDuration; - } - public function getMessageRetentionDuration() - { - return $this->messageRetentionDuration; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Pubsub_PushConfig - */ - public function setPushConfig(Google_Service_Pubsub_PushConfig $pushConfig) - { - $this->pushConfig = $pushConfig; - } - /** - * @return Google_Service_Pubsub_PushConfig - */ - public function getPushConfig() - { - return $this->pushConfig; - } - public function setRetainAckedMessages($retainAckedMessages) - { - $this->retainAckedMessages = $retainAckedMessages; - } - public function getRetainAckedMessages() - { - return $this->retainAckedMessages; - } - public function setTopic($topic) - { - $this->topic = $topic; - } - public function getTopic() - { - return $this->topic; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/TestIamPermissionsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/TestIamPermissionsRequest.php deleted file mode 100644 index a3bd47a9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/TestIamPermissionsRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/TestIamPermissionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/TestIamPermissionsResponse.php deleted file mode 100644 index 5d8cc263..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/TestIamPermissionsResponse.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/Topic.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/Topic.php deleted file mode 100644 index ce7501ea..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/Topic.php +++ /dev/null @@ -1,64 +0,0 @@ -kmsKeyName = $kmsKeyName; - } - public function getKmsKeyName() - { - return $this->kmsKeyName; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - /** - * @param Google_Service_Pubsub_MessageStoragePolicy - */ - public function setMessageStoragePolicy(Google_Service_Pubsub_MessageStoragePolicy $messageStoragePolicy) - { - $this->messageStoragePolicy = $messageStoragePolicy; - } - /** - * @return Google_Service_Pubsub_MessageStoragePolicy - */ - public function getMessageStoragePolicy() - { - return $this->messageStoragePolicy; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/UpdateSnapshotRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/UpdateSnapshotRequest.php deleted file mode 100644 index 3fc57201..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/UpdateSnapshotRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -snapshot = $snapshot; - } - /** - * @return Google_Service_Pubsub_Snapshot - */ - public function getSnapshot() - { - return $this->snapshot; - } - public function setUpdateMask($updateMask) - { - $this->updateMask = $updateMask; - } - public function getUpdateMask() - { - return $this->updateMask; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/UpdateSubscriptionRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/UpdateSubscriptionRequest.php deleted file mode 100644 index 0582a35b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/UpdateSubscriptionRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -subscription = $subscription; - } - /** - * @return Google_Service_Pubsub_Subscription - */ - public function getSubscription() - { - return $this->subscription; - } - public function setUpdateMask($updateMask) - { - $this->updateMask = $updateMask; - } - public function getUpdateMask() - { - return $this->updateMask; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/UpdateTopicRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/UpdateTopicRequest.php deleted file mode 100644 index d27cad8e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Pubsub/UpdateTopicRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -topic = $topic; - } - /** - * @return Google_Service_Pubsub_Topic - */ - public function getTopic() - { - return $this->topic; - } - public function setUpdateMask($updateMask) - { - $this->updateMask = $updateMask; - } - public function getUpdateMask() - { - return $this->updateMask; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress.php deleted file mode 100644 index f4987d31..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress.php +++ /dev/null @@ -1,65 +0,0 @@ - - * Finds the least expensive flights between an origin and a destination.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_QPXExpress extends Google_Service -{ - - - public $trips; - - /** - * Constructs the internal representation of the QPXExpress service. - * - * @param Google_Client $client - */ - public function __construct(Google_Client $client) - { - parent::__construct($client); - $this->rootUrl = 'https://www.googleapis.com/'; - $this->servicePath = 'qpxExpress/v1/trips/'; - $this->version = 'v1'; - $this->serviceName = 'qpxExpress'; - - $this->trips = new Google_Service_QPXExpress_Resource_Trips( - $this, - $this->serviceName, - 'trips', - array( - 'methods' => array( - 'search' => array( - 'path' => 'search', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/AircraftData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/AircraftData.php deleted file mode 100644 index 84a04a3e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/AircraftData.php +++ /dev/null @@ -1,48 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/AirportData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/AirportData.php deleted file mode 100644 index dcce7e50..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/AirportData.php +++ /dev/null @@ -1,57 +0,0 @@ -city = $city; - } - public function getCity() - { - return $this->city; - } - public function setCode($code) - { - $this->code = $code; - } - public function getCode() - { - return $this->code; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/BagDescriptor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/BagDescriptor.php deleted file mode 100644 index c4dae9ef..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/BagDescriptor.php +++ /dev/null @@ -1,67 +0,0 @@ -commercialName = $commercialName; - } - public function getCommercialName() - { - return $this->commercialName; - } - public function setCount($count) - { - $this->count = $count; - } - public function getCount() - { - return $this->count; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setSubcode($subcode) - { - $this->subcode = $subcode; - } - public function getSubcode() - { - return $this->subcode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/CarrierData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/CarrierData.php deleted file mode 100644 index af41a541..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/CarrierData.php +++ /dev/null @@ -1,48 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/CityData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/CityData.php deleted file mode 100644 index 979d14b4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/CityData.php +++ /dev/null @@ -1,57 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setCountry($country) - { - $this->country = $country; - } - public function getCountry() - { - return $this->country; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/Data.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/Data.php deleted file mode 100644 index 159b501b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/Data.php +++ /dev/null @@ -1,111 +0,0 @@ -aircraft = $aircraft; - } - /** - * @return Google_Service_QPXExpress_AircraftData - */ - public function getAircraft() - { - return $this->aircraft; - } - /** - * @param Google_Service_QPXExpress_AirportData - */ - public function setAirport($airport) - { - $this->airport = $airport; - } - /** - * @return Google_Service_QPXExpress_AirportData - */ - public function getAirport() - { - return $this->airport; - } - /** - * @param Google_Service_QPXExpress_CarrierData - */ - public function setCarrier($carrier) - { - $this->carrier = $carrier; - } - /** - * @return Google_Service_QPXExpress_CarrierData - */ - public function getCarrier() - { - return $this->carrier; - } - /** - * @param Google_Service_QPXExpress_CityData - */ - public function setCity($city) - { - $this->city = $city; - } - /** - * @return Google_Service_QPXExpress_CityData - */ - public function getCity() - { - return $this->city; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_QPXExpress_TaxData - */ - public function setTax($tax) - { - $this->tax = $tax; - } - /** - * @return Google_Service_QPXExpress_TaxData - */ - public function getTax() - { - return $this->tax; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/FareInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/FareInfo.php deleted file mode 100644 index 7cb920a9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/FareInfo.php +++ /dev/null @@ -1,84 +0,0 @@ -basisCode = $basisCode; - } - public function getBasisCode() - { - return $this->basisCode; - } - public function setCarrier($carrier) - { - $this->carrier = $carrier; - } - public function getCarrier() - { - return $this->carrier; - } - public function setDestination($destination) - { - $this->destination = $destination; - } - public function getDestination() - { - return $this->destination; - } - 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 setOrigin($origin) - { - $this->origin = $origin; - } - public function getOrigin() - { - return $this->origin; - } - public function setPrivate($private) - { - $this->private = $private; - } - public function getPrivate() - { - return $this->private; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/FlightInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/FlightInfo.php deleted file mode 100644 index e8d1335e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/FlightInfo.php +++ /dev/null @@ -1,39 +0,0 @@ -carrier = $carrier; - } - public function getCarrier() - { - return $this->carrier; - } - public function setNumber($number) - { - $this->number = $number; - } - public function getNumber() - { - return $this->number; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/FreeBaggageAllowance.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/FreeBaggageAllowance.php deleted file mode 100644 index 6b8fcca9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/FreeBaggageAllowance.php +++ /dev/null @@ -1,83 +0,0 @@ -bagDescriptor = $bagDescriptor; - } - /** - * @return Google_Service_QPXExpress_BagDescriptor - */ - public function getBagDescriptor() - { - return $this->bagDescriptor; - } - public function setKilos($kilos) - { - $this->kilos = $kilos; - } - public function getKilos() - { - return $this->kilos; - } - public function setKilosPerPiece($kilosPerPiece) - { - $this->kilosPerPiece = $kilosPerPiece; - } - public function getKilosPerPiece() - { - return $this->kilosPerPiece; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setPieces($pieces) - { - $this->pieces = $pieces; - } - public function getPieces() - { - return $this->pieces; - } - public function setPounds($pounds) - { - $this->pounds = $pounds; - } - public function getPounds() - { - return $this->pounds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/LegInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/LegInfo.php deleted file mode 100644 index cac3efa8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/LegInfo.php +++ /dev/null @@ -1,174 +0,0 @@ -aircraft = $aircraft; - } - public function getAircraft() - { - return $this->aircraft; - } - public function setArrivalTime($arrivalTime) - { - $this->arrivalTime = $arrivalTime; - } - public function getArrivalTime() - { - return $this->arrivalTime; - } - public function setChangePlane($changePlane) - { - $this->changePlane = $changePlane; - } - public function getChangePlane() - { - return $this->changePlane; - } - public function setConnectionDuration($connectionDuration) - { - $this->connectionDuration = $connectionDuration; - } - public function getConnectionDuration() - { - return $this->connectionDuration; - } - public function setDepartureTime($departureTime) - { - $this->departureTime = $departureTime; - } - public function getDepartureTime() - { - return $this->departureTime; - } - public function setDestination($destination) - { - $this->destination = $destination; - } - public function getDestination() - { - return $this->destination; - } - public function setDestinationTerminal($destinationTerminal) - { - $this->destinationTerminal = $destinationTerminal; - } - public function getDestinationTerminal() - { - return $this->destinationTerminal; - } - public function setDuration($duration) - { - $this->duration = $duration; - } - public function getDuration() - { - return $this->duration; - } - 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 setMeal($meal) - { - $this->meal = $meal; - } - public function getMeal() - { - return $this->meal; - } - public function setMileage($mileage) - { - $this->mileage = $mileage; - } - public function getMileage() - { - return $this->mileage; - } - public function setOnTimePerformance($onTimePerformance) - { - $this->onTimePerformance = $onTimePerformance; - } - public function getOnTimePerformance() - { - return $this->onTimePerformance; - } - public function setOperatingDisclosure($operatingDisclosure) - { - $this->operatingDisclosure = $operatingDisclosure; - } - public function getOperatingDisclosure() - { - return $this->operatingDisclosure; - } - public function setOrigin($origin) - { - $this->origin = $origin; - } - public function getOrigin() - { - return $this->origin; - } - public function setOriginTerminal($originTerminal) - { - $this->originTerminal = $originTerminal; - } - public function getOriginTerminal() - { - return $this->originTerminal; - } - public function setSecure($secure) - { - $this->secure = $secure; - } - public function getSecure() - { - return $this->secure; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/PassengerCounts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/PassengerCounts.php deleted file mode 100644 index 507fcee5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/PassengerCounts.php +++ /dev/null @@ -1,75 +0,0 @@ -adultCount = $adultCount; - } - public function getAdultCount() - { - return $this->adultCount; - } - public function setChildCount($childCount) - { - $this->childCount = $childCount; - } - public function getChildCount() - { - return $this->childCount; - } - public function setInfantInLapCount($infantInLapCount) - { - $this->infantInLapCount = $infantInLapCount; - } - public function getInfantInLapCount() - { - return $this->infantInLapCount; - } - public function setInfantInSeatCount($infantInSeatCount) - { - $this->infantInSeatCount = $infantInSeatCount; - } - public function getInfantInSeatCount() - { - return $this->infantInSeatCount; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setSeniorCount($seniorCount) - { - $this->seniorCount = $seniorCount; - } - public function getSeniorCount() - { - return $this->seniorCount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/PricingInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/PricingInfo.php deleted file mode 100644 index 2c3e9495..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/PricingInfo.php +++ /dev/null @@ -1,167 +0,0 @@ -baseFareTotal = $baseFareTotal; - } - public function getBaseFareTotal() - { - return $this->baseFareTotal; - } - /** - * @param Google_Service_QPXExpress_FareInfo - */ - public function setFare($fare) - { - $this->fare = $fare; - } - /** - * @return Google_Service_QPXExpress_FareInfo - */ - public function getFare() - { - return $this->fare; - } - public function setFareCalculation($fareCalculation) - { - $this->fareCalculation = $fareCalculation; - } - public function getFareCalculation() - { - return $this->fareCalculation; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLatestTicketingTime($latestTicketingTime) - { - $this->latestTicketingTime = $latestTicketingTime; - } - public function getLatestTicketingTime() - { - return $this->latestTicketingTime; - } - /** - * @param Google_Service_QPXExpress_PassengerCounts - */ - public function setPassengers(Google_Service_QPXExpress_PassengerCounts $passengers) - { - $this->passengers = $passengers; - } - /** - * @return Google_Service_QPXExpress_PassengerCounts - */ - public function getPassengers() - { - return $this->passengers; - } - public function setPtc($ptc) - { - $this->ptc = $ptc; - } - public function getPtc() - { - return $this->ptc; - } - public function setRefundable($refundable) - { - $this->refundable = $refundable; - } - public function getRefundable() - { - return $this->refundable; - } - public function setSaleFareTotal($saleFareTotal) - { - $this->saleFareTotal = $saleFareTotal; - } - public function getSaleFareTotal() - { - return $this->saleFareTotal; - } - public function setSaleTaxTotal($saleTaxTotal) - { - $this->saleTaxTotal = $saleTaxTotal; - } - public function getSaleTaxTotal() - { - return $this->saleTaxTotal; - } - public function setSaleTotal($saleTotal) - { - $this->saleTotal = $saleTotal; - } - public function getSaleTotal() - { - return $this->saleTotal; - } - /** - * @param Google_Service_QPXExpress_SegmentPricing - */ - public function setSegmentPricing($segmentPricing) - { - $this->segmentPricing = $segmentPricing; - } - /** - * @return Google_Service_QPXExpress_SegmentPricing - */ - public function getSegmentPricing() - { - return $this->segmentPricing; - } - /** - * @param Google_Service_QPXExpress_TaxInfo - */ - public function setTax($tax) - { - $this->tax = $tax; - } - /** - * @return Google_Service_QPXExpress_TaxInfo - */ - public function getTax() - { - return $this->tax; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/Resource/Trips.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/Resource/Trips.php deleted file mode 100644 index c72c65c0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/Resource/Trips.php +++ /dev/null @@ -1,41 +0,0 @@ - - * $qpxExpressService = new Google_Service_QPXExpress(...); - * $trips = $qpxExpressService->trips; - * - */ -class Google_Service_QPXExpress_Resource_Trips extends Google_Service_Resource -{ - /** - * Returns a list of flights. (trips.search) - * - * @param Google_Service_QPXExpress_TripsSearchRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_QPXExpress_TripsSearchResponse - */ - public function search(Google_Service_QPXExpress_TripsSearchRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('search', array($params), "Google_Service_QPXExpress_TripsSearchResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/SegmentInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/SegmentInfo.php deleted file mode 100644 index db18b43d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/SegmentInfo.php +++ /dev/null @@ -1,135 +0,0 @@ -bookingCode = $bookingCode; - } - public function getBookingCode() - { - return $this->bookingCode; - } - public function setBookingCodeCount($bookingCodeCount) - { - $this->bookingCodeCount = $bookingCodeCount; - } - public function getBookingCodeCount() - { - return $this->bookingCodeCount; - } - public function setCabin($cabin) - { - $this->cabin = $cabin; - } - public function getCabin() - { - return $this->cabin; - } - public function setConnectionDuration($connectionDuration) - { - $this->connectionDuration = $connectionDuration; - } - public function getConnectionDuration() - { - return $this->connectionDuration; - } - public function setDuration($duration) - { - $this->duration = $duration; - } - public function getDuration() - { - return $this->duration; - } - /** - * @param Google_Service_QPXExpress_FlightInfo - */ - public function setFlight(Google_Service_QPXExpress_FlightInfo $flight) - { - $this->flight = $flight; - } - /** - * @return Google_Service_QPXExpress_FlightInfo - */ - public function getFlight() - { - return $this->flight; - } - 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; - } - /** - * @param Google_Service_QPXExpress_LegInfo - */ - public function setLeg($leg) - { - $this->leg = $leg; - } - /** - * @return Google_Service_QPXExpress_LegInfo - */ - public function getLeg() - { - return $this->leg; - } - public function setMarriedSegmentGroup($marriedSegmentGroup) - { - $this->marriedSegmentGroup = $marriedSegmentGroup; - } - public function getMarriedSegmentGroup() - { - return $this->marriedSegmentGroup; - } - public function setSubjectToGovernmentApproval($subjectToGovernmentApproval) - { - $this->subjectToGovernmentApproval = $subjectToGovernmentApproval; - } - public function getSubjectToGovernmentApproval() - { - return $this->subjectToGovernmentApproval; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/SegmentPricing.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/SegmentPricing.php deleted file mode 100644 index d9302dc2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/SegmentPricing.php +++ /dev/null @@ -1,65 +0,0 @@ -fareId = $fareId; - } - public function getFareId() - { - return $this->fareId; - } - /** - * @param Google_Service_QPXExpress_FreeBaggageAllowance - */ - public function setFreeBaggageOption($freeBaggageOption) - { - $this->freeBaggageOption = $freeBaggageOption; - } - /** - * @return Google_Service_QPXExpress_FreeBaggageAllowance - */ - public function getFreeBaggageOption() - { - return $this->freeBaggageOption; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setSegmentId($segmentId) - { - $this->segmentId = $segmentId; - } - public function getSegmentId() - { - return $this->segmentId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/SliceInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/SliceInfo.php deleted file mode 100644 index 4cdffece..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/SliceInfo.php +++ /dev/null @@ -1,56 +0,0 @@ -duration = $duration; - } - public function getDuration() - { - return $this->duration; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_QPXExpress_SegmentInfo - */ - public function setSegment($segment) - { - $this->segment = $segment; - } - /** - * @return Google_Service_QPXExpress_SegmentInfo - */ - public function getSegment() - { - return $this->segment; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/SliceInput.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/SliceInput.php deleted file mode 100644 index d4b88de9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/SliceInput.php +++ /dev/null @@ -1,128 +0,0 @@ -alliance = $alliance; - } - public function getAlliance() - { - return $this->alliance; - } - public function setDate($date) - { - $this->date = $date; - } - public function getDate() - { - return $this->date; - } - public function setDestination($destination) - { - $this->destination = $destination; - } - public function getDestination() - { - return $this->destination; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setMaxConnectionDuration($maxConnectionDuration) - { - $this->maxConnectionDuration = $maxConnectionDuration; - } - public function getMaxConnectionDuration() - { - return $this->maxConnectionDuration; - } - public function setMaxStops($maxStops) - { - $this->maxStops = $maxStops; - } - public function getMaxStops() - { - return $this->maxStops; - } - public function setOrigin($origin) - { - $this->origin = $origin; - } - public function getOrigin() - { - return $this->origin; - } - public function setPermittedCarrier($permittedCarrier) - { - $this->permittedCarrier = $permittedCarrier; - } - public function getPermittedCarrier() - { - return $this->permittedCarrier; - } - /** - * @param Google_Service_QPXExpress_TimeOfDayRange - */ - public function setPermittedDepartureTime(Google_Service_QPXExpress_TimeOfDayRange $permittedDepartureTime) - { - $this->permittedDepartureTime = $permittedDepartureTime; - } - /** - * @return Google_Service_QPXExpress_TimeOfDayRange - */ - public function getPermittedDepartureTime() - { - return $this->permittedDepartureTime; - } - public function setPreferredCabin($preferredCabin) - { - $this->preferredCabin = $preferredCabin; - } - public function getPreferredCabin() - { - return $this->preferredCabin; - } - public function setProhibitedCarrier($prohibitedCarrier) - { - $this->prohibitedCarrier = $prohibitedCarrier; - } - public function getProhibitedCarrier() - { - return $this->prohibitedCarrier; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/TaxData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/TaxData.php deleted file mode 100644 index b8be6be4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/TaxData.php +++ /dev/null @@ -1,48 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/TaxInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/TaxInfo.php deleted file mode 100644 index 977a70b0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/TaxInfo.php +++ /dev/null @@ -1,75 +0,0 @@ -chargeType = $chargeType; - } - public function getChargeType() - { - return $this->chargeType; - } - public function setCode($code) - { - $this->code = $code; - } - public function getCode() - { - return $this->code; - } - public function setCountry($country) - { - $this->country = $country; - } - public function getCountry() - { - return $this->country; - } - 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 setSalePrice($salePrice) - { - $this->salePrice = $salePrice; - } - public function getSalePrice() - { - return $this->salePrice; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/TimeOfDayRange.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/TimeOfDayRange.php deleted file mode 100644 index 2249050e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/TimeOfDayRange.php +++ /dev/null @@ -1,48 +0,0 @@ -earliestTime = $earliestTime; - } - public function getEarliestTime() - { - return $this->earliestTime; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLatestTime($latestTime) - { - $this->latestTime = $latestTime; - } - public function getLatestTime() - { - return $this->latestTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/TripOption.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/TripOption.php deleted file mode 100644 index ef65506e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/TripOption.php +++ /dev/null @@ -1,81 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_QPXExpress_PricingInfo - */ - public function setPricing($pricing) - { - $this->pricing = $pricing; - } - /** - * @return Google_Service_QPXExpress_PricingInfo - */ - public function getPricing() - { - return $this->pricing; - } - public function setSaleTotal($saleTotal) - { - $this->saleTotal = $saleTotal; - } - public function getSaleTotal() - { - return $this->saleTotal; - } - /** - * @param Google_Service_QPXExpress_SliceInfo - */ - public function setSlice($slice) - { - $this->slice = $slice; - } - /** - * @return Google_Service_QPXExpress_SliceInfo - */ - public function getSlice() - { - return $this->slice; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/TripOptionsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/TripOptionsRequest.php deleted file mode 100644 index e524548b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/TripOptionsRequest.php +++ /dev/null @@ -1,99 +0,0 @@ -maxPrice = $maxPrice; - } - public function getMaxPrice() - { - return $this->maxPrice; - } - /** - * @param Google_Service_QPXExpress_PassengerCounts - */ - public function setPassengers(Google_Service_QPXExpress_PassengerCounts $passengers) - { - $this->passengers = $passengers; - } - /** - * @return Google_Service_QPXExpress_PassengerCounts - */ - public function getPassengers() - { - return $this->passengers; - } - public function setRefundable($refundable) - { - $this->refundable = $refundable; - } - public function getRefundable() - { - return $this->refundable; - } - public function setSaleCountry($saleCountry) - { - $this->saleCountry = $saleCountry; - } - public function getSaleCountry() - { - return $this->saleCountry; - } - /** - * @param Google_Service_QPXExpress_SliceInput - */ - public function setSlice($slice) - { - $this->slice = $slice; - } - /** - * @return Google_Service_QPXExpress_SliceInput - */ - public function getSlice() - { - return $this->slice; - } - public function setSolutions($solutions) - { - $this->solutions = $solutions; - } - public function getSolutions() - { - return $this->solutions; - } - public function setTicketingCountry($ticketingCountry) - { - $this->ticketingCountry = $ticketingCountry; - } - public function getTicketingCountry() - { - return $this->ticketingCountry; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/TripOptionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/TripOptionsResponse.php deleted file mode 100644 index a92c560a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/TripOptionsResponse.php +++ /dev/null @@ -1,72 +0,0 @@ -data = $data; - } - /** - * @return Google_Service_QPXExpress_Data - */ - public function getData() - { - return $this->data; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setRequestId($requestId) - { - $this->requestId = $requestId; - } - public function getRequestId() - { - return $this->requestId; - } - /** - * @param Google_Service_QPXExpress_TripOption - */ - public function setTripOption($tripOption) - { - $this->tripOption = $tripOption; - } - /** - * @return Google_Service_QPXExpress_TripOption - */ - public function getTripOption() - { - return $this->tripOption; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/TripsSearchRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/TripsSearchRequest.php deleted file mode 100644 index 0766d994..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/TripsSearchRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -request = $request; - } - /** - * @return Google_Service_QPXExpress_TripOptionsRequest - */ - public function getRequest() - { - return $this->request; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/TripsSearchResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/TripsSearchResponse.php deleted file mode 100644 index f5d070d0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/QPXExpress/TripsSearchResponse.php +++ /dev/null @@ -1,46 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_QPXExpress_TripOptionsResponse - */ - public function setTrips(Google_Service_QPXExpress_TripOptionsResponse $trips) - { - $this->trips = $trips; - } - /** - * @return Google_Service_QPXExpress_TripOptionsResponse - */ - public function getTrips() - { - return $this->trips; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Recommender.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Recommender.php deleted file mode 100644 index fc31654b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Recommender.php +++ /dev/null @@ -1,127 +0,0 @@ - -

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Recommender extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - - public $projects_locations_recommenders_recommendations; - - /** - * Constructs the internal representation of the Recommender service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://recommender.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1beta1'; - $this->serviceName = 'recommender'; - - $this->projects_locations_recommenders_recommendations = new Google_Service_Recommender_Resource_ProjectsLocationsRecommendersRecommendations( - $this, - $this->serviceName, - 'recommendations', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1beta1/{+parent}/recommendations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'markClaimed' => array( - 'path' => 'v1beta1/{+name}:markClaimed', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'markFailed' => array( - 'path' => 'v1beta1/{+name}:markFailed', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'markSucceeded' => array( - 'path' => 'v1beta1/{+name}:markSucceeded', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Recommender/GoogleCloudRecommenderV1beta1CostProjection.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Recommender/GoogleCloudRecommenderV1beta1CostProjection.php deleted file mode 100644 index 8652979c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Recommender/GoogleCloudRecommenderV1beta1CostProjection.php +++ /dev/null @@ -1,46 +0,0 @@ -cost = $cost; - } - /** - * @return Google_Service_Recommender_GoogleTypeMoney - */ - public function getCost() - { - return $this->cost; - } - public function setDuration($duration) - { - $this->duration = $duration; - } - public function getDuration() - { - return $this->duration; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Recommender/GoogleCloudRecommenderV1beta1Impact.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Recommender/GoogleCloudRecommenderV1beta1Impact.php deleted file mode 100644 index 62215c2f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Recommender/GoogleCloudRecommenderV1beta1Impact.php +++ /dev/null @@ -1,46 +0,0 @@ -category = $category; - } - public function getCategory() - { - return $this->category; - } - /** - * @param Google_Service_Recommender_GoogleCloudRecommenderV1beta1CostProjection - */ - public function setCostProjection(Google_Service_Recommender_GoogleCloudRecommenderV1beta1CostProjection $costProjection) - { - $this->costProjection = $costProjection; - } - /** - * @return Google_Service_Recommender_GoogleCloudRecommenderV1beta1CostProjection - */ - public function getCostProjection() - { - return $this->costProjection; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Recommender/GoogleCloudRecommenderV1beta1ListRecommendationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Recommender/GoogleCloudRecommenderV1beta1ListRecommendationsResponse.php deleted file mode 100644 index 896d0558..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Recommender/GoogleCloudRecommenderV1beta1ListRecommendationsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Recommender_GoogleCloudRecommenderV1beta1Recommendation - */ - public function setRecommendations($recommendations) - { - $this->recommendations = $recommendations; - } - /** - * @return Google_Service_Recommender_GoogleCloudRecommenderV1beta1Recommendation - */ - public function getRecommendations() - { - return $this->recommendations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Recommender/GoogleCloudRecommenderV1beta1MarkRecommendationClaimedRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Recommender/GoogleCloudRecommenderV1beta1MarkRecommendationClaimedRequest.php deleted file mode 100644 index 47e87cb2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Recommender/GoogleCloudRecommenderV1beta1MarkRecommendationClaimedRequest.php +++ /dev/null @@ -1,39 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setStateMetadata($stateMetadata) - { - $this->stateMetadata = $stateMetadata; - } - public function getStateMetadata() - { - return $this->stateMetadata; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Recommender/GoogleCloudRecommenderV1beta1MarkRecommendationFailedRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Recommender/GoogleCloudRecommenderV1beta1MarkRecommendationFailedRequest.php deleted file mode 100644 index e3b7858d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Recommender/GoogleCloudRecommenderV1beta1MarkRecommendationFailedRequest.php +++ /dev/null @@ -1,39 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setStateMetadata($stateMetadata) - { - $this->stateMetadata = $stateMetadata; - } - public function getStateMetadata() - { - return $this->stateMetadata; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Recommender/GoogleCloudRecommenderV1beta1MarkRecommendationSucceededRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Recommender/GoogleCloudRecommenderV1beta1MarkRecommendationSucceededRequest.php deleted file mode 100644 index 983e1245..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Recommender/GoogleCloudRecommenderV1beta1MarkRecommendationSucceededRequest.php +++ /dev/null @@ -1,39 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setStateMetadata($stateMetadata) - { - $this->stateMetadata = $stateMetadata; - } - public function getStateMetadata() - { - return $this->stateMetadata; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Recommender/GoogleCloudRecommenderV1beta1Operation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Recommender/GoogleCloudRecommenderV1beta1Operation.php deleted file mode 100644 index 356803f6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Recommender/GoogleCloudRecommenderV1beta1Operation.php +++ /dev/null @@ -1,125 +0,0 @@ -action = $action; - } - public function getAction() - { - return $this->action; - } - public function setPath($path) - { - $this->path = $path; - } - public function getPath() - { - return $this->path; - } - public function setPathFilters($pathFilters) - { - $this->pathFilters = $pathFilters; - } - public function getPathFilters() - { - return $this->pathFilters; - } - /** - * @param Google_Service_Recommender_GoogleCloudRecommenderV1beta1ValueMatcher - */ - public function setPathValueMatchers($pathValueMatchers) - { - $this->pathValueMatchers = $pathValueMatchers; - } - /** - * @return Google_Service_Recommender_GoogleCloudRecommenderV1beta1ValueMatcher - */ - public function getPathValueMatchers() - { - return $this->pathValueMatchers; - } - public function setResource($resource) - { - $this->resource = $resource; - } - public function getResource() - { - return $this->resource; - } - public function setResourceType($resourceType) - { - $this->resourceType = $resourceType; - } - public function getResourceType() - { - return $this->resourceType; - } - public function setSourcePath($sourcePath) - { - $this->sourcePath = $sourcePath; - } - public function getSourcePath() - { - return $this->sourcePath; - } - public function setSourceResource($sourceResource) - { - $this->sourceResource = $sourceResource; - } - public function getSourceResource() - { - return $this->sourceResource; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } - /** - * @param Google_Service_Recommender_GoogleCloudRecommenderV1beta1ValueMatcher - */ - public function setValueMatcher(Google_Service_Recommender_GoogleCloudRecommenderV1beta1ValueMatcher $valueMatcher) - { - $this->valueMatcher = $valueMatcher; - } - /** - * @return Google_Service_Recommender_GoogleCloudRecommenderV1beta1ValueMatcher - */ - public function getValueMatcher() - { - return $this->valueMatcher; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Recommender/GoogleCloudRecommenderV1beta1OperationGroup.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Recommender/GoogleCloudRecommenderV1beta1OperationGroup.php deleted file mode 100644 index 390bfea9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Recommender/GoogleCloudRecommenderV1beta1OperationGroup.php +++ /dev/null @@ -1,38 +0,0 @@ -operations = $operations; - } - /** - * @return Google_Service_Recommender_GoogleCloudRecommenderV1beta1Operation - */ - public function getOperations() - { - return $this->operations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Recommender/GoogleCloudRecommenderV1beta1Recommendation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Recommender/GoogleCloudRecommenderV1beta1Recommendation.php deleted file mode 100644 index 6573f2eb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Recommender/GoogleCloudRecommenderV1beta1Recommendation.php +++ /dev/null @@ -1,131 +0,0 @@ -additionalImpact = $additionalImpact; - } - /** - * @return Google_Service_Recommender_GoogleCloudRecommenderV1beta1Impact - */ - public function getAdditionalImpact() - { - return $this->additionalImpact; - } - /** - * @param Google_Service_Recommender_GoogleCloudRecommenderV1beta1RecommendationContent - */ - public function setContent(Google_Service_Recommender_GoogleCloudRecommenderV1beta1RecommendationContent $content) - { - $this->content = $content; - } - /** - * @return Google_Service_Recommender_GoogleCloudRecommenderV1beta1RecommendationContent - */ - public function getContent() - { - return $this->content; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setLastRefreshTime($lastRefreshTime) - { - $this->lastRefreshTime = $lastRefreshTime; - } - public function getLastRefreshTime() - { - return $this->lastRefreshTime; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Recommender_GoogleCloudRecommenderV1beta1Impact - */ - public function setPrimaryImpact(Google_Service_Recommender_GoogleCloudRecommenderV1beta1Impact $primaryImpact) - { - $this->primaryImpact = $primaryImpact; - } - /** - * @return Google_Service_Recommender_GoogleCloudRecommenderV1beta1Impact - */ - public function getPrimaryImpact() - { - return $this->primaryImpact; - } - public function setRecommenderSubtype($recommenderSubtype) - { - $this->recommenderSubtype = $recommenderSubtype; - } - public function getRecommenderSubtype() - { - return $this->recommenderSubtype; - } - /** - * @param Google_Service_Recommender_GoogleCloudRecommenderV1beta1RecommendationStateInfo - */ - public function setStateInfo(Google_Service_Recommender_GoogleCloudRecommenderV1beta1RecommendationStateInfo $stateInfo) - { - $this->stateInfo = $stateInfo; - } - /** - * @return Google_Service_Recommender_GoogleCloudRecommenderV1beta1RecommendationStateInfo - */ - public function getStateInfo() - { - return $this->stateInfo; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Recommender/GoogleCloudRecommenderV1beta1RecommendationContent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Recommender/GoogleCloudRecommenderV1beta1RecommendationContent.php deleted file mode 100644 index c5a489b5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Recommender/GoogleCloudRecommenderV1beta1RecommendationContent.php +++ /dev/null @@ -1,38 +0,0 @@ -operationGroups = $operationGroups; - } - /** - * @return Google_Service_Recommender_GoogleCloudRecommenderV1beta1OperationGroup - */ - public function getOperationGroups() - { - return $this->operationGroups; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Recommender/GoogleCloudRecommenderV1beta1RecommendationStateInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Recommender/GoogleCloudRecommenderV1beta1RecommendationStateInfo.php deleted file mode 100644 index 861400bd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Recommender/GoogleCloudRecommenderV1beta1RecommendationStateInfo.php +++ /dev/null @@ -1,39 +0,0 @@ -state = $state; - } - public function getState() - { - return $this->state; - } - public function setStateMetadata($stateMetadata) - { - $this->stateMetadata = $stateMetadata; - } - public function getStateMetadata() - { - return $this->stateMetadata; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Recommender/GoogleCloudRecommenderV1beta1ValueMatcher.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Recommender/GoogleCloudRecommenderV1beta1ValueMatcher.php deleted file mode 100644 index feca4598..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Recommender/GoogleCloudRecommenderV1beta1ValueMatcher.php +++ /dev/null @@ -1,30 +0,0 @@ -matchesPattern = $matchesPattern; - } - public function getMatchesPattern() - { - return $this->matchesPattern; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Recommender/GoogleTypeMoney.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Recommender/GoogleTypeMoney.php deleted file mode 100644 index 9430f695..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Recommender/GoogleTypeMoney.php +++ /dev/null @@ -1,48 +0,0 @@ -currencyCode = $currencyCode; - } - public function getCurrencyCode() - { - return $this->currencyCode; - } - public function setNanos($nanos) - { - $this->nanos = $nanos; - } - public function getNanos() - { - return $this->nanos; - } - public function setUnits($units) - { - $this->units = $units; - } - public function getUnits() - { - return $this->units; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Recommender/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Recommender/Resource/Projects.php deleted file mode 100644 index 0372ed72..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Recommender/Resource/Projects.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $recommenderService = new Google_Service_Recommender(...); - * $projects = $recommenderService->projects; - * - */ -class Google_Service_Recommender_Resource_Projects extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Recommender/Resource/ProjectsLocations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Recommender/Resource/ProjectsLocations.php deleted file mode 100644 index 4622f71c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Recommender/Resource/ProjectsLocations.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $recommenderService = new Google_Service_Recommender(...); - * $locations = $recommenderService->locations; - * - */ -class Google_Service_Recommender_Resource_ProjectsLocations extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Recommender/Resource/ProjectsLocationsRecommenders.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Recommender/Resource/ProjectsLocationsRecommenders.php deleted file mode 100644 index 9d1b44e4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Recommender/Resource/ProjectsLocationsRecommenders.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $recommenderService = new Google_Service_Recommender(...); - * $recommenders = $recommenderService->recommenders; - * - */ -class Google_Service_Recommender_Resource_ProjectsLocationsRecommenders extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Recommender/Resource/ProjectsLocationsRecommendersRecommendations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Recommender/Resource/ProjectsLocationsRecommendersRecommendations.php deleted file mode 100644 index 49b62452..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Recommender/Resource/ProjectsLocationsRecommendersRecommendations.php +++ /dev/null @@ -1,146 +0,0 @@ - - * $recommenderService = new Google_Service_Recommender(...); - * $recommendations = $recommenderService->recommendations; - * - */ -class Google_Service_Recommender_Resource_ProjectsLocationsRecommendersRecommendations extends Google_Service_Resource -{ - /** - * Gets the requested recommendation. Requires the recommender.*.get IAM - * permission for the specified recommender. (recommendations.get) - * - * @param string $name Required. Name of the recommendation. - * @param array $optParams Optional parameters. - * @return Google_Service_Recommender_GoogleCloudRecommenderV1beta1Recommendation - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Recommender_GoogleCloudRecommenderV1beta1Recommendation"); - } - /** - * Lists recommendations for a Cloud project. Requires the recommender.*.list - * IAM permission for the specified recommender. - * (recommendations.listProjectsLocationsRecommendersRecommendations) - * - * @param string $parent Required. The container resource on which to execute - * the request. Acceptable formats: - * - * 1. "projects/[PROJECT_NUMBER]/locations/[LOCATION]/recommenders/[RECOMMENDER_ - * ID]", - * - * LOCATION here refers to GCP Locations: - * https://cloud.google.com/about/locations/ - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Optional. If present, retrieves the next batch of - * results from the preceding call to this method. `page_token` must be the - * value of `next_page_token` from the previous response. The values of other - * method parameters must be identical to those in the previous call. - * @opt_param int pageSize Optional. The maximum number of results to return - * from this request. Non-positive values are ignored. If not specified, the - * server will determine the number of results to return. - * @opt_param string filter Filter expression to restrict the recommendations - * returned. Supported filter fields: state_info.state Eg: - * `state_info.state:"DISMISSED" or state_info.state:"FAILED" - * @return Google_Service_Recommender_GoogleCloudRecommenderV1beta1ListRecommendationsResponse - */ - public function listProjectsLocationsRecommendersRecommendations($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Recommender_GoogleCloudRecommenderV1beta1ListRecommendationsResponse"); - } - /** - * Marks the Recommendation State as Claimed. Users can use this method to - * indicate to the Recommender API that they are starting to apply the - * recommendation themselves. This stops the recommendation content from being - * updated. Associated insights are frozen and placed in the ACCEPTED state. - * - * MarkRecommendationClaimed can be applied to recommendations in CLAIMED or - * ACTIVE state. - * - * Requires the recommender.*.update IAM permission for the specified - * recommender. (recommendations.markClaimed) - * - * @param string $name Required. Name of the recommendation. - * @param Google_Service_Recommender_GoogleCloudRecommenderV1beta1MarkRecommendationClaimedRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Recommender_GoogleCloudRecommenderV1beta1Recommendation - */ - public function markClaimed($name, Google_Service_Recommender_GoogleCloudRecommenderV1beta1MarkRecommendationClaimedRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('markClaimed', array($params), "Google_Service_Recommender_GoogleCloudRecommenderV1beta1Recommendation"); - } - /** - * Marks the Recommendation State as Failed. Users can use this method to - * indicate to the Recommender API that they have applied the recommendation - * themselves, and the operation failed. This stops the recommendation content - * from being updated. Associated insights are frozen and placed in the ACCEPTED - * state. - * - * MarkRecommendationFailed can be applied to recommendations in ACTIVE, - * CLAIMED, SUCCEEDED, or FAILED state. - * - * Requires the recommender.*.update IAM permission for the specified - * recommender. (recommendations.markFailed) - * - * @param string $name Required. Name of the recommendation. - * @param Google_Service_Recommender_GoogleCloudRecommenderV1beta1MarkRecommendationFailedRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Recommender_GoogleCloudRecommenderV1beta1Recommendation - */ - public function markFailed($name, Google_Service_Recommender_GoogleCloudRecommenderV1beta1MarkRecommendationFailedRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('markFailed', array($params), "Google_Service_Recommender_GoogleCloudRecommenderV1beta1Recommendation"); - } - /** - * Marks the Recommendation State as Succeeded. Users can use this method to - * indicate to the Recommender API that they have applied the recommendation - * themselves, and the operation was successful. This stops the recommendation - * content from being updated. Associated insights are frozen and placed in the - * ACCEPTED state. - * - * MarkRecommendationSucceeded can be applied to recommendations in ACTIVE, - * CLAIMED, SUCCEEDED, or FAILED state. - * - * Requires the recommender.*.update IAM permission for the specified - * recommender. (recommendations.markSucceeded) - * - * @param string $name Required. Name of the recommendation. - * @param Google_Service_Recommender_GoogleCloudRecommenderV1beta1MarkRecommendationSucceededRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Recommender_GoogleCloudRecommenderV1beta1Recommendation - */ - public function markSucceeded($name, Google_Service_Recommender_GoogleCloudRecommenderV1beta1MarkRecommendationSucceededRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('markSucceeded', array($params), "Google_Service_Recommender_GoogleCloudRecommenderV1beta1Recommendation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution.php deleted file mode 100644 index fde37be5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution.php +++ /dev/null @@ -1,254 +0,0 @@ - - * Supplies a Remote Execution API service for tools such as bazel.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_RemoteBuildExecution extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - - public $actionResults; - public $actions; - public $blobs; - public $operations; - public $v2; - - /** - * Constructs the internal representation of the RemoteBuildExecution service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://remotebuildexecution.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v2'; - $this->serviceName = 'remotebuildexecution'; - - $this->actionResults = new Google_Service_RemoteBuildExecution_Resource_ActionResults( - $this, - $this->serviceName, - 'actionResults', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v2/{+instanceName}/actionResults/{hash}/{sizeBytes}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'instanceName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'hash' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sizeBytes' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'inlineStdout' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'inlineStderr' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'inlineOutputFiles' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ),'update' => array( - 'path' => 'v2/{+instanceName}/actionResults/{hash}/{sizeBytes}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'instanceName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'hash' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sizeBytes' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resultsCachePolicy.priority' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->actions = new Google_Service_RemoteBuildExecution_Resource_Actions( - $this, - $this->serviceName, - 'actions', - array( - 'methods' => array( - 'execute' => array( - 'path' => 'v2/{+instanceName}/actions:execute', - 'httpMethod' => 'POST', - 'parameters' => array( - 'instanceName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->blobs = new Google_Service_RemoteBuildExecution_Resource_Blobs( - $this, - $this->serviceName, - 'blobs', - array( - 'methods' => array( - 'batchRead' => array( - 'path' => 'v2/{+instanceName}/blobs:batchRead', - 'httpMethod' => 'POST', - 'parameters' => array( - 'instanceName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'batchUpdate' => array( - 'path' => 'v2/{+instanceName}/blobs:batchUpdate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'instanceName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'findMissing' => array( - 'path' => 'v2/{+instanceName}/blobs:findMissing', - 'httpMethod' => 'POST', - 'parameters' => array( - 'instanceName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getTree' => array( - 'path' => 'v2/{+instanceName}/blobs/{hash}/{sizeBytes}:getTree', - 'httpMethod' => 'GET', - 'parameters' => array( - 'instanceName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'hash' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sizeBytes' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->operations = new Google_Service_RemoteBuildExecution_Resource_Operations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'waitExecution' => array( - 'path' => 'v2/{+name}:waitExecution', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->v2 = new Google_Service_RemoteBuildExecution_Resource_V2( - $this, - $this->serviceName, - 'v2', - array( - 'methods' => array( - 'getCapabilities' => array( - 'path' => 'v2/{+instanceName}/capabilities', - 'httpMethod' => 'GET', - 'parameters' => array( - 'instanceName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2Action.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2Action.php deleted file mode 100644 index 28f03063..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2Action.php +++ /dev/null @@ -1,71 +0,0 @@ -commandDigest = $commandDigest; - } - /** - * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2Digest - */ - public function getCommandDigest() - { - return $this->commandDigest; - } - public function setDoNotCache($doNotCache) - { - $this->doNotCache = $doNotCache; - } - public function getDoNotCache() - { - return $this->doNotCache; - } - /** - * @param Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2Digest - */ - public function setInputRootDigest(Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2Digest $inputRootDigest) - { - $this->inputRootDigest = $inputRootDigest; - } - /** - * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2Digest - */ - public function getInputRootDigest() - { - return $this->inputRootDigest; - } - public function setTimeout($timeout) - { - $this->timeout = $timeout; - } - public function getTimeout() - { - return $this->timeout; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2ActionCacheUpdateCapabilities.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2ActionCacheUpdateCapabilities.php deleted file mode 100644 index b3cd9c99..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2ActionCacheUpdateCapabilities.php +++ /dev/null @@ -1,30 +0,0 @@ -updateEnabled = $updateEnabled; - } - public function getUpdateEnabled() - { - return $this->updateEnabled; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2ActionResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2ActionResult.php deleted file mode 100644 index fa39a6a5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2ActionResult.php +++ /dev/null @@ -1,161 +0,0 @@ -executionMetadata = $executionMetadata; - } - /** - * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2ExecutedActionMetadata - */ - public function getExecutionMetadata() - { - return $this->executionMetadata; - } - public function setExitCode($exitCode) - { - $this->exitCode = $exitCode; - } - public function getExitCode() - { - return $this->exitCode; - } - /** - * @param Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2OutputDirectory - */ - public function setOutputDirectories($outputDirectories) - { - $this->outputDirectories = $outputDirectories; - } - /** - * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2OutputDirectory - */ - public function getOutputDirectories() - { - return $this->outputDirectories; - } - /** - * @param Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2OutputSymlink - */ - public function setOutputDirectorySymlinks($outputDirectorySymlinks) - { - $this->outputDirectorySymlinks = $outputDirectorySymlinks; - } - /** - * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2OutputSymlink - */ - public function getOutputDirectorySymlinks() - { - return $this->outputDirectorySymlinks; - } - /** - * @param Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2OutputSymlink - */ - public function setOutputFileSymlinks($outputFileSymlinks) - { - $this->outputFileSymlinks = $outputFileSymlinks; - } - /** - * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2OutputSymlink - */ - public function getOutputFileSymlinks() - { - return $this->outputFileSymlinks; - } - /** - * @param Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2OutputFile - */ - public function setOutputFiles($outputFiles) - { - $this->outputFiles = $outputFiles; - } - /** - * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2OutputFile - */ - public function getOutputFiles() - { - return $this->outputFiles; - } - /** - * @param Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2Digest - */ - public function setStderrDigest(Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2Digest $stderrDigest) - { - $this->stderrDigest = $stderrDigest; - } - /** - * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2Digest - */ - public function getStderrDigest() - { - return $this->stderrDigest; - } - public function setStderrRaw($stderrRaw) - { - $this->stderrRaw = $stderrRaw; - } - public function getStderrRaw() - { - return $this->stderrRaw; - } - /** - * @param Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2Digest - */ - public function setStdoutDigest(Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2Digest $stdoutDigest) - { - $this->stdoutDigest = $stdoutDigest; - } - /** - * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2Digest - */ - public function getStdoutDigest() - { - return $this->stdoutDigest; - } - public function setStdoutRaw($stdoutRaw) - { - $this->stdoutRaw = $stdoutRaw; - } - public function getStdoutRaw() - { - return $this->stdoutRaw; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2BatchReadBlobsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2BatchReadBlobsRequest.php deleted file mode 100644 index 0dd868ea..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2BatchReadBlobsRequest.php +++ /dev/null @@ -1,38 +0,0 @@ -digests = $digests; - } - /** - * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2Digest - */ - public function getDigests() - { - return $this->digests; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2BatchReadBlobsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2BatchReadBlobsResponse.php deleted file mode 100644 index 46996064..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2BatchReadBlobsResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -responses = $responses; - } - /** - * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2BatchReadBlobsResponseResponse - */ - public function getResponses() - { - return $this->responses; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2BatchReadBlobsResponseResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2BatchReadBlobsResponseResponse.php deleted file mode 100644 index ab1776a9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2BatchReadBlobsResponseResponse.php +++ /dev/null @@ -1,62 +0,0 @@ -data = $data; - } - public function getData() - { - return $this->data; - } - /** - * @param Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2Digest - */ - public function setDigest(Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2Digest $digest) - { - $this->digest = $digest; - } - /** - * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2Digest - */ - public function getDigest() - { - return $this->digest; - } - /** - * @param Google_Service_RemoteBuildExecution_GoogleRpcStatus - */ - public function setStatus(Google_Service_RemoteBuildExecution_GoogleRpcStatus $status) - { - $this->status = $status; - } - /** - * @return Google_Service_RemoteBuildExecution_GoogleRpcStatus - */ - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2BatchUpdateBlobsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2BatchUpdateBlobsRequest.php deleted file mode 100644 index 67a1543f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2BatchUpdateBlobsRequest.php +++ /dev/null @@ -1,38 +0,0 @@ -requests = $requests; - } - /** - * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2BatchUpdateBlobsRequestRequest - */ - public function getRequests() - { - return $this->requests; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2BatchUpdateBlobsRequestRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2BatchUpdateBlobsRequestRequest.php deleted file mode 100644 index 95abb35c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2BatchUpdateBlobsRequestRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -data = $data; - } - public function getData() - { - return $this->data; - } - /** - * @param Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2Digest - */ - public function setDigest(Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2Digest $digest) - { - $this->digest = $digest; - } - /** - * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2Digest - */ - public function getDigest() - { - return $this->digest; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2BatchUpdateBlobsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2BatchUpdateBlobsResponse.php deleted file mode 100644 index 10001500..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2BatchUpdateBlobsResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -responses = $responses; - } - /** - * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2BatchUpdateBlobsResponseResponse - */ - public function getResponses() - { - return $this->responses; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2BatchUpdateBlobsResponseResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2BatchUpdateBlobsResponseResponse.php deleted file mode 100644 index 4e72452a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2BatchUpdateBlobsResponseResponse.php +++ /dev/null @@ -1,53 +0,0 @@ -digest = $digest; - } - /** - * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2Digest - */ - public function getDigest() - { - return $this->digest; - } - /** - * @param Google_Service_RemoteBuildExecution_GoogleRpcStatus - */ - public function setStatus(Google_Service_RemoteBuildExecution_GoogleRpcStatus $status) - { - $this->status = $status; - } - /** - * @return Google_Service_RemoteBuildExecution_GoogleRpcStatus - */ - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2CacheCapabilities.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2CacheCapabilities.php deleted file mode 100644 index 307204cf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2CacheCapabilities.php +++ /dev/null @@ -1,81 +0,0 @@ -actionCacheUpdateCapabilities = $actionCacheUpdateCapabilities; - } - /** - * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2ActionCacheUpdateCapabilities - */ - public function getActionCacheUpdateCapabilities() - { - return $this->actionCacheUpdateCapabilities; - } - /** - * @param Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2PriorityCapabilities - */ - public function setCachePriorityCapabilities(Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2PriorityCapabilities $cachePriorityCapabilities) - { - $this->cachePriorityCapabilities = $cachePriorityCapabilities; - } - /** - * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2PriorityCapabilities - */ - public function getCachePriorityCapabilities() - { - return $this->cachePriorityCapabilities; - } - public function setDigestFunction($digestFunction) - { - $this->digestFunction = $digestFunction; - } - public function getDigestFunction() - { - return $this->digestFunction; - } - public function setMaxBatchTotalSizeBytes($maxBatchTotalSizeBytes) - { - $this->maxBatchTotalSizeBytes = $maxBatchTotalSizeBytes; - } - public function getMaxBatchTotalSizeBytes() - { - return $this->maxBatchTotalSizeBytes; - } - public function setSymlinkAbsolutePathStrategy($symlinkAbsolutePathStrategy) - { - $this->symlinkAbsolutePathStrategy = $symlinkAbsolutePathStrategy; - } - public function getSymlinkAbsolutePathStrategy() - { - return $this->symlinkAbsolutePathStrategy; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2Command.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2Command.php deleted file mode 100644 index 51767db9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2Command.php +++ /dev/null @@ -1,90 +0,0 @@ -arguments = $arguments; - } - public function getArguments() - { - return $this->arguments; - } - /** - * @param Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2CommandEnvironmentVariable - */ - public function setEnvironmentVariables($environmentVariables) - { - $this->environmentVariables = $environmentVariables; - } - /** - * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2CommandEnvironmentVariable - */ - public function getEnvironmentVariables() - { - return $this->environmentVariables; - } - public function setOutputDirectories($outputDirectories) - { - $this->outputDirectories = $outputDirectories; - } - public function getOutputDirectories() - { - return $this->outputDirectories; - } - public function setOutputFiles($outputFiles) - { - $this->outputFiles = $outputFiles; - } - public function getOutputFiles() - { - return $this->outputFiles; - } - /** - * @param Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2Platform - */ - public function setPlatform(Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2Platform $platform) - { - $this->platform = $platform; - } - /** - * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2Platform - */ - public function getPlatform() - { - return $this->platform; - } - public function setWorkingDirectory($workingDirectory) - { - $this->workingDirectory = $workingDirectory; - } - public function getWorkingDirectory() - { - return $this->workingDirectory; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2CommandEnvironmentVariable.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2CommandEnvironmentVariable.php deleted file mode 100644 index e25ee997..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2CommandEnvironmentVariable.php +++ /dev/null @@ -1,39 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2Digest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2Digest.php deleted file mode 100644 index 2d88eb26..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2Digest.php +++ /dev/null @@ -1,39 +0,0 @@ -hash = $hash; - } - public function getHash() - { - return $this->hash; - } - public function setSizeBytes($sizeBytes) - { - $this->sizeBytes = $sizeBytes; - } - public function getSizeBytes() - { - return $this->sizeBytes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2Directory.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2Directory.php deleted file mode 100644 index ce546225..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2Directory.php +++ /dev/null @@ -1,70 +0,0 @@ -directories = $directories; - } - /** - * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2DirectoryNode - */ - public function getDirectories() - { - return $this->directories; - } - /** - * @param Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2FileNode - */ - public function setFiles($files) - { - $this->files = $files; - } - /** - * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2FileNode - */ - public function getFiles() - { - return $this->files; - } - /** - * @param Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2SymlinkNode - */ - public function setSymlinks($symlinks) - { - $this->symlinks = $symlinks; - } - /** - * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2SymlinkNode - */ - public function getSymlinks() - { - return $this->symlinks; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2DirectoryNode.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2DirectoryNode.php deleted file mode 100644 index 993bb6c0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2DirectoryNode.php +++ /dev/null @@ -1,46 +0,0 @@ -digest = $digest; - } - /** - * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2Digest - */ - public function getDigest() - { - return $this->digest; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2ExecuteOperationMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2ExecuteOperationMetadata.php deleted file mode 100644 index 6b416ffd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2ExecuteOperationMetadata.php +++ /dev/null @@ -1,64 +0,0 @@ -actionDigest = $actionDigest; - } - /** - * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2Digest - */ - public function getActionDigest() - { - return $this->actionDigest; - } - public function setStage($stage) - { - $this->stage = $stage; - } - public function getStage() - { - return $this->stage; - } - public function setStderrStreamName($stderrStreamName) - { - $this->stderrStreamName = $stderrStreamName; - } - public function getStderrStreamName() - { - return $this->stderrStreamName; - } - public function setStdoutStreamName($stdoutStreamName) - { - $this->stdoutStreamName = $stdoutStreamName; - } - public function getStdoutStreamName() - { - return $this->stdoutStreamName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2ExecuteRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2ExecuteRequest.php deleted file mode 100644 index c94b22f8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2ExecuteRequest.php +++ /dev/null @@ -1,78 +0,0 @@ -actionDigest = $actionDigest; - } - /** - * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2Digest - */ - public function getActionDigest() - { - return $this->actionDigest; - } - /** - * @param Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2ExecutionPolicy - */ - public function setExecutionPolicy(Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2ExecutionPolicy $executionPolicy) - { - $this->executionPolicy = $executionPolicy; - } - /** - * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2ExecutionPolicy - */ - public function getExecutionPolicy() - { - return $this->executionPolicy; - } - /** - * @param Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2ResultsCachePolicy - */ - public function setResultsCachePolicy(Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2ResultsCachePolicy $resultsCachePolicy) - { - $this->resultsCachePolicy = $resultsCachePolicy; - } - /** - * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2ResultsCachePolicy - */ - public function getResultsCachePolicy() - { - return $this->resultsCachePolicy; - } - public function setSkipCacheLookup($skipCacheLookup) - { - $this->skipCacheLookup = $skipCacheLookup; - } - public function getSkipCacheLookup() - { - return $this->skipCacheLookup; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2ExecuteResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2ExecuteResponse.php deleted file mode 100644 index a072bffc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2ExecuteResponse.php +++ /dev/null @@ -1,87 +0,0 @@ -cachedResult = $cachedResult; - } - public function getCachedResult() - { - return $this->cachedResult; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } - /** - * @param Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2ActionResult - */ - public function setResult(Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2ActionResult $result) - { - $this->result = $result; - } - /** - * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2ActionResult - */ - public function getResult() - { - return $this->result; - } - /** - * @param Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2LogFile - */ - public function setServerLogs($serverLogs) - { - $this->serverLogs = $serverLogs; - } - /** - * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2LogFile - */ - public function getServerLogs() - { - return $this->serverLogs; - } - /** - * @param Google_Service_RemoteBuildExecution_GoogleRpcStatus - */ - public function setStatus(Google_Service_RemoteBuildExecution_GoogleRpcStatus $status) - { - $this->status = $status; - } - /** - * @return Google_Service_RemoteBuildExecution_GoogleRpcStatus - */ - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2ExecutedActionMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2ExecutedActionMetadata.php deleted file mode 100644 index 7b3c4f71..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2ExecutedActionMetadata.php +++ /dev/null @@ -1,111 +0,0 @@ -executionCompletedTimestamp = $executionCompletedTimestamp; - } - public function getExecutionCompletedTimestamp() - { - return $this->executionCompletedTimestamp; - } - public function setExecutionStartTimestamp($executionStartTimestamp) - { - $this->executionStartTimestamp = $executionStartTimestamp; - } - public function getExecutionStartTimestamp() - { - return $this->executionStartTimestamp; - } - public function setInputFetchCompletedTimestamp($inputFetchCompletedTimestamp) - { - $this->inputFetchCompletedTimestamp = $inputFetchCompletedTimestamp; - } - public function getInputFetchCompletedTimestamp() - { - return $this->inputFetchCompletedTimestamp; - } - public function setInputFetchStartTimestamp($inputFetchStartTimestamp) - { - $this->inputFetchStartTimestamp = $inputFetchStartTimestamp; - } - public function getInputFetchStartTimestamp() - { - return $this->inputFetchStartTimestamp; - } - public function setOutputUploadCompletedTimestamp($outputUploadCompletedTimestamp) - { - $this->outputUploadCompletedTimestamp = $outputUploadCompletedTimestamp; - } - public function getOutputUploadCompletedTimestamp() - { - return $this->outputUploadCompletedTimestamp; - } - public function setOutputUploadStartTimestamp($outputUploadStartTimestamp) - { - $this->outputUploadStartTimestamp = $outputUploadStartTimestamp; - } - public function getOutputUploadStartTimestamp() - { - return $this->outputUploadStartTimestamp; - } - public function setQueuedTimestamp($queuedTimestamp) - { - $this->queuedTimestamp = $queuedTimestamp; - } - public function getQueuedTimestamp() - { - return $this->queuedTimestamp; - } - public function setWorker($worker) - { - $this->worker = $worker; - } - public function getWorker() - { - return $this->worker; - } - public function setWorkerCompletedTimestamp($workerCompletedTimestamp) - { - $this->workerCompletedTimestamp = $workerCompletedTimestamp; - } - public function getWorkerCompletedTimestamp() - { - return $this->workerCompletedTimestamp; - } - public function setWorkerStartTimestamp($workerStartTimestamp) - { - $this->workerStartTimestamp = $workerStartTimestamp; - } - public function getWorkerStartTimestamp() - { - return $this->workerStartTimestamp; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2ExecutionCapabilities.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2ExecutionCapabilities.php deleted file mode 100644 index 6126cafc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2ExecutionCapabilities.php +++ /dev/null @@ -1,55 +0,0 @@ -digestFunction = $digestFunction; - } - public function getDigestFunction() - { - return $this->digestFunction; - } - public function setExecEnabled($execEnabled) - { - $this->execEnabled = $execEnabled; - } - public function getExecEnabled() - { - return $this->execEnabled; - } - /** - * @param Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2PriorityCapabilities - */ - public function setExecutionPriorityCapabilities(Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2PriorityCapabilities $executionPriorityCapabilities) - { - $this->executionPriorityCapabilities = $executionPriorityCapabilities; - } - /** - * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2PriorityCapabilities - */ - public function getExecutionPriorityCapabilities() - { - return $this->executionPriorityCapabilities; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2ExecutionPolicy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2ExecutionPolicy.php deleted file mode 100644 index a4e4552e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2ExecutionPolicy.php +++ /dev/null @@ -1,30 +0,0 @@ -priority = $priority; - } - public function getPriority() - { - return $this->priority; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2FileNode.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2FileNode.php deleted file mode 100644 index 208dc796..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2FileNode.php +++ /dev/null @@ -1,55 +0,0 @@ -digest = $digest; - } - /** - * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2Digest - */ - public function getDigest() - { - return $this->digest; - } - public function setIsExecutable($isExecutable) - { - $this->isExecutable = $isExecutable; - } - public function getIsExecutable() - { - return $this->isExecutable; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2FindMissingBlobsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2FindMissingBlobsRequest.php deleted file mode 100644 index c020077d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2FindMissingBlobsRequest.php +++ /dev/null @@ -1,38 +0,0 @@ -blobDigests = $blobDigests; - } - /** - * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2Digest - */ - public function getBlobDigests() - { - return $this->blobDigests; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2FindMissingBlobsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2FindMissingBlobsResponse.php deleted file mode 100644 index af545237..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2FindMissingBlobsResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -missingBlobDigests = $missingBlobDigests; - } - /** - * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2Digest - */ - public function getMissingBlobDigests() - { - return $this->missingBlobDigests; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2GetTreeResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2GetTreeResponse.php deleted file mode 100644 index e2e44331..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2GetTreeResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -directories = $directories; - } - /** - * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2Directory - */ - public function getDirectories() - { - return $this->directories; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2LogFile.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2LogFile.php deleted file mode 100644 index 192c877b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2LogFile.php +++ /dev/null @@ -1,46 +0,0 @@ -digest = $digest; - } - /** - * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2Digest - */ - public function getDigest() - { - return $this->digest; - } - public function setHumanReadable($humanReadable) - { - $this->humanReadable = $humanReadable; - } - public function getHumanReadable() - { - return $this->humanReadable; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2OutputDirectory.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2OutputDirectory.php deleted file mode 100644 index bdf4cac4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2OutputDirectory.php +++ /dev/null @@ -1,46 +0,0 @@ -path = $path; - } - public function getPath() - { - return $this->path; - } - /** - * @param Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2Digest - */ - public function setTreeDigest(Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2Digest $treeDigest) - { - $this->treeDigest = $treeDigest; - } - /** - * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2Digest - */ - public function getTreeDigest() - { - return $this->treeDigest; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2OutputFile.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2OutputFile.php deleted file mode 100644 index 3b35df3e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2OutputFile.php +++ /dev/null @@ -1,64 +0,0 @@ -contents = $contents; - } - public function getContents() - { - return $this->contents; - } - /** - * @param Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2Digest - */ - public function setDigest(Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2Digest $digest) - { - $this->digest = $digest; - } - /** - * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2Digest - */ - public function getDigest() - { - return $this->digest; - } - public function setIsExecutable($isExecutable) - { - $this->isExecutable = $isExecutable; - } - public function getIsExecutable() - { - return $this->isExecutable; - } - public function setPath($path) - { - $this->path = $path; - } - public function getPath() - { - return $this->path; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2OutputSymlink.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2OutputSymlink.php deleted file mode 100644 index 7e590af3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2OutputSymlink.php +++ /dev/null @@ -1,39 +0,0 @@ -path = $path; - } - public function getPath() - { - return $this->path; - } - public function setTarget($target) - { - $this->target = $target; - } - public function getTarget() - { - return $this->target; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2Platform.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2Platform.php deleted file mode 100644 index f2529e5f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2Platform.php +++ /dev/null @@ -1,38 +0,0 @@ -properties = $properties; - } - /** - * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2PlatformProperty - */ - public function getProperties() - { - return $this->properties; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2PlatformProperty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2PlatformProperty.php deleted file mode 100644 index 83498665..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2PlatformProperty.php +++ /dev/null @@ -1,39 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2PriorityCapabilities.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2PriorityCapabilities.php deleted file mode 100644 index 52f99cac..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2PriorityCapabilities.php +++ /dev/null @@ -1,38 +0,0 @@ -priorities = $priorities; - } - /** - * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2PriorityCapabilitiesPriorityRange - */ - public function getPriorities() - { - return $this->priorities; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2PriorityCapabilitiesPriorityRange.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2PriorityCapabilitiesPriorityRange.php deleted file mode 100644 index 1961958b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2PriorityCapabilitiesPriorityRange.php +++ /dev/null @@ -1,39 +0,0 @@ -maxPriority = $maxPriority; - } - public function getMaxPriority() - { - return $this->maxPriority; - } - public function setMinPriority($minPriority) - { - $this->minPriority = $minPriority; - } - public function getMinPriority() - { - return $this->minPriority; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2RequestMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2RequestMetadata.php deleted file mode 100644 index 49fe92ae..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2RequestMetadata.php +++ /dev/null @@ -1,64 +0,0 @@ -actionId = $actionId; - } - public function getActionId() - { - return $this->actionId; - } - public function setCorrelatedInvocationsId($correlatedInvocationsId) - { - $this->correlatedInvocationsId = $correlatedInvocationsId; - } - public function getCorrelatedInvocationsId() - { - return $this->correlatedInvocationsId; - } - /** - * @param Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2ToolDetails - */ - public function setToolDetails(Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2ToolDetails $toolDetails) - { - $this->toolDetails = $toolDetails; - } - /** - * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2ToolDetails - */ - public function getToolDetails() - { - return $this->toolDetails; - } - public function setToolInvocationId($toolInvocationId) - { - $this->toolInvocationId = $toolInvocationId; - } - public function getToolInvocationId() - { - return $this->toolInvocationId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2ResultsCachePolicy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2ResultsCachePolicy.php deleted file mode 100644 index 49aa9b75..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2ResultsCachePolicy.php +++ /dev/null @@ -1,30 +0,0 @@ -priority = $priority; - } - public function getPriority() - { - return $this->priority; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2ServerCapabilities.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2ServerCapabilities.php deleted file mode 100644 index 71f1093a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2ServerCapabilities.php +++ /dev/null @@ -1,101 +0,0 @@ -cacheCapabilities = $cacheCapabilities; - } - /** - * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2CacheCapabilities - */ - public function getCacheCapabilities() - { - return $this->cacheCapabilities; - } - /** - * @param Google_Service_RemoteBuildExecution_BuildBazelSemverSemVer - */ - public function setDeprecatedApiVersion(Google_Service_RemoteBuildExecution_BuildBazelSemverSemVer $deprecatedApiVersion) - { - $this->deprecatedApiVersion = $deprecatedApiVersion; - } - /** - * @return Google_Service_RemoteBuildExecution_BuildBazelSemverSemVer - */ - public function getDeprecatedApiVersion() - { - return $this->deprecatedApiVersion; - } - /** - * @param Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2ExecutionCapabilities - */ - public function setExecutionCapabilities(Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2ExecutionCapabilities $executionCapabilities) - { - $this->executionCapabilities = $executionCapabilities; - } - /** - * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2ExecutionCapabilities - */ - public function getExecutionCapabilities() - { - return $this->executionCapabilities; - } - /** - * @param Google_Service_RemoteBuildExecution_BuildBazelSemverSemVer - */ - public function setHighApiVersion(Google_Service_RemoteBuildExecution_BuildBazelSemverSemVer $highApiVersion) - { - $this->highApiVersion = $highApiVersion; - } - /** - * @return Google_Service_RemoteBuildExecution_BuildBazelSemverSemVer - */ - public function getHighApiVersion() - { - return $this->highApiVersion; - } - /** - * @param Google_Service_RemoteBuildExecution_BuildBazelSemverSemVer - */ - public function setLowApiVersion(Google_Service_RemoteBuildExecution_BuildBazelSemverSemVer $lowApiVersion) - { - $this->lowApiVersion = $lowApiVersion; - } - /** - * @return Google_Service_RemoteBuildExecution_BuildBazelSemverSemVer - */ - public function getLowApiVersion() - { - return $this->lowApiVersion; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2SymlinkNode.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2SymlinkNode.php deleted file mode 100644 index 10c767bf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2SymlinkNode.php +++ /dev/null @@ -1,39 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setTarget($target) - { - $this->target = $target; - } - public function getTarget() - { - return $this->target; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2ToolDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2ToolDetails.php deleted file mode 100644 index ef794e90..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2ToolDetails.php +++ /dev/null @@ -1,39 +0,0 @@ -toolName = $toolName; - } - public function getToolName() - { - return $this->toolName; - } - public function setToolVersion($toolVersion) - { - $this->toolVersion = $toolVersion; - } - public function getToolVersion() - { - return $this->toolVersion; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2Tree.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2Tree.php deleted file mode 100644 index 4ce11411..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2Tree.php +++ /dev/null @@ -1,54 +0,0 @@ -children = $children; - } - /** - * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2Directory - */ - public function getChildren() - { - return $this->children; - } - /** - * @param Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2Directory - */ - public function setRoot(Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2Directory $root) - { - $this->root = $root; - } - /** - * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2Directory - */ - public function getRoot() - { - return $this->root; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2WaitExecutionRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2WaitExecutionRequest.php deleted file mode 100644 index 67741fe7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/BuildBazelRemoteExecutionV2WaitExecutionRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -major = $major; - } - public function getMajor() - { - return $this->major; - } - public function setMinor($minor) - { - $this->minor = $minor; - } - public function getMinor() - { - return $this->minor; - } - public function setPatch($patch) - { - $this->patch = $patch; - } - public function getPatch() - { - return $this->patch; - } - public function setPrerelease($prerelease) - { - $this->prerelease = $prerelease; - } - public function getPrerelease() - { - return $this->prerelease; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildbotCommandDurations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildbotCommandDurations.php deleted file mode 100644 index be617f94..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildbotCommandDurations.php +++ /dev/null @@ -1,120 +0,0 @@ -dockerPrep = $dockerPrep; - } - public function getDockerPrep() - { - return $this->dockerPrep; - } - public function setDockerPrepStartTime($dockerPrepStartTime) - { - $this->dockerPrepStartTime = $dockerPrepStartTime; - } - public function getDockerPrepStartTime() - { - return $this->dockerPrepStartTime; - } - public function setDownload($download) - { - $this->download = $download; - } - public function getDownload() - { - return $this->download; - } - public function setDownloadStartTime($downloadStartTime) - { - $this->downloadStartTime = $downloadStartTime; - } - public function getDownloadStartTime() - { - return $this->downloadStartTime; - } - public function setExecStartTime($execStartTime) - { - $this->execStartTime = $execStartTime; - } - public function getExecStartTime() - { - return $this->execStartTime; - } - public function setExecution($execution) - { - $this->execution = $execution; - } - public function getExecution() - { - return $this->execution; - } - public function setIsoPrepDone($isoPrepDone) - { - $this->isoPrepDone = $isoPrepDone; - } - public function getIsoPrepDone() - { - return $this->isoPrepDone; - } - public function setOverall($overall) - { - $this->overall = $overall; - } - public function getOverall() - { - return $this->overall; - } - public function setStdout($stdout) - { - $this->stdout = $stdout; - } - public function getStdout() - { - return $this->stdout; - } - public function setUpload($upload) - { - $this->upload = $upload; - } - public function getUpload() - { - return $this->upload; - } - public function setUploadStartTime($uploadStartTime) - { - $this->uploadStartTime = $uploadStartTime; - } - public function getUploadStartTime() - { - return $this->uploadStartTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildbotCommandEvents.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildbotCommandEvents.php deleted file mode 100644 index 7b6de39c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildbotCommandEvents.php +++ /dev/null @@ -1,57 +0,0 @@ -dockerCacheHit = $dockerCacheHit; - } - public function getDockerCacheHit() - { - return $this->dockerCacheHit; - } - public function setInputCacheMiss($inputCacheMiss) - { - $this->inputCacheMiss = $inputCacheMiss; - } - public function getInputCacheMiss() - { - return $this->inputCacheMiss; - } - public function setNumErrors($numErrors) - { - $this->numErrors = $numErrors; - } - public function getNumErrors() - { - return $this->numErrors; - } - public function setNumWarnings($numWarnings) - { - $this->numWarnings = $numWarnings; - } - public function getNumWarnings() - { - return $this->numWarnings; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildbotCommandStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildbotCommandStatus.php deleted file mode 100644 index 8532b076..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildbotCommandStatus.php +++ /dev/null @@ -1,39 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildbotResourceUsage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildbotResourceUsage.php deleted file mode 100644 index 565bc9a6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildbotResourceUsage.php +++ /dev/null @@ -1,62 +0,0 @@ -cpuUsedPercent = $cpuUsedPercent; - } - public function getCpuUsedPercent() - { - return $this->cpuUsedPercent; - } - /** - * @param Google_Service_RemoteBuildExecution_GoogleDevtoolsRemotebuildbotResourceUsageStat - */ - public function setDiskUsage(Google_Service_RemoteBuildExecution_GoogleDevtoolsRemotebuildbotResourceUsageStat $diskUsage) - { - $this->diskUsage = $diskUsage; - } - /** - * @return Google_Service_RemoteBuildExecution_GoogleDevtoolsRemotebuildbotResourceUsageStat - */ - public function getDiskUsage() - { - return $this->diskUsage; - } - /** - * @param Google_Service_RemoteBuildExecution_GoogleDevtoolsRemotebuildbotResourceUsageStat - */ - public function setMemoryUsage(Google_Service_RemoteBuildExecution_GoogleDevtoolsRemotebuildbotResourceUsageStat $memoryUsage) - { - $this->memoryUsage = $memoryUsage; - } - /** - * @return Google_Service_RemoteBuildExecution_GoogleDevtoolsRemotebuildbotResourceUsageStat - */ - public function getMemoryUsage() - { - return $this->memoryUsage; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildbotResourceUsageStat.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildbotResourceUsageStat.php deleted file mode 100644 index 049b2d18..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildbotResourceUsageStat.php +++ /dev/null @@ -1,39 +0,0 @@ -total = $total; - } - public function getTotal() - { - return $this->total; - } - public function setUsed($used) - { - $this->used = $used; - } - public function getUsed() - { - return $this->used; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildexecutionAdminV1alphaAcceleratorConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildexecutionAdminV1alphaAcceleratorConfig.php deleted file mode 100644 index a424f52e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildexecutionAdminV1alphaAcceleratorConfig.php +++ /dev/null @@ -1,39 +0,0 @@ -acceleratorCount = $acceleratorCount; - } - public function getAcceleratorCount() - { - return $this->acceleratorCount; - } - public function setAcceleratorType($acceleratorType) - { - $this->acceleratorType = $acceleratorType; - } - public function getAcceleratorType() - { - return $this->acceleratorType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildexecutionAdminV1alphaCreateInstanceRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildexecutionAdminV1alphaCreateInstanceRequest.php deleted file mode 100644 index 15ffe967..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildexecutionAdminV1alphaCreateInstanceRequest.php +++ /dev/null @@ -1,55 +0,0 @@ -instance = $instance; - } - /** - * @return Google_Service_RemoteBuildExecution_GoogleDevtoolsRemotebuildexecutionAdminV1alphaInstance - */ - public function getInstance() - { - return $this->instance; - } - public function setInstanceId($instanceId) - { - $this->instanceId = $instanceId; - } - public function getInstanceId() - { - return $this->instanceId; - } - public function setParent($parent) - { - $this->parent = $parent; - } - public function getParent() - { - return $this->parent; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildexecutionAdminV1alphaCreateWorkerPoolRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildexecutionAdminV1alphaCreateWorkerPoolRequest.php deleted file mode 100644 index 87d08e87..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildexecutionAdminV1alphaCreateWorkerPoolRequest.php +++ /dev/null @@ -1,55 +0,0 @@ -parent = $parent; - } - public function getParent() - { - return $this->parent; - } - public function setPoolId($poolId) - { - $this->poolId = $poolId; - } - public function getPoolId() - { - return $this->poolId; - } - /** - * @param Google_Service_RemoteBuildExecution_GoogleDevtoolsRemotebuildexecutionAdminV1alphaWorkerPool - */ - public function setWorkerPool(Google_Service_RemoteBuildExecution_GoogleDevtoolsRemotebuildexecutionAdminV1alphaWorkerPool $workerPool) - { - $this->workerPool = $workerPool; - } - /** - * @return Google_Service_RemoteBuildExecution_GoogleDevtoolsRemotebuildexecutionAdminV1alphaWorkerPool - */ - public function getWorkerPool() - { - return $this->workerPool; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildexecutionAdminV1alphaDeleteInstanceRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildexecutionAdminV1alphaDeleteInstanceRequest.php deleted file mode 100644 index c06532da..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildexecutionAdminV1alphaDeleteInstanceRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildexecutionAdminV1alphaDeleteWorkerPoolRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildexecutionAdminV1alphaDeleteWorkerPoolRequest.php deleted file mode 100644 index eb757d29..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildexecutionAdminV1alphaDeleteWorkerPoolRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildexecutionAdminV1alphaGetInstanceRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildexecutionAdminV1alphaGetInstanceRequest.php deleted file mode 100644 index 71b0a4b4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildexecutionAdminV1alphaGetInstanceRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildexecutionAdminV1alphaGetWorkerPoolRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildexecutionAdminV1alphaGetWorkerPoolRequest.php deleted file mode 100644 index 5ad0cd45..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildexecutionAdminV1alphaGetWorkerPoolRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildexecutionAdminV1alphaInstance.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildexecutionAdminV1alphaInstance.php deleted file mode 100644 index e8f858f6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildexecutionAdminV1alphaInstance.php +++ /dev/null @@ -1,57 +0,0 @@ -location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setLoggingEnabled($loggingEnabled) - { - $this->loggingEnabled = $loggingEnabled; - } - public function getLoggingEnabled() - { - return $this->loggingEnabled; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildexecutionAdminV1alphaListInstancesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildexecutionAdminV1alphaListInstancesRequest.php deleted file mode 100644 index 55722301..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildexecutionAdminV1alphaListInstancesRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -parent = $parent; - } - public function getParent() - { - return $this->parent; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildexecutionAdminV1alphaListInstancesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildexecutionAdminV1alphaListInstancesResponse.php deleted file mode 100644 index c97859c7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildexecutionAdminV1alphaListInstancesResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -instances = $instances; - } - /** - * @return Google_Service_RemoteBuildExecution_GoogleDevtoolsRemotebuildexecutionAdminV1alphaInstance - */ - public function getInstances() - { - return $this->instances; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildexecutionAdminV1alphaListWorkerPoolsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildexecutionAdminV1alphaListWorkerPoolsRequest.php deleted file mode 100644 index f2e913a0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildexecutionAdminV1alphaListWorkerPoolsRequest.php +++ /dev/null @@ -1,39 +0,0 @@ -filter = $filter; - } - public function getFilter() - { - return $this->filter; - } - public function setParent($parent) - { - $this->parent = $parent; - } - public function getParent() - { - return $this->parent; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildexecutionAdminV1alphaListWorkerPoolsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildexecutionAdminV1alphaListWorkerPoolsResponse.php deleted file mode 100644 index 2d1f3291..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildexecutionAdminV1alphaListWorkerPoolsResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -workerPools = $workerPools; - } - /** - * @return Google_Service_RemoteBuildExecution_GoogleDevtoolsRemotebuildexecutionAdminV1alphaWorkerPool - */ - public function getWorkerPools() - { - return $this->workerPools; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildexecutionAdminV1alphaUpdateInstanceRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildexecutionAdminV1alphaUpdateInstanceRequest.php deleted file mode 100644 index 125496c9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildexecutionAdminV1alphaUpdateInstanceRequest.php +++ /dev/null @@ -1,48 +0,0 @@ -loggingEnabled = $loggingEnabled; - } - public function getLoggingEnabled() - { - return $this->loggingEnabled; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setUpdateMask($updateMask) - { - $this->updateMask = $updateMask; - } - public function getUpdateMask() - { - return $this->updateMask; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildexecutionAdminV1alphaUpdateWorkerPoolRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildexecutionAdminV1alphaUpdateWorkerPoolRequest.php deleted file mode 100644 index 05a64d9b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildexecutionAdminV1alphaUpdateWorkerPoolRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -updateMask = $updateMask; - } - public function getUpdateMask() - { - return $this->updateMask; - } - /** - * @param Google_Service_RemoteBuildExecution_GoogleDevtoolsRemotebuildexecutionAdminV1alphaWorkerPool - */ - public function setWorkerPool(Google_Service_RemoteBuildExecution_GoogleDevtoolsRemotebuildexecutionAdminV1alphaWorkerPool $workerPool) - { - $this->workerPool = $workerPool; - } - /** - * @return Google_Service_RemoteBuildExecution_GoogleDevtoolsRemotebuildexecutionAdminV1alphaWorkerPool - */ - public function getWorkerPool() - { - return $this->workerPool; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildexecutionAdminV1alphaWorkerConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildexecutionAdminV1alphaWorkerConfig.php deleted file mode 100644 index c96098fb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildexecutionAdminV1alphaWorkerConfig.php +++ /dev/null @@ -1,109 +0,0 @@ -accelerator = $accelerator; - } - /** - * @return Google_Service_RemoteBuildExecution_GoogleDevtoolsRemotebuildexecutionAdminV1alphaAcceleratorConfig - */ - public function getAccelerator() - { - return $this->accelerator; - } - public function setDiskSizeGb($diskSizeGb) - { - $this->diskSizeGb = $diskSizeGb; - } - public function getDiskSizeGb() - { - return $this->diskSizeGb; - } - public function setDiskType($diskType) - { - $this->diskType = $diskType; - } - public function getDiskType() - { - return $this->diskType; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setMachineType($machineType) - { - $this->machineType = $machineType; - } - public function getMachineType() - { - return $this->machineType; - } - public function setMaxConcurrentActions($maxConcurrentActions) - { - $this->maxConcurrentActions = $maxConcurrentActions; - } - public function getMaxConcurrentActions() - { - return $this->maxConcurrentActions; - } - public function setMinCpuPlatform($minCpuPlatform) - { - $this->minCpuPlatform = $minCpuPlatform; - } - public function getMinCpuPlatform() - { - return $this->minCpuPlatform; - } - public function setNetworkAccess($networkAccess) - { - $this->networkAccess = $networkAccess; - } - public function getNetworkAccess() - { - return $this->networkAccess; - } - public function setReserved($reserved) - { - $this->reserved = $reserved; - } - public function getReserved() - { - return $this->reserved; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildexecutionAdminV1alphaWorkerPool.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildexecutionAdminV1alphaWorkerPool.php deleted file mode 100644 index 1ce79f3b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemotebuildexecutionAdminV1alphaWorkerPool.php +++ /dev/null @@ -1,64 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - /** - * @param Google_Service_RemoteBuildExecution_GoogleDevtoolsRemotebuildexecutionAdminV1alphaWorkerConfig - */ - public function setWorkerConfig(Google_Service_RemoteBuildExecution_GoogleDevtoolsRemotebuildexecutionAdminV1alphaWorkerConfig $workerConfig) - { - $this->workerConfig = $workerConfig; - } - /** - * @return Google_Service_RemoteBuildExecution_GoogleDevtoolsRemotebuildexecutionAdminV1alphaWorkerConfig - */ - public function getWorkerConfig() - { - return $this->workerConfig; - } - public function setWorkerCount($workerCount) - { - $this->workerCount = $workerCount; - } - public function getWorkerCount() - { - return $this->workerCount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemoteworkersV1test2AdminTemp.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemoteworkersV1test2AdminTemp.php deleted file mode 100644 index b3965b15..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemoteworkersV1test2AdminTemp.php +++ /dev/null @@ -1,39 +0,0 @@ -arg = $arg; - } - public function getArg() - { - return $this->arg; - } - public function setCommand($command) - { - $this->command = $command; - } - public function getCommand() - { - return $this->command; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemoteworkersV1test2Blob.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemoteworkersV1test2Blob.php deleted file mode 100644 index 2dbc9d5e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemoteworkersV1test2Blob.php +++ /dev/null @@ -1,46 +0,0 @@ -contents = $contents; - } - public function getContents() - { - return $this->contents; - } - /** - * @param Google_Service_RemoteBuildExecution_GoogleDevtoolsRemoteworkersV1test2Digest - */ - public function setDigest(Google_Service_RemoteBuildExecution_GoogleDevtoolsRemoteworkersV1test2Digest $digest) - { - $this->digest = $digest; - } - /** - * @return Google_Service_RemoteBuildExecution_GoogleDevtoolsRemoteworkersV1test2Digest - */ - public function getDigest() - { - return $this->digest; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemoteworkersV1test2CommandOutputs.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemoteworkersV1test2CommandOutputs.php deleted file mode 100644 index 7e938335..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemoteworkersV1test2CommandOutputs.php +++ /dev/null @@ -1,46 +0,0 @@ -exitCode = $exitCode; - } - public function getExitCode() - { - return $this->exitCode; - } - /** - * @param Google_Service_RemoteBuildExecution_GoogleDevtoolsRemoteworkersV1test2Digest - */ - public function setOutputs(Google_Service_RemoteBuildExecution_GoogleDevtoolsRemoteworkersV1test2Digest $outputs) - { - $this->outputs = $outputs; - } - /** - * @return Google_Service_RemoteBuildExecution_GoogleDevtoolsRemoteworkersV1test2Digest - */ - public function getOutputs() - { - return $this->outputs; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemoteworkersV1test2CommandOverhead.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemoteworkersV1test2CommandOverhead.php deleted file mode 100644 index e94ce20f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemoteworkersV1test2CommandOverhead.php +++ /dev/null @@ -1,39 +0,0 @@ -duration = $duration; - } - public function getDuration() - { - return $this->duration; - } - public function setOverhead($overhead) - { - $this->overhead = $overhead; - } - public function getOverhead() - { - return $this->overhead; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemoteworkersV1test2CommandResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemoteworkersV1test2CommandResult.php deleted file mode 100644 index 6dbcf09b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemoteworkersV1test2CommandResult.php +++ /dev/null @@ -1,90 +0,0 @@ -duration = $duration; - } - public function getDuration() - { - return $this->duration; - } - public function setExitCode($exitCode) - { - $this->exitCode = $exitCode; - } - public function getExitCode() - { - return $this->exitCode; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - /** - * @param Google_Service_RemoteBuildExecution_GoogleDevtoolsRemoteworkersV1test2Digest - */ - public function setOutputs(Google_Service_RemoteBuildExecution_GoogleDevtoolsRemoteworkersV1test2Digest $outputs) - { - $this->outputs = $outputs; - } - /** - * @return Google_Service_RemoteBuildExecution_GoogleDevtoolsRemoteworkersV1test2Digest - */ - public function getOutputs() - { - return $this->outputs; - } - public function setOverhead($overhead) - { - $this->overhead = $overhead; - } - public function getOverhead() - { - return $this->overhead; - } - /** - * @param Google_Service_RemoteBuildExecution_GoogleRpcStatus - */ - public function setStatus(Google_Service_RemoteBuildExecution_GoogleRpcStatus $status) - { - $this->status = $status; - } - /** - * @return Google_Service_RemoteBuildExecution_GoogleRpcStatus - */ - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemoteworkersV1test2CommandTask.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemoteworkersV1test2CommandTask.php deleted file mode 100644 index 41c51243..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemoteworkersV1test2CommandTask.php +++ /dev/null @@ -1,69 +0,0 @@ -expectedOutputs = $expectedOutputs; - } - /** - * @return Google_Service_RemoteBuildExecution_GoogleDevtoolsRemoteworkersV1test2CommandTaskOutputs - */ - public function getExpectedOutputs() - { - return $this->expectedOutputs; - } - /** - * @param Google_Service_RemoteBuildExecution_GoogleDevtoolsRemoteworkersV1test2CommandTaskInputs - */ - public function setInputs(Google_Service_RemoteBuildExecution_GoogleDevtoolsRemoteworkersV1test2CommandTaskInputs $inputs) - { - $this->inputs = $inputs; - } - /** - * @return Google_Service_RemoteBuildExecution_GoogleDevtoolsRemoteworkersV1test2CommandTaskInputs - */ - public function getInputs() - { - return $this->inputs; - } - /** - * @param Google_Service_RemoteBuildExecution_GoogleDevtoolsRemoteworkersV1test2CommandTaskTimeouts - */ - public function setTimeouts(Google_Service_RemoteBuildExecution_GoogleDevtoolsRemoteworkersV1test2CommandTaskTimeouts $timeouts) - { - $this->timeouts = $timeouts; - } - /** - * @return Google_Service_RemoteBuildExecution_GoogleDevtoolsRemoteworkersV1test2CommandTaskTimeouts - */ - public function getTimeouts() - { - return $this->timeouts; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemoteworkersV1test2CommandTaskInputs.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemoteworkersV1test2CommandTaskInputs.php deleted file mode 100644 index c2001620..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemoteworkersV1test2CommandTaskInputs.php +++ /dev/null @@ -1,88 +0,0 @@ -arguments = $arguments; - } - public function getArguments() - { - return $this->arguments; - } - /** - * @param Google_Service_RemoteBuildExecution_GoogleDevtoolsRemoteworkersV1test2CommandTaskInputsEnvironmentVariable - */ - public function setEnvironmentVariables($environmentVariables) - { - $this->environmentVariables = $environmentVariables; - } - /** - * @return Google_Service_RemoteBuildExecution_GoogleDevtoolsRemoteworkersV1test2CommandTaskInputsEnvironmentVariable - */ - public function getEnvironmentVariables() - { - return $this->environmentVariables; - } - /** - * @param Google_Service_RemoteBuildExecution_GoogleDevtoolsRemoteworkersV1test2Digest - */ - public function setFiles($files) - { - $this->files = $files; - } - /** - * @return Google_Service_RemoteBuildExecution_GoogleDevtoolsRemoteworkersV1test2Digest - */ - public function getFiles() - { - return $this->files; - } - /** - * @param Google_Service_RemoteBuildExecution_GoogleDevtoolsRemoteworkersV1test2Blob - */ - public function setInlineBlobs($inlineBlobs) - { - $this->inlineBlobs = $inlineBlobs; - } - /** - * @return Google_Service_RemoteBuildExecution_GoogleDevtoolsRemoteworkersV1test2Blob - */ - public function getInlineBlobs() - { - return $this->inlineBlobs; - } - public function setWorkingDirectory($workingDirectory) - { - $this->workingDirectory = $workingDirectory; - } - public function getWorkingDirectory() - { - return $this->workingDirectory; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemoteworkersV1test2CommandTaskInputsEnvironmentVariable.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemoteworkersV1test2CommandTaskInputsEnvironmentVariable.php deleted file mode 100644 index c9ed5846..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemoteworkersV1test2CommandTaskInputsEnvironmentVariable.php +++ /dev/null @@ -1,39 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemoteworkersV1test2CommandTaskOutputs.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemoteworkersV1test2CommandTaskOutputs.php deleted file mode 100644 index 227671ec..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemoteworkersV1test2CommandTaskOutputs.php +++ /dev/null @@ -1,58 +0,0 @@ -directories = $directories; - } - public function getDirectories() - { - return $this->directories; - } - public function setFiles($files) - { - $this->files = $files; - } - public function getFiles() - { - return $this->files; - } - public function setStderrDestination($stderrDestination) - { - $this->stderrDestination = $stderrDestination; - } - public function getStderrDestination() - { - return $this->stderrDestination; - } - public function setStdoutDestination($stdoutDestination) - { - $this->stdoutDestination = $stdoutDestination; - } - public function getStdoutDestination() - { - return $this->stdoutDestination; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemoteworkersV1test2CommandTaskTimeouts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemoteworkersV1test2CommandTaskTimeouts.php deleted file mode 100644 index fe17a3c4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemoteworkersV1test2CommandTaskTimeouts.php +++ /dev/null @@ -1,48 +0,0 @@ -execution = $execution; - } - public function getExecution() - { - return $this->execution; - } - public function setIdle($idle) - { - $this->idle = $idle; - } - public function getIdle() - { - return $this->idle; - } - public function setShutdown($shutdown) - { - $this->shutdown = $shutdown; - } - public function getShutdown() - { - return $this->shutdown; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemoteworkersV1test2Digest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemoteworkersV1test2Digest.php deleted file mode 100644 index 4d4a5a59..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemoteworkersV1test2Digest.php +++ /dev/null @@ -1,39 +0,0 @@ -hash = $hash; - } - public function getHash() - { - return $this->hash; - } - public function setSizeBytes($sizeBytes) - { - $this->sizeBytes = $sizeBytes; - } - public function getSizeBytes() - { - return $this->sizeBytes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemoteworkersV1test2Directory.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemoteworkersV1test2Directory.php deleted file mode 100644 index 947923be..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemoteworkersV1test2Directory.php +++ /dev/null @@ -1,54 +0,0 @@ -directories = $directories; - } - /** - * @return Google_Service_RemoteBuildExecution_GoogleDevtoolsRemoteworkersV1test2DirectoryMetadata - */ - public function getDirectories() - { - return $this->directories; - } - /** - * @param Google_Service_RemoteBuildExecution_GoogleDevtoolsRemoteworkersV1test2FileMetadata - */ - public function setFiles($files) - { - $this->files = $files; - } - /** - * @return Google_Service_RemoteBuildExecution_GoogleDevtoolsRemoteworkersV1test2FileMetadata - */ - public function getFiles() - { - return $this->files; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemoteworkersV1test2DirectoryMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemoteworkersV1test2DirectoryMetadata.php deleted file mode 100644 index a7b89090..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemoteworkersV1test2DirectoryMetadata.php +++ /dev/null @@ -1,46 +0,0 @@ -digest = $digest; - } - /** - * @return Google_Service_RemoteBuildExecution_GoogleDevtoolsRemoteworkersV1test2Digest - */ - public function getDigest() - { - return $this->digest; - } - public function setPath($path) - { - $this->path = $path; - } - public function getPath() - { - return $this->path; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemoteworkersV1test2FileMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemoteworkersV1test2FileMetadata.php deleted file mode 100644 index 6b917bf7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleDevtoolsRemoteworkersV1test2FileMetadata.php +++ /dev/null @@ -1,64 +0,0 @@ -contents = $contents; - } - public function getContents() - { - return $this->contents; - } - /** - * @param Google_Service_RemoteBuildExecution_GoogleDevtoolsRemoteworkersV1test2Digest - */ - public function setDigest(Google_Service_RemoteBuildExecution_GoogleDevtoolsRemoteworkersV1test2Digest $digest) - { - $this->digest = $digest; - } - /** - * @return Google_Service_RemoteBuildExecution_GoogleDevtoolsRemoteworkersV1test2Digest - */ - public function getDigest() - { - return $this->digest; - } - public function setIsExecutable($isExecutable) - { - $this->isExecutable = $isExecutable; - } - public function getIsExecutable() - { - return $this->isExecutable; - } - public function setPath($path) - { - $this->path = $path; - } - public function getPath() - { - return $this->path; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleLongrunningOperation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleLongrunningOperation.php deleted file mode 100644 index 4c348bac..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleLongrunningOperation.php +++ /dev/null @@ -1,73 +0,0 @@ -done = $done; - } - public function getDone() - { - return $this->done; - } - /** - * @param Google_Service_RemoteBuildExecution_GoogleRpcStatus - */ - public function setError(Google_Service_RemoteBuildExecution_GoogleRpcStatus $error) - { - $this->error = $error; - } - /** - * @return Google_Service_RemoteBuildExecution_GoogleRpcStatus - */ - public function getError() - { - return $this->error; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleRpcStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleRpcStatus.php deleted file mode 100644 index 29409f3e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/GoogleRpcStatus.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/Resource/ActionResults.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/Resource/ActionResults.php deleted file mode 100644 index 8632deda..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/Resource/ActionResults.php +++ /dev/null @@ -1,110 +0,0 @@ - - * $remotebuildexecutionService = new Google_Service_RemoteBuildExecution(...); - * $actionResults = $remotebuildexecutionService->actionResults; - * - */ -class Google_Service_RemoteBuildExecution_Resource_ActionResults extends Google_Service_Resource -{ - /** - * Retrieve a cached execution result. - * - * Implementations SHOULD ensure that any blobs referenced from the - * ContentAddressableStorage are available at the time of returning the - * ActionResult and will be for some period of time afterwards. The TTLs of the - * referenced blobs SHOULD be increased if necessary and applicable. - * - * Errors: - * - * * `NOT_FOUND`: The requested `ActionResult` is not in the cache. - * (actionResults.get) - * - * @param string $instanceName The instance of the execution system to operate - * against. A server may support multiple instances of the execution system - * (with their own workers, storage, caches, etc.). The server MAY require use - * of this field to select between them in an implementation-defined fashion, - * otherwise it can be omitted. - * @param string $hash The hash. In the case of SHA-256, it will always be a - * lowercase hex string exactly 64 characters long. - * @param string $sizeBytes The size of the blob, in bytes. - * @param array $optParams Optional parameters. - * - * @opt_param bool inlineStdout A hint to the server to request inlining stdout - * in the ActionResult message. - * @opt_param bool inlineStderr A hint to the server to request inlining stderr - * in the ActionResult message. - * @opt_param string inlineOutputFiles A hint to the server to inline the - * contents of the listed output files. Each path needs to exactly match one - * path in `output_files` in the Command message. - * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2ActionResult - */ - public function get($instanceName, $hash, $sizeBytes, $optParams = array()) - { - $params = array('instanceName' => $instanceName, 'hash' => $hash, 'sizeBytes' => $sizeBytes); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2ActionResult"); - } - /** - * Upload a new execution result. - * - * In order to allow the server to perform access control based on the type of - * action, and to assist with client debugging, the client MUST first upload the - * Action that produced the result, along with its Command, into the - * `ContentAddressableStorage`. - * - * Errors: - * - * * `INVALID_ARGUMENT`: One or more arguments are invalid. * - * `FAILED_PRECONDITION`: One or more errors occurred in updating the action - * result, such as a missing command or action. * `RESOURCE_EXHAUSTED`: There is - * insufficient storage space to add the entry to the cache. - * (actionResults.update) - * - * @param string $instanceName The instance of the execution system to operate - * against. A server may support multiple instances of the execution system - * (with their own workers, storage, caches, etc.). The server MAY require use - * of this field to select between them in an implementation-defined fashion, - * otherwise it can be omitted. - * @param string $hash The hash. In the case of SHA-256, it will always be a - * lowercase hex string exactly 64 characters long. - * @param string $sizeBytes The size of the blob, in bytes. - * @param Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2ActionResult $postBody - * @param array $optParams Optional parameters. - * - * @opt_param int resultsCachePolicy.priority The priority (relative importance) - * of this content in the overall cache. Generally, a lower value means a longer - * retention time or other advantage, but the interpretation of a given value is - * server-dependent. A priority of 0 means a *default* value, decided by the - * server. - * - * The particular semantics of this field is up to the server. In particular, - * every server will have their own supported range of priorities, and will - * decide how these map into retention/eviction policy. - * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2ActionResult - */ - public function update($instanceName, $hash, $sizeBytes, Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2ActionResult $postBody, $optParams = array()) - { - $params = array('instanceName' => $instanceName, 'hash' => $hash, 'sizeBytes' => $sizeBytes, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2ActionResult"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/Resource/Actions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/Resource/Actions.php deleted file mode 100644 index d87c834e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/Resource/Actions.php +++ /dev/null @@ -1,97 +0,0 @@ - - * $remotebuildexecutionService = new Google_Service_RemoteBuildExecution(...); - * $actions = $remotebuildexecutionService->actions; - * - */ -class Google_Service_RemoteBuildExecution_Resource_Actions extends Google_Service_Resource -{ - /** - * Execute an action remotely. - * - * In order to execute an action, the client must first upload all of the - * inputs, the Command to run, and the Action into the - * ContentAddressableStorage. It then calls `Execute` with an `action_digest` - * referring to them. The server will run the action and eventually return the - * result. - * - * The input `Action`'s fields MUST meet the various canonicalization - * requirements specified in the documentation for their types so that it has - * the same digest as other logically equivalent `Action`s. The server MAY - * enforce the requirements and return errors if a non-canonical input is - * received. It MAY also proceed without verifying some or all of the - * requirements, such as for performance reasons. If the server does not verify - * the requirement, then it will treat the `Action` as distinct from another - * logically equivalent action if they hash differently. - * - * Returns a stream of google.longrunning.Operation messages describing the - * resulting execution, with eventual `response` ExecuteResponse. The `metadata` - * on the operation is of type ExecuteOperationMetadata. - * - * If the client remains connected after the first response is returned after - * the server, then updates are streamed as if the client had called - * WaitExecution until the execution completes or the request reaches an error. - * The operation can also be queried using Operations API. - * - * The server NEED NOT implement other methods or functionality of the - * Operations API. - * - * Errors discovered during creation of the `Operation` will be reported as gRPC - * Status errors, while errors that occurred while running the action will be - * reported in the `status` field of the `ExecuteResponse`. The server MUST NOT - * set the `error` field of the `Operation` proto. The possible errors include: - * - * * `INVALID_ARGUMENT`: One or more arguments are invalid. * - * `FAILED_PRECONDITION`: One or more errors occurred in setting up the action - * requested, such as a missing input or command or no worker being available. - * The client may be able to fix the errors and retry. * `RESOURCE_EXHAUSTED`: - * There is insufficient quota of some resource to run the action. * - * `UNAVAILABLE`: Due to a transient condition, such as all workers being - * occupied (and the server does not support a queue), the action could not be - * started. The client should retry. * `INTERNAL`: An internal error occurred in - * the execution engine or the worker. * `DEADLINE_EXCEEDED`: The execution - * timed out. * `CANCELLED`: The operation was cancelled by the client. This - * status is only possible if the server implements the Operations API - * CancelOperation method, and it was called for the current execution. - * - * In the case of a missing input or command, the server SHOULD additionally - * send a PreconditionFailure error detail where, for each requested blob not - * present in the CAS, there is a `Violation` with a `type` of `MISSING` and a - * `subject` of `"blobs/{hash}/{size}"` indicating the digest of the missing - * blob. (actions.execute) - * - * @param string $instanceName The instance of the execution system to operate - * against. A server may support multiple instances of the execution system - * (with their own workers, storage, caches, etc.). The server MAY require use - * of this field to select between them in an implementation-defined fashion, - * otherwise it can be omitted. - * @param Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2ExecuteRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_RemoteBuildExecution_GoogleLongrunningOperation - */ - public function execute($instanceName, Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2ExecuteRequest $postBody, $optParams = array()) - { - $params = array('instanceName' => $instanceName, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('execute', array($params), "Google_Service_RemoteBuildExecution_GoogleLongrunningOperation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/Resource/Blobs.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/Resource/Blobs.php deleted file mode 100644 index da808c9a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/Resource/Blobs.php +++ /dev/null @@ -1,170 +0,0 @@ - - * $remotebuildexecutionService = new Google_Service_RemoteBuildExecution(...); - * $blobs = $remotebuildexecutionService->blobs; - * - */ -class Google_Service_RemoteBuildExecution_Resource_Blobs extends Google_Service_Resource -{ - /** - * Download many blobs at once. - * - * The server may enforce a limit of the combined total size of blobs to be - * downloaded using this API. This limit may be obtained using the Capabilities - * API. Requests exceeding the limit should either be split into smaller chunks - * or downloaded using the ByteStream API, as appropriate. - * - * This request is equivalent to calling a Bytestream `Read` request on each - * individual blob, in parallel. The requests may succeed or fail independently. - * - * Errors: - * - * * `INVALID_ARGUMENT`: The client attempted to read more than the server - * supported limit. - * - * Every error on individual read will be returned in the corresponding digest - * status. (blobs.batchRead) - * - * @param string $instanceName The instance of the execution system to operate - * against. A server may support multiple instances of the execution system - * (with their own workers, storage, caches, etc.). The server MAY require use - * of this field to select between them in an implementation-defined fashion, - * otherwise it can be omitted. - * @param Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2BatchReadBlobsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2BatchReadBlobsResponse - */ - public function batchRead($instanceName, Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2BatchReadBlobsRequest $postBody, $optParams = array()) - { - $params = array('instanceName' => $instanceName, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('batchRead', array($params), "Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2BatchReadBlobsResponse"); - } - /** - * Upload many blobs at once. - * - * The server may enforce a limit of the combined total size of blobs to be - * uploaded using this API. This limit may be obtained using the Capabilities - * API. Requests exceeding the limit should either be split into smaller chunks - * or uploaded using the ByteStream API, as appropriate. - * - * This request is equivalent to calling a Bytestream `Write` request on each - * individual blob, in parallel. The requests may succeed or fail independently. - * - * Errors: - * - * * `INVALID_ARGUMENT`: The client attempted to upload more than the server - * supported limit. - * - * Individual requests may return the following errors, additionally: - * - * * `RESOURCE_EXHAUSTED`: There is insufficient disk quota to store the blob. * - * `INVALID_ARGUMENT`: The Digest does not match the provided data. - * (blobs.batchUpdate) - * - * @param string $instanceName The instance of the execution system to operate - * against. A server may support multiple instances of the execution system - * (with their own workers, storage, caches, etc.). The server MAY require use - * of this field to select between them in an implementation-defined fashion, - * otherwise it can be omitted. - * @param Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2BatchUpdateBlobsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2BatchUpdateBlobsResponse - */ - public function batchUpdate($instanceName, Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2BatchUpdateBlobsRequest $postBody, $optParams = array()) - { - $params = array('instanceName' => $instanceName, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('batchUpdate', array($params), "Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2BatchUpdateBlobsResponse"); - } - /** - * Determine if blobs are present in the CAS. - * - * Clients can use this API before uploading blobs to determine which ones are - * already present in the CAS and do not need to be uploaded again. - * - * There are no method-specific errors. (blobs.findMissing) - * - * @param string $instanceName The instance of the execution system to operate - * against. A server may support multiple instances of the execution system - * (with their own workers, storage, caches, etc.). The server MAY require use - * of this field to select between them in an implementation-defined fashion, - * otherwise it can be omitted. - * @param Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2FindMissingBlobsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2FindMissingBlobsResponse - */ - public function findMissing($instanceName, Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2FindMissingBlobsRequest $postBody, $optParams = array()) - { - $params = array('instanceName' => $instanceName, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('findMissing', array($params), "Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2FindMissingBlobsResponse"); - } - /** - * Fetch the entire directory tree rooted at a node. - * - * This request must be targeted at a Directory stored in the - * ContentAddressableStorage (CAS). The server will enumerate the `Directory` - * tree recursively and return every node descended from the root. - * - * The GetTreeRequest.page_token parameter can be used to skip ahead in the - * stream (e.g. when retrying a partially completed and aborted request), by - * setting it to a value taken from GetTreeResponse.next_page_token of the last - * successfully processed GetTreeResponse). - * - * The exact traversal order is unspecified and, unless retrieving subsequent - * pages from an earlier request, is not guaranteed to be stable across multiple - * invocations of `GetTree`. - * - * If part of the tree is missing from the CAS, the server will return the - * portion present and omit the rest. - * - * * `NOT_FOUND`: The requested tree root is not present in the CAS. - * (blobs.getTree) - * - * @param string $instanceName The instance of the execution system to operate - * against. A server may support multiple instances of the execution system - * (with their own workers, storage, caches, etc.). The server MAY require use - * of this field to select between them in an implementation-defined fashion, - * otherwise it can be omitted. - * @param string $hash The hash. In the case of SHA-256, it will always be a - * lowercase hex string exactly 64 characters long. - * @param string $sizeBytes The size of the blob, in bytes. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A page token, which must be a value received in a - * previous GetTreeResponse. If present, the server will use it to return the - * following page of results. - * @opt_param int pageSize A maximum page size to request. If present, the - * server will request no more than this many items. Regardless of whether a - * page size is specified, the server may place its own limit on the number of - * items to be returned and require the client to retrieve more items using a - * subsequent request. - * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2GetTreeResponse - */ - public function getTree($instanceName, $hash, $sizeBytes, $optParams = array()) - { - $params = array('instanceName' => $instanceName, 'hash' => $hash, 'sizeBytes' => $sizeBytes); - $params = array_merge($params, $optParams); - return $this->call('getTree', array($params), "Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2GetTreeResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/Resource/Operations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/Resource/Operations.php deleted file mode 100644 index e6992634..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/Resource/Operations.php +++ /dev/null @@ -1,48 +0,0 @@ - - * $remotebuildexecutionService = new Google_Service_RemoteBuildExecution(...); - * $operations = $remotebuildexecutionService->operations; - * - */ -class Google_Service_RemoteBuildExecution_Resource_Operations extends Google_Service_Resource -{ - /** - * Wait for an execution operation to complete. When the client initially makes - * the request, the server immediately responds with the current status of the - * execution. The server will leave the request stream open until the operation - * completes, and then respond with the completed operation. The server MAY - * choose to stream additional updates as execution progresses, such as to - * provide an update as to the state of the execution. - * (operations.waitExecution) - * - * @param string $name The name of the Operation returned by Execute. - * @param Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2WaitExecutionRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_RemoteBuildExecution_GoogleLongrunningOperation - */ - public function waitExecution($name, Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2WaitExecutionRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('waitExecution', array($params), "Google_Service_RemoteBuildExecution_GoogleLongrunningOperation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/Resource/V2.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/Resource/V2.php deleted file mode 100644 index f26a8614..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/RemoteBuildExecution/Resource/V2.php +++ /dev/null @@ -1,50 +0,0 @@ - - * $remotebuildexecutionService = new Google_Service_RemoteBuildExecution(...); - * $v2 = $remotebuildexecutionService->v2; - * - */ -class Google_Service_RemoteBuildExecution_Resource_V2 extends Google_Service_Resource -{ - /** - * GetCapabilities returns the server capabilities configuration of the remote - * endpoint. Only the capabilities of the services supported by the endpoint - * will be returned: * Execution + CAS + Action Cache endpoints should return - * both CacheCapabilities and ExecutionCapabilities. * Execution only - * endpoints should return ExecutionCapabilities. * CAS + Action Cache only - * endpoints should return CacheCapabilities. (v2.getCapabilities) - * - * @param string $instanceName The instance of the execution system to operate - * against. A server may support multiple instances of the execution system - * (with their own workers, storage, caches, etc.). The server MAY require use - * of this field to select between them in an implementation-defined fashion, - * otherwise it can be omitted. - * @param array $optParams Optional parameters. - * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2ServerCapabilities - */ - public function getCapabilities($instanceName, $optParams = array()) - { - $params = array('instanceName' => $instanceName); - $params = array_merge($params, $optParams); - return $this->call('getCapabilities', array($params), "Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2ServerCapabilities"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool.php deleted file mode 100644 index cae47a6f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool.php +++ /dev/null @@ -1,317 +0,0 @@ - - * The Replica Pool API allows users to declaratively provision and manage - * groups of Google Compute Engine instances based on a common template.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Replicapool extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** View your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM_READ_ONLY = - "https://www.googleapis.com/auth/cloud-platform.read-only"; - /** View and manage your Google Cloud Platform management resources and deployment status information. */ - const NDEV_CLOUDMAN = - "https://www.googleapis.com/auth/ndev.cloudman"; - /** View your Google Cloud Platform management resources and deployment status information. */ - const NDEV_CLOUDMAN_READONLY = - "https://www.googleapis.com/auth/ndev.cloudman.readonly"; - /** View and manage replica pools. */ - const REPLICAPOOL = - "https://www.googleapis.com/auth/replicapool"; - /** View replica pools. */ - const REPLICAPOOL_READONLY = - "https://www.googleapis.com/auth/replicapool.readonly"; - - public $pools; - public $replicas; - - /** - * Constructs the internal representation of the Replicapool service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://www.googleapis.com/'; - $this->servicePath = 'replicapool/v1beta1/projects/'; - $this->batchPath = 'batch/replicapool/v1beta1'; - $this->version = 'v1beta1'; - $this->serviceName = 'replicapool'; - - $this->pools = new Google_Service_Replicapool_Resource_Pools( - $this, - $this->serviceName, - 'pools', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{projectName}/zones/{zone}/pools/{poolName}', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'poolName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{projectName}/zones/{zone}/pools/{poolName}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'poolName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{projectName}/zones/{zone}/pools', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{projectName}/zones/{zone}/pools', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'resize' => array( - 'path' => '{projectName}/zones/{zone}/pools/{poolName}/resize', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'poolName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'numReplicas' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'updatetemplate' => array( - 'path' => '{projectName}/zones/{zone}/pools/{poolName}/updateTemplate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'poolName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->replicas = new Google_Service_Replicapool_Resource_Replicas( - $this, - $this->serviceName, - 'replicas', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{projectName}/zones/{zone}/pools/{poolName}/replicas/{replicaName}', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'poolName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'replicaName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{projectName}/zones/{zone}/pools/{poolName}/replicas/{replicaName}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'poolName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'replicaName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{projectName}/zones/{zone}/pools/{poolName}/replicas', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'poolName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'restart' => array( - 'path' => '{projectName}/zones/{zone}/pools/{poolName}/replicas/{replicaName}/restart', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'poolName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'replicaName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/AccessConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/AccessConfig.php deleted file mode 100644 index 28d870d4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/AccessConfig.php +++ /dev/null @@ -1,48 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setNatIp($natIp) - { - $this->natIp = $natIp; - } - public function getNatIp() - { - return $this->natIp; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/Action.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/Action.php deleted file mode 100644 index d2bf0248..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/Action.php +++ /dev/null @@ -1,56 +0,0 @@ -commands = $commands; - } - public function getCommands() - { - return $this->commands; - } - /** - * @param Google_Service_Replicapool_EnvVariable - */ - public function setEnvVariables($envVariables) - { - $this->envVariables = $envVariables; - } - /** - * @return Google_Service_Replicapool_EnvVariable - */ - public function getEnvVariables() - { - return $this->envVariables; - } - public function setTimeoutMilliSeconds($timeoutMilliSeconds) - { - $this->timeoutMilliSeconds = $timeoutMilliSeconds; - } - public function getTimeoutMilliSeconds() - { - return $this->timeoutMilliSeconds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/DiskAttachment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/DiskAttachment.php deleted file mode 100644 index 2b741a99..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/DiskAttachment.php +++ /dev/null @@ -1,39 +0,0 @@ -deviceName = $deviceName; - } - public function getDeviceName() - { - return $this->deviceName; - } - public function setIndex($index) - { - $this->index = $index; - } - public function getIndex() - { - return $this->index; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/EnvVariable.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/EnvVariable.php deleted file mode 100644 index 13b1d55b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/EnvVariable.php +++ /dev/null @@ -1,48 +0,0 @@ -hidden = $hidden; - } - public function getHidden() - { - return $this->hidden; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/ExistingDisk.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/ExistingDisk.php deleted file mode 100644 index e97e7bee..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/ExistingDisk.php +++ /dev/null @@ -1,46 +0,0 @@ -attachment = $attachment; - } - /** - * @return Google_Service_Replicapool_DiskAttachment - */ - public function getAttachment() - { - return $this->attachment; - } - public function setSource($source) - { - $this->source = $source; - } - public function getSource() - { - return $this->source; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/HealthCheck.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/HealthCheck.php deleted file mode 100644 index 9cd2939f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/HealthCheck.php +++ /dev/null @@ -1,102 +0,0 @@ -checkIntervalSec = $checkIntervalSec; - } - public function getCheckIntervalSec() - { - return $this->checkIntervalSec; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setHealthyThreshold($healthyThreshold) - { - $this->healthyThreshold = $healthyThreshold; - } - public function getHealthyThreshold() - { - return $this->healthyThreshold; - } - public function setHost($host) - { - $this->host = $host; - } - public function getHost() - { - return $this->host; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPath($path) - { - $this->path = $path; - } - public function getPath() - { - return $this->path; - } - public function setPort($port) - { - $this->port = $port; - } - public function getPort() - { - return $this->port; - } - public function setTimeoutSec($timeoutSec) - { - $this->timeoutSec = $timeoutSec; - } - public function getTimeoutSec() - { - return $this->timeoutSec; - } - public function setUnhealthyThreshold($unhealthyThreshold) - { - $this->unhealthyThreshold = $unhealthyThreshold; - } - public function getUnhealthyThreshold() - { - return $this->unhealthyThreshold; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/Label.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/Label.php deleted file mode 100644 index 87323c89..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/Label.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/Metadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/Metadata.php deleted file mode 100644 index ddec7721..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/Metadata.php +++ /dev/null @@ -1,47 +0,0 @@ -fingerPrint = $fingerPrint; - } - public function getFingerPrint() - { - return $this->fingerPrint; - } - /** - * @param Google_Service_Replicapool_MetadataItem - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Replicapool_MetadataItem - */ - public function getItems() - { - return $this->items; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/MetadataItem.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/MetadataItem.php deleted file mode 100644 index d201d962..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/MetadataItem.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/NetworkInterface.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/NetworkInterface.php deleted file mode 100644 index 6acb644f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/NetworkInterface.php +++ /dev/null @@ -1,56 +0,0 @@ -accessConfigs = $accessConfigs; - } - /** - * @return Google_Service_Replicapool_AccessConfig - */ - public function getAccessConfigs() - { - return $this->accessConfigs; - } - public function setNetwork($network) - { - $this->network = $network; - } - public function getNetwork() - { - return $this->network; - } - public function setNetworkIp($networkIp) - { - $this->networkIp = $networkIp; - } - public function getNetworkIp() - { - return $this->networkIp; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/NewDisk.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/NewDisk.php deleted file mode 100644 index 6e8b0cc8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/NewDisk.php +++ /dev/null @@ -1,71 +0,0 @@ -attachment = $attachment; - } - /** - * @return Google_Service_Replicapool_DiskAttachment - */ - public function getAttachment() - { - return $this->attachment; - } - public function setAutoDelete($autoDelete) - { - $this->autoDelete = $autoDelete; - } - public function getAutoDelete() - { - return $this->autoDelete; - } - public function setBoot($boot) - { - $this->boot = $boot; - } - public function getBoot() - { - return $this->boot; - } - /** - * @param Google_Service_Replicapool_NewDiskInitializeParams - */ - public function setInitializeParams(Google_Service_Replicapool_NewDiskInitializeParams $initializeParams) - { - $this->initializeParams = $initializeParams; - } - /** - * @return Google_Service_Replicapool_NewDiskInitializeParams - */ - public function getInitializeParams() - { - return $this->initializeParams; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/NewDiskInitializeParams.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/NewDiskInitializeParams.php deleted file mode 100644 index 35307414..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/NewDiskInitializeParams.php +++ /dev/null @@ -1,48 +0,0 @@ -diskSizeGb = $diskSizeGb; - } - public function getDiskSizeGb() - { - return $this->diskSizeGb; - } - public function setDiskType($diskType) - { - $this->diskType = $diskType; - } - public function getDiskType() - { - return $this->diskType; - } - public function setSourceImage($sourceImage) - { - $this->sourceImage = $sourceImage; - } - public function getSourceImage() - { - return $this->sourceImage; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/Pool.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/Pool.php deleted file mode 100644 index c588b170..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/Pool.php +++ /dev/null @@ -1,178 +0,0 @@ -autoRestart = $autoRestart; - } - public function getAutoRestart() - { - return $this->autoRestart; - } - public function setBaseInstanceName($baseInstanceName) - { - $this->baseInstanceName = $baseInstanceName; - } - public function getBaseInstanceName() - { - return $this->baseInstanceName; - } - public function setCurrentNumReplicas($currentNumReplicas) - { - $this->currentNumReplicas = $currentNumReplicas; - } - public function getCurrentNumReplicas() - { - return $this->currentNumReplicas; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - /** - * @param Google_Service_Replicapool_HealthCheck - */ - public function setHealthChecks($healthChecks) - { - $this->healthChecks = $healthChecks; - } - /** - * @return Google_Service_Replicapool_HealthCheck - */ - public function getHealthChecks() - { - return $this->healthChecks; - } - public function setInitialNumReplicas($initialNumReplicas) - { - $this->initialNumReplicas = $initialNumReplicas; - } - public function getInitialNumReplicas() - { - return $this->initialNumReplicas; - } - /** - * @param Google_Service_Replicapool_Label - */ - public function setLabels($labels) - { - $this->labels = $labels; - } - /** - * @return Google_Service_Replicapool_Label - */ - public function getLabels() - { - return $this->labels; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNumReplicas($numReplicas) - { - $this->numReplicas = $numReplicas; - } - public function getNumReplicas() - { - return $this->numReplicas; - } - public function setResourceViews($resourceViews) - { - $this->resourceViews = $resourceViews; - } - public function getResourceViews() - { - return $this->resourceViews; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setTargetPool($targetPool) - { - $this->targetPool = $targetPool; - } - public function getTargetPool() - { - return $this->targetPool; - } - public function setTargetPools($targetPools) - { - $this->targetPools = $targetPools; - } - public function getTargetPools() - { - return $this->targetPools; - } - /** - * @param Google_Service_Replicapool_Template - */ - public function setTemplate(Google_Service_Replicapool_Template $template) - { - $this->template = $template; - } - /** - * @return Google_Service_Replicapool_Template - */ - public function getTemplate() - { - return $this->template; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/PoolsDeleteRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/PoolsDeleteRequest.php deleted file mode 100644 index 0e9e39f6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/PoolsDeleteRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -abandonInstances = $abandonInstances; - } - public function getAbandonInstances() - { - return $this->abandonInstances; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/PoolsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/PoolsListResponse.php deleted file mode 100644 index e690ff18..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/PoolsListResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Replicapool_Pool - */ - public function setResources($resources) - { - $this->resources = $resources; - } - /** - * @return Google_Service_Replicapool_Pool - */ - public function getResources() - { - return $this->resources; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/Replica.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/Replica.php deleted file mode 100644 index f6b19819..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/Replica.php +++ /dev/null @@ -1,55 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_Replicapool_ReplicaStatus - */ - public function setStatus(Google_Service_Replicapool_ReplicaStatus $status) - { - $this->status = $status; - } - /** - * @return Google_Service_Replicapool_ReplicaStatus - */ - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/ReplicaStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/ReplicaStatus.php deleted file mode 100644 index a7897891..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/ReplicaStatus.php +++ /dev/null @@ -1,66 +0,0 @@ -details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setTemplateVersion($templateVersion) - { - $this->templateVersion = $templateVersion; - } - public function getTemplateVersion() - { - return $this->templateVersion; - } - public function setVmLink($vmLink) - { - $this->vmLink = $vmLink; - } - public function getVmLink() - { - return $this->vmLink; - } - public function setVmStartTime($vmStartTime) - { - $this->vmStartTime = $vmStartTime; - } - public function getVmStartTime() - { - return $this->vmStartTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/ReplicasDeleteRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/ReplicasDeleteRequest.php deleted file mode 100644 index b54ad503..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/ReplicasDeleteRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -abandonInstance = $abandonInstance; - } - public function getAbandonInstance() - { - return $this->abandonInstance; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/ReplicasListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/ReplicasListResponse.php deleted file mode 100644 index 19b52bbf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/ReplicasListResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Replicapool_Replica - */ - public function setResources($resources) - { - $this->resources = $resources; - } - /** - * @return Google_Service_Replicapool_Replica - */ - public function getResources() - { - return $this->resources; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/Resource/Pools.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/Resource/Pools.php deleted file mode 100644 index 31db835e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/Resource/Pools.php +++ /dev/null @@ -1,129 +0,0 @@ - - * $replicapoolService = new Google_Service_Replicapool(...); - * $pools = $replicapoolService->pools; - * - */ -class Google_Service_Replicapool_Resource_Pools extends Google_Service_Resource -{ - /** - * Deletes a replica pool. (pools.delete) - * - * @param string $projectName The project ID for this replica pool. - * @param string $zone The zone for this replica pool. - * @param string $poolName The name of the replica pool for this request. - * @param Google_Service_Replicapool_PoolsDeleteRequest $postBody - * @param array $optParams Optional parameters. - */ - public function delete($projectName, $zone, $poolName, Google_Service_Replicapool_PoolsDeleteRequest $postBody, $optParams = array()) - { - $params = array('projectName' => $projectName, 'zone' => $zone, 'poolName' => $poolName, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Gets information about a single replica pool. (pools.get) - * - * @param string $projectName The project ID for this replica pool. - * @param string $zone The zone for this replica pool. - * @param string $poolName The name of the replica pool for this request. - * @param array $optParams Optional parameters. - * @return Google_Service_Replicapool_Pool - */ - public function get($projectName, $zone, $poolName, $optParams = array()) - { - $params = array('projectName' => $projectName, 'zone' => $zone, 'poolName' => $poolName); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Replicapool_Pool"); - } - /** - * Inserts a new replica pool. (pools.insert) - * - * @param string $projectName The project ID for this replica pool. - * @param string $zone The zone for this replica pool. - * @param Google_Service_Replicapool_Pool $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Replicapool_Pool - */ - public function insert($projectName, $zone, Google_Service_Replicapool_Pool $postBody, $optParams = array()) - { - $params = array('projectName' => $projectName, 'zone' => $zone, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Replicapool_Pool"); - } - /** - * List all replica pools. (pools.listPools) - * - * @param string $projectName The project ID for this request. - * @param string $zone The zone for this replica pool. - * @param array $optParams Optional parameters. - * - * @opt_param int maxResults Maximum count of results to be returned. Acceptable - * values are 0 to 100, inclusive. (Default: 50) - * @opt_param string pageToken Set this to the nextPageToken value returned by a - * previous list request to obtain the next page of results from the previous - * list request. - * @return Google_Service_Replicapool_PoolsListResponse - */ - public function listPools($projectName, $zone, $optParams = array()) - { - $params = array('projectName' => $projectName, 'zone' => $zone); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Replicapool_PoolsListResponse"); - } - /** - * Resize a pool. This is an asynchronous operation, and multiple overlapping - * resize requests can be made. Replica Pools will use the information from the - * last resize request. (pools.resize) - * - * @param string $projectName The project ID for this replica pool. - * @param string $zone The zone for this replica pool. - * @param string $poolName The name of the replica pool for this request. - * @param array $optParams Optional parameters. - * - * @opt_param int numReplicas The desired number of replicas to resize to. If - * this number is larger than the existing number of replicas, new replicas will - * be added. If the number is smaller, then existing replicas will be deleted. - * @return Google_Service_Replicapool_Pool - */ - public function resize($projectName, $zone, $poolName, $optParams = array()) - { - $params = array('projectName' => $projectName, 'zone' => $zone, 'poolName' => $poolName); - $params = array_merge($params, $optParams); - return $this->call('resize', array($params), "Google_Service_Replicapool_Pool"); - } - /** - * Update the template used by the pool. (pools.updatetemplate) - * - * @param string $projectName The project ID for this replica pool. - * @param string $zone The zone for this replica pool. - * @param string $poolName The name of the replica pool for this request. - * @param Google_Service_Replicapool_Template $postBody - * @param array $optParams Optional parameters. - */ - public function updatetemplate($projectName, $zone, $poolName, Google_Service_Replicapool_Template $postBody, $optParams = array()) - { - $params = array('projectName' => $projectName, 'zone' => $zone, 'poolName' => $poolName, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updatetemplate', array($params)); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/Resource/Replicas.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/Resource/Replicas.php deleted file mode 100644 index 528b8c98..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/Resource/Replicas.php +++ /dev/null @@ -1,98 +0,0 @@ - - * $replicapoolService = new Google_Service_Replicapool(...); - * $replicas = $replicapoolService->replicas; - * - */ -class Google_Service_Replicapool_Resource_Replicas extends Google_Service_Resource -{ - /** - * Deletes a replica from the pool. (replicas.delete) - * - * @param string $projectName The project ID for this request. - * @param string $zone The zone where the replica lives. - * @param string $poolName The replica pool name for this request. - * @param string $replicaName The name of the replica for this request. - * @param Google_Service_Replicapool_ReplicasDeleteRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Replicapool_Replica - */ - public function delete($projectName, $zone, $poolName, $replicaName, Google_Service_Replicapool_ReplicasDeleteRequest $postBody, $optParams = array()) - { - $params = array('projectName' => $projectName, 'zone' => $zone, 'poolName' => $poolName, 'replicaName' => $replicaName, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Replicapool_Replica"); - } - /** - * Gets information about a specific replica. (replicas.get) - * - * @param string $projectName The project ID for this request. - * @param string $zone The zone where the replica lives. - * @param string $poolName The replica pool name for this request. - * @param string $replicaName The name of the replica for this request. - * @param array $optParams Optional parameters. - * @return Google_Service_Replicapool_Replica - */ - public function get($projectName, $zone, $poolName, $replicaName, $optParams = array()) - { - $params = array('projectName' => $projectName, 'zone' => $zone, 'poolName' => $poolName, 'replicaName' => $replicaName); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Replicapool_Replica"); - } - /** - * Lists all replicas in a pool. (replicas.listReplicas) - * - * @param string $projectName The project ID for this request. - * @param string $zone The zone where the replica pool lives. - * @param string $poolName The replica pool name for this request. - * @param array $optParams Optional parameters. - * - * @opt_param int maxResults Maximum count of results to be returned. Acceptable - * values are 0 to 100, inclusive. (Default: 50) - * @opt_param string pageToken Set this to the nextPageToken value returned by a - * previous list request to obtain the next page of results from the previous - * list request. - * @return Google_Service_Replicapool_ReplicasListResponse - */ - public function listReplicas($projectName, $zone, $poolName, $optParams = array()) - { - $params = array('projectName' => $projectName, 'zone' => $zone, 'poolName' => $poolName); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Replicapool_ReplicasListResponse"); - } - /** - * Restarts a replica in a pool. (replicas.restart) - * - * @param string $projectName The project ID for this request. - * @param string $zone The zone where the replica lives. - * @param string $poolName The replica pool name for this request. - * @param string $replicaName The name of the replica for this request. - * @param array $optParams Optional parameters. - * @return Google_Service_Replicapool_Replica - */ - public function restart($projectName, $zone, $poolName, $replicaName, $optParams = array()) - { - $params = array('projectName' => $projectName, 'zone' => $zone, 'poolName' => $poolName, 'replicaName' => $replicaName); - $params = array_merge($params, $optParams); - return $this->call('restart', array($params), "Google_Service_Replicapool_Replica"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/ServiceAccount.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/ServiceAccount.php deleted file mode 100644 index 9c82a4d8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/ServiceAccount.php +++ /dev/null @@ -1,40 +0,0 @@ -email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setScopes($scopes) - { - $this->scopes = $scopes; - } - public function getScopes() - { - return $this->scopes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/Tag.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/Tag.php deleted file mode 100644 index 03c1aad3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/Tag.php +++ /dev/null @@ -1,40 +0,0 @@ -fingerPrint = $fingerPrint; - } - public function getFingerPrint() - { - return $this->fingerPrint; - } - public function setItems($items) - { - $this->items = $items; - } - public function getItems() - { - return $this->items; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/Template.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/Template.php deleted file mode 100644 index 84ba301f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/Template.php +++ /dev/null @@ -1,79 +0,0 @@ -action = $action; - } - /** - * @return Google_Service_Replicapool_Action - */ - public function getAction() - { - return $this->action; - } - /** - * @param Google_Service_Replicapool_HealthCheck - */ - public function setHealthChecks($healthChecks) - { - $this->healthChecks = $healthChecks; - } - /** - * @return Google_Service_Replicapool_HealthCheck - */ - public function getHealthChecks() - { - return $this->healthChecks; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } - /** - * @param Google_Service_Replicapool_VmParams - */ - public function setVmParams(Google_Service_Replicapool_VmParams $vmParams) - { - $this->vmParams = $vmParams; - } - /** - * @return Google_Service_Replicapool_VmParams - */ - public function getVmParams() - { - return $this->vmParams; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/VmParams.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/VmParams.php deleted file mode 100644 index 0e8c72b1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapool/VmParams.php +++ /dev/null @@ -1,163 +0,0 @@ -baseInstanceName = $baseInstanceName; - } - public function getBaseInstanceName() - { - return $this->baseInstanceName; - } - public function setCanIpForward($canIpForward) - { - $this->canIpForward = $canIpForward; - } - public function getCanIpForward() - { - return $this->canIpForward; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - /** - * @param Google_Service_Replicapool_ExistingDisk - */ - public function setDisksToAttach($disksToAttach) - { - $this->disksToAttach = $disksToAttach; - } - /** - * @return Google_Service_Replicapool_ExistingDisk - */ - public function getDisksToAttach() - { - return $this->disksToAttach; - } - /** - * @param Google_Service_Replicapool_NewDisk - */ - public function setDisksToCreate($disksToCreate) - { - $this->disksToCreate = $disksToCreate; - } - /** - * @return Google_Service_Replicapool_NewDisk - */ - public function getDisksToCreate() - { - return $this->disksToCreate; - } - public function setMachineType($machineType) - { - $this->machineType = $machineType; - } - public function getMachineType() - { - return $this->machineType; - } - /** - * @param Google_Service_Replicapool_Metadata - */ - public function setMetadata(Google_Service_Replicapool_Metadata $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_Replicapool_Metadata - */ - public function getMetadata() - { - return $this->metadata; - } - /** - * @param Google_Service_Replicapool_NetworkInterface - */ - public function setNetworkInterfaces($networkInterfaces) - { - $this->networkInterfaces = $networkInterfaces; - } - /** - * @return Google_Service_Replicapool_NetworkInterface - */ - public function getNetworkInterfaces() - { - return $this->networkInterfaces; - } - public function setOnHostMaintenance($onHostMaintenance) - { - $this->onHostMaintenance = $onHostMaintenance; - } - public function getOnHostMaintenance() - { - return $this->onHostMaintenance; - } - /** - * @param Google_Service_Replicapool_ServiceAccount - */ - public function setServiceAccounts($serviceAccounts) - { - $this->serviceAccounts = $serviceAccounts; - } - /** - * @return Google_Service_Replicapool_ServiceAccount - */ - public function getServiceAccounts() - { - return $this->serviceAccounts; - } - /** - * @param Google_Service_Replicapool_Tag - */ - public function setTags(Google_Service_Replicapool_Tag $tags) - { - $this->tags = $tags; - } - /** - * @return Google_Service_Replicapool_Tag - */ - public function getTags() - { - return $this->tags; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapoolupdater.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapoolupdater.php deleted file mode 100644 index 117c659b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapoolupdater.php +++ /dev/null @@ -1,306 +0,0 @@ - - * [Deprecated. Please use compute.instanceGroupManagers.update method. - * replicapoolupdater API will be disabled after December 30th, 2016] Updates - * groups of Compute Engine instances.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Replicapoolupdater extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** View your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM_READ_ONLY = - "https://www.googleapis.com/auth/cloud-platform.read-only"; - /** View and manage replica pools. */ - const REPLICAPOOL = - "https://www.googleapis.com/auth/replicapool"; - /** View replica pools. */ - const REPLICAPOOL_READONLY = - "https://www.googleapis.com/auth/replicapool.readonly"; - - public $rollingUpdates; - public $zoneOperations; - - /** - * Constructs the internal representation of the Replicapoolupdater service. - * - * @param Google_Client $client - */ - public function __construct(Google_Client $client) - { - parent::__construct($client); - $this->rootUrl = 'https://www.googleapis.com/'; - $this->servicePath = 'replicapoolupdater/v1beta1/projects/'; - $this->version = 'v1beta1'; - $this->serviceName = 'replicapoolupdater'; - - $this->rollingUpdates = new Google_Service_Replicapoolupdater_Resource_RollingUpdates( - $this, - $this->serviceName, - 'rollingUpdates', - array( - 'methods' => array( - 'cancel' => array( - 'path' => '{project}/zones/{zone}/rollingUpdates/{rollingUpdate}/cancel', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'rollingUpdate' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{project}/zones/{zone}/rollingUpdates/{rollingUpdate}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'rollingUpdate' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/zones/{zone}/rollingUpdates', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/zones/{zone}/rollingUpdates', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'listInstanceUpdates' => array( - 'path' => '{project}/zones/{zone}/rollingUpdates/{rollingUpdate}/instanceUpdates', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'rollingUpdate' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'pause' => array( - 'path' => '{project}/zones/{zone}/rollingUpdates/{rollingUpdate}/pause', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'rollingUpdate' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'resume' => array( - 'path' => '{project}/zones/{zone}/rollingUpdates/{rollingUpdate}/resume', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'rollingUpdate' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'rollback' => array( - 'path' => '{project}/zones/{zone}/rollingUpdates/{rollingUpdate}/rollback', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'rollingUpdate' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->zoneOperations = new Google_Service_Replicapoolupdater_Resource_ZoneOperations( - $this, - $this->serviceName, - 'zoneOperations', - array( - 'methods' => array( - 'get' => array( - 'path' => '{project}/zones/{zone}/operations/{operation}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'operation' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/zones/{zone}/operations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapoolupdater/InstanceUpdate.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapoolupdater/InstanceUpdate.php deleted file mode 100644 index 1a176c3f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapoolupdater/InstanceUpdate.php +++ /dev/null @@ -1,55 +0,0 @@ -error = $error; - } - /** - * @return Google_Service_Replicapoolupdater_InstanceUpdateError - */ - public function getError() - { - return $this->error; - } - public function setInstance($instance) - { - $this->instance = $instance; - } - public function getInstance() - { - return $this->instance; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapoolupdater/InstanceUpdateError.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapoolupdater/InstanceUpdateError.php deleted file mode 100644 index d6992520..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapoolupdater/InstanceUpdateError.php +++ /dev/null @@ -1,38 +0,0 @@ -errors = $errors; - } - /** - * @return Google_Service_Replicapoolupdater_InstanceUpdateErrorErrors - */ - public function getErrors() - { - return $this->errors; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapoolupdater/InstanceUpdateErrorErrors.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapoolupdater/InstanceUpdateErrorErrors.php deleted file mode 100644 index bb203756..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapoolupdater/InstanceUpdateErrorErrors.php +++ /dev/null @@ -1,48 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapoolupdater/InstanceUpdateList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapoolupdater/InstanceUpdateList.php deleted file mode 100644 index db2897f2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapoolupdater/InstanceUpdateList.php +++ /dev/null @@ -1,65 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Replicapoolupdater_InstanceUpdate - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapoolupdater/Operation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapoolupdater/Operation.php deleted file mode 100644 index b9f4ebee..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapoolupdater/Operation.php +++ /dev/null @@ -1,234 +0,0 @@ -clientOperationId = $clientOperationId; - } - public function getClientOperationId() - { - return $this->clientOperationId; - } - public function setCreationTimestamp($creationTimestamp) - { - $this->creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - /** - * @param Google_Service_Replicapoolupdater_OperationError - */ - public function setError(Google_Service_Replicapoolupdater_OperationError $error) - { - $this->error = $error; - } - /** - * @return Google_Service_Replicapoolupdater_OperationError - */ - public function getError() - { - return $this->error; - } - public function setHttpErrorMessage($httpErrorMessage) - { - $this->httpErrorMessage = $httpErrorMessage; - } - public function getHttpErrorMessage() - { - return $this->httpErrorMessage; - } - public function setHttpErrorStatusCode($httpErrorStatusCode) - { - $this->httpErrorStatusCode = $httpErrorStatusCode; - } - public function getHttpErrorStatusCode() - { - return $this->httpErrorStatusCode; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setInsertTime($insertTime) - { - $this->insertTime = $insertTime; - } - public function getInsertTime() - { - return $this->insertTime; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOperationType($operationType) - { - $this->operationType = $operationType; - } - public function getOperationType() - { - return $this->operationType; - } - public function setProgress($progress) - { - $this->progress = $progress; - } - public function getProgress() - { - return $this->progress; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - 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 setStatusMessage($statusMessage) - { - $this->statusMessage = $statusMessage; - } - public function getStatusMessage() - { - return $this->statusMessage; - } - public function setTargetId($targetId) - { - $this->targetId = $targetId; - } - public function getTargetId() - { - return $this->targetId; - } - public function setTargetLink($targetLink) - { - $this->targetLink = $targetLink; - } - public function getTargetLink() - { - return $this->targetLink; - } - public function setUser($user) - { - $this->user = $user; - } - public function getUser() - { - return $this->user; - } - /** - * @param Google_Service_Replicapoolupdater_OperationWarnings - */ - public function setWarnings($warnings) - { - $this->warnings = $warnings; - } - /** - * @return Google_Service_Replicapoolupdater_OperationWarnings - */ - public function getWarnings() - { - return $this->warnings; - } - public function setZone($zone) - { - $this->zone = $zone; - } - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapoolupdater/OperationError.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapoolupdater/OperationError.php deleted file mode 100644 index 8dd76e81..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapoolupdater/OperationError.php +++ /dev/null @@ -1,38 +0,0 @@ -errors = $errors; - } - /** - * @return Google_Service_Replicapoolupdater_OperationErrorErrors - */ - public function getErrors() - { - return $this->errors; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapoolupdater/OperationErrorErrors.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapoolupdater/OperationErrorErrors.php deleted file mode 100644 index c89bcf71..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapoolupdater/OperationErrorErrors.php +++ /dev/null @@ -1,48 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapoolupdater/OperationList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapoolupdater/OperationList.php deleted file mode 100644 index ec75db5b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapoolupdater/OperationList.php +++ /dev/null @@ -1,74 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Replicapoolupdater_Operation - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Replicapoolupdater_Operation - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapoolupdater/OperationWarnings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapoolupdater/OperationWarnings.php deleted file mode 100644 index 5bfc8e22..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapoolupdater/OperationWarnings.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Replicapoolupdater_OperationWarningsData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Replicapoolupdater_OperationWarningsData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapoolupdater/OperationWarningsData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapoolupdater/OperationWarningsData.php deleted file mode 100644 index e9add7a5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapoolupdater/OperationWarningsData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapoolupdater/Resource/RollingUpdates.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapoolupdater/Resource/RollingUpdates.php deleted file mode 100644 index 86c6406d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapoolupdater/Resource/RollingUpdates.php +++ /dev/null @@ -1,177 +0,0 @@ - - * $replicapoolupdaterService = new Google_Service_Replicapoolupdater(...); - * $rollingUpdates = $replicapoolupdaterService->rollingUpdates; - * - */ -class Google_Service_Replicapoolupdater_Resource_RollingUpdates extends Google_Service_Resource -{ - /** - * Cancels an update. The update must be PAUSED before it can be cancelled. This - * has no effect if the update is already CANCELLED. (rollingUpdates.cancel) - * - * @param string $project The Google Developers Console project name. - * @param string $zone The name of the zone in which the update's target - * resides. - * @param string $rollingUpdate The name of the update. - * @param array $optParams Optional parameters. - * @return Google_Service_Replicapoolupdater_Operation - */ - public function cancel($project, $zone, $rollingUpdate, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'rollingUpdate' => $rollingUpdate); - $params = array_merge($params, $optParams); - return $this->call('cancel', array($params), "Google_Service_Replicapoolupdater_Operation"); - } - /** - * Returns information about an update. (rollingUpdates.get) - * - * @param string $project The Google Developers Console project name. - * @param string $zone The name of the zone in which the update's target - * resides. - * @param string $rollingUpdate The name of the update. - * @param array $optParams Optional parameters. - * @return Google_Service_Replicapoolupdater_RollingUpdate - */ - public function get($project, $zone, $rollingUpdate, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'rollingUpdate' => $rollingUpdate); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Replicapoolupdater_RollingUpdate"); - } - /** - * Inserts and starts a new update. (rollingUpdates.insert) - * - * @param string $project The Google Developers Console project name. - * @param string $zone The name of the zone in which the update's target - * resides. - * @param Google_Service_Replicapoolupdater_RollingUpdate $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Replicapoolupdater_Operation - */ - public function insert($project, $zone, Google_Service_Replicapoolupdater_RollingUpdate $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Replicapoolupdater_Operation"); - } - /** - * Lists recent updates for a given managed instance group, in reverse - * chronological order and paginated format. (rollingUpdates.listRollingUpdates) - * - * @param string $project The Google Developers Console project name. - * @param string $zone The name of the zone in which the update's target - * resides. - * @param array $optParams Optional parameters. - * - * @opt_param string filter Optional. Filter expression for filtering listed - * resources. - * @opt_param string maxResults Optional. Maximum count of results to be - * returned. Maximum value is 500 and default value is 500. - * @opt_param string pageToken Optional. Tag returned by a previous list request - * truncated by maxResults. Used to continue a previous list request. - * @return Google_Service_Replicapoolupdater_RollingUpdateList - */ - public function listRollingUpdates($project, $zone, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Replicapoolupdater_RollingUpdateList"); - } - /** - * Lists the current status for each instance within a given update. - * (rollingUpdates.listInstanceUpdates) - * - * @param string $project The Google Developers Console project name. - * @param string $zone The name of the zone in which the update's target - * resides. - * @param string $rollingUpdate The name of the update. - * @param array $optParams Optional parameters. - * - * @opt_param string filter Optional. Filter expression for filtering listed - * resources. - * @opt_param string maxResults Optional. Maximum count of results to be - * returned. Maximum value is 500 and default value is 500. - * @opt_param string pageToken Optional. Tag returned by a previous list request - * truncated by maxResults. Used to continue a previous list request. - * @return Google_Service_Replicapoolupdater_InstanceUpdateList - */ - public function listInstanceUpdates($project, $zone, $rollingUpdate, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'rollingUpdate' => $rollingUpdate); - $params = array_merge($params, $optParams); - return $this->call('listInstanceUpdates', array($params), "Google_Service_Replicapoolupdater_InstanceUpdateList"); - } - /** - * Pauses the update in state from ROLLING_FORWARD or ROLLING_BACK. Has no - * effect if invoked when the state of the update is PAUSED. - * (rollingUpdates.pause) - * - * @param string $project The Google Developers Console project name. - * @param string $zone The name of the zone in which the update's target - * resides. - * @param string $rollingUpdate The name of the update. - * @param array $optParams Optional parameters. - * @return Google_Service_Replicapoolupdater_Operation - */ - public function pause($project, $zone, $rollingUpdate, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'rollingUpdate' => $rollingUpdate); - $params = array_merge($params, $optParams); - return $this->call('pause', array($params), "Google_Service_Replicapoolupdater_Operation"); - } - /** - * Continues an update in PAUSED state. Has no effect if invoked when the state - * of the update is ROLLED_OUT. (rollingUpdates.resume) - * - * @param string $project The Google Developers Console project name. - * @param string $zone The name of the zone in which the update's target - * resides. - * @param string $rollingUpdate The name of the update. - * @param array $optParams Optional parameters. - * @return Google_Service_Replicapoolupdater_Operation - */ - public function resume($project, $zone, $rollingUpdate, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'rollingUpdate' => $rollingUpdate); - $params = array_merge($params, $optParams); - return $this->call('resume', array($params), "Google_Service_Replicapoolupdater_Operation"); - } - /** - * Rolls back the update in state from ROLLING_FORWARD or PAUSED. Has no effect - * if invoked when the state of the update is ROLLED_BACK. - * (rollingUpdates.rollback) - * - * @param string $project The Google Developers Console project name. - * @param string $zone The name of the zone in which the update's target - * resides. - * @param string $rollingUpdate The name of the update. - * @param array $optParams Optional parameters. - * @return Google_Service_Replicapoolupdater_Operation - */ - public function rollback($project, $zone, $rollingUpdate, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'rollingUpdate' => $rollingUpdate); - $params = array_merge($params, $optParams); - return $this->call('rollback', array($params), "Google_Service_Replicapoolupdater_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapoolupdater/Resource/ZoneOperations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapoolupdater/Resource/ZoneOperations.php deleted file mode 100644 index 44e6fabc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapoolupdater/Resource/ZoneOperations.php +++ /dev/null @@ -1,66 +0,0 @@ - - * $replicapoolupdaterService = new Google_Service_Replicapoolupdater(...); - * $zoneOperations = $replicapoolupdaterService->zoneOperations; - * - */ -class Google_Service_Replicapoolupdater_Resource_ZoneOperations extends Google_Service_Resource -{ - /** - * Retrieves the specified zone-specific operation resource. - * (zoneOperations.get) - * - * @param string $project Name of the project scoping this request. - * @param string $zone Name of the zone scoping this request. - * @param string $operation Name of the operation resource to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Replicapoolupdater_Operation - */ - public function get($project, $zone, $operation, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'operation' => $operation); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Replicapoolupdater_Operation"); - } - /** - * Retrieves the list of Operation resources contained within the specified - * zone. (zoneOperations.listZoneOperations) - * - * @param string $project Name of the project scoping this request. - * @param string $zone Name of the zone scoping this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter Optional. Filter expression for filtering listed - * resources. - * @opt_param string maxResults Optional. Maximum count of results to be - * returned. Maximum value is 500 and default value is 500. - * @opt_param string pageToken Optional. Tag returned by a previous list request - * truncated by maxResults. Used to continue a previous list request. - * @return Google_Service_Replicapoolupdater_OperationList - */ - public function listZoneOperations($project, $zone, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Replicapoolupdater_OperationList"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapoolupdater/RollingUpdate.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapoolupdater/RollingUpdate.php deleted file mode 100644 index 6c24e70a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapoolupdater/RollingUpdate.php +++ /dev/null @@ -1,179 +0,0 @@ -actionType = $actionType; - } - public function getActionType() - { - return $this->actionType; - } - public function setCreationTimestamp($creationTimestamp) - { - $this->creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - /** - * @param Google_Service_Replicapoolupdater_RollingUpdateError - */ - public function setError(Google_Service_Replicapoolupdater_RollingUpdateError $error) - { - $this->error = $error; - } - /** - * @return Google_Service_Replicapoolupdater_RollingUpdateError - */ - public function getError() - { - return $this->error; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setInstanceGroup($instanceGroup) - { - $this->instanceGroup = $instanceGroup; - } - public function getInstanceGroup() - { - return $this->instanceGroup; - } - public function setInstanceGroupManager($instanceGroupManager) - { - $this->instanceGroupManager = $instanceGroupManager; - } - public function getInstanceGroupManager() - { - return $this->instanceGroupManager; - } - public function setInstanceTemplate($instanceTemplate) - { - $this->instanceTemplate = $instanceTemplate; - } - public function getInstanceTemplate() - { - return $this->instanceTemplate; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setOldInstanceTemplate($oldInstanceTemplate) - { - $this->oldInstanceTemplate = $oldInstanceTemplate; - } - public function getOldInstanceTemplate() - { - return $this->oldInstanceTemplate; - } - /** - * @param Google_Service_Replicapoolupdater_RollingUpdatePolicy - */ - public function setPolicy(Google_Service_Replicapoolupdater_RollingUpdatePolicy $policy) - { - $this->policy = $policy; - } - /** - * @return Google_Service_Replicapoolupdater_RollingUpdatePolicy - */ - public function getPolicy() - { - return $this->policy; - } - public function setProgress($progress) - { - $this->progress = $progress; - } - public function getProgress() - { - return $this->progress; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setStatusMessage($statusMessage) - { - $this->statusMessage = $statusMessage; - } - public function getStatusMessage() - { - return $this->statusMessage; - } - public function setUser($user) - { - $this->user = $user; - } - public function getUser() - { - return $this->user; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapoolupdater/RollingUpdateError.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapoolupdater/RollingUpdateError.php deleted file mode 100644 index b544a706..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapoolupdater/RollingUpdateError.php +++ /dev/null @@ -1,38 +0,0 @@ -errors = $errors; - } - /** - * @return Google_Service_Replicapoolupdater_RollingUpdateErrorErrors - */ - public function getErrors() - { - return $this->errors; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapoolupdater/RollingUpdateErrorErrors.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapoolupdater/RollingUpdateErrorErrors.php deleted file mode 100644 index 46c537a9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapoolupdater/RollingUpdateErrorErrors.php +++ /dev/null @@ -1,48 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapoolupdater/RollingUpdateList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapoolupdater/RollingUpdateList.php deleted file mode 100644 index 9920f4ee..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapoolupdater/RollingUpdateList.php +++ /dev/null @@ -1,65 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Replicapoolupdater_RollingUpdate - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapoolupdater/RollingUpdatePolicy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapoolupdater/RollingUpdatePolicy.php deleted file mode 100644 index ad731f5c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Replicapoolupdater/RollingUpdatePolicy.php +++ /dev/null @@ -1,66 +0,0 @@ -autoPauseAfterInstances = $autoPauseAfterInstances; - } - public function getAutoPauseAfterInstances() - { - return $this->autoPauseAfterInstances; - } - public function setInstanceStartupTimeoutSec($instanceStartupTimeoutSec) - { - $this->instanceStartupTimeoutSec = $instanceStartupTimeoutSec; - } - public function getInstanceStartupTimeoutSec() - { - return $this->instanceStartupTimeoutSec; - } - public function setMaxNumConcurrentInstances($maxNumConcurrentInstances) - { - $this->maxNumConcurrentInstances = $maxNumConcurrentInstances; - } - public function getMaxNumConcurrentInstances() - { - return $this->maxNumConcurrentInstances; - } - public function setMaxNumFailedInstances($maxNumFailedInstances) - { - $this->maxNumFailedInstances = $maxNumFailedInstances; - } - public function getMaxNumFailedInstances() - { - return $this->maxNumFailedInstances; - } - public function setMinInstanceUpdateTimeSec($minInstanceUpdateTimeSec) - { - $this->minInstanceUpdateTimeSec = $minInstanceUpdateTimeSec; - } - public function getMinInstanceUpdateTimeSec() - { - return $this->minInstanceUpdateTimeSec; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reportcard.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reportcard.php deleted file mode 100644 index 9ea38843..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reportcard.php +++ /dev/null @@ -1,196 +0,0 @@ - - * Reportcard is an internal tool for serving non-critical notices to engineers - * and application developers.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Reportcard extends Google_Service -{ - - - public $mutes; - public $notices; - - /** - * Constructs the internal representation of the Reportcard service. - * - * @param Google_Client $client - */ - public function __construct(Google_Client $client) - { - parent::__construct($client); - $this->rootUrl = 'https://www.googleapis.com/'; - $this->servicePath = 'reportcard/v1/'; - $this->version = 'v1'; - $this->serviceName = 'reportcard'; - - $this->mutes = new Google_Service_Reportcard_Resource_Mutes( - $this, - $this->serviceName, - 'mutes', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'mutes/{mutesId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'mutesId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'mutes/{mutesId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'mutesId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'mutes', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'list' => array( - 'path' => 'mutes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'consumer' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'groupKey' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sourceKey' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'supplier' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'mutes/{mutesId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'mutesId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'mutes/{mutesId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'mutesId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->notices = new Google_Service_Reportcard_Resource_Notices( - $this, - $this->serviceName, - 'notices', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'notices/{noticesId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'noticesId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'notices/{noticesId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'noticesId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'notices', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'list' => array( - 'path' => 'notices', - 'httpMethod' => 'GET', - 'parameters' => array( - 'consumer' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'showMuted' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'patch' => array( - 'path' => 'notices/{noticesId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'noticesId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'notices/{noticesId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'noticesId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reportcard/Mute.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reportcard/Mute.php deleted file mode 100644 index 298a383a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reportcard/Mute.php +++ /dev/null @@ -1,140 +0,0 @@ -consumer = $consumer; - } - public function getConsumer() - { - return $this->consumer; - } - public function setCreatedBy($createdBy) - { - $this->createdBy = $createdBy; - } - public function getCreatedBy() - { - return $this->createdBy; - } - public function setCreationTimeMs($creationTimeMs) - { - $this->creationTimeMs = $creationTimeMs; - } - public function getCreationTimeMs() - { - return $this->creationTimeMs; - } - public function setCreator($creator) - { - $this->creator = $creator; - } - public function getCreator() - { - return $this->creator; - } - public function setExpiryTimeMs($expiryTimeMs) - { - $this->expiryTimeMs = $expiryTimeMs; - } - public function getExpiryTimeMs() - { - return $this->expiryTimeMs; - } - public function setGroupKey($groupKey) - { - $this->groupKey = $groupKey; - } - public function getGroupKey() - { - return $this->groupKey; - } - 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 setReason($reason) - { - $this->reason = $reason; - } - public function getReason() - { - return $this->reason; - } - public function setSourceKey($sourceKey) - { - $this->sourceKey = $sourceKey; - } - public function getSourceKey() - { - return $this->sourceKey; - } - public function setTag($tag) - { - $this->tag = $tag; - } - public function getTag() - { - return $this->tag; - } - public function setTarget(Google_Service_Reportcard_Target $target) - { - $this->target = $target; - } - public function getTarget() - { - return $this->target; - } - public function setText($text) - { - $this->text = $text; - } - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reportcard/MutesListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reportcard/MutesListResponse.php deleted file mode 100644 index e89cc7fe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reportcard/MutesListResponse.php +++ /dev/null @@ -1,41 +0,0 @@ -items = $items; - } - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reportcard/Notice.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reportcard/Notice.php deleted file mode 100644 index 128bc1a5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reportcard/Notice.php +++ /dev/null @@ -1,203 +0,0 @@ -category = $category; - } - public function getCategory() - { - return $this->category; - } - public function setConsumer($consumer) - { - $this->consumer = $consumer; - } - public function getConsumer() - { - return $this->consumer; - } - public function setCreator($creator) - { - $this->creator = $creator; - } - public function getCreator() - { - return $this->creator; - } - public function setDashboardUrl($dashboardUrl) - { - $this->dashboardUrl = $dashboardUrl; - } - public function getDashboardUrl() - { - return $this->dashboardUrl; - } - public function setDocumentationUrl($documentationUrl) - { - $this->documentationUrl = $documentationUrl; - } - public function getDocumentationUrl() - { - return $this->documentationUrl; - } - public function setGroupKey($groupKey) - { - $this->groupKey = $groupKey; - } - public function getGroupKey() - { - return $this->groupKey; - } - public function setGroupName($groupName) - { - $this->groupName = $groupName; - } - public function getGroupName() - { - return $this->groupName; - } - 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 setLongDescription($longDescription) - { - $this->longDescription = $longDescription; - } - public function getLongDescription() - { - return $this->longDescription; - } - public function setLongDescriptionType($longDescriptionType) - { - $this->longDescriptionType = $longDescriptionType; - } - public function getLongDescriptionType() - { - return $this->longDescriptionType; - } - public function setMuteId($muteId) - { - $this->muteId = $muteId; - } - public function getMuteId() - { - return $this->muteId; - } - public function setPostingTask($postingTask) - { - $this->postingTask = $postingTask; - } - public function getPostingTask() - { - return $this->postingTask; - } - public function setPostingTimeMs($postingTimeMs) - { - $this->postingTimeMs = $postingTimeMs; - } - public function getPostingTimeMs() - { - return $this->postingTimeMs; - } - public function setScore($score) - { - $this->score = $score; - } - public function getScore() - { - return $this->score; - } - public function setShortDescription($shortDescription) - { - $this->shortDescription = $shortDescription; - } - public function getShortDescription() - { - return $this->shortDescription; - } - public function setSourceKey($sourceKey) - { - $this->sourceKey = $sourceKey; - } - public function getSourceKey() - { - return $this->sourceKey; - } - public function setSourceName($sourceName) - { - $this->sourceName = $sourceName; - } - public function getSourceName() - { - return $this->sourceName; - } - public function setTag($tag) - { - $this->tag = $tag; - } - public function getTag() - { - return $this->tag; - } - public function setTarget($target) - { - $this->target = $target; - } - public function getTarget() - { - return $this->target; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reportcard/NoticesListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reportcard/NoticesListResponse.php deleted file mode 100644 index 4965f52d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reportcard/NoticesListResponse.php +++ /dev/null @@ -1,41 +0,0 @@ -items = $items; - } - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reportcard/Resource/Mutes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reportcard/Resource/Mutes.php deleted file mode 100644 index 8c10a7f2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reportcard/Resource/Mutes.php +++ /dev/null @@ -1,114 +0,0 @@ - - * $reportcardService = new Google_Service_Reportcard(...); - * $mutes = $reportcardService->mutes; - * - */ -class Google_Service_Reportcard_Resource_Mutes extends Google_Service_Resource -{ - /** - * Deletes a Mute. (mutes.delete) - * - * @param string $mutesId The Mute id. - * @param array $optParams Optional parameters. - */ - public function delete($mutesId, $optParams = array()) - { - $params = array('mutesId' => $mutesId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Gets a Mute by id. (mutes.get) - * - * @param string $mutesId The Mute id. - * @param array $optParams Optional parameters. - * @return Google_Service_Reportcard_Mute - */ - public function get($mutesId, $optParams = array()) - { - $params = array('mutesId' => $mutesId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Reportcard_Mute"); - } - /** - * Inserts a new Mute. (mutes.insert) - * - * @param Google_Service_Reportcard_Mute $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Reportcard_Mute - */ - public function insert(Google_Service_Reportcard_Mute $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Reportcard_Mute"); - } - /** - * Returns a list of Mutes, maybe filtering by 'consumer' or 'groupKey', - * 'sourceKey' and 'supplier'. (mutes.listMutes) - * - * @param array $optParams Optional parameters. - * - * @opt_param string consumer Only return Mutes for this consumer - * @opt_param string groupKey Only return Mutes created with this group_key. - * Supplier and source_key must also be set. - * @opt_param string sourceKey Only return Mutes created with this source_key. - * Supplier must also be set. - * @opt_param string supplier Only return Mutes created by this supplier. - * @return Google_Service_Reportcard_MutesListResponse - */ - public function listMutes($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Reportcard_MutesListResponse"); - } - /** - * Updates an existing Mute. This method supports patch semantics. (mutes.patch) - * - * @param string $mutesId The Mute id. - * @param Google_Service_Reportcard_Mute $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Reportcard_Mute - */ - public function patch($mutesId, Google_Service_Reportcard_Mute $postBody, $optParams = array()) - { - $params = array('mutesId' => $mutesId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Reportcard_Mute"); - } - /** - * Updates an existing Mute. (mutes.update) - * - * @param string $mutesId The Mute id. - * @param Google_Service_Reportcard_Mute $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Reportcard_Mute - */ - public function update($mutesId, Google_Service_Reportcard_Mute $postBody, $optParams = array()) - { - $params = array('mutesId' => $mutesId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Reportcard_Mute"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reportcard/Resource/Notices.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reportcard/Resource/Notices.php deleted file mode 100644 index 66dea6ee..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reportcard/Resource/Notices.php +++ /dev/null @@ -1,111 +0,0 @@ - - * $reportcardService = new Google_Service_Reportcard(...); - * $notices = $reportcardService->notices; - * - */ -class Google_Service_Reportcard_Resource_Notices extends Google_Service_Resource -{ - /** - * Deletes a Notice. (notices.delete) - * - * @param string $noticesId The Notice id. - * @param array $optParams Optional parameters. - */ - public function delete($noticesId, $optParams = array()) - { - $params = array('noticesId' => $noticesId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Gets a Notice by id. (notices.get) - * - * @param string $noticesId The Notice id. - * @param array $optParams Optional parameters. - * @return Google_Service_Reportcard_Notice - */ - public function get($noticesId, $optParams = array()) - { - $params = array('noticesId' => $noticesId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Reportcard_Notice"); - } - /** - * Inserts a new Notice. (notices.insert) - * - * @param Google_Service_Reportcard_Notice $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Reportcard_Notice - */ - public function insert(Google_Service_Reportcard_Notice $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Reportcard_Notice"); - } - /** - * Retrieves a list of Notices, filtering by 'consumer' and maybe hiding muted - * ones. (notices.listNotices) - * - * @param array $optParams Optional parameters. - * - * @opt_param string consumer Only return Notices for these consumers - * @opt_param bool showMuted If set, show Notices that have been muted. - * @return Google_Service_Reportcard_NoticesListResponse - */ - public function listNotices($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Reportcard_NoticesListResponse"); - } - /** - * Updates an existing Notice. This method supports patch semantics. - * (notices.patch) - * - * @param string $noticesId The Notice id. - * @param Google_Service_Reportcard_Notice $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Reportcard_Notice - */ - public function patch($noticesId, Google_Service_Reportcard_Notice $postBody, $optParams = array()) - { - $params = array('noticesId' => $noticesId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Reportcard_Notice"); - } - /** - * Updates an existing Notice. (notices.update) - * - * @param string $noticesId The Notice id. - * @param Google_Service_Reportcard_Notice $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Reportcard_Notice - */ - public function update($noticesId, Google_Service_Reportcard_Notice $postBody, $optParams = array()) - { - $params = array('noticesId' => $noticesId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Reportcard_Notice"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reportcard/Target.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reportcard/Target.php deleted file mode 100644 index 48007dac..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reportcard/Target.php +++ /dev/null @@ -1,84 +0,0 @@ -documentationUrl = $documentationUrl; - } - public function getDocumentationUrl() - { - return $this->documentationUrl; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setMonitoringUrl($monitoringUrl) - { - $this->monitoringUrl = $monitoringUrl; - } - public function getMonitoringUrl() - { - return $this->monitoringUrl; - } - public function setNote($note) - { - $this->note = $note; - } - public function getNote() - { - return $this->note; - } - public function setReportUrl($reportUrl) - { - $this->reportUrl = $reportUrl; - } - public function getReportUrl() - { - return $this->reportUrl; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports.php deleted file mode 100644 index 72b8d5a5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports.php +++ /dev/null @@ -1,320 +0,0 @@ - - * Fetches reports for the administrators of G Suite customers about the usage, - * collaboration, security, and risk for their users.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Reports extends Google_Service -{ - /** View audit reports for your G Suite domain. */ - const ADMIN_REPORTS_AUDIT_READONLY = - "https://www.googleapis.com/auth/admin.reports.audit.readonly"; - /** View usage reports for your G Suite domain. */ - const ADMIN_REPORTS_USAGE_READONLY = - "https://www.googleapis.com/auth/admin.reports.usage.readonly"; - - public $activities; - public $channels; - public $customerUsageReports; - public $entityUsageReports; - public $userUsageReport; - - /** - * Constructs the internal representation of the Reports service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://www.googleapis.com/'; - $this->servicePath = 'admin/reports/v1/'; - $this->batchPath = 'batch/admin/reports_v1'; - $this->version = 'reports_v1'; - $this->serviceName = 'admin'; - - $this->activities = new Google_Service_Reports_Resource_Activities( - $this, - $this->serviceName, - 'activities', - array( - 'methods' => array( - 'list' => array( - 'path' => 'activity/users/{userKey}/applications/{applicationName}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'applicationName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'actorIpAddress' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'customerId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'endTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'eventName' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'filters' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orgUnitID' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'startTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'watch' => array( - 'path' => 'activity/users/{userKey}/applications/{applicationName}/watch', - 'httpMethod' => 'POST', - 'parameters' => array( - 'userKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'applicationName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'actorIpAddress' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'customerId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'endTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'eventName' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'filters' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orgUnitID' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'startTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->channels = new Google_Service_Reports_Resource_Channels( - $this, - $this->serviceName, - 'channels', - array( - 'methods' => array( - 'stop' => array( - 'path' => '/admin/reports_v1/channels/stop', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->customerUsageReports = new Google_Service_Reports_Resource_CustomerUsageReports( - $this, - $this->serviceName, - 'customerUsageReports', - array( - 'methods' => array( - 'get' => array( - 'path' => 'usage/dates/{date}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'date' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'customerId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'parameters' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->entityUsageReports = new Google_Service_Reports_Resource_EntityUsageReports( - $this, - $this->serviceName, - 'entityUsageReports', - array( - 'methods' => array( - 'get' => array( - 'path' => 'usage/{entityType}/{entityKey}/dates/{date}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'entityType' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'entityKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'date' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'customerId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'filters' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'parameters' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->userUsageReport = new Google_Service_Reports_Resource_UserUsageReport( - $this, - $this->serviceName, - 'userUsageReport', - array( - 'methods' => array( - 'get' => array( - 'path' => 'usage/users/{userKey}/dates/{date}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userKey' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'date' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'customerId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'filters' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orgUnitID' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'parameters' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/Activities.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/Activities.php deleted file mode 100644 index b1cc2548..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/Activities.php +++ /dev/null @@ -1,65 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_Reports_Activity - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Reports_Activity - */ - public function getItems() - { - return $this->items; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/Activity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/Activity.php deleted file mode 100644 index 4189a7fc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/Activity.php +++ /dev/null @@ -1,106 +0,0 @@ -actor = $actor; - } - /** - * @return Google_Service_Reports_ActivityActor - */ - public function getActor() - { - return $this->actor; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_Reports_ActivityEvents - */ - public function setEvents($events) - { - $this->events = $events; - } - /** - * @return Google_Service_Reports_ActivityEvents - */ - public function getEvents() - { - return $this->events; - } - /** - * @param Google_Service_Reports_ActivityId - */ - public function setId(Google_Service_Reports_ActivityId $id) - { - $this->id = $id; - } - /** - * @return Google_Service_Reports_ActivityId - */ - public function getId() - { - return $this->id; - } - public function setIpAddress($ipAddress) - { - $this->ipAddress = $ipAddress; - } - public function getIpAddress() - { - return $this->ipAddress; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setOwnerDomain($ownerDomain) - { - $this->ownerDomain = $ownerDomain; - } - public function getOwnerDomain() - { - return $this->ownerDomain; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/ActivityActor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/ActivityActor.php deleted file mode 100644 index 598327b8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/ActivityActor.php +++ /dev/null @@ -1,57 +0,0 @@ -callerType = $callerType; - } - public function getCallerType() - { - return $this->callerType; - } - public function setEmail($email) - { - $this->email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setKey($key) - { - $this->key = $key; - } - public function getKey() - { - return $this->key; - } - public function setProfileId($profileId) - { - $this->profileId = $profileId; - } - public function getProfileId() - { - return $this->profileId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/ActivityEvents.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/ActivityEvents.php deleted file mode 100644 index 79878995..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/ActivityEvents.php +++ /dev/null @@ -1,56 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Reports_ActivityEventsParameters - */ - public function setParameters($parameters) - { - $this->parameters = $parameters; - } - /** - * @return Google_Service_Reports_ActivityEventsParameters - */ - public function getParameters() - { - return $this->parameters; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/ActivityEventsParameters.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/ActivityEventsParameters.php deleted file mode 100644 index a70f8321..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/ActivityEventsParameters.php +++ /dev/null @@ -1,108 +0,0 @@ -boolValue = $boolValue; - } - public function getBoolValue() - { - return $this->boolValue; - } - public function setIntValue($intValue) - { - $this->intValue = $intValue; - } - public function getIntValue() - { - return $this->intValue; - } - /** - * @param Google_Service_Reports_ActivityEventsParametersMessageValue - */ - public function setMessageValue(Google_Service_Reports_ActivityEventsParametersMessageValue $messageValue) - { - $this->messageValue = $messageValue; - } - /** - * @return Google_Service_Reports_ActivityEventsParametersMessageValue - */ - public function getMessageValue() - { - return $this->messageValue; - } - public function setMultiIntValue($multiIntValue) - { - $this->multiIntValue = $multiIntValue; - } - public function getMultiIntValue() - { - return $this->multiIntValue; - } - /** - * @param Google_Service_Reports_ActivityEventsParametersMultiMessageValue - */ - public function setMultiMessageValue($multiMessageValue) - { - $this->multiMessageValue = $multiMessageValue; - } - /** - * @return Google_Service_Reports_ActivityEventsParametersMultiMessageValue - */ - public function getMultiMessageValue() - { - return $this->multiMessageValue; - } - public function setMultiValue($multiValue) - { - $this->multiValue = $multiValue; - } - public function getMultiValue() - { - return $this->multiValue; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/ActivityEventsParametersMessageValue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/ActivityEventsParametersMessageValue.php deleted file mode 100644 index 15fc93c7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/ActivityEventsParametersMessageValue.php +++ /dev/null @@ -1,38 +0,0 @@ -parameter = $parameter; - } - /** - * @return Google_Service_Reports_NestedParameter - */ - public function getParameter() - { - return $this->parameter; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/ActivityEventsParametersMultiMessageValue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/ActivityEventsParametersMultiMessageValue.php deleted file mode 100644 index 8609a1b9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/ActivityEventsParametersMultiMessageValue.php +++ /dev/null @@ -1,38 +0,0 @@ -parameter = $parameter; - } - /** - * @return Google_Service_Reports_NestedParameter - */ - public function getParameter() - { - return $this->parameter; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/ActivityId.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/ActivityId.php deleted file mode 100644 index 104a2350..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/ActivityId.php +++ /dev/null @@ -1,57 +0,0 @@ -applicationName = $applicationName; - } - public function getApplicationName() - { - return $this->applicationName; - } - public function setCustomerId($customerId) - { - $this->customerId = $customerId; - } - public function getCustomerId() - { - return $this->customerId; - } - public function setTime($time) - { - $this->time = $time; - } - public function getTime() - { - return $this->time; - } - public function setUniqueQualifier($uniqueQualifier) - { - $this->uniqueQualifier = $uniqueQualifier; - } - public function getUniqueQualifier() - { - return $this->uniqueQualifier; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/Channel.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/Channel.php deleted file mode 100644 index 7c4ca63a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/Channel.php +++ /dev/null @@ -1,111 +0,0 @@ -address = $address; - } - public function getAddress() - { - return $this->address; - } - public function setExpiration($expiration) - { - $this->expiration = $expiration; - } - public function getExpiration() - { - return $this->expiration; - } - 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 setParams($params) - { - $this->params = $params; - } - public function getParams() - { - return $this->params; - } - public function setPayload($payload) - { - $this->payload = $payload; - } - public function getPayload() - { - return $this->payload; - } - public function setResourceId($resourceId) - { - $this->resourceId = $resourceId; - } - public function getResourceId() - { - return $this->resourceId; - } - public function setResourceUri($resourceUri) - { - $this->resourceUri = $resourceUri; - } - public function getResourceUri() - { - return $this->resourceUri; - } - public function setToken($token) - { - $this->token = $token; - } - public function getToken() - { - return $this->token; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/NestedParameter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/NestedParameter.php deleted file mode 100644 index ec861808..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/NestedParameter.php +++ /dev/null @@ -1,85 +0,0 @@ -boolValue = $boolValue; - } - public function getBoolValue() - { - return $this->boolValue; - } - public function setIntValue($intValue) - { - $this->intValue = $intValue; - } - public function getIntValue() - { - return $this->intValue; - } - public function setMultiBoolValue($multiBoolValue) - { - $this->multiBoolValue = $multiBoolValue; - } - public function getMultiBoolValue() - { - return $this->multiBoolValue; - } - public function setMultiIntValue($multiIntValue) - { - $this->multiIntValue = $multiIntValue; - } - public function getMultiIntValue() - { - return $this->multiIntValue; - } - public function setMultiValue($multiValue) - { - $this->multiValue = $multiValue; - } - public function getMultiValue() - { - return $this->multiValue; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/Resource/Activities.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/Resource/Activities.php deleted file mode 100644 index ce1a51a8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/Resource/Activities.php +++ /dev/null @@ -1,237 +0,0 @@ - - * $adminService = new Google_Service_Reports(...); - * $activities = $adminService->activities; - * - */ -class Google_Service_Reports_Resource_Activities extends Google_Service_Resource -{ - /** - * Retrieves a list of activities for a specific customer's account and - * application such as the Admin console application or the Google Drive - * application. For more information, see the guides for administrator and - * Google Drive activity reports. For more information about the activity - * report's parameters, see the activity parameters reference guides. - * (activities.listActivities) - * - * @param string $userKey Represents the profile ID or the user email for which - * the data should be filtered. Can be all for all information, or userKey for a - * user's unique G Suite profile ID or their primary email address. - * @param string $applicationName Application name for which the events are to - * be retrieved. - * @param array $optParams Optional parameters. - * - * @opt_param string actorIpAddress The Internet Protocol (IP) Address of host - * where the event was performed. This is an additional way to filter a report's - * summary using the IP address of the user whose activity is being reported. - * This IP address may or may not reflect the user's physical location. For - * example, the IP address can be the user's proxy server's address or a virtual - * private network (VPN) address. This parameter supports both IPv4 and IPv6 - * address versions. - * @opt_param string customerId The unique ID of the customer to retrieve data - * for. - * @opt_param string endTime Sets the end of the range of time shown in the - * report. The date is in the RFC 3339 format, for example - * 2010-10-28T10:26:35.000Z. The default value is the approximate time of the - * API request. An API report has three basic time concepts: - Date of the API's - * request for a report: When the API created and retrieved the report. - - * Report's start time: The beginning of the timespan shown in the report. The - * startTime must be before the endTime (if specified) and the current time when - * the request is made, or the API returns an error. - Report's end time: The - * end of the timespan shown in the report. For example, the timespan of events - * summarized in a report can start in April and end in May. The report itself - * can be requested in August. If the endTime is not specified, the report - * returns all activities from the startTime until the current time or the most - * recent 180 days if the startTime is more than 180 days in the past. - * @opt_param string eventName The name of the event being queried by the API. - * Each eventName is related to a specific G Suite service or feature which the - * API organizes into types of events. An example is the Google Calendar events - * in the Admin console application's reports. The Calendar Settings type - * structure has all of the Calendar eventName activities reported by the API. - * When an administrator changes a Calendar setting, the API reports this - * activity in the Calendar Settings type and eventName parameters. For more - * information about eventName query strings and parameters, see the list of - * event names for various applications above in applicationName. - * @opt_param string filters The filters query string is a comma-separated list. - * The list is composed of event parameters that are manipulated by relational - * operators. Event parameters are in the form [parameter1 name][relational - * operator][parameter1 value],[parameter2 name][relational operator][parameter2 - * value],... These event parameters are associated with a specific eventName. - * An empty report is returned if the filtered request's parameter does not - * belong to the eventName. For more information about eventName parameters, see - * the list of event names for various applications above in applicationName. - * - * In the following Admin Activity example, the <> operator is URL-encoded in - * the request's query string (%3C%3E): GET...=CHANGE_CALENDAR_SETTING - * =NEW_VALUE%3C%3EREAD_ONLY_ACCESS - * - * In the following Drive example, the list can be a view or edit event's doc_id - * parameter with a value that is manipulated by an 'equal to' (==) or 'not - * equal to' (<>) relational operator. In the first example, the report returns - * each edited document's doc_id. In the second example, the report returns each - * viewed document's doc_id that equals the value 12345 and does not return any - * viewed document's which have a doc_id value of 98765. The <> operator is URL- - * encoded in the request's query string (%3C%3E): - * - * GET...=edit=doc_id GET...=view=doc_id==12345,doc_id%3C%3E98765 - * - * The relational operators include: - == - 'equal to'. - <> - 'not equal - * to'. It is URL-encoded (%3C%3E). - < - 'less than'. It is URL-encoded (%3C). - * - <= - 'less than or equal to'. It is URL-encoded (%3C=). - > - 'greater - * than'. It is URL-encoded (%3E). - >= - 'greater than or equal to'. It is - * URL-encoded (%3E=). Note: The API doesn't accept multiple values of a - * parameter. If a particular parameter is supplied more than once in the API - * request, the API only accepts the last value of that request parameter. In - * addition, if an invalid request parameter is supplied in the API request, the - * API ignores that request parameter and returns the response corresponding to - * the remaining valid request parameters. If no parameters are requested, all - * parameters are returned. - * @opt_param int maxResults Determines how many activity records are shown on - * each response page. For example, if the request sets maxResults=1 and the - * report has two activities, the report has two pages. The response's - * nextPageToken property has the token to the second page. The maxResults query - * string is optional in the request. The default value is 1000. - * @opt_param string orgUnitID ID of the organizational unit to report on. - * Activity records will be shown only for users who belong to the specified - * organizational unit. Data before Dec 17, 2018 doesn't appear in the filtered - * results. - * @opt_param string pageToken The token to specify next page. A report with - * multiple pages has a nextPageToken property in the response. In your follow- - * on request getting the next page of the report, enter the nextPageToken value - * in the pageToken query string. - * @opt_param string startTime Sets the beginning of the range of time shown in - * the report. The date is in the RFC 3339 format, for example - * 2010-10-28T10:26:35.000Z. The report returns all activities from startTime - * until endTime. The startTime must be before the endTime (if specified) and - * the current time when the request is made, or the API returns an error. - * @return Google_Service_Reports_Activities - */ - public function listActivities($userKey, $applicationName, $optParams = array()) - { - $params = array('userKey' => $userKey, 'applicationName' => $applicationName); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Reports_Activities"); - } - /** - * Start receiving notifications for account activities. For more information, - * see Receiving Push Notifications. (activities.watch) - * - * @param string $userKey Represents the profile ID or the user email for which - * the data should be filtered. Can be all for all information, or userKey for a - * user's unique G Suite profile ID or their primary email address. - * @param string $applicationName Application name for which the events are to - * be retrieved. - * @param Google_Service_Reports_Channel $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string actorIpAddress The Internet Protocol (IP) Address of host - * where the event was performed. This is an additional way to filter a report's - * summary using the IP address of the user whose activity is being reported. - * This IP address may or may not reflect the user's physical location. For - * example, the IP address can be the user's proxy server's address or a virtual - * private network (VPN) address. This parameter supports both IPv4 and IPv6 - * address versions. - * @opt_param string customerId The unique ID of the customer to retrieve data - * for. - * @opt_param string endTime Sets the end of the range of time shown in the - * report. The date is in the RFC 3339 format, for example - * 2010-10-28T10:26:35.000Z. The default value is the approximate time of the - * API request. An API report has three basic time concepts: - Date of the API's - * request for a report: When the API created and retrieved the report. - - * Report's start time: The beginning of the timespan shown in the report. The - * startTime must be before the endTime (if specified) and the current time when - * the request is made, or the API returns an error. - Report's end time: The - * end of the timespan shown in the report. For example, the timespan of events - * summarized in a report can start in April and end in May. The report itself - * can be requested in August. If the endTime is not specified, the report - * returns all activities from the startTime until the current time or the most - * recent 180 days if the startTime is more than 180 days in the past. - * @opt_param string eventName The name of the event being queried by the API. - * Each eventName is related to a specific G Suite service or feature which the - * API organizes into types of events. An example is the Google Calendar events - * in the Admin console application's reports. The Calendar Settings type - * structure has all of the Calendar eventName activities reported by the API. - * When an administrator changes a Calendar setting, the API reports this - * activity in the Calendar Settings type and eventName parameters. For more - * information about eventName query strings and parameters, see the list of - * event names for various applications above in applicationName. - * @opt_param string filters The filters query string is a comma-separated list. - * The list is composed of event parameters that are manipulated by relational - * operators. Event parameters are in the form [parameter1 name][relational - * operator][parameter1 value],[parameter2 name][relational operator][parameter2 - * value],... These event parameters are associated with a specific eventName. - * An empty report is returned if the filtered request's parameter does not - * belong to the eventName. For more information about eventName parameters, see - * the list of event names for various applications above in applicationName. - * - * In the following Admin Activity example, the <> operator is URL-encoded in - * the request's query string (%3C%3E): GET...=CHANGE_CALENDAR_SETTING - * =NEW_VALUE%3C%3EREAD_ONLY_ACCESS - * - * In the following Drive example, the list can be a view or edit event's doc_id - * parameter with a value that is manipulated by an 'equal to' (==) or 'not - * equal to' (<>) relational operator. In the first example, the report returns - * each edited document's doc_id. In the second example, the report returns each - * viewed document's doc_id that equals the value 12345 and does not return any - * viewed document's which have a doc_id value of 98765. The <> operator is URL- - * encoded in the request's query string (%3C%3E): - * - * GET...=edit=doc_id GET...=view=doc_id==12345,doc_id%3C%3E98765 - * - * The relational operators include: - == - 'equal to'. - <> - 'not equal - * to'. It is URL-encoded (%3C%3E). - < - 'less than'. It is URL-encoded (%3C). - * - <= - 'less than or equal to'. It is URL-encoded (%3C=). - > - 'greater - * than'. It is URL-encoded (%3E). - >= - 'greater than or equal to'. It is - * URL-encoded (%3E=). Note: The API doesn't accept multiple values of a - * parameter. If a particular parameter is supplied more than once in the API - * request, the API only accepts the last value of that request parameter. In - * addition, if an invalid request parameter is supplied in the API request, the - * API ignores that request parameter and returns the response corresponding to - * the remaining valid request parameters. If no parameters are requested, all - * parameters are returned. - * @opt_param int maxResults Determines how many activity records are shown on - * each response page. For example, if the request sets maxResults=1 and the - * report has two activities, the report has two pages. The response's - * nextPageToken property has the token to the second page. The maxResults query - * string is optional in the request. The default value is 1000. - * @opt_param string orgUnitID ID of the organizational unit to report on. - * Activity records will be shown only for users who belong to the specified - * organizational unit. Data before Dec 17, 2018 doesn't appear in the filtered - * results. - * @opt_param string pageToken The token to specify next page. A report with - * multiple pages has a nextPageToken property in the response. In your follow- - * on request getting the next page of the report, enter the nextPageToken value - * in the pageToken query string. - * @opt_param string startTime Sets the beginning of the range of time shown in - * the report. The date is in the RFC 3339 format, for example - * 2010-10-28T10:26:35.000Z. The report returns all activities from startTime - * until endTime. The startTime must be before the endTime (if specified) and - * the current time when the request is made, or the API returns an error. - * @return Google_Service_Reports_Channel - */ - public function watch($userKey, $applicationName, Google_Service_Reports_Channel $postBody, $optParams = array()) - { - $params = array('userKey' => $userKey, 'applicationName' => $applicationName, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('watch', array($params), "Google_Service_Reports_Channel"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/Resource/Channels.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/Resource/Channels.php deleted file mode 100644 index 5a4749f6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/Resource/Channels.php +++ /dev/null @@ -1,40 +0,0 @@ - - * $adminService = new Google_Service_Reports(...); - * $channels = $adminService->channels; - * - */ -class Google_Service_Reports_Resource_Channels extends Google_Service_Resource -{ - /** - * Stop watching resources through this channel (channels.stop) - * - * @param Google_Service_Reports_Channel $postBody - * @param array $optParams Optional parameters. - */ - public function stop(Google_Service_Reports_Channel $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('stop', array($params)); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/Resource/CustomerUsageReports.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/Resource/CustomerUsageReports.php deleted file mode 100644 index 25eaef47..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/Resource/CustomerUsageReports.php +++ /dev/null @@ -1,69 +0,0 @@ - - * $adminService = new Google_Service_Reports(...); - * $customerUsageReports = $adminService->customerUsageReports; - * - */ -class Google_Service_Reports_Resource_CustomerUsageReports extends Google_Service_Resource -{ - /** - * Retrieves a report which is a collection of properties and statistics for a - * specific customer's account. For more information, see the Customers Usage - * Report guide. For more information about the customer report's parameters, - * see the Customers Usage parameters reference guides. - * (customerUsageReports.get) - * - * @param string $date Represents the date the usage occurred. The timestamp is - * in the ISO 8601 format, yyyy-mm-dd. We recommend you use your account's time - * zone for this. - * @param array $optParams Optional parameters. - * - * @opt_param string customerId The unique ID of the customer to retrieve data - * for. - * @opt_param string pageToken Token to specify next page. A report with - * multiple pages has a nextPageToken property in the response. For your follow- - * on requests getting all of the report's pages, enter the nextPageToken value - * in the pageToken query string. - * @opt_param string parameters The parameters query string is a comma-separated - * list of event parameters that refine a report's results. The parameter is - * associated with a specific application. The application values for the - * Customers usage report include accounts, app_maker, apps_scripts, calendar, - * classroom, cros, docs, gmail, gplus, device_management, meet, and sites. A - * parameters query string is in the CSV form of app_name1:param_name1, - * app_name2:param_name2. Note: The API doesn't accept multiple values of a - * parameter. If a particular parameter is supplied more than once in the API - * request, the API only accepts the last value of that request parameter. In - * addition, if an invalid request parameter is supplied in the API request, the - * API ignores that request parameter and returns the response corresponding to - * the remaining valid request parameters. - * - * An example of an invalid request parameter is one that does not belong to the - * application. If no parameters are requested, all parameters are returned. - * @return Google_Service_Reports_UsageReports - */ - public function get($date, $optParams = array()) - { - $params = array('date' => $date); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Reports_UsageReports"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/Resource/EntityUsageReports.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/Resource/EntityUsageReports.php deleted file mode 100644 index 85147279..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/Resource/EntityUsageReports.php +++ /dev/null @@ -1,93 +0,0 @@ - - * $adminService = new Google_Service_Reports(...); - * $entityUsageReports = $adminService->entityUsageReports; - * - */ -class Google_Service_Reports_Resource_EntityUsageReports extends Google_Service_Resource -{ - /** - * Retrieves a report which is a collection of properties and statistics for - * entities used by users within the account. For more information, see the - * Entities Usage Report guide. For more information about the entities report's - * parameters, see the Entities Usage parameters reference guides. - * (entityUsageReports.get) - * - * @param string $entityType Represents the type of entity for the report. - * @param string $entityKey Represents the key of the object to filter the data - * with. - * @param string $date Represents the date the usage occurred. The timestamp is - * in the ISO 8601 format, yyyy-mm-dd. We recommend you use your account's time - * zone for this. - * @param array $optParams Optional parameters. - * - * @opt_param string customerId The unique ID of the customer to retrieve data - * for. - * @opt_param string filters The filters query string is a comma-separated list - * of an application's event parameters where the parameter's value is - * manipulated by a relational operator. The filters query string includes the - * name of the application whose usage is returned in the report. The - * application values for the Entities usage report include accounts, docs, and - * gmail. Filters are in the form [application name]:[parameter name][relational - * operator][parameter value],.... - * - * In this example, the <> 'not equal to' operator is URL-encoded in the - * request's query string (%3C%3E): GET https://www.googleapis.com/admin/reports - * /v1/usage/gplus_communities/all/dates/2017-12-01 - * ?parameters=gplus:community_name,gplus:num_total_members - * =gplus:num_total_members>0 - * - * The relational operators include: - == - 'equal to'. - <> - 'not equal - * to'. It is URL-encoded (%3C%3E). - < - 'less than'. It is URL-encoded (%3C). - * - <= - 'less than or equal to'. It is URL-encoded (%3C=). - > - 'greater - * than'. It is URL-encoded (%3E). - >= - 'greater than or equal to'. It is - * URL-encoded (%3E=). Filters can only be applied to numeric parameters. - * @opt_param string maxResults Determines how many activity records are shown - * on each response page. For example, if the request sets maxResults=1 and the - * report has two activities, the report has two pages. The response's - * nextPageToken property has the token to the second page. - * @opt_param string pageToken Token to specify next page. A report with - * multiple pages has a nextPageToken property in the response. In your follow- - * on request getting the next page of the report, enter the nextPageToken value - * in the pageToken query string. - * @opt_param string parameters The parameters query string is a comma-separated - * list of event parameters that refine a report's results. The parameter is - * associated with a specific application. The application values for the - * Entities usage report are only gplus. A parameter query string is in the CSV - * form of [app_name1:param_name1], [app_name2:param_name2].... Note: The API - * doesn't accept multiple values of a parameter. If a particular parameter is - * supplied more than once in the API request, the API only accepts the last - * value of that request parameter. In addition, if an invalid request parameter - * is supplied in the API request, the API ignores that request parameter and - * returns the response corresponding to the remaining valid request parameters. - * - * An example of an invalid request parameter is one that does not belong to the - * application. If no parameters are requested, all parameters are returned. - * @return Google_Service_Reports_UsageReports - */ - public function get($entityType, $entityKey, $date, $optParams = array()) - { - $params = array('entityType' => $entityType, 'entityKey' => $entityKey, 'date' => $date); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Reports_UsageReports"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/Resource/UserUsageReport.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/Resource/UserUsageReport.php deleted file mode 100644 index c0cd22ab..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/Resource/UserUsageReport.php +++ /dev/null @@ -1,99 +0,0 @@ - - * $adminService = new Google_Service_Reports(...); - * $userUsageReport = $adminService->userUsageReport; - * - */ -class Google_Service_Reports_Resource_UserUsageReport extends Google_Service_Resource -{ - /** - * Retrieves a report which is a collection of properties and statistics for a - * set of users with the account. For more information, see the User Usage - * Report guide. For more information about the user report's parameters, see - * the Users Usage parameters reference guides. (userUsageReport.get) - * - * @param string $userKey Represents the profile ID or the user email for which - * the data should be filtered. Can be all for all information, or userKey for a - * user's unique G Suite profile ID or their primary email address. - * @param string $date Represents the date the usage occurred. The timestamp is - * in the ISO 8601 format, yyyy-mm-dd. We recommend you use your account's time - * zone for this. - * @param array $optParams Optional parameters. - * - * @opt_param string customerId The unique ID of the customer to retrieve data - * for. - * @opt_param string filters The filters query string is a comma-separated list - * of an application's event parameters where the parameter's value is - * manipulated by a relational operator. The filters query string includes the - * name of the application whose usage is returned in the report. The - * application values for the Users Usage Report include accounts, docs, and - * gmail. Filters are in the form [application name]:[parameter name][relational - * operator][parameter value],.... - * - * In this example, the <> 'not equal to' operator is URL-encoded in the - * request's query string (%3C%3E): GET - * https://www.googleapis.com/admin/reports/v1/usage/users/all/dates/2013-03-03 - * ?parameters=accounts:last_login_time - * =accounts:last_login_time>2010-10-28T10:26:35.000Z - * - * The relational operators include: - == - 'equal to'. - <> - 'not equal - * to'. It is URL-encoded (%3C%3E). - < - 'less than'. It is URL-encoded (%3C). - * - <= - 'less than or equal to'. It is URL-encoded (%3C=). - > - 'greater - * than'. It is URL-encoded (%3E). - >= - 'greater than or equal to'. It is - * URL-encoded (%3E=). - * @opt_param string maxResults Determines how many activity records are shown - * on each response page. For example, if the request sets maxResults=1 and the - * report has two activities, the report has two pages. The response's - * nextPageToken property has the token to the second page. The maxResults query - * string is optional. - * @opt_param string orgUnitID ID of the organizational unit to report on. User - * activity will be shown only for users who belong to the specified - * organizational unit. Data before Dec 17, 2018 doesn't appear in the filtered - * results. - * @opt_param string pageToken Token to specify next page. A report with - * multiple pages has a nextPageToken property in the response. In your follow- - * on request getting the next page of the report, enter the nextPageToken value - * in the pageToken query string. - * @opt_param string parameters The parameters query string is a comma-separated - * list of event parameters that refine a report's results. The parameter is - * associated with a specific application. The application values for the - * Customers usage report include accounts, app_maker, apps_scripts, calendar, - * classroom, cros, docs, gmail, gplus, device_management, meet, and sites. A - * parameters query string is in the CSV form of app_name1:param_name1, - * app_name2:param_name2. Note: The API doesn't accept multiple values of a - * parameter. If a particular parameter is supplied more than once in the API - * request, the API only accepts the last value of that request parameter. In - * addition, if an invalid request parameter is supplied in the API request, the - * API ignores that request parameter and returns the response corresponding to - * the remaining valid request parameters. - * - * An example of an invalid request parameter is one that does not belong to the - * application. If no parameters are requested, all parameters are returned. - * @return Google_Service_Reports_UsageReports - */ - public function get($userKey, $date, $optParams = array()) - { - $params = array('userKey' => $userKey, 'date' => $date); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Reports_UsageReports"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/UsageReport.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/UsageReport.php deleted file mode 100644 index 386901ca..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/UsageReport.php +++ /dev/null @@ -1,81 +0,0 @@ -date = $date; - } - public function getDate() - { - return $this->date; - } - /** - * @param Google_Service_Reports_UsageReportEntity - */ - public function setEntity(Google_Service_Reports_UsageReportEntity $entity) - { - $this->entity = $entity; - } - /** - * @return Google_Service_Reports_UsageReportEntity - */ - public function getEntity() - { - return $this->entity; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Reports_UsageReportParameters - */ - public function setParameters($parameters) - { - $this->parameters = $parameters; - } - /** - * @return Google_Service_Reports_UsageReportParameters - */ - public function getParameters() - { - return $this->parameters; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/UsageReportEntity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/UsageReportEntity.php deleted file mode 100644 index 0ae0af00..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/UsageReportEntity.php +++ /dev/null @@ -1,66 +0,0 @@ -customerId = $customerId; - } - public function getCustomerId() - { - return $this->customerId; - } - public function setEntityId($entityId) - { - $this->entityId = $entityId; - } - public function getEntityId() - { - return $this->entityId; - } - public function setProfileId($profileId) - { - $this->profileId = $profileId; - } - public function getProfileId() - { - return $this->profileId; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setUserEmail($userEmail) - { - $this->userEmail = $userEmail; - } - public function getUserEmail() - { - return $this->userEmail; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/UsageReportParameters.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/UsageReportParameters.php deleted file mode 100644 index 31c2c69c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/UsageReportParameters.php +++ /dev/null @@ -1,76 +0,0 @@ -boolValue = $boolValue; - } - public function getBoolValue() - { - return $this->boolValue; - } - public function setDatetimeValue($datetimeValue) - { - $this->datetimeValue = $datetimeValue; - } - public function getDatetimeValue() - { - return $this->datetimeValue; - } - public function setIntValue($intValue) - { - $this->intValue = $intValue; - } - public function getIntValue() - { - return $this->intValue; - } - public function setMsgValue($msgValue) - { - $this->msgValue = $msgValue; - } - public function getMsgValue() - { - return $this->msgValue; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setStringValue($stringValue) - { - $this->stringValue = $stringValue; - } - public function getStringValue() - { - return $this->stringValue; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/UsageReports.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/UsageReports.php deleted file mode 100644 index b223ff75..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/UsageReports.php +++ /dev/null @@ -1,81 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - 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_Reports_UsageReport - */ - public function setUsageReports($usageReports) - { - $this->usageReports = $usageReports; - } - /** - * @return Google_Service_Reports_UsageReport - */ - public function getUsageReports() - { - return $this->usageReports; - } - /** - * @param Google_Service_Reports_UsageReportsWarnings - */ - public function setWarnings($warnings) - { - $this->warnings = $warnings; - } - /** - * @return Google_Service_Reports_UsageReportsWarnings - */ - public function getWarnings() - { - return $this->warnings; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/UsageReportsWarnings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/UsageReportsWarnings.php deleted file mode 100644 index 3bb67973..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/UsageReportsWarnings.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Reports_UsageReportsWarningsData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Reports_UsageReportsWarningsData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/UsageReportsWarningsData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/UsageReportsWarningsData.php deleted file mode 100644 index b987d224..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reports/UsageReportsWarningsData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reseller.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reseller.php deleted file mode 100644 index a6f4efc1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reseller.php +++ /dev/null @@ -1,315 +0,0 @@ - - * Creates and manages your customers and their subscriptions.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Reseller extends Google_Service -{ - /** Manage users on your domain. */ - const APPS_ORDER = - "https://www.googleapis.com/auth/apps.order"; - /** Manage users on your domain. */ - const APPS_ORDER_READONLY = - "https://www.googleapis.com/auth/apps.order.readonly"; - - public $customers; - public $resellernotify; - public $subscriptions; - - /** - * Constructs the internal representation of the Reseller service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://www.googleapis.com/'; - $this->servicePath = 'apps/reseller/v1/'; - $this->batchPath = 'batch/reseller/v1'; - $this->version = 'v1'; - $this->serviceName = 'reseller'; - - $this->customers = new Google_Service_Reseller_Resource_Customers( - $this, - $this->serviceName, - 'customers', - array( - 'methods' => array( - 'get' => array( - 'path' => 'customers/{customerId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'customers', - 'httpMethod' => 'POST', - 'parameters' => array( - 'customerAuthToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'customers/{customerId}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'customers/{customerId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->resellernotify = new Google_Service_Reseller_Resource_Resellernotify( - $this, - $this->serviceName, - 'resellernotify', - array( - 'methods' => array( - 'getwatchdetails' => array( - 'path' => 'resellernotify/getwatchdetails', - 'httpMethod' => 'GET', - 'parameters' => array(), - ),'register' => array( - 'path' => 'resellernotify/register', - 'httpMethod' => 'POST', - 'parameters' => array( - 'serviceAccountEmailAddress' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'unregister' => array( - 'path' => 'resellernotify/unregister', - 'httpMethod' => 'POST', - 'parameters' => array( - 'serviceAccountEmailAddress' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->subscriptions = new Google_Service_Reseller_Resource_Subscriptions( - $this, - $this->serviceName, - 'subscriptions', - array( - 'methods' => array( - 'activate' => array( - 'path' => 'customers/{customerId}/subscriptions/{subscriptionId}/activate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'subscriptionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'changePlan' => array( - 'path' => 'customers/{customerId}/subscriptions/{subscriptionId}/changePlan', - 'httpMethod' => 'POST', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'subscriptionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'changeRenewalSettings' => array( - 'path' => 'customers/{customerId}/subscriptions/{subscriptionId}/changeRenewalSettings', - 'httpMethod' => 'POST', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'subscriptionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'changeSeats' => array( - 'path' => 'customers/{customerId}/subscriptions/{subscriptionId}/changeSeats', - 'httpMethod' => 'POST', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'subscriptionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'customers/{customerId}/subscriptions/{subscriptionId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'subscriptionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'deletionType' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'customers/{customerId}/subscriptions/{subscriptionId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'subscriptionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'customers/{customerId}/subscriptions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'customerAuthToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'subscriptions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'customerAuthToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'customerId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'customerNamePrefix' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'startPaidService' => array( - 'path' => 'customers/{customerId}/subscriptions/{subscriptionId}/startPaidService', - 'httpMethod' => 'POST', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'subscriptionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'suspend' => array( - 'path' => 'customers/{customerId}/subscriptions/{subscriptionId}/suspend', - 'httpMethod' => 'POST', - 'parameters' => array( - 'customerId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'subscriptionId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reseller/Address.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reseller/Address.php deleted file mode 100644 index 7f2fbd22..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reseller/Address.php +++ /dev/null @@ -1,111 +0,0 @@ -addressLine1 = $addressLine1; - } - public function getAddressLine1() - { - return $this->addressLine1; - } - public function setAddressLine2($addressLine2) - { - $this->addressLine2 = $addressLine2; - } - public function getAddressLine2() - { - return $this->addressLine2; - } - public function setAddressLine3($addressLine3) - { - $this->addressLine3 = $addressLine3; - } - public function getAddressLine3() - { - return $this->addressLine3; - } - public function setContactName($contactName) - { - $this->contactName = $contactName; - } - public function getContactName() - { - return $this->contactName; - } - public function setCountryCode($countryCode) - { - $this->countryCode = $countryCode; - } - public function getCountryCode() - { - return $this->countryCode; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLocality($locality) - { - $this->locality = $locality; - } - public function getLocality() - { - return $this->locality; - } - public function setOrganizationName($organizationName) - { - $this->organizationName = $organizationName; - } - public function getOrganizationName() - { - return $this->organizationName; - } - public function setPostalCode($postalCode) - { - $this->postalCode = $postalCode; - } - public function getPostalCode() - { - return $this->postalCode; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reseller/ChangePlanRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reseller/ChangePlanRequest.php deleted file mode 100644 index f53fb083..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reseller/ChangePlanRequest.php +++ /dev/null @@ -1,73 +0,0 @@ -dealCode = $dealCode; - } - public function getDealCode() - { - return $this->dealCode; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setPlanName($planName) - { - $this->planName = $planName; - } - public function getPlanName() - { - return $this->planName; - } - public function setPurchaseOrderId($purchaseOrderId) - { - $this->purchaseOrderId = $purchaseOrderId; - } - public function getPurchaseOrderId() - { - return $this->purchaseOrderId; - } - /** - * @param Google_Service_Reseller_Seats - */ - public function setSeats(Google_Service_Reseller_Seats $seats) - { - $this->seats = $seats; - } - /** - * @return Google_Service_Reseller_Seats - */ - public function getSeats() - { - return $this->seats; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reseller/Customer.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reseller/Customer.php deleted file mode 100644 index 93ea4a85..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reseller/Customer.php +++ /dev/null @@ -1,100 +0,0 @@ -alternateEmail = $alternateEmail; - } - public function getAlternateEmail() - { - return $this->alternateEmail; - } - public function setCustomerDomain($customerDomain) - { - $this->customerDomain = $customerDomain; - } - public function getCustomerDomain() - { - return $this->customerDomain; - } - public function setCustomerDomainVerified($customerDomainVerified) - { - $this->customerDomainVerified = $customerDomainVerified; - } - public function getCustomerDomainVerified() - { - return $this->customerDomainVerified; - } - public function setCustomerId($customerId) - { - $this->customerId = $customerId; - } - public function getCustomerId() - { - return $this->customerId; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setPhoneNumber($phoneNumber) - { - $this->phoneNumber = $phoneNumber; - } - public function getPhoneNumber() - { - return $this->phoneNumber; - } - /** - * @param Google_Service_Reseller_Address - */ - public function setPostalAddress(Google_Service_Reseller_Address $postalAddress) - { - $this->postalAddress = $postalAddress; - } - /** - * @return Google_Service_Reseller_Address - */ - public function getPostalAddress() - { - return $this->postalAddress; - } - public function setResourceUiUrl($resourceUiUrl) - { - $this->resourceUiUrl = $resourceUiUrl; - } - public function getResourceUiUrl() - { - return $this->resourceUiUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reseller/RenewalSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reseller/RenewalSettings.php deleted file mode 100644 index b7c7c4d1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reseller/RenewalSettings.php +++ /dev/null @@ -1,39 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setRenewalType($renewalType) - { - $this->renewalType = $renewalType; - } - public function getRenewalType() - { - return $this->renewalType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reseller/ResellernotifyGetwatchdetailsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reseller/ResellernotifyGetwatchdetailsResponse.php deleted file mode 100644 index 6ab0bc30..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reseller/ResellernotifyGetwatchdetailsResponse.php +++ /dev/null @@ -1,40 +0,0 @@ -serviceAccountEmailAddresses = $serviceAccountEmailAddresses; - } - public function getServiceAccountEmailAddresses() - { - return $this->serviceAccountEmailAddresses; - } - public function setTopicName($topicName) - { - $this->topicName = $topicName; - } - public function getTopicName() - { - return $this->topicName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reseller/ResellernotifyResource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reseller/ResellernotifyResource.php deleted file mode 100644 index 4d561264..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reseller/ResellernotifyResource.php +++ /dev/null @@ -1,30 +0,0 @@ -topicName = $topicName; - } - public function getTopicName() - { - return $this->topicName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reseller/Resource/Customers.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reseller/Resource/Customers.php deleted file mode 100644 index c2c42c10..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reseller/Resource/Customers.php +++ /dev/null @@ -1,99 +0,0 @@ - - * $resellerService = new Google_Service_Reseller(...); - * $customers = $resellerService->customers; - * - */ -class Google_Service_Reseller_Resource_Customers extends Google_Service_Resource -{ - /** - * Get a customer account. (customers.get) - * - * @param string $customerId Either the customer's primary domain name or the - * customer's unique identifier. If using the domain name, we do not recommend - * using a customerId as a key for persistent data. If the domain name for a - * customerId is changed, the Google system automatically updates. - * @param array $optParams Optional parameters. - * @return Google_Service_Reseller_Customer - */ - public function get($customerId, $optParams = array()) - { - $params = array('customerId' => $customerId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Reseller_Customer"); - } - /** - * Order a new customer's account. (customers.insert) - * - * @param Google_Service_Reseller_Customer $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string customerAuthToken The customerAuthToken query string is - * required when creating a resold account that transfers a direct customer's - * subscription or transfers another reseller customer's subscription to your - * reseller management. This is a hexadecimal authentication token needed to - * complete the subscription transfer. For more information, see the - * administrator help center. - * @return Google_Service_Reseller_Customer - */ - public function insert(Google_Service_Reseller_Customer $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Reseller_Customer"); - } - /** - * Update a customer account's settings. This method supports patch semantics. - * (customers.patch) - * - * @param string $customerId Either the customer's primary domain name or the - * customer's unique identifier. If using the domain name, we do not recommend - * using a customerId as a key for persistent data. If the domain name for a - * customerId is changed, the Google system automatically updates. - * @param Google_Service_Reseller_Customer $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Reseller_Customer - */ - public function patch($customerId, Google_Service_Reseller_Customer $postBody, $optParams = array()) - { - $params = array('customerId' => $customerId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Reseller_Customer"); - } - /** - * Update a customer account's settings. (customers.update) - * - * @param string $customerId Either the customer's primary domain name or the - * customer's unique identifier. If using the domain name, we do not recommend - * using a customerId as a key for persistent data. If the domain name for a - * customerId is changed, the Google system automatically updates. - * @param Google_Service_Reseller_Customer $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Reseller_Customer - */ - public function update($customerId, Google_Service_Reseller_Customer $postBody, $optParams = array()) - { - $params = array('customerId' => $customerId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Reseller_Customer"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reseller/Resource/Resellernotify.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reseller/Resource/Resellernotify.php deleted file mode 100644 index 9f6aa738..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reseller/Resource/Resellernotify.php +++ /dev/null @@ -1,72 +0,0 @@ - - * $resellerService = new Google_Service_Reseller(...); - * $resellernotify = $resellerService->resellernotify; - * - */ -class Google_Service_Reseller_Resource_Resellernotify extends Google_Service_Resource -{ - /** - * Returns all the details of the watch corresponding to the reseller. - * (resellernotify.getwatchdetails) - * - * @param array $optParams Optional parameters. - * @return Google_Service_Reseller_ResellernotifyGetwatchdetailsResponse - */ - public function getwatchdetails($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('getwatchdetails', array($params), "Google_Service_Reseller_ResellernotifyGetwatchdetailsResponse"); - } - /** - * Registers a Reseller for receiving notifications. (resellernotify.register) - * - * @param array $optParams Optional parameters. - * - * @opt_param string serviceAccountEmailAddress The service account which will - * own the created Cloud-PubSub topic. - * @return Google_Service_Reseller_ResellernotifyResource - */ - public function register($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('register', array($params), "Google_Service_Reseller_ResellernotifyResource"); - } - /** - * Unregisters a Reseller for receiving notifications. - * (resellernotify.unregister) - * - * @param array $optParams Optional parameters. - * - * @opt_param string serviceAccountEmailAddress The service account which owns - * the Cloud-PubSub topic. - * @return Google_Service_Reseller_ResellernotifyResource - */ - public function unregister($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('unregister', array($params), "Google_Service_Reseller_ResellernotifyResource"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reseller/Resource/Subscriptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reseller/Resource/Subscriptions.php deleted file mode 100644 index 38e7dfca..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reseller/Resource/Subscriptions.php +++ /dev/null @@ -1,265 +0,0 @@ - - * $resellerService = new Google_Service_Reseller(...); - * $subscriptions = $resellerService->subscriptions; - * - */ -class Google_Service_Reseller_Resource_Subscriptions extends Google_Service_Resource -{ - /** - * Activates a subscription previously suspended by the reseller - * (subscriptions.activate) - * - * @param string $customerId Either the customer's primary domain name or the - * customer's unique identifier. If using the domain name, we do not recommend - * using a customerId as a key for persistent data. If the domain name for a - * customerId is changed, the Google system automatically updates. - * @param string $subscriptionId This is a required property. The subscriptionId - * is the subscription identifier and is unique for each customer. Since a - * subscriptionId changes when a subscription is updated, we recommend to not - * use this ID as a key for persistent data. And the subscriptionId can be found - * using the retrieve all reseller subscriptions method. - * @param array $optParams Optional parameters. - * @return Google_Service_Reseller_Subscription - */ - public function activate($customerId, $subscriptionId, $optParams = array()) - { - $params = array('customerId' => $customerId, 'subscriptionId' => $subscriptionId); - $params = array_merge($params, $optParams); - return $this->call('activate', array($params), "Google_Service_Reseller_Subscription"); - } - /** - * Update a subscription plan. Use this method to update a plan for a 30-day - * trial or a flexible plan subscription to an annual commitment plan with - * monthly or yearly payments. (subscriptions.changePlan) - * - * @param string $customerId Either the customer's primary domain name or the - * customer's unique identifier. If using the domain name, we do not recommend - * using a customerId as a key for persistent data. If the domain name for a - * customerId is changed, the Google system automatically updates. - * @param string $subscriptionId This is a required property. The subscriptionId - * is the subscription identifier and is unique for each customer. Since a - * subscriptionId changes when a subscription is updated, we recommend to not - * use this ID as a key for persistent data. And the subscriptionId can be found - * using the retrieve all reseller subscriptions method. - * @param Google_Service_Reseller_ChangePlanRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Reseller_Subscription - */ - public function changePlan($customerId, $subscriptionId, Google_Service_Reseller_ChangePlanRequest $postBody, $optParams = array()) - { - $params = array('customerId' => $customerId, 'subscriptionId' => $subscriptionId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('changePlan', array($params), "Google_Service_Reseller_Subscription"); - } - /** - * Update a user license's renewal settings. This is applicable for accounts - * with annual commitment plans only. (subscriptions.changeRenewalSettings) - * - * @param string $customerId Either the customer's primary domain name or the - * customer's unique identifier. If using the domain name, we do not recommend - * using a customerId as a key for persistent data. If the domain name for a - * customerId is changed, the Google system automatically updates. - * @param string $subscriptionId This is a required property. The subscriptionId - * is the subscription identifier and is unique for each customer. Since a - * subscriptionId changes when a subscription is updated, we recommend to not - * use this ID as a key for persistent data. And the subscriptionId can be found - * using the retrieve all reseller subscriptions method. - * @param Google_Service_Reseller_RenewalSettings $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Reseller_Subscription - */ - public function changeRenewalSettings($customerId, $subscriptionId, Google_Service_Reseller_RenewalSettings $postBody, $optParams = array()) - { - $params = array('customerId' => $customerId, 'subscriptionId' => $subscriptionId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('changeRenewalSettings', array($params), "Google_Service_Reseller_Subscription"); - } - /** - * Update a subscription's user license settings. (subscriptions.changeSeats) - * - * @param string $customerId Either the customer's primary domain name or the - * customer's unique identifier. If using the domain name, we do not recommend - * using a customerId as a key for persistent data. If the domain name for a - * customerId is changed, the Google system automatically updates. - * @param string $subscriptionId This is a required property. The subscriptionId - * is the subscription identifier and is unique for each customer. Since a - * subscriptionId changes when a subscription is updated, we recommend to not - * use this ID as a key for persistent data. And the subscriptionId can be found - * using the retrieve all reseller subscriptions method. - * @param Google_Service_Reseller_Seats $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Reseller_Subscription - */ - public function changeSeats($customerId, $subscriptionId, Google_Service_Reseller_Seats $postBody, $optParams = array()) - { - $params = array('customerId' => $customerId, 'subscriptionId' => $subscriptionId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('changeSeats', array($params), "Google_Service_Reseller_Subscription"); - } - /** - * Cancel, suspend, or transfer a subscription to direct. (subscriptions.delete) - * - * @param string $customerId Either the customer's primary domain name or the - * customer's unique identifier. If using the domain name, we do not recommend - * using a customerId as a key for persistent data. If the domain name for a - * customerId is changed, the Google system automatically updates. - * @param string $subscriptionId This is a required property. The subscriptionId - * is the subscription identifier and is unique for each customer. Since a - * subscriptionId changes when a subscription is updated, we recommend to not - * use this ID as a key for persistent data. And the subscriptionId can be found - * using the retrieve all reseller subscriptions method. - * @param string $deletionType The deletionType query string enables the - * cancellation, downgrade, or suspension of a subscription. - * @param array $optParams Optional parameters. - */ - public function delete($customerId, $subscriptionId, $deletionType, $optParams = array()) - { - $params = array('customerId' => $customerId, 'subscriptionId' => $subscriptionId, 'deletionType' => $deletionType); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Get a specific subscription. (subscriptions.get) - * - * @param string $customerId Either the customer's primary domain name or the - * customer's unique identifier. If using the domain name, we do not recommend - * using a customerId as a key for persistent data. If the domain name for a - * customerId is changed, the Google system automatically updates. - * @param string $subscriptionId This is a required property. The subscriptionId - * is the subscription identifier and is unique for each customer. Since a - * subscriptionId changes when a subscription is updated, we recommend to not - * use this ID as a key for persistent data. And the subscriptionId can be found - * using the retrieve all reseller subscriptions method. - * @param array $optParams Optional parameters. - * @return Google_Service_Reseller_Subscription - */ - public function get($customerId, $subscriptionId, $optParams = array()) - { - $params = array('customerId' => $customerId, 'subscriptionId' => $subscriptionId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Reseller_Subscription"); - } - /** - * Create or transfer a subscription. (subscriptions.insert) - * - * @param string $customerId Either the customer's primary domain name or the - * customer's unique identifier. If using the domain name, we do not recommend - * using a customerId as a key for persistent data. If the domain name for a - * customerId is changed, the Google system automatically updates. - * @param Google_Service_Reseller_Subscription $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string customerAuthToken The customerAuthToken query string is - * required when creating a resold account that transfers a direct customer's - * subscription or transfers another reseller customer's subscription to your - * reseller management. This is a hexadecimal authentication token needed to - * complete the subscription transfer. For more information, see the - * administrator help center. - * @return Google_Service_Reseller_Subscription - */ - public function insert($customerId, Google_Service_Reseller_Subscription $postBody, $optParams = array()) - { - $params = array('customerId' => $customerId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Reseller_Subscription"); - } - /** - * List of subscriptions managed by the reseller. The list can be all - * subscriptions, all of a customer's subscriptions, or all of a customer's - * transferable subscriptions. (subscriptions.listSubscriptions) - * - * @param array $optParams Optional parameters. - * - * @opt_param string customerAuthToken The customerAuthToken query string is - * required when creating a resold account that transfers a direct customer's - * subscription or transfers another reseller customer's subscription to your - * reseller management. This is a hexadecimal authentication token needed to - * complete the subscription transfer. For more information, see the - * administrator help center. - * @opt_param string customerId Either the customer's primary domain name or the - * customer's unique identifier. If using the domain name, we do not recommend - * using a customerId as a key for persistent data. If the domain name for a - * customerId is changed, the Google system automatically updates. - * @opt_param string customerNamePrefix When retrieving all of your - * subscriptions and filtering for specific customers, you can enter a prefix - * for a customer name. Using an example customer group that includes exam.com, - * example20.com and example.com: - exa -- Returns all customer names that start - * with 'exa' which could include exam.com, example20.com, and example.com. A - * name prefix is similar to using a regular expression's asterisk, exa*. - - * example -- Returns example20.com and example.com. - * @opt_param string maxResults When retrieving a large list, the maxResults is - * the maximum number of results per page. The nextPageToken value takes you to - * the next page. The default is 20. - * @opt_param string pageToken Token to specify next page in the list - * @return Google_Service_Reseller_Subscriptions - */ - public function listSubscriptions($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Reseller_Subscriptions"); - } - /** - * Immediately move a 30-day free trial subscription to a paid service - * subscription. (subscriptions.startPaidService) - * - * @param string $customerId Either the customer's primary domain name or the - * customer's unique identifier. If using the domain name, we do not recommend - * using a customerId as a key for persistent data. If the domain name for a - * customerId is changed, the Google system automatically updates. - * @param string $subscriptionId This is a required property. The subscriptionId - * is the subscription identifier and is unique for each customer. Since a - * subscriptionId changes when a subscription is updated, we recommend to not - * use this ID as a key for persistent data. And the subscriptionId can be found - * using the retrieve all reseller subscriptions method. - * @param array $optParams Optional parameters. - * @return Google_Service_Reseller_Subscription - */ - public function startPaidService($customerId, $subscriptionId, $optParams = array()) - { - $params = array('customerId' => $customerId, 'subscriptionId' => $subscriptionId); - $params = array_merge($params, $optParams); - return $this->call('startPaidService', array($params), "Google_Service_Reseller_Subscription"); - } - /** - * Suspends an active subscription. (subscriptions.suspend) - * - * @param string $customerId Either the customer's primary domain name or the - * customer's unique identifier. If using the domain name, we do not recommend - * using a customerId as a key for persistent data. If the domain name for a - * customerId is changed, the Google system automatically updates. - * @param string $subscriptionId This is a required property. The subscriptionId - * is the subscription identifier and is unique for each customer. Since a - * subscriptionId changes when a subscription is updated, we recommend to not - * use this ID as a key for persistent data. And the subscriptionId can be found - * using the retrieve all reseller subscriptions method. - * @param array $optParams Optional parameters. - * @return Google_Service_Reseller_Subscription - */ - public function suspend($customerId, $subscriptionId, $optParams = array()) - { - $params = array('customerId' => $customerId, 'subscriptionId' => $subscriptionId); - $params = array_merge($params, $optParams); - return $this->call('suspend', array($params), "Google_Service_Reseller_Subscription"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reseller/Seats.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reseller/Seats.php deleted file mode 100644 index 2aaf0026..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reseller/Seats.php +++ /dev/null @@ -1,57 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLicensedNumberOfSeats($licensedNumberOfSeats) - { - $this->licensedNumberOfSeats = $licensedNumberOfSeats; - } - public function getLicensedNumberOfSeats() - { - return $this->licensedNumberOfSeats; - } - public function setMaximumNumberOfSeats($maximumNumberOfSeats) - { - $this->maximumNumberOfSeats = $maximumNumberOfSeats; - } - public function getMaximumNumberOfSeats() - { - return $this->maximumNumberOfSeats; - } - public function setNumberOfSeats($numberOfSeats) - { - $this->numberOfSeats = $numberOfSeats; - } - public function getNumberOfSeats() - { - return $this->numberOfSeats; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reseller/Subscription.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reseller/Subscription.php deleted file mode 100644 index d47d8e76..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reseller/Subscription.php +++ /dev/null @@ -1,219 +0,0 @@ -billingMethod = $billingMethod; - } - public function getBillingMethod() - { - return $this->billingMethod; - } - public function setCreationTime($creationTime) - { - $this->creationTime = $creationTime; - } - public function getCreationTime() - { - return $this->creationTime; - } - public function setCustomerDomain($customerDomain) - { - $this->customerDomain = $customerDomain; - } - public function getCustomerDomain() - { - return $this->customerDomain; - } - public function setCustomerId($customerId) - { - $this->customerId = $customerId; - } - public function getCustomerId() - { - return $this->customerId; - } - public function setDealCode($dealCode) - { - $this->dealCode = $dealCode; - } - public function getDealCode() - { - return $this->dealCode; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Reseller_SubscriptionPlan - */ - public function setPlan(Google_Service_Reseller_SubscriptionPlan $plan) - { - $this->plan = $plan; - } - /** - * @return Google_Service_Reseller_SubscriptionPlan - */ - public function getPlan() - { - return $this->plan; - } - public function setPurchaseOrderId($purchaseOrderId) - { - $this->purchaseOrderId = $purchaseOrderId; - } - public function getPurchaseOrderId() - { - return $this->purchaseOrderId; - } - /** - * @param Google_Service_Reseller_RenewalSettings - */ - public function setRenewalSettings(Google_Service_Reseller_RenewalSettings $renewalSettings) - { - $this->renewalSettings = $renewalSettings; - } - /** - * @return Google_Service_Reseller_RenewalSettings - */ - public function getRenewalSettings() - { - return $this->renewalSettings; - } - public function setResourceUiUrl($resourceUiUrl) - { - $this->resourceUiUrl = $resourceUiUrl; - } - public function getResourceUiUrl() - { - return $this->resourceUiUrl; - } - /** - * @param Google_Service_Reseller_Seats - */ - public function setSeats(Google_Service_Reseller_Seats $seats) - { - $this->seats = $seats; - } - /** - * @return Google_Service_Reseller_Seats - */ - public function getSeats() - { - return $this->seats; - } - public function setSkuId($skuId) - { - $this->skuId = $skuId; - } - public function getSkuId() - { - return $this->skuId; - } - public function setSkuName($skuName) - { - $this->skuName = $skuName; - } - public function getSkuName() - { - return $this->skuName; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setSubscriptionId($subscriptionId) - { - $this->subscriptionId = $subscriptionId; - } - public function getSubscriptionId() - { - return $this->subscriptionId; - } - public function setSuspensionReasons($suspensionReasons) - { - $this->suspensionReasons = $suspensionReasons; - } - public function getSuspensionReasons() - { - return $this->suspensionReasons; - } - /** - * @param Google_Service_Reseller_SubscriptionTransferInfo - */ - public function setTransferInfo(Google_Service_Reseller_SubscriptionTransferInfo $transferInfo) - { - $this->transferInfo = $transferInfo; - } - /** - * @return Google_Service_Reseller_SubscriptionTransferInfo - */ - public function getTransferInfo() - { - return $this->transferInfo; - } - /** - * @param Google_Service_Reseller_SubscriptionTrialSettings - */ - public function setTrialSettings(Google_Service_Reseller_SubscriptionTrialSettings $trialSettings) - { - $this->trialSettings = $trialSettings; - } - /** - * @return Google_Service_Reseller_SubscriptionTrialSettings - */ - public function getTrialSettings() - { - return $this->trialSettings; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reseller/SubscriptionPlan.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reseller/SubscriptionPlan.php deleted file mode 100644 index 9af34560..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reseller/SubscriptionPlan.php +++ /dev/null @@ -1,55 +0,0 @@ -commitmentInterval = $commitmentInterval; - } - /** - * @return Google_Service_Reseller_SubscriptionPlanCommitmentInterval - */ - public function getCommitmentInterval() - { - return $this->commitmentInterval; - } - public function setIsCommitmentPlan($isCommitmentPlan) - { - $this->isCommitmentPlan = $isCommitmentPlan; - } - public function getIsCommitmentPlan() - { - return $this->isCommitmentPlan; - } - public function setPlanName($planName) - { - $this->planName = $planName; - } - public function getPlanName() - { - return $this->planName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reseller/SubscriptionPlanCommitmentInterval.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reseller/SubscriptionPlanCommitmentInterval.php deleted file mode 100644 index 8181c62a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reseller/SubscriptionPlanCommitmentInterval.php +++ /dev/null @@ -1,39 +0,0 @@ -endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reseller/SubscriptionTransferInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reseller/SubscriptionTransferInfo.php deleted file mode 100644 index 4b202604..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reseller/SubscriptionTransferInfo.php +++ /dev/null @@ -1,39 +0,0 @@ -minimumTransferableSeats = $minimumTransferableSeats; - } - public function getMinimumTransferableSeats() - { - return $this->minimumTransferableSeats; - } - public function setTransferabilityExpirationTime($transferabilityExpirationTime) - { - $this->transferabilityExpirationTime = $transferabilityExpirationTime; - } - public function getTransferabilityExpirationTime() - { - return $this->transferabilityExpirationTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reseller/SubscriptionTrialSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reseller/SubscriptionTrialSettings.php deleted file mode 100644 index 2e0cff4d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reseller/SubscriptionTrialSettings.php +++ /dev/null @@ -1,39 +0,0 @@ -isInTrial = $isInTrial; - } - public function getIsInTrial() - { - return $this->isInTrial; - } - public function setTrialEndTime($trialEndTime) - { - $this->trialEndTime = $trialEndTime; - } - public function getTrialEndTime() - { - return $this->trialEndTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reseller/Subscriptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reseller/Subscriptions.php deleted file mode 100644 index 4da8e963..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Reseller/Subscriptions.php +++ /dev/null @@ -1,56 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Reseller_Subscription - */ - public function setSubscriptions($subscriptions) - { - $this->subscriptions = $subscriptions; - } - /** - * @return Google_Service_Reseller_Subscription - */ - public function getSubscriptions() - { - return $this->subscriptions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews.php deleted file mode 100644 index 074bae01..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews.php +++ /dev/null @@ -1,339 +0,0 @@ - - * The Resource View API allows users to create and manage logical sets of - * Google Compute Engine instances.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Resourceviews extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** View your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM_READ_ONLY = - "https://www.googleapis.com/auth/cloud-platform.read-only"; - /** View and manage your Google Compute Engine resources. */ - const COMPUTE = - "https://www.googleapis.com/auth/compute"; - /** View your Google Compute Engine resources. */ - const COMPUTE_READONLY = - "https://www.googleapis.com/auth/compute.readonly"; - /** View and manage your Google Cloud Platform management resources and deployment status information. */ - const NDEV_CLOUDMAN = - "https://www.googleapis.com/auth/ndev.cloudman"; - /** View your Google Cloud Platform management resources and deployment status information. */ - const NDEV_CLOUDMAN_READONLY = - "https://www.googleapis.com/auth/ndev.cloudman.readonly"; - - public $zoneOperations; - public $zoneViews; - - /** - * Constructs the internal representation of the Resourceviews service. - * - * @param Google_Client $client - */ - public function __construct(Google_Client $client) - { - parent::__construct($client); - $this->rootUrl = 'https://www.googleapis.com/'; - $this->servicePath = 'resourceviews/v1beta2/projects/'; - $this->version = 'v1beta2'; - $this->serviceName = 'resourceviews'; - - $this->zoneOperations = new Google_Service_Resourceviews_Resource_ZoneOperations( - $this, - $this->serviceName, - 'zoneOperations', - array( - 'methods' => array( - 'get' => array( - 'path' => '{project}/zones/{zone}/operations/{operation}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'operation' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/zones/{zone}/operations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->zoneViews = new Google_Service_Resourceviews_Resource_ZoneViews( - $this, - $this->serviceName, - 'zoneViews', - array( - 'methods' => array( - 'addResources' => array( - 'path' => '{project}/zones/{zone}/resourceViews/{resourceView}/addResources', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resourceView' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => '{project}/zones/{zone}/resourceViews/{resourceView}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resourceView' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{project}/zones/{zone}/resourceViews/{resourceView}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resourceView' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getService' => array( - 'path' => '{project}/zones/{zone}/resourceViews/{resourceView}/getService', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resourceView' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resourceName' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'insert' => array( - 'path' => '{project}/zones/{zone}/resourceViews', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/zones/{zone}/resourceViews', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'listResources' => array( - 'path' => '{project}/zones/{zone}/resourceViews/{resourceView}/resources', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resourceView' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'format' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'listState' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'serviceName' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'removeResources' => array( - 'path' => '{project}/zones/{zone}/resourceViews/{resourceView}/removeResources', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resourceView' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setService' => array( - 'path' => '{project}/zones/{zone}/resourceViews/{resourceView}/setService', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'zone' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resourceView' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews/Label.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews/Label.php deleted file mode 100644 index 50489711..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews/Label.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews/ListResourceResponseItem.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews/ListResourceResponseItem.php deleted file mode 100644 index ba8cc748..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews/ListResourceResponseItem.php +++ /dev/null @@ -1,39 +0,0 @@ -endpoints = $endpoints; - } - public function getEndpoints() - { - return $this->endpoints; - } - public function setResource($resource) - { - $this->resource = $resource; - } - public function getResource() - { - return $this->resource; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews/Operation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews/Operation.php deleted file mode 100644 index 31dc29dc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews/Operation.php +++ /dev/null @@ -1,234 +0,0 @@ -clientOperationId = $clientOperationId; - } - public function getClientOperationId() - { - return $this->clientOperationId; - } - public function setCreationTimestamp($creationTimestamp) - { - $this->creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - /** - * @param Google_Service_Resourceviews_OperationError - */ - public function setError(Google_Service_Resourceviews_OperationError $error) - { - $this->error = $error; - } - /** - * @return Google_Service_Resourceviews_OperationError - */ - public function getError() - { - return $this->error; - } - public function setHttpErrorMessage($httpErrorMessage) - { - $this->httpErrorMessage = $httpErrorMessage; - } - public function getHttpErrorMessage() - { - return $this->httpErrorMessage; - } - public function setHttpErrorStatusCode($httpErrorStatusCode) - { - $this->httpErrorStatusCode = $httpErrorStatusCode; - } - public function getHttpErrorStatusCode() - { - return $this->httpErrorStatusCode; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setInsertTime($insertTime) - { - $this->insertTime = $insertTime; - } - public function getInsertTime() - { - return $this->insertTime; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOperationType($operationType) - { - $this->operationType = $operationType; - } - public function getOperationType() - { - return $this->operationType; - } - public function setProgress($progress) - { - $this->progress = $progress; - } - public function getProgress() - { - return $this->progress; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - 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 setStatusMessage($statusMessage) - { - $this->statusMessage = $statusMessage; - } - public function getStatusMessage() - { - return $this->statusMessage; - } - public function setTargetId($targetId) - { - $this->targetId = $targetId; - } - public function getTargetId() - { - return $this->targetId; - } - public function setTargetLink($targetLink) - { - $this->targetLink = $targetLink; - } - public function getTargetLink() - { - return $this->targetLink; - } - public function setUser($user) - { - $this->user = $user; - } - public function getUser() - { - return $this->user; - } - /** - * @param Google_Service_Resourceviews_OperationWarnings - */ - public function setWarnings($warnings) - { - $this->warnings = $warnings; - } - /** - * @return Google_Service_Resourceviews_OperationWarnings - */ - public function getWarnings() - { - return $this->warnings; - } - public function setZone($zone) - { - $this->zone = $zone; - } - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews/OperationError.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews/OperationError.php deleted file mode 100644 index aee28c2d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews/OperationError.php +++ /dev/null @@ -1,38 +0,0 @@ -errors = $errors; - } - /** - * @return Google_Service_Resourceviews_OperationErrorErrors - */ - public function getErrors() - { - return $this->errors; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews/OperationErrorErrors.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews/OperationErrorErrors.php deleted file mode 100644 index 13e86965..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews/OperationErrorErrors.php +++ /dev/null @@ -1,48 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews/OperationList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews/OperationList.php deleted file mode 100644 index ba602e77..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews/OperationList.php +++ /dev/null @@ -1,74 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Resourceviews_Operation - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Resourceviews_Operation - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews/OperationWarnings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews/OperationWarnings.php deleted file mode 100644 index 46f247f3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews/OperationWarnings.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Resourceviews_OperationWarningsData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Resourceviews_OperationWarningsData - */ - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews/OperationWarningsData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews/OperationWarningsData.php deleted file mode 100644 index d0e0c194..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews/OperationWarningsData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews/Resource/ZoneOperations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews/Resource/ZoneOperations.php deleted file mode 100644 index 778807e2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews/Resource/ZoneOperations.php +++ /dev/null @@ -1,66 +0,0 @@ - - * $resourceviewsService = new Google_Service_Resourceviews(...); - * $zoneOperations = $resourceviewsService->zoneOperations; - * - */ -class Google_Service_Resourceviews_Resource_ZoneOperations extends Google_Service_Resource -{ - /** - * Retrieves the specified zone-specific operation resource. - * (zoneOperations.get) - * - * @param string $project Name of the project scoping this request. - * @param string $zone Name of the zone scoping this request. - * @param string $operation Name of the operation resource to return. - * @param array $optParams Optional parameters. - * @return Google_Service_Resourceviews_Operation - */ - public function get($project, $zone, $operation, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'operation' => $operation); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Resourceviews_Operation"); - } - /** - * Retrieves the list of operation resources contained within the specified - * zone. (zoneOperations.listZoneOperations) - * - * @param string $project Name of the project scoping this request. - * @param string $zone Name of the zone scoping this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter Optional. Filter expression for filtering listed - * resources. - * @opt_param string maxResults Optional. Maximum count of results to be - * returned. Maximum value is 500 and default value is 500. - * @opt_param string pageToken Optional. Tag returned by a previous list request - * truncated by maxResults. Used to continue a previous list request. - * @return Google_Service_Resourceviews_OperationList - */ - public function listZoneOperations($project, $zone, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Resourceviews_OperationList"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews/Resource/ZoneViews.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews/Resource/ZoneViews.php deleted file mode 100644 index ba410818..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews/Resource/ZoneViews.php +++ /dev/null @@ -1,190 +0,0 @@ - - * $resourceviewsService = new Google_Service_Resourceviews(...); - * $zoneViews = $resourceviewsService->zoneViews; - * - */ -class Google_Service_Resourceviews_Resource_ZoneViews extends Google_Service_Resource -{ - /** - * Add resources to the view. (zoneViews.addResources) - * - * @param string $project The project name of the resource view. - * @param string $zone The zone name of the resource view. - * @param string $resourceView The name of the resource view. - * @param Google_Service_Resourceviews_ZoneViewsAddResourcesRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Resourceviews_Operation - */ - public function addResources($project, $zone, $resourceView, Google_Service_Resourceviews_ZoneViewsAddResourcesRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'resourceView' => $resourceView, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('addResources', array($params), "Google_Service_Resourceviews_Operation"); - } - /** - * Delete a resource view. (zoneViews.delete) - * - * @param string $project The project name of the resource view. - * @param string $zone The zone name of the resource view. - * @param string $resourceView The name of the resource view. - * @param array $optParams Optional parameters. - * @return Google_Service_Resourceviews_Operation - */ - public function delete($project, $zone, $resourceView, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'resourceView' => $resourceView); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Resourceviews_Operation"); - } - /** - * Get the information of a zonal resource view. (zoneViews.get) - * - * @param string $project The project name of the resource view. - * @param string $zone The zone name of the resource view. - * @param string $resourceView The name of the resource view. - * @param array $optParams Optional parameters. - * @return Google_Service_Resourceviews_ResourceView - */ - public function get($project, $zone, $resourceView, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'resourceView' => $resourceView); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Resourceviews_ResourceView"); - } - /** - * Get the service information of a resource view or a resource. - * (zoneViews.getService) - * - * @param string $project The project name of the resource view. - * @param string $zone The zone name of the resource view. - * @param string $resourceView The name of the resource view. - * @param array $optParams Optional parameters. - * - * @opt_param string resourceName The name of the resource if user wants to get - * the service information of the resource. - * @return Google_Service_Resourceviews_ZoneViewsGetServiceResponse - */ - public function getService($project, $zone, $resourceView, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'resourceView' => $resourceView); - $params = array_merge($params, $optParams); - return $this->call('getService', array($params), "Google_Service_Resourceviews_ZoneViewsGetServiceResponse"); - } - /** - * Create a resource view. (zoneViews.insert) - * - * @param string $project The project name of the resource view. - * @param string $zone The zone name of the resource view. - * @param Google_Service_Resourceviews_ResourceView $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Resourceviews_Operation - */ - public function insert($project, $zone, Google_Service_Resourceviews_ResourceView $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Resourceviews_Operation"); - } - /** - * List resource views. (zoneViews.listZoneViews) - * - * @param string $project The project name of the resource view. - * @param string $zone The zone name of the resource view. - * @param array $optParams Optional parameters. - * - * @opt_param int maxResults Maximum count of results to be returned. Acceptable - * values are 0 to 5000, inclusive. (Default: 5000) - * @opt_param string pageToken Specifies a nextPageToken returned by a previous - * list request. This token can be used to request the next page of results from - * a previous list request. - * @return Google_Service_Resourceviews_ZoneViewsList - */ - public function listZoneViews($project, $zone, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Resourceviews_ZoneViewsList"); - } - /** - * List the resources of the resource view. (zoneViews.listResources) - * - * @param string $project The project name of the resource view. - * @param string $zone The zone name of the resource view. - * @param string $resourceView The name of the resource view. - * @param array $optParams Optional parameters. - * - * @opt_param string format The requested format of the return value. It can be - * URL or URL_PORT. A JSON object will be included in the response based on the - * format. The default format is NONE, which results in no JSON in the response. - * @opt_param string listState The state of the instance to list. By default, it - * lists all instances. - * @opt_param int maxResults Maximum count of results to be returned. Acceptable - * values are 0 to 5000, inclusive. (Default: 5000) - * @opt_param string pageToken Specifies a nextPageToken returned by a previous - * list request. This token can be used to request the next page of results from - * a previous list request. - * @opt_param string serviceName The service name to return in the response. It - * is optional and if it is not set, all the service end points will be - * returned. - * @return Google_Service_Resourceviews_ZoneViewsListResourcesResponse - */ - public function listResources($project, $zone, $resourceView, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'resourceView' => $resourceView); - $params = array_merge($params, $optParams); - return $this->call('listResources', array($params), "Google_Service_Resourceviews_ZoneViewsListResourcesResponse"); - } - /** - * Remove resources from the view. (zoneViews.removeResources) - * - * @param string $project The project name of the resource view. - * @param string $zone The zone name of the resource view. - * @param string $resourceView The name of the resource view. - * @param Google_Service_Resourceviews_ZoneViewsRemoveResourcesRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Resourceviews_Operation - */ - public function removeResources($project, $zone, $resourceView, Google_Service_Resourceviews_ZoneViewsRemoveResourcesRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'resourceView' => $resourceView, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('removeResources', array($params), "Google_Service_Resourceviews_Operation"); - } - /** - * Update the service information of a resource view or a resource. - * (zoneViews.setService) - * - * @param string $project The project name of the resource view. - * @param string $zone The zone name of the resource view. - * @param string $resourceView The name of the resource view. - * @param Google_Service_Resourceviews_ZoneViewsSetServiceRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Resourceviews_Operation - */ - public function setService($project, $zone, $resourceView, Google_Service_Resourceviews_ZoneViewsSetServiceRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'zone' => $zone, 'resourceView' => $resourceView, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setService', array($params), "Google_Service_Resourceviews_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews/ResourceView.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews/ResourceView.php deleted file mode 100644 index f3c7fe5a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews/ResourceView.php +++ /dev/null @@ -1,144 +0,0 @@ -creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - /** - * @param Google_Service_Resourceviews_ServiceEndpoint - */ - public function setEndpoints($endpoints) - { - $this->endpoints = $endpoints; - } - /** - * @return Google_Service_Resourceviews_ServiceEndpoint - */ - public function getEndpoints() - { - return $this->endpoints; - } - public function setFingerprint($fingerprint) - { - $this->fingerprint = $fingerprint; - } - public function getFingerprint() - { - return $this->fingerprint; - } - 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; - } - /** - * @param Google_Service_Resourceviews_Label - */ - public function setLabels($labels) - { - $this->labels = $labels; - } - /** - * @return Google_Service_Resourceviews_Label - */ - public function getLabels() - { - return $this->labels; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNetwork($network) - { - $this->network = $network; - } - public function getNetwork() - { - return $this->network; - } - public function setResources($resources) - { - $this->resources = $resources; - } - public function getResources() - { - return $this->resources; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setSize($size) - { - $this->size = $size; - } - public function getSize() - { - return $this->size; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews/ServiceEndpoint.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews/ServiceEndpoint.php deleted file mode 100644 index 3a0c636e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews/ServiceEndpoint.php +++ /dev/null @@ -1,39 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setPort($port) - { - $this->port = $port; - } - public function getPort() - { - return $this->port; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews/ZoneViewsAddResourcesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews/ZoneViewsAddResourcesRequest.php deleted file mode 100644 index 3f5d6088..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews/ZoneViewsAddResourcesRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -resources = $resources; - } - public function getResources() - { - return $this->resources; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews/ZoneViewsGetServiceResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews/ZoneViewsGetServiceResponse.php deleted file mode 100644 index 53ddf500..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews/ZoneViewsGetServiceResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -endpoints = $endpoints; - } - /** - * @return Google_Service_Resourceviews_ServiceEndpoint - */ - public function getEndpoints() - { - return $this->endpoints; - } - public function setFingerprint($fingerprint) - { - $this->fingerprint = $fingerprint; - } - public function getFingerprint() - { - return $this->fingerprint; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews/ZoneViewsList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews/ZoneViewsList.php deleted file mode 100644 index d1b55b71..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews/ZoneViewsList.php +++ /dev/null @@ -1,65 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Resourceviews_ResourceView - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews/ZoneViewsListResourcesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews/ZoneViewsListResourcesResponse.php deleted file mode 100644 index 778eb260..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews/ZoneViewsListResourcesResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Resourceviews_ListResourceResponseItem - */ - public function getItems() - { - return $this->items; - } - public function setNetwork($network) - { - $this->network = $network; - } - public function getNetwork() - { - return $this->network; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews/ZoneViewsRemoveResourcesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews/ZoneViewsRemoveResourcesRequest.php deleted file mode 100644 index 32ceaf22..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews/ZoneViewsRemoveResourcesRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -resources = $resources; - } - public function getResources() - { - return $this->resources; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews/ZoneViewsSetServiceRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews/ZoneViewsSetServiceRequest.php deleted file mode 100644 index efb2846f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Resourceviews/ZoneViewsSetServiceRequest.php +++ /dev/null @@ -1,56 +0,0 @@ -endpoints = $endpoints; - } - /** - * @return Google_Service_Resourceviews_ServiceEndpoint - */ - public function getEndpoints() - { - return $this->endpoints; - } - public function setFingerprint($fingerprint) - { - $this->fingerprint = $fingerprint; - } - public function getFingerprint() - { - return $this->fingerprint; - } - public function setResourceName($resourceName) - { - $this->resourceName = $resourceName; - } - public function getResourceName() - { - return $this->resourceName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting.php deleted file mode 100644 index c9f8ee46..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting.php +++ /dev/null @@ -1,564 +0,0 @@ - -

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_SASPortalTesting extends Google_Service -{ - /** View your email address. */ - const USERINFO_EMAIL = - "https://www.googleapis.com/auth/userinfo.email"; - - public $customers; - public $customers_devices; - public $customers_nodes; - public $installer; - public $nodes_devices; - public $nodes_nodes; - public $policies; - - /** - * Constructs the internal representation of the SASPortalTesting service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://prod-tt-sasportal.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1alpha1'; - $this->serviceName = 'prod_tt_sasportal'; - - $this->customers = new Google_Service_SASPortalTesting_Resource_Customers( - $this, - $this->serviceName, - 'customers', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1alpha1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1alpha1/customers', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v1alpha1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->customers_devices = new Google_Service_SASPortalTesting_Resource_CustomersDevices( - $this, - $this->serviceName, - 'devices', - array( - 'methods' => array( - 'bulk' => array( - 'path' => 'v1alpha1/{+parent}/devices:bulk', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'create' => array( - 'path' => 'v1alpha1/{+parent}/devices', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'createSigned' => array( - 'path' => 'v1alpha1/{+parent}/devices:createSigned', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1alpha1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1alpha1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1alpha1/{+parent}/devices', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'move' => array( - 'path' => 'v1alpha1/{+name}:move', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => 'v1alpha1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'signDevice' => array( - 'path' => 'v1alpha1/{+name}:signDevice', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'updateSigned' => array( - 'path' => 'v1alpha1/{+name}:updateSigned', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->customers_nodes = new Google_Service_SASPortalTesting_Resource_CustomersNodes( - $this, - $this->serviceName, - 'nodes', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1alpha1/{+parent}/nodes', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1alpha1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1alpha1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1alpha1/{+parent}/nodes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'move' => array( - 'path' => 'v1alpha1/{+name}:move', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => 'v1alpha1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->installer = new Google_Service_SASPortalTesting_Resource_Installer( - $this, - $this->serviceName, - 'installer', - array( - 'methods' => array( - 'generateSecret' => array( - 'path' => 'v1alpha1/installer:generateSecret', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'validate' => array( - 'path' => 'v1alpha1/installer:validate', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->nodes_devices = new Google_Service_SASPortalTesting_Resource_NodesDevices( - $this, - $this->serviceName, - 'devices', - array( - 'methods' => array( - 'bulk' => array( - 'path' => 'v1alpha1/{+parent}/devices:bulk', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'create' => array( - 'path' => 'v1alpha1/{+parent}/devices', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'createSigned' => array( - 'path' => 'v1alpha1/{+parent}/devices:createSigned', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1alpha1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1alpha1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1alpha1/{+parent}/devices', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'move' => array( - 'path' => 'v1alpha1/{+name}:move', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => 'v1alpha1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'signDevice' => array( - 'path' => 'v1alpha1/{+name}:signDevice', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'updateSigned' => array( - 'path' => 'v1alpha1/{+name}:updateSigned', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->nodes_nodes = new Google_Service_SASPortalTesting_Resource_NodesNodes( - $this, - $this->serviceName, - 'nodes', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1alpha1/{+parent}/nodes', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1alpha1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1alpha1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1alpha1/{+parent}/nodes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'move' => array( - 'path' => 'v1alpha1/{+name}:move', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => 'v1alpha1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->policies = new Google_Service_SASPortalTesting_Resource_Policies( - $this, - $this->serviceName, - 'policies', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1alpha1/policies:get', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'set' => array( - 'path' => 'v1alpha1/policies:set', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'test' => array( - 'path' => 'v1alpha1/policies:test', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/Resource/Customers.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/Resource/Customers.php deleted file mode 100644 index 823ccb7c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/Resource/Customers.php +++ /dev/null @@ -1,75 +0,0 @@ - - * $prod_tt_sasportalService = new Google_Service_SASPortalTesting(...); - * $customers = $prod_tt_sasportalService->customers; - * - */ -class Google_Service_SASPortalTesting_Resource_Customers extends Google_Service_Resource -{ - /** - * Returns a requested customer. (customers.get) - * - * @param string $name Required. The name of the customer. - * @param array $optParams Optional parameters. - * @return Google_Service_SASPortalTesting_SasPortalCustomer - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_SASPortalTesting_SasPortalCustomer"); - } - /** - * Returns a list of requested customers. (customers.listCustomers) - * - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A pagination token returned from a previous call - * to ListCustomers method that indicates where this listing should continue - * from. - * @opt_param int pageSize The maximum number of customers to return in the - * response. - * @return Google_Service_SASPortalTesting_SasPortalListCustomersResponse - */ - public function listCustomers($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_SASPortalTesting_SasPortalListCustomersResponse"); - } - /** - * Updates an existing customer. (customers.patch) - * - * @param string $name Output only. Resource name of the customer. - * @param Google_Service_SASPortalTesting_SasPortalCustomer $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Fields to be updated. - * @return Google_Service_SASPortalTesting_SasPortalCustomer - */ - public function patch($name, Google_Service_SASPortalTesting_SasPortalCustomer $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_SASPortalTesting_SasPortalCustomer"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/Resource/CustomersDevices.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/Resource/CustomersDevices.php deleted file mode 100644 index 96fc37fb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/Resource/CustomersDevices.php +++ /dev/null @@ -1,176 +0,0 @@ - - * $prod_tt_sasportalService = new Google_Service_SASPortalTesting(...); - * $devices = $prod_tt_sasportalService->devices; - * - */ -class Google_Service_SASPortalTesting_Resource_CustomersDevices extends Google_Service_Resource -{ - /** - * Creates a device under a node or customer. Returned devices are unordered. - * (devices.bulk) - * - * @param string $parent Required. The name of the parent resource. - * @param Google_Service_SASPortalTesting_SasPortalBulkCreateDeviceRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_SASPortalTesting_SasPortalBulkCreateDeviceResponse - */ - public function bulk($parent, Google_Service_SASPortalTesting_SasPortalBulkCreateDeviceRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('bulk', array($params), "Google_Service_SASPortalTesting_SasPortalBulkCreateDeviceResponse"); - } - /** - * Creates a device under a node or customer. (devices.create) - * - * @param string $parent Required. The name of the parent resource. - * @param Google_Service_SASPortalTesting_SasPortalDevice $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_SASPortalTesting_SasPortalDevice - */ - public function create($parent, Google_Service_SASPortalTesting_SasPortalDevice $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_SASPortalTesting_SasPortalDevice"); - } - /** - * Creates a signed device under a node or customer. (devices.createSigned) - * - * @param string $parent Required. The name of the parent resource. - * @param Google_Service_SASPortalTesting_SasPortalCreateSignedDeviceRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_SASPortalTesting_SasPortalDevice - */ - public function createSigned($parent, Google_Service_SASPortalTesting_SasPortalCreateSignedDeviceRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('createSigned', array($params), "Google_Service_SASPortalTesting_SasPortalDevice"); - } - /** - * Deletes a device. (devices.delete) - * - * @param string $name Required. The name of the device. - * @param array $optParams Optional parameters. - * @return Google_Service_SASPortalTesting_SasPortalEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_SASPortalTesting_SasPortalEmpty"); - } - /** - * Gets details about a device. (devices.get) - * - * @param string $name Required. The name of the device. - * @param array $optParams Optional parameters. - * @return Google_Service_SASPortalTesting_SasPortalDevice - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_SASPortalTesting_SasPortalDevice"); - } - /** - * Lists devices under a node or customer. (devices.listCustomersDevices) - * - * @param string $parent Required. The name of the parent resource. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A pagination token returned from a previous call - * to ListDevices that indicates where this listing should continue from. - * @opt_param int pageSize The maximum number of devices to return in the - * response. - * @opt_param string filter The filter expression. The filter should have one of - * the following formats: "sn=123454" or "display_name=MyDevice". sn corresponds - * to serial_number of the device. The filter is case insensitive. - * @return Google_Service_SASPortalTesting_SasPortalListDevicesResponse - */ - public function listCustomersDevices($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_SASPortalTesting_SasPortalListDevicesResponse"); - } - /** - * Moves a device under another node or customer. (devices.move) - * - * @param string $name Required. The name of the device to move. - * @param Google_Service_SASPortalTesting_SasPortalMoveDeviceRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_SASPortalTesting_SasPortalOperation - */ - public function move($name, Google_Service_SASPortalTesting_SasPortalMoveDeviceRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('move', array($params), "Google_Service_SASPortalTesting_SasPortalOperation"); - } - /** - * Updates a device. (devices.patch) - * - * @param string $name Output only. The resource path name. - * @param Google_Service_SASPortalTesting_SasPortalDevice $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Fields to be updated. - * @return Google_Service_SASPortalTesting_SasPortalDevice - */ - public function patch($name, Google_Service_SASPortalTesting_SasPortalDevice $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_SASPortalTesting_SasPortalDevice"); - } - /** - * Signs a device. (devices.signDevice) - * - * @param string $name Output only. The resource path name. - * @param Google_Service_SASPortalTesting_SasPortalSignDeviceRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_SASPortalTesting_SasPortalEmpty - */ - public function signDevice($name, Google_Service_SASPortalTesting_SasPortalSignDeviceRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('signDevice', array($params), "Google_Service_SASPortalTesting_SasPortalEmpty"); - } - /** - * Updates a signed device. (devices.updateSigned) - * - * @param string $name Required. The name of the device to update. - * @param Google_Service_SASPortalTesting_SasPortalUpdateSignedDeviceRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_SASPortalTesting_SasPortalDevice - */ - public function updateSigned($name, Google_Service_SASPortalTesting_SasPortalUpdateSignedDeviceRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updateSigned', array($params), "Google_Service_SASPortalTesting_SasPortalDevice"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/Resource/CustomersNodes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/Resource/CustomersNodes.php deleted file mode 100644 index 6ad45d0c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/Resource/CustomersNodes.php +++ /dev/null @@ -1,118 +0,0 @@ - - * $prod_tt_sasportalService = new Google_Service_SASPortalTesting(...); - * $nodes = $prod_tt_sasportalService->nodes; - * - */ -class Google_Service_SASPortalTesting_Resource_CustomersNodes extends Google_Service_Resource -{ - /** - * Creates a new node. (nodes.create) - * - * @param string $parent Required. The parent resource name where the node is to - * be created. - * @param Google_Service_SASPortalTesting_SasPortalNode $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_SASPortalTesting_SasPortalNode - */ - public function create($parent, Google_Service_SASPortalTesting_SasPortalNode $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_SASPortalTesting_SasPortalNode"); - } - /** - * Deletes a node. (nodes.delete) - * - * @param string $name Required. The name of the node. - * @param array $optParams Optional parameters. - * @return Google_Service_SASPortalTesting_SasPortalEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_SASPortalTesting_SasPortalEmpty"); - } - /** - * Returns a requested node. (nodes.get) - * - * @param string $name Required. The name of the node. - * @param array $optParams Optional parameters. - * @return Google_Service_SASPortalTesting_SasPortalNode - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_SASPortalTesting_SasPortalNode"); - } - /** - * Lists nodes. (nodes.listCustomersNodes) - * - * @param string $parent Required. The parent resource name, for example, - * "nodes/1". - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A pagination token returned from a previous call - * to ListNodes method that indicates where this listing should continue from. - * @opt_param int pageSize The maximum number of nodes to return in the - * response. - * @return Google_Service_SASPortalTesting_SasPortalListNodesResponse - */ - public function listCustomersNodes($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_SASPortalTesting_SasPortalListNodesResponse"); - } - /** - * Moves a node under another node or customer. (nodes.move) - * - * @param string $name Required. The name of the node to move. - * @param Google_Service_SASPortalTesting_SasPortalMoveNodeRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_SASPortalTesting_SasPortalOperation - */ - public function move($name, Google_Service_SASPortalTesting_SasPortalMoveNodeRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('move', array($params), "Google_Service_SASPortalTesting_SasPortalOperation"); - } - /** - * Updates an existing node. (nodes.patch) - * - * @param string $name Output only. Resource name. - * @param Google_Service_SASPortalTesting_SasPortalNode $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Fields to be updated. - * @return Google_Service_SASPortalTesting_SasPortalNode - */ - public function patch($name, Google_Service_SASPortalTesting_SasPortalNode $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_SASPortalTesting_SasPortalNode"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/Resource/Installer.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/Resource/Installer.php deleted file mode 100644 index 75f96ee0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/Resource/Installer.php +++ /dev/null @@ -1,56 +0,0 @@ - - * $prod_tt_sasportalService = new Google_Service_SASPortalTesting(...); - * $installer = $prod_tt_sasportalService->installer; - * - */ -class Google_Service_SASPortalTesting_Resource_Installer extends Google_Service_Resource -{ - /** - * Generates a secret to be used with the ValidateInstaller method - * (installer.generateSecret) - * - * @param Google_Service_SASPortalTesting_SasPortalGenerateSecretRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_SASPortalTesting_SasPortalGenerateSecretResponse - */ - public function generateSecret(Google_Service_SASPortalTesting_SasPortalGenerateSecretRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('generateSecret', array($params), "Google_Service_SASPortalTesting_SasPortalGenerateSecretResponse"); - } - /** - * Validates the identity of a Certified Professional Installer (CPI). - * (installer.validate) - * - * @param Google_Service_SASPortalTesting_SasPortalValidateInstallerRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_SASPortalTesting_SasPortalValidateInstallerResponse - */ - public function validate(Google_Service_SASPortalTesting_SasPortalValidateInstallerRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('validate', array($params), "Google_Service_SASPortalTesting_SasPortalValidateInstallerResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/Resource/Nodes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/Resource/Nodes.php deleted file mode 100644 index db2e02df..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/Resource/Nodes.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $prod_tt_sasportalService = new Google_Service_SASPortalTesting(...); - * $nodes = $prod_tt_sasportalService->nodes; - * - */ -class Google_Service_SASPortalTesting_Resource_Nodes extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/Resource/NodesDevices.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/Resource/NodesDevices.php deleted file mode 100644 index 5c267b64..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/Resource/NodesDevices.php +++ /dev/null @@ -1,176 +0,0 @@ - - * $prod_tt_sasportalService = new Google_Service_SASPortalTesting(...); - * $devices = $prod_tt_sasportalService->devices; - * - */ -class Google_Service_SASPortalTesting_Resource_NodesDevices extends Google_Service_Resource -{ - /** - * Creates a device under a node or customer. Returned devices are unordered. - * (devices.bulk) - * - * @param string $parent Required. The name of the parent resource. - * @param Google_Service_SASPortalTesting_SasPortalBulkCreateDeviceRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_SASPortalTesting_SasPortalBulkCreateDeviceResponse - */ - public function bulk($parent, Google_Service_SASPortalTesting_SasPortalBulkCreateDeviceRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('bulk', array($params), "Google_Service_SASPortalTesting_SasPortalBulkCreateDeviceResponse"); - } - /** - * Creates a device under a node or customer. (devices.create) - * - * @param string $parent Required. The name of the parent resource. - * @param Google_Service_SASPortalTesting_SasPortalDevice $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_SASPortalTesting_SasPortalDevice - */ - public function create($parent, Google_Service_SASPortalTesting_SasPortalDevice $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_SASPortalTesting_SasPortalDevice"); - } - /** - * Creates a signed device under a node or customer. (devices.createSigned) - * - * @param string $parent Required. The name of the parent resource. - * @param Google_Service_SASPortalTesting_SasPortalCreateSignedDeviceRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_SASPortalTesting_SasPortalDevice - */ - public function createSigned($parent, Google_Service_SASPortalTesting_SasPortalCreateSignedDeviceRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('createSigned', array($params), "Google_Service_SASPortalTesting_SasPortalDevice"); - } - /** - * Deletes a device. (devices.delete) - * - * @param string $name Required. The name of the device. - * @param array $optParams Optional parameters. - * @return Google_Service_SASPortalTesting_SasPortalEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_SASPortalTesting_SasPortalEmpty"); - } - /** - * Gets details about a device. (devices.get) - * - * @param string $name Required. The name of the device. - * @param array $optParams Optional parameters. - * @return Google_Service_SASPortalTesting_SasPortalDevice - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_SASPortalTesting_SasPortalDevice"); - } - /** - * Lists devices under a node or customer. (devices.listNodesDevices) - * - * @param string $parent Required. The name of the parent resource. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A pagination token returned from a previous call - * to ListDevices that indicates where this listing should continue from. - * @opt_param int pageSize The maximum number of devices to return in the - * response. - * @opt_param string filter The filter expression. The filter should have one of - * the following formats: "sn=123454" or "display_name=MyDevice". sn corresponds - * to serial_number of the device. The filter is case insensitive. - * @return Google_Service_SASPortalTesting_SasPortalListDevicesResponse - */ - public function listNodesDevices($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_SASPortalTesting_SasPortalListDevicesResponse"); - } - /** - * Moves a device under another node or customer. (devices.move) - * - * @param string $name Required. The name of the device to move. - * @param Google_Service_SASPortalTesting_SasPortalMoveDeviceRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_SASPortalTesting_SasPortalOperation - */ - public function move($name, Google_Service_SASPortalTesting_SasPortalMoveDeviceRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('move', array($params), "Google_Service_SASPortalTesting_SasPortalOperation"); - } - /** - * Updates a device. (devices.patch) - * - * @param string $name Output only. The resource path name. - * @param Google_Service_SASPortalTesting_SasPortalDevice $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Fields to be updated. - * @return Google_Service_SASPortalTesting_SasPortalDevice - */ - public function patch($name, Google_Service_SASPortalTesting_SasPortalDevice $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_SASPortalTesting_SasPortalDevice"); - } - /** - * Signs a device. (devices.signDevice) - * - * @param string $name Output only. The resource path name. - * @param Google_Service_SASPortalTesting_SasPortalSignDeviceRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_SASPortalTesting_SasPortalEmpty - */ - public function signDevice($name, Google_Service_SASPortalTesting_SasPortalSignDeviceRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('signDevice', array($params), "Google_Service_SASPortalTesting_SasPortalEmpty"); - } - /** - * Updates a signed device. (devices.updateSigned) - * - * @param string $name Required. The name of the device to update. - * @param Google_Service_SASPortalTesting_SasPortalUpdateSignedDeviceRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_SASPortalTesting_SasPortalDevice - */ - public function updateSigned($name, Google_Service_SASPortalTesting_SasPortalUpdateSignedDeviceRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updateSigned', array($params), "Google_Service_SASPortalTesting_SasPortalDevice"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/Resource/NodesNodes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/Resource/NodesNodes.php deleted file mode 100644 index 20742d1f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/Resource/NodesNodes.php +++ /dev/null @@ -1,118 +0,0 @@ - - * $prod_tt_sasportalService = new Google_Service_SASPortalTesting(...); - * $nodes = $prod_tt_sasportalService->nodes; - * - */ -class Google_Service_SASPortalTesting_Resource_NodesNodes extends Google_Service_Resource -{ - /** - * Creates a new node. (nodes.create) - * - * @param string $parent Required. The parent resource name where the node is to - * be created. - * @param Google_Service_SASPortalTesting_SasPortalNode $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_SASPortalTesting_SasPortalNode - */ - public function create($parent, Google_Service_SASPortalTesting_SasPortalNode $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_SASPortalTesting_SasPortalNode"); - } - /** - * Deletes a node. (nodes.delete) - * - * @param string $name Required. The name of the node. - * @param array $optParams Optional parameters. - * @return Google_Service_SASPortalTesting_SasPortalEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_SASPortalTesting_SasPortalEmpty"); - } - /** - * Returns a requested node. (nodes.get) - * - * @param string $name Required. The name of the node. - * @param array $optParams Optional parameters. - * @return Google_Service_SASPortalTesting_SasPortalNode - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_SASPortalTesting_SasPortalNode"); - } - /** - * Lists nodes. (nodes.listNodesNodes) - * - * @param string $parent Required. The parent resource name, for example, - * "nodes/1". - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A pagination token returned from a previous call - * to ListNodes method that indicates where this listing should continue from. - * @opt_param int pageSize The maximum number of nodes to return in the - * response. - * @return Google_Service_SASPortalTesting_SasPortalListNodesResponse - */ - public function listNodesNodes($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_SASPortalTesting_SasPortalListNodesResponse"); - } - /** - * Moves a node under another node or customer. (nodes.move) - * - * @param string $name Required. The name of the node to move. - * @param Google_Service_SASPortalTesting_SasPortalMoveNodeRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_SASPortalTesting_SasPortalOperation - */ - public function move($name, Google_Service_SASPortalTesting_SasPortalMoveNodeRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('move', array($params), "Google_Service_SASPortalTesting_SasPortalOperation"); - } - /** - * Updates an existing node. (nodes.patch) - * - * @param string $name Output only. Resource name. - * @param Google_Service_SASPortalTesting_SasPortalNode $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Fields to be updated. - * @return Google_Service_SASPortalTesting_SasPortalNode - */ - public function patch($name, Google_Service_SASPortalTesting_SasPortalNode $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_SASPortalTesting_SasPortalNode"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/Resource/Policies.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/Resource/Policies.php deleted file mode 100644 index 908a9538..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/Resource/Policies.php +++ /dev/null @@ -1,70 +0,0 @@ - - * $prod_tt_sasportalService = new Google_Service_SASPortalTesting(...); - * $policies = $prod_tt_sasportalService->policies; - * - */ -class Google_Service_SASPortalTesting_Resource_Policies extends Google_Service_Resource -{ - /** - * Gets the access control policy for a resource. Returns an empty policy if the - * resource exists and does not have a policy set. (policies.get) - * - * @param Google_Service_SASPortalTesting_SasPortalGetPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_SASPortalTesting_SasPortalPolicy - */ - public function get(Google_Service_SASPortalTesting_SasPortalGetPolicyRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_SASPortalTesting_SasPortalPolicy"); - } - /** - * Sets the access control policy on the specified resource. Replaces any - * existing policy. (policies.set) - * - * @param Google_Service_SASPortalTesting_SasPortalSetPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_SASPortalTesting_SasPortalPolicy - */ - public function set(Google_Service_SASPortalTesting_SasPortalSetPolicyRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('set', array($params), "Google_Service_SASPortalTesting_SasPortalPolicy"); - } - /** - * Returns permissions that a caller has on the specified resource. - * (policies.test) - * - * @param Google_Service_SASPortalTesting_SasPortalTestPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_SASPortalTesting_SasPortalTestPermissionsResponse - */ - public function test(Google_Service_SASPortalTesting_SasPortalTestPermissionsRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('test', array($params), "Google_Service_SASPortalTesting_SasPortalTestPermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalAssignment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalAssignment.php deleted file mode 100644 index 4162e37a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalAssignment.php +++ /dev/null @@ -1,40 +0,0 @@ -members = $members; - } - public function getMembers() - { - return $this->members; - } - public function setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalBulkCreateDeviceRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalBulkCreateDeviceRequest.php deleted file mode 100644 index 318f1931..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalBulkCreateDeviceRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -csv = $csv; - } - public function getCsv() - { - return $this->csv; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalBulkCreateDeviceResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalBulkCreateDeviceResponse.php deleted file mode 100644 index f4c36876..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalBulkCreateDeviceResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -devices = $devices; - } - /** - * @return Google_Service_SASPortalTesting_SasPortalDevice - */ - public function getDevices() - { - return $this->devices; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalCreateSignedDeviceRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalCreateSignedDeviceRequest.php deleted file mode 100644 index 79738c70..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalCreateSignedDeviceRequest.php +++ /dev/null @@ -1,39 +0,0 @@ -encodedDevice = $encodedDevice; - } - public function getEncodedDevice() - { - return $this->encodedDevice; - } - public function setInstallerId($installerId) - { - $this->installerId = $installerId; - } - public function getInstallerId() - { - return $this->installerId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalCustomer.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalCustomer.php deleted file mode 100644 index 3168f20f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalCustomer.php +++ /dev/null @@ -1,49 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setSasUserIds($sasUserIds) - { - $this->sasUserIds = $sasUserIds; - } - public function getSasUserIds() - { - return $this->sasUserIds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalDevice.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalDevice.php deleted file mode 100644 index c0900d62..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalDevice.php +++ /dev/null @@ -1,115 +0,0 @@ -activeConfig = $activeConfig; - } - /** - * @return Google_Service_SASPortalTesting_SasPortalDeviceConfig - */ - public function getActiveConfig() - { - return $this->activeConfig; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setFccId($fccId) - { - $this->fccId = $fccId; - } - public function getFccId() - { - return $this->fccId; - } - /** - * @param Google_Service_SASPortalTesting_SasPortalDeviceGrant - */ - public function setGrants($grants) - { - $this->grants = $grants; - } - /** - * @return Google_Service_SASPortalTesting_SasPortalDeviceGrant - */ - public function getGrants() - { - return $this->grants; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_SASPortalTesting_SasPortalDeviceConfig - */ - public function setPreloadedConfig(Google_Service_SASPortalTesting_SasPortalDeviceConfig $preloadedConfig) - { - $this->preloadedConfig = $preloadedConfig; - } - /** - * @return Google_Service_SASPortalTesting_SasPortalDeviceConfig - */ - public function getPreloadedConfig() - { - return $this->preloadedConfig; - } - public function setSerialNumber($serialNumber) - { - $this->serialNumber = $serialNumber; - } - public function getSerialNumber() - { - return $this->serialNumber; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalDeviceAirInterface.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalDeviceAirInterface.php deleted file mode 100644 index fca5317d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalDeviceAirInterface.php +++ /dev/null @@ -1,39 +0,0 @@ -radioTechnology = $radioTechnology; - } - public function getRadioTechnology() - { - return $this->radioTechnology; - } - public function setSupportedSpec($supportedSpec) - { - $this->supportedSpec = $supportedSpec; - } - public function getSupportedSpec() - { - return $this->supportedSpec; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalDeviceConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalDeviceConfig.php deleted file mode 100644 index 9f599e81..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalDeviceConfig.php +++ /dev/null @@ -1,133 +0,0 @@ -airInterface = $airInterface; - } - /** - * @return Google_Service_SASPortalTesting_SasPortalDeviceAirInterface - */ - public function getAirInterface() - { - return $this->airInterface; - } - public function setCallSign($callSign) - { - $this->callSign = $callSign; - } - public function getCallSign() - { - return $this->callSign; - } - public function setCategory($category) - { - $this->category = $category; - } - public function getCategory() - { - return $this->category; - } - /** - * @param Google_Service_SASPortalTesting_SasPortalInstallationParams - */ - public function setInstallationParams(Google_Service_SASPortalTesting_SasPortalInstallationParams $installationParams) - { - $this->installationParams = $installationParams; - } - /** - * @return Google_Service_SASPortalTesting_SasPortalInstallationParams - */ - public function getInstallationParams() - { - return $this->installationParams; - } - public function setIsSigned($isSigned) - { - $this->isSigned = $isSigned; - } - public function getIsSigned() - { - return $this->isSigned; - } - public function setMeasurementCapabilities($measurementCapabilities) - { - $this->measurementCapabilities = $measurementCapabilities; - } - public function getMeasurementCapabilities() - { - return $this->measurementCapabilities; - } - /** - * @param Google_Service_SASPortalTesting_SasPortalDeviceModel - */ - public function setModel(Google_Service_SASPortalTesting_SasPortalDeviceModel $model) - { - $this->model = $model; - } - /** - * @return Google_Service_SASPortalTesting_SasPortalDeviceModel - */ - public function getModel() - { - return $this->model; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } - public function setUserId($userId) - { - $this->userId = $userId; - } - public function getUserId() - { - return $this->userId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalDeviceGrant.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalDeviceGrant.php deleted file mode 100644 index b293e7af..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalDeviceGrant.php +++ /dev/null @@ -1,90 +0,0 @@ -channelType = $channelType; - } - public function getChannelType() - { - return $this->channelType; - } - public function setExpireTime($expireTime) - { - $this->expireTime = $expireTime; - } - public function getExpireTime() - { - return $this->expireTime; - } - /** - * @param Google_Service_SASPortalTesting_SasPortalFrequencyRange - */ - public function setFrequencyRange(Google_Service_SASPortalTesting_SasPortalFrequencyRange $frequencyRange) - { - $this->frequencyRange = $frequencyRange; - } - /** - * @return Google_Service_SASPortalTesting_SasPortalFrequencyRange - */ - public function getFrequencyRange() - { - return $this->frequencyRange; - } - public function setMaxEirp($maxEirp) - { - $this->maxEirp = $maxEirp; - } - public function getMaxEirp() - { - return $this->maxEirp; - } - /** - * @param Google_Service_SASPortalTesting_SasPortalDpaMoveList - */ - public function setMoveList($moveList) - { - $this->moveList = $moveList; - } - /** - * @return Google_Service_SASPortalTesting_SasPortalDpaMoveList - */ - public function getMoveList() - { - return $this->moveList; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalDeviceModel.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalDeviceModel.php deleted file mode 100644 index 26756c8f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalDeviceModel.php +++ /dev/null @@ -1,66 +0,0 @@ -firmwareVersion = $firmwareVersion; - } - public function getFirmwareVersion() - { - return $this->firmwareVersion; - } - public function setHardwareVersion($hardwareVersion) - { - $this->hardwareVersion = $hardwareVersion; - } - public function getHardwareVersion() - { - return $this->hardwareVersion; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setSoftwareVersion($softwareVersion) - { - $this->softwareVersion = $softwareVersion; - } - public function getSoftwareVersion() - { - return $this->softwareVersion; - } - public function setVendor($vendor) - { - $this->vendor = $vendor; - } - public function getVendor() - { - return $this->vendor; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalDpaMoveList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalDpaMoveList.php deleted file mode 100644 index 74308c9b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalDpaMoveList.php +++ /dev/null @@ -1,46 +0,0 @@ -dpaId = $dpaId; - } - public function getDpaId() - { - return $this->dpaId; - } - /** - * @param Google_Service_SASPortalTesting_SasPortalFrequencyRange - */ - public function setFrequencyRange(Google_Service_SASPortalTesting_SasPortalFrequencyRange $frequencyRange) - { - $this->frequencyRange = $frequencyRange; - } - /** - * @return Google_Service_SASPortalTesting_SasPortalFrequencyRange - */ - public function getFrequencyRange() - { - return $this->frequencyRange; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalEmpty.php deleted file mode 100644 index d550e302..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -highFrequencyMhz = $highFrequencyMhz; - } - public function getHighFrequencyMhz() - { - return $this->highFrequencyMhz; - } - public function setLowFrequencyMhz($lowFrequencyMhz) - { - $this->lowFrequencyMhz = $lowFrequencyMhz; - } - public function getLowFrequencyMhz() - { - return $this->lowFrequencyMhz; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalGenerateSecretRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalGenerateSecretRequest.php deleted file mode 100644 index fabe9b4d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalGenerateSecretRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -secret = $secret; - } - public function getSecret() - { - return $this->secret; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalGetPolicyRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalGetPolicyRequest.php deleted file mode 100644 index 19ae5064..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalGetPolicyRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -resource = $resource; - } - public function getResource() - { - return $this->resource; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalInstallationParams.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalInstallationParams.php deleted file mode 100644 index 0f36b8b4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalInstallationParams.php +++ /dev/null @@ -1,138 +0,0 @@ -antennaAzimuth = $antennaAzimuth; - } - public function getAntennaAzimuth() - { - return $this->antennaAzimuth; - } - public function setAntennaBeamwidth($antennaBeamwidth) - { - $this->antennaBeamwidth = $antennaBeamwidth; - } - public function getAntennaBeamwidth() - { - return $this->antennaBeamwidth; - } - public function setAntennaDowntilt($antennaDowntilt) - { - $this->antennaDowntilt = $antennaDowntilt; - } - public function getAntennaDowntilt() - { - return $this->antennaDowntilt; - } - public function setAntennaGain($antennaGain) - { - $this->antennaGain = $antennaGain; - } - public function getAntennaGain() - { - return $this->antennaGain; - } - public function setAntennaModel($antennaModel) - { - $this->antennaModel = $antennaModel; - } - public function getAntennaModel() - { - return $this->antennaModel; - } - public function setEirpCapability($eirpCapability) - { - $this->eirpCapability = $eirpCapability; - } - public function getEirpCapability() - { - return $this->eirpCapability; - } - public function setHeight($height) - { - $this->height = $height; - } - public function getHeight() - { - return $this->height; - } - public function setHeightType($heightType) - { - $this->heightType = $heightType; - } - public function getHeightType() - { - return $this->heightType; - } - public function setHorizontalAccuracy($horizontalAccuracy) - { - $this->horizontalAccuracy = $horizontalAccuracy; - } - public function getHorizontalAccuracy() - { - return $this->horizontalAccuracy; - } - public function setIndoorDeployment($indoorDeployment) - { - $this->indoorDeployment = $indoorDeployment; - } - public function getIndoorDeployment() - { - return $this->indoorDeployment; - } - public function setLatitude($latitude) - { - $this->latitude = $latitude; - } - public function getLatitude() - { - return $this->latitude; - } - public function setLongitude($longitude) - { - $this->longitude = $longitude; - } - public function getLongitude() - { - return $this->longitude; - } - public function setVerticalAccuracy($verticalAccuracy) - { - $this->verticalAccuracy = $verticalAccuracy; - } - public function getVerticalAccuracy() - { - return $this->verticalAccuracy; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalListCustomersResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalListCustomersResponse.php deleted file mode 100644 index 15bab37e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalListCustomersResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -customers = $customers; - } - /** - * @return Google_Service_SASPortalTesting_SasPortalCustomer - */ - public function getCustomers() - { - return $this->customers; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalListDevicesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalListDevicesResponse.php deleted file mode 100644 index fbfed0c6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalListDevicesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -devices = $devices; - } - /** - * @return Google_Service_SASPortalTesting_SasPortalDevice - */ - public function getDevices() - { - return $this->devices; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalListNodesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalListNodesResponse.php deleted file mode 100644 index dde2e96e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalListNodesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_SASPortalTesting_SasPortalNode - */ - public function setNodes($nodes) - { - $this->nodes = $nodes; - } - /** - * @return Google_Service_SASPortalTesting_SasPortalNode - */ - public function getNodes() - { - return $this->nodes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalMoveDeviceRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalMoveDeviceRequest.php deleted file mode 100644 index 087724e5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalMoveDeviceRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -destination = $destination; - } - public function getDestination() - { - return $this->destination; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalMoveNodeRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalMoveNodeRequest.php deleted file mode 100644 index 42f76b3c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalMoveNodeRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -destination = $destination; - } - public function getDestination() - { - return $this->destination; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalNode.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalNode.php deleted file mode 100644 index f8d6cd01..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalNode.php +++ /dev/null @@ -1,49 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setSasUserIds($sasUserIds) - { - $this->sasUserIds = $sasUserIds; - } - public function getSasUserIds() - { - return $this->sasUserIds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalOperation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalOperation.php deleted file mode 100644 index 9eaab778..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalOperation.php +++ /dev/null @@ -1,73 +0,0 @@ -done = $done; - } - public function getDone() - { - return $this->done; - } - /** - * @param Google_Service_SASPortalTesting_SasPortalStatus - */ - public function setError(Google_Service_SASPortalTesting_SasPortalStatus $error) - { - $this->error = $error; - } - /** - * @return Google_Service_SASPortalTesting_SasPortalStatus - */ - public function getError() - { - return $this->error; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalPolicy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalPolicy.php deleted file mode 100644 index 8693d010..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalPolicy.php +++ /dev/null @@ -1,47 +0,0 @@ -assignments = $assignments; - } - /** - * @return Google_Service_SASPortalTesting_SasPortalAssignment - */ - public function getAssignments() - { - return $this->assignments; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalSetPolicyRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalSetPolicyRequest.php deleted file mode 100644 index 3ef83d90..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalSetPolicyRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -policy = $policy; - } - /** - * @return Google_Service_SASPortalTesting_SasPortalPolicy - */ - public function getPolicy() - { - return $this->policy; - } - public function setResource($resource) - { - $this->resource = $resource; - } - public function getResource() - { - return $this->resource; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalSignDeviceRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalSignDeviceRequest.php deleted file mode 100644 index 976506cc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalSignDeviceRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -device = $device; - } - /** - * @return Google_Service_SASPortalTesting_SasPortalDevice - */ - public function getDevice() - { - return $this->device; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalStatus.php deleted file mode 100644 index 72bd3ffa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalStatus.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalTestPermissionsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalTestPermissionsRequest.php deleted file mode 100644 index eef63657..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalTestPermissionsRequest.php +++ /dev/null @@ -1,40 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } - public function setResource($resource) - { - $this->resource = $resource; - } - public function getResource() - { - return $this->resource; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalTestPermissionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalTestPermissionsResponse.php deleted file mode 100644 index d7c9222b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalTestPermissionsResponse.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalUpdateSignedDeviceRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalUpdateSignedDeviceRequest.php deleted file mode 100644 index 579cea08..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalUpdateSignedDeviceRequest.php +++ /dev/null @@ -1,39 +0,0 @@ -encodedDevice = $encodedDevice; - } - public function getEncodedDevice() - { - return $this->encodedDevice; - } - public function setInstallerId($installerId) - { - $this->installerId = $installerId; - } - public function getInstallerId() - { - return $this->installerId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalValidateInstallerRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalValidateInstallerRequest.php deleted file mode 100644 index d8b914db..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalValidateInstallerRequest.php +++ /dev/null @@ -1,48 +0,0 @@ -encodedSecret = $encodedSecret; - } - public function getEncodedSecret() - { - return $this->encodedSecret; - } - public function setInstallerId($installerId) - { - $this->installerId = $installerId; - } - public function getInstallerId() - { - return $this->installerId; - } - public function setSecret($secret) - { - $this->secret = $secret; - } - public function getSecret() - { - return $this->secret; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalValidateInstallerResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalValidateInstallerResponse.php deleted file mode 100644 index bcca1548..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SASPortalTesting/SasPortalValidateInstallerResponse.php +++ /dev/null @@ -1,20 +0,0 @@ - - * API for Cloud SQL database instance management

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_SQLAdmin extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** Manage your Google SQL Service instances. */ - const SQLSERVICE_ADMIN = - "https://www.googleapis.com/auth/sqlservice.admin"; - - public $backupRuns; - public $databases; - public $flags; - public $instances; - public $operations; - public $projects_instances; - public $projects_locations_instances; - public $sslCerts; - public $tiers; - public $users; - - /** - * Constructs the internal representation of the SQLAdmin service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://sqladmin.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1beta4'; - $this->serviceName = 'sql'; - - $this->backupRuns = new Google_Service_SQLAdmin_Resource_BackupRuns( - $this, - $this->serviceName, - 'backupRuns', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'sql/v1beta4/projects/{project}/instances/{instance}/backupRuns/{id}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resourceName' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'sql/v1beta4/projects/{project}/instances/{instance}/backupRuns/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resourceName' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'insert' => array( - 'path' => 'sql/v1beta4/projects/{project}/instances/{instance}/backupRuns', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'parent' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'sql/v1beta4/projects/{project}/instances/{instance}/backupRuns', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'parent' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->databases = new Google_Service_SQLAdmin_Resource_Databases( - $this, - $this->serviceName, - 'databases', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'sql/v1beta4/projects/{project}/instances/{instance}/databases/{database}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'database' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resourceName' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'sql/v1beta4/projects/{project}/instances/{instance}/databases/{database}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'database' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resourceName' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'insert' => array( - 'path' => 'sql/v1beta4/projects/{project}/instances/{instance}/databases', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'parent' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'sql/v1beta4/projects/{project}/instances/{instance}/databases', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'parent' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'sql/v1beta4/projects/{project}/instances/{instance}/databases/{database}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'database' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resourceName' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'sql/v1beta4/projects/{project}/instances/{instance}/databases/{database}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'database' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resourceName' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->flags = new Google_Service_SQLAdmin_Resource_Flags( - $this, - $this->serviceName, - 'flags', - array( - 'methods' => array( - 'list' => array( - 'path' => 'sql/v1beta4/flags', - 'httpMethod' => 'GET', - 'parameters' => array( - 'databaseVersion' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->instances = new Google_Service_SQLAdmin_Resource_Instances( - $this, - $this->serviceName, - 'instances', - array( - 'methods' => array( - 'addServerCa' => array( - 'path' => 'sql/v1beta4/projects/{project}/instances/{instance}/addServerCa', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'parent' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'clone' => array( - 'path' => 'sql/v1beta4/projects/{project}/instances/{instance}/clone', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'parent' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => 'sql/v1beta4/projects/{project}/instances/{instance}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resourceName' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'demoteMaster' => array( - 'path' => 'sql/v1beta4/projects/{project}/instances/{instance}/demoteMaster', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'parent' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'export' => array( - 'path' => 'sql/v1beta4/projects/{project}/instances/{instance}/export', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'parent' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'failover' => array( - 'path' => 'sql/v1beta4/projects/{project}/instances/{instance}/failover', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'parent' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'sql/v1beta4/projects/{project}/instances/{instance}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resourceName' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'import' => array( - 'path' => 'sql/v1beta4/projects/{project}/instances/{instance}/import', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'parent' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'insert' => array( - 'path' => 'sql/v1beta4/projects/{project}/instances', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'parent' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'sql/v1beta4/projects/{project}/instances', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'parent' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'listServerCas' => array( - 'path' => 'sql/v1beta4/projects/{project}/instances/{instance}/listServerCas', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'parent' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'sql/v1beta4/projects/{project}/instances/{instance}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resourceName' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'promoteReplica' => array( - 'path' => 'sql/v1beta4/projects/{project}/instances/{instance}/promoteReplica', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'parent' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'resetSslConfig' => array( - 'path' => 'sql/v1beta4/projects/{project}/instances/{instance}/resetSslConfig', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'parent' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'restart' => array( - 'path' => 'sql/v1beta4/projects/{project}/instances/{instance}/restart', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'parent' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'restoreBackup' => array( - 'path' => 'sql/v1beta4/projects/{project}/instances/{instance}/restoreBackup', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'parent' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'rotateServerCa' => array( - 'path' => 'sql/v1beta4/projects/{project}/instances/{instance}/rotateServerCa', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'parent' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'startReplica' => array( - 'path' => 'sql/v1beta4/projects/{project}/instances/{instance}/startReplica', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'parent' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'stopReplica' => array( - 'path' => 'sql/v1beta4/projects/{project}/instances/{instance}/stopReplica', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'parent' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'truncateLog' => array( - 'path' => 'sql/v1beta4/projects/{project}/instances/{instance}/truncateLog', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'parent' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'sql/v1beta4/projects/{project}/instances/{instance}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resourceName' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->operations = new Google_Service_SQLAdmin_Resource_Operations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'get' => array( - 'path' => 'sql/v1beta4/projects/{project}/operations/{operation}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'operation' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resourceName' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'sql/v1beta4/projects/{project}/operations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'parent' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'instance' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_instances = new Google_Service_SQLAdmin_Resource_ProjectsInstances( - $this, - $this->serviceName, - 'instances', - array( - 'methods' => array( - 'rescheduleMaintenance' => array( - 'path' => 'sql/v1beta4/projects/{project}/instances/{instance}/rescheduleMaintenance', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'parent' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'startExternalSync' => array( - 'path' => 'sql/v1beta4/projects/{project}/instances/{instance}/startExternalSync', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'syncMode' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'parent' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'verifyExternalSyncSettings' => array( - 'path' => 'sql/v1beta4/projects/{project}/instances/{instance}/verifyExternalSyncSettings', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'syncMode' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'parent' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'verifyConnectionOnly' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ), - ) - ) - ); - $this->projects_locations_instances = new Google_Service_SQLAdmin_Resource_ProjectsLocationsInstances( - $this, - $this->serviceName, - 'instances', - array( - 'methods' => array( - 'rescheduleMaintenance' => array( - 'path' => 'sql/v1beta4/{+parent}/rescheduleMaintenance', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'project' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'startExternalSync' => array( - 'path' => 'sql/v1beta4/{+parent}/startExternalSync', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'project' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'syncMode' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'instance' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'verifyExternalSyncSettings' => array( - 'path' => 'sql/v1beta4/{+parent}/verifyExternalSyncSettings', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'verifyConnectionOnly' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'instance' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'project' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'syncMode' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->sslCerts = new Google_Service_SQLAdmin_Resource_SslCerts( - $this, - $this->serviceName, - 'sslCerts', - array( - 'methods' => array( - 'createEphemeral' => array( - 'path' => 'sql/v1beta4/projects/{project}/instances/{instance}/createEphemeral', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'parent' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => 'sql/v1beta4/projects/{project}/instances/{instance}/sslCerts/{sha1Fingerprint}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sha1Fingerprint' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resourceName' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'sql/v1beta4/projects/{project}/instances/{instance}/sslCerts/{sha1Fingerprint}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sha1Fingerprint' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'resourceName' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'insert' => array( - 'path' => 'sql/v1beta4/projects/{project}/instances/{instance}/sslCerts', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'parent' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'sql/v1beta4/projects/{project}/instances/{instance}/sslCerts', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'parent' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->tiers = new Google_Service_SQLAdmin_Resource_Tiers( - $this, - $this->serviceName, - 'tiers', - array( - 'methods' => array( - 'list' => array( - 'path' => 'sql/v1beta4/projects/{project}/tiers', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->users = new Google_Service_SQLAdmin_Resource_Users( - $this, - $this->serviceName, - 'users', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'sql/v1beta4/projects/{project}/instances/{instance}/users', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'name' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'resourceName' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'host' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'insert' => array( - 'path' => 'sql/v1beta4/projects/{project}/instances/{instance}/users', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'parent' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'sql/v1beta4/projects/{project}/instances/{instance}/users', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'parent' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'sql/v1beta4/projects/{project}/instances/{instance}/users', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'instance' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'name' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'resourceName' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'host' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/AclEntry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/AclEntry.php deleted file mode 100644 index 1fe9239f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/AclEntry.php +++ /dev/null @@ -1,57 +0,0 @@ -expirationTime = $expirationTime; - } - public function getExpirationTime() - { - return $this->expirationTime; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/ApiWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/ApiWarning.php deleted file mode 100644 index 03bc9bcb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/ApiWarning.php +++ /dev/null @@ -1,39 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/BackupConfiguration.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/BackupConfiguration.php deleted file mode 100644 index 27513bbc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/BackupConfiguration.php +++ /dev/null @@ -1,84 +0,0 @@ -binaryLogEnabled = $binaryLogEnabled; - } - public function getBinaryLogEnabled() - { - return $this->binaryLogEnabled; - } - public function setEnabled($enabled) - { - $this->enabled = $enabled; - } - public function getEnabled() - { - return $this->enabled; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setPointInTimeRecoveryEnabled($pointInTimeRecoveryEnabled) - { - $this->pointInTimeRecoveryEnabled = $pointInTimeRecoveryEnabled; - } - public function getPointInTimeRecoveryEnabled() - { - return $this->pointInTimeRecoveryEnabled; - } - public function setReplicationLogArchivingEnabled($replicationLogArchivingEnabled) - { - $this->replicationLogArchivingEnabled = $replicationLogArchivingEnabled; - } - public function getReplicationLogArchivingEnabled() - { - return $this->replicationLogArchivingEnabled; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/BackupRun.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/BackupRun.php deleted file mode 100644 index 32db5225..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/BackupRun.php +++ /dev/null @@ -1,177 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - /** - * @param Google_Service_SQLAdmin_DiskEncryptionConfiguration - */ - public function setDiskEncryptionConfiguration(Google_Service_SQLAdmin_DiskEncryptionConfiguration $diskEncryptionConfiguration) - { - $this->diskEncryptionConfiguration = $diskEncryptionConfiguration; - } - /** - * @return Google_Service_SQLAdmin_DiskEncryptionConfiguration - */ - public function getDiskEncryptionConfiguration() - { - return $this->diskEncryptionConfiguration; - } - /** - * @param Google_Service_SQLAdmin_DiskEncryptionStatus - */ - public function setDiskEncryptionStatus(Google_Service_SQLAdmin_DiskEncryptionStatus $diskEncryptionStatus) - { - $this->diskEncryptionStatus = $diskEncryptionStatus; - } - /** - * @return Google_Service_SQLAdmin_DiskEncryptionStatus - */ - public function getDiskEncryptionStatus() - { - return $this->diskEncryptionStatus; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setEnqueuedTime($enqueuedTime) - { - $this->enqueuedTime = $enqueuedTime; - } - public function getEnqueuedTime() - { - return $this->enqueuedTime; - } - /** - * @param Google_Service_SQLAdmin_OperationError - */ - public function setError(Google_Service_SQLAdmin_OperationError $error) - { - $this->error = $error; - } - /** - * @return Google_Service_SQLAdmin_OperationError - */ - public function getError() - { - return $this->error; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setInstance($instance) - { - $this->instance = $instance; - } - public function getInstance() - { - return $this->instance; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - 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 setWindowStartTime($windowStartTime) - { - $this->windowStartTime = $windowStartTime; - } - public function getWindowStartTime() - { - return $this->windowStartTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/BackupRunsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/BackupRunsListResponse.php deleted file mode 100644 index b40b321f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/BackupRunsListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_SQLAdmin_BackupRun - */ - public function getItems() - { - return $this->items; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/BinLogCoordinates.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/BinLogCoordinates.php deleted file mode 100644 index 071b53ae..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/BinLogCoordinates.php +++ /dev/null @@ -1,48 +0,0 @@ -binLogFileName = $binLogFileName; - } - public function getBinLogFileName() - { - return $this->binLogFileName; - } - public function setBinLogPosition($binLogPosition) - { - $this->binLogPosition = $binLogPosition; - } - public function getBinLogPosition() - { - return $this->binLogPosition; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/CloneContext.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/CloneContext.php deleted file mode 100644 index 5452bb6b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/CloneContext.php +++ /dev/null @@ -1,73 +0,0 @@ -binLogCoordinates = $binLogCoordinates; - } - /** - * @return Google_Service_SQLAdmin_BinLogCoordinates - */ - public function getBinLogCoordinates() - { - return $this->binLogCoordinates; - } - public function setDestinationInstanceName($destinationInstanceName) - { - $this->destinationInstanceName = $destinationInstanceName; - } - public function getDestinationInstanceName() - { - return $this->destinationInstanceName; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setPitrTimestampMs($pitrTimestampMs) - { - $this->pitrTimestampMs = $pitrTimestampMs; - } - public function getPitrTimestampMs() - { - return $this->pitrTimestampMs; - } - public function setPointInTime($pointInTime) - { - $this->pointInTime = $pointInTime; - } - public function getPointInTime() - { - return $this->pointInTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/Database.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/Database.php deleted file mode 100644 index cc0493ea..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/Database.php +++ /dev/null @@ -1,109 +0,0 @@ -charset = $charset; - } - public function getCharset() - { - return $this->charset; - } - public function setCollation($collation) - { - $this->collation = $collation; - } - public function getCollation() - { - return $this->collation; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setInstance($instance) - { - $this->instance = $instance; - } - public function getInstance() - { - return $this->instance; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setProject($project) - { - $this->project = $project; - } - public function getProject() - { - return $this->project; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_SQLAdmin_SqlServerDatabaseDetails - */ - public function setSqlserverDatabaseDetails(Google_Service_SQLAdmin_SqlServerDatabaseDetails $sqlserverDatabaseDetails) - { - $this->sqlserverDatabaseDetails = $sqlserverDatabaseDetails; - } - /** - * @return Google_Service_SQLAdmin_SqlServerDatabaseDetails - */ - public function getSqlserverDatabaseDetails() - { - return $this->sqlserverDatabaseDetails; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/DatabaseFlags.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/DatabaseFlags.php deleted file mode 100644 index fc51d5f6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/DatabaseFlags.php +++ /dev/null @@ -1,39 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/DatabaseInstance.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/DatabaseInstance.php deleted file mode 100644 index b255c1d7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/DatabaseInstance.php +++ /dev/null @@ -1,346 +0,0 @@ -backendType = $backendType; - } - public function getBackendType() - { - return $this->backendType; - } - public function setConnectionName($connectionName) - { - $this->connectionName = $connectionName; - } - public function getConnectionName() - { - return $this->connectionName; - } - public function setCurrentDiskSize($currentDiskSize) - { - $this->currentDiskSize = $currentDiskSize; - } - public function getCurrentDiskSize() - { - return $this->currentDiskSize; - } - public function setDatabaseVersion($databaseVersion) - { - $this->databaseVersion = $databaseVersion; - } - public function getDatabaseVersion() - { - return $this->databaseVersion; - } - /** - * @param Google_Service_SQLAdmin_DiskEncryptionConfiguration - */ - public function setDiskEncryptionConfiguration(Google_Service_SQLAdmin_DiskEncryptionConfiguration $diskEncryptionConfiguration) - { - $this->diskEncryptionConfiguration = $diskEncryptionConfiguration; - } - /** - * @return Google_Service_SQLAdmin_DiskEncryptionConfiguration - */ - public function getDiskEncryptionConfiguration() - { - return $this->diskEncryptionConfiguration; - } - /** - * @param Google_Service_SQLAdmin_DiskEncryptionStatus - */ - public function setDiskEncryptionStatus(Google_Service_SQLAdmin_DiskEncryptionStatus $diskEncryptionStatus) - { - $this->diskEncryptionStatus = $diskEncryptionStatus; - } - /** - * @return Google_Service_SQLAdmin_DiskEncryptionStatus - */ - public function getDiskEncryptionStatus() - { - return $this->diskEncryptionStatus; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_SQLAdmin_DatabaseInstanceFailoverReplica - */ - public function setFailoverReplica(Google_Service_SQLAdmin_DatabaseInstanceFailoverReplica $failoverReplica) - { - $this->failoverReplica = $failoverReplica; - } - /** - * @return Google_Service_SQLAdmin_DatabaseInstanceFailoverReplica - */ - public function getFailoverReplica() - { - return $this->failoverReplica; - } - public function setGceZone($gceZone) - { - $this->gceZone = $gceZone; - } - public function getGceZone() - { - return $this->gceZone; - } - public function setInstanceType($instanceType) - { - $this->instanceType = $instanceType; - } - public function getInstanceType() - { - return $this->instanceType; - } - /** - * @param Google_Service_SQLAdmin_IpMapping - */ - public function setIpAddresses($ipAddresses) - { - $this->ipAddresses = $ipAddresses; - } - /** - * @return Google_Service_SQLAdmin_IpMapping - */ - public function getIpAddresses() - { - return $this->ipAddresses; - } - public function setIpv6Address($ipv6Address) - { - $this->ipv6Address = $ipv6Address; - } - public function getIpv6Address() - { - return $this->ipv6Address; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setMasterInstanceName($masterInstanceName) - { - $this->masterInstanceName = $masterInstanceName; - } - public function getMasterInstanceName() - { - return $this->masterInstanceName; - } - public function setMaxDiskSize($maxDiskSize) - { - $this->maxDiskSize = $maxDiskSize; - } - public function getMaxDiskSize() - { - return $this->maxDiskSize; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_SQLAdmin_OnPremisesConfiguration - */ - public function setOnPremisesConfiguration(Google_Service_SQLAdmin_OnPremisesConfiguration $onPremisesConfiguration) - { - $this->onPremisesConfiguration = $onPremisesConfiguration; - } - /** - * @return Google_Service_SQLAdmin_OnPremisesConfiguration - */ - public function getOnPremisesConfiguration() - { - return $this->onPremisesConfiguration; - } - public function setProject($project) - { - $this->project = $project; - } - public function getProject() - { - return $this->project; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - /** - * @param Google_Service_SQLAdmin_ReplicaConfiguration - */ - public function setReplicaConfiguration(Google_Service_SQLAdmin_ReplicaConfiguration $replicaConfiguration) - { - $this->replicaConfiguration = $replicaConfiguration; - } - /** - * @return Google_Service_SQLAdmin_ReplicaConfiguration - */ - public function getReplicaConfiguration() - { - return $this->replicaConfiguration; - } - public function setReplicaNames($replicaNames) - { - $this->replicaNames = $replicaNames; - } - public function getReplicaNames() - { - return $this->replicaNames; - } - public function setRootPassword($rootPassword) - { - $this->rootPassword = $rootPassword; - } - public function getRootPassword() - { - return $this->rootPassword; - } - /** - * @param Google_Service_SQLAdmin_SqlScheduledMaintenance - */ - public function setScheduledMaintenance(Google_Service_SQLAdmin_SqlScheduledMaintenance $scheduledMaintenance) - { - $this->scheduledMaintenance = $scheduledMaintenance; - } - /** - * @return Google_Service_SQLAdmin_SqlScheduledMaintenance - */ - public function getScheduledMaintenance() - { - return $this->scheduledMaintenance; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - /** - * @param Google_Service_SQLAdmin_SslCert - */ - public function setServerCaCert(Google_Service_SQLAdmin_SslCert $serverCaCert) - { - $this->serverCaCert = $serverCaCert; - } - /** - * @return Google_Service_SQLAdmin_SslCert - */ - public function getServerCaCert() - { - return $this->serverCaCert; - } - public function setServiceAccountEmailAddress($serviceAccountEmailAddress) - { - $this->serviceAccountEmailAddress = $serviceAccountEmailAddress; - } - public function getServiceAccountEmailAddress() - { - return $this->serviceAccountEmailAddress; - } - /** - * @param Google_Service_SQLAdmin_Settings - */ - public function setSettings(Google_Service_SQLAdmin_Settings $settings) - { - $this->settings = $settings; - } - /** - * @return Google_Service_SQLAdmin_Settings - */ - public function getSettings() - { - return $this->settings; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setSuspensionReason($suspensionReason) - { - $this->suspensionReason = $suspensionReason; - } - public function getSuspensionReason() - { - return $this->suspensionReason; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/DatabaseInstanceFailoverReplica.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/DatabaseInstanceFailoverReplica.php deleted file mode 100644 index 44af7a7b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/DatabaseInstanceFailoverReplica.php +++ /dev/null @@ -1,39 +0,0 @@ -available = $available; - } - public function getAvailable() - { - return $this->available; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/DatabasesListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/DatabasesListResponse.php deleted file mode 100644 index a85d6984..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/DatabasesListResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_SQLAdmin_Database - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/DemoteMasterConfiguration.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/DemoteMasterConfiguration.php deleted file mode 100644 index 62becafc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/DemoteMasterConfiguration.php +++ /dev/null @@ -1,46 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_SQLAdmin_DemoteMasterMySqlReplicaConfiguration - */ - public function setMysqlReplicaConfiguration(Google_Service_SQLAdmin_DemoteMasterMySqlReplicaConfiguration $mysqlReplicaConfiguration) - { - $this->mysqlReplicaConfiguration = $mysqlReplicaConfiguration; - } - /** - * @return Google_Service_SQLAdmin_DemoteMasterMySqlReplicaConfiguration - */ - public function getMysqlReplicaConfiguration() - { - return $this->mysqlReplicaConfiguration; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/DemoteMasterContext.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/DemoteMasterContext.php deleted file mode 100644 index 40d4a89a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/DemoteMasterContext.php +++ /dev/null @@ -1,64 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setMasterInstanceName($masterInstanceName) - { - $this->masterInstanceName = $masterInstanceName; - } - public function getMasterInstanceName() - { - return $this->masterInstanceName; - } - /** - * @param Google_Service_SQLAdmin_DemoteMasterConfiguration - */ - public function setReplicaConfiguration(Google_Service_SQLAdmin_DemoteMasterConfiguration $replicaConfiguration) - { - $this->replicaConfiguration = $replicaConfiguration; - } - /** - * @return Google_Service_SQLAdmin_DemoteMasterConfiguration - */ - public function getReplicaConfiguration() - { - return $this->replicaConfiguration; - } - public function setVerifyGtidConsistency($verifyGtidConsistency) - { - $this->verifyGtidConsistency = $verifyGtidConsistency; - } - public function getVerifyGtidConsistency() - { - return $this->verifyGtidConsistency; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/DemoteMasterMySqlReplicaConfiguration.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/DemoteMasterMySqlReplicaConfiguration.php deleted file mode 100644 index 6f5fe722..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/DemoteMasterMySqlReplicaConfiguration.php +++ /dev/null @@ -1,75 +0,0 @@ -caCertificate = $caCertificate; - } - public function getCaCertificate() - { - return $this->caCertificate; - } - public function setClientCertificate($clientCertificate) - { - $this->clientCertificate = $clientCertificate; - } - public function getClientCertificate() - { - return $this->clientCertificate; - } - public function setClientKey($clientKey) - { - $this->clientKey = $clientKey; - } - public function getClientKey() - { - return $this->clientKey; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setPassword($password) - { - $this->password = $password; - } - public function getPassword() - { - return $this->password; - } - public function setUsername($username) - { - $this->username = $username; - } - public function getUsername() - { - return $this->username; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/DiskEncryptionConfiguration.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/DiskEncryptionConfiguration.php deleted file mode 100644 index 1b5ee1db..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/DiskEncryptionConfiguration.php +++ /dev/null @@ -1,39 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setKmsKeyName($kmsKeyName) - { - $this->kmsKeyName = $kmsKeyName; - } - public function getKmsKeyName() - { - return $this->kmsKeyName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/DiskEncryptionStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/DiskEncryptionStatus.php deleted file mode 100644 index 323d7eae..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/DiskEncryptionStatus.php +++ /dev/null @@ -1,39 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setKmsKeyVersionName($kmsKeyVersionName) - { - $this->kmsKeyVersionName = $kmsKeyVersionName; - } - public function getKmsKeyVersionName() - { - return $this->kmsKeyVersionName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/ExportContext.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/ExportContext.php deleted file mode 100644 index 1f7547db..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/ExportContext.php +++ /dev/null @@ -1,90 +0,0 @@ -csvExportOptions = $csvExportOptions; - } - /** - * @return Google_Service_SQLAdmin_ExportContextCsvExportOptions - */ - public function getCsvExportOptions() - { - return $this->csvExportOptions; - } - public function setDatabases($databases) - { - $this->databases = $databases; - } - public function getDatabases() - { - return $this->databases; - } - public function setFileType($fileType) - { - $this->fileType = $fileType; - } - public function getFileType() - { - return $this->fileType; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_SQLAdmin_ExportContextSqlExportOptions - */ - public function setSqlExportOptions(Google_Service_SQLAdmin_ExportContextSqlExportOptions $sqlExportOptions) - { - $this->sqlExportOptions = $sqlExportOptions; - } - /** - * @return Google_Service_SQLAdmin_ExportContextSqlExportOptions - */ - public function getSqlExportOptions() - { - return $this->sqlExportOptions; - } - public function setUri($uri) - { - $this->uri = $uri; - } - public function getUri() - { - return $this->uri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/ExportContextCsvExportOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/ExportContextCsvExportOptions.php deleted file mode 100644 index aae14b6b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/ExportContextCsvExportOptions.php +++ /dev/null @@ -1,30 +0,0 @@ -selectQuery = $selectQuery; - } - public function getSelectQuery() - { - return $this->selectQuery; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/ExportContextSqlExportOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/ExportContextSqlExportOptions.php deleted file mode 100644 index e67ccacb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/ExportContextSqlExportOptions.php +++ /dev/null @@ -1,56 +0,0 @@ -mysqlExportOptions = $mysqlExportOptions; - } - /** - * @return Google_Service_SQLAdmin_ExportContextSqlExportOptionsMysqlExportOptions - */ - public function getMysqlExportOptions() - { - return $this->mysqlExportOptions; - } - public function setSchemaOnly($schemaOnly) - { - $this->schemaOnly = $schemaOnly; - } - public function getSchemaOnly() - { - return $this->schemaOnly; - } - public function setTables($tables) - { - $this->tables = $tables; - } - public function getTables() - { - return $this->tables; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/ExportContextSqlExportOptionsMysqlExportOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/ExportContextSqlExportOptionsMysqlExportOptions.php deleted file mode 100644 index efbd6f16..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/ExportContextSqlExportOptionsMysqlExportOptions.php +++ /dev/null @@ -1,30 +0,0 @@ -masterData = $masterData; - } - public function getMasterData() - { - return $this->masterData; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/FailoverContext.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/FailoverContext.php deleted file mode 100644 index ae97641b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/FailoverContext.php +++ /dev/null @@ -1,39 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setSettingsVersion($settingsVersion) - { - $this->settingsVersion = $settingsVersion; - } - public function getSettingsVersion() - { - return $this->settingsVersion; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/Flag.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/Flag.php deleted file mode 100644 index aa38a9ff..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/Flag.php +++ /dev/null @@ -1,112 +0,0 @@ -allowedIntValues = $allowedIntValues; - } - public function getAllowedIntValues() - { - return $this->allowedIntValues; - } - public function setAllowedStringValues($allowedStringValues) - { - $this->allowedStringValues = $allowedStringValues; - } - public function getAllowedStringValues() - { - return $this->allowedStringValues; - } - public function setAppliesTo($appliesTo) - { - $this->appliesTo = $appliesTo; - } - public function getAppliesTo() - { - return $this->appliesTo; - } - public function setInBeta($inBeta) - { - $this->inBeta = $inBeta; - } - public function getInBeta() - { - return $this->inBeta; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setMaxValue($maxValue) - { - $this->maxValue = $maxValue; - } - public function getMaxValue() - { - return $this->maxValue; - } - public function setMinValue($minValue) - { - $this->minValue = $minValue; - } - public function getMinValue() - { - return $this->minValue; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setRequiresRestart($requiresRestart) - { - $this->requiresRestart = $requiresRestart; - } - public function getRequiresRestart() - { - return $this->requiresRestart; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/FlagsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/FlagsListResponse.php deleted file mode 100644 index 693bc393..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/FlagsListResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_SQLAdmin_Flag - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/ImportContext.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/ImportContext.php deleted file mode 100644 index 28175612..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/ImportContext.php +++ /dev/null @@ -1,98 +0,0 @@ -bakImportOptions = $bakImportOptions; - } - /** - * @return Google_Service_SQLAdmin_ImportContextBakImportOptions - */ - public function getBakImportOptions() - { - return $this->bakImportOptions; - } - /** - * @param Google_Service_SQLAdmin_ImportContextCsvImportOptions - */ - public function setCsvImportOptions(Google_Service_SQLAdmin_ImportContextCsvImportOptions $csvImportOptions) - { - $this->csvImportOptions = $csvImportOptions; - } - /** - * @return Google_Service_SQLAdmin_ImportContextCsvImportOptions - */ - public function getCsvImportOptions() - { - return $this->csvImportOptions; - } - public function setDatabase($database) - { - $this->database = $database; - } - public function getDatabase() - { - return $this->database; - } - public function setFileType($fileType) - { - $this->fileType = $fileType; - } - public function getFileType() - { - return $this->fileType; - } - public function setImportUser($importUser) - { - $this->importUser = $importUser; - } - public function getImportUser() - { - return $this->importUser; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setUri($uri) - { - $this->uri = $uri; - } - public function getUri() - { - return $this->uri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/ImportContextBakImportOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/ImportContextBakImportOptions.php deleted file mode 100644 index 56130c2f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/ImportContextBakImportOptions.php +++ /dev/null @@ -1,37 +0,0 @@ -encryptionOptions = $encryptionOptions; - } - /** - * @return Google_Service_SQLAdmin_ImportContextBakImportOptionsEncryptionOptions - */ - public function getEncryptionOptions() - { - return $this->encryptionOptions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/ImportContextBakImportOptionsEncryptionOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/ImportContextBakImportOptionsEncryptionOptions.php deleted file mode 100644 index ecb2cf8a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/ImportContextBakImportOptionsEncryptionOptions.php +++ /dev/null @@ -1,48 +0,0 @@ -certPath = $certPath; - } - public function getCertPath() - { - return $this->certPath; - } - public function setPvkPassword($pvkPassword) - { - $this->pvkPassword = $pvkPassword; - } - public function getPvkPassword() - { - return $this->pvkPassword; - } - public function setPvkPath($pvkPath) - { - $this->pvkPath = $pvkPath; - } - public function getPvkPath() - { - return $this->pvkPath; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/ImportContextCsvImportOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/ImportContextCsvImportOptions.php deleted file mode 100644 index 2e862ed2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/ImportContextCsvImportOptions.php +++ /dev/null @@ -1,40 +0,0 @@ -columns = $columns; - } - public function getColumns() - { - return $this->columns; - } - public function setTable($table) - { - $this->table = $table; - } - public function getTable() - { - return $this->table; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/InstancesCloneRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/InstancesCloneRequest.php deleted file mode 100644 index c5abea6f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/InstancesCloneRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -cloneContext = $cloneContext; - } - /** - * @return Google_Service_SQLAdmin_CloneContext - */ - public function getCloneContext() - { - return $this->cloneContext; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/InstancesDemoteMasterRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/InstancesDemoteMasterRequest.php deleted file mode 100644 index 57afa2e8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/InstancesDemoteMasterRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -demoteMasterContext = $demoteMasterContext; - } - /** - * @return Google_Service_SQLAdmin_DemoteMasterContext - */ - public function getDemoteMasterContext() - { - return $this->demoteMasterContext; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/InstancesExportRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/InstancesExportRequest.php deleted file mode 100644 index 1e4a1191..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/InstancesExportRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -exportContext = $exportContext; - } - /** - * @return Google_Service_SQLAdmin_ExportContext - */ - public function getExportContext() - { - return $this->exportContext; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/InstancesFailoverRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/InstancesFailoverRequest.php deleted file mode 100644 index 50c82125..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/InstancesFailoverRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -failoverContext = $failoverContext; - } - /** - * @return Google_Service_SQLAdmin_FailoverContext - */ - public function getFailoverContext() - { - return $this->failoverContext; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/InstancesImportRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/InstancesImportRequest.php deleted file mode 100644 index 17b07593..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/InstancesImportRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -importContext = $importContext; - } - /** - * @return Google_Service_SQLAdmin_ImportContext - */ - public function getImportContext() - { - return $this->importContext; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/InstancesListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/InstancesListResponse.php deleted file mode 100644 index 11c4daa8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/InstancesListResponse.php +++ /dev/null @@ -1,72 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_SQLAdmin_DatabaseInstance - */ - public function getItems() - { - return $this->items; - } - 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_SQLAdmin_ApiWarning - */ - public function setWarnings($warnings) - { - $this->warnings = $warnings; - } - /** - * @return Google_Service_SQLAdmin_ApiWarning - */ - public function getWarnings() - { - return $this->warnings; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/InstancesListServerCasResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/InstancesListServerCasResponse.php deleted file mode 100644 index 5e901b5c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/InstancesListServerCasResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -activeVersion = $activeVersion; - } - public function getActiveVersion() - { - return $this->activeVersion; - } - /** - * @param Google_Service_SQLAdmin_SslCert - */ - public function setCerts($certs) - { - $this->certs = $certs; - } - /** - * @return Google_Service_SQLAdmin_SslCert - */ - public function getCerts() - { - return $this->certs; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/InstancesRestoreBackupRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/InstancesRestoreBackupRequest.php deleted file mode 100644 index 0a831742..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/InstancesRestoreBackupRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -restoreBackupContext = $restoreBackupContext; - } - /** - * @return Google_Service_SQLAdmin_RestoreBackupContext - */ - public function getRestoreBackupContext() - { - return $this->restoreBackupContext; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/InstancesRotateServerCaRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/InstancesRotateServerCaRequest.php deleted file mode 100644 index b5ded6d0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/InstancesRotateServerCaRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -rotateServerCaContext = $rotateServerCaContext; - } - /** - * @return Google_Service_SQLAdmin_RotateServerCaContext - */ - public function getRotateServerCaContext() - { - return $this->rotateServerCaContext; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/InstancesTruncateLogRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/InstancesTruncateLogRequest.php deleted file mode 100644 index 729ebc29..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/InstancesTruncateLogRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -truncateLogContext = $truncateLogContext; - } - /** - * @return Google_Service_SQLAdmin_TruncateLogContext - */ - public function getTruncateLogContext() - { - return $this->truncateLogContext; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/IpConfiguration.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/IpConfiguration.php deleted file mode 100644 index ee70b566..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/IpConfiguration.php +++ /dev/null @@ -1,65 +0,0 @@ -authorizedNetworks = $authorizedNetworks; - } - /** - * @return Google_Service_SQLAdmin_AclEntry - */ - public function getAuthorizedNetworks() - { - return $this->authorizedNetworks; - } - public function setIpv4Enabled($ipv4Enabled) - { - $this->ipv4Enabled = $ipv4Enabled; - } - public function getIpv4Enabled() - { - return $this->ipv4Enabled; - } - public function setPrivateNetwork($privateNetwork) - { - $this->privateNetwork = $privateNetwork; - } - public function getPrivateNetwork() - { - return $this->privateNetwork; - } - public function setRequireSsl($requireSsl) - { - $this->requireSsl = $requireSsl; - } - public function getRequireSsl() - { - return $this->requireSsl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/IpMapping.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/IpMapping.php deleted file mode 100644 index 90619181..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/IpMapping.php +++ /dev/null @@ -1,48 +0,0 @@ -ipAddress = $ipAddress; - } - public function getIpAddress() - { - return $this->ipAddress; - } - public function setTimeToRetire($timeToRetire) - { - $this->timeToRetire = $timeToRetire; - } - public function getTimeToRetire() - { - return $this->timeToRetire; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/LocationPreference.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/LocationPreference.php deleted file mode 100644 index d900ac4f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/LocationPreference.php +++ /dev/null @@ -1,48 +0,0 @@ -followGaeApplication = $followGaeApplication; - } - public function getFollowGaeApplication() - { - return $this->followGaeApplication; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setZone($zone) - { - $this->zone = $zone; - } - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/MaintenanceWindow.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/MaintenanceWindow.php deleted file mode 100644 index 099f2210..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/MaintenanceWindow.php +++ /dev/null @@ -1,57 +0,0 @@ -day = $day; - } - public function getDay() - { - return $this->day; - } - public function setHour($hour) - { - $this->hour = $hour; - } - public function getHour() - { - return $this->hour; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setUpdateTrack($updateTrack) - { - $this->updateTrack = $updateTrack; - } - public function getUpdateTrack() - { - return $this->updateTrack; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/MySqlReplicaConfiguration.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/MySqlReplicaConfiguration.php deleted file mode 100644 index 18fd8373..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/MySqlReplicaConfiguration.php +++ /dev/null @@ -1,120 +0,0 @@ -caCertificate = $caCertificate; - } - public function getCaCertificate() - { - return $this->caCertificate; - } - public function setClientCertificate($clientCertificate) - { - $this->clientCertificate = $clientCertificate; - } - public function getClientCertificate() - { - return $this->clientCertificate; - } - public function setClientKey($clientKey) - { - $this->clientKey = $clientKey; - } - public function getClientKey() - { - return $this->clientKey; - } - public function setConnectRetryInterval($connectRetryInterval) - { - $this->connectRetryInterval = $connectRetryInterval; - } - public function getConnectRetryInterval() - { - return $this->connectRetryInterval; - } - public function setDumpFilePath($dumpFilePath) - { - $this->dumpFilePath = $dumpFilePath; - } - public function getDumpFilePath() - { - return $this->dumpFilePath; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setMasterHeartbeatPeriod($masterHeartbeatPeriod) - { - $this->masterHeartbeatPeriod = $masterHeartbeatPeriod; - } - public function getMasterHeartbeatPeriod() - { - return $this->masterHeartbeatPeriod; - } - public function setPassword($password) - { - $this->password = $password; - } - public function getPassword() - { - return $this->password; - } - public function setSslCipher($sslCipher) - { - $this->sslCipher = $sslCipher; - } - public function getSslCipher() - { - return $this->sslCipher; - } - public function setUsername($username) - { - $this->username = $username; - } - public function getUsername() - { - return $this->username; - } - public function setVerifyServerCertificate($verifyServerCertificate) - { - $this->verifyServerCertificate = $verifyServerCertificate; - } - public function getVerifyServerCertificate() - { - return $this->verifyServerCertificate; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/OnPremisesConfiguration.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/OnPremisesConfiguration.php deleted file mode 100644 index 56c0ae8a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/OnPremisesConfiguration.php +++ /dev/null @@ -1,93 +0,0 @@ -caCertificate = $caCertificate; - } - public function getCaCertificate() - { - return $this->caCertificate; - } - public function setClientCertificate($clientCertificate) - { - $this->clientCertificate = $clientCertificate; - } - public function getClientCertificate() - { - return $this->clientCertificate; - } - public function setClientKey($clientKey) - { - $this->clientKey = $clientKey; - } - public function getClientKey() - { - return $this->clientKey; - } - public function setDumpFilePath($dumpFilePath) - { - $this->dumpFilePath = $dumpFilePath; - } - public function getDumpFilePath() - { - return $this->dumpFilePath; - } - public function setHostPort($hostPort) - { - $this->hostPort = $hostPort; - } - public function getHostPort() - { - return $this->hostPort; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setPassword($password) - { - $this->password = $password; - } - public function getPassword() - { - return $this->password; - } - public function setUsername($username) - { - $this->username = $username; - } - public function getUsername() - { - return $this->username; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/Operation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/Operation.php deleted file mode 100644 index 559f5740..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/Operation.php +++ /dev/null @@ -1,177 +0,0 @@ -endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - /** - * @param Google_Service_SQLAdmin_OperationErrors - */ - public function setError(Google_Service_SQLAdmin_OperationErrors $error) - { - $this->error = $error; - } - /** - * @return Google_Service_SQLAdmin_OperationErrors - */ - public function getError() - { - return $this->error; - } - /** - * @param Google_Service_SQLAdmin_ExportContext - */ - public function setExportContext(Google_Service_SQLAdmin_ExportContext $exportContext) - { - $this->exportContext = $exportContext; - } - /** - * @return Google_Service_SQLAdmin_ExportContext - */ - public function getExportContext() - { - return $this->exportContext; - } - /** - * @param Google_Service_SQLAdmin_ImportContext - */ - public function setImportContext(Google_Service_SQLAdmin_ImportContext $importContext) - { - $this->importContext = $importContext; - } - /** - * @return Google_Service_SQLAdmin_ImportContext - */ - public function getImportContext() - { - return $this->importContext; - } - public function setInsertTime($insertTime) - { - $this->insertTime = $insertTime; - } - public function getInsertTime() - { - return $this->insertTime; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOperationType($operationType) - { - $this->operationType = $operationType; - } - public function getOperationType() - { - return $this->operationType; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - 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 setTargetId($targetId) - { - $this->targetId = $targetId; - } - public function getTargetId() - { - return $this->targetId; - } - public function setTargetLink($targetLink) - { - $this->targetLink = $targetLink; - } - public function getTargetLink() - { - return $this->targetLink; - } - public function setTargetProject($targetProject) - { - $this->targetProject = $targetProject; - } - public function getTargetProject() - { - return $this->targetProject; - } - public function setUser($user) - { - $this->user = $user; - } - public function getUser() - { - return $this->user; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/OperationError.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/OperationError.php deleted file mode 100644 index fa4dab09..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/OperationError.php +++ /dev/null @@ -1,48 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/OperationErrors.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/OperationErrors.php deleted file mode 100644 index d623a109..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/OperationErrors.php +++ /dev/null @@ -1,47 +0,0 @@ -errors = $errors; - } - /** - * @return Google_Service_SQLAdmin_OperationError - */ - public function getErrors() - { - return $this->errors; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/OperationsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/OperationsListResponse.php deleted file mode 100644 index 7543b6ee..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/OperationsListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_SQLAdmin_Operation - */ - public function getItems() - { - return $this->items; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/ReplicaConfiguration.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/ReplicaConfiguration.php deleted file mode 100644 index ec6f2b0f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/ReplicaConfiguration.php +++ /dev/null @@ -1,55 +0,0 @@ -failoverTarget = $failoverTarget; - } - public function getFailoverTarget() - { - return $this->failoverTarget; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_SQLAdmin_MySqlReplicaConfiguration - */ - public function setMysqlReplicaConfiguration(Google_Service_SQLAdmin_MySqlReplicaConfiguration $mysqlReplicaConfiguration) - { - $this->mysqlReplicaConfiguration = $mysqlReplicaConfiguration; - } - /** - * @return Google_Service_SQLAdmin_MySqlReplicaConfiguration - */ - public function getMysqlReplicaConfiguration() - { - return $this->mysqlReplicaConfiguration; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/Reschedule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/Reschedule.php deleted file mode 100644 index cb6273e2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/Reschedule.php +++ /dev/null @@ -1,39 +0,0 @@ -rescheduleType = $rescheduleType; - } - public function getRescheduleType() - { - return $this->rescheduleType; - } - public function setScheduleTime($scheduleTime) - { - $this->scheduleTime = $scheduleTime; - } - public function getScheduleTime() - { - return $this->scheduleTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/Resource/BackupRuns.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/Resource/BackupRuns.php deleted file mode 100644 index 3e3950ae..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/Resource/BackupRuns.php +++ /dev/null @@ -1,114 +0,0 @@ - - * $sqlService = new Google_Service_SQLAdmin(...); - * $backupRuns = $sqlService->backupRuns; - * - */ -class Google_Service_SQLAdmin_Resource_BackupRuns extends Google_Service_Resource -{ - /** - * Deletes the backup taken by a backup run. (backupRuns.delete) - * - * @param string $project Project ID of the project that contains the instance. - * @param string $instance Cloud SQL instance ID. This does not include the - * project ID. - * @param string $id The ID of the Backup Run to delete. To find a Backup Run - * ID, use the list method. - * @param array $optParams Optional parameters. - * - * @opt_param string resourceName The name of the backupRun to delete. Format: p - * rojects/{project}/locations/{location}/instances/{instance}/backupRuns/{backu - * pRun} - * @return Google_Service_SQLAdmin_Operation - */ - public function delete($project, $instance, $id, $optParams = array()) - { - $params = array('project' => $project, 'instance' => $instance, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_SQLAdmin_Operation"); - } - /** - * Retrieves a resource containing information about a backup run. - * (backupRuns.get) - * - * @param string $project Project ID of the project that contains the instance. - * @param string $instance Cloud SQL instance ID. This does not include the - * project ID. - * @param string $id The ID of this Backup Run. - * @param array $optParams Optional parameters. - * - * @opt_param string resourceName Name of the resource backupRun. Format: projec - * ts/{project}/locations/{location}/instances/{instance}/backupRuns/{backupRun} - * @return Google_Service_SQLAdmin_BackupRun - */ - public function get($project, $instance, $id, $optParams = array()) - { - $params = array('project' => $project, 'instance' => $instance, 'id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_SQLAdmin_BackupRun"); - } - /** - * Creates a new backup run on demand. This method is applicable only to Second - * Generation instances. (backupRuns.insert) - * - * @param string $project Project ID of the project that contains the instance. - * @param string $instance Cloud SQL instance ID. This does not include the - * project ID. - * @param Google_Service_SQLAdmin_BackupRun $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string parent The parent resource where Cloud SQL should create - * this backupRun. Format: - * projects/{project}/locations/{location}/instances/{instance} - * @return Google_Service_SQLAdmin_Operation - */ - public function insert($project, $instance, Google_Service_SQLAdmin_BackupRun $postBody, $optParams = array()) - { - $params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_SQLAdmin_Operation"); - } - /** - * Lists all backup runs associated with a given instance and configuration in - * the reverse chronological order of the backup initiation time. - * (backupRuns.listBackupRuns) - * - * @param string $project Project ID of the project that contains the instance. - * @param string $instance Cloud SQL instance ID. This does not include the - * project ID. - * @param array $optParams Optional parameters. - * - * @opt_param int maxResults Maximum number of backup runs per response. - * @opt_param string parent The parent, which owns this collection of - * backupRuns. Format: - * projects/{project}/locations/{location}/instances/{instance} - * @opt_param string pageToken A previously-returned page token representing - * part of the larger set of results to view. - * @return Google_Service_SQLAdmin_BackupRunsListResponse - */ - public function listBackupRuns($project, $instance, $optParams = array()) - { - $params = array('project' => $project, 'instance' => $instance); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_SQLAdmin_BackupRunsListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/Resource/Databases.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/Resource/Databases.php deleted file mode 100644 index 9972791d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/Resource/Databases.php +++ /dev/null @@ -1,154 +0,0 @@ - - * $sqlService = new Google_Service_SQLAdmin(...); - * $databases = $sqlService->databases; - * - */ -class Google_Service_SQLAdmin_Resource_Databases extends Google_Service_Resource -{ - /** - * Deletes a database from a Cloud SQL instance. (databases.delete) - * - * @param string $project Project ID of the project that contains the instance. - * @param string $instance Database instance ID. This does not include the - * project ID. - * @param string $database Name of the database to be deleted in the instance. - * @param array $optParams Optional parameters. - * - * @opt_param string resourceName The name of the database to delete. Format: pr - * ojects/{project}/locations/{location}/instances/{instance}/databases/{databas - * e} - * @return Google_Service_SQLAdmin_Operation - */ - public function delete($project, $instance, $database, $optParams = array()) - { - $params = array('project' => $project, 'instance' => $instance, 'database' => $database); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_SQLAdmin_Operation"); - } - /** - * Retrieves a resource containing information about a database inside a Cloud - * SQL instance. (databases.get) - * - * @param string $project Project ID of the project that contains the instance. - * @param string $instance Database instance ID. This does not include the - * project ID. - * @param string $database Name of the database in the instance. - * @param array $optParams Optional parameters. - * - * @opt_param string resourceName Name of the resource database. Format: project - * s/{project}/locations/{location}/instances/{instance}/databases/{database} - * @return Google_Service_SQLAdmin_Database - */ - public function get($project, $instance, $database, $optParams = array()) - { - $params = array('project' => $project, 'instance' => $instance, 'database' => $database); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_SQLAdmin_Database"); - } - /** - * Inserts a resource containing information about a database inside a Cloud SQL - * instance. (databases.insert) - * - * @param string $project Project ID of the project that contains the instance. - * @param string $instance Database instance ID. This does not include the - * project ID. - * @param Google_Service_SQLAdmin_Database $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string parent The parent resource where Cloud SQL should add this - * database. Format: - * projects/{project}/locations/{location}/instances/{instance} - * @return Google_Service_SQLAdmin_Operation - */ - public function insert($project, $instance, Google_Service_SQLAdmin_Database $postBody, $optParams = array()) - { - $params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_SQLAdmin_Operation"); - } - /** - * Lists databases in the specified Cloud SQL instance. - * (databases.listDatabases) - * - * @param string $project Project ID of the project that contains the instance. - * @param string $instance Cloud SQL instance ID. This does not include the - * project ID. - * @param array $optParams Optional parameters. - * - * @opt_param string parent The parent, which owns this collection of databases. - * Format: projects/{project}/locations/{location}/instances/{instance} - * @return Google_Service_SQLAdmin_DatabasesListResponse - */ - public function listDatabases($project, $instance, $optParams = array()) - { - $params = array('project' => $project, 'instance' => $instance); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_SQLAdmin_DatabasesListResponse"); - } - /** - * Partially updates a resource containing information about a database inside a - * Cloud SQL instance. This method supports patch semantics. Caution: This is - * not a partial update, so you must include values for all the settings that - * you want to retain. For partial updates, use update. (databases.patch) - * - * @param string $project Project ID of the project that contains the instance. - * @param string $instance Database instance ID. This does not include the - * project ID. - * @param string $database Name of the database to be updated in the instance. - * @param Google_Service_SQLAdmin_Database $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string resourceName The name of the database for Cloud SQL to - * update. Format: projects/{project}/locations/{location}/instances/{instance}/ - * databases/{database} - * @return Google_Service_SQLAdmin_Operation - */ - public function patch($project, $instance, $database, Google_Service_SQLAdmin_Database $postBody, $optParams = array()) - { - $params = array('project' => $project, 'instance' => $instance, 'database' => $database, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_SQLAdmin_Operation"); - } - /** - * Updates a resource containing information about a database inside a Cloud SQL - * instance. (databases.update) - * - * @param string $project Project ID of the project that contains the instance. - * @param string $instance Database instance ID. This does not include the - * project ID. - * @param string $database Name of the database to be updated in the instance. - * @param Google_Service_SQLAdmin_Database $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string resourceName The name of the database for Cloud SQL to - * update. Format: projects/{project}/locations/{location}/instances/{instance}/ - * databases/{database} - * @return Google_Service_SQLAdmin_Operation - */ - public function update($project, $instance, $database, Google_Service_SQLAdmin_Database $postBody, $optParams = array()) - { - $params = array('project' => $project, 'instance' => $instance, 'database' => $database, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_SQLAdmin_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/Resource/Flags.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/Resource/Flags.php deleted file mode 100644 index 07733e66..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/Resource/Flags.php +++ /dev/null @@ -1,44 +0,0 @@ - - * $sqlService = new Google_Service_SQLAdmin(...); - * $flags = $sqlService->flags; - * - */ -class Google_Service_SQLAdmin_Resource_Flags extends Google_Service_Resource -{ - /** - * List all available database flags for Cloud SQL instances. (flags.listFlags) - * - * @param array $optParams Optional parameters. - * - * @opt_param string databaseVersion Database type and version you want to - * retrieve flags for. By default, this method returns flags for all database - * types and versions. - * @return Google_Service_SQLAdmin_FlagsListResponse - */ - public function listFlags($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_SQLAdmin_FlagsListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/Resource/Instances.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/Resource/Instances.php deleted file mode 100644 index d6ebf1f7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/Resource/Instances.php +++ /dev/null @@ -1,458 +0,0 @@ - - * $sqlService = new Google_Service_SQLAdmin(...); - * $instances = $sqlService->instances; - * - */ -class Google_Service_SQLAdmin_Resource_Instances extends Google_Service_Resource -{ - /** - * Add a new trusted Certificate Authority (CA) version for the specified - * instance. Required to prepare for a certificate rotation. If a CA version was - * previously added but never used in a certificate rotation, this operation - * replaces that version. There cannot be more than one CA version waiting to be - * rotated in. (instances.addServerCa) - * - * @param string $project Project ID of the project that contains the instance. - * @param string $instance Cloud SQL instance ID. This does not include the - * project ID. - * @param array $optParams Optional parameters. - * - * @opt_param string parent The parent resource where Cloud SQL should add this - * server CA. Format: - * projects/{project}/locations/{location}/instances/{instance} - * @return Google_Service_SQLAdmin_Operation - */ - public function addServerCa($project, $instance, $optParams = array()) - { - $params = array('project' => $project, 'instance' => $instance); - $params = array_merge($params, $optParams); - return $this->call('addServerCa', array($params), "Google_Service_SQLAdmin_Operation"); - } - /** - * Creates a Cloud SQL instance as a clone of the source instance. - * (instances.cloneInstances) - * - * @param string $project Project ID of the source as well as the clone Cloud - * SQL instance. - * @param string $instance The ID of the Cloud SQL instance to be cloned - * (source). This does not include the project ID. - * @param Google_Service_SQLAdmin_InstancesCloneRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string parent The parent resource where Cloud SQL should clone - * this instance. Format: - * projects/{project}/locations/{location}/instances/{instance} - * @return Google_Service_SQLAdmin_Operation - */ - public function cloneInstances($project, $instance, Google_Service_SQLAdmin_InstancesCloneRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('clone', array($params), "Google_Service_SQLAdmin_Operation"); - } - /** - * Deletes a Cloud SQL instance. (instances.delete) - * - * @param string $project Project ID of the project that contains the instance - * to be deleted. - * @param string $instance Cloud SQL instance ID. This does not include the - * project ID. - * @param array $optParams Optional parameters. - * - * @opt_param string resourceName The name of database instance to delete. - * Format: projects/{project}/locations/{location}/instances/{instance} - * @return Google_Service_SQLAdmin_Operation - */ - public function delete($project, $instance, $optParams = array()) - { - $params = array('project' => $project, 'instance' => $instance); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_SQLAdmin_Operation"); - } - /** - * Demotes the stand-alone instance to be a Cloud SQL read replica for an - * external database server. (instances.demoteMaster) - * - * @param string $project ID of the project that contains the instance. - * @param string $instance Cloud SQL instance name. - * @param Google_Service_SQLAdmin_InstancesDemoteMasterRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string parent The parent resource where Cloud SQL demotes this - * master database instance. Format: - * projects/{project}/locations/{location}/instances/{instance} - * @return Google_Service_SQLAdmin_Operation - */ - public function demoteMaster($project, $instance, Google_Service_SQLAdmin_InstancesDemoteMasterRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('demoteMaster', array($params), "Google_Service_SQLAdmin_Operation"); - } - /** - * Exports data from a Cloud SQL instance to a Cloud Storage bucket as a SQL - * dump or CSV file. (instances.export) - * - * @param string $project Project ID of the project that contains the instance - * to be exported. - * @param string $instance Cloud SQL instance ID. This does not include the - * project ID. - * @param Google_Service_SQLAdmin_InstancesExportRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string parent The parent resource where Cloud SQL exports this - * database instance. Format: - * projects/{project}/locations/{location}/instances/{instance} - * @return Google_Service_SQLAdmin_Operation - */ - public function export($project, $instance, Google_Service_SQLAdmin_InstancesExportRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('export', array($params), "Google_Service_SQLAdmin_Operation"); - } - /** - * Failover the instance to its failover replica instance. (instances.failover) - * - * @param string $project ID of the project that contains the read replica. - * @param string $instance Cloud SQL instance ID. This does not include the - * project ID. - * @param Google_Service_SQLAdmin_InstancesFailoverRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string parent The parent resource where Cloud SQL sends this - * database instance during a failover. Format: - * projects/{project}/locations/{location}/instances/{instance} - * @return Google_Service_SQLAdmin_Operation - */ - public function failover($project, $instance, Google_Service_SQLAdmin_InstancesFailoverRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('failover', array($params), "Google_Service_SQLAdmin_Operation"); - } - /** - * Retrieves a resource containing information about a Cloud SQL instance. - * (instances.get) - * - * @param string $project Project ID of the project that contains the instance. - * @param string $instance Database instance ID. This does not include the - * project ID. - * @param array $optParams Optional parameters. - * - * @opt_param string resourceName Name of the resource database instance. - * Format: projects/{project}/locations/{location}/instances/{instance} - * @return Google_Service_SQLAdmin_DatabaseInstance - */ - public function get($project, $instance, $optParams = array()) - { - $params = array('project' => $project, 'instance' => $instance); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_SQLAdmin_DatabaseInstance"); - } - /** - * Imports data into a Cloud SQL instance from a SQL dump or CSV file in Cloud - * Storage. (instances.import) - * - * @param string $project Project ID of the project that contains the instance. - * @param string $instance Cloud SQL instance ID. This does not include the - * project ID. - * @param Google_Service_SQLAdmin_InstancesImportRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string parent The parent resource where Cloud SQL imports this - * database instance. Format: - * projects/{project}/locations/{location}/instances/{instance} - * @return Google_Service_SQLAdmin_Operation - */ - public function import($project, $instance, Google_Service_SQLAdmin_InstancesImportRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('import', array($params), "Google_Service_SQLAdmin_Operation"); - } - /** - * Creates a new Cloud SQL instance. (instances.insert) - * - * @param string $project Project ID of the project to which the newly created - * Cloud SQL instances should belong. - * @param Google_Service_SQLAdmin_DatabaseInstance $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string parent The parent resource where Cloud SQL creates this - * database instance. Format: projects/{project}/locations/{location} - * @return Google_Service_SQLAdmin_Operation - */ - public function insert($project, Google_Service_SQLAdmin_DatabaseInstance $postBody, $optParams = array()) - { - $params = array('project' => $project, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_SQLAdmin_Operation"); - } - /** - * Lists instances under a given project. (instances.listInstances) - * - * @param string $project Project ID of the project for which to list Cloud SQL - * instances. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A previously-returned page token representing - * part of the larger set of results to view. - * @opt_param string maxResults The maximum number of results to return per - * response. - * @opt_param string parent The parent, which owns this collection of database - * instances. Format: projects/{project}/locations/{location} - * @opt_param string filter A filter expression that filters resources listed in - * the response. The expression is in the form of field:value. For example, - * 'instanceType:CLOUD_SQL_INSTANCE'. Fields can be nested as needed as per - * their JSON representation, such as 'settings.userLabels.auto_start:true'. - * - * Multiple filter queries are space-separated. For example. 'state:RUNNABLE - * instanceType:CLOUD_SQL_INSTANCE'. By default, each expression is an AND - * expression. However, you can include AND and OR expressions explicitly. - * @return Google_Service_SQLAdmin_InstancesListResponse - */ - public function listInstances($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_SQLAdmin_InstancesListResponse"); - } - /** - * Lists all of the trusted Certificate Authorities (CAs) for the specified - * instance. There can be up to three CAs listed: the CA that was used to sign - * the certificate that is currently in use, a CA that has been added but not - * yet used to sign a certificate, and a CA used to sign a certificate that has - * previously rotated out. (instances.listServerCas) - * - * @param string $project Project ID of the project that contains the instance. - * @param string $instance Cloud SQL instance ID. This does not include the - * project ID. - * @param array $optParams Optional parameters. - * - * @opt_param string parent The parent, which owns this collection of server - * CAs. Format: projects/{project}/locations/{location}/instances/{instance} - * @return Google_Service_SQLAdmin_InstancesListServerCasResponse - */ - public function listServerCas($project, $instance, $optParams = array()) - { - $params = array('project' => $project, 'instance' => $instance); - $params = array_merge($params, $optParams); - return $this->call('listServerCas', array($params), "Google_Service_SQLAdmin_InstancesListServerCasResponse"); - } - /** - * Updates settings of a Cloud SQL instance. This method supports patch - * semantics. (instances.patch) - * - * @param string $project Project ID of the project that contains the instance. - * @param string $instance Cloud SQL instance ID. This does not include the - * project ID. - * @param Google_Service_SQLAdmin_DatabaseInstance $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string resourceName The name of the database instance for Cloud - * SQL to update. Format: - * projects/{project}/locations/{location}/instances/{instance} - * @return Google_Service_SQLAdmin_Operation - */ - public function patch($project, $instance, Google_Service_SQLAdmin_DatabaseInstance $postBody, $optParams = array()) - { - $params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_SQLAdmin_Operation"); - } - /** - * Promotes the read replica instance to be a stand-alone Cloud SQL instance. - * (instances.promoteReplica) - * - * @param string $project ID of the project that contains the read replica. - * @param string $instance Cloud SQL read replica instance name. - * @param array $optParams Optional parameters. - * - * @opt_param string parent The parent resource where Cloud SQL promotes this - * replica database instance. Format: projects/{project}/locations/{location} - * @return Google_Service_SQLAdmin_Operation - */ - public function promoteReplica($project, $instance, $optParams = array()) - { - $params = array('project' => $project, 'instance' => $instance); - $params = array_merge($params, $optParams); - return $this->call('promoteReplica', array($params), "Google_Service_SQLAdmin_Operation"); - } - /** - * Deletes all client certificates and generates a new server SSL certificate - * for the instance. (instances.resetSslConfig) - * - * @param string $project Project ID of the project that contains the instance. - * @param string $instance Cloud SQL instance ID. This does not include the - * project ID. - * @param array $optParams Optional parameters. - * - * @opt_param string parent The parent resource where Cloud SQL resets this SSL - * config. Format: projects/{project}/locations/{location}/instances/{instance} - * @return Google_Service_SQLAdmin_Operation - */ - public function resetSslConfig($project, $instance, $optParams = array()) - { - $params = array('project' => $project, 'instance' => $instance); - $params = array_merge($params, $optParams); - return $this->call('resetSslConfig', array($params), "Google_Service_SQLAdmin_Operation"); - } - /** - * Restarts a Cloud SQL instance. (instances.restart) - * - * @param string $project Project ID of the project that contains the instance - * to be restarted. - * @param string $instance Cloud SQL instance ID. This does not include the - * project ID. - * @param array $optParams Optional parameters. - * - * @opt_param string parent The parent resource where Cloud SQL restarts this - * database instance. Format: - * projects/{project}/locations/{location}/instances/{instance} - * @return Google_Service_SQLAdmin_Operation - */ - public function restart($project, $instance, $optParams = array()) - { - $params = array('project' => $project, 'instance' => $instance); - $params = array_merge($params, $optParams); - return $this->call('restart', array($params), "Google_Service_SQLAdmin_Operation"); - } - /** - * Restores a backup of a Cloud SQL instance. (instances.restoreBackup) - * - * @param string $project Project ID of the project that contains the instance. - * @param string $instance Cloud SQL instance ID. This does not include the - * project ID. - * @param Google_Service_SQLAdmin_InstancesRestoreBackupRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string parent The parent resource where Cloud SQL restores this - * database instance from backup. Format: - * projects/{project}/locations/{location}/instances/{instance} - * @return Google_Service_SQLAdmin_Operation - */ - public function restoreBackup($project, $instance, Google_Service_SQLAdmin_InstancesRestoreBackupRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('restoreBackup', array($params), "Google_Service_SQLAdmin_Operation"); - } - /** - * Rotates the server certificate to one signed by the Certificate Authority - * (CA) version previously added with the addServerCA method. - * (instances.rotateServerCa) - * - * @param string $project Project ID of the project that contains the instance. - * @param string $instance Cloud SQL instance ID. This does not include the - * project ID. - * @param Google_Service_SQLAdmin_InstancesRotateServerCaRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string parent The parent resource where Cloud SQL rotates these - * server CAs. Format: - * projects/{project}/locations/{location}/instances/{instance} - * @return Google_Service_SQLAdmin_Operation - */ - public function rotateServerCa($project, $instance, Google_Service_SQLAdmin_InstancesRotateServerCaRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('rotateServerCa', array($params), "Google_Service_SQLAdmin_Operation"); - } - /** - * Starts the replication in the read replica instance. (instances.startReplica) - * - * @param string $project ID of the project that contains the read replica. - * @param string $instance Cloud SQL read replica instance name. - * @param array $optParams Optional parameters. - * - * @opt_param string parent The parent resource where Cloud SQL starts this - * database instance replication. Format: - * projects/{project}/locations/{location}/instances/{instance} - * @return Google_Service_SQLAdmin_Operation - */ - public function startReplica($project, $instance, $optParams = array()) - { - $params = array('project' => $project, 'instance' => $instance); - $params = array_merge($params, $optParams); - return $this->call('startReplica', array($params), "Google_Service_SQLAdmin_Operation"); - } - /** - * Stops the replication in the read replica instance. (instances.stopReplica) - * - * @param string $project ID of the project that contains the read replica. - * @param string $instance Cloud SQL read replica instance name. - * @param array $optParams Optional parameters. - * - * @opt_param string parent The parent resource where Cloud SQL stops this - * database instance replication. Format: - * projects/{project}/locations/{location}/instances/{instance} - * @return Google_Service_SQLAdmin_Operation - */ - public function stopReplica($project, $instance, $optParams = array()) - { - $params = array('project' => $project, 'instance' => $instance); - $params = array_merge($params, $optParams); - return $this->call('stopReplica', array($params), "Google_Service_SQLAdmin_Operation"); - } - /** - * Truncate MySQL general and slow query log tables (instances.truncateLog) - * - * @param string $project Project ID of the Cloud SQL project. - * @param string $instance Cloud SQL instance ID. This does not include the - * project ID. - * @param Google_Service_SQLAdmin_InstancesTruncateLogRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string parent The parent resource where Cloud SQL truncates this - * log. Format: projects/{project}/locations/{location}/instances/{instance} - * @return Google_Service_SQLAdmin_Operation - */ - public function truncateLog($project, $instance, Google_Service_SQLAdmin_InstancesTruncateLogRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('truncateLog', array($params), "Google_Service_SQLAdmin_Operation"); - } - /** - * Updates settings of a Cloud SQL instance. (instances.update) - * - * @param string $project Project ID of the project that contains the instance. - * @param string $instance Cloud SQL instance ID. This does not include the - * project ID. - * @param Google_Service_SQLAdmin_DatabaseInstance $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string resourceName The name of the database instance for Cloud - * SQL to update. Format: - * projects/{project}/locations/{location}/instances/{instance} - * @return Google_Service_SQLAdmin_Operation - */ - public function update($project, $instance, Google_Service_SQLAdmin_DatabaseInstance $postBody, $optParams = array()) - { - $params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_SQLAdmin_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/Resource/Operations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/Resource/Operations.php deleted file mode 100644 index f2df7b1b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/Resource/Operations.php +++ /dev/null @@ -1,70 +0,0 @@ - - * $sqlService = new Google_Service_SQLAdmin(...); - * $operations = $sqlService->operations; - * - */ -class Google_Service_SQLAdmin_Resource_Operations extends Google_Service_Resource -{ - /** - * Retrieves an instance operation that has been performed on an instance. - * (operations.get) - * - * @param string $project Project ID of the project that contains the instance. - * @param string $operation Instance operation ID. - * @param array $optParams Optional parameters. - * - * @opt_param string resourceName The name of the operation for Cloud SQL to - * get. Format: projects/{project}/locations/{location}/operations/{operation} - * @return Google_Service_SQLAdmin_Operation - */ - public function get($project, $operation, $optParams = array()) - { - $params = array('project' => $project, 'operation' => $operation); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_SQLAdmin_Operation"); - } - /** - * Lists all instance operations that have been performed on the given Cloud SQL - * instance in the reverse chronological order of the start time. - * (operations.listOperations) - * - * @param string $project Project ID of the project that contains the instance. - * @param array $optParams Optional parameters. - * - * @opt_param string maxResults Maximum number of operations per response. - * @opt_param string parent Indirect parent. The direct parent should combine - * with the instance name, which owns this collection of operations. Format: - * projects/{project}/locations/{location} - * @opt_param string instance Cloud SQL instance ID. This does not include the - * project ID. - * @opt_param string pageToken A previously-returned page token representing - * part of the larger set of results to view. - * @return Google_Service_SQLAdmin_OperationsListResponse - */ - public function listOperations($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_SQLAdmin_OperationsListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/Resource/Projects.php deleted file mode 100644 index da6f7910..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/Resource/Projects.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $sqlService = new Google_Service_SQLAdmin(...); - * $projects = $sqlService->projects; - * - */ -class Google_Service_SQLAdmin_Resource_Projects extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/Resource/ProjectsInstances.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/Resource/ProjectsInstances.php deleted file mode 100644 index 36240d8e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/Resource/ProjectsInstances.php +++ /dev/null @@ -1,92 +0,0 @@ - - * $sqlService = new Google_Service_SQLAdmin(...); - * $instances = $sqlService->instances; - * - */ -class Google_Service_SQLAdmin_Resource_ProjectsInstances extends Google_Service_Resource -{ - /** - * Reschedules the maintenance on the given instance. - * (instances.rescheduleMaintenance) - * - * @param string $project ID of the project that contains the instance. - * @param string $instance Cloud SQL instance ID. This does not include the - * project ID. - * @param Google_Service_SQLAdmin_SqlInstancesRescheduleMaintenanceRequestBody $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string parent The parent resource where Cloud SQL reshedule this - * database instance's maintenance. Format: - * projects/{project}/locations/{location}/instances/{instance} - * @return Google_Service_SQLAdmin_Operation - */ - public function rescheduleMaintenance($project, $instance, Google_Service_SQLAdmin_SqlInstancesRescheduleMaintenanceRequestBody $postBody, $optParams = array()) - { - $params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('rescheduleMaintenance', array($params), "Google_Service_SQLAdmin_Operation"); - } - /** - * Start External master migration. (instances.startExternalSync) - * - * @param string $project ID of the project that contains the first generation - * instance. - * @param string $instance Cloud SQL instance ID. This does not include the - * project ID. - * @param array $optParams Optional parameters. - * - * @opt_param string syncMode External sync mode - * @opt_param string parent The parent resource where Cloud SQL starts this - * database instance external sync. Format: - * projects/{project}/locations/{location}/instances/{instance} - * @return Google_Service_SQLAdmin_Operation - */ - public function startExternalSync($project, $instance, $optParams = array()) - { - $params = array('project' => $project, 'instance' => $instance); - $params = array_merge($params, $optParams); - return $this->call('startExternalSync', array($params), "Google_Service_SQLAdmin_Operation"); - } - /** - * Verify External master external sync settings. - * (instances.verifyExternalSyncSettings) - * - * @param string $project Project ID of the project that contains the instance. - * @param string $instance Cloud SQL instance ID. This does not include the - * project ID. - * @param array $optParams Optional parameters. - * - * @opt_param string syncMode External sync mode - * @opt_param string parent The parent resource where Cloud SQL verifies this - * database instance external sync settings. Format: - * projects/{project}/locations/{location}/instances/{instance} - * @opt_param bool verifyConnectionOnly Flag to enable verifying connection only - * @return Google_Service_SQLAdmin_SqlInstancesVerifyExternalSyncSettingsResponse - */ - public function verifyExternalSyncSettings($project, $instance, $optParams = array()) - { - $params = array('project' => $project, 'instance' => $instance); - $params = array_merge($params, $optParams); - return $this->call('verifyExternalSyncSettings', array($params), "Google_Service_SQLAdmin_SqlInstancesVerifyExternalSyncSettingsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/Resource/ProjectsLocations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/Resource/ProjectsLocations.php deleted file mode 100644 index 1f233973..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/Resource/ProjectsLocations.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $sqlService = new Google_Service_SQLAdmin(...); - * $locations = $sqlService->locations; - * - */ -class Google_Service_SQLAdmin_Resource_ProjectsLocations extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/Resource/ProjectsLocationsInstances.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/Resource/ProjectsLocationsInstances.php deleted file mode 100644 index ebc8d64c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/Resource/ProjectsLocationsInstances.php +++ /dev/null @@ -1,93 +0,0 @@ - - * $sqlService = new Google_Service_SQLAdmin(...); - * $instances = $sqlService->instances; - * - */ -class Google_Service_SQLAdmin_Resource_ProjectsLocationsInstances extends Google_Service_Resource -{ - /** - * Reschedules the maintenance on the given instance. - * (instances.rescheduleMaintenance) - * - * @param string $parent The parent resource where Cloud SQL reshedule this - * database instance's maintenance. Format: - * projects/{project}/locations/{location}/instances/{instance} - * @param Google_Service_SQLAdmin_SqlInstancesRescheduleMaintenanceRequestBody $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string instance Cloud SQL instance ID. This does not include the - * project ID. - * @opt_param string project ID of the project that contains the instance. - * @return Google_Service_SQLAdmin_Operation - */ - public function rescheduleMaintenance($parent, Google_Service_SQLAdmin_SqlInstancesRescheduleMaintenanceRequestBody $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('rescheduleMaintenance', array($params), "Google_Service_SQLAdmin_Operation"); - } - /** - * Start External master migration. (instances.startExternalSync) - * - * @param string $parent The parent resource where Cloud SQL starts this - * database instance external sync. Format: - * projects/{project}/locations/{location}/instances/{instance} - * @param array $optParams Optional parameters. - * - * @opt_param string project ID of the project that contains the first - * generation instance. - * @opt_param string syncMode External sync mode - * @opt_param string instance Cloud SQL instance ID. This does not include the - * project ID. - * @return Google_Service_SQLAdmin_Operation - */ - public function startExternalSync($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('startExternalSync', array($params), "Google_Service_SQLAdmin_Operation"); - } - /** - * Verify External master external sync settings. - * (instances.verifyExternalSyncSettings) - * - * @param string $parent The parent resource where Cloud SQL verifies this - * database instance external sync settings. Format: - * projects/{project}/locations/{location}/instances/{instance} - * @param array $optParams Optional parameters. - * - * @opt_param bool verifyConnectionOnly Flag to enable verifying connection only - * @opt_param string instance Cloud SQL instance ID. This does not include the - * project ID. - * @opt_param string project Project ID of the project that contains the - * instance. - * @opt_param string syncMode External sync mode - * @return Google_Service_SQLAdmin_SqlInstancesVerifyExternalSyncSettingsResponse - */ - public function verifyExternalSyncSettings($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('verifyExternalSyncSettings', array($params), "Google_Service_SQLAdmin_SqlInstancesVerifyExternalSyncSettingsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/Resource/SslCerts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/Resource/SslCerts.php deleted file mode 100644 index b3e50815..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/Resource/SslCerts.php +++ /dev/null @@ -1,136 +0,0 @@ - - * $sqlService = new Google_Service_SQLAdmin(...); - * $sslCerts = $sqlService->sslCerts; - * - */ -class Google_Service_SQLAdmin_Resource_SslCerts extends Google_Service_Resource -{ - /** - * Generates a short-lived X509 certificate containing the provided public key - * and signed by a private key specific to the target instance. Users may use - * the certificate to authenticate as themselves when connecting to the - * database. (sslCerts.createEphemeral) - * - * @param string $project Project ID of the Cloud SQL project. - * @param string $instance Cloud SQL instance ID. This does not include the - * project ID. - * @param Google_Service_SQLAdmin_SslCertsCreateEphemeralRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string parent The parent resource where Cloud SQL creates this - * ephemeral certificate. Format: - * projects/{project}/locations/{location}/instances/{instance} - * @return Google_Service_SQLAdmin_SslCert - */ - public function createEphemeral($project, $instance, Google_Service_SQLAdmin_SslCertsCreateEphemeralRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('createEphemeral', array($params), "Google_Service_SQLAdmin_SslCert"); - } - /** - * Deletes the SSL certificate. For First Generation instances, the certificate - * remains valid until the instance is restarted. (sslCerts.delete) - * - * @param string $project Project ID of the project that contains the instance. - * @param string $instance Cloud SQL instance ID. This does not include the - * project ID. - * @param string $sha1Fingerprint Sha1 FingerPrint. - * @param array $optParams Optional parameters. - * - * @opt_param string resourceName The name of SSL certificate to delete. Format: - * projects/{project}/locations/{location}/instances/{instance}/sslCerts/{sslCer - * t} - * @return Google_Service_SQLAdmin_Operation - */ - public function delete($project, $instance, $sha1Fingerprint, $optParams = array()) - { - $params = array('project' => $project, 'instance' => $instance, 'sha1Fingerprint' => $sha1Fingerprint); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_SQLAdmin_Operation"); - } - /** - * Retrieves a particular SSL certificate. Does not include the private key - * (required for usage). The private key must be saved from the response to - * initial creation. (sslCerts.get) - * - * @param string $project Project ID of the project that contains the instance. - * @param string $instance Cloud SQL instance ID. This does not include the - * project ID. - * @param string $sha1Fingerprint Sha1 FingerPrint. - * @param array $optParams Optional parameters. - * - * @opt_param string resourceName Name of the resource ssl certificate. Format: - * projects/{project}/locations/{location}/instances/{instance}/sslCerts/{sslCer - * t} - * @return Google_Service_SQLAdmin_SslCert - */ - public function get($project, $instance, $sha1Fingerprint, $optParams = array()) - { - $params = array('project' => $project, 'instance' => $instance, 'sha1Fingerprint' => $sha1Fingerprint); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_SQLAdmin_SslCert"); - } - /** - * Creates an SSL certificate and returns it along with the private key and - * server certificate authority. The new certificate will not be usable until - * the instance is restarted. (sslCerts.insert) - * - * @param string $project Project ID of the project that contains the instance. - * @param string $instance Cloud SQL instance ID. This does not include the - * project ID. - * @param Google_Service_SQLAdmin_SslCertsInsertRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string parent The parent resource where Cloud SQL creates this SSL - * certificate. Format: - * projects/{project}/locations/{location}/instances/{instance} - * @return Google_Service_SQLAdmin_SslCertsInsertResponse - */ - public function insert($project, $instance, Google_Service_SQLAdmin_SslCertsInsertRequest $postBody, $optParams = array()) - { - $params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_SQLAdmin_SslCertsInsertResponse"); - } - /** - * Lists all of the current SSL certificates for the instance. - * (sslCerts.listSslCerts) - * - * @param string $project Project ID of the project that contains the instance. - * @param string $instance Cloud SQL instance ID. This does not include the - * project ID. - * @param array $optParams Optional parameters. - * - * @opt_param string parent The parent, which owns this collection of SSL - * certificates. Format: - * projects/{project}/locations/{location}/instances/{instance} - * @return Google_Service_SQLAdmin_SslCertsListResponse - */ - public function listSslCerts($project, $instance, $optParams = array()) - { - $params = array('project' => $project, 'instance' => $instance); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_SQLAdmin_SslCertsListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/Resource/Tiers.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/Resource/Tiers.php deleted file mode 100644 index a6557ec3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/Resource/Tiers.php +++ /dev/null @@ -1,42 +0,0 @@ - - * $sqlService = new Google_Service_SQLAdmin(...); - * $tiers = $sqlService->tiers; - * - */ -class Google_Service_SQLAdmin_Resource_Tiers extends Google_Service_Resource -{ - /** - * Lists all available machine types (tiers) for Cloud SQL, for example, - * db-n1-standard-1. For related information, see Pricing. (tiers.listTiers) - * - * @param string $project Project ID of the project for which to list tiers. - * @param array $optParams Optional parameters. - * @return Google_Service_SQLAdmin_TiersListResponse - */ - public function listTiers($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_SQLAdmin_TiersListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/Resource/Users.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/Resource/Users.php deleted file mode 100644 index 23eecb47..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/Resource/Users.php +++ /dev/null @@ -1,106 +0,0 @@ - - * $sqlService = new Google_Service_SQLAdmin(...); - * $users = $sqlService->users; - * - */ -class Google_Service_SQLAdmin_Resource_Users extends Google_Service_Resource -{ - /** - * Deletes a user from a Cloud SQL instance. (users.delete) - * - * @param string $project Project ID of the project that contains the instance. - * @param string $instance Database instance ID. This does not include the - * project ID. - * @param array $optParams Optional parameters. - * - * @opt_param string name Name of the user in the instance. - * @opt_param string resourceName The name of the user to delete. Format: - * projects/{project}/locations/{location}/instances/{instance}/users - * @opt_param string host Host of the user in the instance. - * @return Google_Service_SQLAdmin_Operation - */ - public function delete($project, $instance, $optParams = array()) - { - $params = array('project' => $project, 'instance' => $instance); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_SQLAdmin_Operation"); - } - /** - * Creates a new user in a Cloud SQL instance. (users.insert) - * - * @param string $project Project ID of the project that contains the instance. - * @param string $instance Database instance ID. This does not include the - * project ID. - * @param Google_Service_SQLAdmin_User $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string parent The parent resource where Cloud SQL creates this - * user. Format: projects/{project}/locations/{location}/instances/{instance} - * @return Google_Service_SQLAdmin_Operation - */ - public function insert($project, $instance, Google_Service_SQLAdmin_User $postBody, $optParams = array()) - { - $params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_SQLAdmin_Operation"); - } - /** - * Lists users in the specified Cloud SQL instance. (users.listUsers) - * - * @param string $project Project ID of the project that contains the instance. - * @param string $instance Database instance ID. This does not include the - * project ID. - * @param array $optParams Optional parameters. - * - * @opt_param string parent The parent, which owns this collection of users. - * Format: projects/{project}/locations/{location}/instances/{instance} - * @return Google_Service_SQLAdmin_UsersListResponse - */ - public function listUsers($project, $instance, $optParams = array()) - { - $params = array('project' => $project, 'instance' => $instance); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_SQLAdmin_UsersListResponse"); - } - /** - * Updates an existing user in a Cloud SQL instance. (users.update) - * - * @param string $project Project ID of the project that contains the instance. - * @param string $instance Database instance ID. This does not include the - * project ID. - * @param Google_Service_SQLAdmin_User $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string name Name of the user in the instance. - * @opt_param string resourceName The name of the user for Cloud SQL to update. - * Format: projects/{project}/locations/{location}/instances/{instance}/users - * @opt_param string host Optional. Host of the user in the instance. - * @return Google_Service_SQLAdmin_Operation - */ - public function update($project, $instance, Google_Service_SQLAdmin_User $postBody, $optParams = array()) - { - $params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_SQLAdmin_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/RestoreBackupContext.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/RestoreBackupContext.php deleted file mode 100644 index 44b58590..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/RestoreBackupContext.php +++ /dev/null @@ -1,57 +0,0 @@ -backupRunId = $backupRunId; - } - public function getBackupRunId() - { - return $this->backupRunId; - } - public function setInstanceId($instanceId) - { - $this->instanceId = $instanceId; - } - public function getInstanceId() - { - return $this->instanceId; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setProject($project) - { - $this->project = $project; - } - public function getProject() - { - return $this->project; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/RotateServerCaContext.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/RotateServerCaContext.php deleted file mode 100644 index c52f2ec2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/RotateServerCaContext.php +++ /dev/null @@ -1,39 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextVersion($nextVersion) - { - $this->nextVersion = $nextVersion; - } - public function getNextVersion() - { - return $this->nextVersion; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/Settings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/Settings.php deleted file mode 100644 index 4d52ed1c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/Settings.php +++ /dev/null @@ -1,237 +0,0 @@ -activationPolicy = $activationPolicy; - } - public function getActivationPolicy() - { - return $this->activationPolicy; - } - public function setAuthorizedGaeApplications($authorizedGaeApplications) - { - $this->authorizedGaeApplications = $authorizedGaeApplications; - } - public function getAuthorizedGaeApplications() - { - return $this->authorizedGaeApplications; - } - public function setAvailabilityType($availabilityType) - { - $this->availabilityType = $availabilityType; - } - public function getAvailabilityType() - { - return $this->availabilityType; - } - /** - * @param Google_Service_SQLAdmin_BackupConfiguration - */ - public function setBackupConfiguration(Google_Service_SQLAdmin_BackupConfiguration $backupConfiguration) - { - $this->backupConfiguration = $backupConfiguration; - } - /** - * @return Google_Service_SQLAdmin_BackupConfiguration - */ - public function getBackupConfiguration() - { - return $this->backupConfiguration; - } - public function setCrashSafeReplicationEnabled($crashSafeReplicationEnabled) - { - $this->crashSafeReplicationEnabled = $crashSafeReplicationEnabled; - } - public function getCrashSafeReplicationEnabled() - { - return $this->crashSafeReplicationEnabled; - } - public function setDataDiskSizeGb($dataDiskSizeGb) - { - $this->dataDiskSizeGb = $dataDiskSizeGb; - } - public function getDataDiskSizeGb() - { - return $this->dataDiskSizeGb; - } - public function setDataDiskType($dataDiskType) - { - $this->dataDiskType = $dataDiskType; - } - public function getDataDiskType() - { - return $this->dataDiskType; - } - /** - * @param Google_Service_SQLAdmin_DatabaseFlags - */ - public function setDatabaseFlags($databaseFlags) - { - $this->databaseFlags = $databaseFlags; - } - /** - * @return Google_Service_SQLAdmin_DatabaseFlags - */ - public function getDatabaseFlags() - { - return $this->databaseFlags; - } - public function setDatabaseReplicationEnabled($databaseReplicationEnabled) - { - $this->databaseReplicationEnabled = $databaseReplicationEnabled; - } - public function getDatabaseReplicationEnabled() - { - return $this->databaseReplicationEnabled; - } - /** - * @param Google_Service_SQLAdmin_IpConfiguration - */ - public function setIpConfiguration(Google_Service_SQLAdmin_IpConfiguration $ipConfiguration) - { - $this->ipConfiguration = $ipConfiguration; - } - /** - * @return Google_Service_SQLAdmin_IpConfiguration - */ - public function getIpConfiguration() - { - return $this->ipConfiguration; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_SQLAdmin_LocationPreference - */ - public function setLocationPreference(Google_Service_SQLAdmin_LocationPreference $locationPreference) - { - $this->locationPreference = $locationPreference; - } - /** - * @return Google_Service_SQLAdmin_LocationPreference - */ - public function getLocationPreference() - { - return $this->locationPreference; - } - /** - * @param Google_Service_SQLAdmin_MaintenanceWindow - */ - public function setMaintenanceWindow(Google_Service_SQLAdmin_MaintenanceWindow $maintenanceWindow) - { - $this->maintenanceWindow = $maintenanceWindow; - } - /** - * @return Google_Service_SQLAdmin_MaintenanceWindow - */ - public function getMaintenanceWindow() - { - return $this->maintenanceWindow; - } - public function setPricingPlan($pricingPlan) - { - $this->pricingPlan = $pricingPlan; - } - public function getPricingPlan() - { - return $this->pricingPlan; - } - public function setReplicationType($replicationType) - { - $this->replicationType = $replicationType; - } - public function getReplicationType() - { - return $this->replicationType; - } - public function setSettingsVersion($settingsVersion) - { - $this->settingsVersion = $settingsVersion; - } - public function getSettingsVersion() - { - return $this->settingsVersion; - } - public function setStorageAutoResize($storageAutoResize) - { - $this->storageAutoResize = $storageAutoResize; - } - public function getStorageAutoResize() - { - return $this->storageAutoResize; - } - public function setStorageAutoResizeLimit($storageAutoResizeLimit) - { - $this->storageAutoResizeLimit = $storageAutoResizeLimit; - } - public function getStorageAutoResizeLimit() - { - return $this->storageAutoResizeLimit; - } - public function setTier($tier) - { - $this->tier = $tier; - } - public function getTier() - { - return $this->tier; - } - public function setUserLabels($userLabels) - { - $this->userLabels = $userLabels; - } - public function getUserLabels() - { - return $this->userLabels; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/SqlExternalSyncSettingError.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/SqlExternalSyncSettingError.php deleted file mode 100644 index 8c4c4695..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/SqlExternalSyncSettingError.php +++ /dev/null @@ -1,48 +0,0 @@ -detail = $detail; - } - public function getDetail() - { - return $this->detail; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/SqlInstancesRescheduleMaintenanceRequestBody.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/SqlInstancesRescheduleMaintenanceRequestBody.php deleted file mode 100644 index 228dd0ff..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/SqlInstancesRescheduleMaintenanceRequestBody.php +++ /dev/null @@ -1,37 +0,0 @@ -reschedule = $reschedule; - } - /** - * @return Google_Service_SQLAdmin_Reschedule - */ - public function getReschedule() - { - return $this->reschedule; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/SqlInstancesVerifyExternalSyncSettingsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/SqlInstancesVerifyExternalSyncSettingsResponse.php deleted file mode 100644 index f7f392cf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/SqlInstancesVerifyExternalSyncSettingsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -errors = $errors; - } - /** - * @return Google_Service_SQLAdmin_SqlExternalSyncSettingError - */ - public function getErrors() - { - return $this->errors; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/SqlScheduledMaintenance.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/SqlScheduledMaintenance.php deleted file mode 100644 index f8297683..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/SqlScheduledMaintenance.php +++ /dev/null @@ -1,48 +0,0 @@ -canDefer = $canDefer; - } - public function getCanDefer() - { - return $this->canDefer; - } - public function setCanReschedule($canReschedule) - { - $this->canReschedule = $canReschedule; - } - public function getCanReschedule() - { - return $this->canReschedule; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/SqlServerDatabaseDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/SqlServerDatabaseDetails.php deleted file mode 100644 index 7e2189b2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/SqlServerDatabaseDetails.php +++ /dev/null @@ -1,39 +0,0 @@ -compatibilityLevel = $compatibilityLevel; - } - public function getCompatibilityLevel() - { - return $this->compatibilityLevel; - } - public function setRecoveryModel($recoveryModel) - { - $this->recoveryModel = $recoveryModel; - } - public function getRecoveryModel() - { - return $this->recoveryModel; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/SqlServerUserDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/SqlServerUserDetails.php deleted file mode 100644 index 964c2c16..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/SqlServerUserDetails.php +++ /dev/null @@ -1,40 +0,0 @@ -disabled = $disabled; - } - public function getDisabled() - { - return $this->disabled; - } - public function setServerRoles($serverRoles) - { - $this->serverRoles = $serverRoles; - } - public function getServerRoles() - { - return $this->serverRoles; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/SslCert.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/SslCert.php deleted file mode 100644 index ef1e1649..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/SslCert.php +++ /dev/null @@ -1,102 +0,0 @@ -cert = $cert; - } - public function getCert() - { - return $this->cert; - } - public function setCertSerialNumber($certSerialNumber) - { - $this->certSerialNumber = $certSerialNumber; - } - public function getCertSerialNumber() - { - return $this->certSerialNumber; - } - public function setCommonName($commonName) - { - $this->commonName = $commonName; - } - public function getCommonName() - { - return $this->commonName; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setExpirationTime($expirationTime) - { - $this->expirationTime = $expirationTime; - } - public function getExpirationTime() - { - return $this->expirationTime; - } - public function setInstance($instance) - { - $this->instance = $instance; - } - public function getInstance() - { - return $this->instance; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setSha1Fingerprint($sha1Fingerprint) - { - $this->sha1Fingerprint = $sha1Fingerprint; - } - public function getSha1Fingerprint() - { - return $this->sha1Fingerprint; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/SslCertDetail.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/SslCertDetail.php deleted file mode 100644 index 3eddb15f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/SslCertDetail.php +++ /dev/null @@ -1,46 +0,0 @@ -certInfo = $certInfo; - } - /** - * @return Google_Service_SQLAdmin_SslCert - */ - public function getCertInfo() - { - return $this->certInfo; - } - public function setCertPrivateKey($certPrivateKey) - { - $this->certPrivateKey = $certPrivateKey; - } - public function getCertPrivateKey() - { - return $this->certPrivateKey; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/SslCertsCreateEphemeralRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/SslCertsCreateEphemeralRequest.php deleted file mode 100644 index 0da51f33..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/SslCertsCreateEphemeralRequest.php +++ /dev/null @@ -1,33 +0,0 @@ - "public_key", - ); - public $publicKey; - - public function setPublicKey($publicKey) - { - $this->publicKey = $publicKey; - } - public function getPublicKey() - { - return $this->publicKey; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/SslCertsInsertRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/SslCertsInsertRequest.php deleted file mode 100644 index 02395a70..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/SslCertsInsertRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -commonName = $commonName; - } - public function getCommonName() - { - return $this->commonName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/SslCertsInsertResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/SslCertsInsertResponse.php deleted file mode 100644 index f6ab88a7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/SslCertsInsertResponse.php +++ /dev/null @@ -1,78 +0,0 @@ -clientCert = $clientCert; - } - /** - * @return Google_Service_SQLAdmin_SslCertDetail - */ - public function getClientCert() - { - return $this->clientCert; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_SQLAdmin_Operation - */ - public function setOperation(Google_Service_SQLAdmin_Operation $operation) - { - $this->operation = $operation; - } - /** - * @return Google_Service_SQLAdmin_Operation - */ - public function getOperation() - { - return $this->operation; - } - /** - * @param Google_Service_SQLAdmin_SslCert - */ - public function setServerCaCert(Google_Service_SQLAdmin_SslCert $serverCaCert) - { - $this->serverCaCert = $serverCaCert; - } - /** - * @return Google_Service_SQLAdmin_SslCert - */ - public function getServerCaCert() - { - return $this->serverCaCert; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/SslCertsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/SslCertsListResponse.php deleted file mode 100644 index 80664993..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/SslCertsListResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_SQLAdmin_SslCert - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/Tier.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/Tier.php deleted file mode 100644 index aec5474e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/Tier.php +++ /dev/null @@ -1,71 +0,0 @@ - "DiskQuota", - "rAM" => "RAM", - ); - public $diskQuota; - public $rAM; - public $kind; - public $region; - public $tier; - - public function setDiskQuota($diskQuota) - { - $this->diskQuota = $diskQuota; - } - public function getDiskQuota() - { - return $this->diskQuota; - } - public function setRAM($rAM) - { - $this->rAM = $rAM; - } - public function getRAM() - { - return $this->rAM; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - public function setTier($tier) - { - $this->tier = $tier; - } - public function getTier() - { - return $this->tier; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/TiersListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/TiersListResponse.php deleted file mode 100644 index 106e7ad0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/TiersListResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_SQLAdmin_Tier - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/TruncateLogContext.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/TruncateLogContext.php deleted file mode 100644 index 9604d3f7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/TruncateLogContext.php +++ /dev/null @@ -1,39 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLogType($logType) - { - $this->logType = $logType; - } - public function getLogType() - { - return $this->logType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/User.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/User.php deleted file mode 100644 index a1820706..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/User.php +++ /dev/null @@ -1,100 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setHost($host) - { - $this->host = $host; - } - public function getHost() - { - return $this->host; - } - public function setInstance($instance) - { - $this->instance = $instance; - } - public function getInstance() - { - return $this->instance; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPassword($password) - { - $this->password = $password; - } - public function getPassword() - { - return $this->password; - } - public function setProject($project) - { - $this->project = $project; - } - public function getProject() - { - return $this->project; - } - /** - * @param Google_Service_SQLAdmin_SqlServerUserDetails - */ - public function setSqlserverUserDetails(Google_Service_SQLAdmin_SqlServerUserDetails $sqlserverUserDetails) - { - $this->sqlserverUserDetails = $sqlserverUserDetails; - } - /** - * @return Google_Service_SQLAdmin_SqlServerUserDetails - */ - public function getSqlserverUserDetails() - { - return $this->sqlserverUserDetails; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/UsersListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/UsersListResponse.php deleted file mode 100644 index 6bb2dc07..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SQLAdmin/UsersListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_SQLAdmin_User - */ - public function getItems() - { - return $this->items; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing.php deleted file mode 100644 index f48e7bce..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing.php +++ /dev/null @@ -1,189 +0,0 @@ - - * Enables client applications to check web resources (most commonly URLs) - * against Google-generated lists of unsafe web resources. The Safe Browsing - * APIs are for non-commercial use only. If you need to use APIs to detect - * malicious URLs for commercial purposes – meaning “for sale or revenue- - * generating purposes” – please refer to the Web Risk API.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Safebrowsing extends Google_Service -{ - - - public $encodedFullHashes; - public $encodedUpdates; - public $fullHashes; - public $threatHits; - public $threatListUpdates; - public $threatLists; - public $threatMatches; - - /** - * Constructs the internal representation of the Safebrowsing service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://safebrowsing.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v4'; - $this->serviceName = 'safebrowsing'; - - $this->encodedFullHashes = new Google_Service_Safebrowsing_Resource_EncodedFullHashes( - $this, - $this->serviceName, - 'encodedFullHashes', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v4/encodedFullHashes/{encodedRequest}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'encodedRequest' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clientVersion' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'clientId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->encodedUpdates = new Google_Service_Safebrowsing_Resource_EncodedUpdates( - $this, - $this->serviceName, - 'encodedUpdates', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v4/encodedUpdates/{encodedRequest}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'encodedRequest' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'clientId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'clientVersion' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->fullHashes = new Google_Service_Safebrowsing_Resource_FullHashes( - $this, - $this->serviceName, - 'fullHashes', - array( - 'methods' => array( - 'find' => array( - 'path' => 'v4/fullHashes:find', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->threatHits = new Google_Service_Safebrowsing_Resource_ThreatHits( - $this, - $this->serviceName, - 'threatHits', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v4/threatHits', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->threatListUpdates = new Google_Service_Safebrowsing_Resource_ThreatListUpdates( - $this, - $this->serviceName, - 'threatListUpdates', - array( - 'methods' => array( - 'fetch' => array( - 'path' => 'v4/threatListUpdates:fetch', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->threatLists = new Google_Service_Safebrowsing_Resource_ThreatLists( - $this, - $this->serviceName, - 'threatLists', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v4/threatLists', - 'httpMethod' => 'GET', - 'parameters' => array(), - ), - ) - ) - ); - $this->threatMatches = new Google_Service_Safebrowsing_Resource_ThreatMatches( - $this, - $this->serviceName, - 'threatMatches', - array( - 'methods' => array( - 'find' => array( - 'path' => 'v4/threatMatches:find', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/Checksum.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/Checksum.php deleted file mode 100644 index ead1828e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/Checksum.php +++ /dev/null @@ -1,30 +0,0 @@ -sha256 = $sha256; - } - public function getSha256() - { - return $this->sha256; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/ClientInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/ClientInfo.php deleted file mode 100644 index 2a566996..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/ClientInfo.php +++ /dev/null @@ -1,39 +0,0 @@ -clientId = $clientId; - } - public function getClientId() - { - return $this->clientId; - } - public function setClientVersion($clientVersion) - { - $this->clientVersion = $clientVersion; - } - public function getClientVersion() - { - return $this->clientVersion; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/Constraints.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/Constraints.php deleted file mode 100644 index 28b3c0fa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/Constraints.php +++ /dev/null @@ -1,76 +0,0 @@ -deviceLocation = $deviceLocation; - } - public function getDeviceLocation() - { - return $this->deviceLocation; - } - public function setLanguage($language) - { - $this->language = $language; - } - public function getLanguage() - { - return $this->language; - } - public function setMaxDatabaseEntries($maxDatabaseEntries) - { - $this->maxDatabaseEntries = $maxDatabaseEntries; - } - public function getMaxDatabaseEntries() - { - return $this->maxDatabaseEntries; - } - public function setMaxUpdateEntries($maxUpdateEntries) - { - $this->maxUpdateEntries = $maxUpdateEntries; - } - public function getMaxUpdateEntries() - { - return $this->maxUpdateEntries; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - public function setSupportedCompressions($supportedCompressions) - { - $this->supportedCompressions = $supportedCompressions; - } - public function getSupportedCompressions() - { - return $this->supportedCompressions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/FetchThreatListUpdatesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/FetchThreatListUpdatesRequest.php deleted file mode 100644 index 7fb18121..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/FetchThreatListUpdatesRequest.php +++ /dev/null @@ -1,54 +0,0 @@ -client = $client; - } - /** - * @return Google_Service_Safebrowsing_ClientInfo - */ - public function getClient() - { - return $this->client; - } - /** - * @param Google_Service_Safebrowsing_ListUpdateRequest - */ - public function setListUpdateRequests($listUpdateRequests) - { - $this->listUpdateRequests = $listUpdateRequests; - } - /** - * @return Google_Service_Safebrowsing_ListUpdateRequest - */ - public function getListUpdateRequests() - { - return $this->listUpdateRequests; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/FetchThreatListUpdatesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/FetchThreatListUpdatesResponse.php deleted file mode 100644 index 93287c8d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/FetchThreatListUpdatesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -listUpdateResponses = $listUpdateResponses; - } - /** - * @return Google_Service_Safebrowsing_ListUpdateResponse - */ - public function getListUpdateResponses() - { - return $this->listUpdateResponses; - } - public function setMinimumWaitDuration($minimumWaitDuration) - { - $this->minimumWaitDuration = $minimumWaitDuration; - } - public function getMinimumWaitDuration() - { - return $this->minimumWaitDuration; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/FindFullHashesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/FindFullHashesRequest.php deleted file mode 100644 index 4d4b779b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/FindFullHashesRequest.php +++ /dev/null @@ -1,79 +0,0 @@ -apiClient = $apiClient; - } - /** - * @return Google_Service_Safebrowsing_ClientInfo - */ - public function getApiClient() - { - return $this->apiClient; - } - /** - * @param Google_Service_Safebrowsing_ClientInfo - */ - public function setClient(Google_Service_Safebrowsing_ClientInfo $client) - { - $this->client = $client; - } - /** - * @return Google_Service_Safebrowsing_ClientInfo - */ - public function getClient() - { - return $this->client; - } - public function setClientStates($clientStates) - { - $this->clientStates = $clientStates; - } - public function getClientStates() - { - return $this->clientStates; - } - /** - * @param Google_Service_Safebrowsing_ThreatInfo - */ - public function setThreatInfo(Google_Service_Safebrowsing_ThreatInfo $threatInfo) - { - $this->threatInfo = $threatInfo; - } - /** - * @return Google_Service_Safebrowsing_ThreatInfo - */ - public function getThreatInfo() - { - return $this->threatInfo; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/FindFullHashesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/FindFullHashesResponse.php deleted file mode 100644 index 4004799e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/FindFullHashesResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -matches = $matches; - } - /** - * @return Google_Service_Safebrowsing_ThreatMatch - */ - public function getMatches() - { - return $this->matches; - } - public function setMinimumWaitDuration($minimumWaitDuration) - { - $this->minimumWaitDuration = $minimumWaitDuration; - } - public function getMinimumWaitDuration() - { - return $this->minimumWaitDuration; - } - public function setNegativeCacheDuration($negativeCacheDuration) - { - $this->negativeCacheDuration = $negativeCacheDuration; - } - public function getNegativeCacheDuration() - { - return $this->negativeCacheDuration; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/FindThreatMatchesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/FindThreatMatchesRequest.php deleted file mode 100644 index 97c9fd8b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/FindThreatMatchesRequest.php +++ /dev/null @@ -1,53 +0,0 @@ -client = $client; - } - /** - * @return Google_Service_Safebrowsing_ClientInfo - */ - public function getClient() - { - return $this->client; - } - /** - * @param Google_Service_Safebrowsing_ThreatInfo - */ - public function setThreatInfo(Google_Service_Safebrowsing_ThreatInfo $threatInfo) - { - $this->threatInfo = $threatInfo; - } - /** - * @return Google_Service_Safebrowsing_ThreatInfo - */ - public function getThreatInfo() - { - return $this->threatInfo; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/FindThreatMatchesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/FindThreatMatchesResponse.php deleted file mode 100644 index ce7f7ea4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/FindThreatMatchesResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -matches = $matches; - } - /** - * @return Google_Service_Safebrowsing_ThreatMatch - */ - public function getMatches() - { - return $this->matches; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/ListThreatListsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/ListThreatListsResponse.php deleted file mode 100644 index 6cd55cf4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/ListThreatListsResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -threatLists = $threatLists; - } - /** - * @return Google_Service_Safebrowsing_ThreatListDescriptor - */ - public function getThreatLists() - { - return $this->threatLists; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/ListUpdateRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/ListUpdateRequest.php deleted file mode 100644 index 59d50545..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/ListUpdateRequest.php +++ /dev/null @@ -1,73 +0,0 @@ -constraints = $constraints; - } - /** - * @return Google_Service_Safebrowsing_Constraints - */ - public function getConstraints() - { - return $this->constraints; - } - public function setPlatformType($platformType) - { - $this->platformType = $platformType; - } - public function getPlatformType() - { - return $this->platformType; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setThreatEntryType($threatEntryType) - { - $this->threatEntryType = $threatEntryType; - } - public function getThreatEntryType() - { - return $this->threatEntryType; - } - public function setThreatType($threatType) - { - $this->threatType = $threatType; - } - public function getThreatType() - { - return $this->threatType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/ListUpdateResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/ListUpdateResponse.php deleted file mode 100644 index 04eec4ae..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/ListUpdateResponse.php +++ /dev/null @@ -1,115 +0,0 @@ -additions = $additions; - } - /** - * @return Google_Service_Safebrowsing_ThreatEntrySet - */ - public function getAdditions() - { - return $this->additions; - } - /** - * @param Google_Service_Safebrowsing_Checksum - */ - public function setChecksum(Google_Service_Safebrowsing_Checksum $checksum) - { - $this->checksum = $checksum; - } - /** - * @return Google_Service_Safebrowsing_Checksum - */ - public function getChecksum() - { - return $this->checksum; - } - public function setNewClientState($newClientState) - { - $this->newClientState = $newClientState; - } - public function getNewClientState() - { - return $this->newClientState; - } - public function setPlatformType($platformType) - { - $this->platformType = $platformType; - } - public function getPlatformType() - { - return $this->platformType; - } - /** - * @param Google_Service_Safebrowsing_ThreatEntrySet - */ - public function setRemovals($removals) - { - $this->removals = $removals; - } - /** - * @return Google_Service_Safebrowsing_ThreatEntrySet - */ - public function getRemovals() - { - return $this->removals; - } - public function setResponseType($responseType) - { - $this->responseType = $responseType; - } - public function getResponseType() - { - return $this->responseType; - } - public function setThreatEntryType($threatEntryType) - { - $this->threatEntryType = $threatEntryType; - } - public function getThreatEntryType() - { - return $this->threatEntryType; - } - public function setThreatType($threatType) - { - $this->threatType = $threatType; - } - public function getThreatType() - { - return $this->threatType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/MetadataEntry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/MetadataEntry.php deleted file mode 100644 index 37f251fb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/MetadataEntry.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/RawHashes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/RawHashes.php deleted file mode 100644 index 31b09e9b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/RawHashes.php +++ /dev/null @@ -1,39 +0,0 @@ -prefixSize = $prefixSize; - } - public function getPrefixSize() - { - return $this->prefixSize; - } - public function setRawHashes($rawHashes) - { - $this->rawHashes = $rawHashes; - } - public function getRawHashes() - { - return $this->rawHashes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/RawIndices.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/RawIndices.php deleted file mode 100644 index d17d7a59..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/RawIndices.php +++ /dev/null @@ -1,31 +0,0 @@ -indices = $indices; - } - public function getIndices() - { - return $this->indices; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/Resource/EncodedFullHashes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/Resource/EncodedFullHashes.php deleted file mode 100644 index dd20d3a7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/Resource/EncodedFullHashes.php +++ /dev/null @@ -1,45 +0,0 @@ - - * $safebrowsingService = new Google_Service_Safebrowsing(...); - * $encodedFullHashes = $safebrowsingService->encodedFullHashes; - * - */ -class Google_Service_Safebrowsing_Resource_EncodedFullHashes extends Google_Service_Resource -{ - /** - * (encodedFullHashes.get) - * - * @param string $encodedRequest A serialized FindFullHashesRequest proto. - * @param array $optParams Optional parameters. - * - * @opt_param string clientVersion The version of the client implementation. - * @opt_param string clientId A client ID that (hopefully) uniquely identifies - * the client implementation of the Safe Browsing API. - * @return Google_Service_Safebrowsing_FindFullHashesResponse - */ - public function get($encodedRequest, $optParams = array()) - { - $params = array('encodedRequest' => $encodedRequest); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Safebrowsing_FindFullHashesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/Resource/EncodedUpdates.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/Resource/EncodedUpdates.php deleted file mode 100644 index 77ef52c7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/Resource/EncodedUpdates.php +++ /dev/null @@ -1,46 +0,0 @@ - - * $safebrowsingService = new Google_Service_Safebrowsing(...); - * $encodedUpdates = $safebrowsingService->encodedUpdates; - * - */ -class Google_Service_Safebrowsing_Resource_EncodedUpdates extends Google_Service_Resource -{ - /** - * (encodedUpdates.get) - * - * @param string $encodedRequest A serialized FetchThreatListUpdatesRequest - * proto. - * @param array $optParams Optional parameters. - * - * @opt_param string clientId A client ID that uniquely identifies the client - * implementation of the Safe Browsing API. - * @opt_param string clientVersion The version of the client implementation. - * @return Google_Service_Safebrowsing_FetchThreatListUpdatesResponse - */ - public function get($encodedRequest, $optParams = array()) - { - $params = array('encodedRequest' => $encodedRequest); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Safebrowsing_FetchThreatListUpdatesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/Resource/FullHashes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/Resource/FullHashes.php deleted file mode 100644 index e8016585..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/Resource/FullHashes.php +++ /dev/null @@ -1,42 +0,0 @@ - - * $safebrowsingService = new Google_Service_Safebrowsing(...); - * $fullHashes = $safebrowsingService->fullHashes; - * - */ -class Google_Service_Safebrowsing_Resource_FullHashes extends Google_Service_Resource -{ - /** - * Finds the full hashes that match the requested hash prefixes. - * (fullHashes.find) - * - * @param Google_Service_Safebrowsing_FindFullHashesRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Safebrowsing_FindFullHashesResponse - */ - public function find(Google_Service_Safebrowsing_FindFullHashesRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('find', array($params), "Google_Service_Safebrowsing_FindFullHashesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/Resource/ThreatHits.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/Resource/ThreatHits.php deleted file mode 100644 index 4442467f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/Resource/ThreatHits.php +++ /dev/null @@ -1,42 +0,0 @@ - - * $safebrowsingService = new Google_Service_Safebrowsing(...); - * $threatHits = $safebrowsingService->threatHits; - * - */ -class Google_Service_Safebrowsing_Resource_ThreatHits extends Google_Service_Resource -{ - /** - * Reports a Safe Browsing threat list hit to Google. Only projects with - * TRUSTED_REPORTER visibility can use this method. (threatHits.create) - * - * @param Google_Service_Safebrowsing_ThreatHit $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Safebrowsing_SafebrowsingEmpty - */ - public function create(Google_Service_Safebrowsing_ThreatHit $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Safebrowsing_SafebrowsingEmpty"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/Resource/ThreatListUpdates.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/Resource/ThreatListUpdates.php deleted file mode 100644 index f21cb720..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/Resource/ThreatListUpdates.php +++ /dev/null @@ -1,42 +0,0 @@ - - * $safebrowsingService = new Google_Service_Safebrowsing(...); - * $threatListUpdates = $safebrowsingService->threatListUpdates; - * - */ -class Google_Service_Safebrowsing_Resource_ThreatListUpdates extends Google_Service_Resource -{ - /** - * Fetches the most recent threat list updates. A client can request updates for - * multiple lists at once. (threatListUpdates.fetch) - * - * @param Google_Service_Safebrowsing_FetchThreatListUpdatesRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Safebrowsing_FetchThreatListUpdatesResponse - */ - public function fetch(Google_Service_Safebrowsing_FetchThreatListUpdatesRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('fetch', array($params), "Google_Service_Safebrowsing_FetchThreatListUpdatesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/Resource/ThreatLists.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/Resource/ThreatLists.php deleted file mode 100644 index 9adf351c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/Resource/ThreatLists.php +++ /dev/null @@ -1,41 +0,0 @@ - - * $safebrowsingService = new Google_Service_Safebrowsing(...); - * $threatLists = $safebrowsingService->threatLists; - * - */ -class Google_Service_Safebrowsing_Resource_ThreatLists extends Google_Service_Resource -{ - /** - * Lists the Safe Browsing threat lists available for download. - * (threatLists.listThreatLists) - * - * @param array $optParams Optional parameters. - * @return Google_Service_Safebrowsing_ListThreatListsResponse - */ - public function listThreatLists($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Safebrowsing_ListThreatListsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/Resource/ThreatMatches.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/Resource/ThreatMatches.php deleted file mode 100644 index 570cca54..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/Resource/ThreatMatches.php +++ /dev/null @@ -1,42 +0,0 @@ - - * $safebrowsingService = new Google_Service_Safebrowsing(...); - * $threatMatches = $safebrowsingService->threatMatches; - * - */ -class Google_Service_Safebrowsing_Resource_ThreatMatches extends Google_Service_Resource -{ - /** - * Finds the threat entries that match the Safe Browsing lists. - * (threatMatches.find) - * - * @param Google_Service_Safebrowsing_FindThreatMatchesRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Safebrowsing_FindThreatMatchesResponse - */ - public function find(Google_Service_Safebrowsing_FindThreatMatchesRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('find', array($params), "Google_Service_Safebrowsing_FindThreatMatchesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/RiceDeltaEncoding.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/RiceDeltaEncoding.php deleted file mode 100644 index 0b74d79d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/RiceDeltaEncoding.php +++ /dev/null @@ -1,57 +0,0 @@ -encodedData = $encodedData; - } - public function getEncodedData() - { - return $this->encodedData; - } - public function setFirstValue($firstValue) - { - $this->firstValue = $firstValue; - } - public function getFirstValue() - { - return $this->firstValue; - } - public function setNumEntries($numEntries) - { - $this->numEntries = $numEntries; - } - public function getNumEntries() - { - return $this->numEntries; - } - public function setRiceParameter($riceParameter) - { - $this->riceParameter = $riceParameter; - } - public function getRiceParameter() - { - return $this->riceParameter; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/SafebrowsingEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/SafebrowsingEmpty.php deleted file mode 100644 index 326251d0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/SafebrowsingEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -digest = $digest; - } - public function getDigest() - { - return $this->digest; - } - public function setHash($hash) - { - $this->hash = $hash; - } - public function getHash() - { - return $this->hash; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/ThreatEntryMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/ThreatEntryMetadata.php deleted file mode 100644 index e645521a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/ThreatEntryMetadata.php +++ /dev/null @@ -1,38 +0,0 @@ -entries = $entries; - } - /** - * @return Google_Service_Safebrowsing_MetadataEntry - */ - public function getEntries() - { - return $this->entries; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/ThreatEntrySet.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/ThreatEntrySet.php deleted file mode 100644 index 959dd197..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/ThreatEntrySet.php +++ /dev/null @@ -1,94 +0,0 @@ -compressionType = $compressionType; - } - public function getCompressionType() - { - return $this->compressionType; - } - /** - * @param Google_Service_Safebrowsing_RawHashes - */ - public function setRawHashes(Google_Service_Safebrowsing_RawHashes $rawHashes) - { - $this->rawHashes = $rawHashes; - } - /** - * @return Google_Service_Safebrowsing_RawHashes - */ - public function getRawHashes() - { - return $this->rawHashes; - } - /** - * @param Google_Service_Safebrowsing_RawIndices - */ - public function setRawIndices(Google_Service_Safebrowsing_RawIndices $rawIndices) - { - $this->rawIndices = $rawIndices; - } - /** - * @return Google_Service_Safebrowsing_RawIndices - */ - public function getRawIndices() - { - return $this->rawIndices; - } - /** - * @param Google_Service_Safebrowsing_RiceDeltaEncoding - */ - public function setRiceHashes(Google_Service_Safebrowsing_RiceDeltaEncoding $riceHashes) - { - $this->riceHashes = $riceHashes; - } - /** - * @return Google_Service_Safebrowsing_RiceDeltaEncoding - */ - public function getRiceHashes() - { - return $this->riceHashes; - } - /** - * @param Google_Service_Safebrowsing_RiceDeltaEncoding - */ - public function setRiceIndices(Google_Service_Safebrowsing_RiceDeltaEncoding $riceIndices) - { - $this->riceIndices = $riceIndices; - } - /** - * @return Google_Service_Safebrowsing_RiceDeltaEncoding - */ - public function getRiceIndices() - { - return $this->riceIndices; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/ThreatHit.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/ThreatHit.php deleted file mode 100644 index e168740a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/ThreatHit.php +++ /dev/null @@ -1,104 +0,0 @@ -clientInfo = $clientInfo; - } - /** - * @return Google_Service_Safebrowsing_ClientInfo - */ - public function getClientInfo() - { - return $this->clientInfo; - } - /** - * @param Google_Service_Safebrowsing_ThreatEntry - */ - public function setEntry(Google_Service_Safebrowsing_ThreatEntry $entry) - { - $this->entry = $entry; - } - /** - * @return Google_Service_Safebrowsing_ThreatEntry - */ - public function getEntry() - { - return $this->entry; - } - public function setPlatformType($platformType) - { - $this->platformType = $platformType; - } - public function getPlatformType() - { - return $this->platformType; - } - /** - * @param Google_Service_Safebrowsing_ThreatSource - */ - public function setResources($resources) - { - $this->resources = $resources; - } - /** - * @return Google_Service_Safebrowsing_ThreatSource - */ - public function getResources() - { - return $this->resources; - } - public function setThreatType($threatType) - { - $this->threatType = $threatType; - } - public function getThreatType() - { - return $this->threatType; - } - /** - * @param Google_Service_Safebrowsing_UserInfo - */ - public function setUserInfo(Google_Service_Safebrowsing_UserInfo $userInfo) - { - $this->userInfo = $userInfo; - } - /** - * @return Google_Service_Safebrowsing_UserInfo - */ - public function getUserInfo() - { - return $this->userInfo; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/ThreatInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/ThreatInfo.php deleted file mode 100644 index a020ae80..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/ThreatInfo.php +++ /dev/null @@ -1,65 +0,0 @@ -platformTypes = $platformTypes; - } - public function getPlatformTypes() - { - return $this->platformTypes; - } - /** - * @param Google_Service_Safebrowsing_ThreatEntry - */ - public function setThreatEntries($threatEntries) - { - $this->threatEntries = $threatEntries; - } - /** - * @return Google_Service_Safebrowsing_ThreatEntry - */ - public function getThreatEntries() - { - return $this->threatEntries; - } - public function setThreatEntryTypes($threatEntryTypes) - { - $this->threatEntryTypes = $threatEntryTypes; - } - public function getThreatEntryTypes() - { - return $this->threatEntryTypes; - } - public function setThreatTypes($threatTypes) - { - $this->threatTypes = $threatTypes; - } - public function getThreatTypes() - { - return $this->threatTypes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/ThreatListDescriptor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/ThreatListDescriptor.php deleted file mode 100644 index 33bae910..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/ThreatListDescriptor.php +++ /dev/null @@ -1,48 +0,0 @@ -platformType = $platformType; - } - public function getPlatformType() - { - return $this->platformType; - } - public function setThreatEntryType($threatEntryType) - { - $this->threatEntryType = $threatEntryType; - } - public function getThreatEntryType() - { - return $this->threatEntryType; - } - public function setThreatType($threatType) - { - $this->threatType = $threatType; - } - public function getThreatType() - { - return $this->threatType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/ThreatMatch.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/ThreatMatch.php deleted file mode 100644 index 2d20930c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/ThreatMatch.php +++ /dev/null @@ -1,88 +0,0 @@ -cacheDuration = $cacheDuration; - } - public function getCacheDuration() - { - return $this->cacheDuration; - } - public function setPlatformType($platformType) - { - $this->platformType = $platformType; - } - public function getPlatformType() - { - return $this->platformType; - } - /** - * @param Google_Service_Safebrowsing_ThreatEntry - */ - public function setThreat(Google_Service_Safebrowsing_ThreatEntry $threat) - { - $this->threat = $threat; - } - /** - * @return Google_Service_Safebrowsing_ThreatEntry - */ - public function getThreat() - { - return $this->threat; - } - /** - * @param Google_Service_Safebrowsing_ThreatEntryMetadata - */ - public function setThreatEntryMetadata(Google_Service_Safebrowsing_ThreatEntryMetadata $threatEntryMetadata) - { - $this->threatEntryMetadata = $threatEntryMetadata; - } - /** - * @return Google_Service_Safebrowsing_ThreatEntryMetadata - */ - public function getThreatEntryMetadata() - { - return $this->threatEntryMetadata; - } - public function setThreatEntryType($threatEntryType) - { - $this->threatEntryType = $threatEntryType; - } - public function getThreatEntryType() - { - return $this->threatEntryType; - } - public function setThreatType($threatType) - { - $this->threatType = $threatType; - } - public function getThreatType() - { - return $this->threatType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/ThreatSource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/ThreatSource.php deleted file mode 100644 index a435c6c0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/ThreatSource.php +++ /dev/null @@ -1,57 +0,0 @@ -referrer = $referrer; - } - public function getReferrer() - { - return $this->referrer; - } - public function setRemoteIp($remoteIp) - { - $this->remoteIp = $remoteIp; - } - public function getRemoteIp() - { - return $this->remoteIp; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/UserInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/UserInfo.php deleted file mode 100644 index b3344a03..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Safebrowsing/UserInfo.php +++ /dev/null @@ -1,39 +0,0 @@ -regionCode = $regionCode; - } - public function getRegionCode() - { - return $this->regionCode; - } - public function setUserId($userId) - { - $this->userId = $userId; - } - public function getUserId() - { - return $this->userId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal.php deleted file mode 100644 index 29ce4c36..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal.php +++ /dev/null @@ -1,564 +0,0 @@ - -

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Sasportal extends Google_Service -{ - /** View your email address. */ - const USERINFO_EMAIL = - "https://www.googleapis.com/auth/userinfo.email"; - - public $customers; - public $customers_devices; - public $customers_nodes; - public $installer; - public $nodes_devices; - public $nodes_nodes; - public $policies; - - /** - * Constructs the internal representation of the Sasportal service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://sasportal.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1alpha1'; - $this->serviceName = 'sasportal'; - - $this->customers = new Google_Service_Sasportal_Resource_Customers( - $this, - $this->serviceName, - 'customers', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1alpha1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1alpha1/customers', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v1alpha1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->customers_devices = new Google_Service_Sasportal_Resource_CustomersDevices( - $this, - $this->serviceName, - 'devices', - array( - 'methods' => array( - 'bulk' => array( - 'path' => 'v1alpha1/{+parent}/devices:bulk', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'create' => array( - 'path' => 'v1alpha1/{+parent}/devices', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'createSigned' => array( - 'path' => 'v1alpha1/{+parent}/devices:createSigned', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1alpha1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1alpha1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1alpha1/{+parent}/devices', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'move' => array( - 'path' => 'v1alpha1/{+name}:move', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => 'v1alpha1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'signDevice' => array( - 'path' => 'v1alpha1/{+name}:signDevice', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'updateSigned' => array( - 'path' => 'v1alpha1/{+name}:updateSigned', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->customers_nodes = new Google_Service_Sasportal_Resource_CustomersNodes( - $this, - $this->serviceName, - 'nodes', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1alpha1/{+parent}/nodes', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1alpha1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1alpha1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1alpha1/{+parent}/nodes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'move' => array( - 'path' => 'v1alpha1/{+name}:move', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => 'v1alpha1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->installer = new Google_Service_Sasportal_Resource_Installer( - $this, - $this->serviceName, - 'installer', - array( - 'methods' => array( - 'generateSecret' => array( - 'path' => 'v1alpha1/installer:generateSecret', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'validate' => array( - 'path' => 'v1alpha1/installer:validate', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->nodes_devices = new Google_Service_Sasportal_Resource_NodesDevices( - $this, - $this->serviceName, - 'devices', - array( - 'methods' => array( - 'bulk' => array( - 'path' => 'v1alpha1/{+parent}/devices:bulk', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'create' => array( - 'path' => 'v1alpha1/{+parent}/devices', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'createSigned' => array( - 'path' => 'v1alpha1/{+parent}/devices:createSigned', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1alpha1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1alpha1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1alpha1/{+parent}/devices', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'move' => array( - 'path' => 'v1alpha1/{+name}:move', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => 'v1alpha1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'signDevice' => array( - 'path' => 'v1alpha1/{+name}:signDevice', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'updateSigned' => array( - 'path' => 'v1alpha1/{+name}:updateSigned', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->nodes_nodes = new Google_Service_Sasportal_Resource_NodesNodes( - $this, - $this->serviceName, - 'nodes', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1alpha1/{+parent}/nodes', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1alpha1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1alpha1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1alpha1/{+parent}/nodes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'move' => array( - 'path' => 'v1alpha1/{+name}:move', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => 'v1alpha1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->policies = new Google_Service_Sasportal_Resource_Policies( - $this, - $this->serviceName, - 'policies', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1alpha1/policies:get', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'set' => array( - 'path' => 'v1alpha1/policies:set', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'test' => array( - 'path' => 'v1alpha1/policies:test', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/Resource/Customers.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/Resource/Customers.php deleted file mode 100644 index a3092e42..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/Resource/Customers.php +++ /dev/null @@ -1,75 +0,0 @@ - - * $sasportalService = new Google_Service_Sasportal(...); - * $customers = $sasportalService->customers; - * - */ -class Google_Service_Sasportal_Resource_Customers extends Google_Service_Resource -{ - /** - * Returns a requested customer. (customers.get) - * - * @param string $name Required. The name of the customer. - * @param array $optParams Optional parameters. - * @return Google_Service_Sasportal_SasPortalCustomer - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Sasportal_SasPortalCustomer"); - } - /** - * Returns a list of requested customers. (customers.listCustomers) - * - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A pagination token returned from a previous call - * to ListCustomers method that indicates where this listing should continue - * from. - * @opt_param int pageSize The maximum number of customers to return in the - * response. - * @return Google_Service_Sasportal_SasPortalListCustomersResponse - */ - public function listCustomers($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Sasportal_SasPortalListCustomersResponse"); - } - /** - * Updates an existing customer. (customers.patch) - * - * @param string $name Output only. Resource name of the customer. - * @param Google_Service_Sasportal_SasPortalCustomer $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Fields to be updated. - * @return Google_Service_Sasportal_SasPortalCustomer - */ - public function patch($name, Google_Service_Sasportal_SasPortalCustomer $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Sasportal_SasPortalCustomer"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/Resource/CustomersDevices.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/Resource/CustomersDevices.php deleted file mode 100644 index 8c36c51e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/Resource/CustomersDevices.php +++ /dev/null @@ -1,176 +0,0 @@ - - * $sasportalService = new Google_Service_Sasportal(...); - * $devices = $sasportalService->devices; - * - */ -class Google_Service_Sasportal_Resource_CustomersDevices extends Google_Service_Resource -{ - /** - * Creates a device under a node or customer. Returned devices are unordered. - * (devices.bulk) - * - * @param string $parent Required. The name of the parent resource. - * @param Google_Service_Sasportal_SasPortalBulkCreateDeviceRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Sasportal_SasPortalBulkCreateDeviceResponse - */ - public function bulk($parent, Google_Service_Sasportal_SasPortalBulkCreateDeviceRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('bulk', array($params), "Google_Service_Sasportal_SasPortalBulkCreateDeviceResponse"); - } - /** - * Creates a device under a node or customer. (devices.create) - * - * @param string $parent Required. The name of the parent resource. - * @param Google_Service_Sasportal_SasPortalDevice $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Sasportal_SasPortalDevice - */ - public function create($parent, Google_Service_Sasportal_SasPortalDevice $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Sasportal_SasPortalDevice"); - } - /** - * Creates a signed device under a node or customer. (devices.createSigned) - * - * @param string $parent Required. The name of the parent resource. - * @param Google_Service_Sasportal_SasPortalCreateSignedDeviceRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Sasportal_SasPortalDevice - */ - public function createSigned($parent, Google_Service_Sasportal_SasPortalCreateSignedDeviceRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('createSigned', array($params), "Google_Service_Sasportal_SasPortalDevice"); - } - /** - * Deletes a device. (devices.delete) - * - * @param string $name Required. The name of the device. - * @param array $optParams Optional parameters. - * @return Google_Service_Sasportal_SasPortalEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Sasportal_SasPortalEmpty"); - } - /** - * Gets details about a device. (devices.get) - * - * @param string $name Required. The name of the device. - * @param array $optParams Optional parameters. - * @return Google_Service_Sasportal_SasPortalDevice - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Sasportal_SasPortalDevice"); - } - /** - * Lists devices under a node or customer. (devices.listCustomersDevices) - * - * @param string $parent Required. The name of the parent resource. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A pagination token returned from a previous call - * to ListDevices that indicates where this listing should continue from. - * @opt_param int pageSize The maximum number of devices to return in the - * response. - * @opt_param string filter The filter expression. The filter should have one of - * the following formats: "sn=123454" or "display_name=MyDevice". sn corresponds - * to serial_number of the device. The filter is case insensitive. - * @return Google_Service_Sasportal_SasPortalListDevicesResponse - */ - public function listCustomersDevices($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Sasportal_SasPortalListDevicesResponse"); - } - /** - * Moves a device under another node or customer. (devices.move) - * - * @param string $name Required. The name of the device to move. - * @param Google_Service_Sasportal_SasPortalMoveDeviceRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Sasportal_SasPortalOperation - */ - public function move($name, Google_Service_Sasportal_SasPortalMoveDeviceRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('move', array($params), "Google_Service_Sasportal_SasPortalOperation"); - } - /** - * Updates a device. (devices.patch) - * - * @param string $name Output only. The resource path name. - * @param Google_Service_Sasportal_SasPortalDevice $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Fields to be updated. - * @return Google_Service_Sasportal_SasPortalDevice - */ - public function patch($name, Google_Service_Sasportal_SasPortalDevice $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Sasportal_SasPortalDevice"); - } - /** - * Signs a device. (devices.signDevice) - * - * @param string $name Output only. The resource path name. - * @param Google_Service_Sasportal_SasPortalSignDeviceRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Sasportal_SasPortalEmpty - */ - public function signDevice($name, Google_Service_Sasportal_SasPortalSignDeviceRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('signDevice', array($params), "Google_Service_Sasportal_SasPortalEmpty"); - } - /** - * Updates a signed device. (devices.updateSigned) - * - * @param string $name Required. The name of the device to update. - * @param Google_Service_Sasportal_SasPortalUpdateSignedDeviceRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Sasportal_SasPortalDevice - */ - public function updateSigned($name, Google_Service_Sasportal_SasPortalUpdateSignedDeviceRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updateSigned', array($params), "Google_Service_Sasportal_SasPortalDevice"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/Resource/CustomersNodes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/Resource/CustomersNodes.php deleted file mode 100644 index 8e305de9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/Resource/CustomersNodes.php +++ /dev/null @@ -1,118 +0,0 @@ - - * $sasportalService = new Google_Service_Sasportal(...); - * $nodes = $sasportalService->nodes; - * - */ -class Google_Service_Sasportal_Resource_CustomersNodes extends Google_Service_Resource -{ - /** - * Creates a new node. (nodes.create) - * - * @param string $parent Required. The parent resource name where the node is to - * be created. - * @param Google_Service_Sasportal_SasPortalNode $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Sasportal_SasPortalNode - */ - public function create($parent, Google_Service_Sasportal_SasPortalNode $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Sasportal_SasPortalNode"); - } - /** - * Deletes a node. (nodes.delete) - * - * @param string $name Required. The name of the node. - * @param array $optParams Optional parameters. - * @return Google_Service_Sasportal_SasPortalEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Sasportal_SasPortalEmpty"); - } - /** - * Returns a requested node. (nodes.get) - * - * @param string $name Required. The name of the node. - * @param array $optParams Optional parameters. - * @return Google_Service_Sasportal_SasPortalNode - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Sasportal_SasPortalNode"); - } - /** - * Lists nodes. (nodes.listCustomersNodes) - * - * @param string $parent Required. The parent resource name, for example, - * "nodes/1". - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A pagination token returned from a previous call - * to ListNodes method that indicates where this listing should continue from. - * @opt_param int pageSize The maximum number of nodes to return in the - * response. - * @return Google_Service_Sasportal_SasPortalListNodesResponse - */ - public function listCustomersNodes($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Sasportal_SasPortalListNodesResponse"); - } - /** - * Moves a node under another node or customer. (nodes.move) - * - * @param string $name Required. The name of the node to move. - * @param Google_Service_Sasportal_SasPortalMoveNodeRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Sasportal_SasPortalOperation - */ - public function move($name, Google_Service_Sasportal_SasPortalMoveNodeRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('move', array($params), "Google_Service_Sasportal_SasPortalOperation"); - } - /** - * Updates an existing node. (nodes.patch) - * - * @param string $name Output only. Resource name. - * @param Google_Service_Sasportal_SasPortalNode $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Fields to be updated. - * @return Google_Service_Sasportal_SasPortalNode - */ - public function patch($name, Google_Service_Sasportal_SasPortalNode $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Sasportal_SasPortalNode"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/Resource/Installer.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/Resource/Installer.php deleted file mode 100644 index 7090c209..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/Resource/Installer.php +++ /dev/null @@ -1,56 +0,0 @@ - - * $sasportalService = new Google_Service_Sasportal(...); - * $installer = $sasportalService->installer; - * - */ -class Google_Service_Sasportal_Resource_Installer extends Google_Service_Resource -{ - /** - * Generates a secret to be used with the ValidateInstaller method - * (installer.generateSecret) - * - * @param Google_Service_Sasportal_SasPortalGenerateSecretRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Sasportal_SasPortalGenerateSecretResponse - */ - public function generateSecret(Google_Service_Sasportal_SasPortalGenerateSecretRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('generateSecret', array($params), "Google_Service_Sasportal_SasPortalGenerateSecretResponse"); - } - /** - * Validates the identity of a Certified Professional Installer (CPI). - * (installer.validate) - * - * @param Google_Service_Sasportal_SasPortalValidateInstallerRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Sasportal_SasPortalValidateInstallerResponse - */ - public function validate(Google_Service_Sasportal_SasPortalValidateInstallerRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('validate', array($params), "Google_Service_Sasportal_SasPortalValidateInstallerResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/Resource/Nodes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/Resource/Nodes.php deleted file mode 100644 index 9ca9305e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/Resource/Nodes.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $sasportalService = new Google_Service_Sasportal(...); - * $nodes = $sasportalService->nodes; - * - */ -class Google_Service_Sasportal_Resource_Nodes extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/Resource/NodesDevices.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/Resource/NodesDevices.php deleted file mode 100644 index fdb0acb1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/Resource/NodesDevices.php +++ /dev/null @@ -1,176 +0,0 @@ - - * $sasportalService = new Google_Service_Sasportal(...); - * $devices = $sasportalService->devices; - * - */ -class Google_Service_Sasportal_Resource_NodesDevices extends Google_Service_Resource -{ - /** - * Creates a device under a node or customer. Returned devices are unordered. - * (devices.bulk) - * - * @param string $parent Required. The name of the parent resource. - * @param Google_Service_Sasportal_SasPortalBulkCreateDeviceRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Sasportal_SasPortalBulkCreateDeviceResponse - */ - public function bulk($parent, Google_Service_Sasportal_SasPortalBulkCreateDeviceRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('bulk', array($params), "Google_Service_Sasportal_SasPortalBulkCreateDeviceResponse"); - } - /** - * Creates a device under a node or customer. (devices.create) - * - * @param string $parent Required. The name of the parent resource. - * @param Google_Service_Sasportal_SasPortalDevice $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Sasportal_SasPortalDevice - */ - public function create($parent, Google_Service_Sasportal_SasPortalDevice $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Sasportal_SasPortalDevice"); - } - /** - * Creates a signed device under a node or customer. (devices.createSigned) - * - * @param string $parent Required. The name of the parent resource. - * @param Google_Service_Sasportal_SasPortalCreateSignedDeviceRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Sasportal_SasPortalDevice - */ - public function createSigned($parent, Google_Service_Sasportal_SasPortalCreateSignedDeviceRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('createSigned', array($params), "Google_Service_Sasportal_SasPortalDevice"); - } - /** - * Deletes a device. (devices.delete) - * - * @param string $name Required. The name of the device. - * @param array $optParams Optional parameters. - * @return Google_Service_Sasportal_SasPortalEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Sasportal_SasPortalEmpty"); - } - /** - * Gets details about a device. (devices.get) - * - * @param string $name Required. The name of the device. - * @param array $optParams Optional parameters. - * @return Google_Service_Sasportal_SasPortalDevice - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Sasportal_SasPortalDevice"); - } - /** - * Lists devices under a node or customer. (devices.listNodesDevices) - * - * @param string $parent Required. The name of the parent resource. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A pagination token returned from a previous call - * to ListDevices that indicates where this listing should continue from. - * @opt_param int pageSize The maximum number of devices to return in the - * response. - * @opt_param string filter The filter expression. The filter should have one of - * the following formats: "sn=123454" or "display_name=MyDevice". sn corresponds - * to serial_number of the device. The filter is case insensitive. - * @return Google_Service_Sasportal_SasPortalListDevicesResponse - */ - public function listNodesDevices($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Sasportal_SasPortalListDevicesResponse"); - } - /** - * Moves a device under another node or customer. (devices.move) - * - * @param string $name Required. The name of the device to move. - * @param Google_Service_Sasportal_SasPortalMoveDeviceRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Sasportal_SasPortalOperation - */ - public function move($name, Google_Service_Sasportal_SasPortalMoveDeviceRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('move', array($params), "Google_Service_Sasportal_SasPortalOperation"); - } - /** - * Updates a device. (devices.patch) - * - * @param string $name Output only. The resource path name. - * @param Google_Service_Sasportal_SasPortalDevice $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Fields to be updated. - * @return Google_Service_Sasportal_SasPortalDevice - */ - public function patch($name, Google_Service_Sasportal_SasPortalDevice $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Sasportal_SasPortalDevice"); - } - /** - * Signs a device. (devices.signDevice) - * - * @param string $name Output only. The resource path name. - * @param Google_Service_Sasportal_SasPortalSignDeviceRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Sasportal_SasPortalEmpty - */ - public function signDevice($name, Google_Service_Sasportal_SasPortalSignDeviceRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('signDevice', array($params), "Google_Service_Sasportal_SasPortalEmpty"); - } - /** - * Updates a signed device. (devices.updateSigned) - * - * @param string $name Required. The name of the device to update. - * @param Google_Service_Sasportal_SasPortalUpdateSignedDeviceRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Sasportal_SasPortalDevice - */ - public function updateSigned($name, Google_Service_Sasportal_SasPortalUpdateSignedDeviceRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updateSigned', array($params), "Google_Service_Sasportal_SasPortalDevice"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/Resource/NodesNodes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/Resource/NodesNodes.php deleted file mode 100644 index cb20778c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/Resource/NodesNodes.php +++ /dev/null @@ -1,118 +0,0 @@ - - * $sasportalService = new Google_Service_Sasportal(...); - * $nodes = $sasportalService->nodes; - * - */ -class Google_Service_Sasportal_Resource_NodesNodes extends Google_Service_Resource -{ - /** - * Creates a new node. (nodes.create) - * - * @param string $parent Required. The parent resource name where the node is to - * be created. - * @param Google_Service_Sasportal_SasPortalNode $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Sasportal_SasPortalNode - */ - public function create($parent, Google_Service_Sasportal_SasPortalNode $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Sasportal_SasPortalNode"); - } - /** - * Deletes a node. (nodes.delete) - * - * @param string $name Required. The name of the node. - * @param array $optParams Optional parameters. - * @return Google_Service_Sasportal_SasPortalEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Sasportal_SasPortalEmpty"); - } - /** - * Returns a requested node. (nodes.get) - * - * @param string $name Required. The name of the node. - * @param array $optParams Optional parameters. - * @return Google_Service_Sasportal_SasPortalNode - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Sasportal_SasPortalNode"); - } - /** - * Lists nodes. (nodes.listNodesNodes) - * - * @param string $parent Required. The parent resource name, for example, - * "nodes/1". - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A pagination token returned from a previous call - * to ListNodes method that indicates where this listing should continue from. - * @opt_param int pageSize The maximum number of nodes to return in the - * response. - * @return Google_Service_Sasportal_SasPortalListNodesResponse - */ - public function listNodesNodes($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Sasportal_SasPortalListNodesResponse"); - } - /** - * Moves a node under another node or customer. (nodes.move) - * - * @param string $name Required. The name of the node to move. - * @param Google_Service_Sasportal_SasPortalMoveNodeRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Sasportal_SasPortalOperation - */ - public function move($name, Google_Service_Sasportal_SasPortalMoveNodeRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('move', array($params), "Google_Service_Sasportal_SasPortalOperation"); - } - /** - * Updates an existing node. (nodes.patch) - * - * @param string $name Output only. Resource name. - * @param Google_Service_Sasportal_SasPortalNode $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Fields to be updated. - * @return Google_Service_Sasportal_SasPortalNode - */ - public function patch($name, Google_Service_Sasportal_SasPortalNode $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Sasportal_SasPortalNode"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/Resource/Policies.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/Resource/Policies.php deleted file mode 100644 index e24918eb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/Resource/Policies.php +++ /dev/null @@ -1,70 +0,0 @@ - - * $sasportalService = new Google_Service_Sasportal(...); - * $policies = $sasportalService->policies; - * - */ -class Google_Service_Sasportal_Resource_Policies extends Google_Service_Resource -{ - /** - * Gets the access control policy for a resource. Returns an empty policy if the - * resource exists and does not have a policy set. (policies.get) - * - * @param Google_Service_Sasportal_SasPortalGetPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Sasportal_SasPortalPolicy - */ - public function get(Google_Service_Sasportal_SasPortalGetPolicyRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Sasportal_SasPortalPolicy"); - } - /** - * Sets the access control policy on the specified resource. Replaces any - * existing policy. (policies.set) - * - * @param Google_Service_Sasportal_SasPortalSetPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Sasportal_SasPortalPolicy - */ - public function set(Google_Service_Sasportal_SasPortalSetPolicyRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('set', array($params), "Google_Service_Sasportal_SasPortalPolicy"); - } - /** - * Returns permissions that a caller has on the specified resource. - * (policies.test) - * - * @param Google_Service_Sasportal_SasPortalTestPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Sasportal_SasPortalTestPermissionsResponse - */ - public function test(Google_Service_Sasportal_SasPortalTestPermissionsRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('test', array($params), "Google_Service_Sasportal_SasPortalTestPermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalAssignment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalAssignment.php deleted file mode 100644 index 5f60268c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalAssignment.php +++ /dev/null @@ -1,40 +0,0 @@ -members = $members; - } - public function getMembers() - { - return $this->members; - } - public function setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalBulkCreateDeviceRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalBulkCreateDeviceRequest.php deleted file mode 100644 index 407c750a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalBulkCreateDeviceRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -csv = $csv; - } - public function getCsv() - { - return $this->csv; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalBulkCreateDeviceResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalBulkCreateDeviceResponse.php deleted file mode 100644 index 30cd62d8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalBulkCreateDeviceResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -devices = $devices; - } - /** - * @return Google_Service_Sasportal_SasPortalDevice - */ - public function getDevices() - { - return $this->devices; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalCreateSignedDeviceRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalCreateSignedDeviceRequest.php deleted file mode 100644 index 7b65fcb1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalCreateSignedDeviceRequest.php +++ /dev/null @@ -1,39 +0,0 @@ -encodedDevice = $encodedDevice; - } - public function getEncodedDevice() - { - return $this->encodedDevice; - } - public function setInstallerId($installerId) - { - $this->installerId = $installerId; - } - public function getInstallerId() - { - return $this->installerId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalCustomer.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalCustomer.php deleted file mode 100644 index b94bb1ad..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalCustomer.php +++ /dev/null @@ -1,49 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setSasUserIds($sasUserIds) - { - $this->sasUserIds = $sasUserIds; - } - public function getSasUserIds() - { - return $this->sasUserIds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalDevice.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalDevice.php deleted file mode 100644 index 068a29cd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalDevice.php +++ /dev/null @@ -1,115 +0,0 @@ -activeConfig = $activeConfig; - } - /** - * @return Google_Service_Sasportal_SasPortalDeviceConfig - */ - public function getActiveConfig() - { - return $this->activeConfig; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setFccId($fccId) - { - $this->fccId = $fccId; - } - public function getFccId() - { - return $this->fccId; - } - /** - * @param Google_Service_Sasportal_SasPortalDeviceGrant - */ - public function setGrants($grants) - { - $this->grants = $grants; - } - /** - * @return Google_Service_Sasportal_SasPortalDeviceGrant - */ - public function getGrants() - { - return $this->grants; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Sasportal_SasPortalDeviceConfig - */ - public function setPreloadedConfig(Google_Service_Sasportal_SasPortalDeviceConfig $preloadedConfig) - { - $this->preloadedConfig = $preloadedConfig; - } - /** - * @return Google_Service_Sasportal_SasPortalDeviceConfig - */ - public function getPreloadedConfig() - { - return $this->preloadedConfig; - } - public function setSerialNumber($serialNumber) - { - $this->serialNumber = $serialNumber; - } - public function getSerialNumber() - { - return $this->serialNumber; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalDeviceAirInterface.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalDeviceAirInterface.php deleted file mode 100644 index bf6945ef..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalDeviceAirInterface.php +++ /dev/null @@ -1,39 +0,0 @@ -radioTechnology = $radioTechnology; - } - public function getRadioTechnology() - { - return $this->radioTechnology; - } - public function setSupportedSpec($supportedSpec) - { - $this->supportedSpec = $supportedSpec; - } - public function getSupportedSpec() - { - return $this->supportedSpec; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalDeviceConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalDeviceConfig.php deleted file mode 100644 index b5cb373c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalDeviceConfig.php +++ /dev/null @@ -1,133 +0,0 @@ -airInterface = $airInterface; - } - /** - * @return Google_Service_Sasportal_SasPortalDeviceAirInterface - */ - public function getAirInterface() - { - return $this->airInterface; - } - public function setCallSign($callSign) - { - $this->callSign = $callSign; - } - public function getCallSign() - { - return $this->callSign; - } - public function setCategory($category) - { - $this->category = $category; - } - public function getCategory() - { - return $this->category; - } - /** - * @param Google_Service_Sasportal_SasPortalInstallationParams - */ - public function setInstallationParams(Google_Service_Sasportal_SasPortalInstallationParams $installationParams) - { - $this->installationParams = $installationParams; - } - /** - * @return Google_Service_Sasportal_SasPortalInstallationParams - */ - public function getInstallationParams() - { - return $this->installationParams; - } - public function setIsSigned($isSigned) - { - $this->isSigned = $isSigned; - } - public function getIsSigned() - { - return $this->isSigned; - } - public function setMeasurementCapabilities($measurementCapabilities) - { - $this->measurementCapabilities = $measurementCapabilities; - } - public function getMeasurementCapabilities() - { - return $this->measurementCapabilities; - } - /** - * @param Google_Service_Sasportal_SasPortalDeviceModel - */ - public function setModel(Google_Service_Sasportal_SasPortalDeviceModel $model) - { - $this->model = $model; - } - /** - * @return Google_Service_Sasportal_SasPortalDeviceModel - */ - public function getModel() - { - return $this->model; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } - public function setUserId($userId) - { - $this->userId = $userId; - } - public function getUserId() - { - return $this->userId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalDeviceGrant.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalDeviceGrant.php deleted file mode 100644 index 3e21f6ec..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalDeviceGrant.php +++ /dev/null @@ -1,90 +0,0 @@ -channelType = $channelType; - } - public function getChannelType() - { - return $this->channelType; - } - public function setExpireTime($expireTime) - { - $this->expireTime = $expireTime; - } - public function getExpireTime() - { - return $this->expireTime; - } - /** - * @param Google_Service_Sasportal_SasPortalFrequencyRange - */ - public function setFrequencyRange(Google_Service_Sasportal_SasPortalFrequencyRange $frequencyRange) - { - $this->frequencyRange = $frequencyRange; - } - /** - * @return Google_Service_Sasportal_SasPortalFrequencyRange - */ - public function getFrequencyRange() - { - return $this->frequencyRange; - } - public function setMaxEirp($maxEirp) - { - $this->maxEirp = $maxEirp; - } - public function getMaxEirp() - { - return $this->maxEirp; - } - /** - * @param Google_Service_Sasportal_SasPortalDpaMoveList - */ - public function setMoveList($moveList) - { - $this->moveList = $moveList; - } - /** - * @return Google_Service_Sasportal_SasPortalDpaMoveList - */ - public function getMoveList() - { - return $this->moveList; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalDeviceModel.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalDeviceModel.php deleted file mode 100644 index 3d15ae36..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalDeviceModel.php +++ /dev/null @@ -1,66 +0,0 @@ -firmwareVersion = $firmwareVersion; - } - public function getFirmwareVersion() - { - return $this->firmwareVersion; - } - public function setHardwareVersion($hardwareVersion) - { - $this->hardwareVersion = $hardwareVersion; - } - public function getHardwareVersion() - { - return $this->hardwareVersion; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setSoftwareVersion($softwareVersion) - { - $this->softwareVersion = $softwareVersion; - } - public function getSoftwareVersion() - { - return $this->softwareVersion; - } - public function setVendor($vendor) - { - $this->vendor = $vendor; - } - public function getVendor() - { - return $this->vendor; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalDpaMoveList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalDpaMoveList.php deleted file mode 100644 index d4e2aa28..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalDpaMoveList.php +++ /dev/null @@ -1,46 +0,0 @@ -dpaId = $dpaId; - } - public function getDpaId() - { - return $this->dpaId; - } - /** - * @param Google_Service_Sasportal_SasPortalFrequencyRange - */ - public function setFrequencyRange(Google_Service_Sasportal_SasPortalFrequencyRange $frequencyRange) - { - $this->frequencyRange = $frequencyRange; - } - /** - * @return Google_Service_Sasportal_SasPortalFrequencyRange - */ - public function getFrequencyRange() - { - return $this->frequencyRange; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalEmpty.php deleted file mode 100644 index 8fd2a16f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -highFrequencyMhz = $highFrequencyMhz; - } - public function getHighFrequencyMhz() - { - return $this->highFrequencyMhz; - } - public function setLowFrequencyMhz($lowFrequencyMhz) - { - $this->lowFrequencyMhz = $lowFrequencyMhz; - } - public function getLowFrequencyMhz() - { - return $this->lowFrequencyMhz; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalGenerateSecretRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalGenerateSecretRequest.php deleted file mode 100644 index 387735c8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalGenerateSecretRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -secret = $secret; - } - public function getSecret() - { - return $this->secret; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalGetPolicyRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalGetPolicyRequest.php deleted file mode 100644 index 5b914861..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalGetPolicyRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -resource = $resource; - } - public function getResource() - { - return $this->resource; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalInstallationParams.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalInstallationParams.php deleted file mode 100644 index 47e56b73..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalInstallationParams.php +++ /dev/null @@ -1,138 +0,0 @@ -antennaAzimuth = $antennaAzimuth; - } - public function getAntennaAzimuth() - { - return $this->antennaAzimuth; - } - public function setAntennaBeamwidth($antennaBeamwidth) - { - $this->antennaBeamwidth = $antennaBeamwidth; - } - public function getAntennaBeamwidth() - { - return $this->antennaBeamwidth; - } - public function setAntennaDowntilt($antennaDowntilt) - { - $this->antennaDowntilt = $antennaDowntilt; - } - public function getAntennaDowntilt() - { - return $this->antennaDowntilt; - } - public function setAntennaGain($antennaGain) - { - $this->antennaGain = $antennaGain; - } - public function getAntennaGain() - { - return $this->antennaGain; - } - public function setAntennaModel($antennaModel) - { - $this->antennaModel = $antennaModel; - } - public function getAntennaModel() - { - return $this->antennaModel; - } - public function setEirpCapability($eirpCapability) - { - $this->eirpCapability = $eirpCapability; - } - public function getEirpCapability() - { - return $this->eirpCapability; - } - public function setHeight($height) - { - $this->height = $height; - } - public function getHeight() - { - return $this->height; - } - public function setHeightType($heightType) - { - $this->heightType = $heightType; - } - public function getHeightType() - { - return $this->heightType; - } - public function setHorizontalAccuracy($horizontalAccuracy) - { - $this->horizontalAccuracy = $horizontalAccuracy; - } - public function getHorizontalAccuracy() - { - return $this->horizontalAccuracy; - } - public function setIndoorDeployment($indoorDeployment) - { - $this->indoorDeployment = $indoorDeployment; - } - public function getIndoorDeployment() - { - return $this->indoorDeployment; - } - public function setLatitude($latitude) - { - $this->latitude = $latitude; - } - public function getLatitude() - { - return $this->latitude; - } - public function setLongitude($longitude) - { - $this->longitude = $longitude; - } - public function getLongitude() - { - return $this->longitude; - } - public function setVerticalAccuracy($verticalAccuracy) - { - $this->verticalAccuracy = $verticalAccuracy; - } - public function getVerticalAccuracy() - { - return $this->verticalAccuracy; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalListCustomersResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalListCustomersResponse.php deleted file mode 100644 index ec1a70df..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalListCustomersResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -customers = $customers; - } - /** - * @return Google_Service_Sasportal_SasPortalCustomer - */ - public function getCustomers() - { - return $this->customers; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalListDevicesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalListDevicesResponse.php deleted file mode 100644 index 6a7b64a6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalListDevicesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -devices = $devices; - } - /** - * @return Google_Service_Sasportal_SasPortalDevice - */ - public function getDevices() - { - return $this->devices; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalListNodesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalListNodesResponse.php deleted file mode 100644 index 4fdb83be..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalListNodesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Sasportal_SasPortalNode - */ - public function setNodes($nodes) - { - $this->nodes = $nodes; - } - /** - * @return Google_Service_Sasportal_SasPortalNode - */ - public function getNodes() - { - return $this->nodes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalMoveDeviceRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalMoveDeviceRequest.php deleted file mode 100644 index 50251ade..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalMoveDeviceRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -destination = $destination; - } - public function getDestination() - { - return $this->destination; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalMoveNodeRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalMoveNodeRequest.php deleted file mode 100644 index e7c4ed38..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalMoveNodeRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -destination = $destination; - } - public function getDestination() - { - return $this->destination; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalNode.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalNode.php deleted file mode 100644 index eb72ee39..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalNode.php +++ /dev/null @@ -1,49 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setSasUserIds($sasUserIds) - { - $this->sasUserIds = $sasUserIds; - } - public function getSasUserIds() - { - return $this->sasUserIds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalOperation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalOperation.php deleted file mode 100644 index 511a2c4b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalOperation.php +++ /dev/null @@ -1,73 +0,0 @@ -done = $done; - } - public function getDone() - { - return $this->done; - } - /** - * @param Google_Service_Sasportal_SasPortalStatus - */ - public function setError(Google_Service_Sasportal_SasPortalStatus $error) - { - $this->error = $error; - } - /** - * @return Google_Service_Sasportal_SasPortalStatus - */ - public function getError() - { - return $this->error; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalPolicy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalPolicy.php deleted file mode 100644 index 957911a2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalPolicy.php +++ /dev/null @@ -1,47 +0,0 @@ -assignments = $assignments; - } - /** - * @return Google_Service_Sasportal_SasPortalAssignment - */ - public function getAssignments() - { - return $this->assignments; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalSetPolicyRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalSetPolicyRequest.php deleted file mode 100644 index 637b36fb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalSetPolicyRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -policy = $policy; - } - /** - * @return Google_Service_Sasportal_SasPortalPolicy - */ - public function getPolicy() - { - return $this->policy; - } - public function setResource($resource) - { - $this->resource = $resource; - } - public function getResource() - { - return $this->resource; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalSignDeviceRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalSignDeviceRequest.php deleted file mode 100644 index de1f295c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalSignDeviceRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -device = $device; - } - /** - * @return Google_Service_Sasportal_SasPortalDevice - */ - public function getDevice() - { - return $this->device; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalStatus.php deleted file mode 100644 index 4f4cc34a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalStatus.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalTestPermissionsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalTestPermissionsRequest.php deleted file mode 100644 index 46c94cdc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalTestPermissionsRequest.php +++ /dev/null @@ -1,40 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } - public function setResource($resource) - { - $this->resource = $resource; - } - public function getResource() - { - return $this->resource; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalTestPermissionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalTestPermissionsResponse.php deleted file mode 100644 index e0111fdc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalTestPermissionsResponse.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalUpdateSignedDeviceRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalUpdateSignedDeviceRequest.php deleted file mode 100644 index 552c3e9b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalUpdateSignedDeviceRequest.php +++ /dev/null @@ -1,39 +0,0 @@ -encodedDevice = $encodedDevice; - } - public function getEncodedDevice() - { - return $this->encodedDevice; - } - public function setInstallerId($installerId) - { - $this->installerId = $installerId; - } - public function getInstallerId() - { - return $this->installerId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalValidateInstallerRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalValidateInstallerRequest.php deleted file mode 100644 index 2f1dcf12..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalValidateInstallerRequest.php +++ /dev/null @@ -1,48 +0,0 @@ -encodedSecret = $encodedSecret; - } - public function getEncodedSecret() - { - return $this->encodedSecret; - } - public function setInstallerId($installerId) - { - $this->installerId = $installerId; - } - public function getInstallerId() - { - return $this->installerId; - } - public function setSecret($secret) - { - $this->secret = $secret; - } - public function getSecret() - { - return $this->secret; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalValidateInstallerResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalValidateInstallerResponse.php deleted file mode 100644 index 2063ab9b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sasportal/SasPortalValidateInstallerResponse.php +++ /dev/null @@ -1,20 +0,0 @@ - - * Manages and executes Google Apps Script projects.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Script extends Google_Service -{ - /** Read, compose, send, and permanently delete all your email from Gmail. */ - const MAIL_GOOGLE_COM = - "https://mail.google.com/"; - /** See, edit, share, and permanently delete all the calendars you can access using Google Calendar. */ - const WWW_GOOGLE_COM_CALENDAR_FEEDS = - "https://www.google.com/calendar/feeds"; - /** See, edit, download, and permanently delete your contacts. */ - const WWW_GOOGLE_COM_M8_FEEDS = - "https://www.google.com/m8/feeds"; - /** View and manage the provisioning of groups on your domain. */ - const ADMIN_DIRECTORY_GROUP = - "https://www.googleapis.com/auth/admin.directory.group"; - /** View and manage the provisioning of users on your domain. */ - const ADMIN_DIRECTORY_USER = - "https://www.googleapis.com/auth/admin.directory.user"; - /** View and manage your Google Docs documents. */ - const DOCUMENTS = - "https://www.googleapis.com/auth/documents"; - /** See, edit, create, and delete all of your Google Drive files. */ - const DRIVE = - "https://www.googleapis.com/auth/drive"; - /** View and manage your forms in Google Drive. */ - const FORMS = - "https://www.googleapis.com/auth/forms"; - /** View and manage forms that this application has been installed in. */ - const FORMS_CURRENTONLY = - "https://www.googleapis.com/auth/forms.currentonly"; - /** View and manage your Google Groups. */ - const GROUPS = - "https://www.googleapis.com/auth/groups"; - /** Create and update Google Apps Script deployments. */ - const SCRIPT_DEPLOYMENTS = - "https://www.googleapis.com/auth/script.deployments"; - /** View Google Apps Script deployments. */ - const SCRIPT_DEPLOYMENTS_READONLY = - "https://www.googleapis.com/auth/script.deployments.readonly"; - /** View Google Apps Script project's metrics. */ - const SCRIPT_METRICS = - "https://www.googleapis.com/auth/script.metrics"; - /** View Google Apps Script processes. */ - const SCRIPT_PROCESSES = - "https://www.googleapis.com/auth/script.processes"; - /** Create and update Google Apps Script projects. */ - const SCRIPT_PROJECTS = - "https://www.googleapis.com/auth/script.projects"; - /** View Google Apps Script projects. */ - const SCRIPT_PROJECTS_READONLY = - "https://www.googleapis.com/auth/script.projects.readonly"; - /** See, edit, create, and delete your spreadsheets in Google Drive. */ - const SPREADSHEETS = - "https://www.googleapis.com/auth/spreadsheets"; - /** View your email address. */ - const USERINFO_EMAIL = - "https://www.googleapis.com/auth/userinfo.email"; - - public $processes; - public $projects; - public $projects_deployments; - public $projects_versions; - public $scripts; - - /** - * Constructs the internal representation of the Script service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://script.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'script'; - - $this->processes = new Google_Service_Script_Resource_Processes( - $this, - $this->serviceName, - 'processes', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1/processes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'userProcessFilter.startTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userProcessFilter.projectName' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userProcessFilter.userAccessLevels' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'userProcessFilter.functionName' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userProcessFilter.scriptId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userProcessFilter.types' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'userProcessFilter.statuses' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'userProcessFilter.deploymentId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userProcessFilter.endTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'listScriptProcesses' => array( - 'path' => 'v1/processes:listScriptProcesses', - 'httpMethod' => 'GET', - 'parameters' => array( - 'scriptProcessFilter.endTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'scriptProcessFilter.userAccessLevels' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'scriptProcessFilter.statuses' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'scriptProcessFilter.startTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'scriptProcessFilter.functionName' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'scriptProcessFilter.deploymentId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'scriptId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'scriptProcessFilter.types' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->projects = new Google_Service_Script_Resource_Projects( - $this, - $this->serviceName, - 'projects', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/projects', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'get' => array( - 'path' => 'v1/projects/{scriptId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'scriptId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getContent' => array( - 'path' => 'v1/projects/{scriptId}/content', - 'httpMethod' => 'GET', - 'parameters' => array( - 'scriptId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'versionNumber' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'getMetrics' => array( - 'path' => 'v1/projects/{scriptId}/metrics', - 'httpMethod' => 'GET', - 'parameters' => array( - 'scriptId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'metricsFilter.deploymentId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'metricsGranularity' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'updateContent' => array( - 'path' => 'v1/projects/{scriptId}/content', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'scriptId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_deployments = new Google_Service_Script_Resource_ProjectsDeployments( - $this, - $this->serviceName, - 'deployments', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/projects/{scriptId}/deployments', - 'httpMethod' => 'POST', - 'parameters' => array( - 'scriptId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/projects/{scriptId}/deployments/{deploymentId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'scriptId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'deploymentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/projects/{scriptId}/deployments/{deploymentId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'scriptId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'deploymentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/projects/{scriptId}/deployments', - 'httpMethod' => 'GET', - 'parameters' => array( - 'scriptId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'update' => array( - 'path' => 'v1/projects/{scriptId}/deployments/{deploymentId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'scriptId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'deploymentId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_versions = new Google_Service_Script_Resource_ProjectsVersions( - $this, - $this->serviceName, - 'versions', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/projects/{scriptId}/versions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'scriptId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/projects/{scriptId}/versions/{versionNumber}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'scriptId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'versionNumber' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/projects/{scriptId}/versions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'scriptId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->scripts = new Google_Service_Script_Resource_Scripts( - $this, - $this->serviceName, - 'scripts', - array( - 'methods' => array( - 'run' => array( - 'path' => 'v1/scripts/{scriptId}:run', - 'httpMethod' => 'POST', - 'parameters' => array( - 'scriptId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/Content.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/Content.php deleted file mode 100644 index f2408247..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/Content.php +++ /dev/null @@ -1,47 +0,0 @@ -files = $files; - } - /** - * @return Google_Service_Script_ScriptFile - */ - public function getFiles() - { - return $this->files; - } - public function setScriptId($scriptId) - { - $this->scriptId = $scriptId; - } - public function getScriptId() - { - return $this->scriptId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/CreateProjectRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/CreateProjectRequest.php deleted file mode 100644 index 33ba957c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/CreateProjectRequest.php +++ /dev/null @@ -1,39 +0,0 @@ -parentId = $parentId; - } - public function getParentId() - { - return $this->parentId; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/Deployment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/Deployment.php deleted file mode 100644 index 3ff90e2c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/Deployment.php +++ /dev/null @@ -1,72 +0,0 @@ -deploymentConfig = $deploymentConfig; - } - /** - * @return Google_Service_Script_DeploymentConfig - */ - public function getDeploymentConfig() - { - return $this->deploymentConfig; - } - public function setDeploymentId($deploymentId) - { - $this->deploymentId = $deploymentId; - } - public function getDeploymentId() - { - return $this->deploymentId; - } - /** - * @param Google_Service_Script_EntryPoint - */ - public function setEntryPoints($entryPoints) - { - $this->entryPoints = $entryPoints; - } - /** - * @return Google_Service_Script_EntryPoint - */ - public function getEntryPoints() - { - return $this->entryPoints; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/DeploymentConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/DeploymentConfig.php deleted file mode 100644 index fe02c6e5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/DeploymentConfig.php +++ /dev/null @@ -1,57 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setManifestFileName($manifestFileName) - { - $this->manifestFileName = $manifestFileName; - } - public function getManifestFileName() - { - return $this->manifestFileName; - } - public function setScriptId($scriptId) - { - $this->scriptId = $scriptId; - } - public function getScriptId() - { - return $this->scriptId; - } - public function setVersionNumber($versionNumber) - { - $this->versionNumber = $versionNumber; - } - public function getVersionNumber() - { - return $this->versionNumber; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/EntryPoint.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/EntryPoint.php deleted file mode 100644 index a3d2aa14..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/EntryPoint.php +++ /dev/null @@ -1,78 +0,0 @@ -addOn = $addOn; - } - /** - * @return Google_Service_Script_GoogleAppsScriptTypeAddOnEntryPoint - */ - public function getAddOn() - { - return $this->addOn; - } - public function setEntryPointType($entryPointType) - { - $this->entryPointType = $entryPointType; - } - public function getEntryPointType() - { - return $this->entryPointType; - } - /** - * @param Google_Service_Script_GoogleAppsScriptTypeExecutionApiEntryPoint - */ - public function setExecutionApi(Google_Service_Script_GoogleAppsScriptTypeExecutionApiEntryPoint $executionApi) - { - $this->executionApi = $executionApi; - } - /** - * @return Google_Service_Script_GoogleAppsScriptTypeExecutionApiEntryPoint - */ - public function getExecutionApi() - { - return $this->executionApi; - } - /** - * @param Google_Service_Script_GoogleAppsScriptTypeWebAppEntryPoint - */ - public function setWebApp(Google_Service_Script_GoogleAppsScriptTypeWebAppEntryPoint $webApp) - { - $this->webApp = $webApp; - } - /** - * @return Google_Service_Script_GoogleAppsScriptTypeWebAppEntryPoint - */ - public function getWebApp() - { - return $this->webApp; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/ExecuteStreamResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/ExecuteStreamResponse.php deleted file mode 100644 index bf9afbbf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/ExecuteStreamResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -result = $result; - } - /** - * @return Google_Service_Script_ScriptExecutionResult - */ - public function getResult() - { - return $this->result; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/ExecutionError.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/ExecutionError.php deleted file mode 100644 index 2fd85a12..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/ExecutionError.php +++ /dev/null @@ -1,56 +0,0 @@ -errorMessage = $errorMessage; - } - public function getErrorMessage() - { - return $this->errorMessage; - } - public function setErrorType($errorType) - { - $this->errorType = $errorType; - } - public function getErrorType() - { - return $this->errorType; - } - /** - * @param Google_Service_Script_ScriptStackTraceElement - */ - public function setScriptStackTraceElements($scriptStackTraceElements) - { - $this->scriptStackTraceElements = $scriptStackTraceElements; - } - /** - * @return Google_Service_Script_ScriptStackTraceElement - */ - public function getScriptStackTraceElements() - { - return $this->scriptStackTraceElements; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/ExecutionRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/ExecutionRequest.php deleted file mode 100644 index 09ef052b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/ExecutionRequest.php +++ /dev/null @@ -1,58 +0,0 @@ -devMode = $devMode; - } - public function getDevMode() - { - return $this->devMode; - } - public function setFunction($function) - { - $this->function = $function; - } - public function getFunction() - { - return $this->function; - } - public function setParameters($parameters) - { - $this->parameters = $parameters; - } - public function getParameters() - { - return $this->parameters; - } - public function setSessionState($sessionState) - { - $this->sessionState = $sessionState; - } - public function getSessionState() - { - return $this->sessionState; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/ExecutionResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/ExecutionResponse.php deleted file mode 100644 index c9944227..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/ExecutionResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -result = $result; - } - public function getResult() - { - return $this->result; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/GoogleAppsScriptTypeAddOnEntryPoint.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/GoogleAppsScriptTypeAddOnEntryPoint.php deleted file mode 100644 index fb488d43..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/GoogleAppsScriptTypeAddOnEntryPoint.php +++ /dev/null @@ -1,75 +0,0 @@ -addOnType = $addOnType; - } - public function getAddOnType() - { - return $this->addOnType; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setHelpUrl($helpUrl) - { - $this->helpUrl = $helpUrl; - } - public function getHelpUrl() - { - return $this->helpUrl; - } - public function setPostInstallTipUrl($postInstallTipUrl) - { - $this->postInstallTipUrl = $postInstallTipUrl; - } - public function getPostInstallTipUrl() - { - return $this->postInstallTipUrl; - } - public function setReportIssueUrl($reportIssueUrl) - { - $this->reportIssueUrl = $reportIssueUrl; - } - public function getReportIssueUrl() - { - return $this->reportIssueUrl; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/GoogleAppsScriptTypeExecutionApiConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/GoogleAppsScriptTypeExecutionApiConfig.php deleted file mode 100644 index d2c85490..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/GoogleAppsScriptTypeExecutionApiConfig.php +++ /dev/null @@ -1,30 +0,0 @@ -access = $access; - } - public function getAccess() - { - return $this->access; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/GoogleAppsScriptTypeExecutionApiEntryPoint.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/GoogleAppsScriptTypeExecutionApiEntryPoint.php deleted file mode 100644 index 2a38f499..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/GoogleAppsScriptTypeExecutionApiEntryPoint.php +++ /dev/null @@ -1,37 +0,0 @@ -entryPointConfig = $entryPointConfig; - } - /** - * @return Google_Service_Script_GoogleAppsScriptTypeExecutionApiConfig - */ - public function getEntryPointConfig() - { - return $this->entryPointConfig; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/GoogleAppsScriptTypeFunction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/GoogleAppsScriptTypeFunction.php deleted file mode 100644 index ea867ca6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/GoogleAppsScriptTypeFunction.php +++ /dev/null @@ -1,30 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/GoogleAppsScriptTypeFunctionSet.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/GoogleAppsScriptTypeFunctionSet.php deleted file mode 100644 index 1fba05c8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/GoogleAppsScriptTypeFunctionSet.php +++ /dev/null @@ -1,38 +0,0 @@ -values = $values; - } - /** - * @return Google_Service_Script_GoogleAppsScriptTypeFunction - */ - public function getValues() - { - return $this->values; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/GoogleAppsScriptTypeProcess.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/GoogleAppsScriptTypeProcess.php deleted file mode 100644 index 322c99f5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/GoogleAppsScriptTypeProcess.php +++ /dev/null @@ -1,84 +0,0 @@ -duration = $duration; - } - public function getDuration() - { - return $this->duration; - } - public function setFunctionName($functionName) - { - $this->functionName = $functionName; - } - public function getFunctionName() - { - return $this->functionName; - } - public function setProcessStatus($processStatus) - { - $this->processStatus = $processStatus; - } - public function getProcessStatus() - { - return $this->processStatus; - } - public function setProcessType($processType) - { - $this->processType = $processType; - } - public function getProcessType() - { - return $this->processType; - } - public function setProjectName($projectName) - { - $this->projectName = $projectName; - } - public function getProjectName() - { - return $this->projectName; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } - public function setUserAccessLevel($userAccessLevel) - { - $this->userAccessLevel = $userAccessLevel; - } - public function getUserAccessLevel() - { - return $this->userAccessLevel; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/GoogleAppsScriptTypeUser.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/GoogleAppsScriptTypeUser.php deleted file mode 100644 index 9ed59363..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/GoogleAppsScriptTypeUser.php +++ /dev/null @@ -1,57 +0,0 @@ -domain = $domain; - } - public function getDomain() - { - return $this->domain; - } - public function setEmail($email) - { - $this->email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPhotoUrl($photoUrl) - { - $this->photoUrl = $photoUrl; - } - public function getPhotoUrl() - { - return $this->photoUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/GoogleAppsScriptTypeWebAppConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/GoogleAppsScriptTypeWebAppConfig.php deleted file mode 100644 index e05771cd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/GoogleAppsScriptTypeWebAppConfig.php +++ /dev/null @@ -1,39 +0,0 @@ -access = $access; - } - public function getAccess() - { - return $this->access; - } - public function setExecuteAs($executeAs) - { - $this->executeAs = $executeAs; - } - public function getExecuteAs() - { - return $this->executeAs; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/GoogleAppsScriptTypeWebAppEntryPoint.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/GoogleAppsScriptTypeWebAppEntryPoint.php deleted file mode 100644 index a84985cb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/GoogleAppsScriptTypeWebAppEntryPoint.php +++ /dev/null @@ -1,46 +0,0 @@ -entryPointConfig = $entryPointConfig; - } - /** - * @return Google_Service_Script_GoogleAppsScriptTypeWebAppConfig - */ - public function getEntryPointConfig() - { - return $this->entryPointConfig; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/ListDeploymentsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/ListDeploymentsResponse.php deleted file mode 100644 index f3fd493d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/ListDeploymentsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -deployments = $deployments; - } - /** - * @return Google_Service_Script_Deployment - */ - public function getDeployments() - { - return $this->deployments; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/ListScriptProcessesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/ListScriptProcessesResponse.php deleted file mode 100644 index cf9dd2bd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/ListScriptProcessesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Script_GoogleAppsScriptTypeProcess - */ - public function setProcesses($processes) - { - $this->processes = $processes; - } - /** - * @return Google_Service_Script_GoogleAppsScriptTypeProcess - */ - public function getProcesses() - { - return $this->processes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/ListUserProcessesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/ListUserProcessesResponse.php deleted file mode 100644 index 52b11a3b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/ListUserProcessesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Script_GoogleAppsScriptTypeProcess - */ - public function setProcesses($processes) - { - $this->processes = $processes; - } - /** - * @return Google_Service_Script_GoogleAppsScriptTypeProcess - */ - public function getProcesses() - { - return $this->processes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/ListValue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/ListValue.php deleted file mode 100644 index 3822bffc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/ListValue.php +++ /dev/null @@ -1,38 +0,0 @@ -values = $values; - } - /** - * @return Google_Service_Script_Value - */ - public function getValues() - { - return $this->values; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/ListVersionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/ListVersionsResponse.php deleted file mode 100644 index f732453f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/ListVersionsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Script_Version - */ - public function setVersions($versions) - { - $this->versions = $versions; - } - /** - * @return Google_Service_Script_Version - */ - public function getVersions() - { - return $this->versions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/Metrics.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/Metrics.php deleted file mode 100644 index a190ac6d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/Metrics.php +++ /dev/null @@ -1,70 +0,0 @@ -activeUsers = $activeUsers; - } - /** - * @return Google_Service_Script_MetricsValue - */ - public function getActiveUsers() - { - return $this->activeUsers; - } - /** - * @param Google_Service_Script_MetricsValue - */ - public function setFailedExecutions($failedExecutions) - { - $this->failedExecutions = $failedExecutions; - } - /** - * @return Google_Service_Script_MetricsValue - */ - public function getFailedExecutions() - { - return $this->failedExecutions; - } - /** - * @param Google_Service_Script_MetricsValue - */ - public function setTotalExecutions($totalExecutions) - { - $this->totalExecutions = $totalExecutions; - } - /** - * @return Google_Service_Script_MetricsValue - */ - public function getTotalExecutions() - { - return $this->totalExecutions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/MetricsValue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/MetricsValue.php deleted file mode 100644 index 364d5ab3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/MetricsValue.php +++ /dev/null @@ -1,48 +0,0 @@ -endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/Operation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/Operation.php deleted file mode 100644 index fd693c16..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/Operation.php +++ /dev/null @@ -1,55 +0,0 @@ -done = $done; - } - public function getDone() - { - return $this->done; - } - /** - * @param Google_Service_Script_Status - */ - public function setError(Google_Service_Script_Status $error) - { - $this->error = $error; - } - /** - * @return Google_Service_Script_Status - */ - public function getError() - { - return $this->error; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/Project.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/Project.php deleted file mode 100644 index 28ded5ad..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/Project.php +++ /dev/null @@ -1,98 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - /** - * @param Google_Service_Script_GoogleAppsScriptTypeUser - */ - public function setCreator(Google_Service_Script_GoogleAppsScriptTypeUser $creator) - { - $this->creator = $creator; - } - /** - * @return Google_Service_Script_GoogleAppsScriptTypeUser - */ - public function getCreator() - { - return $this->creator; - } - /** - * @param Google_Service_Script_GoogleAppsScriptTypeUser - */ - public function setLastModifyUser(Google_Service_Script_GoogleAppsScriptTypeUser $lastModifyUser) - { - $this->lastModifyUser = $lastModifyUser; - } - /** - * @return Google_Service_Script_GoogleAppsScriptTypeUser - */ - public function getLastModifyUser() - { - return $this->lastModifyUser; - } - public function setParentId($parentId) - { - $this->parentId = $parentId; - } - public function getParentId() - { - return $this->parentId; - } - public function setScriptId($scriptId) - { - $this->scriptId = $scriptId; - } - public function getScriptId() - { - return $this->scriptId; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/Resource/Processes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/Resource/Processes.php deleted file mode 100644 index 4535626f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/Resource/Processes.php +++ /dev/null @@ -1,110 +0,0 @@ - - * $scriptService = new Google_Service_Script(...); - * $processes = $scriptService->processes; - * - */ -class Google_Service_Script_Resource_Processes extends Google_Service_Resource -{ - /** - * List information about processes made by or on behalf of a user, such as - * process type and current status. (processes.listProcesses) - * - * @param array $optParams Optional parameters. - * - * @opt_param string userProcessFilter.startTime Optional field used to limit - * returned processes to those that were started on or after the given - * timestamp. - * @opt_param string userProcessFilter.projectName Optional field used to limit - * returned processes to those originating from projects with project names - * containing a specific string. - * @opt_param string userProcessFilter.userAccessLevels Optional field used to - * limit returned processes to those having one of the specified user access - * levels. - * @opt_param string userProcessFilter.functionName Optional field used to limit - * returned processes to those originating from a script function with the given - * function name. - * @opt_param string userProcessFilter.scriptId Optional field used to limit - * returned processes to those originating from projects with a specific script - * ID. - * @opt_param string userProcessFilter.types Optional field used to limit - * returned processes to those having one of the specified process types. - * @opt_param string userProcessFilter.statuses Optional field used to limit - * returned processes to those having one of the specified process statuses. - * @opt_param string userProcessFilter.deploymentId Optional field used to limit - * returned processes to those originating from projects with a specific - * deployment ID. - * @opt_param string pageToken The token for continuing a previous list request - * on the next page. This should be set to the value of `nextPageToken` from a - * previous response. - * @opt_param string userProcessFilter.endTime Optional field used to limit - * returned processes to those that completed on or before the given timestamp. - * @opt_param int pageSize The maximum number of returned processes per page of - * results. Defaults to 50. - * @return Google_Service_Script_ListUserProcessesResponse - */ - public function listProcesses($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Script_ListUserProcessesResponse"); - } - /** - * List information about a script's executed processes, such as process type - * and current status. (processes.listScriptProcesses) - * - * @param array $optParams Optional parameters. - * - * @opt_param string scriptProcessFilter.endTime Optional field used to limit - * returned processes to those that completed on or before the given timestamp. - * @opt_param string scriptProcessFilter.userAccessLevels Optional field used to - * limit returned processes to those having one of the specified user access - * levels. - * @opt_param string scriptProcessFilter.statuses Optional field used to limit - * returned processes to those having one of the specified process statuses. - * @opt_param string scriptProcessFilter.startTime Optional field used to limit - * returned processes to those that were started on or after the given - * timestamp. - * @opt_param string scriptProcessFilter.functionName Optional field used to - * limit returned processes to those originating from a script function with the - * given function name. - * @opt_param string scriptProcessFilter.deploymentId Optional field used to - * limit returned processes to those originating from projects with a specific - * deployment ID. - * @opt_param string scriptId The script ID of the project whose processes are - * listed. - * @opt_param string scriptProcessFilter.types Optional field used to limit - * returned processes to those having one of the specified process types. - * @opt_param string pageToken The token for continuing a previous list request - * on the next page. This should be set to the value of `nextPageToken` from a - * previous response. - * @opt_param int pageSize The maximum number of returned processes per page of - * results. Defaults to 50. - * @return Google_Service_Script_ListScriptProcessesResponse - */ - public function listScriptProcesses($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('listScriptProcesses', array($params), "Google_Service_Script_ListScriptProcessesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/Resource/Projects.php deleted file mode 100644 index d2589663..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/Resource/Projects.php +++ /dev/null @@ -1,110 +0,0 @@ - - * $scriptService = new Google_Service_Script(...); - * $projects = $scriptService->projects; - * - */ -class Google_Service_Script_Resource_Projects extends Google_Service_Resource -{ - /** - * Creates a new, empty script project with no script files and a base manifest - * file. (projects.create) - * - * @param Google_Service_Script_CreateProjectRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Script_Project - */ - public function create(Google_Service_Script_CreateProjectRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Script_Project"); - } - /** - * Gets a script project's metadata. (projects.get) - * - * @param string $scriptId The script project's Drive ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Script_Project - */ - public function get($scriptId, $optParams = array()) - { - $params = array('scriptId' => $scriptId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Script_Project"); - } - /** - * Gets the content of the script project, including the code source and - * metadata for each script file. (projects.getContent) - * - * @param string $scriptId The script project's Drive ID. - * @param array $optParams Optional parameters. - * - * @opt_param int versionNumber The version number of the project to retrieve. - * If not provided, the project's HEAD version is returned. - * @return Google_Service_Script_Content - */ - public function getContent($scriptId, $optParams = array()) - { - $params = array('scriptId' => $scriptId); - $params = array_merge($params, $optParams); - return $this->call('getContent', array($params), "Google_Service_Script_Content"); - } - /** - * Get metrics data for scripts, such as number of executions and active users. - * (projects.getMetrics) - * - * @param string $scriptId Required field indicating the script to get metrics - * for. - * @param array $optParams Optional parameters. - * - * @opt_param string metricsFilter.deploymentId Optional field indicating a - * specific deployment to retrieve metrics from. - * @opt_param string metricsGranularity Required field indicating what - * granularity of metrics are returned. - * @return Google_Service_Script_Metrics - */ - public function getMetrics($scriptId, $optParams = array()) - { - $params = array('scriptId' => $scriptId); - $params = array_merge($params, $optParams); - return $this->call('getMetrics', array($params), "Google_Service_Script_Metrics"); - } - /** - * Updates the content of the specified script project. This content is stored - * as the HEAD version, and is used when the script is executed as a trigger, in - * the script editor, in add-on preview mode, or as a web app or Apps Script API - * in development mode. This clears all the existing files in the project. - * (projects.updateContent) - * - * @param string $scriptId The script project's Drive ID. - * @param Google_Service_Script_Content $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Script_Content - */ - public function updateContent($scriptId, Google_Service_Script_Content $postBody, $optParams = array()) - { - $params = array('scriptId' => $scriptId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updateContent', array($params), "Google_Service_Script_Content"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/Resource/ProjectsDeployments.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/Resource/ProjectsDeployments.php deleted file mode 100644 index e8aa9b42..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/Resource/ProjectsDeployments.php +++ /dev/null @@ -1,105 +0,0 @@ - - * $scriptService = new Google_Service_Script(...); - * $deployments = $scriptService->deployments; - * - */ -class Google_Service_Script_Resource_ProjectsDeployments extends Google_Service_Resource -{ - /** - * Creates a deployment of an Apps Script project. (deployments.create) - * - * @param string $scriptId The script project's Drive ID. - * @param Google_Service_Script_DeploymentConfig $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Script_Deployment - */ - public function create($scriptId, Google_Service_Script_DeploymentConfig $postBody, $optParams = array()) - { - $params = array('scriptId' => $scriptId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Script_Deployment"); - } - /** - * Deletes a deployment of an Apps Script project. (deployments.delete) - * - * @param string $scriptId The script project's Drive ID. - * @param string $deploymentId The deployment ID to be undeployed. - * @param array $optParams Optional parameters. - * @return Google_Service_Script_ScriptEmpty - */ - public function delete($scriptId, $deploymentId, $optParams = array()) - { - $params = array('scriptId' => $scriptId, 'deploymentId' => $deploymentId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Script_ScriptEmpty"); - } - /** - * Gets a deployment of an Apps Script project. (deployments.get) - * - * @param string $scriptId The script project's Drive ID. - * @param string $deploymentId The deployment ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Script_Deployment - */ - public function get($scriptId, $deploymentId, $optParams = array()) - { - $params = array('scriptId' => $scriptId, 'deploymentId' => $deploymentId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Script_Deployment"); - } - /** - * Lists the deployments of an Apps Script project. - * (deployments.listProjectsDeployments) - * - * @param string $scriptId The script project's Drive ID. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The token for continuing a previous list request - * on the next page. This should be set to the value of `nextPageToken` from a - * previous response. - * @opt_param int pageSize The maximum number of deployments on each returned - * page. Defaults to 50. - * @return Google_Service_Script_ListDeploymentsResponse - */ - public function listProjectsDeployments($scriptId, $optParams = array()) - { - $params = array('scriptId' => $scriptId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Script_ListDeploymentsResponse"); - } - /** - * Updates a deployment of an Apps Script project. (deployments.update) - * - * @param string $scriptId The script project's Drive ID. - * @param string $deploymentId The deployment ID for this deployment. - * @param Google_Service_Script_UpdateDeploymentRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Script_Deployment - */ - public function update($scriptId, $deploymentId, Google_Service_Script_UpdateDeploymentRequest $postBody, $optParams = array()) - { - $params = array('scriptId' => $scriptId, 'deploymentId' => $deploymentId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Script_Deployment"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/Resource/ProjectsVersions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/Resource/ProjectsVersions.php deleted file mode 100644 index 66c40cd8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/Resource/ProjectsVersions.php +++ /dev/null @@ -1,76 +0,0 @@ - - * $scriptService = new Google_Service_Script(...); - * $versions = $scriptService->versions; - * - */ -class Google_Service_Script_Resource_ProjectsVersions extends Google_Service_Resource -{ - /** - * Creates a new immutable version using the current code, with a unique version - * number. (versions.create) - * - * @param string $scriptId The script project's Drive ID. - * @param Google_Service_Script_Version $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Script_Version - */ - public function create($scriptId, Google_Service_Script_Version $postBody, $optParams = array()) - { - $params = array('scriptId' => $scriptId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Script_Version"); - } - /** - * Gets a version of a script project. (versions.get) - * - * @param string $scriptId The script project's Drive ID. - * @param int $versionNumber The version number. - * @param array $optParams Optional parameters. - * @return Google_Service_Script_Version - */ - public function get($scriptId, $versionNumber, $optParams = array()) - { - $params = array('scriptId' => $scriptId, 'versionNumber' => $versionNumber); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Script_Version"); - } - /** - * List the versions of a script project. (versions.listProjectsVersions) - * - * @param string $scriptId The script project's Drive ID. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The token for continuing a previous list request - * on the next page. This should be set to the value of `nextPageToken` from a - * previous response. - * @opt_param int pageSize The maximum number of versions on each returned page. - * Defaults to 50. - * @return Google_Service_Script_ListVersionsResponse - */ - public function listProjectsVersions($scriptId, $optParams = array()) - { - $params = array('scriptId' => $scriptId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Script_ListVersionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/Resource/Scripts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/Resource/Scripts.php deleted file mode 100644 index 29a5e869..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/Resource/Scripts.php +++ /dev/null @@ -1,57 +0,0 @@ - - * $scriptService = new Google_Service_Script(...); - * $scripts = $scriptService->scripts; - * - */ -class Google_Service_Script_Resource_Scripts extends Google_Service_Resource -{ - /** - * Runs a function in an Apps Script project. The script project must be - * deployed for use with the Apps Script API and the calling application must - * share the same Cloud Platform project. - * - * This method requires authorization with an OAuth 2.0 token that includes at - * least one of the scopes listed in the [Authorization](#authorization-scopes) - * section; script projects that do not require authorization cannot be executed - * through this API. To find the correct scopes to include in the authentication - * token, open the project in the script editor, then select **File > Project - * properties** and click the **Scopes** tab. - * - * The error `403, PERMISSION_DENIED: The caller does not have permission` - * indicates that the Cloud Platform project used to authorize the request is - * not the same as the one used by the script. (scripts.run) - * - * @param string $scriptId The script ID of the script to be executed. To find - * the script ID, open the project in the script editor and select **File > - * Project properties**. - * @param Google_Service_Script_ExecutionRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Script_Operation - */ - public function run($scriptId, Google_Service_Script_ExecutionRequest $postBody, $optParams = array()) - { - $params = array('scriptId' => $scriptId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('run', array($params), "Google_Service_Script_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/ScriptEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/ScriptEmpty.php deleted file mode 100644 index b567ef29..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/ScriptEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -returnValue = $returnValue; - } - /** - * @return Google_Service_Script_Value - */ - public function getReturnValue() - { - return $this->returnValue; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/ScriptFile.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/ScriptFile.php deleted file mode 100644 index e9c6a15d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/ScriptFile.php +++ /dev/null @@ -1,98 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - /** - * @param Google_Service_Script_GoogleAppsScriptTypeFunctionSet - */ - public function setFunctionSet(Google_Service_Script_GoogleAppsScriptTypeFunctionSet $functionSet) - { - $this->functionSet = $functionSet; - } - /** - * @return Google_Service_Script_GoogleAppsScriptTypeFunctionSet - */ - public function getFunctionSet() - { - return $this->functionSet; - } - /** - * @param Google_Service_Script_GoogleAppsScriptTypeUser - */ - public function setLastModifyUser(Google_Service_Script_GoogleAppsScriptTypeUser $lastModifyUser) - { - $this->lastModifyUser = $lastModifyUser; - } - /** - * @return Google_Service_Script_GoogleAppsScriptTypeUser - */ - public function getLastModifyUser() - { - return $this->lastModifyUser; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setSource($source) - { - $this->source = $source; - } - public function getSource() - { - return $this->source; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/ScriptStackTraceElement.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/ScriptStackTraceElement.php deleted file mode 100644 index e1a993a9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/ScriptStackTraceElement.php +++ /dev/null @@ -1,39 +0,0 @@ -function = $function; - } - public function getFunction() - { - return $this->function; - } - public function setLineNumber($lineNumber) - { - $this->lineNumber = $lineNumber; - } - public function getLineNumber() - { - return $this->lineNumber; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/Status.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/Status.php deleted file mode 100644 index d6d2da32..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/Status.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/Struct.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/Struct.php deleted file mode 100644 index d31c4a70..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/Struct.php +++ /dev/null @@ -1,37 +0,0 @@ -fields = $fields; - } - /** - * @return Google_Service_Script_Value - */ - public function getFields() - { - return $this->fields; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/UpdateDeploymentRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/UpdateDeploymentRequest.php deleted file mode 100644 index d7163ada..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/UpdateDeploymentRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -deploymentConfig = $deploymentConfig; - } - /** - * @return Google_Service_Script_DeploymentConfig - */ - public function getDeploymentConfig() - { - return $this->deploymentConfig; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/Value.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/Value.php deleted file mode 100644 index 8fa9f1cc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/Value.php +++ /dev/null @@ -1,116 +0,0 @@ -boolValue = $boolValue; - } - public function getBoolValue() - { - return $this->boolValue; - } - public function setBytesValue($bytesValue) - { - $this->bytesValue = $bytesValue; - } - public function getBytesValue() - { - return $this->bytesValue; - } - public function setDateValue($dateValue) - { - $this->dateValue = $dateValue; - } - public function getDateValue() - { - return $this->dateValue; - } - /** - * @param Google_Service_Script_ListValue - */ - public function setListValue(Google_Service_Script_ListValue $listValue) - { - $this->listValue = $listValue; - } - /** - * @return Google_Service_Script_ListValue - */ - public function getListValue() - { - return $this->listValue; - } - public function setNullValue($nullValue) - { - $this->nullValue = $nullValue; - } - public function getNullValue() - { - return $this->nullValue; - } - public function setNumberValue($numberValue) - { - $this->numberValue = $numberValue; - } - public function getNumberValue() - { - return $this->numberValue; - } - public function setProtoValue($protoValue) - { - $this->protoValue = $protoValue; - } - public function getProtoValue() - { - return $this->protoValue; - } - public function setStringValue($stringValue) - { - $this->stringValue = $stringValue; - } - public function getStringValue() - { - return $this->stringValue; - } - /** - * @param Google_Service_Script_Struct - */ - public function setStructValue(Google_Service_Script_Struct $structValue) - { - $this->structValue = $structValue; - } - /** - * @return Google_Service_Script_Struct - */ - public function getStructValue() - { - return $this->structValue; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/Version.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/Version.php deleted file mode 100644 index fe1f8d77..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Script/Version.php +++ /dev/null @@ -1,57 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setScriptId($scriptId) - { - $this->scriptId = $scriptId; - } - public function getScriptId() - { - return $this->scriptId; - } - public function setVersionNumber($versionNumber) - { - $this->versionNumber = $versionNumber; - } - public function getVersionNumber() - { - return $this->versionNumber; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SearchConsole.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SearchConsole.php deleted file mode 100644 index 62f4195b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SearchConsole.php +++ /dev/null @@ -1,67 +0,0 @@ - - * Provides tools for running validation tests against single URLs

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_SearchConsole extends Google_Service -{ - - - public $urlTestingTools_mobileFriendlyTest; - - /** - * Constructs the internal representation of the SearchConsole service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://searchconsole.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'searchconsole'; - - $this->urlTestingTools_mobileFriendlyTest = new Google_Service_SearchConsole_Resource_UrlTestingToolsMobileFriendlyTest( - $this, - $this->serviceName, - 'mobileFriendlyTest', - array( - 'methods' => array( - 'run' => array( - 'path' => 'v1/urlTestingTools/mobileFriendlyTest:run', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SearchConsole/BlockedResource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SearchConsole/BlockedResource.php deleted file mode 100644 index 85715bdd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SearchConsole/BlockedResource.php +++ /dev/null @@ -1,30 +0,0 @@ -url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SearchConsole/Image.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SearchConsole/Image.php deleted file mode 100644 index b75ece64..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SearchConsole/Image.php +++ /dev/null @@ -1,39 +0,0 @@ -data = $data; - } - public function getData() - { - return $this->data; - } - public function setMimeType($mimeType) - { - $this->mimeType = $mimeType; - } - public function getMimeType() - { - return $this->mimeType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SearchConsole/MobileFriendlyIssue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SearchConsole/MobileFriendlyIssue.php deleted file mode 100644 index bbb037a3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SearchConsole/MobileFriendlyIssue.php +++ /dev/null @@ -1,30 +0,0 @@ -rule = $rule; - } - public function getRule() - { - return $this->rule; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SearchConsole/Resource/UrlTestingTools.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SearchConsole/Resource/UrlTestingTools.php deleted file mode 100644 index ef0e1d2c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SearchConsole/Resource/UrlTestingTools.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $searchconsoleService = new Google_Service_SearchConsole(...); - * $urlTestingTools = $searchconsoleService->urlTestingTools; - * - */ -class Google_Service_SearchConsole_Resource_UrlTestingTools extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SearchConsole/Resource/UrlTestingToolsMobileFriendlyTest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SearchConsole/Resource/UrlTestingToolsMobileFriendlyTest.php deleted file mode 100644 index 6abeabb5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SearchConsole/Resource/UrlTestingToolsMobileFriendlyTest.php +++ /dev/null @@ -1,41 +0,0 @@ - - * $searchconsoleService = new Google_Service_SearchConsole(...); - * $mobileFriendlyTest = $searchconsoleService->mobileFriendlyTest; - * - */ -class Google_Service_SearchConsole_Resource_UrlTestingToolsMobileFriendlyTest extends Google_Service_Resource -{ - /** - * Runs Mobile-Friendly Test for a given URL. (mobileFriendlyTest.run) - * - * @param Google_Service_SearchConsole_RunMobileFriendlyTestRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_SearchConsole_RunMobileFriendlyTestResponse - */ - public function run(Google_Service_SearchConsole_RunMobileFriendlyTestRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('run', array($params), "Google_Service_SearchConsole_RunMobileFriendlyTestResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SearchConsole/ResourceIssue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SearchConsole/ResourceIssue.php deleted file mode 100644 index 3e8ecda4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SearchConsole/ResourceIssue.php +++ /dev/null @@ -1,37 +0,0 @@ -blockedResource = $blockedResource; - } - /** - * @return Google_Service_SearchConsole_BlockedResource - */ - public function getBlockedResource() - { - return $this->blockedResource; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SearchConsole/RunMobileFriendlyTestRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SearchConsole/RunMobileFriendlyTestRequest.php deleted file mode 100644 index a8cf9c42..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SearchConsole/RunMobileFriendlyTestRequest.php +++ /dev/null @@ -1,39 +0,0 @@ -requestScreenshot = $requestScreenshot; - } - public function getRequestScreenshot() - { - return $this->requestScreenshot; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SearchConsole/RunMobileFriendlyTestResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SearchConsole/RunMobileFriendlyTestResponse.php deleted file mode 100644 index fcd22619..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SearchConsole/RunMobileFriendlyTestResponse.php +++ /dev/null @@ -1,95 +0,0 @@ -mobileFriendliness = $mobileFriendliness; - } - public function getMobileFriendliness() - { - return $this->mobileFriendliness; - } - /** - * @param Google_Service_SearchConsole_MobileFriendlyIssue - */ - public function setMobileFriendlyIssues($mobileFriendlyIssues) - { - $this->mobileFriendlyIssues = $mobileFriendlyIssues; - } - /** - * @return Google_Service_SearchConsole_MobileFriendlyIssue - */ - public function getMobileFriendlyIssues() - { - return $this->mobileFriendlyIssues; - } - /** - * @param Google_Service_SearchConsole_ResourceIssue - */ - public function setResourceIssues($resourceIssues) - { - $this->resourceIssues = $resourceIssues; - } - /** - * @return Google_Service_SearchConsole_ResourceIssue - */ - public function getResourceIssues() - { - return $this->resourceIssues; - } - /** - * @param Google_Service_SearchConsole_Image - */ - public function setScreenshot(Google_Service_SearchConsole_Image $screenshot) - { - $this->screenshot = $screenshot; - } - /** - * @return Google_Service_SearchConsole_Image - */ - public function getScreenshot() - { - return $this->screenshot; - } - /** - * @param Google_Service_SearchConsole_TestStatus - */ - public function setTestStatus(Google_Service_SearchConsole_TestStatus $testStatus) - { - $this->testStatus = $testStatus; - } - /** - * @return Google_Service_SearchConsole_TestStatus - */ - public function getTestStatus() - { - return $this->testStatus; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SearchConsole/TestStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SearchConsole/TestStatus.php deleted file mode 100644 index 8e7a90a5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SearchConsole/TestStatus.php +++ /dev/null @@ -1,39 +0,0 @@ -details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager.php deleted file mode 100644 index 344eae08..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager.php +++ /dev/null @@ -1,298 +0,0 @@ - - * Stores and manages access to application secrets. Provides convenience while - * improving security.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_SecretManager extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - - public $projects_locations; - public $projects_secrets; - public $projects_secrets_versions; - - /** - * Constructs the internal representation of the SecretManager service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://secretmanager.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1beta1'; - $this->serviceName = 'secretmanager'; - - $this->projects_locations = new Google_Service_SecretManager_Resource_ProjectsLocations( - $this, - $this->serviceName, - 'locations', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1beta1/{+name}/locations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->projects_secrets = new Google_Service_SecretManager_Resource_ProjectsSecrets( - $this, - $this->serviceName, - 'secrets', - array( - 'methods' => array( - 'addVersion' => array( - 'path' => 'v1beta1/{+parent}:addVersion', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'create' => array( - 'path' => 'v1beta1/{+parent}/secrets', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'secretId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getIamPolicy' => array( - 'path' => 'v1beta1/{+resource}:getIamPolicy', - 'httpMethod' => 'GET', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'options.requestedPolicyVersion' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'list' => array( - 'path' => 'v1beta1/{+parent}/secrets', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setIamPolicy' => array( - 'path' => 'v1beta1/{+resource}:setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => 'v1beta1/{+resource}:testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_secrets_versions = new Google_Service_SecretManager_Resource_ProjectsSecretsVersions( - $this, - $this->serviceName, - 'versions', - array( - 'methods' => array( - 'access' => array( - 'path' => 'v1beta1/{+name}:access', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'destroy' => array( - 'path' => 'v1beta1/{+name}:destroy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'disable' => array( - 'path' => 'v1beta1/{+name}:disable', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'enable' => array( - 'path' => 'v1beta1/{+name}:enable', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1beta1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1beta1/{+parent}/versions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/AccessSecretVersionResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/AccessSecretVersionResponse.php deleted file mode 100644 index f4904b25..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/AccessSecretVersionResponse.php +++ /dev/null @@ -1,46 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_SecretManager_SecretPayload - */ - public function setPayload(Google_Service_SecretManager_SecretPayload $payload) - { - $this->payload = $payload; - } - /** - * @return Google_Service_SecretManager_SecretPayload - */ - public function getPayload() - { - return $this->payload; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/AddSecretVersionRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/AddSecretVersionRequest.php deleted file mode 100644 index 28180492..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/AddSecretVersionRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -payload = $payload; - } - /** - * @return Google_Service_SecretManager_SecretPayload - */ - public function getPayload() - { - return $this->payload; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/AuditConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/AuditConfig.php deleted file mode 100644 index 476a1932..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/AuditConfig.php +++ /dev/null @@ -1,47 +0,0 @@ -auditLogConfigs = $auditLogConfigs; - } - /** - * @return Google_Service_SecretManager_AuditLogConfig - */ - public function getAuditLogConfigs() - { - return $this->auditLogConfigs; - } - public function setService($service) - { - $this->service = $service; - } - public function getService() - { - return $this->service; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/AuditLogConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/AuditLogConfig.php deleted file mode 100644 index 1faf1eef..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/AuditLogConfig.php +++ /dev/null @@ -1,40 +0,0 @@ -exemptedMembers = $exemptedMembers; - } - public function getExemptedMembers() - { - return $this->exemptedMembers; - } - public function setLogType($logType) - { - $this->logType = $logType; - } - public function getLogType() - { - return $this->logType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/Automatic.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/Automatic.php deleted file mode 100644 index 841f61ad..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/Automatic.php +++ /dev/null @@ -1,20 +0,0 @@ -condition = $condition; - } - /** - * @return Google_Service_SecretManager_Expr - */ - public function getCondition() - { - return $this->condition; - } - public function setMembers($members) - { - $this->members = $members; - } - public function getMembers() - { - return $this->members; - } - public function setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/DestroySecretVersionRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/DestroySecretVersionRequest.php deleted file mode 100644 index 9900dfd0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/DestroySecretVersionRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setExpression($expression) - { - $this->expression = $expression; - } - public function getExpression() - { - return $this->expression; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/ListLocationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/ListLocationsResponse.php deleted file mode 100644 index 1f117453..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/ListLocationsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -locations = $locations; - } - /** - * @return Google_Service_SecretManager_Location - */ - public function getLocations() - { - return $this->locations; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/ListSecretVersionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/ListSecretVersionsResponse.php deleted file mode 100644 index f778d359..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/ListSecretVersionsResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setTotalSize($totalSize) - { - $this->totalSize = $totalSize; - } - public function getTotalSize() - { - return $this->totalSize; - } - /** - * @param Google_Service_SecretManager_SecretVersion - */ - public function setVersions($versions) - { - $this->versions = $versions; - } - /** - * @return Google_Service_SecretManager_SecretVersion - */ - public function getVersions() - { - return $this->versions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/ListSecretsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/ListSecretsResponse.php deleted file mode 100644 index 25296a07..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/ListSecretsResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_SecretManager_Secret - */ - public function setSecrets($secrets) - { - $this->secrets = $secrets; - } - /** - * @return Google_Service_SecretManager_Secret - */ - public function getSecrets() - { - return $this->secrets; - } - public function setTotalSize($totalSize) - { - $this->totalSize = $totalSize; - } - public function getTotalSize() - { - return $this->totalSize; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/Location.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/Location.php deleted file mode 100644 index a7de8c6b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/Location.php +++ /dev/null @@ -1,66 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setLocationId($locationId) - { - $this->locationId = $locationId; - } - public function getLocationId() - { - return $this->locationId; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/Policy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/Policy.php deleted file mode 100644 index dfe383b0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/Policy.php +++ /dev/null @@ -1,72 +0,0 @@ -auditConfigs = $auditConfigs; - } - /** - * @return Google_Service_SecretManager_AuditConfig - */ - public function getAuditConfigs() - { - return $this->auditConfigs; - } - /** - * @param Google_Service_SecretManager_Binding - */ - public function setBindings($bindings) - { - $this->bindings = $bindings; - } - /** - * @return Google_Service_SecretManager_Binding - */ - public function getBindings() - { - return $this->bindings; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/Replica.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/Replica.php deleted file mode 100644 index 28a05bfe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/Replica.php +++ /dev/null @@ -1,30 +0,0 @@ -location = $location; - } - public function getLocation() - { - return $this->location; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/Replication.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/Replication.php deleted file mode 100644 index d00a8d3e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/Replication.php +++ /dev/null @@ -1,53 +0,0 @@ -automatic = $automatic; - } - /** - * @return Google_Service_SecretManager_Automatic - */ - public function getAutomatic() - { - return $this->automatic; - } - /** - * @param Google_Service_SecretManager_UserManaged - */ - public function setUserManaged(Google_Service_SecretManager_UserManaged $userManaged) - { - $this->userManaged = $userManaged; - } - /** - * @return Google_Service_SecretManager_UserManaged - */ - public function getUserManaged() - { - return $this->userManaged; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/Resource/Projects.php deleted file mode 100644 index 1452280c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/Resource/Projects.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $secretmanagerService = new Google_Service_SecretManager(...); - * $projects = $secretmanagerService->projects; - * - */ -class Google_Service_SecretManager_Resource_Projects extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/Resource/ProjectsLocations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/Resource/ProjectsLocations.php deleted file mode 100644 index 59067563..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/Resource/ProjectsLocations.php +++ /dev/null @@ -1,60 +0,0 @@ - - * $secretmanagerService = new Google_Service_SecretManager(...); - * $locations = $secretmanagerService->locations; - * - */ -class Google_Service_SecretManager_Resource_ProjectsLocations extends Google_Service_Resource -{ - /** - * Gets information about a location. (locations.get) - * - * @param string $name Resource name for the location. - * @param array $optParams Optional parameters. - * @return Google_Service_SecretManager_Location - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_SecretManager_Location"); - } - /** - * Lists information about the supported locations for this service. - * (locations.listProjectsLocations) - * - * @param string $name The resource that owns the locations collection, if - * applicable. - * @param array $optParams Optional parameters. - * - * @opt_param string filter The standard list filter. - * @opt_param string pageToken The standard list page token. - * @opt_param int pageSize The standard list page size. - * @return Google_Service_SecretManager_ListLocationsResponse - */ - public function listProjectsLocations($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_SecretManager_ListLocationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/Resource/ProjectsSecrets.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/Resource/ProjectsSecrets.php deleted file mode 100644 index c5370d3c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/Resource/ProjectsSecrets.php +++ /dev/null @@ -1,195 +0,0 @@ - - * $secretmanagerService = new Google_Service_SecretManager(...); - * $secrets = $secretmanagerService->secrets; - * - */ -class Google_Service_SecretManager_Resource_ProjectsSecrets extends Google_Service_Resource -{ - /** - * Creates a new SecretVersion containing secret data and attaches it to an - * existing Secret. (secrets.addVersion) - * - * @param string $parent Required. The resource name of the Secret to associate - * with the SecretVersion in the format `projects/secrets`. - * @param Google_Service_SecretManager_AddSecretVersionRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_SecretManager_SecretVersion - */ - public function addVersion($parent, Google_Service_SecretManager_AddSecretVersionRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('addVersion', array($params), "Google_Service_SecretManager_SecretVersion"); - } - /** - * Creates a new Secret containing no SecretVersions. (secrets.create) - * - * @param string $parent Required. The resource name of the project to associate - * with the Secret, in the format `projects`. - * @param Google_Service_SecretManager_Secret $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string secretId Required. This must be unique within the project. - * @return Google_Service_SecretManager_Secret - */ - public function create($parent, Google_Service_SecretManager_Secret $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_SecretManager_Secret"); - } - /** - * Deletes a Secret. (secrets.delete) - * - * @param string $name Required. The resource name of the Secret to delete in - * the format `projects/secrets`. - * @param array $optParams Optional parameters. - * @return Google_Service_SecretManager_SecretmanagerEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_SecretManager_SecretmanagerEmpty"); - } - /** - * Gets metadata for a given Secret. (secrets.get) - * - * @param string $name Required. The resource name of the Secret, in the format - * `projects/secrets`. - * @param array $optParams Optional parameters. - * @return Google_Service_SecretManager_Secret - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_SecretManager_Secret"); - } - /** - * Gets the access control policy for a secret. Returns empty policy if the - * secret exists and does not have a policy set. (secrets.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. - * @return Google_Service_SecretManager_Policy - */ - public function getIamPolicy($resource, $optParams = array()) - { - $params = array('resource' => $resource); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_SecretManager_Policy"); - } - /** - * Lists Secrets. (secrets.listProjectsSecrets) - * - * @param string $parent Required. The resource name of the project associated - * with the Secrets, in the format `projects`. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Optional. Pagination token, returned earlier via - * ListSecretsResponse.next_page_token. - * @opt_param int pageSize Optional. The maximum number of results to be - * returned in a single page. If set to 0, the server decides the number of - * results to return. If the number is greater than 25000, it is capped at - * 25000. - * @return Google_Service_SecretManager_ListSecretsResponse - */ - public function listProjectsSecrets($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_SecretManager_ListSecretsResponse"); - } - /** - * Updates metadata of an existing Secret. (secrets.patch) - * - * @param string $name Output only. The resource name of the Secret in the - * format `projects/secrets`. - * @param Google_Service_SecretManager_Secret $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Required. Specifies the fields to be updated. - * @return Google_Service_SecretManager_Secret - */ - public function patch($name, Google_Service_SecretManager_Secret $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_SecretManager_Secret"); - } - /** - * Sets the access control policy on the specified secret. Replaces any existing - * policy. - * - * Permissions on SecretVersions are enforced according to the policy set on the - * associated Secret. (secrets.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_SecretManager_SetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_SecretManager_Policy - */ - public function setIamPolicy($resource, Google_Service_SecretManager_SetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_SecretManager_Policy"); - } - /** - * Returns permissions that a caller has for the specified secret. If the secret - * does not exist, this call returns 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. (secrets.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_SecretManager_TestIamPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_SecretManager_TestIamPermissionsResponse - */ - public function testIamPermissions($resource, Google_Service_SecretManager_TestIamPermissionsRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_SecretManager_TestIamPermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/Resource/ProjectsSecretsVersions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/Resource/ProjectsSecretsVersions.php deleted file mode 100644 index 7b6e1985..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/Resource/ProjectsSecretsVersions.php +++ /dev/null @@ -1,137 +0,0 @@ - - * $secretmanagerService = new Google_Service_SecretManager(...); - * $versions = $secretmanagerService->versions; - * - */ -class Google_Service_SecretManager_Resource_ProjectsSecretsVersions extends Google_Service_Resource -{ - /** - * Accesses a SecretVersion. This call returns the secret data. - * - * `projects/secrets/versions/latest` is an alias to the `latest` SecretVersion. - * (versions.access) - * - * @param string $name Required. The resource name of the SecretVersion in the - * format `projects/secrets/versions`. - * @param array $optParams Optional parameters. - * @return Google_Service_SecretManager_AccessSecretVersionResponse - */ - public function access($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('access', array($params), "Google_Service_SecretManager_AccessSecretVersionResponse"); - } - /** - * Destroys a SecretVersion. - * - * Sets the state of the SecretVersion to DESTROYED and irrevocably destroys the - * secret data. (versions.destroy) - * - * @param string $name Required. The resource name of the SecretVersion to - * destroy in the format `projects/secrets/versions`. - * @param Google_Service_SecretManager_DestroySecretVersionRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_SecretManager_SecretVersion - */ - public function destroy($name, Google_Service_SecretManager_DestroySecretVersionRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('destroy', array($params), "Google_Service_SecretManager_SecretVersion"); - } - /** - * Disables a SecretVersion. - * - * Sets the state of the SecretVersion to DISABLED. (versions.disable) - * - * @param string $name Required. The resource name of the SecretVersion to - * disable in the format `projects/secrets/versions`. - * @param Google_Service_SecretManager_DisableSecretVersionRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_SecretManager_SecretVersion - */ - public function disable($name, Google_Service_SecretManager_DisableSecretVersionRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('disable', array($params), "Google_Service_SecretManager_SecretVersion"); - } - /** - * Enables a SecretVersion. - * - * Sets the state of the SecretVersion to ENABLED. (versions.enable) - * - * @param string $name Required. The resource name of the SecretVersion to - * enable in the format `projects/secrets/versions`. - * @param Google_Service_SecretManager_EnableSecretVersionRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_SecretManager_SecretVersion - */ - public function enable($name, Google_Service_SecretManager_EnableSecretVersionRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('enable', array($params), "Google_Service_SecretManager_SecretVersion"); - } - /** - * Gets metadata for a SecretVersion. - * - * `projects/secrets/versions/latest` is an alias to the `latest` SecretVersion. - * (versions.get) - * - * @param string $name Required. The resource name of the SecretVersion in the - * format `projects/secrets/versions`. `projects/secrets/versions/latest` is an - * alias to the `latest` SecretVersion. - * @param array $optParams Optional parameters. - * @return Google_Service_SecretManager_SecretVersion - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_SecretManager_SecretVersion"); - } - /** - * Lists SecretVersions. This call does not return secret data. - * (versions.listProjectsSecretsVersions) - * - * @param string $parent Required. The resource name of the Secret associated - * with the SecretVersions to list, in the format `projects/secrets`. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Optional. Pagination token, returned earlier via - * ListSecretVersionsResponse.next_page_token][]. - * @opt_param int pageSize Optional. The maximum number of results to be - * returned in a single page. If set to 0, the server decides the number of - * results to return. If the number is greater than 25000, it is capped at - * 25000. - * @return Google_Service_SecretManager_ListSecretVersionsResponse - */ - public function listProjectsSecretsVersions($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_SecretManager_ListSecretVersionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/Secret.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/Secret.php deleted file mode 100644 index 20bfa217..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/Secret.php +++ /dev/null @@ -1,64 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_SecretManager_Replication - */ - public function setReplication(Google_Service_SecretManager_Replication $replication) - { - $this->replication = $replication; - } - /** - * @return Google_Service_SecretManager_Replication - */ - public function getReplication() - { - return $this->replication; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/SecretPayload.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/SecretPayload.php deleted file mode 100644 index 146297c0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/SecretPayload.php +++ /dev/null @@ -1,30 +0,0 @@ -data = $data; - } - public function getData() - { - return $this->data; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/SecretVersion.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/SecretVersion.php deleted file mode 100644 index f78db6a1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/SecretVersion.php +++ /dev/null @@ -1,57 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setDestroyTime($destroyTime) - { - $this->destroyTime = $destroyTime; - } - public function getDestroyTime() - { - return $this->destroyTime; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/SecretmanagerEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/SecretmanagerEmpty.php deleted file mode 100644 index 78505cc4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/SecretmanagerEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -policy = $policy; - } - /** - * @return Google_Service_SecretManager_Policy - */ - public function getPolicy() - { - return $this->policy; - } - public function setUpdateMask($updateMask) - { - $this->updateMask = $updateMask; - } - public function getUpdateMask() - { - return $this->updateMask; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/TestIamPermissionsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/TestIamPermissionsRequest.php deleted file mode 100644 index 97ce8727..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/TestIamPermissionsRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/TestIamPermissionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/TestIamPermissionsResponse.php deleted file mode 100644 index 3415d85c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/TestIamPermissionsResponse.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/UserManaged.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/UserManaged.php deleted file mode 100644 index 8f1adf63..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecretManager/UserManaged.php +++ /dev/null @@ -1,38 +0,0 @@ -replicas = $replicas; - } - /** - * @return Google_Service_SecretManager_Replica - */ - public function getReplicas() - { - return $this->replicas; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter.php deleted file mode 100644 index f81de733..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter.php +++ /dev/null @@ -1,449 +0,0 @@ - - * Cloud Security Command Center API provides access to temporal views of assets - * and findings within an organization.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_SecurityCommandCenter extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - - public $organizations; - public $organizations_assets; - public $organizations_operations; - public $organizations_sources; - public $organizations_sources_findings; - - /** - * Constructs the internal representation of the SecurityCommandCenter - * service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://securitycenter.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'securitycenter'; - - $this->organizations = new Google_Service_SecurityCommandCenter_Resource_Organizations( - $this, - $this->serviceName, - 'organizations', - array( - 'methods' => array( - 'getOrganizationSettings' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'updateOrganizationSettings' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->organizations_assets = new Google_Service_SecurityCommandCenter_Resource_OrganizationsAssets( - $this, - $this->serviceName, - 'assets', - array( - 'methods' => array( - 'group' => array( - 'path' => 'v1/{+parent}/assets:group', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/assets', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'readTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'compareDuration' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'fieldMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'runDiscovery' => array( - 'path' => 'v1/{+parent}/assets:runDiscovery', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'updateSecurityMarks' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'startTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->organizations_operations = new Google_Service_SecurityCommandCenter_Resource_OrganizationsOperations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'cancel' => array( - 'path' => 'v1/{+name}:cancel', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->organizations_sources = new Google_Service_SecurityCommandCenter_Resource_OrganizationsSources( - $this, - $this->serviceName, - 'sources', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/sources', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getIamPolicy' => array( - 'path' => 'v1/{+resource}:getIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/sources', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setIamPolicy' => array( - 'path' => 'v1/{+resource}:setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => 'v1/{+resource}:testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->organizations_sources_findings = new Google_Service_SecurityCommandCenter_Resource_OrganizationsSourcesFindings( - $this, - $this->serviceName, - 'findings', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/findings', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'findingId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'group' => array( - 'path' => 'v1/{+parent}/findings:group', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/findings', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'fieldMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'readTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'compareDuration' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setState' => array( - 'path' => 'v1/{+name}:setState', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'updateSecurityMarks' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'startTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/Asset.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/Asset.php deleted file mode 100644 index a8c9c729..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/Asset.php +++ /dev/null @@ -1,105 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - /** - * @param Google_Service_SecurityCommandCenter_IamPolicy - */ - public function setIamPolicy(Google_Service_SecurityCommandCenter_IamPolicy $iamPolicy) - { - $this->iamPolicy = $iamPolicy; - } - /** - * @return Google_Service_SecurityCommandCenter_IamPolicy - */ - public function getIamPolicy() - { - return $this->iamPolicy; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setResourceProperties($resourceProperties) - { - $this->resourceProperties = $resourceProperties; - } - public function getResourceProperties() - { - return $this->resourceProperties; - } - /** - * @param Google_Service_SecurityCommandCenter_SecurityCenterProperties - */ - public function setSecurityCenterProperties(Google_Service_SecurityCommandCenter_SecurityCenterProperties $securityCenterProperties) - { - $this->securityCenterProperties = $securityCenterProperties; - } - /** - * @return Google_Service_SecurityCommandCenter_SecurityCenterProperties - */ - public function getSecurityCenterProperties() - { - return $this->securityCenterProperties; - } - /** - * @param Google_Service_SecurityCommandCenter_SecurityMarks - */ - public function setSecurityMarks(Google_Service_SecurityCommandCenter_SecurityMarks $securityMarks) - { - $this->securityMarks = $securityMarks; - } - /** - * @return Google_Service_SecurityCommandCenter_SecurityMarks - */ - public function getSecurityMarks() - { - return $this->securityMarks; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/AssetDiscoveryConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/AssetDiscoveryConfig.php deleted file mode 100644 index d9dba54b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/AssetDiscoveryConfig.php +++ /dev/null @@ -1,40 +0,0 @@ -inclusionMode = $inclusionMode; - } - public function getInclusionMode() - { - return $this->inclusionMode; - } - public function setProjectIds($projectIds) - { - $this->projectIds = $projectIds; - } - public function getProjectIds() - { - return $this->projectIds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/AuditConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/AuditConfig.php deleted file mode 100644 index 28d86a6c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/AuditConfig.php +++ /dev/null @@ -1,47 +0,0 @@ -auditLogConfigs = $auditLogConfigs; - } - /** - * @return Google_Service_SecurityCommandCenter_AuditLogConfig - */ - public function getAuditLogConfigs() - { - return $this->auditLogConfigs; - } - public function setService($service) - { - $this->service = $service; - } - public function getService() - { - return $this->service; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/AuditLogConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/AuditLogConfig.php deleted file mode 100644 index 448a365a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/AuditLogConfig.php +++ /dev/null @@ -1,40 +0,0 @@ -exemptedMembers = $exemptedMembers; - } - public function getExemptedMembers() - { - return $this->exemptedMembers; - } - public function setLogType($logType) - { - $this->logType = $logType; - } - public function getLogType() - { - return $this->logType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/Binding.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/Binding.php deleted file mode 100644 index d5681e95..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/Binding.php +++ /dev/null @@ -1,56 +0,0 @@ -condition = $condition; - } - /** - * @return Google_Service_SecurityCommandCenter_Expr - */ - public function getCondition() - { - return $this->condition; - } - public function setMembers($members) - { - $this->members = $members; - } - public function getMembers() - { - return $this->members; - } - public function setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/Expr.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/Expr.php deleted file mode 100644 index 13d7668e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/Expr.php +++ /dev/null @@ -1,57 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setExpression($expression) - { - $this->expression = $expression; - } - public function getExpression() - { - return $this->expression; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/Finding.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/Finding.php deleted file mode 100644 index 84475430..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/Finding.php +++ /dev/null @@ -1,118 +0,0 @@ -category = $category; - } - public function getCategory() - { - return $this->category; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setEventTime($eventTime) - { - $this->eventTime = $eventTime; - } - public function getEventTime() - { - return $this->eventTime; - } - public function setExternalUri($externalUri) - { - $this->externalUri = $externalUri; - } - public function getExternalUri() - { - return $this->externalUri; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setParent($parent) - { - $this->parent = $parent; - } - public function getParent() - { - return $this->parent; - } - public function setResourceName($resourceName) - { - $this->resourceName = $resourceName; - } - public function getResourceName() - { - return $this->resourceName; - } - /** - * @param Google_Service_SecurityCommandCenter_SecurityMarks - */ - public function setSecurityMarks(Google_Service_SecurityCommandCenter_SecurityMarks $securityMarks) - { - $this->securityMarks = $securityMarks; - } - /** - * @return Google_Service_SecurityCommandCenter_SecurityMarks - */ - public function getSecurityMarks() - { - return $this->securityMarks; - } - public function setSourceProperties($sourceProperties) - { - $this->sourceProperties = $sourceProperties; - } - public function getSourceProperties() - { - return $this->sourceProperties; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/GetIamPolicyRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/GetIamPolicyRequest.php deleted file mode 100644 index dbb755b0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/GetIamPolicyRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -options = $options; - } - /** - * @return Google_Service_SecurityCommandCenter_GetPolicyOptions - */ - public function getOptions() - { - return $this->options; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/GetPolicyOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/GetPolicyOptions.php deleted file mode 100644 index 7a47b6b0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/GetPolicyOptions.php +++ /dev/null @@ -1,30 +0,0 @@ -requestedPolicyVersion = $requestedPolicyVersion; - } - public function getRequestedPolicyVersion() - { - return $this->requestedPolicyVersion; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/GoogleCloudSecuritycenterV1RunAssetDiscoveryResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/GoogleCloudSecuritycenterV1RunAssetDiscoveryResponse.php deleted file mode 100644 index 9d083f87..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/GoogleCloudSecuritycenterV1RunAssetDiscoveryResponse.php +++ /dev/null @@ -1,39 +0,0 @@ -duration = $duration; - } - public function getDuration() - { - return $this->duration; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/GoogleCloudSecuritycenterV1beta1RunAssetDiscoveryResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/GoogleCloudSecuritycenterV1beta1RunAssetDiscoveryResponse.php deleted file mode 100644 index 0cd17dbf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/GoogleCloudSecuritycenterV1beta1RunAssetDiscoveryResponse.php +++ /dev/null @@ -1,39 +0,0 @@ -duration = $duration; - } - public function getDuration() - { - return $this->duration; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/GoogleCloudSecuritycenterV1p1beta1Asset.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/GoogleCloudSecuritycenterV1p1beta1Asset.php deleted file mode 100644 index 6a7171b0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/GoogleCloudSecuritycenterV1p1beta1Asset.php +++ /dev/null @@ -1,105 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - /** - * @param Google_Service_SecurityCommandCenter_GoogleCloudSecuritycenterV1p1beta1IamPolicy - */ - public function setIamPolicy(Google_Service_SecurityCommandCenter_GoogleCloudSecuritycenterV1p1beta1IamPolicy $iamPolicy) - { - $this->iamPolicy = $iamPolicy; - } - /** - * @return Google_Service_SecurityCommandCenter_GoogleCloudSecuritycenterV1p1beta1IamPolicy - */ - public function getIamPolicy() - { - return $this->iamPolicy; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setResourceProperties($resourceProperties) - { - $this->resourceProperties = $resourceProperties; - } - public function getResourceProperties() - { - return $this->resourceProperties; - } - /** - * @param Google_Service_SecurityCommandCenter_GoogleCloudSecuritycenterV1p1beta1SecurityCenterProperties - */ - public function setSecurityCenterProperties(Google_Service_SecurityCommandCenter_GoogleCloudSecuritycenterV1p1beta1SecurityCenterProperties $securityCenterProperties) - { - $this->securityCenterProperties = $securityCenterProperties; - } - /** - * @return Google_Service_SecurityCommandCenter_GoogleCloudSecuritycenterV1p1beta1SecurityCenterProperties - */ - public function getSecurityCenterProperties() - { - return $this->securityCenterProperties; - } - /** - * @param Google_Service_SecurityCommandCenter_GoogleCloudSecuritycenterV1p1beta1SecurityMarks - */ - public function setSecurityMarks(Google_Service_SecurityCommandCenter_GoogleCloudSecuritycenterV1p1beta1SecurityMarks $securityMarks) - { - $this->securityMarks = $securityMarks; - } - /** - * @return Google_Service_SecurityCommandCenter_GoogleCloudSecuritycenterV1p1beta1SecurityMarks - */ - public function getSecurityMarks() - { - return $this->securityMarks; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/GoogleCloudSecuritycenterV1p1beta1Finding.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/GoogleCloudSecuritycenterV1p1beta1Finding.php deleted file mode 100644 index e06f1041..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/GoogleCloudSecuritycenterV1p1beta1Finding.php +++ /dev/null @@ -1,118 +0,0 @@ -category = $category; - } - public function getCategory() - { - return $this->category; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setEventTime($eventTime) - { - $this->eventTime = $eventTime; - } - public function getEventTime() - { - return $this->eventTime; - } - public function setExternalUri($externalUri) - { - $this->externalUri = $externalUri; - } - public function getExternalUri() - { - return $this->externalUri; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setParent($parent) - { - $this->parent = $parent; - } - public function getParent() - { - return $this->parent; - } - public function setResourceName($resourceName) - { - $this->resourceName = $resourceName; - } - public function getResourceName() - { - return $this->resourceName; - } - /** - * @param Google_Service_SecurityCommandCenter_GoogleCloudSecuritycenterV1p1beta1SecurityMarks - */ - public function setSecurityMarks(Google_Service_SecurityCommandCenter_GoogleCloudSecuritycenterV1p1beta1SecurityMarks $securityMarks) - { - $this->securityMarks = $securityMarks; - } - /** - * @return Google_Service_SecurityCommandCenter_GoogleCloudSecuritycenterV1p1beta1SecurityMarks - */ - public function getSecurityMarks() - { - return $this->securityMarks; - } - public function setSourceProperties($sourceProperties) - { - $this->sourceProperties = $sourceProperties; - } - public function getSourceProperties() - { - return $this->sourceProperties; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/GoogleCloudSecuritycenterV1p1beta1IamPolicy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/GoogleCloudSecuritycenterV1p1beta1IamPolicy.php deleted file mode 100644 index ac876e87..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/GoogleCloudSecuritycenterV1p1beta1IamPolicy.php +++ /dev/null @@ -1,30 +0,0 @@ -policyBlob = $policyBlob; - } - public function getPolicyBlob() - { - return $this->policyBlob; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/GoogleCloudSecuritycenterV1p1beta1NotificationMessage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/GoogleCloudSecuritycenterV1p1beta1NotificationMessage.php deleted file mode 100644 index cd108afd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/GoogleCloudSecuritycenterV1p1beta1NotificationMessage.php +++ /dev/null @@ -1,62 +0,0 @@ -finding = $finding; - } - /** - * @return Google_Service_SecurityCommandCenter_GoogleCloudSecuritycenterV1p1beta1Finding - */ - public function getFinding() - { - return $this->finding; - } - public function setNotificationConfigName($notificationConfigName) - { - $this->notificationConfigName = $notificationConfigName; - } - public function getNotificationConfigName() - { - return $this->notificationConfigName; - } - /** - * @param Google_Service_SecurityCommandCenter_GoogleCloudSecuritycenterV1p1beta1TemporalAsset - */ - public function setTemporalAsset(Google_Service_SecurityCommandCenter_GoogleCloudSecuritycenterV1p1beta1TemporalAsset $temporalAsset) - { - $this->temporalAsset = $temporalAsset; - } - /** - * @return Google_Service_SecurityCommandCenter_GoogleCloudSecuritycenterV1p1beta1TemporalAsset - */ - public function getTemporalAsset() - { - return $this->temporalAsset; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/GoogleCloudSecuritycenterV1p1beta1RunAssetDiscoveryResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/GoogleCloudSecuritycenterV1p1beta1RunAssetDiscoveryResponse.php deleted file mode 100644 index d0d2d327..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/GoogleCloudSecuritycenterV1p1beta1RunAssetDiscoveryResponse.php +++ /dev/null @@ -1,39 +0,0 @@ -duration = $duration; - } - public function getDuration() - { - return $this->duration; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/GoogleCloudSecuritycenterV1p1beta1SecurityCenterProperties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/GoogleCloudSecuritycenterV1p1beta1SecurityCenterProperties.php deleted file mode 100644 index edba7e86..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/GoogleCloudSecuritycenterV1p1beta1SecurityCenterProperties.php +++ /dev/null @@ -1,94 +0,0 @@ -resourceDisplayName = $resourceDisplayName; - } - public function getResourceDisplayName() - { - return $this->resourceDisplayName; - } - public function setResourceName($resourceName) - { - $this->resourceName = $resourceName; - } - public function getResourceName() - { - return $this->resourceName; - } - public function setResourceOwners($resourceOwners) - { - $this->resourceOwners = $resourceOwners; - } - public function getResourceOwners() - { - return $this->resourceOwners; - } - public function setResourceParent($resourceParent) - { - $this->resourceParent = $resourceParent; - } - public function getResourceParent() - { - return $this->resourceParent; - } - public function setResourceParentDisplayName($resourceParentDisplayName) - { - $this->resourceParentDisplayName = $resourceParentDisplayName; - } - public function getResourceParentDisplayName() - { - return $this->resourceParentDisplayName; - } - public function setResourceProject($resourceProject) - { - $this->resourceProject = $resourceProject; - } - public function getResourceProject() - { - return $this->resourceProject; - } - public function setResourceProjectDisplayName($resourceProjectDisplayName) - { - $this->resourceProjectDisplayName = $resourceProjectDisplayName; - } - public function getResourceProjectDisplayName() - { - return $this->resourceProjectDisplayName; - } - public function setResourceType($resourceType) - { - $this->resourceType = $resourceType; - } - public function getResourceType() - { - return $this->resourceType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/GoogleCloudSecuritycenterV1p1beta1SecurityMarks.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/GoogleCloudSecuritycenterV1p1beta1SecurityMarks.php deleted file mode 100644 index e6e8f50e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/GoogleCloudSecuritycenterV1p1beta1SecurityMarks.php +++ /dev/null @@ -1,39 +0,0 @@ -marks = $marks; - } - public function getMarks() - { - return $this->marks; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/GoogleCloudSecuritycenterV1p1beta1TemporalAsset.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/GoogleCloudSecuritycenterV1p1beta1TemporalAsset.php deleted file mode 100644 index 5f7f4502..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/GoogleCloudSecuritycenterV1p1beta1TemporalAsset.php +++ /dev/null @@ -1,46 +0,0 @@ -asset = $asset; - } - /** - * @return Google_Service_SecurityCommandCenter_GoogleCloudSecuritycenterV1p1beta1Asset - */ - public function getAsset() - { - return $this->asset; - } - public function setChangeType($changeType) - { - $this->changeType = $changeType; - } - public function getChangeType() - { - return $this->changeType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/GroupAssetsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/GroupAssetsRequest.php deleted file mode 100644 index ac88b701..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/GroupAssetsRequest.php +++ /dev/null @@ -1,75 +0,0 @@ -compareDuration = $compareDuration; - } - public function getCompareDuration() - { - return $this->compareDuration; - } - public function setFilter($filter) - { - $this->filter = $filter; - } - public function getFilter() - { - return $this->filter; - } - public function setGroupBy($groupBy) - { - $this->groupBy = $groupBy; - } - public function getGroupBy() - { - return $this->groupBy; - } - public function setPageSize($pageSize) - { - $this->pageSize = $pageSize; - } - public function getPageSize() - { - return $this->pageSize; - } - public function setPageToken($pageToken) - { - $this->pageToken = $pageToken; - } - public function getPageToken() - { - return $this->pageToken; - } - public function setReadTime($readTime) - { - $this->readTime = $readTime; - } - public function getReadTime() - { - return $this->readTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/GroupAssetsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/GroupAssetsResponse.php deleted file mode 100644 index c265f378..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/GroupAssetsResponse.php +++ /dev/null @@ -1,65 +0,0 @@ -groupByResults = $groupByResults; - } - /** - * @return Google_Service_SecurityCommandCenter_GroupResult - */ - public function getGroupByResults() - { - return $this->groupByResults; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setReadTime($readTime) - { - $this->readTime = $readTime; - } - public function getReadTime() - { - return $this->readTime; - } - public function setTotalSize($totalSize) - { - $this->totalSize = $totalSize; - } - public function getTotalSize() - { - return $this->totalSize; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/GroupFindingsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/GroupFindingsRequest.php deleted file mode 100644 index c1fa1888..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/GroupFindingsRequest.php +++ /dev/null @@ -1,75 +0,0 @@ -compareDuration = $compareDuration; - } - public function getCompareDuration() - { - return $this->compareDuration; - } - public function setFilter($filter) - { - $this->filter = $filter; - } - public function getFilter() - { - return $this->filter; - } - public function setGroupBy($groupBy) - { - $this->groupBy = $groupBy; - } - public function getGroupBy() - { - return $this->groupBy; - } - public function setPageSize($pageSize) - { - $this->pageSize = $pageSize; - } - public function getPageSize() - { - return $this->pageSize; - } - public function setPageToken($pageToken) - { - $this->pageToken = $pageToken; - } - public function getPageToken() - { - return $this->pageToken; - } - public function setReadTime($readTime) - { - $this->readTime = $readTime; - } - public function getReadTime() - { - return $this->readTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/GroupFindingsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/GroupFindingsResponse.php deleted file mode 100644 index 88c1ca92..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/GroupFindingsResponse.php +++ /dev/null @@ -1,65 +0,0 @@ -groupByResults = $groupByResults; - } - /** - * @return Google_Service_SecurityCommandCenter_GroupResult - */ - public function getGroupByResults() - { - return $this->groupByResults; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setReadTime($readTime) - { - $this->readTime = $readTime; - } - public function getReadTime() - { - return $this->readTime; - } - public function setTotalSize($totalSize) - { - $this->totalSize = $totalSize; - } - public function getTotalSize() - { - return $this->totalSize; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/GroupResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/GroupResult.php deleted file mode 100644 index bdcc88aa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/GroupResult.php +++ /dev/null @@ -1,39 +0,0 @@ -count = $count; - } - public function getCount() - { - return $this->count; - } - public function setProperties($properties) - { - $this->properties = $properties; - } - public function getProperties() - { - return $this->properties; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/IamPolicy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/IamPolicy.php deleted file mode 100644 index 5cbef0a9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/IamPolicy.php +++ /dev/null @@ -1,30 +0,0 @@ -policyBlob = $policyBlob; - } - public function getPolicyBlob() - { - return $this->policyBlob; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/ListAssetsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/ListAssetsResponse.php deleted file mode 100644 index d06603a8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/ListAssetsResponse.php +++ /dev/null @@ -1,65 +0,0 @@ -listAssetsResults = $listAssetsResults; - } - /** - * @return Google_Service_SecurityCommandCenter_ListAssetsResult - */ - public function getListAssetsResults() - { - return $this->listAssetsResults; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setReadTime($readTime) - { - $this->readTime = $readTime; - } - public function getReadTime() - { - return $this->readTime; - } - public function setTotalSize($totalSize) - { - $this->totalSize = $totalSize; - } - public function getTotalSize() - { - return $this->totalSize; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/ListAssetsResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/ListAssetsResult.php deleted file mode 100644 index 351a6735..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/ListAssetsResult.php +++ /dev/null @@ -1,46 +0,0 @@ -asset = $asset; - } - /** - * @return Google_Service_SecurityCommandCenter_Asset - */ - public function getAsset() - { - return $this->asset; - } - public function setStateChange($stateChange) - { - $this->stateChange = $stateChange; - } - public function getStateChange() - { - return $this->stateChange; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/ListFindingsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/ListFindingsResponse.php deleted file mode 100644 index 61f65883..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/ListFindingsResponse.php +++ /dev/null @@ -1,65 +0,0 @@ -listFindingsResults = $listFindingsResults; - } - /** - * @return Google_Service_SecurityCommandCenter_ListFindingsResult - */ - public function getListFindingsResults() - { - return $this->listFindingsResults; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setReadTime($readTime) - { - $this->readTime = $readTime; - } - public function getReadTime() - { - return $this->readTime; - } - public function setTotalSize($totalSize) - { - $this->totalSize = $totalSize; - } - public function getTotalSize() - { - return $this->totalSize; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/ListFindingsResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/ListFindingsResult.php deleted file mode 100644 index e45fbe43..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/ListFindingsResult.php +++ /dev/null @@ -1,62 +0,0 @@ -finding = $finding; - } - /** - * @return Google_Service_SecurityCommandCenter_Finding - */ - public function getFinding() - { - return $this->finding; - } - /** - * @param Google_Service_SecurityCommandCenter_SecuritycenterResource - */ - public function setResource(Google_Service_SecurityCommandCenter_SecuritycenterResource $resource) - { - $this->resource = $resource; - } - /** - * @return Google_Service_SecurityCommandCenter_SecuritycenterResource - */ - public function getResource() - { - return $this->resource; - } - public function setStateChange($stateChange) - { - $this->stateChange = $stateChange; - } - public function getStateChange() - { - return $this->stateChange; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/ListOperationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/ListOperationsResponse.php deleted file mode 100644 index d5da24a7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/ListOperationsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_SecurityCommandCenter_Operation - */ - public function setOperations($operations) - { - $this->operations = $operations; - } - /** - * @return Google_Service_SecurityCommandCenter_Operation - */ - public function getOperations() - { - return $this->operations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/ListSourcesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/ListSourcesResponse.php deleted file mode 100644 index 5a3cdf1d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/ListSourcesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_SecurityCommandCenter_Source - */ - public function setSources($sources) - { - $this->sources = $sources; - } - /** - * @return Google_Service_SecurityCommandCenter_Source - */ - public function getSources() - { - return $this->sources; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/Operation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/Operation.php deleted file mode 100644 index f9cd0935..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/Operation.php +++ /dev/null @@ -1,73 +0,0 @@ -done = $done; - } - public function getDone() - { - return $this->done; - } - /** - * @param Google_Service_SecurityCommandCenter_Status - */ - public function setError(Google_Service_SecurityCommandCenter_Status $error) - { - $this->error = $error; - } - /** - * @return Google_Service_SecurityCommandCenter_Status - */ - public function getError() - { - return $this->error; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/OrganizationSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/OrganizationSettings.php deleted file mode 100644 index ba3140fa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/OrganizationSettings.php +++ /dev/null @@ -1,55 +0,0 @@ -assetDiscoveryConfig = $assetDiscoveryConfig; - } - /** - * @return Google_Service_SecurityCommandCenter_AssetDiscoveryConfig - */ - public function getAssetDiscoveryConfig() - { - return $this->assetDiscoveryConfig; - } - public function setEnableAssetDiscovery($enableAssetDiscovery) - { - $this->enableAssetDiscovery = $enableAssetDiscovery; - } - public function getEnableAssetDiscovery() - { - return $this->enableAssetDiscovery; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/Policy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/Policy.php deleted file mode 100644 index 2adf76c2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/Policy.php +++ /dev/null @@ -1,72 +0,0 @@ -auditConfigs = $auditConfigs; - } - /** - * @return Google_Service_SecurityCommandCenter_AuditConfig - */ - public function getAuditConfigs() - { - return $this->auditConfigs; - } - /** - * @param Google_Service_SecurityCommandCenter_Binding - */ - public function setBindings($bindings) - { - $this->bindings = $bindings; - } - /** - * @return Google_Service_SecurityCommandCenter_Binding - */ - public function getBindings() - { - return $this->bindings; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/Resource/Organizations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/Resource/Organizations.php deleted file mode 100644 index 0c5596b8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/Resource/Organizations.php +++ /dev/null @@ -1,66 +0,0 @@ - - * $securitycenterService = new Google_Service_SecurityCommandCenter(...); - * $organizations = $securitycenterService->organizations; - * - */ -class Google_Service_SecurityCommandCenter_Resource_Organizations extends Google_Service_Resource -{ - /** - * Gets the settings for an organization. - * (organizations.getOrganizationSettings) - * - * @param string $name Required. Name of the organization to get organization - * settings for. Its format is - * "organizations/[organization_id]/organizationSettings". - * @param array $optParams Optional parameters. - * @return Google_Service_SecurityCommandCenter_OrganizationSettings - */ - public function getOrganizationSettings($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('getOrganizationSettings', array($params), "Google_Service_SecurityCommandCenter_OrganizationSettings"); - } - /** - * Updates an organization's settings. - * (organizations.updateOrganizationSettings) - * - * @param string $name The relative resource name of the settings. See: - * https://cloud.google.com/apis/design/resource_names#relative_resource_name - * Example: "organizations/{organization_id}/organizationSettings". - * @param Google_Service_SecurityCommandCenter_OrganizationSettings $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask The FieldMask to use when updating the settings - * resource. - * - * If empty all mutable fields will be updated. - * @return Google_Service_SecurityCommandCenter_OrganizationSettings - */ - public function updateOrganizationSettings($name, Google_Service_SecurityCommandCenter_OrganizationSettings $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updateOrganizationSettings', array($params), "Google_Service_SecurityCommandCenter_OrganizationSettings"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/Resource/OrganizationsAssets.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/Resource/OrganizationsAssets.php deleted file mode 100644 index 309083b7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/Resource/OrganizationsAssets.php +++ /dev/null @@ -1,205 +0,0 @@ - - * $securitycenterService = new Google_Service_SecurityCommandCenter(...); - * $assets = $securitycenterService->assets; - * - */ -class Google_Service_SecurityCommandCenter_Resource_OrganizationsAssets extends Google_Service_Resource -{ - /** - * Filters an organization's assets and groups them by their specified - * properties. (assets.group) - * - * @param string $parent Required. Name of the organization to groupBy. Its - * format is "organizations/[organization_id]". - * @param Google_Service_SecurityCommandCenter_GroupAssetsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_SecurityCommandCenter_GroupAssetsResponse - */ - public function group($parent, Google_Service_SecurityCommandCenter_GroupAssetsRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('group', array($params), "Google_Service_SecurityCommandCenter_GroupAssetsResponse"); - } - /** - * Lists an organization's assets. (assets.listOrganizationsAssets) - * - * @param string $parent Required. Name of the organization assets should belong - * to. Its format is "organizations/[organization_id]". - * @param array $optParams Optional parameters. - * - * @opt_param string readTime Time used as a reference point when filtering - * assets. The filter is limited to assets existing at the supplied time and - * their values are those at that specific time. Absence of this field will - * default to the API's version of NOW. - * @opt_param string orderBy Expression that defines what fields and order to - * use for sorting. The string value should follow SQL syntax: comma separated - * list of fields. For example: "name,resource_properties.a_property". The - * default sorting order is ascending. To specify descending order for a field, - * a suffix " desc" should be appended to the field name. For example: "name - * desc,resource_properties.a_property". Redundant space characters in the - * syntax are insignificant. "name desc,resource_properties.a_property" and " - * name desc , resource_properties.a_property " are equivalent. - * - * The following fields are supported: name update_time resource_properties - * security_marks.marks security_center_properties.resource_name - * security_center_properties.resource_display_name - * security_center_properties.resource_parent - * security_center_properties.resource_parent_display_name - * security_center_properties.resource_project - * security_center_properties.resource_project_display_name - * security_center_properties.resource_type - * @opt_param string compareDuration When compare_duration is set, the - * ListAssetsResult's "state_change" attribute is updated to indicate whether - * the asset was added, removed, or remained present during the compare_duration - * period of time that precedes the read_time. This is the time between - * (read_time - compare_duration) and read_time. - * - * The state_change value is derived based on the presence of the asset at the - * two points in time. Intermediate state changes between the two times don't - * affect the result. For example, the results aren't affected if the asset is - * removed and re-created again. - * - * Possible "state_change" values when compare_duration is specified: - * - * * "ADDED": indicates that the asset was not present at the start of - * compare_duration, but present at read_time. * "REMOVED": indicates that the - * asset was present at the start of compare_duration, but not - * present at read_time. * "ACTIVE": indicates that the asset was present at - * both the start and the end of the time period defined by - * compare_duration and read_time. - * - * If compare_duration is not specified, then the only possible state_change is - * "UNUSED", which will be the state_change set for all assets present at - * read_time. - * @opt_param string filter Expression that defines the filter to apply across - * assets. The expression is a list of zero or more restrictions combined via - * logical operators `AND` and `OR`. Parentheses are supported, and `OR` has - * higher precedence than `AND`. - * - * Restrictions have the form ` ` and may have a `-` character in front of them - * to indicate negation. The fields map to those defined in the Asset resource. - * Examples include: - * - * * name * security_center_properties.resource_name * - * resource_properties.a_property * security_marks.marks.marka - * - * The supported operators are: - * - * * `=` for all value types. * `>`, `<`, `>=`, `<=` for integer values. * `:`, - * meaning substring matching, for strings. - * - * The supported value types are: - * - * * string literals in quotes. * integer literals without quotes. * boolean - * literals `true` and `false` without quotes. - * - * The following are the allowed field and operator combinations: - * - * * name: `=` * update_time: `=`, `>`, `<`, `>=`, `<=` - * - * Usage: This should be milliseconds since epoch or an RFC3339 string. - * Examples: "update_time = \"2019-06-10T16:07:18-07:00\"" "update_time - * = 1560208038000" - * - * * create_time: `=`, `>`, `<`, `>=`, `<=` - * - * Usage: This should be milliseconds since epoch or an RFC3339 string. - * Examples: "create_time = \"2019-06-10T16:07:18-07:00\"" "create_time - * = 1560208038000" - * - * * iam_policy.policy_blob: `=`, `:` * resource_properties: `=`, `:`, `>`, `<`, - * `>=`, `<=` * security_marks.marks: `=`, `:` * - * security_center_properties.resource_name: `=`, `:` * - * security_center_properties.resource_display_name: `=`, `:` * - * security_center_properties.resource_type: `=`, `:` * - * security_center_properties.resource_parent: `=`, `:` * - * security_center_properties.resource_parent_display_name: `=`, `:` * - * security_center_properties.resource_project: `=`, `:` * - * security_center_properties.resource_project_display_name: `=`, `:` * - * security_center_properties.resource_owners: `=`, `:` - * - * For example, `resource_properties.size = 100` is a valid filter string. - * @opt_param string pageToken The value returned by the last - * `ListAssetsResponse`; indicates that this is a continuation of a prior - * `ListAssets` call, and that the system should return the next page of data. - * @opt_param string fieldMask Optional. A field mask to specify the - * ListAssetsResult fields to be listed in the response. An empty field mask - * will list all fields. - * @opt_param int pageSize The maximum number of results to return in a single - * response. Default is 10, minimum is 1, maximum is 1000. - * @return Google_Service_SecurityCommandCenter_ListAssetsResponse - */ - public function listOrganizationsAssets($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_SecurityCommandCenter_ListAssetsResponse"); - } - /** - * Runs asset discovery. The discovery is tracked with a long-running operation. - * - * This API can only be called with limited frequency for an organization. If it - * is called too frequently the caller will receive a TOO_MANY_REQUESTS error. - * (assets.runDiscovery) - * - * @param string $parent Required. Name of the organization to run asset - * discovery for. Its format is "organizations/[organization_id]". - * @param Google_Service_SecurityCommandCenter_RunAssetDiscoveryRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_SecurityCommandCenter_Operation - */ - public function runDiscovery($parent, Google_Service_SecurityCommandCenter_RunAssetDiscoveryRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('runDiscovery', array($params), "Google_Service_SecurityCommandCenter_Operation"); - } - /** - * Updates security marks. (assets.updateSecurityMarks) - * - * @param string $name The relative resource name of the SecurityMarks. See: - * https://cloud.google.com/apis/design/resource_names#relative_resource_name - * Examples: "organizations/{organization_id}/assets/{asset_id}/securityMarks" " - * organizations/{organization_id}/sources/{source_id}/findings/{finding_id}/sec - * urityMarks". - * @param Google_Service_SecurityCommandCenter_SecurityMarks $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string startTime The time at which the updated SecurityMarks take - * effect. If not set uses current server time. Updates will be applied to the - * SecurityMarks that are active immediately preceding this time. - * @opt_param string updateMask The FieldMask to use when updating the security - * marks resource. - * - * The field mask must not contain duplicate fields. If empty or set to "marks", - * all marks will be replaced. Individual marks can be updated using "marks.". - * @return Google_Service_SecurityCommandCenter_SecurityMarks - */ - public function updateSecurityMarks($name, Google_Service_SecurityCommandCenter_SecurityMarks $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updateSecurityMarks', array($params), "Google_Service_SecurityCommandCenter_SecurityMarks"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/Resource/OrganizationsOperations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/Resource/OrganizationsOperations.php deleted file mode 100644 index aa672afd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/Resource/OrganizationsOperations.php +++ /dev/null @@ -1,107 +0,0 @@ - - * $securitycenterService = new Google_Service_SecurityCommandCenter(...); - * $operations = $securitycenterService->operations; - * - */ -class Google_Service_SecurityCommandCenter_Resource_OrganizationsOperations extends Google_Service_Resource -{ - /** - * Starts asynchronous cancellation on a long-running operation. The server - * makes a best effort to cancel the operation, but success is not guaranteed. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or - * other methods to check whether the cancellation succeeded or whether the - * operation completed despite cancellation. On successful cancellation, the - * operation is not deleted; instead, it becomes an operation with an - * Operation.error value with a google.rpc.Status.code of 1, corresponding to - * `Code.CANCELLED`. (operations.cancel) - * - * @param string $name The name of the operation resource to be cancelled. - * @param array $optParams Optional parameters. - * @return Google_Service_SecurityCommandCenter_SecuritycenterEmpty - */ - public function cancel($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('cancel', array($params), "Google_Service_SecurityCommandCenter_SecuritycenterEmpty"); - } - /** - * Deletes a long-running operation. This method indicates that the client is no - * longer interested in the operation result. It does not cancel the operation. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. (operations.delete) - * - * @param string $name The name of the operation resource to be deleted. - * @param array $optParams Optional parameters. - * @return Google_Service_SecurityCommandCenter_SecuritycenterEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_SecurityCommandCenter_SecuritycenterEmpty"); - } - /** - * Gets the latest state of a long-running operation. Clients can use this - * method to poll the operation result at intervals as recommended by the API - * service. (operations.get) - * - * @param string $name The name of the operation resource. - * @param array $optParams Optional parameters. - * @return Google_Service_SecurityCommandCenter_Operation - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_SecurityCommandCenter_Operation"); - } - /** - * Lists operations that match the specified filter in the request. If the - * server doesn't support this method, it returns `UNIMPLEMENTED`. - * - * NOTE: the `name` binding allows API services to override the binding to use - * different resource name schemes, such as `users/operations`. To override the - * binding, API services can add a binding such as - * `"/v1/{name=users}/operations"` to their service configuration. For backwards - * compatibility, the default name includes the operations collection id, - * however overriding users must ensure the name binding is the parent resource, - * without the operations collection id. - * (operations.listOrganizationsOperations) - * - * @param string $name The name of the operation's parent resource. - * @param array $optParams Optional parameters. - * - * @opt_param int pageSize The standard list page size. - * @opt_param string filter The standard list filter. - * @opt_param string pageToken The standard list page token. - * @return Google_Service_SecurityCommandCenter_ListOperationsResponse - */ - public function listOrganizationsOperations($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_SecurityCommandCenter_ListOperationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/Resource/OrganizationsSources.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/Resource/OrganizationsSources.php deleted file mode 100644 index f7cd73af..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/Resource/OrganizationsSources.php +++ /dev/null @@ -1,150 +0,0 @@ - - * $securitycenterService = new Google_Service_SecurityCommandCenter(...); - * $sources = $securitycenterService->sources; - * - */ -class Google_Service_SecurityCommandCenter_Resource_OrganizationsSources extends Google_Service_Resource -{ - /** - * Creates a source. (sources.create) - * - * @param string $parent Required. Resource name of the new source's parent. Its - * format should be "organizations/[organization_id]". - * @param Google_Service_SecurityCommandCenter_Source $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_SecurityCommandCenter_Source - */ - public function create($parent, Google_Service_SecurityCommandCenter_Source $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_SecurityCommandCenter_Source"); - } - /** - * Gets a source. (sources.get) - * - * @param string $name Required. Relative resource name of the source. Its - * format is "organizations/[organization_id]/source/[source_id]". - * @param array $optParams Optional parameters. - * @return Google_Service_SecurityCommandCenter_Source - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_SecurityCommandCenter_Source"); - } - /** - * Gets the access control policy on the specified Source. - * (sources.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 Google_Service_SecurityCommandCenter_GetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_SecurityCommandCenter_Policy - */ - public function getIamPolicy($resource, Google_Service_SecurityCommandCenter_GetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_SecurityCommandCenter_Policy"); - } - /** - * Lists all sources belonging to an organization. - * (sources.listOrganizationsSources) - * - * @param string $parent Required. Resource name of the parent of sources to - * list. Its format should be "organizations/[organization_id]". - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The value returned by the last - * `ListSourcesResponse`; indicates that this is a continuation of a prior - * `ListSources` call, and that the system should return the next page of data. - * @opt_param int pageSize The maximum number of results to return in a single - * response. Default is 10, minimum is 1, maximum is 1000. - * @return Google_Service_SecurityCommandCenter_ListSourcesResponse - */ - public function listOrganizationsSources($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_SecurityCommandCenter_ListSourcesResponse"); - } - /** - * Updates a source. (sources.patch) - * - * @param string $name The relative resource name of this source. See: - * https://cloud.google.com/apis/design/resource_names#relative_resource_name - * Example: "organizations/{organization_id}/sources/{source_id}" - * @param Google_Service_SecurityCommandCenter_Source $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask The FieldMask to use when updating the source - * resource. - * - * If empty all mutable fields will be updated. - * @return Google_Service_SecurityCommandCenter_Source - */ - public function patch($name, Google_Service_SecurityCommandCenter_Source $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_SecurityCommandCenter_Source"); - } - /** - * Sets the access control policy on the specified Source. - * (sources.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_SecurityCommandCenter_SetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_SecurityCommandCenter_Policy - */ - public function setIamPolicy($resource, Google_Service_SecurityCommandCenter_SetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_SecurityCommandCenter_Policy"); - } - /** - * Returns the permissions that a caller has on the specified source. - * (sources.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_SecurityCommandCenter_TestIamPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_SecurityCommandCenter_TestIamPermissionsResponse - */ - public function testIamPermissions($resource, Google_Service_SecurityCommandCenter_TestIamPermissionsRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_SecurityCommandCenter_TestIamPermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/Resource/OrganizationsSourcesFindings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/Resource/OrganizationsSourcesFindings.php deleted file mode 100644 index 7c7ba765..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/Resource/OrganizationsSourcesFindings.php +++ /dev/null @@ -1,239 +0,0 @@ - - * $securitycenterService = new Google_Service_SecurityCommandCenter(...); - * $findings = $securitycenterService->findings; - * - */ -class Google_Service_SecurityCommandCenter_Resource_OrganizationsSourcesFindings extends Google_Service_Resource -{ - /** - * Creates a finding. The corresponding source must exist for finding creation - * to succeed. (findings.create) - * - * @param string $parent Required. Resource name of the new finding's parent. - * Its format should be "organizations/[organization_id]/sources/[source_id]". - * @param Google_Service_SecurityCommandCenter_Finding $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string findingId Required. Unique identifier provided by the - * client within the parent scope. It must be alphanumeric and less than or - * equal to 32 characters and greater than 0 characters in length. - * @return Google_Service_SecurityCommandCenter_Finding - */ - public function create($parent, Google_Service_SecurityCommandCenter_Finding $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_SecurityCommandCenter_Finding"); - } - /** - * Filters an organization or source's findings and groups them by their - * specified properties. - * - * To group across all sources provide a `-` as the source id. Example: - * /v1/organizations/{organization_id}/sources/-/findings (findings.group) - * - * @param string $parent Required. Name of the source to groupBy. Its format is - * "organizations/[organization_id]/sources/[source_id]". To groupBy across all - * sources provide a source_id of `-`. For example: - * organizations/{organization_id}/sources/- - * @param Google_Service_SecurityCommandCenter_GroupFindingsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_SecurityCommandCenter_GroupFindingsResponse - */ - public function group($parent, Google_Service_SecurityCommandCenter_GroupFindingsRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('group', array($params), "Google_Service_SecurityCommandCenter_GroupFindingsResponse"); - } - /** - * Lists an organization or source's findings. - * - * To list across all sources provide a `-` as the source id. Example: - * /v1/organizations/{organization_id}/sources/-/findings - * (findings.listOrganizationsSourcesFindings) - * - * @param string $parent Required. Name of the source the findings belong to. - * Its format is "organizations/[organization_id]/sources/[source_id]". To list - * across all sources provide a source_id of `-`. For example: - * organizations/{organization_id}/sources/- - * @param array $optParams Optional parameters. - * - * @opt_param string filter Expression that defines the filter to apply across - * findings. The expression is a list of one or more restrictions combined via - * logical operators `AND` and `OR`. Parentheses are supported, and `OR` has - * higher precedence than `AND`. - * - * Restrictions have the form ` ` and may have a `-` character in front of them - * to indicate negation. Examples include: - * - * name source_properties.a_property security_marks.marks.marka - * - * The supported operators are: - * - * * `=` for all value types. * `>`, `<`, `>=`, `<=` for integer values. * `:`, - * meaning substring matching, for strings. - * - * The supported value types are: - * - * * string literals in quotes. * integer literals without quotes. * boolean - * literals `true` and `false` without quotes. - * - * The following field and operator combinations are supported: - * - * name: `=` parent: `=`, `:` resource_name: `=`, `:` state: `=`, `:` category: - * `=`, `:` external_uri: `=`, `:` event_time: `=`, `>`, `<`, `>=`, `<=` - * - * Usage: This should be milliseconds since epoch or an RFC3339 string. - * Examples: "event_time = \"2019-06-10T16:07:18-07:00\"" "event_time = - * 1560208038000" - * - * security_marks.marks: `=`, `:` source_properties: `=`, `:`, `>`, `<`, `>=`, - * `<=` - * - * For example, `source_properties.size = 100` is a valid filter string. - * @opt_param string fieldMask Optional. A field mask to specify the Finding - * fields to be listed in the response. An empty field mask will list all - * fields. - * @opt_param string pageToken The value returned by the last - * `ListFindingsResponse`; indicates that this is a continuation of a prior - * `ListFindings` call, and that the system should return the next page of data. - * @opt_param int pageSize The maximum number of results to return in a single - * response. Default is 10, minimum is 1, maximum is 1000. - * @opt_param string orderBy Expression that defines what fields and order to - * use for sorting. The string value should follow SQL syntax: comma separated - * list of fields. For example: "name,resource_properties.a_property". The - * default sorting order is ascending. To specify descending order for a field, - * a suffix " desc" should be appended to the field name. For example: "name - * desc,source_properties.a_property". Redundant space characters in the syntax - * are insignificant. "name desc,source_properties.a_property" and " name - * desc , source_properties.a_property " are equivalent. - * - * The following fields are supported: name parent state category resource_name - * event_time source_properties security_marks.marks - * @opt_param string readTime Time used as a reference point when filtering - * findings. The filter is limited to findings existing at the supplied time and - * their values are those at that specific time. Absence of this field will - * default to the API's version of NOW. - * @opt_param string compareDuration When compare_duration is set, the - * ListFindingsResult's "state_change" attribute is updated to indicate whether - * the finding had its state changed, the finding's state remained unchanged, or - * if the finding was added in any state during the compare_duration period of - * time that precedes the read_time. This is the time between (read_time - - * compare_duration) and read_time. - * - * The state_change value is derived based on the presence and state of the - * finding at the two points in time. Intermediate state changes between the two - * times don't affect the result. For example, the results aren't affected if - * the finding is made inactive and then active again. - * - * Possible "state_change" values when compare_duration is specified: - * - * * "CHANGED": indicates that the finding was present at the start of - * compare_duration, but changed its state at read_time. * "UNCHANGED": - * indicates that the finding was present at the start of - * compare_duration and did not change state at read_time. * "ADDED": - * indicates that the finding was not present at the start of - * compare_duration, but was present at read_time. - * - * If compare_duration is not specified, then the only possible state_change is - * "UNUSED", which will be the state_change set for all findings present at - * read_time. - * @return Google_Service_SecurityCommandCenter_ListFindingsResponse - */ - public function listOrganizationsSourcesFindings($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_SecurityCommandCenter_ListFindingsResponse"); - } - /** - * Creates or updates a finding. The corresponding source must exist for a - * finding creation to succeed. (findings.patch) - * - * @param string $name The relative resource name of this finding. See: - * https://cloud.google.com/apis/design/resource_names#relative_resource_name - * Example: - * "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}" - * @param Google_Service_SecurityCommandCenter_Finding $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask The FieldMask to use when updating the finding - * resource. This field should not be specified when creating a finding. - * - * When updating a finding, an empty mask is treated as updating all mutable - * fields and replacing source_properties. Individual source_properties can be - * added/updated by using "source_properties." in the field mask. - * @return Google_Service_SecurityCommandCenter_Finding - */ - public function patch($name, Google_Service_SecurityCommandCenter_Finding $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_SecurityCommandCenter_Finding"); - } - /** - * Updates the state of a finding. (findings.setState) - * - * @param string $name Required. The relative resource name of the finding. See: - * https://cloud.google.com/apis/design/resource_names#relative_resource_name - * Example: - * "organizations/{organization_id}/sources/{source_id}/finding/{finding_id}". - * @param Google_Service_SecurityCommandCenter_SetFindingStateRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_SecurityCommandCenter_Finding - */ - public function setState($name, Google_Service_SecurityCommandCenter_SetFindingStateRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setState', array($params), "Google_Service_SecurityCommandCenter_Finding"); - } - /** - * Updates security marks. (findings.updateSecurityMarks) - * - * @param string $name The relative resource name of the SecurityMarks. See: - * https://cloud.google.com/apis/design/resource_names#relative_resource_name - * Examples: "organizations/{organization_id}/assets/{asset_id}/securityMarks" " - * organizations/{organization_id}/sources/{source_id}/findings/{finding_id}/sec - * urityMarks". - * @param Google_Service_SecurityCommandCenter_SecurityMarks $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask The FieldMask to use when updating the security - * marks resource. - * - * The field mask must not contain duplicate fields. If empty or set to "marks", - * all marks will be replaced. Individual marks can be updated using "marks.". - * @opt_param string startTime The time at which the updated SecurityMarks take - * effect. If not set uses current server time. Updates will be applied to the - * SecurityMarks that are active immediately preceding this time. - * @return Google_Service_SecurityCommandCenter_SecurityMarks - */ - public function updateSecurityMarks($name, Google_Service_SecurityCommandCenter_SecurityMarks $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updateSecurityMarks', array($params), "Google_Service_SecurityCommandCenter_SecurityMarks"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/RunAssetDiscoveryRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/RunAssetDiscoveryRequest.php deleted file mode 100644 index 39919804..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/RunAssetDiscoveryRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -resourceDisplayName = $resourceDisplayName; - } - public function getResourceDisplayName() - { - return $this->resourceDisplayName; - } - public function setResourceName($resourceName) - { - $this->resourceName = $resourceName; - } - public function getResourceName() - { - return $this->resourceName; - } - public function setResourceOwners($resourceOwners) - { - $this->resourceOwners = $resourceOwners; - } - public function getResourceOwners() - { - return $this->resourceOwners; - } - public function setResourceParent($resourceParent) - { - $this->resourceParent = $resourceParent; - } - public function getResourceParent() - { - return $this->resourceParent; - } - public function setResourceParentDisplayName($resourceParentDisplayName) - { - $this->resourceParentDisplayName = $resourceParentDisplayName; - } - public function getResourceParentDisplayName() - { - return $this->resourceParentDisplayName; - } - public function setResourceProject($resourceProject) - { - $this->resourceProject = $resourceProject; - } - public function getResourceProject() - { - return $this->resourceProject; - } - public function setResourceProjectDisplayName($resourceProjectDisplayName) - { - $this->resourceProjectDisplayName = $resourceProjectDisplayName; - } - public function getResourceProjectDisplayName() - { - return $this->resourceProjectDisplayName; - } - public function setResourceType($resourceType) - { - $this->resourceType = $resourceType; - } - public function getResourceType() - { - return $this->resourceType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/SecurityMarks.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/SecurityMarks.php deleted file mode 100644 index 10eeb9c6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/SecurityMarks.php +++ /dev/null @@ -1,39 +0,0 @@ -marks = $marks; - } - public function getMarks() - { - return $this->marks; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/SecuritycenterEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/SecuritycenterEmpty.php deleted file mode 100644 index 66e8441c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/SecuritycenterEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setParentDisplayName($parentDisplayName) - { - $this->parentDisplayName = $parentDisplayName; - } - public function getParentDisplayName() - { - return $this->parentDisplayName; - } - public function setParentName($parentName) - { - $this->parentName = $parentName; - } - public function getParentName() - { - return $this->parentName; - } - public function setProjectDisplayName($projectDisplayName) - { - $this->projectDisplayName = $projectDisplayName; - } - public function getProjectDisplayName() - { - return $this->projectDisplayName; - } - public function setProjectName($projectName) - { - $this->projectName = $projectName; - } - public function getProjectName() - { - return $this->projectName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/SetFindingStateRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/SetFindingStateRequest.php deleted file mode 100644 index 1a02d803..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/SetFindingStateRequest.php +++ /dev/null @@ -1,39 +0,0 @@ -startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/SetIamPolicyRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/SetIamPolicyRequest.php deleted file mode 100644 index 6723d2cd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/SetIamPolicyRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -policy = $policy; - } - /** - * @return Google_Service_SecurityCommandCenter_Policy - */ - public function getPolicy() - { - return $this->policy; - } - public function setUpdateMask($updateMask) - { - $this->updateMask = $updateMask; - } - public function getUpdateMask() - { - return $this->updateMask; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/Source.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/Source.php deleted file mode 100644 index edfd3bea..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/Source.php +++ /dev/null @@ -1,48 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/Status.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/Status.php deleted file mode 100644 index 6d316c62..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/Status.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/TestIamPermissionsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/TestIamPermissionsRequest.php deleted file mode 100644 index 806f83d9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/TestIamPermissionsRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/TestIamPermissionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/TestIamPermissionsResponse.php deleted file mode 100644 index afc5b937..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SecurityCommandCenter/TestIamPermissionsResponse.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceBroker.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceBroker.php deleted file mode 100644 index 9549adb6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceBroker.php +++ /dev/null @@ -1,101 +0,0 @@ - - * The Google Cloud Platform Service Broker API provides Google hosted - * implementation of the Open Service Broker API - * (https://www.openservicebrokerapi.org/).

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_ServiceBroker extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - - public $v1; - - /** - * Constructs the internal representation of the ServiceBroker service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://servicebroker.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'servicebroker'; - - $this->v1 = new Google_Service_ServiceBroker_Resource_V1( - $this, - $this->serviceName, - 'v1', - array( - 'methods' => array( - 'getIamPolicy' => array( - 'path' => 'v1/{+resource}:getIamPolicy', - 'httpMethod' => 'GET', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'options.requestedPolicyVersion' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'setIamPolicy' => array( - 'path' => 'v1/{+resource}:setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => 'v1/{+resource}:testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceBroker/GoogleIamV1Binding.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceBroker/GoogleIamV1Binding.php deleted file mode 100644 index e4ec18a6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceBroker/GoogleIamV1Binding.php +++ /dev/null @@ -1,56 +0,0 @@ -condition = $condition; - } - /** - * @return Google_Service_ServiceBroker_GoogleTypeExpr - */ - public function getCondition() - { - return $this->condition; - } - public function setMembers($members) - { - $this->members = $members; - } - public function getMembers() - { - return $this->members; - } - public function setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceBroker/GoogleIamV1Policy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceBroker/GoogleIamV1Policy.php deleted file mode 100644 index d8ec59e0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceBroker/GoogleIamV1Policy.php +++ /dev/null @@ -1,56 +0,0 @@ -bindings = $bindings; - } - /** - * @return Google_Service_ServiceBroker_GoogleIamV1Binding - */ - public function getBindings() - { - return $this->bindings; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceBroker/GoogleIamV1SetIamPolicyRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceBroker/GoogleIamV1SetIamPolicyRequest.php deleted file mode 100644 index 8ed4b587..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceBroker/GoogleIamV1SetIamPolicyRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -policy = $policy; - } - /** - * @return Google_Service_ServiceBroker_GoogleIamV1Policy - */ - public function getPolicy() - { - return $this->policy; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceBroker/GoogleIamV1TestIamPermissionsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceBroker/GoogleIamV1TestIamPermissionsRequest.php deleted file mode 100644 index 17a4375b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceBroker/GoogleIamV1TestIamPermissionsRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceBroker/GoogleIamV1TestIamPermissionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceBroker/GoogleIamV1TestIamPermissionsResponse.php deleted file mode 100644 index b8dc70d4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceBroker/GoogleIamV1TestIamPermissionsResponse.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceBroker/GoogleTypeExpr.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceBroker/GoogleTypeExpr.php deleted file mode 100644 index bf7e3739..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceBroker/GoogleTypeExpr.php +++ /dev/null @@ -1,57 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setExpression($expression) - { - $this->expression = $expression; - } - public function getExpression() - { - return $this->expression; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceBroker/Resource/V1.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceBroker/Resource/V1.php deleted file mode 100644 index 364277e6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceBroker/Resource/V1.php +++ /dev/null @@ -1,96 +0,0 @@ - - * $servicebrokerService = new Google_Service_ServiceBroker(...); - * $v1 = $servicebrokerService->v1; - * - */ -class Google_Service_ServiceBroker_Resource_V1 extends Google_Service_Resource -{ - /** - * Gets the access control policy for a resource. Returns an empty policy if the - * resource exists and does not have a policy set. (v1.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. - * @return Google_Service_ServiceBroker_GoogleIamV1Policy - */ - public function getIamPolicy($resource, $optParams = array()) - { - $params = array('resource' => $resource); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_ServiceBroker_GoogleIamV1Policy"); - } - /** - * Sets the access control policy on the specified resource. Replaces any - * existing policy. - * - * Can return Public Errors: NOT_FOUND, INVALID_ARGUMENT and PERMISSION_DENIED - * (v1.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_ServiceBroker_GoogleIamV1SetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceBroker_GoogleIamV1Policy - */ - public function setIamPolicy($resource, Google_Service_ServiceBroker_GoogleIamV1SetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_ServiceBroker_GoogleIamV1Policy"); - } - /** - * 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. (v1.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_ServiceBroker_GoogleIamV1TestIamPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceBroker_GoogleIamV1TestIamPermissionsResponse - */ - public function testIamPermissions($resource, Google_Service_ServiceBroker_GoogleIamV1TestIamPermissionsRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_ServiceBroker_GoogleIamV1TestIamPermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement.php deleted file mode 100644 index bf8d1e15..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement.php +++ /dev/null @@ -1,264 +0,0 @@ - - * Manages the service consumers of a Service Infrastructure service.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_ServiceConsumerManagement extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - - public $operations; - public $services; - public $services_tenancyUnits; - - /** - * Constructs the internal representation of the ServiceConsumerManagement - * service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://serviceconsumermanagement.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'serviceconsumermanagement'; - - $this->operations = new Google_Service_ServiceConsumerManagement_Resource_Operations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'cancel' => array( - 'path' => 'v1/{+name}:cancel', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->services = new Google_Service_ServiceConsumerManagement_Resource_Services( - $this, - $this->serviceName, - 'services', - array( - 'methods' => array( - 'search' => array( - 'path' => 'v1/{+parent}:search', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'query' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->services_tenancyUnits = new Google_Service_ServiceConsumerManagement_Resource_ServicesTenancyUnits( - $this, - $this->serviceName, - 'tenancyUnits', - array( - 'methods' => array( - 'addProject' => array( - 'path' => 'v1/{+parent}:addProject', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'applyProjectConfig' => array( - 'path' => 'v1/{+name}:applyProjectConfig', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'attachProject' => array( - 'path' => 'v1/{+name}:attachProject', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'create' => array( - 'path' => 'v1/{+parent}/tenancyUnits', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'deleteProject' => array( - 'path' => 'v1/{+name}:deleteProject', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/tenancyUnits', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'removeProject' => array( - 'path' => 'v1/{+name}:removeProject', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'undeleteProject' => array( - 'path' => 'v1/{+name}:undeleteProject', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/AddTenantProjectRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/AddTenantProjectRequest.php deleted file mode 100644 index 33acb9bb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/AddTenantProjectRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -projectConfig = $projectConfig; - } - /** - * @return Google_Service_ServiceConsumerManagement_TenantProjectConfig - */ - public function getProjectConfig() - { - return $this->projectConfig; - } - public function setTag($tag) - { - $this->tag = $tag; - } - public function getTag() - { - return $this->tag; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Api.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Api.php deleted file mode 100644 index 181f33e5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Api.php +++ /dev/null @@ -1,113 +0,0 @@ -methods = $methods; - } - /** - * @return Google_Service_ServiceConsumerManagement_Method - */ - public function getMethods() - { - return $this->methods; - } - /** - * @param Google_Service_ServiceConsumerManagement_Mixin - */ - public function setMixins($mixins) - { - $this->mixins = $mixins; - } - /** - * @return Google_Service_ServiceConsumerManagement_Mixin - */ - public function getMixins() - { - return $this->mixins; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_ServiceConsumerManagement_Option - */ - public function setOptions($options) - { - $this->options = $options; - } - /** - * @return Google_Service_ServiceConsumerManagement_Option - */ - public function getOptions() - { - return $this->options; - } - /** - * @param Google_Service_ServiceConsumerManagement_SourceContext - */ - public function setSourceContext(Google_Service_ServiceConsumerManagement_SourceContext $sourceContext) - { - $this->sourceContext = $sourceContext; - } - /** - * @return Google_Service_ServiceConsumerManagement_SourceContext - */ - public function getSourceContext() - { - return $this->sourceContext; - } - public function setSyntax($syntax) - { - $this->syntax = $syntax; - } - public function getSyntax() - { - return $this->syntax; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/ApplyTenantProjectConfigRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/ApplyTenantProjectConfigRequest.php deleted file mode 100644 index c44b974d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/ApplyTenantProjectConfigRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -projectConfig = $projectConfig; - } - /** - * @return Google_Service_ServiceConsumerManagement_TenantProjectConfig - */ - public function getProjectConfig() - { - return $this->projectConfig; - } - public function setTag($tag) - { - $this->tag = $tag; - } - public function getTag() - { - return $this->tag; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/AttachTenantProjectRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/AttachTenantProjectRequest.php deleted file mode 100644 index 715d866d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/AttachTenantProjectRequest.php +++ /dev/null @@ -1,48 +0,0 @@ -externalResource = $externalResource; - } - public function getExternalResource() - { - return $this->externalResource; - } - public function setReservedResource($reservedResource) - { - $this->reservedResource = $reservedResource; - } - public function getReservedResource() - { - return $this->reservedResource; - } - public function setTag($tag) - { - $this->tag = $tag; - } - public function getTag() - { - return $this->tag; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/AuthProvider.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/AuthProvider.php deleted file mode 100644 index 235702c1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/AuthProvider.php +++ /dev/null @@ -1,66 +0,0 @@ -audiences = $audiences; - } - public function getAudiences() - { - return $this->audiences; - } - public function setAuthorizationUrl($authorizationUrl) - { - $this->authorizationUrl = $authorizationUrl; - } - public function getAuthorizationUrl() - { - return $this->authorizationUrl; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setIssuer($issuer) - { - $this->issuer = $issuer; - } - public function getIssuer() - { - return $this->issuer; - } - public function setJwksUri($jwksUri) - { - $this->jwksUri = $jwksUri; - } - public function getJwksUri() - { - return $this->jwksUri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/AuthRequirement.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/AuthRequirement.php deleted file mode 100644 index 449c81b7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/AuthRequirement.php +++ /dev/null @@ -1,39 +0,0 @@ -audiences = $audiences; - } - public function getAudiences() - { - return $this->audiences; - } - public function setProviderId($providerId) - { - $this->providerId = $providerId; - } - public function getProviderId() - { - return $this->providerId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Authentication.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Authentication.php deleted file mode 100644 index 8882f58c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Authentication.php +++ /dev/null @@ -1,54 +0,0 @@ -providers = $providers; - } - /** - * @return Google_Service_ServiceConsumerManagement_AuthProvider - */ - public function getProviders() - { - return $this->providers; - } - /** - * @param Google_Service_ServiceConsumerManagement_AuthenticationRule - */ - public function setRules($rules) - { - $this->rules = $rules; - } - /** - * @return Google_Service_ServiceConsumerManagement_AuthenticationRule - */ - public function getRules() - { - return $this->rules; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/AuthenticationRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/AuthenticationRule.php deleted file mode 100644 index b7ec71ae..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/AuthenticationRule.php +++ /dev/null @@ -1,72 +0,0 @@ -allowWithoutCredential = $allowWithoutCredential; - } - public function getAllowWithoutCredential() - { - return $this->allowWithoutCredential; - } - /** - * @param Google_Service_ServiceConsumerManagement_OAuthRequirements - */ - public function setOauth(Google_Service_ServiceConsumerManagement_OAuthRequirements $oauth) - { - $this->oauth = $oauth; - } - /** - * @return Google_Service_ServiceConsumerManagement_OAuthRequirements - */ - public function getOauth() - { - return $this->oauth; - } - /** - * @param Google_Service_ServiceConsumerManagement_AuthRequirement - */ - public function setRequirements($requirements) - { - $this->requirements = $requirements; - } - /** - * @return Google_Service_ServiceConsumerManagement_AuthRequirement - */ - public function getRequirements() - { - return $this->requirements; - } - public function setSelector($selector) - { - $this->selector = $selector; - } - public function getSelector() - { - return $this->selector; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Backend.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Backend.php deleted file mode 100644 index 0dc07b7c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Backend.php +++ /dev/null @@ -1,38 +0,0 @@ -rules = $rules; - } - /** - * @return Google_Service_ServiceConsumerManagement_BackendRule - */ - public function getRules() - { - return $this->rules; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/BackendRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/BackendRule.php deleted file mode 100644 index 17ab85d6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/BackendRule.php +++ /dev/null @@ -1,102 +0,0 @@ -address = $address; - } - public function getAddress() - { - return $this->address; - } - public function setDeadline($deadline) - { - $this->deadline = $deadline; - } - public function getDeadline() - { - return $this->deadline; - } - public function setDisableAuth($disableAuth) - { - $this->disableAuth = $disableAuth; - } - public function getDisableAuth() - { - return $this->disableAuth; - } - public function setJwtAudience($jwtAudience) - { - $this->jwtAudience = $jwtAudience; - } - public function getJwtAudience() - { - return $this->jwtAudience; - } - public function setMinDeadline($minDeadline) - { - $this->minDeadline = $minDeadline; - } - public function getMinDeadline() - { - return $this->minDeadline; - } - public function setOperationDeadline($operationDeadline) - { - $this->operationDeadline = $operationDeadline; - } - public function getOperationDeadline() - { - return $this->operationDeadline; - } - public function setPathTranslation($pathTranslation) - { - $this->pathTranslation = $pathTranslation; - } - public function getPathTranslation() - { - return $this->pathTranslation; - } - public function setProtocol($protocol) - { - $this->protocol = $protocol; - } - public function getProtocol() - { - return $this->protocol; - } - public function setSelector($selector) - { - $this->selector = $selector; - } - public function getSelector() - { - return $this->selector; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Billing.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Billing.php deleted file mode 100644 index fb04715a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Billing.php +++ /dev/null @@ -1,38 +0,0 @@ -consumerDestinations = $consumerDestinations; - } - /** - * @return Google_Service_ServiceConsumerManagement_BillingDestination - */ - public function getConsumerDestinations() - { - return $this->consumerDestinations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/BillingConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/BillingConfig.php deleted file mode 100644 index 9112f62c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/BillingConfig.php +++ /dev/null @@ -1,30 +0,0 @@ -billingAccount = $billingAccount; - } - public function getBillingAccount() - { - return $this->billingAccount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/BillingDestination.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/BillingDestination.php deleted file mode 100644 index b3e88b1f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/BillingDestination.php +++ /dev/null @@ -1,40 +0,0 @@ -metrics = $metrics; - } - public function getMetrics() - { - return $this->metrics; - } - public function setMonitoredResource($monitoredResource) - { - $this->monitoredResource = $monitoredResource; - } - public function getMonitoredResource() - { - return $this->monitoredResource; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/CancelOperationRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/CancelOperationRequest.php deleted file mode 100644 index 4c7d2125..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/CancelOperationRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -rules = $rules; - } - /** - * @return Google_Service_ServiceConsumerManagement_ContextRule - */ - public function getRules() - { - return $this->rules; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/ContextRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/ContextRule.php deleted file mode 100644 index 8b02b657..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/ContextRule.php +++ /dev/null @@ -1,67 +0,0 @@ -allowedRequestExtensions = $allowedRequestExtensions; - } - public function getAllowedRequestExtensions() - { - return $this->allowedRequestExtensions; - } - public function setAllowedResponseExtensions($allowedResponseExtensions) - { - $this->allowedResponseExtensions = $allowedResponseExtensions; - } - public function getAllowedResponseExtensions() - { - return $this->allowedResponseExtensions; - } - public function setProvided($provided) - { - $this->provided = $provided; - } - public function getProvided() - { - return $this->provided; - } - public function setRequested($requested) - { - $this->requested = $requested; - } - public function getRequested() - { - return $this->requested; - } - public function setSelector($selector) - { - $this->selector = $selector; - } - public function getSelector() - { - return $this->selector; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Control.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Control.php deleted file mode 100644 index 1208badf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Control.php +++ /dev/null @@ -1,30 +0,0 @@ -environment = $environment; - } - public function getEnvironment() - { - return $this->environment; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/CreateTenancyUnitRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/CreateTenancyUnitRequest.php deleted file mode 100644 index ef17f510..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/CreateTenancyUnitRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -tenancyUnitId = $tenancyUnitId; - } - public function getTenancyUnitId() - { - return $this->tenancyUnitId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/CustomError.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/CustomError.php deleted file mode 100644 index c73ec4d7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/CustomError.php +++ /dev/null @@ -1,47 +0,0 @@ -rules = $rules; - } - /** - * @return Google_Service_ServiceConsumerManagement_CustomErrorRule - */ - public function getRules() - { - return $this->rules; - } - public function setTypes($types) - { - $this->types = $types; - } - public function getTypes() - { - return $this->types; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/CustomErrorRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/CustomErrorRule.php deleted file mode 100644 index c39e80d9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/CustomErrorRule.php +++ /dev/null @@ -1,39 +0,0 @@ -isErrorType = $isErrorType; - } - public function getIsErrorType() - { - return $this->isErrorType; - } - public function setSelector($selector) - { - $this->selector = $selector; - } - public function getSelector() - { - return $this->selector; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/CustomHttpPattern.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/CustomHttpPattern.php deleted file mode 100644 index 908e29eb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/CustomHttpPattern.php +++ /dev/null @@ -1,39 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setPath($path) - { - $this->path = $path; - } - public function getPath() - { - return $this->path; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/DeleteTenantProjectRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/DeleteTenantProjectRequest.php deleted file mode 100644 index 9973c143..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/DeleteTenantProjectRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -tag = $tag; - } - public function getTag() - { - return $this->tag; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Documentation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Documentation.php deleted file mode 100644 index 91dbcba0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Documentation.php +++ /dev/null @@ -1,90 +0,0 @@ -documentationRootUrl = $documentationRootUrl; - } - public function getDocumentationRootUrl() - { - return $this->documentationRootUrl; - } - public function setOverview($overview) - { - $this->overview = $overview; - } - public function getOverview() - { - return $this->overview; - } - /** - * @param Google_Service_ServiceConsumerManagement_Page - */ - public function setPages($pages) - { - $this->pages = $pages; - } - /** - * @return Google_Service_ServiceConsumerManagement_Page - */ - public function getPages() - { - return $this->pages; - } - /** - * @param Google_Service_ServiceConsumerManagement_DocumentationRule - */ - public function setRules($rules) - { - $this->rules = $rules; - } - /** - * @return Google_Service_ServiceConsumerManagement_DocumentationRule - */ - public function getRules() - { - return $this->rules; - } - public function setServiceRootUrl($serviceRootUrl) - { - $this->serviceRootUrl = $serviceRootUrl; - } - public function getServiceRootUrl() - { - return $this->serviceRootUrl; - } - public function setSummary($summary) - { - $this->summary = $summary; - } - public function getSummary() - { - return $this->summary; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/DocumentationRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/DocumentationRule.php deleted file mode 100644 index fd31820d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/DocumentationRule.php +++ /dev/null @@ -1,48 +0,0 @@ -deprecationDescription = $deprecationDescription; - } - public function getDeprecationDescription() - { - return $this->deprecationDescription; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setSelector($selector) - { - $this->selector = $selector; - } - public function getSelector() - { - return $this->selector; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Endpoint.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Endpoint.php deleted file mode 100644 index dfc6d641..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Endpoint.php +++ /dev/null @@ -1,67 +0,0 @@ -aliases = $aliases; - } - public function getAliases() - { - return $this->aliases; - } - public function setAllowCors($allowCors) - { - $this->allowCors = $allowCors; - } - public function getAllowCors() - { - return $this->allowCors; - } - public function setFeatures($features) - { - $this->features = $features; - } - public function getFeatures() - { - return $this->features; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setTarget($target) - { - $this->target = $target; - } - public function getTarget() - { - return $this->target; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Enum.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Enum.php deleted file mode 100644 index 2e0aa9c7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Enum.php +++ /dev/null @@ -1,88 +0,0 @@ -enumvalue = $enumvalue; - } - /** - * @return Google_Service_ServiceConsumerManagement_EnumValue - */ - public function getEnumvalue() - { - return $this->enumvalue; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_ServiceConsumerManagement_Option - */ - public function setOptions($options) - { - $this->options = $options; - } - /** - * @return Google_Service_ServiceConsumerManagement_Option - */ - public function getOptions() - { - return $this->options; - } - /** - * @param Google_Service_ServiceConsumerManagement_SourceContext - */ - public function setSourceContext(Google_Service_ServiceConsumerManagement_SourceContext $sourceContext) - { - $this->sourceContext = $sourceContext; - } - /** - * @return Google_Service_ServiceConsumerManagement_SourceContext - */ - public function getSourceContext() - { - return $this->sourceContext; - } - public function setSyntax($syntax) - { - $this->syntax = $syntax; - } - public function getSyntax() - { - return $this->syntax; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/EnumValue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/EnumValue.php deleted file mode 100644 index d605fcc6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/EnumValue.php +++ /dev/null @@ -1,56 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setNumber($number) - { - $this->number = $number; - } - public function getNumber() - { - return $this->number; - } - /** - * @param Google_Service_ServiceConsumerManagement_Option - */ - public function setOptions($options) - { - $this->options = $options; - } - /** - * @return Google_Service_ServiceConsumerManagement_Option - */ - public function getOptions() - { - return $this->options; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Field.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Field.php deleted file mode 100644 index bb321eae..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Field.php +++ /dev/null @@ -1,119 +0,0 @@ -cardinality = $cardinality; - } - public function getCardinality() - { - return $this->cardinality; - } - public function setDefaultValue($defaultValue) - { - $this->defaultValue = $defaultValue; - } - public function getDefaultValue() - { - return $this->defaultValue; - } - public function setJsonName($jsonName) - { - $this->jsonName = $jsonName; - } - public function getJsonName() - { - return $this->jsonName; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNumber($number) - { - $this->number = $number; - } - public function getNumber() - { - return $this->number; - } - public function setOneofIndex($oneofIndex) - { - $this->oneofIndex = $oneofIndex; - } - public function getOneofIndex() - { - return $this->oneofIndex; - } - /** - * @param Google_Service_ServiceConsumerManagement_Option - */ - public function setOptions($options) - { - $this->options = $options; - } - /** - * @return Google_Service_ServiceConsumerManagement_Option - */ - public function getOptions() - { - return $this->options; - } - public function setPacked($packed) - { - $this->packed = $packed; - } - public function getPacked() - { - return $this->packed; - } - public function setTypeUrl($typeUrl) - { - $this->typeUrl = $typeUrl; - } - public function getTypeUrl() - { - return $this->typeUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Http.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Http.php deleted file mode 100644 index 932c57e0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Http.php +++ /dev/null @@ -1,47 +0,0 @@ -fullyDecodeReservedExpansion = $fullyDecodeReservedExpansion; - } - public function getFullyDecodeReservedExpansion() - { - return $this->fullyDecodeReservedExpansion; - } - /** - * @param Google_Service_ServiceConsumerManagement_HttpRule - */ - public function setRules($rules) - { - $this->rules = $rules; - } - /** - * @return Google_Service_ServiceConsumerManagement_HttpRule - */ - public function getRules() - { - return $this->rules; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/HttpRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/HttpRule.php deleted file mode 100644 index fc34a4b1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/HttpRule.php +++ /dev/null @@ -1,135 +0,0 @@ -additionalBindings = $additionalBindings; - } - /** - * @return Google_Service_ServiceConsumerManagement_HttpRule - */ - public function getAdditionalBindings() - { - return $this->additionalBindings; - } - public function setAllowHalfDuplex($allowHalfDuplex) - { - $this->allowHalfDuplex = $allowHalfDuplex; - } - public function getAllowHalfDuplex() - { - return $this->allowHalfDuplex; - } - public function setBody($body) - { - $this->body = $body; - } - public function getBody() - { - return $this->body; - } - /** - * @param Google_Service_ServiceConsumerManagement_CustomHttpPattern - */ - public function setCustom(Google_Service_ServiceConsumerManagement_CustomHttpPattern $custom) - { - $this->custom = $custom; - } - /** - * @return Google_Service_ServiceConsumerManagement_CustomHttpPattern - */ - public function getCustom() - { - return $this->custom; - } - public function setDelete($delete) - { - $this->delete = $delete; - } - public function getDelete() - { - return $this->delete; - } - public function setGet($get) - { - $this->get = $get; - } - public function getGet() - { - return $this->get; - } - public function setPatch($patch) - { - $this->patch = $patch; - } - public function getPatch() - { - return $this->patch; - } - public function setPost($post) - { - $this->post = $post; - } - public function getPost() - { - return $this->post; - } - public function setPut($put) - { - $this->put = $put; - } - public function getPut() - { - return $this->put; - } - public function setResponseBody($responseBody) - { - $this->responseBody = $responseBody; - } - public function getResponseBody() - { - return $this->responseBody; - } - public function setSelector($selector) - { - $this->selector = $selector; - } - public function getSelector() - { - return $this->selector; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/LabelDescriptor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/LabelDescriptor.php deleted file mode 100644 index b1c1f26f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/LabelDescriptor.php +++ /dev/null @@ -1,48 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setKey($key) - { - $this->key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValueType($valueType) - { - $this->valueType = $valueType; - } - public function getValueType() - { - return $this->valueType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/ListOperationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/ListOperationsResponse.php deleted file mode 100644 index bbe02dc4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/ListOperationsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_ServiceConsumerManagement_Operation - */ - public function setOperations($operations) - { - $this->operations = $operations; - } - /** - * @return Google_Service_ServiceConsumerManagement_Operation - */ - public function getOperations() - { - return $this->operations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/ListTenancyUnitsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/ListTenancyUnitsResponse.php deleted file mode 100644 index fe823fa7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/ListTenancyUnitsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_ServiceConsumerManagement_TenancyUnit - */ - public function setTenancyUnits($tenancyUnits) - { - $this->tenancyUnits = $tenancyUnits; - } - /** - * @return Google_Service_ServiceConsumerManagement_TenancyUnit - */ - public function getTenancyUnits() - { - return $this->tenancyUnits; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/LogDescriptor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/LogDescriptor.php deleted file mode 100644 index f9a2d645..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/LogDescriptor.php +++ /dev/null @@ -1,65 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - /** - * @param Google_Service_ServiceConsumerManagement_LabelDescriptor - */ - public function setLabels($labels) - { - $this->labels = $labels; - } - /** - * @return Google_Service_ServiceConsumerManagement_LabelDescriptor - */ - public function getLabels() - { - return $this->labels; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Logging.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Logging.php deleted file mode 100644 index 95fcf182..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Logging.php +++ /dev/null @@ -1,54 +0,0 @@ -consumerDestinations = $consumerDestinations; - } - /** - * @return Google_Service_ServiceConsumerManagement_LoggingDestination - */ - public function getConsumerDestinations() - { - return $this->consumerDestinations; - } - /** - * @param Google_Service_ServiceConsumerManagement_LoggingDestination - */ - public function setProducerDestinations($producerDestinations) - { - $this->producerDestinations = $producerDestinations; - } - /** - * @return Google_Service_ServiceConsumerManagement_LoggingDestination - */ - public function getProducerDestinations() - { - return $this->producerDestinations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/LoggingDestination.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/LoggingDestination.php deleted file mode 100644 index 9bd73e17..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/LoggingDestination.php +++ /dev/null @@ -1,40 +0,0 @@ -logs = $logs; - } - public function getLogs() - { - return $this->logs; - } - public function setMonitoredResource($monitoredResource) - { - $this->monitoredResource = $monitoredResource; - } - public function getMonitoredResource() - { - return $this->monitoredResource; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Method.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Method.php deleted file mode 100644 index 073950a1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Method.php +++ /dev/null @@ -1,92 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_ServiceConsumerManagement_Option - */ - public function setOptions($options) - { - $this->options = $options; - } - /** - * @return Google_Service_ServiceConsumerManagement_Option - */ - public function getOptions() - { - return $this->options; - } - public function setRequestStreaming($requestStreaming) - { - $this->requestStreaming = $requestStreaming; - } - public function getRequestStreaming() - { - return $this->requestStreaming; - } - public function setRequestTypeUrl($requestTypeUrl) - { - $this->requestTypeUrl = $requestTypeUrl; - } - public function getRequestTypeUrl() - { - return $this->requestTypeUrl; - } - public function setResponseStreaming($responseStreaming) - { - $this->responseStreaming = $responseStreaming; - } - public function getResponseStreaming() - { - return $this->responseStreaming; - } - public function setResponseTypeUrl($responseTypeUrl) - { - $this->responseTypeUrl = $responseTypeUrl; - } - public function getResponseTypeUrl() - { - return $this->responseTypeUrl; - } - public function setSyntax($syntax) - { - $this->syntax = $syntax; - } - public function getSyntax() - { - return $this->syntax; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/MetricDescriptor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/MetricDescriptor.php deleted file mode 100644 index 084ffa08..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/MetricDescriptor.php +++ /dev/null @@ -1,135 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - /** - * @param Google_Service_ServiceConsumerManagement_LabelDescriptor - */ - public function setLabels($labels) - { - $this->labels = $labels; - } - /** - * @return Google_Service_ServiceConsumerManagement_LabelDescriptor - */ - public function getLabels() - { - return $this->labels; - } - public function setLaunchStage($launchStage) - { - $this->launchStage = $launchStage; - } - public function getLaunchStage() - { - return $this->launchStage; - } - /** - * @param Google_Service_ServiceConsumerManagement_MetricDescriptorMetadata - */ - public function setMetadata(Google_Service_ServiceConsumerManagement_MetricDescriptorMetadata $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_ServiceConsumerManagement_MetricDescriptorMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - public function setMetricKind($metricKind) - { - $this->metricKind = $metricKind; - } - public function getMetricKind() - { - return $this->metricKind; - } - public function setMonitoredResourceTypes($monitoredResourceTypes) - { - $this->monitoredResourceTypes = $monitoredResourceTypes; - } - public function getMonitoredResourceTypes() - { - return $this->monitoredResourceTypes; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setUnit($unit) - { - $this->unit = $unit; - } - public function getUnit() - { - return $this->unit; - } - public function setValueType($valueType) - { - $this->valueType = $valueType; - } - public function getValueType() - { - return $this->valueType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/MetricDescriptorMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/MetricDescriptorMetadata.php deleted file mode 100644 index 46eb20ed..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/MetricDescriptorMetadata.php +++ /dev/null @@ -1,48 +0,0 @@ -ingestDelay = $ingestDelay; - } - public function getIngestDelay() - { - return $this->ingestDelay; - } - public function setLaunchStage($launchStage) - { - $this->launchStage = $launchStage; - } - public function getLaunchStage() - { - return $this->launchStage; - } - public function setSamplePeriod($samplePeriod) - { - $this->samplePeriod = $samplePeriod; - } - public function getSamplePeriod() - { - return $this->samplePeriod; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/MetricRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/MetricRule.php deleted file mode 100644 index 746a277b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/MetricRule.php +++ /dev/null @@ -1,39 +0,0 @@ -metricCosts = $metricCosts; - } - public function getMetricCosts() - { - return $this->metricCosts; - } - public function setSelector($selector) - { - $this->selector = $selector; - } - public function getSelector() - { - return $this->selector; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Mixin.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Mixin.php deleted file mode 100644 index be63fffe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Mixin.php +++ /dev/null @@ -1,39 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setRoot($root) - { - $this->root = $root; - } - public function getRoot() - { - return $this->root; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/MonitoredResourceDescriptor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/MonitoredResourceDescriptor.php deleted file mode 100644 index 94543c41..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/MonitoredResourceDescriptor.php +++ /dev/null @@ -1,83 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - /** - * @param Google_Service_ServiceConsumerManagement_LabelDescriptor - */ - public function setLabels($labels) - { - $this->labels = $labels; - } - /** - * @return Google_Service_ServiceConsumerManagement_LabelDescriptor - */ - public function getLabels() - { - return $this->labels; - } - public function setLaunchStage($launchStage) - { - $this->launchStage = $launchStage; - } - public function getLaunchStage() - { - return $this->launchStage; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Monitoring.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Monitoring.php deleted file mode 100644 index 5a0d7bab..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Monitoring.php +++ /dev/null @@ -1,54 +0,0 @@ -consumerDestinations = $consumerDestinations; - } - /** - * @return Google_Service_ServiceConsumerManagement_MonitoringDestination - */ - public function getConsumerDestinations() - { - return $this->consumerDestinations; - } - /** - * @param Google_Service_ServiceConsumerManagement_MonitoringDestination - */ - public function setProducerDestinations($producerDestinations) - { - $this->producerDestinations = $producerDestinations; - } - /** - * @return Google_Service_ServiceConsumerManagement_MonitoringDestination - */ - public function getProducerDestinations() - { - return $this->producerDestinations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/MonitoringDestination.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/MonitoringDestination.php deleted file mode 100644 index 738a4de5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/MonitoringDestination.php +++ /dev/null @@ -1,40 +0,0 @@ -metrics = $metrics; - } - public function getMetrics() - { - return $this->metrics; - } - public function setMonitoredResource($monitoredResource) - { - $this->monitoredResource = $monitoredResource; - } - public function getMonitoredResource() - { - return $this->monitoredResource; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/OAuthRequirements.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/OAuthRequirements.php deleted file mode 100644 index 2130a142..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/OAuthRequirements.php +++ /dev/null @@ -1,30 +0,0 @@ -canonicalScopes = $canonicalScopes; - } - public function getCanonicalScopes() - { - return $this->canonicalScopes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Operation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Operation.php deleted file mode 100644 index 88610b9d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Operation.php +++ /dev/null @@ -1,73 +0,0 @@ -done = $done; - } - public function getDone() - { - return $this->done; - } - /** - * @param Google_Service_ServiceConsumerManagement_Status - */ - public function setError(Google_Service_ServiceConsumerManagement_Status $error) - { - $this->error = $error; - } - /** - * @return Google_Service_ServiceConsumerManagement_Status - */ - public function getError() - { - return $this->error; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Option.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Option.php deleted file mode 100644 index abc9ff56..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Option.php +++ /dev/null @@ -1,39 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Page.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Page.php deleted file mode 100644 index 7c2b7811..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Page.php +++ /dev/null @@ -1,56 +0,0 @@ -content = $content; - } - public function getContent() - { - return $this->content; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_ServiceConsumerManagement_Page - */ - public function setSubpages($subpages) - { - $this->subpages = $subpages; - } - /** - * @return Google_Service_ServiceConsumerManagement_Page - */ - public function getSubpages() - { - return $this->subpages; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/PolicyBinding.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/PolicyBinding.php deleted file mode 100644 index 72379d92..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/PolicyBinding.php +++ /dev/null @@ -1,40 +0,0 @@ -members = $members; - } - public function getMembers() - { - return $this->members; - } - public function setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Quota.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Quota.php deleted file mode 100644 index f5eb5812..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Quota.php +++ /dev/null @@ -1,54 +0,0 @@ -limits = $limits; - } - /** - * @return Google_Service_ServiceConsumerManagement_QuotaLimit - */ - public function getLimits() - { - return $this->limits; - } - /** - * @param Google_Service_ServiceConsumerManagement_MetricRule - */ - public function setMetricRules($metricRules) - { - $this->metricRules = $metricRules; - } - /** - * @return Google_Service_ServiceConsumerManagement_MetricRule - */ - public function getMetricRules() - { - return $this->metricRules; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/QuotaLimit.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/QuotaLimit.php deleted file mode 100644 index cdcbcbc0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/QuotaLimit.php +++ /dev/null @@ -1,111 +0,0 @@ -defaultLimit = $defaultLimit; - } - public function getDefaultLimit() - { - return $this->defaultLimit; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setDuration($duration) - { - $this->duration = $duration; - } - public function getDuration() - { - return $this->duration; - } - public function setFreeTier($freeTier) - { - $this->freeTier = $freeTier; - } - public function getFreeTier() - { - return $this->freeTier; - } - public function setMaxLimit($maxLimit) - { - $this->maxLimit = $maxLimit; - } - public function getMaxLimit() - { - return $this->maxLimit; - } - public function setMetric($metric) - { - $this->metric = $metric; - } - public function getMetric() - { - return $this->metric; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setUnit($unit) - { - $this->unit = $unit; - } - public function getUnit() - { - return $this->unit; - } - public function setValues($values) - { - $this->values = $values; - } - public function getValues() - { - return $this->values; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/RemoveTenantProjectRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/RemoveTenantProjectRequest.php deleted file mode 100644 index 9e42ded2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/RemoveTenantProjectRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -tag = $tag; - } - public function getTag() - { - return $this->tag; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Resource/Operations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Resource/Operations.php deleted file mode 100644 index 0471dc1d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Resource/Operations.php +++ /dev/null @@ -1,107 +0,0 @@ - - * $serviceconsumermanagementService = new Google_Service_ServiceConsumerManagement(...); - * $operations = $serviceconsumermanagementService->operations; - * - */ -class Google_Service_ServiceConsumerManagement_Resource_Operations extends Google_Service_Resource -{ - /** - * Starts asynchronous cancellation on a long-running operation. The server - * makes a best effort to cancel the operation, but success is not guaranteed. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or - * other methods to check whether the cancellation succeeded or whether the - * operation completed despite cancellation. On successful cancellation, the - * operation is not deleted; instead, it becomes an operation with an - * Operation.error value with a google.rpc.Status.code of 1, corresponding to - * `Code.CANCELLED`. (operations.cancel) - * - * @param string $name The name of the operation resource to be cancelled. - * @param Google_Service_ServiceConsumerManagement_CancelOperationRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceConsumerManagement_ServiceconsumermanagementEmpty - */ - public function cancel($name, Google_Service_ServiceConsumerManagement_CancelOperationRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('cancel', array($params), "Google_Service_ServiceConsumerManagement_ServiceconsumermanagementEmpty"); - } - /** - * Deletes a long-running operation. This method indicates that the client is no - * longer interested in the operation result. It does not cancel the operation. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. (operations.delete) - * - * @param string $name The name of the operation resource to be deleted. - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceConsumerManagement_ServiceconsumermanagementEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_ServiceConsumerManagement_ServiceconsumermanagementEmpty"); - } - /** - * Gets the latest state of a long-running operation. Clients can use this - * method to poll the operation result at intervals as recommended by the API - * service. (operations.get) - * - * @param string $name The name of the operation resource. - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceConsumerManagement_Operation - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_ServiceConsumerManagement_Operation"); - } - /** - * Lists operations that match the specified filter in the request. If the - * server doesn't support this method, it returns `UNIMPLEMENTED`. - * - * NOTE: the `name` binding allows API services to override the binding to use - * different resource name schemes, such as `users/operations`. To override the - * binding, API services can add a binding such as - * `"/v1/{name=users}/operations"` to their service configuration. For backwards - * compatibility, the default name includes the operations collection id, - * however overriding users must ensure the name binding is the parent resource, - * without the operations collection id. (operations.listOperations) - * - * @param string $name The name of the operation's parent resource. - * @param array $optParams Optional parameters. - * - * @opt_param int pageSize The standard list page size. - * @opt_param string filter The standard list filter. - * @opt_param string pageToken The standard list page token. - * @return Google_Service_ServiceConsumerManagement_ListOperationsResponse - */ - public function listOperations($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_ServiceConsumerManagement_ListOperationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Resource/Services.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Resource/Services.php deleted file mode 100644 index 3c5c3134..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Resource/Services.php +++ /dev/null @@ -1,72 +0,0 @@ - - * $serviceconsumermanagementService = new Google_Service_ServiceConsumerManagement(...); - * $services = $serviceconsumermanagementService->services; - * - */ -class Google_Service_ServiceConsumerManagement_Resource_Services extends Google_Service_Resource -{ - /** - * Search tenancy units for a managed service. (services.search) - * - * @param string $parent Service for which search is performed. - * services/{service} {service} the name of a service, for example - * 'service.googleapis.com'. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The continuation token, which is used to page - * through large result sets. To get the next page of results, set this - * parameter to the value of `nextPageToken` from the previous response. - * - * Optional. - * @opt_param int pageSize The maximum number of results returned by this - * request. Currently, the default maximum is set to 1000. If `page_size` isn't - * provided or the size provided is a number larger than 1000, it's - * automatically set to 1000. - * - * Optional. - * @opt_param string query Set a query `{expression}` for querying tenancy - * units. Your `{expression}` must be in the format: - * `field_name=literal_string`. The `field_name` is the name of the field you - * want to compare. Supported fields are `tenant_resources.tag` and - * `tenant_resources.resource`. - * - * For example, to search tenancy units that contain at least one tenant - * resource with a given tag 'xyz', use the query `tenant_resources.tag=xyz`. To - * search tenancy units that contain at least one tenant resource with a given - * resource name 'projects/123456', use the query - * `tenant_resources.resource=projects/123456`. - * - * Multiple expressions can be joined with `AND`s. Tenancy units must match all - * expressions to be included in the result set. For example, - * `tenant_resources.tag=xyz AND tenant_resources.resource=projects/123456` - * - * Optional. - * @return Google_Service_ServiceConsumerManagement_SearchTenancyUnitsResponse - */ - public function search($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('search', array($params), "Google_Service_ServiceConsumerManagement_SearchTenancyUnitsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Resource/ServicesTenancyUnits.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Resource/ServicesTenancyUnits.php deleted file mode 100644 index 588604cb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Resource/ServicesTenancyUnits.php +++ /dev/null @@ -1,229 +0,0 @@ - - * $serviceconsumermanagementService = new Google_Service_ServiceConsumerManagement(...); - * $tenancyUnits = $serviceconsumermanagementService->tenancyUnits; - * - */ -class Google_Service_ServiceConsumerManagement_Resource_ServicesTenancyUnits extends Google_Service_Resource -{ - /** - * Add a new tenant project to the tenancy unit. There can be a maximum of 512 - * tenant projects in a tenancy unit. If there are previously failed - * `AddTenantProject` calls, you might need to call `RemoveTenantProject` first - * to resolve them before you can make another call to `AddTenantProject` with - * the same tag. Operation. (tenancyUnits.addProject) - * - * @param string $parent Name of the tenancy unit. Such as - * 'services/service.googleapis.com/projects/12345/tenancyUnits/abcd'. - * @param Google_Service_ServiceConsumerManagement_AddTenantProjectRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceConsumerManagement_Operation - */ - public function addProject($parent, Google_Service_ServiceConsumerManagement_AddTenantProjectRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('addProject', array($params), "Google_Service_ServiceConsumerManagement_Operation"); - } - /** - * Apply a configuration to an existing tenant project. This project must exist - * in an active state and have the original owner account. The caller must have - * permission to add a project to the given tenancy unit. The configuration is - * applied, but any existing settings on the project aren't modified. Specified - * policy bindings are applied. Existing bindings aren't modified. Specified - * services are activated. No service is deactivated. If specified, new billing - * configuration is applied. Omit a billing configuration to keep the existing - * one. A service account in the project is created if previously non existed. - * Specified labels will be appended to tenant project, note that the value of - * existing label key will be updated if the same label key is requested. The - * specified folder is ignored, as moving a tenant project to a different folder - * isn't supported. The operation fails if any of the steps fail, but no - * rollback of already applied configuration changes is attempted. Operation. - * (tenancyUnits.applyProjectConfig) - * - * @param string $name Name of the tenancy unit. Such as - * 'services/service.googleapis.com/projects/12345/tenancyUnits/abcd'. - * @param Google_Service_ServiceConsumerManagement_ApplyTenantProjectConfigRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceConsumerManagement_Operation - */ - public function applyProjectConfig($name, Google_Service_ServiceConsumerManagement_ApplyTenantProjectConfigRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('applyProjectConfig', array($params), "Google_Service_ServiceConsumerManagement_Operation"); - } - /** - * Attach an existing project to the tenancy unit as a new tenant resource. The - * project could either be the tenant project reserved by calling - * `AddTenantProject` under a tenancy unit of a service producer's project of a - * managed service, or from a separate project. The caller is checked against a - * set of permissions as if calling `AddTenantProject` on the same service - * consumer. To trigger the attachment, the targeted tenant project must be in a - * folder. Make sure the ServiceConsumerManagement service account is the owner - * of that project. These two requirements are already met if the project is - * reserved by calling `AddTenantProject`. Operation. - * (tenancyUnits.attachProject) - * - * @param string $name Name of the tenancy unit that the project will be - * attached to. Such as - * 'services/service.googleapis.com/projects/12345/tenancyUnits/abcd'. - * @param Google_Service_ServiceConsumerManagement_AttachTenantProjectRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceConsumerManagement_Operation - */ - public function attachProject($name, Google_Service_ServiceConsumerManagement_AttachTenantProjectRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('attachProject', array($params), "Google_Service_ServiceConsumerManagement_Operation"); - } - /** - * Creates a tenancy unit with no tenant resources. If tenancy unit already - * exists, it will be returned, however, in this case, returned TenancyUnit does - * not have tenant_resources field set and ListTenancyUnit has to be used to get - * a complete TenancyUnit with all fields populated. (tenancyUnits.create) - * - * @param string $parent services/{service}/{collection id}/{resource id} - * {collection id} is the cloud resource collection type representing the - * service consumer, for example 'projects', or 'organizations'. {resource id} - * is the consumer numeric id, such as project number: '123456'. {service} the - * name of a managed service, such as 'service.googleapis.com'. Enables service - * binding using the new tenancy unit. - * @param Google_Service_ServiceConsumerManagement_CreateTenancyUnitRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceConsumerManagement_TenancyUnit - */ - public function create($parent, Google_Service_ServiceConsumerManagement_CreateTenancyUnitRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_ServiceConsumerManagement_TenancyUnit"); - } - /** - * Delete a tenancy unit. Before you delete the tenancy unit, there should be no - * tenant resources in it that aren't in a DELETED state. Operation. - * (tenancyUnits.delete) - * - * @param string $name Name of the tenancy unit to be deleted. - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceConsumerManagement_Operation - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_ServiceConsumerManagement_Operation"); - } - /** - * Deletes the specified project resource identified by a tenant resource tag. - * The mothod removes a project lien with a 'TenantManager' origin if that was - * added. It will then attempt to delete the project. If that operation fails, - * this method also fails. After the project has been deleted, the tenant - * resource state is set to DELETED. To permanently remove resource metadata, - * call the `RemoveTenantProject` method. New resources with the same tag can't - * be added if there are existing resources in a DELETED state. Operation. - * (tenancyUnits.deleteProject) - * - * @param string $name Name of the tenancy unit. Such as - * 'services/service.googleapis.com/projects/12345/tenancyUnits/abcd'. - * @param Google_Service_ServiceConsumerManagement_DeleteTenantProjectRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceConsumerManagement_Operation - */ - public function deleteProject($name, Google_Service_ServiceConsumerManagement_DeleteTenantProjectRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('deleteProject', array($params), "Google_Service_ServiceConsumerManagement_Operation"); - } - /** - * Find the tenancy unit for a managed service and service consumer. This method - * shouldn't be used in a service producer's runtime path, for example to find - * the tenant project number when creating VMs. Service producers must persist - * the tenant project's information after the project is created. - * (tenancyUnits.listServicesTenancyUnits) - * - * @param string $parent Managed service and service consumer. Required. - * services/{service}/{collection id}/{resource id} {collection id} is the cloud - * resource collection type representing the service consumer, for example - * 'projects', or 'organizations'. {resource id} is the consumer numeric id, - * such as project number: '123456'. {service} the name of a service, such as - * 'service.googleapis.com'. - * @param array $optParams Optional parameters. - * - * @opt_param string filter Filter expression over tenancy resources field. - * Optional. - * @opt_param string pageToken The continuation token, which is used to page - * through large result sets. To get the next page of results, set this - * parameter to the value of `nextPageToken` from the previous response. - * @opt_param int pageSize The maximum number of results returned by this - * request. - * @return Google_Service_ServiceConsumerManagement_ListTenancyUnitsResponse - */ - public function listServicesTenancyUnits($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_ServiceConsumerManagement_ListTenancyUnitsResponse"); - } - /** - * Removes the specified project resource identified by a tenant resource tag. - * The method removes the project lien with 'TenantManager' origin if that was - * added. It then attempts to delete the project. If that operation fails, this - * method also fails. Calls to remove already removed or non-existent tenant - * project succeed. After the project has been deleted, or if was already in a - * DELETED state, resource metadata is permanently removed from the tenancy - * unit. Operation. (tenancyUnits.removeProject) - * - * @param string $name Name of the tenancy unit. Such as - * 'services/service.googleapis.com/projects/12345/tenancyUnits/abcd'. - * @param Google_Service_ServiceConsumerManagement_RemoveTenantProjectRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceConsumerManagement_Operation - */ - public function removeProject($name, Google_Service_ServiceConsumerManagement_RemoveTenantProjectRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('removeProject', array($params), "Google_Service_ServiceConsumerManagement_Operation"); - } - /** - * Attempts to undelete a previously deleted tenant project. The project must be - * in a DELETED state. There are no guarantees that an undeleted project will be - * in a fully restored and functional state. Call the `ApplyTenantProjectConfig` - * method to update its configuration and then validate all managed service - * resources. Operation. (tenancyUnits.undeleteProject) - * - * @param string $name Name of the tenancy unit. Such as - * 'services/service.googleapis.com/projects/12345/tenancyUnits/abcd'. - * @param Google_Service_ServiceConsumerManagement_UndeleteTenantProjectRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceConsumerManagement_Operation - */ - public function undeleteProject($name, Google_Service_ServiceConsumerManagement_UndeleteTenantProjectRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('undeleteProject', array($params), "Google_Service_ServiceConsumerManagement_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/SearchTenancyUnitsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/SearchTenancyUnitsResponse.php deleted file mode 100644 index e2a47ad0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/SearchTenancyUnitsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_ServiceConsumerManagement_TenancyUnit - */ - public function setTenancyUnits($tenancyUnits) - { - $this->tenancyUnits = $tenancyUnits; - } - /** - * @return Google_Service_ServiceConsumerManagement_TenancyUnit - */ - public function getTenancyUnits() - { - return $this->tenancyUnits; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Service.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Service.php deleted file mode 100644 index c2414a76..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Service.php +++ /dev/null @@ -1,419 +0,0 @@ -apis = $apis; - } - /** - * @return Google_Service_ServiceConsumerManagement_Api - */ - public function getApis() - { - return $this->apis; - } - /** - * @param Google_Service_ServiceConsumerManagement_Authentication - */ - public function setAuthentication(Google_Service_ServiceConsumerManagement_Authentication $authentication) - { - $this->authentication = $authentication; - } - /** - * @return Google_Service_ServiceConsumerManagement_Authentication - */ - public function getAuthentication() - { - return $this->authentication; - } - /** - * @param Google_Service_ServiceConsumerManagement_Backend - */ - public function setBackend(Google_Service_ServiceConsumerManagement_Backend $backend) - { - $this->backend = $backend; - } - /** - * @return Google_Service_ServiceConsumerManagement_Backend - */ - public function getBackend() - { - return $this->backend; - } - /** - * @param Google_Service_ServiceConsumerManagement_Billing - */ - public function setBilling(Google_Service_ServiceConsumerManagement_Billing $billing) - { - $this->billing = $billing; - } - /** - * @return Google_Service_ServiceConsumerManagement_Billing - */ - public function getBilling() - { - return $this->billing; - } - public function setConfigVersion($configVersion) - { - $this->configVersion = $configVersion; - } - public function getConfigVersion() - { - return $this->configVersion; - } - /** - * @param Google_Service_ServiceConsumerManagement_Context - */ - public function setContext(Google_Service_ServiceConsumerManagement_Context $context) - { - $this->context = $context; - } - /** - * @return Google_Service_ServiceConsumerManagement_Context - */ - public function getContext() - { - return $this->context; - } - /** - * @param Google_Service_ServiceConsumerManagement_Control - */ - public function setControl(Google_Service_ServiceConsumerManagement_Control $control) - { - $this->control = $control; - } - /** - * @return Google_Service_ServiceConsumerManagement_Control - */ - public function getControl() - { - return $this->control; - } - /** - * @param Google_Service_ServiceConsumerManagement_CustomError - */ - public function setCustomError(Google_Service_ServiceConsumerManagement_CustomError $customError) - { - $this->customError = $customError; - } - /** - * @return Google_Service_ServiceConsumerManagement_CustomError - */ - public function getCustomError() - { - return $this->customError; - } - /** - * @param Google_Service_ServiceConsumerManagement_Documentation - */ - public function setDocumentation(Google_Service_ServiceConsumerManagement_Documentation $documentation) - { - $this->documentation = $documentation; - } - /** - * @return Google_Service_ServiceConsumerManagement_Documentation - */ - public function getDocumentation() - { - return $this->documentation; - } - /** - * @param Google_Service_ServiceConsumerManagement_Endpoint - */ - public function setEndpoints($endpoints) - { - $this->endpoints = $endpoints; - } - /** - * @return Google_Service_ServiceConsumerManagement_Endpoint - */ - public function getEndpoints() - { - return $this->endpoints; - } - /** - * @param Google_Service_ServiceConsumerManagement_Enum - */ - public function setEnums($enums) - { - $this->enums = $enums; - } - /** - * @return Google_Service_ServiceConsumerManagement_Enum - */ - public function getEnums() - { - return $this->enums; - } - /** - * @param Google_Service_ServiceConsumerManagement_Http - */ - public function setHttp(Google_Service_ServiceConsumerManagement_Http $http) - { - $this->http = $http; - } - /** - * @return Google_Service_ServiceConsumerManagement_Http - */ - public function getHttp() - { - return $this->http; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_ServiceConsumerManagement_Logging - */ - public function setLogging(Google_Service_ServiceConsumerManagement_Logging $logging) - { - $this->logging = $logging; - } - /** - * @return Google_Service_ServiceConsumerManagement_Logging - */ - public function getLogging() - { - return $this->logging; - } - /** - * @param Google_Service_ServiceConsumerManagement_LogDescriptor - */ - public function setLogs($logs) - { - $this->logs = $logs; - } - /** - * @return Google_Service_ServiceConsumerManagement_LogDescriptor - */ - public function getLogs() - { - return $this->logs; - } - /** - * @param Google_Service_ServiceConsumerManagement_MetricDescriptor - */ - public function setMetrics($metrics) - { - $this->metrics = $metrics; - } - /** - * @return Google_Service_ServiceConsumerManagement_MetricDescriptor - */ - public function getMetrics() - { - return $this->metrics; - } - /** - * @param Google_Service_ServiceConsumerManagement_MonitoredResourceDescriptor - */ - public function setMonitoredResources($monitoredResources) - { - $this->monitoredResources = $monitoredResources; - } - /** - * @return Google_Service_ServiceConsumerManagement_MonitoredResourceDescriptor - */ - public function getMonitoredResources() - { - return $this->monitoredResources; - } - /** - * @param Google_Service_ServiceConsumerManagement_Monitoring - */ - public function setMonitoring(Google_Service_ServiceConsumerManagement_Monitoring $monitoring) - { - $this->monitoring = $monitoring; - } - /** - * @return Google_Service_ServiceConsumerManagement_Monitoring - */ - public function getMonitoring() - { - return $this->monitoring; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setProducerProjectId($producerProjectId) - { - $this->producerProjectId = $producerProjectId; - } - public function getProducerProjectId() - { - return $this->producerProjectId; - } - /** - * @param Google_Service_ServiceConsumerManagement_Quota - */ - public function setQuota(Google_Service_ServiceConsumerManagement_Quota $quota) - { - $this->quota = $quota; - } - /** - * @return Google_Service_ServiceConsumerManagement_Quota - */ - public function getQuota() - { - return $this->quota; - } - /** - * @param Google_Service_ServiceConsumerManagement_SourceInfo - */ - public function setSourceInfo(Google_Service_ServiceConsumerManagement_SourceInfo $sourceInfo) - { - $this->sourceInfo = $sourceInfo; - } - /** - * @return Google_Service_ServiceConsumerManagement_SourceInfo - */ - public function getSourceInfo() - { - return $this->sourceInfo; - } - /** - * @param Google_Service_ServiceConsumerManagement_SystemParameters - */ - public function setSystemParameters(Google_Service_ServiceConsumerManagement_SystemParameters $systemParameters) - { - $this->systemParameters = $systemParameters; - } - /** - * @return Google_Service_ServiceConsumerManagement_SystemParameters - */ - public function getSystemParameters() - { - return $this->systemParameters; - } - /** - * @param Google_Service_ServiceConsumerManagement_Type - */ - public function setSystemTypes($systemTypes) - { - $this->systemTypes = $systemTypes; - } - /** - * @return Google_Service_ServiceConsumerManagement_Type - */ - public function getSystemTypes() - { - return $this->systemTypes; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - /** - * @param Google_Service_ServiceConsumerManagement_Type - */ - public function setTypes($types) - { - $this->types = $types; - } - /** - * @return Google_Service_ServiceConsumerManagement_Type - */ - public function getTypes() - { - return $this->types; - } - /** - * @param Google_Service_ServiceConsumerManagement_Usage - */ - public function setUsage(Google_Service_ServiceConsumerManagement_Usage $usage) - { - $this->usage = $usage; - } - /** - * @return Google_Service_ServiceConsumerManagement_Usage - */ - public function getUsage() - { - return $this->usage; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/ServiceAccountConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/ServiceAccountConfig.php deleted file mode 100644 index ba362209..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/ServiceAccountConfig.php +++ /dev/null @@ -1,40 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setTenantProjectRoles($tenantProjectRoles) - { - $this->tenantProjectRoles = $tenantProjectRoles; - } - public function getTenantProjectRoles() - { - return $this->tenantProjectRoles; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/ServiceIdentity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/ServiceIdentity.php deleted file mode 100644 index e88aa8a2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/ServiceIdentity.php +++ /dev/null @@ -1,48 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setServiceAccountParent($serviceAccountParent) - { - $this->serviceAccountParent = $serviceAccountParent; - } - public function getServiceAccountParent() - { - return $this->serviceAccountParent; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/ServiceconsumermanagementEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/ServiceconsumermanagementEmpty.php deleted file mode 100644 index e27d0832..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/ServiceconsumermanagementEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -fileName = $fileName; - } - public function getFileName() - { - return $this->fileName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/SourceInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/SourceInfo.php deleted file mode 100644 index 355b833c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/SourceInfo.php +++ /dev/null @@ -1,31 +0,0 @@ -sourceFiles = $sourceFiles; - } - public function getSourceFiles() - { - return $this->sourceFiles; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Status.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Status.php deleted file mode 100644 index 197f2cdf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Status.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/SystemParameter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/SystemParameter.php deleted file mode 100644 index ac51f428..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/SystemParameter.php +++ /dev/null @@ -1,48 +0,0 @@ -httpHeader = $httpHeader; - } - public function getHttpHeader() - { - return $this->httpHeader; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setUrlQueryParameter($urlQueryParameter) - { - $this->urlQueryParameter = $urlQueryParameter; - } - public function getUrlQueryParameter() - { - return $this->urlQueryParameter; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/SystemParameterRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/SystemParameterRule.php deleted file mode 100644 index dc48cd51..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/SystemParameterRule.php +++ /dev/null @@ -1,47 +0,0 @@ -parameters = $parameters; - } - /** - * @return Google_Service_ServiceConsumerManagement_SystemParameter - */ - public function getParameters() - { - return $this->parameters; - } - public function setSelector($selector) - { - $this->selector = $selector; - } - public function getSelector() - { - return $this->selector; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/SystemParameters.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/SystemParameters.php deleted file mode 100644 index cfe54e51..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/SystemParameters.php +++ /dev/null @@ -1,38 +0,0 @@ -rules = $rules; - } - /** - * @return Google_Service_ServiceConsumerManagement_SystemParameterRule - */ - public function getRules() - { - return $this->rules; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/TenancyUnit.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/TenancyUnit.php deleted file mode 100644 index b8c32ef5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/TenancyUnit.php +++ /dev/null @@ -1,74 +0,0 @@ -consumer = $consumer; - } - public function getConsumer() - { - return $this->consumer; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setService($service) - { - $this->service = $service; - } - public function getService() - { - return $this->service; - } - /** - * @param Google_Service_ServiceConsumerManagement_TenantResource - */ - public function setTenantResources($tenantResources) - { - $this->tenantResources = $tenantResources; - } - /** - * @return Google_Service_ServiceConsumerManagement_TenantResource - */ - public function getTenantResources() - { - return $this->tenantResources; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/TenantProjectConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/TenantProjectConfig.php deleted file mode 100644 index a1836444..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/TenantProjectConfig.php +++ /dev/null @@ -1,97 +0,0 @@ -billingConfig = $billingConfig; - } - /** - * @return Google_Service_ServiceConsumerManagement_BillingConfig - */ - public function getBillingConfig() - { - return $this->billingConfig; - } - public function setFolder($folder) - { - $this->folder = $folder; - } - public function getFolder() - { - return $this->folder; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - /** - * @param Google_Service_ServiceConsumerManagement_ServiceAccountConfig - */ - public function setServiceAccountConfig(Google_Service_ServiceConsumerManagement_ServiceAccountConfig $serviceAccountConfig) - { - $this->serviceAccountConfig = $serviceAccountConfig; - } - /** - * @return Google_Service_ServiceConsumerManagement_ServiceAccountConfig - */ - public function getServiceAccountConfig() - { - return $this->serviceAccountConfig; - } - public function setServices($services) - { - $this->services = $services; - } - public function getServices() - { - return $this->services; - } - /** - * @param Google_Service_ServiceConsumerManagement_TenantProjectPolicy - */ - public function setTenantProjectPolicy(Google_Service_ServiceConsumerManagement_TenantProjectPolicy $tenantProjectPolicy) - { - $this->tenantProjectPolicy = $tenantProjectPolicy; - } - /** - * @return Google_Service_ServiceConsumerManagement_TenantProjectPolicy - */ - public function getTenantProjectPolicy() - { - return $this->tenantProjectPolicy; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/TenantProjectPolicy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/TenantProjectPolicy.php deleted file mode 100644 index 6be02ea5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/TenantProjectPolicy.php +++ /dev/null @@ -1,38 +0,0 @@ -policyBindings = $policyBindings; - } - /** - * @return Google_Service_ServiceConsumerManagement_PolicyBinding - */ - public function getPolicyBindings() - { - return $this->policyBindings; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/TenantResource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/TenantResource.php deleted file mode 100644 index 7d290d09..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/TenantResource.php +++ /dev/null @@ -1,48 +0,0 @@ -resource = $resource; - } - public function getResource() - { - return $this->resource; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setTag($tag) - { - $this->tag = $tag; - } - public function getTag() - { - return $this->tag; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Type.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Type.php deleted file mode 100644 index f684385c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Type.php +++ /dev/null @@ -1,97 +0,0 @@ -fields = $fields; - } - /** - * @return Google_Service_ServiceConsumerManagement_Field - */ - public function getFields() - { - return $this->fields; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOneofs($oneofs) - { - $this->oneofs = $oneofs; - } - public function getOneofs() - { - return $this->oneofs; - } - /** - * @param Google_Service_ServiceConsumerManagement_Option - */ - public function setOptions($options) - { - $this->options = $options; - } - /** - * @return Google_Service_ServiceConsumerManagement_Option - */ - public function getOptions() - { - return $this->options; - } - /** - * @param Google_Service_ServiceConsumerManagement_SourceContext - */ - public function setSourceContext(Google_Service_ServiceConsumerManagement_SourceContext $sourceContext) - { - $this->sourceContext = $sourceContext; - } - /** - * @return Google_Service_ServiceConsumerManagement_SourceContext - */ - public function getSourceContext() - { - return $this->sourceContext; - } - public function setSyntax($syntax) - { - $this->syntax = $syntax; - } - public function getSyntax() - { - return $this->syntax; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/UndeleteTenantProjectRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/UndeleteTenantProjectRequest.php deleted file mode 100644 index 3ccb64e4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/UndeleteTenantProjectRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -tag = $tag; - } - public function getTag() - { - return $this->tag; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Usage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Usage.php deleted file mode 100644 index 3ce2c4fa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/Usage.php +++ /dev/null @@ -1,72 +0,0 @@ -producerNotificationChannel = $producerNotificationChannel; - } - public function getProducerNotificationChannel() - { - return $this->producerNotificationChannel; - } - public function setRequirements($requirements) - { - $this->requirements = $requirements; - } - public function getRequirements() - { - return $this->requirements; - } - /** - * @param Google_Service_ServiceConsumerManagement_UsageRule - */ - public function setRules($rules) - { - $this->rules = $rules; - } - /** - * @return Google_Service_ServiceConsumerManagement_UsageRule - */ - public function getRules() - { - return $this->rules; - } - /** - * @param Google_Service_ServiceConsumerManagement_ServiceIdentity - */ - public function setServiceIdentity(Google_Service_ServiceConsumerManagement_ServiceIdentity $serviceIdentity) - { - $this->serviceIdentity = $serviceIdentity; - } - /** - * @return Google_Service_ServiceConsumerManagement_ServiceIdentity - */ - public function getServiceIdentity() - { - return $this->serviceIdentity; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/UsageRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/UsageRule.php deleted file mode 100644 index 1740e5ec..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/UsageRule.php +++ /dev/null @@ -1,48 +0,0 @@ -allowUnregisteredCalls = $allowUnregisteredCalls; - } - public function getAllowUnregisteredCalls() - { - return $this->allowUnregisteredCalls; - } - public function setSelector($selector) - { - $this->selector = $selector; - } - public function getSelector() - { - return $this->selector; - } - public function setSkipServiceControl($skipServiceControl) - { - $this->skipServiceControl = $skipServiceControl; - } - public function getSkipServiceControl() - { - return $this->skipServiceControl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/V1AddVisibilityLabelsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/V1AddVisibilityLabelsResponse.php deleted file mode 100644 index ce0e029c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/V1AddVisibilityLabelsResponse.php +++ /dev/null @@ -1,31 +0,0 @@ -labels = $labels; - } - public function getLabels() - { - return $this->labels; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/V1Beta1BatchCreateProducerOverridesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/V1Beta1BatchCreateProducerOverridesResponse.php deleted file mode 100644 index 7c3218dd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/V1Beta1BatchCreateProducerOverridesResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -overrides = $overrides; - } - /** - * @return Google_Service_ServiceConsumerManagement_V1Beta1QuotaOverride - */ - public function getOverrides() - { - return $this->overrides; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/V1Beta1DisableConsumerResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/V1Beta1DisableConsumerResponse.php deleted file mode 100644 index cebb2045..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/V1Beta1DisableConsumerResponse.php +++ /dev/null @@ -1,20 +0,0 @@ -identity = $identity; - } - /** - * @return Google_Service_ServiceConsumerManagement_V1Beta1ServiceIdentity - */ - public function getIdentity() - { - return $this->identity; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/V1Beta1ImportProducerOverridesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/V1Beta1ImportProducerOverridesResponse.php deleted file mode 100644 index 4fc96275..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/V1Beta1ImportProducerOverridesResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -overrides = $overrides; - } - /** - * @return Google_Service_ServiceConsumerManagement_V1Beta1QuotaOverride - */ - public function getOverrides() - { - return $this->overrides; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/V1Beta1QuotaOverride.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/V1Beta1QuotaOverride.php deleted file mode 100644 index 068907f7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/V1Beta1QuotaOverride.php +++ /dev/null @@ -1,66 +0,0 @@ -dimensions = $dimensions; - } - public function getDimensions() - { - return $this->dimensions; - } - public function setMetric($metric) - { - $this->metric = $metric; - } - public function getMetric() - { - return $this->metric; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOverrideValue($overrideValue) - { - $this->overrideValue = $overrideValue; - } - public function getOverrideValue() - { - return $this->overrideValue; - } - public function setUnit($unit) - { - $this->unit = $unit; - } - public function getUnit() - { - return $this->unit; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/V1Beta1RefreshConsumerResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/V1Beta1RefreshConsumerResponse.php deleted file mode 100644 index 96a3a339..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/V1Beta1RefreshConsumerResponse.php +++ /dev/null @@ -1,20 +0,0 @@ -email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setTag($tag) - { - $this->tag = $tag; - } - public function getTag() - { - return $this->tag; - } - public function setUniqueId($uniqueId) - { - $this->uniqueId = $uniqueId; - } - public function getUniqueId() - { - return $this->uniqueId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/V1DefaultIdentity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/V1DefaultIdentity.php deleted file mode 100644 index 1cec2bf0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/V1DefaultIdentity.php +++ /dev/null @@ -1,48 +0,0 @@ -email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setUniqueId($uniqueId) - { - $this->uniqueId = $uniqueId; - } - public function getUniqueId() - { - return $this->uniqueId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/V1DisableConsumerResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/V1DisableConsumerResponse.php deleted file mode 100644 index 7adaea1e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/V1DisableConsumerResponse.php +++ /dev/null @@ -1,20 +0,0 @@ -attachStatus = $attachStatus; - } - public function getAttachStatus() - { - return $this->attachStatus; - } - /** - * @param Google_Service_ServiceConsumerManagement_V1DefaultIdentity - */ - public function setIdentity(Google_Service_ServiceConsumerManagement_V1DefaultIdentity $identity) - { - $this->identity = $identity; - } - /** - * @return Google_Service_ServiceConsumerManagement_V1DefaultIdentity - */ - public function getIdentity() - { - return $this->identity; - } - public function setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/V1GenerateServiceAccountResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/V1GenerateServiceAccountResponse.php deleted file mode 100644 index 0413ffdb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/V1GenerateServiceAccountResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -account = $account; - } - /** - * @return Google_Service_ServiceConsumerManagement_V1ServiceAccount - */ - public function getAccount() - { - return $this->account; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/V1RefreshConsumerResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/V1RefreshConsumerResponse.php deleted file mode 100644 index 6f8d0d79..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/V1RefreshConsumerResponse.php +++ /dev/null @@ -1,20 +0,0 @@ -labels = $labels; - } - public function getLabels() - { - return $this->labels; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/V1ServiceAccount.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/V1ServiceAccount.php deleted file mode 100644 index 80558318..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceConsumerManagement/V1ServiceAccount.php +++ /dev/null @@ -1,66 +0,0 @@ -email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setIamAccountName($iamAccountName) - { - $this->iamAccountName = $iamAccountName; - } - public function getIamAccountName() - { - return $this->iamAccountName; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setTag($tag) - { - $this->tag = $tag; - } - public function getTag() - { - return $this->tag; - } - public function setUniqueId($uniqueId) - { - $this->uniqueId = $uniqueId; - } - public function getUniqueId() - { - return $this->uniqueId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl.php deleted file mode 100644 index a84073fa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl.php +++ /dev/null @@ -1,99 +0,0 @@ - - * Provides control plane functionality to managed services, such as logging, - * monitoring, and status checks.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_ServiceControl extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** Manage your Google Service Control data. */ - const SERVICECONTROL = - "https://www.googleapis.com/auth/servicecontrol"; - - public $services; - - /** - * Constructs the internal representation of the ServiceControl service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://servicecontrol.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'servicecontrol'; - - $this->services = new Google_Service_ServiceControl_Resource_Services( - $this, - $this->serviceName, - 'services', - array( - 'methods' => array( - 'allocateQuota' => array( - 'path' => 'v1/services/{serviceName}:allocateQuota', - 'httpMethod' => 'POST', - 'parameters' => array( - 'serviceName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'check' => array( - 'path' => 'v1/services/{serviceName}:check', - 'httpMethod' => 'POST', - 'parameters' => array( - 'serviceName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'report' => array( - 'path' => 'v1/services/{serviceName}:report', - 'httpMethod' => 'POST', - 'parameters' => array( - 'serviceName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/AllocateInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/AllocateInfo.php deleted file mode 100644 index 7d39dd88..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/AllocateInfo.php +++ /dev/null @@ -1,31 +0,0 @@ -unusedArguments = $unusedArguments; - } - public function getUnusedArguments() - { - return $this->unusedArguments; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/AllocateQuotaRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/AllocateQuotaRequest.php deleted file mode 100644 index 3516d1bc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/AllocateQuotaRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -allocateOperation = $allocateOperation; - } - /** - * @return Google_Service_ServiceControl_QuotaOperation - */ - public function getAllocateOperation() - { - return $this->allocateOperation; - } - public function setServiceConfigId($serviceConfigId) - { - $this->serviceConfigId = $serviceConfigId; - } - public function getServiceConfigId() - { - return $this->serviceConfigId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/AllocateQuotaResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/AllocateQuotaResponse.php deleted file mode 100644 index 5f2c2958..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/AllocateQuotaResponse.php +++ /dev/null @@ -1,88 +0,0 @@ -allocateErrors = $allocateErrors; - } - /** - * @return Google_Service_ServiceControl_QuotaError - */ - public function getAllocateErrors() - { - return $this->allocateErrors; - } - /** - * @param Google_Service_ServiceControl_AllocateInfo - */ - public function setAllocateInfo(Google_Service_ServiceControl_AllocateInfo $allocateInfo) - { - $this->allocateInfo = $allocateInfo; - } - /** - * @return Google_Service_ServiceControl_AllocateInfo - */ - public function getAllocateInfo() - { - return $this->allocateInfo; - } - public function setOperationId($operationId) - { - $this->operationId = $operationId; - } - public function getOperationId() - { - return $this->operationId; - } - /** - * @param Google_Service_ServiceControl_MetricValueSet - */ - public function setQuotaMetrics($quotaMetrics) - { - $this->quotaMetrics = $quotaMetrics; - } - /** - * @return Google_Service_ServiceControl_MetricValueSet - */ - public function getQuotaMetrics() - { - return $this->quotaMetrics; - } - public function setServiceConfigId($serviceConfigId) - { - $this->serviceConfigId = $serviceConfigId; - } - public function getServiceConfigId() - { - return $this->serviceConfigId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/AttributeValue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/AttributeValue.php deleted file mode 100644 index 5d613eeb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/AttributeValue.php +++ /dev/null @@ -1,55 +0,0 @@ -boolValue = $boolValue; - } - public function getBoolValue() - { - return $this->boolValue; - } - public function setIntValue($intValue) - { - $this->intValue = $intValue; - } - public function getIntValue() - { - return $this->intValue; - } - /** - * @param Google_Service_ServiceControl_TruncatableString - */ - public function setStringValue(Google_Service_ServiceControl_TruncatableString $stringValue) - { - $this->stringValue = $stringValue; - } - /** - * @return Google_Service_ServiceControl_TruncatableString - */ - public function getStringValue() - { - return $this->stringValue; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/Attributes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/Attributes.php deleted file mode 100644 index 60d8c68d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/Attributes.php +++ /dev/null @@ -1,46 +0,0 @@ -attributeMap = $attributeMap; - } - /** - * @return Google_Service_ServiceControl_AttributeValue - */ - public function getAttributeMap() - { - return $this->attributeMap; - } - public function setDroppedAttributesCount($droppedAttributesCount) - { - $this->droppedAttributesCount = $droppedAttributesCount; - } - public function getDroppedAttributesCount() - { - return $this->droppedAttributesCount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/AuditLog.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/AuditLog.php deleted file mode 100644 index c3d30d04..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/AuditLog.php +++ /dev/null @@ -1,183 +0,0 @@ -authenticationInfo = $authenticationInfo; - } - /** - * @return Google_Service_ServiceControl_AuthenticationInfo - */ - public function getAuthenticationInfo() - { - return $this->authenticationInfo; - } - /** - * @param Google_Service_ServiceControl_AuthorizationInfo - */ - public function setAuthorizationInfo($authorizationInfo) - { - $this->authorizationInfo = $authorizationInfo; - } - /** - * @return Google_Service_ServiceControl_AuthorizationInfo - */ - public function getAuthorizationInfo() - { - return $this->authorizationInfo; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setMethodName($methodName) - { - $this->methodName = $methodName; - } - public function getMethodName() - { - return $this->methodName; - } - public function setNumResponseItems($numResponseItems) - { - $this->numResponseItems = $numResponseItems; - } - public function getNumResponseItems() - { - return $this->numResponseItems; - } - public function setRequest($request) - { - $this->request = $request; - } - public function getRequest() - { - return $this->request; - } - /** - * @param Google_Service_ServiceControl_RequestMetadata - */ - public function setRequestMetadata(Google_Service_ServiceControl_RequestMetadata $requestMetadata) - { - $this->requestMetadata = $requestMetadata; - } - /** - * @return Google_Service_ServiceControl_RequestMetadata - */ - public function getRequestMetadata() - { - return $this->requestMetadata; - } - /** - * @param Google_Service_ServiceControl_ResourceLocation - */ - public function setResourceLocation(Google_Service_ServiceControl_ResourceLocation $resourceLocation) - { - $this->resourceLocation = $resourceLocation; - } - /** - * @return Google_Service_ServiceControl_ResourceLocation - */ - public function getResourceLocation() - { - return $this->resourceLocation; - } - public function setResourceName($resourceName) - { - $this->resourceName = $resourceName; - } - public function getResourceName() - { - return $this->resourceName; - } - public function setResourceOriginalState($resourceOriginalState) - { - $this->resourceOriginalState = $resourceOriginalState; - } - public function getResourceOriginalState() - { - return $this->resourceOriginalState; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } - public function setServiceData($serviceData) - { - $this->serviceData = $serviceData; - } - public function getServiceData() - { - return $this->serviceData; - } - public function setServiceName($serviceName) - { - $this->serviceName = $serviceName; - } - public function getServiceName() - { - return $this->serviceName; - } - /** - * @param Google_Service_ServiceControl_Status - */ - public function setStatus(Google_Service_ServiceControl_Status $status) - { - $this->status = $status; - } - /** - * @return Google_Service_ServiceControl_Status - */ - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/Auth.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/Auth.php deleted file mode 100644 index d3a91014..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/Auth.php +++ /dev/null @@ -1,67 +0,0 @@ -accessLevels = $accessLevels; - } - public function getAccessLevels() - { - return $this->accessLevels; - } - public function setAudiences($audiences) - { - $this->audiences = $audiences; - } - public function getAudiences() - { - return $this->audiences; - } - public function setClaims($claims) - { - $this->claims = $claims; - } - public function getClaims() - { - return $this->claims; - } - public function setPresenter($presenter) - { - $this->presenter = $presenter; - } - public function getPresenter() - { - return $this->presenter; - } - public function setPrincipal($principal) - { - $this->principal = $principal; - } - public function getPrincipal() - { - return $this->principal; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/AuthenticationInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/AuthenticationInfo.php deleted file mode 100644 index 99bad515..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/AuthenticationInfo.php +++ /dev/null @@ -1,83 +0,0 @@ -authoritySelector = $authoritySelector; - } - public function getAuthoritySelector() - { - return $this->authoritySelector; - } - public function setPrincipalEmail($principalEmail) - { - $this->principalEmail = $principalEmail; - } - public function getPrincipalEmail() - { - return $this->principalEmail; - } - public function setPrincipalSubject($principalSubject) - { - $this->principalSubject = $principalSubject; - } - public function getPrincipalSubject() - { - return $this->principalSubject; - } - /** - * @param Google_Service_ServiceControl_ServiceAccountDelegationInfo - */ - public function setServiceAccountDelegationInfo($serviceAccountDelegationInfo) - { - $this->serviceAccountDelegationInfo = $serviceAccountDelegationInfo; - } - /** - * @return Google_Service_ServiceControl_ServiceAccountDelegationInfo - */ - public function getServiceAccountDelegationInfo() - { - return $this->serviceAccountDelegationInfo; - } - public function setServiceAccountKeyName($serviceAccountKeyName) - { - $this->serviceAccountKeyName = $serviceAccountKeyName; - } - public function getServiceAccountKeyName() - { - return $this->serviceAccountKeyName; - } - public function setThirdPartyPrincipal($thirdPartyPrincipal) - { - $this->thirdPartyPrincipal = $thirdPartyPrincipal; - } - public function getThirdPartyPrincipal() - { - return $this->thirdPartyPrincipal; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/AuthorizationInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/AuthorizationInfo.php deleted file mode 100644 index a77d4ddc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/AuthorizationInfo.php +++ /dev/null @@ -1,64 +0,0 @@ -granted = $granted; - } - public function getGranted() - { - return $this->granted; - } - public function setPermission($permission) - { - $this->permission = $permission; - } - public function getPermission() - { - return $this->permission; - } - public function setResource($resource) - { - $this->resource = $resource; - } - public function getResource() - { - return $this->resource; - } - /** - * @param Google_Service_ServiceControl_ServicecontrolResource - */ - public function setResourceAttributes(Google_Service_ServiceControl_ServicecontrolResource $resourceAttributes) - { - $this->resourceAttributes = $resourceAttributes; - } - /** - * @return Google_Service_ServiceControl_ServicecontrolResource - */ - public function getResourceAttributes() - { - return $this->resourceAttributes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/CheckError.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/CheckError.php deleted file mode 100644 index c6f4379d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/CheckError.php +++ /dev/null @@ -1,64 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetail($detail) - { - $this->detail = $detail; - } - public function getDetail() - { - return $this->detail; - } - /** - * @param Google_Service_ServiceControl_Status - */ - public function setStatus(Google_Service_ServiceControl_Status $status) - { - $this->status = $status; - } - /** - * @return Google_Service_ServiceControl_Status - */ - public function getStatus() - { - return $this->status; - } - public function setSubject($subject) - { - $this->subject = $subject; - } - public function getSubject() - { - return $this->subject; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/CheckInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/CheckInfo.php deleted file mode 100644 index 0c643e5c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/CheckInfo.php +++ /dev/null @@ -1,47 +0,0 @@ -consumerInfo = $consumerInfo; - } - /** - * @return Google_Service_ServiceControl_ConsumerInfo - */ - public function getConsumerInfo() - { - return $this->consumerInfo; - } - public function setUnusedArguments($unusedArguments) - { - $this->unusedArguments = $unusedArguments; - } - public function getUnusedArguments() - { - return $this->unusedArguments; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/CheckRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/CheckRequest.php deleted file mode 100644 index 7d2ea5fb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/CheckRequest.php +++ /dev/null @@ -1,64 +0,0 @@ -operation = $operation; - } - /** - * @return Google_Service_ServiceControl_Operation - */ - public function getOperation() - { - return $this->operation; - } - public function setRequestProjectSettings($requestProjectSettings) - { - $this->requestProjectSettings = $requestProjectSettings; - } - public function getRequestProjectSettings() - { - return $this->requestProjectSettings; - } - public function setServiceConfigId($serviceConfigId) - { - $this->serviceConfigId = $serviceConfigId; - } - public function getServiceConfigId() - { - return $this->serviceConfigId; - } - public function setSkipActivationCheck($skipActivationCheck) - { - $this->skipActivationCheck = $skipActivationCheck; - } - public function getSkipActivationCheck() - { - return $this->skipActivationCheck; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/CheckResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/CheckResponse.php deleted file mode 100644 index ebf47e2d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/CheckResponse.php +++ /dev/null @@ -1,97 +0,0 @@ -checkErrors = $checkErrors; - } - /** - * @return Google_Service_ServiceControl_CheckError - */ - public function getCheckErrors() - { - return $this->checkErrors; - } - /** - * @param Google_Service_ServiceControl_CheckInfo - */ - public function setCheckInfo(Google_Service_ServiceControl_CheckInfo $checkInfo) - { - $this->checkInfo = $checkInfo; - } - /** - * @return Google_Service_ServiceControl_CheckInfo - */ - public function getCheckInfo() - { - return $this->checkInfo; - } - public function setOperationId($operationId) - { - $this->operationId = $operationId; - } - public function getOperationId() - { - return $this->operationId; - } - /** - * @param Google_Service_ServiceControl_QuotaInfo - */ - public function setQuotaInfo(Google_Service_ServiceControl_QuotaInfo $quotaInfo) - { - $this->quotaInfo = $quotaInfo; - } - /** - * @return Google_Service_ServiceControl_QuotaInfo - */ - public function getQuotaInfo() - { - return $this->quotaInfo; - } - public function setServiceConfigId($serviceConfigId) - { - $this->serviceConfigId = $serviceConfigId; - } - public function getServiceConfigId() - { - return $this->serviceConfigId; - } - public function setServiceRolloutId($serviceRolloutId) - { - $this->serviceRolloutId = $serviceRolloutId; - } - public function getServiceRolloutId() - { - return $this->serviceRolloutId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/ConsumerInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/ConsumerInfo.php deleted file mode 100644 index 21047cb9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/ConsumerInfo.php +++ /dev/null @@ -1,48 +0,0 @@ -consumerNumber = $consumerNumber; - } - public function getConsumerNumber() - { - return $this->consumerNumber; - } - public function setProjectNumber($projectNumber) - { - $this->projectNumber = $projectNumber; - } - public function getProjectNumber() - { - return $this->projectNumber; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/Distribution.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/Distribution.php deleted file mode 100644 index 4d3d4471..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/Distribution.php +++ /dev/null @@ -1,140 +0,0 @@ -bucketCounts = $bucketCounts; - } - public function getBucketCounts() - { - return $this->bucketCounts; - } - public function setCount($count) - { - $this->count = $count; - } - public function getCount() - { - return $this->count; - } - /** - * @param Google_Service_ServiceControl_Exemplar - */ - public function setExemplars($exemplars) - { - $this->exemplars = $exemplars; - } - /** - * @return Google_Service_ServiceControl_Exemplar - */ - public function getExemplars() - { - return $this->exemplars; - } - /** - * @param Google_Service_ServiceControl_ExplicitBuckets - */ - public function setExplicitBuckets(Google_Service_ServiceControl_ExplicitBuckets $explicitBuckets) - { - $this->explicitBuckets = $explicitBuckets; - } - /** - * @return Google_Service_ServiceControl_ExplicitBuckets - */ - public function getExplicitBuckets() - { - return $this->explicitBuckets; - } - /** - * @param Google_Service_ServiceControl_ExponentialBuckets - */ - public function setExponentialBuckets(Google_Service_ServiceControl_ExponentialBuckets $exponentialBuckets) - { - $this->exponentialBuckets = $exponentialBuckets; - } - /** - * @return Google_Service_ServiceControl_ExponentialBuckets - */ - public function getExponentialBuckets() - { - return $this->exponentialBuckets; - } - /** - * @param Google_Service_ServiceControl_LinearBuckets - */ - public function setLinearBuckets(Google_Service_ServiceControl_LinearBuckets $linearBuckets) - { - $this->linearBuckets = $linearBuckets; - } - /** - * @return Google_Service_ServiceControl_LinearBuckets - */ - public function getLinearBuckets() - { - return $this->linearBuckets; - } - public function setMaximum($maximum) - { - $this->maximum = $maximum; - } - public function getMaximum() - { - return $this->maximum; - } - public function setMean($mean) - { - $this->mean = $mean; - } - public function getMean() - { - return $this->mean; - } - public function setMinimum($minimum) - { - $this->minimum = $minimum; - } - public function getMinimum() - { - return $this->minimum; - } - public function setSumOfSquaredDeviation($sumOfSquaredDeviation) - { - $this->sumOfSquaredDeviation = $sumOfSquaredDeviation; - } - public function getSumOfSquaredDeviation() - { - return $this->sumOfSquaredDeviation; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/Exemplar.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/Exemplar.php deleted file mode 100644 index 6dbc88d2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/Exemplar.php +++ /dev/null @@ -1,49 +0,0 @@ -attachments = $attachments; - } - public function getAttachments() - { - return $this->attachments; - } - public function setTimestamp($timestamp) - { - $this->timestamp = $timestamp; - } - public function getTimestamp() - { - return $this->timestamp; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/ExplicitBuckets.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/ExplicitBuckets.php deleted file mode 100644 index c4ed6941..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/ExplicitBuckets.php +++ /dev/null @@ -1,31 +0,0 @@ -bounds = $bounds; - } - public function getBounds() - { - return $this->bounds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/ExponentialBuckets.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/ExponentialBuckets.php deleted file mode 100644 index 51b51be4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/ExponentialBuckets.php +++ /dev/null @@ -1,48 +0,0 @@ -growthFactor = $growthFactor; - } - public function getGrowthFactor() - { - return $this->growthFactor; - } - public function setNumFiniteBuckets($numFiniteBuckets) - { - $this->numFiniteBuckets = $numFiniteBuckets; - } - public function getNumFiniteBuckets() - { - return $this->numFiniteBuckets; - } - public function setScale($scale) - { - $this->scale = $scale; - } - public function getScale() - { - return $this->scale; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/FirstPartyPrincipal.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/FirstPartyPrincipal.php deleted file mode 100644 index 00541c6a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/FirstPartyPrincipal.php +++ /dev/null @@ -1,39 +0,0 @@ -principalEmail = $principalEmail; - } - public function getPrincipalEmail() - { - return $this->principalEmail; - } - public function setServiceMetadata($serviceMetadata) - { - $this->serviceMetadata = $serviceMetadata; - } - public function getServiceMetadata() - { - return $this->serviceMetadata; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/HttpRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/HttpRequest.php deleted file mode 100644 index 05f408af..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/HttpRequest.php +++ /dev/null @@ -1,156 +0,0 @@ -cacheFillBytes = $cacheFillBytes; - } - public function getCacheFillBytes() - { - return $this->cacheFillBytes; - } - public function setCacheHit($cacheHit) - { - $this->cacheHit = $cacheHit; - } - public function getCacheHit() - { - return $this->cacheHit; - } - public function setCacheLookup($cacheLookup) - { - $this->cacheLookup = $cacheLookup; - } - public function getCacheLookup() - { - return $this->cacheLookup; - } - public function setCacheValidatedWithOriginServer($cacheValidatedWithOriginServer) - { - $this->cacheValidatedWithOriginServer = $cacheValidatedWithOriginServer; - } - public function getCacheValidatedWithOriginServer() - { - return $this->cacheValidatedWithOriginServer; - } - public function setLatency($latency) - { - $this->latency = $latency; - } - public function getLatency() - { - return $this->latency; - } - public function setProtocol($protocol) - { - $this->protocol = $protocol; - } - public function getProtocol() - { - return $this->protocol; - } - public function setReferer($referer) - { - $this->referer = $referer; - } - public function getReferer() - { - return $this->referer; - } - public function setRemoteIp($remoteIp) - { - $this->remoteIp = $remoteIp; - } - public function getRemoteIp() - { - return $this->remoteIp; - } - public function setRequestMethod($requestMethod) - { - $this->requestMethod = $requestMethod; - } - public function getRequestMethod() - { - return $this->requestMethod; - } - public function setRequestSize($requestSize) - { - $this->requestSize = $requestSize; - } - public function getRequestSize() - { - return $this->requestSize; - } - public function setRequestUrl($requestUrl) - { - $this->requestUrl = $requestUrl; - } - public function getRequestUrl() - { - return $this->requestUrl; - } - public function setResponseSize($responseSize) - { - $this->responseSize = $responseSize; - } - public function getResponseSize() - { - return $this->responseSize; - } - public function setServerIp($serverIp) - { - $this->serverIp = $serverIp; - } - public function getServerIp() - { - return $this->serverIp; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setUserAgent($userAgent) - { - $this->userAgent = $userAgent; - } - public function getUserAgent() - { - return $this->userAgent; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/LinearBuckets.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/LinearBuckets.php deleted file mode 100644 index 5a1815cd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/LinearBuckets.php +++ /dev/null @@ -1,48 +0,0 @@ -numFiniteBuckets = $numFiniteBuckets; - } - public function getNumFiniteBuckets() - { - return $this->numFiniteBuckets; - } - public function setOffset($offset) - { - $this->offset = $offset; - } - public function getOffset() - { - return $this->offset; - } - public function setWidth($width) - { - $this->width = $width; - } - public function getWidth() - { - return $this->width; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/LogEntry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/LogEntry.php deleted file mode 100644 index 1243272d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/LogEntry.php +++ /dev/null @@ -1,150 +0,0 @@ -httpRequest = $httpRequest; - } - /** - * @return Google_Service_ServiceControl_HttpRequest - */ - public function getHttpRequest() - { - return $this->httpRequest; - } - public function setInsertId($insertId) - { - $this->insertId = $insertId; - } - public function getInsertId() - { - return $this->insertId; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_ServiceControl_LogEntryOperation - */ - public function setOperation(Google_Service_ServiceControl_LogEntryOperation $operation) - { - $this->operation = $operation; - } - /** - * @return Google_Service_ServiceControl_LogEntryOperation - */ - public function getOperation() - { - return $this->operation; - } - public function setProtoPayload($protoPayload) - { - $this->protoPayload = $protoPayload; - } - public function getProtoPayload() - { - return $this->protoPayload; - } - public function setSeverity($severity) - { - $this->severity = $severity; - } - public function getSeverity() - { - return $this->severity; - } - /** - * @param Google_Service_ServiceControl_LogEntrySourceLocation - */ - public function setSourceLocation(Google_Service_ServiceControl_LogEntrySourceLocation $sourceLocation) - { - $this->sourceLocation = $sourceLocation; - } - /** - * @return Google_Service_ServiceControl_LogEntrySourceLocation - */ - public function getSourceLocation() - { - return $this->sourceLocation; - } - public function setStructPayload($structPayload) - { - $this->structPayload = $structPayload; - } - public function getStructPayload() - { - return $this->structPayload; - } - public function setTextPayload($textPayload) - { - $this->textPayload = $textPayload; - } - public function getTextPayload() - { - return $this->textPayload; - } - public function setTimestamp($timestamp) - { - $this->timestamp = $timestamp; - } - public function getTimestamp() - { - return $this->timestamp; - } - public function setTrace($trace) - { - $this->trace = $trace; - } - public function getTrace() - { - return $this->trace; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/LogEntryOperation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/LogEntryOperation.php deleted file mode 100644 index 09df6675..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/LogEntryOperation.php +++ /dev/null @@ -1,57 +0,0 @@ -first = $first; - } - public function getFirst() - { - return $this->first; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setLast($last) - { - $this->last = $last; - } - public function getLast() - { - return $this->last; - } - public function setProducer($producer) - { - $this->producer = $producer; - } - public function getProducer() - { - return $this->producer; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/LogEntrySourceLocation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/LogEntrySourceLocation.php deleted file mode 100644 index b00410d9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/LogEntrySourceLocation.php +++ /dev/null @@ -1,48 +0,0 @@ -file = $file; - } - public function getFile() - { - return $this->file; - } - public function setFunction($function) - { - $this->function = $function; - } - public function getFunction() - { - return $this->function; - } - public function setLine($line) - { - $this->line = $line; - } - public function getLine() - { - return $this->line; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/MetricValue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/MetricValue.php deleted file mode 100644 index 336b0d46..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/MetricValue.php +++ /dev/null @@ -1,116 +0,0 @@ -boolValue = $boolValue; - } - public function getBoolValue() - { - return $this->boolValue; - } - /** - * @param Google_Service_ServiceControl_Distribution - */ - public function setDistributionValue(Google_Service_ServiceControl_Distribution $distributionValue) - { - $this->distributionValue = $distributionValue; - } - /** - * @return Google_Service_ServiceControl_Distribution - */ - public function getDistributionValue() - { - return $this->distributionValue; - } - public function setDoubleValue($doubleValue) - { - $this->doubleValue = $doubleValue; - } - public function getDoubleValue() - { - return $this->doubleValue; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setInt64Value($int64Value) - { - $this->int64Value = $int64Value; - } - public function getInt64Value() - { - return $this->int64Value; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - /** - * @param Google_Service_ServiceControl_Money - */ - public function setMoneyValue(Google_Service_ServiceControl_Money $moneyValue) - { - $this->moneyValue = $moneyValue; - } - /** - * @return Google_Service_ServiceControl_Money - */ - public function getMoneyValue() - { - return $this->moneyValue; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } - public function setStringValue($stringValue) - { - $this->stringValue = $stringValue; - } - public function getStringValue() - { - return $this->stringValue; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/MetricValueSet.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/MetricValueSet.php deleted file mode 100644 index e85384aa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/MetricValueSet.php +++ /dev/null @@ -1,47 +0,0 @@ -metricName = $metricName; - } - public function getMetricName() - { - return $this->metricName; - } - /** - * @param Google_Service_ServiceControl_MetricValue - */ - public function setMetricValues($metricValues) - { - $this->metricValues = $metricValues; - } - /** - * @return Google_Service_ServiceControl_MetricValue - */ - public function getMetricValues() - { - return $this->metricValues; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/Money.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/Money.php deleted file mode 100644 index 932a061b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/Money.php +++ /dev/null @@ -1,48 +0,0 @@ -currencyCode = $currencyCode; - } - public function getCurrencyCode() - { - return $this->currencyCode; - } - public function setNanos($nanos) - { - $this->nanos = $nanos; - } - public function getNanos() - { - return $this->nanos; - } - public function setUnits($units) - { - $this->units = $units; - } - public function getUnits() - { - return $this->units; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/Operation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/Operation.php deleted file mode 100644 index d59b07e5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/Operation.php +++ /dev/null @@ -1,174 +0,0 @@ -consumerId = $consumerId; - } - public function getConsumerId() - { - return $this->consumerId; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setImportance($importance) - { - $this->importance = $importance; - } - public function getImportance() - { - return $this->importance; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - /** - * @param Google_Service_ServiceControl_LogEntry - */ - public function setLogEntries($logEntries) - { - $this->logEntries = $logEntries; - } - /** - * @return Google_Service_ServiceControl_LogEntry - */ - public function getLogEntries() - { - return $this->logEntries; - } - /** - * @param Google_Service_ServiceControl_MetricValueSet - */ - public function setMetricValueSets($metricValueSets) - { - $this->metricValueSets = $metricValueSets; - } - /** - * @return Google_Service_ServiceControl_MetricValueSet - */ - public function getMetricValueSets() - { - return $this->metricValueSets; - } - public function setOperationId($operationId) - { - $this->operationId = $operationId; - } - public function getOperationId() - { - return $this->operationId; - } - public function setOperationName($operationName) - { - $this->operationName = $operationName; - } - public function getOperationName() - { - return $this->operationName; - } - /** - * @param Google_Service_ServiceControl_QuotaProperties - */ - public function setQuotaProperties(Google_Service_ServiceControl_QuotaProperties $quotaProperties) - { - $this->quotaProperties = $quotaProperties; - } - /** - * @return Google_Service_ServiceControl_QuotaProperties - */ - public function getQuotaProperties() - { - return $this->quotaProperties; - } - /** - * @param Google_Service_ServiceControl_ResourceInfo - */ - public function setResources($resources) - { - $this->resources = $resources; - } - /** - * @return Google_Service_ServiceControl_ResourceInfo - */ - public function getResources() - { - return $this->resources; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } - /** - * @param Google_Service_ServiceControl_TraceSpan - */ - public function setTraceSpans($traceSpans) - { - $this->traceSpans = $traceSpans; - } - /** - * @return Google_Service_ServiceControl_TraceSpan - */ - public function getTraceSpans() - { - return $this->traceSpans; - } - public function setUserLabels($userLabels) - { - $this->userLabels = $userLabels; - } - public function getUserLabels() - { - return $this->userLabels; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/Peer.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/Peer.php deleted file mode 100644 index d8343037..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/Peer.php +++ /dev/null @@ -1,66 +0,0 @@ -ip = $ip; - } - public function getIp() - { - return $this->ip; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setPort($port) - { - $this->port = $port; - } - public function getPort() - { - return $this->port; - } - public function setPrincipal($principal) - { - $this->principal = $principal; - } - public function getPrincipal() - { - return $this->principal; - } - public function setRegionCode($regionCode) - { - $this->regionCode = $regionCode; - } - public function getRegionCode() - { - return $this->regionCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/QuotaError.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/QuotaError.php deleted file mode 100644 index 7702d2fb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/QuotaError.php +++ /dev/null @@ -1,48 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setSubject($subject) - { - $this->subject = $subject; - } - public function getSubject() - { - return $this->subject; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/QuotaInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/QuotaInfo.php deleted file mode 100644 index c24b18dd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/QuotaInfo.php +++ /dev/null @@ -1,56 +0,0 @@ -limitExceeded = $limitExceeded; - } - public function getLimitExceeded() - { - return $this->limitExceeded; - } - public function setQuotaConsumed($quotaConsumed) - { - $this->quotaConsumed = $quotaConsumed; - } - public function getQuotaConsumed() - { - return $this->quotaConsumed; - } - /** - * @param Google_Service_ServiceControl_MetricValueSet - */ - public function setQuotaMetrics($quotaMetrics) - { - $this->quotaMetrics = $quotaMetrics; - } - /** - * @return Google_Service_ServiceControl_MetricValueSet - */ - public function getQuotaMetrics() - { - return $this->quotaMetrics; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/QuotaOperation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/QuotaOperation.php deleted file mode 100644 index 2a2b067f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/QuotaOperation.php +++ /dev/null @@ -1,83 +0,0 @@ -consumerId = $consumerId; - } - public function getConsumerId() - { - return $this->consumerId; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setMethodName($methodName) - { - $this->methodName = $methodName; - } - public function getMethodName() - { - return $this->methodName; - } - public function setOperationId($operationId) - { - $this->operationId = $operationId; - } - public function getOperationId() - { - return $this->operationId; - } - /** - * @param Google_Service_ServiceControl_MetricValueSet - */ - public function setQuotaMetrics($quotaMetrics) - { - $this->quotaMetrics = $quotaMetrics; - } - /** - * @return Google_Service_ServiceControl_MetricValueSet - */ - public function getQuotaMetrics() - { - return $this->quotaMetrics; - } - public function setQuotaMode($quotaMode) - { - $this->quotaMode = $quotaMode; - } - public function getQuotaMode() - { - return $this->quotaMode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/QuotaProperties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/QuotaProperties.php deleted file mode 100644 index 67037527..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/QuotaProperties.php +++ /dev/null @@ -1,30 +0,0 @@ -quotaMode = $quotaMode; - } - public function getQuotaMode() - { - return $this->quotaMode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/ReportError.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/ReportError.php deleted file mode 100644 index 093bea59..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/ReportError.php +++ /dev/null @@ -1,46 +0,0 @@ -operationId = $operationId; - } - public function getOperationId() - { - return $this->operationId; - } - /** - * @param Google_Service_ServiceControl_Status - */ - public function setStatus(Google_Service_ServiceControl_Status $status) - { - $this->status = $status; - } - /** - * @return Google_Service_ServiceControl_Status - */ - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/ReportInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/ReportInfo.php deleted file mode 100644 index da88dae0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/ReportInfo.php +++ /dev/null @@ -1,46 +0,0 @@ -operationId = $operationId; - } - public function getOperationId() - { - return $this->operationId; - } - /** - * @param Google_Service_ServiceControl_QuotaInfo - */ - public function setQuotaInfo(Google_Service_ServiceControl_QuotaInfo $quotaInfo) - { - $this->quotaInfo = $quotaInfo; - } - /** - * @return Google_Service_ServiceControl_QuotaInfo - */ - public function getQuotaInfo() - { - return $this->quotaInfo; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/ReportRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/ReportRequest.php deleted file mode 100644 index 70f26966..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/ReportRequest.php +++ /dev/null @@ -1,47 +0,0 @@ -operations = $operations; - } - /** - * @return Google_Service_ServiceControl_Operation - */ - public function getOperations() - { - return $this->operations; - } - public function setServiceConfigId($serviceConfigId) - { - $this->serviceConfigId = $serviceConfigId; - } - public function getServiceConfigId() - { - return $this->serviceConfigId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/ReportResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/ReportResponse.php deleted file mode 100644 index cbf55f6b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/ReportResponse.php +++ /dev/null @@ -1,72 +0,0 @@ -reportErrors = $reportErrors; - } - /** - * @return Google_Service_ServiceControl_ReportError - */ - public function getReportErrors() - { - return $this->reportErrors; - } - /** - * @param Google_Service_ServiceControl_ReportInfo - */ - public function setReportInfos($reportInfos) - { - $this->reportInfos = $reportInfos; - } - /** - * @return Google_Service_ServiceControl_ReportInfo - */ - public function getReportInfos() - { - return $this->reportInfos; - } - public function setServiceConfigId($serviceConfigId) - { - $this->serviceConfigId = $serviceConfigId; - } - public function getServiceConfigId() - { - return $this->serviceConfigId; - } - public function setServiceRolloutId($serviceRolloutId) - { - $this->serviceRolloutId = $serviceRolloutId; - } - public function getServiceRolloutId() - { - return $this->serviceRolloutId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/Request.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/Request.php deleted file mode 100644 index 00290b5a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/Request.php +++ /dev/null @@ -1,136 +0,0 @@ -auth = $auth; - } - /** - * @return Google_Service_ServiceControl_Auth - */ - public function getAuth() - { - return $this->auth; - } - public function setHeaders($headers) - { - $this->headers = $headers; - } - public function getHeaders() - { - return $this->headers; - } - public function setHost($host) - { - $this->host = $host; - } - public function getHost() - { - return $this->host; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setMethod($method) - { - $this->method = $method; - } - public function getMethod() - { - return $this->method; - } - public function setPath($path) - { - $this->path = $path; - } - public function getPath() - { - return $this->path; - } - public function setProtocol($protocol) - { - $this->protocol = $protocol; - } - public function getProtocol() - { - return $this->protocol; - } - public function setQuery($query) - { - $this->query = $query; - } - public function getQuery() - { - return $this->query; - } - public function setReason($reason) - { - $this->reason = $reason; - } - public function getReason() - { - return $this->reason; - } - public function setScheme($scheme) - { - $this->scheme = $scheme; - } - public function getScheme() - { - return $this->scheme; - } - public function setSize($size) - { - $this->size = $size; - } - public function getSize() - { - return $this->size; - } - public function setTime($time) - { - $this->time = $time; - } - public function getTime() - { - return $this->time; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/RequestMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/RequestMetadata.php deleted file mode 100644 index b2672ada..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/RequestMetadata.php +++ /dev/null @@ -1,80 +0,0 @@ -callerIp = $callerIp; - } - public function getCallerIp() - { - return $this->callerIp; - } - public function setCallerNetwork($callerNetwork) - { - $this->callerNetwork = $callerNetwork; - } - public function getCallerNetwork() - { - return $this->callerNetwork; - } - public function setCallerSuppliedUserAgent($callerSuppliedUserAgent) - { - $this->callerSuppliedUserAgent = $callerSuppliedUserAgent; - } - public function getCallerSuppliedUserAgent() - { - return $this->callerSuppliedUserAgent; - } - /** - * @param Google_Service_ServiceControl_Peer - */ - public function setDestinationAttributes(Google_Service_ServiceControl_Peer $destinationAttributes) - { - $this->destinationAttributes = $destinationAttributes; - } - /** - * @return Google_Service_ServiceControl_Peer - */ - public function getDestinationAttributes() - { - return $this->destinationAttributes; - } - /** - * @param Google_Service_ServiceControl_Request - */ - public function setRequestAttributes(Google_Service_ServiceControl_Request $requestAttributes) - { - $this->requestAttributes = $requestAttributes; - } - /** - * @return Google_Service_ServiceControl_Request - */ - public function getRequestAttributes() - { - return $this->requestAttributes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/Resource/Services.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/Resource/Services.php deleted file mode 100644 index 974323a2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/Resource/Services.php +++ /dev/null @@ -1,120 +0,0 @@ - - * $servicecontrolService = new Google_Service_ServiceControl(...); - * $services = $servicecontrolService->services; - * - */ -class Google_Service_ServiceControl_Resource_Services extends Google_Service_Resource -{ - /** - * Attempts to allocate quota for the specified consumer. It should be called - * before the operation is executed. - * - * This method requires the `servicemanagement.services.quota` permission on the - * specified service. For more information, see [Cloud - * IAM](https://cloud.google.com/iam). - * - * **NOTE:** The client **must** fail-open on server errors `INTERNAL`, - * `UNKNOWN`, `DEADLINE_EXCEEDED`, and `UNAVAILABLE`. To ensure system - * reliability, the server may inject these errors to prohibit any hard - * dependency on the quota functionality. (services.allocateQuota) - * - * @param string $serviceName Name of the service as specified in the service - * configuration. For example, `"pubsub.googleapis.com"`. - * - * See google.api.Service for the definition of a service name. - * @param Google_Service_ServiceControl_AllocateQuotaRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceControl_AllocateQuotaResponse - */ - public function allocateQuota($serviceName, Google_Service_ServiceControl_AllocateQuotaRequest $postBody, $optParams = array()) - { - $params = array('serviceName' => $serviceName, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('allocateQuota', array($params), "Google_Service_ServiceControl_AllocateQuotaResponse"); - } - /** - * Checks whether an operation on a service should be allowed to proceed based - * on the configuration of the service and related policies. It must be called - * before the operation is executed. - * - * If feasible, the client should cache the check results and reuse them for 60 - * seconds. In case of any server errors, the client should rely on the cached - * results for much longer time to avoid outage. WARNING: There is general 60s - * delay for the configuration and policy propagation, therefore callers MUST - * NOT depend on the `Check` method having the latest policy information. - * - * NOTE: the CheckRequest has the size limit of 64KB. - * - * This method requires the `servicemanagement.services.check` permission on the - * specified service. For more information, see [Cloud - * IAM](https://cloud.google.com/iam). (services.check) - * - * @param string $serviceName The service name as specified in its service - * configuration. For example, `"pubsub.googleapis.com"`. - * - * See [google.api.Service](https://cloud.google.com/service- - * management/reference/rpc/google.api#google.api.Service) for the definition of - * a service name. - * @param Google_Service_ServiceControl_CheckRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceControl_CheckResponse - */ - public function check($serviceName, Google_Service_ServiceControl_CheckRequest $postBody, $optParams = array()) - { - $params = array('serviceName' => $serviceName, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('check', array($params), "Google_Service_ServiceControl_CheckResponse"); - } - /** - * Reports operation results to Google Service Control, such as logs and - * metrics. It should be called after an operation is completed. - * - * If feasible, the client should aggregate reporting data for up to 5 seconds - * to reduce API traffic. Limiting aggregation to 5 seconds is to reduce data - * loss during client crashes. Clients should carefully choose the aggregation - * time window to avoid data loss risk more than 0.01% for business and - * compliance reasons. - * - * NOTE: the ReportRequest has the size limit (wire-format byte size) of 1MB. - * - * This method requires the `servicemanagement.services.report` permission on - * the specified service. For more information, see [Google Cloud - * IAM](https://cloud.google.com/iam). (services.report) - * - * @param string $serviceName The service name as specified in its service - * configuration. For example, `"pubsub.googleapis.com"`. - * - * See [google.api.Service](https://cloud.google.com/service- - * management/reference/rpc/google.api#google.api.Service) for the definition of - * a service name. - * @param Google_Service_ServiceControl_ReportRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceControl_ReportResponse - */ - public function report($serviceName, Google_Service_ServiceControl_ReportRequest $postBody, $optParams = array()) - { - $params = array('serviceName' => $serviceName, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('report', array($params), "Google_Service_ServiceControl_ReportResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/ResourceInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/ResourceInfo.php deleted file mode 100644 index 490a7ac1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/ResourceInfo.php +++ /dev/null @@ -1,48 +0,0 @@ -resourceContainer = $resourceContainer; - } - public function getResourceContainer() - { - return $this->resourceContainer; - } - public function setResourceLocation($resourceLocation) - { - $this->resourceLocation = $resourceLocation; - } - public function getResourceLocation() - { - return $this->resourceLocation; - } - public function setResourceName($resourceName) - { - $this->resourceName = $resourceName; - } - public function getResourceName() - { - return $this->resourceName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/ResourceLocation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/ResourceLocation.php deleted file mode 100644 index bd32ceb7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/ResourceLocation.php +++ /dev/null @@ -1,40 +0,0 @@ -currentLocations = $currentLocations; - } - public function getCurrentLocations() - { - return $this->currentLocations; - } - public function setOriginalLocations($originalLocations) - { - $this->originalLocations = $originalLocations; - } - public function getOriginalLocations() - { - return $this->originalLocations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/ServiceAccountDelegationInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/ServiceAccountDelegationInfo.php deleted file mode 100644 index 3b5b22b5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/ServiceAccountDelegationInfo.php +++ /dev/null @@ -1,53 +0,0 @@ -firstPartyPrincipal = $firstPartyPrincipal; - } - /** - * @return Google_Service_ServiceControl_FirstPartyPrincipal - */ - public function getFirstPartyPrincipal() - { - return $this->firstPartyPrincipal; - } - /** - * @param Google_Service_ServiceControl_ThirdPartyPrincipal - */ - public function setThirdPartyPrincipal(Google_Service_ServiceControl_ThirdPartyPrincipal $thirdPartyPrincipal) - { - $this->thirdPartyPrincipal = $thirdPartyPrincipal; - } - /** - * @return Google_Service_ServiceControl_ThirdPartyPrincipal - */ - public function getThirdPartyPrincipal() - { - return $this->thirdPartyPrincipal; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/ServicecontrolResource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/ServicecontrolResource.php deleted file mode 100644 index 2eb008aa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/ServicecontrolResource.php +++ /dev/null @@ -1,57 +0,0 @@ -labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setService($service) - { - $this->service = $service; - } - public function getService() - { - return $this->service; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/SpanContext.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/SpanContext.php deleted file mode 100644 index d6c6eee5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/SpanContext.php +++ /dev/null @@ -1,30 +0,0 @@ -spanName = $spanName; - } - public function getSpanName() - { - return $this->spanName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/Status.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/Status.php deleted file mode 100644 index 0fe65d70..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/Status.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/ThirdPartyPrincipal.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/ThirdPartyPrincipal.php deleted file mode 100644 index df182aab..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/ThirdPartyPrincipal.php +++ /dev/null @@ -1,30 +0,0 @@ -thirdPartyClaims = $thirdPartyClaims; - } - public function getThirdPartyClaims() - { - return $this->thirdPartyClaims; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/TraceSpan.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/TraceSpan.php deleted file mode 100644 index 2e1676ac..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/TraceSpan.php +++ /dev/null @@ -1,141 +0,0 @@ -attributes = $attributes; - } - /** - * @return Google_Service_ServiceControl_Attributes - */ - public function getAttributes() - { - return $this->attributes; - } - public function setChildSpanCount($childSpanCount) - { - $this->childSpanCount = $childSpanCount; - } - public function getChildSpanCount() - { - return $this->childSpanCount; - } - /** - * @param Google_Service_ServiceControl_TruncatableString - */ - public function setDisplayName(Google_Service_ServiceControl_TruncatableString $displayName) - { - $this->displayName = $displayName; - } - /** - * @return Google_Service_ServiceControl_TruncatableString - */ - public function getDisplayName() - { - return $this->displayName; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setParentSpanId($parentSpanId) - { - $this->parentSpanId = $parentSpanId; - } - public function getParentSpanId() - { - return $this->parentSpanId; - } - public function setSameProcessAsParentSpan($sameProcessAsParentSpan) - { - $this->sameProcessAsParentSpan = $sameProcessAsParentSpan; - } - public function getSameProcessAsParentSpan() - { - return $this->sameProcessAsParentSpan; - } - public function setSpanId($spanId) - { - $this->spanId = $spanId; - } - public function getSpanId() - { - return $this->spanId; - } - public function setSpanKind($spanKind) - { - $this->spanKind = $spanKind; - } - public function getSpanKind() - { - return $this->spanKind; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } - /** - * @param Google_Service_ServiceControl_Status - */ - public function setStatus(Google_Service_ServiceControl_Status $status) - { - $this->status = $status; - } - /** - * @return Google_Service_ServiceControl_Status - */ - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/TruncatableString.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/TruncatableString.php deleted file mode 100644 index d5283907..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceControl/TruncatableString.php +++ /dev/null @@ -1,39 +0,0 @@ -truncatedByteCount = $truncatedByteCount; - } - public function getTruncatedByteCount() - { - return $this->truncatedByteCount; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement.php deleted file mode 100644 index 3b4574e8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement.php +++ /dev/null @@ -1,412 +0,0 @@ - - * Google Service Management allows service producers to publish their services - * on Google Cloud Platform so that they can be discovered and used by service - * consumers.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_ServiceManagement extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** View your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM_READ_ONLY = - "https://www.googleapis.com/auth/cloud-platform.read-only"; - /** Manage your Google API service configuration. */ - const SERVICE_MANAGEMENT = - "https://www.googleapis.com/auth/service.management"; - /** View your Google API service configuration. */ - const SERVICE_MANAGEMENT_READONLY = - "https://www.googleapis.com/auth/service.management.readonly"; - - public $operations; - public $services; - public $services_configs; - public $services_consumers; - public $services_rollouts; - - /** - * Constructs the internal representation of the ServiceManagement service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://servicemanagement.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'servicemanagement'; - - $this->operations = new Google_Service_ServiceManagement_Resource_Operations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/operations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'name' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->services = new Google_Service_ServiceManagement_Resource_Services( - $this, - $this->serviceName, - 'services', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/services', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'delete' => array( - 'path' => 'v1/services/{serviceName}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'serviceName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'disable' => array( - 'path' => 'v1/services/{serviceName}:disable', - 'httpMethod' => 'POST', - 'parameters' => array( - 'serviceName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'enable' => array( - 'path' => 'v1/services/{serviceName}:enable', - 'httpMethod' => 'POST', - 'parameters' => array( - 'serviceName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'generateConfigReport' => array( - 'path' => 'v1/services:generateConfigReport', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'get' => array( - 'path' => 'v1/services/{serviceName}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'serviceName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getConfig' => array( - 'path' => 'v1/services/{serviceName}/config', - 'httpMethod' => 'GET', - 'parameters' => array( - 'serviceName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'configId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'getIamPolicy' => array( - 'path' => 'v1/{+resource}:getIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/services', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'producerProjectId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'consumerId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setIamPolicy' => array( - 'path' => 'v1/{+resource}:setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => 'v1/{+resource}:testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'undelete' => array( - 'path' => 'v1/services/{serviceName}:undelete', - 'httpMethod' => 'POST', - 'parameters' => array( - 'serviceName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->services_configs = new Google_Service_ServiceManagement_Resource_ServicesConfigs( - $this, - $this->serviceName, - 'configs', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/services/{serviceName}/configs', - 'httpMethod' => 'POST', - 'parameters' => array( - 'serviceName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/services/{serviceName}/configs/{configId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'serviceName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'configId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'v1/services/{serviceName}/configs', - 'httpMethod' => 'GET', - 'parameters' => array( - 'serviceName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'submit' => array( - 'path' => 'v1/services/{serviceName}/configs:submit', - 'httpMethod' => 'POST', - 'parameters' => array( - 'serviceName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->services_consumers = new Google_Service_ServiceManagement_Resource_ServicesConsumers( - $this, - $this->serviceName, - 'consumers', - array( - 'methods' => array( - 'getIamPolicy' => array( - 'path' => 'v1/{+resource}:getIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setIamPolicy' => array( - 'path' => 'v1/{+resource}:setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => 'v1/{+resource}:testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->services_rollouts = new Google_Service_ServiceManagement_Resource_ServicesRollouts( - $this, - $this->serviceName, - 'rollouts', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/services/{serviceName}/rollouts', - 'httpMethod' => 'POST', - 'parameters' => array( - 'serviceName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/services/{serviceName}/rollouts/{rolloutId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'serviceName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'rolloutId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/services/{serviceName}/rollouts', - 'httpMethod' => 'GET', - 'parameters' => array( - 'serviceName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Advice.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Advice.php deleted file mode 100644 index 42486d4e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Advice.php +++ /dev/null @@ -1,30 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Api.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Api.php deleted file mode 100644 index 9e2ccea5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Api.php +++ /dev/null @@ -1,113 +0,0 @@ -methods = $methods; - } - /** - * @return Google_Service_ServiceManagement_Method - */ - public function getMethods() - { - return $this->methods; - } - /** - * @param Google_Service_ServiceManagement_Mixin - */ - public function setMixins($mixins) - { - $this->mixins = $mixins; - } - /** - * @return Google_Service_ServiceManagement_Mixin - */ - public function getMixins() - { - return $this->mixins; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_ServiceManagement_Option - */ - public function setOptions($options) - { - $this->options = $options; - } - /** - * @return Google_Service_ServiceManagement_Option - */ - public function getOptions() - { - return $this->options; - } - /** - * @param Google_Service_ServiceManagement_SourceContext - */ - public function setSourceContext(Google_Service_ServiceManagement_SourceContext $sourceContext) - { - $this->sourceContext = $sourceContext; - } - /** - * @return Google_Service_ServiceManagement_SourceContext - */ - public function getSourceContext() - { - return $this->sourceContext; - } - public function setSyntax($syntax) - { - $this->syntax = $syntax; - } - public function getSyntax() - { - return $this->syntax; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/AuditConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/AuditConfig.php deleted file mode 100644 index 767a65fd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/AuditConfig.php +++ /dev/null @@ -1,47 +0,0 @@ -auditLogConfigs = $auditLogConfigs; - } - /** - * @return Google_Service_ServiceManagement_AuditLogConfig - */ - public function getAuditLogConfigs() - { - return $this->auditLogConfigs; - } - public function setService($service) - { - $this->service = $service; - } - public function getService() - { - return $this->service; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/AuditLogConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/AuditLogConfig.php deleted file mode 100644 index 3baabf13..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/AuditLogConfig.php +++ /dev/null @@ -1,40 +0,0 @@ -exemptedMembers = $exemptedMembers; - } - public function getExemptedMembers() - { - return $this->exemptedMembers; - } - public function setLogType($logType) - { - $this->logType = $logType; - } - public function getLogType() - { - return $this->logType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/AuthProvider.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/AuthProvider.php deleted file mode 100644 index 7860b57a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/AuthProvider.php +++ /dev/null @@ -1,66 +0,0 @@ -audiences = $audiences; - } - public function getAudiences() - { - return $this->audiences; - } - public function setAuthorizationUrl($authorizationUrl) - { - $this->authorizationUrl = $authorizationUrl; - } - public function getAuthorizationUrl() - { - return $this->authorizationUrl; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setIssuer($issuer) - { - $this->issuer = $issuer; - } - public function getIssuer() - { - return $this->issuer; - } - public function setJwksUri($jwksUri) - { - $this->jwksUri = $jwksUri; - } - public function getJwksUri() - { - return $this->jwksUri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/AuthRequirement.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/AuthRequirement.php deleted file mode 100644 index f2ec0dec..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/AuthRequirement.php +++ /dev/null @@ -1,39 +0,0 @@ -audiences = $audiences; - } - public function getAudiences() - { - return $this->audiences; - } - public function setProviderId($providerId) - { - $this->providerId = $providerId; - } - public function getProviderId() - { - return $this->providerId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Authentication.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Authentication.php deleted file mode 100644 index 50cdfba8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Authentication.php +++ /dev/null @@ -1,54 +0,0 @@ -providers = $providers; - } - /** - * @return Google_Service_ServiceManagement_AuthProvider - */ - public function getProviders() - { - return $this->providers; - } - /** - * @param Google_Service_ServiceManagement_AuthenticationRule - */ - public function setRules($rules) - { - $this->rules = $rules; - } - /** - * @return Google_Service_ServiceManagement_AuthenticationRule - */ - public function getRules() - { - return $this->rules; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/AuthenticationRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/AuthenticationRule.php deleted file mode 100644 index 6a7ddc2d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/AuthenticationRule.php +++ /dev/null @@ -1,72 +0,0 @@ -allowWithoutCredential = $allowWithoutCredential; - } - public function getAllowWithoutCredential() - { - return $this->allowWithoutCredential; - } - /** - * @param Google_Service_ServiceManagement_OAuthRequirements - */ - public function setOauth(Google_Service_ServiceManagement_OAuthRequirements $oauth) - { - $this->oauth = $oauth; - } - /** - * @return Google_Service_ServiceManagement_OAuthRequirements - */ - public function getOauth() - { - return $this->oauth; - } - /** - * @param Google_Service_ServiceManagement_AuthRequirement - */ - public function setRequirements($requirements) - { - $this->requirements = $requirements; - } - /** - * @return Google_Service_ServiceManagement_AuthRequirement - */ - public function getRequirements() - { - return $this->requirements; - } - public function setSelector($selector) - { - $this->selector = $selector; - } - public function getSelector() - { - return $this->selector; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Backend.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Backend.php deleted file mode 100644 index bb3b0369..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Backend.php +++ /dev/null @@ -1,38 +0,0 @@ -rules = $rules; - } - /** - * @return Google_Service_ServiceManagement_BackendRule - */ - public function getRules() - { - return $this->rules; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/BackendRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/BackendRule.php deleted file mode 100644 index 4c893edd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/BackendRule.php +++ /dev/null @@ -1,93 +0,0 @@ -address = $address; - } - public function getAddress() - { - return $this->address; - } - public function setDeadline($deadline) - { - $this->deadline = $deadline; - } - public function getDeadline() - { - return $this->deadline; - } - public function setDisableAuth($disableAuth) - { - $this->disableAuth = $disableAuth; - } - public function getDisableAuth() - { - return $this->disableAuth; - } - public function setJwtAudience($jwtAudience) - { - $this->jwtAudience = $jwtAudience; - } - public function getJwtAudience() - { - return $this->jwtAudience; - } - public function setMinDeadline($minDeadline) - { - $this->minDeadline = $minDeadline; - } - public function getMinDeadline() - { - return $this->minDeadline; - } - public function setOperationDeadline($operationDeadline) - { - $this->operationDeadline = $operationDeadline; - } - public function getOperationDeadline() - { - return $this->operationDeadline; - } - public function setPathTranslation($pathTranslation) - { - $this->pathTranslation = $pathTranslation; - } - public function getPathTranslation() - { - return $this->pathTranslation; - } - public function setSelector($selector) - { - $this->selector = $selector; - } - public function getSelector() - { - return $this->selector; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Billing.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Billing.php deleted file mode 100644 index a11a2cc9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Billing.php +++ /dev/null @@ -1,38 +0,0 @@ -consumerDestinations = $consumerDestinations; - } - /** - * @return Google_Service_ServiceManagement_BillingDestination - */ - public function getConsumerDestinations() - { - return $this->consumerDestinations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/BillingDestination.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/BillingDestination.php deleted file mode 100644 index c9538ceb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/BillingDestination.php +++ /dev/null @@ -1,40 +0,0 @@ -metrics = $metrics; - } - public function getMetrics() - { - return $this->metrics; - } - public function setMonitoredResource($monitoredResource) - { - $this->monitoredResource = $monitoredResource; - } - public function getMonitoredResource() - { - return $this->monitoredResource; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Binding.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Binding.php deleted file mode 100644 index ec88461f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Binding.php +++ /dev/null @@ -1,56 +0,0 @@ -condition = $condition; - } - /** - * @return Google_Service_ServiceManagement_Expr - */ - public function getCondition() - { - return $this->condition; - } - public function setMembers($members) - { - $this->members = $members; - } - public function getMembers() - { - return $this->members; - } - public function setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/ChangeReport.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/ChangeReport.php deleted file mode 100644 index 6b198d5a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/ChangeReport.php +++ /dev/null @@ -1,38 +0,0 @@ -configChanges = $configChanges; - } - /** - * @return Google_Service_ServiceManagement_ConfigChange - */ - public function getConfigChanges() - { - return $this->configChanges; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/ConfigChange.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/ConfigChange.php deleted file mode 100644 index c3d2ef08..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/ConfigChange.php +++ /dev/null @@ -1,74 +0,0 @@ -advices = $advices; - } - /** - * @return Google_Service_ServiceManagement_Advice - */ - public function getAdvices() - { - return $this->advices; - } - public function setChangeType($changeType) - { - $this->changeType = $changeType; - } - public function getChangeType() - { - return $this->changeType; - } - public function setElement($element) - { - $this->element = $element; - } - public function getElement() - { - return $this->element; - } - public function setNewValue($newValue) - { - $this->newValue = $newValue; - } - public function getNewValue() - { - return $this->newValue; - } - public function setOldValue($oldValue) - { - $this->oldValue = $oldValue; - } - public function getOldValue() - { - return $this->oldValue; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/ConfigFile.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/ConfigFile.php deleted file mode 100644 index a2bf55f7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/ConfigFile.php +++ /dev/null @@ -1,48 +0,0 @@ -fileContents = $fileContents; - } - public function getFileContents() - { - return $this->fileContents; - } - public function setFilePath($filePath) - { - $this->filePath = $filePath; - } - public function getFilePath() - { - return $this->filePath; - } - public function setFileType($fileType) - { - $this->fileType = $fileType; - } - public function getFileType() - { - return $this->fileType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/ConfigRef.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/ConfigRef.php deleted file mode 100644 index ad9d3266..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/ConfigRef.php +++ /dev/null @@ -1,30 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/ConfigSource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/ConfigSource.php deleted file mode 100644 index a4589eb9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/ConfigSource.php +++ /dev/null @@ -1,47 +0,0 @@ -files = $files; - } - /** - * @return Google_Service_ServiceManagement_ConfigFile - */ - public function getFiles() - { - return $this->files; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Context.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Context.php deleted file mode 100644 index 07102b06..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Context.php +++ /dev/null @@ -1,38 +0,0 @@ -rules = $rules; - } - /** - * @return Google_Service_ServiceManagement_ContextRule - */ - public function getRules() - { - return $this->rules; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/ContextRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/ContextRule.php deleted file mode 100644 index 91c8840b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/ContextRule.php +++ /dev/null @@ -1,67 +0,0 @@ -allowedRequestExtensions = $allowedRequestExtensions; - } - public function getAllowedRequestExtensions() - { - return $this->allowedRequestExtensions; - } - public function setAllowedResponseExtensions($allowedResponseExtensions) - { - $this->allowedResponseExtensions = $allowedResponseExtensions; - } - public function getAllowedResponseExtensions() - { - return $this->allowedResponseExtensions; - } - public function setProvided($provided) - { - $this->provided = $provided; - } - public function getProvided() - { - return $this->provided; - } - public function setRequested($requested) - { - $this->requested = $requested; - } - public function getRequested() - { - return $this->requested; - } - public function setSelector($selector) - { - $this->selector = $selector; - } - public function getSelector() - { - return $this->selector; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Control.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Control.php deleted file mode 100644 index ef9bc020..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Control.php +++ /dev/null @@ -1,30 +0,0 @@ -environment = $environment; - } - public function getEnvironment() - { - return $this->environment; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/CustomError.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/CustomError.php deleted file mode 100644 index 6593e928..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/CustomError.php +++ /dev/null @@ -1,47 +0,0 @@ -rules = $rules; - } - /** - * @return Google_Service_ServiceManagement_CustomErrorRule - */ - public function getRules() - { - return $this->rules; - } - public function setTypes($types) - { - $this->types = $types; - } - public function getTypes() - { - return $this->types; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/CustomErrorRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/CustomErrorRule.php deleted file mode 100644 index b54e0a97..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/CustomErrorRule.php +++ /dev/null @@ -1,39 +0,0 @@ -isErrorType = $isErrorType; - } - public function getIsErrorType() - { - return $this->isErrorType; - } - public function setSelector($selector) - { - $this->selector = $selector; - } - public function getSelector() - { - return $this->selector; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/CustomHttpPattern.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/CustomHttpPattern.php deleted file mode 100644 index b0bf7b33..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/CustomHttpPattern.php +++ /dev/null @@ -1,39 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setPath($path) - { - $this->path = $path; - } - public function getPath() - { - return $this->path; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/DeleteServiceStrategy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/DeleteServiceStrategy.php deleted file mode 100644 index 3d05238d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/DeleteServiceStrategy.php +++ /dev/null @@ -1,20 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/DisableServiceRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/DisableServiceRequest.php deleted file mode 100644 index 706a01c2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/DisableServiceRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -consumerId = $consumerId; - } - public function getConsumerId() - { - return $this->consumerId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/DisableServiceResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/DisableServiceResponse.php deleted file mode 100644 index f2bb115f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/DisableServiceResponse.php +++ /dev/null @@ -1,20 +0,0 @@ -documentationRootUrl = $documentationRootUrl; - } - public function getDocumentationRootUrl() - { - return $this->documentationRootUrl; - } - public function setOverview($overview) - { - $this->overview = $overview; - } - public function getOverview() - { - return $this->overview; - } - /** - * @param Google_Service_ServiceManagement_Page - */ - public function setPages($pages) - { - $this->pages = $pages; - } - /** - * @return Google_Service_ServiceManagement_Page - */ - public function getPages() - { - return $this->pages; - } - /** - * @param Google_Service_ServiceManagement_DocumentationRule - */ - public function setRules($rules) - { - $this->rules = $rules; - } - /** - * @return Google_Service_ServiceManagement_DocumentationRule - */ - public function getRules() - { - return $this->rules; - } - public function setServiceRootUrl($serviceRootUrl) - { - $this->serviceRootUrl = $serviceRootUrl; - } - public function getServiceRootUrl() - { - return $this->serviceRootUrl; - } - public function setSummary($summary) - { - $this->summary = $summary; - } - public function getSummary() - { - return $this->summary; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/DocumentationRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/DocumentationRule.php deleted file mode 100644 index 92d7f576..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/DocumentationRule.php +++ /dev/null @@ -1,48 +0,0 @@ -deprecationDescription = $deprecationDescription; - } - public function getDeprecationDescription() - { - return $this->deprecationDescription; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setSelector($selector) - { - $this->selector = $selector; - } - public function getSelector() - { - return $this->selector; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/EnableServiceRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/EnableServiceRequest.php deleted file mode 100644 index 5b8b43ed..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/EnableServiceRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -consumerId = $consumerId; - } - public function getConsumerId() - { - return $this->consumerId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/EnableServiceResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/EnableServiceResponse.php deleted file mode 100644 index 214dad15..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/EnableServiceResponse.php +++ /dev/null @@ -1,20 +0,0 @@ -aliases = $aliases; - } - public function getAliases() - { - return $this->aliases; - } - public function setAllowCors($allowCors) - { - $this->allowCors = $allowCors; - } - public function getAllowCors() - { - return $this->allowCors; - } - public function setFeatures($features) - { - $this->features = $features; - } - public function getFeatures() - { - return $this->features; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setTarget($target) - { - $this->target = $target; - } - public function getTarget() - { - return $this->target; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Enum.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Enum.php deleted file mode 100644 index 2be0bc70..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Enum.php +++ /dev/null @@ -1,88 +0,0 @@ -enumvalue = $enumvalue; - } - /** - * @return Google_Service_ServiceManagement_EnumValue - */ - public function getEnumvalue() - { - return $this->enumvalue; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_ServiceManagement_Option - */ - public function setOptions($options) - { - $this->options = $options; - } - /** - * @return Google_Service_ServiceManagement_Option - */ - public function getOptions() - { - return $this->options; - } - /** - * @param Google_Service_ServiceManagement_SourceContext - */ - public function setSourceContext(Google_Service_ServiceManagement_SourceContext $sourceContext) - { - $this->sourceContext = $sourceContext; - } - /** - * @return Google_Service_ServiceManagement_SourceContext - */ - public function getSourceContext() - { - return $this->sourceContext; - } - public function setSyntax($syntax) - { - $this->syntax = $syntax; - } - public function getSyntax() - { - return $this->syntax; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/EnumValue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/EnumValue.php deleted file mode 100644 index 744c11c0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/EnumValue.php +++ /dev/null @@ -1,56 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setNumber($number) - { - $this->number = $number; - } - public function getNumber() - { - return $this->number; - } - /** - * @param Google_Service_ServiceManagement_Option - */ - public function setOptions($options) - { - $this->options = $options; - } - /** - * @return Google_Service_ServiceManagement_Option - */ - public function getOptions() - { - return $this->options; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Expr.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Expr.php deleted file mode 100644 index a0d851ff..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Expr.php +++ /dev/null @@ -1,57 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setExpression($expression) - { - $this->expression = $expression; - } - public function getExpression() - { - return $this->expression; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Field.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Field.php deleted file mode 100644 index e6e1a6d3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Field.php +++ /dev/null @@ -1,119 +0,0 @@ -cardinality = $cardinality; - } - public function getCardinality() - { - return $this->cardinality; - } - public function setDefaultValue($defaultValue) - { - $this->defaultValue = $defaultValue; - } - public function getDefaultValue() - { - return $this->defaultValue; - } - public function setJsonName($jsonName) - { - $this->jsonName = $jsonName; - } - public function getJsonName() - { - return $this->jsonName; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNumber($number) - { - $this->number = $number; - } - public function getNumber() - { - return $this->number; - } - public function setOneofIndex($oneofIndex) - { - $this->oneofIndex = $oneofIndex; - } - public function getOneofIndex() - { - return $this->oneofIndex; - } - /** - * @param Google_Service_ServiceManagement_Option - */ - public function setOptions($options) - { - $this->options = $options; - } - /** - * @return Google_Service_ServiceManagement_Option - */ - public function getOptions() - { - return $this->options; - } - public function setPacked($packed) - { - $this->packed = $packed; - } - public function getPacked() - { - return $this->packed; - } - public function setTypeUrl($typeUrl) - { - $this->typeUrl = $typeUrl; - } - public function getTypeUrl() - { - return $this->typeUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/FlowErrorDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/FlowErrorDetails.php deleted file mode 100644 index 9bd0e6b9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/FlowErrorDetails.php +++ /dev/null @@ -1,39 +0,0 @@ -exceptionType = $exceptionType; - } - public function getExceptionType() - { - return $this->exceptionType; - } - public function setFlowStepId($flowStepId) - { - $this->flowStepId = $flowStepId; - } - public function getFlowStepId() - { - return $this->flowStepId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/GenerateConfigReportRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/GenerateConfigReportRequest.php deleted file mode 100644 index cc08f731..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/GenerateConfigReportRequest.php +++ /dev/null @@ -1,39 +0,0 @@ -newConfig = $newConfig; - } - public function getNewConfig() - { - return $this->newConfig; - } - public function setOldConfig($oldConfig) - { - $this->oldConfig = $oldConfig; - } - public function getOldConfig() - { - return $this->oldConfig; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/GenerateConfigReportResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/GenerateConfigReportResponse.php deleted file mode 100644 index c133f63b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/GenerateConfigReportResponse.php +++ /dev/null @@ -1,72 +0,0 @@ -changeReports = $changeReports; - } - /** - * @return Google_Service_ServiceManagement_ChangeReport - */ - public function getChangeReports() - { - return $this->changeReports; - } - /** - * @param Google_Service_ServiceManagement_Diagnostic - */ - public function setDiagnostics($diagnostics) - { - $this->diagnostics = $diagnostics; - } - /** - * @return Google_Service_ServiceManagement_Diagnostic - */ - public function getDiagnostics() - { - return $this->diagnostics; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setServiceName($serviceName) - { - $this->serviceName = $serviceName; - } - public function getServiceName() - { - return $this->serviceName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/GetIamPolicyRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/GetIamPolicyRequest.php deleted file mode 100644 index 42d5afa2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/GetIamPolicyRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -options = $options; - } - /** - * @return Google_Service_ServiceManagement_GetPolicyOptions - */ - public function getOptions() - { - return $this->options; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/GetPolicyOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/GetPolicyOptions.php deleted file mode 100644 index 7bcd108d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/GetPolicyOptions.php +++ /dev/null @@ -1,30 +0,0 @@ -requestedPolicyVersion = $requestedPolicyVersion; - } - public function getRequestedPolicyVersion() - { - return $this->requestedPolicyVersion; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Http.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Http.php deleted file mode 100644 index c3f4d083..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Http.php +++ /dev/null @@ -1,47 +0,0 @@ -fullyDecodeReservedExpansion = $fullyDecodeReservedExpansion; - } - public function getFullyDecodeReservedExpansion() - { - return $this->fullyDecodeReservedExpansion; - } - /** - * @param Google_Service_ServiceManagement_HttpRule - */ - public function setRules($rules) - { - $this->rules = $rules; - } - /** - * @return Google_Service_ServiceManagement_HttpRule - */ - public function getRules() - { - return $this->rules; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/HttpRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/HttpRule.php deleted file mode 100644 index 128dd488..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/HttpRule.php +++ /dev/null @@ -1,135 +0,0 @@ -additionalBindings = $additionalBindings; - } - /** - * @return Google_Service_ServiceManagement_HttpRule - */ - public function getAdditionalBindings() - { - return $this->additionalBindings; - } - public function setAllowHalfDuplex($allowHalfDuplex) - { - $this->allowHalfDuplex = $allowHalfDuplex; - } - public function getAllowHalfDuplex() - { - return $this->allowHalfDuplex; - } - public function setBody($body) - { - $this->body = $body; - } - public function getBody() - { - return $this->body; - } - /** - * @param Google_Service_ServiceManagement_CustomHttpPattern - */ - public function setCustom(Google_Service_ServiceManagement_CustomHttpPattern $custom) - { - $this->custom = $custom; - } - /** - * @return Google_Service_ServiceManagement_CustomHttpPattern - */ - public function getCustom() - { - return $this->custom; - } - public function setDelete($delete) - { - $this->delete = $delete; - } - public function getDelete() - { - return $this->delete; - } - public function setGet($get) - { - $this->get = $get; - } - public function getGet() - { - return $this->get; - } - public function setPatch($patch) - { - $this->patch = $patch; - } - public function getPatch() - { - return $this->patch; - } - public function setPost($post) - { - $this->post = $post; - } - public function getPost() - { - return $this->post; - } - public function setPut($put) - { - $this->put = $put; - } - public function getPut() - { - return $this->put; - } - public function setResponseBody($responseBody) - { - $this->responseBody = $responseBody; - } - public function getResponseBody() - { - return $this->responseBody; - } - public function setSelector($selector) - { - $this->selector = $selector; - } - public function getSelector() - { - return $this->selector; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/LabelDescriptor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/LabelDescriptor.php deleted file mode 100644 index 60557af5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/LabelDescriptor.php +++ /dev/null @@ -1,48 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setKey($key) - { - $this->key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValueType($valueType) - { - $this->valueType = $valueType; - } - public function getValueType() - { - return $this->valueType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/ListOperationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/ListOperationsResponse.php deleted file mode 100644 index 9dc257d0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/ListOperationsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_ServiceManagement_Operation - */ - public function setOperations($operations) - { - $this->operations = $operations; - } - /** - * @return Google_Service_ServiceManagement_Operation - */ - public function getOperations() - { - return $this->operations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/ListServiceConfigsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/ListServiceConfigsResponse.php deleted file mode 100644 index 03d1da1c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/ListServiceConfigsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_ServiceManagement_Service - */ - public function setServiceConfigs($serviceConfigs) - { - $this->serviceConfigs = $serviceConfigs; - } - /** - * @return Google_Service_ServiceManagement_Service - */ - public function getServiceConfigs() - { - return $this->serviceConfigs; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/ListServiceRolloutsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/ListServiceRolloutsResponse.php deleted file mode 100644 index 97d717fc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/ListServiceRolloutsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_ServiceManagement_Rollout - */ - public function setRollouts($rollouts) - { - $this->rollouts = $rollouts; - } - /** - * @return Google_Service_ServiceManagement_Rollout - */ - public function getRollouts() - { - return $this->rollouts; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/ListServicesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/ListServicesResponse.php deleted file mode 100644 index ddcf6669..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/ListServicesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_ServiceManagement_ManagedService - */ - public function setServices($services) - { - $this->services = $services; - } - /** - * @return Google_Service_ServiceManagement_ManagedService - */ - public function getServices() - { - return $this->services; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/LogDescriptor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/LogDescriptor.php deleted file mode 100644 index c0ae219e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/LogDescriptor.php +++ /dev/null @@ -1,65 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - /** - * @param Google_Service_ServiceManagement_LabelDescriptor - */ - public function setLabels($labels) - { - $this->labels = $labels; - } - /** - * @return Google_Service_ServiceManagement_LabelDescriptor - */ - public function getLabels() - { - return $this->labels; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Logging.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Logging.php deleted file mode 100644 index aadbe87c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Logging.php +++ /dev/null @@ -1,54 +0,0 @@ -consumerDestinations = $consumerDestinations; - } - /** - * @return Google_Service_ServiceManagement_LoggingDestination - */ - public function getConsumerDestinations() - { - return $this->consumerDestinations; - } - /** - * @param Google_Service_ServiceManagement_LoggingDestination - */ - public function setProducerDestinations($producerDestinations) - { - $this->producerDestinations = $producerDestinations; - } - /** - * @return Google_Service_ServiceManagement_LoggingDestination - */ - public function getProducerDestinations() - { - return $this->producerDestinations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/LoggingDestination.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/LoggingDestination.php deleted file mode 100644 index 4faf9764..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/LoggingDestination.php +++ /dev/null @@ -1,40 +0,0 @@ -logs = $logs; - } - public function getLogs() - { - return $this->logs; - } - public function setMonitoredResource($monitoredResource) - { - $this->monitoredResource = $monitoredResource; - } - public function getMonitoredResource() - { - return $this->monitoredResource; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/ManagedService.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/ManagedService.php deleted file mode 100644 index c728e58e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/ManagedService.php +++ /dev/null @@ -1,39 +0,0 @@ -producerProjectId = $producerProjectId; - } - public function getProducerProjectId() - { - return $this->producerProjectId; - } - public function setServiceName($serviceName) - { - $this->serviceName = $serviceName; - } - public function getServiceName() - { - return $this->serviceName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Method.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Method.php deleted file mode 100644 index bdaaf506..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Method.php +++ /dev/null @@ -1,92 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_ServiceManagement_Option - */ - public function setOptions($options) - { - $this->options = $options; - } - /** - * @return Google_Service_ServiceManagement_Option - */ - public function getOptions() - { - return $this->options; - } - public function setRequestStreaming($requestStreaming) - { - $this->requestStreaming = $requestStreaming; - } - public function getRequestStreaming() - { - return $this->requestStreaming; - } - public function setRequestTypeUrl($requestTypeUrl) - { - $this->requestTypeUrl = $requestTypeUrl; - } - public function getRequestTypeUrl() - { - return $this->requestTypeUrl; - } - public function setResponseStreaming($responseStreaming) - { - $this->responseStreaming = $responseStreaming; - } - public function getResponseStreaming() - { - return $this->responseStreaming; - } - public function setResponseTypeUrl($responseTypeUrl) - { - $this->responseTypeUrl = $responseTypeUrl; - } - public function getResponseTypeUrl() - { - return $this->responseTypeUrl; - } - public function setSyntax($syntax) - { - $this->syntax = $syntax; - } - public function getSyntax() - { - return $this->syntax; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/MetricDescriptor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/MetricDescriptor.php deleted file mode 100644 index 4d06a0c6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/MetricDescriptor.php +++ /dev/null @@ -1,135 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - /** - * @param Google_Service_ServiceManagement_LabelDescriptor - */ - public function setLabels($labels) - { - $this->labels = $labels; - } - /** - * @return Google_Service_ServiceManagement_LabelDescriptor - */ - public function getLabels() - { - return $this->labels; - } - public function setLaunchStage($launchStage) - { - $this->launchStage = $launchStage; - } - public function getLaunchStage() - { - return $this->launchStage; - } - /** - * @param Google_Service_ServiceManagement_MetricDescriptorMetadata - */ - public function setMetadata(Google_Service_ServiceManagement_MetricDescriptorMetadata $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_ServiceManagement_MetricDescriptorMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - public function setMetricKind($metricKind) - { - $this->metricKind = $metricKind; - } - public function getMetricKind() - { - return $this->metricKind; - } - public function setMonitoredResourceTypes($monitoredResourceTypes) - { - $this->monitoredResourceTypes = $monitoredResourceTypes; - } - public function getMonitoredResourceTypes() - { - return $this->monitoredResourceTypes; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setUnit($unit) - { - $this->unit = $unit; - } - public function getUnit() - { - return $this->unit; - } - public function setValueType($valueType) - { - $this->valueType = $valueType; - } - public function getValueType() - { - return $this->valueType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/MetricDescriptorMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/MetricDescriptorMetadata.php deleted file mode 100644 index 63d7c91b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/MetricDescriptorMetadata.php +++ /dev/null @@ -1,48 +0,0 @@ -ingestDelay = $ingestDelay; - } - public function getIngestDelay() - { - return $this->ingestDelay; - } - public function setLaunchStage($launchStage) - { - $this->launchStage = $launchStage; - } - public function getLaunchStage() - { - return $this->launchStage; - } - public function setSamplePeriod($samplePeriod) - { - $this->samplePeriod = $samplePeriod; - } - public function getSamplePeriod() - { - return $this->samplePeriod; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/MetricRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/MetricRule.php deleted file mode 100644 index c731a043..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/MetricRule.php +++ /dev/null @@ -1,39 +0,0 @@ -metricCosts = $metricCosts; - } - public function getMetricCosts() - { - return $this->metricCosts; - } - public function setSelector($selector) - { - $this->selector = $selector; - } - public function getSelector() - { - return $this->selector; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Mixin.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Mixin.php deleted file mode 100644 index 29db793d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Mixin.php +++ /dev/null @@ -1,39 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setRoot($root) - { - $this->root = $root; - } - public function getRoot() - { - return $this->root; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/MonitoredResourceDescriptor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/MonitoredResourceDescriptor.php deleted file mode 100644 index 5d6e9562..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/MonitoredResourceDescriptor.php +++ /dev/null @@ -1,83 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - /** - * @param Google_Service_ServiceManagement_LabelDescriptor - */ - public function setLabels($labels) - { - $this->labels = $labels; - } - /** - * @return Google_Service_ServiceManagement_LabelDescriptor - */ - public function getLabels() - { - return $this->labels; - } - public function setLaunchStage($launchStage) - { - $this->launchStage = $launchStage; - } - public function getLaunchStage() - { - return $this->launchStage; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Monitoring.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Monitoring.php deleted file mode 100644 index 3fee38fc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Monitoring.php +++ /dev/null @@ -1,54 +0,0 @@ -consumerDestinations = $consumerDestinations; - } - /** - * @return Google_Service_ServiceManagement_MonitoringDestination - */ - public function getConsumerDestinations() - { - return $this->consumerDestinations; - } - /** - * @param Google_Service_ServiceManagement_MonitoringDestination - */ - public function setProducerDestinations($producerDestinations) - { - $this->producerDestinations = $producerDestinations; - } - /** - * @return Google_Service_ServiceManagement_MonitoringDestination - */ - public function getProducerDestinations() - { - return $this->producerDestinations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/MonitoringDestination.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/MonitoringDestination.php deleted file mode 100644 index eb86e4b1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/MonitoringDestination.php +++ /dev/null @@ -1,40 +0,0 @@ -metrics = $metrics; - } - public function getMetrics() - { - return $this->metrics; - } - public function setMonitoredResource($monitoredResource) - { - $this->monitoredResource = $monitoredResource; - } - public function getMonitoredResource() - { - return $this->monitoredResource; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/OAuthRequirements.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/OAuthRequirements.php deleted file mode 100644 index 6433e560..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/OAuthRequirements.php +++ /dev/null @@ -1,30 +0,0 @@ -canonicalScopes = $canonicalScopes; - } - public function getCanonicalScopes() - { - return $this->canonicalScopes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Operation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Operation.php deleted file mode 100644 index 26d0fd9f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Operation.php +++ /dev/null @@ -1,73 +0,0 @@ -done = $done; - } - public function getDone() - { - return $this->done; - } - /** - * @param Google_Service_ServiceManagement_Status - */ - public function setError(Google_Service_ServiceManagement_Status $error) - { - $this->error = $error; - } - /** - * @return Google_Service_ServiceManagement_Status - */ - public function getError() - { - return $this->error; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/OperationMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/OperationMetadata.php deleted file mode 100644 index a471ddb6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/OperationMetadata.php +++ /dev/null @@ -1,65 +0,0 @@ -progressPercentage = $progressPercentage; - } - public function getProgressPercentage() - { - return $this->progressPercentage; - } - public function setResourceNames($resourceNames) - { - $this->resourceNames = $resourceNames; - } - public function getResourceNames() - { - return $this->resourceNames; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } - /** - * @param Google_Service_ServiceManagement_Step - */ - public function setSteps($steps) - { - $this->steps = $steps; - } - /** - * @return Google_Service_ServiceManagement_Step - */ - public function getSteps() - { - return $this->steps; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Option.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Option.php deleted file mode 100644 index 51034943..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Option.php +++ /dev/null @@ -1,39 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Page.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Page.php deleted file mode 100644 index 3f98c2c1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Page.php +++ /dev/null @@ -1,56 +0,0 @@ -content = $content; - } - public function getContent() - { - return $this->content; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_ServiceManagement_Page - */ - public function setSubpages($subpages) - { - $this->subpages = $subpages; - } - /** - * @return Google_Service_ServiceManagement_Page - */ - public function getSubpages() - { - return $this->subpages; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Policy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Policy.php deleted file mode 100644 index 8a5e4d27..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Policy.php +++ /dev/null @@ -1,72 +0,0 @@ -auditConfigs = $auditConfigs; - } - /** - * @return Google_Service_ServiceManagement_AuditConfig - */ - public function getAuditConfigs() - { - return $this->auditConfigs; - } - /** - * @param Google_Service_ServiceManagement_Binding - */ - public function setBindings($bindings) - { - $this->bindings = $bindings; - } - /** - * @return Google_Service_ServiceManagement_Binding - */ - public function getBindings() - { - return $this->bindings; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Quota.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Quota.php deleted file mode 100644 index 2e3f2ca7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Quota.php +++ /dev/null @@ -1,54 +0,0 @@ -limits = $limits; - } - /** - * @return Google_Service_ServiceManagement_QuotaLimit - */ - public function getLimits() - { - return $this->limits; - } - /** - * @param Google_Service_ServiceManagement_MetricRule - */ - public function setMetricRules($metricRules) - { - $this->metricRules = $metricRules; - } - /** - * @return Google_Service_ServiceManagement_MetricRule - */ - public function getMetricRules() - { - return $this->metricRules; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/QuotaLimit.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/QuotaLimit.php deleted file mode 100644 index 429842d6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/QuotaLimit.php +++ /dev/null @@ -1,111 +0,0 @@ -defaultLimit = $defaultLimit; - } - public function getDefaultLimit() - { - return $this->defaultLimit; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setDuration($duration) - { - $this->duration = $duration; - } - public function getDuration() - { - return $this->duration; - } - public function setFreeTier($freeTier) - { - $this->freeTier = $freeTier; - } - public function getFreeTier() - { - return $this->freeTier; - } - public function setMaxLimit($maxLimit) - { - $this->maxLimit = $maxLimit; - } - public function getMaxLimit() - { - return $this->maxLimit; - } - public function setMetric($metric) - { - $this->metric = $metric; - } - public function getMetric() - { - return $this->metric; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setUnit($unit) - { - $this->unit = $unit; - } - public function getUnit() - { - return $this->unit; - } - public function setValues($values) - { - $this->values = $values; - } - public function getValues() - { - return $this->values; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Resource/Operations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Resource/Operations.php deleted file mode 100644 index 97df4359..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Resource/Operations.php +++ /dev/null @@ -1,80 +0,0 @@ - - * $servicemanagementService = new Google_Service_ServiceManagement(...); - * $operations = $servicemanagementService->operations; - * - */ -class Google_Service_ServiceManagement_Resource_Operations extends Google_Service_Resource -{ - /** - * Gets the latest state of a long-running operation. Clients can use this - * method to poll the operation result at intervals as recommended by the API - * service. (operations.get) - * - * @param string $name The name of the operation resource. - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceManagement_Operation - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_ServiceManagement_Operation"); - } - /** - * Lists service operations that match the specified filter in the request. - * (operations.listOperations) - * - * @param array $optParams Optional parameters. - * - * @opt_param string filter A string for filtering Operations. The following - * filter fields are supported - * - * * serviceName Required. Only `=` operator is allowed. * startTime The - * time this job was started, in ISO 8601 format. Allowed operators are - * `>=`, `>`, `<=`, and `<`. * status Can be `done`, `in_progress`, or - * `failed`. Allowed operators are `=`, and `!=`. - * - * Filter expression supports conjunction (AND) and disjunction (OR) logical - * operators. However, the serviceName restriction must be at the top-level - * and can only be combined with other restrictions via the AND logical - * operator. - * - * Examples - * - * * `serviceName={some-service}.googleapis.com` * `serviceName={some- - * service}.googleapis.com AND startTime>="2017-02-01"` * `serviceName={some- - * service}.googleapis.com AND status=done` * `serviceName={some- - * service}.googleapis.com AND (status=done OR startTime>="2017-02-01")` - * @opt_param string name Not used. - * @opt_param string pageToken The standard list page token. - * @opt_param int pageSize The maximum number of operations to return. If - * unspecified, defaults to 50. The maximum value is 100. - * @return Google_Service_ServiceManagement_ListOperationsResponse - */ - public function listOperations($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_ServiceManagement_ListOperationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Resource/Services.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Resource/Services.php deleted file mode 100644 index 57361703..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Resource/Services.php +++ /dev/null @@ -1,274 +0,0 @@ - - * $servicemanagementService = new Google_Service_ServiceManagement(...); - * $services = $servicemanagementService->services; - * - */ -class Google_Service_ServiceManagement_Resource_Services extends Google_Service_Resource -{ - /** - * Creates a new managed service. Please note one producer project can own no - * more than 20 services. - * - * Operation (services.create) - * - * @param Google_Service_ServiceManagement_ManagedService $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceManagement_Operation - */ - public function create(Google_Service_ServiceManagement_ManagedService $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_ServiceManagement_Operation"); - } - /** - * Deletes a managed service. This method will change the service to the `Soft- - * Delete` state for 30 days. Within this period, service producers may call - * UndeleteService to restore the service. After 30 days, the service will be - * permanently deleted. - * - * Operation (services.delete) - * - * @param string $serviceName Required. The name of the service. See the - * [overview](/service-management/overview) for naming requirements. For - * example: `example.googleapis.com`. - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceManagement_Operation - */ - public function delete($serviceName, $optParams = array()) - { - $params = array('serviceName' => $serviceName); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_ServiceManagement_Operation"); - } - /** - * Disables a service for a project, so it can no longer be be used for the - * project. It prevents accidental usage that may cause unexpected billing - * charges or security leaks. - * - * Operation (services.disable) - * - * @param string $serviceName Required. Name of the service to disable. - * Specifying an unknown service name will cause the request to fail. - * @param Google_Service_ServiceManagement_DisableServiceRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceManagement_Operation - */ - public function disable($serviceName, Google_Service_ServiceManagement_DisableServiceRequest $postBody, $optParams = array()) - { - $params = array('serviceName' => $serviceName, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('disable', array($params), "Google_Service_ServiceManagement_Operation"); - } - /** - * Enables a service for a project, so it can be used for the project. See - * [Cloud Auth Guide](https://cloud.google.com/docs/authentication) for more - * information. - * - * Operation (services.enable) - * - * @param string $serviceName Required. Name of the service to enable. - * Specifying an unknown service name will cause the request to fail. - * @param Google_Service_ServiceManagement_EnableServiceRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceManagement_Operation - */ - public function enable($serviceName, Google_Service_ServiceManagement_EnableServiceRequest $postBody, $optParams = array()) - { - $params = array('serviceName' => $serviceName, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('enable', array($params), "Google_Service_ServiceManagement_Operation"); - } - /** - * Generates and returns a report (errors, warnings and changes from existing - * configurations) associated with GenerateConfigReportRequest.new_value - * - * If GenerateConfigReportRequest.old_value is specified, - * GenerateConfigReportRequest will contain a single ChangeReport based on the - * comparison between GenerateConfigReportRequest.new_value and - * GenerateConfigReportRequest.old_value. If - * GenerateConfigReportRequest.old_value is not specified, this method will - * compare GenerateConfigReportRequest.new_value with the last pushed service - * configuration. (services.generateConfigReport) - * - * @param Google_Service_ServiceManagement_GenerateConfigReportRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceManagement_GenerateConfigReportResponse - */ - public function generateConfigReport(Google_Service_ServiceManagement_GenerateConfigReportRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('generateConfigReport', array($params), "Google_Service_ServiceManagement_GenerateConfigReportResponse"); - } - /** - * Gets a managed service. Authentication is required unless the service is - * public. (services.get) - * - * @param string $serviceName Required. The name of the service. See the - * `ServiceManager` overview for naming requirements. For example: - * `example.googleapis.com`. - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceManagement_ManagedService - */ - public function get($serviceName, $optParams = array()) - { - $params = array('serviceName' => $serviceName); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_ServiceManagement_ManagedService"); - } - /** - * Gets a service configuration (version) for a managed service. - * (services.getConfig) - * - * @param string $serviceName Required. The name of the service. See the - * [overview](/service-management/overview) for naming requirements. For - * example: `example.googleapis.com`. - * @param array $optParams Optional parameters. - * - * @opt_param string view Specifies which parts of the Service Config should be - * returned in the response. - * @opt_param string configId Required. The id of the service configuration - * resource. - * - * This field must be specified for the server to return all fields, including - * `SourceInfo`. - * @return Google_Service_ServiceManagement_Service - */ - public function getConfig($serviceName, $optParams = array()) - { - $params = array('serviceName' => $serviceName); - $params = array_merge($params, $optParams); - return $this->call('getConfig', array($params), "Google_Service_ServiceManagement_Service"); - } - /** - * Gets the access control policy for a resource. Returns an empty policy if the - * resource exists and does not have a policy set. (services.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 Google_Service_ServiceManagement_GetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceManagement_Policy - */ - public function getIamPolicy($resource, Google_Service_ServiceManagement_GetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_ServiceManagement_Policy"); - } - /** - * Lists managed services. - * - * Returns all public services. For authenticated users, also returns all - * services the calling user has "servicemanagement.services.get" permission - * for. - * - * **BETA:** If the caller specifies the `consumer_id`, it returns only the - * services enabled on the consumer. The `consumer_id` must have the format of - * "project:{PROJECT-ID}". (services.listServices) - * - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Token identifying which result to start with; - * returned by a previous list call. - * @opt_param int pageSize The max number of items to include in the response - * list. Page size is 50 if not specified. Maximum value is 100. - * @opt_param string producerProjectId Include services produced by the - * specified project. - * @opt_param string consumerId Include services consumed by the specified - * consumer. - * - * The Google Service Management implementation accepts the following forms: - - * project: - * @return Google_Service_ServiceManagement_ListServicesResponse - */ - public function listServices($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_ServiceManagement_ListServicesResponse"); - } - /** - * Sets the access control policy on the specified resource. Replaces any - * existing policy. - * - * Can return Public Errors: NOT_FOUND, INVALID_ARGUMENT and PERMISSION_DENIED - * (services.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_ServiceManagement_SetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceManagement_Policy - */ - public function setIamPolicy($resource, Google_Service_ServiceManagement_SetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_ServiceManagement_Policy"); - } - /** - * 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. (services.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_ServiceManagement_TestIamPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceManagement_TestIamPermissionsResponse - */ - public function testIamPermissions($resource, Google_Service_ServiceManagement_TestIamPermissionsRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_ServiceManagement_TestIamPermissionsResponse"); - } - /** - * Revives a previously deleted managed service. The method restores the service - * using the configuration at the time the service was deleted. The target - * service must exist and must have been deleted within the last 30 days. - * - * Operation (services.undelete) - * - * @param string $serviceName Required. The name of the service. See the - * [overview](/service-management/overview) for naming requirements. For - * example: `example.googleapis.com`. - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceManagement_Operation - */ - public function undelete($serviceName, $optParams = array()) - { - $params = array('serviceName' => $serviceName); - $params = array_merge($params, $optParams); - return $this->call('undelete', array($params), "Google_Service_ServiceManagement_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Resource/ServicesConfigs.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Resource/ServicesConfigs.php deleted file mode 100644 index 53bb7cec..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Resource/ServicesConfigs.php +++ /dev/null @@ -1,119 +0,0 @@ - - * $servicemanagementService = new Google_Service_ServiceManagement(...); - * $configs = $servicemanagementService->configs; - * - */ -class Google_Service_ServiceManagement_Resource_ServicesConfigs extends Google_Service_Resource -{ - /** - * Creates a new service configuration (version) for a managed service. This - * method only stores the service configuration. To roll out the service - * configuration to backend systems please call CreateServiceRollout. - * - * Only the 100 most recent service configurations and ones referenced by - * existing rollouts are kept for each service. The rest will be deleted - * eventually. (configs.create) - * - * @param string $serviceName Required. The name of the service. See the - * [overview](/service-management/overview) for naming requirements. For - * example: `example.googleapis.com`. - * @param Google_Service_ServiceManagement_Service $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceManagement_Service - */ - public function create($serviceName, Google_Service_ServiceManagement_Service $postBody, $optParams = array()) - { - $params = array('serviceName' => $serviceName, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_ServiceManagement_Service"); - } - /** - * Gets a service configuration (version) for a managed service. (configs.get) - * - * @param string $serviceName Required. The name of the service. See the - * [overview](/service-management/overview) for naming requirements. For - * example: `example.googleapis.com`. - * @param string $configId Required. The id of the service configuration - * resource. - * - * This field must be specified for the server to return all fields, including - * `SourceInfo`. - * @param array $optParams Optional parameters. - * - * @opt_param string view Specifies which parts of the Service Config should be - * returned in the response. - * @return Google_Service_ServiceManagement_Service - */ - public function get($serviceName, $configId, $optParams = array()) - { - $params = array('serviceName' => $serviceName, 'configId' => $configId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_ServiceManagement_Service"); - } - /** - * Lists the history of the service configuration for a managed service, from - * the newest to the oldest. (configs.listServicesConfigs) - * - * @param string $serviceName Required. The name of the service. See the - * [overview](/service-management/overview) for naming requirements. For - * example: `example.googleapis.com`. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The token of the page to retrieve. - * @opt_param int pageSize The max number of items to include in the response - * list. Page size is 50 if not specified. Maximum value is 100. - * @return Google_Service_ServiceManagement_ListServiceConfigsResponse - */ - public function listServicesConfigs($serviceName, $optParams = array()) - { - $params = array('serviceName' => $serviceName); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_ServiceManagement_ListServiceConfigsResponse"); - } - /** - * Creates a new service configuration (version) for a managed service based on - * user-supplied configuration source files (for example: OpenAPI - * Specification). This method stores the source configurations as well as the - * generated service configuration. To rollout the service configuration to - * other services, please call CreateServiceRollout. - * - * Only the 100 most recent configuration sources and ones referenced by - * existing service configurtions are kept for each service. The rest will be - * deleted eventually. - * - * Operation (configs.submit) - * - * @param string $serviceName Required. The name of the service. See the - * [overview](/service-management/overview) for naming requirements. For - * example: `example.googleapis.com`. - * @param Google_Service_ServiceManagement_SubmitConfigSourceRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceManagement_Operation - */ - public function submit($serviceName, Google_Service_ServiceManagement_SubmitConfigSourceRequest $postBody, $optParams = array()) - { - $params = array('serviceName' => $serviceName, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('submit', array($params), "Google_Service_ServiceManagement_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Resource/ServicesConsumers.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Resource/ServicesConsumers.php deleted file mode 100644 index 7e782db9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Resource/ServicesConsumers.php +++ /dev/null @@ -1,87 +0,0 @@ - - * $servicemanagementService = new Google_Service_ServiceManagement(...); - * $consumers = $servicemanagementService->consumers; - * - */ -class Google_Service_ServiceManagement_Resource_ServicesConsumers extends Google_Service_Resource -{ - /** - * Gets the access control policy for a resource. Returns an empty policy if the - * resource exists and does not have a policy set. (consumers.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 Google_Service_ServiceManagement_GetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceManagement_Policy - */ - public function getIamPolicy($resource, Google_Service_ServiceManagement_GetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_ServiceManagement_Policy"); - } - /** - * Sets the access control policy on the specified resource. Replaces any - * existing policy. - * - * Can return Public Errors: NOT_FOUND, INVALID_ARGUMENT and PERMISSION_DENIED - * (consumers.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_ServiceManagement_SetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceManagement_Policy - */ - public function setIamPolicy($resource, Google_Service_ServiceManagement_SetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_ServiceManagement_Policy"); - } - /** - * 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. (consumers.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_ServiceManagement_TestIamPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceManagement_TestIamPermissionsResponse - */ - public function testIamPermissions($resource, Google_Service_ServiceManagement_TestIamPermissionsRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_ServiceManagement_TestIamPermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Resource/ServicesRollouts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Resource/ServicesRollouts.php deleted file mode 100644 index eafbe2d6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Resource/ServicesRollouts.php +++ /dev/null @@ -1,99 +0,0 @@ - - * $servicemanagementService = new Google_Service_ServiceManagement(...); - * $rollouts = $servicemanagementService->rollouts; - * - */ -class Google_Service_ServiceManagement_Resource_ServicesRollouts extends Google_Service_Resource -{ - /** - * Creates a new service configuration rollout. Based on rollout, the Google - * Service Management will roll out the service configurations to different - * backend services. For example, the logging configuration will be pushed to - * Google Cloud Logging. - * - * Please note that any previous pending and running Rollouts and associated - * Operations will be automatically cancelled so that the latest Rollout will - * not be blocked by previous Rollouts. - * - * Only the 100 most recent (in any state) and the last 10 successful (if not - * already part of the set of 100 most recent) rollouts are kept for each - * service. The rest will be deleted eventually. - * - * Operation (rollouts.create) - * - * @param string $serviceName Required. The name of the service. See the - * [overview](/service-management/overview) for naming requirements. For - * example: `example.googleapis.com`. - * @param Google_Service_ServiceManagement_Rollout $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceManagement_Operation - */ - public function create($serviceName, Google_Service_ServiceManagement_Rollout $postBody, $optParams = array()) - { - $params = array('serviceName' => $serviceName, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_ServiceManagement_Operation"); - } - /** - * Gets a service configuration rollout. (rollouts.get) - * - * @param string $serviceName Required. The name of the service. See the - * [overview](/service-management/overview) for naming requirements. For - * example: `example.googleapis.com`. - * @param string $rolloutId Required. The id of the rollout resource. - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceManagement_Rollout - */ - public function get($serviceName, $rolloutId, $optParams = array()) - { - $params = array('serviceName' => $serviceName, 'rolloutId' => $rolloutId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_ServiceManagement_Rollout"); - } - /** - * Lists the history of the service configuration rollouts for a managed - * service, from the newest to the oldest. (rollouts.listServicesRollouts) - * - * @param string $serviceName Required. The name of the service. See the - * [overview](/service-management/overview) for naming requirements. For - * example: `example.googleapis.com`. - * @param array $optParams Optional parameters. - * - * @opt_param string filter Required. Use `filter` to return subset of rollouts. - * The following filters are supported: -- To limit the results to only those - * in [status](google.api.servicemanagement.v1.RolloutStatus) 'SUCCESS', - * use filter='status=SUCCESS' -- To limit the results to those in - * [status](google.api.servicemanagement.v1.RolloutStatus) 'CANCELLED' or - * 'FAILED', use filter='status=CANCELLED OR status=FAILED' - * @opt_param string pageToken The token of the page to retrieve. - * @opt_param int pageSize The max number of items to include in the response - * list. Page size is 50 if not specified. Maximum value is 100. - * @return Google_Service_ServiceManagement_ListServiceRolloutsResponse - */ - public function listServicesRollouts($serviceName, $optParams = array()) - { - $params = array('serviceName' => $serviceName); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_ServiceManagement_ListServiceRolloutsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Rollout.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Rollout.php deleted file mode 100644 index 7e67bcb2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Rollout.php +++ /dev/null @@ -1,98 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setCreatedBy($createdBy) - { - $this->createdBy = $createdBy; - } - public function getCreatedBy() - { - return $this->createdBy; - } - /** - * @param Google_Service_ServiceManagement_DeleteServiceStrategy - */ - public function setDeleteServiceStrategy(Google_Service_ServiceManagement_DeleteServiceStrategy $deleteServiceStrategy) - { - $this->deleteServiceStrategy = $deleteServiceStrategy; - } - /** - * @return Google_Service_ServiceManagement_DeleteServiceStrategy - */ - public function getDeleteServiceStrategy() - { - return $this->deleteServiceStrategy; - } - public function setRolloutId($rolloutId) - { - $this->rolloutId = $rolloutId; - } - public function getRolloutId() - { - return $this->rolloutId; - } - public function setServiceName($serviceName) - { - $this->serviceName = $serviceName; - } - public function getServiceName() - { - return $this->serviceName; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - /** - * @param Google_Service_ServiceManagement_TrafficPercentStrategy - */ - public function setTrafficPercentStrategy(Google_Service_ServiceManagement_TrafficPercentStrategy $trafficPercentStrategy) - { - $this->trafficPercentStrategy = $trafficPercentStrategy; - } - /** - * @return Google_Service_ServiceManagement_TrafficPercentStrategy - */ - public function getTrafficPercentStrategy() - { - return $this->trafficPercentStrategy; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Service.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Service.php deleted file mode 100644 index d0618d1b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Service.php +++ /dev/null @@ -1,419 +0,0 @@ -apis = $apis; - } - /** - * @return Google_Service_ServiceManagement_Api - */ - public function getApis() - { - return $this->apis; - } - /** - * @param Google_Service_ServiceManagement_Authentication - */ - public function setAuthentication(Google_Service_ServiceManagement_Authentication $authentication) - { - $this->authentication = $authentication; - } - /** - * @return Google_Service_ServiceManagement_Authentication - */ - public function getAuthentication() - { - return $this->authentication; - } - /** - * @param Google_Service_ServiceManagement_Backend - */ - public function setBackend(Google_Service_ServiceManagement_Backend $backend) - { - $this->backend = $backend; - } - /** - * @return Google_Service_ServiceManagement_Backend - */ - public function getBackend() - { - return $this->backend; - } - /** - * @param Google_Service_ServiceManagement_Billing - */ - public function setBilling(Google_Service_ServiceManagement_Billing $billing) - { - $this->billing = $billing; - } - /** - * @return Google_Service_ServiceManagement_Billing - */ - public function getBilling() - { - return $this->billing; - } - public function setConfigVersion($configVersion) - { - $this->configVersion = $configVersion; - } - public function getConfigVersion() - { - return $this->configVersion; - } - /** - * @param Google_Service_ServiceManagement_Context - */ - public function setContext(Google_Service_ServiceManagement_Context $context) - { - $this->context = $context; - } - /** - * @return Google_Service_ServiceManagement_Context - */ - public function getContext() - { - return $this->context; - } - /** - * @param Google_Service_ServiceManagement_Control - */ - public function setControl(Google_Service_ServiceManagement_Control $control) - { - $this->control = $control; - } - /** - * @return Google_Service_ServiceManagement_Control - */ - public function getControl() - { - return $this->control; - } - /** - * @param Google_Service_ServiceManagement_CustomError - */ - public function setCustomError(Google_Service_ServiceManagement_CustomError $customError) - { - $this->customError = $customError; - } - /** - * @return Google_Service_ServiceManagement_CustomError - */ - public function getCustomError() - { - return $this->customError; - } - /** - * @param Google_Service_ServiceManagement_Documentation - */ - public function setDocumentation(Google_Service_ServiceManagement_Documentation $documentation) - { - $this->documentation = $documentation; - } - /** - * @return Google_Service_ServiceManagement_Documentation - */ - public function getDocumentation() - { - return $this->documentation; - } - /** - * @param Google_Service_ServiceManagement_Endpoint - */ - public function setEndpoints($endpoints) - { - $this->endpoints = $endpoints; - } - /** - * @return Google_Service_ServiceManagement_Endpoint - */ - public function getEndpoints() - { - return $this->endpoints; - } - /** - * @param Google_Service_ServiceManagement_Enum - */ - public function setEnums($enums) - { - $this->enums = $enums; - } - /** - * @return Google_Service_ServiceManagement_Enum - */ - public function getEnums() - { - return $this->enums; - } - /** - * @param Google_Service_ServiceManagement_Http - */ - public function setHttp(Google_Service_ServiceManagement_Http $http) - { - $this->http = $http; - } - /** - * @return Google_Service_ServiceManagement_Http - */ - public function getHttp() - { - return $this->http; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_ServiceManagement_Logging - */ - public function setLogging(Google_Service_ServiceManagement_Logging $logging) - { - $this->logging = $logging; - } - /** - * @return Google_Service_ServiceManagement_Logging - */ - public function getLogging() - { - return $this->logging; - } - /** - * @param Google_Service_ServiceManagement_LogDescriptor - */ - public function setLogs($logs) - { - $this->logs = $logs; - } - /** - * @return Google_Service_ServiceManagement_LogDescriptor - */ - public function getLogs() - { - return $this->logs; - } - /** - * @param Google_Service_ServiceManagement_MetricDescriptor - */ - public function setMetrics($metrics) - { - $this->metrics = $metrics; - } - /** - * @return Google_Service_ServiceManagement_MetricDescriptor - */ - public function getMetrics() - { - return $this->metrics; - } - /** - * @param Google_Service_ServiceManagement_MonitoredResourceDescriptor - */ - public function setMonitoredResources($monitoredResources) - { - $this->monitoredResources = $monitoredResources; - } - /** - * @return Google_Service_ServiceManagement_MonitoredResourceDescriptor - */ - public function getMonitoredResources() - { - return $this->monitoredResources; - } - /** - * @param Google_Service_ServiceManagement_Monitoring - */ - public function setMonitoring(Google_Service_ServiceManagement_Monitoring $monitoring) - { - $this->monitoring = $monitoring; - } - /** - * @return Google_Service_ServiceManagement_Monitoring - */ - public function getMonitoring() - { - return $this->monitoring; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setProducerProjectId($producerProjectId) - { - $this->producerProjectId = $producerProjectId; - } - public function getProducerProjectId() - { - return $this->producerProjectId; - } - /** - * @param Google_Service_ServiceManagement_Quota - */ - public function setQuota(Google_Service_ServiceManagement_Quota $quota) - { - $this->quota = $quota; - } - /** - * @return Google_Service_ServiceManagement_Quota - */ - public function getQuota() - { - return $this->quota; - } - /** - * @param Google_Service_ServiceManagement_SourceInfo - */ - public function setSourceInfo(Google_Service_ServiceManagement_SourceInfo $sourceInfo) - { - $this->sourceInfo = $sourceInfo; - } - /** - * @return Google_Service_ServiceManagement_SourceInfo - */ - public function getSourceInfo() - { - return $this->sourceInfo; - } - /** - * @param Google_Service_ServiceManagement_SystemParameters - */ - public function setSystemParameters(Google_Service_ServiceManagement_SystemParameters $systemParameters) - { - $this->systemParameters = $systemParameters; - } - /** - * @return Google_Service_ServiceManagement_SystemParameters - */ - public function getSystemParameters() - { - return $this->systemParameters; - } - /** - * @param Google_Service_ServiceManagement_Type - */ - public function setSystemTypes($systemTypes) - { - $this->systemTypes = $systemTypes; - } - /** - * @return Google_Service_ServiceManagement_Type - */ - public function getSystemTypes() - { - return $this->systemTypes; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - /** - * @param Google_Service_ServiceManagement_Type - */ - public function setTypes($types) - { - $this->types = $types; - } - /** - * @return Google_Service_ServiceManagement_Type - */ - public function getTypes() - { - return $this->types; - } - /** - * @param Google_Service_ServiceManagement_Usage - */ - public function setUsage(Google_Service_ServiceManagement_Usage $usage) - { - $this->usage = $usage; - } - /** - * @return Google_Service_ServiceManagement_Usage - */ - public function getUsage() - { - return $this->usage; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/ServiceIdentity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/ServiceIdentity.php deleted file mode 100644 index 985503ce..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/ServiceIdentity.php +++ /dev/null @@ -1,48 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setServiceAccountParent($serviceAccountParent) - { - $this->serviceAccountParent = $serviceAccountParent; - } - public function getServiceAccountParent() - { - return $this->serviceAccountParent; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/SetIamPolicyRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/SetIamPolicyRequest.php deleted file mode 100644 index ed28f2dc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/SetIamPolicyRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -policy = $policy; - } - /** - * @return Google_Service_ServiceManagement_Policy - */ - public function getPolicy() - { - return $this->policy; - } - public function setUpdateMask($updateMask) - { - $this->updateMask = $updateMask; - } - public function getUpdateMask() - { - return $this->updateMask; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/SourceContext.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/SourceContext.php deleted file mode 100644 index 39a4980f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/SourceContext.php +++ /dev/null @@ -1,30 +0,0 @@ -fileName = $fileName; - } - public function getFileName() - { - return $this->fileName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/SourceInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/SourceInfo.php deleted file mode 100644 index 1dc56a7d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/SourceInfo.php +++ /dev/null @@ -1,31 +0,0 @@ -sourceFiles = $sourceFiles; - } - public function getSourceFiles() - { - return $this->sourceFiles; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Status.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Status.php deleted file mode 100644 index 74179467..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Status.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Step.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Step.php deleted file mode 100644 index e6fc9b10..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Step.php +++ /dev/null @@ -1,39 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/SubmitConfigSourceRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/SubmitConfigSourceRequest.php deleted file mode 100644 index 229e3f4b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/SubmitConfigSourceRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -configSource = $configSource; - } - /** - * @return Google_Service_ServiceManagement_ConfigSource - */ - public function getConfigSource() - { - return $this->configSource; - } - public function setValidateOnly($validateOnly) - { - $this->validateOnly = $validateOnly; - } - public function getValidateOnly() - { - return $this->validateOnly; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/SubmitConfigSourceResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/SubmitConfigSourceResponse.php deleted file mode 100644 index f4415242..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/SubmitConfigSourceResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -serviceConfig = $serviceConfig; - } - /** - * @return Google_Service_ServiceManagement_Service - */ - public function getServiceConfig() - { - return $this->serviceConfig; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/SystemParameter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/SystemParameter.php deleted file mode 100644 index 6c777bd6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/SystemParameter.php +++ /dev/null @@ -1,48 +0,0 @@ -httpHeader = $httpHeader; - } - public function getHttpHeader() - { - return $this->httpHeader; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setUrlQueryParameter($urlQueryParameter) - { - $this->urlQueryParameter = $urlQueryParameter; - } - public function getUrlQueryParameter() - { - return $this->urlQueryParameter; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/SystemParameterRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/SystemParameterRule.php deleted file mode 100644 index c2e80bb2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/SystemParameterRule.php +++ /dev/null @@ -1,47 +0,0 @@ -parameters = $parameters; - } - /** - * @return Google_Service_ServiceManagement_SystemParameter - */ - public function getParameters() - { - return $this->parameters; - } - public function setSelector($selector) - { - $this->selector = $selector; - } - public function getSelector() - { - return $this->selector; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/SystemParameters.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/SystemParameters.php deleted file mode 100644 index ed071be9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/SystemParameters.php +++ /dev/null @@ -1,38 +0,0 @@ -rules = $rules; - } - /** - * @return Google_Service_ServiceManagement_SystemParameterRule - */ - public function getRules() - { - return $this->rules; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/TestIamPermissionsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/TestIamPermissionsRequest.php deleted file mode 100644 index 08a3c729..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/TestIamPermissionsRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/TestIamPermissionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/TestIamPermissionsResponse.php deleted file mode 100644 index cb9cb3b4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/TestIamPermissionsResponse.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/TrafficPercentStrategy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/TrafficPercentStrategy.php deleted file mode 100644 index e958e27d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/TrafficPercentStrategy.php +++ /dev/null @@ -1,30 +0,0 @@ -percentages = $percentages; - } - public function getPercentages() - { - return $this->percentages; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Type.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Type.php deleted file mode 100644 index b24af179..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Type.php +++ /dev/null @@ -1,97 +0,0 @@ -fields = $fields; - } - /** - * @return Google_Service_ServiceManagement_Field - */ - public function getFields() - { - return $this->fields; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOneofs($oneofs) - { - $this->oneofs = $oneofs; - } - public function getOneofs() - { - return $this->oneofs; - } - /** - * @param Google_Service_ServiceManagement_Option - */ - public function setOptions($options) - { - $this->options = $options; - } - /** - * @return Google_Service_ServiceManagement_Option - */ - public function getOptions() - { - return $this->options; - } - /** - * @param Google_Service_ServiceManagement_SourceContext - */ - public function setSourceContext(Google_Service_ServiceManagement_SourceContext $sourceContext) - { - $this->sourceContext = $sourceContext; - } - /** - * @return Google_Service_ServiceManagement_SourceContext - */ - public function getSourceContext() - { - return $this->sourceContext; - } - public function setSyntax($syntax) - { - $this->syntax = $syntax; - } - public function getSyntax() - { - return $this->syntax; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/UndeleteServiceResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/UndeleteServiceResponse.php deleted file mode 100644 index c6fee1e1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/UndeleteServiceResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -service = $service; - } - /** - * @return Google_Service_ServiceManagement_ManagedService - */ - public function getService() - { - return $this->service; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Usage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Usage.php deleted file mode 100644 index b4feb783..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/Usage.php +++ /dev/null @@ -1,72 +0,0 @@ -producerNotificationChannel = $producerNotificationChannel; - } - public function getProducerNotificationChannel() - { - return $this->producerNotificationChannel; - } - public function setRequirements($requirements) - { - $this->requirements = $requirements; - } - public function getRequirements() - { - return $this->requirements; - } - /** - * @param Google_Service_ServiceManagement_UsageRule - */ - public function setRules($rules) - { - $this->rules = $rules; - } - /** - * @return Google_Service_ServiceManagement_UsageRule - */ - public function getRules() - { - return $this->rules; - } - /** - * @param Google_Service_ServiceManagement_ServiceIdentity - */ - public function setServiceIdentity(Google_Service_ServiceManagement_ServiceIdentity $serviceIdentity) - { - $this->serviceIdentity = $serviceIdentity; - } - /** - * @return Google_Service_ServiceManagement_ServiceIdentity - */ - public function getServiceIdentity() - { - return $this->serviceIdentity; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/UsageRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/UsageRule.php deleted file mode 100644 index f42253d9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/UsageRule.php +++ /dev/null @@ -1,48 +0,0 @@ -allowUnregisteredCalls = $allowUnregisteredCalls; - } - public function getAllowUnregisteredCalls() - { - return $this->allowUnregisteredCalls; - } - public function setSelector($selector) - { - $this->selector = $selector; - } - public function getSelector() - { - return $this->selector; - } - public function setSkipServiceControl($skipServiceControl) - { - $this->skipServiceControl = $skipServiceControl; - } - public function getSkipServiceControl() - { - return $this->skipServiceControl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking.php deleted file mode 100644 index c5e97bf7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking.php +++ /dev/null @@ -1,235 +0,0 @@ - - * Provides automatic management of network configurations necessary for certain - * services.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_ServiceNetworking extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** Manage your Google API service configuration. */ - const SERVICE_MANAGEMENT = - "https://www.googleapis.com/auth/service.management"; - - public $operations; - public $services; - public $services_connections; - - /** - * Constructs the internal representation of the ServiceNetworking service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://servicenetworking.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'servicenetworking'; - - $this->operations = new Google_Service_ServiceNetworking_Resource_Operations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'cancel' => array( - 'path' => 'v1/{+name}:cancel', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->services = new Google_Service_ServiceNetworking_Resource_Services( - $this, - $this->serviceName, - 'services', - array( - 'methods' => array( - 'addSubnetwork' => array( - 'path' => 'v1/{+parent}:addSubnetwork', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'disableVpcServiceControls' => array( - 'path' => 'v1/{+parent}:disableVpcServiceControls', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'enableVpcServiceControls' => array( - 'path' => 'v1/{+parent}:enableVpcServiceControls', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'searchRange' => array( - 'path' => 'v1/{+parent}:searchRange', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'validate' => array( - 'path' => 'v1/{+parent}:validate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->services_connections = new Google_Service_ServiceNetworking_Resource_ServicesConnections( - $this, - $this->serviceName, - 'connections', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/connections', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/connections', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'network' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'force' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/AddSubnetworkRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/AddSubnetworkRequest.php deleted file mode 100644 index 8d7c5961..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/AddSubnetworkRequest.php +++ /dev/null @@ -1,94 +0,0 @@ -consumer = $consumer; - } - public function getConsumer() - { - return $this->consumer; - } - public function setConsumerNetwork($consumerNetwork) - { - $this->consumerNetwork = $consumerNetwork; - } - public function getConsumerNetwork() - { - return $this->consumerNetwork; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setIpPrefixLength($ipPrefixLength) - { - $this->ipPrefixLength = $ipPrefixLength; - } - public function getIpPrefixLength() - { - return $this->ipPrefixLength; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - public function setRequestedAddress($requestedAddress) - { - $this->requestedAddress = $requestedAddress; - } - public function getRequestedAddress() - { - return $this->requestedAddress; - } - public function setSubnetwork($subnetwork) - { - $this->subnetwork = $subnetwork; - } - public function getSubnetwork() - { - return $this->subnetwork; - } - public function setSubnetworkUsers($subnetworkUsers) - { - $this->subnetworkUsers = $subnetworkUsers; - } - public function getSubnetworkUsers() - { - return $this->subnetworkUsers; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Api.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Api.php deleted file mode 100644 index c8fb8712..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Api.php +++ /dev/null @@ -1,113 +0,0 @@ -methods = $methods; - } - /** - * @return Google_Service_ServiceNetworking_Method - */ - public function getMethods() - { - return $this->methods; - } - /** - * @param Google_Service_ServiceNetworking_Mixin - */ - public function setMixins($mixins) - { - $this->mixins = $mixins; - } - /** - * @return Google_Service_ServiceNetworking_Mixin - */ - public function getMixins() - { - return $this->mixins; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_ServiceNetworking_Option - */ - public function setOptions($options) - { - $this->options = $options; - } - /** - * @return Google_Service_ServiceNetworking_Option - */ - public function getOptions() - { - return $this->options; - } - /** - * @param Google_Service_ServiceNetworking_SourceContext - */ - public function setSourceContext(Google_Service_ServiceNetworking_SourceContext $sourceContext) - { - $this->sourceContext = $sourceContext; - } - /** - * @return Google_Service_ServiceNetworking_SourceContext - */ - public function getSourceContext() - { - return $this->sourceContext; - } - public function setSyntax($syntax) - { - $this->syntax = $syntax; - } - public function getSyntax() - { - return $this->syntax; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/AuthProvider.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/AuthProvider.php deleted file mode 100644 index b01394cd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/AuthProvider.php +++ /dev/null @@ -1,66 +0,0 @@ -audiences = $audiences; - } - public function getAudiences() - { - return $this->audiences; - } - public function setAuthorizationUrl($authorizationUrl) - { - $this->authorizationUrl = $authorizationUrl; - } - public function getAuthorizationUrl() - { - return $this->authorizationUrl; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setIssuer($issuer) - { - $this->issuer = $issuer; - } - public function getIssuer() - { - return $this->issuer; - } - public function setJwksUri($jwksUri) - { - $this->jwksUri = $jwksUri; - } - public function getJwksUri() - { - return $this->jwksUri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/AuthRequirement.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/AuthRequirement.php deleted file mode 100644 index e6ee9f1b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/AuthRequirement.php +++ /dev/null @@ -1,39 +0,0 @@ -audiences = $audiences; - } - public function getAudiences() - { - return $this->audiences; - } - public function setProviderId($providerId) - { - $this->providerId = $providerId; - } - public function getProviderId() - { - return $this->providerId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Authentication.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Authentication.php deleted file mode 100644 index d8a9b06a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Authentication.php +++ /dev/null @@ -1,54 +0,0 @@ -providers = $providers; - } - /** - * @return Google_Service_ServiceNetworking_AuthProvider - */ - public function getProviders() - { - return $this->providers; - } - /** - * @param Google_Service_ServiceNetworking_AuthenticationRule - */ - public function setRules($rules) - { - $this->rules = $rules; - } - /** - * @return Google_Service_ServiceNetworking_AuthenticationRule - */ - public function getRules() - { - return $this->rules; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/AuthenticationRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/AuthenticationRule.php deleted file mode 100644 index d441be28..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/AuthenticationRule.php +++ /dev/null @@ -1,72 +0,0 @@ -allowWithoutCredential = $allowWithoutCredential; - } - public function getAllowWithoutCredential() - { - return $this->allowWithoutCredential; - } - /** - * @param Google_Service_ServiceNetworking_OAuthRequirements - */ - public function setOauth(Google_Service_ServiceNetworking_OAuthRequirements $oauth) - { - $this->oauth = $oauth; - } - /** - * @return Google_Service_ServiceNetworking_OAuthRequirements - */ - public function getOauth() - { - return $this->oauth; - } - /** - * @param Google_Service_ServiceNetworking_AuthRequirement - */ - public function setRequirements($requirements) - { - $this->requirements = $requirements; - } - /** - * @return Google_Service_ServiceNetworking_AuthRequirement - */ - public function getRequirements() - { - return $this->requirements; - } - public function setSelector($selector) - { - $this->selector = $selector; - } - public function getSelector() - { - return $this->selector; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Backend.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Backend.php deleted file mode 100644 index 0b895c14..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Backend.php +++ /dev/null @@ -1,38 +0,0 @@ -rules = $rules; - } - /** - * @return Google_Service_ServiceNetworking_BackendRule - */ - public function getRules() - { - return $this->rules; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/BackendRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/BackendRule.php deleted file mode 100644 index 7a84e260..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/BackendRule.php +++ /dev/null @@ -1,102 +0,0 @@ -address = $address; - } - public function getAddress() - { - return $this->address; - } - public function setDeadline($deadline) - { - $this->deadline = $deadline; - } - public function getDeadline() - { - return $this->deadline; - } - public function setDisableAuth($disableAuth) - { - $this->disableAuth = $disableAuth; - } - public function getDisableAuth() - { - return $this->disableAuth; - } - public function setJwtAudience($jwtAudience) - { - $this->jwtAudience = $jwtAudience; - } - public function getJwtAudience() - { - return $this->jwtAudience; - } - public function setMinDeadline($minDeadline) - { - $this->minDeadline = $minDeadline; - } - public function getMinDeadline() - { - return $this->minDeadline; - } - public function setOperationDeadline($operationDeadline) - { - $this->operationDeadline = $operationDeadline; - } - public function getOperationDeadline() - { - return $this->operationDeadline; - } - public function setPathTranslation($pathTranslation) - { - $this->pathTranslation = $pathTranslation; - } - public function getPathTranslation() - { - return $this->pathTranslation; - } - public function setProtocol($protocol) - { - $this->protocol = $protocol; - } - public function getProtocol() - { - return $this->protocol; - } - public function setSelector($selector) - { - $this->selector = $selector; - } - public function getSelector() - { - return $this->selector; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Billing.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Billing.php deleted file mode 100644 index 18f68df0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Billing.php +++ /dev/null @@ -1,38 +0,0 @@ -consumerDestinations = $consumerDestinations; - } - /** - * @return Google_Service_ServiceNetworking_BillingDestination - */ - public function getConsumerDestinations() - { - return $this->consumerDestinations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/BillingDestination.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/BillingDestination.php deleted file mode 100644 index 839b5e60..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/BillingDestination.php +++ /dev/null @@ -1,40 +0,0 @@ -metrics = $metrics; - } - public function getMetrics() - { - return $this->metrics; - } - public function setMonitoredResource($monitoredResource) - { - $this->monitoredResource = $monitoredResource; - } - public function getMonitoredResource() - { - return $this->monitoredResource; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/CancelOperationRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/CancelOperationRequest.php deleted file mode 100644 index 333a25b6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/CancelOperationRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -network = $network; - } - public function getNetwork() - { - return $this->network; - } - public function setPeering($peering) - { - $this->peering = $peering; - } - public function getPeering() - { - return $this->peering; - } - public function setReservedPeeringRanges($reservedPeeringRanges) - { - $this->reservedPeeringRanges = $reservedPeeringRanges; - } - public function getReservedPeeringRanges() - { - return $this->reservedPeeringRanges; - } - public function setService($service) - { - $this->service = $service; - } - public function getService() - { - return $this->service; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/ConsumerProject.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/ConsumerProject.php deleted file mode 100644 index 18795552..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/ConsumerProject.php +++ /dev/null @@ -1,30 +0,0 @@ -projectNum = $projectNum; - } - public function getProjectNum() - { - return $this->projectNum; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Context.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Context.php deleted file mode 100644 index 3a6323a5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Context.php +++ /dev/null @@ -1,38 +0,0 @@ -rules = $rules; - } - /** - * @return Google_Service_ServiceNetworking_ContextRule - */ - public function getRules() - { - return $this->rules; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/ContextRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/ContextRule.php deleted file mode 100644 index c0eb840b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/ContextRule.php +++ /dev/null @@ -1,67 +0,0 @@ -allowedRequestExtensions = $allowedRequestExtensions; - } - public function getAllowedRequestExtensions() - { - return $this->allowedRequestExtensions; - } - public function setAllowedResponseExtensions($allowedResponseExtensions) - { - $this->allowedResponseExtensions = $allowedResponseExtensions; - } - public function getAllowedResponseExtensions() - { - return $this->allowedResponseExtensions; - } - public function setProvided($provided) - { - $this->provided = $provided; - } - public function getProvided() - { - return $this->provided; - } - public function setRequested($requested) - { - $this->requested = $requested; - } - public function getRequested() - { - return $this->requested; - } - public function setSelector($selector) - { - $this->selector = $selector; - } - public function getSelector() - { - return $this->selector; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Control.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Control.php deleted file mode 100644 index 2a8df264..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Control.php +++ /dev/null @@ -1,30 +0,0 @@ -environment = $environment; - } - public function getEnvironment() - { - return $this->environment; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/CustomError.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/CustomError.php deleted file mode 100644 index d9fde693..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/CustomError.php +++ /dev/null @@ -1,47 +0,0 @@ -rules = $rules; - } - /** - * @return Google_Service_ServiceNetworking_CustomErrorRule - */ - public function getRules() - { - return $this->rules; - } - public function setTypes($types) - { - $this->types = $types; - } - public function getTypes() - { - return $this->types; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/CustomErrorRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/CustomErrorRule.php deleted file mode 100644 index 3403ea37..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/CustomErrorRule.php +++ /dev/null @@ -1,39 +0,0 @@ -isErrorType = $isErrorType; - } - public function getIsErrorType() - { - return $this->isErrorType; - } - public function setSelector($selector) - { - $this->selector = $selector; - } - public function getSelector() - { - return $this->selector; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/CustomHttpPattern.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/CustomHttpPattern.php deleted file mode 100644 index 39c1c25c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/CustomHttpPattern.php +++ /dev/null @@ -1,39 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setPath($path) - { - $this->path = $path; - } - public function getPath() - { - return $this->path; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/DisableVpcServiceControlsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/DisableVpcServiceControlsRequest.php deleted file mode 100644 index eac92004..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/DisableVpcServiceControlsRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -consumerNetwork = $consumerNetwork; - } - public function getConsumerNetwork() - { - return $this->consumerNetwork; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Documentation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Documentation.php deleted file mode 100644 index 8dcc1220..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Documentation.php +++ /dev/null @@ -1,90 +0,0 @@ -documentationRootUrl = $documentationRootUrl; - } - public function getDocumentationRootUrl() - { - return $this->documentationRootUrl; - } - public function setOverview($overview) - { - $this->overview = $overview; - } - public function getOverview() - { - return $this->overview; - } - /** - * @param Google_Service_ServiceNetworking_Page - */ - public function setPages($pages) - { - $this->pages = $pages; - } - /** - * @return Google_Service_ServiceNetworking_Page - */ - public function getPages() - { - return $this->pages; - } - /** - * @param Google_Service_ServiceNetworking_DocumentationRule - */ - public function setRules($rules) - { - $this->rules = $rules; - } - /** - * @return Google_Service_ServiceNetworking_DocumentationRule - */ - public function getRules() - { - return $this->rules; - } - public function setServiceRootUrl($serviceRootUrl) - { - $this->serviceRootUrl = $serviceRootUrl; - } - public function getServiceRootUrl() - { - return $this->serviceRootUrl; - } - public function setSummary($summary) - { - $this->summary = $summary; - } - public function getSummary() - { - return $this->summary; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/DocumentationRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/DocumentationRule.php deleted file mode 100644 index 875c278f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/DocumentationRule.php +++ /dev/null @@ -1,48 +0,0 @@ -deprecationDescription = $deprecationDescription; - } - public function getDeprecationDescription() - { - return $this->deprecationDescription; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setSelector($selector) - { - $this->selector = $selector; - } - public function getSelector() - { - return $this->selector; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/EnableVpcServiceControlsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/EnableVpcServiceControlsRequest.php deleted file mode 100644 index 6d3f57eb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/EnableVpcServiceControlsRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -consumerNetwork = $consumerNetwork; - } - public function getConsumerNetwork() - { - return $this->consumerNetwork; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Endpoint.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Endpoint.php deleted file mode 100644 index 7a316a1d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Endpoint.php +++ /dev/null @@ -1,67 +0,0 @@ -aliases = $aliases; - } - public function getAliases() - { - return $this->aliases; - } - public function setAllowCors($allowCors) - { - $this->allowCors = $allowCors; - } - public function getAllowCors() - { - return $this->allowCors; - } - public function setFeatures($features) - { - $this->features = $features; - } - public function getFeatures() - { - return $this->features; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setTarget($target) - { - $this->target = $target; - } - public function getTarget() - { - return $this->target; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Enum.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Enum.php deleted file mode 100644 index cb4c72ee..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Enum.php +++ /dev/null @@ -1,88 +0,0 @@ -enumvalue = $enumvalue; - } - /** - * @return Google_Service_ServiceNetworking_EnumValue - */ - public function getEnumvalue() - { - return $this->enumvalue; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_ServiceNetworking_Option - */ - public function setOptions($options) - { - $this->options = $options; - } - /** - * @return Google_Service_ServiceNetworking_Option - */ - public function getOptions() - { - return $this->options; - } - /** - * @param Google_Service_ServiceNetworking_SourceContext - */ - public function setSourceContext(Google_Service_ServiceNetworking_SourceContext $sourceContext) - { - $this->sourceContext = $sourceContext; - } - /** - * @return Google_Service_ServiceNetworking_SourceContext - */ - public function getSourceContext() - { - return $this->sourceContext; - } - public function setSyntax($syntax) - { - $this->syntax = $syntax; - } - public function getSyntax() - { - return $this->syntax; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/EnumValue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/EnumValue.php deleted file mode 100644 index 9775bd25..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/EnumValue.php +++ /dev/null @@ -1,56 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setNumber($number) - { - $this->number = $number; - } - public function getNumber() - { - return $this->number; - } - /** - * @param Google_Service_ServiceNetworking_Option - */ - public function setOptions($options) - { - $this->options = $options; - } - /** - * @return Google_Service_ServiceNetworking_Option - */ - public function getOptions() - { - return $this->options; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Field.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Field.php deleted file mode 100644 index c61bc33b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Field.php +++ /dev/null @@ -1,119 +0,0 @@ -cardinality = $cardinality; - } - public function getCardinality() - { - return $this->cardinality; - } - public function setDefaultValue($defaultValue) - { - $this->defaultValue = $defaultValue; - } - public function getDefaultValue() - { - return $this->defaultValue; - } - public function setJsonName($jsonName) - { - $this->jsonName = $jsonName; - } - public function getJsonName() - { - return $this->jsonName; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNumber($number) - { - $this->number = $number; - } - public function getNumber() - { - return $this->number; - } - public function setOneofIndex($oneofIndex) - { - $this->oneofIndex = $oneofIndex; - } - public function getOneofIndex() - { - return $this->oneofIndex; - } - /** - * @param Google_Service_ServiceNetworking_Option - */ - public function setOptions($options) - { - $this->options = $options; - } - /** - * @return Google_Service_ServiceNetworking_Option - */ - public function getOptions() - { - return $this->options; - } - public function setPacked($packed) - { - $this->packed = $packed; - } - public function getPacked() - { - return $this->packed; - } - public function setTypeUrl($typeUrl) - { - $this->typeUrl = $typeUrl; - } - public function getTypeUrl() - { - return $this->typeUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/GoogleCloudServicenetworkingV1betaSubnetwork.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/GoogleCloudServicenetworkingV1betaSubnetwork.php deleted file mode 100644 index 8b97a893..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/GoogleCloudServicenetworkingV1betaSubnetwork.php +++ /dev/null @@ -1,57 +0,0 @@ -ipCidrRange = $ipCidrRange; - } - public function getIpCidrRange() - { - return $this->ipCidrRange; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNetwork($network) - { - $this->network = $network; - } - public function getNetwork() - { - return $this->network; - } - public function setOutsideAllocation($outsideAllocation) - { - $this->outsideAllocation = $outsideAllocation; - } - public function getOutsideAllocation() - { - return $this->outsideAllocation; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Http.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Http.php deleted file mode 100644 index c331344e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Http.php +++ /dev/null @@ -1,47 +0,0 @@ -fullyDecodeReservedExpansion = $fullyDecodeReservedExpansion; - } - public function getFullyDecodeReservedExpansion() - { - return $this->fullyDecodeReservedExpansion; - } - /** - * @param Google_Service_ServiceNetworking_HttpRule - */ - public function setRules($rules) - { - $this->rules = $rules; - } - /** - * @return Google_Service_ServiceNetworking_HttpRule - */ - public function getRules() - { - return $this->rules; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/HttpRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/HttpRule.php deleted file mode 100644 index 825f4084..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/HttpRule.php +++ /dev/null @@ -1,135 +0,0 @@ -additionalBindings = $additionalBindings; - } - /** - * @return Google_Service_ServiceNetworking_HttpRule - */ - public function getAdditionalBindings() - { - return $this->additionalBindings; - } - public function setAllowHalfDuplex($allowHalfDuplex) - { - $this->allowHalfDuplex = $allowHalfDuplex; - } - public function getAllowHalfDuplex() - { - return $this->allowHalfDuplex; - } - public function setBody($body) - { - $this->body = $body; - } - public function getBody() - { - return $this->body; - } - /** - * @param Google_Service_ServiceNetworking_CustomHttpPattern - */ - public function setCustom(Google_Service_ServiceNetworking_CustomHttpPattern $custom) - { - $this->custom = $custom; - } - /** - * @return Google_Service_ServiceNetworking_CustomHttpPattern - */ - public function getCustom() - { - return $this->custom; - } - public function setDelete($delete) - { - $this->delete = $delete; - } - public function getDelete() - { - return $this->delete; - } - public function setGet($get) - { - $this->get = $get; - } - public function getGet() - { - return $this->get; - } - public function setPatch($patch) - { - $this->patch = $patch; - } - public function getPatch() - { - return $this->patch; - } - public function setPost($post) - { - $this->post = $post; - } - public function getPost() - { - return $this->post; - } - public function setPut($put) - { - $this->put = $put; - } - public function getPut() - { - return $this->put; - } - public function setResponseBody($responseBody) - { - $this->responseBody = $responseBody; - } - public function getResponseBody() - { - return $this->responseBody; - } - public function setSelector($selector) - { - $this->selector = $selector; - } - public function getSelector() - { - return $this->selector; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/LabelDescriptor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/LabelDescriptor.php deleted file mode 100644 index 637da6cd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/LabelDescriptor.php +++ /dev/null @@ -1,48 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setKey($key) - { - $this->key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValueType($valueType) - { - $this->valueType = $valueType; - } - public function getValueType() - { - return $this->valueType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/ListConnectionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/ListConnectionsResponse.php deleted file mode 100644 index d4819a27..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/ListConnectionsResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -connections = $connections; - } - /** - * @return Google_Service_ServiceNetworking_Connection - */ - public function getConnections() - { - return $this->connections; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/ListOperationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/ListOperationsResponse.php deleted file mode 100644 index 30e79f8f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/ListOperationsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_ServiceNetworking_Operation - */ - public function setOperations($operations) - { - $this->operations = $operations; - } - /** - * @return Google_Service_ServiceNetworking_Operation - */ - public function getOperations() - { - return $this->operations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/LogDescriptor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/LogDescriptor.php deleted file mode 100644 index ee138c3f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/LogDescriptor.php +++ /dev/null @@ -1,65 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - /** - * @param Google_Service_ServiceNetworking_LabelDescriptor - */ - public function setLabels($labels) - { - $this->labels = $labels; - } - /** - * @return Google_Service_ServiceNetworking_LabelDescriptor - */ - public function getLabels() - { - return $this->labels; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Logging.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Logging.php deleted file mode 100644 index e589dd02..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Logging.php +++ /dev/null @@ -1,54 +0,0 @@ -consumerDestinations = $consumerDestinations; - } - /** - * @return Google_Service_ServiceNetworking_LoggingDestination - */ - public function getConsumerDestinations() - { - return $this->consumerDestinations; - } - /** - * @param Google_Service_ServiceNetworking_LoggingDestination - */ - public function setProducerDestinations($producerDestinations) - { - $this->producerDestinations = $producerDestinations; - } - /** - * @return Google_Service_ServiceNetworking_LoggingDestination - */ - public function getProducerDestinations() - { - return $this->producerDestinations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/LoggingDestination.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/LoggingDestination.php deleted file mode 100644 index 9700fc4c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/LoggingDestination.php +++ /dev/null @@ -1,40 +0,0 @@ -logs = $logs; - } - public function getLogs() - { - return $this->logs; - } - public function setMonitoredResource($monitoredResource) - { - $this->monitoredResource = $monitoredResource; - } - public function getMonitoredResource() - { - return $this->monitoredResource; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Method.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Method.php deleted file mode 100644 index 5003f172..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Method.php +++ /dev/null @@ -1,92 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_ServiceNetworking_Option - */ - public function setOptions($options) - { - $this->options = $options; - } - /** - * @return Google_Service_ServiceNetworking_Option - */ - public function getOptions() - { - return $this->options; - } - public function setRequestStreaming($requestStreaming) - { - $this->requestStreaming = $requestStreaming; - } - public function getRequestStreaming() - { - return $this->requestStreaming; - } - public function setRequestTypeUrl($requestTypeUrl) - { - $this->requestTypeUrl = $requestTypeUrl; - } - public function getRequestTypeUrl() - { - return $this->requestTypeUrl; - } - public function setResponseStreaming($responseStreaming) - { - $this->responseStreaming = $responseStreaming; - } - public function getResponseStreaming() - { - return $this->responseStreaming; - } - public function setResponseTypeUrl($responseTypeUrl) - { - $this->responseTypeUrl = $responseTypeUrl; - } - public function getResponseTypeUrl() - { - return $this->responseTypeUrl; - } - public function setSyntax($syntax) - { - $this->syntax = $syntax; - } - public function getSyntax() - { - return $this->syntax; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/MetricDescriptor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/MetricDescriptor.php deleted file mode 100644 index 1b1ebae6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/MetricDescriptor.php +++ /dev/null @@ -1,135 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - /** - * @param Google_Service_ServiceNetworking_LabelDescriptor - */ - public function setLabels($labels) - { - $this->labels = $labels; - } - /** - * @return Google_Service_ServiceNetworking_LabelDescriptor - */ - public function getLabels() - { - return $this->labels; - } - public function setLaunchStage($launchStage) - { - $this->launchStage = $launchStage; - } - public function getLaunchStage() - { - return $this->launchStage; - } - /** - * @param Google_Service_ServiceNetworking_MetricDescriptorMetadata - */ - public function setMetadata(Google_Service_ServiceNetworking_MetricDescriptorMetadata $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_ServiceNetworking_MetricDescriptorMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - public function setMetricKind($metricKind) - { - $this->metricKind = $metricKind; - } - public function getMetricKind() - { - return $this->metricKind; - } - public function setMonitoredResourceTypes($monitoredResourceTypes) - { - $this->monitoredResourceTypes = $monitoredResourceTypes; - } - public function getMonitoredResourceTypes() - { - return $this->monitoredResourceTypes; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setUnit($unit) - { - $this->unit = $unit; - } - public function getUnit() - { - return $this->unit; - } - public function setValueType($valueType) - { - $this->valueType = $valueType; - } - public function getValueType() - { - return $this->valueType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/MetricDescriptorMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/MetricDescriptorMetadata.php deleted file mode 100644 index 0a3297ae..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/MetricDescriptorMetadata.php +++ /dev/null @@ -1,48 +0,0 @@ -ingestDelay = $ingestDelay; - } - public function getIngestDelay() - { - return $this->ingestDelay; - } - public function setLaunchStage($launchStage) - { - $this->launchStage = $launchStage; - } - public function getLaunchStage() - { - return $this->launchStage; - } - public function setSamplePeriod($samplePeriod) - { - $this->samplePeriod = $samplePeriod; - } - public function getSamplePeriod() - { - return $this->samplePeriod; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/MetricRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/MetricRule.php deleted file mode 100644 index 1e1b2e10..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/MetricRule.php +++ /dev/null @@ -1,39 +0,0 @@ -metricCosts = $metricCosts; - } - public function getMetricCosts() - { - return $this->metricCosts; - } - public function setSelector($selector) - { - $this->selector = $selector; - } - public function getSelector() - { - return $this->selector; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Mixin.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Mixin.php deleted file mode 100644 index 0d1325b0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Mixin.php +++ /dev/null @@ -1,39 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setRoot($root) - { - $this->root = $root; - } - public function getRoot() - { - return $this->root; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/MonitoredResourceDescriptor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/MonitoredResourceDescriptor.php deleted file mode 100644 index 8f17a5be..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/MonitoredResourceDescriptor.php +++ /dev/null @@ -1,83 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - /** - * @param Google_Service_ServiceNetworking_LabelDescriptor - */ - public function setLabels($labels) - { - $this->labels = $labels; - } - /** - * @return Google_Service_ServiceNetworking_LabelDescriptor - */ - public function getLabels() - { - return $this->labels; - } - public function setLaunchStage($launchStage) - { - $this->launchStage = $launchStage; - } - public function getLaunchStage() - { - return $this->launchStage; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Monitoring.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Monitoring.php deleted file mode 100644 index 0fc4f0cd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Monitoring.php +++ /dev/null @@ -1,54 +0,0 @@ -consumerDestinations = $consumerDestinations; - } - /** - * @return Google_Service_ServiceNetworking_MonitoringDestination - */ - public function getConsumerDestinations() - { - return $this->consumerDestinations; - } - /** - * @param Google_Service_ServiceNetworking_MonitoringDestination - */ - public function setProducerDestinations($producerDestinations) - { - $this->producerDestinations = $producerDestinations; - } - /** - * @return Google_Service_ServiceNetworking_MonitoringDestination - */ - public function getProducerDestinations() - { - return $this->producerDestinations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/MonitoringDestination.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/MonitoringDestination.php deleted file mode 100644 index 8b93397c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/MonitoringDestination.php +++ /dev/null @@ -1,40 +0,0 @@ -metrics = $metrics; - } - public function getMetrics() - { - return $this->metrics; - } - public function setMonitoredResource($monitoredResource) - { - $this->monitoredResource = $monitoredResource; - } - public function getMonitoredResource() - { - return $this->monitoredResource; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/OAuthRequirements.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/OAuthRequirements.php deleted file mode 100644 index 4d002745..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/OAuthRequirements.php +++ /dev/null @@ -1,30 +0,0 @@ -canonicalScopes = $canonicalScopes; - } - public function getCanonicalScopes() - { - return $this->canonicalScopes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Operation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Operation.php deleted file mode 100644 index a8e662f6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Operation.php +++ /dev/null @@ -1,73 +0,0 @@ -done = $done; - } - public function getDone() - { - return $this->done; - } - /** - * @param Google_Service_ServiceNetworking_Status - */ - public function setError(Google_Service_ServiceNetworking_Status $error) - { - $this->error = $error; - } - /** - * @return Google_Service_ServiceNetworking_Status - */ - public function getError() - { - return $this->error; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Option.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Option.php deleted file mode 100644 index 9badf312..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Option.php +++ /dev/null @@ -1,39 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Page.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Page.php deleted file mode 100644 index a3af5937..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Page.php +++ /dev/null @@ -1,56 +0,0 @@ -content = $content; - } - public function getContent() - { - return $this->content; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_ServiceNetworking_Page - */ - public function setSubpages($subpages) - { - $this->subpages = $subpages; - } - /** - * @return Google_Service_ServiceNetworking_Page - */ - public function getSubpages() - { - return $this->subpages; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Quota.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Quota.php deleted file mode 100644 index 84c943f0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Quota.php +++ /dev/null @@ -1,54 +0,0 @@ -limits = $limits; - } - /** - * @return Google_Service_ServiceNetworking_QuotaLimit - */ - public function getLimits() - { - return $this->limits; - } - /** - * @param Google_Service_ServiceNetworking_MetricRule - */ - public function setMetricRules($metricRules) - { - $this->metricRules = $metricRules; - } - /** - * @return Google_Service_ServiceNetworking_MetricRule - */ - public function getMetricRules() - { - return $this->metricRules; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/QuotaLimit.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/QuotaLimit.php deleted file mode 100644 index 4472e011..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/QuotaLimit.php +++ /dev/null @@ -1,111 +0,0 @@ -defaultLimit = $defaultLimit; - } - public function getDefaultLimit() - { - return $this->defaultLimit; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setDuration($duration) - { - $this->duration = $duration; - } - public function getDuration() - { - return $this->duration; - } - public function setFreeTier($freeTier) - { - $this->freeTier = $freeTier; - } - public function getFreeTier() - { - return $this->freeTier; - } - public function setMaxLimit($maxLimit) - { - $this->maxLimit = $maxLimit; - } - public function getMaxLimit() - { - return $this->maxLimit; - } - public function setMetric($metric) - { - $this->metric = $metric; - } - public function getMetric() - { - return $this->metric; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setUnit($unit) - { - $this->unit = $unit; - } - public function getUnit() - { - return $this->unit; - } - public function setValues($values) - { - $this->values = $values; - } - public function getValues() - { - return $this->values; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Range.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Range.php deleted file mode 100644 index 6fddbeb1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Range.php +++ /dev/null @@ -1,39 +0,0 @@ -ipCidrRange = $ipCidrRange; - } - public function getIpCidrRange() - { - return $this->ipCidrRange; - } - public function setNetwork($network) - { - $this->network = $network; - } - public function getNetwork() - { - return $this->network; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/RangeReservation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/RangeReservation.php deleted file mode 100644 index 70f1317e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/RangeReservation.php +++ /dev/null @@ -1,30 +0,0 @@ -ipPrefixLength = $ipPrefixLength; - } - public function getIpPrefixLength() - { - return $this->ipPrefixLength; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Resource/Operations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Resource/Operations.php deleted file mode 100644 index e63123bc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Resource/Operations.php +++ /dev/null @@ -1,107 +0,0 @@ - - * $servicenetworkingService = new Google_Service_ServiceNetworking(...); - * $operations = $servicenetworkingService->operations; - * - */ -class Google_Service_ServiceNetworking_Resource_Operations extends Google_Service_Resource -{ - /** - * Starts asynchronous cancellation on a long-running operation. The server - * makes a best effort to cancel the operation, but success is not guaranteed. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or - * other methods to check whether the cancellation succeeded or whether the - * operation completed despite cancellation. On successful cancellation, the - * operation is not deleted; instead, it becomes an operation with an - * Operation.error value with a google.rpc.Status.code of 1, corresponding to - * `Code.CANCELLED`. (operations.cancel) - * - * @param string $name The name of the operation resource to be cancelled. - * @param Google_Service_ServiceNetworking_CancelOperationRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceNetworking_ServicenetworkingEmpty - */ - public function cancel($name, Google_Service_ServiceNetworking_CancelOperationRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('cancel', array($params), "Google_Service_ServiceNetworking_ServicenetworkingEmpty"); - } - /** - * Deletes a long-running operation. This method indicates that the client is no - * longer interested in the operation result. It does not cancel the operation. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. (operations.delete) - * - * @param string $name The name of the operation resource to be deleted. - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceNetworking_ServicenetworkingEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_ServiceNetworking_ServicenetworkingEmpty"); - } - /** - * Gets the latest state of a long-running operation. Clients can use this - * method to poll the operation result at intervals as recommended by the API - * service. (operations.get) - * - * @param string $name The name of the operation resource. - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceNetworking_Operation - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_ServiceNetworking_Operation"); - } - /** - * Lists operations that match the specified filter in the request. If the - * server doesn't support this method, it returns `UNIMPLEMENTED`. - * - * NOTE: the `name` binding allows API services to override the binding to use - * different resource name schemes, such as `users/operations`. To override the - * binding, API services can add a binding such as - * `"/v1/{name=users}/operations"` to their service configuration. For backwards - * compatibility, the default name includes the operations collection id, - * however overriding users must ensure the name binding is the parent resource, - * without the operations collection id. (operations.listOperations) - * - * @param string $name The name of the operation's parent resource. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The standard list page token. - * @opt_param int pageSize The standard list page size. - * @opt_param string filter The standard list filter. - * @return Google_Service_ServiceNetworking_ListOperationsResponse - */ - public function listOperations($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_ServiceNetworking_ListOperationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Resource/Services.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Resource/Services.php deleted file mode 100644 index 6d74421c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Resource/Services.php +++ /dev/null @@ -1,131 +0,0 @@ - - * $servicenetworkingService = new Google_Service_ServiceNetworking(...); - * $services = $servicenetworkingService->services; - * - */ -class Google_Service_ServiceNetworking_Resource_Services extends Google_Service_Resource -{ - /** - * For service producers, provisions a new subnet in a peered service's shared - * VPC network in the requested region and with the requested size that's - * expressed as a CIDR range (number of leading bits of ipV4 network mask). The - * method checks against the assigned allocated ranges to find a non-conflicting - * IP address range. The method will reuse a subnet if subsequent calls contain - * the same subnet name, region, and prefix length. This method will make - * producer's tenant project to be a shared VPC service project as needed. The - * response from the `get` operation will be of type `Subnetwork` if the - * operation successfully completes. (services.addSubnetwork) - * - * @param string $parent Required. A tenant project in the service producer - * organization, in the following format: services/{service}/{collection-id - * }/{resource-id}. {collection-id} is the cloud resource collection type that - * represents the tenant project. Only `projects` are supported. {resource-id} - * is the tenant project numeric id, such as `123456`. {service} the name of the - * peering service, such as `service-peering.example.com`. This service must - * already be enabled in the service consumer's project. - * @param Google_Service_ServiceNetworking_AddSubnetworkRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceNetworking_Operation - */ - public function addSubnetwork($parent, Google_Service_ServiceNetworking_AddSubnetworkRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('addSubnetwork', array($params), "Google_Service_ServiceNetworking_Operation"); - } - /** - * Disables VPC service controls for a connection. - * (services.disableVpcServiceControls) - * - * @param string $parent The service that is managing peering connectivity for a - * service producer's organization. For Google services that support this - * functionality, this value is `services/servicenetworking.googleapis.com`. - * @param Google_Service_ServiceNetworking_DisableVpcServiceControlsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceNetworking_Operation - */ - public function disableVpcServiceControls($parent, Google_Service_ServiceNetworking_DisableVpcServiceControlsRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('disableVpcServiceControls', array($params), "Google_Service_ServiceNetworking_Operation"); - } - /** - * Enables VPC service controls for a connection. - * (services.enableVpcServiceControls) - * - * @param string $parent The service that is managing peering connectivity for a - * service producer's organization. For Google services that support this - * functionality, this value is `services/servicenetworking.googleapis.com`. - * @param Google_Service_ServiceNetworking_EnableVpcServiceControlsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceNetworking_Operation - */ - public function enableVpcServiceControls($parent, Google_Service_ServiceNetworking_EnableVpcServiceControlsRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('enableVpcServiceControls', array($params), "Google_Service_ServiceNetworking_Operation"); - } - /** - * Service producers can use this method to find a currently unused range within - * consumer allocated ranges. This returned range is not reserved, and not - * guaranteed to remain unused. It will validate previously provided allocated - * ranges, find non-conflicting sub-range of requested size (expressed in number - * of leading bits of ipv4 network mask, as in CIDR range notation). Operation - * (services.searchRange) - * - * @param string $parent Required. This is in a form services/{service}. - * {service} the name of the private access management service, for example - * 'service-peering.example.com'. - * @param Google_Service_ServiceNetworking_SearchRangeRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceNetworking_Operation - */ - public function searchRange($parent, Google_Service_ServiceNetworking_SearchRangeRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('searchRange', array($params), "Google_Service_ServiceNetworking_Operation"); - } - /** - * Service producers use this method to validate if the consumer provided - * network, project and the requested range is valid. This allows them to use a - * fail-fast mechanism for consumer requests, and not have to wait for - * AddSubnetwork operation completion to determine if user request is invalid. - * (services.validate) - * - * @param string $parent Required. This is in a form services/{service} where - * {service} is the name of the private access management service. For example - * 'service-peering.example.com'. - * @param Google_Service_ServiceNetworking_ValidateConsumerConfigRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceNetworking_ValidateConsumerConfigResponse - */ - public function validate($parent, Google_Service_ServiceNetworking_ValidateConsumerConfigRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('validate', array($params), "Google_Service_ServiceNetworking_ValidateConsumerConfigResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Resource/ServicesConnections.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Resource/ServicesConnections.php deleted file mode 100644 index 6e6f3f0b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Resource/ServicesConnections.php +++ /dev/null @@ -1,104 +0,0 @@ - - * $servicenetworkingService = new Google_Service_ServiceNetworking(...); - * $connections = $servicenetworkingService->connections; - * - */ -class Google_Service_ServiceNetworking_Resource_ServicesConnections extends Google_Service_Resource -{ - /** - * Creates a private connection that establishes a VPC Network Peering - * connection to a VPC network in the service producer's organization. The - * administrator of the service consumer's VPC network invokes this method. The - * administrator must assign one or more allocated IP ranges for provisioning - * subnetworks in the service producer's VPC network. This connection is used - * for all supported services in the service producer's organization, so it only - * needs to be invoked once. The response from the `get` operation will be of - * type `Connection` if the operation successfully completes. - * (connections.create) - * - * @param string $parent The service that is managing peering connectivity for a - * service producer's organization. For Google services that support this - * functionality, this value is `services/servicenetworking.googleapis.com`. - * @param Google_Service_ServiceNetworking_Connection $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceNetworking_Operation - */ - public function create($parent, Google_Service_ServiceNetworking_Connection $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_ServiceNetworking_Operation"); - } - /** - * List the private connections that are configured in a service consumer's VPC - * network. (connections.listServicesConnections) - * - * @param string $parent The service that is managing peering connectivity for a - * service producer's organization. For Google services that support this - * functionality, this value is `services/servicenetworking.googleapis.com`. If - * you specify `services/-` as the parameter value, all configured peering - * services are listed. - * @param array $optParams Optional parameters. - * - * @opt_param string network The name of service consumer's VPC network that's - * connected with service producer network through a private connection. The - * network name must be in the following format: - * `projects/{project}/global/networks/{network}`. {project} is a project - * number, such as in `12345` that includes the VPC service consumer's VPC - * network. {network} is the name of the service consumer's VPC network. - * @return Google_Service_ServiceNetworking_ListConnectionsResponse - */ - public function listServicesConnections($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_ServiceNetworking_ListConnectionsResponse"); - } - /** - * Updates the allocated ranges that are assigned to a connection. The response - * from the `get` operation will be of type `Connection` if the operation - * successfully completes. (connections.patch) - * - * @param string $name The private service connection that connects to a service - * producer organization. The name includes both the private service name and - * the VPC network peering name in the format of - * `services/{peering_service_name}/connections/{vpc_peering_name}`. For Google - * services that support this functionality, this is - * `services/servicenetworking.googleapis.com/connections/servicenetworking- - * googleapis-com`. - * @param Google_Service_ServiceNetworking_Connection $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask The update mask. If this is omitted, it defaults - * to "*". You can only update the listed peering ranges. - * @opt_param bool force If a previously defined allocated range is removed, - * force flag must be set to true. - * @return Google_Service_ServiceNetworking_Operation - */ - public function patch($name, Google_Service_ServiceNetworking_Connection $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_ServiceNetworking_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/SearchRangeRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/SearchRangeRequest.php deleted file mode 100644 index 8194787f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/SearchRangeRequest.php +++ /dev/null @@ -1,39 +0,0 @@ -ipPrefixLength = $ipPrefixLength; - } - public function getIpPrefixLength() - { - return $this->ipPrefixLength; - } - public function setNetwork($network) - { - $this->network = $network; - } - public function getNetwork() - { - return $this->network; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Service.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Service.php deleted file mode 100644 index 3f217631..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Service.php +++ /dev/null @@ -1,419 +0,0 @@ -apis = $apis; - } - /** - * @return Google_Service_ServiceNetworking_Api - */ - public function getApis() - { - return $this->apis; - } - /** - * @param Google_Service_ServiceNetworking_Authentication - */ - public function setAuthentication(Google_Service_ServiceNetworking_Authentication $authentication) - { - $this->authentication = $authentication; - } - /** - * @return Google_Service_ServiceNetworking_Authentication - */ - public function getAuthentication() - { - return $this->authentication; - } - /** - * @param Google_Service_ServiceNetworking_Backend - */ - public function setBackend(Google_Service_ServiceNetworking_Backend $backend) - { - $this->backend = $backend; - } - /** - * @return Google_Service_ServiceNetworking_Backend - */ - public function getBackend() - { - return $this->backend; - } - /** - * @param Google_Service_ServiceNetworking_Billing - */ - public function setBilling(Google_Service_ServiceNetworking_Billing $billing) - { - $this->billing = $billing; - } - /** - * @return Google_Service_ServiceNetworking_Billing - */ - public function getBilling() - { - return $this->billing; - } - public function setConfigVersion($configVersion) - { - $this->configVersion = $configVersion; - } - public function getConfigVersion() - { - return $this->configVersion; - } - /** - * @param Google_Service_ServiceNetworking_Context - */ - public function setContext(Google_Service_ServiceNetworking_Context $context) - { - $this->context = $context; - } - /** - * @return Google_Service_ServiceNetworking_Context - */ - public function getContext() - { - return $this->context; - } - /** - * @param Google_Service_ServiceNetworking_Control - */ - public function setControl(Google_Service_ServiceNetworking_Control $control) - { - $this->control = $control; - } - /** - * @return Google_Service_ServiceNetworking_Control - */ - public function getControl() - { - return $this->control; - } - /** - * @param Google_Service_ServiceNetworking_CustomError - */ - public function setCustomError(Google_Service_ServiceNetworking_CustomError $customError) - { - $this->customError = $customError; - } - /** - * @return Google_Service_ServiceNetworking_CustomError - */ - public function getCustomError() - { - return $this->customError; - } - /** - * @param Google_Service_ServiceNetworking_Documentation - */ - public function setDocumentation(Google_Service_ServiceNetworking_Documentation $documentation) - { - $this->documentation = $documentation; - } - /** - * @return Google_Service_ServiceNetworking_Documentation - */ - public function getDocumentation() - { - return $this->documentation; - } - /** - * @param Google_Service_ServiceNetworking_Endpoint - */ - public function setEndpoints($endpoints) - { - $this->endpoints = $endpoints; - } - /** - * @return Google_Service_ServiceNetworking_Endpoint - */ - public function getEndpoints() - { - return $this->endpoints; - } - /** - * @param Google_Service_ServiceNetworking_Enum - */ - public function setEnums($enums) - { - $this->enums = $enums; - } - /** - * @return Google_Service_ServiceNetworking_Enum - */ - public function getEnums() - { - return $this->enums; - } - /** - * @param Google_Service_ServiceNetworking_Http - */ - public function setHttp(Google_Service_ServiceNetworking_Http $http) - { - $this->http = $http; - } - /** - * @return Google_Service_ServiceNetworking_Http - */ - public function getHttp() - { - return $this->http; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_ServiceNetworking_Logging - */ - public function setLogging(Google_Service_ServiceNetworking_Logging $logging) - { - $this->logging = $logging; - } - /** - * @return Google_Service_ServiceNetworking_Logging - */ - public function getLogging() - { - return $this->logging; - } - /** - * @param Google_Service_ServiceNetworking_LogDescriptor - */ - public function setLogs($logs) - { - $this->logs = $logs; - } - /** - * @return Google_Service_ServiceNetworking_LogDescriptor - */ - public function getLogs() - { - return $this->logs; - } - /** - * @param Google_Service_ServiceNetworking_MetricDescriptor - */ - public function setMetrics($metrics) - { - $this->metrics = $metrics; - } - /** - * @return Google_Service_ServiceNetworking_MetricDescriptor - */ - public function getMetrics() - { - return $this->metrics; - } - /** - * @param Google_Service_ServiceNetworking_MonitoredResourceDescriptor - */ - public function setMonitoredResources($monitoredResources) - { - $this->monitoredResources = $monitoredResources; - } - /** - * @return Google_Service_ServiceNetworking_MonitoredResourceDescriptor - */ - public function getMonitoredResources() - { - return $this->monitoredResources; - } - /** - * @param Google_Service_ServiceNetworking_Monitoring - */ - public function setMonitoring(Google_Service_ServiceNetworking_Monitoring $monitoring) - { - $this->monitoring = $monitoring; - } - /** - * @return Google_Service_ServiceNetworking_Monitoring - */ - public function getMonitoring() - { - return $this->monitoring; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setProducerProjectId($producerProjectId) - { - $this->producerProjectId = $producerProjectId; - } - public function getProducerProjectId() - { - return $this->producerProjectId; - } - /** - * @param Google_Service_ServiceNetworking_Quota - */ - public function setQuota(Google_Service_ServiceNetworking_Quota $quota) - { - $this->quota = $quota; - } - /** - * @return Google_Service_ServiceNetworking_Quota - */ - public function getQuota() - { - return $this->quota; - } - /** - * @param Google_Service_ServiceNetworking_SourceInfo - */ - public function setSourceInfo(Google_Service_ServiceNetworking_SourceInfo $sourceInfo) - { - $this->sourceInfo = $sourceInfo; - } - /** - * @return Google_Service_ServiceNetworking_SourceInfo - */ - public function getSourceInfo() - { - return $this->sourceInfo; - } - /** - * @param Google_Service_ServiceNetworking_SystemParameters - */ - public function setSystemParameters(Google_Service_ServiceNetworking_SystemParameters $systemParameters) - { - $this->systemParameters = $systemParameters; - } - /** - * @return Google_Service_ServiceNetworking_SystemParameters - */ - public function getSystemParameters() - { - return $this->systemParameters; - } - /** - * @param Google_Service_ServiceNetworking_Type - */ - public function setSystemTypes($systemTypes) - { - $this->systemTypes = $systemTypes; - } - /** - * @return Google_Service_ServiceNetworking_Type - */ - public function getSystemTypes() - { - return $this->systemTypes; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - /** - * @param Google_Service_ServiceNetworking_Type - */ - public function setTypes($types) - { - $this->types = $types; - } - /** - * @return Google_Service_ServiceNetworking_Type - */ - public function getTypes() - { - return $this->types; - } - /** - * @param Google_Service_ServiceNetworking_Usage - */ - public function setUsage(Google_Service_ServiceNetworking_Usage $usage) - { - $this->usage = $usage; - } - /** - * @return Google_Service_ServiceNetworking_Usage - */ - public function getUsage() - { - return $this->usage; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/ServiceIdentity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/ServiceIdentity.php deleted file mode 100644 index a5c9d1e2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/ServiceIdentity.php +++ /dev/null @@ -1,48 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setServiceAccountParent($serviceAccountParent) - { - $this->serviceAccountParent = $serviceAccountParent; - } - public function getServiceAccountParent() - { - return $this->serviceAccountParent; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/ServicenetworkingEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/ServicenetworkingEmpty.php deleted file mode 100644 index 7897337b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/ServicenetworkingEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -fileName = $fileName; - } - public function getFileName() - { - return $this->fileName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/SourceInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/SourceInfo.php deleted file mode 100644 index 46316237..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/SourceInfo.php +++ /dev/null @@ -1,31 +0,0 @@ -sourceFiles = $sourceFiles; - } - public function getSourceFiles() - { - return $this->sourceFiles; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Status.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Status.php deleted file mode 100644 index e3c40383..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Status.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Subnetwork.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Subnetwork.php deleted file mode 100644 index 96752a4b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Subnetwork.php +++ /dev/null @@ -1,57 +0,0 @@ -ipCidrRange = $ipCidrRange; - } - public function getIpCidrRange() - { - return $this->ipCidrRange; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNetwork($network) - { - $this->network = $network; - } - public function getNetwork() - { - return $this->network; - } - public function setOutsideAllocation($outsideAllocation) - { - $this->outsideAllocation = $outsideAllocation; - } - public function getOutsideAllocation() - { - return $this->outsideAllocation; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/SystemParameter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/SystemParameter.php deleted file mode 100644 index 7c8208ed..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/SystemParameter.php +++ /dev/null @@ -1,48 +0,0 @@ -httpHeader = $httpHeader; - } - public function getHttpHeader() - { - return $this->httpHeader; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setUrlQueryParameter($urlQueryParameter) - { - $this->urlQueryParameter = $urlQueryParameter; - } - public function getUrlQueryParameter() - { - return $this->urlQueryParameter; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/SystemParameterRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/SystemParameterRule.php deleted file mode 100644 index 03b613ae..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/SystemParameterRule.php +++ /dev/null @@ -1,47 +0,0 @@ -parameters = $parameters; - } - /** - * @return Google_Service_ServiceNetworking_SystemParameter - */ - public function getParameters() - { - return $this->parameters; - } - public function setSelector($selector) - { - $this->selector = $selector; - } - public function getSelector() - { - return $this->selector; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/SystemParameters.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/SystemParameters.php deleted file mode 100644 index 99e4bf85..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/SystemParameters.php +++ /dev/null @@ -1,38 +0,0 @@ -rules = $rules; - } - /** - * @return Google_Service_ServiceNetworking_SystemParameterRule - */ - public function getRules() - { - return $this->rules; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Type.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Type.php deleted file mode 100644 index 7319baad..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Type.php +++ /dev/null @@ -1,97 +0,0 @@ -fields = $fields; - } - /** - * @return Google_Service_ServiceNetworking_Field - */ - public function getFields() - { - return $this->fields; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOneofs($oneofs) - { - $this->oneofs = $oneofs; - } - public function getOneofs() - { - return $this->oneofs; - } - /** - * @param Google_Service_ServiceNetworking_Option - */ - public function setOptions($options) - { - $this->options = $options; - } - /** - * @return Google_Service_ServiceNetworking_Option - */ - public function getOptions() - { - return $this->options; - } - /** - * @param Google_Service_ServiceNetworking_SourceContext - */ - public function setSourceContext(Google_Service_ServiceNetworking_SourceContext $sourceContext) - { - $this->sourceContext = $sourceContext; - } - /** - * @return Google_Service_ServiceNetworking_SourceContext - */ - public function getSourceContext() - { - return $this->sourceContext; - } - public function setSyntax($syntax) - { - $this->syntax = $syntax; - } - public function getSyntax() - { - return $this->syntax; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Usage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Usage.php deleted file mode 100644 index eb0d0b90..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/Usage.php +++ /dev/null @@ -1,72 +0,0 @@ -producerNotificationChannel = $producerNotificationChannel; - } - public function getProducerNotificationChannel() - { - return $this->producerNotificationChannel; - } - public function setRequirements($requirements) - { - $this->requirements = $requirements; - } - public function getRequirements() - { - return $this->requirements; - } - /** - * @param Google_Service_ServiceNetworking_UsageRule - */ - public function setRules($rules) - { - $this->rules = $rules; - } - /** - * @return Google_Service_ServiceNetworking_UsageRule - */ - public function getRules() - { - return $this->rules; - } - /** - * @param Google_Service_ServiceNetworking_ServiceIdentity - */ - public function setServiceIdentity(Google_Service_ServiceNetworking_ServiceIdentity $serviceIdentity) - { - $this->serviceIdentity = $serviceIdentity; - } - /** - * @return Google_Service_ServiceNetworking_ServiceIdentity - */ - public function getServiceIdentity() - { - return $this->serviceIdentity; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/UsageRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/UsageRule.php deleted file mode 100644 index 8fbb43ae..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/UsageRule.php +++ /dev/null @@ -1,48 +0,0 @@ -allowUnregisteredCalls = $allowUnregisteredCalls; - } - public function getAllowUnregisteredCalls() - { - return $this->allowUnregisteredCalls; - } - public function setSelector($selector) - { - $this->selector = $selector; - } - public function getSelector() - { - return $this->selector; - } - public function setSkipServiceControl($skipServiceControl) - { - $this->skipServiceControl = $skipServiceControl; - } - public function getSkipServiceControl() - { - return $this->skipServiceControl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/ValidateConsumerConfigRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/ValidateConsumerConfigRequest.php deleted file mode 100644 index ca474cde..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/ValidateConsumerConfigRequest.php +++ /dev/null @@ -1,71 +0,0 @@ -consumerNetwork = $consumerNetwork; - } - public function getConsumerNetwork() - { - return $this->consumerNetwork; - } - /** - * @param Google_Service_ServiceNetworking_ConsumerProject - */ - public function setConsumerProject(Google_Service_ServiceNetworking_ConsumerProject $consumerProject) - { - $this->consumerProject = $consumerProject; - } - /** - * @return Google_Service_ServiceNetworking_ConsumerProject - */ - public function getConsumerProject() - { - return $this->consumerProject; - } - /** - * @param Google_Service_ServiceNetworking_RangeReservation - */ - public function setRangeReservation(Google_Service_ServiceNetworking_RangeReservation $rangeReservation) - { - $this->rangeReservation = $rangeReservation; - } - /** - * @return Google_Service_ServiceNetworking_RangeReservation - */ - public function getRangeReservation() - { - return $this->rangeReservation; - } - public function setValidateNetwork($validateNetwork) - { - $this->validateNetwork = $validateNetwork; - } - public function getValidateNetwork() - { - return $this->validateNetwork; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/ValidateConsumerConfigResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/ValidateConsumerConfigResponse.php deleted file mode 100644 index 35038bea..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceNetworking/ValidateConsumerConfigResponse.php +++ /dev/null @@ -1,39 +0,0 @@ -isValid = $isValid; - } - public function getIsValid() - { - return $this->isValid; - } - public function setValidationError($validationError) - { - $this->validationError = $validationError; - } - public function getValidationError() - { - return $this->validationError; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceRegistry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceRegistry.php deleted file mode 100644 index da2cdd10..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceRegistry.php +++ /dev/null @@ -1,221 +0,0 @@ - - * Manages service endpoints in Service Registry and provides integration with - * DNS for service discovery and name resolution.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_ServiceRegistry extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** View your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM_READ_ONLY = - "https://www.googleapis.com/auth/cloud-platform.read-only"; - /** View and manage your Google Cloud Platform management resources and deployment status information. */ - const NDEV_CLOUDMAN = - "https://www.googleapis.com/auth/ndev.cloudman"; - /** View your Google Cloud Platform management resources and deployment status information. */ - const NDEV_CLOUDMAN_READONLY = - "https://www.googleapis.com/auth/ndev.cloudman.readonly"; - - public $endpoints; - public $operations; - - /** - * Constructs the internal representation of the ServiceRegistry service. - * - * @param Google_Client $client - */ - public function __construct(Google_Client $client) - { - parent::__construct($client); - $this->rootUrl = 'https://www.googleapis.com/'; - $this->servicePath = 'serviceregistry/alpha/projects/'; - $this->version = 'alpha'; - $this->serviceName = 'serviceregistry'; - - $this->endpoints = new Google_Service_ServiceRegistry_Resource_Endpoints( - $this, - $this->serviceName, - 'endpoints', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{project}/global/endpoints/{endpoint}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'endpoint' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{project}/global/endpoints/{endpoint}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'endpoint' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/global/endpoints', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/global/endpoints', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => '{project}/global/endpoints/{endpoint}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'endpoint' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => '{project}/global/endpoints/{endpoint}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'endpoint' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->operations = new Google_Service_ServiceRegistry_Resource_Operations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'get' => array( - 'path' => '{project}/global/operations/{operation}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'operation' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{project}/global/operations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceRegistry/Endpoint.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceRegistry/Endpoint.php deleted file mode 100644 index da9445d0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceRegistry/Endpoint.php +++ /dev/null @@ -1,112 +0,0 @@ -address = $address; - } - public function getAddress() - { - return $this->address; - } - public function setCreationTimestamp($creationTimestamp) - { - $this->creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setFingerprint($fingerprint) - { - $this->fingerprint = $fingerprint; - } - public function getFingerprint() - { - return $this->fingerprint; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPort($port) - { - $this->port = $port; - } - public function getPort() - { - return $this->port; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setVisibility(Google_Service_ServiceRegistry_EndpointEndpointVisibility $visibility) - { - $this->visibility = $visibility; - } - public function getVisibility() - { - return $this->visibility; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceRegistry/EndpointEndpointVisibility.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceRegistry/EndpointEndpointVisibility.php deleted file mode 100644 index e4002a90..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceRegistry/EndpointEndpointVisibility.php +++ /dev/null @@ -1,40 +0,0 @@ -internalDnsName = $internalDnsName; - } - public function getInternalDnsName() - { - return $this->internalDnsName; - } - public function setNetworks($networks) - { - $this->networks = $networks; - } - public function getNetworks() - { - return $this->networks; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceRegistry/EndpointsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceRegistry/EndpointsListResponse.php deleted file mode 100644 index 780ac732..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceRegistry/EndpointsListResponse.php +++ /dev/null @@ -1,41 +0,0 @@ -endpoints = $endpoints; - } - public function getEndpoints() - { - return $this->endpoints; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceRegistry/Operation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceRegistry/Operation.php deleted file mode 100644 index bcc89325..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceRegistry/Operation.php +++ /dev/null @@ -1,231 +0,0 @@ -clientOperationId = $clientOperationId; - } - public function getClientOperationId() - { - return $this->clientOperationId; - } - public function setCreationTimestamp($creationTimestamp) - { - $this->creationTimestamp = $creationTimestamp; - } - public function getCreationTimestamp() - { - return $this->creationTimestamp; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setError(Google_Service_ServiceRegistry_OperationError $error) - { - $this->error = $error; - } - public function getError() - { - return $this->error; - } - public function setHttpErrorMessage($httpErrorMessage) - { - $this->httpErrorMessage = $httpErrorMessage; - } - public function getHttpErrorMessage() - { - return $this->httpErrorMessage; - } - public function setHttpErrorStatusCode($httpErrorStatusCode) - { - $this->httpErrorStatusCode = $httpErrorStatusCode; - } - public function getHttpErrorStatusCode() - { - return $this->httpErrorStatusCode; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setInsertTime($insertTime) - { - $this->insertTime = $insertTime; - } - public function getInsertTime() - { - return $this->insertTime; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOperationType($operationType) - { - $this->operationType = $operationType; - } - public function getOperationType() - { - return $this->operationType; - } - public function setProgress($progress) - { - $this->progress = $progress; - } - public function getProgress() - { - return $this->progress; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - 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 setStatusMessage($statusMessage) - { - $this->statusMessage = $statusMessage; - } - public function getStatusMessage() - { - return $this->statusMessage; - } - public function setTargetId($targetId) - { - $this->targetId = $targetId; - } - public function getTargetId() - { - return $this->targetId; - } - public function setTargetLink($targetLink) - { - $this->targetLink = $targetLink; - } - public function getTargetLink() - { - return $this->targetLink; - } - public function setUser($user) - { - $this->user = $user; - } - public function getUser() - { - return $this->user; - } - public function setWarnings($warnings) - { - $this->warnings = $warnings; - } - public function getWarnings() - { - return $this->warnings; - } - public function setZone($zone) - { - $this->zone = $zone; - } - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceRegistry/OperationError.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceRegistry/OperationError.php deleted file mode 100644 index 57d4af13..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceRegistry/OperationError.php +++ /dev/null @@ -1,32 +0,0 @@ -errors = $errors; - } - public function getErrors() - { - return $this->errors; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceRegistry/OperationErrorErrors.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceRegistry/OperationErrorErrors.php deleted file mode 100644 index b74e2cda..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceRegistry/OperationErrorErrors.php +++ /dev/null @@ -1,48 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceRegistry/OperationWarnings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceRegistry/OperationWarnings.php deleted file mode 100644 index 8ee3931d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceRegistry/OperationWarnings.php +++ /dev/null @@ -1,50 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setData($data) - { - $this->data = $data; - } - public function getData() - { - return $this->data; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceRegistry/OperationWarningsData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceRegistry/OperationWarningsData.php deleted file mode 100644 index 719dff6e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceRegistry/OperationWarningsData.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceRegistry/OperationsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceRegistry/OperationsListResponse.php deleted file mode 100644 index c55a4f40..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceRegistry/OperationsListResponse.php +++ /dev/null @@ -1,41 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setOperations($operations) - { - $this->operations = $operations; - } - public function getOperations() - { - return $this->operations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceRegistry/Resource/Endpoints.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceRegistry/Resource/Endpoints.php deleted file mode 100644 index 512ee2a0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceRegistry/Resource/Endpoints.php +++ /dev/null @@ -1,157 +0,0 @@ - - * $serviceregistryService = new Google_Service_ServiceRegistry(...); - * $endpoints = $serviceregistryService->endpoints; - * - */ -class Google_Service_ServiceRegistry_Resource_Endpoints extends Google_Service_Resource -{ - /** - * Deletes an endpoint. (endpoints.delete) - * - * @param string $project The project ID for this request. - * @param string $endpoint The name of the endpoint for this request. - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceRegistry_Operation - */ - public function delete($project, $endpoint, $optParams = array()) - { - $params = array('project' => $project, 'endpoint' => $endpoint); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_ServiceRegistry_Operation"); - } - /** - * Gets an endpoint. (endpoints.get) - * - * @param string $project The project ID for this request. - * @param string $endpoint The name of the endpoint for this request. - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceRegistry_Endpoint - */ - public function get($project, $endpoint, $optParams = array()) - { - $params = array('project' => $project, 'endpoint' => $endpoint); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_ServiceRegistry_Endpoint"); - } - /** - * Creates an endpoint. (endpoints.insert) - * - * @param string $project The project ID for this request. - * @param Google_Service_ServiceRegistry_Endpoint $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceRegistry_Operation - */ - public function insert($project, Google_Service_ServiceRegistry_Endpoint $postBody, $optParams = array()) - { - $params = array('project' => $project, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_ServiceRegistry_Operation"); - } - /** - * Lists endpoints for a project. (endpoints.listEndpoints) - * - * @param string $project The project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter Sets a filter expression for filtering listed - * resources, in the form filter={expression}. Your {expression} must be in the - * format: field_name comparison_string literal_string. - * - * The field_name is the name of the field you want to compare. Only atomic - * field types are supported (string, number, boolean). The comparison_string - * must be either eq (equals) or ne (not equals). The literal_string is the - * string value to filter to. The literal value must be valid for the type of - * field you are filtering by (string, number, boolean). For string fields, the - * literal value is interpreted as a regular expression using RE2 syntax. The - * literal value must match the entire field. - * - * For example, to filter for instances that do not have a name of example- - * instance, you would use filter=name ne example-instance. - * - * Compute Engine Beta API Only: When filtering in the Beta API, you can also - * filter on nested fields. For example, you could filter on instances that have - * set the scheduling.automaticRestart field to true. Use filtering on nested - * fields to take advantage of labels to organize and search for results based - * on label values. - * - * The Beta API also supports filtering on multiple expressions by providing - * each separate expression within parentheses. For example, - * (scheduling.automaticRestart eq true) (zone eq us-central1-f). Multiple - * expressions are treated as AND expressions, meaning that resources must match - * all expressions to pass the filters. - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_ServiceRegistry_EndpointsListResponse - */ - public function listEndpoints($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_ServiceRegistry_EndpointsListResponse"); - } - /** - * Updates an endpoint. This method supports patch semantics. (endpoints.patch) - * - * @param string $project The project ID for this request. - * @param string $endpoint The name of the endpoint for this request. - * @param Google_Service_ServiceRegistry_Endpoint $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceRegistry_Operation - */ - public function patch($project, $endpoint, Google_Service_ServiceRegistry_Endpoint $postBody, $optParams = array()) - { - $params = array('project' => $project, 'endpoint' => $endpoint, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_ServiceRegistry_Operation"); - } - /** - * Updates an endpoint. (endpoints.update) - * - * @param string $project The project ID for this request. - * @param string $endpoint The name of the endpoint for this request. - * @param Google_Service_ServiceRegistry_Endpoint $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceRegistry_Operation - */ - public function update($project, $endpoint, Google_Service_ServiceRegistry_Endpoint $postBody, $optParams = array()) - { - $params = array('project' => $project, 'endpoint' => $endpoint, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_ServiceRegistry_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceRegistry/Resource/Operations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceRegistry/Resource/Operations.php deleted file mode 100644 index f4ba929c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceRegistry/Resource/Operations.php +++ /dev/null @@ -1,99 +0,0 @@ - - * $serviceregistryService = new Google_Service_ServiceRegistry(...); - * $operations = $serviceregistryService->operations; - * - */ -class Google_Service_ServiceRegistry_Resource_Operations extends Google_Service_Resource -{ - /** - * Gets information about a specific operation. (operations.get) - * - * @param string $project The project ID for this request. - * @param string $operation The name of the operation for this request. - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceRegistry_Operation - */ - public function get($project, $operation, $optParams = array()) - { - $params = array('project' => $project, 'operation' => $operation); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_ServiceRegistry_Operation"); - } - /** - * Lists all operations for a project. (operations.listOperations) - * - * @param string $project The project ID for this request. - * @param array $optParams Optional parameters. - * - * @opt_param string filter Sets a filter expression for filtering listed - * resources, in the form filter={expression}. Your {expression} must be in the - * format: field_name comparison_string literal_string. - * - * The field_name is the name of the field you want to compare. Only atomic - * field types are supported (string, number, boolean). The comparison_string - * must be either eq (equals) or ne (not equals). The literal_string is the - * string value to filter to. The literal value must be valid for the type of - * field you are filtering by (string, number, boolean). For string fields, the - * literal value is interpreted as a regular expression using RE2 syntax. The - * literal value must match the entire field. - * - * For example, to filter for instances that do not have a name of example- - * instance, you would use filter=name ne example-instance. - * - * Compute Engine Beta API Only: When filtering in the Beta API, you can also - * filter on nested fields. For example, you could filter on instances that have - * set the scheduling.automaticRestart field to true. Use filtering on nested - * fields to take advantage of labels to organize and search for results based - * on label values. - * - * The Beta API also supports filtering on multiple expressions by providing - * each separate expression within parentheses. For example, - * (scheduling.automaticRestart eq true) (zone eq us-central1-f). Multiple - * expressions are treated as AND expressions, meaning that resources must match - * all expressions to pass the filters. - * @opt_param string maxResults The maximum number of results per page that - * should be returned. If the number of available results is larger than - * maxResults, Compute Engine returns a nextPageToken that can be used to get - * the next page of results in subsequent list requests. - * @opt_param string orderBy Sorts list results by a certain order. By default, - * results are returned in alphanumerical order based on the resource name. - * - * You can also sort results in descending order based on the creation timestamp - * using orderBy="creationTimestamp desc". This sorts results based on the - * creationTimestamp field in reverse chronological order (newest result first). - * Use this to sort resources like operations so that the newest operation is - * returned first. - * - * Currently, only sorting by name or creationTimestamp desc is supported. - * @opt_param string pageToken Specifies a page token to use. Set pageToken to - * the nextPageToken returned by a previous list request to get the next page of - * results. - * @return Google_Service_ServiceRegistry_OperationsListResponse - */ - public function listOperations($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_ServiceRegistry_OperationsListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage.php deleted file mode 100644 index ef9ec814..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage.php +++ /dev/null @@ -1,197 +0,0 @@ - - * Enables services that service consumers want to use on Google Cloud Platform, - * lists the available or enabled services, or disables services that service - * consumers no longer use.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_ServiceUsage extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** View your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM_READ_ONLY = - "https://www.googleapis.com/auth/cloud-platform.read-only"; - /** Manage your Google API service configuration. */ - const SERVICE_MANAGEMENT = - "https://www.googleapis.com/auth/service.management"; - - public $operations; - public $services; - - /** - * Constructs the internal representation of the ServiceUsage service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://serviceusage.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'serviceusage'; - - $this->operations = new Google_Service_ServiceUsage_Resource_Operations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'cancel' => array( - 'path' => 'v1/{+name}:cancel', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/operations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->services = new Google_Service_ServiceUsage_Resource_Services( - $this, - $this->serviceName, - 'services', - array( - 'methods' => array( - 'batchEnable' => array( - 'path' => 'v1/{+parent}/services:batchEnable', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'disable' => array( - 'path' => 'v1/{+name}:disable', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'enable' => array( - 'path' => 'v1/{+name}:enable', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/services', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Api.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Api.php deleted file mode 100644 index 3197d0e7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Api.php +++ /dev/null @@ -1,113 +0,0 @@ -methods = $methods; - } - /** - * @return Google_Service_ServiceUsage_Method - */ - public function getMethods() - { - return $this->methods; - } - /** - * @param Google_Service_ServiceUsage_Mixin - */ - public function setMixins($mixins) - { - $this->mixins = $mixins; - } - /** - * @return Google_Service_ServiceUsage_Mixin - */ - public function getMixins() - { - return $this->mixins; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_ServiceUsage_Option - */ - public function setOptions($options) - { - $this->options = $options; - } - /** - * @return Google_Service_ServiceUsage_Option - */ - public function getOptions() - { - return $this->options; - } - /** - * @param Google_Service_ServiceUsage_SourceContext - */ - public function setSourceContext(Google_Service_ServiceUsage_SourceContext $sourceContext) - { - $this->sourceContext = $sourceContext; - } - /** - * @return Google_Service_ServiceUsage_SourceContext - */ - public function getSourceContext() - { - return $this->sourceContext; - } - public function setSyntax($syntax) - { - $this->syntax = $syntax; - } - public function getSyntax() - { - return $this->syntax; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/AuthProvider.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/AuthProvider.php deleted file mode 100644 index 78b4a5a3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/AuthProvider.php +++ /dev/null @@ -1,66 +0,0 @@ -audiences = $audiences; - } - public function getAudiences() - { - return $this->audiences; - } - public function setAuthorizationUrl($authorizationUrl) - { - $this->authorizationUrl = $authorizationUrl; - } - public function getAuthorizationUrl() - { - return $this->authorizationUrl; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setIssuer($issuer) - { - $this->issuer = $issuer; - } - public function getIssuer() - { - return $this->issuer; - } - public function setJwksUri($jwksUri) - { - $this->jwksUri = $jwksUri; - } - public function getJwksUri() - { - return $this->jwksUri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/AuthRequirement.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/AuthRequirement.php deleted file mode 100644 index 45fd87ae..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/AuthRequirement.php +++ /dev/null @@ -1,39 +0,0 @@ -audiences = $audiences; - } - public function getAudiences() - { - return $this->audiences; - } - public function setProviderId($providerId) - { - $this->providerId = $providerId; - } - public function getProviderId() - { - return $this->providerId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Authentication.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Authentication.php deleted file mode 100644 index bf01a42e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Authentication.php +++ /dev/null @@ -1,54 +0,0 @@ -providers = $providers; - } - /** - * @return Google_Service_ServiceUsage_AuthProvider - */ - public function getProviders() - { - return $this->providers; - } - /** - * @param Google_Service_ServiceUsage_AuthenticationRule - */ - public function setRules($rules) - { - $this->rules = $rules; - } - /** - * @return Google_Service_ServiceUsage_AuthenticationRule - */ - public function getRules() - { - return $this->rules; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/AuthenticationRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/AuthenticationRule.php deleted file mode 100644 index 3e1d7177..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/AuthenticationRule.php +++ /dev/null @@ -1,72 +0,0 @@ -allowWithoutCredential = $allowWithoutCredential; - } - public function getAllowWithoutCredential() - { - return $this->allowWithoutCredential; - } - /** - * @param Google_Service_ServiceUsage_OAuthRequirements - */ - public function setOauth(Google_Service_ServiceUsage_OAuthRequirements $oauth) - { - $this->oauth = $oauth; - } - /** - * @return Google_Service_ServiceUsage_OAuthRequirements - */ - public function getOauth() - { - return $this->oauth; - } - /** - * @param Google_Service_ServiceUsage_AuthRequirement - */ - public function setRequirements($requirements) - { - $this->requirements = $requirements; - } - /** - * @return Google_Service_ServiceUsage_AuthRequirement - */ - public function getRequirements() - { - return $this->requirements; - } - public function setSelector($selector) - { - $this->selector = $selector; - } - public function getSelector() - { - return $this->selector; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Backend.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Backend.php deleted file mode 100644 index 1642e5ba..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Backend.php +++ /dev/null @@ -1,38 +0,0 @@ -rules = $rules; - } - /** - * @return Google_Service_ServiceUsage_BackendRule - */ - public function getRules() - { - return $this->rules; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/BackendRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/BackendRule.php deleted file mode 100644 index abe14aba..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/BackendRule.php +++ /dev/null @@ -1,102 +0,0 @@ -address = $address; - } - public function getAddress() - { - return $this->address; - } - public function setDeadline($deadline) - { - $this->deadline = $deadline; - } - public function getDeadline() - { - return $this->deadline; - } - public function setDisableAuth($disableAuth) - { - $this->disableAuth = $disableAuth; - } - public function getDisableAuth() - { - return $this->disableAuth; - } - public function setJwtAudience($jwtAudience) - { - $this->jwtAudience = $jwtAudience; - } - public function getJwtAudience() - { - return $this->jwtAudience; - } - public function setMinDeadline($minDeadline) - { - $this->minDeadline = $minDeadline; - } - public function getMinDeadline() - { - return $this->minDeadline; - } - public function setOperationDeadline($operationDeadline) - { - $this->operationDeadline = $operationDeadline; - } - public function getOperationDeadline() - { - return $this->operationDeadline; - } - public function setPathTranslation($pathTranslation) - { - $this->pathTranslation = $pathTranslation; - } - public function getPathTranslation() - { - return $this->pathTranslation; - } - public function setProtocol($protocol) - { - $this->protocol = $protocol; - } - public function getProtocol() - { - return $this->protocol; - } - public function setSelector($selector) - { - $this->selector = $selector; - } - public function getSelector() - { - return $this->selector; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/BatchCreateAdminOverridesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/BatchCreateAdminOverridesResponse.php deleted file mode 100644 index bee34286..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/BatchCreateAdminOverridesResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -overrides = $overrides; - } - /** - * @return Google_Service_ServiceUsage_QuotaOverride - */ - public function getOverrides() - { - return $this->overrides; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/BatchCreateConsumerOverridesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/BatchCreateConsumerOverridesResponse.php deleted file mode 100644 index e1f20dea..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/BatchCreateConsumerOverridesResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -overrides = $overrides; - } - /** - * @return Google_Service_ServiceUsage_QuotaOverride - */ - public function getOverrides() - { - return $this->overrides; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/BatchEnableServicesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/BatchEnableServicesRequest.php deleted file mode 100644 index 6119c271..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/BatchEnableServicesRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -serviceIds = $serviceIds; - } - public function getServiceIds() - { - return $this->serviceIds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/BatchEnableServicesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/BatchEnableServicesResponse.php deleted file mode 100644 index 3ee8e2a1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/BatchEnableServicesResponse.php +++ /dev/null @@ -1,54 +0,0 @@ -failures = $failures; - } - /** - * @return Google_Service_ServiceUsage_EnableFailure - */ - public function getFailures() - { - return $this->failures; - } - /** - * @param Google_Service_ServiceUsage_GoogleApiServiceusageV1Service - */ - public function setServices($services) - { - $this->services = $services; - } - /** - * @return Google_Service_ServiceUsage_GoogleApiServiceusageV1Service - */ - public function getServices() - { - return $this->services; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Billing.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Billing.php deleted file mode 100644 index daf3a0b7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Billing.php +++ /dev/null @@ -1,38 +0,0 @@ -consumerDestinations = $consumerDestinations; - } - /** - * @return Google_Service_ServiceUsage_BillingDestination - */ - public function getConsumerDestinations() - { - return $this->consumerDestinations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/BillingDestination.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/BillingDestination.php deleted file mode 100644 index a618dc7a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/BillingDestination.php +++ /dev/null @@ -1,40 +0,0 @@ -metrics = $metrics; - } - public function getMetrics() - { - return $this->metrics; - } - public function setMonitoredResource($monitoredResource) - { - $this->monitoredResource = $monitoredResource; - } - public function getMonitoredResource() - { - return $this->monitoredResource; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/CancelOperationRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/CancelOperationRequest.php deleted file mode 100644 index 29993455..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/CancelOperationRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -rules = $rules; - } - /** - * @return Google_Service_ServiceUsage_ContextRule - */ - public function getRules() - { - return $this->rules; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/ContextRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/ContextRule.php deleted file mode 100644 index 895089e0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/ContextRule.php +++ /dev/null @@ -1,67 +0,0 @@ -allowedRequestExtensions = $allowedRequestExtensions; - } - public function getAllowedRequestExtensions() - { - return $this->allowedRequestExtensions; - } - public function setAllowedResponseExtensions($allowedResponseExtensions) - { - $this->allowedResponseExtensions = $allowedResponseExtensions; - } - public function getAllowedResponseExtensions() - { - return $this->allowedResponseExtensions; - } - public function setProvided($provided) - { - $this->provided = $provided; - } - public function getProvided() - { - return $this->provided; - } - public function setRequested($requested) - { - $this->requested = $requested; - } - public function getRequested() - { - return $this->requested; - } - public function setSelector($selector) - { - $this->selector = $selector; - } - public function getSelector() - { - return $this->selector; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Control.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Control.php deleted file mode 100644 index 844acec1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Control.php +++ /dev/null @@ -1,30 +0,0 @@ -environment = $environment; - } - public function getEnvironment() - { - return $this->environment; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/CustomError.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/CustomError.php deleted file mode 100644 index 64fdee48..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/CustomError.php +++ /dev/null @@ -1,47 +0,0 @@ -rules = $rules; - } - /** - * @return Google_Service_ServiceUsage_CustomErrorRule - */ - public function getRules() - { - return $this->rules; - } - public function setTypes($types) - { - $this->types = $types; - } - public function getTypes() - { - return $this->types; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/CustomErrorRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/CustomErrorRule.php deleted file mode 100644 index f82e15f3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/CustomErrorRule.php +++ /dev/null @@ -1,39 +0,0 @@ -isErrorType = $isErrorType; - } - public function getIsErrorType() - { - return $this->isErrorType; - } - public function setSelector($selector) - { - $this->selector = $selector; - } - public function getSelector() - { - return $this->selector; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/CustomHttpPattern.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/CustomHttpPattern.php deleted file mode 100644 index 0f27540e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/CustomHttpPattern.php +++ /dev/null @@ -1,39 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setPath($path) - { - $this->path = $path; - } - public function getPath() - { - return $this->path; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/DisableServiceRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/DisableServiceRequest.php deleted file mode 100644 index 84ea3818..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/DisableServiceRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -disableDependentServices = $disableDependentServices; - } - public function getDisableDependentServices() - { - return $this->disableDependentServices; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/DisableServiceResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/DisableServiceResponse.php deleted file mode 100644 index e9d8fe59..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/DisableServiceResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -service = $service; - } - /** - * @return Google_Service_ServiceUsage_GoogleApiServiceusageV1Service - */ - public function getService() - { - return $this->service; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Documentation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Documentation.php deleted file mode 100644 index ef70e699..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Documentation.php +++ /dev/null @@ -1,90 +0,0 @@ -documentationRootUrl = $documentationRootUrl; - } - public function getDocumentationRootUrl() - { - return $this->documentationRootUrl; - } - public function setOverview($overview) - { - $this->overview = $overview; - } - public function getOverview() - { - return $this->overview; - } - /** - * @param Google_Service_ServiceUsage_Page - */ - public function setPages($pages) - { - $this->pages = $pages; - } - /** - * @return Google_Service_ServiceUsage_Page - */ - public function getPages() - { - return $this->pages; - } - /** - * @param Google_Service_ServiceUsage_DocumentationRule - */ - public function setRules($rules) - { - $this->rules = $rules; - } - /** - * @return Google_Service_ServiceUsage_DocumentationRule - */ - public function getRules() - { - return $this->rules; - } - public function setServiceRootUrl($serviceRootUrl) - { - $this->serviceRootUrl = $serviceRootUrl; - } - public function getServiceRootUrl() - { - return $this->serviceRootUrl; - } - public function setSummary($summary) - { - $this->summary = $summary; - } - public function getSummary() - { - return $this->summary; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/DocumentationRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/DocumentationRule.php deleted file mode 100644 index 5e25d796..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/DocumentationRule.php +++ /dev/null @@ -1,48 +0,0 @@ -deprecationDescription = $deprecationDescription; - } - public function getDeprecationDescription() - { - return $this->deprecationDescription; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setSelector($selector) - { - $this->selector = $selector; - } - public function getSelector() - { - return $this->selector; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/EnableFailure.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/EnableFailure.php deleted file mode 100644 index 30252b51..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/EnableFailure.php +++ /dev/null @@ -1,39 +0,0 @@ -errorMessage = $errorMessage; - } - public function getErrorMessage() - { - return $this->errorMessage; - } - public function setServiceId($serviceId) - { - $this->serviceId = $serviceId; - } - public function getServiceId() - { - return $this->serviceId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/EnableServiceRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/EnableServiceRequest.php deleted file mode 100644 index 125f503d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/EnableServiceRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -service = $service; - } - /** - * @return Google_Service_ServiceUsage_GoogleApiServiceusageV1Service - */ - public function getService() - { - return $this->service; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Endpoint.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Endpoint.php deleted file mode 100644 index e21a83d0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Endpoint.php +++ /dev/null @@ -1,67 +0,0 @@ -aliases = $aliases; - } - public function getAliases() - { - return $this->aliases; - } - public function setAllowCors($allowCors) - { - $this->allowCors = $allowCors; - } - public function getAllowCors() - { - return $this->allowCors; - } - public function setFeatures($features) - { - $this->features = $features; - } - public function getFeatures() - { - return $this->features; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setTarget($target) - { - $this->target = $target; - } - public function getTarget() - { - return $this->target; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Enum.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Enum.php deleted file mode 100644 index 3a83f27e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Enum.php +++ /dev/null @@ -1,88 +0,0 @@ -enumvalue = $enumvalue; - } - /** - * @return Google_Service_ServiceUsage_EnumValue - */ - public function getEnumvalue() - { - return $this->enumvalue; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_ServiceUsage_Option - */ - public function setOptions($options) - { - $this->options = $options; - } - /** - * @return Google_Service_ServiceUsage_Option - */ - public function getOptions() - { - return $this->options; - } - /** - * @param Google_Service_ServiceUsage_SourceContext - */ - public function setSourceContext(Google_Service_ServiceUsage_SourceContext $sourceContext) - { - $this->sourceContext = $sourceContext; - } - /** - * @return Google_Service_ServiceUsage_SourceContext - */ - public function getSourceContext() - { - return $this->sourceContext; - } - public function setSyntax($syntax) - { - $this->syntax = $syntax; - } - public function getSyntax() - { - return $this->syntax; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/EnumValue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/EnumValue.php deleted file mode 100644 index 25efdfb8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/EnumValue.php +++ /dev/null @@ -1,56 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setNumber($number) - { - $this->number = $number; - } - public function getNumber() - { - return $this->number; - } - /** - * @param Google_Service_ServiceUsage_Option - */ - public function setOptions($options) - { - $this->options = $options; - } - /** - * @return Google_Service_ServiceUsage_Option - */ - public function getOptions() - { - return $this->options; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Field.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Field.php deleted file mode 100644 index 9a01ac7e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Field.php +++ /dev/null @@ -1,119 +0,0 @@ -cardinality = $cardinality; - } - public function getCardinality() - { - return $this->cardinality; - } - public function setDefaultValue($defaultValue) - { - $this->defaultValue = $defaultValue; - } - public function getDefaultValue() - { - return $this->defaultValue; - } - public function setJsonName($jsonName) - { - $this->jsonName = $jsonName; - } - public function getJsonName() - { - return $this->jsonName; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNumber($number) - { - $this->number = $number; - } - public function getNumber() - { - return $this->number; - } - public function setOneofIndex($oneofIndex) - { - $this->oneofIndex = $oneofIndex; - } - public function getOneofIndex() - { - return $this->oneofIndex; - } - /** - * @param Google_Service_ServiceUsage_Option - */ - public function setOptions($options) - { - $this->options = $options; - } - /** - * @return Google_Service_ServiceUsage_Option - */ - public function getOptions() - { - return $this->options; - } - public function setPacked($packed) - { - $this->packed = $packed; - } - public function getPacked() - { - return $this->packed; - } - public function setTypeUrl($typeUrl) - { - $this->typeUrl = $typeUrl; - } - public function getTypeUrl() - { - return $this->typeUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/GetServiceIdentityResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/GetServiceIdentityResponse.php deleted file mode 100644 index 82edb8fa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/GetServiceIdentityResponse.php +++ /dev/null @@ -1,46 +0,0 @@ -identity = $identity; - } - /** - * @return Google_Service_ServiceUsage_ServiceIdentity - */ - public function getIdentity() - { - return $this->identity; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/GoogleApiService.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/GoogleApiService.php deleted file mode 100644 index c7542d3c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/GoogleApiService.php +++ /dev/null @@ -1,419 +0,0 @@ -apis = $apis; - } - /** - * @return Google_Service_ServiceUsage_Api - */ - public function getApis() - { - return $this->apis; - } - /** - * @param Google_Service_ServiceUsage_Authentication - */ - public function setAuthentication(Google_Service_ServiceUsage_Authentication $authentication) - { - $this->authentication = $authentication; - } - /** - * @return Google_Service_ServiceUsage_Authentication - */ - public function getAuthentication() - { - return $this->authentication; - } - /** - * @param Google_Service_ServiceUsage_Backend - */ - public function setBackend(Google_Service_ServiceUsage_Backend $backend) - { - $this->backend = $backend; - } - /** - * @return Google_Service_ServiceUsage_Backend - */ - public function getBackend() - { - return $this->backend; - } - /** - * @param Google_Service_ServiceUsage_Billing - */ - public function setBilling(Google_Service_ServiceUsage_Billing $billing) - { - $this->billing = $billing; - } - /** - * @return Google_Service_ServiceUsage_Billing - */ - public function getBilling() - { - return $this->billing; - } - public function setConfigVersion($configVersion) - { - $this->configVersion = $configVersion; - } - public function getConfigVersion() - { - return $this->configVersion; - } - /** - * @param Google_Service_ServiceUsage_Context - */ - public function setContext(Google_Service_ServiceUsage_Context $context) - { - $this->context = $context; - } - /** - * @return Google_Service_ServiceUsage_Context - */ - public function getContext() - { - return $this->context; - } - /** - * @param Google_Service_ServiceUsage_Control - */ - public function setControl(Google_Service_ServiceUsage_Control $control) - { - $this->control = $control; - } - /** - * @return Google_Service_ServiceUsage_Control - */ - public function getControl() - { - return $this->control; - } - /** - * @param Google_Service_ServiceUsage_CustomError - */ - public function setCustomError(Google_Service_ServiceUsage_CustomError $customError) - { - $this->customError = $customError; - } - /** - * @return Google_Service_ServiceUsage_CustomError - */ - public function getCustomError() - { - return $this->customError; - } - /** - * @param Google_Service_ServiceUsage_Documentation - */ - public function setDocumentation(Google_Service_ServiceUsage_Documentation $documentation) - { - $this->documentation = $documentation; - } - /** - * @return Google_Service_ServiceUsage_Documentation - */ - public function getDocumentation() - { - return $this->documentation; - } - /** - * @param Google_Service_ServiceUsage_Endpoint - */ - public function setEndpoints($endpoints) - { - $this->endpoints = $endpoints; - } - /** - * @return Google_Service_ServiceUsage_Endpoint - */ - public function getEndpoints() - { - return $this->endpoints; - } - /** - * @param Google_Service_ServiceUsage_Enum - */ - public function setEnums($enums) - { - $this->enums = $enums; - } - /** - * @return Google_Service_ServiceUsage_Enum - */ - public function getEnums() - { - return $this->enums; - } - /** - * @param Google_Service_ServiceUsage_Http - */ - public function setHttp(Google_Service_ServiceUsage_Http $http) - { - $this->http = $http; - } - /** - * @return Google_Service_ServiceUsage_Http - */ - public function getHttp() - { - return $this->http; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_ServiceUsage_Logging - */ - public function setLogging(Google_Service_ServiceUsage_Logging $logging) - { - $this->logging = $logging; - } - /** - * @return Google_Service_ServiceUsage_Logging - */ - public function getLogging() - { - return $this->logging; - } - /** - * @param Google_Service_ServiceUsage_LogDescriptor - */ - public function setLogs($logs) - { - $this->logs = $logs; - } - /** - * @return Google_Service_ServiceUsage_LogDescriptor - */ - public function getLogs() - { - return $this->logs; - } - /** - * @param Google_Service_ServiceUsage_MetricDescriptor - */ - public function setMetrics($metrics) - { - $this->metrics = $metrics; - } - /** - * @return Google_Service_ServiceUsage_MetricDescriptor - */ - public function getMetrics() - { - return $this->metrics; - } - /** - * @param Google_Service_ServiceUsage_MonitoredResourceDescriptor - */ - public function setMonitoredResources($monitoredResources) - { - $this->monitoredResources = $monitoredResources; - } - /** - * @return Google_Service_ServiceUsage_MonitoredResourceDescriptor - */ - public function getMonitoredResources() - { - return $this->monitoredResources; - } - /** - * @param Google_Service_ServiceUsage_Monitoring - */ - public function setMonitoring(Google_Service_ServiceUsage_Monitoring $monitoring) - { - $this->monitoring = $monitoring; - } - /** - * @return Google_Service_ServiceUsage_Monitoring - */ - public function getMonitoring() - { - return $this->monitoring; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setProducerProjectId($producerProjectId) - { - $this->producerProjectId = $producerProjectId; - } - public function getProducerProjectId() - { - return $this->producerProjectId; - } - /** - * @param Google_Service_ServiceUsage_Quota - */ - public function setQuota(Google_Service_ServiceUsage_Quota $quota) - { - $this->quota = $quota; - } - /** - * @return Google_Service_ServiceUsage_Quota - */ - public function getQuota() - { - return $this->quota; - } - /** - * @param Google_Service_ServiceUsage_SourceInfo - */ - public function setSourceInfo(Google_Service_ServiceUsage_SourceInfo $sourceInfo) - { - $this->sourceInfo = $sourceInfo; - } - /** - * @return Google_Service_ServiceUsage_SourceInfo - */ - public function getSourceInfo() - { - return $this->sourceInfo; - } - /** - * @param Google_Service_ServiceUsage_SystemParameters - */ - public function setSystemParameters(Google_Service_ServiceUsage_SystemParameters $systemParameters) - { - $this->systemParameters = $systemParameters; - } - /** - * @return Google_Service_ServiceUsage_SystemParameters - */ - public function getSystemParameters() - { - return $this->systemParameters; - } - /** - * @param Google_Service_ServiceUsage_Type - */ - public function setSystemTypes($systemTypes) - { - $this->systemTypes = $systemTypes; - } - /** - * @return Google_Service_ServiceUsage_Type - */ - public function getSystemTypes() - { - return $this->systemTypes; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - /** - * @param Google_Service_ServiceUsage_Type - */ - public function setTypes($types) - { - $this->types = $types; - } - /** - * @return Google_Service_ServiceUsage_Type - */ - public function getTypes() - { - return $this->types; - } - /** - * @param Google_Service_ServiceUsage_Usage - */ - public function setUsage(Google_Service_ServiceUsage_Usage $usage) - { - $this->usage = $usage; - } - /** - * @return Google_Service_ServiceUsage_Usage - */ - public function getUsage() - { - return $this->usage; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/GoogleApiServiceIdentity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/GoogleApiServiceIdentity.php deleted file mode 100644 index af242fff..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/GoogleApiServiceIdentity.php +++ /dev/null @@ -1,48 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setServiceAccountParent($serviceAccountParent) - { - $this->serviceAccountParent = $serviceAccountParent; - } - public function getServiceAccountParent() - { - return $this->serviceAccountParent; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/GoogleApiServiceusageV1OperationMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/GoogleApiServiceusageV1OperationMetadata.php deleted file mode 100644 index 3133ebf5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/GoogleApiServiceusageV1OperationMetadata.php +++ /dev/null @@ -1,31 +0,0 @@ -resourceNames = $resourceNames; - } - public function getResourceNames() - { - return $this->resourceNames; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/GoogleApiServiceusageV1Service.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/GoogleApiServiceusageV1Service.php deleted file mode 100644 index bff783c8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/GoogleApiServiceusageV1Service.php +++ /dev/null @@ -1,64 +0,0 @@ -config = $config; - } - /** - * @return Google_Service_ServiceUsage_GoogleApiServiceusageV1ServiceConfig - */ - public function getConfig() - { - return $this->config; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setParent($parent) - { - $this->parent = $parent; - } - public function getParent() - { - return $this->parent; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/GoogleApiServiceusageV1ServiceConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/GoogleApiServiceusageV1ServiceConfig.php deleted file mode 100644 index 931f940e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/GoogleApiServiceusageV1ServiceConfig.php +++ /dev/null @@ -1,136 +0,0 @@ -apis = $apis; - } - /** - * @return Google_Service_ServiceUsage_Api - */ - public function getApis() - { - return $this->apis; - } - /** - * @param Google_Service_ServiceUsage_Authentication - */ - public function setAuthentication(Google_Service_ServiceUsage_Authentication $authentication) - { - $this->authentication = $authentication; - } - /** - * @return Google_Service_ServiceUsage_Authentication - */ - public function getAuthentication() - { - return $this->authentication; - } - /** - * @param Google_Service_ServiceUsage_Documentation - */ - public function setDocumentation(Google_Service_ServiceUsage_Documentation $documentation) - { - $this->documentation = $documentation; - } - /** - * @return Google_Service_ServiceUsage_Documentation - */ - public function getDocumentation() - { - return $this->documentation; - } - /** - * @param Google_Service_ServiceUsage_Endpoint - */ - public function setEndpoints($endpoints) - { - $this->endpoints = $endpoints; - } - /** - * @return Google_Service_ServiceUsage_Endpoint - */ - public function getEndpoints() - { - return $this->endpoints; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_ServiceUsage_Quota - */ - public function setQuota(Google_Service_ServiceUsage_Quota $quota) - { - $this->quota = $quota; - } - /** - * @return Google_Service_ServiceUsage_Quota - */ - public function getQuota() - { - return $this->quota; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - /** - * @param Google_Service_ServiceUsage_Usage - */ - public function setUsage(Google_Service_ServiceUsage_Usage $usage) - { - $this->usage = $usage; - } - /** - * @return Google_Service_ServiceUsage_Usage - */ - public function getUsage() - { - return $this->usage; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/GoogleApiServiceusageV1beta1GetServiceIdentityResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/GoogleApiServiceusageV1beta1GetServiceIdentityResponse.php deleted file mode 100644 index 86702542..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/GoogleApiServiceusageV1beta1GetServiceIdentityResponse.php +++ /dev/null @@ -1,46 +0,0 @@ -identity = $identity; - } - /** - * @return Google_Service_ServiceUsage_GoogleApiServiceusageV1beta1ServiceIdentity - */ - public function getIdentity() - { - return $this->identity; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/GoogleApiServiceusageV1beta1ServiceIdentity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/GoogleApiServiceusageV1beta1ServiceIdentity.php deleted file mode 100644 index abc25eb5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/GoogleApiServiceusageV1beta1ServiceIdentity.php +++ /dev/null @@ -1,39 +0,0 @@ -email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setUniqueId($uniqueId) - { - $this->uniqueId = $uniqueId; - } - public function getUniqueId() - { - return $this->uniqueId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Http.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Http.php deleted file mode 100644 index 4cb85425..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Http.php +++ /dev/null @@ -1,47 +0,0 @@ -fullyDecodeReservedExpansion = $fullyDecodeReservedExpansion; - } - public function getFullyDecodeReservedExpansion() - { - return $this->fullyDecodeReservedExpansion; - } - /** - * @param Google_Service_ServiceUsage_HttpRule - */ - public function setRules($rules) - { - $this->rules = $rules; - } - /** - * @return Google_Service_ServiceUsage_HttpRule - */ - public function getRules() - { - return $this->rules; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/HttpRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/HttpRule.php deleted file mode 100644 index 7f69908c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/HttpRule.php +++ /dev/null @@ -1,135 +0,0 @@ -additionalBindings = $additionalBindings; - } - /** - * @return Google_Service_ServiceUsage_HttpRule - */ - public function getAdditionalBindings() - { - return $this->additionalBindings; - } - public function setAllowHalfDuplex($allowHalfDuplex) - { - $this->allowHalfDuplex = $allowHalfDuplex; - } - public function getAllowHalfDuplex() - { - return $this->allowHalfDuplex; - } - public function setBody($body) - { - $this->body = $body; - } - public function getBody() - { - return $this->body; - } - /** - * @param Google_Service_ServiceUsage_CustomHttpPattern - */ - public function setCustom(Google_Service_ServiceUsage_CustomHttpPattern $custom) - { - $this->custom = $custom; - } - /** - * @return Google_Service_ServiceUsage_CustomHttpPattern - */ - public function getCustom() - { - return $this->custom; - } - public function setDelete($delete) - { - $this->delete = $delete; - } - public function getDelete() - { - return $this->delete; - } - public function setGet($get) - { - $this->get = $get; - } - public function getGet() - { - return $this->get; - } - public function setPatch($patch) - { - $this->patch = $patch; - } - public function getPatch() - { - return $this->patch; - } - public function setPost($post) - { - $this->post = $post; - } - public function getPost() - { - return $this->post; - } - public function setPut($put) - { - $this->put = $put; - } - public function getPut() - { - return $this->put; - } - public function setResponseBody($responseBody) - { - $this->responseBody = $responseBody; - } - public function getResponseBody() - { - return $this->responseBody; - } - public function setSelector($selector) - { - $this->selector = $selector; - } - public function getSelector() - { - return $this->selector; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/LabelDescriptor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/LabelDescriptor.php deleted file mode 100644 index 1b7abb6a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/LabelDescriptor.php +++ /dev/null @@ -1,48 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setKey($key) - { - $this->key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValueType($valueType) - { - $this->valueType = $valueType; - } - public function getValueType() - { - return $this->valueType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/ListOperationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/ListOperationsResponse.php deleted file mode 100644 index d37aaa47..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/ListOperationsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_ServiceUsage_Operation - */ - public function setOperations($operations) - { - $this->operations = $operations; - } - /** - * @return Google_Service_ServiceUsage_Operation - */ - public function getOperations() - { - return $this->operations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/ListServicesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/ListServicesResponse.php deleted file mode 100644 index e5230fef..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/ListServicesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_ServiceUsage_GoogleApiServiceusageV1Service - */ - public function setServices($services) - { - $this->services = $services; - } - /** - * @return Google_Service_ServiceUsage_GoogleApiServiceusageV1Service - */ - public function getServices() - { - return $this->services; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/LogDescriptor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/LogDescriptor.php deleted file mode 100644 index d1725122..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/LogDescriptor.php +++ /dev/null @@ -1,65 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - /** - * @param Google_Service_ServiceUsage_LabelDescriptor - */ - public function setLabels($labels) - { - $this->labels = $labels; - } - /** - * @return Google_Service_ServiceUsage_LabelDescriptor - */ - public function getLabels() - { - return $this->labels; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Logging.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Logging.php deleted file mode 100644 index f3d1f5a4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Logging.php +++ /dev/null @@ -1,54 +0,0 @@ -consumerDestinations = $consumerDestinations; - } - /** - * @return Google_Service_ServiceUsage_LoggingDestination - */ - public function getConsumerDestinations() - { - return $this->consumerDestinations; - } - /** - * @param Google_Service_ServiceUsage_LoggingDestination - */ - public function setProducerDestinations($producerDestinations) - { - $this->producerDestinations = $producerDestinations; - } - /** - * @return Google_Service_ServiceUsage_LoggingDestination - */ - public function getProducerDestinations() - { - return $this->producerDestinations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/LoggingDestination.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/LoggingDestination.php deleted file mode 100644 index 54b7f973..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/LoggingDestination.php +++ /dev/null @@ -1,40 +0,0 @@ -logs = $logs; - } - public function getLogs() - { - return $this->logs; - } - public function setMonitoredResource($monitoredResource) - { - $this->monitoredResource = $monitoredResource; - } - public function getMonitoredResource() - { - return $this->monitoredResource; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Method.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Method.php deleted file mode 100644 index 4169dbe0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Method.php +++ /dev/null @@ -1,92 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_ServiceUsage_Option - */ - public function setOptions($options) - { - $this->options = $options; - } - /** - * @return Google_Service_ServiceUsage_Option - */ - public function getOptions() - { - return $this->options; - } - public function setRequestStreaming($requestStreaming) - { - $this->requestStreaming = $requestStreaming; - } - public function getRequestStreaming() - { - return $this->requestStreaming; - } - public function setRequestTypeUrl($requestTypeUrl) - { - $this->requestTypeUrl = $requestTypeUrl; - } - public function getRequestTypeUrl() - { - return $this->requestTypeUrl; - } - public function setResponseStreaming($responseStreaming) - { - $this->responseStreaming = $responseStreaming; - } - public function getResponseStreaming() - { - return $this->responseStreaming; - } - public function setResponseTypeUrl($responseTypeUrl) - { - $this->responseTypeUrl = $responseTypeUrl; - } - public function getResponseTypeUrl() - { - return $this->responseTypeUrl; - } - public function setSyntax($syntax) - { - $this->syntax = $syntax; - } - public function getSyntax() - { - return $this->syntax; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/MetricDescriptor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/MetricDescriptor.php deleted file mode 100644 index 1487bd58..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/MetricDescriptor.php +++ /dev/null @@ -1,135 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - /** - * @param Google_Service_ServiceUsage_LabelDescriptor - */ - public function setLabels($labels) - { - $this->labels = $labels; - } - /** - * @return Google_Service_ServiceUsage_LabelDescriptor - */ - public function getLabels() - { - return $this->labels; - } - public function setLaunchStage($launchStage) - { - $this->launchStage = $launchStage; - } - public function getLaunchStage() - { - return $this->launchStage; - } - /** - * @param Google_Service_ServiceUsage_MetricDescriptorMetadata - */ - public function setMetadata(Google_Service_ServiceUsage_MetricDescriptorMetadata $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_ServiceUsage_MetricDescriptorMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - public function setMetricKind($metricKind) - { - $this->metricKind = $metricKind; - } - public function getMetricKind() - { - return $this->metricKind; - } - public function setMonitoredResourceTypes($monitoredResourceTypes) - { - $this->monitoredResourceTypes = $monitoredResourceTypes; - } - public function getMonitoredResourceTypes() - { - return $this->monitoredResourceTypes; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setUnit($unit) - { - $this->unit = $unit; - } - public function getUnit() - { - return $this->unit; - } - public function setValueType($valueType) - { - $this->valueType = $valueType; - } - public function getValueType() - { - return $this->valueType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/MetricDescriptorMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/MetricDescriptorMetadata.php deleted file mode 100644 index 347ca34c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/MetricDescriptorMetadata.php +++ /dev/null @@ -1,48 +0,0 @@ -ingestDelay = $ingestDelay; - } - public function getIngestDelay() - { - return $this->ingestDelay; - } - public function setLaunchStage($launchStage) - { - $this->launchStage = $launchStage; - } - public function getLaunchStage() - { - return $this->launchStage; - } - public function setSamplePeriod($samplePeriod) - { - $this->samplePeriod = $samplePeriod; - } - public function getSamplePeriod() - { - return $this->samplePeriod; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/MetricRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/MetricRule.php deleted file mode 100644 index 7c09dc41..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/MetricRule.php +++ /dev/null @@ -1,39 +0,0 @@ -metricCosts = $metricCosts; - } - public function getMetricCosts() - { - return $this->metricCosts; - } - public function setSelector($selector) - { - $this->selector = $selector; - } - public function getSelector() - { - return $this->selector; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Mixin.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Mixin.php deleted file mode 100644 index a9cd3086..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Mixin.php +++ /dev/null @@ -1,39 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setRoot($root) - { - $this->root = $root; - } - public function getRoot() - { - return $this->root; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/MonitoredResourceDescriptor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/MonitoredResourceDescriptor.php deleted file mode 100644 index 591c686b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/MonitoredResourceDescriptor.php +++ /dev/null @@ -1,83 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - /** - * @param Google_Service_ServiceUsage_LabelDescriptor - */ - public function setLabels($labels) - { - $this->labels = $labels; - } - /** - * @return Google_Service_ServiceUsage_LabelDescriptor - */ - public function getLabels() - { - return $this->labels; - } - public function setLaunchStage($launchStage) - { - $this->launchStage = $launchStage; - } - public function getLaunchStage() - { - return $this->launchStage; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Monitoring.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Monitoring.php deleted file mode 100644 index b34e213c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Monitoring.php +++ /dev/null @@ -1,54 +0,0 @@ -consumerDestinations = $consumerDestinations; - } - /** - * @return Google_Service_ServiceUsage_MonitoringDestination - */ - public function getConsumerDestinations() - { - return $this->consumerDestinations; - } - /** - * @param Google_Service_ServiceUsage_MonitoringDestination - */ - public function setProducerDestinations($producerDestinations) - { - $this->producerDestinations = $producerDestinations; - } - /** - * @return Google_Service_ServiceUsage_MonitoringDestination - */ - public function getProducerDestinations() - { - return $this->producerDestinations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/MonitoringDestination.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/MonitoringDestination.php deleted file mode 100644 index 096708f1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/MonitoringDestination.php +++ /dev/null @@ -1,40 +0,0 @@ -metrics = $metrics; - } - public function getMetrics() - { - return $this->metrics; - } - public function setMonitoredResource($monitoredResource) - { - $this->monitoredResource = $monitoredResource; - } - public function getMonitoredResource() - { - return $this->monitoredResource; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/OAuthRequirements.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/OAuthRequirements.php deleted file mode 100644 index 369be2fe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/OAuthRequirements.php +++ /dev/null @@ -1,30 +0,0 @@ -canonicalScopes = $canonicalScopes; - } - public function getCanonicalScopes() - { - return $this->canonicalScopes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Operation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Operation.php deleted file mode 100644 index 635161ce..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Operation.php +++ /dev/null @@ -1,73 +0,0 @@ -done = $done; - } - public function getDone() - { - return $this->done; - } - /** - * @param Google_Service_ServiceUsage_Status - */ - public function setError(Google_Service_ServiceUsage_Status $error) - { - $this->error = $error; - } - /** - * @return Google_Service_ServiceUsage_Status - */ - public function getError() - { - return $this->error; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/OperationMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/OperationMetadata.php deleted file mode 100644 index 7e5d1826..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/OperationMetadata.php +++ /dev/null @@ -1,31 +0,0 @@ -resourceNames = $resourceNames; - } - public function getResourceNames() - { - return $this->resourceNames; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Option.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Option.php deleted file mode 100644 index ee2a0d00..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Option.php +++ /dev/null @@ -1,39 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Page.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Page.php deleted file mode 100644 index 5fc97e37..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Page.php +++ /dev/null @@ -1,56 +0,0 @@ -content = $content; - } - public function getContent() - { - return $this->content; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_ServiceUsage_Page - */ - public function setSubpages($subpages) - { - $this->subpages = $subpages; - } - /** - * @return Google_Service_ServiceUsage_Page - */ - public function getSubpages() - { - return $this->subpages; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Quota.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Quota.php deleted file mode 100644 index 83409b62..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Quota.php +++ /dev/null @@ -1,54 +0,0 @@ -limits = $limits; - } - /** - * @return Google_Service_ServiceUsage_QuotaLimit - */ - public function getLimits() - { - return $this->limits; - } - /** - * @param Google_Service_ServiceUsage_MetricRule - */ - public function setMetricRules($metricRules) - { - $this->metricRules = $metricRules; - } - /** - * @return Google_Service_ServiceUsage_MetricRule - */ - public function getMetricRules() - { - return $this->metricRules; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/QuotaLimit.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/QuotaLimit.php deleted file mode 100644 index 7dd33410..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/QuotaLimit.php +++ /dev/null @@ -1,111 +0,0 @@ -defaultLimit = $defaultLimit; - } - public function getDefaultLimit() - { - return $this->defaultLimit; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setDuration($duration) - { - $this->duration = $duration; - } - public function getDuration() - { - return $this->duration; - } - public function setFreeTier($freeTier) - { - $this->freeTier = $freeTier; - } - public function getFreeTier() - { - return $this->freeTier; - } - public function setMaxLimit($maxLimit) - { - $this->maxLimit = $maxLimit; - } - public function getMaxLimit() - { - return $this->maxLimit; - } - public function setMetric($metric) - { - $this->metric = $metric; - } - public function getMetric() - { - return $this->metric; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setUnit($unit) - { - $this->unit = $unit; - } - public function getUnit() - { - return $this->unit; - } - public function setValues($values) - { - $this->values = $values; - } - public function getValues() - { - return $this->values; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/QuotaOverride.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/QuotaOverride.php deleted file mode 100644 index 3c8b2785..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/QuotaOverride.php +++ /dev/null @@ -1,48 +0,0 @@ -dimensions = $dimensions; - } - public function getDimensions() - { - return $this->dimensions; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOverrideValue($overrideValue) - { - $this->overrideValue = $overrideValue; - } - public function getOverrideValue() - { - return $this->overrideValue; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Resource/Operations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Resource/Operations.php deleted file mode 100644 index 494537d0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Resource/Operations.php +++ /dev/null @@ -1,107 +0,0 @@ - - * $serviceusageService = new Google_Service_ServiceUsage(...); - * $operations = $serviceusageService->operations; - * - */ -class Google_Service_ServiceUsage_Resource_Operations extends Google_Service_Resource -{ - /** - * Starts asynchronous cancellation on a long-running operation. The server - * makes a best effort to cancel the operation, but success is not guaranteed. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or - * other methods to check whether the cancellation succeeded or whether the - * operation completed despite cancellation. On successful cancellation, the - * operation is not deleted; instead, it becomes an operation with an - * Operation.error value with a google.rpc.Status.code of 1, corresponding to - * `Code.CANCELLED`. (operations.cancel) - * - * @param string $name The name of the operation resource to be cancelled. - * @param Google_Service_ServiceUsage_CancelOperationRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceUsage_ServiceusageEmpty - */ - public function cancel($name, Google_Service_ServiceUsage_CancelOperationRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('cancel', array($params), "Google_Service_ServiceUsage_ServiceusageEmpty"); - } - /** - * Deletes a long-running operation. This method indicates that the client is no - * longer interested in the operation result. It does not cancel the operation. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. (operations.delete) - * - * @param string $name The name of the operation resource to be deleted. - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceUsage_ServiceusageEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_ServiceUsage_ServiceusageEmpty"); - } - /** - * Gets the latest state of a long-running operation. Clients can use this - * method to poll the operation result at intervals as recommended by the API - * service. (operations.get) - * - * @param string $name The name of the operation resource. - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceUsage_Operation - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_ServiceUsage_Operation"); - } - /** - * Lists operations that match the specified filter in the request. If the - * server doesn't support this method, it returns `UNIMPLEMENTED`. - * - * NOTE: the `name` binding allows API services to override the binding to use - * different resource name schemes, such as `users/operations`. To override the - * binding, API services can add a binding such as - * `"/v1/{name=users}/operations"` to their service configuration. For backwards - * compatibility, the default name includes the operations collection id, - * however overriding users must ensure the name binding is the parent resource, - * without the operations collection id. (operations.listOperations) - * - * @param array $optParams Optional parameters. - * - * @opt_param string name The name of the operation's parent resource. - * @opt_param string pageToken The standard list page token. - * @opt_param int pageSize The standard list page size. - * @opt_param string filter The standard list filter. - * @return Google_Service_ServiceUsage_ListOperationsResponse - */ - public function listOperations($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_ServiceUsage_ListOperationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Resource/Services.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Resource/Services.php deleted file mode 100644 index ce1c2cf5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Resource/Services.php +++ /dev/null @@ -1,145 +0,0 @@ - - * $serviceusageService = new Google_Service_ServiceUsage(...); - * $services = $serviceusageService->services; - * - */ -class Google_Service_ServiceUsage_Resource_Services extends Google_Service_Resource -{ - /** - * Enable multiple services on a project. The operation is atomic: if enabling - * any service fails, then the entire batch fails, and no state changes occur. - * To enable a single service, use the `EnableService` method instead. - * (services.batchEnable) - * - * @param string $parent Parent to enable services on. - * - * An example name would be: `projects/123` where `123` is the project number. - * - * The `BatchEnableServices` method currently only supports projects. - * @param Google_Service_ServiceUsage_BatchEnableServicesRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceUsage_Operation - */ - public function batchEnable($parent, Google_Service_ServiceUsage_BatchEnableServicesRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('batchEnable', array($params), "Google_Service_ServiceUsage_Operation"); - } - /** - * Disable a service so that it can no longer be used with a project. This - * prevents unintended usage that may cause unexpected billing charges or - * security leaks. - * - * It is not valid to call the disable method on a service that is not currently - * enabled. Callers will receive a `FAILED_PRECONDITION` status if the target - * service is not currently enabled. (services.disable) - * - * @param string $name Name of the consumer and service to disable the service - * on. - * - * The enable and disable methods currently only support projects. - * - * An example name would be: `projects/123/services/serviceusage.googleapis.com` - * where `123` is the project number. - * @param Google_Service_ServiceUsage_DisableServiceRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceUsage_Operation - */ - public function disable($name, Google_Service_ServiceUsage_DisableServiceRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('disable', array($params), "Google_Service_ServiceUsage_Operation"); - } - /** - * Enable a service so that it can be used with a project. (services.enable) - * - * @param string $name Name of the consumer and service to enable the service - * on. - * - * The `EnableService` and `DisableService` methods currently only support - * projects. - * - * Enabling a service requires that the service is public or is shared with the - * user enabling the service. - * - * An example name would be: `projects/123/services/serviceusage.googleapis.com` - * where `123` is the project number. - * @param Google_Service_ServiceUsage_EnableServiceRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceUsage_Operation - */ - public function enable($name, Google_Service_ServiceUsage_EnableServiceRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('enable', array($params), "Google_Service_ServiceUsage_Operation"); - } - /** - * Returns the service configuration and enabled state for a given service. - * (services.get) - * - * @param string $name Name of the consumer and service to get the - * `ConsumerState` for. - * - * An example name would be: `projects/123/services/serviceusage.googleapis.com` - * where `123` is the project number. - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceUsage_GoogleApiServiceusageV1Service - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_ServiceUsage_GoogleApiServiceusageV1Service"); - } - /** - * List all services available to the specified project, and the current state - * of those services with respect to the project. The list includes all public - * services, all services for which the calling user has the - * `servicemanagement.services.bind` permission, and all services that have - * already been enabled on the project. The list can be filtered to only include - * services in a specific state, for example to only include services enabled on - * the project. (services.listServices) - * - * @param string $parent Parent to search for services on. - * - * An example name would be: `projects/123` where `123` is the project number. - * @param array $optParams Optional parameters. - * - * @opt_param string filter Only list services that conform to the given filter. - * The allowed filter strings are `state:ENABLED` and `state:DISABLED`. - * @opt_param string pageToken Token identifying which result to start with, - * which is returned by a previous list call. - * @opt_param int pageSize Requested size of the next page of data. Requested - * page size cannot exceed 200. If not set, the default page size is 50. - * @return Google_Service_ServiceUsage_ListServicesResponse - */ - public function listServices($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_ServiceUsage_ListServicesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/ServiceIdentity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/ServiceIdentity.php deleted file mode 100644 index 0d612528..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/ServiceIdentity.php +++ /dev/null @@ -1,39 +0,0 @@ -email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setUniqueId($uniqueId) - { - $this->uniqueId = $uniqueId; - } - public function getUniqueId() - { - return $this->uniqueId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/ServiceusageEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/ServiceusageEmpty.php deleted file mode 100644 index 1c1c200a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/ServiceusageEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -fileName = $fileName; - } - public function getFileName() - { - return $this->fileName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/SourceInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/SourceInfo.php deleted file mode 100644 index 46e51ccf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/SourceInfo.php +++ /dev/null @@ -1,31 +0,0 @@ -sourceFiles = $sourceFiles; - } - public function getSourceFiles() - { - return $this->sourceFiles; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Status.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Status.php deleted file mode 100644 index 4dab88ee..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Status.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/SystemParameter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/SystemParameter.php deleted file mode 100644 index a31833df..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/SystemParameter.php +++ /dev/null @@ -1,48 +0,0 @@ -httpHeader = $httpHeader; - } - public function getHttpHeader() - { - return $this->httpHeader; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setUrlQueryParameter($urlQueryParameter) - { - $this->urlQueryParameter = $urlQueryParameter; - } - public function getUrlQueryParameter() - { - return $this->urlQueryParameter; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/SystemParameterRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/SystemParameterRule.php deleted file mode 100644 index b16aba3c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/SystemParameterRule.php +++ /dev/null @@ -1,47 +0,0 @@ -parameters = $parameters; - } - /** - * @return Google_Service_ServiceUsage_SystemParameter - */ - public function getParameters() - { - return $this->parameters; - } - public function setSelector($selector) - { - $this->selector = $selector; - } - public function getSelector() - { - return $this->selector; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/SystemParameters.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/SystemParameters.php deleted file mode 100644 index 82a2dc4b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/SystemParameters.php +++ /dev/null @@ -1,38 +0,0 @@ -rules = $rules; - } - /** - * @return Google_Service_ServiceUsage_SystemParameterRule - */ - public function getRules() - { - return $this->rules; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Type.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Type.php deleted file mode 100644 index 3ff96ddf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Type.php +++ /dev/null @@ -1,97 +0,0 @@ -fields = $fields; - } - /** - * @return Google_Service_ServiceUsage_Field - */ - public function getFields() - { - return $this->fields; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOneofs($oneofs) - { - $this->oneofs = $oneofs; - } - public function getOneofs() - { - return $this->oneofs; - } - /** - * @param Google_Service_ServiceUsage_Option - */ - public function setOptions($options) - { - $this->options = $options; - } - /** - * @return Google_Service_ServiceUsage_Option - */ - public function getOptions() - { - return $this->options; - } - /** - * @param Google_Service_ServiceUsage_SourceContext - */ - public function setSourceContext(Google_Service_ServiceUsage_SourceContext $sourceContext) - { - $this->sourceContext = $sourceContext; - } - /** - * @return Google_Service_ServiceUsage_SourceContext - */ - public function getSourceContext() - { - return $this->sourceContext; - } - public function setSyntax($syntax) - { - $this->syntax = $syntax; - } - public function getSyntax() - { - return $this->syntax; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Usage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Usage.php deleted file mode 100644 index 7979a202..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/Usage.php +++ /dev/null @@ -1,72 +0,0 @@ -producerNotificationChannel = $producerNotificationChannel; - } - public function getProducerNotificationChannel() - { - return $this->producerNotificationChannel; - } - public function setRequirements($requirements) - { - $this->requirements = $requirements; - } - public function getRequirements() - { - return $this->requirements; - } - /** - * @param Google_Service_ServiceUsage_UsageRule - */ - public function setRules($rules) - { - $this->rules = $rules; - } - /** - * @return Google_Service_ServiceUsage_UsageRule - */ - public function getRules() - { - return $this->rules; - } - /** - * @param Google_Service_ServiceUsage_GoogleApiServiceIdentity - */ - public function setServiceIdentity(Google_Service_ServiceUsage_GoogleApiServiceIdentity $serviceIdentity) - { - $this->serviceIdentity = $serviceIdentity; - } - /** - * @return Google_Service_ServiceUsage_GoogleApiServiceIdentity - */ - public function getServiceIdentity() - { - return $this->serviceIdentity; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/UsageRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/UsageRule.php deleted file mode 100644 index 77eb3ea1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUsage/UsageRule.php +++ /dev/null @@ -1,48 +0,0 @@ -allowUnregisteredCalls = $allowUnregisteredCalls; - } - public function getAllowUnregisteredCalls() - { - return $this->allowUnregisteredCalls; - } - public function setSelector($selector) - { - $this->selector = $selector; - } - public function getSelector() - { - return $this->selector; - } - public function setSkipServiceControl($skipServiceControl) - { - $this->skipServiceControl = $skipServiceControl; - } - public function getSkipServiceControl() - { - return $this->skipServiceControl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser.php deleted file mode 100644 index 0d5391a3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser.php +++ /dev/null @@ -1,133 +0,0 @@ - - * Enables services that service consumers want to use on Google Cloud Platform, - * lists the available or enabled services, or disables services that service - * consumers no longer use.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_ServiceUser extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** View your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM_READ_ONLY = - "https://www.googleapis.com/auth/cloud-platform.read-only"; - /** Manage your Google API service configuration. */ - const SERVICE_MANAGEMENT = - "https://www.googleapis.com/auth/service.management"; - - public $projects_services; - public $services; - - /** - * Constructs the internal representation of the ServiceUser service. - * - * @param Google_Client $client - */ - public function __construct(Google_Client $client) - { - parent::__construct($client); - $this->rootUrl = 'https://serviceuser.googleapis.com/'; - $this->servicePath = ''; - $this->version = 'v1'; - $this->serviceName = 'serviceuser'; - - $this->projects_services = new Google_Service_ServiceUser_Resource_ProjectsServices( - $this, - $this->serviceName, - 'services', - array( - 'methods' => array( - 'disable' => array( - 'path' => 'v1/{+name}:disable', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'enable' => array( - 'path' => 'v1/{+name}:enable', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/services', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->services = new Google_Service_ServiceUser_Resource_Services( - $this, - $this->serviceName, - 'services', - array( - 'methods' => array( - 'search' => array( - 'path' => 'v1/services:search', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Api.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Api.php deleted file mode 100644 index 27ed6f9b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Api.php +++ /dev/null @@ -1,113 +0,0 @@ -methods = $methods; - } - /** - * @return Google_Service_ServiceUser_Method - */ - public function getMethods() - { - return $this->methods; - } - /** - * @param Google_Service_ServiceUser_Mixin - */ - public function setMixins($mixins) - { - $this->mixins = $mixins; - } - /** - * @return Google_Service_ServiceUser_Mixin - */ - public function getMixins() - { - return $this->mixins; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_ServiceUser_Option - */ - public function setOptions($options) - { - $this->options = $options; - } - /** - * @return Google_Service_ServiceUser_Option - */ - public function getOptions() - { - return $this->options; - } - /** - * @param Google_Service_ServiceUser_SourceContext - */ - public function setSourceContext(Google_Service_ServiceUser_SourceContext $sourceContext) - { - $this->sourceContext = $sourceContext; - } - /** - * @return Google_Service_ServiceUser_SourceContext - */ - public function getSourceContext() - { - return $this->sourceContext; - } - public function setSyntax($syntax) - { - $this->syntax = $syntax; - } - public function getSyntax() - { - return $this->syntax; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/AuthProvider.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/AuthProvider.php deleted file mode 100644 index 59445e50..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/AuthProvider.php +++ /dev/null @@ -1,66 +0,0 @@ -audiences = $audiences; - } - public function getAudiences() - { - return $this->audiences; - } - public function setAuthorizationUrl($authorizationUrl) - { - $this->authorizationUrl = $authorizationUrl; - } - public function getAuthorizationUrl() - { - return $this->authorizationUrl; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setIssuer($issuer) - { - $this->issuer = $issuer; - } - public function getIssuer() - { - return $this->issuer; - } - public function setJwksUri($jwksUri) - { - $this->jwksUri = $jwksUri; - } - public function getJwksUri() - { - return $this->jwksUri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/AuthRequirement.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/AuthRequirement.php deleted file mode 100644 index b75f29ef..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/AuthRequirement.php +++ /dev/null @@ -1,39 +0,0 @@ -audiences = $audiences; - } - public function getAudiences() - { - return $this->audiences; - } - public function setProviderId($providerId) - { - $this->providerId = $providerId; - } - public function getProviderId() - { - return $this->providerId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Authentication.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Authentication.php deleted file mode 100644 index 4565cde3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Authentication.php +++ /dev/null @@ -1,54 +0,0 @@ -providers = $providers; - } - /** - * @return Google_Service_ServiceUser_AuthProvider - */ - public function getProviders() - { - return $this->providers; - } - /** - * @param Google_Service_ServiceUser_AuthenticationRule - */ - public function setRules($rules) - { - $this->rules = $rules; - } - /** - * @return Google_Service_ServiceUser_AuthenticationRule - */ - public function getRules() - { - return $this->rules; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/AuthenticationRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/AuthenticationRule.php deleted file mode 100644 index f1bad9be..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/AuthenticationRule.php +++ /dev/null @@ -1,72 +0,0 @@ -allowWithoutCredential = $allowWithoutCredential; - } - public function getAllowWithoutCredential() - { - return $this->allowWithoutCredential; - } - /** - * @param Google_Service_ServiceUser_OAuthRequirements - */ - public function setOauth(Google_Service_ServiceUser_OAuthRequirements $oauth) - { - $this->oauth = $oauth; - } - /** - * @return Google_Service_ServiceUser_OAuthRequirements - */ - public function getOauth() - { - return $this->oauth; - } - /** - * @param Google_Service_ServiceUser_AuthRequirement - */ - public function setRequirements($requirements) - { - $this->requirements = $requirements; - } - /** - * @return Google_Service_ServiceUser_AuthRequirement - */ - public function getRequirements() - { - return $this->requirements; - } - public function setSelector($selector) - { - $this->selector = $selector; - } - public function getSelector() - { - return $this->selector; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/AuthorizationConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/AuthorizationConfig.php deleted file mode 100644 index c4ed8e2f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/AuthorizationConfig.php +++ /dev/null @@ -1,30 +0,0 @@ -provider = $provider; - } - public function getProvider() - { - return $this->provider; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Backend.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Backend.php deleted file mode 100644 index a36ddc91..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Backend.php +++ /dev/null @@ -1,38 +0,0 @@ -rules = $rules; - } - /** - * @return Google_Service_ServiceUser_BackendRule - */ - public function getRules() - { - return $this->rules; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/BackendRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/BackendRule.php deleted file mode 100644 index 211ad689..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/BackendRule.php +++ /dev/null @@ -1,57 +0,0 @@ -address = $address; - } - public function getAddress() - { - return $this->address; - } - public function setDeadline($deadline) - { - $this->deadline = $deadline; - } - public function getDeadline() - { - return $this->deadline; - } - public function setMinDeadline($minDeadline) - { - $this->minDeadline = $minDeadline; - } - public function getMinDeadline() - { - return $this->minDeadline; - } - public function setSelector($selector) - { - $this->selector = $selector; - } - public function getSelector() - { - return $this->selector; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Billing.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Billing.php deleted file mode 100644 index 7311ee49..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Billing.php +++ /dev/null @@ -1,38 +0,0 @@ -consumerDestinations = $consumerDestinations; - } - /** - * @return Google_Service_ServiceUser_BillingDestination - */ - public function getConsumerDestinations() - { - return $this->consumerDestinations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/BillingDestination.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/BillingDestination.php deleted file mode 100644 index 0fa4ec98..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/BillingDestination.php +++ /dev/null @@ -1,40 +0,0 @@ -metrics = $metrics; - } - public function getMetrics() - { - return $this->metrics; - } - public function setMonitoredResource($monitoredResource) - { - $this->monitoredResource = $monitoredResource; - } - public function getMonitoredResource() - { - return $this->monitoredResource; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Context.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Context.php deleted file mode 100644 index c41eab41..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Context.php +++ /dev/null @@ -1,38 +0,0 @@ -rules = $rules; - } - /** - * @return Google_Service_ServiceUser_ContextRule - */ - public function getRules() - { - return $this->rules; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/ContextRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/ContextRule.php deleted file mode 100644 index 35c30114..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/ContextRule.php +++ /dev/null @@ -1,67 +0,0 @@ -allowedRequestExtensions = $allowedRequestExtensions; - } - public function getAllowedRequestExtensions() - { - return $this->allowedRequestExtensions; - } - public function setAllowedResponseExtensions($allowedResponseExtensions) - { - $this->allowedResponseExtensions = $allowedResponseExtensions; - } - public function getAllowedResponseExtensions() - { - return $this->allowedResponseExtensions; - } - public function setProvided($provided) - { - $this->provided = $provided; - } - public function getProvided() - { - return $this->provided; - } - public function setRequested($requested) - { - $this->requested = $requested; - } - public function getRequested() - { - return $this->requested; - } - public function setSelector($selector) - { - $this->selector = $selector; - } - public function getSelector() - { - return $this->selector; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Control.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Control.php deleted file mode 100644 index 336ec7b7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Control.php +++ /dev/null @@ -1,30 +0,0 @@ -environment = $environment; - } - public function getEnvironment() - { - return $this->environment; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/CustomError.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/CustomError.php deleted file mode 100644 index 6de4f628..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/CustomError.php +++ /dev/null @@ -1,47 +0,0 @@ -rules = $rules; - } - /** - * @return Google_Service_ServiceUser_CustomErrorRule - */ - public function getRules() - { - return $this->rules; - } - public function setTypes($types) - { - $this->types = $types; - } - public function getTypes() - { - return $this->types; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/CustomErrorRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/CustomErrorRule.php deleted file mode 100644 index cf77aa3a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/CustomErrorRule.php +++ /dev/null @@ -1,39 +0,0 @@ -isErrorType = $isErrorType; - } - public function getIsErrorType() - { - return $this->isErrorType; - } - public function setSelector($selector) - { - $this->selector = $selector; - } - public function getSelector() - { - return $this->selector; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/CustomHttpPattern.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/CustomHttpPattern.php deleted file mode 100644 index 7558cc76..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/CustomHttpPattern.php +++ /dev/null @@ -1,39 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setPath($path) - { - $this->path = $path; - } - public function getPath() - { - return $this->path; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/DisableServiceRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/DisableServiceRequest.php deleted file mode 100644 index b719f808..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/DisableServiceRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -documentationRootUrl = $documentationRootUrl; - } - public function getDocumentationRootUrl() - { - return $this->documentationRootUrl; - } - public function setOverview($overview) - { - $this->overview = $overview; - } - public function getOverview() - { - return $this->overview; - } - /** - * @param Google_Service_ServiceUser_Page - */ - public function setPages($pages) - { - $this->pages = $pages; - } - /** - * @return Google_Service_ServiceUser_Page - */ - public function getPages() - { - return $this->pages; - } - /** - * @param Google_Service_ServiceUser_DocumentationRule - */ - public function setRules($rules) - { - $this->rules = $rules; - } - /** - * @return Google_Service_ServiceUser_DocumentationRule - */ - public function getRules() - { - return $this->rules; - } - public function setSummary($summary) - { - $this->summary = $summary; - } - public function getSummary() - { - return $this->summary; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/DocumentationRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/DocumentationRule.php deleted file mode 100644 index 8724a9d1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/DocumentationRule.php +++ /dev/null @@ -1,48 +0,0 @@ -deprecationDescription = $deprecationDescription; - } - public function getDeprecationDescription() - { - return $this->deprecationDescription; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setSelector($selector) - { - $this->selector = $selector; - } - public function getSelector() - { - return $this->selector; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/EnableServiceRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/EnableServiceRequest.php deleted file mode 100644 index c92e59ea..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/EnableServiceRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -aliases = $aliases; - } - public function getAliases() - { - return $this->aliases; - } - public function setAllowCors($allowCors) - { - $this->allowCors = $allowCors; - } - public function getAllowCors() - { - return $this->allowCors; - } - public function setFeatures($features) - { - $this->features = $features; - } - public function getFeatures() - { - return $this->features; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setTarget($target) - { - $this->target = $target; - } - public function getTarget() - { - return $this->target; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Enum.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Enum.php deleted file mode 100644 index 7278c126..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Enum.php +++ /dev/null @@ -1,88 +0,0 @@ -enumvalue = $enumvalue; - } - /** - * @return Google_Service_ServiceUser_EnumValue - */ - public function getEnumvalue() - { - return $this->enumvalue; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_ServiceUser_Option - */ - public function setOptions($options) - { - $this->options = $options; - } - /** - * @return Google_Service_ServiceUser_Option - */ - public function getOptions() - { - return $this->options; - } - /** - * @param Google_Service_ServiceUser_SourceContext - */ - public function setSourceContext(Google_Service_ServiceUser_SourceContext $sourceContext) - { - $this->sourceContext = $sourceContext; - } - /** - * @return Google_Service_ServiceUser_SourceContext - */ - public function getSourceContext() - { - return $this->sourceContext; - } - public function setSyntax($syntax) - { - $this->syntax = $syntax; - } - public function getSyntax() - { - return $this->syntax; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/EnumValue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/EnumValue.php deleted file mode 100644 index 0ef396a8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/EnumValue.php +++ /dev/null @@ -1,56 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setNumber($number) - { - $this->number = $number; - } - public function getNumber() - { - return $this->number; - } - /** - * @param Google_Service_ServiceUser_Option - */ - public function setOptions($options) - { - $this->options = $options; - } - /** - * @return Google_Service_ServiceUser_Option - */ - public function getOptions() - { - return $this->options; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Experimental.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Experimental.php deleted file mode 100644 index 56e7f899..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Experimental.php +++ /dev/null @@ -1,37 +0,0 @@ -authorization = $authorization; - } - /** - * @return Google_Service_ServiceUser_AuthorizationConfig - */ - public function getAuthorization() - { - return $this->authorization; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Field.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Field.php deleted file mode 100644 index f5e07629..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Field.php +++ /dev/null @@ -1,119 +0,0 @@ -cardinality = $cardinality; - } - public function getCardinality() - { - return $this->cardinality; - } - public function setDefaultValue($defaultValue) - { - $this->defaultValue = $defaultValue; - } - public function getDefaultValue() - { - return $this->defaultValue; - } - public function setJsonName($jsonName) - { - $this->jsonName = $jsonName; - } - public function getJsonName() - { - return $this->jsonName; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNumber($number) - { - $this->number = $number; - } - public function getNumber() - { - return $this->number; - } - public function setOneofIndex($oneofIndex) - { - $this->oneofIndex = $oneofIndex; - } - public function getOneofIndex() - { - return $this->oneofIndex; - } - /** - * @param Google_Service_ServiceUser_Option - */ - public function setOptions($options) - { - $this->options = $options; - } - /** - * @return Google_Service_ServiceUser_Option - */ - public function getOptions() - { - return $this->options; - } - public function setPacked($packed) - { - $this->packed = $packed; - } - public function getPacked() - { - return $this->packed; - } - public function setTypeUrl($typeUrl) - { - $this->typeUrl = $typeUrl; - } - public function getTypeUrl() - { - return $this->typeUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Http.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Http.php deleted file mode 100644 index d9c069e7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Http.php +++ /dev/null @@ -1,47 +0,0 @@ -fullyDecodeReservedExpansion = $fullyDecodeReservedExpansion; - } - public function getFullyDecodeReservedExpansion() - { - return $this->fullyDecodeReservedExpansion; - } - /** - * @param Google_Service_ServiceUser_HttpRule - */ - public function setRules($rules) - { - $this->rules = $rules; - } - /** - * @return Google_Service_ServiceUser_HttpRule - */ - public function getRules() - { - return $this->rules; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/HttpRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/HttpRule.php deleted file mode 100644 index 8ab47e18..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/HttpRule.php +++ /dev/null @@ -1,126 +0,0 @@ -additionalBindings = $additionalBindings; - } - /** - * @return Google_Service_ServiceUser_HttpRule - */ - public function getAdditionalBindings() - { - return $this->additionalBindings; - } - public function setBody($body) - { - $this->body = $body; - } - public function getBody() - { - return $this->body; - } - /** - * @param Google_Service_ServiceUser_CustomHttpPattern - */ - public function setCustom(Google_Service_ServiceUser_CustomHttpPattern $custom) - { - $this->custom = $custom; - } - /** - * @return Google_Service_ServiceUser_CustomHttpPattern - */ - public function getCustom() - { - return $this->custom; - } - public function setDelete($delete) - { - $this->delete = $delete; - } - public function getDelete() - { - return $this->delete; - } - public function setGet($get) - { - $this->get = $get; - } - public function getGet() - { - return $this->get; - } - public function setPatch($patch) - { - $this->patch = $patch; - } - public function getPatch() - { - return $this->patch; - } - public function setPost($post) - { - $this->post = $post; - } - public function getPost() - { - return $this->post; - } - public function setPut($put) - { - $this->put = $put; - } - public function getPut() - { - return $this->put; - } - public function setResponseBody($responseBody) - { - $this->responseBody = $responseBody; - } - public function getResponseBody() - { - return $this->responseBody; - } - public function setSelector($selector) - { - $this->selector = $selector; - } - public function getSelector() - { - return $this->selector; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/LabelDescriptor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/LabelDescriptor.php deleted file mode 100644 index 3c5fd93c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/LabelDescriptor.php +++ /dev/null @@ -1,48 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setKey($key) - { - $this->key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValueType($valueType) - { - $this->valueType = $valueType; - } - public function getValueType() - { - return $this->valueType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/ListEnabledServicesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/ListEnabledServicesResponse.php deleted file mode 100644 index 2d031204..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/ListEnabledServicesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_ServiceUser_PublishedService - */ - public function setServices($services) - { - $this->services = $services; - } - /** - * @return Google_Service_ServiceUser_PublishedService - */ - public function getServices() - { - return $this->services; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/LogDescriptor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/LogDescriptor.php deleted file mode 100644 index 7fc8335c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/LogDescriptor.php +++ /dev/null @@ -1,65 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - /** - * @param Google_Service_ServiceUser_LabelDescriptor - */ - public function setLabels($labels) - { - $this->labels = $labels; - } - /** - * @return Google_Service_ServiceUser_LabelDescriptor - */ - public function getLabels() - { - return $this->labels; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Logging.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Logging.php deleted file mode 100644 index 0767215d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Logging.php +++ /dev/null @@ -1,54 +0,0 @@ -consumerDestinations = $consumerDestinations; - } - /** - * @return Google_Service_ServiceUser_LoggingDestination - */ - public function getConsumerDestinations() - { - return $this->consumerDestinations; - } - /** - * @param Google_Service_ServiceUser_LoggingDestination - */ - public function setProducerDestinations($producerDestinations) - { - $this->producerDestinations = $producerDestinations; - } - /** - * @return Google_Service_ServiceUser_LoggingDestination - */ - public function getProducerDestinations() - { - return $this->producerDestinations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/LoggingDestination.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/LoggingDestination.php deleted file mode 100644 index 8256f9b4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/LoggingDestination.php +++ /dev/null @@ -1,40 +0,0 @@ -logs = $logs; - } - public function getLogs() - { - return $this->logs; - } - public function setMonitoredResource($monitoredResource) - { - $this->monitoredResource = $monitoredResource; - } - public function getMonitoredResource() - { - return $this->monitoredResource; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Method.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Method.php deleted file mode 100644 index e4b395a9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Method.php +++ /dev/null @@ -1,92 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_ServiceUser_Option - */ - public function setOptions($options) - { - $this->options = $options; - } - /** - * @return Google_Service_ServiceUser_Option - */ - public function getOptions() - { - return $this->options; - } - public function setRequestStreaming($requestStreaming) - { - $this->requestStreaming = $requestStreaming; - } - public function getRequestStreaming() - { - return $this->requestStreaming; - } - public function setRequestTypeUrl($requestTypeUrl) - { - $this->requestTypeUrl = $requestTypeUrl; - } - public function getRequestTypeUrl() - { - return $this->requestTypeUrl; - } - public function setResponseStreaming($responseStreaming) - { - $this->responseStreaming = $responseStreaming; - } - public function getResponseStreaming() - { - return $this->responseStreaming; - } - public function setResponseTypeUrl($responseTypeUrl) - { - $this->responseTypeUrl = $responseTypeUrl; - } - public function getResponseTypeUrl() - { - return $this->responseTypeUrl; - } - public function setSyntax($syntax) - { - $this->syntax = $syntax; - } - public function getSyntax() - { - return $this->syntax; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/MetricDescriptor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/MetricDescriptor.php deleted file mode 100644 index cc9c9022..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/MetricDescriptor.php +++ /dev/null @@ -1,117 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - /** - * @param Google_Service_ServiceUser_LabelDescriptor - */ - public function setLabels($labels) - { - $this->labels = $labels; - } - /** - * @return Google_Service_ServiceUser_LabelDescriptor - */ - public function getLabels() - { - return $this->labels; - } - /** - * @param Google_Service_ServiceUser_MetricDescriptorMetadata - */ - public function setMetadata(Google_Service_ServiceUser_MetricDescriptorMetadata $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_ServiceUser_MetricDescriptorMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - public function setMetricKind($metricKind) - { - $this->metricKind = $metricKind; - } - public function getMetricKind() - { - return $this->metricKind; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setUnit($unit) - { - $this->unit = $unit; - } - public function getUnit() - { - return $this->unit; - } - public function setValueType($valueType) - { - $this->valueType = $valueType; - } - public function getValueType() - { - return $this->valueType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/MetricDescriptorMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/MetricDescriptorMetadata.php deleted file mode 100644 index b61d84e0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/MetricDescriptorMetadata.php +++ /dev/null @@ -1,48 +0,0 @@ -ingestDelay = $ingestDelay; - } - public function getIngestDelay() - { - return $this->ingestDelay; - } - public function setLaunchStage($launchStage) - { - $this->launchStage = $launchStage; - } - public function getLaunchStage() - { - return $this->launchStage; - } - public function setSamplePeriod($samplePeriod) - { - $this->samplePeriod = $samplePeriod; - } - public function getSamplePeriod() - { - return $this->samplePeriod; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/MetricRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/MetricRule.php deleted file mode 100644 index 91301839..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/MetricRule.php +++ /dev/null @@ -1,39 +0,0 @@ -metricCosts = $metricCosts; - } - public function getMetricCosts() - { - return $this->metricCosts; - } - public function setSelector($selector) - { - $this->selector = $selector; - } - public function getSelector() - { - return $this->selector; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Mixin.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Mixin.php deleted file mode 100644 index 28cc42c5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Mixin.php +++ /dev/null @@ -1,39 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setRoot($root) - { - $this->root = $root; - } - public function getRoot() - { - return $this->root; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/MonitoredResourceDescriptor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/MonitoredResourceDescriptor.php deleted file mode 100644 index c8e99c9d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/MonitoredResourceDescriptor.php +++ /dev/null @@ -1,74 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - /** - * @param Google_Service_ServiceUser_LabelDescriptor - */ - public function setLabels($labels) - { - $this->labels = $labels; - } - /** - * @return Google_Service_ServiceUser_LabelDescriptor - */ - public function getLabels() - { - return $this->labels; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Monitoring.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Monitoring.php deleted file mode 100644 index 6b568e3b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Monitoring.php +++ /dev/null @@ -1,54 +0,0 @@ -consumerDestinations = $consumerDestinations; - } - /** - * @return Google_Service_ServiceUser_MonitoringDestination - */ - public function getConsumerDestinations() - { - return $this->consumerDestinations; - } - /** - * @param Google_Service_ServiceUser_MonitoringDestination - */ - public function setProducerDestinations($producerDestinations) - { - $this->producerDestinations = $producerDestinations; - } - /** - * @return Google_Service_ServiceUser_MonitoringDestination - */ - public function getProducerDestinations() - { - return $this->producerDestinations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/MonitoringDestination.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/MonitoringDestination.php deleted file mode 100644 index b061c950..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/MonitoringDestination.php +++ /dev/null @@ -1,40 +0,0 @@ -metrics = $metrics; - } - public function getMetrics() - { - return $this->metrics; - } - public function setMonitoredResource($monitoredResource) - { - $this->monitoredResource = $monitoredResource; - } - public function getMonitoredResource() - { - return $this->monitoredResource; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/OAuthRequirements.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/OAuthRequirements.php deleted file mode 100644 index 190e70c0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/OAuthRequirements.php +++ /dev/null @@ -1,30 +0,0 @@ -canonicalScopes = $canonicalScopes; - } - public function getCanonicalScopes() - { - return $this->canonicalScopes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Operation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Operation.php deleted file mode 100644 index 3998fdc1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Operation.php +++ /dev/null @@ -1,73 +0,0 @@ -done = $done; - } - public function getDone() - { - return $this->done; - } - /** - * @param Google_Service_ServiceUser_Status - */ - public function setError(Google_Service_ServiceUser_Status $error) - { - $this->error = $error; - } - /** - * @return Google_Service_ServiceUser_Status - */ - public function getError() - { - return $this->error; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/OperationMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/OperationMetadata.php deleted file mode 100644 index 3cf5fa82..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/OperationMetadata.php +++ /dev/null @@ -1,65 +0,0 @@ -progressPercentage = $progressPercentage; - } - public function getProgressPercentage() - { - return $this->progressPercentage; - } - public function setResourceNames($resourceNames) - { - $this->resourceNames = $resourceNames; - } - public function getResourceNames() - { - return $this->resourceNames; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } - /** - * @param Google_Service_ServiceUser_Step - */ - public function setSteps($steps) - { - $this->steps = $steps; - } - /** - * @return Google_Service_ServiceUser_Step - */ - public function getSteps() - { - return $this->steps; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Option.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Option.php deleted file mode 100644 index a5833824..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Option.php +++ /dev/null @@ -1,39 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Page.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Page.php deleted file mode 100644 index 0fbd2a4a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Page.php +++ /dev/null @@ -1,56 +0,0 @@ -content = $content; - } - public function getContent() - { - return $this->content; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_ServiceUser_Page - */ - public function setSubpages($subpages) - { - $this->subpages = $subpages; - } - /** - * @return Google_Service_ServiceUser_Page - */ - public function getSubpages() - { - return $this->subpages; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/PublishedService.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/PublishedService.php deleted file mode 100644 index 82fa7018..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/PublishedService.php +++ /dev/null @@ -1,46 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_ServiceUser_Service - */ - public function setService(Google_Service_ServiceUser_Service $service) - { - $this->service = $service; - } - /** - * @return Google_Service_ServiceUser_Service - */ - public function getService() - { - return $this->service; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Quota.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Quota.php deleted file mode 100644 index 3231497f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Quota.php +++ /dev/null @@ -1,54 +0,0 @@ -limits = $limits; - } - /** - * @return Google_Service_ServiceUser_QuotaLimit - */ - public function getLimits() - { - return $this->limits; - } - /** - * @param Google_Service_ServiceUser_MetricRule - */ - public function setMetricRules($metricRules) - { - $this->metricRules = $metricRules; - } - /** - * @return Google_Service_ServiceUser_MetricRule - */ - public function getMetricRules() - { - return $this->metricRules; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/QuotaLimit.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/QuotaLimit.php deleted file mode 100644 index a64df27f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/QuotaLimit.php +++ /dev/null @@ -1,111 +0,0 @@ -defaultLimit = $defaultLimit; - } - public function getDefaultLimit() - { - return $this->defaultLimit; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setDuration($duration) - { - $this->duration = $duration; - } - public function getDuration() - { - return $this->duration; - } - public function setFreeTier($freeTier) - { - $this->freeTier = $freeTier; - } - public function getFreeTier() - { - return $this->freeTier; - } - public function setMaxLimit($maxLimit) - { - $this->maxLimit = $maxLimit; - } - public function getMaxLimit() - { - return $this->maxLimit; - } - public function setMetric($metric) - { - $this->metric = $metric; - } - public function getMetric() - { - return $this->metric; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setUnit($unit) - { - $this->unit = $unit; - } - public function getUnit() - { - return $this->unit; - } - public function setValues($values) - { - $this->values = $values; - } - public function getValues() - { - return $this->values; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Resource/Projects.php deleted file mode 100644 index 48673d1f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Resource/Projects.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $serviceuserService = new Google_Service_ServiceUser(...); - * $projects = $serviceuserService->projects; - * - */ -class Google_Service_ServiceUser_Resource_Projects extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Resource/ProjectsServices.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Resource/ProjectsServices.php deleted file mode 100644 index 20081750..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Resource/ProjectsServices.php +++ /dev/null @@ -1,93 +0,0 @@ - - * $serviceuserService = new Google_Service_ServiceUser(...); - * $services = $serviceuserService->services; - * - */ -class Google_Service_ServiceUser_Resource_ProjectsServices extends Google_Service_Resource -{ - /** - * Disable a service so it can no longer be used with a project. This prevents - * unintended usage that may cause unexpected billing charges or security leaks. - * - * Operation (services.disable) - * - * @param string $name Name of the consumer and the service to disable for that - * consumer. - * - * The Service User implementation accepts the following forms for consumer: - - * "project:" - * - * A valid path would be: - projects/my- - * project/services/servicemanagement.googleapis.com - * @param Google_Service_ServiceUser_DisableServiceRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceUser_Operation - */ - public function disable($name, Google_Service_ServiceUser_DisableServiceRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('disable', array($params), "Google_Service_ServiceUser_Operation"); - } - /** - * Enable a service so it can be used with a project. See [Cloud Auth - * Guide](https://cloud.google.com/docs/authentication) for more information. - * - * Operation (services.enable) - * - * @param string $name Name of the consumer and the service to enable for that - * consumer. - * - * A valid path would be: - projects/my- - * project/services/servicemanagement.googleapis.com - * @param Google_Service_ServiceUser_EnableServiceRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ServiceUser_Operation - */ - public function enable($name, Google_Service_ServiceUser_EnableServiceRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('enable', array($params), "Google_Service_ServiceUser_Operation"); - } - /** - * List enabled services for the specified consumer. - * (services.listProjectsServices) - * - * @param string $parent List enabled services for the specified parent. - * - * An example valid parent would be: - projects/my-project - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Token identifying which result to start with; - * returned by a previous list call. - * @opt_param int pageSize Requested size of the next page of data. - * @return Google_Service_ServiceUser_ListEnabledServicesResponse - */ - public function listProjectsServices($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_ServiceUser_ListEnabledServicesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Resource/Services.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Resource/Services.php deleted file mode 100644 index 0865aeac..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Resource/Services.php +++ /dev/null @@ -1,48 +0,0 @@ - - * $serviceuserService = new Google_Service_ServiceUser(...); - * $services = $serviceuserService->services; - * - */ -class Google_Service_ServiceUser_Resource_Services extends Google_Service_Resource -{ - /** - * Search available services. - * - * When no filter is specified, returns all accessible services. For - * authenticated users, also returns all services the calling user has - * "servicemanagement.services.bind" permission for. (services.search) - * - * @param array $optParams Optional parameters. - * - * @opt_param int pageSize Requested size of the next page of data. - * @opt_param string pageToken Token identifying which result to start with; - * returned by a previous list call. - * @return Google_Service_ServiceUser_SearchServicesResponse - */ - public function search($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('search', array($params), "Google_Service_ServiceUser_SearchServicesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/SearchServicesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/SearchServicesResponse.php deleted file mode 100644 index 5a76f518..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/SearchServicesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_ServiceUser_PublishedService - */ - public function setServices($services) - { - $this->services = $services; - } - /** - * @return Google_Service_ServiceUser_PublishedService - */ - public function getServices() - { - return $this->services; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Service.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Service.php deleted file mode 100644 index 361d9866..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Service.php +++ /dev/null @@ -1,435 +0,0 @@ -apis = $apis; - } - /** - * @return Google_Service_ServiceUser_Api - */ - public function getApis() - { - return $this->apis; - } - /** - * @param Google_Service_ServiceUser_Authentication - */ - public function setAuthentication(Google_Service_ServiceUser_Authentication $authentication) - { - $this->authentication = $authentication; - } - /** - * @return Google_Service_ServiceUser_Authentication - */ - public function getAuthentication() - { - return $this->authentication; - } - /** - * @param Google_Service_ServiceUser_Backend - */ - public function setBackend(Google_Service_ServiceUser_Backend $backend) - { - $this->backend = $backend; - } - /** - * @return Google_Service_ServiceUser_Backend - */ - public function getBackend() - { - return $this->backend; - } - /** - * @param Google_Service_ServiceUser_Billing - */ - public function setBilling(Google_Service_ServiceUser_Billing $billing) - { - $this->billing = $billing; - } - /** - * @return Google_Service_ServiceUser_Billing - */ - public function getBilling() - { - return $this->billing; - } - public function setConfigVersion($configVersion) - { - $this->configVersion = $configVersion; - } - public function getConfigVersion() - { - return $this->configVersion; - } - /** - * @param Google_Service_ServiceUser_Context - */ - public function setContext(Google_Service_ServiceUser_Context $context) - { - $this->context = $context; - } - /** - * @return Google_Service_ServiceUser_Context - */ - public function getContext() - { - return $this->context; - } - /** - * @param Google_Service_ServiceUser_Control - */ - public function setControl(Google_Service_ServiceUser_Control $control) - { - $this->control = $control; - } - /** - * @return Google_Service_ServiceUser_Control - */ - public function getControl() - { - return $this->control; - } - /** - * @param Google_Service_ServiceUser_CustomError - */ - public function setCustomError(Google_Service_ServiceUser_CustomError $customError) - { - $this->customError = $customError; - } - /** - * @return Google_Service_ServiceUser_CustomError - */ - public function getCustomError() - { - return $this->customError; - } - /** - * @param Google_Service_ServiceUser_Documentation - */ - public function setDocumentation(Google_Service_ServiceUser_Documentation $documentation) - { - $this->documentation = $documentation; - } - /** - * @return Google_Service_ServiceUser_Documentation - */ - public function getDocumentation() - { - return $this->documentation; - } - /** - * @param Google_Service_ServiceUser_Endpoint - */ - public function setEndpoints($endpoints) - { - $this->endpoints = $endpoints; - } - /** - * @return Google_Service_ServiceUser_Endpoint - */ - public function getEndpoints() - { - return $this->endpoints; - } - /** - * @param Google_Service_ServiceUser_Enum - */ - public function setEnums($enums) - { - $this->enums = $enums; - } - /** - * @return Google_Service_ServiceUser_Enum - */ - public function getEnums() - { - return $this->enums; - } - /** - * @param Google_Service_ServiceUser_Experimental - */ - public function setExperimental(Google_Service_ServiceUser_Experimental $experimental) - { - $this->experimental = $experimental; - } - /** - * @return Google_Service_ServiceUser_Experimental - */ - public function getExperimental() - { - return $this->experimental; - } - /** - * @param Google_Service_ServiceUser_Http - */ - public function setHttp(Google_Service_ServiceUser_Http $http) - { - $this->http = $http; - } - /** - * @return Google_Service_ServiceUser_Http - */ - public function getHttp() - { - return $this->http; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_ServiceUser_Logging - */ - public function setLogging(Google_Service_ServiceUser_Logging $logging) - { - $this->logging = $logging; - } - /** - * @return Google_Service_ServiceUser_Logging - */ - public function getLogging() - { - return $this->logging; - } - /** - * @param Google_Service_ServiceUser_LogDescriptor - */ - public function setLogs($logs) - { - $this->logs = $logs; - } - /** - * @return Google_Service_ServiceUser_LogDescriptor - */ - public function getLogs() - { - return $this->logs; - } - /** - * @param Google_Service_ServiceUser_MetricDescriptor - */ - public function setMetrics($metrics) - { - $this->metrics = $metrics; - } - /** - * @return Google_Service_ServiceUser_MetricDescriptor - */ - public function getMetrics() - { - return $this->metrics; - } - /** - * @param Google_Service_ServiceUser_MonitoredResourceDescriptor - */ - public function setMonitoredResources($monitoredResources) - { - $this->monitoredResources = $monitoredResources; - } - /** - * @return Google_Service_ServiceUser_MonitoredResourceDescriptor - */ - public function getMonitoredResources() - { - return $this->monitoredResources; - } - /** - * @param Google_Service_ServiceUser_Monitoring - */ - public function setMonitoring(Google_Service_ServiceUser_Monitoring $monitoring) - { - $this->monitoring = $monitoring; - } - /** - * @return Google_Service_ServiceUser_Monitoring - */ - public function getMonitoring() - { - return $this->monitoring; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setProducerProjectId($producerProjectId) - { - $this->producerProjectId = $producerProjectId; - } - public function getProducerProjectId() - { - return $this->producerProjectId; - } - /** - * @param Google_Service_ServiceUser_Quota - */ - public function setQuota(Google_Service_ServiceUser_Quota $quota) - { - $this->quota = $quota; - } - /** - * @return Google_Service_ServiceUser_Quota - */ - public function getQuota() - { - return $this->quota; - } - /** - * @param Google_Service_ServiceUser_SourceInfo - */ - public function setSourceInfo(Google_Service_ServiceUser_SourceInfo $sourceInfo) - { - $this->sourceInfo = $sourceInfo; - } - /** - * @return Google_Service_ServiceUser_SourceInfo - */ - public function getSourceInfo() - { - return $this->sourceInfo; - } - /** - * @param Google_Service_ServiceUser_SystemParameters - */ - public function setSystemParameters(Google_Service_ServiceUser_SystemParameters $systemParameters) - { - $this->systemParameters = $systemParameters; - } - /** - * @return Google_Service_ServiceUser_SystemParameters - */ - public function getSystemParameters() - { - return $this->systemParameters; - } - /** - * @param Google_Service_ServiceUser_Type - */ - public function setSystemTypes($systemTypes) - { - $this->systemTypes = $systemTypes; - } - /** - * @return Google_Service_ServiceUser_Type - */ - public function getSystemTypes() - { - return $this->systemTypes; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - /** - * @param Google_Service_ServiceUser_Type - */ - public function setTypes($types) - { - $this->types = $types; - } - /** - * @return Google_Service_ServiceUser_Type - */ - public function getTypes() - { - return $this->types; - } - /** - * @param Google_Service_ServiceUser_Usage - */ - public function setUsage(Google_Service_ServiceUser_Usage $usage) - { - $this->usage = $usage; - } - /** - * @return Google_Service_ServiceUser_Usage - */ - public function getUsage() - { - return $this->usage; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/SourceContext.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/SourceContext.php deleted file mode 100644 index 7fe6094c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/SourceContext.php +++ /dev/null @@ -1,30 +0,0 @@ -fileName = $fileName; - } - public function getFileName() - { - return $this->fileName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/SourceInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/SourceInfo.php deleted file mode 100644 index 892a537f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/SourceInfo.php +++ /dev/null @@ -1,31 +0,0 @@ -sourceFiles = $sourceFiles; - } - public function getSourceFiles() - { - return $this->sourceFiles; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Status.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Status.php deleted file mode 100644 index 2537a53a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Status.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Step.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Step.php deleted file mode 100644 index 94a4b645..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Step.php +++ /dev/null @@ -1,39 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/SystemParameter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/SystemParameter.php deleted file mode 100644 index 5c1ad17d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/SystemParameter.php +++ /dev/null @@ -1,48 +0,0 @@ -httpHeader = $httpHeader; - } - public function getHttpHeader() - { - return $this->httpHeader; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setUrlQueryParameter($urlQueryParameter) - { - $this->urlQueryParameter = $urlQueryParameter; - } - public function getUrlQueryParameter() - { - return $this->urlQueryParameter; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/SystemParameterRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/SystemParameterRule.php deleted file mode 100644 index 261a2881..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/SystemParameterRule.php +++ /dev/null @@ -1,47 +0,0 @@ -parameters = $parameters; - } - /** - * @return Google_Service_ServiceUser_SystemParameter - */ - public function getParameters() - { - return $this->parameters; - } - public function setSelector($selector) - { - $this->selector = $selector; - } - public function getSelector() - { - return $this->selector; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/SystemParameters.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/SystemParameters.php deleted file mode 100644 index 84cf447f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/SystemParameters.php +++ /dev/null @@ -1,38 +0,0 @@ -rules = $rules; - } - /** - * @return Google_Service_ServiceUser_SystemParameterRule - */ - public function getRules() - { - return $this->rules; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Type.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Type.php deleted file mode 100644 index 258e04e7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Type.php +++ /dev/null @@ -1,97 +0,0 @@ -fields = $fields; - } - /** - * @return Google_Service_ServiceUser_Field - */ - public function getFields() - { - return $this->fields; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOneofs($oneofs) - { - $this->oneofs = $oneofs; - } - public function getOneofs() - { - return $this->oneofs; - } - /** - * @param Google_Service_ServiceUser_Option - */ - public function setOptions($options) - { - $this->options = $options; - } - /** - * @return Google_Service_ServiceUser_Option - */ - public function getOptions() - { - return $this->options; - } - /** - * @param Google_Service_ServiceUser_SourceContext - */ - public function setSourceContext(Google_Service_ServiceUser_SourceContext $sourceContext) - { - $this->sourceContext = $sourceContext; - } - /** - * @return Google_Service_ServiceUser_SourceContext - */ - public function getSourceContext() - { - return $this->sourceContext; - } - public function setSyntax($syntax) - { - $this->syntax = $syntax; - } - public function getSyntax() - { - return $this->syntax; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Usage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Usage.php deleted file mode 100644 index d1c11409..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/Usage.php +++ /dev/null @@ -1,56 +0,0 @@ -producerNotificationChannel = $producerNotificationChannel; - } - public function getProducerNotificationChannel() - { - return $this->producerNotificationChannel; - } - public function setRequirements($requirements) - { - $this->requirements = $requirements; - } - public function getRequirements() - { - return $this->requirements; - } - /** - * @param Google_Service_ServiceUser_UsageRule - */ - public function setRules($rules) - { - $this->rules = $rules; - } - /** - * @return Google_Service_ServiceUser_UsageRule - */ - public function getRules() - { - return $this->rules; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/UsageRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/UsageRule.php deleted file mode 100644 index 90559114..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ServiceUser/UsageRule.php +++ /dev/null @@ -1,48 +0,0 @@ -allowUnregisteredCalls = $allowUnregisteredCalls; - } - public function getAllowUnregisteredCalls() - { - return $this->allowUnregisteredCalls; - } - public function setSelector($selector) - { - $this->selector = $selector; - } - public function getSelector() - { - return $this->selector; - } - public function setSkipServiceControl($skipServiceControl) - { - $this->skipServiceControl = $skipServiceControl; - } - public function getSkipServiceControl() - { - return $this->skipServiceControl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets.php deleted file mode 100644 index 046d4d46..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets.php +++ /dev/null @@ -1,378 +0,0 @@ - - * Reads and writes Google Sheets.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Sheets extends Google_Service -{ - /** See, edit, create, and delete all of your Google Drive files. */ - const DRIVE = - "https://www.googleapis.com/auth/drive"; - /** View and manage Google Drive files and folders that you have opened or created with this app. */ - const DRIVE_FILE = - "https://www.googleapis.com/auth/drive.file"; - /** See and download all your Google Drive files. */ - const DRIVE_READONLY = - "https://www.googleapis.com/auth/drive.readonly"; - /** See, edit, create, and delete your spreadsheets in Google Drive. */ - const SPREADSHEETS = - "https://www.googleapis.com/auth/spreadsheets"; - /** View your Google Spreadsheets. */ - const SPREADSHEETS_READONLY = - "https://www.googleapis.com/auth/spreadsheets.readonly"; - - public $spreadsheets; - public $spreadsheets_developerMetadata; - public $spreadsheets_sheets; - public $spreadsheets_values; - - /** - * Constructs the internal representation of the Sheets service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://sheets.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v4'; - $this->serviceName = 'sheets'; - - $this->spreadsheets = new Google_Service_Sheets_Resource_Spreadsheets( - $this, - $this->serviceName, - 'spreadsheets', - array( - 'methods' => array( - 'batchUpdate' => array( - 'path' => 'v4/spreadsheets/{spreadsheetId}:batchUpdate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'spreadsheetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'create' => array( - 'path' => 'v4/spreadsheets', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'get' => array( - 'path' => 'v4/spreadsheets/{spreadsheetId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'spreadsheetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'ranges' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'includeGridData' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'getByDataFilter' => array( - 'path' => 'v4/spreadsheets/{spreadsheetId}:getByDataFilter', - 'httpMethod' => 'POST', - 'parameters' => array( - 'spreadsheetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->spreadsheets_developerMetadata = new Google_Service_Sheets_Resource_SpreadsheetsDeveloperMetadata( - $this, - $this->serviceName, - 'developerMetadata', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v4/spreadsheets/{spreadsheetId}/developerMetadata/{metadataId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'spreadsheetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'metadataId' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - ), - ),'search' => array( - 'path' => 'v4/spreadsheets/{spreadsheetId}/developerMetadata:search', - 'httpMethod' => 'POST', - 'parameters' => array( - 'spreadsheetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->spreadsheets_sheets = new Google_Service_Sheets_Resource_SpreadsheetsSheets( - $this, - $this->serviceName, - 'sheets', - array( - 'methods' => array( - 'copyTo' => array( - 'path' => 'v4/spreadsheets/{spreadsheetId}/sheets/{sheetId}:copyTo', - 'httpMethod' => 'POST', - 'parameters' => array( - 'spreadsheetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sheetId' => array( - 'location' => 'path', - 'type' => 'integer', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->spreadsheets_values = new Google_Service_Sheets_Resource_SpreadsheetsValues( - $this, - $this->serviceName, - 'values', - array( - 'methods' => array( - 'append' => array( - 'path' => 'v4/spreadsheets/{spreadsheetId}/values/{range}:append', - 'httpMethod' => 'POST', - 'parameters' => array( - 'spreadsheetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'range' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'responseValueRenderOption' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'insertDataOption' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'valueInputOption' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'responseDateTimeRenderOption' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'includeValuesInResponse' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'batchClear' => array( - 'path' => 'v4/spreadsheets/{spreadsheetId}/values:batchClear', - 'httpMethod' => 'POST', - 'parameters' => array( - 'spreadsheetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'batchClearByDataFilter' => array( - 'path' => 'v4/spreadsheets/{spreadsheetId}/values:batchClearByDataFilter', - 'httpMethod' => 'POST', - 'parameters' => array( - 'spreadsheetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'batchGet' => array( - 'path' => 'v4/spreadsheets/{spreadsheetId}/values:batchGet', - 'httpMethod' => 'GET', - 'parameters' => array( - 'spreadsheetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'valueRenderOption' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'dateTimeRenderOption' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ranges' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'majorDimension' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'batchGetByDataFilter' => array( - 'path' => 'v4/spreadsheets/{spreadsheetId}/values:batchGetByDataFilter', - 'httpMethod' => 'POST', - 'parameters' => array( - 'spreadsheetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'batchUpdate' => array( - 'path' => 'v4/spreadsheets/{spreadsheetId}/values:batchUpdate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'spreadsheetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'batchUpdateByDataFilter' => array( - 'path' => 'v4/spreadsheets/{spreadsheetId}/values:batchUpdateByDataFilter', - 'httpMethod' => 'POST', - 'parameters' => array( - 'spreadsheetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'clear' => array( - 'path' => 'v4/spreadsheets/{spreadsheetId}/values/{range}:clear', - 'httpMethod' => 'POST', - 'parameters' => array( - 'spreadsheetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'range' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v4/spreadsheets/{spreadsheetId}/values/{range}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'spreadsheetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'range' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'majorDimension' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'valueRenderOption' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'dateTimeRenderOption' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'v4/spreadsheets/{spreadsheetId}/values/{range}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'spreadsheetId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'range' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'responseValueRenderOption' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'valueInputOption' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'responseDateTimeRenderOption' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'includeValuesInResponse' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AddBandingRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AddBandingRequest.php deleted file mode 100644 index 5274fa9e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AddBandingRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -bandedRange = $bandedRange; - } - /** - * @return Google_Service_Sheets_BandedRange - */ - public function getBandedRange() - { - return $this->bandedRange; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AddBandingResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AddBandingResponse.php deleted file mode 100644 index f7d8f99f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AddBandingResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -bandedRange = $bandedRange; - } - /** - * @return Google_Service_Sheets_BandedRange - */ - public function getBandedRange() - { - return $this->bandedRange; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AddChartRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AddChartRequest.php deleted file mode 100644 index 83c6157c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AddChartRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -chart = $chart; - } - /** - * @return Google_Service_Sheets_EmbeddedChart - */ - public function getChart() - { - return $this->chart; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AddChartResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AddChartResponse.php deleted file mode 100644 index d902f636..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AddChartResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -chart = $chart; - } - /** - * @return Google_Service_Sheets_EmbeddedChart - */ - public function getChart() - { - return $this->chart; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AddConditionalFormatRuleRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AddConditionalFormatRuleRequest.php deleted file mode 100644 index 3472edcb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AddConditionalFormatRuleRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -index = $index; - } - public function getIndex() - { - return $this->index; - } - /** - * @param Google_Service_Sheets_ConditionalFormatRule - */ - public function setRule(Google_Service_Sheets_ConditionalFormatRule $rule) - { - $this->rule = $rule; - } - /** - * @return Google_Service_Sheets_ConditionalFormatRule - */ - public function getRule() - { - return $this->rule; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AddDimensionGroupRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AddDimensionGroupRequest.php deleted file mode 100644 index 45f5c30a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AddDimensionGroupRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -range = $range; - } - /** - * @return Google_Service_Sheets_DimensionRange - */ - public function getRange() - { - return $this->range; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AddDimensionGroupResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AddDimensionGroupResponse.php deleted file mode 100644 index 5c9c6f30..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AddDimensionGroupResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -dimensionGroups = $dimensionGroups; - } - /** - * @return Google_Service_Sheets_DimensionGroup - */ - public function getDimensionGroups() - { - return $this->dimensionGroups; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AddFilterViewRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AddFilterViewRequest.php deleted file mode 100644 index 560aba16..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AddFilterViewRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -filter = $filter; - } - /** - * @return Google_Service_Sheets_FilterView - */ - public function getFilter() - { - return $this->filter; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AddFilterViewResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AddFilterViewResponse.php deleted file mode 100644 index 43ba7fd4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AddFilterViewResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -filter = $filter; - } - /** - * @return Google_Service_Sheets_FilterView - */ - public function getFilter() - { - return $this->filter; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AddNamedRangeRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AddNamedRangeRequest.php deleted file mode 100644 index ef9ffdc6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AddNamedRangeRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -namedRange = $namedRange; - } - /** - * @return Google_Service_Sheets_NamedRange - */ - public function getNamedRange() - { - return $this->namedRange; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AddNamedRangeResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AddNamedRangeResponse.php deleted file mode 100644 index 017aa8db..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AddNamedRangeResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -namedRange = $namedRange; - } - /** - * @return Google_Service_Sheets_NamedRange - */ - public function getNamedRange() - { - return $this->namedRange; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AddProtectedRangeRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AddProtectedRangeRequest.php deleted file mode 100644 index b921de62..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AddProtectedRangeRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -protectedRange = $protectedRange; - } - /** - * @return Google_Service_Sheets_ProtectedRange - */ - public function getProtectedRange() - { - return $this->protectedRange; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AddProtectedRangeResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AddProtectedRangeResponse.php deleted file mode 100644 index 5d8f2843..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AddProtectedRangeResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -protectedRange = $protectedRange; - } - /** - * @return Google_Service_Sheets_ProtectedRange - */ - public function getProtectedRange() - { - return $this->protectedRange; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AddSheetRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AddSheetRequest.php deleted file mode 100644 index 4ec685c7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AddSheetRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -properties = $properties; - } - /** - * @return Google_Service_Sheets_SheetProperties - */ - public function getProperties() - { - return $this->properties; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AddSheetResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AddSheetResponse.php deleted file mode 100644 index 173b87ca..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AddSheetResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -properties = $properties; - } - /** - * @return Google_Service_Sheets_SheetProperties - */ - public function getProperties() - { - return $this->properties; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AddSlicerRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AddSlicerRequest.php deleted file mode 100644 index cdf8edc7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AddSlicerRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -slicer = $slicer; - } - /** - * @return Google_Service_Sheets_Slicer - */ - public function getSlicer() - { - return $this->slicer; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AddSlicerResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AddSlicerResponse.php deleted file mode 100644 index d1854733..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AddSlicerResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -slicer = $slicer; - } - /** - * @return Google_Service_Sheets_Slicer - */ - public function getSlicer() - { - return $this->slicer; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AppendCellsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AppendCellsRequest.php deleted file mode 100644 index 796cf168..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AppendCellsRequest.php +++ /dev/null @@ -1,56 +0,0 @@ -fields = $fields; - } - public function getFields() - { - return $this->fields; - } - /** - * @param Google_Service_Sheets_RowData - */ - public function setRows($rows) - { - $this->rows = $rows; - } - /** - * @return Google_Service_Sheets_RowData - */ - public function getRows() - { - return $this->rows; - } - public function setSheetId($sheetId) - { - $this->sheetId = $sheetId; - } - public function getSheetId() - { - return $this->sheetId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AppendDimensionRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AppendDimensionRequest.php deleted file mode 100644 index 84c1f96b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AppendDimensionRequest.php +++ /dev/null @@ -1,48 +0,0 @@ -dimension = $dimension; - } - public function getDimension() - { - return $this->dimension; - } - public function setLength($length) - { - $this->length = $length; - } - public function getLength() - { - return $this->length; - } - public function setSheetId($sheetId) - { - $this->sheetId = $sheetId; - } - public function getSheetId() - { - return $this->sheetId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AppendValuesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AppendValuesResponse.php deleted file mode 100644 index 5616ea14..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AppendValuesResponse.php +++ /dev/null @@ -1,55 +0,0 @@ -spreadsheetId = $spreadsheetId; - } - public function getSpreadsheetId() - { - return $this->spreadsheetId; - } - public function setTableRange($tableRange) - { - $this->tableRange = $tableRange; - } - public function getTableRange() - { - return $this->tableRange; - } - /** - * @param Google_Service_Sheets_UpdateValuesResponse - */ - public function setUpdates(Google_Service_Sheets_UpdateValuesResponse $updates) - { - $this->updates = $updates; - } - /** - * @return Google_Service_Sheets_UpdateValuesResponse - */ - public function getUpdates() - { - return $this->updates; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AutoFillRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AutoFillRequest.php deleted file mode 100644 index 27a1183b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AutoFillRequest.php +++ /dev/null @@ -1,62 +0,0 @@ -range = $range; - } - /** - * @return Google_Service_Sheets_GridRange - */ - public function getRange() - { - return $this->range; - } - /** - * @param Google_Service_Sheets_SourceAndDestination - */ - public function setSourceAndDestination(Google_Service_Sheets_SourceAndDestination $sourceAndDestination) - { - $this->sourceAndDestination = $sourceAndDestination; - } - /** - * @return Google_Service_Sheets_SourceAndDestination - */ - public function getSourceAndDestination() - { - return $this->sourceAndDestination; - } - public function setUseAlternateSeries($useAlternateSeries) - { - $this->useAlternateSeries = $useAlternateSeries; - } - public function getUseAlternateSeries() - { - return $this->useAlternateSeries; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AutoResizeDimensionsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AutoResizeDimensionsRequest.php deleted file mode 100644 index 6404c8de..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/AutoResizeDimensionsRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -dimensions = $dimensions; - } - /** - * @return Google_Service_Sheets_DimensionRange - */ - public function getDimensions() - { - return $this->dimensions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BandedRange.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BandedRange.php deleted file mode 100644 index 00fd81ac..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BandedRange.php +++ /dev/null @@ -1,78 +0,0 @@ -bandedRangeId = $bandedRangeId; - } - public function getBandedRangeId() - { - return $this->bandedRangeId; - } - /** - * @param Google_Service_Sheets_BandingProperties - */ - public function setColumnProperties(Google_Service_Sheets_BandingProperties $columnProperties) - { - $this->columnProperties = $columnProperties; - } - /** - * @return Google_Service_Sheets_BandingProperties - */ - public function getColumnProperties() - { - return $this->columnProperties; - } - /** - * @param Google_Service_Sheets_GridRange - */ - public function setRange(Google_Service_Sheets_GridRange $range) - { - $this->range = $range; - } - /** - * @return Google_Service_Sheets_GridRange - */ - public function getRange() - { - return $this->range; - } - /** - * @param Google_Service_Sheets_BandingProperties - */ - public function setRowProperties(Google_Service_Sheets_BandingProperties $rowProperties) - { - $this->rowProperties = $rowProperties; - } - /** - * @return Google_Service_Sheets_BandingProperties - */ - public function getRowProperties() - { - return $this->rowProperties; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BandingProperties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BandingProperties.php deleted file mode 100644 index 34fd7751..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BandingProperties.php +++ /dev/null @@ -1,149 +0,0 @@ -firstBandColor = $firstBandColor; - } - /** - * @return Google_Service_Sheets_Color - */ - public function getFirstBandColor() - { - return $this->firstBandColor; - } - /** - * @param Google_Service_Sheets_ColorStyle - */ - public function setFirstBandColorStyle(Google_Service_Sheets_ColorStyle $firstBandColorStyle) - { - $this->firstBandColorStyle = $firstBandColorStyle; - } - /** - * @return Google_Service_Sheets_ColorStyle - */ - public function getFirstBandColorStyle() - { - return $this->firstBandColorStyle; - } - /** - * @param Google_Service_Sheets_Color - */ - public function setFooterColor(Google_Service_Sheets_Color $footerColor) - { - $this->footerColor = $footerColor; - } - /** - * @return Google_Service_Sheets_Color - */ - public function getFooterColor() - { - return $this->footerColor; - } - /** - * @param Google_Service_Sheets_ColorStyle - */ - public function setFooterColorStyle(Google_Service_Sheets_ColorStyle $footerColorStyle) - { - $this->footerColorStyle = $footerColorStyle; - } - /** - * @return Google_Service_Sheets_ColorStyle - */ - public function getFooterColorStyle() - { - return $this->footerColorStyle; - } - /** - * @param Google_Service_Sheets_Color - */ - public function setHeaderColor(Google_Service_Sheets_Color $headerColor) - { - $this->headerColor = $headerColor; - } - /** - * @return Google_Service_Sheets_Color - */ - public function getHeaderColor() - { - return $this->headerColor; - } - /** - * @param Google_Service_Sheets_ColorStyle - */ - public function setHeaderColorStyle(Google_Service_Sheets_ColorStyle $headerColorStyle) - { - $this->headerColorStyle = $headerColorStyle; - } - /** - * @return Google_Service_Sheets_ColorStyle - */ - public function getHeaderColorStyle() - { - return $this->headerColorStyle; - } - /** - * @param Google_Service_Sheets_Color - */ - public function setSecondBandColor(Google_Service_Sheets_Color $secondBandColor) - { - $this->secondBandColor = $secondBandColor; - } - /** - * @return Google_Service_Sheets_Color - */ - public function getSecondBandColor() - { - return $this->secondBandColor; - } - /** - * @param Google_Service_Sheets_ColorStyle - */ - public function setSecondBandColorStyle(Google_Service_Sheets_ColorStyle $secondBandColorStyle) - { - $this->secondBandColorStyle = $secondBandColorStyle; - } - /** - * @return Google_Service_Sheets_ColorStyle - */ - public function getSecondBandColorStyle() - { - return $this->secondBandColorStyle; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BaselineValueFormat.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BaselineValueFormat.php deleted file mode 100644 index 8e0b11c0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BaselineValueFormat.php +++ /dev/null @@ -1,135 +0,0 @@ -comparisonType = $comparisonType; - } - public function getComparisonType() - { - return $this->comparisonType; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - /** - * @param Google_Service_Sheets_Color - */ - public function setNegativeColor(Google_Service_Sheets_Color $negativeColor) - { - $this->negativeColor = $negativeColor; - } - /** - * @return Google_Service_Sheets_Color - */ - public function getNegativeColor() - { - return $this->negativeColor; - } - /** - * @param Google_Service_Sheets_ColorStyle - */ - public function setNegativeColorStyle(Google_Service_Sheets_ColorStyle $negativeColorStyle) - { - $this->negativeColorStyle = $negativeColorStyle; - } - /** - * @return Google_Service_Sheets_ColorStyle - */ - public function getNegativeColorStyle() - { - return $this->negativeColorStyle; - } - /** - * @param Google_Service_Sheets_TextPosition - */ - public function setPosition(Google_Service_Sheets_TextPosition $position) - { - $this->position = $position; - } - /** - * @return Google_Service_Sheets_TextPosition - */ - public function getPosition() - { - return $this->position; - } - /** - * @param Google_Service_Sheets_Color - */ - public function setPositiveColor(Google_Service_Sheets_Color $positiveColor) - { - $this->positiveColor = $positiveColor; - } - /** - * @return Google_Service_Sheets_Color - */ - public function getPositiveColor() - { - return $this->positiveColor; - } - /** - * @param Google_Service_Sheets_ColorStyle - */ - public function setPositiveColorStyle(Google_Service_Sheets_ColorStyle $positiveColorStyle) - { - $this->positiveColorStyle = $positiveColorStyle; - } - /** - * @return Google_Service_Sheets_ColorStyle - */ - public function getPositiveColorStyle() - { - return $this->positiveColorStyle; - } - /** - * @param Google_Service_Sheets_TextFormat - */ - public function setTextFormat(Google_Service_Sheets_TextFormat $textFormat) - { - $this->textFormat = $textFormat; - } - /** - * @return Google_Service_Sheets_TextFormat - */ - public function getTextFormat() - { - return $this->textFormat; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BasicChartAxis.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BasicChartAxis.php deleted file mode 100644 index 4fc2c1b6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BasicChartAxis.php +++ /dev/null @@ -1,87 +0,0 @@ -format = $format; - } - /** - * @return Google_Service_Sheets_TextFormat - */ - public function getFormat() - { - return $this->format; - } - public function setPosition($position) - { - $this->position = $position; - } - public function getPosition() - { - return $this->position; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - /** - * @param Google_Service_Sheets_TextPosition - */ - public function setTitleTextPosition(Google_Service_Sheets_TextPosition $titleTextPosition) - { - $this->titleTextPosition = $titleTextPosition; - } - /** - * @return Google_Service_Sheets_TextPosition - */ - public function getTitleTextPosition() - { - return $this->titleTextPosition; - } - /** - * @param Google_Service_Sheets_ChartAxisViewWindowOptions - */ - public function setViewWindowOptions(Google_Service_Sheets_ChartAxisViewWindowOptions $viewWindowOptions) - { - $this->viewWindowOptions = $viewWindowOptions; - } - /** - * @return Google_Service_Sheets_ChartAxisViewWindowOptions - */ - public function getViewWindowOptions() - { - return $this->viewWindowOptions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BasicChartDomain.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BasicChartDomain.php deleted file mode 100644 index 53166f3c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BasicChartDomain.php +++ /dev/null @@ -1,46 +0,0 @@ -domain = $domain; - } - /** - * @return Google_Service_Sheets_ChartData - */ - public function getDomain() - { - return $this->domain; - } - public function setReversed($reversed) - { - $this->reversed = $reversed; - } - public function getReversed() - { - return $this->reversed; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BasicChartSeries.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BasicChartSeries.php deleted file mode 100644 index 64061656..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BasicChartSeries.php +++ /dev/null @@ -1,103 +0,0 @@ -color = $color; - } - /** - * @return Google_Service_Sheets_Color - */ - public function getColor() - { - return $this->color; - } - /** - * @param Google_Service_Sheets_ColorStyle - */ - public function setColorStyle(Google_Service_Sheets_ColorStyle $colorStyle) - { - $this->colorStyle = $colorStyle; - } - /** - * @return Google_Service_Sheets_ColorStyle - */ - public function getColorStyle() - { - return $this->colorStyle; - } - /** - * @param Google_Service_Sheets_LineStyle - */ - public function setLineStyle(Google_Service_Sheets_LineStyle $lineStyle) - { - $this->lineStyle = $lineStyle; - } - /** - * @return Google_Service_Sheets_LineStyle - */ - public function getLineStyle() - { - return $this->lineStyle; - } - /** - * @param Google_Service_Sheets_ChartData - */ - public function setSeries(Google_Service_Sheets_ChartData $series) - { - $this->series = $series; - } - /** - * @return Google_Service_Sheets_ChartData - */ - public function getSeries() - { - return $this->series; - } - public function setTargetAxis($targetAxis) - { - $this->targetAxis = $targetAxis; - } - public function getTargetAxis() - { - return $this->targetAxis; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BasicChartSpec.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BasicChartSpec.php deleted file mode 100644 index 952e236f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BasicChartSpec.php +++ /dev/null @@ -1,142 +0,0 @@ -axis = $axis; - } - /** - * @return Google_Service_Sheets_BasicChartAxis - */ - public function getAxis() - { - return $this->axis; - } - public function setChartType($chartType) - { - $this->chartType = $chartType; - } - public function getChartType() - { - return $this->chartType; - } - public function setCompareMode($compareMode) - { - $this->compareMode = $compareMode; - } - public function getCompareMode() - { - return $this->compareMode; - } - /** - * @param Google_Service_Sheets_BasicChartDomain - */ - public function setDomains($domains) - { - $this->domains = $domains; - } - /** - * @return Google_Service_Sheets_BasicChartDomain - */ - public function getDomains() - { - return $this->domains; - } - public function setHeaderCount($headerCount) - { - $this->headerCount = $headerCount; - } - public function getHeaderCount() - { - return $this->headerCount; - } - public function setInterpolateNulls($interpolateNulls) - { - $this->interpolateNulls = $interpolateNulls; - } - public function getInterpolateNulls() - { - return $this->interpolateNulls; - } - public function setLegendPosition($legendPosition) - { - $this->legendPosition = $legendPosition; - } - public function getLegendPosition() - { - return $this->legendPosition; - } - public function setLineSmoothing($lineSmoothing) - { - $this->lineSmoothing = $lineSmoothing; - } - public function getLineSmoothing() - { - return $this->lineSmoothing; - } - /** - * @param Google_Service_Sheets_BasicChartSeries - */ - public function setSeries($series) - { - $this->series = $series; - } - /** - * @return Google_Service_Sheets_BasicChartSeries - */ - public function getSeries() - { - return $this->series; - } - public function setStackedType($stackedType) - { - $this->stackedType = $stackedType; - } - public function getStackedType() - { - return $this->stackedType; - } - public function setThreeDimensional($threeDimensional) - { - $this->threeDimensional = $threeDimensional; - } - public function getThreeDimensional() - { - return $this->threeDimensional; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BasicFilter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BasicFilter.php deleted file mode 100644 index 53e83c99..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BasicFilter.php +++ /dev/null @@ -1,70 +0,0 @@ -criteria = $criteria; - } - /** - * @return Google_Service_Sheets_FilterCriteria - */ - public function getCriteria() - { - return $this->criteria; - } - /** - * @param Google_Service_Sheets_GridRange - */ - public function setRange(Google_Service_Sheets_GridRange $range) - { - $this->range = $range; - } - /** - * @return Google_Service_Sheets_GridRange - */ - public function getRange() - { - return $this->range; - } - /** - * @param Google_Service_Sheets_SortSpec - */ - public function setSortSpecs($sortSpecs) - { - $this->sortSpecs = $sortSpecs; - } - /** - * @return Google_Service_Sheets_SortSpec - */ - public function getSortSpecs() - { - return $this->sortSpecs; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BatchClearValuesByDataFilterRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BatchClearValuesByDataFilterRequest.php deleted file mode 100644 index 9aa5c8ea..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BatchClearValuesByDataFilterRequest.php +++ /dev/null @@ -1,38 +0,0 @@ -dataFilters = $dataFilters; - } - /** - * @return Google_Service_Sheets_DataFilter - */ - public function getDataFilters() - { - return $this->dataFilters; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BatchClearValuesByDataFilterResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BatchClearValuesByDataFilterResponse.php deleted file mode 100644 index aabe6c42..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BatchClearValuesByDataFilterResponse.php +++ /dev/null @@ -1,40 +0,0 @@ -clearedRanges = $clearedRanges; - } - public function getClearedRanges() - { - return $this->clearedRanges; - } - public function setSpreadsheetId($spreadsheetId) - { - $this->spreadsheetId = $spreadsheetId; - } - public function getSpreadsheetId() - { - return $this->spreadsheetId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BatchClearValuesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BatchClearValuesRequest.php deleted file mode 100644 index 121707c2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BatchClearValuesRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -ranges = $ranges; - } - public function getRanges() - { - return $this->ranges; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BatchClearValuesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BatchClearValuesResponse.php deleted file mode 100644 index 8f262ce0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BatchClearValuesResponse.php +++ /dev/null @@ -1,40 +0,0 @@ -clearedRanges = $clearedRanges; - } - public function getClearedRanges() - { - return $this->clearedRanges; - } - public function setSpreadsheetId($spreadsheetId) - { - $this->spreadsheetId = $spreadsheetId; - } - public function getSpreadsheetId() - { - return $this->spreadsheetId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BatchGetValuesByDataFilterRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BatchGetValuesByDataFilterRequest.php deleted file mode 100644 index 3d8cb1f2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BatchGetValuesByDataFilterRequest.php +++ /dev/null @@ -1,65 +0,0 @@ -dataFilters = $dataFilters; - } - /** - * @return Google_Service_Sheets_DataFilter - */ - public function getDataFilters() - { - return $this->dataFilters; - } - public function setDateTimeRenderOption($dateTimeRenderOption) - { - $this->dateTimeRenderOption = $dateTimeRenderOption; - } - public function getDateTimeRenderOption() - { - return $this->dateTimeRenderOption; - } - public function setMajorDimension($majorDimension) - { - $this->majorDimension = $majorDimension; - } - public function getMajorDimension() - { - return $this->majorDimension; - } - public function setValueRenderOption($valueRenderOption) - { - $this->valueRenderOption = $valueRenderOption; - } - public function getValueRenderOption() - { - return $this->valueRenderOption; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BatchGetValuesByDataFilterResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BatchGetValuesByDataFilterResponse.php deleted file mode 100644 index 5086f300..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BatchGetValuesByDataFilterResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -spreadsheetId = $spreadsheetId; - } - public function getSpreadsheetId() - { - return $this->spreadsheetId; - } - /** - * @param Google_Service_Sheets_MatchedValueRange - */ - public function setValueRanges($valueRanges) - { - $this->valueRanges = $valueRanges; - } - /** - * @return Google_Service_Sheets_MatchedValueRange - */ - public function getValueRanges() - { - return $this->valueRanges; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BatchGetValuesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BatchGetValuesResponse.php deleted file mode 100644 index 3553fd2d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BatchGetValuesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -spreadsheetId = $spreadsheetId; - } - public function getSpreadsheetId() - { - return $this->spreadsheetId; - } - /** - * @param Google_Service_Sheets_ValueRange - */ - public function setValueRanges($valueRanges) - { - $this->valueRanges = $valueRanges; - } - /** - * @return Google_Service_Sheets_ValueRange - */ - public function getValueRanges() - { - return $this->valueRanges; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BatchUpdateSpreadsheetRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BatchUpdateSpreadsheetRequest.php deleted file mode 100644 index 75eb1b5a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BatchUpdateSpreadsheetRequest.php +++ /dev/null @@ -1,65 +0,0 @@ -includeSpreadsheetInResponse = $includeSpreadsheetInResponse; - } - public function getIncludeSpreadsheetInResponse() - { - return $this->includeSpreadsheetInResponse; - } - /** - * @param Google_Service_Sheets_Request - */ - public function setRequests($requests) - { - $this->requests = $requests; - } - /** - * @return Google_Service_Sheets_Request - */ - public function getRequests() - { - return $this->requests; - } - public function setResponseIncludeGridData($responseIncludeGridData) - { - $this->responseIncludeGridData = $responseIncludeGridData; - } - public function getResponseIncludeGridData() - { - return $this->responseIncludeGridData; - } - public function setResponseRanges($responseRanges) - { - $this->responseRanges = $responseRanges; - } - public function getResponseRanges() - { - return $this->responseRanges; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BatchUpdateSpreadsheetResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BatchUpdateSpreadsheetResponse.php deleted file mode 100644 index 58097332..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BatchUpdateSpreadsheetResponse.php +++ /dev/null @@ -1,63 +0,0 @@ -replies = $replies; - } - /** - * @return Google_Service_Sheets_Response - */ - public function getReplies() - { - return $this->replies; - } - public function setSpreadsheetId($spreadsheetId) - { - $this->spreadsheetId = $spreadsheetId; - } - public function getSpreadsheetId() - { - return $this->spreadsheetId; - } - /** - * @param Google_Service_Sheets_Spreadsheet - */ - public function setUpdatedSpreadsheet(Google_Service_Sheets_Spreadsheet $updatedSpreadsheet) - { - $this->updatedSpreadsheet = $updatedSpreadsheet; - } - /** - * @return Google_Service_Sheets_Spreadsheet - */ - public function getUpdatedSpreadsheet() - { - return $this->updatedSpreadsheet; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BatchUpdateValuesByDataFilterRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BatchUpdateValuesByDataFilterRequest.php deleted file mode 100644 index a364414f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BatchUpdateValuesByDataFilterRequest.php +++ /dev/null @@ -1,74 +0,0 @@ -data = $data; - } - /** - * @return Google_Service_Sheets_DataFilterValueRange - */ - public function getData() - { - return $this->data; - } - public function setIncludeValuesInResponse($includeValuesInResponse) - { - $this->includeValuesInResponse = $includeValuesInResponse; - } - public function getIncludeValuesInResponse() - { - return $this->includeValuesInResponse; - } - public function setResponseDateTimeRenderOption($responseDateTimeRenderOption) - { - $this->responseDateTimeRenderOption = $responseDateTimeRenderOption; - } - public function getResponseDateTimeRenderOption() - { - return $this->responseDateTimeRenderOption; - } - public function setResponseValueRenderOption($responseValueRenderOption) - { - $this->responseValueRenderOption = $responseValueRenderOption; - } - public function getResponseValueRenderOption() - { - return $this->responseValueRenderOption; - } - public function setValueInputOption($valueInputOption) - { - $this->valueInputOption = $valueInputOption; - } - public function getValueInputOption() - { - return $this->valueInputOption; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BatchUpdateValuesByDataFilterResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BatchUpdateValuesByDataFilterResponse.php deleted file mode 100644 index f9e30841..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BatchUpdateValuesByDataFilterResponse.php +++ /dev/null @@ -1,83 +0,0 @@ -responses = $responses; - } - /** - * @return Google_Service_Sheets_UpdateValuesByDataFilterResponse - */ - public function getResponses() - { - return $this->responses; - } - public function setSpreadsheetId($spreadsheetId) - { - $this->spreadsheetId = $spreadsheetId; - } - public function getSpreadsheetId() - { - return $this->spreadsheetId; - } - public function setTotalUpdatedCells($totalUpdatedCells) - { - $this->totalUpdatedCells = $totalUpdatedCells; - } - public function getTotalUpdatedCells() - { - return $this->totalUpdatedCells; - } - public function setTotalUpdatedColumns($totalUpdatedColumns) - { - $this->totalUpdatedColumns = $totalUpdatedColumns; - } - public function getTotalUpdatedColumns() - { - return $this->totalUpdatedColumns; - } - public function setTotalUpdatedRows($totalUpdatedRows) - { - $this->totalUpdatedRows = $totalUpdatedRows; - } - public function getTotalUpdatedRows() - { - return $this->totalUpdatedRows; - } - public function setTotalUpdatedSheets($totalUpdatedSheets) - { - $this->totalUpdatedSheets = $totalUpdatedSheets; - } - public function getTotalUpdatedSheets() - { - return $this->totalUpdatedSheets; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BatchUpdateValuesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BatchUpdateValuesRequest.php deleted file mode 100644 index 29bf46d4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BatchUpdateValuesRequest.php +++ /dev/null @@ -1,74 +0,0 @@ -data = $data; - } - /** - * @return Google_Service_Sheets_ValueRange - */ - public function getData() - { - return $this->data; - } - public function setIncludeValuesInResponse($includeValuesInResponse) - { - $this->includeValuesInResponse = $includeValuesInResponse; - } - public function getIncludeValuesInResponse() - { - return $this->includeValuesInResponse; - } - public function setResponseDateTimeRenderOption($responseDateTimeRenderOption) - { - $this->responseDateTimeRenderOption = $responseDateTimeRenderOption; - } - public function getResponseDateTimeRenderOption() - { - return $this->responseDateTimeRenderOption; - } - public function setResponseValueRenderOption($responseValueRenderOption) - { - $this->responseValueRenderOption = $responseValueRenderOption; - } - public function getResponseValueRenderOption() - { - return $this->responseValueRenderOption; - } - public function setValueInputOption($valueInputOption) - { - $this->valueInputOption = $valueInputOption; - } - public function getValueInputOption() - { - return $this->valueInputOption; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BatchUpdateValuesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BatchUpdateValuesResponse.php deleted file mode 100644 index 5685a437..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BatchUpdateValuesResponse.php +++ /dev/null @@ -1,83 +0,0 @@ -responses = $responses; - } - /** - * @return Google_Service_Sheets_UpdateValuesResponse - */ - public function getResponses() - { - return $this->responses; - } - public function setSpreadsheetId($spreadsheetId) - { - $this->spreadsheetId = $spreadsheetId; - } - public function getSpreadsheetId() - { - return $this->spreadsheetId; - } - public function setTotalUpdatedCells($totalUpdatedCells) - { - $this->totalUpdatedCells = $totalUpdatedCells; - } - public function getTotalUpdatedCells() - { - return $this->totalUpdatedCells; - } - public function setTotalUpdatedColumns($totalUpdatedColumns) - { - $this->totalUpdatedColumns = $totalUpdatedColumns; - } - public function getTotalUpdatedColumns() - { - return $this->totalUpdatedColumns; - } - public function setTotalUpdatedRows($totalUpdatedRows) - { - $this->totalUpdatedRows = $totalUpdatedRows; - } - public function getTotalUpdatedRows() - { - return $this->totalUpdatedRows; - } - public function setTotalUpdatedSheets($totalUpdatedSheets) - { - $this->totalUpdatedSheets = $totalUpdatedSheets; - } - public function getTotalUpdatedSheets() - { - return $this->totalUpdatedSheets; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BooleanCondition.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BooleanCondition.php deleted file mode 100644 index ac17d22f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BooleanCondition.php +++ /dev/null @@ -1,47 +0,0 @@ -type = $type; - } - public function getType() - { - return $this->type; - } - /** - * @param Google_Service_Sheets_ConditionValue - */ - public function setValues($values) - { - $this->values = $values; - } - /** - * @return Google_Service_Sheets_ConditionValue - */ - public function getValues() - { - return $this->values; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BooleanRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BooleanRule.php deleted file mode 100644 index eb849dd4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BooleanRule.php +++ /dev/null @@ -1,53 +0,0 @@ -condition = $condition; - } - /** - * @return Google_Service_Sheets_BooleanCondition - */ - public function getCondition() - { - return $this->condition; - } - /** - * @param Google_Service_Sheets_CellFormat - */ - public function setFormat(Google_Service_Sheets_CellFormat $format) - { - $this->format = $format; - } - /** - * @return Google_Service_Sheets_CellFormat - */ - public function getFormat() - { - return $this->format; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/Border.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/Border.php deleted file mode 100644 index ecc39f12..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/Border.php +++ /dev/null @@ -1,71 +0,0 @@ -color = $color; - } - /** - * @return Google_Service_Sheets_Color - */ - public function getColor() - { - return $this->color; - } - /** - * @param Google_Service_Sheets_ColorStyle - */ - public function setColorStyle(Google_Service_Sheets_ColorStyle $colorStyle) - { - $this->colorStyle = $colorStyle; - } - /** - * @return Google_Service_Sheets_ColorStyle - */ - public function getColorStyle() - { - return $this->colorStyle; - } - public function setStyle($style) - { - $this->style = $style; - } - public function getStyle() - { - return $this->style; - } - public function setWidth($width) - { - $this->width = $width; - } - public function getWidth() - { - return $this->width; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/Borders.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/Borders.php deleted file mode 100644 index 9ebe2423..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/Borders.php +++ /dev/null @@ -1,85 +0,0 @@ -bottom = $bottom; - } - /** - * @return Google_Service_Sheets_Border - */ - public function getBottom() - { - return $this->bottom; - } - /** - * @param Google_Service_Sheets_Border - */ - public function setLeft(Google_Service_Sheets_Border $left) - { - $this->left = $left; - } - /** - * @return Google_Service_Sheets_Border - */ - public function getLeft() - { - return $this->left; - } - /** - * @param Google_Service_Sheets_Border - */ - public function setRight(Google_Service_Sheets_Border $right) - { - $this->right = $right; - } - /** - * @return Google_Service_Sheets_Border - */ - public function getRight() - { - return $this->right; - } - /** - * @param Google_Service_Sheets_Border - */ - public function setTop(Google_Service_Sheets_Border $top) - { - $this->top = $top; - } - /** - * @return Google_Service_Sheets_Border - */ - public function getTop() - { - return $this->top; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BubbleChartSpec.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BubbleChartSpec.php deleted file mode 100644 index bc4e052a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/BubbleChartSpec.php +++ /dev/null @@ -1,185 +0,0 @@ -bubbleBorderColor = $bubbleBorderColor; - } - /** - * @return Google_Service_Sheets_Color - */ - public function getBubbleBorderColor() - { - return $this->bubbleBorderColor; - } - /** - * @param Google_Service_Sheets_ColorStyle - */ - public function setBubbleBorderColorStyle(Google_Service_Sheets_ColorStyle $bubbleBorderColorStyle) - { - $this->bubbleBorderColorStyle = $bubbleBorderColorStyle; - } - /** - * @return Google_Service_Sheets_ColorStyle - */ - public function getBubbleBorderColorStyle() - { - return $this->bubbleBorderColorStyle; - } - /** - * @param Google_Service_Sheets_ChartData - */ - public function setBubbleLabels(Google_Service_Sheets_ChartData $bubbleLabels) - { - $this->bubbleLabels = $bubbleLabels; - } - /** - * @return Google_Service_Sheets_ChartData - */ - public function getBubbleLabels() - { - return $this->bubbleLabels; - } - public function setBubbleMaxRadiusSize($bubbleMaxRadiusSize) - { - $this->bubbleMaxRadiusSize = $bubbleMaxRadiusSize; - } - public function getBubbleMaxRadiusSize() - { - return $this->bubbleMaxRadiusSize; - } - public function setBubbleMinRadiusSize($bubbleMinRadiusSize) - { - $this->bubbleMinRadiusSize = $bubbleMinRadiusSize; - } - public function getBubbleMinRadiusSize() - { - return $this->bubbleMinRadiusSize; - } - public function setBubbleOpacity($bubbleOpacity) - { - $this->bubbleOpacity = $bubbleOpacity; - } - public function getBubbleOpacity() - { - return $this->bubbleOpacity; - } - /** - * @param Google_Service_Sheets_ChartData - */ - public function setBubbleSizes(Google_Service_Sheets_ChartData $bubbleSizes) - { - $this->bubbleSizes = $bubbleSizes; - } - /** - * @return Google_Service_Sheets_ChartData - */ - public function getBubbleSizes() - { - return $this->bubbleSizes; - } - /** - * @param Google_Service_Sheets_TextFormat - */ - public function setBubbleTextStyle(Google_Service_Sheets_TextFormat $bubbleTextStyle) - { - $this->bubbleTextStyle = $bubbleTextStyle; - } - /** - * @return Google_Service_Sheets_TextFormat - */ - public function getBubbleTextStyle() - { - return $this->bubbleTextStyle; - } - /** - * @param Google_Service_Sheets_ChartData - */ - public function setDomain(Google_Service_Sheets_ChartData $domain) - { - $this->domain = $domain; - } - /** - * @return Google_Service_Sheets_ChartData - */ - public function getDomain() - { - return $this->domain; - } - /** - * @param Google_Service_Sheets_ChartData - */ - public function setGroupIds(Google_Service_Sheets_ChartData $groupIds) - { - $this->groupIds = $groupIds; - } - /** - * @return Google_Service_Sheets_ChartData - */ - public function getGroupIds() - { - return $this->groupIds; - } - public function setLegendPosition($legendPosition) - { - $this->legendPosition = $legendPosition; - } - public function getLegendPosition() - { - return $this->legendPosition; - } - /** - * @param Google_Service_Sheets_ChartData - */ - public function setSeries(Google_Service_Sheets_ChartData $series) - { - $this->series = $series; - } - /** - * @return Google_Service_Sheets_ChartData - */ - public function getSeries() - { - return $this->series; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/CandlestickChartSpec.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/CandlestickChartSpec.php deleted file mode 100644 index 0ab80233..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/CandlestickChartSpec.php +++ /dev/null @@ -1,54 +0,0 @@ -data = $data; - } - /** - * @return Google_Service_Sheets_CandlestickData - */ - public function getData() - { - return $this->data; - } - /** - * @param Google_Service_Sheets_CandlestickDomain - */ - public function setDomain(Google_Service_Sheets_CandlestickDomain $domain) - { - $this->domain = $domain; - } - /** - * @return Google_Service_Sheets_CandlestickDomain - */ - public function getDomain() - { - return $this->domain; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/CandlestickData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/CandlestickData.php deleted file mode 100644 index 9171dc68..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/CandlestickData.php +++ /dev/null @@ -1,85 +0,0 @@ -closeSeries = $closeSeries; - } - /** - * @return Google_Service_Sheets_CandlestickSeries - */ - public function getCloseSeries() - { - return $this->closeSeries; - } - /** - * @param Google_Service_Sheets_CandlestickSeries - */ - public function setHighSeries(Google_Service_Sheets_CandlestickSeries $highSeries) - { - $this->highSeries = $highSeries; - } - /** - * @return Google_Service_Sheets_CandlestickSeries - */ - public function getHighSeries() - { - return $this->highSeries; - } - /** - * @param Google_Service_Sheets_CandlestickSeries - */ - public function setLowSeries(Google_Service_Sheets_CandlestickSeries $lowSeries) - { - $this->lowSeries = $lowSeries; - } - /** - * @return Google_Service_Sheets_CandlestickSeries - */ - public function getLowSeries() - { - return $this->lowSeries; - } - /** - * @param Google_Service_Sheets_CandlestickSeries - */ - public function setOpenSeries(Google_Service_Sheets_CandlestickSeries $openSeries) - { - $this->openSeries = $openSeries; - } - /** - * @return Google_Service_Sheets_CandlestickSeries - */ - public function getOpenSeries() - { - return $this->openSeries; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/CandlestickDomain.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/CandlestickDomain.php deleted file mode 100644 index c347c732..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/CandlestickDomain.php +++ /dev/null @@ -1,46 +0,0 @@ -data = $data; - } - /** - * @return Google_Service_Sheets_ChartData - */ - public function getData() - { - return $this->data; - } - public function setReversed($reversed) - { - $this->reversed = $reversed; - } - public function getReversed() - { - return $this->reversed; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/CandlestickSeries.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/CandlestickSeries.php deleted file mode 100644 index cfe3149f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/CandlestickSeries.php +++ /dev/null @@ -1,37 +0,0 @@ -data = $data; - } - /** - * @return Google_Service_Sheets_ChartData - */ - public function getData() - { - return $this->data; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/CellData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/CellData.php deleted file mode 100644 index 61426bc1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/CellData.php +++ /dev/null @@ -1,161 +0,0 @@ -dataValidation = $dataValidation; - } - /** - * @return Google_Service_Sheets_DataValidationRule - */ - public function getDataValidation() - { - return $this->dataValidation; - } - /** - * @param Google_Service_Sheets_CellFormat - */ - public function setEffectiveFormat(Google_Service_Sheets_CellFormat $effectiveFormat) - { - $this->effectiveFormat = $effectiveFormat; - } - /** - * @return Google_Service_Sheets_CellFormat - */ - public function getEffectiveFormat() - { - return $this->effectiveFormat; - } - /** - * @param Google_Service_Sheets_ExtendedValue - */ - public function setEffectiveValue(Google_Service_Sheets_ExtendedValue $effectiveValue) - { - $this->effectiveValue = $effectiveValue; - } - /** - * @return Google_Service_Sheets_ExtendedValue - */ - public function getEffectiveValue() - { - return $this->effectiveValue; - } - public function setFormattedValue($formattedValue) - { - $this->formattedValue = $formattedValue; - } - public function getFormattedValue() - { - return $this->formattedValue; - } - public function setHyperlink($hyperlink) - { - $this->hyperlink = $hyperlink; - } - public function getHyperlink() - { - return $this->hyperlink; - } - public function setNote($note) - { - $this->note = $note; - } - public function getNote() - { - return $this->note; - } - /** - * @param Google_Service_Sheets_PivotTable - */ - public function setPivotTable(Google_Service_Sheets_PivotTable $pivotTable) - { - $this->pivotTable = $pivotTable; - } - /** - * @return Google_Service_Sheets_PivotTable - */ - public function getPivotTable() - { - return $this->pivotTable; - } - /** - * @param Google_Service_Sheets_TextFormatRun - */ - public function setTextFormatRuns($textFormatRuns) - { - $this->textFormatRuns = $textFormatRuns; - } - /** - * @return Google_Service_Sheets_TextFormatRun - */ - public function getTextFormatRuns() - { - return $this->textFormatRuns; - } - /** - * @param Google_Service_Sheets_CellFormat - */ - public function setUserEnteredFormat(Google_Service_Sheets_CellFormat $userEnteredFormat) - { - $this->userEnteredFormat = $userEnteredFormat; - } - /** - * @return Google_Service_Sheets_CellFormat - */ - public function getUserEnteredFormat() - { - return $this->userEnteredFormat; - } - /** - * @param Google_Service_Sheets_ExtendedValue - */ - public function setUserEnteredValue(Google_Service_Sheets_ExtendedValue $userEnteredValue) - { - $this->userEnteredValue = $userEnteredValue; - } - /** - * @return Google_Service_Sheets_ExtendedValue - */ - public function getUserEnteredValue() - { - return $this->userEnteredValue; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/CellFormat.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/CellFormat.php deleted file mode 100644 index 1d8e2d39..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/CellFormat.php +++ /dev/null @@ -1,178 +0,0 @@ -backgroundColor = $backgroundColor; - } - /** - * @return Google_Service_Sheets_Color - */ - public function getBackgroundColor() - { - return $this->backgroundColor; - } - /** - * @param Google_Service_Sheets_ColorStyle - */ - public function setBackgroundColorStyle(Google_Service_Sheets_ColorStyle $backgroundColorStyle) - { - $this->backgroundColorStyle = $backgroundColorStyle; - } - /** - * @return Google_Service_Sheets_ColorStyle - */ - public function getBackgroundColorStyle() - { - return $this->backgroundColorStyle; - } - /** - * @param Google_Service_Sheets_Borders - */ - public function setBorders(Google_Service_Sheets_Borders $borders) - { - $this->borders = $borders; - } - /** - * @return Google_Service_Sheets_Borders - */ - public function getBorders() - { - return $this->borders; - } - public function setHorizontalAlignment($horizontalAlignment) - { - $this->horizontalAlignment = $horizontalAlignment; - } - public function getHorizontalAlignment() - { - return $this->horizontalAlignment; - } - public function setHyperlinkDisplayType($hyperlinkDisplayType) - { - $this->hyperlinkDisplayType = $hyperlinkDisplayType; - } - public function getHyperlinkDisplayType() - { - return $this->hyperlinkDisplayType; - } - /** - * @param Google_Service_Sheets_NumberFormat - */ - public function setNumberFormat(Google_Service_Sheets_NumberFormat $numberFormat) - { - $this->numberFormat = $numberFormat; - } - /** - * @return Google_Service_Sheets_NumberFormat - */ - public function getNumberFormat() - { - return $this->numberFormat; - } - /** - * @param Google_Service_Sheets_Padding - */ - public function setPadding(Google_Service_Sheets_Padding $padding) - { - $this->padding = $padding; - } - /** - * @return Google_Service_Sheets_Padding - */ - public function getPadding() - { - return $this->padding; - } - public function setTextDirection($textDirection) - { - $this->textDirection = $textDirection; - } - public function getTextDirection() - { - return $this->textDirection; - } - /** - * @param Google_Service_Sheets_TextFormat - */ - public function setTextFormat(Google_Service_Sheets_TextFormat $textFormat) - { - $this->textFormat = $textFormat; - } - /** - * @return Google_Service_Sheets_TextFormat - */ - public function getTextFormat() - { - return $this->textFormat; - } - /** - * @param Google_Service_Sheets_TextRotation - */ - public function setTextRotation(Google_Service_Sheets_TextRotation $textRotation) - { - $this->textRotation = $textRotation; - } - /** - * @return Google_Service_Sheets_TextRotation - */ - public function getTextRotation() - { - return $this->textRotation; - } - public function setVerticalAlignment($verticalAlignment) - { - $this->verticalAlignment = $verticalAlignment; - } - public function getVerticalAlignment() - { - return $this->verticalAlignment; - } - public function setWrapStrategy($wrapStrategy) - { - $this->wrapStrategy = $wrapStrategy; - } - public function getWrapStrategy() - { - return $this->wrapStrategy; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/ChartAxisViewWindowOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/ChartAxisViewWindowOptions.php deleted file mode 100644 index 4d840cf4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/ChartAxisViewWindowOptions.php +++ /dev/null @@ -1,48 +0,0 @@ -viewWindowMax = $viewWindowMax; - } - public function getViewWindowMax() - { - return $this->viewWindowMax; - } - public function setViewWindowMin($viewWindowMin) - { - $this->viewWindowMin = $viewWindowMin; - } - public function getViewWindowMin() - { - return $this->viewWindowMin; - } - public function setViewWindowMode($viewWindowMode) - { - $this->viewWindowMode = $viewWindowMode; - } - public function getViewWindowMode() - { - return $this->viewWindowMode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/ChartCustomNumberFormatOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/ChartCustomNumberFormatOptions.php deleted file mode 100644 index 7a98fca7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/ChartCustomNumberFormatOptions.php +++ /dev/null @@ -1,39 +0,0 @@ -prefix = $prefix; - } - public function getPrefix() - { - return $this->prefix; - } - public function setSuffix($suffix) - { - $this->suffix = $suffix; - } - public function getSuffix() - { - return $this->suffix; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/ChartData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/ChartData.php deleted file mode 100644 index f0a31daa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/ChartData.php +++ /dev/null @@ -1,37 +0,0 @@ -sourceRange = $sourceRange; - } - /** - * @return Google_Service_Sheets_ChartSourceRange - */ - public function getSourceRange() - { - return $this->sourceRange; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/ChartSourceRange.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/ChartSourceRange.php deleted file mode 100644 index 9d381869..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/ChartSourceRange.php +++ /dev/null @@ -1,38 +0,0 @@ -sources = $sources; - } - /** - * @return Google_Service_Sheets_GridRange - */ - public function getSources() - { - return $this->sources; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/ChartSpec.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/ChartSpec.php deleted file mode 100644 index d95a6c65..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/ChartSpec.php +++ /dev/null @@ -1,315 +0,0 @@ -altText = $altText; - } - public function getAltText() - { - return $this->altText; - } - /** - * @param Google_Service_Sheets_Color - */ - public function setBackgroundColor(Google_Service_Sheets_Color $backgroundColor) - { - $this->backgroundColor = $backgroundColor; - } - /** - * @return Google_Service_Sheets_Color - */ - public function getBackgroundColor() - { - return $this->backgroundColor; - } - /** - * @param Google_Service_Sheets_ColorStyle - */ - public function setBackgroundColorStyle(Google_Service_Sheets_ColorStyle $backgroundColorStyle) - { - $this->backgroundColorStyle = $backgroundColorStyle; - } - /** - * @return Google_Service_Sheets_ColorStyle - */ - public function getBackgroundColorStyle() - { - return $this->backgroundColorStyle; - } - /** - * @param Google_Service_Sheets_BasicChartSpec - */ - public function setBasicChart(Google_Service_Sheets_BasicChartSpec $basicChart) - { - $this->basicChart = $basicChart; - } - /** - * @return Google_Service_Sheets_BasicChartSpec - */ - public function getBasicChart() - { - return $this->basicChart; - } - /** - * @param Google_Service_Sheets_BubbleChartSpec - */ - public function setBubbleChart(Google_Service_Sheets_BubbleChartSpec $bubbleChart) - { - $this->bubbleChart = $bubbleChart; - } - /** - * @return Google_Service_Sheets_BubbleChartSpec - */ - public function getBubbleChart() - { - return $this->bubbleChart; - } - /** - * @param Google_Service_Sheets_CandlestickChartSpec - */ - public function setCandlestickChart(Google_Service_Sheets_CandlestickChartSpec $candlestickChart) - { - $this->candlestickChart = $candlestickChart; - } - /** - * @return Google_Service_Sheets_CandlestickChartSpec - */ - public function getCandlestickChart() - { - return $this->candlestickChart; - } - public function setFontName($fontName) - { - $this->fontName = $fontName; - } - public function getFontName() - { - return $this->fontName; - } - public function setHiddenDimensionStrategy($hiddenDimensionStrategy) - { - $this->hiddenDimensionStrategy = $hiddenDimensionStrategy; - } - public function getHiddenDimensionStrategy() - { - return $this->hiddenDimensionStrategy; - } - /** - * @param Google_Service_Sheets_HistogramChartSpec - */ - public function setHistogramChart(Google_Service_Sheets_HistogramChartSpec $histogramChart) - { - $this->histogramChart = $histogramChart; - } - /** - * @return Google_Service_Sheets_HistogramChartSpec - */ - public function getHistogramChart() - { - return $this->histogramChart; - } - public function setMaximized($maximized) - { - $this->maximized = $maximized; - } - public function getMaximized() - { - return $this->maximized; - } - /** - * @param Google_Service_Sheets_OrgChartSpec - */ - public function setOrgChart(Google_Service_Sheets_OrgChartSpec $orgChart) - { - $this->orgChart = $orgChart; - } - /** - * @return Google_Service_Sheets_OrgChartSpec - */ - public function getOrgChart() - { - return $this->orgChart; - } - /** - * @param Google_Service_Sheets_PieChartSpec - */ - public function setPieChart(Google_Service_Sheets_PieChartSpec $pieChart) - { - $this->pieChart = $pieChart; - } - /** - * @return Google_Service_Sheets_PieChartSpec - */ - public function getPieChart() - { - return $this->pieChart; - } - /** - * @param Google_Service_Sheets_ScorecardChartSpec - */ - public function setScorecardChart(Google_Service_Sheets_ScorecardChartSpec $scorecardChart) - { - $this->scorecardChart = $scorecardChart; - } - /** - * @return Google_Service_Sheets_ScorecardChartSpec - */ - public function getScorecardChart() - { - return $this->scorecardChart; - } - public function setSubtitle($subtitle) - { - $this->subtitle = $subtitle; - } - public function getSubtitle() - { - return $this->subtitle; - } - /** - * @param Google_Service_Sheets_TextFormat - */ - public function setSubtitleTextFormat(Google_Service_Sheets_TextFormat $subtitleTextFormat) - { - $this->subtitleTextFormat = $subtitleTextFormat; - } - /** - * @return Google_Service_Sheets_TextFormat - */ - public function getSubtitleTextFormat() - { - return $this->subtitleTextFormat; - } - /** - * @param Google_Service_Sheets_TextPosition - */ - public function setSubtitleTextPosition(Google_Service_Sheets_TextPosition $subtitleTextPosition) - { - $this->subtitleTextPosition = $subtitleTextPosition; - } - /** - * @return Google_Service_Sheets_TextPosition - */ - public function getSubtitleTextPosition() - { - return $this->subtitleTextPosition; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - /** - * @param Google_Service_Sheets_TextFormat - */ - public function setTitleTextFormat(Google_Service_Sheets_TextFormat $titleTextFormat) - { - $this->titleTextFormat = $titleTextFormat; - } - /** - * @return Google_Service_Sheets_TextFormat - */ - public function getTitleTextFormat() - { - return $this->titleTextFormat; - } - /** - * @param Google_Service_Sheets_TextPosition - */ - public function setTitleTextPosition(Google_Service_Sheets_TextPosition $titleTextPosition) - { - $this->titleTextPosition = $titleTextPosition; - } - /** - * @return Google_Service_Sheets_TextPosition - */ - public function getTitleTextPosition() - { - return $this->titleTextPosition; - } - /** - * @param Google_Service_Sheets_TreemapChartSpec - */ - public function setTreemapChart(Google_Service_Sheets_TreemapChartSpec $treemapChart) - { - $this->treemapChart = $treemapChart; - } - /** - * @return Google_Service_Sheets_TreemapChartSpec - */ - public function getTreemapChart() - { - return $this->treemapChart; - } - /** - * @param Google_Service_Sheets_WaterfallChartSpec - */ - public function setWaterfallChart(Google_Service_Sheets_WaterfallChartSpec $waterfallChart) - { - $this->waterfallChart = $waterfallChart; - } - /** - * @return Google_Service_Sheets_WaterfallChartSpec - */ - public function getWaterfallChart() - { - return $this->waterfallChart; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/ClearBasicFilterRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/ClearBasicFilterRequest.php deleted file mode 100644 index fa33d9bd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/ClearBasicFilterRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -sheetId = $sheetId; - } - public function getSheetId() - { - return $this->sheetId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/ClearValuesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/ClearValuesRequest.php deleted file mode 100644 index 111a2de7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/ClearValuesRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -clearedRange = $clearedRange; - } - public function getClearedRange() - { - return $this->clearedRange; - } - public function setSpreadsheetId($spreadsheetId) - { - $this->spreadsheetId = $spreadsheetId; - } - public function getSpreadsheetId() - { - return $this->spreadsheetId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/Color.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/Color.php deleted file mode 100644 index 91a5a6b5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/Color.php +++ /dev/null @@ -1,57 +0,0 @@ -alpha = $alpha; - } - public function getAlpha() - { - return $this->alpha; - } - public function setBlue($blue) - { - $this->blue = $blue; - } - public function getBlue() - { - return $this->blue; - } - public function setGreen($green) - { - $this->green = $green; - } - public function getGreen() - { - return $this->green; - } - public function setRed($red) - { - $this->red = $red; - } - public function getRed() - { - return $this->red; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/ColorStyle.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/ColorStyle.php deleted file mode 100644 index 11e76be6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/ColorStyle.php +++ /dev/null @@ -1,46 +0,0 @@ -rgbColor = $rgbColor; - } - /** - * @return Google_Service_Sheets_Color - */ - public function getRgbColor() - { - return $this->rgbColor; - } - public function setThemeColor($themeColor) - { - $this->themeColor = $themeColor; - } - public function getThemeColor() - { - return $this->themeColor; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/ConditionValue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/ConditionValue.php deleted file mode 100644 index 801c6142..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/ConditionValue.php +++ /dev/null @@ -1,39 +0,0 @@ -relativeDate = $relativeDate; - } - public function getRelativeDate() - { - return $this->relativeDate; - } - public function setUserEnteredValue($userEnteredValue) - { - $this->userEnteredValue = $userEnteredValue; - } - public function getUserEnteredValue() - { - return $this->userEnteredValue; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/ConditionalFormatRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/ConditionalFormatRule.php deleted file mode 100644 index a5053c5b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/ConditionalFormatRule.php +++ /dev/null @@ -1,70 +0,0 @@ -booleanRule = $booleanRule; - } - /** - * @return Google_Service_Sheets_BooleanRule - */ - public function getBooleanRule() - { - return $this->booleanRule; - } - /** - * @param Google_Service_Sheets_GradientRule - */ - public function setGradientRule(Google_Service_Sheets_GradientRule $gradientRule) - { - $this->gradientRule = $gradientRule; - } - /** - * @return Google_Service_Sheets_GradientRule - */ - public function getGradientRule() - { - return $this->gradientRule; - } - /** - * @param Google_Service_Sheets_GridRange - */ - public function setRanges($ranges) - { - $this->ranges = $ranges; - } - /** - * @return Google_Service_Sheets_GridRange - */ - public function getRanges() - { - return $this->ranges; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/CopyPasteRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/CopyPasteRequest.php deleted file mode 100644 index 19bb1b1b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/CopyPasteRequest.php +++ /dev/null @@ -1,71 +0,0 @@ -destination = $destination; - } - /** - * @return Google_Service_Sheets_GridRange - */ - public function getDestination() - { - return $this->destination; - } - public function setPasteOrientation($pasteOrientation) - { - $this->pasteOrientation = $pasteOrientation; - } - public function getPasteOrientation() - { - return $this->pasteOrientation; - } - public function setPasteType($pasteType) - { - $this->pasteType = $pasteType; - } - public function getPasteType() - { - return $this->pasteType; - } - /** - * @param Google_Service_Sheets_GridRange - */ - public function setSource(Google_Service_Sheets_GridRange $source) - { - $this->source = $source; - } - /** - * @return Google_Service_Sheets_GridRange - */ - public function getSource() - { - return $this->source; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/CopySheetToAnotherSpreadsheetRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/CopySheetToAnotherSpreadsheetRequest.php deleted file mode 100644 index ae93e8d1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/CopySheetToAnotherSpreadsheetRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -destinationSpreadsheetId = $destinationSpreadsheetId; - } - public function getDestinationSpreadsheetId() - { - return $this->destinationSpreadsheetId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/CreateDeveloperMetadataRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/CreateDeveloperMetadataRequest.php deleted file mode 100644 index 0b9ceadc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/CreateDeveloperMetadataRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -developerMetadata = $developerMetadata; - } - /** - * @return Google_Service_Sheets_DeveloperMetadata - */ - public function getDeveloperMetadata() - { - return $this->developerMetadata; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/CreateDeveloperMetadataResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/CreateDeveloperMetadataResponse.php deleted file mode 100644 index 92dfcc75..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/CreateDeveloperMetadataResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -developerMetadata = $developerMetadata; - } - /** - * @return Google_Service_Sheets_DeveloperMetadata - */ - public function getDeveloperMetadata() - { - return $this->developerMetadata; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/CutPasteRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/CutPasteRequest.php deleted file mode 100644 index 2c775fa1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/CutPasteRequest.php +++ /dev/null @@ -1,62 +0,0 @@ -destination = $destination; - } - /** - * @return Google_Service_Sheets_GridCoordinate - */ - public function getDestination() - { - return $this->destination; - } - public function setPasteType($pasteType) - { - $this->pasteType = $pasteType; - } - public function getPasteType() - { - return $this->pasteType; - } - /** - * @param Google_Service_Sheets_GridRange - */ - public function setSource(Google_Service_Sheets_GridRange $source) - { - $this->source = $source; - } - /** - * @return Google_Service_Sheets_GridRange - */ - public function getSource() - { - return $this->source; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DataFilter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DataFilter.php deleted file mode 100644 index 5f1eee30..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DataFilter.php +++ /dev/null @@ -1,62 +0,0 @@ -a1Range = $a1Range; - } - public function getA1Range() - { - return $this->a1Range; - } - /** - * @param Google_Service_Sheets_DeveloperMetadataLookup - */ - public function setDeveloperMetadataLookup(Google_Service_Sheets_DeveloperMetadataLookup $developerMetadataLookup) - { - $this->developerMetadataLookup = $developerMetadataLookup; - } - /** - * @return Google_Service_Sheets_DeveloperMetadataLookup - */ - public function getDeveloperMetadataLookup() - { - return $this->developerMetadataLookup; - } - /** - * @param Google_Service_Sheets_GridRange - */ - public function setGridRange(Google_Service_Sheets_GridRange $gridRange) - { - $this->gridRange = $gridRange; - } - /** - * @return Google_Service_Sheets_GridRange - */ - public function getGridRange() - { - return $this->gridRange; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DataFilterValueRange.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DataFilterValueRange.php deleted file mode 100644 index ed05ccf4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DataFilterValueRange.php +++ /dev/null @@ -1,56 +0,0 @@ -dataFilter = $dataFilter; - } - /** - * @return Google_Service_Sheets_DataFilter - */ - public function getDataFilter() - { - return $this->dataFilter; - } - public function setMajorDimension($majorDimension) - { - $this->majorDimension = $majorDimension; - } - public function getMajorDimension() - { - return $this->majorDimension; - } - public function setValues($values) - { - $this->values = $values; - } - public function getValues() - { - return $this->values; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DataValidationRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DataValidationRule.php deleted file mode 100644 index fce6ac99..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DataValidationRule.php +++ /dev/null @@ -1,64 +0,0 @@ -condition = $condition; - } - /** - * @return Google_Service_Sheets_BooleanCondition - */ - public function getCondition() - { - return $this->condition; - } - public function setInputMessage($inputMessage) - { - $this->inputMessage = $inputMessage; - } - public function getInputMessage() - { - return $this->inputMessage; - } - public function setShowCustomUi($showCustomUi) - { - $this->showCustomUi = $showCustomUi; - } - public function getShowCustomUi() - { - return $this->showCustomUi; - } - public function setStrict($strict) - { - $this->strict = $strict; - } - public function getStrict() - { - return $this->strict; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DateTimeRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DateTimeRule.php deleted file mode 100644 index 5be5457a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DateTimeRule.php +++ /dev/null @@ -1,30 +0,0 @@ -type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeleteBandingRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeleteBandingRequest.php deleted file mode 100644 index c9082c29..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeleteBandingRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -bandedRangeId = $bandedRangeId; - } - public function getBandedRangeId() - { - return $this->bandedRangeId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeleteConditionalFormatRuleRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeleteConditionalFormatRuleRequest.php deleted file mode 100644 index 9745473a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeleteConditionalFormatRuleRequest.php +++ /dev/null @@ -1,39 +0,0 @@ -index = $index; - } - public function getIndex() - { - return $this->index; - } - public function setSheetId($sheetId) - { - $this->sheetId = $sheetId; - } - public function getSheetId() - { - return $this->sheetId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeleteConditionalFormatRuleResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeleteConditionalFormatRuleResponse.php deleted file mode 100644 index 7b6ab752..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeleteConditionalFormatRuleResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -rule = $rule; - } - /** - * @return Google_Service_Sheets_ConditionalFormatRule - */ - public function getRule() - { - return $this->rule; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeleteDeveloperMetadataRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeleteDeveloperMetadataRequest.php deleted file mode 100644 index ba0663d0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeleteDeveloperMetadataRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -dataFilter = $dataFilter; - } - /** - * @return Google_Service_Sheets_DataFilter - */ - public function getDataFilter() - { - return $this->dataFilter; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeleteDeveloperMetadataResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeleteDeveloperMetadataResponse.php deleted file mode 100644 index de7c50c4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeleteDeveloperMetadataResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -deletedDeveloperMetadata = $deletedDeveloperMetadata; - } - /** - * @return Google_Service_Sheets_DeveloperMetadata - */ - public function getDeletedDeveloperMetadata() - { - return $this->deletedDeveloperMetadata; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeleteDimensionGroupRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeleteDimensionGroupRequest.php deleted file mode 100644 index 20239741..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeleteDimensionGroupRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -range = $range; - } - /** - * @return Google_Service_Sheets_DimensionRange - */ - public function getRange() - { - return $this->range; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeleteDimensionGroupResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeleteDimensionGroupResponse.php deleted file mode 100644 index 3408a59e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeleteDimensionGroupResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -dimensionGroups = $dimensionGroups; - } - /** - * @return Google_Service_Sheets_DimensionGroup - */ - public function getDimensionGroups() - { - return $this->dimensionGroups; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeleteDimensionRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeleteDimensionRequest.php deleted file mode 100644 index 3301a8ab..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeleteDimensionRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -range = $range; - } - /** - * @return Google_Service_Sheets_DimensionRange - */ - public function getRange() - { - return $this->range; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeleteDuplicatesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeleteDuplicatesRequest.php deleted file mode 100644 index c486a6f4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeleteDuplicatesRequest.php +++ /dev/null @@ -1,54 +0,0 @@ -comparisonColumns = $comparisonColumns; - } - /** - * @return Google_Service_Sheets_DimensionRange - */ - public function getComparisonColumns() - { - return $this->comparisonColumns; - } - /** - * @param Google_Service_Sheets_GridRange - */ - public function setRange(Google_Service_Sheets_GridRange $range) - { - $this->range = $range; - } - /** - * @return Google_Service_Sheets_GridRange - */ - public function getRange() - { - return $this->range; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeleteDuplicatesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeleteDuplicatesResponse.php deleted file mode 100644 index 11a8d8ef..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeleteDuplicatesResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -duplicatesRemovedCount = $duplicatesRemovedCount; - } - public function getDuplicatesRemovedCount() - { - return $this->duplicatesRemovedCount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeleteEmbeddedObjectRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeleteEmbeddedObjectRequest.php deleted file mode 100644 index 053d672d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeleteEmbeddedObjectRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -objectId = $objectId; - } - public function getObjectId() - { - return $this->objectId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeleteFilterViewRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeleteFilterViewRequest.php deleted file mode 100644 index 1be73a6f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeleteFilterViewRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -filterId = $filterId; - } - public function getFilterId() - { - return $this->filterId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeleteNamedRangeRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeleteNamedRangeRequest.php deleted file mode 100644 index 7ec67fdc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeleteNamedRangeRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -namedRangeId = $namedRangeId; - } - public function getNamedRangeId() - { - return $this->namedRangeId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeleteProtectedRangeRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeleteProtectedRangeRequest.php deleted file mode 100644 index fd6f024e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeleteProtectedRangeRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -protectedRangeId = $protectedRangeId; - } - public function getProtectedRangeId() - { - return $this->protectedRangeId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeleteRangeRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeleteRangeRequest.php deleted file mode 100644 index 2c704794..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeleteRangeRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -range = $range; - } - /** - * @return Google_Service_Sheets_GridRange - */ - public function getRange() - { - return $this->range; - } - public function setShiftDimension($shiftDimension) - { - $this->shiftDimension = $shiftDimension; - } - public function getShiftDimension() - { - return $this->shiftDimension; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeleteSheetRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeleteSheetRequest.php deleted file mode 100644 index 43483cd4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeleteSheetRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -sheetId = $sheetId; - } - public function getSheetId() - { - return $this->sheetId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeveloperMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeveloperMetadata.php deleted file mode 100644 index 0e4b3daf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeveloperMetadata.php +++ /dev/null @@ -1,73 +0,0 @@ -location = $location; - } - /** - * @return Google_Service_Sheets_DeveloperMetadataLocation - */ - public function getLocation() - { - return $this->location; - } - public function setMetadataId($metadataId) - { - $this->metadataId = $metadataId; - } - public function getMetadataId() - { - return $this->metadataId; - } - public function setMetadataKey($metadataKey) - { - $this->metadataKey = $metadataKey; - } - public function getMetadataKey() - { - return $this->metadataKey; - } - public function setMetadataValue($metadataValue) - { - $this->metadataValue = $metadataValue; - } - public function getMetadataValue() - { - return $this->metadataValue; - } - public function setVisibility($visibility) - { - $this->visibility = $visibility; - } - public function getVisibility() - { - return $this->visibility; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeveloperMetadataLocation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeveloperMetadataLocation.php deleted file mode 100644 index acffaf5f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeveloperMetadataLocation.php +++ /dev/null @@ -1,64 +0,0 @@ -dimensionRange = $dimensionRange; - } - /** - * @return Google_Service_Sheets_DimensionRange - */ - public function getDimensionRange() - { - return $this->dimensionRange; - } - public function setLocationType($locationType) - { - $this->locationType = $locationType; - } - public function getLocationType() - { - return $this->locationType; - } - public function setSheetId($sheetId) - { - $this->sheetId = $sheetId; - } - public function getSheetId() - { - return $this->sheetId; - } - public function setSpreadsheet($spreadsheet) - { - $this->spreadsheet = $spreadsheet; - } - public function getSpreadsheet() - { - return $this->spreadsheet; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeveloperMetadataLookup.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeveloperMetadataLookup.php deleted file mode 100644 index 0f888320..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DeveloperMetadataLookup.php +++ /dev/null @@ -1,91 +0,0 @@ -locationMatchingStrategy = $locationMatchingStrategy; - } - public function getLocationMatchingStrategy() - { - return $this->locationMatchingStrategy; - } - public function setLocationType($locationType) - { - $this->locationType = $locationType; - } - public function getLocationType() - { - return $this->locationType; - } - public function setMetadataId($metadataId) - { - $this->metadataId = $metadataId; - } - public function getMetadataId() - { - return $this->metadataId; - } - public function setMetadataKey($metadataKey) - { - $this->metadataKey = $metadataKey; - } - public function getMetadataKey() - { - return $this->metadataKey; - } - /** - * @param Google_Service_Sheets_DeveloperMetadataLocation - */ - public function setMetadataLocation(Google_Service_Sheets_DeveloperMetadataLocation $metadataLocation) - { - $this->metadataLocation = $metadataLocation; - } - /** - * @return Google_Service_Sheets_DeveloperMetadataLocation - */ - public function getMetadataLocation() - { - return $this->metadataLocation; - } - public function setMetadataValue($metadataValue) - { - $this->metadataValue = $metadataValue; - } - public function getMetadataValue() - { - return $this->metadataValue; - } - public function setVisibility($visibility) - { - $this->visibility = $visibility; - } - public function getVisibility() - { - return $this->visibility; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DimensionGroup.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DimensionGroup.php deleted file mode 100644 index 7a162578..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DimensionGroup.php +++ /dev/null @@ -1,55 +0,0 @@ -collapsed = $collapsed; - } - public function getCollapsed() - { - return $this->collapsed; - } - public function setDepth($depth) - { - $this->depth = $depth; - } - public function getDepth() - { - return $this->depth; - } - /** - * @param Google_Service_Sheets_DimensionRange - */ - public function setRange(Google_Service_Sheets_DimensionRange $range) - { - $this->range = $range; - } - /** - * @return Google_Service_Sheets_DimensionRange - */ - public function getRange() - { - return $this->range; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DimensionProperties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DimensionProperties.php deleted file mode 100644 index f85158cb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DimensionProperties.php +++ /dev/null @@ -1,65 +0,0 @@ -developerMetadata = $developerMetadata; - } - /** - * @return Google_Service_Sheets_DeveloperMetadata - */ - public function getDeveloperMetadata() - { - return $this->developerMetadata; - } - public function setHiddenByFilter($hiddenByFilter) - { - $this->hiddenByFilter = $hiddenByFilter; - } - public function getHiddenByFilter() - { - return $this->hiddenByFilter; - } - public function setHiddenByUser($hiddenByUser) - { - $this->hiddenByUser = $hiddenByUser; - } - public function getHiddenByUser() - { - return $this->hiddenByUser; - } - public function setPixelSize($pixelSize) - { - $this->pixelSize = $pixelSize; - } - public function getPixelSize() - { - return $this->pixelSize; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DimensionRange.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DimensionRange.php deleted file mode 100644 index 3e2956c4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DimensionRange.php +++ /dev/null @@ -1,57 +0,0 @@ -dimension = $dimension; - } - public function getDimension() - { - return $this->dimension; - } - public function setEndIndex($endIndex) - { - $this->endIndex = $endIndex; - } - public function getEndIndex() - { - return $this->endIndex; - } - public function setSheetId($sheetId) - { - $this->sheetId = $sheetId; - } - public function getSheetId() - { - return $this->sheetId; - } - public function setStartIndex($startIndex) - { - $this->startIndex = $startIndex; - } - public function getStartIndex() - { - return $this->startIndex; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DuplicateFilterViewRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DuplicateFilterViewRequest.php deleted file mode 100644 index 32238a4d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DuplicateFilterViewRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -filterId = $filterId; - } - public function getFilterId() - { - return $this->filterId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DuplicateFilterViewResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DuplicateFilterViewResponse.php deleted file mode 100644 index 465fefa0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DuplicateFilterViewResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -filter = $filter; - } - /** - * @return Google_Service_Sheets_FilterView - */ - public function getFilter() - { - return $this->filter; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DuplicateSheetRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DuplicateSheetRequest.php deleted file mode 100644 index 46cd8f70..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DuplicateSheetRequest.php +++ /dev/null @@ -1,57 +0,0 @@ -insertSheetIndex = $insertSheetIndex; - } - public function getInsertSheetIndex() - { - return $this->insertSheetIndex; - } - public function setNewSheetId($newSheetId) - { - $this->newSheetId = $newSheetId; - } - public function getNewSheetId() - { - return $this->newSheetId; - } - public function setNewSheetName($newSheetName) - { - $this->newSheetName = $newSheetName; - } - public function getNewSheetName() - { - return $this->newSheetName; - } - public function setSourceSheetId($sourceSheetId) - { - $this->sourceSheetId = $sourceSheetId; - } - public function getSourceSheetId() - { - return $this->sourceSheetId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DuplicateSheetResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DuplicateSheetResponse.php deleted file mode 100644 index 67c336c3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/DuplicateSheetResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -properties = $properties; - } - /** - * @return Google_Service_Sheets_SheetProperties - */ - public function getProperties() - { - return $this->properties; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/Editors.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/Editors.php deleted file mode 100644 index 94f7d3cf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/Editors.php +++ /dev/null @@ -1,49 +0,0 @@ -domainUsersCanEdit = $domainUsersCanEdit; - } - public function getDomainUsersCanEdit() - { - return $this->domainUsersCanEdit; - } - public function setGroups($groups) - { - $this->groups = $groups; - } - public function getGroups() - { - return $this->groups; - } - public function setUsers($users) - { - $this->users = $users; - } - public function getUsers() - { - return $this->users; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/EmbeddedChart.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/EmbeddedChart.php deleted file mode 100644 index bd839b73..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/EmbeddedChart.php +++ /dev/null @@ -1,62 +0,0 @@ -chartId = $chartId; - } - public function getChartId() - { - return $this->chartId; - } - /** - * @param Google_Service_Sheets_EmbeddedObjectPosition - */ - public function setPosition(Google_Service_Sheets_EmbeddedObjectPosition $position) - { - $this->position = $position; - } - /** - * @return Google_Service_Sheets_EmbeddedObjectPosition - */ - public function getPosition() - { - return $this->position; - } - /** - * @param Google_Service_Sheets_ChartSpec - */ - public function setSpec(Google_Service_Sheets_ChartSpec $spec) - { - $this->spec = $spec; - } - /** - * @return Google_Service_Sheets_ChartSpec - */ - public function getSpec() - { - return $this->spec; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/EmbeddedObjectPosition.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/EmbeddedObjectPosition.php deleted file mode 100644 index 7f6b7999..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/EmbeddedObjectPosition.php +++ /dev/null @@ -1,55 +0,0 @@ -newSheet = $newSheet; - } - public function getNewSheet() - { - return $this->newSheet; - } - /** - * @param Google_Service_Sheets_OverlayPosition - */ - public function setOverlayPosition(Google_Service_Sheets_OverlayPosition $overlayPosition) - { - $this->overlayPosition = $overlayPosition; - } - /** - * @return Google_Service_Sheets_OverlayPosition - */ - public function getOverlayPosition() - { - return $this->overlayPosition; - } - public function setSheetId($sheetId) - { - $this->sheetId = $sheetId; - } - public function getSheetId() - { - return $this->sheetId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/ErrorValue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/ErrorValue.php deleted file mode 100644 index daaddb7c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/ErrorValue.php +++ /dev/null @@ -1,39 +0,0 @@ -message = $message; - } - public function getMessage() - { - return $this->message; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/ExtendedValue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/ExtendedValue.php deleted file mode 100644 index f1cf3cc4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/ExtendedValue.php +++ /dev/null @@ -1,73 +0,0 @@ -boolValue = $boolValue; - } - public function getBoolValue() - { - return $this->boolValue; - } - /** - * @param Google_Service_Sheets_ErrorValue - */ - public function setErrorValue(Google_Service_Sheets_ErrorValue $errorValue) - { - $this->errorValue = $errorValue; - } - /** - * @return Google_Service_Sheets_ErrorValue - */ - public function getErrorValue() - { - return $this->errorValue; - } - public function setFormulaValue($formulaValue) - { - $this->formulaValue = $formulaValue; - } - public function getFormulaValue() - { - return $this->formulaValue; - } - public function setNumberValue($numberValue) - { - $this->numberValue = $numberValue; - } - public function getNumberValue() - { - return $this->numberValue; - } - public function setStringValue($stringValue) - { - $this->stringValue = $stringValue; - } - public function getStringValue() - { - return $this->stringValue; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/FilterCriteria.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/FilterCriteria.php deleted file mode 100644 index ce238d30..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/FilterCriteria.php +++ /dev/null @@ -1,111 +0,0 @@ -condition = $condition; - } - /** - * @return Google_Service_Sheets_BooleanCondition - */ - public function getCondition() - { - return $this->condition; - } - public function setHiddenValues($hiddenValues) - { - $this->hiddenValues = $hiddenValues; - } - public function getHiddenValues() - { - return $this->hiddenValues; - } - /** - * @param Google_Service_Sheets_Color - */ - public function setVisibleBackgroundColor(Google_Service_Sheets_Color $visibleBackgroundColor) - { - $this->visibleBackgroundColor = $visibleBackgroundColor; - } - /** - * @return Google_Service_Sheets_Color - */ - public function getVisibleBackgroundColor() - { - return $this->visibleBackgroundColor; - } - /** - * @param Google_Service_Sheets_ColorStyle - */ - public function setVisibleBackgroundColorStyle(Google_Service_Sheets_ColorStyle $visibleBackgroundColorStyle) - { - $this->visibleBackgroundColorStyle = $visibleBackgroundColorStyle; - } - /** - * @return Google_Service_Sheets_ColorStyle - */ - public function getVisibleBackgroundColorStyle() - { - return $this->visibleBackgroundColorStyle; - } - /** - * @param Google_Service_Sheets_Color - */ - public function setVisibleForegroundColor(Google_Service_Sheets_Color $visibleForegroundColor) - { - $this->visibleForegroundColor = $visibleForegroundColor; - } - /** - * @return Google_Service_Sheets_Color - */ - public function getVisibleForegroundColor() - { - return $this->visibleForegroundColor; - } - /** - * @param Google_Service_Sheets_ColorStyle - */ - public function setVisibleForegroundColorStyle(Google_Service_Sheets_ColorStyle $visibleForegroundColorStyle) - { - $this->visibleForegroundColorStyle = $visibleForegroundColorStyle; - } - /** - * @return Google_Service_Sheets_ColorStyle - */ - public function getVisibleForegroundColorStyle() - { - return $this->visibleForegroundColorStyle; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/FilterView.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/FilterView.php deleted file mode 100644 index 3fecb0d5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/FilterView.php +++ /dev/null @@ -1,97 +0,0 @@ -criteria = $criteria; - } - /** - * @return Google_Service_Sheets_FilterCriteria - */ - public function getCriteria() - { - return $this->criteria; - } - public function setFilterViewId($filterViewId) - { - $this->filterViewId = $filterViewId; - } - public function getFilterViewId() - { - return $this->filterViewId; - } - public function setNamedRangeId($namedRangeId) - { - $this->namedRangeId = $namedRangeId; - } - public function getNamedRangeId() - { - return $this->namedRangeId; - } - /** - * @param Google_Service_Sheets_GridRange - */ - public function setRange(Google_Service_Sheets_GridRange $range) - { - $this->range = $range; - } - /** - * @return Google_Service_Sheets_GridRange - */ - public function getRange() - { - return $this->range; - } - /** - * @param Google_Service_Sheets_SortSpec - */ - public function setSortSpecs($sortSpecs) - { - $this->sortSpecs = $sortSpecs; - } - /** - * @return Google_Service_Sheets_SortSpec - */ - public function getSortSpecs() - { - return $this->sortSpecs; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/FindReplaceRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/FindReplaceRequest.php deleted file mode 100644 index 002f1fb7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/FindReplaceRequest.php +++ /dev/null @@ -1,109 +0,0 @@ -allSheets = $allSheets; - } - public function getAllSheets() - { - return $this->allSheets; - } - public function setFind($find) - { - $this->find = $find; - } - public function getFind() - { - return $this->find; - } - public function setIncludeFormulas($includeFormulas) - { - $this->includeFormulas = $includeFormulas; - } - public function getIncludeFormulas() - { - return $this->includeFormulas; - } - public function setMatchCase($matchCase) - { - $this->matchCase = $matchCase; - } - public function getMatchCase() - { - return $this->matchCase; - } - public function setMatchEntireCell($matchEntireCell) - { - $this->matchEntireCell = $matchEntireCell; - } - public function getMatchEntireCell() - { - return $this->matchEntireCell; - } - /** - * @param Google_Service_Sheets_GridRange - */ - public function setRange(Google_Service_Sheets_GridRange $range) - { - $this->range = $range; - } - /** - * @return Google_Service_Sheets_GridRange - */ - public function getRange() - { - return $this->range; - } - public function setReplacement($replacement) - { - $this->replacement = $replacement; - } - public function getReplacement() - { - return $this->replacement; - } - public function setSearchByRegex($searchByRegex) - { - $this->searchByRegex = $searchByRegex; - } - public function getSearchByRegex() - { - return $this->searchByRegex; - } - public function setSheetId($sheetId) - { - $this->sheetId = $sheetId; - } - public function getSheetId() - { - return $this->sheetId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/FindReplaceResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/FindReplaceResponse.php deleted file mode 100644 index c159b931..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/FindReplaceResponse.php +++ /dev/null @@ -1,66 +0,0 @@ -formulasChanged = $formulasChanged; - } - public function getFormulasChanged() - { - return $this->formulasChanged; - } - public function setOccurrencesChanged($occurrencesChanged) - { - $this->occurrencesChanged = $occurrencesChanged; - } - public function getOccurrencesChanged() - { - return $this->occurrencesChanged; - } - public function setRowsChanged($rowsChanged) - { - $this->rowsChanged = $rowsChanged; - } - public function getRowsChanged() - { - return $this->rowsChanged; - } - public function setSheetsChanged($sheetsChanged) - { - $this->sheetsChanged = $sheetsChanged; - } - public function getSheetsChanged() - { - return $this->sheetsChanged; - } - public function setValuesChanged($valuesChanged) - { - $this->valuesChanged = $valuesChanged; - } - public function getValuesChanged() - { - return $this->valuesChanged; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/GetSpreadsheetByDataFilterRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/GetSpreadsheetByDataFilterRequest.php deleted file mode 100644 index 2f1bab30..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/GetSpreadsheetByDataFilterRequest.php +++ /dev/null @@ -1,47 +0,0 @@ -dataFilters = $dataFilters; - } - /** - * @return Google_Service_Sheets_DataFilter - */ - public function getDataFilters() - { - return $this->dataFilters; - } - public function setIncludeGridData($includeGridData) - { - $this->includeGridData = $includeGridData; - } - public function getIncludeGridData() - { - return $this->includeGridData; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/GradientRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/GradientRule.php deleted file mode 100644 index c18a9160..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/GradientRule.php +++ /dev/null @@ -1,69 +0,0 @@ -maxpoint = $maxpoint; - } - /** - * @return Google_Service_Sheets_InterpolationPoint - */ - public function getMaxpoint() - { - return $this->maxpoint; - } - /** - * @param Google_Service_Sheets_InterpolationPoint - */ - public function setMidpoint(Google_Service_Sheets_InterpolationPoint $midpoint) - { - $this->midpoint = $midpoint; - } - /** - * @return Google_Service_Sheets_InterpolationPoint - */ - public function getMidpoint() - { - return $this->midpoint; - } - /** - * @param Google_Service_Sheets_InterpolationPoint - */ - public function setMinpoint(Google_Service_Sheets_InterpolationPoint $minpoint) - { - $this->minpoint = $minpoint; - } - /** - * @return Google_Service_Sheets_InterpolationPoint - */ - public function getMinpoint() - { - return $this->minpoint; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/GridCoordinate.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/GridCoordinate.php deleted file mode 100644 index 5428a506..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/GridCoordinate.php +++ /dev/null @@ -1,48 +0,0 @@ -columnIndex = $columnIndex; - } - public function getColumnIndex() - { - return $this->columnIndex; - } - public function setRowIndex($rowIndex) - { - $this->rowIndex = $rowIndex; - } - public function getRowIndex() - { - return $this->rowIndex; - } - public function setSheetId($sheetId) - { - $this->sheetId = $sheetId; - } - public function getSheetId() - { - return $this->sheetId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/GridData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/GridData.php deleted file mode 100644 index 4857f2e2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/GridData.php +++ /dev/null @@ -1,88 +0,0 @@ -columnMetadata = $columnMetadata; - } - /** - * @return Google_Service_Sheets_DimensionProperties - */ - public function getColumnMetadata() - { - return $this->columnMetadata; - } - /** - * @param Google_Service_Sheets_RowData - */ - public function setRowData($rowData) - { - $this->rowData = $rowData; - } - /** - * @return Google_Service_Sheets_RowData - */ - public function getRowData() - { - return $this->rowData; - } - /** - * @param Google_Service_Sheets_DimensionProperties - */ - public function setRowMetadata($rowMetadata) - { - $this->rowMetadata = $rowMetadata; - } - /** - * @return Google_Service_Sheets_DimensionProperties - */ - public function getRowMetadata() - { - return $this->rowMetadata; - } - public function setStartColumn($startColumn) - { - $this->startColumn = $startColumn; - } - public function getStartColumn() - { - return $this->startColumn; - } - public function setStartRow($startRow) - { - $this->startRow = $startRow; - } - public function getStartRow() - { - return $this->startRow; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/GridProperties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/GridProperties.php deleted file mode 100644 index e7fd5000..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/GridProperties.php +++ /dev/null @@ -1,84 +0,0 @@ -columnCount = $columnCount; - } - public function getColumnCount() - { - return $this->columnCount; - } - public function setColumnGroupControlAfter($columnGroupControlAfter) - { - $this->columnGroupControlAfter = $columnGroupControlAfter; - } - public function getColumnGroupControlAfter() - { - return $this->columnGroupControlAfter; - } - public function setFrozenColumnCount($frozenColumnCount) - { - $this->frozenColumnCount = $frozenColumnCount; - } - public function getFrozenColumnCount() - { - return $this->frozenColumnCount; - } - public function setFrozenRowCount($frozenRowCount) - { - $this->frozenRowCount = $frozenRowCount; - } - public function getFrozenRowCount() - { - return $this->frozenRowCount; - } - public function setHideGridlines($hideGridlines) - { - $this->hideGridlines = $hideGridlines; - } - public function getHideGridlines() - { - return $this->hideGridlines; - } - public function setRowCount($rowCount) - { - $this->rowCount = $rowCount; - } - public function getRowCount() - { - return $this->rowCount; - } - public function setRowGroupControlAfter($rowGroupControlAfter) - { - $this->rowGroupControlAfter = $rowGroupControlAfter; - } - public function getRowGroupControlAfter() - { - return $this->rowGroupControlAfter; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/GridRange.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/GridRange.php deleted file mode 100644 index 16f16f29..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/GridRange.php +++ /dev/null @@ -1,66 +0,0 @@ -endColumnIndex = $endColumnIndex; - } - public function getEndColumnIndex() - { - return $this->endColumnIndex; - } - public function setEndRowIndex($endRowIndex) - { - $this->endRowIndex = $endRowIndex; - } - public function getEndRowIndex() - { - return $this->endRowIndex; - } - public function setSheetId($sheetId) - { - $this->sheetId = $sheetId; - } - public function getSheetId() - { - return $this->sheetId; - } - public function setStartColumnIndex($startColumnIndex) - { - $this->startColumnIndex = $startColumnIndex; - } - public function getStartColumnIndex() - { - return $this->startColumnIndex; - } - public function setStartRowIndex($startRowIndex) - { - $this->startRowIndex = $startRowIndex; - } - public function getStartRowIndex() - { - return $this->startRowIndex; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/HistogramChartSpec.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/HistogramChartSpec.php deleted file mode 100644 index 1e5622b6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/HistogramChartSpec.php +++ /dev/null @@ -1,74 +0,0 @@ -bucketSize = $bucketSize; - } - public function getBucketSize() - { - return $this->bucketSize; - } - public function setLegendPosition($legendPosition) - { - $this->legendPosition = $legendPosition; - } - public function getLegendPosition() - { - return $this->legendPosition; - } - public function setOutlierPercentile($outlierPercentile) - { - $this->outlierPercentile = $outlierPercentile; - } - public function getOutlierPercentile() - { - return $this->outlierPercentile; - } - /** - * @param Google_Service_Sheets_HistogramSeries - */ - public function setSeries($series) - { - $this->series = $series; - } - /** - * @return Google_Service_Sheets_HistogramSeries - */ - public function getSeries() - { - return $this->series; - } - public function setShowItemDividers($showItemDividers) - { - $this->showItemDividers = $showItemDividers; - } - public function getShowItemDividers() - { - return $this->showItemDividers; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/HistogramRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/HistogramRule.php deleted file mode 100644 index 0d539096..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/HistogramRule.php +++ /dev/null @@ -1,48 +0,0 @@ -end = $end; - } - public function getEnd() - { - return $this->end; - } - public function setInterval($interval) - { - $this->interval = $interval; - } - public function getInterval() - { - return $this->interval; - } - public function setStart($start) - { - $this->start = $start; - } - public function getStart() - { - return $this->start; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/HistogramSeries.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/HistogramSeries.php deleted file mode 100644 index 85879feb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/HistogramSeries.php +++ /dev/null @@ -1,69 +0,0 @@ -barColor = $barColor; - } - /** - * @return Google_Service_Sheets_Color - */ - public function getBarColor() - { - return $this->barColor; - } - /** - * @param Google_Service_Sheets_ColorStyle - */ - public function setBarColorStyle(Google_Service_Sheets_ColorStyle $barColorStyle) - { - $this->barColorStyle = $barColorStyle; - } - /** - * @return Google_Service_Sheets_ColorStyle - */ - public function getBarColorStyle() - { - return $this->barColorStyle; - } - /** - * @param Google_Service_Sheets_ChartData - */ - public function setData(Google_Service_Sheets_ChartData $data) - { - $this->data = $data; - } - /** - * @return Google_Service_Sheets_ChartData - */ - public function getData() - { - return $this->data; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/InsertDimensionRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/InsertDimensionRequest.php deleted file mode 100644 index 5af8c8d4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/InsertDimensionRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -inheritFromBefore = $inheritFromBefore; - } - public function getInheritFromBefore() - { - return $this->inheritFromBefore; - } - /** - * @param Google_Service_Sheets_DimensionRange - */ - public function setRange(Google_Service_Sheets_DimensionRange $range) - { - $this->range = $range; - } - /** - * @return Google_Service_Sheets_DimensionRange - */ - public function getRange() - { - return $this->range; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/InsertRangeRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/InsertRangeRequest.php deleted file mode 100644 index bccbbb8b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/InsertRangeRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -range = $range; - } - /** - * @return Google_Service_Sheets_GridRange - */ - public function getRange() - { - return $this->range; - } - public function setShiftDimension($shiftDimension) - { - $this->shiftDimension = $shiftDimension; - } - public function getShiftDimension() - { - return $this->shiftDimension; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/InterpolationPoint.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/InterpolationPoint.php deleted file mode 100644 index 77cc65b0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/InterpolationPoint.php +++ /dev/null @@ -1,71 +0,0 @@ -color = $color; - } - /** - * @return Google_Service_Sheets_Color - */ - public function getColor() - { - return $this->color; - } - /** - * @param Google_Service_Sheets_ColorStyle - */ - public function setColorStyle(Google_Service_Sheets_ColorStyle $colorStyle) - { - $this->colorStyle = $colorStyle; - } - /** - * @return Google_Service_Sheets_ColorStyle - */ - public function getColorStyle() - { - return $this->colorStyle; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/IterativeCalculationSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/IterativeCalculationSettings.php deleted file mode 100644 index ccae59d3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/IterativeCalculationSettings.php +++ /dev/null @@ -1,39 +0,0 @@ -convergenceThreshold = $convergenceThreshold; - } - public function getConvergenceThreshold() - { - return $this->convergenceThreshold; - } - public function setMaxIterations($maxIterations) - { - $this->maxIterations = $maxIterations; - } - public function getMaxIterations() - { - return $this->maxIterations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/KeyValueFormat.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/KeyValueFormat.php deleted file mode 100644 index 7c4ed72d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/KeyValueFormat.php +++ /dev/null @@ -1,53 +0,0 @@ -position = $position; - } - /** - * @return Google_Service_Sheets_TextPosition - */ - public function getPosition() - { - return $this->position; - } - /** - * @param Google_Service_Sheets_TextFormat - */ - public function setTextFormat(Google_Service_Sheets_TextFormat $textFormat) - { - $this->textFormat = $textFormat; - } - /** - * @return Google_Service_Sheets_TextFormat - */ - public function getTextFormat() - { - return $this->textFormat; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/LineStyle.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/LineStyle.php deleted file mode 100644 index e3d3766a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/LineStyle.php +++ /dev/null @@ -1,39 +0,0 @@ -type = $type; - } - public function getType() - { - return $this->type; - } - public function setWidth($width) - { - $this->width = $width; - } - public function getWidth() - { - return $this->width; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/ManualRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/ManualRule.php deleted file mode 100644 index 2f35886f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/ManualRule.php +++ /dev/null @@ -1,38 +0,0 @@ -groups = $groups; - } - /** - * @return Google_Service_Sheets_ManualRuleGroup - */ - public function getGroups() - { - return $this->groups; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/ManualRuleGroup.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/ManualRuleGroup.php deleted file mode 100644 index 1e441e01..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/ManualRuleGroup.php +++ /dev/null @@ -1,54 +0,0 @@ -groupName = $groupName; - } - /** - * @return Google_Service_Sheets_ExtendedValue - */ - public function getGroupName() - { - return $this->groupName; - } - /** - * @param Google_Service_Sheets_ExtendedValue - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Sheets_ExtendedValue - */ - public function getItems() - { - return $this->items; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/MatchedDeveloperMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/MatchedDeveloperMetadata.php deleted file mode 100644 index 29cddbb1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/MatchedDeveloperMetadata.php +++ /dev/null @@ -1,54 +0,0 @@ -dataFilters = $dataFilters; - } - /** - * @return Google_Service_Sheets_DataFilter - */ - public function getDataFilters() - { - return $this->dataFilters; - } - /** - * @param Google_Service_Sheets_DeveloperMetadata - */ - public function setDeveloperMetadata(Google_Service_Sheets_DeveloperMetadata $developerMetadata) - { - $this->developerMetadata = $developerMetadata; - } - /** - * @return Google_Service_Sheets_DeveloperMetadata - */ - public function getDeveloperMetadata() - { - return $this->developerMetadata; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/MatchedValueRange.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/MatchedValueRange.php deleted file mode 100644 index aba4217d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/MatchedValueRange.php +++ /dev/null @@ -1,54 +0,0 @@ -dataFilters = $dataFilters; - } - /** - * @return Google_Service_Sheets_DataFilter - */ - public function getDataFilters() - { - return $this->dataFilters; - } - /** - * @param Google_Service_Sheets_ValueRange - */ - public function setValueRange(Google_Service_Sheets_ValueRange $valueRange) - { - $this->valueRange = $valueRange; - } - /** - * @return Google_Service_Sheets_ValueRange - */ - public function getValueRange() - { - return $this->valueRange; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/MergeCellsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/MergeCellsRequest.php deleted file mode 100644 index 7f928daa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/MergeCellsRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -mergeType = $mergeType; - } - public function getMergeType() - { - return $this->mergeType; - } - /** - * @param Google_Service_Sheets_GridRange - */ - public function setRange(Google_Service_Sheets_GridRange $range) - { - $this->range = $range; - } - /** - * @return Google_Service_Sheets_GridRange - */ - public function getRange() - { - return $this->range; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/MoveDimensionRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/MoveDimensionRequest.php deleted file mode 100644 index 59ef837b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/MoveDimensionRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -destinationIndex = $destinationIndex; - } - public function getDestinationIndex() - { - return $this->destinationIndex; - } - /** - * @param Google_Service_Sheets_DimensionRange - */ - public function setSource(Google_Service_Sheets_DimensionRange $source) - { - $this->source = $source; - } - /** - * @return Google_Service_Sheets_DimensionRange - */ - public function getSource() - { - return $this->source; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/NamedRange.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/NamedRange.php deleted file mode 100644 index ad618d2f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/NamedRange.php +++ /dev/null @@ -1,55 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setNamedRangeId($namedRangeId) - { - $this->namedRangeId = $namedRangeId; - } - public function getNamedRangeId() - { - return $this->namedRangeId; - } - /** - * @param Google_Service_Sheets_GridRange - */ - public function setRange(Google_Service_Sheets_GridRange $range) - { - $this->range = $range; - } - /** - * @return Google_Service_Sheets_GridRange - */ - public function getRange() - { - return $this->range; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/NumberFormat.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/NumberFormat.php deleted file mode 100644 index 895858fd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/NumberFormat.php +++ /dev/null @@ -1,39 +0,0 @@ -pattern = $pattern; - } - public function getPattern() - { - return $this->pattern; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/OrgChartSpec.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/OrgChartSpec.php deleted file mode 100644 index fc4bb674..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/OrgChartSpec.php +++ /dev/null @@ -1,142 +0,0 @@ -labels = $labels; - } - /** - * @return Google_Service_Sheets_ChartData - */ - public function getLabels() - { - return $this->labels; - } - /** - * @param Google_Service_Sheets_Color - */ - public function setNodeColor(Google_Service_Sheets_Color $nodeColor) - { - $this->nodeColor = $nodeColor; - } - /** - * @return Google_Service_Sheets_Color - */ - public function getNodeColor() - { - return $this->nodeColor; - } - /** - * @param Google_Service_Sheets_ColorStyle - */ - public function setNodeColorStyle(Google_Service_Sheets_ColorStyle $nodeColorStyle) - { - $this->nodeColorStyle = $nodeColorStyle; - } - /** - * @return Google_Service_Sheets_ColorStyle - */ - public function getNodeColorStyle() - { - return $this->nodeColorStyle; - } - public function setNodeSize($nodeSize) - { - $this->nodeSize = $nodeSize; - } - public function getNodeSize() - { - return $this->nodeSize; - } - /** - * @param Google_Service_Sheets_ChartData - */ - public function setParentLabels(Google_Service_Sheets_ChartData $parentLabels) - { - $this->parentLabels = $parentLabels; - } - /** - * @return Google_Service_Sheets_ChartData - */ - public function getParentLabels() - { - return $this->parentLabels; - } - /** - * @param Google_Service_Sheets_Color - */ - public function setSelectedNodeColor(Google_Service_Sheets_Color $selectedNodeColor) - { - $this->selectedNodeColor = $selectedNodeColor; - } - /** - * @return Google_Service_Sheets_Color - */ - public function getSelectedNodeColor() - { - return $this->selectedNodeColor; - } - /** - * @param Google_Service_Sheets_ColorStyle - */ - public function setSelectedNodeColorStyle(Google_Service_Sheets_ColorStyle $selectedNodeColorStyle) - { - $this->selectedNodeColorStyle = $selectedNodeColorStyle; - } - /** - * @return Google_Service_Sheets_ColorStyle - */ - public function getSelectedNodeColorStyle() - { - return $this->selectedNodeColorStyle; - } - /** - * @param Google_Service_Sheets_ChartData - */ - public function setTooltips(Google_Service_Sheets_ChartData $tooltips) - { - $this->tooltips = $tooltips; - } - /** - * @return Google_Service_Sheets_ChartData - */ - public function getTooltips() - { - return $this->tooltips; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/OverlayPosition.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/OverlayPosition.php deleted file mode 100644 index c2ec6290..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/OverlayPosition.php +++ /dev/null @@ -1,73 +0,0 @@ -anchorCell = $anchorCell; - } - /** - * @return Google_Service_Sheets_GridCoordinate - */ - public function getAnchorCell() - { - return $this->anchorCell; - } - public function setHeightPixels($heightPixels) - { - $this->heightPixels = $heightPixels; - } - public function getHeightPixels() - { - return $this->heightPixels; - } - public function setOffsetXPixels($offsetXPixels) - { - $this->offsetXPixels = $offsetXPixels; - } - public function getOffsetXPixels() - { - return $this->offsetXPixels; - } - public function setOffsetYPixels($offsetYPixels) - { - $this->offsetYPixels = $offsetYPixels; - } - public function getOffsetYPixels() - { - return $this->offsetYPixels; - } - public function setWidthPixels($widthPixels) - { - $this->widthPixels = $widthPixels; - } - public function getWidthPixels() - { - return $this->widthPixels; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/Padding.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/Padding.php deleted file mode 100644 index fd2dc5d2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/Padding.php +++ /dev/null @@ -1,57 +0,0 @@ -bottom = $bottom; - } - public function getBottom() - { - return $this->bottom; - } - public function setLeft($left) - { - $this->left = $left; - } - public function getLeft() - { - return $this->left; - } - public function setRight($right) - { - $this->right = $right; - } - public function getRight() - { - return $this->right; - } - public function setTop($top) - { - $this->top = $top; - } - public function getTop() - { - return $this->top; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/PasteDataRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/PasteDataRequest.php deleted file mode 100644 index 4018bdd7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/PasteDataRequest.php +++ /dev/null @@ -1,73 +0,0 @@ -coordinate = $coordinate; - } - /** - * @return Google_Service_Sheets_GridCoordinate - */ - public function getCoordinate() - { - return $this->coordinate; - } - public function setData($data) - { - $this->data = $data; - } - public function getData() - { - return $this->data; - } - public function setDelimiter($delimiter) - { - $this->delimiter = $delimiter; - } - public function getDelimiter() - { - return $this->delimiter; - } - public function setHtml($html) - { - $this->html = $html; - } - public function getHtml() - { - return $this->html; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/PieChartSpec.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/PieChartSpec.php deleted file mode 100644 index 21a30a16..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/PieChartSpec.php +++ /dev/null @@ -1,80 +0,0 @@ -domain = $domain; - } - /** - * @return Google_Service_Sheets_ChartData - */ - public function getDomain() - { - return $this->domain; - } - public function setLegendPosition($legendPosition) - { - $this->legendPosition = $legendPosition; - } - public function getLegendPosition() - { - return $this->legendPosition; - } - public function setPieHole($pieHole) - { - $this->pieHole = $pieHole; - } - public function getPieHole() - { - return $this->pieHole; - } - /** - * @param Google_Service_Sheets_ChartData - */ - public function setSeries(Google_Service_Sheets_ChartData $series) - { - $this->series = $series; - } - /** - * @return Google_Service_Sheets_ChartData - */ - public function getSeries() - { - return $this->series; - } - public function setThreeDimensional($threeDimensional) - { - $this->threeDimensional = $threeDimensional; - } - public function getThreeDimensional() - { - return $this->threeDimensional; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/PivotFilterCriteria.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/PivotFilterCriteria.php deleted file mode 100644 index 34887733..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/PivotFilterCriteria.php +++ /dev/null @@ -1,31 +0,0 @@ -visibleValues = $visibleValues; - } - public function getVisibleValues() - { - return $this->visibleValues; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/PivotGroup.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/PivotGroup.php deleted file mode 100644 index 463cc852..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/PivotGroup.php +++ /dev/null @@ -1,115 +0,0 @@ -groupRule = $groupRule; - } - /** - * @return Google_Service_Sheets_PivotGroupRule - */ - public function getGroupRule() - { - return $this->groupRule; - } - public function setLabel($label) - { - $this->label = $label; - } - public function getLabel() - { - return $this->label; - } - public function setRepeatHeadings($repeatHeadings) - { - $this->repeatHeadings = $repeatHeadings; - } - public function getRepeatHeadings() - { - return $this->repeatHeadings; - } - public function setShowTotals($showTotals) - { - $this->showTotals = $showTotals; - } - public function getShowTotals() - { - return $this->showTotals; - } - public function setSortOrder($sortOrder) - { - $this->sortOrder = $sortOrder; - } - public function getSortOrder() - { - return $this->sortOrder; - } - public function setSourceColumnOffset($sourceColumnOffset) - { - $this->sourceColumnOffset = $sourceColumnOffset; - } - public function getSourceColumnOffset() - { - return $this->sourceColumnOffset; - } - /** - * @param Google_Service_Sheets_PivotGroupSortValueBucket - */ - public function setValueBucket(Google_Service_Sheets_PivotGroupSortValueBucket $valueBucket) - { - $this->valueBucket = $valueBucket; - } - /** - * @return Google_Service_Sheets_PivotGroupSortValueBucket - */ - public function getValueBucket() - { - return $this->valueBucket; - } - /** - * @param Google_Service_Sheets_PivotGroupValueMetadata - */ - public function setValueMetadata($valueMetadata) - { - $this->valueMetadata = $valueMetadata; - } - /** - * @return Google_Service_Sheets_PivotGroupValueMetadata - */ - public function getValueMetadata() - { - return $this->valueMetadata; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/PivotGroupRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/PivotGroupRule.php deleted file mode 100644 index ceb79c6e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/PivotGroupRule.php +++ /dev/null @@ -1,69 +0,0 @@ -dateTimeRule = $dateTimeRule; - } - /** - * @return Google_Service_Sheets_DateTimeRule - */ - public function getDateTimeRule() - { - return $this->dateTimeRule; - } - /** - * @param Google_Service_Sheets_HistogramRule - */ - public function setHistogramRule(Google_Service_Sheets_HistogramRule $histogramRule) - { - $this->histogramRule = $histogramRule; - } - /** - * @return Google_Service_Sheets_HistogramRule - */ - public function getHistogramRule() - { - return $this->histogramRule; - } - /** - * @param Google_Service_Sheets_ManualRule - */ - public function setManualRule(Google_Service_Sheets_ManualRule $manualRule) - { - $this->manualRule = $manualRule; - } - /** - * @return Google_Service_Sheets_ManualRule - */ - public function getManualRule() - { - return $this->manualRule; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/PivotGroupSortValueBucket.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/PivotGroupSortValueBucket.php deleted file mode 100644 index 31c48d8f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/PivotGroupSortValueBucket.php +++ /dev/null @@ -1,47 +0,0 @@ -buckets = $buckets; - } - /** - * @return Google_Service_Sheets_ExtendedValue - */ - public function getBuckets() - { - return $this->buckets; - } - public function setValuesIndex($valuesIndex) - { - $this->valuesIndex = $valuesIndex; - } - public function getValuesIndex() - { - return $this->valuesIndex; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/PivotGroupValueMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/PivotGroupValueMetadata.php deleted file mode 100644 index 2d637d58..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/PivotGroupValueMetadata.php +++ /dev/null @@ -1,46 +0,0 @@ -collapsed = $collapsed; - } - public function getCollapsed() - { - return $this->collapsed; - } - /** - * @param Google_Service_Sheets_ExtendedValue - */ - public function setValue(Google_Service_Sheets_ExtendedValue $value) - { - $this->value = $value; - } - /** - * @return Google_Service_Sheets_ExtendedValue - */ - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/PivotTable.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/PivotTable.php deleted file mode 100644 index db87a463..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/PivotTable.php +++ /dev/null @@ -1,111 +0,0 @@ -columns = $columns; - } - /** - * @return Google_Service_Sheets_PivotGroup - */ - public function getColumns() - { - return $this->columns; - } - /** - * @param Google_Service_Sheets_PivotFilterCriteria - */ - public function setCriteria($criteria) - { - $this->criteria = $criteria; - } - /** - * @return Google_Service_Sheets_PivotFilterCriteria - */ - public function getCriteria() - { - return $this->criteria; - } - /** - * @param Google_Service_Sheets_PivotGroup - */ - public function setRows($rows) - { - $this->rows = $rows; - } - /** - * @return Google_Service_Sheets_PivotGroup - */ - public function getRows() - { - return $this->rows; - } - /** - * @param Google_Service_Sheets_GridRange - */ - public function setSource(Google_Service_Sheets_GridRange $source) - { - $this->source = $source; - } - /** - * @return Google_Service_Sheets_GridRange - */ - public function getSource() - { - return $this->source; - } - public function setValueLayout($valueLayout) - { - $this->valueLayout = $valueLayout; - } - public function getValueLayout() - { - return $this->valueLayout; - } - /** - * @param Google_Service_Sheets_PivotValue - */ - public function setValues($values) - { - $this->values = $values; - } - /** - * @return Google_Service_Sheets_PivotValue - */ - public function getValues() - { - return $this->values; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/PivotValue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/PivotValue.php deleted file mode 100644 index e9222f14..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/PivotValue.php +++ /dev/null @@ -1,66 +0,0 @@ -calculatedDisplayType = $calculatedDisplayType; - } - public function getCalculatedDisplayType() - { - return $this->calculatedDisplayType; - } - public function setFormula($formula) - { - $this->formula = $formula; - } - public function getFormula() - { - return $this->formula; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setSourceColumnOffset($sourceColumnOffset) - { - $this->sourceColumnOffset = $sourceColumnOffset; - } - public function getSourceColumnOffset() - { - return $this->sourceColumnOffset; - } - public function setSummarizeFunction($summarizeFunction) - { - $this->summarizeFunction = $summarizeFunction; - } - public function getSummarizeFunction() - { - return $this->summarizeFunction; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/ProtectedRange.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/ProtectedRange.php deleted file mode 100644 index 3d72ec50..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/ProtectedRange.php +++ /dev/null @@ -1,115 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - /** - * @param Google_Service_Sheets_Editors - */ - public function setEditors(Google_Service_Sheets_Editors $editors) - { - $this->editors = $editors; - } - /** - * @return Google_Service_Sheets_Editors - */ - public function getEditors() - { - return $this->editors; - } - public function setNamedRangeId($namedRangeId) - { - $this->namedRangeId = $namedRangeId; - } - public function getNamedRangeId() - { - return $this->namedRangeId; - } - public function setProtectedRangeId($protectedRangeId) - { - $this->protectedRangeId = $protectedRangeId; - } - public function getProtectedRangeId() - { - return $this->protectedRangeId; - } - /** - * @param Google_Service_Sheets_GridRange - */ - public function setRange(Google_Service_Sheets_GridRange $range) - { - $this->range = $range; - } - /** - * @return Google_Service_Sheets_GridRange - */ - public function getRange() - { - return $this->range; - } - public function setRequestingUserCanEdit($requestingUserCanEdit) - { - $this->requestingUserCanEdit = $requestingUserCanEdit; - } - public function getRequestingUserCanEdit() - { - return $this->requestingUserCanEdit; - } - /** - * @param Google_Service_Sheets_GridRange - */ - public function setUnprotectedRanges($unprotectedRanges) - { - $this->unprotectedRanges = $unprotectedRanges; - } - /** - * @return Google_Service_Sheets_GridRange - */ - public function getUnprotectedRanges() - { - return $this->unprotectedRanges; - } - public function setWarningOnly($warningOnly) - { - $this->warningOnly = $warningOnly; - } - public function getWarningOnly() - { - return $this->warningOnly; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/RandomizeRangeRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/RandomizeRangeRequest.php deleted file mode 100644 index c3fd0a50..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/RandomizeRangeRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -range = $range; - } - /** - * @return Google_Service_Sheets_GridRange - */ - public function getRange() - { - return $this->range; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/RepeatCellRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/RepeatCellRequest.php deleted file mode 100644 index 8c435835..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/RepeatCellRequest.php +++ /dev/null @@ -1,62 +0,0 @@ -cell = $cell; - } - /** - * @return Google_Service_Sheets_CellData - */ - public function getCell() - { - return $this->cell; - } - public function setFields($fields) - { - $this->fields = $fields; - } - public function getFields() - { - return $this->fields; - } - /** - * @param Google_Service_Sheets_GridRange - */ - public function setRange(Google_Service_Sheets_GridRange $range) - { - $this->range = $range; - } - /** - * @return Google_Service_Sheets_GridRange - */ - public function getRange() - { - return $this->range; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/Request.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/Request.php deleted file mode 100644 index 0a12fe8e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/Request.php +++ /dev/null @@ -1,981 +0,0 @@ -addBanding = $addBanding; - } - /** - * @return Google_Service_Sheets_AddBandingRequest - */ - public function getAddBanding() - { - return $this->addBanding; - } - /** - * @param Google_Service_Sheets_AddChartRequest - */ - public function setAddChart(Google_Service_Sheets_AddChartRequest $addChart) - { - $this->addChart = $addChart; - } - /** - * @return Google_Service_Sheets_AddChartRequest - */ - public function getAddChart() - { - return $this->addChart; - } - /** - * @param Google_Service_Sheets_AddConditionalFormatRuleRequest - */ - public function setAddConditionalFormatRule(Google_Service_Sheets_AddConditionalFormatRuleRequest $addConditionalFormatRule) - { - $this->addConditionalFormatRule = $addConditionalFormatRule; - } - /** - * @return Google_Service_Sheets_AddConditionalFormatRuleRequest - */ - public function getAddConditionalFormatRule() - { - return $this->addConditionalFormatRule; - } - /** - * @param Google_Service_Sheets_AddDimensionGroupRequest - */ - public function setAddDimensionGroup(Google_Service_Sheets_AddDimensionGroupRequest $addDimensionGroup) - { - $this->addDimensionGroup = $addDimensionGroup; - } - /** - * @return Google_Service_Sheets_AddDimensionGroupRequest - */ - public function getAddDimensionGroup() - { - return $this->addDimensionGroup; - } - /** - * @param Google_Service_Sheets_AddFilterViewRequest - */ - public function setAddFilterView(Google_Service_Sheets_AddFilterViewRequest $addFilterView) - { - $this->addFilterView = $addFilterView; - } - /** - * @return Google_Service_Sheets_AddFilterViewRequest - */ - public function getAddFilterView() - { - return $this->addFilterView; - } - /** - * @param Google_Service_Sheets_AddNamedRangeRequest - */ - public function setAddNamedRange(Google_Service_Sheets_AddNamedRangeRequest $addNamedRange) - { - $this->addNamedRange = $addNamedRange; - } - /** - * @return Google_Service_Sheets_AddNamedRangeRequest - */ - public function getAddNamedRange() - { - return $this->addNamedRange; - } - /** - * @param Google_Service_Sheets_AddProtectedRangeRequest - */ - public function setAddProtectedRange(Google_Service_Sheets_AddProtectedRangeRequest $addProtectedRange) - { - $this->addProtectedRange = $addProtectedRange; - } - /** - * @return Google_Service_Sheets_AddProtectedRangeRequest - */ - public function getAddProtectedRange() - { - return $this->addProtectedRange; - } - /** - * @param Google_Service_Sheets_AddSheetRequest - */ - public function setAddSheet(Google_Service_Sheets_AddSheetRequest $addSheet) - { - $this->addSheet = $addSheet; - } - /** - * @return Google_Service_Sheets_AddSheetRequest - */ - public function getAddSheet() - { - return $this->addSheet; - } - /** - * @param Google_Service_Sheets_AddSlicerRequest - */ - public function setAddSlicer(Google_Service_Sheets_AddSlicerRequest $addSlicer) - { - $this->addSlicer = $addSlicer; - } - /** - * @return Google_Service_Sheets_AddSlicerRequest - */ - public function getAddSlicer() - { - return $this->addSlicer; - } - /** - * @param Google_Service_Sheets_AppendCellsRequest - */ - public function setAppendCells(Google_Service_Sheets_AppendCellsRequest $appendCells) - { - $this->appendCells = $appendCells; - } - /** - * @return Google_Service_Sheets_AppendCellsRequest - */ - public function getAppendCells() - { - return $this->appendCells; - } - /** - * @param Google_Service_Sheets_AppendDimensionRequest - */ - public function setAppendDimension(Google_Service_Sheets_AppendDimensionRequest $appendDimension) - { - $this->appendDimension = $appendDimension; - } - /** - * @return Google_Service_Sheets_AppendDimensionRequest - */ - public function getAppendDimension() - { - return $this->appendDimension; - } - /** - * @param Google_Service_Sheets_AutoFillRequest - */ - public function setAutoFill(Google_Service_Sheets_AutoFillRequest $autoFill) - { - $this->autoFill = $autoFill; - } - /** - * @return Google_Service_Sheets_AutoFillRequest - */ - public function getAutoFill() - { - return $this->autoFill; - } - /** - * @param Google_Service_Sheets_AutoResizeDimensionsRequest - */ - public function setAutoResizeDimensions(Google_Service_Sheets_AutoResizeDimensionsRequest $autoResizeDimensions) - { - $this->autoResizeDimensions = $autoResizeDimensions; - } - /** - * @return Google_Service_Sheets_AutoResizeDimensionsRequest - */ - public function getAutoResizeDimensions() - { - return $this->autoResizeDimensions; - } - /** - * @param Google_Service_Sheets_ClearBasicFilterRequest - */ - public function setClearBasicFilter(Google_Service_Sheets_ClearBasicFilterRequest $clearBasicFilter) - { - $this->clearBasicFilter = $clearBasicFilter; - } - /** - * @return Google_Service_Sheets_ClearBasicFilterRequest - */ - public function getClearBasicFilter() - { - return $this->clearBasicFilter; - } - /** - * @param Google_Service_Sheets_CopyPasteRequest - */ - public function setCopyPaste(Google_Service_Sheets_CopyPasteRequest $copyPaste) - { - $this->copyPaste = $copyPaste; - } - /** - * @return Google_Service_Sheets_CopyPasteRequest - */ - public function getCopyPaste() - { - return $this->copyPaste; - } - /** - * @param Google_Service_Sheets_CreateDeveloperMetadataRequest - */ - public function setCreateDeveloperMetadata(Google_Service_Sheets_CreateDeveloperMetadataRequest $createDeveloperMetadata) - { - $this->createDeveloperMetadata = $createDeveloperMetadata; - } - /** - * @return Google_Service_Sheets_CreateDeveloperMetadataRequest - */ - public function getCreateDeveloperMetadata() - { - return $this->createDeveloperMetadata; - } - /** - * @param Google_Service_Sheets_CutPasteRequest - */ - public function setCutPaste(Google_Service_Sheets_CutPasteRequest $cutPaste) - { - $this->cutPaste = $cutPaste; - } - /** - * @return Google_Service_Sheets_CutPasteRequest - */ - public function getCutPaste() - { - return $this->cutPaste; - } - /** - * @param Google_Service_Sheets_DeleteBandingRequest - */ - public function setDeleteBanding(Google_Service_Sheets_DeleteBandingRequest $deleteBanding) - { - $this->deleteBanding = $deleteBanding; - } - /** - * @return Google_Service_Sheets_DeleteBandingRequest - */ - public function getDeleteBanding() - { - return $this->deleteBanding; - } - /** - * @param Google_Service_Sheets_DeleteConditionalFormatRuleRequest - */ - public function setDeleteConditionalFormatRule(Google_Service_Sheets_DeleteConditionalFormatRuleRequest $deleteConditionalFormatRule) - { - $this->deleteConditionalFormatRule = $deleteConditionalFormatRule; - } - /** - * @return Google_Service_Sheets_DeleteConditionalFormatRuleRequest - */ - public function getDeleteConditionalFormatRule() - { - return $this->deleteConditionalFormatRule; - } - /** - * @param Google_Service_Sheets_DeleteDeveloperMetadataRequest - */ - public function setDeleteDeveloperMetadata(Google_Service_Sheets_DeleteDeveloperMetadataRequest $deleteDeveloperMetadata) - { - $this->deleteDeveloperMetadata = $deleteDeveloperMetadata; - } - /** - * @return Google_Service_Sheets_DeleteDeveloperMetadataRequest - */ - public function getDeleteDeveloperMetadata() - { - return $this->deleteDeveloperMetadata; - } - /** - * @param Google_Service_Sheets_DeleteDimensionRequest - */ - public function setDeleteDimension(Google_Service_Sheets_DeleteDimensionRequest $deleteDimension) - { - $this->deleteDimension = $deleteDimension; - } - /** - * @return Google_Service_Sheets_DeleteDimensionRequest - */ - public function getDeleteDimension() - { - return $this->deleteDimension; - } - /** - * @param Google_Service_Sheets_DeleteDimensionGroupRequest - */ - public function setDeleteDimensionGroup(Google_Service_Sheets_DeleteDimensionGroupRequest $deleteDimensionGroup) - { - $this->deleteDimensionGroup = $deleteDimensionGroup; - } - /** - * @return Google_Service_Sheets_DeleteDimensionGroupRequest - */ - public function getDeleteDimensionGroup() - { - return $this->deleteDimensionGroup; - } - /** - * @param Google_Service_Sheets_DeleteDuplicatesRequest - */ - public function setDeleteDuplicates(Google_Service_Sheets_DeleteDuplicatesRequest $deleteDuplicates) - { - $this->deleteDuplicates = $deleteDuplicates; - } - /** - * @return Google_Service_Sheets_DeleteDuplicatesRequest - */ - public function getDeleteDuplicates() - { - return $this->deleteDuplicates; - } - /** - * @param Google_Service_Sheets_DeleteEmbeddedObjectRequest - */ - public function setDeleteEmbeddedObject(Google_Service_Sheets_DeleteEmbeddedObjectRequest $deleteEmbeddedObject) - { - $this->deleteEmbeddedObject = $deleteEmbeddedObject; - } - /** - * @return Google_Service_Sheets_DeleteEmbeddedObjectRequest - */ - public function getDeleteEmbeddedObject() - { - return $this->deleteEmbeddedObject; - } - /** - * @param Google_Service_Sheets_DeleteFilterViewRequest - */ - public function setDeleteFilterView(Google_Service_Sheets_DeleteFilterViewRequest $deleteFilterView) - { - $this->deleteFilterView = $deleteFilterView; - } - /** - * @return Google_Service_Sheets_DeleteFilterViewRequest - */ - public function getDeleteFilterView() - { - return $this->deleteFilterView; - } - /** - * @param Google_Service_Sheets_DeleteNamedRangeRequest - */ - public function setDeleteNamedRange(Google_Service_Sheets_DeleteNamedRangeRequest $deleteNamedRange) - { - $this->deleteNamedRange = $deleteNamedRange; - } - /** - * @return Google_Service_Sheets_DeleteNamedRangeRequest - */ - public function getDeleteNamedRange() - { - return $this->deleteNamedRange; - } - /** - * @param Google_Service_Sheets_DeleteProtectedRangeRequest - */ - public function setDeleteProtectedRange(Google_Service_Sheets_DeleteProtectedRangeRequest $deleteProtectedRange) - { - $this->deleteProtectedRange = $deleteProtectedRange; - } - /** - * @return Google_Service_Sheets_DeleteProtectedRangeRequest - */ - public function getDeleteProtectedRange() - { - return $this->deleteProtectedRange; - } - /** - * @param Google_Service_Sheets_DeleteRangeRequest - */ - public function setDeleteRange(Google_Service_Sheets_DeleteRangeRequest $deleteRange) - { - $this->deleteRange = $deleteRange; - } - /** - * @return Google_Service_Sheets_DeleteRangeRequest - */ - public function getDeleteRange() - { - return $this->deleteRange; - } - /** - * @param Google_Service_Sheets_DeleteSheetRequest - */ - public function setDeleteSheet(Google_Service_Sheets_DeleteSheetRequest $deleteSheet) - { - $this->deleteSheet = $deleteSheet; - } - /** - * @return Google_Service_Sheets_DeleteSheetRequest - */ - public function getDeleteSheet() - { - return $this->deleteSheet; - } - /** - * @param Google_Service_Sheets_DuplicateFilterViewRequest - */ - public function setDuplicateFilterView(Google_Service_Sheets_DuplicateFilterViewRequest $duplicateFilterView) - { - $this->duplicateFilterView = $duplicateFilterView; - } - /** - * @return Google_Service_Sheets_DuplicateFilterViewRequest - */ - public function getDuplicateFilterView() - { - return $this->duplicateFilterView; - } - /** - * @param Google_Service_Sheets_DuplicateSheetRequest - */ - public function setDuplicateSheet(Google_Service_Sheets_DuplicateSheetRequest $duplicateSheet) - { - $this->duplicateSheet = $duplicateSheet; - } - /** - * @return Google_Service_Sheets_DuplicateSheetRequest - */ - public function getDuplicateSheet() - { - return $this->duplicateSheet; - } - /** - * @param Google_Service_Sheets_FindReplaceRequest - */ - public function setFindReplace(Google_Service_Sheets_FindReplaceRequest $findReplace) - { - $this->findReplace = $findReplace; - } - /** - * @return Google_Service_Sheets_FindReplaceRequest - */ - public function getFindReplace() - { - return $this->findReplace; - } - /** - * @param Google_Service_Sheets_InsertDimensionRequest - */ - public function setInsertDimension(Google_Service_Sheets_InsertDimensionRequest $insertDimension) - { - $this->insertDimension = $insertDimension; - } - /** - * @return Google_Service_Sheets_InsertDimensionRequest - */ - public function getInsertDimension() - { - return $this->insertDimension; - } - /** - * @param Google_Service_Sheets_InsertRangeRequest - */ - public function setInsertRange(Google_Service_Sheets_InsertRangeRequest $insertRange) - { - $this->insertRange = $insertRange; - } - /** - * @return Google_Service_Sheets_InsertRangeRequest - */ - public function getInsertRange() - { - return $this->insertRange; - } - /** - * @param Google_Service_Sheets_MergeCellsRequest - */ - public function setMergeCells(Google_Service_Sheets_MergeCellsRequest $mergeCells) - { - $this->mergeCells = $mergeCells; - } - /** - * @return Google_Service_Sheets_MergeCellsRequest - */ - public function getMergeCells() - { - return $this->mergeCells; - } - /** - * @param Google_Service_Sheets_MoveDimensionRequest - */ - public function setMoveDimension(Google_Service_Sheets_MoveDimensionRequest $moveDimension) - { - $this->moveDimension = $moveDimension; - } - /** - * @return Google_Service_Sheets_MoveDimensionRequest - */ - public function getMoveDimension() - { - return $this->moveDimension; - } - /** - * @param Google_Service_Sheets_PasteDataRequest - */ - public function setPasteData(Google_Service_Sheets_PasteDataRequest $pasteData) - { - $this->pasteData = $pasteData; - } - /** - * @return Google_Service_Sheets_PasteDataRequest - */ - public function getPasteData() - { - return $this->pasteData; - } - /** - * @param Google_Service_Sheets_RandomizeRangeRequest - */ - public function setRandomizeRange(Google_Service_Sheets_RandomizeRangeRequest $randomizeRange) - { - $this->randomizeRange = $randomizeRange; - } - /** - * @return Google_Service_Sheets_RandomizeRangeRequest - */ - public function getRandomizeRange() - { - return $this->randomizeRange; - } - /** - * @param Google_Service_Sheets_RepeatCellRequest - */ - public function setRepeatCell(Google_Service_Sheets_RepeatCellRequest $repeatCell) - { - $this->repeatCell = $repeatCell; - } - /** - * @return Google_Service_Sheets_RepeatCellRequest - */ - public function getRepeatCell() - { - return $this->repeatCell; - } - /** - * @param Google_Service_Sheets_SetBasicFilterRequest - */ - public function setSetBasicFilter(Google_Service_Sheets_SetBasicFilterRequest $setBasicFilter) - { - $this->setBasicFilter = $setBasicFilter; - } - /** - * @return Google_Service_Sheets_SetBasicFilterRequest - */ - public function getSetBasicFilter() - { - return $this->setBasicFilter; - } - /** - * @param Google_Service_Sheets_SetDataValidationRequest - */ - public function setSetDataValidation(Google_Service_Sheets_SetDataValidationRequest $setDataValidation) - { - $this->setDataValidation = $setDataValidation; - } - /** - * @return Google_Service_Sheets_SetDataValidationRequest - */ - public function getSetDataValidation() - { - return $this->setDataValidation; - } - /** - * @param Google_Service_Sheets_SortRangeRequest - */ - public function setSortRange(Google_Service_Sheets_SortRangeRequest $sortRange) - { - $this->sortRange = $sortRange; - } - /** - * @return Google_Service_Sheets_SortRangeRequest - */ - public function getSortRange() - { - return $this->sortRange; - } - /** - * @param Google_Service_Sheets_TextToColumnsRequest - */ - public function setTextToColumns(Google_Service_Sheets_TextToColumnsRequest $textToColumns) - { - $this->textToColumns = $textToColumns; - } - /** - * @return Google_Service_Sheets_TextToColumnsRequest - */ - public function getTextToColumns() - { - return $this->textToColumns; - } - /** - * @param Google_Service_Sheets_TrimWhitespaceRequest - */ - public function setTrimWhitespace(Google_Service_Sheets_TrimWhitespaceRequest $trimWhitespace) - { - $this->trimWhitespace = $trimWhitespace; - } - /** - * @return Google_Service_Sheets_TrimWhitespaceRequest - */ - public function getTrimWhitespace() - { - return $this->trimWhitespace; - } - /** - * @param Google_Service_Sheets_UnmergeCellsRequest - */ - public function setUnmergeCells(Google_Service_Sheets_UnmergeCellsRequest $unmergeCells) - { - $this->unmergeCells = $unmergeCells; - } - /** - * @return Google_Service_Sheets_UnmergeCellsRequest - */ - public function getUnmergeCells() - { - return $this->unmergeCells; - } - /** - * @param Google_Service_Sheets_UpdateBandingRequest - */ - public function setUpdateBanding(Google_Service_Sheets_UpdateBandingRequest $updateBanding) - { - $this->updateBanding = $updateBanding; - } - /** - * @return Google_Service_Sheets_UpdateBandingRequest - */ - public function getUpdateBanding() - { - return $this->updateBanding; - } - /** - * @param Google_Service_Sheets_UpdateBordersRequest - */ - public function setUpdateBorders(Google_Service_Sheets_UpdateBordersRequest $updateBorders) - { - $this->updateBorders = $updateBorders; - } - /** - * @return Google_Service_Sheets_UpdateBordersRequest - */ - public function getUpdateBorders() - { - return $this->updateBorders; - } - /** - * @param Google_Service_Sheets_UpdateCellsRequest - */ - public function setUpdateCells(Google_Service_Sheets_UpdateCellsRequest $updateCells) - { - $this->updateCells = $updateCells; - } - /** - * @return Google_Service_Sheets_UpdateCellsRequest - */ - public function getUpdateCells() - { - return $this->updateCells; - } - /** - * @param Google_Service_Sheets_UpdateChartSpecRequest - */ - public function setUpdateChartSpec(Google_Service_Sheets_UpdateChartSpecRequest $updateChartSpec) - { - $this->updateChartSpec = $updateChartSpec; - } - /** - * @return Google_Service_Sheets_UpdateChartSpecRequest - */ - public function getUpdateChartSpec() - { - return $this->updateChartSpec; - } - /** - * @param Google_Service_Sheets_UpdateConditionalFormatRuleRequest - */ - public function setUpdateConditionalFormatRule(Google_Service_Sheets_UpdateConditionalFormatRuleRequest $updateConditionalFormatRule) - { - $this->updateConditionalFormatRule = $updateConditionalFormatRule; - } - /** - * @return Google_Service_Sheets_UpdateConditionalFormatRuleRequest - */ - public function getUpdateConditionalFormatRule() - { - return $this->updateConditionalFormatRule; - } - /** - * @param Google_Service_Sheets_UpdateDeveloperMetadataRequest - */ - public function setUpdateDeveloperMetadata(Google_Service_Sheets_UpdateDeveloperMetadataRequest $updateDeveloperMetadata) - { - $this->updateDeveloperMetadata = $updateDeveloperMetadata; - } - /** - * @return Google_Service_Sheets_UpdateDeveloperMetadataRequest - */ - public function getUpdateDeveloperMetadata() - { - return $this->updateDeveloperMetadata; - } - /** - * @param Google_Service_Sheets_UpdateDimensionGroupRequest - */ - public function setUpdateDimensionGroup(Google_Service_Sheets_UpdateDimensionGroupRequest $updateDimensionGroup) - { - $this->updateDimensionGroup = $updateDimensionGroup; - } - /** - * @return Google_Service_Sheets_UpdateDimensionGroupRequest - */ - public function getUpdateDimensionGroup() - { - return $this->updateDimensionGroup; - } - /** - * @param Google_Service_Sheets_UpdateDimensionPropertiesRequest - */ - public function setUpdateDimensionProperties(Google_Service_Sheets_UpdateDimensionPropertiesRequest $updateDimensionProperties) - { - $this->updateDimensionProperties = $updateDimensionProperties; - } - /** - * @return Google_Service_Sheets_UpdateDimensionPropertiesRequest - */ - public function getUpdateDimensionProperties() - { - return $this->updateDimensionProperties; - } - /** - * @param Google_Service_Sheets_UpdateEmbeddedObjectPositionRequest - */ - public function setUpdateEmbeddedObjectPosition(Google_Service_Sheets_UpdateEmbeddedObjectPositionRequest $updateEmbeddedObjectPosition) - { - $this->updateEmbeddedObjectPosition = $updateEmbeddedObjectPosition; - } - /** - * @return Google_Service_Sheets_UpdateEmbeddedObjectPositionRequest - */ - public function getUpdateEmbeddedObjectPosition() - { - return $this->updateEmbeddedObjectPosition; - } - /** - * @param Google_Service_Sheets_UpdateFilterViewRequest - */ - public function setUpdateFilterView(Google_Service_Sheets_UpdateFilterViewRequest $updateFilterView) - { - $this->updateFilterView = $updateFilterView; - } - /** - * @return Google_Service_Sheets_UpdateFilterViewRequest - */ - public function getUpdateFilterView() - { - return $this->updateFilterView; - } - /** - * @param Google_Service_Sheets_UpdateNamedRangeRequest - */ - public function setUpdateNamedRange(Google_Service_Sheets_UpdateNamedRangeRequest $updateNamedRange) - { - $this->updateNamedRange = $updateNamedRange; - } - /** - * @return Google_Service_Sheets_UpdateNamedRangeRequest - */ - public function getUpdateNamedRange() - { - return $this->updateNamedRange; - } - /** - * @param Google_Service_Sheets_UpdateProtectedRangeRequest - */ - public function setUpdateProtectedRange(Google_Service_Sheets_UpdateProtectedRangeRequest $updateProtectedRange) - { - $this->updateProtectedRange = $updateProtectedRange; - } - /** - * @return Google_Service_Sheets_UpdateProtectedRangeRequest - */ - public function getUpdateProtectedRange() - { - return $this->updateProtectedRange; - } - /** - * @param Google_Service_Sheets_UpdateSheetPropertiesRequest - */ - public function setUpdateSheetProperties(Google_Service_Sheets_UpdateSheetPropertiesRequest $updateSheetProperties) - { - $this->updateSheetProperties = $updateSheetProperties; - } - /** - * @return Google_Service_Sheets_UpdateSheetPropertiesRequest - */ - public function getUpdateSheetProperties() - { - return $this->updateSheetProperties; - } - /** - * @param Google_Service_Sheets_UpdateSlicerSpecRequest - */ - public function setUpdateSlicerSpec(Google_Service_Sheets_UpdateSlicerSpecRequest $updateSlicerSpec) - { - $this->updateSlicerSpec = $updateSlicerSpec; - } - /** - * @return Google_Service_Sheets_UpdateSlicerSpecRequest - */ - public function getUpdateSlicerSpec() - { - return $this->updateSlicerSpec; - } - /** - * @param Google_Service_Sheets_UpdateSpreadsheetPropertiesRequest - */ - public function setUpdateSpreadsheetProperties(Google_Service_Sheets_UpdateSpreadsheetPropertiesRequest $updateSpreadsheetProperties) - { - $this->updateSpreadsheetProperties = $updateSpreadsheetProperties; - } - /** - * @return Google_Service_Sheets_UpdateSpreadsheetPropertiesRequest - */ - public function getUpdateSpreadsheetProperties() - { - return $this->updateSpreadsheetProperties; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/Resource/Spreadsheets.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/Resource/Spreadsheets.php deleted file mode 100644 index 9ac3b288..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/Resource/Spreadsheets.php +++ /dev/null @@ -1,139 +0,0 @@ - - * $sheetsService = new Google_Service_Sheets(...); - * $spreadsheets = $sheetsService->spreadsheets; - * - */ -class Google_Service_Sheets_Resource_Spreadsheets extends Google_Service_Resource -{ - /** - * Applies one or more updates to the spreadsheet. - * - * Each request is validated before being applied. If any request is not valid - * then the entire request will fail and nothing will be applied. - * - * Some requests have replies to give you some information about how they are - * applied. The replies will mirror the requests. For example, if you applied 4 - * updates and the 3rd one had a reply, then the response will have 2 empty - * replies, the actual reply, and another empty reply, in that order. - * - * Due to the collaborative nature of spreadsheets, it is not guaranteed that - * the spreadsheet will reflect exactly your changes after this completes, - * however it is guaranteed that the updates in the request will be applied - * together atomically. Your changes may be altered with respect to collaborator - * changes. If there are no collaborators, the spreadsheet should reflect your - * changes. (spreadsheets.batchUpdate) - * - * @param string $spreadsheetId The spreadsheet to apply the updates to. - * @param Google_Service_Sheets_BatchUpdateSpreadsheetRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Sheets_BatchUpdateSpreadsheetResponse - */ - public function batchUpdate($spreadsheetId, Google_Service_Sheets_BatchUpdateSpreadsheetRequest $postBody, $optParams = array()) - { - $params = array('spreadsheetId' => $spreadsheetId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('batchUpdate', array($params), "Google_Service_Sheets_BatchUpdateSpreadsheetResponse"); - } - /** - * Creates a spreadsheet, returning the newly created spreadsheet. - * (spreadsheets.create) - * - * @param Google_Service_Sheets_Spreadsheet $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Sheets_Spreadsheet - */ - public function create(Google_Service_Sheets_Spreadsheet $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Sheets_Spreadsheet"); - } - /** - * Returns the spreadsheet at the given ID. The caller must specify the - * spreadsheet ID. - * - * By default, data within grids will not be returned. You can include grid data - * one of two ways: - * - * * Specify a field mask listing your desired fields using the `fields` URL - * parameter in HTTP - * - * * Set the includeGridData URL parameter to true. If a field mask is set, the - * `includeGridData` parameter is ignored - * - * For large spreadsheets, it is recommended to retrieve only the specific - * fields of the spreadsheet that you want. - * - * To retrieve only subsets of the spreadsheet, use the ranges URL parameter. - * Multiple ranges can be specified. Limiting the range will return only the - * portions of the spreadsheet that intersect the requested ranges. Ranges are - * specified using A1 notation. (spreadsheets.get) - * - * @param string $spreadsheetId The spreadsheet to request. - * @param array $optParams Optional parameters. - * - * @opt_param string ranges The ranges to retrieve from the spreadsheet. - * @opt_param bool includeGridData True if grid data should be returned. This - * parameter is ignored if a field mask was set in the request. - * @return Google_Service_Sheets_Spreadsheet - */ - public function get($spreadsheetId, $optParams = array()) - { - $params = array('spreadsheetId' => $spreadsheetId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Sheets_Spreadsheet"); - } - /** - * Returns the spreadsheet at the given ID. The caller must specify the - * spreadsheet ID. - * - * This method differs from GetSpreadsheet in that it allows selecting which - * subsets of spreadsheet data to return by specifying a dataFilters parameter. - * Multiple DataFilters can be specified. Specifying one or more data filters - * will return the portions of the spreadsheet that intersect ranges matched by - * any of the filters. - * - * By default, data within grids will not be returned. You can include grid data - * one of two ways: - * - * * Specify a field mask listing your desired fields using the `fields` URL - * parameter in HTTP - * - * * Set the includeGridData parameter to true. If a field mask is set, the - * `includeGridData` parameter is ignored - * - * For large spreadsheets, it is recommended to retrieve only the specific - * fields of the spreadsheet that you want. (spreadsheets.getByDataFilter) - * - * @param string $spreadsheetId The spreadsheet to request. - * @param Google_Service_Sheets_GetSpreadsheetByDataFilterRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Sheets_Spreadsheet - */ - public function getByDataFilter($spreadsheetId, Google_Service_Sheets_GetSpreadsheetByDataFilterRequest $postBody, $optParams = array()) - { - $params = array('spreadsheetId' => $spreadsheetId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('getByDataFilter', array($params), "Google_Service_Sheets_Spreadsheet"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/Resource/SpreadsheetsDeveloperMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/Resource/SpreadsheetsDeveloperMetadata.php deleted file mode 100644 index d89e52d7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/Resource/SpreadsheetsDeveloperMetadata.php +++ /dev/null @@ -1,65 +0,0 @@ - - * $sheetsService = new Google_Service_Sheets(...); - * $developerMetadata = $sheetsService->developerMetadata; - * - */ -class Google_Service_Sheets_Resource_SpreadsheetsDeveloperMetadata extends Google_Service_Resource -{ - /** - * Returns the developer metadata with the specified ID. The caller must specify - * the spreadsheet ID and the developer metadata's unique metadataId. - * (developerMetadata.get) - * - * @param string $spreadsheetId The ID of the spreadsheet to retrieve metadata - * from. - * @param int $metadataId The ID of the developer metadata to retrieve. - * @param array $optParams Optional parameters. - * @return Google_Service_Sheets_DeveloperMetadata - */ - public function get($spreadsheetId, $metadataId, $optParams = array()) - { - $params = array('spreadsheetId' => $spreadsheetId, 'metadataId' => $metadataId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Sheets_DeveloperMetadata"); - } - /** - * Returns all developer metadata matching the specified DataFilter. If the - * provided DataFilter represents a DeveloperMetadataLookup object, this will - * return all DeveloperMetadata entries selected by it. If the DataFilter - * represents a location in a spreadsheet, this will return all developer - * metadata associated with locations intersecting that region. - * (developerMetadata.search) - * - * @param string $spreadsheetId The ID of the spreadsheet to retrieve metadata - * from. - * @param Google_Service_Sheets_SearchDeveloperMetadataRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Sheets_SearchDeveloperMetadataResponse - */ - public function search($spreadsheetId, Google_Service_Sheets_SearchDeveloperMetadataRequest $postBody, $optParams = array()) - { - $params = array('spreadsheetId' => $spreadsheetId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('search', array($params), "Google_Service_Sheets_SearchDeveloperMetadataResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/Resource/SpreadsheetsSheets.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/Resource/SpreadsheetsSheets.php deleted file mode 100644 index d9cbd904..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/Resource/SpreadsheetsSheets.php +++ /dev/null @@ -1,45 +0,0 @@ - - * $sheetsService = new Google_Service_Sheets(...); - * $sheets = $sheetsService->sheets; - * - */ -class Google_Service_Sheets_Resource_SpreadsheetsSheets extends Google_Service_Resource -{ - /** - * Copies a single sheet from a spreadsheet to another spreadsheet. Returns the - * properties of the newly created sheet. (sheets.copyTo) - * - * @param string $spreadsheetId The ID of the spreadsheet containing the sheet - * to copy. - * @param int $sheetId The ID of the sheet to copy. - * @param Google_Service_Sheets_CopySheetToAnotherSpreadsheetRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Sheets_SheetProperties - */ - public function copyTo($spreadsheetId, $sheetId, Google_Service_Sheets_CopySheetToAnotherSpreadsheetRequest $postBody, $optParams = array()) - { - $params = array('spreadsheetId' => $spreadsheetId, 'sheetId' => $sheetId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('copyTo', array($params), "Google_Service_Sheets_SheetProperties"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/Resource/SpreadsheetsValues.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/Resource/SpreadsheetsValues.php deleted file mode 100644 index f7b58b91..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/Resource/SpreadsheetsValues.php +++ /dev/null @@ -1,252 +0,0 @@ - - * $sheetsService = new Google_Service_Sheets(...); - * $values = $sheetsService->values; - * - */ -class Google_Service_Sheets_Resource_SpreadsheetsValues extends Google_Service_Resource -{ - /** - * Appends values to a spreadsheet. The input range is used to search for - * existing data and find a "table" within that range. Values will be appended - * to the next row of the table, starting with the first column of the table. - * See the [guide](/sheets/api/guides/values#appending_values) and [sample - * code](/sheets/api/samples/writing#append_values) for specific details of how - * tables are detected and data is appended. - * - * The caller must specify the spreadsheet ID, range, and a valueInputOption. - * The `valueInputOption` only controls how the input data will be added to the - * sheet (column-wise or row-wise), it does not influence what cell the data - * starts being written to. (values.append) - * - * @param string $spreadsheetId The ID of the spreadsheet to update. - * @param string $range The A1 notation of a range to search for a logical table - * of data. Values are appended after the last row of the table. - * @param Google_Service_Sheets_ValueRange $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string responseValueRenderOption Determines how values in the - * response should be rendered. The default render option is - * ValueRenderOption.FORMATTED_VALUE. - * @opt_param string insertDataOption How the input data should be inserted. - * @opt_param string valueInputOption How the input data should be interpreted. - * @opt_param string responseDateTimeRenderOption Determines how dates, times, - * and durations in the response should be rendered. This is ignored if - * response_value_render_option is FORMATTED_VALUE. The default dateTime render - * option is [DateTimeRenderOption.SERIAL_NUMBER]. - * @opt_param bool includeValuesInResponse Determines if the update response - * should include the values of the cells that were appended. By default, - * responses do not include the updated values. - * @return Google_Service_Sheets_AppendValuesResponse - */ - public function append($spreadsheetId, $range, Google_Service_Sheets_ValueRange $postBody, $optParams = array()) - { - $params = array('spreadsheetId' => $spreadsheetId, 'range' => $range, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('append', array($params), "Google_Service_Sheets_AppendValuesResponse"); - } - /** - * Clears one or more ranges of values from a spreadsheet. The caller must - * specify the spreadsheet ID and one or more ranges. Only values are cleared -- - * all other properties of the cell (such as formatting, data validation, etc..) - * are kept. (values.batchClear) - * - * @param string $spreadsheetId The ID of the spreadsheet to update. - * @param Google_Service_Sheets_BatchClearValuesRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Sheets_BatchClearValuesResponse - */ - public function batchClear($spreadsheetId, Google_Service_Sheets_BatchClearValuesRequest $postBody, $optParams = array()) - { - $params = array('spreadsheetId' => $spreadsheetId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('batchClear', array($params), "Google_Service_Sheets_BatchClearValuesResponse"); - } - /** - * Clears one or more ranges of values from a spreadsheet. The caller must - * specify the spreadsheet ID and one or more DataFilters. Ranges matching any - * of the specified data filters will be cleared. Only values are cleared -- - * all other properties of the cell (such as formatting, data validation, etc..) - * are kept. (values.batchClearByDataFilter) - * - * @param string $spreadsheetId The ID of the spreadsheet to update. - * @param Google_Service_Sheets_BatchClearValuesByDataFilterRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Sheets_BatchClearValuesByDataFilterResponse - */ - public function batchClearByDataFilter($spreadsheetId, Google_Service_Sheets_BatchClearValuesByDataFilterRequest $postBody, $optParams = array()) - { - $params = array('spreadsheetId' => $spreadsheetId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('batchClearByDataFilter', array($params), "Google_Service_Sheets_BatchClearValuesByDataFilterResponse"); - } - /** - * Returns one or more ranges of values from a spreadsheet. The caller must - * specify the spreadsheet ID and one or more ranges. (values.batchGet) - * - * @param string $spreadsheetId The ID of the spreadsheet to retrieve data from. - * @param array $optParams Optional parameters. - * - * @opt_param string valueRenderOption How values should be represented in the - * output. The default render option is ValueRenderOption.FORMATTED_VALUE. - * @opt_param string dateTimeRenderOption How dates, times, and durations should - * be represented in the output. This is ignored if value_render_option is - * FORMATTED_VALUE. The default dateTime render option is - * [DateTimeRenderOption.SERIAL_NUMBER]. - * @opt_param string ranges The A1 notation of the values to retrieve. - * @opt_param string majorDimension The major dimension that results should use. - * - * For example, if the spreadsheet data is: `A1=1,B1=2,A2=3,B2=4`, then - * requesting `range=A1:B2,majorDimension=ROWS` returns `[[1,2],[3,4]]`, whereas - * requesting `range=A1:B2,majorDimension=COLUMNS` returns `[[1,3],[2,4]]`. - * @return Google_Service_Sheets_BatchGetValuesResponse - */ - public function batchGet($spreadsheetId, $optParams = array()) - { - $params = array('spreadsheetId' => $spreadsheetId); - $params = array_merge($params, $optParams); - return $this->call('batchGet', array($params), "Google_Service_Sheets_BatchGetValuesResponse"); - } - /** - * Returns one or more ranges of values that match the specified data filters. - * The caller must specify the spreadsheet ID and one or more DataFilters. - * Ranges that match any of the data filters in the request will be returned. - * (values.batchGetByDataFilter) - * - * @param string $spreadsheetId The ID of the spreadsheet to retrieve data from. - * @param Google_Service_Sheets_BatchGetValuesByDataFilterRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Sheets_BatchGetValuesByDataFilterResponse - */ - public function batchGetByDataFilter($spreadsheetId, Google_Service_Sheets_BatchGetValuesByDataFilterRequest $postBody, $optParams = array()) - { - $params = array('spreadsheetId' => $spreadsheetId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('batchGetByDataFilter', array($params), "Google_Service_Sheets_BatchGetValuesByDataFilterResponse"); - } - /** - * Sets values in one or more ranges of a spreadsheet. The caller must specify - * the spreadsheet ID, a valueInputOption, and one or more ValueRanges. - * (values.batchUpdate) - * - * @param string $spreadsheetId The ID of the spreadsheet to update. - * @param Google_Service_Sheets_BatchUpdateValuesRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Sheets_BatchUpdateValuesResponse - */ - public function batchUpdate($spreadsheetId, Google_Service_Sheets_BatchUpdateValuesRequest $postBody, $optParams = array()) - { - $params = array('spreadsheetId' => $spreadsheetId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('batchUpdate', array($params), "Google_Service_Sheets_BatchUpdateValuesResponse"); - } - /** - * Sets values in one or more ranges of a spreadsheet. The caller must specify - * the spreadsheet ID, a valueInputOption, and one or more - * DataFilterValueRanges. (values.batchUpdateByDataFilter) - * - * @param string $spreadsheetId The ID of the spreadsheet to update. - * @param Google_Service_Sheets_BatchUpdateValuesByDataFilterRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Sheets_BatchUpdateValuesByDataFilterResponse - */ - public function batchUpdateByDataFilter($spreadsheetId, Google_Service_Sheets_BatchUpdateValuesByDataFilterRequest $postBody, $optParams = array()) - { - $params = array('spreadsheetId' => $spreadsheetId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('batchUpdateByDataFilter', array($params), "Google_Service_Sheets_BatchUpdateValuesByDataFilterResponse"); - } - /** - * Clears values from a spreadsheet. The caller must specify the spreadsheet ID - * and range. Only values are cleared -- all other properties of the cell (such - * as formatting, data validation, etc..) are kept. (values.clear) - * - * @param string $spreadsheetId The ID of the spreadsheet to update. - * @param string $range The A1 notation of the values to clear. - * @param Google_Service_Sheets_ClearValuesRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Sheets_ClearValuesResponse - */ - public function clear($spreadsheetId, $range, Google_Service_Sheets_ClearValuesRequest $postBody, $optParams = array()) - { - $params = array('spreadsheetId' => $spreadsheetId, 'range' => $range, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('clear', array($params), "Google_Service_Sheets_ClearValuesResponse"); - } - /** - * Returns a range of values from a spreadsheet. The caller must specify the - * spreadsheet ID and a range. (values.get) - * - * @param string $spreadsheetId The ID of the spreadsheet to retrieve data from. - * @param string $range The A1 notation of the values to retrieve. - * @param array $optParams Optional parameters. - * - * @opt_param string majorDimension The major dimension that results should use. - * - * For example, if the spreadsheet data is: `A1=1,B1=2,A2=3,B2=4`, then - * requesting `range=A1:B2,majorDimension=ROWS` returns `[[1,2],[3,4]]`, whereas - * requesting `range=A1:B2,majorDimension=COLUMNS` returns `[[1,3],[2,4]]`. - * @opt_param string valueRenderOption How values should be represented in the - * output. The default render option is ValueRenderOption.FORMATTED_VALUE. - * @opt_param string dateTimeRenderOption How dates, times, and durations should - * be represented in the output. This is ignored if value_render_option is - * FORMATTED_VALUE. The default dateTime render option is - * [DateTimeRenderOption.SERIAL_NUMBER]. - * @return Google_Service_Sheets_ValueRange - */ - public function get($spreadsheetId, $range, $optParams = array()) - { - $params = array('spreadsheetId' => $spreadsheetId, 'range' => $range); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Sheets_ValueRange"); - } - /** - * Sets values in a range of a spreadsheet. The caller must specify the - * spreadsheet ID, range, and a valueInputOption. (values.update) - * - * @param string $spreadsheetId The ID of the spreadsheet to update. - * @param string $range The A1 notation of the values to update. - * @param Google_Service_Sheets_ValueRange $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string responseValueRenderOption Determines how values in the - * response should be rendered. The default render option is - * ValueRenderOption.FORMATTED_VALUE. - * @opt_param string valueInputOption How the input data should be interpreted. - * @opt_param string responseDateTimeRenderOption Determines how dates, times, - * and durations in the response should be rendered. This is ignored if - * response_value_render_option is FORMATTED_VALUE. The default dateTime render - * option is DateTimeRenderOption.SERIAL_NUMBER. - * @opt_param bool includeValuesInResponse Determines if the update response - * should include the values of the cells that were updated. By default, - * responses do not include the updated values. If the range to write was larger - * than the range actually written, the response includes all values in the - * requested range (excluding trailing empty rows and columns). - * @return Google_Service_Sheets_UpdateValuesResponse - */ - public function update($spreadsheetId, $range, Google_Service_Sheets_ValueRange $postBody, $optParams = array()) - { - $params = array('spreadsheetId' => $spreadsheetId, 'range' => $range, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Sheets_UpdateValuesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/Response.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/Response.php deleted file mode 100644 index fa892c08..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/Response.php +++ /dev/null @@ -1,341 +0,0 @@ -addBanding = $addBanding; - } - /** - * @return Google_Service_Sheets_AddBandingResponse - */ - public function getAddBanding() - { - return $this->addBanding; - } - /** - * @param Google_Service_Sheets_AddChartResponse - */ - public function setAddChart(Google_Service_Sheets_AddChartResponse $addChart) - { - $this->addChart = $addChart; - } - /** - * @return Google_Service_Sheets_AddChartResponse - */ - public function getAddChart() - { - return $this->addChart; - } - /** - * @param Google_Service_Sheets_AddDimensionGroupResponse - */ - public function setAddDimensionGroup(Google_Service_Sheets_AddDimensionGroupResponse $addDimensionGroup) - { - $this->addDimensionGroup = $addDimensionGroup; - } - /** - * @return Google_Service_Sheets_AddDimensionGroupResponse - */ - public function getAddDimensionGroup() - { - return $this->addDimensionGroup; - } - /** - * @param Google_Service_Sheets_AddFilterViewResponse - */ - public function setAddFilterView(Google_Service_Sheets_AddFilterViewResponse $addFilterView) - { - $this->addFilterView = $addFilterView; - } - /** - * @return Google_Service_Sheets_AddFilterViewResponse - */ - public function getAddFilterView() - { - return $this->addFilterView; - } - /** - * @param Google_Service_Sheets_AddNamedRangeResponse - */ - public function setAddNamedRange(Google_Service_Sheets_AddNamedRangeResponse $addNamedRange) - { - $this->addNamedRange = $addNamedRange; - } - /** - * @return Google_Service_Sheets_AddNamedRangeResponse - */ - public function getAddNamedRange() - { - return $this->addNamedRange; - } - /** - * @param Google_Service_Sheets_AddProtectedRangeResponse - */ - public function setAddProtectedRange(Google_Service_Sheets_AddProtectedRangeResponse $addProtectedRange) - { - $this->addProtectedRange = $addProtectedRange; - } - /** - * @return Google_Service_Sheets_AddProtectedRangeResponse - */ - public function getAddProtectedRange() - { - return $this->addProtectedRange; - } - /** - * @param Google_Service_Sheets_AddSheetResponse - */ - public function setAddSheet(Google_Service_Sheets_AddSheetResponse $addSheet) - { - $this->addSheet = $addSheet; - } - /** - * @return Google_Service_Sheets_AddSheetResponse - */ - public function getAddSheet() - { - return $this->addSheet; - } - /** - * @param Google_Service_Sheets_AddSlicerResponse - */ - public function setAddSlicer(Google_Service_Sheets_AddSlicerResponse $addSlicer) - { - $this->addSlicer = $addSlicer; - } - /** - * @return Google_Service_Sheets_AddSlicerResponse - */ - public function getAddSlicer() - { - return $this->addSlicer; - } - /** - * @param Google_Service_Sheets_CreateDeveloperMetadataResponse - */ - public function setCreateDeveloperMetadata(Google_Service_Sheets_CreateDeveloperMetadataResponse $createDeveloperMetadata) - { - $this->createDeveloperMetadata = $createDeveloperMetadata; - } - /** - * @return Google_Service_Sheets_CreateDeveloperMetadataResponse - */ - public function getCreateDeveloperMetadata() - { - return $this->createDeveloperMetadata; - } - /** - * @param Google_Service_Sheets_DeleteConditionalFormatRuleResponse - */ - public function setDeleteConditionalFormatRule(Google_Service_Sheets_DeleteConditionalFormatRuleResponse $deleteConditionalFormatRule) - { - $this->deleteConditionalFormatRule = $deleteConditionalFormatRule; - } - /** - * @return Google_Service_Sheets_DeleteConditionalFormatRuleResponse - */ - public function getDeleteConditionalFormatRule() - { - return $this->deleteConditionalFormatRule; - } - /** - * @param Google_Service_Sheets_DeleteDeveloperMetadataResponse - */ - public function setDeleteDeveloperMetadata(Google_Service_Sheets_DeleteDeveloperMetadataResponse $deleteDeveloperMetadata) - { - $this->deleteDeveloperMetadata = $deleteDeveloperMetadata; - } - /** - * @return Google_Service_Sheets_DeleteDeveloperMetadataResponse - */ - public function getDeleteDeveloperMetadata() - { - return $this->deleteDeveloperMetadata; - } - /** - * @param Google_Service_Sheets_DeleteDimensionGroupResponse - */ - public function setDeleteDimensionGroup(Google_Service_Sheets_DeleteDimensionGroupResponse $deleteDimensionGroup) - { - $this->deleteDimensionGroup = $deleteDimensionGroup; - } - /** - * @return Google_Service_Sheets_DeleteDimensionGroupResponse - */ - public function getDeleteDimensionGroup() - { - return $this->deleteDimensionGroup; - } - /** - * @param Google_Service_Sheets_DeleteDuplicatesResponse - */ - public function setDeleteDuplicates(Google_Service_Sheets_DeleteDuplicatesResponse $deleteDuplicates) - { - $this->deleteDuplicates = $deleteDuplicates; - } - /** - * @return Google_Service_Sheets_DeleteDuplicatesResponse - */ - public function getDeleteDuplicates() - { - return $this->deleteDuplicates; - } - /** - * @param Google_Service_Sheets_DuplicateFilterViewResponse - */ - public function setDuplicateFilterView(Google_Service_Sheets_DuplicateFilterViewResponse $duplicateFilterView) - { - $this->duplicateFilterView = $duplicateFilterView; - } - /** - * @return Google_Service_Sheets_DuplicateFilterViewResponse - */ - public function getDuplicateFilterView() - { - return $this->duplicateFilterView; - } - /** - * @param Google_Service_Sheets_DuplicateSheetResponse - */ - public function setDuplicateSheet(Google_Service_Sheets_DuplicateSheetResponse $duplicateSheet) - { - $this->duplicateSheet = $duplicateSheet; - } - /** - * @return Google_Service_Sheets_DuplicateSheetResponse - */ - public function getDuplicateSheet() - { - return $this->duplicateSheet; - } - /** - * @param Google_Service_Sheets_FindReplaceResponse - */ - public function setFindReplace(Google_Service_Sheets_FindReplaceResponse $findReplace) - { - $this->findReplace = $findReplace; - } - /** - * @return Google_Service_Sheets_FindReplaceResponse - */ - public function getFindReplace() - { - return $this->findReplace; - } - /** - * @param Google_Service_Sheets_TrimWhitespaceResponse - */ - public function setTrimWhitespace(Google_Service_Sheets_TrimWhitespaceResponse $trimWhitespace) - { - $this->trimWhitespace = $trimWhitespace; - } - /** - * @return Google_Service_Sheets_TrimWhitespaceResponse - */ - public function getTrimWhitespace() - { - return $this->trimWhitespace; - } - /** - * @param Google_Service_Sheets_UpdateConditionalFormatRuleResponse - */ - public function setUpdateConditionalFormatRule(Google_Service_Sheets_UpdateConditionalFormatRuleResponse $updateConditionalFormatRule) - { - $this->updateConditionalFormatRule = $updateConditionalFormatRule; - } - /** - * @return Google_Service_Sheets_UpdateConditionalFormatRuleResponse - */ - public function getUpdateConditionalFormatRule() - { - return $this->updateConditionalFormatRule; - } - /** - * @param Google_Service_Sheets_UpdateDeveloperMetadataResponse - */ - public function setUpdateDeveloperMetadata(Google_Service_Sheets_UpdateDeveloperMetadataResponse $updateDeveloperMetadata) - { - $this->updateDeveloperMetadata = $updateDeveloperMetadata; - } - /** - * @return Google_Service_Sheets_UpdateDeveloperMetadataResponse - */ - public function getUpdateDeveloperMetadata() - { - return $this->updateDeveloperMetadata; - } - /** - * @param Google_Service_Sheets_UpdateEmbeddedObjectPositionResponse - */ - public function setUpdateEmbeddedObjectPosition(Google_Service_Sheets_UpdateEmbeddedObjectPositionResponse $updateEmbeddedObjectPosition) - { - $this->updateEmbeddedObjectPosition = $updateEmbeddedObjectPosition; - } - /** - * @return Google_Service_Sheets_UpdateEmbeddedObjectPositionResponse - */ - public function getUpdateEmbeddedObjectPosition() - { - return $this->updateEmbeddedObjectPosition; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/RowData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/RowData.php deleted file mode 100644 index e2ec6d5c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/RowData.php +++ /dev/null @@ -1,38 +0,0 @@ -values = $values; - } - /** - * @return Google_Service_Sheets_CellData - */ - public function getValues() - { - return $this->values; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/ScorecardChartSpec.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/ScorecardChartSpec.php deleted file mode 100644 index 4710fc3b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/ScorecardChartSpec.php +++ /dev/null @@ -1,128 +0,0 @@ -aggregateType = $aggregateType; - } - public function getAggregateType() - { - return $this->aggregateType; - } - /** - * @param Google_Service_Sheets_ChartData - */ - public function setBaselineValueData(Google_Service_Sheets_ChartData $baselineValueData) - { - $this->baselineValueData = $baselineValueData; - } - /** - * @return Google_Service_Sheets_ChartData - */ - public function getBaselineValueData() - { - return $this->baselineValueData; - } - /** - * @param Google_Service_Sheets_BaselineValueFormat - */ - public function setBaselineValueFormat(Google_Service_Sheets_BaselineValueFormat $baselineValueFormat) - { - $this->baselineValueFormat = $baselineValueFormat; - } - /** - * @return Google_Service_Sheets_BaselineValueFormat - */ - public function getBaselineValueFormat() - { - return $this->baselineValueFormat; - } - /** - * @param Google_Service_Sheets_ChartCustomNumberFormatOptions - */ - public function setCustomFormatOptions(Google_Service_Sheets_ChartCustomNumberFormatOptions $customFormatOptions) - { - $this->customFormatOptions = $customFormatOptions; - } - /** - * @return Google_Service_Sheets_ChartCustomNumberFormatOptions - */ - public function getCustomFormatOptions() - { - return $this->customFormatOptions; - } - /** - * @param Google_Service_Sheets_ChartData - */ - public function setKeyValueData(Google_Service_Sheets_ChartData $keyValueData) - { - $this->keyValueData = $keyValueData; - } - /** - * @return Google_Service_Sheets_ChartData - */ - public function getKeyValueData() - { - return $this->keyValueData; - } - /** - * @param Google_Service_Sheets_KeyValueFormat - */ - public function setKeyValueFormat(Google_Service_Sheets_KeyValueFormat $keyValueFormat) - { - $this->keyValueFormat = $keyValueFormat; - } - /** - * @return Google_Service_Sheets_KeyValueFormat - */ - public function getKeyValueFormat() - { - return $this->keyValueFormat; - } - public function setNumberFormatSource($numberFormatSource) - { - $this->numberFormatSource = $numberFormatSource; - } - public function getNumberFormatSource() - { - return $this->numberFormatSource; - } - public function setScaleFactor($scaleFactor) - { - $this->scaleFactor = $scaleFactor; - } - public function getScaleFactor() - { - return $this->scaleFactor; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/SearchDeveloperMetadataRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/SearchDeveloperMetadataRequest.php deleted file mode 100644 index f05c55dd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/SearchDeveloperMetadataRequest.php +++ /dev/null @@ -1,38 +0,0 @@ -dataFilters = $dataFilters; - } - /** - * @return Google_Service_Sheets_DataFilter - */ - public function getDataFilters() - { - return $this->dataFilters; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/SearchDeveloperMetadataResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/SearchDeveloperMetadataResponse.php deleted file mode 100644 index c22a63db..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/SearchDeveloperMetadataResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -matchedDeveloperMetadata = $matchedDeveloperMetadata; - } - /** - * @return Google_Service_Sheets_MatchedDeveloperMetadata - */ - public function getMatchedDeveloperMetadata() - { - return $this->matchedDeveloperMetadata; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/SetBasicFilterRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/SetBasicFilterRequest.php deleted file mode 100644 index 5e9cebfa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/SetBasicFilterRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -filter = $filter; - } - /** - * @return Google_Service_Sheets_BasicFilter - */ - public function getFilter() - { - return $this->filter; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/SetDataValidationRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/SetDataValidationRequest.php deleted file mode 100644 index 4ea4c3c2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/SetDataValidationRequest.php +++ /dev/null @@ -1,53 +0,0 @@ -range = $range; - } - /** - * @return Google_Service_Sheets_GridRange - */ - public function getRange() - { - return $this->range; - } - /** - * @param Google_Service_Sheets_DataValidationRule - */ - public function setRule(Google_Service_Sheets_DataValidationRule $rule) - { - $this->rule = $rule; - } - /** - * @return Google_Service_Sheets_DataValidationRule - */ - public function getRule() - { - return $this->rule; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/Sheet.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/Sheet.php deleted file mode 100644 index c542fe81..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/Sheet.php +++ /dev/null @@ -1,230 +0,0 @@ -bandedRanges = $bandedRanges; - } - /** - * @return Google_Service_Sheets_BandedRange - */ - public function getBandedRanges() - { - return $this->bandedRanges; - } - /** - * @param Google_Service_Sheets_BasicFilter - */ - public function setBasicFilter(Google_Service_Sheets_BasicFilter $basicFilter) - { - $this->basicFilter = $basicFilter; - } - /** - * @return Google_Service_Sheets_BasicFilter - */ - public function getBasicFilter() - { - return $this->basicFilter; - } - /** - * @param Google_Service_Sheets_EmbeddedChart - */ - public function setCharts($charts) - { - $this->charts = $charts; - } - /** - * @return Google_Service_Sheets_EmbeddedChart - */ - public function getCharts() - { - return $this->charts; - } - /** - * @param Google_Service_Sheets_DimensionGroup - */ - public function setColumnGroups($columnGroups) - { - $this->columnGroups = $columnGroups; - } - /** - * @return Google_Service_Sheets_DimensionGroup - */ - public function getColumnGroups() - { - return $this->columnGroups; - } - /** - * @param Google_Service_Sheets_ConditionalFormatRule - */ - public function setConditionalFormats($conditionalFormats) - { - $this->conditionalFormats = $conditionalFormats; - } - /** - * @return Google_Service_Sheets_ConditionalFormatRule - */ - public function getConditionalFormats() - { - return $this->conditionalFormats; - } - /** - * @param Google_Service_Sheets_GridData - */ - public function setData($data) - { - $this->data = $data; - } - /** - * @return Google_Service_Sheets_GridData - */ - public function getData() - { - return $this->data; - } - /** - * @param Google_Service_Sheets_DeveloperMetadata - */ - public function setDeveloperMetadata($developerMetadata) - { - $this->developerMetadata = $developerMetadata; - } - /** - * @return Google_Service_Sheets_DeveloperMetadata - */ - public function getDeveloperMetadata() - { - return $this->developerMetadata; - } - /** - * @param Google_Service_Sheets_FilterView - */ - public function setFilterViews($filterViews) - { - $this->filterViews = $filterViews; - } - /** - * @return Google_Service_Sheets_FilterView - */ - public function getFilterViews() - { - return $this->filterViews; - } - /** - * @param Google_Service_Sheets_GridRange - */ - public function setMerges($merges) - { - $this->merges = $merges; - } - /** - * @return Google_Service_Sheets_GridRange - */ - public function getMerges() - { - return $this->merges; - } - /** - * @param Google_Service_Sheets_SheetProperties - */ - public function setProperties(Google_Service_Sheets_SheetProperties $properties) - { - $this->properties = $properties; - } - /** - * @return Google_Service_Sheets_SheetProperties - */ - public function getProperties() - { - return $this->properties; - } - /** - * @param Google_Service_Sheets_ProtectedRange - */ - public function setProtectedRanges($protectedRanges) - { - $this->protectedRanges = $protectedRanges; - } - /** - * @return Google_Service_Sheets_ProtectedRange - */ - public function getProtectedRanges() - { - return $this->protectedRanges; - } - /** - * @param Google_Service_Sheets_DimensionGroup - */ - public function setRowGroups($rowGroups) - { - $this->rowGroups = $rowGroups; - } - /** - * @return Google_Service_Sheets_DimensionGroup - */ - public function getRowGroups() - { - return $this->rowGroups; - } - /** - * @param Google_Service_Sheets_Slicer - */ - public function setSlicers($slicers) - { - $this->slicers = $slicers; - } - /** - * @return Google_Service_Sheets_Slicer - */ - public function getSlicers() - { - return $this->slicers; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/SheetProperties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/SheetProperties.php deleted file mode 100644 index 7e1b8a93..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/SheetProperties.php +++ /dev/null @@ -1,123 +0,0 @@ -gridProperties = $gridProperties; - } - /** - * @return Google_Service_Sheets_GridProperties - */ - public function getGridProperties() - { - return $this->gridProperties; - } - public function setHidden($hidden) - { - $this->hidden = $hidden; - } - public function getHidden() - { - return $this->hidden; - } - public function setIndex($index) - { - $this->index = $index; - } - public function getIndex() - { - return $this->index; - } - public function setRightToLeft($rightToLeft) - { - $this->rightToLeft = $rightToLeft; - } - public function getRightToLeft() - { - return $this->rightToLeft; - } - public function setSheetId($sheetId) - { - $this->sheetId = $sheetId; - } - public function getSheetId() - { - return $this->sheetId; - } - public function setSheetType($sheetType) - { - $this->sheetType = $sheetType; - } - public function getSheetType() - { - return $this->sheetType; - } - /** - * @param Google_Service_Sheets_Color - */ - public function setTabColor(Google_Service_Sheets_Color $tabColor) - { - $this->tabColor = $tabColor; - } - /** - * @return Google_Service_Sheets_Color - */ - public function getTabColor() - { - return $this->tabColor; - } - /** - * @param Google_Service_Sheets_ColorStyle - */ - public function setTabColorStyle(Google_Service_Sheets_ColorStyle $tabColorStyle) - { - $this->tabColorStyle = $tabColorStyle; - } - /** - * @return Google_Service_Sheets_ColorStyle - */ - public function getTabColorStyle() - { - return $this->tabColorStyle; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/Slicer.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/Slicer.php deleted file mode 100644 index 7ed43232..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/Slicer.php +++ /dev/null @@ -1,62 +0,0 @@ -position = $position; - } - /** - * @return Google_Service_Sheets_EmbeddedObjectPosition - */ - public function getPosition() - { - return $this->position; - } - public function setSlicerId($slicerId) - { - $this->slicerId = $slicerId; - } - public function getSlicerId() - { - return $this->slicerId; - } - /** - * @param Google_Service_Sheets_SlicerSpec - */ - public function setSpec(Google_Service_Sheets_SlicerSpec $spec) - { - $this->spec = $spec; - } - /** - * @return Google_Service_Sheets_SlicerSpec - */ - public function getSpec() - { - return $this->spec; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/SlicerSpec.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/SlicerSpec.php deleted file mode 100644 index 659cab2d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/SlicerSpec.php +++ /dev/null @@ -1,137 +0,0 @@ -applyToPivotTables = $applyToPivotTables; - } - public function getApplyToPivotTables() - { - return $this->applyToPivotTables; - } - /** - * @param Google_Service_Sheets_Color - */ - public function setBackgroundColor(Google_Service_Sheets_Color $backgroundColor) - { - $this->backgroundColor = $backgroundColor; - } - /** - * @return Google_Service_Sheets_Color - */ - public function getBackgroundColor() - { - return $this->backgroundColor; - } - /** - * @param Google_Service_Sheets_ColorStyle - */ - public function setBackgroundColorStyle(Google_Service_Sheets_ColorStyle $backgroundColorStyle) - { - $this->backgroundColorStyle = $backgroundColorStyle; - } - /** - * @return Google_Service_Sheets_ColorStyle - */ - public function getBackgroundColorStyle() - { - return $this->backgroundColorStyle; - } - public function setColumnIndex($columnIndex) - { - $this->columnIndex = $columnIndex; - } - public function getColumnIndex() - { - return $this->columnIndex; - } - /** - * @param Google_Service_Sheets_GridRange - */ - public function setDataRange(Google_Service_Sheets_GridRange $dataRange) - { - $this->dataRange = $dataRange; - } - /** - * @return Google_Service_Sheets_GridRange - */ - public function getDataRange() - { - return $this->dataRange; - } - /** - * @param Google_Service_Sheets_FilterCriteria - */ - public function setFilterCriteria(Google_Service_Sheets_FilterCriteria $filterCriteria) - { - $this->filterCriteria = $filterCriteria; - } - /** - * @return Google_Service_Sheets_FilterCriteria - */ - public function getFilterCriteria() - { - return $this->filterCriteria; - } - public function setHorizontalAlignment($horizontalAlignment) - { - $this->horizontalAlignment = $horizontalAlignment; - } - public function getHorizontalAlignment() - { - return $this->horizontalAlignment; - } - /** - * @param Google_Service_Sheets_TextFormat - */ - public function setTextFormat(Google_Service_Sheets_TextFormat $textFormat) - { - $this->textFormat = $textFormat; - } - /** - * @return Google_Service_Sheets_TextFormat - */ - public function getTextFormat() - { - return $this->textFormat; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/SortRangeRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/SortRangeRequest.php deleted file mode 100644 index dc73db6e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/SortRangeRequest.php +++ /dev/null @@ -1,54 +0,0 @@ -range = $range; - } - /** - * @return Google_Service_Sheets_GridRange - */ - public function getRange() - { - return $this->range; - } - /** - * @param Google_Service_Sheets_SortSpec - */ - public function setSortSpecs($sortSpecs) - { - $this->sortSpecs = $sortSpecs; - } - /** - * @return Google_Service_Sheets_SortSpec - */ - public function getSortSpecs() - { - return $this->sortSpecs; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/SortSpec.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/SortSpec.php deleted file mode 100644 index 97d243a9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/SortSpec.php +++ /dev/null @@ -1,103 +0,0 @@ -backgroundColor = $backgroundColor; - } - /** - * @return Google_Service_Sheets_Color - */ - public function getBackgroundColor() - { - return $this->backgroundColor; - } - /** - * @param Google_Service_Sheets_ColorStyle - */ - public function setBackgroundColorStyle(Google_Service_Sheets_ColorStyle $backgroundColorStyle) - { - $this->backgroundColorStyle = $backgroundColorStyle; - } - /** - * @return Google_Service_Sheets_ColorStyle - */ - public function getBackgroundColorStyle() - { - return $this->backgroundColorStyle; - } - public function setDimensionIndex($dimensionIndex) - { - $this->dimensionIndex = $dimensionIndex; - } - public function getDimensionIndex() - { - return $this->dimensionIndex; - } - /** - * @param Google_Service_Sheets_Color - */ - public function setForegroundColor(Google_Service_Sheets_Color $foregroundColor) - { - $this->foregroundColor = $foregroundColor; - } - /** - * @return Google_Service_Sheets_Color - */ - public function getForegroundColor() - { - return $this->foregroundColor; - } - /** - * @param Google_Service_Sheets_ColorStyle - */ - public function setForegroundColorStyle(Google_Service_Sheets_ColorStyle $foregroundColorStyle) - { - $this->foregroundColorStyle = $foregroundColorStyle; - } - /** - * @return Google_Service_Sheets_ColorStyle - */ - public function getForegroundColorStyle() - { - return $this->foregroundColorStyle; - } - public function setSortOrder($sortOrder) - { - $this->sortOrder = $sortOrder; - } - public function getSortOrder() - { - return $this->sortOrder; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/SourceAndDestination.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/SourceAndDestination.php deleted file mode 100644 index a79e51b0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/SourceAndDestination.php +++ /dev/null @@ -1,55 +0,0 @@ -dimension = $dimension; - } - public function getDimension() - { - return $this->dimension; - } - public function setFillLength($fillLength) - { - $this->fillLength = $fillLength; - } - public function getFillLength() - { - return $this->fillLength; - } - /** - * @param Google_Service_Sheets_GridRange - */ - public function setSource(Google_Service_Sheets_GridRange $source) - { - $this->source = $source; - } - /** - * @return Google_Service_Sheets_GridRange - */ - public function getSource() - { - return $this->source; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/Spreadsheet.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/Spreadsheet.php deleted file mode 100644 index b497b0b3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/Spreadsheet.php +++ /dev/null @@ -1,104 +0,0 @@ -developerMetadata = $developerMetadata; - } - /** - * @return Google_Service_Sheets_DeveloperMetadata - */ - public function getDeveloperMetadata() - { - return $this->developerMetadata; - } - /** - * @param Google_Service_Sheets_NamedRange - */ - public function setNamedRanges($namedRanges) - { - $this->namedRanges = $namedRanges; - } - /** - * @return Google_Service_Sheets_NamedRange - */ - public function getNamedRanges() - { - return $this->namedRanges; - } - /** - * @param Google_Service_Sheets_SpreadsheetProperties - */ - public function setProperties(Google_Service_Sheets_SpreadsheetProperties $properties) - { - $this->properties = $properties; - } - /** - * @return Google_Service_Sheets_SpreadsheetProperties - */ - public function getProperties() - { - return $this->properties; - } - /** - * @param Google_Service_Sheets_Sheet - */ - public function setSheets($sheets) - { - $this->sheets = $sheets; - } - /** - * @return Google_Service_Sheets_Sheet - */ - public function getSheets() - { - return $this->sheets; - } - public function setSpreadsheetId($spreadsheetId) - { - $this->spreadsheetId = $spreadsheetId; - } - public function getSpreadsheetId() - { - return $this->spreadsheetId; - } - public function setSpreadsheetUrl($spreadsheetUrl) - { - $this->spreadsheetUrl = $spreadsheetUrl; - } - public function getSpreadsheetUrl() - { - return $this->spreadsheetUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/SpreadsheetProperties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/SpreadsheetProperties.php deleted file mode 100644 index 63cfd92f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/SpreadsheetProperties.php +++ /dev/null @@ -1,105 +0,0 @@ -autoRecalc = $autoRecalc; - } - public function getAutoRecalc() - { - return $this->autoRecalc; - } - /** - * @param Google_Service_Sheets_CellFormat - */ - public function setDefaultFormat(Google_Service_Sheets_CellFormat $defaultFormat) - { - $this->defaultFormat = $defaultFormat; - } - /** - * @return Google_Service_Sheets_CellFormat - */ - public function getDefaultFormat() - { - return $this->defaultFormat; - } - /** - * @param Google_Service_Sheets_IterativeCalculationSettings - */ - public function setIterativeCalculationSettings(Google_Service_Sheets_IterativeCalculationSettings $iterativeCalculationSettings) - { - $this->iterativeCalculationSettings = $iterativeCalculationSettings; - } - /** - * @return Google_Service_Sheets_IterativeCalculationSettings - */ - public function getIterativeCalculationSettings() - { - return $this->iterativeCalculationSettings; - } - public function setLocale($locale) - { - $this->locale = $locale; - } - public function getLocale() - { - return $this->locale; - } - /** - * @param Google_Service_Sheets_SpreadsheetTheme - */ - public function setSpreadsheetTheme(Google_Service_Sheets_SpreadsheetTheme $spreadsheetTheme) - { - $this->spreadsheetTheme = $spreadsheetTheme; - } - /** - * @return Google_Service_Sheets_SpreadsheetTheme - */ - public function getSpreadsheetTheme() - { - return $this->spreadsheetTheme; - } - public function setTimeZone($timeZone) - { - $this->timeZone = $timeZone; - } - public function getTimeZone() - { - return $this->timeZone; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/SpreadsheetTheme.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/SpreadsheetTheme.php deleted file mode 100644 index 098c24eb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/SpreadsheetTheme.php +++ /dev/null @@ -1,47 +0,0 @@ -primaryFontFamily = $primaryFontFamily; - } - public function getPrimaryFontFamily() - { - return $this->primaryFontFamily; - } - /** - * @param Google_Service_Sheets_ThemeColorPair - */ - public function setThemeColors($themeColors) - { - $this->themeColors = $themeColors; - } - /** - * @return Google_Service_Sheets_ThemeColorPair - */ - public function getThemeColors() - { - return $this->themeColors; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/TextFormat.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/TextFormat.php deleted file mode 100644 index 585faccf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/TextFormat.php +++ /dev/null @@ -1,107 +0,0 @@ -bold = $bold; - } - public function getBold() - { - return $this->bold; - } - public function setFontFamily($fontFamily) - { - $this->fontFamily = $fontFamily; - } - public function getFontFamily() - { - return $this->fontFamily; - } - public function setFontSize($fontSize) - { - $this->fontSize = $fontSize; - } - public function getFontSize() - { - return $this->fontSize; - } - /** - * @param Google_Service_Sheets_Color - */ - public function setForegroundColor(Google_Service_Sheets_Color $foregroundColor) - { - $this->foregroundColor = $foregroundColor; - } - /** - * @return Google_Service_Sheets_Color - */ - public function getForegroundColor() - { - return $this->foregroundColor; - } - /** - * @param Google_Service_Sheets_ColorStyle - */ - public function setForegroundColorStyle(Google_Service_Sheets_ColorStyle $foregroundColorStyle) - { - $this->foregroundColorStyle = $foregroundColorStyle; - } - /** - * @return Google_Service_Sheets_ColorStyle - */ - public function getForegroundColorStyle() - { - return $this->foregroundColorStyle; - } - public function setItalic($italic) - { - $this->italic = $italic; - } - public function getItalic() - { - return $this->italic; - } - public function setStrikethrough($strikethrough) - { - $this->strikethrough = $strikethrough; - } - public function getStrikethrough() - { - return $this->strikethrough; - } - public function setUnderline($underline) - { - $this->underline = $underline; - } - public function getUnderline() - { - return $this->underline; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/TextFormatRun.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/TextFormatRun.php deleted file mode 100644 index a33063c4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/TextFormatRun.php +++ /dev/null @@ -1,46 +0,0 @@ -format = $format; - } - /** - * @return Google_Service_Sheets_TextFormat - */ - public function getFormat() - { - return $this->format; - } - public function setStartIndex($startIndex) - { - $this->startIndex = $startIndex; - } - public function getStartIndex() - { - return $this->startIndex; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/TextPosition.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/TextPosition.php deleted file mode 100644 index 071253d0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/TextPosition.php +++ /dev/null @@ -1,30 +0,0 @@ -horizontalAlignment = $horizontalAlignment; - } - public function getHorizontalAlignment() - { - return $this->horizontalAlignment; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/TextRotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/TextRotation.php deleted file mode 100644 index 9d294af7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/TextRotation.php +++ /dev/null @@ -1,39 +0,0 @@ -angle = $angle; - } - public function getAngle() - { - return $this->angle; - } - public function setVertical($vertical) - { - $this->vertical = $vertical; - } - public function getVertical() - { - return $this->vertical; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/TextToColumnsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/TextToColumnsRequest.php deleted file mode 100644 index ce9cd088..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/TextToColumnsRequest.php +++ /dev/null @@ -1,55 +0,0 @@ -delimiter = $delimiter; - } - public function getDelimiter() - { - return $this->delimiter; - } - public function setDelimiterType($delimiterType) - { - $this->delimiterType = $delimiterType; - } - public function getDelimiterType() - { - return $this->delimiterType; - } - /** - * @param Google_Service_Sheets_GridRange - */ - public function setSource(Google_Service_Sheets_GridRange $source) - { - $this->source = $source; - } - /** - * @return Google_Service_Sheets_GridRange - */ - public function getSource() - { - return $this->source; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/ThemeColorPair.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/ThemeColorPair.php deleted file mode 100644 index 29b42d5e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/ThemeColorPair.php +++ /dev/null @@ -1,45 +0,0 @@ -color = $color; - } - /** - * @return Google_Service_Sheets_ColorStyle - */ - public function getColor() - { - return $this->color; - } - public function setColorType($colorType) - { - $this->colorType = $colorType; - } - public function getColorType() - { - return $this->colorType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/TreemapChartColorScale.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/TreemapChartColorScale.php deleted file mode 100644 index 5f328dcd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/TreemapChartColorScale.php +++ /dev/null @@ -1,149 +0,0 @@ -maxValueColor = $maxValueColor; - } - /** - * @return Google_Service_Sheets_Color - */ - public function getMaxValueColor() - { - return $this->maxValueColor; - } - /** - * @param Google_Service_Sheets_ColorStyle - */ - public function setMaxValueColorStyle(Google_Service_Sheets_ColorStyle $maxValueColorStyle) - { - $this->maxValueColorStyle = $maxValueColorStyle; - } - /** - * @return Google_Service_Sheets_ColorStyle - */ - public function getMaxValueColorStyle() - { - return $this->maxValueColorStyle; - } - /** - * @param Google_Service_Sheets_Color - */ - public function setMidValueColor(Google_Service_Sheets_Color $midValueColor) - { - $this->midValueColor = $midValueColor; - } - /** - * @return Google_Service_Sheets_Color - */ - public function getMidValueColor() - { - return $this->midValueColor; - } - /** - * @param Google_Service_Sheets_ColorStyle - */ - public function setMidValueColorStyle(Google_Service_Sheets_ColorStyle $midValueColorStyle) - { - $this->midValueColorStyle = $midValueColorStyle; - } - /** - * @return Google_Service_Sheets_ColorStyle - */ - public function getMidValueColorStyle() - { - return $this->midValueColorStyle; - } - /** - * @param Google_Service_Sheets_Color - */ - public function setMinValueColor(Google_Service_Sheets_Color $minValueColor) - { - $this->minValueColor = $minValueColor; - } - /** - * @return Google_Service_Sheets_Color - */ - public function getMinValueColor() - { - return $this->minValueColor; - } - /** - * @param Google_Service_Sheets_ColorStyle - */ - public function setMinValueColorStyle(Google_Service_Sheets_ColorStyle $minValueColorStyle) - { - $this->minValueColorStyle = $minValueColorStyle; - } - /** - * @return Google_Service_Sheets_ColorStyle - */ - public function getMinValueColorStyle() - { - return $this->minValueColorStyle; - } - /** - * @param Google_Service_Sheets_Color - */ - public function setNoDataColor(Google_Service_Sheets_Color $noDataColor) - { - $this->noDataColor = $noDataColor; - } - /** - * @return Google_Service_Sheets_Color - */ - public function getNoDataColor() - { - return $this->noDataColor; - } - /** - * @param Google_Service_Sheets_ColorStyle - */ - public function setNoDataColorStyle(Google_Service_Sheets_ColorStyle $noDataColorStyle) - { - $this->noDataColorStyle = $noDataColorStyle; - } - /** - * @return Google_Service_Sheets_ColorStyle - */ - public function getNoDataColorStyle() - { - return $this->noDataColorStyle; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/TreemapChartSpec.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/TreemapChartSpec.php deleted file mode 100644 index 8918b5e2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/TreemapChartSpec.php +++ /dev/null @@ -1,194 +0,0 @@ -colorData = $colorData; - } - /** - * @return Google_Service_Sheets_ChartData - */ - public function getColorData() - { - return $this->colorData; - } - /** - * @param Google_Service_Sheets_TreemapChartColorScale - */ - public function setColorScale(Google_Service_Sheets_TreemapChartColorScale $colorScale) - { - $this->colorScale = $colorScale; - } - /** - * @return Google_Service_Sheets_TreemapChartColorScale - */ - public function getColorScale() - { - return $this->colorScale; - } - /** - * @param Google_Service_Sheets_Color - */ - public function setHeaderColor(Google_Service_Sheets_Color $headerColor) - { - $this->headerColor = $headerColor; - } - /** - * @return Google_Service_Sheets_Color - */ - public function getHeaderColor() - { - return $this->headerColor; - } - /** - * @param Google_Service_Sheets_ColorStyle - */ - public function setHeaderColorStyle(Google_Service_Sheets_ColorStyle $headerColorStyle) - { - $this->headerColorStyle = $headerColorStyle; - } - /** - * @return Google_Service_Sheets_ColorStyle - */ - public function getHeaderColorStyle() - { - return $this->headerColorStyle; - } - public function setHideTooltips($hideTooltips) - { - $this->hideTooltips = $hideTooltips; - } - public function getHideTooltips() - { - return $this->hideTooltips; - } - public function setHintedLevels($hintedLevels) - { - $this->hintedLevels = $hintedLevels; - } - public function getHintedLevels() - { - return $this->hintedLevels; - } - /** - * @param Google_Service_Sheets_ChartData - */ - public function setLabels(Google_Service_Sheets_ChartData $labels) - { - $this->labels = $labels; - } - /** - * @return Google_Service_Sheets_ChartData - */ - public function getLabels() - { - return $this->labels; - } - public function setLevels($levels) - { - $this->levels = $levels; - } - public function getLevels() - { - return $this->levels; - } - public function setMaxValue($maxValue) - { - $this->maxValue = $maxValue; - } - public function getMaxValue() - { - return $this->maxValue; - } - public function setMinValue($minValue) - { - $this->minValue = $minValue; - } - public function getMinValue() - { - return $this->minValue; - } - /** - * @param Google_Service_Sheets_ChartData - */ - public function setParentLabels(Google_Service_Sheets_ChartData $parentLabels) - { - $this->parentLabels = $parentLabels; - } - /** - * @return Google_Service_Sheets_ChartData - */ - public function getParentLabels() - { - return $this->parentLabels; - } - /** - * @param Google_Service_Sheets_ChartData - */ - public function setSizeData(Google_Service_Sheets_ChartData $sizeData) - { - $this->sizeData = $sizeData; - } - /** - * @return Google_Service_Sheets_ChartData - */ - public function getSizeData() - { - return $this->sizeData; - } - /** - * @param Google_Service_Sheets_TextFormat - */ - public function setTextFormat(Google_Service_Sheets_TextFormat $textFormat) - { - $this->textFormat = $textFormat; - } - /** - * @return Google_Service_Sheets_TextFormat - */ - public function getTextFormat() - { - return $this->textFormat; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/TrimWhitespaceRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/TrimWhitespaceRequest.php deleted file mode 100644 index c6329d29..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/TrimWhitespaceRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -range = $range; - } - /** - * @return Google_Service_Sheets_GridRange - */ - public function getRange() - { - return $this->range; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/TrimWhitespaceResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/TrimWhitespaceResponse.php deleted file mode 100644 index fe7420e7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/TrimWhitespaceResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -cellsChangedCount = $cellsChangedCount; - } - public function getCellsChangedCount() - { - return $this->cellsChangedCount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UnmergeCellsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UnmergeCellsRequest.php deleted file mode 100644 index cd20a285..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UnmergeCellsRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -range = $range; - } - /** - * @return Google_Service_Sheets_GridRange - */ - public function getRange() - { - return $this->range; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateBandingRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateBandingRequest.php deleted file mode 100644 index 0a388bf1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateBandingRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -bandedRange = $bandedRange; - } - /** - * @return Google_Service_Sheets_BandedRange - */ - public function getBandedRange() - { - return $this->bandedRange; - } - public function setFields($fields) - { - $this->fields = $fields; - } - public function getFields() - { - return $this->fields; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateBordersRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateBordersRequest.php deleted file mode 100644 index b0475485..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateBordersRequest.php +++ /dev/null @@ -1,133 +0,0 @@ -bottom = $bottom; - } - /** - * @return Google_Service_Sheets_Border - */ - public function getBottom() - { - return $this->bottom; - } - /** - * @param Google_Service_Sheets_Border - */ - public function setInnerHorizontal(Google_Service_Sheets_Border $innerHorizontal) - { - $this->innerHorizontal = $innerHorizontal; - } - /** - * @return Google_Service_Sheets_Border - */ - public function getInnerHorizontal() - { - return $this->innerHorizontal; - } - /** - * @param Google_Service_Sheets_Border - */ - public function setInnerVertical(Google_Service_Sheets_Border $innerVertical) - { - $this->innerVertical = $innerVertical; - } - /** - * @return Google_Service_Sheets_Border - */ - public function getInnerVertical() - { - return $this->innerVertical; - } - /** - * @param Google_Service_Sheets_Border - */ - public function setLeft(Google_Service_Sheets_Border $left) - { - $this->left = $left; - } - /** - * @return Google_Service_Sheets_Border - */ - public function getLeft() - { - return $this->left; - } - /** - * @param Google_Service_Sheets_GridRange - */ - public function setRange(Google_Service_Sheets_GridRange $range) - { - $this->range = $range; - } - /** - * @return Google_Service_Sheets_GridRange - */ - public function getRange() - { - return $this->range; - } - /** - * @param Google_Service_Sheets_Border - */ - public function setRight(Google_Service_Sheets_Border $right) - { - $this->right = $right; - } - /** - * @return Google_Service_Sheets_Border - */ - public function getRight() - { - return $this->right; - } - /** - * @param Google_Service_Sheets_Border - */ - public function setTop(Google_Service_Sheets_Border $top) - { - $this->top = $top; - } - /** - * @return Google_Service_Sheets_Border - */ - public function getTop() - { - return $this->top; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateCellsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateCellsRequest.php deleted file mode 100644 index 78e0632c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateCellsRequest.php +++ /dev/null @@ -1,79 +0,0 @@ -fields = $fields; - } - public function getFields() - { - return $this->fields; - } - /** - * @param Google_Service_Sheets_GridRange - */ - public function setRange(Google_Service_Sheets_GridRange $range) - { - $this->range = $range; - } - /** - * @return Google_Service_Sheets_GridRange - */ - public function getRange() - { - return $this->range; - } - /** - * @param Google_Service_Sheets_RowData - */ - public function setRows($rows) - { - $this->rows = $rows; - } - /** - * @return Google_Service_Sheets_RowData - */ - public function getRows() - { - return $this->rows; - } - /** - * @param Google_Service_Sheets_GridCoordinate - */ - public function setStart(Google_Service_Sheets_GridCoordinate $start) - { - $this->start = $start; - } - /** - * @return Google_Service_Sheets_GridCoordinate - */ - public function getStart() - { - return $this->start; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateChartSpecRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateChartSpecRequest.php deleted file mode 100644 index cfeb59d0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateChartSpecRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -chartId = $chartId; - } - public function getChartId() - { - return $this->chartId; - } - /** - * @param Google_Service_Sheets_ChartSpec - */ - public function setSpec(Google_Service_Sheets_ChartSpec $spec) - { - $this->spec = $spec; - } - /** - * @return Google_Service_Sheets_ChartSpec - */ - public function getSpec() - { - return $this->spec; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateConditionalFormatRuleRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateConditionalFormatRuleRequest.php deleted file mode 100644 index a3ac377e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateConditionalFormatRuleRequest.php +++ /dev/null @@ -1,64 +0,0 @@ -index = $index; - } - public function getIndex() - { - return $this->index; - } - public function setNewIndex($newIndex) - { - $this->newIndex = $newIndex; - } - public function getNewIndex() - { - return $this->newIndex; - } - /** - * @param Google_Service_Sheets_ConditionalFormatRule - */ - public function setRule(Google_Service_Sheets_ConditionalFormatRule $rule) - { - $this->rule = $rule; - } - /** - * @return Google_Service_Sheets_ConditionalFormatRule - */ - public function getRule() - { - return $this->rule; - } - public function setSheetId($sheetId) - { - $this->sheetId = $sheetId; - } - public function getSheetId() - { - return $this->sheetId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateConditionalFormatRuleResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateConditionalFormatRuleResponse.php deleted file mode 100644 index 13cc0b69..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateConditionalFormatRuleResponse.php +++ /dev/null @@ -1,71 +0,0 @@ -newIndex = $newIndex; - } - public function getNewIndex() - { - return $this->newIndex; - } - /** - * @param Google_Service_Sheets_ConditionalFormatRule - */ - public function setNewRule(Google_Service_Sheets_ConditionalFormatRule $newRule) - { - $this->newRule = $newRule; - } - /** - * @return Google_Service_Sheets_ConditionalFormatRule - */ - public function getNewRule() - { - return $this->newRule; - } - public function setOldIndex($oldIndex) - { - $this->oldIndex = $oldIndex; - } - public function getOldIndex() - { - return $this->oldIndex; - } - /** - * @param Google_Service_Sheets_ConditionalFormatRule - */ - public function setOldRule(Google_Service_Sheets_ConditionalFormatRule $oldRule) - { - $this->oldRule = $oldRule; - } - /** - * @return Google_Service_Sheets_ConditionalFormatRule - */ - public function getOldRule() - { - return $this->oldRule; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateDeveloperMetadataRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateDeveloperMetadataRequest.php deleted file mode 100644 index ac62a95f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateDeveloperMetadataRequest.php +++ /dev/null @@ -1,63 +0,0 @@ -dataFilters = $dataFilters; - } - /** - * @return Google_Service_Sheets_DataFilter - */ - public function getDataFilters() - { - return $this->dataFilters; - } - /** - * @param Google_Service_Sheets_DeveloperMetadata - */ - public function setDeveloperMetadata(Google_Service_Sheets_DeveloperMetadata $developerMetadata) - { - $this->developerMetadata = $developerMetadata; - } - /** - * @return Google_Service_Sheets_DeveloperMetadata - */ - public function getDeveloperMetadata() - { - return $this->developerMetadata; - } - public function setFields($fields) - { - $this->fields = $fields; - } - public function getFields() - { - return $this->fields; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateDeveloperMetadataResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateDeveloperMetadataResponse.php deleted file mode 100644 index e8ce14d2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateDeveloperMetadataResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -developerMetadata = $developerMetadata; - } - /** - * @return Google_Service_Sheets_DeveloperMetadata - */ - public function getDeveloperMetadata() - { - return $this->developerMetadata; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateDimensionGroupRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateDimensionGroupRequest.php deleted file mode 100644 index 05222ca0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateDimensionGroupRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -dimensionGroup = $dimensionGroup; - } - /** - * @return Google_Service_Sheets_DimensionGroup - */ - public function getDimensionGroup() - { - return $this->dimensionGroup; - } - public function setFields($fields) - { - $this->fields = $fields; - } - public function getFields() - { - return $this->fields; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateDimensionPropertiesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateDimensionPropertiesRequest.php deleted file mode 100644 index 34b5f554..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateDimensionPropertiesRequest.php +++ /dev/null @@ -1,62 +0,0 @@ -fields = $fields; - } - public function getFields() - { - return $this->fields; - } - /** - * @param Google_Service_Sheets_DimensionProperties - */ - public function setProperties(Google_Service_Sheets_DimensionProperties $properties) - { - $this->properties = $properties; - } - /** - * @return Google_Service_Sheets_DimensionProperties - */ - public function getProperties() - { - return $this->properties; - } - /** - * @param Google_Service_Sheets_DimensionRange - */ - public function setRange(Google_Service_Sheets_DimensionRange $range) - { - $this->range = $range; - } - /** - * @return Google_Service_Sheets_DimensionRange - */ - public function getRange() - { - return $this->range; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateEmbeddedObjectPositionRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateEmbeddedObjectPositionRequest.php deleted file mode 100644 index 1d352ce1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateEmbeddedObjectPositionRequest.php +++ /dev/null @@ -1,55 +0,0 @@ -fields = $fields; - } - public function getFields() - { - return $this->fields; - } - /** - * @param Google_Service_Sheets_EmbeddedObjectPosition - */ - public function setNewPosition(Google_Service_Sheets_EmbeddedObjectPosition $newPosition) - { - $this->newPosition = $newPosition; - } - /** - * @return Google_Service_Sheets_EmbeddedObjectPosition - */ - public function getNewPosition() - { - return $this->newPosition; - } - public function setObjectId($objectId) - { - $this->objectId = $objectId; - } - public function getObjectId() - { - return $this->objectId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateEmbeddedObjectPositionResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateEmbeddedObjectPositionResponse.php deleted file mode 100644 index d200cb5a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateEmbeddedObjectPositionResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -position = $position; - } - /** - * @return Google_Service_Sheets_EmbeddedObjectPosition - */ - public function getPosition() - { - return $this->position; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateFilterViewRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateFilterViewRequest.php deleted file mode 100644 index f8ec36d3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateFilterViewRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -fields = $fields; - } - public function getFields() - { - return $this->fields; - } - /** - * @param Google_Service_Sheets_FilterView - */ - public function setFilter(Google_Service_Sheets_FilterView $filter) - { - $this->filter = $filter; - } - /** - * @return Google_Service_Sheets_FilterView - */ - public function getFilter() - { - return $this->filter; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateNamedRangeRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateNamedRangeRequest.php deleted file mode 100644 index bebb591d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateNamedRangeRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -fields = $fields; - } - public function getFields() - { - return $this->fields; - } - /** - * @param Google_Service_Sheets_NamedRange - */ - public function setNamedRange(Google_Service_Sheets_NamedRange $namedRange) - { - $this->namedRange = $namedRange; - } - /** - * @return Google_Service_Sheets_NamedRange - */ - public function getNamedRange() - { - return $this->namedRange; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateProtectedRangeRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateProtectedRangeRequest.php deleted file mode 100644 index 74d1fea4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateProtectedRangeRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -fields = $fields; - } - public function getFields() - { - return $this->fields; - } - /** - * @param Google_Service_Sheets_ProtectedRange - */ - public function setProtectedRange(Google_Service_Sheets_ProtectedRange $protectedRange) - { - $this->protectedRange = $protectedRange; - } - /** - * @return Google_Service_Sheets_ProtectedRange - */ - public function getProtectedRange() - { - return $this->protectedRange; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateSheetPropertiesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateSheetPropertiesRequest.php deleted file mode 100644 index 520345ac..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateSheetPropertiesRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -fields = $fields; - } - public function getFields() - { - return $this->fields; - } - /** - * @param Google_Service_Sheets_SheetProperties - */ - public function setProperties(Google_Service_Sheets_SheetProperties $properties) - { - $this->properties = $properties; - } - /** - * @return Google_Service_Sheets_SheetProperties - */ - public function getProperties() - { - return $this->properties; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateSlicerSpecRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateSlicerSpecRequest.php deleted file mode 100644 index 74f8336a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateSlicerSpecRequest.php +++ /dev/null @@ -1,55 +0,0 @@ -fields = $fields; - } - public function getFields() - { - return $this->fields; - } - public function setSlicerId($slicerId) - { - $this->slicerId = $slicerId; - } - public function getSlicerId() - { - return $this->slicerId; - } - /** - * @param Google_Service_Sheets_SlicerSpec - */ - public function setSpec(Google_Service_Sheets_SlicerSpec $spec) - { - $this->spec = $spec; - } - /** - * @return Google_Service_Sheets_SlicerSpec - */ - public function getSpec() - { - return $this->spec; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateSpreadsheetPropertiesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateSpreadsheetPropertiesRequest.php deleted file mode 100644 index 239bbf74..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateSpreadsheetPropertiesRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -fields = $fields; - } - public function getFields() - { - return $this->fields; - } - /** - * @param Google_Service_Sheets_SpreadsheetProperties - */ - public function setProperties(Google_Service_Sheets_SpreadsheetProperties $properties) - { - $this->properties = $properties; - } - /** - * @return Google_Service_Sheets_SpreadsheetProperties - */ - public function getProperties() - { - return $this->properties; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateValuesByDataFilterResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateValuesByDataFilterResponse.php deleted file mode 100644 index b1647265..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateValuesByDataFilterResponse.php +++ /dev/null @@ -1,89 +0,0 @@ -dataFilter = $dataFilter; - } - /** - * @return Google_Service_Sheets_DataFilter - */ - public function getDataFilter() - { - return $this->dataFilter; - } - public function setUpdatedCells($updatedCells) - { - $this->updatedCells = $updatedCells; - } - public function getUpdatedCells() - { - return $this->updatedCells; - } - public function setUpdatedColumns($updatedColumns) - { - $this->updatedColumns = $updatedColumns; - } - public function getUpdatedColumns() - { - return $this->updatedColumns; - } - /** - * @param Google_Service_Sheets_ValueRange - */ - public function setUpdatedData(Google_Service_Sheets_ValueRange $updatedData) - { - $this->updatedData = $updatedData; - } - /** - * @return Google_Service_Sheets_ValueRange - */ - public function getUpdatedData() - { - return $this->updatedData; - } - public function setUpdatedRange($updatedRange) - { - $this->updatedRange = $updatedRange; - } - public function getUpdatedRange() - { - return $this->updatedRange; - } - public function setUpdatedRows($updatedRows) - { - $this->updatedRows = $updatedRows; - } - public function getUpdatedRows() - { - return $this->updatedRows; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateValuesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateValuesResponse.php deleted file mode 100644 index 2c15eed6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/UpdateValuesResponse.php +++ /dev/null @@ -1,82 +0,0 @@ -spreadsheetId = $spreadsheetId; - } - public function getSpreadsheetId() - { - return $this->spreadsheetId; - } - public function setUpdatedCells($updatedCells) - { - $this->updatedCells = $updatedCells; - } - public function getUpdatedCells() - { - return $this->updatedCells; - } - public function setUpdatedColumns($updatedColumns) - { - $this->updatedColumns = $updatedColumns; - } - public function getUpdatedColumns() - { - return $this->updatedColumns; - } - /** - * @param Google_Service_Sheets_ValueRange - */ - public function setUpdatedData(Google_Service_Sheets_ValueRange $updatedData) - { - $this->updatedData = $updatedData; - } - /** - * @return Google_Service_Sheets_ValueRange - */ - public function getUpdatedData() - { - return $this->updatedData; - } - public function setUpdatedRange($updatedRange) - { - $this->updatedRange = $updatedRange; - } - public function getUpdatedRange() - { - return $this->updatedRange; - } - public function setUpdatedRows($updatedRows) - { - $this->updatedRows = $updatedRows; - } - public function getUpdatedRows() - { - return $this->updatedRows; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/ValueRange.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/ValueRange.php deleted file mode 100644 index c5325bfc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/ValueRange.php +++ /dev/null @@ -1,49 +0,0 @@ -majorDimension = $majorDimension; - } - public function getMajorDimension() - { - return $this->majorDimension; - } - public function setRange($range) - { - $this->range = $range; - } - public function getRange() - { - return $this->range; - } - public function setValues($values) - { - $this->values = $values; - } - public function getValues() - { - return $this->values; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/WaterfallChartColumnStyle.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/WaterfallChartColumnStyle.php deleted file mode 100644 index 7f666ac9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/WaterfallChartColumnStyle.php +++ /dev/null @@ -1,62 +0,0 @@ -color = $color; - } - /** - * @return Google_Service_Sheets_Color - */ - public function getColor() - { - return $this->color; - } - /** - * @param Google_Service_Sheets_ColorStyle - */ - public function setColorStyle(Google_Service_Sheets_ColorStyle $colorStyle) - { - $this->colorStyle = $colorStyle; - } - /** - * @return Google_Service_Sheets_ColorStyle - */ - public function getColorStyle() - { - return $this->colorStyle; - } - public function setLabel($label) - { - $this->label = $label; - } - public function getLabel() - { - return $this->label; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/WaterfallChartCustomSubtotal.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/WaterfallChartCustomSubtotal.php deleted file mode 100644 index 384590a6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/WaterfallChartCustomSubtotal.php +++ /dev/null @@ -1,48 +0,0 @@ -dataIsSubtotal = $dataIsSubtotal; - } - public function getDataIsSubtotal() - { - return $this->dataIsSubtotal; - } - public function setLabel($label) - { - $this->label = $label; - } - public function getLabel() - { - return $this->label; - } - public function setSubtotalIndex($subtotalIndex) - { - $this->subtotalIndex = $subtotalIndex; - } - public function getSubtotalIndex() - { - return $this->subtotalIndex; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/WaterfallChartDomain.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/WaterfallChartDomain.php deleted file mode 100644 index e9b895bb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/WaterfallChartDomain.php +++ /dev/null @@ -1,46 +0,0 @@ -data = $data; - } - /** - * @return Google_Service_Sheets_ChartData - */ - public function getData() - { - return $this->data; - } - public function setReversed($reversed) - { - $this->reversed = $reversed; - } - public function getReversed() - { - return $this->reversed; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/WaterfallChartSeries.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/WaterfallChartSeries.php deleted file mode 100644 index e6a2ee04..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/WaterfallChartSeries.php +++ /dev/null @@ -1,111 +0,0 @@ -customSubtotals = $customSubtotals; - } - /** - * @return Google_Service_Sheets_WaterfallChartCustomSubtotal - */ - public function getCustomSubtotals() - { - return $this->customSubtotals; - } - /** - * @param Google_Service_Sheets_ChartData - */ - public function setData(Google_Service_Sheets_ChartData $data) - { - $this->data = $data; - } - /** - * @return Google_Service_Sheets_ChartData - */ - public function getData() - { - return $this->data; - } - public function setHideTrailingSubtotal($hideTrailingSubtotal) - { - $this->hideTrailingSubtotal = $hideTrailingSubtotal; - } - public function getHideTrailingSubtotal() - { - return $this->hideTrailingSubtotal; - } - /** - * @param Google_Service_Sheets_WaterfallChartColumnStyle - */ - public function setNegativeColumnsStyle(Google_Service_Sheets_WaterfallChartColumnStyle $negativeColumnsStyle) - { - $this->negativeColumnsStyle = $negativeColumnsStyle; - } - /** - * @return Google_Service_Sheets_WaterfallChartColumnStyle - */ - public function getNegativeColumnsStyle() - { - return $this->negativeColumnsStyle; - } - /** - * @param Google_Service_Sheets_WaterfallChartColumnStyle - */ - public function setPositiveColumnsStyle(Google_Service_Sheets_WaterfallChartColumnStyle $positiveColumnsStyle) - { - $this->positiveColumnsStyle = $positiveColumnsStyle; - } - /** - * @return Google_Service_Sheets_WaterfallChartColumnStyle - */ - public function getPositiveColumnsStyle() - { - return $this->positiveColumnsStyle; - } - /** - * @param Google_Service_Sheets_WaterfallChartColumnStyle - */ - public function setSubtotalColumnsStyle(Google_Service_Sheets_WaterfallChartColumnStyle $subtotalColumnsStyle) - { - $this->subtotalColumnsStyle = $subtotalColumnsStyle; - } - /** - * @return Google_Service_Sheets_WaterfallChartColumnStyle - */ - public function getSubtotalColumnsStyle() - { - return $this->subtotalColumnsStyle; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/WaterfallChartSpec.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/WaterfallChartSpec.php deleted file mode 100644 index 91eb31fd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Sheets/WaterfallChartSpec.php +++ /dev/null @@ -1,97 +0,0 @@ -connectorLineStyle = $connectorLineStyle; - } - /** - * @return Google_Service_Sheets_LineStyle - */ - public function getConnectorLineStyle() - { - return $this->connectorLineStyle; - } - /** - * @param Google_Service_Sheets_WaterfallChartDomain - */ - public function setDomain(Google_Service_Sheets_WaterfallChartDomain $domain) - { - $this->domain = $domain; - } - /** - * @return Google_Service_Sheets_WaterfallChartDomain - */ - public function getDomain() - { - return $this->domain; - } - public function setFirstValueIsTotal($firstValueIsTotal) - { - $this->firstValueIsTotal = $firstValueIsTotal; - } - public function getFirstValueIsTotal() - { - return $this->firstValueIsTotal; - } - public function setHideConnectorLines($hideConnectorLines) - { - $this->hideConnectorLines = $hideConnectorLines; - } - public function getHideConnectorLines() - { - return $this->hideConnectorLines; - } - /** - * @param Google_Service_Sheets_WaterfallChartSeries - */ - public function setSeries($series) - { - $this->series = $series; - } - /** - * @return Google_Service_Sheets_WaterfallChartSeries - */ - public function getSeries() - { - return $this->series; - } - public function setStackedType($stackedType) - { - $this->stackedType = $stackedType; - } - public function getStackedType() - { - return $this->stackedType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent.php deleted file mode 100644 index 7aec60ad..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent.php +++ /dev/null @@ -1,1678 +0,0 @@ - - * Manages product items, inventory, and Merchant Center accounts for Google - * Shopping.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_ShoppingContent extends Google_Service -{ - /** Manage your product listings and accounts for Google Shopping. */ - const CONTENT = - "https://www.googleapis.com/auth/content"; - - public $accounts; - public $accountstatuses; - public $accounttax; - public $datafeeds; - public $datafeedstatuses; - public $liasettings; - public $orderinvoices; - public $orderreports; - public $orderreturns; - public $orders; - public $pos; - public $products; - public $productstatuses; - public $regionalinventory; - public $returnaddress; - public $returnpolicy; - public $shippingsettings; - - /** - * Constructs the internal representation of the ShoppingContent service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://www.googleapis.com/'; - $this->servicePath = 'content/v2.1/'; - $this->batchPath = 'batch/content/v2.1'; - $this->version = 'v2.1'; - $this->serviceName = 'content'; - - $this->accounts = new Google_Service_ShoppingContent_Resource_Accounts( - $this, - $this->serviceName, - 'accounts', - array( - 'methods' => array( - 'authinfo' => array( - 'path' => 'accounts/authinfo', - 'httpMethod' => 'GET', - 'parameters' => array(), - ),'claimwebsite' => array( - 'path' => '{merchantId}/accounts/{accountId}/claimwebsite', - 'httpMethod' => 'POST', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'overwrite' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'custombatch' => array( - 'path' => 'accounts/batch', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'delete' => array( - 'path' => '{merchantId}/accounts/{accountId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'force' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'get' => array( - 'path' => '{merchantId}/accounts/{accountId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{merchantId}/accounts', - 'httpMethod' => 'POST', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'link' => array( - 'path' => '{merchantId}/accounts/{accountId}/link', - 'httpMethod' => 'POST', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{merchantId}/accounts', - 'httpMethod' => 'GET', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'listlinks' => array( - 'path' => '{merchantId}/accounts/{accountId}/listlinks', - 'httpMethod' => 'GET', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => '{merchantId}/accounts/{accountId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->accountstatuses = new Google_Service_ShoppingContent_Resource_Accountstatuses( - $this, - $this->serviceName, - 'accountstatuses', - array( - 'methods' => array( - 'custombatch' => array( - 'path' => 'accountstatuses/batch', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'get' => array( - 'path' => '{merchantId}/accountstatuses/{accountId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'destinations' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ),'list' => array( - 'path' => '{merchantId}/accountstatuses', - 'httpMethod' => 'GET', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'destinations' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->accounttax = new Google_Service_ShoppingContent_Resource_Accounttax( - $this, - $this->serviceName, - 'accounttax', - array( - 'methods' => array( - 'custombatch' => array( - 'path' => 'accounttax/batch', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'get' => array( - 'path' => '{merchantId}/accounttax/{accountId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{merchantId}/accounttax', - 'httpMethod' => 'GET', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => '{merchantId}/accounttax/{accountId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->datafeeds = new Google_Service_ShoppingContent_Resource_Datafeeds( - $this, - $this->serviceName, - 'datafeeds', - array( - 'methods' => array( - 'custombatch' => array( - 'path' => 'datafeeds/batch', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'delete' => array( - 'path' => '{merchantId}/datafeeds/{datafeedId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'datafeedId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'fetchnow' => array( - 'path' => '{merchantId}/datafeeds/{datafeedId}/fetchNow', - 'httpMethod' => 'POST', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'datafeedId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{merchantId}/datafeeds/{datafeedId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'datafeedId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{merchantId}/datafeeds', - 'httpMethod' => 'POST', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{merchantId}/datafeeds', - 'httpMethod' => 'GET', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => '{merchantId}/datafeeds/{datafeedId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'datafeedId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->datafeedstatuses = new Google_Service_ShoppingContent_Resource_Datafeedstatuses( - $this, - $this->serviceName, - 'datafeedstatuses', - array( - 'methods' => array( - 'custombatch' => array( - 'path' => 'datafeedstatuses/batch', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'get' => array( - 'path' => '{merchantId}/datafeedstatuses/{datafeedId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'datafeedId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'country' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{merchantId}/datafeedstatuses', - 'httpMethod' => 'GET', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->liasettings = new Google_Service_ShoppingContent_Resource_Liasettings( - $this, - $this->serviceName, - 'liasettings', - array( - 'methods' => array( - 'custombatch' => array( - 'path' => 'liasettings/batch', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'get' => array( - 'path' => '{merchantId}/liasettings/{accountId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getaccessiblegmbaccounts' => array( - 'path' => '{merchantId}/liasettings/{accountId}/accessiblegmbaccounts', - 'httpMethod' => 'GET', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{merchantId}/liasettings', - 'httpMethod' => 'GET', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'listposdataproviders' => array( - 'path' => 'liasettings/posdataproviders', - 'httpMethod' => 'GET', - 'parameters' => array(), - ),'requestgmbaccess' => array( - 'path' => '{merchantId}/liasettings/{accountId}/requestgmbaccess', - 'httpMethod' => 'POST', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'gmbEmail' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'requestinventoryverification' => array( - 'path' => '{merchantId}/liasettings/{accountId}/requestinventoryverification/{country}', - 'httpMethod' => 'POST', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'country' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setinventoryverificationcontact' => array( - 'path' => '{merchantId}/liasettings/{accountId}/setinventoryverificationcontact', - 'httpMethod' => 'POST', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'contactEmail' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'contactName' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'country' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'language' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setposdataprovider' => array( - 'path' => '{merchantId}/liasettings/{accountId}/setposdataprovider', - 'httpMethod' => 'POST', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'country' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'posDataProviderId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'posExternalAccountId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => '{merchantId}/liasettings/{accountId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->orderinvoices = new Google_Service_ShoppingContent_Resource_Orderinvoices( - $this, - $this->serviceName, - 'orderinvoices', - array( - 'methods' => array( - 'createchargeinvoice' => array( - 'path' => '{merchantId}/orderinvoices/{orderId}/createChargeInvoice', - 'httpMethod' => 'POST', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'orderId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'createrefundinvoice' => array( - 'path' => '{merchantId}/orderinvoices/{orderId}/createRefundInvoice', - 'httpMethod' => 'POST', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'orderId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->orderreports = new Google_Service_ShoppingContent_Resource_Orderreports( - $this, - $this->serviceName, - 'orderreports', - array( - 'methods' => array( - 'listdisbursements' => array( - 'path' => '{merchantId}/orderreports/disbursements', - 'httpMethod' => 'GET', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'disbursementStartDate' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'disbursementEndDate' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'listtransactions' => array( - 'path' => '{merchantId}/orderreports/disbursements/{disbursementId}/transactions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'disbursementId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'transactionStartDate' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'transactionEndDate' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->orderreturns = new Google_Service_ShoppingContent_Resource_Orderreturns( - $this, - $this->serviceName, - 'orderreturns', - array( - 'methods' => array( - 'get' => array( - 'path' => '{merchantId}/orderreturns/{returnId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'returnId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{merchantId}/orderreturns', - 'httpMethod' => 'GET', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'createdEndDate' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'createdStartDate' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->orders = new Google_Service_ShoppingContent_Resource_Orders( - $this, - $this->serviceName, - 'orders', - array( - 'methods' => array( - 'acknowledge' => array( - 'path' => '{merchantId}/orders/{orderId}/acknowledge', - 'httpMethod' => 'POST', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'orderId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'advancetestorder' => array( - 'path' => '{merchantId}/testorders/{orderId}/advance', - 'httpMethod' => 'POST', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'orderId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'cancel' => array( - 'path' => '{merchantId}/orders/{orderId}/cancel', - 'httpMethod' => 'POST', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'orderId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'cancellineitem' => array( - 'path' => '{merchantId}/orders/{orderId}/cancelLineItem', - 'httpMethod' => 'POST', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'orderId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'canceltestorderbycustomer' => array( - 'path' => '{merchantId}/testorders/{orderId}/cancelByCustomer', - 'httpMethod' => 'POST', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'orderId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'createtestorder' => array( - 'path' => '{merchantId}/testorders', - 'httpMethod' => 'POST', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'createtestreturn' => array( - 'path' => '{merchantId}/orders/{orderId}/testreturn', - 'httpMethod' => 'POST', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'orderId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{merchantId}/orders/{orderId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'orderId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getbymerchantorderid' => array( - 'path' => '{merchantId}/ordersbymerchantid/{merchantOrderId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'merchantOrderId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'gettestordertemplate' => array( - 'path' => '{merchantId}/testordertemplates/{templateName}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'templateName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'country' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'instorerefundlineitem' => array( - 'path' => '{merchantId}/orders/{orderId}/inStoreRefundLineItem', - 'httpMethod' => 'POST', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'orderId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{merchantId}/orders', - 'httpMethod' => 'GET', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'acknowledged' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'placedDateEnd' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'placedDateStart' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'statuses' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ),'rejectreturnlineitem' => array( - 'path' => '{merchantId}/orders/{orderId}/rejectReturnLineItem', - 'httpMethod' => 'POST', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'orderId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'returnrefundlineitem' => array( - 'path' => '{merchantId}/orders/{orderId}/returnRefundLineItem', - 'httpMethod' => 'POST', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'orderId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setlineitemmetadata' => array( - 'path' => '{merchantId}/orders/{orderId}/setLineItemMetadata', - 'httpMethod' => 'POST', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'orderId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'shiplineitems' => array( - 'path' => '{merchantId}/orders/{orderId}/shipLineItems', - 'httpMethod' => 'POST', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'orderId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'updatelineitemshippingdetails' => array( - 'path' => '{merchantId}/orders/{orderId}/updateLineItemShippingDetails', - 'httpMethod' => 'POST', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'orderId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'updatemerchantorderid' => array( - 'path' => '{merchantId}/orders/{orderId}/updateMerchantOrderId', - 'httpMethod' => 'POST', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'orderId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'updateshipment' => array( - 'path' => '{merchantId}/orders/{orderId}/updateShipment', - 'httpMethod' => 'POST', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'orderId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->pos = new Google_Service_ShoppingContent_Resource_Pos( - $this, - $this->serviceName, - 'pos', - array( - 'methods' => array( - 'custombatch' => array( - 'path' => 'pos/batch', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'delete' => array( - 'path' => '{merchantId}/pos/{targetMerchantId}/store/{storeCode}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetMerchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'storeCode' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{merchantId}/pos/{targetMerchantId}/store/{storeCode}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetMerchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'storeCode' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{merchantId}/pos/{targetMerchantId}/store', - 'httpMethod' => 'POST', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetMerchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'inventory' => array( - 'path' => '{merchantId}/pos/{targetMerchantId}/inventory', - 'httpMethod' => 'POST', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetMerchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{merchantId}/pos/{targetMerchantId}/store', - 'httpMethod' => 'GET', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetMerchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'sale' => array( - 'path' => '{merchantId}/pos/{targetMerchantId}/sale', - 'httpMethod' => 'POST', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'targetMerchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->products = new Google_Service_ShoppingContent_Resource_Products( - $this, - $this->serviceName, - 'products', - array( - 'methods' => array( - 'custombatch' => array( - 'path' => 'products/batch', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'delete' => array( - 'path' => '{merchantId}/products/{productId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'productId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'feedId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => '{merchantId}/products/{productId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'productId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{merchantId}/products', - 'httpMethod' => 'POST', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'feedId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{merchantId}/products', - 'httpMethod' => 'GET', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->productstatuses = new Google_Service_ShoppingContent_Resource_Productstatuses( - $this, - $this->serviceName, - 'productstatuses', - array( - 'methods' => array( - 'custombatch' => array( - 'path' => 'productstatuses/batch', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'get' => array( - 'path' => '{merchantId}/productstatuses/{productId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'productId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'destinations' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ),'list' => array( - 'path' => '{merchantId}/productstatuses', - 'httpMethod' => 'GET', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'destinations' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->regionalinventory = new Google_Service_ShoppingContent_Resource_Regionalinventory( - $this, - $this->serviceName, - 'regionalinventory', - array( - 'methods' => array( - 'custombatch' => array( - 'path' => 'regionalinventory/batch', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'insert' => array( - 'path' => '{merchantId}/products/{productId}/regionalinventory', - 'httpMethod' => 'POST', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'productId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->returnaddress = new Google_Service_ShoppingContent_Resource_Returnaddress( - $this, - $this->serviceName, - 'returnaddress', - array( - 'methods' => array( - 'custombatch' => array( - 'path' => 'returnaddress/batch', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'delete' => array( - 'path' => '{merchantId}/returnaddress/{returnAddressId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'returnAddressId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{merchantId}/returnaddress/{returnAddressId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'returnAddressId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{merchantId}/returnaddress', - 'httpMethod' => 'POST', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{merchantId}/returnaddress', - 'httpMethod' => 'GET', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'country' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->returnpolicy = new Google_Service_ShoppingContent_Resource_Returnpolicy( - $this, - $this->serviceName, - 'returnpolicy', - array( - 'methods' => array( - 'custombatch' => array( - 'path' => 'returnpolicy/batch', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'delete' => array( - 'path' => '{merchantId}/returnpolicy/{returnPolicyId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'returnPolicyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{merchantId}/returnpolicy/{returnPolicyId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'returnPolicyId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{merchantId}/returnpolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{merchantId}/returnpolicy', - 'httpMethod' => 'GET', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->shippingsettings = new Google_Service_ShoppingContent_Resource_Shippingsettings( - $this, - $this->serviceName, - 'shippingsettings', - array( - 'methods' => array( - 'custombatch' => array( - 'path' => 'shippingsettings/batch', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'get' => array( - 'path' => '{merchantId}/shippingsettings/{accountId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getsupportedcarriers' => array( - 'path' => '{merchantId}/supportedCarriers', - 'httpMethod' => 'GET', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getsupportedholidays' => array( - 'path' => '{merchantId}/supportedHolidays', - 'httpMethod' => 'GET', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getsupportedpickupservices' => array( - 'path' => '{merchantId}/supportedPickupServices', - 'httpMethod' => 'GET', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => '{merchantId}/shippingsettings', - 'httpMethod' => 'GET', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => '{merchantId}/shippingsettings/{accountId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'merchantId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Account.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Account.php deleted file mode 100644 index cb4a9702..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Account.php +++ /dev/null @@ -1,156 +0,0 @@ -adsLinks = $adsLinks; - } - /** - * @return Google_Service_ShoppingContent_AccountAdsLink - */ - public function getAdsLinks() - { - return $this->adsLinks; - } - public function setAdultContent($adultContent) - { - $this->adultContent = $adultContent; - } - public function getAdultContent() - { - return $this->adultContent; - } - /** - * @param Google_Service_ShoppingContent_AccountBusinessInformation - */ - public function setBusinessInformation(Google_Service_ShoppingContent_AccountBusinessInformation $businessInformation) - { - $this->businessInformation = $businessInformation; - } - /** - * @return Google_Service_ShoppingContent_AccountBusinessInformation - */ - public function getBusinessInformation() - { - return $this->businessInformation; - } - /** - * @param Google_Service_ShoppingContent_AccountGoogleMyBusinessLink - */ - public function setGoogleMyBusinessLink(Google_Service_ShoppingContent_AccountGoogleMyBusinessLink $googleMyBusinessLink) - { - $this->googleMyBusinessLink = $googleMyBusinessLink; - } - /** - * @return Google_Service_ShoppingContent_AccountGoogleMyBusinessLink - */ - public function getGoogleMyBusinessLink() - { - return $this->googleMyBusinessLink; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setSellerId($sellerId) - { - $this->sellerId = $sellerId; - } - public function getSellerId() - { - return $this->sellerId; - } - /** - * @param Google_Service_ShoppingContent_AccountUser - */ - public function setUsers($users) - { - $this->users = $users; - } - /** - * @return Google_Service_ShoppingContent_AccountUser - */ - public function getUsers() - { - return $this->users; - } - public function setWebsiteUrl($websiteUrl) - { - $this->websiteUrl = $websiteUrl; - } - public function getWebsiteUrl() - { - return $this->websiteUrl; - } - /** - * @param Google_Service_ShoppingContent_AccountYouTubeChannelLink - */ - public function setYoutubeChannelLinks($youtubeChannelLinks) - { - $this->youtubeChannelLinks = $youtubeChannelLinks; - } - /** - * @return Google_Service_ShoppingContent_AccountYouTubeChannelLink - */ - public function getYoutubeChannelLinks() - { - return $this->youtubeChannelLinks; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountAddress.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountAddress.php deleted file mode 100644 index 907f4e4c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountAddress.php +++ /dev/null @@ -1,66 +0,0 @@ -country = $country; - } - public function getCountry() - { - return $this->country; - } - 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 setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - public function setStreetAddress($streetAddress) - { - $this->streetAddress = $streetAddress; - } - public function getStreetAddress() - { - return $this->streetAddress; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountAdsLink.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountAdsLink.php deleted file mode 100644 index 1ff91cfe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountAdsLink.php +++ /dev/null @@ -1,39 +0,0 @@ -adsId = $adsId; - } - public function getAdsId() - { - return $this->adsId; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountBusinessInformation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountBusinessInformation.php deleted file mode 100644 index 5770e8e1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountBusinessInformation.php +++ /dev/null @@ -1,62 +0,0 @@ -address = $address; - } - /** - * @return Google_Service_ShoppingContent_AccountAddress - */ - public function getAddress() - { - return $this->address; - } - /** - * @param Google_Service_ShoppingContent_AccountCustomerService - */ - public function setCustomerService(Google_Service_ShoppingContent_AccountCustomerService $customerService) - { - $this->customerService = $customerService; - } - /** - * @return Google_Service_ShoppingContent_AccountCustomerService - */ - public function getCustomerService() - { - return $this->customerService; - } - public function setPhoneNumber($phoneNumber) - { - $this->phoneNumber = $phoneNumber; - } - public function getPhoneNumber() - { - return $this->phoneNumber; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountCustomerService.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountCustomerService.php deleted file mode 100644 index 090f8029..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountCustomerService.php +++ /dev/null @@ -1,48 +0,0 @@ -email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setPhoneNumber($phoneNumber) - { - $this->phoneNumber = $phoneNumber; - } - public function getPhoneNumber() - { - return $this->phoneNumber; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountGoogleMyBusinessLink.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountGoogleMyBusinessLink.php deleted file mode 100644 index 35cee22a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountGoogleMyBusinessLink.php +++ /dev/null @@ -1,39 +0,0 @@ -gmbEmail = $gmbEmail; - } - public function getGmbEmail() - { - return $this->gmbEmail; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountIdentifier.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountIdentifier.php deleted file mode 100644 index 6dc61295..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountIdentifier.php +++ /dev/null @@ -1,39 +0,0 @@ -aggregatorId = $aggregatorId; - } - public function getAggregatorId() - { - return $this->aggregatorId; - } - public function setMerchantId($merchantId) - { - $this->merchantId = $merchantId; - } - public function getMerchantId() - { - return $this->merchantId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountStatus.php deleted file mode 100644 index e8774973..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountStatus.php +++ /dev/null @@ -1,81 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - /** - * @param Google_Service_ShoppingContent_AccountStatusAccountLevelIssue - */ - public function setAccountLevelIssues($accountLevelIssues) - { - $this->accountLevelIssues = $accountLevelIssues; - } - /** - * @return Google_Service_ShoppingContent_AccountStatusAccountLevelIssue - */ - public function getAccountLevelIssues() - { - return $this->accountLevelIssues; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_ShoppingContent_AccountStatusProducts - */ - public function setProducts($products) - { - $this->products = $products; - } - /** - * @return Google_Service_ShoppingContent_AccountStatusProducts - */ - public function getProducts() - { - return $this->products; - } - public function setWebsiteClaimed($websiteClaimed) - { - $this->websiteClaimed = $websiteClaimed; - } - public function getWebsiteClaimed() - { - return $this->websiteClaimed; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountStatusAccountLevelIssue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountStatusAccountLevelIssue.php deleted file mode 100644 index 6d5e4f77..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountStatusAccountLevelIssue.php +++ /dev/null @@ -1,84 +0,0 @@ -country = $country; - } - public function getCountry() - { - return $this->country; - } - public function setDestination($destination) - { - $this->destination = $destination; - } - public function getDestination() - { - return $this->destination; - } - public function setDetail($detail) - { - $this->detail = $detail; - } - public function getDetail() - { - return $this->detail; - } - public function setDocumentation($documentation) - { - $this->documentation = $documentation; - } - public function getDocumentation() - { - return $this->documentation; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setSeverity($severity) - { - $this->severity = $severity; - } - public function getSeverity() - { - return $this->severity; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountStatusItemLevelIssue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountStatusItemLevelIssue.php deleted file mode 100644 index 185e0fdc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountStatusItemLevelIssue.php +++ /dev/null @@ -1,93 +0,0 @@ -attributeName = $attributeName; - } - public function getAttributeName() - { - return $this->attributeName; - } - public function setCode($code) - { - $this->code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDetail($detail) - { - $this->detail = $detail; - } - public function getDetail() - { - return $this->detail; - } - public function setDocumentation($documentation) - { - $this->documentation = $documentation; - } - public function getDocumentation() - { - return $this->documentation; - } - public function setNumItems($numItems) - { - $this->numItems = $numItems; - } - public function getNumItems() - { - return $this->numItems; - } - public function setResolution($resolution) - { - $this->resolution = $resolution; - } - public function getResolution() - { - return $this->resolution; - } - public function setServability($servability) - { - $this->servability = $servability; - } - public function getServability() - { - return $this->servability; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountStatusProducts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountStatusProducts.php deleted file mode 100644 index 3d20a511..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountStatusProducts.php +++ /dev/null @@ -1,81 +0,0 @@ -channel = $channel; - } - public function getChannel() - { - return $this->channel; - } - public function setCountry($country) - { - $this->country = $country; - } - public function getCountry() - { - return $this->country; - } - public function setDestination($destination) - { - $this->destination = $destination; - } - public function getDestination() - { - return $this->destination; - } - /** - * @param Google_Service_ShoppingContent_AccountStatusItemLevelIssue - */ - public function setItemLevelIssues($itemLevelIssues) - { - $this->itemLevelIssues = $itemLevelIssues; - } - /** - * @return Google_Service_ShoppingContent_AccountStatusItemLevelIssue - */ - public function getItemLevelIssues() - { - return $this->itemLevelIssues; - } - /** - * @param Google_Service_ShoppingContent_AccountStatusStatistics - */ - public function setStatistics(Google_Service_ShoppingContent_AccountStatusStatistics $statistics) - { - $this->statistics = $statistics; - } - /** - * @return Google_Service_ShoppingContent_AccountStatusStatistics - */ - public function getStatistics() - { - return $this->statistics; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountStatusStatistics.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountStatusStatistics.php deleted file mode 100644 index eeb3417a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountStatusStatistics.php +++ /dev/null @@ -1,57 +0,0 @@ -active = $active; - } - public function getActive() - { - return $this->active; - } - public function setDisapproved($disapproved) - { - $this->disapproved = $disapproved; - } - public function getDisapproved() - { - return $this->disapproved; - } - public function setExpiring($expiring) - { - $this->expiring = $expiring; - } - public function getExpiring() - { - return $this->expiring; - } - public function setPending($pending) - { - $this->pending = $pending; - } - public function getPending() - { - return $this->pending; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountTax.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountTax.php deleted file mode 100644 index 1e78b361..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountTax.php +++ /dev/null @@ -1,56 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_ShoppingContent_AccountTaxTaxRule - */ - public function setRules($rules) - { - $this->rules = $rules; - } - /** - * @return Google_Service_ShoppingContent_AccountTaxTaxRule - */ - public function getRules() - { - return $this->rules; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountTaxTaxRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountTaxTaxRule.php deleted file mode 100644 index 7ac314b9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountTaxTaxRule.php +++ /dev/null @@ -1,66 +0,0 @@ -country = $country; - } - public function getCountry() - { - return $this->country; - } - public function setLocationId($locationId) - { - $this->locationId = $locationId; - } - public function getLocationId() - { - return $this->locationId; - } - public function setRatePercent($ratePercent) - { - $this->ratePercent = $ratePercent; - } - public function getRatePercent() - { - return $this->ratePercent; - } - public function setShippingTaxed($shippingTaxed) - { - $this->shippingTaxed = $shippingTaxed; - } - public function getShippingTaxed() - { - return $this->shippingTaxed; - } - public function setUseGlobalRate($useGlobalRate) - { - $this->useGlobalRate = $useGlobalRate; - } - public function getUseGlobalRate() - { - return $this->useGlobalRate; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountUser.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountUser.php deleted file mode 100644 index c60bf1f0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountUser.php +++ /dev/null @@ -1,66 +0,0 @@ -admin = $admin; - } - public function getAdmin() - { - return $this->admin; - } - public function setEmailAddress($emailAddress) - { - $this->emailAddress = $emailAddress; - } - public function getEmailAddress() - { - return $this->emailAddress; - } - public function setOrderManager($orderManager) - { - $this->orderManager = $orderManager; - } - public function getOrderManager() - { - return $this->orderManager; - } - public function setPaymentsAnalyst($paymentsAnalyst) - { - $this->paymentsAnalyst = $paymentsAnalyst; - } - public function getPaymentsAnalyst() - { - return $this->paymentsAnalyst; - } - public function setPaymentsManager($paymentsManager) - { - $this->paymentsManager = $paymentsManager; - } - public function getPaymentsManager() - { - return $this->paymentsManager; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountYouTubeChannelLink.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountYouTubeChannelLink.php deleted file mode 100644 index 3004b15d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountYouTubeChannelLink.php +++ /dev/null @@ -1,39 +0,0 @@ -channelId = $channelId; - } - public function getChannelId() - { - return $this->channelId; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountsAuthInfoResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountsAuthInfoResponse.php deleted file mode 100644 index d8ebff6a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountsAuthInfoResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -accountIdentifiers = $accountIdentifiers; - } - /** - * @return Google_Service_ShoppingContent_AccountIdentifier - */ - public function getAccountIdentifiers() - { - return $this->accountIdentifiers; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountsClaimWebsiteResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountsClaimWebsiteResponse.php deleted file mode 100644 index bc040694..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountsClaimWebsiteResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountsCustomBatchRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountsCustomBatchRequest.php deleted file mode 100644 index 1374ee11..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountsCustomBatchRequest.php +++ /dev/null @@ -1,38 +0,0 @@ -entries = $entries; - } - /** - * @return Google_Service_ShoppingContent_AccountsCustomBatchRequestEntry - */ - public function getEntries() - { - return $this->entries; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountsCustomBatchRequestEntry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountsCustomBatchRequestEntry.php deleted file mode 100644 index 846612c8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountsCustomBatchRequestEntry.php +++ /dev/null @@ -1,107 +0,0 @@ -account = $account; - } - /** - * @return Google_Service_ShoppingContent_Account - */ - public function getAccount() - { - return $this->account; - } - public function setAccountId($accountId) - { - $this->accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setBatchId($batchId) - { - $this->batchId = $batchId; - } - public function getBatchId() - { - return $this->batchId; - } - public function setForce($force) - { - $this->force = $force; - } - public function getForce() - { - return $this->force; - } - /** - * @param Google_Service_ShoppingContent_AccountsCustomBatchRequestEntryLinkRequest - */ - public function setLinkRequest(Google_Service_ShoppingContent_AccountsCustomBatchRequestEntryLinkRequest $linkRequest) - { - $this->linkRequest = $linkRequest; - } - /** - * @return Google_Service_ShoppingContent_AccountsCustomBatchRequestEntryLinkRequest - */ - public function getLinkRequest() - { - return $this->linkRequest; - } - public function setMerchantId($merchantId) - { - $this->merchantId = $merchantId; - } - public function getMerchantId() - { - return $this->merchantId; - } - public function setMethod($method) - { - $this->method = $method; - } - public function getMethod() - { - return $this->method; - } - public function setOverwrite($overwrite) - { - $this->overwrite = $overwrite; - } - public function getOverwrite() - { - return $this->overwrite; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountsCustomBatchRequestEntryLinkRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountsCustomBatchRequestEntryLinkRequest.php deleted file mode 100644 index 8abc0ceb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountsCustomBatchRequestEntryLinkRequest.php +++ /dev/null @@ -1,58 +0,0 @@ -action = $action; - } - public function getAction() - { - return $this->action; - } - public function setLinkType($linkType) - { - $this->linkType = $linkType; - } - public function getLinkType() - { - return $this->linkType; - } - public function setLinkedAccountId($linkedAccountId) - { - $this->linkedAccountId = $linkedAccountId; - } - public function getLinkedAccountId() - { - return $this->linkedAccountId; - } - public function setServices($services) - { - $this->services = $services; - } - public function getServices() - { - return $this->services; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountsCustomBatchResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountsCustomBatchResponse.php deleted file mode 100644 index 100abc7e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountsCustomBatchResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -entries = $entries; - } - /** - * @return Google_Service_ShoppingContent_AccountsCustomBatchResponseEntry - */ - public function getEntries() - { - return $this->entries; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountsCustomBatchResponseEntry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountsCustomBatchResponseEntry.php deleted file mode 100644 index b4c67805..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountsCustomBatchResponseEntry.php +++ /dev/null @@ -1,71 +0,0 @@ -account = $account; - } - /** - * @return Google_Service_ShoppingContent_Account - */ - public function getAccount() - { - return $this->account; - } - public function setBatchId($batchId) - { - $this->batchId = $batchId; - } - public function getBatchId() - { - return $this->batchId; - } - /** - * @param Google_Service_ShoppingContent_Errors - */ - public function setErrors(Google_Service_ShoppingContent_Errors $errors) - { - $this->errors = $errors; - } - /** - * @return Google_Service_ShoppingContent_Errors - */ - public function getErrors() - { - return $this->errors; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountsLinkRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountsLinkRequest.php deleted file mode 100644 index 28901993..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountsLinkRequest.php +++ /dev/null @@ -1,58 +0,0 @@ -action = $action; - } - public function getAction() - { - return $this->action; - } - public function setLinkType($linkType) - { - $this->linkType = $linkType; - } - public function getLinkType() - { - return $this->linkType; - } - public function setLinkedAccountId($linkedAccountId) - { - $this->linkedAccountId = $linkedAccountId; - } - public function getLinkedAccountId() - { - return $this->linkedAccountId; - } - public function setServices($services) - { - $this->services = $services; - } - public function getServices() - { - return $this->services; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountsLinkResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountsLinkResponse.php deleted file mode 100644 index 89481cb4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountsLinkResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountsListLinksResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountsListLinksResponse.php deleted file mode 100644 index d4ff17ba..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountsListLinksResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_ShoppingContent_LinkedAccount - */ - public function setLinks($links) - { - $this->links = $links; - } - /** - * @return Google_Service_ShoppingContent_LinkedAccount - */ - public function getLinks() - { - return $this->links; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountsListResponse.php deleted file mode 100644 index 5df62ed9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountsListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_ShoppingContent_Account - */ - public function setResources($resources) - { - $this->resources = $resources; - } - /** - * @return Google_Service_ShoppingContent_Account - */ - public function getResources() - { - return $this->resources; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountstatusesCustomBatchRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountstatusesCustomBatchRequest.php deleted file mode 100644 index 98005d70..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountstatusesCustomBatchRequest.php +++ /dev/null @@ -1,38 +0,0 @@ -entries = $entries; - } - /** - * @return Google_Service_ShoppingContent_AccountstatusesCustomBatchRequestEntry - */ - public function getEntries() - { - return $this->entries; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountstatusesCustomBatchRequestEntry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountstatusesCustomBatchRequestEntry.php deleted file mode 100644 index f5415fa3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountstatusesCustomBatchRequestEntry.php +++ /dev/null @@ -1,67 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setBatchId($batchId) - { - $this->batchId = $batchId; - } - public function getBatchId() - { - return $this->batchId; - } - public function setDestinations($destinations) - { - $this->destinations = $destinations; - } - public function getDestinations() - { - return $this->destinations; - } - public function setMerchantId($merchantId) - { - $this->merchantId = $merchantId; - } - public function getMerchantId() - { - return $this->merchantId; - } - public function setMethod($method) - { - $this->method = $method; - } - public function getMethod() - { - return $this->method; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountstatusesCustomBatchResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountstatusesCustomBatchResponse.php deleted file mode 100644 index f8b68645..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountstatusesCustomBatchResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -entries = $entries; - } - /** - * @return Google_Service_ShoppingContent_AccountstatusesCustomBatchResponseEntry - */ - public function getEntries() - { - return $this->entries; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountstatusesCustomBatchResponseEntry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountstatusesCustomBatchResponseEntry.php deleted file mode 100644 index 8516ada0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountstatusesCustomBatchResponseEntry.php +++ /dev/null @@ -1,62 +0,0 @@ -accountStatus = $accountStatus; - } - /** - * @return Google_Service_ShoppingContent_AccountStatus - */ - public function getAccountStatus() - { - return $this->accountStatus; - } - public function setBatchId($batchId) - { - $this->batchId = $batchId; - } - public function getBatchId() - { - return $this->batchId; - } - /** - * @param Google_Service_ShoppingContent_Errors - */ - public function setErrors(Google_Service_ShoppingContent_Errors $errors) - { - $this->errors = $errors; - } - /** - * @return Google_Service_ShoppingContent_Errors - */ - public function getErrors() - { - return $this->errors; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountstatusesListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountstatusesListResponse.php deleted file mode 100644 index 814e0dc0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccountstatusesListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_ShoppingContent_AccountStatus - */ - public function setResources($resources) - { - $this->resources = $resources; - } - /** - * @return Google_Service_ShoppingContent_AccountStatus - */ - public function getResources() - { - return $this->resources; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccounttaxCustomBatchRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccounttaxCustomBatchRequest.php deleted file mode 100644 index 0138135e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccounttaxCustomBatchRequest.php +++ /dev/null @@ -1,38 +0,0 @@ -entries = $entries; - } - /** - * @return Google_Service_ShoppingContent_AccounttaxCustomBatchRequestEntry - */ - public function getEntries() - { - return $this->entries; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccounttaxCustomBatchRequestEntry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccounttaxCustomBatchRequestEntry.php deleted file mode 100644 index 413515b7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccounttaxCustomBatchRequestEntry.php +++ /dev/null @@ -1,73 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - /** - * @param Google_Service_ShoppingContent_AccountTax - */ - public function setAccountTax(Google_Service_ShoppingContent_AccountTax $accountTax) - { - $this->accountTax = $accountTax; - } - /** - * @return Google_Service_ShoppingContent_AccountTax - */ - public function getAccountTax() - { - return $this->accountTax; - } - public function setBatchId($batchId) - { - $this->batchId = $batchId; - } - public function getBatchId() - { - return $this->batchId; - } - public function setMerchantId($merchantId) - { - $this->merchantId = $merchantId; - } - public function getMerchantId() - { - return $this->merchantId; - } - public function setMethod($method) - { - $this->method = $method; - } - public function getMethod() - { - return $this->method; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccounttaxCustomBatchResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccounttaxCustomBatchResponse.php deleted file mode 100644 index 28c4cd59..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccounttaxCustomBatchResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -entries = $entries; - } - /** - * @return Google_Service_ShoppingContent_AccounttaxCustomBatchResponseEntry - */ - public function getEntries() - { - return $this->entries; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccounttaxCustomBatchResponseEntry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccounttaxCustomBatchResponseEntry.php deleted file mode 100644 index c8321640..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccounttaxCustomBatchResponseEntry.php +++ /dev/null @@ -1,71 +0,0 @@ -accountTax = $accountTax; - } - /** - * @return Google_Service_ShoppingContent_AccountTax - */ - public function getAccountTax() - { - return $this->accountTax; - } - public function setBatchId($batchId) - { - $this->batchId = $batchId; - } - public function getBatchId() - { - return $this->batchId; - } - /** - * @param Google_Service_ShoppingContent_Errors - */ - public function setErrors(Google_Service_ShoppingContent_Errors $errors) - { - $this->errors = $errors; - } - /** - * @return Google_Service_ShoppingContent_Errors - */ - public function getErrors() - { - return $this->errors; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccounttaxListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccounttaxListResponse.php deleted file mode 100644 index 817a8c3f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/AccounttaxListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_ShoppingContent_AccountTax - */ - public function setResources($resources) - { - $this->resources = $resources; - } - /** - * @return Google_Service_ShoppingContent_AccountTax - */ - public function getResources() - { - return $this->resources; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Amount.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Amount.php deleted file mode 100644 index e0bf5aee..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Amount.php +++ /dev/null @@ -1,53 +0,0 @@ -priceAmount = $priceAmount; - } - /** - * @return Google_Service_ShoppingContent_Price - */ - public function getPriceAmount() - { - return $this->priceAmount; - } - /** - * @param Google_Service_ShoppingContent_Price - */ - public function setTaxAmount(Google_Service_ShoppingContent_Price $taxAmount) - { - $this->taxAmount = $taxAmount; - } - /** - * @return Google_Service_ShoppingContent_Price - */ - public function getTaxAmount() - { - return $this->taxAmount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/BusinessDayConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/BusinessDayConfig.php deleted file mode 100644 index a4d4c22a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/BusinessDayConfig.php +++ /dev/null @@ -1,31 +0,0 @@ -businessDays = $businessDays; - } - public function getBusinessDays() - { - return $this->businessDays; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/CarrierRate.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/CarrierRate.php deleted file mode 100644 index 7064a4de..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/CarrierRate.php +++ /dev/null @@ -1,82 +0,0 @@ -carrierName = $carrierName; - } - public function getCarrierName() - { - return $this->carrierName; - } - public function setCarrierService($carrierService) - { - $this->carrierService = $carrierService; - } - public function getCarrierService() - { - return $this->carrierService; - } - /** - * @param Google_Service_ShoppingContent_Price - */ - public function setFlatAdjustment(Google_Service_ShoppingContent_Price $flatAdjustment) - { - $this->flatAdjustment = $flatAdjustment; - } - /** - * @return Google_Service_ShoppingContent_Price - */ - public function getFlatAdjustment() - { - return $this->flatAdjustment; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setOriginPostalCode($originPostalCode) - { - $this->originPostalCode = $originPostalCode; - } - public function getOriginPostalCode() - { - return $this->originPostalCode; - } - public function setPercentageAdjustment($percentageAdjustment) - { - $this->percentageAdjustment = $percentageAdjustment; - } - public function getPercentageAdjustment() - { - return $this->percentageAdjustment; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/CarriersCarrier.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/CarriersCarrier.php deleted file mode 100644 index a0285ab7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/CarriersCarrier.php +++ /dev/null @@ -1,49 +0,0 @@ -country = $country; - } - public function getCountry() - { - return $this->country; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setServices($services) - { - $this->services = $services; - } - public function getServices() - { - return $this->services; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/CustomAttribute.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/CustomAttribute.php deleted file mode 100644 index 9db768c6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/CustomAttribute.php +++ /dev/null @@ -1,56 +0,0 @@ -groupValues = $groupValues; - } - /** - * @return Google_Service_ShoppingContent_CustomAttribute - */ - public function getGroupValues() - { - return $this->groupValues; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/CustomerReturnReason.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/CustomerReturnReason.php deleted file mode 100644 index de46309d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/CustomerReturnReason.php +++ /dev/null @@ -1,39 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setReasonCode($reasonCode) - { - $this->reasonCode = $reasonCode; - } - public function getReasonCode() - { - return $this->reasonCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/CutoffTime.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/CutoffTime.php deleted file mode 100644 index dc2a19cd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/CutoffTime.php +++ /dev/null @@ -1,48 +0,0 @@ -hour = $hour; - } - public function getHour() - { - return $this->hour; - } - public function setMinute($minute) - { - $this->minute = $minute; - } - public function getMinute() - { - return $this->minute; - } - public function setTimezone($timezone) - { - $this->timezone = $timezone; - } - public function getTimezone() - { - return $this->timezone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Datafeed.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Datafeed.php deleted file mode 100644 index 71d902de..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Datafeed.php +++ /dev/null @@ -1,124 +0,0 @@ -attributeLanguage = $attributeLanguage; - } - public function getAttributeLanguage() - { - return $this->attributeLanguage; - } - public function setContentType($contentType) - { - $this->contentType = $contentType; - } - public function getContentType() - { - return $this->contentType; - } - /** - * @param Google_Service_ShoppingContent_DatafeedFetchSchedule - */ - public function setFetchSchedule(Google_Service_ShoppingContent_DatafeedFetchSchedule $fetchSchedule) - { - $this->fetchSchedule = $fetchSchedule; - } - /** - * @return Google_Service_ShoppingContent_DatafeedFetchSchedule - */ - public function getFetchSchedule() - { - return $this->fetchSchedule; - } - public function setFileName($fileName) - { - $this->fileName = $fileName; - } - public function getFileName() - { - return $this->fileName; - } - /** - * @param Google_Service_ShoppingContent_DatafeedFormat - */ - public function setFormat(Google_Service_ShoppingContent_DatafeedFormat $format) - { - $this->format = $format; - } - /** - * @return Google_Service_ShoppingContent_DatafeedFormat - */ - public function getFormat() - { - return $this->format; - } - 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 setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_ShoppingContent_DatafeedTarget - */ - public function setTargets($targets) - { - $this->targets = $targets; - } - /** - * @return Google_Service_ShoppingContent_DatafeedTarget - */ - public function getTargets() - { - return $this->targets; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/DatafeedFetchSchedule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/DatafeedFetchSchedule.php deleted file mode 100644 index 31937905..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/DatafeedFetchSchedule.php +++ /dev/null @@ -1,102 +0,0 @@ -dayOfMonth = $dayOfMonth; - } - public function getDayOfMonth() - { - return $this->dayOfMonth; - } - public function setFetchUrl($fetchUrl) - { - $this->fetchUrl = $fetchUrl; - } - public function getFetchUrl() - { - return $this->fetchUrl; - } - public function setHour($hour) - { - $this->hour = $hour; - } - public function getHour() - { - return $this->hour; - } - public function setMinuteOfHour($minuteOfHour) - { - $this->minuteOfHour = $minuteOfHour; - } - public function getMinuteOfHour() - { - return $this->minuteOfHour; - } - public function setPassword($password) - { - $this->password = $password; - } - public function getPassword() - { - return $this->password; - } - public function setPaused($paused) - { - $this->paused = $paused; - } - public function getPaused() - { - return $this->paused; - } - public function setTimeZone($timeZone) - { - $this->timeZone = $timeZone; - } - public function getTimeZone() - { - return $this->timeZone; - } - public function setUsername($username) - { - $this->username = $username; - } - public function getUsername() - { - return $this->username; - } - public function setWeekday($weekday) - { - $this->weekday = $weekday; - } - public function getWeekday() - { - return $this->weekday; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/DatafeedFormat.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/DatafeedFormat.php deleted file mode 100644 index f0aed397..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/DatafeedFormat.php +++ /dev/null @@ -1,48 +0,0 @@ -columnDelimiter = $columnDelimiter; - } - public function getColumnDelimiter() - { - return $this->columnDelimiter; - } - public function setFileEncoding($fileEncoding) - { - $this->fileEncoding = $fileEncoding; - } - public function getFileEncoding() - { - return $this->fileEncoding; - } - public function setQuotingMode($quotingMode) - { - $this->quotingMode = $quotingMode; - } - public function getQuotingMode() - { - return $this->quotingMode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/DatafeedStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/DatafeedStatus.php deleted file mode 100644 index fbed9dc0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/DatafeedStatus.php +++ /dev/null @@ -1,126 +0,0 @@ -country = $country; - } - public function getCountry() - { - return $this->country; - } - public function setDatafeedId($datafeedId) - { - $this->datafeedId = $datafeedId; - } - public function getDatafeedId() - { - return $this->datafeedId; - } - /** - * @param Google_Service_ShoppingContent_DatafeedStatusError - */ - public function setErrors($errors) - { - $this->errors = $errors; - } - /** - * @return Google_Service_ShoppingContent_DatafeedStatusError - */ - public function getErrors() - { - return $this->errors; - } - public function setItemsTotal($itemsTotal) - { - $this->itemsTotal = $itemsTotal; - } - public function getItemsTotal() - { - return $this->itemsTotal; - } - public function setItemsValid($itemsValid) - { - $this->itemsValid = $itemsValid; - } - public function getItemsValid() - { - return $this->itemsValid; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLanguage($language) - { - $this->language = $language; - } - public function getLanguage() - { - return $this->language; - } - public function setLastUploadDate($lastUploadDate) - { - $this->lastUploadDate = $lastUploadDate; - } - public function getLastUploadDate() - { - return $this->lastUploadDate; - } - public function setProcessingStatus($processingStatus) - { - $this->processingStatus = $processingStatus; - } - public function getProcessingStatus() - { - return $this->processingStatus; - } - /** - * @param Google_Service_ShoppingContent_DatafeedStatusError - */ - public function setWarnings($warnings) - { - $this->warnings = $warnings; - } - /** - * @return Google_Service_ShoppingContent_DatafeedStatusError - */ - public function getWarnings() - { - return $this->warnings; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/DatafeedStatusError.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/DatafeedStatusError.php deleted file mode 100644 index 9aaddf48..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/DatafeedStatusError.php +++ /dev/null @@ -1,65 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setCount($count) - { - $this->count = $count; - } - public function getCount() - { - return $this->count; - } - /** - * @param Google_Service_ShoppingContent_DatafeedStatusExample - */ - public function setExamples($examples) - { - $this->examples = $examples; - } - /** - * @return Google_Service_ShoppingContent_DatafeedStatusExample - */ - public function getExamples() - { - return $this->examples; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/DatafeedStatusExample.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/DatafeedStatusExample.php deleted file mode 100644 index 7be6bf45..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/DatafeedStatusExample.php +++ /dev/null @@ -1,48 +0,0 @@ -itemId = $itemId; - } - public function getItemId() - { - return $this->itemId; - } - public function setLineNumber($lineNumber) - { - $this->lineNumber = $lineNumber; - } - public function getLineNumber() - { - return $this->lineNumber; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/DatafeedTarget.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/DatafeedTarget.php deleted file mode 100644 index aad27209..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/DatafeedTarget.php +++ /dev/null @@ -1,58 +0,0 @@ -country = $country; - } - public function getCountry() - { - return $this->country; - } - public function setExcludedDestinations($excludedDestinations) - { - $this->excludedDestinations = $excludedDestinations; - } - public function getExcludedDestinations() - { - return $this->excludedDestinations; - } - public function setIncludedDestinations($includedDestinations) - { - $this->includedDestinations = $includedDestinations; - } - public function getIncludedDestinations() - { - return $this->includedDestinations; - } - public function setLanguage($language) - { - $this->language = $language; - } - public function getLanguage() - { - return $this->language; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/DatafeedsCustomBatchRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/DatafeedsCustomBatchRequest.php deleted file mode 100644 index b942cdab..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/DatafeedsCustomBatchRequest.php +++ /dev/null @@ -1,38 +0,0 @@ -entries = $entries; - } - /** - * @return Google_Service_ShoppingContent_DatafeedsCustomBatchRequestEntry - */ - public function getEntries() - { - return $this->entries; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/DatafeedsCustomBatchRequestEntry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/DatafeedsCustomBatchRequestEntry.php deleted file mode 100644 index 3eb26d29..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/DatafeedsCustomBatchRequestEntry.php +++ /dev/null @@ -1,73 +0,0 @@ -batchId = $batchId; - } - public function getBatchId() - { - return $this->batchId; - } - /** - * @param Google_Service_ShoppingContent_Datafeed - */ - public function setDatafeed(Google_Service_ShoppingContent_Datafeed $datafeed) - { - $this->datafeed = $datafeed; - } - /** - * @return Google_Service_ShoppingContent_Datafeed - */ - public function getDatafeed() - { - return $this->datafeed; - } - public function setDatafeedId($datafeedId) - { - $this->datafeedId = $datafeedId; - } - public function getDatafeedId() - { - return $this->datafeedId; - } - public function setMerchantId($merchantId) - { - $this->merchantId = $merchantId; - } - public function getMerchantId() - { - return $this->merchantId; - } - public function setMethod($method) - { - $this->method = $method; - } - public function getMethod() - { - return $this->method; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/DatafeedsCustomBatchResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/DatafeedsCustomBatchResponse.php deleted file mode 100644 index d73fe613..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/DatafeedsCustomBatchResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -entries = $entries; - } - /** - * @return Google_Service_ShoppingContent_DatafeedsCustomBatchResponseEntry - */ - public function getEntries() - { - return $this->entries; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/DatafeedsCustomBatchResponseEntry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/DatafeedsCustomBatchResponseEntry.php deleted file mode 100644 index 079aeda9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/DatafeedsCustomBatchResponseEntry.php +++ /dev/null @@ -1,62 +0,0 @@ -batchId = $batchId; - } - public function getBatchId() - { - return $this->batchId; - } - /** - * @param Google_Service_ShoppingContent_Datafeed - */ - public function setDatafeed(Google_Service_ShoppingContent_Datafeed $datafeed) - { - $this->datafeed = $datafeed; - } - /** - * @return Google_Service_ShoppingContent_Datafeed - */ - public function getDatafeed() - { - return $this->datafeed; - } - /** - * @param Google_Service_ShoppingContent_Errors - */ - public function setErrors(Google_Service_ShoppingContent_Errors $errors) - { - $this->errors = $errors; - } - /** - * @return Google_Service_ShoppingContent_Errors - */ - public function getErrors() - { - return $this->errors; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/DatafeedsFetchNowResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/DatafeedsFetchNowResponse.php deleted file mode 100644 index ab08cd5e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/DatafeedsFetchNowResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/DatafeedsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/DatafeedsListResponse.php deleted file mode 100644 index a8ca3c39..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/DatafeedsListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_ShoppingContent_Datafeed - */ - public function setResources($resources) - { - $this->resources = $resources; - } - /** - * @return Google_Service_ShoppingContent_Datafeed - */ - public function getResources() - { - return $this->resources; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/DatafeedstatusesCustomBatchRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/DatafeedstatusesCustomBatchRequest.php deleted file mode 100644 index eeded5a9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/DatafeedstatusesCustomBatchRequest.php +++ /dev/null @@ -1,38 +0,0 @@ -entries = $entries; - } - /** - * @return Google_Service_ShoppingContent_DatafeedstatusesCustomBatchRequestEntry - */ - public function getEntries() - { - return $this->entries; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/DatafeedstatusesCustomBatchRequestEntry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/DatafeedstatusesCustomBatchRequestEntry.php deleted file mode 100644 index e0edd9cb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/DatafeedstatusesCustomBatchRequestEntry.php +++ /dev/null @@ -1,75 +0,0 @@ -batchId = $batchId; - } - public function getBatchId() - { - return $this->batchId; - } - public function setCountry($country) - { - $this->country = $country; - } - public function getCountry() - { - return $this->country; - } - public function setDatafeedId($datafeedId) - { - $this->datafeedId = $datafeedId; - } - public function getDatafeedId() - { - return $this->datafeedId; - } - public function setLanguage($language) - { - $this->language = $language; - } - public function getLanguage() - { - return $this->language; - } - public function setMerchantId($merchantId) - { - $this->merchantId = $merchantId; - } - public function getMerchantId() - { - return $this->merchantId; - } - public function setMethod($method) - { - $this->method = $method; - } - public function getMethod() - { - return $this->method; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/DatafeedstatusesCustomBatchResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/DatafeedstatusesCustomBatchResponse.php deleted file mode 100644 index a4fab57a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/DatafeedstatusesCustomBatchResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -entries = $entries; - } - /** - * @return Google_Service_ShoppingContent_DatafeedstatusesCustomBatchResponseEntry - */ - public function getEntries() - { - return $this->entries; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/DatafeedstatusesCustomBatchResponseEntry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/DatafeedstatusesCustomBatchResponseEntry.php deleted file mode 100644 index 2f4a95c4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/DatafeedstatusesCustomBatchResponseEntry.php +++ /dev/null @@ -1,62 +0,0 @@ -batchId = $batchId; - } - public function getBatchId() - { - return $this->batchId; - } - /** - * @param Google_Service_ShoppingContent_DatafeedStatus - */ - public function setDatafeedStatus(Google_Service_ShoppingContent_DatafeedStatus $datafeedStatus) - { - $this->datafeedStatus = $datafeedStatus; - } - /** - * @return Google_Service_ShoppingContent_DatafeedStatus - */ - public function getDatafeedStatus() - { - return $this->datafeedStatus; - } - /** - * @param Google_Service_ShoppingContent_Errors - */ - public function setErrors(Google_Service_ShoppingContent_Errors $errors) - { - $this->errors = $errors; - } - /** - * @return Google_Service_ShoppingContent_Errors - */ - public function getErrors() - { - return $this->errors; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/DatafeedstatusesListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/DatafeedstatusesListResponse.php deleted file mode 100644 index 7b40fe62..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/DatafeedstatusesListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_ShoppingContent_DatafeedStatus - */ - public function setResources($resources) - { - $this->resources = $resources; - } - /** - * @return Google_Service_ShoppingContent_DatafeedStatus - */ - public function getResources() - { - return $this->resources; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/DeliveryTime.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/DeliveryTime.php deleted file mode 100644 index 308c5d68..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/DeliveryTime.php +++ /dev/null @@ -1,138 +0,0 @@ -cutoffTime = $cutoffTime; - } - /** - * @return Google_Service_ShoppingContent_CutoffTime - */ - public function getCutoffTime() - { - return $this->cutoffTime; - } - /** - * @param Google_Service_ShoppingContent_BusinessDayConfig - */ - public function setHandlingBusinessDayConfig(Google_Service_ShoppingContent_BusinessDayConfig $handlingBusinessDayConfig) - { - $this->handlingBusinessDayConfig = $handlingBusinessDayConfig; - } - /** - * @return Google_Service_ShoppingContent_BusinessDayConfig - */ - public function getHandlingBusinessDayConfig() - { - return $this->handlingBusinessDayConfig; - } - /** - * @param Google_Service_ShoppingContent_HolidayCutoff - */ - public function setHolidayCutoffs($holidayCutoffs) - { - $this->holidayCutoffs = $holidayCutoffs; - } - /** - * @return Google_Service_ShoppingContent_HolidayCutoff - */ - public function getHolidayCutoffs() - { - return $this->holidayCutoffs; - } - public function setMaxHandlingTimeInDays($maxHandlingTimeInDays) - { - $this->maxHandlingTimeInDays = $maxHandlingTimeInDays; - } - public function getMaxHandlingTimeInDays() - { - return $this->maxHandlingTimeInDays; - } - public function setMaxTransitTimeInDays($maxTransitTimeInDays) - { - $this->maxTransitTimeInDays = $maxTransitTimeInDays; - } - public function getMaxTransitTimeInDays() - { - return $this->maxTransitTimeInDays; - } - public function setMinHandlingTimeInDays($minHandlingTimeInDays) - { - $this->minHandlingTimeInDays = $minHandlingTimeInDays; - } - public function getMinHandlingTimeInDays() - { - return $this->minHandlingTimeInDays; - } - public function setMinTransitTimeInDays($minTransitTimeInDays) - { - $this->minTransitTimeInDays = $minTransitTimeInDays; - } - public function getMinTransitTimeInDays() - { - return $this->minTransitTimeInDays; - } - /** - * @param Google_Service_ShoppingContent_BusinessDayConfig - */ - public function setTransitBusinessDayConfig(Google_Service_ShoppingContent_BusinessDayConfig $transitBusinessDayConfig) - { - $this->transitBusinessDayConfig = $transitBusinessDayConfig; - } - /** - * @return Google_Service_ShoppingContent_BusinessDayConfig - */ - public function getTransitBusinessDayConfig() - { - return $this->transitBusinessDayConfig; - } - /** - * @param Google_Service_ShoppingContent_TransitTable - */ - public function setTransitTimeTable(Google_Service_ShoppingContent_TransitTable $transitTimeTable) - { - $this->transitTimeTable = $transitTimeTable; - } - /** - * @return Google_Service_ShoppingContent_TransitTable - */ - public function getTransitTimeTable() - { - return $this->transitTimeTable; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Error.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Error.php deleted file mode 100644 index df5b7418..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Error.php +++ /dev/null @@ -1,48 +0,0 @@ -domain = $domain; - } - public function getDomain() - { - return $this->domain; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } - public function setReason($reason) - { - $this->reason = $reason; - } - public function getReason() - { - return $this->reason; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Errors.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Errors.php deleted file mode 100644 index 495603be..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Errors.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_ShoppingContent_Error - */ - public function setErrors($errors) - { - $this->errors = $errors; - } - /** - * @return Google_Service_ShoppingContent_Error - */ - public function getErrors() - { - return $this->errors; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/GmbAccounts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/GmbAccounts.php deleted file mode 100644 index faa9530e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/GmbAccounts.php +++ /dev/null @@ -1,47 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - /** - * @param Google_Service_ShoppingContent_GmbAccountsGmbAccount - */ - public function setGmbAccounts($gmbAccounts) - { - $this->gmbAccounts = $gmbAccounts; - } - /** - * @return Google_Service_ShoppingContent_GmbAccountsGmbAccount - */ - public function getGmbAccounts() - { - return $this->gmbAccounts; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/GmbAccountsGmbAccount.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/GmbAccountsGmbAccount.php deleted file mode 100644 index c5969c8d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/GmbAccountsGmbAccount.php +++ /dev/null @@ -1,57 +0,0 @@ -email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setListingCount($listingCount) - { - $this->listingCount = $listingCount; - } - public function getListingCount() - { - return $this->listingCount; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Headers.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Headers.php deleted file mode 100644 index d93bbb9b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Headers.php +++ /dev/null @@ -1,88 +0,0 @@ -locations = $locations; - } - /** - * @return Google_Service_ShoppingContent_LocationIdSet - */ - public function getLocations() - { - return $this->locations; - } - public function setNumberOfItems($numberOfItems) - { - $this->numberOfItems = $numberOfItems; - } - public function getNumberOfItems() - { - return $this->numberOfItems; - } - public function setPostalCodeGroupNames($postalCodeGroupNames) - { - $this->postalCodeGroupNames = $postalCodeGroupNames; - } - public function getPostalCodeGroupNames() - { - return $this->postalCodeGroupNames; - } - /** - * @param Google_Service_ShoppingContent_Price - */ - public function setPrices($prices) - { - $this->prices = $prices; - } - /** - * @return Google_Service_ShoppingContent_Price - */ - public function getPrices() - { - return $this->prices; - } - /** - * @param Google_Service_ShoppingContent_Weight - */ - public function setWeights($weights) - { - $this->weights = $weights; - } - /** - * @return Google_Service_ShoppingContent_Weight - */ - public function getWeights() - { - return $this->weights; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/HolidayCutoff.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/HolidayCutoff.php deleted file mode 100644 index dcd1aba6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/HolidayCutoff.php +++ /dev/null @@ -1,66 +0,0 @@ -deadlineDate = $deadlineDate; - } - public function getDeadlineDate() - { - return $this->deadlineDate; - } - public function setDeadlineHour($deadlineHour) - { - $this->deadlineHour = $deadlineHour; - } - public function getDeadlineHour() - { - return $this->deadlineHour; - } - public function setDeadlineTimezone($deadlineTimezone) - { - $this->deadlineTimezone = $deadlineTimezone; - } - public function getDeadlineTimezone() - { - return $this->deadlineTimezone; - } - public function setHolidayId($holidayId) - { - $this->holidayId = $holidayId; - } - public function getHolidayId() - { - return $this->holidayId; - } - public function setVisibleFromDate($visibleFromDate) - { - $this->visibleFromDate = $visibleFromDate; - } - public function getVisibleFromDate() - { - return $this->visibleFromDate; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/HolidaysHoliday.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/HolidaysHoliday.php deleted file mode 100644 index c46a5765..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/HolidaysHoliday.php +++ /dev/null @@ -1,75 +0,0 @@ -countryCode = $countryCode; - } - public function getCountryCode() - { - return $this->countryCode; - } - public function setDate($date) - { - $this->date = $date; - } - public function getDate() - { - return $this->date; - } - public function setDeliveryGuaranteeDate($deliveryGuaranteeDate) - { - $this->deliveryGuaranteeDate = $deliveryGuaranteeDate; - } - public function getDeliveryGuaranteeDate() - { - return $this->deliveryGuaranteeDate; - } - public function setDeliveryGuaranteeHour($deliveryGuaranteeHour) - { - $this->deliveryGuaranteeHour = $deliveryGuaranteeHour; - } - public function getDeliveryGuaranteeHour() - { - return $this->deliveryGuaranteeHour; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Installment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Installment.php deleted file mode 100644 index 4c7686e4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Installment.php +++ /dev/null @@ -1,46 +0,0 @@ -amount = $amount; - } - /** - * @return Google_Service_ShoppingContent_Price - */ - public function getAmount() - { - return $this->amount; - } - public function setMonths($months) - { - $this->months = $months; - } - public function getMonths() - { - return $this->months; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/InvoiceSummary.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/InvoiceSummary.php deleted file mode 100644 index ecade801..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/InvoiceSummary.php +++ /dev/null @@ -1,54 +0,0 @@ -additionalChargeSummaries = $additionalChargeSummaries; - } - /** - * @return Google_Service_ShoppingContent_InvoiceSummaryAdditionalChargeSummary - */ - public function getAdditionalChargeSummaries() - { - return $this->additionalChargeSummaries; - } - /** - * @param Google_Service_ShoppingContent_Amount - */ - public function setProductTotal(Google_Service_ShoppingContent_Amount $productTotal) - { - $this->productTotal = $productTotal; - } - /** - * @return Google_Service_ShoppingContent_Amount - */ - public function getProductTotal() - { - return $this->productTotal; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/InvoiceSummaryAdditionalChargeSummary.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/InvoiceSummaryAdditionalChargeSummary.php deleted file mode 100644 index f64a0639..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/InvoiceSummaryAdditionalChargeSummary.php +++ /dev/null @@ -1,46 +0,0 @@ -totalAmount = $totalAmount; - } - /** - * @return Google_Service_ShoppingContent_Amount - */ - public function getTotalAmount() - { - return $this->totalAmount; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LiaAboutPageSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LiaAboutPageSettings.php deleted file mode 100644 index a015b0cf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LiaAboutPageSettings.php +++ /dev/null @@ -1,39 +0,0 @@ -status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LiaCountrySettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LiaCountrySettings.php deleted file mode 100644 index d5b8fee0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LiaCountrySettings.php +++ /dev/null @@ -1,112 +0,0 @@ -about = $about; - } - /** - * @return Google_Service_ShoppingContent_LiaAboutPageSettings - */ - public function getAbout() - { - return $this->about; - } - public function setCountry($country) - { - $this->country = $country; - } - public function getCountry() - { - return $this->country; - } - public function setHostedLocalStorefrontActive($hostedLocalStorefrontActive) - { - $this->hostedLocalStorefrontActive = $hostedLocalStorefrontActive; - } - public function getHostedLocalStorefrontActive() - { - return $this->hostedLocalStorefrontActive; - } - /** - * @param Google_Service_ShoppingContent_LiaInventorySettings - */ - public function setInventory(Google_Service_ShoppingContent_LiaInventorySettings $inventory) - { - $this->inventory = $inventory; - } - /** - * @return Google_Service_ShoppingContent_LiaInventorySettings - */ - public function getInventory() - { - return $this->inventory; - } - /** - * @param Google_Service_ShoppingContent_LiaOnDisplayToOrderSettings - */ - public function setOnDisplayToOrder(Google_Service_ShoppingContent_LiaOnDisplayToOrderSettings $onDisplayToOrder) - { - $this->onDisplayToOrder = $onDisplayToOrder; - } - /** - * @return Google_Service_ShoppingContent_LiaOnDisplayToOrderSettings - */ - public function getOnDisplayToOrder() - { - return $this->onDisplayToOrder; - } - /** - * @param Google_Service_ShoppingContent_LiaPosDataProvider - */ - public function setPosDataProvider(Google_Service_ShoppingContent_LiaPosDataProvider $posDataProvider) - { - $this->posDataProvider = $posDataProvider; - } - /** - * @return Google_Service_ShoppingContent_LiaPosDataProvider - */ - public function getPosDataProvider() - { - return $this->posDataProvider; - } - public function setStorePickupActive($storePickupActive) - { - $this->storePickupActive = $storePickupActive; - } - public function getStorePickupActive() - { - return $this->storePickupActive; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LiaInventorySettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LiaInventorySettings.php deleted file mode 100644 index 0b98a78e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LiaInventorySettings.php +++ /dev/null @@ -1,57 +0,0 @@ -inventoryVerificationContactEmail = $inventoryVerificationContactEmail; - } - public function getInventoryVerificationContactEmail() - { - return $this->inventoryVerificationContactEmail; - } - public function setInventoryVerificationContactName($inventoryVerificationContactName) - { - $this->inventoryVerificationContactName = $inventoryVerificationContactName; - } - public function getInventoryVerificationContactName() - { - return $this->inventoryVerificationContactName; - } - public function setInventoryVerificationContactStatus($inventoryVerificationContactStatus) - { - $this->inventoryVerificationContactStatus = $inventoryVerificationContactStatus; - } - public function getInventoryVerificationContactStatus() - { - return $this->inventoryVerificationContactStatus; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LiaOnDisplayToOrderSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LiaOnDisplayToOrderSettings.php deleted file mode 100644 index ce07569c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LiaOnDisplayToOrderSettings.php +++ /dev/null @@ -1,39 +0,0 @@ -shippingCostPolicyUrl = $shippingCostPolicyUrl; - } - public function getShippingCostPolicyUrl() - { - return $this->shippingCostPolicyUrl; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LiaPosDataProvider.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LiaPosDataProvider.php deleted file mode 100644 index ff7acb04..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LiaPosDataProvider.php +++ /dev/null @@ -1,39 +0,0 @@ -posDataProviderId = $posDataProviderId; - } - public function getPosDataProviderId() - { - return $this->posDataProviderId; - } - public function setPosExternalAccountId($posExternalAccountId) - { - $this->posExternalAccountId = $posExternalAccountId; - } - public function getPosExternalAccountId() - { - return $this->posExternalAccountId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LiaSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LiaSettings.php deleted file mode 100644 index 764532ac..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LiaSettings.php +++ /dev/null @@ -1,56 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - /** - * @param Google_Service_ShoppingContent_LiaCountrySettings - */ - public function setCountrySettings($countrySettings) - { - $this->countrySettings = $countrySettings; - } - /** - * @return Google_Service_ShoppingContent_LiaCountrySettings - */ - public function getCountrySettings() - { - return $this->countrySettings; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LiasettingsCustomBatchRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LiasettingsCustomBatchRequest.php deleted file mode 100644 index fe6196db..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LiasettingsCustomBatchRequest.php +++ /dev/null @@ -1,38 +0,0 @@ -entries = $entries; - } - /** - * @return Google_Service_ShoppingContent_LiasettingsCustomBatchRequestEntry - */ - public function getEntries() - { - return $this->entries; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LiasettingsCustomBatchRequestEntry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LiasettingsCustomBatchRequestEntry.php deleted file mode 100644 index 011eb9a6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LiasettingsCustomBatchRequestEntry.php +++ /dev/null @@ -1,127 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setBatchId($batchId) - { - $this->batchId = $batchId; - } - public function getBatchId() - { - return $this->batchId; - } - public function setContactEmail($contactEmail) - { - $this->contactEmail = $contactEmail; - } - public function getContactEmail() - { - return $this->contactEmail; - } - public function setContactName($contactName) - { - $this->contactName = $contactName; - } - public function getContactName() - { - return $this->contactName; - } - public function setCountry($country) - { - $this->country = $country; - } - public function getCountry() - { - return $this->country; - } - public function setGmbEmail($gmbEmail) - { - $this->gmbEmail = $gmbEmail; - } - public function getGmbEmail() - { - return $this->gmbEmail; - } - /** - * @param Google_Service_ShoppingContent_LiaSettings - */ - public function setLiaSettings(Google_Service_ShoppingContent_LiaSettings $liaSettings) - { - $this->liaSettings = $liaSettings; - } - /** - * @return Google_Service_ShoppingContent_LiaSettings - */ - public function getLiaSettings() - { - return $this->liaSettings; - } - public function setMerchantId($merchantId) - { - $this->merchantId = $merchantId; - } - public function getMerchantId() - { - return $this->merchantId; - } - public function setMethod($method) - { - $this->method = $method; - } - public function getMethod() - { - return $this->method; - } - public function setPosDataProviderId($posDataProviderId) - { - $this->posDataProviderId = $posDataProviderId; - } - public function getPosDataProviderId() - { - return $this->posDataProviderId; - } - public function setPosExternalAccountId($posExternalAccountId) - { - $this->posExternalAccountId = $posExternalAccountId; - } - public function getPosExternalAccountId() - { - return $this->posExternalAccountId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LiasettingsCustomBatchResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LiasettingsCustomBatchResponse.php deleted file mode 100644 index 7d42ca1d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LiasettingsCustomBatchResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -entries = $entries; - } - /** - * @return Google_Service_ShoppingContent_LiasettingsCustomBatchResponseEntry - */ - public function getEntries() - { - return $this->entries; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LiasettingsCustomBatchResponseEntry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LiasettingsCustomBatchResponseEntry.php deleted file mode 100644 index 7af008af..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LiasettingsCustomBatchResponseEntry.php +++ /dev/null @@ -1,104 +0,0 @@ -batchId = $batchId; - } - public function getBatchId() - { - return $this->batchId; - } - /** - * @param Google_Service_ShoppingContent_Errors - */ - public function setErrors(Google_Service_ShoppingContent_Errors $errors) - { - $this->errors = $errors; - } - /** - * @return Google_Service_ShoppingContent_Errors - */ - public function getErrors() - { - return $this->errors; - } - /** - * @param Google_Service_ShoppingContent_GmbAccounts - */ - public function setGmbAccounts(Google_Service_ShoppingContent_GmbAccounts $gmbAccounts) - { - $this->gmbAccounts = $gmbAccounts; - } - /** - * @return Google_Service_ShoppingContent_GmbAccounts - */ - public function getGmbAccounts() - { - return $this->gmbAccounts; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_ShoppingContent_LiaSettings - */ - public function setLiaSettings(Google_Service_ShoppingContent_LiaSettings $liaSettings) - { - $this->liaSettings = $liaSettings; - } - /** - * @return Google_Service_ShoppingContent_LiaSettings - */ - public function getLiaSettings() - { - return $this->liaSettings; - } - /** - * @param Google_Service_ShoppingContent_PosDataProviders - */ - public function setPosDataProviders($posDataProviders) - { - $this->posDataProviders = $posDataProviders; - } - /** - * @return Google_Service_ShoppingContent_PosDataProviders - */ - public function getPosDataProviders() - { - return $this->posDataProviders; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LiasettingsGetAccessibleGmbAccountsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LiasettingsGetAccessibleGmbAccountsResponse.php deleted file mode 100644 index 0b28337c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LiasettingsGetAccessibleGmbAccountsResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - /** - * @param Google_Service_ShoppingContent_GmbAccountsGmbAccount - */ - public function setGmbAccounts($gmbAccounts) - { - $this->gmbAccounts = $gmbAccounts; - } - /** - * @return Google_Service_ShoppingContent_GmbAccountsGmbAccount - */ - public function getGmbAccounts() - { - return $this->gmbAccounts; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LiasettingsListPosDataProvidersResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LiasettingsListPosDataProvidersResponse.php deleted file mode 100644 index 84ccac2b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LiasettingsListPosDataProvidersResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_ShoppingContent_PosDataProviders - */ - public function setPosDataProviders($posDataProviders) - { - $this->posDataProviders = $posDataProviders; - } - /** - * @return Google_Service_ShoppingContent_PosDataProviders - */ - public function getPosDataProviders() - { - return $this->posDataProviders; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LiasettingsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LiasettingsListResponse.php deleted file mode 100644 index 6bc84a47..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LiasettingsListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_ShoppingContent_LiaSettings - */ - public function setResources($resources) - { - $this->resources = $resources; - } - /** - * @return Google_Service_ShoppingContent_LiaSettings - */ - public function getResources() - { - return $this->resources; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LiasettingsRequestGmbAccessResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LiasettingsRequestGmbAccessResponse.php deleted file mode 100644 index d3154fbe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LiasettingsRequestGmbAccessResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LiasettingsRequestInventoryVerificationResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LiasettingsRequestInventoryVerificationResponse.php deleted file mode 100644 index 7eebbc4a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LiasettingsRequestInventoryVerificationResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LiasettingsSetInventoryVerificationContactResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LiasettingsSetInventoryVerificationContactResponse.php deleted file mode 100644 index 56fda900..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LiasettingsSetInventoryVerificationContactResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LiasettingsSetPosDataProviderResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LiasettingsSetPosDataProviderResponse.php deleted file mode 100644 index a6ef8bc1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LiasettingsSetPosDataProviderResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LinkService.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LinkService.php deleted file mode 100644 index 0412faff..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LinkService.php +++ /dev/null @@ -1,39 +0,0 @@ -service = $service; - } - public function getService() - { - return $this->service; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LinkedAccount.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LinkedAccount.php deleted file mode 100644 index be73b8a0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LinkedAccount.php +++ /dev/null @@ -1,47 +0,0 @@ -linkedAccountId = $linkedAccountId; - } - public function getLinkedAccountId() - { - return $this->linkedAccountId; - } - /** - * @param Google_Service_ShoppingContent_LinkService - */ - public function setServices($services) - { - $this->services = $services; - } - /** - * @return Google_Service_ShoppingContent_LinkService - */ - public function getServices() - { - return $this->services; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LocationIdSet.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LocationIdSet.php deleted file mode 100644 index 21b5d53e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LocationIdSet.php +++ /dev/null @@ -1,31 +0,0 @@ -locationIds = $locationIds; - } - public function getLocationIds() - { - return $this->locationIds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LoyaltyPoints.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LoyaltyPoints.php deleted file mode 100644 index 01296dc7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/LoyaltyPoints.php +++ /dev/null @@ -1,48 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setPointsValue($pointsValue) - { - $this->pointsValue = $pointsValue; - } - public function getPointsValue() - { - return $this->pointsValue; - } - public function setRatio($ratio) - { - $this->ratio = $ratio; - } - public function getRatio() - { - return $this->ratio; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/MerchantOrderReturn.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/MerchantOrderReturn.php deleted file mode 100644 index f01da621..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/MerchantOrderReturn.php +++ /dev/null @@ -1,90 +0,0 @@ -creationDate = $creationDate; - } - public function getCreationDate() - { - return $this->creationDate; - } - public function setMerchantOrderId($merchantOrderId) - { - $this->merchantOrderId = $merchantOrderId; - } - public function getMerchantOrderId() - { - return $this->merchantOrderId; - } - public function setOrderId($orderId) - { - $this->orderId = $orderId; - } - public function getOrderId() - { - return $this->orderId; - } - public function setOrderReturnId($orderReturnId) - { - $this->orderReturnId = $orderReturnId; - } - public function getOrderReturnId() - { - return $this->orderReturnId; - } - /** - * @param Google_Service_ShoppingContent_MerchantOrderReturnItem - */ - public function setReturnItems($returnItems) - { - $this->returnItems = $returnItems; - } - /** - * @return Google_Service_ShoppingContent_MerchantOrderReturnItem - */ - public function getReturnItems() - { - return $this->returnItems; - } - /** - * @param Google_Service_ShoppingContent_ReturnShipment - */ - public function setReturnShipments($returnShipments) - { - $this->returnShipments = $returnShipments; - } - /** - * @return Google_Service_ShoppingContent_ReturnShipment - */ - public function getReturnShipments() - { - return $this->returnShipments; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/MerchantOrderReturnItem.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/MerchantOrderReturnItem.php deleted file mode 100644 index 0656f447..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/MerchantOrderReturnItem.php +++ /dev/null @@ -1,97 +0,0 @@ -customerReturnReason = $customerReturnReason; - } - /** - * @return Google_Service_ShoppingContent_CustomerReturnReason - */ - public function getCustomerReturnReason() - { - return $this->customerReturnReason; - } - public function setItemId($itemId) - { - $this->itemId = $itemId; - } - public function getItemId() - { - return $this->itemId; - } - /** - * @param Google_Service_ShoppingContent_RefundReason - */ - public function setMerchantReturnReason(Google_Service_ShoppingContent_RefundReason $merchantReturnReason) - { - $this->merchantReturnReason = $merchantReturnReason; - } - /** - * @return Google_Service_ShoppingContent_RefundReason - */ - public function getMerchantReturnReason() - { - return $this->merchantReturnReason; - } - /** - * @param Google_Service_ShoppingContent_OrderLineItemProduct - */ - public function setProduct(Google_Service_ShoppingContent_OrderLineItemProduct $product) - { - $this->product = $product; - } - /** - * @return Google_Service_ShoppingContent_OrderLineItemProduct - */ - public function getProduct() - { - return $this->product; - } - public function setReturnShipmentIds($returnShipmentIds) - { - $this->returnShipmentIds = $returnShipmentIds; - } - public function getReturnShipmentIds() - { - return $this->returnShipmentIds; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Order.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Order.php deleted file mode 100644 index 3f47fd26..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Order.php +++ /dev/null @@ -1,295 +0,0 @@ -acknowledged = $acknowledged; - } - public function getAcknowledged() - { - return $this->acknowledged; - } - /** - * @param Google_Service_ShoppingContent_OrderAddress - */ - public function setBillingAddress(Google_Service_ShoppingContent_OrderAddress $billingAddress) - { - $this->billingAddress = $billingAddress; - } - /** - * @return Google_Service_ShoppingContent_OrderAddress - */ - public function getBillingAddress() - { - return $this->billingAddress; - } - /** - * @param Google_Service_ShoppingContent_OrderCustomer - */ - public function setCustomer(Google_Service_ShoppingContent_OrderCustomer $customer) - { - $this->customer = $customer; - } - /** - * @return Google_Service_ShoppingContent_OrderCustomer - */ - public function getCustomer() - { - return $this->customer; - } - /** - * @param Google_Service_ShoppingContent_OrderDeliveryDetails - */ - public function setDeliveryDetails(Google_Service_ShoppingContent_OrderDeliveryDetails $deliveryDetails) - { - $this->deliveryDetails = $deliveryDetails; - } - /** - * @return Google_Service_ShoppingContent_OrderDeliveryDetails - */ - public function getDeliveryDetails() - { - return $this->deliveryDetails; - } - 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; - } - /** - * @param Google_Service_ShoppingContent_OrderLineItem - */ - public function setLineItems($lineItems) - { - $this->lineItems = $lineItems; - } - /** - * @return Google_Service_ShoppingContent_OrderLineItem - */ - public function getLineItems() - { - return $this->lineItems; - } - public function setMerchantId($merchantId) - { - $this->merchantId = $merchantId; - } - public function getMerchantId() - { - return $this->merchantId; - } - public function setMerchantOrderId($merchantOrderId) - { - $this->merchantOrderId = $merchantOrderId; - } - public function getMerchantOrderId() - { - return $this->merchantOrderId; - } - /** - * @param Google_Service_ShoppingContent_Price - */ - public function setNetPriceAmount(Google_Service_ShoppingContent_Price $netPriceAmount) - { - $this->netPriceAmount = $netPriceAmount; - } - /** - * @return Google_Service_ShoppingContent_Price - */ - public function getNetPriceAmount() - { - return $this->netPriceAmount; - } - /** - * @param Google_Service_ShoppingContent_Price - */ - public function setNetTaxAmount(Google_Service_ShoppingContent_Price $netTaxAmount) - { - $this->netTaxAmount = $netTaxAmount; - } - /** - * @return Google_Service_ShoppingContent_Price - */ - public function getNetTaxAmount() - { - return $this->netTaxAmount; - } - public function setPaymentStatus($paymentStatus) - { - $this->paymentStatus = $paymentStatus; - } - public function getPaymentStatus() - { - return $this->paymentStatus; - } - /** - * @param Google_Service_ShoppingContent_OrderPickupDetails - */ - public function setPickupDetails(Google_Service_ShoppingContent_OrderPickupDetails $pickupDetails) - { - $this->pickupDetails = $pickupDetails; - } - /** - * @return Google_Service_ShoppingContent_OrderPickupDetails - */ - public function getPickupDetails() - { - return $this->pickupDetails; - } - public function setPlacedDate($placedDate) - { - $this->placedDate = $placedDate; - } - public function getPlacedDate() - { - return $this->placedDate; - } - /** - * @param Google_Service_ShoppingContent_OrderPromotion - */ - public function setPromotions($promotions) - { - $this->promotions = $promotions; - } - /** - * @return Google_Service_ShoppingContent_OrderPromotion - */ - public function getPromotions() - { - return $this->promotions; - } - /** - * @param Google_Service_ShoppingContent_OrderRefund - */ - public function setRefunds($refunds) - { - $this->refunds = $refunds; - } - /** - * @return Google_Service_ShoppingContent_OrderRefund - */ - public function getRefunds() - { - return $this->refunds; - } - /** - * @param Google_Service_ShoppingContent_OrderShipment - */ - public function setShipments($shipments) - { - $this->shipments = $shipments; - } - /** - * @return Google_Service_ShoppingContent_OrderShipment - */ - public function getShipments() - { - return $this->shipments; - } - /** - * @param Google_Service_ShoppingContent_Price - */ - public function setShippingCost(Google_Service_ShoppingContent_Price $shippingCost) - { - $this->shippingCost = $shippingCost; - } - /** - * @return Google_Service_ShoppingContent_Price - */ - public function getShippingCost() - { - return $this->shippingCost; - } - /** - * @param Google_Service_ShoppingContent_Price - */ - public function setShippingCostTax(Google_Service_ShoppingContent_Price $shippingCostTax) - { - $this->shippingCostTax = $shippingCostTax; - } - /** - * @return Google_Service_ShoppingContent_Price - */ - public function getShippingCostTax() - { - return $this->shippingCostTax; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setTaxCollector($taxCollector) - { - $this->taxCollector = $taxCollector; - } - public function getTaxCollector() - { - return $this->taxCollector; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderAddress.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderAddress.php deleted file mode 100644 index dc2ab884..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderAddress.php +++ /dev/null @@ -1,94 +0,0 @@ -country = $country; - } - public function getCountry() - { - return $this->country; - } - public function setFullAddress($fullAddress) - { - $this->fullAddress = $fullAddress; - } - public function getFullAddress() - { - return $this->fullAddress; - } - public function setIsPostOfficeBox($isPostOfficeBox) - { - $this->isPostOfficeBox = $isPostOfficeBox; - } - public function getIsPostOfficeBox() - { - return $this->isPostOfficeBox; - } - 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 setRecipientName($recipientName) - { - $this->recipientName = $recipientName; - } - public function getRecipientName() - { - return $this->recipientName; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - public function setStreetAddress($streetAddress) - { - $this->streetAddress = $streetAddress; - } - public function getStreetAddress() - { - return $this->streetAddress; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderCancellation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderCancellation.php deleted file mode 100644 index 8fd4ac83..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderCancellation.php +++ /dev/null @@ -1,66 +0,0 @@ -actor = $actor; - } - public function getActor() - { - return $this->actor; - } - public function setCreationDate($creationDate) - { - $this->creationDate = $creationDate; - } - public function getCreationDate() - { - return $this->creationDate; - } - public function setQuantity($quantity) - { - $this->quantity = $quantity; - } - public function getQuantity() - { - return $this->quantity; - } - public function setReason($reason) - { - $this->reason = $reason; - } - public function getReason() - { - return $this->reason; - } - public function setReasonText($reasonText) - { - $this->reasonText = $reasonText; - } - public function getReasonText() - { - return $this->reasonText; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderCustomer.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderCustomer.php deleted file mode 100644 index 2c744e0d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderCustomer.php +++ /dev/null @@ -1,71 +0,0 @@ -fullName = $fullName; - } - public function getFullName() - { - return $this->fullName; - } - public function setInvoiceReceivingEmail($invoiceReceivingEmail) - { - $this->invoiceReceivingEmail = $invoiceReceivingEmail; - } - public function getInvoiceReceivingEmail() - { - return $this->invoiceReceivingEmail; - } - /** - * @param Google_Service_ShoppingContent_OrderCustomerLoyaltyInfo - */ - public function setLoyaltyInfo(Google_Service_ShoppingContent_OrderCustomerLoyaltyInfo $loyaltyInfo) - { - $this->loyaltyInfo = $loyaltyInfo; - } - /** - * @return Google_Service_ShoppingContent_OrderCustomerLoyaltyInfo - */ - public function getLoyaltyInfo() - { - return $this->loyaltyInfo; - } - /** - * @param Google_Service_ShoppingContent_OrderCustomerMarketingRightsInfo - */ - public function setMarketingRightsInfo(Google_Service_ShoppingContent_OrderCustomerMarketingRightsInfo $marketingRightsInfo) - { - $this->marketingRightsInfo = $marketingRightsInfo; - } - /** - * @return Google_Service_ShoppingContent_OrderCustomerMarketingRightsInfo - */ - public function getMarketingRightsInfo() - { - return $this->marketingRightsInfo; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderCustomerLoyaltyInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderCustomerLoyaltyInfo.php deleted file mode 100644 index b9d49768..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderCustomerLoyaltyInfo.php +++ /dev/null @@ -1,39 +0,0 @@ -loyaltyNumber = $loyaltyNumber; - } - public function getLoyaltyNumber() - { - return $this->loyaltyNumber; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderCustomerMarketingRightsInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderCustomerMarketingRightsInfo.php deleted file mode 100644 index 1fee9250..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderCustomerMarketingRightsInfo.php +++ /dev/null @@ -1,48 +0,0 @@ -explicitMarketingPreference = $explicitMarketingPreference; - } - public function getExplicitMarketingPreference() - { - return $this->explicitMarketingPreference; - } - public function setLastUpdatedTimestamp($lastUpdatedTimestamp) - { - $this->lastUpdatedTimestamp = $lastUpdatedTimestamp; - } - public function getLastUpdatedTimestamp() - { - return $this->lastUpdatedTimestamp; - } - public function setMarketingEmailAddress($marketingEmailAddress) - { - $this->marketingEmailAddress = $marketingEmailAddress; - } - public function getMarketingEmailAddress() - { - return $this->marketingEmailAddress; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderDeliveryDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderDeliveryDetails.php deleted file mode 100644 index f6d46d05..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderDeliveryDetails.php +++ /dev/null @@ -1,46 +0,0 @@ -address = $address; - } - /** - * @return Google_Service_ShoppingContent_OrderAddress - */ - public function getAddress() - { - return $this->address; - } - public function setPhoneNumber($phoneNumber) - { - $this->phoneNumber = $phoneNumber; - } - public function getPhoneNumber() - { - return $this->phoneNumber; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderLineItem.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderLineItem.php deleted file mode 100644 index 7a8aa59d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderLineItem.php +++ /dev/null @@ -1,247 +0,0 @@ -adjustments = $adjustments; - } - /** - * @return Google_Service_ShoppingContent_OrderLineItemAdjustment - */ - public function getAdjustments() - { - return $this->adjustments; - } - /** - * @param Google_Service_ShoppingContent_OrderMerchantProvidedAnnotation - */ - public function setAnnotations($annotations) - { - $this->annotations = $annotations; - } - /** - * @return Google_Service_ShoppingContent_OrderMerchantProvidedAnnotation - */ - public function getAnnotations() - { - return $this->annotations; - } - /** - * @param Google_Service_ShoppingContent_OrderCancellation - */ - public function setCancellations($cancellations) - { - $this->cancellations = $cancellations; - } - /** - * @return Google_Service_ShoppingContent_OrderCancellation - */ - public function getCancellations() - { - return $this->cancellations; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_ShoppingContent_Price - */ - public function setPrice(Google_Service_ShoppingContent_Price $price) - { - $this->price = $price; - } - /** - * @return Google_Service_ShoppingContent_Price - */ - public function getPrice() - { - return $this->price; - } - /** - * @param Google_Service_ShoppingContent_OrderLineItemProduct - */ - public function setProduct(Google_Service_ShoppingContent_OrderLineItemProduct $product) - { - $this->product = $product; - } - /** - * @return Google_Service_ShoppingContent_OrderLineItemProduct - */ - public function getProduct() - { - return $this->product; - } - public function setQuantityCanceled($quantityCanceled) - { - $this->quantityCanceled = $quantityCanceled; - } - public function getQuantityCanceled() - { - return $this->quantityCanceled; - } - public function setQuantityDelivered($quantityDelivered) - { - $this->quantityDelivered = $quantityDelivered; - } - public function getQuantityDelivered() - { - return $this->quantityDelivered; - } - public function setQuantityOrdered($quantityOrdered) - { - $this->quantityOrdered = $quantityOrdered; - } - public function getQuantityOrdered() - { - return $this->quantityOrdered; - } - public function setQuantityPending($quantityPending) - { - $this->quantityPending = $quantityPending; - } - public function getQuantityPending() - { - return $this->quantityPending; - } - public function setQuantityReadyForPickup($quantityReadyForPickup) - { - $this->quantityReadyForPickup = $quantityReadyForPickup; - } - public function getQuantityReadyForPickup() - { - return $this->quantityReadyForPickup; - } - public function setQuantityReturned($quantityReturned) - { - $this->quantityReturned = $quantityReturned; - } - public function getQuantityReturned() - { - return $this->quantityReturned; - } - public function setQuantityShipped($quantityShipped) - { - $this->quantityShipped = $quantityShipped; - } - public function getQuantityShipped() - { - return $this->quantityShipped; - } - public function setQuantityUndeliverable($quantityUndeliverable) - { - $this->quantityUndeliverable = $quantityUndeliverable; - } - public function getQuantityUndeliverable() - { - return $this->quantityUndeliverable; - } - /** - * @param Google_Service_ShoppingContent_OrderLineItemReturnInfo - */ - public function setReturnInfo(Google_Service_ShoppingContent_OrderLineItemReturnInfo $returnInfo) - { - $this->returnInfo = $returnInfo; - } - /** - * @return Google_Service_ShoppingContent_OrderLineItemReturnInfo - */ - public function getReturnInfo() - { - return $this->returnInfo; - } - /** - * @param Google_Service_ShoppingContent_OrderReturn - */ - public function setReturns($returns) - { - $this->returns = $returns; - } - /** - * @return Google_Service_ShoppingContent_OrderReturn - */ - public function getReturns() - { - return $this->returns; - } - /** - * @param Google_Service_ShoppingContent_OrderLineItemShippingDetails - */ - public function setShippingDetails(Google_Service_ShoppingContent_OrderLineItemShippingDetails $shippingDetails) - { - $this->shippingDetails = $shippingDetails; - } - /** - * @return Google_Service_ShoppingContent_OrderLineItemShippingDetails - */ - public function getShippingDetails() - { - return $this->shippingDetails; - } - /** - * @param Google_Service_ShoppingContent_Price - */ - public function setTax(Google_Service_ShoppingContent_Price $tax) - { - $this->tax = $tax; - } - /** - * @return Google_Service_ShoppingContent_Price - */ - public function getTax() - { - return $this->tax; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderLineItemAdjustment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderLineItemAdjustment.php deleted file mode 100644 index f81f98e1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderLineItemAdjustment.php +++ /dev/null @@ -1,62 +0,0 @@ -priceAdjustment = $priceAdjustment; - } - /** - * @return Google_Service_ShoppingContent_Price - */ - public function getPriceAdjustment() - { - return $this->priceAdjustment; - } - /** - * @param Google_Service_ShoppingContent_Price - */ - public function setTaxAdjustment(Google_Service_ShoppingContent_Price $taxAdjustment) - { - $this->taxAdjustment = $taxAdjustment; - } - /** - * @return Google_Service_ShoppingContent_Price - */ - public function getTaxAdjustment() - { - return $this->taxAdjustment; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderLineItemProduct.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderLineItemProduct.php deleted file mode 100644 index e0654cb0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderLineItemProduct.php +++ /dev/null @@ -1,178 +0,0 @@ -brand = $brand; - } - public function getBrand() - { - return $this->brand; - } - public function setCondition($condition) - { - $this->condition = $condition; - } - public function getCondition() - { - return $this->condition; - } - public function setContentLanguage($contentLanguage) - { - $this->contentLanguage = $contentLanguage; - } - public function getContentLanguage() - { - return $this->contentLanguage; - } - /** - * @param Google_Service_ShoppingContent_OrderLineItemProductFee - */ - public function setFees($fees) - { - $this->fees = $fees; - } - /** - * @return Google_Service_ShoppingContent_OrderLineItemProductFee - */ - public function getFees() - { - return $this->fees; - } - public function setGtin($gtin) - { - $this->gtin = $gtin; - } - public function getGtin() - { - return $this->gtin; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setImageLink($imageLink) - { - $this->imageLink = $imageLink; - } - public function getImageLink() - { - return $this->imageLink; - } - public function setItemGroupId($itemGroupId) - { - $this->itemGroupId = $itemGroupId; - } - public function getItemGroupId() - { - return $this->itemGroupId; - } - public function setMpn($mpn) - { - $this->mpn = $mpn; - } - public function getMpn() - { - return $this->mpn; - } - public function setOfferId($offerId) - { - $this->offerId = $offerId; - } - public function getOfferId() - { - return $this->offerId; - } - /** - * @param Google_Service_ShoppingContent_Price - */ - public function setPrice(Google_Service_ShoppingContent_Price $price) - { - $this->price = $price; - } - /** - * @return Google_Service_ShoppingContent_Price - */ - public function getPrice() - { - return $this->price; - } - public function setShownImage($shownImage) - { - $this->shownImage = $shownImage; - } - public function getShownImage() - { - return $this->shownImage; - } - public function setTargetCountry($targetCountry) - { - $this->targetCountry = $targetCountry; - } - public function getTargetCountry() - { - return $this->targetCountry; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - /** - * @param Google_Service_ShoppingContent_OrderLineItemProductVariantAttribute - */ - public function setVariantAttributes($variantAttributes) - { - $this->variantAttributes = $variantAttributes; - } - /** - * @return Google_Service_ShoppingContent_OrderLineItemProductVariantAttribute - */ - public function getVariantAttributes() - { - return $this->variantAttributes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderLineItemProductFee.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderLineItemProductFee.php deleted file mode 100644 index 47cec3a2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderLineItemProductFee.php +++ /dev/null @@ -1,46 +0,0 @@ -amount = $amount; - } - /** - * @return Google_Service_ShoppingContent_Price - */ - public function getAmount() - { - return $this->amount; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderLineItemProductVariantAttribute.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderLineItemProductVariantAttribute.php deleted file mode 100644 index ca80e86e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderLineItemProductVariantAttribute.php +++ /dev/null @@ -1,39 +0,0 @@ -dimension = $dimension; - } - public function getDimension() - { - return $this->dimension; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderLineItemReturnInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderLineItemReturnInfo.php deleted file mode 100644 index a36553d6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderLineItemReturnInfo.php +++ /dev/null @@ -1,48 +0,0 @@ -daysToReturn = $daysToReturn; - } - public function getDaysToReturn() - { - return $this->daysToReturn; - } - public function setIsReturnable($isReturnable) - { - $this->isReturnable = $isReturnable; - } - public function getIsReturnable() - { - return $this->isReturnable; - } - public function setPolicyUrl($policyUrl) - { - $this->policyUrl = $policyUrl; - } - public function getPolicyUrl() - { - return $this->policyUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderLineItemShippingDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderLineItemShippingDetails.php deleted file mode 100644 index c468a006..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderLineItemShippingDetails.php +++ /dev/null @@ -1,64 +0,0 @@ -deliverByDate = $deliverByDate; - } - public function getDeliverByDate() - { - return $this->deliverByDate; - } - /** - * @param Google_Service_ShoppingContent_OrderLineItemShippingDetailsMethod - */ - public function setMethod(Google_Service_ShoppingContent_OrderLineItemShippingDetailsMethod $method) - { - $this->method = $method; - } - /** - * @return Google_Service_ShoppingContent_OrderLineItemShippingDetailsMethod - */ - public function getMethod() - { - return $this->method; - } - public function setShipByDate($shipByDate) - { - $this->shipByDate = $shipByDate; - } - public function getShipByDate() - { - return $this->shipByDate; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderLineItemShippingDetailsMethod.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderLineItemShippingDetailsMethod.php deleted file mode 100644 index b72d6cb5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderLineItemShippingDetailsMethod.php +++ /dev/null @@ -1,57 +0,0 @@ -carrier = $carrier; - } - public function getCarrier() - { - return $this->carrier; - } - public function setMaxDaysInTransit($maxDaysInTransit) - { - $this->maxDaysInTransit = $maxDaysInTransit; - } - public function getMaxDaysInTransit() - { - return $this->maxDaysInTransit; - } - public function setMethodName($methodName) - { - $this->methodName = $methodName; - } - public function getMethodName() - { - return $this->methodName; - } - public function setMinDaysInTransit($minDaysInTransit) - { - $this->minDaysInTransit = $minDaysInTransit; - } - public function getMinDaysInTransit() - { - return $this->minDaysInTransit; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderMerchantProvidedAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderMerchantProvidedAnnotation.php deleted file mode 100644 index fbd6219d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderMerchantProvidedAnnotation.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderPickupDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderPickupDetails.php deleted file mode 100644 index f76a037d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderPickupDetails.php +++ /dev/null @@ -1,63 +0,0 @@ -address = $address; - } - /** - * @return Google_Service_ShoppingContent_OrderAddress - */ - public function getAddress() - { - return $this->address; - } - /** - * @param Google_Service_ShoppingContent_OrderPickupDetailsCollector - */ - public function setCollectors($collectors) - { - $this->collectors = $collectors; - } - /** - * @return Google_Service_ShoppingContent_OrderPickupDetailsCollector - */ - public function getCollectors() - { - return $this->collectors; - } - public function setLocationId($locationId) - { - $this->locationId = $locationId; - } - public function getLocationId() - { - return $this->locationId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderPickupDetailsCollector.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderPickupDetailsCollector.php deleted file mode 100644 index bbfe7156..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderPickupDetailsCollector.php +++ /dev/null @@ -1,39 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setPhoneNumber($phoneNumber) - { - $this->phoneNumber = $phoneNumber; - } - public function getPhoneNumber() - { - return $this->phoneNumber; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderPromotion.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderPromotion.php deleted file mode 100644 index a8a26a8c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderPromotion.php +++ /dev/null @@ -1,158 +0,0 @@ -applicableItems = $applicableItems; - } - /** - * @return Google_Service_ShoppingContent_OrderPromotionItem - */ - public function getApplicableItems() - { - return $this->applicableItems; - } - /** - * @param Google_Service_ShoppingContent_OrderPromotionItem - */ - public function setAppliedItems($appliedItems) - { - $this->appliedItems = $appliedItems; - } - /** - * @return Google_Service_ShoppingContent_OrderPromotionItem - */ - public function getAppliedItems() - { - return $this->appliedItems; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setFunder($funder) - { - $this->funder = $funder; - } - public function getFunder() - { - return $this->funder; - } - public function setMerchantPromotionId($merchantPromotionId) - { - $this->merchantPromotionId = $merchantPromotionId; - } - public function getMerchantPromotionId() - { - return $this->merchantPromotionId; - } - /** - * @param Google_Service_ShoppingContent_Price - */ - public function setPriceValue(Google_Service_ShoppingContent_Price $priceValue) - { - $this->priceValue = $priceValue; - } - /** - * @return Google_Service_ShoppingContent_Price - */ - public function getPriceValue() - { - return $this->priceValue; - } - public function setShortTitle($shortTitle) - { - $this->shortTitle = $shortTitle; - } - public function getShortTitle() - { - return $this->shortTitle; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } - public function setSubtype($subtype) - { - $this->subtype = $subtype; - } - public function getSubtype() - { - return $this->subtype; - } - /** - * @param Google_Service_ShoppingContent_Price - */ - public function setTaxValue(Google_Service_ShoppingContent_Price $taxValue) - { - $this->taxValue = $taxValue; - } - /** - * @return Google_Service_ShoppingContent_Price - */ - public function getTaxValue() - { - return $this->taxValue; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderPromotionItem.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderPromotionItem.php deleted file mode 100644 index fa83199b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderPromotionItem.php +++ /dev/null @@ -1,57 +0,0 @@ -lineItemId = $lineItemId; - } - public function getLineItemId() - { - return $this->lineItemId; - } - public function setOfferId($offerId) - { - $this->offerId = $offerId; - } - public function getOfferId() - { - return $this->offerId; - } - public function setProductId($productId) - { - $this->productId = $productId; - } - public function getProductId() - { - return $this->productId; - } - public function setQuantity($quantity) - { - $this->quantity = $quantity; - } - public function getQuantity() - { - return $this->quantity; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderRefund.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderRefund.php deleted file mode 100644 index 9ad1a7e9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderRefund.php +++ /dev/null @@ -1,73 +0,0 @@ -actor = $actor; - } - public function getActor() - { - return $this->actor; - } - /** - * @param Google_Service_ShoppingContent_Price - */ - public function setAmount(Google_Service_ShoppingContent_Price $amount) - { - $this->amount = $amount; - } - /** - * @return Google_Service_ShoppingContent_Price - */ - public function getAmount() - { - return $this->amount; - } - public function setCreationDate($creationDate) - { - $this->creationDate = $creationDate; - } - public function getCreationDate() - { - return $this->creationDate; - } - public function setReason($reason) - { - $this->reason = $reason; - } - public function getReason() - { - return $this->reason; - } - public function setReasonText($reasonText) - { - $this->reasonText = $reasonText; - } - public function getReasonText() - { - return $this->reasonText; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderReportDisbursement.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderReportDisbursement.php deleted file mode 100644 index 5f2d26b3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderReportDisbursement.php +++ /dev/null @@ -1,73 +0,0 @@ -disbursementAmount = $disbursementAmount; - } - /** - * @return Google_Service_ShoppingContent_Price - */ - public function getDisbursementAmount() - { - return $this->disbursementAmount; - } - public function setDisbursementCreationDate($disbursementCreationDate) - { - $this->disbursementCreationDate = $disbursementCreationDate; - } - public function getDisbursementCreationDate() - { - return $this->disbursementCreationDate; - } - public function setDisbursementDate($disbursementDate) - { - $this->disbursementDate = $disbursementDate; - } - public function getDisbursementDate() - { - return $this->disbursementDate; - } - public function setDisbursementId($disbursementId) - { - $this->disbursementId = $disbursementId; - } - public function getDisbursementId() - { - return $this->disbursementId; - } - public function setMerchantId($merchantId) - { - $this->merchantId = $merchantId; - } - public function getMerchantId() - { - return $this->merchantId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderReportTransaction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderReportTransaction.php deleted file mode 100644 index 77781329..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderReportTransaction.php +++ /dev/null @@ -1,116 +0,0 @@ -disbursementAmount = $disbursementAmount; - } - /** - * @return Google_Service_ShoppingContent_Price - */ - public function getDisbursementAmount() - { - return $this->disbursementAmount; - } - public function setDisbursementCreationDate($disbursementCreationDate) - { - $this->disbursementCreationDate = $disbursementCreationDate; - } - public function getDisbursementCreationDate() - { - return $this->disbursementCreationDate; - } - public function setDisbursementDate($disbursementDate) - { - $this->disbursementDate = $disbursementDate; - } - public function getDisbursementDate() - { - return $this->disbursementDate; - } - public function setDisbursementId($disbursementId) - { - $this->disbursementId = $disbursementId; - } - public function getDisbursementId() - { - return $this->disbursementId; - } - public function setMerchantId($merchantId) - { - $this->merchantId = $merchantId; - } - public function getMerchantId() - { - return $this->merchantId; - } - public function setMerchantOrderId($merchantOrderId) - { - $this->merchantOrderId = $merchantOrderId; - } - public function getMerchantOrderId() - { - return $this->merchantOrderId; - } - public function setOrderId($orderId) - { - $this->orderId = $orderId; - } - public function getOrderId() - { - return $this->orderId; - } - /** - * @param Google_Service_ShoppingContent_ProductAmount - */ - public function setProductAmount(Google_Service_ShoppingContent_ProductAmount $productAmount) - { - $this->productAmount = $productAmount; - } - /** - * @return Google_Service_ShoppingContent_ProductAmount - */ - public function getProductAmount() - { - return $this->productAmount; - } - public function setTransactionDate($transactionDate) - { - $this->transactionDate = $transactionDate; - } - public function getTransactionDate() - { - return $this->transactionDate; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderReturn.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderReturn.php deleted file mode 100644 index 9b13f604..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderReturn.php +++ /dev/null @@ -1,66 +0,0 @@ -actor = $actor; - } - public function getActor() - { - return $this->actor; - } - public function setCreationDate($creationDate) - { - $this->creationDate = $creationDate; - } - public function getCreationDate() - { - return $this->creationDate; - } - public function setQuantity($quantity) - { - $this->quantity = $quantity; - } - public function getQuantity() - { - return $this->quantity; - } - public function setReason($reason) - { - $this->reason = $reason; - } - public function getReason() - { - return $this->reason; - } - public function setReasonText($reasonText) - { - $this->reasonText = $reasonText; - } - public function getReasonText() - { - return $this->reasonText; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderShipment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderShipment.php deleted file mode 100644 index 52316884..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderShipment.php +++ /dev/null @@ -1,101 +0,0 @@ -carrier = $carrier; - } - public function getCarrier() - { - return $this->carrier; - } - public function setCreationDate($creationDate) - { - $this->creationDate = $creationDate; - } - public function getCreationDate() - { - return $this->creationDate; - } - public function setDeliveryDate($deliveryDate) - { - $this->deliveryDate = $deliveryDate; - } - public function getDeliveryDate() - { - return $this->deliveryDate; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_ShoppingContent_OrderShipmentLineItemShipment - */ - public function setLineItems($lineItems) - { - $this->lineItems = $lineItems; - } - /** - * @return Google_Service_ShoppingContent_OrderShipmentLineItemShipment - */ - public function getLineItems() - { - return $this->lineItems; - } - public function setShipmentGroupId($shipmentGroupId) - { - $this->shipmentGroupId = $shipmentGroupId; - } - public function getShipmentGroupId() - { - return $this->shipmentGroupId; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setTrackingId($trackingId) - { - $this->trackingId = $trackingId; - } - public function getTrackingId() - { - return $this->trackingId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderShipmentLineItemShipment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderShipmentLineItemShipment.php deleted file mode 100644 index 86db7999..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderShipmentLineItemShipment.php +++ /dev/null @@ -1,48 +0,0 @@ -lineItemId = $lineItemId; - } - public function getLineItemId() - { - return $this->lineItemId; - } - public function setProductId($productId) - { - $this->productId = $productId; - } - public function getProductId() - { - return $this->productId; - } - public function setQuantity($quantity) - { - $this->quantity = $quantity; - } - public function getQuantity() - { - return $this->quantity; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderinvoicesCreateChargeInvoiceRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderinvoicesCreateChargeInvoiceRequest.php deleted file mode 100644 index ed779484..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderinvoicesCreateChargeInvoiceRequest.php +++ /dev/null @@ -1,81 +0,0 @@ -invoiceId = $invoiceId; - } - public function getInvoiceId() - { - return $this->invoiceId; - } - /** - * @param Google_Service_ShoppingContent_InvoiceSummary - */ - public function setInvoiceSummary(Google_Service_ShoppingContent_InvoiceSummary $invoiceSummary) - { - $this->invoiceSummary = $invoiceSummary; - } - /** - * @return Google_Service_ShoppingContent_InvoiceSummary - */ - public function getInvoiceSummary() - { - return $this->invoiceSummary; - } - /** - * @param Google_Service_ShoppingContent_ShipmentInvoiceLineItemInvoice - */ - public function setLineItemInvoices($lineItemInvoices) - { - $this->lineItemInvoices = $lineItemInvoices; - } - /** - * @return Google_Service_ShoppingContent_ShipmentInvoiceLineItemInvoice - */ - public function getLineItemInvoices() - { - return $this->lineItemInvoices; - } - public function setOperationId($operationId) - { - $this->operationId = $operationId; - } - public function getOperationId() - { - return $this->operationId; - } - public function setShipmentGroupId($shipmentGroupId) - { - $this->shipmentGroupId = $shipmentGroupId; - } - public function getShipmentGroupId() - { - return $this->shipmentGroupId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderinvoicesCreateChargeInvoiceResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderinvoicesCreateChargeInvoiceResponse.php deleted file mode 100644 index a14a499a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderinvoicesCreateChargeInvoiceResponse.php +++ /dev/null @@ -1,39 +0,0 @@ -executionStatus = $executionStatus; - } - public function getExecutionStatus() - { - return $this->executionStatus; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderinvoicesCreateRefundInvoiceRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderinvoicesCreateRefundInvoiceRequest.php deleted file mode 100644 index 50d59c1f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderinvoicesCreateRefundInvoiceRequest.php +++ /dev/null @@ -1,88 +0,0 @@ -invoiceId = $invoiceId; - } - public function getInvoiceId() - { - return $this->invoiceId; - } - public function setOperationId($operationId) - { - $this->operationId = $operationId; - } - public function getOperationId() - { - return $this->operationId; - } - /** - * @param Google_Service_ShoppingContent_OrderinvoicesCustomBatchRequestEntryCreateRefundInvoiceRefundOption - */ - public function setRefundOnlyOption(Google_Service_ShoppingContent_OrderinvoicesCustomBatchRequestEntryCreateRefundInvoiceRefundOption $refundOnlyOption) - { - $this->refundOnlyOption = $refundOnlyOption; - } - /** - * @return Google_Service_ShoppingContent_OrderinvoicesCustomBatchRequestEntryCreateRefundInvoiceRefundOption - */ - public function getRefundOnlyOption() - { - return $this->refundOnlyOption; - } - /** - * @param Google_Service_ShoppingContent_OrderinvoicesCustomBatchRequestEntryCreateRefundInvoiceReturnOption - */ - public function setReturnOption(Google_Service_ShoppingContent_OrderinvoicesCustomBatchRequestEntryCreateRefundInvoiceReturnOption $returnOption) - { - $this->returnOption = $returnOption; - } - /** - * @return Google_Service_ShoppingContent_OrderinvoicesCustomBatchRequestEntryCreateRefundInvoiceReturnOption - */ - public function getReturnOption() - { - return $this->returnOption; - } - /** - * @param Google_Service_ShoppingContent_ShipmentInvoice - */ - public function setShipmentInvoices($shipmentInvoices) - { - $this->shipmentInvoices = $shipmentInvoices; - } - /** - * @return Google_Service_ShoppingContent_ShipmentInvoice - */ - public function getShipmentInvoices() - { - return $this->shipmentInvoices; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderinvoicesCreateRefundInvoiceResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderinvoicesCreateRefundInvoiceResponse.php deleted file mode 100644 index 35d79f46..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderinvoicesCreateRefundInvoiceResponse.php +++ /dev/null @@ -1,39 +0,0 @@ -executionStatus = $executionStatus; - } - public function getExecutionStatus() - { - return $this->executionStatus; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderinvoicesCustomBatchRequestEntryCreateRefundInvoiceRefundOption.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderinvoicesCustomBatchRequestEntryCreateRefundInvoiceRefundOption.php deleted file mode 100644 index 9415218b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderinvoicesCustomBatchRequestEntryCreateRefundInvoiceRefundOption.php +++ /dev/null @@ -1,39 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setReason($reason) - { - $this->reason = $reason; - } - public function getReason() - { - return $this->reason; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderinvoicesCustomBatchRequestEntryCreateRefundInvoiceReturnOption.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderinvoicesCustomBatchRequestEntryCreateRefundInvoiceReturnOption.php deleted file mode 100644 index a63a43db..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderinvoicesCustomBatchRequestEntryCreateRefundInvoiceReturnOption.php +++ /dev/null @@ -1,39 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setReason($reason) - { - $this->reason = $reason; - } - public function getReason() - { - return $this->reason; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderreportsListDisbursementsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderreportsListDisbursementsResponse.php deleted file mode 100644 index 2491fc50..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderreportsListDisbursementsResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -disbursements = $disbursements; - } - /** - * @return Google_Service_ShoppingContent_OrderReportDisbursement - */ - public function getDisbursements() - { - return $this->disbursements; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderreportsListTransactionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderreportsListTransactionsResponse.php deleted file mode 100644 index 7040e420..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderreportsListTransactionsResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_ShoppingContent_OrderReportTransaction - */ - public function setTransactions($transactions) - { - $this->transactions = $transactions; - } - /** - * @return Google_Service_ShoppingContent_OrderReportTransaction - */ - public function getTransactions() - { - return $this->transactions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderreturnsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderreturnsListResponse.php deleted file mode 100644 index 149fab30..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrderreturnsListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_ShoppingContent_MerchantOrderReturn - */ - public function setResources($resources) - { - $this->resources = $resources; - } - /** - * @return Google_Service_ShoppingContent_MerchantOrderReturn - */ - public function getResources() - { - return $this->resources; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersAcknowledgeRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersAcknowledgeRequest.php deleted file mode 100644 index d2351836..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersAcknowledgeRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -operationId = $operationId; - } - public function getOperationId() - { - return $this->operationId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersAcknowledgeResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersAcknowledgeResponse.php deleted file mode 100644 index 6c24f502..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersAcknowledgeResponse.php +++ /dev/null @@ -1,39 +0,0 @@ -executionStatus = $executionStatus; - } - public function getExecutionStatus() - { - return $this->executionStatus; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersAdvanceTestOrderResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersAdvanceTestOrderResponse.php deleted file mode 100644 index 38eb8dba..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersAdvanceTestOrderResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersCancelLineItemRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersCancelLineItemRequest.php deleted file mode 100644 index 1fbbe7e1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersCancelLineItemRequest.php +++ /dev/null @@ -1,75 +0,0 @@ -lineItemId = $lineItemId; - } - public function getLineItemId() - { - return $this->lineItemId; - } - public function setOperationId($operationId) - { - $this->operationId = $operationId; - } - public function getOperationId() - { - return $this->operationId; - } - public function setProductId($productId) - { - $this->productId = $productId; - } - public function getProductId() - { - return $this->productId; - } - public function setQuantity($quantity) - { - $this->quantity = $quantity; - } - public function getQuantity() - { - return $this->quantity; - } - public function setReason($reason) - { - $this->reason = $reason; - } - public function getReason() - { - return $this->reason; - } - public function setReasonText($reasonText) - { - $this->reasonText = $reasonText; - } - public function getReasonText() - { - return $this->reasonText; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersCancelLineItemResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersCancelLineItemResponse.php deleted file mode 100644 index b8609d62..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersCancelLineItemResponse.php +++ /dev/null @@ -1,39 +0,0 @@ -executionStatus = $executionStatus; - } - public function getExecutionStatus() - { - return $this->executionStatus; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersCancelRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersCancelRequest.php deleted file mode 100644 index 1a37ee7d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersCancelRequest.php +++ /dev/null @@ -1,48 +0,0 @@ -operationId = $operationId; - } - public function getOperationId() - { - return $this->operationId; - } - public function setReason($reason) - { - $this->reason = $reason; - } - public function getReason() - { - return $this->reason; - } - public function setReasonText($reasonText) - { - $this->reasonText = $reasonText; - } - public function getReasonText() - { - return $this->reasonText; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersCancelResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersCancelResponse.php deleted file mode 100644 index 499bdf34..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersCancelResponse.php +++ /dev/null @@ -1,39 +0,0 @@ -executionStatus = $executionStatus; - } - public function getExecutionStatus() - { - return $this->executionStatus; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersCancelTestOrderByCustomerRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersCancelTestOrderByCustomerRequest.php deleted file mode 100644 index a46b2d2e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersCancelTestOrderByCustomerRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -reason = $reason; - } - public function getReason() - { - return $this->reason; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersCancelTestOrderByCustomerResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersCancelTestOrderByCustomerResponse.php deleted file mode 100644 index 6887820e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersCancelTestOrderByCustomerResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersCreateTestOrderRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersCreateTestOrderRequest.php deleted file mode 100644 index 7fd40031..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersCreateTestOrderRequest.php +++ /dev/null @@ -1,55 +0,0 @@ -country = $country; - } - public function getCountry() - { - return $this->country; - } - public function setTemplateName($templateName) - { - $this->templateName = $templateName; - } - public function getTemplateName() - { - return $this->templateName; - } - /** - * @param Google_Service_ShoppingContent_TestOrder - */ - public function setTestOrder(Google_Service_ShoppingContent_TestOrder $testOrder) - { - $this->testOrder = $testOrder; - } - /** - * @return Google_Service_ShoppingContent_TestOrder - */ - public function getTestOrder() - { - return $this->testOrder; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersCreateTestOrderResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersCreateTestOrderResponse.php deleted file mode 100644 index 5083060b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersCreateTestOrderResponse.php +++ /dev/null @@ -1,39 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setOrderId($orderId) - { - $this->orderId = $orderId; - } - public function getOrderId() - { - return $this->orderId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersCreateTestReturnRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersCreateTestReturnRequest.php deleted file mode 100644 index 538b2407..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersCreateTestReturnRequest.php +++ /dev/null @@ -1,38 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_ShoppingContent_OrdersCustomBatchRequestEntryCreateTestReturnReturnItem - */ - public function getItems() - { - return $this->items; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersCreateTestReturnResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersCreateTestReturnResponse.php deleted file mode 100644 index b700347c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersCreateTestReturnResponse.php +++ /dev/null @@ -1,39 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setReturnId($returnId) - { - $this->returnId = $returnId; - } - public function getReturnId() - { - return $this->returnId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersCustomBatchRequestEntryCreateTestReturnReturnItem.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersCustomBatchRequestEntryCreateTestReturnReturnItem.php deleted file mode 100644 index ccee890e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersCustomBatchRequestEntryCreateTestReturnReturnItem.php +++ /dev/null @@ -1,39 +0,0 @@ -lineItemId = $lineItemId; - } - public function getLineItemId() - { - return $this->lineItemId; - } - public function setQuantity($quantity) - { - $this->quantity = $quantity; - } - public function getQuantity() - { - return $this->quantity; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersCustomBatchRequestEntryShipLineItemsShipmentInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersCustomBatchRequestEntryShipLineItemsShipmentInfo.php deleted file mode 100644 index bb97d07f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersCustomBatchRequestEntryShipLineItemsShipmentInfo.php +++ /dev/null @@ -1,48 +0,0 @@ -carrier = $carrier; - } - public function getCarrier() - { - return $this->carrier; - } - public function setShipmentId($shipmentId) - { - $this->shipmentId = $shipmentId; - } - public function getShipmentId() - { - return $this->shipmentId; - } - public function setTrackingId($trackingId) - { - $this->trackingId = $trackingId; - } - public function getTrackingId() - { - return $this->trackingId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersGetByMerchantOrderIdResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersGetByMerchantOrderIdResponse.php deleted file mode 100644 index fa0d4a32..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersGetByMerchantOrderIdResponse.php +++ /dev/null @@ -1,46 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_ShoppingContent_Order - */ - public function setOrder(Google_Service_ShoppingContent_Order $order) - { - $this->order = $order; - } - /** - * @return Google_Service_ShoppingContent_Order - */ - public function getOrder() - { - return $this->order; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersGetTestOrderTemplateResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersGetTestOrderTemplateResponse.php deleted file mode 100644 index 2c0e69ac..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersGetTestOrderTemplateResponse.php +++ /dev/null @@ -1,46 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_ShoppingContent_TestOrder - */ - public function setTemplate(Google_Service_ShoppingContent_TestOrder $template) - { - $this->template = $template; - } - /** - * @return Google_Service_ShoppingContent_TestOrder - */ - public function getTemplate() - { - return $this->template; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersInStoreRefundLineItemRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersInStoreRefundLineItemRequest.php deleted file mode 100644 index 570971aa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersInStoreRefundLineItemRequest.php +++ /dev/null @@ -1,107 +0,0 @@ -lineItemId = $lineItemId; - } - public function getLineItemId() - { - return $this->lineItemId; - } - public function setOperationId($operationId) - { - $this->operationId = $operationId; - } - public function getOperationId() - { - return $this->operationId; - } - /** - * @param Google_Service_ShoppingContent_Price - */ - public function setPriceAmount(Google_Service_ShoppingContent_Price $priceAmount) - { - $this->priceAmount = $priceAmount; - } - /** - * @return Google_Service_ShoppingContent_Price - */ - public function getPriceAmount() - { - return $this->priceAmount; - } - public function setProductId($productId) - { - $this->productId = $productId; - } - public function getProductId() - { - return $this->productId; - } - public function setQuantity($quantity) - { - $this->quantity = $quantity; - } - public function getQuantity() - { - return $this->quantity; - } - public function setReason($reason) - { - $this->reason = $reason; - } - public function getReason() - { - return $this->reason; - } - public function setReasonText($reasonText) - { - $this->reasonText = $reasonText; - } - public function getReasonText() - { - return $this->reasonText; - } - /** - * @param Google_Service_ShoppingContent_Price - */ - public function setTaxAmount(Google_Service_ShoppingContent_Price $taxAmount) - { - $this->taxAmount = $taxAmount; - } - /** - * @return Google_Service_ShoppingContent_Price - */ - public function getTaxAmount() - { - return $this->taxAmount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersInStoreRefundLineItemResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersInStoreRefundLineItemResponse.php deleted file mode 100644 index 4daef1b4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersInStoreRefundLineItemResponse.php +++ /dev/null @@ -1,39 +0,0 @@ -executionStatus = $executionStatus; - } - public function getExecutionStatus() - { - return $this->executionStatus; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersListResponse.php deleted file mode 100644 index 5e1706fc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_ShoppingContent_Order - */ - public function setResources($resources) - { - $this->resources = $resources; - } - /** - * @return Google_Service_ShoppingContent_Order - */ - public function getResources() - { - return $this->resources; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersRejectReturnLineItemRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersRejectReturnLineItemRequest.php deleted file mode 100644 index eb1693f6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersRejectReturnLineItemRequest.php +++ /dev/null @@ -1,75 +0,0 @@ -lineItemId = $lineItemId; - } - public function getLineItemId() - { - return $this->lineItemId; - } - public function setOperationId($operationId) - { - $this->operationId = $operationId; - } - public function getOperationId() - { - return $this->operationId; - } - public function setProductId($productId) - { - $this->productId = $productId; - } - public function getProductId() - { - return $this->productId; - } - public function setQuantity($quantity) - { - $this->quantity = $quantity; - } - public function getQuantity() - { - return $this->quantity; - } - public function setReason($reason) - { - $this->reason = $reason; - } - public function getReason() - { - return $this->reason; - } - public function setReasonText($reasonText) - { - $this->reasonText = $reasonText; - } - public function getReasonText() - { - return $this->reasonText; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersRejectReturnLineItemResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersRejectReturnLineItemResponse.php deleted file mode 100644 index f7a8738b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersRejectReturnLineItemResponse.php +++ /dev/null @@ -1,39 +0,0 @@ -executionStatus = $executionStatus; - } - public function getExecutionStatus() - { - return $this->executionStatus; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersReturnRefundLineItemRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersReturnRefundLineItemRequest.php deleted file mode 100644 index e8de1d40..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersReturnRefundLineItemRequest.php +++ /dev/null @@ -1,107 +0,0 @@ -lineItemId = $lineItemId; - } - public function getLineItemId() - { - return $this->lineItemId; - } - public function setOperationId($operationId) - { - $this->operationId = $operationId; - } - public function getOperationId() - { - return $this->operationId; - } - /** - * @param Google_Service_ShoppingContent_Price - */ - public function setPriceAmount(Google_Service_ShoppingContent_Price $priceAmount) - { - $this->priceAmount = $priceAmount; - } - /** - * @return Google_Service_ShoppingContent_Price - */ - public function getPriceAmount() - { - return $this->priceAmount; - } - public function setProductId($productId) - { - $this->productId = $productId; - } - public function getProductId() - { - return $this->productId; - } - public function setQuantity($quantity) - { - $this->quantity = $quantity; - } - public function getQuantity() - { - return $this->quantity; - } - public function setReason($reason) - { - $this->reason = $reason; - } - public function getReason() - { - return $this->reason; - } - public function setReasonText($reasonText) - { - $this->reasonText = $reasonText; - } - public function getReasonText() - { - return $this->reasonText; - } - /** - * @param Google_Service_ShoppingContent_Price - */ - public function setTaxAmount(Google_Service_ShoppingContent_Price $taxAmount) - { - $this->taxAmount = $taxAmount; - } - /** - * @return Google_Service_ShoppingContent_Price - */ - public function getTaxAmount() - { - return $this->taxAmount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersReturnRefundLineItemResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersReturnRefundLineItemResponse.php deleted file mode 100644 index e034fd8e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersReturnRefundLineItemResponse.php +++ /dev/null @@ -1,39 +0,0 @@ -executionStatus = $executionStatus; - } - public function getExecutionStatus() - { - return $this->executionStatus; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersSetLineItemMetadataRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersSetLineItemMetadataRequest.php deleted file mode 100644 index 51201798..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersSetLineItemMetadataRequest.php +++ /dev/null @@ -1,65 +0,0 @@ -annotations = $annotations; - } - /** - * @return Google_Service_ShoppingContent_OrderMerchantProvidedAnnotation - */ - public function getAnnotations() - { - return $this->annotations; - } - public function setLineItemId($lineItemId) - { - $this->lineItemId = $lineItemId; - } - public function getLineItemId() - { - return $this->lineItemId; - } - public function setOperationId($operationId) - { - $this->operationId = $operationId; - } - public function getOperationId() - { - return $this->operationId; - } - public function setProductId($productId) - { - $this->productId = $productId; - } - public function getProductId() - { - return $this->productId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersSetLineItemMetadataResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersSetLineItemMetadataResponse.php deleted file mode 100644 index a5455daa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersSetLineItemMetadataResponse.php +++ /dev/null @@ -1,39 +0,0 @@ -executionStatus = $executionStatus; - } - public function getExecutionStatus() - { - return $this->executionStatus; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersShipLineItemsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersShipLineItemsRequest.php deleted file mode 100644 index 94090a09..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersShipLineItemsRequest.php +++ /dev/null @@ -1,72 +0,0 @@ -lineItems = $lineItems; - } - /** - * @return Google_Service_ShoppingContent_OrderShipmentLineItemShipment - */ - public function getLineItems() - { - return $this->lineItems; - } - public function setOperationId($operationId) - { - $this->operationId = $operationId; - } - public function getOperationId() - { - return $this->operationId; - } - public function setShipmentGroupId($shipmentGroupId) - { - $this->shipmentGroupId = $shipmentGroupId; - } - public function getShipmentGroupId() - { - return $this->shipmentGroupId; - } - /** - * @param Google_Service_ShoppingContent_OrdersCustomBatchRequestEntryShipLineItemsShipmentInfo - */ - public function setShipmentInfos($shipmentInfos) - { - $this->shipmentInfos = $shipmentInfos; - } - /** - * @return Google_Service_ShoppingContent_OrdersCustomBatchRequestEntryShipLineItemsShipmentInfo - */ - public function getShipmentInfos() - { - return $this->shipmentInfos; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersShipLineItemsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersShipLineItemsResponse.php deleted file mode 100644 index 9df92101..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersShipLineItemsResponse.php +++ /dev/null @@ -1,39 +0,0 @@ -executionStatus = $executionStatus; - } - public function getExecutionStatus() - { - return $this->executionStatus; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersUpdateLineItemShippingDetailsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersUpdateLineItemShippingDetailsRequest.php deleted file mode 100644 index 4fa42de7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersUpdateLineItemShippingDetailsRequest.php +++ /dev/null @@ -1,66 +0,0 @@ -deliverByDate = $deliverByDate; - } - public function getDeliverByDate() - { - return $this->deliverByDate; - } - public function setLineItemId($lineItemId) - { - $this->lineItemId = $lineItemId; - } - public function getLineItemId() - { - return $this->lineItemId; - } - public function setOperationId($operationId) - { - $this->operationId = $operationId; - } - public function getOperationId() - { - return $this->operationId; - } - public function setProductId($productId) - { - $this->productId = $productId; - } - public function getProductId() - { - return $this->productId; - } - public function setShipByDate($shipByDate) - { - $this->shipByDate = $shipByDate; - } - public function getShipByDate() - { - return $this->shipByDate; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersUpdateLineItemShippingDetailsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersUpdateLineItemShippingDetailsResponse.php deleted file mode 100644 index a219c2df..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersUpdateLineItemShippingDetailsResponse.php +++ /dev/null @@ -1,39 +0,0 @@ -executionStatus = $executionStatus; - } - public function getExecutionStatus() - { - return $this->executionStatus; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersUpdateMerchantOrderIdRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersUpdateMerchantOrderIdRequest.php deleted file mode 100644 index 7d566555..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersUpdateMerchantOrderIdRequest.php +++ /dev/null @@ -1,39 +0,0 @@ -merchantOrderId = $merchantOrderId; - } - public function getMerchantOrderId() - { - return $this->merchantOrderId; - } - public function setOperationId($operationId) - { - $this->operationId = $operationId; - } - public function getOperationId() - { - return $this->operationId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersUpdateMerchantOrderIdResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersUpdateMerchantOrderIdResponse.php deleted file mode 100644 index 78f5cb42..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersUpdateMerchantOrderIdResponse.php +++ /dev/null @@ -1,39 +0,0 @@ -executionStatus = $executionStatus; - } - public function getExecutionStatus() - { - return $this->executionStatus; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersUpdateShipmentRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersUpdateShipmentRequest.php deleted file mode 100644 index 322ad3c5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersUpdateShipmentRequest.php +++ /dev/null @@ -1,75 +0,0 @@ -carrier = $carrier; - } - public function getCarrier() - { - return $this->carrier; - } - public function setDeliveryDate($deliveryDate) - { - $this->deliveryDate = $deliveryDate; - } - public function getDeliveryDate() - { - return $this->deliveryDate; - } - public function setOperationId($operationId) - { - $this->operationId = $operationId; - } - public function getOperationId() - { - return $this->operationId; - } - public function setShipmentId($shipmentId) - { - $this->shipmentId = $shipmentId; - } - public function getShipmentId() - { - return $this->shipmentId; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setTrackingId($trackingId) - { - $this->trackingId = $trackingId; - } - public function getTrackingId() - { - return $this->trackingId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersUpdateShipmentResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersUpdateShipmentResponse.php deleted file mode 100644 index a40def1c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/OrdersUpdateShipmentResponse.php +++ /dev/null @@ -1,39 +0,0 @@ -executionStatus = $executionStatus; - } - public function getExecutionStatus() - { - return $this->executionStatus; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/PickupCarrierService.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/PickupCarrierService.php deleted file mode 100644 index ab9f586e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/PickupCarrierService.php +++ /dev/null @@ -1,39 +0,0 @@ -carrierName = $carrierName; - } - public function getCarrierName() - { - return $this->carrierName; - } - public function setServiceName($serviceName) - { - $this->serviceName = $serviceName; - } - public function getServiceName() - { - return $this->serviceName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/PickupServicesPickupService.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/PickupServicesPickupService.php deleted file mode 100644 index 74251734..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/PickupServicesPickupService.php +++ /dev/null @@ -1,48 +0,0 @@ -carrierName = $carrierName; - } - public function getCarrierName() - { - return $this->carrierName; - } - public function setCountry($country) - { - $this->country = $country; - } - public function getCountry() - { - return $this->country; - } - public function setServiceName($serviceName) - { - $this->serviceName = $serviceName; - } - public function getServiceName() - { - return $this->serviceName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/PosCustomBatchRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/PosCustomBatchRequest.php deleted file mode 100644 index 01c5a47f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/PosCustomBatchRequest.php +++ /dev/null @@ -1,38 +0,0 @@ -entries = $entries; - } - /** - * @return Google_Service_ShoppingContent_PosCustomBatchRequestEntry - */ - public function getEntries() - { - return $this->entries; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/PosCustomBatchRequestEntry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/PosCustomBatchRequestEntry.php deleted file mode 100644 index f4c518f2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/PosCustomBatchRequestEntry.php +++ /dev/null @@ -1,114 +0,0 @@ -batchId = $batchId; - } - public function getBatchId() - { - return $this->batchId; - } - /** - * @param Google_Service_ShoppingContent_PosInventory - */ - public function setInventory(Google_Service_ShoppingContent_PosInventory $inventory) - { - $this->inventory = $inventory; - } - /** - * @return Google_Service_ShoppingContent_PosInventory - */ - public function getInventory() - { - return $this->inventory; - } - public function setMerchantId($merchantId) - { - $this->merchantId = $merchantId; - } - public function getMerchantId() - { - return $this->merchantId; - } - public function setMethod($method) - { - $this->method = $method; - } - public function getMethod() - { - return $this->method; - } - /** - * @param Google_Service_ShoppingContent_PosSale - */ - public function setSale(Google_Service_ShoppingContent_PosSale $sale) - { - $this->sale = $sale; - } - /** - * @return Google_Service_ShoppingContent_PosSale - */ - public function getSale() - { - return $this->sale; - } - /** - * @param Google_Service_ShoppingContent_PosStore - */ - public function setStore(Google_Service_ShoppingContent_PosStore $store) - { - $this->store = $store; - } - /** - * @return Google_Service_ShoppingContent_PosStore - */ - public function getStore() - { - return $this->store; - } - public function setStoreCode($storeCode) - { - $this->storeCode = $storeCode; - } - public function getStoreCode() - { - return $this->storeCode; - } - public function setTargetMerchantId($targetMerchantId) - { - $this->targetMerchantId = $targetMerchantId; - } - public function getTargetMerchantId() - { - return $this->targetMerchantId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/PosCustomBatchResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/PosCustomBatchResponse.php deleted file mode 100644 index 6ed08f7d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/PosCustomBatchResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -entries = $entries; - } - /** - * @return Google_Service_ShoppingContent_PosCustomBatchResponseEntry - */ - public function getEntries() - { - return $this->entries; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/PosCustomBatchResponseEntry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/PosCustomBatchResponseEntry.php deleted file mode 100644 index e98b6447..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/PosCustomBatchResponseEntry.php +++ /dev/null @@ -1,103 +0,0 @@ -batchId = $batchId; - } - public function getBatchId() - { - return $this->batchId; - } - /** - * @param Google_Service_ShoppingContent_Errors - */ - public function setErrors(Google_Service_ShoppingContent_Errors $errors) - { - $this->errors = $errors; - } - /** - * @return Google_Service_ShoppingContent_Errors - */ - public function getErrors() - { - return $this->errors; - } - /** - * @param Google_Service_ShoppingContent_PosInventory - */ - public function setInventory(Google_Service_ShoppingContent_PosInventory $inventory) - { - $this->inventory = $inventory; - } - /** - * @return Google_Service_ShoppingContent_PosInventory - */ - public function getInventory() - { - return $this->inventory; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_ShoppingContent_PosSale - */ - public function setSale(Google_Service_ShoppingContent_PosSale $sale) - { - $this->sale = $sale; - } - /** - * @return Google_Service_ShoppingContent_PosSale - */ - public function getSale() - { - return $this->sale; - } - /** - * @param Google_Service_ShoppingContent_PosStore - */ - public function setStore(Google_Service_ShoppingContent_PosStore $store) - { - $this->store = $store; - } - /** - * @return Google_Service_ShoppingContent_PosStore - */ - public function getStore() - { - return $this->store; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/PosDataProviders.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/PosDataProviders.php deleted file mode 100644 index 8ca8892d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/PosDataProviders.php +++ /dev/null @@ -1,47 +0,0 @@ -country = $country; - } - public function getCountry() - { - return $this->country; - } - /** - * @param Google_Service_ShoppingContent_PosDataProvidersPosDataProvider - */ - public function setPosDataProviders($posDataProviders) - { - $this->posDataProviders = $posDataProviders; - } - /** - * @return Google_Service_ShoppingContent_PosDataProvidersPosDataProvider - */ - public function getPosDataProviders() - { - return $this->posDataProviders; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/PosDataProvidersPosDataProvider.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/PosDataProvidersPosDataProvider.php deleted file mode 100644 index 01611dd0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/PosDataProvidersPosDataProvider.php +++ /dev/null @@ -1,48 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setFullName($fullName) - { - $this->fullName = $fullName; - } - public function getFullName() - { - return $this->fullName; - } - public function setProviderId($providerId) - { - $this->providerId = $providerId; - } - public function getProviderId() - { - return $this->providerId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/PosInventory.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/PosInventory.php deleted file mode 100644 index 5c0307e4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/PosInventory.php +++ /dev/null @@ -1,109 +0,0 @@ -contentLanguage = $contentLanguage; - } - public function getContentLanguage() - { - return $this->contentLanguage; - } - public function setGtin($gtin) - { - $this->gtin = $gtin; - } - public function getGtin() - { - return $this->gtin; - } - public function setItemId($itemId) - { - $this->itemId = $itemId; - } - public function getItemId() - { - return $this->itemId; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_ShoppingContent_Price - */ - public function setPrice(Google_Service_ShoppingContent_Price $price) - { - $this->price = $price; - } - /** - * @return Google_Service_ShoppingContent_Price - */ - public function getPrice() - { - return $this->price; - } - public function setQuantity($quantity) - { - $this->quantity = $quantity; - } - public function getQuantity() - { - return $this->quantity; - } - public function setStoreCode($storeCode) - { - $this->storeCode = $storeCode; - } - public function getStoreCode() - { - return $this->storeCode; - } - public function setTargetCountry($targetCountry) - { - $this->targetCountry = $targetCountry; - } - public function getTargetCountry() - { - return $this->targetCountry; - } - public function setTimestamp($timestamp) - { - $this->timestamp = $timestamp; - } - public function getTimestamp() - { - return $this->timestamp; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/PosInventoryRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/PosInventoryRequest.php deleted file mode 100644 index b058a562..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/PosInventoryRequest.php +++ /dev/null @@ -1,100 +0,0 @@ -contentLanguage = $contentLanguage; - } - public function getContentLanguage() - { - return $this->contentLanguage; - } - public function setGtin($gtin) - { - $this->gtin = $gtin; - } - public function getGtin() - { - return $this->gtin; - } - public function setItemId($itemId) - { - $this->itemId = $itemId; - } - public function getItemId() - { - return $this->itemId; - } - /** - * @param Google_Service_ShoppingContent_Price - */ - public function setPrice(Google_Service_ShoppingContent_Price $price) - { - $this->price = $price; - } - /** - * @return Google_Service_ShoppingContent_Price - */ - public function getPrice() - { - return $this->price; - } - public function setQuantity($quantity) - { - $this->quantity = $quantity; - } - public function getQuantity() - { - return $this->quantity; - } - public function setStoreCode($storeCode) - { - $this->storeCode = $storeCode; - } - public function getStoreCode() - { - return $this->storeCode; - } - public function setTargetCountry($targetCountry) - { - $this->targetCountry = $targetCountry; - } - public function getTargetCountry() - { - return $this->targetCountry; - } - public function setTimestamp($timestamp) - { - $this->timestamp = $timestamp; - } - public function getTimestamp() - { - return $this->timestamp; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/PosInventoryResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/PosInventoryResponse.php deleted file mode 100644 index 2fee6eeb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/PosInventoryResponse.php +++ /dev/null @@ -1,109 +0,0 @@ -contentLanguage = $contentLanguage; - } - public function getContentLanguage() - { - return $this->contentLanguage; - } - public function setGtin($gtin) - { - $this->gtin = $gtin; - } - public function getGtin() - { - return $this->gtin; - } - public function setItemId($itemId) - { - $this->itemId = $itemId; - } - public function getItemId() - { - return $this->itemId; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_ShoppingContent_Price - */ - public function setPrice(Google_Service_ShoppingContent_Price $price) - { - $this->price = $price; - } - /** - * @return Google_Service_ShoppingContent_Price - */ - public function getPrice() - { - return $this->price; - } - public function setQuantity($quantity) - { - $this->quantity = $quantity; - } - public function getQuantity() - { - return $this->quantity; - } - public function setStoreCode($storeCode) - { - $this->storeCode = $storeCode; - } - public function getStoreCode() - { - return $this->storeCode; - } - public function setTargetCountry($targetCountry) - { - $this->targetCountry = $targetCountry; - } - public function getTargetCountry() - { - return $this->targetCountry; - } - public function setTimestamp($timestamp) - { - $this->timestamp = $timestamp; - } - public function getTimestamp() - { - return $this->timestamp; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/PosListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/PosListResponse.php deleted file mode 100644 index cc2c87b4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/PosListResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_ShoppingContent_PosStore - */ - public function setResources($resources) - { - $this->resources = $resources; - } - /** - * @return Google_Service_ShoppingContent_PosStore - */ - public function getResources() - { - return $this->resources; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/PosSale.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/PosSale.php deleted file mode 100644 index 202dfb3d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/PosSale.php +++ /dev/null @@ -1,118 +0,0 @@ -contentLanguage = $contentLanguage; - } - public function getContentLanguage() - { - return $this->contentLanguage; - } - public function setGtin($gtin) - { - $this->gtin = $gtin; - } - public function getGtin() - { - return $this->gtin; - } - public function setItemId($itemId) - { - $this->itemId = $itemId; - } - public function getItemId() - { - return $this->itemId; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_ShoppingContent_Price - */ - public function setPrice(Google_Service_ShoppingContent_Price $price) - { - $this->price = $price; - } - /** - * @return Google_Service_ShoppingContent_Price - */ - public function getPrice() - { - return $this->price; - } - public function setQuantity($quantity) - { - $this->quantity = $quantity; - } - public function getQuantity() - { - return $this->quantity; - } - public function setSaleId($saleId) - { - $this->saleId = $saleId; - } - public function getSaleId() - { - return $this->saleId; - } - public function setStoreCode($storeCode) - { - $this->storeCode = $storeCode; - } - public function getStoreCode() - { - return $this->storeCode; - } - public function setTargetCountry($targetCountry) - { - $this->targetCountry = $targetCountry; - } - public function getTargetCountry() - { - return $this->targetCountry; - } - public function setTimestamp($timestamp) - { - $this->timestamp = $timestamp; - } - public function getTimestamp() - { - return $this->timestamp; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/PosSaleRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/PosSaleRequest.php deleted file mode 100644 index af2a93db..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/PosSaleRequest.php +++ /dev/null @@ -1,109 +0,0 @@ -contentLanguage = $contentLanguage; - } - public function getContentLanguage() - { - return $this->contentLanguage; - } - public function setGtin($gtin) - { - $this->gtin = $gtin; - } - public function getGtin() - { - return $this->gtin; - } - public function setItemId($itemId) - { - $this->itemId = $itemId; - } - public function getItemId() - { - return $this->itemId; - } - /** - * @param Google_Service_ShoppingContent_Price - */ - public function setPrice(Google_Service_ShoppingContent_Price $price) - { - $this->price = $price; - } - /** - * @return Google_Service_ShoppingContent_Price - */ - public function getPrice() - { - return $this->price; - } - public function setQuantity($quantity) - { - $this->quantity = $quantity; - } - public function getQuantity() - { - return $this->quantity; - } - public function setSaleId($saleId) - { - $this->saleId = $saleId; - } - public function getSaleId() - { - return $this->saleId; - } - public function setStoreCode($storeCode) - { - $this->storeCode = $storeCode; - } - public function getStoreCode() - { - return $this->storeCode; - } - public function setTargetCountry($targetCountry) - { - $this->targetCountry = $targetCountry; - } - public function getTargetCountry() - { - return $this->targetCountry; - } - public function setTimestamp($timestamp) - { - $this->timestamp = $timestamp; - } - public function getTimestamp() - { - return $this->timestamp; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/PosSaleResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/PosSaleResponse.php deleted file mode 100644 index 2feee814..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/PosSaleResponse.php +++ /dev/null @@ -1,118 +0,0 @@ -contentLanguage = $contentLanguage; - } - public function getContentLanguage() - { - return $this->contentLanguage; - } - public function setGtin($gtin) - { - $this->gtin = $gtin; - } - public function getGtin() - { - return $this->gtin; - } - public function setItemId($itemId) - { - $this->itemId = $itemId; - } - public function getItemId() - { - return $this->itemId; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_ShoppingContent_Price - */ - public function setPrice(Google_Service_ShoppingContent_Price $price) - { - $this->price = $price; - } - /** - * @return Google_Service_ShoppingContent_Price - */ - public function getPrice() - { - return $this->price; - } - public function setQuantity($quantity) - { - $this->quantity = $quantity; - } - public function getQuantity() - { - return $this->quantity; - } - public function setSaleId($saleId) - { - $this->saleId = $saleId; - } - public function getSaleId() - { - return $this->saleId; - } - public function setStoreCode($storeCode) - { - $this->storeCode = $storeCode; - } - public function getStoreCode() - { - return $this->storeCode; - } - public function setTargetCountry($targetCountry) - { - $this->targetCountry = $targetCountry; - } - public function getTargetCountry() - { - return $this->targetCountry; - } - public function setTimestamp($timestamp) - { - $this->timestamp = $timestamp; - } - public function getTimestamp() - { - return $this->timestamp; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/PosStore.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/PosStore.php deleted file mode 100644 index 5e610bff..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/PosStore.php +++ /dev/null @@ -1,48 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setStoreAddress($storeAddress) - { - $this->storeAddress = $storeAddress; - } - public function getStoreAddress() - { - return $this->storeAddress; - } - public function setStoreCode($storeCode) - { - $this->storeCode = $storeCode; - } - public function getStoreCode() - { - return $this->storeCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/PostalCodeGroup.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/PostalCodeGroup.php deleted file mode 100644 index e4376cf9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/PostalCodeGroup.php +++ /dev/null @@ -1,56 +0,0 @@ -country = $country; - } - public function getCountry() - { - return $this->country; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_ShoppingContent_PostalCodeRange - */ - public function setPostalCodeRanges($postalCodeRanges) - { - $this->postalCodeRanges = $postalCodeRanges; - } - /** - * @return Google_Service_ShoppingContent_PostalCodeRange - */ - public function getPostalCodeRanges() - { - return $this->postalCodeRanges; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/PostalCodeRange.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/PostalCodeRange.php deleted file mode 100644 index 15904214..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/PostalCodeRange.php +++ /dev/null @@ -1,39 +0,0 @@ -postalCodeRangeBegin = $postalCodeRangeBegin; - } - public function getPostalCodeRangeBegin() - { - return $this->postalCodeRangeBegin; - } - public function setPostalCodeRangeEnd($postalCodeRangeEnd) - { - $this->postalCodeRangeEnd = $postalCodeRangeEnd; - } - public function getPostalCodeRangeEnd() - { - return $this->postalCodeRangeEnd; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Price.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Price.php deleted file mode 100644 index 34e5aef8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Price.php +++ /dev/null @@ -1,39 +0,0 @@ -currency = $currency; - } - public function getCurrency() - { - return $this->currency; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Product.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Product.php deleted file mode 100644 index 1718bfec..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Product.php +++ /dev/null @@ -1,795 +0,0 @@ -additionalImageLinks = $additionalImageLinks; - } - public function getAdditionalImageLinks() - { - return $this->additionalImageLinks; - } - public function setAdsGrouping($adsGrouping) - { - $this->adsGrouping = $adsGrouping; - } - public function getAdsGrouping() - { - return $this->adsGrouping; - } - public function setAdsLabels($adsLabels) - { - $this->adsLabels = $adsLabels; - } - public function getAdsLabels() - { - return $this->adsLabels; - } - public function setAdsRedirect($adsRedirect) - { - $this->adsRedirect = $adsRedirect; - } - public function getAdsRedirect() - { - return $this->adsRedirect; - } - public function setAdult($adult) - { - $this->adult = $adult; - } - public function getAdult() - { - return $this->adult; - } - public function setAgeGroup($ageGroup) - { - $this->ageGroup = $ageGroup; - } - public function getAgeGroup() - { - return $this->ageGroup; - } - public function setAvailability($availability) - { - $this->availability = $availability; - } - public function getAvailability() - { - return $this->availability; - } - public function setAvailabilityDate($availabilityDate) - { - $this->availabilityDate = $availabilityDate; - } - public function getAvailabilityDate() - { - return $this->availabilityDate; - } - public function setBrand($brand) - { - $this->brand = $brand; - } - public function getBrand() - { - return $this->brand; - } - public function setChannel($channel) - { - $this->channel = $channel; - } - public function getChannel() - { - return $this->channel; - } - public function setColor($color) - { - $this->color = $color; - } - public function getColor() - { - return $this->color; - } - public function setCondition($condition) - { - $this->condition = $condition; - } - public function getCondition() - { - return $this->condition; - } - public function setContentLanguage($contentLanguage) - { - $this->contentLanguage = $contentLanguage; - } - public function getContentLanguage() - { - return $this->contentLanguage; - } - /** - * @param Google_Service_ShoppingContent_Price - */ - public function setCostOfGoodsSold(Google_Service_ShoppingContent_Price $costOfGoodsSold) - { - $this->costOfGoodsSold = $costOfGoodsSold; - } - /** - * @return Google_Service_ShoppingContent_Price - */ - public function getCostOfGoodsSold() - { - return $this->costOfGoodsSold; - } - /** - * @param Google_Service_ShoppingContent_CustomAttribute - */ - public function setCustomAttributes($customAttributes) - { - $this->customAttributes = $customAttributes; - } - /** - * @return Google_Service_ShoppingContent_CustomAttribute - */ - public function getCustomAttributes() - { - return $this->customAttributes; - } - public function setCustomLabel0($customLabel0) - { - $this->customLabel0 = $customLabel0; - } - public function getCustomLabel0() - { - return $this->customLabel0; - } - public function setCustomLabel1($customLabel1) - { - $this->customLabel1 = $customLabel1; - } - public function getCustomLabel1() - { - return $this->customLabel1; - } - public function setCustomLabel2($customLabel2) - { - $this->customLabel2 = $customLabel2; - } - public function getCustomLabel2() - { - return $this->customLabel2; - } - public function setCustomLabel3($customLabel3) - { - $this->customLabel3 = $customLabel3; - } - public function getCustomLabel3() - { - return $this->customLabel3; - } - public function setCustomLabel4($customLabel4) - { - $this->customLabel4 = $customLabel4; - } - public function getCustomLabel4() - { - return $this->customLabel4; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayAdsId($displayAdsId) - { - $this->displayAdsId = $displayAdsId; - } - public function getDisplayAdsId() - { - return $this->displayAdsId; - } - public function setDisplayAdsLink($displayAdsLink) - { - $this->displayAdsLink = $displayAdsLink; - } - public function getDisplayAdsLink() - { - return $this->displayAdsLink; - } - public function setDisplayAdsSimilarIds($displayAdsSimilarIds) - { - $this->displayAdsSimilarIds = $displayAdsSimilarIds; - } - public function getDisplayAdsSimilarIds() - { - return $this->displayAdsSimilarIds; - } - public function setDisplayAdsTitle($displayAdsTitle) - { - $this->displayAdsTitle = $displayAdsTitle; - } - public function getDisplayAdsTitle() - { - return $this->displayAdsTitle; - } - public function setDisplayAdsValue($displayAdsValue) - { - $this->displayAdsValue = $displayAdsValue; - } - public function getDisplayAdsValue() - { - return $this->displayAdsValue; - } - public function setEnergyEfficiencyClass($energyEfficiencyClass) - { - $this->energyEfficiencyClass = $energyEfficiencyClass; - } - public function getEnergyEfficiencyClass() - { - return $this->energyEfficiencyClass; - } - public function setExcludedDestinations($excludedDestinations) - { - $this->excludedDestinations = $excludedDestinations; - } - public function getExcludedDestinations() - { - return $this->excludedDestinations; - } - public function setExpirationDate($expirationDate) - { - $this->expirationDate = $expirationDate; - } - public function getExpirationDate() - { - return $this->expirationDate; - } - public function setGender($gender) - { - $this->gender = $gender; - } - public function getGender() - { - return $this->gender; - } - public function setGoogleProductCategory($googleProductCategory) - { - $this->googleProductCategory = $googleProductCategory; - } - public function getGoogleProductCategory() - { - return $this->googleProductCategory; - } - public function setGtin($gtin) - { - $this->gtin = $gtin; - } - public function getGtin() - { - return $this->gtin; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setIdentifierExists($identifierExists) - { - $this->identifierExists = $identifierExists; - } - public function getIdentifierExists() - { - return $this->identifierExists; - } - public function setImageLink($imageLink) - { - $this->imageLink = $imageLink; - } - public function getImageLink() - { - return $this->imageLink; - } - public function setIncludedDestinations($includedDestinations) - { - $this->includedDestinations = $includedDestinations; - } - public function getIncludedDestinations() - { - return $this->includedDestinations; - } - /** - * @param Google_Service_ShoppingContent_Installment - */ - public function setInstallment(Google_Service_ShoppingContent_Installment $installment) - { - $this->installment = $installment; - } - /** - * @return Google_Service_ShoppingContent_Installment - */ - public function getInstallment() - { - return $this->installment; - } - public function setIsBundle($isBundle) - { - $this->isBundle = $isBundle; - } - public function getIsBundle() - { - return $this->isBundle; - } - public function setItemGroupId($itemGroupId) - { - $this->itemGroupId = $itemGroupId; - } - public function getItemGroupId() - { - return $this->itemGroupId; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLink($link) - { - $this->link = $link; - } - public function getLink() - { - return $this->link; - } - /** - * @param Google_Service_ShoppingContent_LoyaltyPoints - */ - public function setLoyaltyPoints(Google_Service_ShoppingContent_LoyaltyPoints $loyaltyPoints) - { - $this->loyaltyPoints = $loyaltyPoints; - } - /** - * @return Google_Service_ShoppingContent_LoyaltyPoints - */ - public function getLoyaltyPoints() - { - return $this->loyaltyPoints; - } - public function setMaterial($material) - { - $this->material = $material; - } - public function getMaterial() - { - return $this->material; - } - public function setMaxEnergyEfficiencyClass($maxEnergyEfficiencyClass) - { - $this->maxEnergyEfficiencyClass = $maxEnergyEfficiencyClass; - } - public function getMaxEnergyEfficiencyClass() - { - return $this->maxEnergyEfficiencyClass; - } - public function setMaxHandlingTime($maxHandlingTime) - { - $this->maxHandlingTime = $maxHandlingTime; - } - public function getMaxHandlingTime() - { - return $this->maxHandlingTime; - } - public function setMinEnergyEfficiencyClass($minEnergyEfficiencyClass) - { - $this->minEnergyEfficiencyClass = $minEnergyEfficiencyClass; - } - public function getMinEnergyEfficiencyClass() - { - return $this->minEnergyEfficiencyClass; - } - public function setMinHandlingTime($minHandlingTime) - { - $this->minHandlingTime = $minHandlingTime; - } - public function getMinHandlingTime() - { - return $this->minHandlingTime; - } - public function setMobileLink($mobileLink) - { - $this->mobileLink = $mobileLink; - } - public function getMobileLink() - { - return $this->mobileLink; - } - public function setMpn($mpn) - { - $this->mpn = $mpn; - } - public function getMpn() - { - return $this->mpn; - } - public function setMultipack($multipack) - { - $this->multipack = $multipack; - } - public function getMultipack() - { - return $this->multipack; - } - public function setOfferId($offerId) - { - $this->offerId = $offerId; - } - public function getOfferId() - { - return $this->offerId; - } - public function setPattern($pattern) - { - $this->pattern = $pattern; - } - public function getPattern() - { - return $this->pattern; - } - /** - * @param Google_Service_ShoppingContent_Price - */ - public function setPrice(Google_Service_ShoppingContent_Price $price) - { - $this->price = $price; - } - /** - * @return Google_Service_ShoppingContent_Price - */ - public function getPrice() - { - return $this->price; - } - public function setProductTypes($productTypes) - { - $this->productTypes = $productTypes; - } - public function getProductTypes() - { - return $this->productTypes; - } - public function setPromotionIds($promotionIds) - { - $this->promotionIds = $promotionIds; - } - public function getPromotionIds() - { - return $this->promotionIds; - } - /** - * @param Google_Service_ShoppingContent_Price - */ - public function setSalePrice(Google_Service_ShoppingContent_Price $salePrice) - { - $this->salePrice = $salePrice; - } - /** - * @return Google_Service_ShoppingContent_Price - */ - public function getSalePrice() - { - return $this->salePrice; - } - public function setSalePriceEffectiveDate($salePriceEffectiveDate) - { - $this->salePriceEffectiveDate = $salePriceEffectiveDate; - } - public function getSalePriceEffectiveDate() - { - return $this->salePriceEffectiveDate; - } - public function setSellOnGoogleQuantity($sellOnGoogleQuantity) - { - $this->sellOnGoogleQuantity = $sellOnGoogleQuantity; - } - public function getSellOnGoogleQuantity() - { - return $this->sellOnGoogleQuantity; - } - /** - * @param Google_Service_ShoppingContent_ProductShipping - */ - public function setShipping($shipping) - { - $this->shipping = $shipping; - } - /** - * @return Google_Service_ShoppingContent_ProductShipping - */ - public function getShipping() - { - return $this->shipping; - } - /** - * @param Google_Service_ShoppingContent_ProductShippingDimension - */ - public function setShippingHeight(Google_Service_ShoppingContent_ProductShippingDimension $shippingHeight) - { - $this->shippingHeight = $shippingHeight; - } - /** - * @return Google_Service_ShoppingContent_ProductShippingDimension - */ - public function getShippingHeight() - { - return $this->shippingHeight; - } - public function setShippingLabel($shippingLabel) - { - $this->shippingLabel = $shippingLabel; - } - public function getShippingLabel() - { - return $this->shippingLabel; - } - /** - * @param Google_Service_ShoppingContent_ProductShippingDimension - */ - public function setShippingLength(Google_Service_ShoppingContent_ProductShippingDimension $shippingLength) - { - $this->shippingLength = $shippingLength; - } - /** - * @return Google_Service_ShoppingContent_ProductShippingDimension - */ - public function getShippingLength() - { - return $this->shippingLength; - } - /** - * @param Google_Service_ShoppingContent_ProductShippingWeight - */ - public function setShippingWeight(Google_Service_ShoppingContent_ProductShippingWeight $shippingWeight) - { - $this->shippingWeight = $shippingWeight; - } - /** - * @return Google_Service_ShoppingContent_ProductShippingWeight - */ - public function getShippingWeight() - { - return $this->shippingWeight; - } - /** - * @param Google_Service_ShoppingContent_ProductShippingDimension - */ - public function setShippingWidth(Google_Service_ShoppingContent_ProductShippingDimension $shippingWidth) - { - $this->shippingWidth = $shippingWidth; - } - /** - * @return Google_Service_ShoppingContent_ProductShippingDimension - */ - public function getShippingWidth() - { - return $this->shippingWidth; - } - public function setSizeSystem($sizeSystem) - { - $this->sizeSystem = $sizeSystem; - } - public function getSizeSystem() - { - return $this->sizeSystem; - } - public function setSizeType($sizeType) - { - $this->sizeType = $sizeType; - } - public function getSizeType() - { - return $this->sizeType; - } - public function setSizes($sizes) - { - $this->sizes = $sizes; - } - public function getSizes() - { - return $this->sizes; - } - public function setSource($source) - { - $this->source = $source; - } - public function getSource() - { - return $this->source; - } - public function setTargetCountry($targetCountry) - { - $this->targetCountry = $targetCountry; - } - public function getTargetCountry() - { - return $this->targetCountry; - } - public function setTaxCategory($taxCategory) - { - $this->taxCategory = $taxCategory; - } - public function getTaxCategory() - { - return $this->taxCategory; - } - /** - * @param Google_Service_ShoppingContent_ProductTax - */ - public function setTaxes($taxes) - { - $this->taxes = $taxes; - } - /** - * @return Google_Service_ShoppingContent_ProductTax - */ - public function getTaxes() - { - return $this->taxes; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setTransitTimeLabel($transitTimeLabel) - { - $this->transitTimeLabel = $transitTimeLabel; - } - public function getTransitTimeLabel() - { - return $this->transitTimeLabel; - } - /** - * @param Google_Service_ShoppingContent_ProductUnitPricingBaseMeasure - */ - public function setUnitPricingBaseMeasure(Google_Service_ShoppingContent_ProductUnitPricingBaseMeasure $unitPricingBaseMeasure) - { - $this->unitPricingBaseMeasure = $unitPricingBaseMeasure; - } - /** - * @return Google_Service_ShoppingContent_ProductUnitPricingBaseMeasure - */ - public function getUnitPricingBaseMeasure() - { - return $this->unitPricingBaseMeasure; - } - /** - * @param Google_Service_ShoppingContent_ProductUnitPricingMeasure - */ - public function setUnitPricingMeasure(Google_Service_ShoppingContent_ProductUnitPricingMeasure $unitPricingMeasure) - { - $this->unitPricingMeasure = $unitPricingMeasure; - } - /** - * @return Google_Service_ShoppingContent_ProductUnitPricingMeasure - */ - public function getUnitPricingMeasure() - { - return $this->unitPricingMeasure; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductAmount.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductAmount.php deleted file mode 100644 index 4223bbdb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductAmount.php +++ /dev/null @@ -1,69 +0,0 @@ -priceAmount = $priceAmount; - } - /** - * @return Google_Service_ShoppingContent_Price - */ - public function getPriceAmount() - { - return $this->priceAmount; - } - /** - * @param Google_Service_ShoppingContent_Price - */ - public function setRemittedTaxAmount(Google_Service_ShoppingContent_Price $remittedTaxAmount) - { - $this->remittedTaxAmount = $remittedTaxAmount; - } - /** - * @return Google_Service_ShoppingContent_Price - */ - public function getRemittedTaxAmount() - { - return $this->remittedTaxAmount; - } - /** - * @param Google_Service_ShoppingContent_Price - */ - public function setTaxAmount(Google_Service_ShoppingContent_Price $taxAmount) - { - $this->taxAmount = $taxAmount; - } - /** - * @return Google_Service_ShoppingContent_Price - */ - public function getTaxAmount() - { - return $this->taxAmount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductShipping.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductShipping.php deleted file mode 100644 index ccb8b517..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductShipping.php +++ /dev/null @@ -1,91 +0,0 @@ -country = $country; - } - public function getCountry() - { - return $this->country; - } - public function setLocationGroupName($locationGroupName) - { - $this->locationGroupName = $locationGroupName; - } - public function getLocationGroupName() - { - return $this->locationGroupName; - } - public function setLocationId($locationId) - { - $this->locationId = $locationId; - } - public function getLocationId() - { - return $this->locationId; - } - public function setPostalCode($postalCode) - { - $this->postalCode = $postalCode; - } - public function getPostalCode() - { - return $this->postalCode; - } - /** - * @param Google_Service_ShoppingContent_Price - */ - public function setPrice(Google_Service_ShoppingContent_Price $price) - { - $this->price = $price; - } - /** - * @return Google_Service_ShoppingContent_Price - */ - public function getPrice() - { - return $this->price; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - public function setService($service) - { - $this->service = $service; - } - public function getService() - { - return $this->service; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductShippingDimension.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductShippingDimension.php deleted file mode 100644 index 62987197..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductShippingDimension.php +++ /dev/null @@ -1,39 +0,0 @@ -unit = $unit; - } - public function getUnit() - { - return $this->unit; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductShippingWeight.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductShippingWeight.php deleted file mode 100644 index ef70bcf7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductShippingWeight.php +++ /dev/null @@ -1,39 +0,0 @@ -unit = $unit; - } - public function getUnit() - { - return $this->unit; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductStatus.php deleted file mode 100644 index 296a1a56..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductStatus.php +++ /dev/null @@ -1,117 +0,0 @@ -creationDate = $creationDate; - } - public function getCreationDate() - { - return $this->creationDate; - } - /** - * @param Google_Service_ShoppingContent_ProductStatusDestinationStatus - */ - public function setDestinationStatuses($destinationStatuses) - { - $this->destinationStatuses = $destinationStatuses; - } - /** - * @return Google_Service_ShoppingContent_ProductStatusDestinationStatus - */ - public function getDestinationStatuses() - { - return $this->destinationStatuses; - } - public function setGoogleExpirationDate($googleExpirationDate) - { - $this->googleExpirationDate = $googleExpirationDate; - } - public function getGoogleExpirationDate() - { - return $this->googleExpirationDate; - } - /** - * @param Google_Service_ShoppingContent_ProductStatusItemLevelIssue - */ - public function setItemLevelIssues($itemLevelIssues) - { - $this->itemLevelIssues = $itemLevelIssues; - } - /** - * @return Google_Service_ShoppingContent_ProductStatusItemLevelIssue - */ - public function getItemLevelIssues() - { - return $this->itemLevelIssues; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLastUpdateDate($lastUpdateDate) - { - $this->lastUpdateDate = $lastUpdateDate; - } - public function getLastUpdateDate() - { - return $this->lastUpdateDate; - } - public function setLink($link) - { - $this->link = $link; - } - public function getLink() - { - return $this->link; - } - public function setProductId($productId) - { - $this->productId = $productId; - } - public function getProductId() - { - return $this->productId; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductStatusDestinationStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductStatusDestinationStatus.php deleted file mode 100644 index e1e67c1c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductStatusDestinationStatus.php +++ /dev/null @@ -1,39 +0,0 @@ -destination = $destination; - } - public function getDestination() - { - return $this->destination; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductStatusItemLevelIssue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductStatusItemLevelIssue.php deleted file mode 100644 index 82f14794..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductStatusItemLevelIssue.php +++ /dev/null @@ -1,93 +0,0 @@ -attributeName = $attributeName; - } - public function getAttributeName() - { - return $this->attributeName; - } - public function setCode($code) - { - $this->code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDestination($destination) - { - $this->destination = $destination; - } - public function getDestination() - { - return $this->destination; - } - public function setDetail($detail) - { - $this->detail = $detail; - } - public function getDetail() - { - return $this->detail; - } - public function setDocumentation($documentation) - { - $this->documentation = $documentation; - } - public function getDocumentation() - { - return $this->documentation; - } - public function setResolution($resolution) - { - $this->resolution = $resolution; - } - public function getResolution() - { - return $this->resolution; - } - public function setServability($servability) - { - $this->servability = $servability; - } - public function getServability() - { - return $this->servability; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductTax.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductTax.php deleted file mode 100644 index b6995a26..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductTax.php +++ /dev/null @@ -1,75 +0,0 @@ -country = $country; - } - public function getCountry() - { - return $this->country; - } - public function setLocationId($locationId) - { - $this->locationId = $locationId; - } - public function getLocationId() - { - return $this->locationId; - } - public function setPostalCode($postalCode) - { - $this->postalCode = $postalCode; - } - public function getPostalCode() - { - return $this->postalCode; - } - public function setRate($rate) - { - $this->rate = $rate; - } - public function getRate() - { - return $this->rate; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - public function setTaxShip($taxShip) - { - $this->taxShip = $taxShip; - } - public function getTaxShip() - { - return $this->taxShip; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductUnitPricingBaseMeasure.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductUnitPricingBaseMeasure.php deleted file mode 100644 index 0269726d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductUnitPricingBaseMeasure.php +++ /dev/null @@ -1,39 +0,0 @@ -unit = $unit; - } - public function getUnit() - { - return $this->unit; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductUnitPricingMeasure.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductUnitPricingMeasure.php deleted file mode 100644 index 4723a911..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductUnitPricingMeasure.php +++ /dev/null @@ -1,39 +0,0 @@ -unit = $unit; - } - public function getUnit() - { - return $this->unit; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductsCustomBatchRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductsCustomBatchRequest.php deleted file mode 100644 index 3593df5f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductsCustomBatchRequest.php +++ /dev/null @@ -1,38 +0,0 @@ -entries = $entries; - } - /** - * @return Google_Service_ShoppingContent_ProductsCustomBatchRequestEntry - */ - public function getEntries() - { - return $this->entries; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductsCustomBatchRequestEntry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductsCustomBatchRequestEntry.php deleted file mode 100644 index b70ce467..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductsCustomBatchRequestEntry.php +++ /dev/null @@ -1,82 +0,0 @@ -batchId = $batchId; - } - public function getBatchId() - { - return $this->batchId; - } - public function setFeedId($feedId) - { - $this->feedId = $feedId; - } - public function getFeedId() - { - return $this->feedId; - } - public function setMerchantId($merchantId) - { - $this->merchantId = $merchantId; - } - public function getMerchantId() - { - return $this->merchantId; - } - public function setMethod($method) - { - $this->method = $method; - } - public function getMethod() - { - return $this->method; - } - /** - * @param Google_Service_ShoppingContent_Product - */ - public function setProduct(Google_Service_ShoppingContent_Product $product) - { - $this->product = $product; - } - /** - * @return Google_Service_ShoppingContent_Product - */ - public function getProduct() - { - return $this->product; - } - public function setProductId($productId) - { - $this->productId = $productId; - } - public function getProductId() - { - return $this->productId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductsCustomBatchResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductsCustomBatchResponse.php deleted file mode 100644 index 81a1dcd1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductsCustomBatchResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -entries = $entries; - } - /** - * @return Google_Service_ShoppingContent_ProductsCustomBatchResponseEntry - */ - public function getEntries() - { - return $this->entries; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductsCustomBatchResponseEntry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductsCustomBatchResponseEntry.php deleted file mode 100644 index 82feca1a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductsCustomBatchResponseEntry.php +++ /dev/null @@ -1,71 +0,0 @@ -batchId = $batchId; - } - public function getBatchId() - { - return $this->batchId; - } - /** - * @param Google_Service_ShoppingContent_Errors - */ - public function setErrors(Google_Service_ShoppingContent_Errors $errors) - { - $this->errors = $errors; - } - /** - * @return Google_Service_ShoppingContent_Errors - */ - public function getErrors() - { - return $this->errors; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_ShoppingContent_Product - */ - public function setProduct(Google_Service_ShoppingContent_Product $product) - { - $this->product = $product; - } - /** - * @return Google_Service_ShoppingContent_Product - */ - public function getProduct() - { - return $this->product; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductsListResponse.php deleted file mode 100644 index a43f12f8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductsListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_ShoppingContent_Product - */ - public function setResources($resources) - { - $this->resources = $resources; - } - /** - * @return Google_Service_ShoppingContent_Product - */ - public function getResources() - { - return $this->resources; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductstatusesCustomBatchRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductstatusesCustomBatchRequest.php deleted file mode 100644 index 2e1e3140..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductstatusesCustomBatchRequest.php +++ /dev/null @@ -1,38 +0,0 @@ -entries = $entries; - } - /** - * @return Google_Service_ShoppingContent_ProductstatusesCustomBatchRequestEntry - */ - public function getEntries() - { - return $this->entries; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductstatusesCustomBatchRequestEntry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductstatusesCustomBatchRequestEntry.php deleted file mode 100644 index 97e7e958..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductstatusesCustomBatchRequestEntry.php +++ /dev/null @@ -1,76 +0,0 @@ -batchId = $batchId; - } - public function getBatchId() - { - return $this->batchId; - } - public function setDestinations($destinations) - { - $this->destinations = $destinations; - } - public function getDestinations() - { - return $this->destinations; - } - public function setIncludeAttributes($includeAttributes) - { - $this->includeAttributes = $includeAttributes; - } - public function getIncludeAttributes() - { - return $this->includeAttributes; - } - public function setMerchantId($merchantId) - { - $this->merchantId = $merchantId; - } - public function getMerchantId() - { - return $this->merchantId; - } - public function setMethod($method) - { - $this->method = $method; - } - public function getMethod() - { - return $this->method; - } - public function setProductId($productId) - { - $this->productId = $productId; - } - public function getProductId() - { - return $this->productId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductstatusesCustomBatchResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductstatusesCustomBatchResponse.php deleted file mode 100644 index b367955e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductstatusesCustomBatchResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -entries = $entries; - } - /** - * @return Google_Service_ShoppingContent_ProductstatusesCustomBatchResponseEntry - */ - public function getEntries() - { - return $this->entries; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductstatusesCustomBatchResponseEntry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductstatusesCustomBatchResponseEntry.php deleted file mode 100644 index 887d809a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductstatusesCustomBatchResponseEntry.php +++ /dev/null @@ -1,71 +0,0 @@ -batchId = $batchId; - } - public function getBatchId() - { - return $this->batchId; - } - /** - * @param Google_Service_ShoppingContent_Errors - */ - public function setErrors(Google_Service_ShoppingContent_Errors $errors) - { - $this->errors = $errors; - } - /** - * @return Google_Service_ShoppingContent_Errors - */ - public function getErrors() - { - return $this->errors; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_ShoppingContent_ProductStatus - */ - public function setProductStatus(Google_Service_ShoppingContent_ProductStatus $productStatus) - { - $this->productStatus = $productStatus; - } - /** - * @return Google_Service_ShoppingContent_ProductStatus - */ - public function getProductStatus() - { - return $this->productStatus; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductstatusesListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductstatusesListResponse.php deleted file mode 100644 index a16a7db6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ProductstatusesListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_ShoppingContent_ProductStatus - */ - public function setResources($resources) - { - $this->resources = $resources; - } - /** - * @return Google_Service_ShoppingContent_ProductStatus - */ - public function getResources() - { - return $this->resources; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/RateGroup.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/RateGroup.php deleted file mode 100644 index 01626791..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/RateGroup.php +++ /dev/null @@ -1,104 +0,0 @@ -applicableShippingLabels = $applicableShippingLabels; - } - public function getApplicableShippingLabels() - { - return $this->applicableShippingLabels; - } - /** - * @param Google_Service_ShoppingContent_CarrierRate - */ - public function setCarrierRates($carrierRates) - { - $this->carrierRates = $carrierRates; - } - /** - * @return Google_Service_ShoppingContent_CarrierRate - */ - public function getCarrierRates() - { - return $this->carrierRates; - } - /** - * @param Google_Service_ShoppingContent_Table - */ - public function setMainTable(Google_Service_ShoppingContent_Table $mainTable) - { - $this->mainTable = $mainTable; - } - /** - * @return Google_Service_ShoppingContent_Table - */ - public function getMainTable() - { - return $this->mainTable; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_ShoppingContent_Value - */ - public function setSingleValue(Google_Service_ShoppingContent_Value $singleValue) - { - $this->singleValue = $singleValue; - } - /** - * @return Google_Service_ShoppingContent_Value - */ - public function getSingleValue() - { - return $this->singleValue; - } - /** - * @param Google_Service_ShoppingContent_Table - */ - public function setSubtables($subtables) - { - $this->subtables = $subtables; - } - /** - * @return Google_Service_ShoppingContent_Table - */ - public function getSubtables() - { - return $this->subtables; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/RefundReason.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/RefundReason.php deleted file mode 100644 index 011d82d6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/RefundReason.php +++ /dev/null @@ -1,39 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setReasonCode($reasonCode) - { - $this->reasonCode = $reasonCode; - } - public function getReasonCode() - { - return $this->reasonCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/RegionalInventory.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/RegionalInventory.php deleted file mode 100644 index f09648a9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/RegionalInventory.php +++ /dev/null @@ -1,106 +0,0 @@ -availability = $availability; - } - public function getAvailability() - { - return $this->availability; - } - /** - * @param Google_Service_ShoppingContent_CustomAttribute - */ - public function setCustomAttributes($customAttributes) - { - $this->customAttributes = $customAttributes; - } - /** - * @return Google_Service_ShoppingContent_CustomAttribute - */ - public function getCustomAttributes() - { - return $this->customAttributes; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_ShoppingContent_Price - */ - public function setPrice(Google_Service_ShoppingContent_Price $price) - { - $this->price = $price; - } - /** - * @return Google_Service_ShoppingContent_Price - */ - public function getPrice() - { - return $this->price; - } - public function setRegionId($regionId) - { - $this->regionId = $regionId; - } - public function getRegionId() - { - return $this->regionId; - } - /** - * @param Google_Service_ShoppingContent_Price - */ - public function setSalePrice(Google_Service_ShoppingContent_Price $salePrice) - { - $this->salePrice = $salePrice; - } - /** - * @return Google_Service_ShoppingContent_Price - */ - public function getSalePrice() - { - return $this->salePrice; - } - public function setSalePriceEffectiveDate($salePriceEffectiveDate) - { - $this->salePriceEffectiveDate = $salePriceEffectiveDate; - } - public function getSalePriceEffectiveDate() - { - return $this->salePriceEffectiveDate; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/RegionalinventoryCustomBatchRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/RegionalinventoryCustomBatchRequest.php deleted file mode 100644 index a0a7dc73..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/RegionalinventoryCustomBatchRequest.php +++ /dev/null @@ -1,38 +0,0 @@ -entries = $entries; - } - /** - * @return Google_Service_ShoppingContent_RegionalinventoryCustomBatchRequestEntry - */ - public function getEntries() - { - return $this->entries; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/RegionalinventoryCustomBatchRequestEntry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/RegionalinventoryCustomBatchRequestEntry.php deleted file mode 100644 index 00563b5f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/RegionalinventoryCustomBatchRequestEntry.php +++ /dev/null @@ -1,73 +0,0 @@ -batchId = $batchId; - } - public function getBatchId() - { - return $this->batchId; - } - public function setMerchantId($merchantId) - { - $this->merchantId = $merchantId; - } - public function getMerchantId() - { - return $this->merchantId; - } - public function setMethod($method) - { - $this->method = $method; - } - public function getMethod() - { - return $this->method; - } - public function setProductId($productId) - { - $this->productId = $productId; - } - public function getProductId() - { - return $this->productId; - } - /** - * @param Google_Service_ShoppingContent_RegionalInventory - */ - public function setRegionalInventory(Google_Service_ShoppingContent_RegionalInventory $regionalInventory) - { - $this->regionalInventory = $regionalInventory; - } - /** - * @return Google_Service_ShoppingContent_RegionalInventory - */ - public function getRegionalInventory() - { - return $this->regionalInventory; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/RegionalinventoryCustomBatchResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/RegionalinventoryCustomBatchResponse.php deleted file mode 100644 index 12bf7fa1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/RegionalinventoryCustomBatchResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -entries = $entries; - } - /** - * @return Google_Service_ShoppingContent_RegionalinventoryCustomBatchResponseEntry - */ - public function getEntries() - { - return $this->entries; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/RegionalinventoryCustomBatchResponseEntry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/RegionalinventoryCustomBatchResponseEntry.php deleted file mode 100644 index 01e8f05b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/RegionalinventoryCustomBatchResponseEntry.php +++ /dev/null @@ -1,71 +0,0 @@ -batchId = $batchId; - } - public function getBatchId() - { - return $this->batchId; - } - /** - * @param Google_Service_ShoppingContent_Errors - */ - public function setErrors(Google_Service_ShoppingContent_Errors $errors) - { - $this->errors = $errors; - } - /** - * @return Google_Service_ShoppingContent_Errors - */ - public function getErrors() - { - return $this->errors; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_ShoppingContent_RegionalInventory - */ - public function setRegionalInventory(Google_Service_ShoppingContent_RegionalInventory $regionalInventory) - { - $this->regionalInventory = $regionalInventory; - } - /** - * @return Google_Service_ShoppingContent_RegionalInventory - */ - public function getRegionalInventory() - { - return $this->regionalInventory; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Resource/Accounts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Resource/Accounts.php deleted file mode 100644 index 0ad30b02..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Resource/Accounts.php +++ /dev/null @@ -1,198 +0,0 @@ - - * $contentService = new Google_Service_ShoppingContent(...); - * $accounts = $contentService->accounts; - * - */ -class Google_Service_ShoppingContent_Resource_Accounts extends Google_Service_Resource -{ - /** - * Returns information about the authenticated user. (accounts.authinfo) - * - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_AccountsAuthInfoResponse - */ - public function authinfo($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('authinfo', array($params), "Google_Service_ShoppingContent_AccountsAuthInfoResponse"); - } - /** - * Claims the website of a Merchant Center sub-account. (accounts.claimwebsite) - * - * @param string $merchantId The ID of the managing account. If this parameter - * is not the same as accountId, then this account must be a multi-client - * account and accountId must be the ID of a sub-account of this account. - * @param string $accountId The ID of the account whose website is claimed. - * @param array $optParams Optional parameters. - * - * @opt_param bool overwrite Only available to selected merchants. When set to - * True, this flag removes any existing claim on the requested website by - * another account and replaces it with a claim from this account. - * @return Google_Service_ShoppingContent_AccountsClaimWebsiteResponse - */ - public function claimwebsite($merchantId, $accountId, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'accountId' => $accountId); - $params = array_merge($params, $optParams); - return $this->call('claimwebsite', array($params), "Google_Service_ShoppingContent_AccountsClaimWebsiteResponse"); - } - /** - * Retrieves, inserts, updates, and deletes multiple Merchant Center - * (sub-)accounts in a single request. (accounts.custombatch) - * - * @param Google_Service_ShoppingContent_AccountsCustomBatchRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_AccountsCustomBatchResponse - */ - public function custombatch(Google_Service_ShoppingContent_AccountsCustomBatchRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('custombatch', array($params), "Google_Service_ShoppingContent_AccountsCustomBatchResponse"); - } - /** - * Deletes a Merchant Center sub-account. (accounts.delete) - * - * @param string $merchantId The ID of the managing account. This must be a - * multi-client account, and accountId must be the ID of a sub-account of this - * account. - * @param string $accountId The ID of the account. - * @param array $optParams Optional parameters. - * - * @opt_param bool force Flag to delete sub-accounts with products. The default - * value is false. - */ - public function delete($merchantId, $accountId, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'accountId' => $accountId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Retrieves a Merchant Center account. (accounts.get) - * - * @param string $merchantId The ID of the managing account. If this parameter - * is not the same as accountId, then this account must be a multi-client - * account and accountId must be the ID of a sub-account of this account. - * @param string $accountId The ID of the account. - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_Account - */ - public function get($merchantId, $accountId, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'accountId' => $accountId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_ShoppingContent_Account"); - } - /** - * Creates a Merchant Center sub-account. (accounts.insert) - * - * @param string $merchantId The ID of the managing account. This must be a - * multi-client account. - * @param Google_Service_ShoppingContent_Account $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_Account - */ - public function insert($merchantId, Google_Service_ShoppingContent_Account $postBody, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_ShoppingContent_Account"); - } - /** - * Performs an action on a link between two Merchant Center accounts, namely - * accountId and linkedAccountId. (accounts.link) - * - * @param string $merchantId The ID of the managing account. If this parameter - * is not the same as accountId, then this account must be a multi-client - * account and accountId must be the ID of a sub-account of this account. - * @param string $accountId The ID of the account that should be linked. - * @param Google_Service_ShoppingContent_AccountsLinkRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_AccountsLinkResponse - */ - public function link($merchantId, $accountId, Google_Service_ShoppingContent_AccountsLinkRequest $postBody, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'accountId' => $accountId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('link', array($params), "Google_Service_ShoppingContent_AccountsLinkResponse"); - } - /** - * Lists the sub-accounts in your Merchant Center account. - * (accounts.listAccounts) - * - * @param string $merchantId The ID of the managing account. This must be a - * multi-client account. - * @param array $optParams Optional parameters. - * - * @opt_param string maxResults The maximum number of accounts to return in the - * response, used for paging. - * @opt_param string pageToken The token returned by the previous request. - * @return Google_Service_ShoppingContent_AccountsListResponse - */ - public function listAccounts($merchantId, $optParams = array()) - { - $params = array('merchantId' => $merchantId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_ShoppingContent_AccountsListResponse"); - } - /** - * Returns the list of accounts linked to your Merchant Center account. - * (accounts.listlinks) - * - * @param string $merchantId The ID of the managing account. If this parameter - * is not the same as accountId, then this account must be a multi-client - * account and accountId must be the ID of a sub-account of this account. - * @param string $accountId The ID of the account for which to list links. - * @param array $optParams Optional parameters. - * - * @opt_param string maxResults The maximum number of links to return in the - * response, used for pagination. - * @opt_param string pageToken The token returned by the previous request. - * @return Google_Service_ShoppingContent_AccountsListLinksResponse - */ - public function listlinks($merchantId, $accountId, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'accountId' => $accountId); - $params = array_merge($params, $optParams); - return $this->call('listlinks', array($params), "Google_Service_ShoppingContent_AccountsListLinksResponse"); - } - /** - * Updates a Merchant Center account. (accounts.update) - * - * @param string $merchantId The ID of the managing account. If this parameter - * is not the same as accountId, then this account must be a multi-client - * account and accountId must be the ID of a sub-account of this account. - * @param string $accountId The ID of the account. - * @param Google_Service_ShoppingContent_Account $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_Account - */ - public function update($merchantId, $accountId, Google_Service_ShoppingContent_Account $postBody, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'accountId' => $accountId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_ShoppingContent_Account"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Resource/Accountstatuses.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Resource/Accountstatuses.php deleted file mode 100644 index 698182c0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Resource/Accountstatuses.php +++ /dev/null @@ -1,85 +0,0 @@ - - * $contentService = new Google_Service_ShoppingContent(...); - * $accountstatuses = $contentService->accountstatuses; - * - */ -class Google_Service_ShoppingContent_Resource_Accountstatuses extends Google_Service_Resource -{ - /** - * Retrieves multiple Merchant Center account statuses in a single request. - * (accountstatuses.custombatch) - * - * @param Google_Service_ShoppingContent_AccountstatusesCustomBatchRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_AccountstatusesCustomBatchResponse - */ - public function custombatch(Google_Service_ShoppingContent_AccountstatusesCustomBatchRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('custombatch', array($params), "Google_Service_ShoppingContent_AccountstatusesCustomBatchResponse"); - } - /** - * Retrieves the status of a Merchant Center account. No itemLevelIssues are - * returned for multi-client accounts. (accountstatuses.get) - * - * @param string $merchantId The ID of the managing account. If this parameter - * is not the same as accountId, then this account must be a multi-client - * account and accountId must be the ID of a sub-account of this account. - * @param string $accountId The ID of the account. - * @param array $optParams Optional parameters. - * - * @opt_param string destinations If set, only issues for the specified - * destinations are returned, otherwise only issues for the Shopping - * destination. - * @return Google_Service_ShoppingContent_AccountStatus - */ - public function get($merchantId, $accountId, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'accountId' => $accountId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_ShoppingContent_AccountStatus"); - } - /** - * Lists the statuses of the sub-accounts in your Merchant Center account. - * (accountstatuses.listAccountstatuses) - * - * @param string $merchantId The ID of the managing account. This must be a - * multi-client account. - * @param array $optParams Optional parameters. - * - * @opt_param string destinations If set, only issues for the specified - * destinations are returned, otherwise only issues for the Shopping - * destination. - * @opt_param string maxResults The maximum number of account statuses to return - * in the response, used for paging. - * @opt_param string pageToken The token returned by the previous request. - * @return Google_Service_ShoppingContent_AccountstatusesListResponse - */ - public function listAccountstatuses($merchantId, $optParams = array()) - { - $params = array('merchantId' => $merchantId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_ShoppingContent_AccountstatusesListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Resource/Accounttax.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Resource/Accounttax.php deleted file mode 100644 index d83b702f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Resource/Accounttax.php +++ /dev/null @@ -1,96 +0,0 @@ - - * $contentService = new Google_Service_ShoppingContent(...); - * $accounttax = $contentService->accounttax; - * - */ -class Google_Service_ShoppingContent_Resource_Accounttax extends Google_Service_Resource -{ - /** - * Retrieves and updates tax settings of multiple accounts in a single request. - * (accounttax.custombatch) - * - * @param Google_Service_ShoppingContent_AccounttaxCustomBatchRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_AccounttaxCustomBatchResponse - */ - public function custombatch(Google_Service_ShoppingContent_AccounttaxCustomBatchRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('custombatch', array($params), "Google_Service_ShoppingContent_AccounttaxCustomBatchResponse"); - } - /** - * Retrieves the tax settings of the account. (accounttax.get) - * - * @param string $merchantId The ID of the managing account. If this parameter - * is not the same as accountId, then this account must be a multi-client - * account and accountId must be the ID of a sub-account of this account. - * @param string $accountId The ID of the account for which to get/update - * account tax settings. - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_AccountTax - */ - public function get($merchantId, $accountId, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'accountId' => $accountId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_ShoppingContent_AccountTax"); - } - /** - * Lists the tax settings of the sub-accounts in your Merchant Center account. - * (accounttax.listAccounttax) - * - * @param string $merchantId The ID of the managing account. This must be a - * multi-client account. - * @param array $optParams Optional parameters. - * - * @opt_param string maxResults The maximum number of tax settings to return in - * the response, used for paging. - * @opt_param string pageToken The token returned by the previous request. - * @return Google_Service_ShoppingContent_AccounttaxListResponse - */ - public function listAccounttax($merchantId, $optParams = array()) - { - $params = array('merchantId' => $merchantId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_ShoppingContent_AccounttaxListResponse"); - } - /** - * Updates the tax settings of the account. (accounttax.update) - * - * @param string $merchantId The ID of the managing account. If this parameter - * is not the same as accountId, then this account must be a multi-client - * account and accountId must be the ID of a sub-account of this account. - * @param string $accountId The ID of the account for which to get/update - * account tax settings. - * @param Google_Service_ShoppingContent_AccountTax $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_AccountTax - */ - public function update($merchantId, $accountId, Google_Service_ShoppingContent_AccountTax $postBody, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'accountId' => $accountId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_ShoppingContent_AccountTax"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Resource/Datafeeds.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Resource/Datafeeds.php deleted file mode 100644 index 94382943..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Resource/Datafeeds.php +++ /dev/null @@ -1,141 +0,0 @@ - - * $contentService = new Google_Service_ShoppingContent(...); - * $datafeeds = $contentService->datafeeds; - * - */ -class Google_Service_ShoppingContent_Resource_Datafeeds extends Google_Service_Resource -{ - /** - * Deletes, fetches, gets, inserts and updates multiple datafeeds in a single - * request. (datafeeds.custombatch) - * - * @param Google_Service_ShoppingContent_DatafeedsCustomBatchRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_DatafeedsCustomBatchResponse - */ - public function custombatch(Google_Service_ShoppingContent_DatafeedsCustomBatchRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('custombatch', array($params), "Google_Service_ShoppingContent_DatafeedsCustomBatchResponse"); - } - /** - * Deletes a datafeed configuration from your Merchant Center account. - * (datafeeds.delete) - * - * @param string $merchantId The ID of the account that manages the datafeed. - * This account cannot be a multi-client account. - * @param string $datafeedId The ID of the datafeed. - * @param array $optParams Optional parameters. - */ - public function delete($merchantId, $datafeedId, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'datafeedId' => $datafeedId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Invokes a fetch for the datafeed in your Merchant Center account. - * (datafeeds.fetchnow) - * - * @param string $merchantId The ID of the account that manages the datafeed. - * This account cannot be a multi-client account. - * @param string $datafeedId The ID of the datafeed to be fetched. - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_DatafeedsFetchNowResponse - */ - public function fetchnow($merchantId, $datafeedId, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'datafeedId' => $datafeedId); - $params = array_merge($params, $optParams); - return $this->call('fetchnow', array($params), "Google_Service_ShoppingContent_DatafeedsFetchNowResponse"); - } - /** - * Retrieves a datafeed configuration from your Merchant Center account. - * (datafeeds.get) - * - * @param string $merchantId The ID of the account that manages the datafeed. - * This account cannot be a multi-client account. - * @param string $datafeedId The ID of the datafeed. - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_Datafeed - */ - public function get($merchantId, $datafeedId, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'datafeedId' => $datafeedId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_ShoppingContent_Datafeed"); - } - /** - * Registers a datafeed configuration with your Merchant Center account. - * (datafeeds.insert) - * - * @param string $merchantId The ID of the account that manages the datafeed. - * This account cannot be a multi-client account. - * @param Google_Service_ShoppingContent_Datafeed $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_Datafeed - */ - public function insert($merchantId, Google_Service_ShoppingContent_Datafeed $postBody, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_ShoppingContent_Datafeed"); - } - /** - * Lists the configurations for datafeeds in your Merchant Center account. - * (datafeeds.listDatafeeds) - * - * @param string $merchantId The ID of the account that manages the datafeeds. - * This account cannot be a multi-client account. - * @param array $optParams Optional parameters. - * - * @opt_param string maxResults The maximum number of products to return in the - * response, used for paging. - * @opt_param string pageToken The token returned by the previous request. - * @return Google_Service_ShoppingContent_DatafeedsListResponse - */ - public function listDatafeeds($merchantId, $optParams = array()) - { - $params = array('merchantId' => $merchantId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_ShoppingContent_DatafeedsListResponse"); - } - /** - * Updates a datafeed configuration of your Merchant Center account. - * (datafeeds.update) - * - * @param string $merchantId The ID of the account that manages the datafeed. - * This account cannot be a multi-client account. - * @param string $datafeedId The ID of the datafeed. - * @param Google_Service_ShoppingContent_Datafeed $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_Datafeed - */ - public function update($merchantId, $datafeedId, Google_Service_ShoppingContent_Datafeed $postBody, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'datafeedId' => $datafeedId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_ShoppingContent_Datafeed"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Resource/Datafeedstatuses.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Resource/Datafeedstatuses.php deleted file mode 100644 index 5dffd6dc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Resource/Datafeedstatuses.php +++ /dev/null @@ -1,86 +0,0 @@ - - * $contentService = new Google_Service_ShoppingContent(...); - * $datafeedstatuses = $contentService->datafeedstatuses; - * - */ -class Google_Service_ShoppingContent_Resource_Datafeedstatuses extends Google_Service_Resource -{ - /** - * Gets multiple Merchant Center datafeed statuses in a single request. - * (datafeedstatuses.custombatch) - * - * @param Google_Service_ShoppingContent_DatafeedstatusesCustomBatchRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_DatafeedstatusesCustomBatchResponse - */ - public function custombatch(Google_Service_ShoppingContent_DatafeedstatusesCustomBatchRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('custombatch', array($params), "Google_Service_ShoppingContent_DatafeedstatusesCustomBatchResponse"); - } - /** - * Retrieves the status of a datafeed from your Merchant Center account. - * (datafeedstatuses.get) - * - * @param string $merchantId The ID of the account that manages the datafeed. - * This account cannot be a multi-client account. - * @param string $datafeedId The ID of the datafeed. - * @param array $optParams Optional parameters. - * - * @opt_param string country The country for which to get the datafeed status. - * If this parameter is provided then language must also be provided. Note that - * this parameter is required for feeds targeting multiple countries and - * languages, since a feed may have a different status for each target. - * @opt_param string language The language for which to get the datafeed status. - * If this parameter is provided then country must also be provided. Note that - * this parameter is required for feeds targeting multiple countries and - * languages, since a feed may have a different status for each target. - * @return Google_Service_ShoppingContent_DatafeedStatus - */ - public function get($merchantId, $datafeedId, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'datafeedId' => $datafeedId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_ShoppingContent_DatafeedStatus"); - } - /** - * Lists the statuses of the datafeeds in your Merchant Center account. - * (datafeedstatuses.listDatafeedstatuses) - * - * @param string $merchantId The ID of the account that manages the datafeeds. - * This account cannot be a multi-client account. - * @param array $optParams Optional parameters. - * - * @opt_param string maxResults The maximum number of products to return in the - * response, used for paging. - * @opt_param string pageToken The token returned by the previous request. - * @return Google_Service_ShoppingContent_DatafeedstatusesListResponse - */ - public function listDatafeedstatuses($merchantId, $optParams = array()) - { - $params = array('merchantId' => $merchantId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_ShoppingContent_DatafeedstatusesListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Resource/Liasettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Resource/Liasettings.php deleted file mode 100644 index c090cbdc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Resource/Liasettings.php +++ /dev/null @@ -1,214 +0,0 @@ - - * $contentService = new Google_Service_ShoppingContent(...); - * $liasettings = $contentService->liasettings; - * - */ -class Google_Service_ShoppingContent_Resource_Liasettings extends Google_Service_Resource -{ - /** - * Retrieves and/or updates the LIA settings of multiple accounts in a single - * request. (liasettings.custombatch) - * - * @param Google_Service_ShoppingContent_LiasettingsCustomBatchRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_LiasettingsCustomBatchResponse - */ - public function custombatch(Google_Service_ShoppingContent_LiasettingsCustomBatchRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('custombatch', array($params), "Google_Service_ShoppingContent_LiasettingsCustomBatchResponse"); - } - /** - * Retrieves the LIA settings of the account. (liasettings.get) - * - * @param string $merchantId The ID of the managing account. If this parameter - * is not the same as accountId, then this account must be a multi-client - * account and accountId must be the ID of a sub-account of this account. - * @param string $accountId The ID of the account for which to get or update LIA - * settings. - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_LiaSettings - */ - public function get($merchantId, $accountId, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'accountId' => $accountId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_ShoppingContent_LiaSettings"); - } - /** - * Retrieves the list of accessible Google My Business accounts. - * (liasettings.getaccessiblegmbaccounts) - * - * @param string $merchantId The ID of the managing account. If this parameter - * is not the same as accountId, then this account must be a multi-client - * account and accountId must be the ID of a sub-account of this account. - * @param string $accountId The ID of the account for which to retrieve - * accessible Google My Business accounts. - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_LiasettingsGetAccessibleGmbAccountsResponse - */ - public function getaccessiblegmbaccounts($merchantId, $accountId, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'accountId' => $accountId); - $params = array_merge($params, $optParams); - return $this->call('getaccessiblegmbaccounts', array($params), "Google_Service_ShoppingContent_LiasettingsGetAccessibleGmbAccountsResponse"); - } - /** - * Lists the LIA settings of the sub-accounts in your Merchant Center account. - * (liasettings.listLiasettings) - * - * @param string $merchantId The ID of the managing account. This must be a - * multi-client account. - * @param array $optParams Optional parameters. - * - * @opt_param string maxResults The maximum number of LIA settings to return in - * the response, used for paging. - * @opt_param string pageToken The token returned by the previous request. - * @return Google_Service_ShoppingContent_LiasettingsListResponse - */ - public function listLiasettings($merchantId, $optParams = array()) - { - $params = array('merchantId' => $merchantId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_ShoppingContent_LiasettingsListResponse"); - } - /** - * Retrieves the list of POS data providers that have active settings for the - * all eiligible countries. (liasettings.listposdataproviders) - * - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_LiasettingsListPosDataProvidersResponse - */ - public function listposdataproviders($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('listposdataproviders', array($params), "Google_Service_ShoppingContent_LiasettingsListPosDataProvidersResponse"); - } - /** - * Requests access to a specified Google My Business account. - * (liasettings.requestgmbaccess) - * - * @param string $merchantId The ID of the managing account. If this parameter - * is not the same as accountId, then this account must be a multi-client - * account and accountId must be the ID of a sub-account of this account. - * @param string $accountId The ID of the account for which GMB access is - * requested. - * @param string $gmbEmail The email of the Google My Business account. - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_LiasettingsRequestGmbAccessResponse - */ - public function requestgmbaccess($merchantId, $accountId, $gmbEmail, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'accountId' => $accountId, 'gmbEmail' => $gmbEmail); - $params = array_merge($params, $optParams); - return $this->call('requestgmbaccess', array($params), "Google_Service_ShoppingContent_LiasettingsRequestGmbAccessResponse"); - } - /** - * Requests inventory validation for the specified country. - * (liasettings.requestinventoryverification) - * - * @param string $merchantId The ID of the managing account. If this parameter - * is not the same as accountId, then this account must be a multi-client - * account and accountId must be the ID of a sub-account of this account. - * @param string $accountId The ID of the account that manages the order. This - * cannot be a multi-client account. - * @param string $country The country for which inventory validation is - * requested. - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_LiasettingsRequestInventoryVerificationResponse - */ - public function requestinventoryverification($merchantId, $accountId, $country, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'accountId' => $accountId, 'country' => $country); - $params = array_merge($params, $optParams); - return $this->call('requestinventoryverification', array($params), "Google_Service_ShoppingContent_LiasettingsRequestInventoryVerificationResponse"); - } - /** - * Sets the inventory verification contract for the specified country. - * (liasettings.setinventoryverificationcontact) - * - * @param string $merchantId The ID of the managing account. If this parameter - * is not the same as accountId, then this account must be a multi-client - * account and accountId must be the ID of a sub-account of this account. - * @param string $accountId The ID of the account that manages the order. This - * cannot be a multi-client account. - * @param string $contactEmail The email of the inventory verification contact. - * @param string $contactName The name of the inventory verification contact. - * @param string $country The country for which inventory verification is - * requested. - * @param string $language The language for which inventory verification is - * requested. - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_LiasettingsSetInventoryVerificationContactResponse - */ - public function setinventoryverificationcontact($merchantId, $accountId, $contactEmail, $contactName, $country, $language, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'accountId' => $accountId, 'contactEmail' => $contactEmail, 'contactName' => $contactName, 'country' => $country, 'language' => $language); - $params = array_merge($params, $optParams); - return $this->call('setinventoryverificationcontact', array($params), "Google_Service_ShoppingContent_LiasettingsSetInventoryVerificationContactResponse"); - } - /** - * Sets the POS data provider for the specified country. - * (liasettings.setposdataprovider) - * - * @param string $merchantId The ID of the managing account. If this parameter - * is not the same as accountId, then this account must be a multi-client - * account and accountId must be the ID of a sub-account of this account. - * @param string $accountId The ID of the account for which to retrieve - * accessible Google My Business accounts. - * @param string $country The country for which the POS data provider is - * selected. - * @param array $optParams Optional parameters. - * - * @opt_param string posDataProviderId The ID of POS data provider. - * @opt_param string posExternalAccountId The account ID by which this merchant - * is known to the POS data provider. - * @return Google_Service_ShoppingContent_LiasettingsSetPosDataProviderResponse - */ - public function setposdataprovider($merchantId, $accountId, $country, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'accountId' => $accountId, 'country' => $country); - $params = array_merge($params, $optParams); - return $this->call('setposdataprovider', array($params), "Google_Service_ShoppingContent_LiasettingsSetPosDataProviderResponse"); - } - /** - * Updates the LIA settings of the account. (liasettings.update) - * - * @param string $merchantId The ID of the managing account. If this parameter - * is not the same as accountId, then this account must be a multi-client - * account and accountId must be the ID of a sub-account of this account. - * @param string $accountId The ID of the account for which to get or update LIA - * settings. - * @param Google_Service_ShoppingContent_LiaSettings $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_LiaSettings - */ - public function update($merchantId, $accountId, Google_Service_ShoppingContent_LiaSettings $postBody, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'accountId' => $accountId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_ShoppingContent_LiaSettings"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Resource/Orderinvoices.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Resource/Orderinvoices.php deleted file mode 100644 index 3581a10a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Resource/Orderinvoices.php +++ /dev/null @@ -1,65 +0,0 @@ - - * $contentService = new Google_Service_ShoppingContent(...); - * $orderinvoices = $contentService->orderinvoices; - * - */ -class Google_Service_ShoppingContent_Resource_Orderinvoices extends Google_Service_Resource -{ - /** - * Creates a charge invoice for a shipment group, and triggers a charge capture - * for orderinvoice enabled orders. (orderinvoices.createchargeinvoice) - * - * @param string $merchantId The ID of the account that manages the order. This - * cannot be a multi-client account. - * @param string $orderId The ID of the order. - * @param Google_Service_ShoppingContent_OrderinvoicesCreateChargeInvoiceRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_OrderinvoicesCreateChargeInvoiceResponse - */ - public function createchargeinvoice($merchantId, $orderId, Google_Service_ShoppingContent_OrderinvoicesCreateChargeInvoiceRequest $postBody, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'orderId' => $orderId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('createchargeinvoice', array($params), "Google_Service_ShoppingContent_OrderinvoicesCreateChargeInvoiceResponse"); - } - /** - * Creates a refund invoice for one or more shipment groups, and triggers a - * refund for orderinvoice enabled orders. This can only be used for line items - * that have previously been charged using createChargeInvoice. All amounts - * (except for the summary) are incremental with respect to the previous - * invoice. (orderinvoices.createrefundinvoice) - * - * @param string $merchantId The ID of the account that manages the order. This - * cannot be a multi-client account. - * @param string $orderId The ID of the order. - * @param Google_Service_ShoppingContent_OrderinvoicesCreateRefundInvoiceRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_OrderinvoicesCreateRefundInvoiceResponse - */ - public function createrefundinvoice($merchantId, $orderId, Google_Service_ShoppingContent_OrderinvoicesCreateRefundInvoiceRequest $postBody, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'orderId' => $orderId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('createrefundinvoice', array($params), "Google_Service_ShoppingContent_OrderinvoicesCreateRefundInvoiceResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Resource/Orderreports.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Resource/Orderreports.php deleted file mode 100644 index e4f7eb65..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Resource/Orderreports.php +++ /dev/null @@ -1,76 +0,0 @@ - - * $contentService = new Google_Service_ShoppingContent(...); - * $orderreports = $contentService->orderreports; - * - */ -class Google_Service_ShoppingContent_Resource_Orderreports extends Google_Service_Resource -{ - /** - * Retrieves a report for disbursements from your Merchant Center account. - * (orderreports.listdisbursements) - * - * @param string $merchantId The ID of the account that manages the order. This - * cannot be a multi-client account. - * @param string $disbursementStartDate The first date which disbursements - * occurred. In ISO 8601 format. - * @param array $optParams Optional parameters. - * - * @opt_param string disbursementEndDate The last date which disbursements - * occurred. In ISO 8601 format. Default: current date. - * @opt_param string maxResults The maximum number of disbursements to return in - * the response, used for paging. - * @opt_param string pageToken The token returned by the previous request. - * @return Google_Service_ShoppingContent_OrderreportsListDisbursementsResponse - */ - public function listdisbursements($merchantId, $disbursementStartDate, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'disbursementStartDate' => $disbursementStartDate); - $params = array_merge($params, $optParams); - return $this->call('listdisbursements', array($params), "Google_Service_ShoppingContent_OrderreportsListDisbursementsResponse"); - } - /** - * Retrieves a list of transactions for a disbursement from your Merchant Center - * account. (orderreports.listtransactions) - * - * @param string $merchantId The ID of the account that manages the order. This - * cannot be a multi-client account. - * @param string $disbursementId The Google-provided ID of the disbursement - * (found in Wallet). - * @param string $transactionStartDate The first date in which transaction - * occurred. In ISO 8601 format. - * @param array $optParams Optional parameters. - * - * @opt_param string maxResults The maximum number of disbursements to return in - * the response, used for paging. - * @opt_param string pageToken The token returned by the previous request. - * @opt_param string transactionEndDate The last date in which transaction - * occurred. In ISO 8601 format. Default: current date. - * @return Google_Service_ShoppingContent_OrderreportsListTransactionsResponse - */ - public function listtransactions($merchantId, $disbursementId, $transactionStartDate, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'disbursementId' => $disbursementId, 'transactionStartDate' => $transactionStartDate); - $params = array_merge($params, $optParams); - return $this->call('listtransactions', array($params), "Google_Service_ShoppingContent_OrderreportsListTransactionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Resource/Orderreturns.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Resource/Orderreturns.php deleted file mode 100644 index 389fcd9a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Resource/Orderreturns.php +++ /dev/null @@ -1,69 +0,0 @@ - - * $contentService = new Google_Service_ShoppingContent(...); - * $orderreturns = $contentService->orderreturns; - * - */ -class Google_Service_ShoppingContent_Resource_Orderreturns extends Google_Service_Resource -{ - /** - * Retrieves an order return from your Merchant Center account. - * (orderreturns.get) - * - * @param string $merchantId The ID of the account that manages the order. This - * cannot be a multi-client account. - * @param string $returnId Merchant order return ID generated by Google. - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_MerchantOrderReturn - */ - public function get($merchantId, $returnId, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'returnId' => $returnId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_ShoppingContent_MerchantOrderReturn"); - } - /** - * Lists order returns in your Merchant Center account. - * (orderreturns.listOrderreturns) - * - * @param string $merchantId The ID of the account that manages the order. This - * cannot be a multi-client account. - * @param array $optParams Optional parameters. - * - * @opt_param string createdEndDate Obtains order returns created before this - * date (inclusively), in ISO 8601 format. - * @opt_param string createdStartDate Obtains order returns created after this - * date (inclusively), in ISO 8601 format. - * @opt_param string maxResults The maximum number of order returns to return in - * the response, used for paging. The default value is 25 returns per page, and - * the maximum allowed value is 250 returns per page. - * @opt_param string orderBy Return the results in the specified order. - * @opt_param string pageToken The token returned by the previous request. - * @return Google_Service_ShoppingContent_OrderreturnsListResponse - */ - public function listOrderreturns($merchantId, $optParams = array()) - { - $params = array('merchantId' => $merchantId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_ShoppingContent_OrderreturnsListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Resource/Orders.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Resource/Orders.php deleted file mode 100644 index 02814e24..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Resource/Orders.php +++ /dev/null @@ -1,369 +0,0 @@ - - * $contentService = new Google_Service_ShoppingContent(...); - * $orders = $contentService->orders; - * - */ -class Google_Service_ShoppingContent_Resource_Orders extends Google_Service_Resource -{ - /** - * Marks an order as acknowledged. (orders.acknowledge) - * - * @param string $merchantId The ID of the account that manages the order. This - * cannot be a multi-client account. - * @param string $orderId The ID of the order. - * @param Google_Service_ShoppingContent_OrdersAcknowledgeRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_OrdersAcknowledgeResponse - */ - public function acknowledge($merchantId, $orderId, Google_Service_ShoppingContent_OrdersAcknowledgeRequest $postBody, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'orderId' => $orderId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('acknowledge', array($params), "Google_Service_ShoppingContent_OrdersAcknowledgeResponse"); - } - /** - * Sandbox only. Moves a test order from state "inProgress" to state - * "pendingShipment". (orders.advancetestorder) - * - * @param string $merchantId The ID of the account that manages the order. This - * cannot be a multi-client account. - * @param string $orderId The ID of the test order to modify. - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_OrdersAdvanceTestOrderResponse - */ - public function advancetestorder($merchantId, $orderId, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'orderId' => $orderId); - $params = array_merge($params, $optParams); - return $this->call('advancetestorder', array($params), "Google_Service_ShoppingContent_OrdersAdvanceTestOrderResponse"); - } - /** - * Cancels all line items in an order, making a full refund. (orders.cancel) - * - * @param string $merchantId The ID of the account that manages the order. This - * cannot be a multi-client account. - * @param string $orderId The ID of the order to cancel. - * @param Google_Service_ShoppingContent_OrdersCancelRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_OrdersCancelResponse - */ - public function cancel($merchantId, $orderId, Google_Service_ShoppingContent_OrdersCancelRequest $postBody, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'orderId' => $orderId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('cancel', array($params), "Google_Service_ShoppingContent_OrdersCancelResponse"); - } - /** - * Cancels a line item, making a full refund. (orders.cancellineitem) - * - * @param string $merchantId The ID of the account that manages the order. This - * cannot be a multi-client account. - * @param string $orderId The ID of the order. - * @param Google_Service_ShoppingContent_OrdersCancelLineItemRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_OrdersCancelLineItemResponse - */ - public function cancellineitem($merchantId, $orderId, Google_Service_ShoppingContent_OrdersCancelLineItemRequest $postBody, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'orderId' => $orderId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('cancellineitem', array($params), "Google_Service_ShoppingContent_OrdersCancelLineItemResponse"); - } - /** - * Sandbox only. Cancels a test order for customer-initiated cancellation. - * (orders.canceltestorderbycustomer) - * - * @param string $merchantId The ID of the account that manages the order. This - * cannot be a multi-client account. - * @param string $orderId The ID of the test order to cancel. - * @param Google_Service_ShoppingContent_OrdersCancelTestOrderByCustomerRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_OrdersCancelTestOrderByCustomerResponse - */ - public function canceltestorderbycustomer($merchantId, $orderId, Google_Service_ShoppingContent_OrdersCancelTestOrderByCustomerRequest $postBody, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'orderId' => $orderId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('canceltestorderbycustomer', array($params), "Google_Service_ShoppingContent_OrdersCancelTestOrderByCustomerResponse"); - } - /** - * Sandbox only. Creates a test order. (orders.createtestorder) - * - * @param string $merchantId The ID of the account that should manage the order. - * This cannot be a multi-client account. - * @param Google_Service_ShoppingContent_OrdersCreateTestOrderRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_OrdersCreateTestOrderResponse - */ - public function createtestorder($merchantId, Google_Service_ShoppingContent_OrdersCreateTestOrderRequest $postBody, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('createtestorder', array($params), "Google_Service_ShoppingContent_OrdersCreateTestOrderResponse"); - } - /** - * Sandbox only. Creates a test return. (orders.createtestreturn) - * - * @param string $merchantId The ID of the account that manages the order. This - * cannot be a multi-client account. - * @param string $orderId The ID of the order. - * @param Google_Service_ShoppingContent_OrdersCreateTestReturnRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_OrdersCreateTestReturnResponse - */ - public function createtestreturn($merchantId, $orderId, Google_Service_ShoppingContent_OrdersCreateTestReturnRequest $postBody, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'orderId' => $orderId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('createtestreturn', array($params), "Google_Service_ShoppingContent_OrdersCreateTestReturnResponse"); - } - /** - * Retrieves an order from your Merchant Center account. (orders.get) - * - * @param string $merchantId The ID of the account that manages the order. This - * cannot be a multi-client account. - * @param string $orderId The ID of the order. - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_Order - */ - public function get($merchantId, $orderId, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'orderId' => $orderId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_ShoppingContent_Order"); - } - /** - * Retrieves an order using merchant order ID. (orders.getbymerchantorderid) - * - * @param string $merchantId The ID of the account that manages the order. This - * cannot be a multi-client account. - * @param string $merchantOrderId The merchant order ID to be looked for. - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_OrdersGetByMerchantOrderIdResponse - */ - public function getbymerchantorderid($merchantId, $merchantOrderId, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'merchantOrderId' => $merchantOrderId); - $params = array_merge($params, $optParams); - return $this->call('getbymerchantorderid', array($params), "Google_Service_ShoppingContent_OrdersGetByMerchantOrderIdResponse"); - } - /** - * Sandbox only. Retrieves an order template that can be used to quickly create - * a new order in sandbox. (orders.gettestordertemplate) - * - * @param string $merchantId The ID of the account that should manage the order. - * This cannot be a multi-client account. - * @param string $templateName The name of the template to retrieve. - * @param array $optParams Optional parameters. - * - * @opt_param string country The country of the template to retrieve. Defaults - * to US. - * @return Google_Service_ShoppingContent_OrdersGetTestOrderTemplateResponse - */ - public function gettestordertemplate($merchantId, $templateName, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'templateName' => $templateName); - $params = array_merge($params, $optParams); - return $this->call('gettestordertemplate', array($params), "Google_Service_ShoppingContent_OrdersGetTestOrderTemplateResponse"); - } - /** - * Deprecated. Notifies that item return and refund was handled directly by - * merchant outside of Google payments processing (e.g. cash refund done in - * store). Note: We recommend calling the returnrefundlineitem method to refund - * in-store returns. We will issue the refund directly to the customer. This - * helps to prevent possible differences arising between merchant and Google - * transaction records. We also recommend having the point of sale system - * communicate with Google to ensure that customers do not receive a double - * refund by first refunding via Google then via an in-store return. - * (orders.instorerefundlineitem) - * - * @param string $merchantId The ID of the account that manages the order. This - * cannot be a multi-client account. - * @param string $orderId The ID of the order. - * @param Google_Service_ShoppingContent_OrdersInStoreRefundLineItemRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_OrdersInStoreRefundLineItemResponse - */ - public function instorerefundlineitem($merchantId, $orderId, Google_Service_ShoppingContent_OrdersInStoreRefundLineItemRequest $postBody, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'orderId' => $orderId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('instorerefundlineitem', array($params), "Google_Service_ShoppingContent_OrdersInStoreRefundLineItemResponse"); - } - /** - * Lists the orders in your Merchant Center account. (orders.listOrders) - * - * @param string $merchantId The ID of the account that manages the order. This - * cannot be a multi-client account. - * @param array $optParams Optional parameters. - * - * @opt_param bool acknowledged Obtains orders that match the acknowledgement - * status. When set to true, obtains orders that have been acknowledged. When - * false, obtains orders that have not been acknowledged. We recommend using - * this filter set to false, in conjunction with the acknowledge call, such that - * only un-acknowledged orders are returned. - * @opt_param string maxResults The maximum number of orders to return in the - * response, used for paging. The default value is 25 orders per page, and the - * maximum allowed value is 250 orders per page. - * @opt_param string orderBy Order results by placement date in descending or - * ascending order. - * - * Acceptable values are: - placedDateAsc - placedDateDesc - * @opt_param string pageToken The token returned by the previous request. - * @opt_param string placedDateEnd Obtains orders placed before this date - * (exclusively), in ISO 8601 format. - * @opt_param string placedDateStart Obtains orders placed after this date - * (inclusively), in ISO 8601 format. - * @opt_param string statuses Obtains orders that match any of the specified - * statuses. Please note that active is a shortcut for pendingShipment and - * partiallyShipped, and completed is a shortcut for shipped, - * partiallyDelivered, delivered, partiallyReturned, returned, and canceled. - * @return Google_Service_ShoppingContent_OrdersListResponse - */ - public function listOrders($merchantId, $optParams = array()) - { - $params = array('merchantId' => $merchantId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_ShoppingContent_OrdersListResponse"); - } - /** - * Rejects return on an line item. (orders.rejectreturnlineitem) - * - * @param string $merchantId The ID of the account that manages the order. This - * cannot be a multi-client account. - * @param string $orderId The ID of the order. - * @param Google_Service_ShoppingContent_OrdersRejectReturnLineItemRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_OrdersRejectReturnLineItemResponse - */ - public function rejectreturnlineitem($merchantId, $orderId, Google_Service_ShoppingContent_OrdersRejectReturnLineItemRequest $postBody, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'orderId' => $orderId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('rejectreturnlineitem', array($params), "Google_Service_ShoppingContent_OrdersRejectReturnLineItemResponse"); - } - /** - * Returns and refunds a line item. Note that this method can only be called on - * fully shipped orders. (orders.returnrefundlineitem) - * - * @param string $merchantId The ID of the account that manages the order. This - * cannot be a multi-client account. - * @param string $orderId The ID of the order. - * @param Google_Service_ShoppingContent_OrdersReturnRefundLineItemRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_OrdersReturnRefundLineItemResponse - */ - public function returnrefundlineitem($merchantId, $orderId, Google_Service_ShoppingContent_OrdersReturnRefundLineItemRequest $postBody, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'orderId' => $orderId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('returnrefundlineitem', array($params), "Google_Service_ShoppingContent_OrdersReturnRefundLineItemResponse"); - } - /** - * Sets (or overrides if it already exists) merchant provided annotations in the - * form of key-value pairs. A common use case would be to supply us with - * additional structured information about a line item that cannot be provided - * via other methods. Submitted key-value pairs can be retrieved as part of the - * orders resource. (orders.setlineitemmetadata) - * - * @param string $merchantId The ID of the account that manages the order. This - * cannot be a multi-client account. - * @param string $orderId The ID of the order. - * @param Google_Service_ShoppingContent_OrdersSetLineItemMetadataRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_OrdersSetLineItemMetadataResponse - */ - public function setlineitemmetadata($merchantId, $orderId, Google_Service_ShoppingContent_OrdersSetLineItemMetadataRequest $postBody, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'orderId' => $orderId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setlineitemmetadata', array($params), "Google_Service_ShoppingContent_OrdersSetLineItemMetadataResponse"); - } - /** - * Marks line item(s) as shipped. (orders.shiplineitems) - * - * @param string $merchantId The ID of the account that manages the order. This - * cannot be a multi-client account. - * @param string $orderId The ID of the order. - * @param Google_Service_ShoppingContent_OrdersShipLineItemsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_OrdersShipLineItemsResponse - */ - public function shiplineitems($merchantId, $orderId, Google_Service_ShoppingContent_OrdersShipLineItemsRequest $postBody, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'orderId' => $orderId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('shiplineitems', array($params), "Google_Service_ShoppingContent_OrdersShipLineItemsResponse"); - } - /** - * Updates ship by and delivery by dates for a line item. - * (orders.updatelineitemshippingdetails) - * - * @param string $merchantId The ID of the account that manages the order. This - * cannot be a multi-client account. - * @param string $orderId The ID of the order. - * @param Google_Service_ShoppingContent_OrdersUpdateLineItemShippingDetailsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_OrdersUpdateLineItemShippingDetailsResponse - */ - public function updatelineitemshippingdetails($merchantId, $orderId, Google_Service_ShoppingContent_OrdersUpdateLineItemShippingDetailsRequest $postBody, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'orderId' => $orderId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updatelineitemshippingdetails', array($params), "Google_Service_ShoppingContent_OrdersUpdateLineItemShippingDetailsResponse"); - } - /** - * Updates the merchant order ID for a given order. - * (orders.updatemerchantorderid) - * - * @param string $merchantId The ID of the account that manages the order. This - * cannot be a multi-client account. - * @param string $orderId The ID of the order. - * @param Google_Service_ShoppingContent_OrdersUpdateMerchantOrderIdRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_OrdersUpdateMerchantOrderIdResponse - */ - public function updatemerchantorderid($merchantId, $orderId, Google_Service_ShoppingContent_OrdersUpdateMerchantOrderIdRequest $postBody, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'orderId' => $orderId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updatemerchantorderid', array($params), "Google_Service_ShoppingContent_OrdersUpdateMerchantOrderIdResponse"); - } - /** - * Updates a shipment's status, carrier, and/or tracking ID. - * (orders.updateshipment) - * - * @param string $merchantId The ID of the account that manages the order. This - * cannot be a multi-client account. - * @param string $orderId The ID of the order. - * @param Google_Service_ShoppingContent_OrdersUpdateShipmentRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_OrdersUpdateShipmentResponse - */ - public function updateshipment($merchantId, $orderId, Google_Service_ShoppingContent_OrdersUpdateShipmentRequest $postBody, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'orderId' => $orderId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updateshipment', array($params), "Google_Service_ShoppingContent_OrdersUpdateShipmentResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Resource/Pos.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Resource/Pos.php deleted file mode 100644 index b7140be5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Resource/Pos.php +++ /dev/null @@ -1,129 +0,0 @@ - - * $contentService = new Google_Service_ShoppingContent(...); - * $pos = $contentService->pos; - * - */ -class Google_Service_ShoppingContent_Resource_Pos extends Google_Service_Resource -{ - /** - * Batches multiple POS-related calls in a single request. (pos.custombatch) - * - * @param Google_Service_ShoppingContent_PosCustomBatchRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_PosCustomBatchResponse - */ - public function custombatch(Google_Service_ShoppingContent_PosCustomBatchRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('custombatch', array($params), "Google_Service_ShoppingContent_PosCustomBatchResponse"); - } - /** - * Deletes a store for the given merchant. (pos.delete) - * - * @param string $merchantId The ID of the POS or inventory data provider. - * @param string $targetMerchantId The ID of the target merchant. - * @param string $storeCode A store code that is unique per merchant. - * @param array $optParams Optional parameters. - */ - public function delete($merchantId, $targetMerchantId, $storeCode, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'targetMerchantId' => $targetMerchantId, 'storeCode' => $storeCode); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Retrieves information about the given store. (pos.get) - * - * @param string $merchantId The ID of the POS or inventory data provider. - * @param string $targetMerchantId The ID of the target merchant. - * @param string $storeCode A store code that is unique per merchant. - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_PosStore - */ - public function get($merchantId, $targetMerchantId, $storeCode, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'targetMerchantId' => $targetMerchantId, 'storeCode' => $storeCode); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_ShoppingContent_PosStore"); - } - /** - * Creates a store for the given merchant. (pos.insert) - * - * @param string $merchantId The ID of the POS or inventory data provider. - * @param string $targetMerchantId The ID of the target merchant. - * @param Google_Service_ShoppingContent_PosStore $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_PosStore - */ - public function insert($merchantId, $targetMerchantId, Google_Service_ShoppingContent_PosStore $postBody, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'targetMerchantId' => $targetMerchantId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_ShoppingContent_PosStore"); - } - /** - * Submit inventory for the given merchant. (pos.inventory) - * - * @param string $merchantId The ID of the POS or inventory data provider. - * @param string $targetMerchantId The ID of the target merchant. - * @param Google_Service_ShoppingContent_PosInventoryRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_PosInventoryResponse - */ - public function inventory($merchantId, $targetMerchantId, Google_Service_ShoppingContent_PosInventoryRequest $postBody, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'targetMerchantId' => $targetMerchantId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('inventory', array($params), "Google_Service_ShoppingContent_PosInventoryResponse"); - } - /** - * Lists the stores of the target merchant. (pos.listPos) - * - * @param string $merchantId The ID of the POS or inventory data provider. - * @param string $targetMerchantId The ID of the target merchant. - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_PosListResponse - */ - public function listPos($merchantId, $targetMerchantId, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'targetMerchantId' => $targetMerchantId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_ShoppingContent_PosListResponse"); - } - /** - * Submit a sale event for the given merchant. (pos.sale) - * - * @param string $merchantId The ID of the POS or inventory data provider. - * @param string $targetMerchantId The ID of the target merchant. - * @param Google_Service_ShoppingContent_PosSaleRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_PosSaleResponse - */ - public function sale($merchantId, $targetMerchantId, Google_Service_ShoppingContent_PosSaleRequest $postBody, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'targetMerchantId' => $targetMerchantId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('sale', array($params), "Google_Service_ShoppingContent_PosSaleResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Resource/Products.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Resource/Products.php deleted file mode 100644 index d178e98a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Resource/Products.php +++ /dev/null @@ -1,110 +0,0 @@ - - * $contentService = new Google_Service_ShoppingContent(...); - * $products = $contentService->products; - * - */ -class Google_Service_ShoppingContent_Resource_Products extends Google_Service_Resource -{ - /** - * Retrieves, inserts, and deletes multiple products in a single request. - * (products.custombatch) - * - * @param Google_Service_ShoppingContent_ProductsCustomBatchRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_ProductsCustomBatchResponse - */ - public function custombatch(Google_Service_ShoppingContent_ProductsCustomBatchRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('custombatch', array($params), "Google_Service_ShoppingContent_ProductsCustomBatchResponse"); - } - /** - * Deletes a product from your Merchant Center account. (products.delete) - * - * @param string $merchantId The ID of the account that contains the product. - * This account cannot be a multi-client account. - * @param string $productId The REST ID of the product. - * @param array $optParams Optional parameters. - * - * @opt_param string feedId The Content API Supplemental Feed ID. - */ - public function delete($merchantId, $productId, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'productId' => $productId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Retrieves a product from your Merchant Center account. (products.get) - * - * @param string $merchantId The ID of the account that contains the product. - * This account cannot be a multi-client account. - * @param string $productId The REST ID of the product. - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_Product - */ - public function get($merchantId, $productId, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'productId' => $productId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_ShoppingContent_Product"); - } - /** - * Uploads a product to your Merchant Center account. If an item with the same - * channel, contentLanguage, offerId, and targetCountry already exists, this - * method updates that entry. (products.insert) - * - * @param string $merchantId The ID of the account that contains the product. - * This account cannot be a multi-client account. - * @param Google_Service_ShoppingContent_Product $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string feedId The Content API Supplemental Feed ID. - * @return Google_Service_ShoppingContent_Product - */ - public function insert($merchantId, Google_Service_ShoppingContent_Product $postBody, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_ShoppingContent_Product"); - } - /** - * Lists the products in your Merchant Center account. (products.listProducts) - * - * @param string $merchantId The ID of the account that contains the products. - * This account cannot be a multi-client account. - * @param array $optParams Optional parameters. - * - * @opt_param string maxResults The maximum number of products to return in the - * response, used for paging. - * @opt_param string pageToken The token returned by the previous request. - * @return Google_Service_ShoppingContent_ProductsListResponse - */ - public function listProducts($merchantId, $optParams = array()) - { - $params = array('merchantId' => $merchantId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_ShoppingContent_ProductsListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Resource/Productstatuses.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Resource/Productstatuses.php deleted file mode 100644 index 4abce0b6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Resource/Productstatuses.php +++ /dev/null @@ -1,84 +0,0 @@ - - * $contentService = new Google_Service_ShoppingContent(...); - * $productstatuses = $contentService->productstatuses; - * - */ -class Google_Service_ShoppingContent_Resource_Productstatuses extends Google_Service_Resource -{ - /** - * Gets the statuses of multiple products in a single request. - * (productstatuses.custombatch) - * - * @param Google_Service_ShoppingContent_ProductstatusesCustomBatchRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_ProductstatusesCustomBatchResponse - */ - public function custombatch(Google_Service_ShoppingContent_ProductstatusesCustomBatchRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('custombatch', array($params), "Google_Service_ShoppingContent_ProductstatusesCustomBatchResponse"); - } - /** - * Gets the status of a product from your Merchant Center account. - * (productstatuses.get) - * - * @param string $merchantId The ID of the account that contains the product. - * This account cannot be a multi-client account. - * @param string $productId The REST ID of the product. - * @param array $optParams Optional parameters. - * - * @opt_param string destinations If set, only issues for the specified - * destinations are returned, otherwise only issues for the Shopping - * destination. - * @return Google_Service_ShoppingContent_ProductStatus - */ - public function get($merchantId, $productId, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'productId' => $productId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_ShoppingContent_ProductStatus"); - } - /** - * Lists the statuses of the products in your Merchant Center account. - * (productstatuses.listProductstatuses) - * - * @param string $merchantId The ID of the account that contains the products. - * This account cannot be a multi-client account. - * @param array $optParams Optional parameters. - * - * @opt_param string destinations If set, only issues for the specified - * destinations are returned, otherwise only issues for the Shopping - * destination. - * @opt_param string maxResults The maximum number of product statuses to return - * in the response, used for paging. - * @opt_param string pageToken The token returned by the previous request. - * @return Google_Service_ShoppingContent_ProductstatusesListResponse - */ - public function listProductstatuses($merchantId, $optParams = array()) - { - $params = array('merchantId' => $merchantId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_ShoppingContent_ProductstatusesListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Resource/Regionalinventory.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Resource/Regionalinventory.php deleted file mode 100644 index aedde79d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Resource/Regionalinventory.php +++ /dev/null @@ -1,61 +0,0 @@ - - * $contentService = new Google_Service_ShoppingContent(...); - * $regionalinventory = $contentService->regionalinventory; - * - */ -class Google_Service_ShoppingContent_Resource_Regionalinventory extends Google_Service_Resource -{ - /** - * Updates regional inventory for multiple products or regions in a single - * request. (regionalinventory.custombatch) - * - * @param Google_Service_ShoppingContent_RegionalinventoryCustomBatchRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_RegionalinventoryCustomBatchResponse - */ - public function custombatch(Google_Service_ShoppingContent_RegionalinventoryCustomBatchRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('custombatch', array($params), "Google_Service_ShoppingContent_RegionalinventoryCustomBatchResponse"); - } - /** - * Update the regional inventory of a product in your Merchant Center account. - * If a regional inventory with the same region ID already exists, this method - * updates that entry. (regionalinventory.insert) - * - * @param string $merchantId The ID of the account that contains the product. - * This account cannot be a multi-client account. - * @param string $productId The REST ID of the product for which to update the - * regional inventory. - * @param Google_Service_ShoppingContent_RegionalInventory $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_RegionalInventory - */ - public function insert($merchantId, $productId, Google_Service_ShoppingContent_RegionalInventory $postBody, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'productId' => $productId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_ShoppingContent_RegionalInventory"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Resource/Returnaddress.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Resource/Returnaddress.php deleted file mode 100644 index 167cdebd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Resource/Returnaddress.php +++ /dev/null @@ -1,109 +0,0 @@ - - * $contentService = new Google_Service_ShoppingContent(...); - * $returnaddress = $contentService->returnaddress; - * - */ -class Google_Service_ShoppingContent_Resource_Returnaddress extends Google_Service_Resource -{ - /** - * Batches multiple return address related calls in a single request. - * (returnaddress.custombatch) - * - * @param Google_Service_ShoppingContent_ReturnaddressCustomBatchRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_ReturnaddressCustomBatchResponse - */ - public function custombatch(Google_Service_ShoppingContent_ReturnaddressCustomBatchRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('custombatch', array($params), "Google_Service_ShoppingContent_ReturnaddressCustomBatchResponse"); - } - /** - * Deletes a return address for the given Merchant Center account. - * (returnaddress.delete) - * - * @param string $merchantId The Merchant Center account from which to delete - * the given return address. - * @param string $returnAddressId Return address ID generated by Google. - * @param array $optParams Optional parameters. - */ - public function delete($merchantId, $returnAddressId, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'returnAddressId' => $returnAddressId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Gets a return address of the Merchant Center account. (returnaddress.get) - * - * @param string $merchantId The Merchant Center account to get a return address - * for. - * @param string $returnAddressId Return address ID generated by Google. - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_ReturnAddress - */ - public function get($merchantId, $returnAddressId, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'returnAddressId' => $returnAddressId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_ShoppingContent_ReturnAddress"); - } - /** - * Inserts a return address for the Merchant Center account. - * (returnaddress.insert) - * - * @param string $merchantId The Merchant Center account to insert a return - * address for. - * @param Google_Service_ShoppingContent_ReturnAddress $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_ReturnAddress - */ - public function insert($merchantId, Google_Service_ShoppingContent_ReturnAddress $postBody, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_ShoppingContent_ReturnAddress"); - } - /** - * Lists the return addresses of the Merchant Center account. - * (returnaddress.listReturnaddress) - * - * @param string $merchantId The Merchant Center account to list return - * addresses for. - * @param array $optParams Optional parameters. - * - * @opt_param string country List only return addresses applicable to the given - * country of sale. When omitted, all return addresses are listed. - * @opt_param string maxResults The maximum number of addresses in the response, - * used for paging. - * @opt_param string pageToken The token returned by the previous request. - * @return Google_Service_ShoppingContent_ReturnaddressListResponse - */ - public function listReturnaddress($merchantId, $optParams = array()) - { - $params = array('merchantId' => $merchantId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_ShoppingContent_ReturnaddressListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Resource/Returnpolicy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Resource/Returnpolicy.php deleted file mode 100644 index bb036a62..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Resource/Returnpolicy.php +++ /dev/null @@ -1,103 +0,0 @@ - - * $contentService = new Google_Service_ShoppingContent(...); - * $returnpolicy = $contentService->returnpolicy; - * - */ -class Google_Service_ShoppingContent_Resource_Returnpolicy extends Google_Service_Resource -{ - /** - * Batches multiple return policy related calls in a single request. - * (returnpolicy.custombatch) - * - * @param Google_Service_ShoppingContent_ReturnpolicyCustomBatchRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_ReturnpolicyCustomBatchResponse - */ - public function custombatch(Google_Service_ShoppingContent_ReturnpolicyCustomBatchRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('custombatch', array($params), "Google_Service_ShoppingContent_ReturnpolicyCustomBatchResponse"); - } - /** - * Deletes a return policy for the given Merchant Center account. - * (returnpolicy.delete) - * - * @param string $merchantId The Merchant Center account from which to delete - * the given return policy. - * @param string $returnPolicyId Return policy ID generated by Google. - * @param array $optParams Optional parameters. - */ - public function delete($merchantId, $returnPolicyId, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'returnPolicyId' => $returnPolicyId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Gets a return policy of the Merchant Center account. (returnpolicy.get) - * - * @param string $merchantId The Merchant Center account to get a return policy - * for. - * @param string $returnPolicyId Return policy ID generated by Google. - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_ReturnPolicy - */ - public function get($merchantId, $returnPolicyId, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'returnPolicyId' => $returnPolicyId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_ShoppingContent_ReturnPolicy"); - } - /** - * Inserts a return policy for the Merchant Center account. - * (returnpolicy.insert) - * - * @param string $merchantId The Merchant Center account to insert a return - * policy for. - * @param Google_Service_ShoppingContent_ReturnPolicy $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_ReturnPolicy - */ - public function insert($merchantId, Google_Service_ShoppingContent_ReturnPolicy $postBody, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_ShoppingContent_ReturnPolicy"); - } - /** - * Lists the return policies of the Merchant Center account. - * (returnpolicy.listReturnpolicy) - * - * @param string $merchantId The Merchant Center account to list return policies - * for. - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_ReturnpolicyListResponse - */ - public function listReturnpolicy($merchantId, $optParams = array()) - { - $params = array('merchantId' => $merchantId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_ShoppingContent_ReturnpolicyListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Resource/Shippingsettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Resource/Shippingsettings.php deleted file mode 100644 index 352736ac..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Resource/Shippingsettings.php +++ /dev/null @@ -1,141 +0,0 @@ - - * $contentService = new Google_Service_ShoppingContent(...); - * $shippingsettings = $contentService->shippingsettings; - * - */ -class Google_Service_ShoppingContent_Resource_Shippingsettings extends Google_Service_Resource -{ - /** - * Retrieves and updates the shipping settings of multiple accounts in a single - * request. (shippingsettings.custombatch) - * - * @param Google_Service_ShoppingContent_ShippingsettingsCustomBatchRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_ShippingsettingsCustomBatchResponse - */ - public function custombatch(Google_Service_ShoppingContent_ShippingsettingsCustomBatchRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('custombatch', array($params), "Google_Service_ShoppingContent_ShippingsettingsCustomBatchResponse"); - } - /** - * Retrieves the shipping settings of the account. (shippingsettings.get) - * - * @param string $merchantId The ID of the managing account. If this parameter - * is not the same as accountId, then this account must be a multi-client - * account and accountId must be the ID of a sub-account of this account. - * @param string $accountId The ID of the account for which to get/update - * shipping settings. - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_ShippingSettings - */ - public function get($merchantId, $accountId, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'accountId' => $accountId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_ShoppingContent_ShippingSettings"); - } - /** - * Retrieves supported carriers and carrier services for an account. - * (shippingsettings.getsupportedcarriers) - * - * @param string $merchantId The ID of the account for which to retrieve the - * supported carriers. - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_ShippingsettingsGetSupportedCarriersResponse - */ - public function getsupportedcarriers($merchantId, $optParams = array()) - { - $params = array('merchantId' => $merchantId); - $params = array_merge($params, $optParams); - return $this->call('getsupportedcarriers', array($params), "Google_Service_ShoppingContent_ShippingsettingsGetSupportedCarriersResponse"); - } - /** - * Retrieves supported holidays for an account. - * (shippingsettings.getsupportedholidays) - * - * @param string $merchantId The ID of the account for which to retrieve the - * supported holidays. - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_ShippingsettingsGetSupportedHolidaysResponse - */ - public function getsupportedholidays($merchantId, $optParams = array()) - { - $params = array('merchantId' => $merchantId); - $params = array_merge($params, $optParams); - return $this->call('getsupportedholidays', array($params), "Google_Service_ShoppingContent_ShippingsettingsGetSupportedHolidaysResponse"); - } - /** - * Retrieves supported pickup services for an account. - * (shippingsettings.getsupportedpickupservices) - * - * @param string $merchantId The ID of the account for which to retrieve the - * supported pickup services. - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_ShippingsettingsGetSupportedPickupServicesResponse - */ - public function getsupportedpickupservices($merchantId, $optParams = array()) - { - $params = array('merchantId' => $merchantId); - $params = array_merge($params, $optParams); - return $this->call('getsupportedpickupservices', array($params), "Google_Service_ShoppingContent_ShippingsettingsGetSupportedPickupServicesResponse"); - } - /** - * Lists the shipping settings of the sub-accounts in your Merchant Center - * account. (shippingsettings.listShippingsettings) - * - * @param string $merchantId The ID of the managing account. This must be a - * multi-client account. - * @param array $optParams Optional parameters. - * - * @opt_param string maxResults The maximum number of shipping settings to - * return in the response, used for paging. - * @opt_param string pageToken The token returned by the previous request. - * @return Google_Service_ShoppingContent_ShippingsettingsListResponse - */ - public function listShippingsettings($merchantId, $optParams = array()) - { - $params = array('merchantId' => $merchantId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_ShoppingContent_ShippingsettingsListResponse"); - } - /** - * Updates the shipping settings of the account. (shippingsettings.update) - * - * @param string $merchantId The ID of the managing account. If this parameter - * is not the same as accountId, then this account must be a multi-client - * account and accountId must be the ID of a sub-account of this account. - * @param string $accountId The ID of the account for which to get/update - * shipping settings. - * @param Google_Service_ShoppingContent_ShippingSettings $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_ShoppingContent_ShippingSettings - */ - public function update($merchantId, $accountId, Google_Service_ShoppingContent_ShippingSettings $postBody, $optParams = array()) - { - $params = array('merchantId' => $merchantId, 'accountId' => $accountId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_ShoppingContent_ShippingSettings"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ReturnAddress.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ReturnAddress.php deleted file mode 100644 index 601801dd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ReturnAddress.php +++ /dev/null @@ -1,82 +0,0 @@ -address = $address; - } - /** - * @return Google_Service_ShoppingContent_ReturnAddressAddress - */ - public function getAddress() - { - return $this->address; - } - public function setCountry($country) - { - $this->country = $country; - } - public function getCountry() - { - return $this->country; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLabel($label) - { - $this->label = $label; - } - public function getLabel() - { - return $this->label; - } - public function setPhoneNumber($phoneNumber) - { - $this->phoneNumber = $phoneNumber; - } - public function getPhoneNumber() - { - return $this->phoneNumber; - } - public function setReturnAddressId($returnAddressId) - { - $this->returnAddressId = $returnAddressId; - } - public function getReturnAddressId() - { - return $this->returnAddressId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ReturnAddressAddress.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ReturnAddressAddress.php deleted file mode 100644 index 40886c84..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ReturnAddressAddress.php +++ /dev/null @@ -1,76 +0,0 @@ -country = $country; - } - public function getCountry() - { - return $this->country; - } - 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 setRecipientName($recipientName) - { - $this->recipientName = $recipientName; - } - public function getRecipientName() - { - return $this->recipientName; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - public function setStreetAddress($streetAddress) - { - $this->streetAddress = $streetAddress; - } - public function getStreetAddress() - { - return $this->streetAddress; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ReturnPolicy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ReturnPolicy.php deleted file mode 100644 index 663d3948..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ReturnPolicy.php +++ /dev/null @@ -1,108 +0,0 @@ -country = $country; - } - public function getCountry() - { - return $this->country; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLabel($label) - { - $this->label = $label; - } - public function getLabel() - { - return $this->label; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNonFreeReturnReasons($nonFreeReturnReasons) - { - $this->nonFreeReturnReasons = $nonFreeReturnReasons; - } - public function getNonFreeReturnReasons() - { - return $this->nonFreeReturnReasons; - } - /** - * @param Google_Service_ShoppingContent_ReturnPolicyPolicy - */ - public function setPolicy(Google_Service_ShoppingContent_ReturnPolicyPolicy $policy) - { - $this->policy = $policy; - } - /** - * @return Google_Service_ShoppingContent_ReturnPolicyPolicy - */ - public function getPolicy() - { - return $this->policy; - } - public function setReturnPolicyId($returnPolicyId) - { - $this->returnPolicyId = $returnPolicyId; - } - public function getReturnPolicyId() - { - return $this->returnPolicyId; - } - /** - * @param Google_Service_ShoppingContent_ReturnPolicySeasonalOverride - */ - public function setSeasonalOverrides($seasonalOverrides) - { - $this->seasonalOverrides = $seasonalOverrides; - } - /** - * @return Google_Service_ShoppingContent_ReturnPolicySeasonalOverride - */ - public function getSeasonalOverrides() - { - return $this->seasonalOverrides; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ReturnPolicyPolicy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ReturnPolicyPolicy.php deleted file mode 100644 index f78d7cfe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ReturnPolicyPolicy.php +++ /dev/null @@ -1,48 +0,0 @@ -lastReturnDate = $lastReturnDate; - } - public function getLastReturnDate() - { - return $this->lastReturnDate; - } - public function setNumberOfDays($numberOfDays) - { - $this->numberOfDays = $numberOfDays; - } - public function getNumberOfDays() - { - return $this->numberOfDays; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ReturnPolicySeasonalOverride.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ReturnPolicySeasonalOverride.php deleted file mode 100644 index dcb3d14d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ReturnPolicySeasonalOverride.php +++ /dev/null @@ -1,64 +0,0 @@ -endDate = $endDate; - } - public function getEndDate() - { - return $this->endDate; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_ShoppingContent_ReturnPolicyPolicy - */ - public function setPolicy(Google_Service_ShoppingContent_ReturnPolicyPolicy $policy) - { - $this->policy = $policy; - } - /** - * @return Google_Service_ShoppingContent_ReturnPolicyPolicy - */ - public function getPolicy() - { - return $this->policy; - } - public function setStartDate($startDate) - { - $this->startDate = $startDate; - } - public function getStartDate() - { - return $this->startDate; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ReturnShipment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ReturnShipment.php deleted file mode 100644 index a4db7456..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ReturnShipment.php +++ /dev/null @@ -1,92 +0,0 @@ -creationDate = $creationDate; - } - public function getCreationDate() - { - return $this->creationDate; - } - public function setDeliveryDate($deliveryDate) - { - $this->deliveryDate = $deliveryDate; - } - public function getDeliveryDate() - { - return $this->deliveryDate; - } - public function setReturnMethodType($returnMethodType) - { - $this->returnMethodType = $returnMethodType; - } - public function getReturnMethodType() - { - return $this->returnMethodType; - } - public function setShipmentId($shipmentId) - { - $this->shipmentId = $shipmentId; - } - public function getShipmentId() - { - return $this->shipmentId; - } - /** - * @param Google_Service_ShoppingContent_ShipmentTrackingInfo - */ - public function setShipmentTrackingInfos($shipmentTrackingInfos) - { - $this->shipmentTrackingInfos = $shipmentTrackingInfos; - } - /** - * @return Google_Service_ShoppingContent_ShipmentTrackingInfo - */ - public function getShipmentTrackingInfos() - { - return $this->shipmentTrackingInfos; - } - public function setShippingDate($shippingDate) - { - $this->shippingDate = $shippingDate; - } - public function getShippingDate() - { - return $this->shippingDate; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ReturnaddressCustomBatchRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ReturnaddressCustomBatchRequest.php deleted file mode 100644 index 9bf055d3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ReturnaddressCustomBatchRequest.php +++ /dev/null @@ -1,38 +0,0 @@ -entries = $entries; - } - /** - * @return Google_Service_ShoppingContent_ReturnaddressCustomBatchRequestEntry - */ - public function getEntries() - { - return $this->entries; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ReturnaddressCustomBatchRequestEntry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ReturnaddressCustomBatchRequestEntry.php deleted file mode 100644 index 142f0527..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ReturnaddressCustomBatchRequestEntry.php +++ /dev/null @@ -1,73 +0,0 @@ -batchId = $batchId; - } - public function getBatchId() - { - return $this->batchId; - } - public function setMerchantId($merchantId) - { - $this->merchantId = $merchantId; - } - public function getMerchantId() - { - return $this->merchantId; - } - public function setMethod($method) - { - $this->method = $method; - } - public function getMethod() - { - return $this->method; - } - /** - * @param Google_Service_ShoppingContent_ReturnAddress - */ - public function setReturnAddress(Google_Service_ShoppingContent_ReturnAddress $returnAddress) - { - $this->returnAddress = $returnAddress; - } - /** - * @return Google_Service_ShoppingContent_ReturnAddress - */ - public function getReturnAddress() - { - return $this->returnAddress; - } - public function setReturnAddressId($returnAddressId) - { - $this->returnAddressId = $returnAddressId; - } - public function getReturnAddressId() - { - return $this->returnAddressId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ReturnaddressCustomBatchResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ReturnaddressCustomBatchResponse.php deleted file mode 100644 index 86862de0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ReturnaddressCustomBatchResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -entries = $entries; - } - /** - * @return Google_Service_ShoppingContent_ReturnaddressCustomBatchResponseEntry - */ - public function getEntries() - { - return $this->entries; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ReturnaddressCustomBatchResponseEntry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ReturnaddressCustomBatchResponseEntry.php deleted file mode 100644 index 54941b04..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ReturnaddressCustomBatchResponseEntry.php +++ /dev/null @@ -1,71 +0,0 @@ -batchId = $batchId; - } - public function getBatchId() - { - return $this->batchId; - } - /** - * @param Google_Service_ShoppingContent_Errors - */ - public function setErrors(Google_Service_ShoppingContent_Errors $errors) - { - $this->errors = $errors; - } - /** - * @return Google_Service_ShoppingContent_Errors - */ - public function getErrors() - { - return $this->errors; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_ShoppingContent_ReturnAddress - */ - public function setReturnAddress(Google_Service_ShoppingContent_ReturnAddress $returnAddress) - { - $this->returnAddress = $returnAddress; - } - /** - * @return Google_Service_ShoppingContent_ReturnAddress - */ - public function getReturnAddress() - { - return $this->returnAddress; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ReturnaddressListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ReturnaddressListResponse.php deleted file mode 100644 index b47dd66e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ReturnaddressListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_ShoppingContent_ReturnAddress - */ - public function setResources($resources) - { - $this->resources = $resources; - } - /** - * @return Google_Service_ShoppingContent_ReturnAddress - */ - public function getResources() - { - return $this->resources; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ReturnpolicyCustomBatchRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ReturnpolicyCustomBatchRequest.php deleted file mode 100644 index 9e681e5c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ReturnpolicyCustomBatchRequest.php +++ /dev/null @@ -1,38 +0,0 @@ -entries = $entries; - } - /** - * @return Google_Service_ShoppingContent_ReturnpolicyCustomBatchRequestEntry - */ - public function getEntries() - { - return $this->entries; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ReturnpolicyCustomBatchRequestEntry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ReturnpolicyCustomBatchRequestEntry.php deleted file mode 100644 index f3d3f066..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ReturnpolicyCustomBatchRequestEntry.php +++ /dev/null @@ -1,73 +0,0 @@ -batchId = $batchId; - } - public function getBatchId() - { - return $this->batchId; - } - public function setMerchantId($merchantId) - { - $this->merchantId = $merchantId; - } - public function getMerchantId() - { - return $this->merchantId; - } - public function setMethod($method) - { - $this->method = $method; - } - public function getMethod() - { - return $this->method; - } - /** - * @param Google_Service_ShoppingContent_ReturnPolicy - */ - public function setReturnPolicy(Google_Service_ShoppingContent_ReturnPolicy $returnPolicy) - { - $this->returnPolicy = $returnPolicy; - } - /** - * @return Google_Service_ShoppingContent_ReturnPolicy - */ - public function getReturnPolicy() - { - return $this->returnPolicy; - } - public function setReturnPolicyId($returnPolicyId) - { - $this->returnPolicyId = $returnPolicyId; - } - public function getReturnPolicyId() - { - return $this->returnPolicyId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ReturnpolicyCustomBatchResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ReturnpolicyCustomBatchResponse.php deleted file mode 100644 index 9398c17c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ReturnpolicyCustomBatchResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -entries = $entries; - } - /** - * @return Google_Service_ShoppingContent_ReturnpolicyCustomBatchResponseEntry - */ - public function getEntries() - { - return $this->entries; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ReturnpolicyCustomBatchResponseEntry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ReturnpolicyCustomBatchResponseEntry.php deleted file mode 100644 index 927f91bf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ReturnpolicyCustomBatchResponseEntry.php +++ /dev/null @@ -1,71 +0,0 @@ -batchId = $batchId; - } - public function getBatchId() - { - return $this->batchId; - } - /** - * @param Google_Service_ShoppingContent_Errors - */ - public function setErrors(Google_Service_ShoppingContent_Errors $errors) - { - $this->errors = $errors; - } - /** - * @return Google_Service_ShoppingContent_Errors - */ - public function getErrors() - { - return $this->errors; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_ShoppingContent_ReturnPolicy - */ - public function setReturnPolicy(Google_Service_ShoppingContent_ReturnPolicy $returnPolicy) - { - $this->returnPolicy = $returnPolicy; - } - /** - * @return Google_Service_ShoppingContent_ReturnPolicy - */ - public function getReturnPolicy() - { - return $this->returnPolicy; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ReturnpolicyListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ReturnpolicyListResponse.php deleted file mode 100644 index cb278f73..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ReturnpolicyListResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_ShoppingContent_ReturnPolicy - */ - public function setResources($resources) - { - $this->resources = $resources; - } - /** - * @return Google_Service_ShoppingContent_ReturnPolicy - */ - public function getResources() - { - return $this->resources; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Row.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Row.php deleted file mode 100644 index d6e8dde3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Row.php +++ /dev/null @@ -1,38 +0,0 @@ -cells = $cells; - } - /** - * @return Google_Service_ShoppingContent_Value - */ - public function getCells() - { - return $this->cells; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Service.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Service.php deleted file mode 100644 index 2f40f54c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Service.php +++ /dev/null @@ -1,140 +0,0 @@ -active = $active; - } - public function getActive() - { - return $this->active; - } - public function setCurrency($currency) - { - $this->currency = $currency; - } - public function getCurrency() - { - return $this->currency; - } - public function setDeliveryCountry($deliveryCountry) - { - $this->deliveryCountry = $deliveryCountry; - } - public function getDeliveryCountry() - { - return $this->deliveryCountry; - } - /** - * @param Google_Service_ShoppingContent_DeliveryTime - */ - public function setDeliveryTime(Google_Service_ShoppingContent_DeliveryTime $deliveryTime) - { - $this->deliveryTime = $deliveryTime; - } - /** - * @return Google_Service_ShoppingContent_DeliveryTime - */ - public function getDeliveryTime() - { - return $this->deliveryTime; - } - public function setEligibility($eligibility) - { - $this->eligibility = $eligibility; - } - public function getEligibility() - { - return $this->eligibility; - } - /** - * @param Google_Service_ShoppingContent_Price - */ - public function setMinimumOrderValue(Google_Service_ShoppingContent_Price $minimumOrderValue) - { - $this->minimumOrderValue = $minimumOrderValue; - } - /** - * @return Google_Service_ShoppingContent_Price - */ - public function getMinimumOrderValue() - { - return $this->minimumOrderValue; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_ShoppingContent_PickupCarrierService - */ - public function setPickupService(Google_Service_ShoppingContent_PickupCarrierService $pickupService) - { - $this->pickupService = $pickupService; - } - /** - * @return Google_Service_ShoppingContent_PickupCarrierService - */ - public function getPickupService() - { - return $this->pickupService; - } - /** - * @param Google_Service_ShoppingContent_RateGroup - */ - public function setRateGroups($rateGroups) - { - $this->rateGroups = $rateGroups; - } - /** - * @return Google_Service_ShoppingContent_RateGroup - */ - public function getRateGroups() - { - return $this->rateGroups; - } - public function setShipmentType($shipmentType) - { - $this->shipmentType = $shipmentType; - } - public function getShipmentType() - { - return $this->shipmentType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ShipmentInvoice.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ShipmentInvoice.php deleted file mode 100644 index 8d11873b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ShipmentInvoice.php +++ /dev/null @@ -1,63 +0,0 @@ -invoiceSummary = $invoiceSummary; - } - /** - * @return Google_Service_ShoppingContent_InvoiceSummary - */ - public function getInvoiceSummary() - { - return $this->invoiceSummary; - } - /** - * @param Google_Service_ShoppingContent_ShipmentInvoiceLineItemInvoice - */ - public function setLineItemInvoices($lineItemInvoices) - { - $this->lineItemInvoices = $lineItemInvoices; - } - /** - * @return Google_Service_ShoppingContent_ShipmentInvoiceLineItemInvoice - */ - public function getLineItemInvoices() - { - return $this->lineItemInvoices; - } - public function setShipmentGroupId($shipmentGroupId) - { - $this->shipmentGroupId = $shipmentGroupId; - } - public function getShipmentGroupId() - { - return $this->shipmentGroupId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ShipmentInvoiceLineItemInvoice.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ShipmentInvoiceLineItemInvoice.php deleted file mode 100644 index 2160b1ac..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ShipmentInvoiceLineItemInvoice.php +++ /dev/null @@ -1,65 +0,0 @@ -lineItemId = $lineItemId; - } - public function getLineItemId() - { - return $this->lineItemId; - } - public function setProductId($productId) - { - $this->productId = $productId; - } - public function getProductId() - { - return $this->productId; - } - public function setShipmentUnitIds($shipmentUnitIds) - { - $this->shipmentUnitIds = $shipmentUnitIds; - } - public function getShipmentUnitIds() - { - return $this->shipmentUnitIds; - } - /** - * @param Google_Service_ShoppingContent_UnitInvoice - */ - public function setUnitInvoice(Google_Service_ShoppingContent_UnitInvoice $unitInvoice) - { - $this->unitInvoice = $unitInvoice; - } - /** - * @return Google_Service_ShoppingContent_UnitInvoice - */ - public function getUnitInvoice() - { - return $this->unitInvoice; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ShipmentTrackingInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ShipmentTrackingInfo.php deleted file mode 100644 index 294559da..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ShipmentTrackingInfo.php +++ /dev/null @@ -1,39 +0,0 @@ -carrier = $carrier; - } - public function getCarrier() - { - return $this->carrier; - } - public function setTrackingNumber($trackingNumber) - { - $this->trackingNumber = $trackingNumber; - } - public function getTrackingNumber() - { - return $this->trackingNumber; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ShippingSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ShippingSettings.php deleted file mode 100644 index 104a16ff..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ShippingSettings.php +++ /dev/null @@ -1,63 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - /** - * @param Google_Service_ShoppingContent_PostalCodeGroup - */ - public function setPostalCodeGroups($postalCodeGroups) - { - $this->postalCodeGroups = $postalCodeGroups; - } - /** - * @return Google_Service_ShoppingContent_PostalCodeGroup - */ - public function getPostalCodeGroups() - { - return $this->postalCodeGroups; - } - /** - * @param Google_Service_ShoppingContent_Service - */ - public function setServices($services) - { - $this->services = $services; - } - /** - * @return Google_Service_ShoppingContent_Service - */ - public function getServices() - { - return $this->services; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ShippingsettingsCustomBatchRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ShippingsettingsCustomBatchRequest.php deleted file mode 100644 index a8e0a603..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ShippingsettingsCustomBatchRequest.php +++ /dev/null @@ -1,38 +0,0 @@ -entries = $entries; - } - /** - * @return Google_Service_ShoppingContent_ShippingsettingsCustomBatchRequestEntry - */ - public function getEntries() - { - return $this->entries; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ShippingsettingsCustomBatchRequestEntry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ShippingsettingsCustomBatchRequestEntry.php deleted file mode 100644 index 97fb98b7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ShippingsettingsCustomBatchRequestEntry.php +++ /dev/null @@ -1,73 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setBatchId($batchId) - { - $this->batchId = $batchId; - } - public function getBatchId() - { - return $this->batchId; - } - public function setMerchantId($merchantId) - { - $this->merchantId = $merchantId; - } - public function getMerchantId() - { - return $this->merchantId; - } - public function setMethod($method) - { - $this->method = $method; - } - public function getMethod() - { - return $this->method; - } - /** - * @param Google_Service_ShoppingContent_ShippingSettings - */ - public function setShippingSettings(Google_Service_ShoppingContent_ShippingSettings $shippingSettings) - { - $this->shippingSettings = $shippingSettings; - } - /** - * @return Google_Service_ShoppingContent_ShippingSettings - */ - public function getShippingSettings() - { - return $this->shippingSettings; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ShippingsettingsCustomBatchResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ShippingsettingsCustomBatchResponse.php deleted file mode 100644 index fbf98b65..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ShippingsettingsCustomBatchResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -entries = $entries; - } - /** - * @return Google_Service_ShoppingContent_ShippingsettingsCustomBatchResponseEntry - */ - public function getEntries() - { - return $this->entries; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ShippingsettingsCustomBatchResponseEntry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ShippingsettingsCustomBatchResponseEntry.php deleted file mode 100644 index 62fa76d3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ShippingsettingsCustomBatchResponseEntry.php +++ /dev/null @@ -1,71 +0,0 @@ -batchId = $batchId; - } - public function getBatchId() - { - return $this->batchId; - } - /** - * @param Google_Service_ShoppingContent_Errors - */ - public function setErrors(Google_Service_ShoppingContent_Errors $errors) - { - $this->errors = $errors; - } - /** - * @return Google_Service_ShoppingContent_Errors - */ - public function getErrors() - { - return $this->errors; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_ShoppingContent_ShippingSettings - */ - public function setShippingSettings(Google_Service_ShoppingContent_ShippingSettings $shippingSettings) - { - $this->shippingSettings = $shippingSettings; - } - /** - * @return Google_Service_ShoppingContent_ShippingSettings - */ - public function getShippingSettings() - { - return $this->shippingSettings; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ShippingsettingsGetSupportedCarriersResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ShippingsettingsGetSupportedCarriersResponse.php deleted file mode 100644 index c44b4bc1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ShippingsettingsGetSupportedCarriersResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -carriers = $carriers; - } - /** - * @return Google_Service_ShoppingContent_CarriersCarrier - */ - public function getCarriers() - { - return $this->carriers; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ShippingsettingsGetSupportedHolidaysResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ShippingsettingsGetSupportedHolidaysResponse.php deleted file mode 100644 index d9b0dc41..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ShippingsettingsGetSupportedHolidaysResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -holidays = $holidays; - } - /** - * @return Google_Service_ShoppingContent_HolidaysHoliday - */ - public function getHolidays() - { - return $this->holidays; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ShippingsettingsGetSupportedPickupServicesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ShippingsettingsGetSupportedPickupServicesResponse.php deleted file mode 100644 index 696ea1e0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ShippingsettingsGetSupportedPickupServicesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_ShoppingContent_PickupServicesPickupService - */ - public function setPickupServices($pickupServices) - { - $this->pickupServices = $pickupServices; - } - /** - * @return Google_Service_ShoppingContent_PickupServicesPickupService - */ - public function getPickupServices() - { - return $this->pickupServices; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ShippingsettingsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ShippingsettingsListResponse.php deleted file mode 100644 index 3a7a47c4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/ShippingsettingsListResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_ShoppingContent_ShippingSettings - */ - public function setResources($resources) - { - $this->resources = $resources; - } - /** - * @return Google_Service_ShoppingContent_ShippingSettings - */ - public function getResources() - { - return $this->resources; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Table.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Table.php deleted file mode 100644 index 13fab3ad..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Table.php +++ /dev/null @@ -1,79 +0,0 @@ -columnHeaders = $columnHeaders; - } - /** - * @return Google_Service_ShoppingContent_Headers - */ - public function getColumnHeaders() - { - return $this->columnHeaders; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_ShoppingContent_Headers - */ - public function setRowHeaders(Google_Service_ShoppingContent_Headers $rowHeaders) - { - $this->rowHeaders = $rowHeaders; - } - /** - * @return Google_Service_ShoppingContent_Headers - */ - public function getRowHeaders() - { - return $this->rowHeaders; - } - /** - * @param Google_Service_ShoppingContent_Row - */ - public function setRows($rows) - { - $this->rows = $rows; - } - /** - * @return Google_Service_ShoppingContent_Row - */ - public function getRows() - { - return $this->rows; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/TestOrder.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/TestOrder.php deleted file mode 100644 index b893ea4a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/TestOrder.php +++ /dev/null @@ -1,142 +0,0 @@ -enableOrderinvoices = $enableOrderinvoices; - } - public function getEnableOrderinvoices() - { - return $this->enableOrderinvoices; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_ShoppingContent_TestOrderLineItem - */ - public function setLineItems($lineItems) - { - $this->lineItems = $lineItems; - } - /** - * @return Google_Service_ShoppingContent_TestOrderLineItem - */ - public function getLineItems() - { - return $this->lineItems; - } - public function setNotificationMode($notificationMode) - { - $this->notificationMode = $notificationMode; - } - public function getNotificationMode() - { - return $this->notificationMode; - } - public function setPredefinedBillingAddress($predefinedBillingAddress) - { - $this->predefinedBillingAddress = $predefinedBillingAddress; - } - public function getPredefinedBillingAddress() - { - return $this->predefinedBillingAddress; - } - public function setPredefinedDeliveryAddress($predefinedDeliveryAddress) - { - $this->predefinedDeliveryAddress = $predefinedDeliveryAddress; - } - public function getPredefinedDeliveryAddress() - { - return $this->predefinedDeliveryAddress; - } - public function setPredefinedEmail($predefinedEmail) - { - $this->predefinedEmail = $predefinedEmail; - } - public function getPredefinedEmail() - { - return $this->predefinedEmail; - } - public function setPredefinedPickupDetails($predefinedPickupDetails) - { - $this->predefinedPickupDetails = $predefinedPickupDetails; - } - public function getPredefinedPickupDetails() - { - return $this->predefinedPickupDetails; - } - /** - * @param Google_Service_ShoppingContent_OrderPromotion - */ - public function setPromotions($promotions) - { - $this->promotions = $promotions; - } - /** - * @return Google_Service_ShoppingContent_OrderPromotion - */ - public function getPromotions() - { - return $this->promotions; - } - /** - * @param Google_Service_ShoppingContent_Price - */ - public function setShippingCost(Google_Service_ShoppingContent_Price $shippingCost) - { - $this->shippingCost = $shippingCost; - } - /** - * @return Google_Service_ShoppingContent_Price - */ - public function getShippingCost() - { - return $this->shippingCost; - } - public function setShippingOption($shippingOption) - { - $this->shippingOption = $shippingOption; - } - public function getShippingOption() - { - return $this->shippingOption; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/TestOrderLineItem.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/TestOrderLineItem.php deleted file mode 100644 index f4cef403..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/TestOrderLineItem.php +++ /dev/null @@ -1,78 +0,0 @@ -product = $product; - } - /** - * @return Google_Service_ShoppingContent_TestOrderLineItemProduct - */ - public function getProduct() - { - return $this->product; - } - public function setQuantityOrdered($quantityOrdered) - { - $this->quantityOrdered = $quantityOrdered; - } - public function getQuantityOrdered() - { - return $this->quantityOrdered; - } - /** - * @param Google_Service_ShoppingContent_OrderLineItemReturnInfo - */ - public function setReturnInfo(Google_Service_ShoppingContent_OrderLineItemReturnInfo $returnInfo) - { - $this->returnInfo = $returnInfo; - } - /** - * @return Google_Service_ShoppingContent_OrderLineItemReturnInfo - */ - public function getReturnInfo() - { - return $this->returnInfo; - } - /** - * @param Google_Service_ShoppingContent_OrderLineItemShippingDetails - */ - public function setShippingDetails(Google_Service_ShoppingContent_OrderLineItemShippingDetails $shippingDetails) - { - $this->shippingDetails = $shippingDetails; - } - /** - * @return Google_Service_ShoppingContent_OrderLineItemShippingDetails - */ - public function getShippingDetails() - { - return $this->shippingDetails; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/TestOrderLineItemProduct.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/TestOrderLineItemProduct.php deleted file mode 100644 index b7784052..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/TestOrderLineItemProduct.php +++ /dev/null @@ -1,160 +0,0 @@ -brand = $brand; - } - public function getBrand() - { - return $this->brand; - } - public function setCondition($condition) - { - $this->condition = $condition; - } - public function getCondition() - { - return $this->condition; - } - public function setContentLanguage($contentLanguage) - { - $this->contentLanguage = $contentLanguage; - } - public function getContentLanguage() - { - return $this->contentLanguage; - } - /** - * @param Google_Service_ShoppingContent_OrderLineItemProductFee - */ - public function setFees($fees) - { - $this->fees = $fees; - } - /** - * @return Google_Service_ShoppingContent_OrderLineItemProductFee - */ - public function getFees() - { - return $this->fees; - } - public function setGtin($gtin) - { - $this->gtin = $gtin; - } - public function getGtin() - { - return $this->gtin; - } - public function setImageLink($imageLink) - { - $this->imageLink = $imageLink; - } - public function getImageLink() - { - return $this->imageLink; - } - public function setItemGroupId($itemGroupId) - { - $this->itemGroupId = $itemGroupId; - } - public function getItemGroupId() - { - return $this->itemGroupId; - } - public function setMpn($mpn) - { - $this->mpn = $mpn; - } - public function getMpn() - { - return $this->mpn; - } - public function setOfferId($offerId) - { - $this->offerId = $offerId; - } - public function getOfferId() - { - return $this->offerId; - } - /** - * @param Google_Service_ShoppingContent_Price - */ - public function setPrice(Google_Service_ShoppingContent_Price $price) - { - $this->price = $price; - } - /** - * @return Google_Service_ShoppingContent_Price - */ - public function getPrice() - { - return $this->price; - } - public function setTargetCountry($targetCountry) - { - $this->targetCountry = $targetCountry; - } - public function getTargetCountry() - { - return $this->targetCountry; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - /** - * @param Google_Service_ShoppingContent_OrderLineItemProductVariantAttribute - */ - public function setVariantAttributes($variantAttributes) - { - $this->variantAttributes = $variantAttributes; - } - /** - * @return Google_Service_ShoppingContent_OrderLineItemProductVariantAttribute - */ - public function getVariantAttributes() - { - return $this->variantAttributes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/TransitTable.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/TransitTable.php deleted file mode 100644 index d7a0ac88..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/TransitTable.php +++ /dev/null @@ -1,56 +0,0 @@ -postalCodeGroupNames = $postalCodeGroupNames; - } - public function getPostalCodeGroupNames() - { - return $this->postalCodeGroupNames; - } - /** - * @param Google_Service_ShoppingContent_TransitTableTransitTimeRow - */ - public function setRows($rows) - { - $this->rows = $rows; - } - /** - * @return Google_Service_ShoppingContent_TransitTableTransitTimeRow - */ - public function getRows() - { - return $this->rows; - } - public function setTransitTimeLabels($transitTimeLabels) - { - $this->transitTimeLabels = $transitTimeLabels; - } - public function getTransitTimeLabels() - { - return $this->transitTimeLabels; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/TransitTableTransitTimeRow.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/TransitTableTransitTimeRow.php deleted file mode 100644 index 5ddf2b44..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/TransitTableTransitTimeRow.php +++ /dev/null @@ -1,38 +0,0 @@ -values = $values; - } - /** - * @return Google_Service_ShoppingContent_TransitTableTransitTimeRowTransitTimeValue - */ - public function getValues() - { - return $this->values; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/TransitTableTransitTimeRowTransitTimeValue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/TransitTableTransitTimeRowTransitTimeValue.php deleted file mode 100644 index d9ec138a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/TransitTableTransitTimeRowTransitTimeValue.php +++ /dev/null @@ -1,39 +0,0 @@ -maxTransitTimeInDays = $maxTransitTimeInDays; - } - public function getMaxTransitTimeInDays() - { - return $this->maxTransitTimeInDays; - } - public function setMinTransitTimeInDays($minTransitTimeInDays) - { - $this->minTransitTimeInDays = $minTransitTimeInDays; - } - public function getMinTransitTimeInDays() - { - return $this->minTransitTimeInDays; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/UnitInvoice.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/UnitInvoice.php deleted file mode 100644 index bbabeb68..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/UnitInvoice.php +++ /dev/null @@ -1,70 +0,0 @@ -additionalCharges = $additionalCharges; - } - /** - * @return Google_Service_ShoppingContent_UnitInvoiceAdditionalCharge - */ - public function getAdditionalCharges() - { - return $this->additionalCharges; - } - /** - * @param Google_Service_ShoppingContent_Price - */ - public function setUnitPrice(Google_Service_ShoppingContent_Price $unitPrice) - { - $this->unitPrice = $unitPrice; - } - /** - * @return Google_Service_ShoppingContent_Price - */ - public function getUnitPrice() - { - return $this->unitPrice; - } - /** - * @param Google_Service_ShoppingContent_UnitInvoiceTaxLine - */ - public function setUnitPriceTaxes($unitPriceTaxes) - { - $this->unitPriceTaxes = $unitPriceTaxes; - } - /** - * @return Google_Service_ShoppingContent_UnitInvoiceTaxLine - */ - public function getUnitPriceTaxes() - { - return $this->unitPriceTaxes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/UnitInvoiceAdditionalCharge.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/UnitInvoiceAdditionalCharge.php deleted file mode 100644 index 6edfa99d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/UnitInvoiceAdditionalCharge.php +++ /dev/null @@ -1,46 +0,0 @@ -additionalChargeAmount = $additionalChargeAmount; - } - /** - * @return Google_Service_ShoppingContent_Amount - */ - public function getAdditionalChargeAmount() - { - return $this->additionalChargeAmount; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/UnitInvoiceTaxLine.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/UnitInvoiceTaxLine.php deleted file mode 100644 index 0c4afef8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/UnitInvoiceTaxLine.php +++ /dev/null @@ -1,55 +0,0 @@ -taxAmount = $taxAmount; - } - /** - * @return Google_Service_ShoppingContent_Price - */ - public function getTaxAmount() - { - return $this->taxAmount; - } - public function setTaxName($taxName) - { - $this->taxName = $taxName; - } - public function getTaxName() - { - return $this->taxName; - } - public function setTaxType($taxType) - { - $this->taxType = $taxType; - } - public function getTaxType() - { - return $this->taxType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Value.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Value.php deleted file mode 100644 index 6e44a56d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Value.php +++ /dev/null @@ -1,73 +0,0 @@ -carrierRateName = $carrierRateName; - } - public function getCarrierRateName() - { - return $this->carrierRateName; - } - /** - * @param Google_Service_ShoppingContent_Price - */ - public function setFlatRate(Google_Service_ShoppingContent_Price $flatRate) - { - $this->flatRate = $flatRate; - } - /** - * @return Google_Service_ShoppingContent_Price - */ - public function getFlatRate() - { - return $this->flatRate; - } - public function setNoShipping($noShipping) - { - $this->noShipping = $noShipping; - } - public function getNoShipping() - { - return $this->noShipping; - } - public function setPricePercentage($pricePercentage) - { - $this->pricePercentage = $pricePercentage; - } - public function getPricePercentage() - { - return $this->pricePercentage; - } - public function setSubtableName($subtableName) - { - $this->subtableName = $subtableName; - } - public function getSubtableName() - { - return $this->subtableName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Weight.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Weight.php deleted file mode 100644 index d93d512a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/Weight.php +++ /dev/null @@ -1,39 +0,0 @@ -unit = $unit; - } - public function getUnit() - { - return $this->unit; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SiteVerification.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SiteVerification.php deleted file mode 100644 index f306ce9e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SiteVerification.php +++ /dev/null @@ -1,126 +0,0 @@ - - * Verifies ownership of websites or domains with Google.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_SiteVerification extends Google_Service -{ - /** Manage the list of sites and domains you control. */ - const SITEVERIFICATION = - "https://www.googleapis.com/auth/siteverification"; - /** Manage your new site verifications with Google. */ - const SITEVERIFICATION_VERIFY_ONLY = - "https://www.googleapis.com/auth/siteverification.verify_only"; - - public $webResource; - - /** - * Constructs the internal representation of the SiteVerification service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://www.googleapis.com/'; - $this->servicePath = 'siteVerification/v1/'; - $this->batchPath = 'batch/siteVerification/v1'; - $this->version = 'v1'; - $this->serviceName = 'siteVerification'; - - $this->webResource = new Google_Service_SiteVerification_Resource_WebResource( - $this, - $this->serviceName, - 'webResource', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'webResource/{id}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'webResource/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getToken' => array( - 'path' => 'token', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'insert' => array( - 'path' => 'webResource', - 'httpMethod' => 'POST', - 'parameters' => array( - 'verificationMethod' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'webResource', - 'httpMethod' => 'GET', - 'parameters' => array(), - ),'patch' => array( - 'path' => 'webResource/{id}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'webResource/{id}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SiteVerification/Resource/WebResource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SiteVerification/Resource/WebResource.php deleted file mode 100644 index 236f453d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SiteVerification/Resource/WebResource.php +++ /dev/null @@ -1,124 +0,0 @@ - - * $siteVerificationService = new Google_Service_SiteVerification(...); - * $webResource = $siteVerificationService->webResource; - * - */ -class Google_Service_SiteVerification_Resource_WebResource extends Google_Service_Resource -{ - /** - * Relinquish ownership of a website or domain. (webResource.delete) - * - * @param string $id The id of a verified site or domain. - * @param array $optParams Optional parameters. - */ - public function delete($id, $optParams = array()) - { - $params = array('id' => $id); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Get the most current data for a website or domain. (webResource.get) - * - * @param string $id The id of a verified site or domain. - * @param array $optParams Optional parameters. - * @return Google_Service_SiteVerification_SiteVerificationWebResourceResource - */ - public function get($id, $optParams = array()) - { - $params = array('id' => $id); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_SiteVerification_SiteVerificationWebResourceResource"); - } - /** - * Get a verification token for placing on a website or domain. - * (webResource.getToken) - * - * @param Google_Service_SiteVerification_SiteVerificationWebResourceGettokenRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_SiteVerification_SiteVerificationWebResourceGettokenResponse - */ - public function getToken(Google_Service_SiteVerification_SiteVerificationWebResourceGettokenRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('getToken', array($params), "Google_Service_SiteVerification_SiteVerificationWebResourceGettokenResponse"); - } - /** - * Attempt verification of a website or domain. (webResource.insert) - * - * @param string $verificationMethod The method to use for verifying a site or - * domain. - * @param Google_Service_SiteVerification_SiteVerificationWebResourceResource $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_SiteVerification_SiteVerificationWebResourceResource - */ - public function insert($verificationMethod, Google_Service_SiteVerification_SiteVerificationWebResourceResource $postBody, $optParams = array()) - { - $params = array('verificationMethod' => $verificationMethod, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_SiteVerification_SiteVerificationWebResourceResource"); - } - /** - * Get the list of your verified websites and domains. - * (webResource.listWebResource) - * - * @param array $optParams Optional parameters. - * @return Google_Service_SiteVerification_SiteVerificationWebResourceListResponse - */ - public function listWebResource($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_SiteVerification_SiteVerificationWebResourceListResponse"); - } - /** - * Modify the list of owners for your website or domain. This method supports - * patch semantics. (webResource.patch) - * - * @param string $id The id of a verified site or domain. - * @param Google_Service_SiteVerification_SiteVerificationWebResourceResource $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_SiteVerification_SiteVerificationWebResourceResource - */ - public function patch($id, Google_Service_SiteVerification_SiteVerificationWebResourceResource $postBody, $optParams = array()) - { - $params = array('id' => $id, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_SiteVerification_SiteVerificationWebResourceResource"); - } - /** - * Modify the list of owners for your website or domain. (webResource.update) - * - * @param string $id The id of a verified site or domain. - * @param Google_Service_SiteVerification_SiteVerificationWebResourceResource $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_SiteVerification_SiteVerificationWebResourceResource - */ - public function update($id, Google_Service_SiteVerification_SiteVerificationWebResourceResource $postBody, $optParams = array()) - { - $params = array('id' => $id, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_SiteVerification_SiteVerificationWebResourceResource"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SiteVerification/SiteVerificationWebResourceGettokenRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SiteVerification/SiteVerificationWebResourceGettokenRequest.php deleted file mode 100644 index 8e417284..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SiteVerification/SiteVerificationWebResourceGettokenRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -site = $site; - } - /** - * @return Google_Service_SiteVerification_SiteVerificationWebResourceGettokenRequestSite - */ - public function getSite() - { - return $this->site; - } - public function setVerificationMethod($verificationMethod) - { - $this->verificationMethod = $verificationMethod; - } - public function getVerificationMethod() - { - return $this->verificationMethod; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SiteVerification/SiteVerificationWebResourceGettokenRequestSite.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SiteVerification/SiteVerificationWebResourceGettokenRequestSite.php deleted file mode 100644 index 4ab2fc5c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SiteVerification/SiteVerificationWebResourceGettokenRequestSite.php +++ /dev/null @@ -1,39 +0,0 @@ -identifier = $identifier; - } - public function getIdentifier() - { - return $this->identifier; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SiteVerification/SiteVerificationWebResourceGettokenResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SiteVerification/SiteVerificationWebResourceGettokenResponse.php deleted file mode 100644 index 4cf5f5da..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SiteVerification/SiteVerificationWebResourceGettokenResponse.php +++ /dev/null @@ -1,39 +0,0 @@ -method = $method; - } - public function getMethod() - { - return $this->method; - } - public function setToken($token) - { - $this->token = $token; - } - public function getToken() - { - return $this->token; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SiteVerification/SiteVerificationWebResourceListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SiteVerification/SiteVerificationWebResourceListResponse.php deleted file mode 100644 index 888e3f32..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SiteVerification/SiteVerificationWebResourceListResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_SiteVerification_SiteVerificationWebResourceResource - */ - public function getItems() - { - return $this->items; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SiteVerification/SiteVerificationWebResourceResource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SiteVerification/SiteVerificationWebResourceResource.php deleted file mode 100644 index bc8f1014..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SiteVerification/SiteVerificationWebResourceResource.php +++ /dev/null @@ -1,56 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setOwners($owners) - { - $this->owners = $owners; - } - public function getOwners() - { - return $this->owners; - } - /** - * @param Google_Service_SiteVerification_SiteVerificationWebResourceResourceSite - */ - public function setSite(Google_Service_SiteVerification_SiteVerificationWebResourceResourceSite $site) - { - $this->site = $site; - } - /** - * @return Google_Service_SiteVerification_SiteVerificationWebResourceResourceSite - */ - public function getSite() - { - return $this->site; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SiteVerification/SiteVerificationWebResourceResourceSite.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SiteVerification/SiteVerificationWebResourceResourceSite.php deleted file mode 100644 index 40e32a20..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/SiteVerification/SiteVerificationWebResourceResourceSite.php +++ /dev/null @@ -1,39 +0,0 @@ -identifier = $identifier; - } - public function getIdentifier() - { - return $this->identifier; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides.php deleted file mode 100644 index 894b2460..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides.php +++ /dev/null @@ -1,156 +0,0 @@ - - * Reads and writes Google Slides presentations.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Slides extends Google_Service -{ - /** See, edit, create, and delete all of your Google Drive files. */ - const DRIVE = - "https://www.googleapis.com/auth/drive"; - /** View and manage Google Drive files and folders that you have opened or created with this app. */ - const DRIVE_FILE = - "https://www.googleapis.com/auth/drive.file"; - /** See and download all your Google Drive files. */ - const DRIVE_READONLY = - "https://www.googleapis.com/auth/drive.readonly"; - /** View and manage your Google Slides presentations. */ - const PRESENTATIONS = - "https://www.googleapis.com/auth/presentations"; - /** View your Google Slides presentations. */ - const PRESENTATIONS_READONLY = - "https://www.googleapis.com/auth/presentations.readonly"; - /** See, edit, create, and delete your spreadsheets in Google Drive. */ - const SPREADSHEETS = - "https://www.googleapis.com/auth/spreadsheets"; - /** View your Google Spreadsheets. */ - const SPREADSHEETS_READONLY = - "https://www.googleapis.com/auth/spreadsheets.readonly"; - - public $presentations; - public $presentations_pages; - - /** - * Constructs the internal representation of the Slides service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://slides.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'slides'; - - $this->presentations = new Google_Service_Slides_Resource_Presentations( - $this, - $this->serviceName, - 'presentations', - array( - 'methods' => array( - 'batchUpdate' => array( - 'path' => 'v1/presentations/{presentationId}:batchUpdate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'presentationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'create' => array( - 'path' => 'v1/presentations', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'get' => array( - 'path' => 'v1/presentations/{+presentationId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'presentationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->presentations_pages = new Google_Service_Slides_Resource_PresentationsPages( - $this, - $this->serviceName, - 'pages', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/presentations/{presentationId}/pages/{pageObjectId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'presentationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageObjectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getThumbnail' => array( - 'path' => 'v1/presentations/{presentationId}/pages/{pageObjectId}/thumbnail', - 'httpMethod' => 'GET', - 'parameters' => array( - 'presentationId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageObjectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'thumbnailProperties.mimeType' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'thumbnailProperties.thumbnailSize' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/AffineTransform.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/AffineTransform.php deleted file mode 100644 index ab3bdefc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/AffineTransform.php +++ /dev/null @@ -1,84 +0,0 @@ -scaleX = $scaleX; - } - public function getScaleX() - { - return $this->scaleX; - } - public function setScaleY($scaleY) - { - $this->scaleY = $scaleY; - } - public function getScaleY() - { - return $this->scaleY; - } - public function setShearX($shearX) - { - $this->shearX = $shearX; - } - public function getShearX() - { - return $this->shearX; - } - public function setShearY($shearY) - { - $this->shearY = $shearY; - } - public function getShearY() - { - return $this->shearY; - } - public function setTranslateX($translateX) - { - $this->translateX = $translateX; - } - public function getTranslateX() - { - return $this->translateX; - } - public function setTranslateY($translateY) - { - $this->translateY = $translateY; - } - public function getTranslateY() - { - return $this->translateY; - } - public function setUnit($unit) - { - $this->unit = $unit; - } - public function getUnit() - { - return $this->unit; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/AutoText.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/AutoText.php deleted file mode 100644 index 18005f3e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/AutoText.php +++ /dev/null @@ -1,55 +0,0 @@ -content = $content; - } - public function getContent() - { - return $this->content; - } - /** - * @param Google_Service_Slides_TextStyle - */ - public function setStyle(Google_Service_Slides_TextStyle $style) - { - $this->style = $style; - } - /** - * @return Google_Service_Slides_TextStyle - */ - public function getStyle() - { - return $this->style; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/BatchUpdatePresentationRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/BatchUpdatePresentationRequest.php deleted file mode 100644 index f1415ccc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/BatchUpdatePresentationRequest.php +++ /dev/null @@ -1,54 +0,0 @@ -requests = $requests; - } - /** - * @return Google_Service_Slides_Request - */ - public function getRequests() - { - return $this->requests; - } - /** - * @param Google_Service_Slides_WriteControl - */ - public function setWriteControl(Google_Service_Slides_WriteControl $writeControl) - { - $this->writeControl = $writeControl; - } - /** - * @return Google_Service_Slides_WriteControl - */ - public function getWriteControl() - { - return $this->writeControl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/BatchUpdatePresentationResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/BatchUpdatePresentationResponse.php deleted file mode 100644 index 0d6592fc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/BatchUpdatePresentationResponse.php +++ /dev/null @@ -1,63 +0,0 @@ -presentationId = $presentationId; - } - public function getPresentationId() - { - return $this->presentationId; - } - /** - * @param Google_Service_Slides_Response - */ - public function setReplies($replies) - { - $this->replies = $replies; - } - /** - * @return Google_Service_Slides_Response - */ - public function getReplies() - { - return $this->replies; - } - /** - * @param Google_Service_Slides_WriteControl - */ - public function setWriteControl(Google_Service_Slides_WriteControl $writeControl) - { - $this->writeControl = $writeControl; - } - /** - * @return Google_Service_Slides_WriteControl - */ - public function getWriteControl() - { - return $this->writeControl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Bullet.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Bullet.php deleted file mode 100644 index 4747e068..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Bullet.php +++ /dev/null @@ -1,64 +0,0 @@ -bulletStyle = $bulletStyle; - } - /** - * @return Google_Service_Slides_TextStyle - */ - public function getBulletStyle() - { - return $this->bulletStyle; - } - public function setGlyph($glyph) - { - $this->glyph = $glyph; - } - public function getGlyph() - { - return $this->glyph; - } - public function setListId($listId) - { - $this->listId = $listId; - } - public function getListId() - { - return $this->listId; - } - public function setNestingLevel($nestingLevel) - { - $this->nestingLevel = $nestingLevel; - } - public function getNestingLevel() - { - return $this->nestingLevel; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/ColorScheme.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/ColorScheme.php deleted file mode 100644 index b55eeb61..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/ColorScheme.php +++ /dev/null @@ -1,38 +0,0 @@ -colors = $colors; - } - /** - * @return Google_Service_Slides_ThemeColorPair - */ - public function getColors() - { - return $this->colors; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/ColorStop.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/ColorStop.php deleted file mode 100644 index a2b1ddf1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/ColorStop.php +++ /dev/null @@ -1,55 +0,0 @@ -alpha = $alpha; - } - public function getAlpha() - { - return $this->alpha; - } - /** - * @param Google_Service_Slides_OpaqueColor - */ - public function setColor(Google_Service_Slides_OpaqueColor $color) - { - $this->color = $color; - } - /** - * @return Google_Service_Slides_OpaqueColor - */ - public function getColor() - { - return $this->color; - } - public function setPosition($position) - { - $this->position = $position; - } - public function getPosition() - { - return $this->position; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/CreateImageRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/CreateImageRequest.php deleted file mode 100644 index 8d5c2b78..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/CreateImageRequest.php +++ /dev/null @@ -1,55 +0,0 @@ -elementProperties = $elementProperties; - } - /** - * @return Google_Service_Slides_PageElementProperties - */ - public function getElementProperties() - { - return $this->elementProperties; - } - public function setObjectId($objectId) - { - $this->objectId = $objectId; - } - public function getObjectId() - { - return $this->objectId; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/CreateImageResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/CreateImageResponse.php deleted file mode 100644 index b87c5588..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/CreateImageResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -objectId = $objectId; - } - public function getObjectId() - { - return $this->objectId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/CreateLineRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/CreateLineRequest.php deleted file mode 100644 index 69807dcf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/CreateLineRequest.php +++ /dev/null @@ -1,64 +0,0 @@ -category = $category; - } - public function getCategory() - { - return $this->category; - } - /** - * @param Google_Service_Slides_PageElementProperties - */ - public function setElementProperties(Google_Service_Slides_PageElementProperties $elementProperties) - { - $this->elementProperties = $elementProperties; - } - /** - * @return Google_Service_Slides_PageElementProperties - */ - public function getElementProperties() - { - return $this->elementProperties; - } - public function setLineCategory($lineCategory) - { - $this->lineCategory = $lineCategory; - } - public function getLineCategory() - { - return $this->lineCategory; - } - public function setObjectId($objectId) - { - $this->objectId = $objectId; - } - public function getObjectId() - { - return $this->objectId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/CreateLineResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/CreateLineResponse.php deleted file mode 100644 index 19f77e1d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/CreateLineResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -objectId = $objectId; - } - public function getObjectId() - { - return $this->objectId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/CreateParagraphBulletsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/CreateParagraphBulletsRequest.php deleted file mode 100644 index 6396401c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/CreateParagraphBulletsRequest.php +++ /dev/null @@ -1,71 +0,0 @@ -bulletPreset = $bulletPreset; - } - public function getBulletPreset() - { - return $this->bulletPreset; - } - /** - * @param Google_Service_Slides_TableCellLocation - */ - public function setCellLocation(Google_Service_Slides_TableCellLocation $cellLocation) - { - $this->cellLocation = $cellLocation; - } - /** - * @return Google_Service_Slides_TableCellLocation - */ - public function getCellLocation() - { - return $this->cellLocation; - } - public function setObjectId($objectId) - { - $this->objectId = $objectId; - } - public function getObjectId() - { - return $this->objectId; - } - /** - * @param Google_Service_Slides_Range - */ - public function setTextRange(Google_Service_Slides_Range $textRange) - { - $this->textRange = $textRange; - } - /** - * @return Google_Service_Slides_Range - */ - public function getTextRange() - { - return $this->textRange; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/CreateShapeRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/CreateShapeRequest.php deleted file mode 100644 index 4fb131ee..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/CreateShapeRequest.php +++ /dev/null @@ -1,55 +0,0 @@ -elementProperties = $elementProperties; - } - /** - * @return Google_Service_Slides_PageElementProperties - */ - public function getElementProperties() - { - return $this->elementProperties; - } - public function setObjectId($objectId) - { - $this->objectId = $objectId; - } - public function getObjectId() - { - return $this->objectId; - } - public function setShapeType($shapeType) - { - $this->shapeType = $shapeType; - } - public function getShapeType() - { - return $this->shapeType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/CreateShapeResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/CreateShapeResponse.php deleted file mode 100644 index 2cce3d16..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/CreateShapeResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -objectId = $objectId; - } - public function getObjectId() - { - return $this->objectId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/CreateSheetsChartRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/CreateSheetsChartRequest.php deleted file mode 100644 index ccfc1da6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/CreateSheetsChartRequest.php +++ /dev/null @@ -1,73 +0,0 @@ -chartId = $chartId; - } - public function getChartId() - { - return $this->chartId; - } - /** - * @param Google_Service_Slides_PageElementProperties - */ - public function setElementProperties(Google_Service_Slides_PageElementProperties $elementProperties) - { - $this->elementProperties = $elementProperties; - } - /** - * @return Google_Service_Slides_PageElementProperties - */ - public function getElementProperties() - { - return $this->elementProperties; - } - public function setLinkingMode($linkingMode) - { - $this->linkingMode = $linkingMode; - } - public function getLinkingMode() - { - return $this->linkingMode; - } - public function setObjectId($objectId) - { - $this->objectId = $objectId; - } - public function getObjectId() - { - return $this->objectId; - } - public function setSpreadsheetId($spreadsheetId) - { - $this->spreadsheetId = $spreadsheetId; - } - public function getSpreadsheetId() - { - return $this->spreadsheetId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/CreateSheetsChartResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/CreateSheetsChartResponse.php deleted file mode 100644 index b66d6ea0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/CreateSheetsChartResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -objectId = $objectId; - } - public function getObjectId() - { - return $this->objectId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/CreateSlideRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/CreateSlideRequest.php deleted file mode 100644 index be0fd01c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/CreateSlideRequest.php +++ /dev/null @@ -1,72 +0,0 @@ -insertionIndex = $insertionIndex; - } - public function getInsertionIndex() - { - return $this->insertionIndex; - } - public function setObjectId($objectId) - { - $this->objectId = $objectId; - } - public function getObjectId() - { - return $this->objectId; - } - /** - * @param Google_Service_Slides_LayoutPlaceholderIdMapping - */ - public function setPlaceholderIdMappings($placeholderIdMappings) - { - $this->placeholderIdMappings = $placeholderIdMappings; - } - /** - * @return Google_Service_Slides_LayoutPlaceholderIdMapping - */ - public function getPlaceholderIdMappings() - { - return $this->placeholderIdMappings; - } - /** - * @param Google_Service_Slides_LayoutReference - */ - public function setSlideLayoutReference(Google_Service_Slides_LayoutReference $slideLayoutReference) - { - $this->slideLayoutReference = $slideLayoutReference; - } - /** - * @return Google_Service_Slides_LayoutReference - */ - public function getSlideLayoutReference() - { - return $this->slideLayoutReference; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/CreateSlideResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/CreateSlideResponse.php deleted file mode 100644 index b96d5bb0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/CreateSlideResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -objectId = $objectId; - } - public function getObjectId() - { - return $this->objectId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/CreateTableRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/CreateTableRequest.php deleted file mode 100644 index bd5d8584..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/CreateTableRequest.php +++ /dev/null @@ -1,64 +0,0 @@ -columns = $columns; - } - public function getColumns() - { - return $this->columns; - } - /** - * @param Google_Service_Slides_PageElementProperties - */ - public function setElementProperties(Google_Service_Slides_PageElementProperties $elementProperties) - { - $this->elementProperties = $elementProperties; - } - /** - * @return Google_Service_Slides_PageElementProperties - */ - public function getElementProperties() - { - return $this->elementProperties; - } - public function setObjectId($objectId) - { - $this->objectId = $objectId; - } - public function getObjectId() - { - return $this->objectId; - } - public function setRows($rows) - { - $this->rows = $rows; - } - public function getRows() - { - return $this->rows; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/CreateTableResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/CreateTableResponse.php deleted file mode 100644 index 5dd37c50..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/CreateTableResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -objectId = $objectId; - } - public function getObjectId() - { - return $this->objectId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/CreateVideoRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/CreateVideoRequest.php deleted file mode 100644 index 53a23e4f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/CreateVideoRequest.php +++ /dev/null @@ -1,64 +0,0 @@ -elementProperties = $elementProperties; - } - /** - * @return Google_Service_Slides_PageElementProperties - */ - public function getElementProperties() - { - return $this->elementProperties; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setObjectId($objectId) - { - $this->objectId = $objectId; - } - public function getObjectId() - { - return $this->objectId; - } - public function setSource($source) - { - $this->source = $source; - } - public function getSource() - { - return $this->source; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/CreateVideoResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/CreateVideoResponse.php deleted file mode 100644 index 38962a28..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/CreateVideoResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -objectId = $objectId; - } - public function getObjectId() - { - return $this->objectId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/CropProperties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/CropProperties.php deleted file mode 100644 index 8bbf0ae1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/CropProperties.php +++ /dev/null @@ -1,66 +0,0 @@ -angle = $angle; - } - public function getAngle() - { - return $this->angle; - } - public function setBottomOffset($bottomOffset) - { - $this->bottomOffset = $bottomOffset; - } - public function getBottomOffset() - { - return $this->bottomOffset; - } - public function setLeftOffset($leftOffset) - { - $this->leftOffset = $leftOffset; - } - public function getLeftOffset() - { - return $this->leftOffset; - } - public function setRightOffset($rightOffset) - { - $this->rightOffset = $rightOffset; - } - public function getRightOffset() - { - return $this->rightOffset; - } - public function setTopOffset($topOffset) - { - $this->topOffset = $topOffset; - } - public function getTopOffset() - { - return $this->topOffset; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/DeleteObjectRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/DeleteObjectRequest.php deleted file mode 100644 index cd05024f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/DeleteObjectRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -objectId = $objectId; - } - public function getObjectId() - { - return $this->objectId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/DeleteParagraphBulletsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/DeleteParagraphBulletsRequest.php deleted file mode 100644 index 7df37e95..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/DeleteParagraphBulletsRequest.php +++ /dev/null @@ -1,62 +0,0 @@ -cellLocation = $cellLocation; - } - /** - * @return Google_Service_Slides_TableCellLocation - */ - public function getCellLocation() - { - return $this->cellLocation; - } - public function setObjectId($objectId) - { - $this->objectId = $objectId; - } - public function getObjectId() - { - return $this->objectId; - } - /** - * @param Google_Service_Slides_Range - */ - public function setTextRange(Google_Service_Slides_Range $textRange) - { - $this->textRange = $textRange; - } - /** - * @return Google_Service_Slides_Range - */ - public function getTextRange() - { - return $this->textRange; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/DeleteTableColumnRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/DeleteTableColumnRequest.php deleted file mode 100644 index 9c1b5bea..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/DeleteTableColumnRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -cellLocation = $cellLocation; - } - /** - * @return Google_Service_Slides_TableCellLocation - */ - public function getCellLocation() - { - return $this->cellLocation; - } - public function setTableObjectId($tableObjectId) - { - $this->tableObjectId = $tableObjectId; - } - public function getTableObjectId() - { - return $this->tableObjectId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/DeleteTableRowRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/DeleteTableRowRequest.php deleted file mode 100644 index 2b9ab53c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/DeleteTableRowRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -cellLocation = $cellLocation; - } - /** - * @return Google_Service_Slides_TableCellLocation - */ - public function getCellLocation() - { - return $this->cellLocation; - } - public function setTableObjectId($tableObjectId) - { - $this->tableObjectId = $tableObjectId; - } - public function getTableObjectId() - { - return $this->tableObjectId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/DeleteTextRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/DeleteTextRequest.php deleted file mode 100644 index 88f6261f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/DeleteTextRequest.php +++ /dev/null @@ -1,62 +0,0 @@ -cellLocation = $cellLocation; - } - /** - * @return Google_Service_Slides_TableCellLocation - */ - public function getCellLocation() - { - return $this->cellLocation; - } - public function setObjectId($objectId) - { - $this->objectId = $objectId; - } - public function getObjectId() - { - return $this->objectId; - } - /** - * @param Google_Service_Slides_Range - */ - public function setTextRange(Google_Service_Slides_Range $textRange) - { - $this->textRange = $textRange; - } - /** - * @return Google_Service_Slides_Range - */ - public function getTextRange() - { - return $this->textRange; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Dimension.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Dimension.php deleted file mode 100644 index 5dae5a31..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Dimension.php +++ /dev/null @@ -1,39 +0,0 @@ -magnitude = $magnitude; - } - public function getMagnitude() - { - return $this->magnitude; - } - public function setUnit($unit) - { - $this->unit = $unit; - } - public function getUnit() - { - return $this->unit; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/DuplicateObjectRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/DuplicateObjectRequest.php deleted file mode 100644 index 040d97e0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/DuplicateObjectRequest.php +++ /dev/null @@ -1,39 +0,0 @@ -objectId = $objectId; - } - public function getObjectId() - { - return $this->objectId; - } - public function setObjectIds($objectIds) - { - $this->objectIds = $objectIds; - } - public function getObjectIds() - { - return $this->objectIds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/DuplicateObjectResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/DuplicateObjectResponse.php deleted file mode 100644 index 695d2b07..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/DuplicateObjectResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -objectId = $objectId; - } - public function getObjectId() - { - return $this->objectId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Group.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Group.php deleted file mode 100644 index 480112f5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Group.php +++ /dev/null @@ -1,38 +0,0 @@ -children = $children; - } - /** - * @return Google_Service_Slides_PageElement - */ - public function getChildren() - { - return $this->children; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/GroupObjectsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/GroupObjectsRequest.php deleted file mode 100644 index a8f17872..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/GroupObjectsRequest.php +++ /dev/null @@ -1,40 +0,0 @@ -childrenObjectIds = $childrenObjectIds; - } - public function getChildrenObjectIds() - { - return $this->childrenObjectIds; - } - public function setGroupObjectId($groupObjectId) - { - $this->groupObjectId = $groupObjectId; - } - public function getGroupObjectId() - { - return $this->groupObjectId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/GroupObjectsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/GroupObjectsResponse.php deleted file mode 100644 index 513f0863..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/GroupObjectsResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -objectId = $objectId; - } - public function getObjectId() - { - return $this->objectId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Image.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Image.php deleted file mode 100644 index be81fe59..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Image.php +++ /dev/null @@ -1,55 +0,0 @@ -contentUrl = $contentUrl; - } - public function getContentUrl() - { - return $this->contentUrl; - } - /** - * @param Google_Service_Slides_ImageProperties - */ - public function setImageProperties(Google_Service_Slides_ImageProperties $imageProperties) - { - $this->imageProperties = $imageProperties; - } - /** - * @return Google_Service_Slides_ImageProperties - */ - public function getImageProperties() - { - return $this->imageProperties; - } - public function setSourceUrl($sourceUrl) - { - $this->sourceUrl = $sourceUrl; - } - public function getSourceUrl() - { - return $this->sourceUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/ImageProperties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/ImageProperties.php deleted file mode 100644 index 8523d25e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/ImageProperties.php +++ /dev/null @@ -1,128 +0,0 @@ -brightness = $brightness; - } - public function getBrightness() - { - return $this->brightness; - } - public function setContrast($contrast) - { - $this->contrast = $contrast; - } - public function getContrast() - { - return $this->contrast; - } - /** - * @param Google_Service_Slides_CropProperties - */ - public function setCropProperties(Google_Service_Slides_CropProperties $cropProperties) - { - $this->cropProperties = $cropProperties; - } - /** - * @return Google_Service_Slides_CropProperties - */ - public function getCropProperties() - { - return $this->cropProperties; - } - /** - * @param Google_Service_Slides_Link - */ - public function setLink(Google_Service_Slides_Link $link) - { - $this->link = $link; - } - /** - * @return Google_Service_Slides_Link - */ - public function getLink() - { - return $this->link; - } - /** - * @param Google_Service_Slides_Outline - */ - public function setOutline(Google_Service_Slides_Outline $outline) - { - $this->outline = $outline; - } - /** - * @return Google_Service_Slides_Outline - */ - public function getOutline() - { - return $this->outline; - } - /** - * @param Google_Service_Slides_Recolor - */ - public function setRecolor(Google_Service_Slides_Recolor $recolor) - { - $this->recolor = $recolor; - } - /** - * @return Google_Service_Slides_Recolor - */ - public function getRecolor() - { - return $this->recolor; - } - /** - * @param Google_Service_Slides_Shadow - */ - public function setShadow(Google_Service_Slides_Shadow $shadow) - { - $this->shadow = $shadow; - } - /** - * @return Google_Service_Slides_Shadow - */ - public function getShadow() - { - return $this->shadow; - } - public function setTransparency($transparency) - { - $this->transparency = $transparency; - } - public function getTransparency() - { - return $this->transparency; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/InsertTableColumnsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/InsertTableColumnsRequest.php deleted file mode 100644 index 1f8ea5c1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/InsertTableColumnsRequest.php +++ /dev/null @@ -1,64 +0,0 @@ -cellLocation = $cellLocation; - } - /** - * @return Google_Service_Slides_TableCellLocation - */ - public function getCellLocation() - { - return $this->cellLocation; - } - public function setInsertRight($insertRight) - { - $this->insertRight = $insertRight; - } - public function getInsertRight() - { - return $this->insertRight; - } - public function setNumber($number) - { - $this->number = $number; - } - public function getNumber() - { - return $this->number; - } - public function setTableObjectId($tableObjectId) - { - $this->tableObjectId = $tableObjectId; - } - public function getTableObjectId() - { - return $this->tableObjectId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/InsertTableRowsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/InsertTableRowsRequest.php deleted file mode 100644 index 5fc80a46..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/InsertTableRowsRequest.php +++ /dev/null @@ -1,64 +0,0 @@ -cellLocation = $cellLocation; - } - /** - * @return Google_Service_Slides_TableCellLocation - */ - public function getCellLocation() - { - return $this->cellLocation; - } - public function setInsertBelow($insertBelow) - { - $this->insertBelow = $insertBelow; - } - public function getInsertBelow() - { - return $this->insertBelow; - } - public function setNumber($number) - { - $this->number = $number; - } - public function getNumber() - { - return $this->number; - } - public function setTableObjectId($tableObjectId) - { - $this->tableObjectId = $tableObjectId; - } - public function getTableObjectId() - { - return $this->tableObjectId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/InsertTextRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/InsertTextRequest.php deleted file mode 100644 index 2b7dd352..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/InsertTextRequest.php +++ /dev/null @@ -1,64 +0,0 @@ -cellLocation = $cellLocation; - } - /** - * @return Google_Service_Slides_TableCellLocation - */ - public function getCellLocation() - { - return $this->cellLocation; - } - public function setInsertionIndex($insertionIndex) - { - $this->insertionIndex = $insertionIndex; - } - public function getInsertionIndex() - { - return $this->insertionIndex; - } - public function setObjectId($objectId) - { - $this->objectId = $objectId; - } - public function getObjectId() - { - return $this->objectId; - } - public function setText($text) - { - $this->text = $text; - } - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/LayoutPlaceholderIdMapping.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/LayoutPlaceholderIdMapping.php deleted file mode 100644 index f05296bf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/LayoutPlaceholderIdMapping.php +++ /dev/null @@ -1,55 +0,0 @@ -layoutPlaceholder = $layoutPlaceholder; - } - /** - * @return Google_Service_Slides_Placeholder - */ - public function getLayoutPlaceholder() - { - return $this->layoutPlaceholder; - } - public function setLayoutPlaceholderObjectId($layoutPlaceholderObjectId) - { - $this->layoutPlaceholderObjectId = $layoutPlaceholderObjectId; - } - public function getLayoutPlaceholderObjectId() - { - return $this->layoutPlaceholderObjectId; - } - public function setObjectId($objectId) - { - $this->objectId = $objectId; - } - public function getObjectId() - { - return $this->objectId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/LayoutProperties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/LayoutProperties.php deleted file mode 100644 index fb633692..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/LayoutProperties.php +++ /dev/null @@ -1,48 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setMasterObjectId($masterObjectId) - { - $this->masterObjectId = $masterObjectId; - } - public function getMasterObjectId() - { - return $this->masterObjectId; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/LayoutReference.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/LayoutReference.php deleted file mode 100644 index 60b745ce..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/LayoutReference.php +++ /dev/null @@ -1,39 +0,0 @@ -layoutId = $layoutId; - } - public function getLayoutId() - { - return $this->layoutId; - } - public function setPredefinedLayout($predefinedLayout) - { - $this->predefinedLayout = $predefinedLayout; - } - public function getPredefinedLayout() - { - return $this->predefinedLayout; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Line.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Line.php deleted file mode 100644 index 04f5e50b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Line.php +++ /dev/null @@ -1,55 +0,0 @@ -lineCategory = $lineCategory; - } - public function getLineCategory() - { - return $this->lineCategory; - } - /** - * @param Google_Service_Slides_LineProperties - */ - public function setLineProperties(Google_Service_Slides_LineProperties $lineProperties) - { - $this->lineProperties = $lineProperties; - } - /** - * @return Google_Service_Slides_LineProperties - */ - public function getLineProperties() - { - return $this->lineProperties; - } - public function setLineType($lineType) - { - $this->lineType = $lineType; - } - public function getLineType() - { - return $this->lineType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/LineConnection.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/LineConnection.php deleted file mode 100644 index b7c3a540..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/LineConnection.php +++ /dev/null @@ -1,39 +0,0 @@ -connectedObjectId = $connectedObjectId; - } - public function getConnectedObjectId() - { - return $this->connectedObjectId; - } - public function setConnectionSiteIndex($connectionSiteIndex) - { - $this->connectionSiteIndex = $connectionSiteIndex; - } - public function getConnectionSiteIndex() - { - return $this->connectionSiteIndex; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/LineFill.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/LineFill.php deleted file mode 100644 index be5df173..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/LineFill.php +++ /dev/null @@ -1,37 +0,0 @@ -solidFill = $solidFill; - } - /** - * @return Google_Service_Slides_SolidFill - */ - public function getSolidFill() - { - return $this->solidFill; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/LineProperties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/LineProperties.php deleted file mode 100644 index c86f0e95..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/LineProperties.php +++ /dev/null @@ -1,128 +0,0 @@ -dashStyle = $dashStyle; - } - public function getDashStyle() - { - return $this->dashStyle; - } - public function setEndArrow($endArrow) - { - $this->endArrow = $endArrow; - } - public function getEndArrow() - { - return $this->endArrow; - } - /** - * @param Google_Service_Slides_LineConnection - */ - public function setEndConnection(Google_Service_Slides_LineConnection $endConnection) - { - $this->endConnection = $endConnection; - } - /** - * @return Google_Service_Slides_LineConnection - */ - public function getEndConnection() - { - return $this->endConnection; - } - /** - * @param Google_Service_Slides_LineFill - */ - public function setLineFill(Google_Service_Slides_LineFill $lineFill) - { - $this->lineFill = $lineFill; - } - /** - * @return Google_Service_Slides_LineFill - */ - public function getLineFill() - { - return $this->lineFill; - } - /** - * @param Google_Service_Slides_Link - */ - public function setLink(Google_Service_Slides_Link $link) - { - $this->link = $link; - } - /** - * @return Google_Service_Slides_Link - */ - public function getLink() - { - return $this->link; - } - public function setStartArrow($startArrow) - { - $this->startArrow = $startArrow; - } - public function getStartArrow() - { - return $this->startArrow; - } - /** - * @param Google_Service_Slides_LineConnection - */ - public function setStartConnection(Google_Service_Slides_LineConnection $startConnection) - { - $this->startConnection = $startConnection; - } - /** - * @return Google_Service_Slides_LineConnection - */ - public function getStartConnection() - { - return $this->startConnection; - } - /** - * @param Google_Service_Slides_Dimension - */ - public function setWeight(Google_Service_Slides_Dimension $weight) - { - $this->weight = $weight; - } - /** - * @return Google_Service_Slides_Dimension - */ - public function getWeight() - { - return $this->weight; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Link.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Link.php deleted file mode 100644 index d9dff1c9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Link.php +++ /dev/null @@ -1,57 +0,0 @@ -pageObjectId = $pageObjectId; - } - public function getPageObjectId() - { - return $this->pageObjectId; - } - public function setRelativeLink($relativeLink) - { - $this->relativeLink = $relativeLink; - } - public function getRelativeLink() - { - return $this->relativeLink; - } - public function setSlideIndex($slideIndex) - { - $this->slideIndex = $slideIndex; - } - public function getSlideIndex() - { - return $this->slideIndex; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/MasterProperties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/MasterProperties.php deleted file mode 100644 index 4aea30d7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/MasterProperties.php +++ /dev/null @@ -1,30 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/MergeTableCellsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/MergeTableCellsRequest.php deleted file mode 100644 index 87b66f2d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/MergeTableCellsRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -objectId = $objectId; - } - public function getObjectId() - { - return $this->objectId; - } - /** - * @param Google_Service_Slides_TableRange - */ - public function setTableRange(Google_Service_Slides_TableRange $tableRange) - { - $this->tableRange = $tableRange; - } - /** - * @return Google_Service_Slides_TableRange - */ - public function getTableRange() - { - return $this->tableRange; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/NestingLevel.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/NestingLevel.php deleted file mode 100644 index 13fd2c59..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/NestingLevel.php +++ /dev/null @@ -1,37 +0,0 @@ -bulletStyle = $bulletStyle; - } - /** - * @return Google_Service_Slides_TextStyle - */ - public function getBulletStyle() - { - return $this->bulletStyle; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/NotesProperties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/NotesProperties.php deleted file mode 100644 index 3cc5b604..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/NotesProperties.php +++ /dev/null @@ -1,30 +0,0 @@ -speakerNotesObjectId = $speakerNotesObjectId; - } - public function getSpeakerNotesObjectId() - { - return $this->speakerNotesObjectId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/OpaqueColor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/OpaqueColor.php deleted file mode 100644 index 16ae229c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/OpaqueColor.php +++ /dev/null @@ -1,46 +0,0 @@ -rgbColor = $rgbColor; - } - /** - * @return Google_Service_Slides_RgbColor - */ - public function getRgbColor() - { - return $this->rgbColor; - } - public function setThemeColor($themeColor) - { - $this->themeColor = $themeColor; - } - public function getThemeColor() - { - return $this->themeColor; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/OptionalColor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/OptionalColor.php deleted file mode 100644 index 266c1ea6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/OptionalColor.php +++ /dev/null @@ -1,37 +0,0 @@ -opaqueColor = $opaqueColor; - } - /** - * @return Google_Service_Slides_OpaqueColor - */ - public function getOpaqueColor() - { - return $this->opaqueColor; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Outline.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Outline.php deleted file mode 100644 index 366d901b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Outline.php +++ /dev/null @@ -1,71 +0,0 @@ -dashStyle = $dashStyle; - } - public function getDashStyle() - { - return $this->dashStyle; - } - /** - * @param Google_Service_Slides_OutlineFill - */ - public function setOutlineFill(Google_Service_Slides_OutlineFill $outlineFill) - { - $this->outlineFill = $outlineFill; - } - /** - * @return Google_Service_Slides_OutlineFill - */ - public function getOutlineFill() - { - return $this->outlineFill; - } - public function setPropertyState($propertyState) - { - $this->propertyState = $propertyState; - } - public function getPropertyState() - { - return $this->propertyState; - } - /** - * @param Google_Service_Slides_Dimension - */ - public function setWeight(Google_Service_Slides_Dimension $weight) - { - $this->weight = $weight; - } - /** - * @return Google_Service_Slides_Dimension - */ - public function getWeight() - { - return $this->weight; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/OutlineFill.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/OutlineFill.php deleted file mode 100644 index c0630b1f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/OutlineFill.php +++ /dev/null @@ -1,37 +0,0 @@ -solidFill = $solidFill; - } - /** - * @return Google_Service_Slides_SolidFill - */ - public function getSolidFill() - { - return $this->solidFill; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Page.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Page.php deleted file mode 100644 index 353cc488..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Page.php +++ /dev/null @@ -1,145 +0,0 @@ -layoutProperties = $layoutProperties; - } - /** - * @return Google_Service_Slides_LayoutProperties - */ - public function getLayoutProperties() - { - return $this->layoutProperties; - } - /** - * @param Google_Service_Slides_MasterProperties - */ - public function setMasterProperties(Google_Service_Slides_MasterProperties $masterProperties) - { - $this->masterProperties = $masterProperties; - } - /** - * @return Google_Service_Slides_MasterProperties - */ - public function getMasterProperties() - { - return $this->masterProperties; - } - /** - * @param Google_Service_Slides_NotesProperties - */ - public function setNotesProperties(Google_Service_Slides_NotesProperties $notesProperties) - { - $this->notesProperties = $notesProperties; - } - /** - * @return Google_Service_Slides_NotesProperties - */ - public function getNotesProperties() - { - return $this->notesProperties; - } - public function setObjectId($objectId) - { - $this->objectId = $objectId; - } - public function getObjectId() - { - return $this->objectId; - } - /** - * @param Google_Service_Slides_PageElement - */ - public function setPageElements($pageElements) - { - $this->pageElements = $pageElements; - } - /** - * @return Google_Service_Slides_PageElement - */ - public function getPageElements() - { - return $this->pageElements; - } - /** - * @param Google_Service_Slides_PageProperties - */ - public function setPageProperties(Google_Service_Slides_PageProperties $pageProperties) - { - $this->pageProperties = $pageProperties; - } - /** - * @return Google_Service_Slides_PageProperties - */ - public function getPageProperties() - { - return $this->pageProperties; - } - public function setPageType($pageType) - { - $this->pageType = $pageType; - } - public function getPageType() - { - return $this->pageType; - } - public function setRevisionId($revisionId) - { - $this->revisionId = $revisionId; - } - public function getRevisionId() - { - return $this->revisionId; - } - /** - * @param Google_Service_Slides_SlideProperties - */ - public function setSlideProperties(Google_Service_Slides_SlideProperties $slideProperties) - { - $this->slideProperties = $slideProperties; - } - /** - * @return Google_Service_Slides_SlideProperties - */ - public function getSlideProperties() - { - return $this->slideProperties; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/PageBackgroundFill.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/PageBackgroundFill.php deleted file mode 100644 index 9d4e1f80..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/PageBackgroundFill.php +++ /dev/null @@ -1,62 +0,0 @@ -propertyState = $propertyState; - } - public function getPropertyState() - { - return $this->propertyState; - } - /** - * @param Google_Service_Slides_SolidFill - */ - public function setSolidFill(Google_Service_Slides_SolidFill $solidFill) - { - $this->solidFill = $solidFill; - } - /** - * @return Google_Service_Slides_SolidFill - */ - public function getSolidFill() - { - return $this->solidFill; - } - /** - * @param Google_Service_Slides_StretchedPictureFill - */ - public function setStretchedPictureFill(Google_Service_Slides_StretchedPictureFill $stretchedPictureFill) - { - $this->stretchedPictureFill = $stretchedPictureFill; - } - /** - * @return Google_Service_Slides_StretchedPictureFill - */ - public function getStretchedPictureFill() - { - return $this->stretchedPictureFill; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/PageElement.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/PageElement.php deleted file mode 100644 index 8c0b9c24..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/PageElement.php +++ /dev/null @@ -1,208 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - /** - * @param Google_Service_Slides_Group - */ - public function setElementGroup(Google_Service_Slides_Group $elementGroup) - { - $this->elementGroup = $elementGroup; - } - /** - * @return Google_Service_Slides_Group - */ - public function getElementGroup() - { - return $this->elementGroup; - } - /** - * @param Google_Service_Slides_Image - */ - public function setImage(Google_Service_Slides_Image $image) - { - $this->image = $image; - } - /** - * @return Google_Service_Slides_Image - */ - public function getImage() - { - return $this->image; - } - /** - * @param Google_Service_Slides_Line - */ - public function setLine(Google_Service_Slides_Line $line) - { - $this->line = $line; - } - /** - * @return Google_Service_Slides_Line - */ - public function getLine() - { - return $this->line; - } - public function setObjectId($objectId) - { - $this->objectId = $objectId; - } - public function getObjectId() - { - return $this->objectId; - } - /** - * @param Google_Service_Slides_Shape - */ - public function setShape(Google_Service_Slides_Shape $shape) - { - $this->shape = $shape; - } - /** - * @return Google_Service_Slides_Shape - */ - public function getShape() - { - return $this->shape; - } - /** - * @param Google_Service_Slides_SheetsChart - */ - public function setSheetsChart(Google_Service_Slides_SheetsChart $sheetsChart) - { - $this->sheetsChart = $sheetsChart; - } - /** - * @return Google_Service_Slides_SheetsChart - */ - public function getSheetsChart() - { - return $this->sheetsChart; - } - /** - * @param Google_Service_Slides_Size - */ - public function setSize(Google_Service_Slides_Size $size) - { - $this->size = $size; - } - /** - * @return Google_Service_Slides_Size - */ - public function getSize() - { - return $this->size; - } - /** - * @param Google_Service_Slides_Table - */ - public function setTable(Google_Service_Slides_Table $table) - { - $this->table = $table; - } - /** - * @return Google_Service_Slides_Table - */ - public function getTable() - { - return $this->table; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - /** - * @param Google_Service_Slides_AffineTransform - */ - public function setTransform(Google_Service_Slides_AffineTransform $transform) - { - $this->transform = $transform; - } - /** - * @return Google_Service_Slides_AffineTransform - */ - public function getTransform() - { - return $this->transform; - } - /** - * @param Google_Service_Slides_Video - */ - public function setVideo(Google_Service_Slides_Video $video) - { - $this->video = $video; - } - /** - * @return Google_Service_Slides_Video - */ - public function getVideo() - { - return $this->video; - } - /** - * @param Google_Service_Slides_WordArt - */ - public function setWordArt(Google_Service_Slides_WordArt $wordArt) - { - $this->wordArt = $wordArt; - } - /** - * @return Google_Service_Slides_WordArt - */ - public function getWordArt() - { - return $this->wordArt; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/PageElementProperties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/PageElementProperties.php deleted file mode 100644 index 19e8b018..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/PageElementProperties.php +++ /dev/null @@ -1,62 +0,0 @@ -pageObjectId = $pageObjectId; - } - public function getPageObjectId() - { - return $this->pageObjectId; - } - /** - * @param Google_Service_Slides_Size - */ - public function setSize(Google_Service_Slides_Size $size) - { - $this->size = $size; - } - /** - * @return Google_Service_Slides_Size - */ - public function getSize() - { - return $this->size; - } - /** - * @param Google_Service_Slides_AffineTransform - */ - public function setTransform(Google_Service_Slides_AffineTransform $transform) - { - $this->transform = $transform; - } - /** - * @return Google_Service_Slides_AffineTransform - */ - public function getTransform() - { - return $this->transform; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/PageProperties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/PageProperties.php deleted file mode 100644 index ad5591ac..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/PageProperties.php +++ /dev/null @@ -1,53 +0,0 @@ -colorScheme = $colorScheme; - } - /** - * @return Google_Service_Slides_ColorScheme - */ - public function getColorScheme() - { - return $this->colorScheme; - } - /** - * @param Google_Service_Slides_PageBackgroundFill - */ - public function setPageBackgroundFill(Google_Service_Slides_PageBackgroundFill $pageBackgroundFill) - { - $this->pageBackgroundFill = $pageBackgroundFill; - } - /** - * @return Google_Service_Slides_PageBackgroundFill - */ - public function getPageBackgroundFill() - { - return $this->pageBackgroundFill; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/ParagraphMarker.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/ParagraphMarker.php deleted file mode 100644 index 8201cc2b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/ParagraphMarker.php +++ /dev/null @@ -1,53 +0,0 @@ -bullet = $bullet; - } - /** - * @return Google_Service_Slides_Bullet - */ - public function getBullet() - { - return $this->bullet; - } - /** - * @param Google_Service_Slides_ParagraphStyle - */ - public function setStyle(Google_Service_Slides_ParagraphStyle $style) - { - $this->style = $style; - } - /** - * @return Google_Service_Slides_ParagraphStyle - */ - public function getStyle() - { - return $this->style; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/ParagraphStyle.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/ParagraphStyle.php deleted file mode 100644 index 107e2afb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/ParagraphStyle.php +++ /dev/null @@ -1,137 +0,0 @@ -alignment = $alignment; - } - public function getAlignment() - { - return $this->alignment; - } - public function setDirection($direction) - { - $this->direction = $direction; - } - public function getDirection() - { - return $this->direction; - } - /** - * @param Google_Service_Slides_Dimension - */ - public function setIndentEnd(Google_Service_Slides_Dimension $indentEnd) - { - $this->indentEnd = $indentEnd; - } - /** - * @return Google_Service_Slides_Dimension - */ - public function getIndentEnd() - { - return $this->indentEnd; - } - /** - * @param Google_Service_Slides_Dimension - */ - public function setIndentFirstLine(Google_Service_Slides_Dimension $indentFirstLine) - { - $this->indentFirstLine = $indentFirstLine; - } - /** - * @return Google_Service_Slides_Dimension - */ - public function getIndentFirstLine() - { - return $this->indentFirstLine; - } - /** - * @param Google_Service_Slides_Dimension - */ - public function setIndentStart(Google_Service_Slides_Dimension $indentStart) - { - $this->indentStart = $indentStart; - } - /** - * @return Google_Service_Slides_Dimension - */ - public function getIndentStart() - { - return $this->indentStart; - } - public function setLineSpacing($lineSpacing) - { - $this->lineSpacing = $lineSpacing; - } - public function getLineSpacing() - { - return $this->lineSpacing; - } - /** - * @param Google_Service_Slides_Dimension - */ - public function setSpaceAbove(Google_Service_Slides_Dimension $spaceAbove) - { - $this->spaceAbove = $spaceAbove; - } - /** - * @return Google_Service_Slides_Dimension - */ - public function getSpaceAbove() - { - return $this->spaceAbove; - } - /** - * @param Google_Service_Slides_Dimension - */ - public function setSpaceBelow(Google_Service_Slides_Dimension $spaceBelow) - { - $this->spaceBelow = $spaceBelow; - } - /** - * @return Google_Service_Slides_Dimension - */ - public function getSpaceBelow() - { - return $this->spaceBelow; - } - public function setSpacingMode($spacingMode) - { - $this->spacingMode = $spacingMode; - } - public function getSpacingMode() - { - return $this->spacingMode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Placeholder.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Placeholder.php deleted file mode 100644 index 7633ef48..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Placeholder.php +++ /dev/null @@ -1,48 +0,0 @@ -index = $index; - } - public function getIndex() - { - return $this->index; - } - public function setParentObjectId($parentObjectId) - { - $this->parentObjectId = $parentObjectId; - } - public function getParentObjectId() - { - return $this->parentObjectId; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Presentation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Presentation.php deleted file mode 100644 index 4eb8b383..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Presentation.php +++ /dev/null @@ -1,138 +0,0 @@ -layouts = $layouts; - } - /** - * @return Google_Service_Slides_Page - */ - public function getLayouts() - { - return $this->layouts; - } - public function setLocale($locale) - { - $this->locale = $locale; - } - public function getLocale() - { - return $this->locale; - } - /** - * @param Google_Service_Slides_Page - */ - public function setMasters($masters) - { - $this->masters = $masters; - } - /** - * @return Google_Service_Slides_Page - */ - public function getMasters() - { - return $this->masters; - } - /** - * @param Google_Service_Slides_Page - */ - public function setNotesMaster(Google_Service_Slides_Page $notesMaster) - { - $this->notesMaster = $notesMaster; - } - /** - * @return Google_Service_Slides_Page - */ - public function getNotesMaster() - { - return $this->notesMaster; - } - /** - * @param Google_Service_Slides_Size - */ - public function setPageSize(Google_Service_Slides_Size $pageSize) - { - $this->pageSize = $pageSize; - } - /** - * @return Google_Service_Slides_Size - */ - public function getPageSize() - { - return $this->pageSize; - } - public function setPresentationId($presentationId) - { - $this->presentationId = $presentationId; - } - public function getPresentationId() - { - return $this->presentationId; - } - public function setRevisionId($revisionId) - { - $this->revisionId = $revisionId; - } - public function getRevisionId() - { - return $this->revisionId; - } - /** - * @param Google_Service_Slides_Page - */ - public function setSlides($slides) - { - $this->slides = $slides; - } - /** - * @return Google_Service_Slides_Page - */ - public function getSlides() - { - return $this->slides; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Range.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Range.php deleted file mode 100644 index dfb8448f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Range.php +++ /dev/null @@ -1,48 +0,0 @@ -endIndex = $endIndex; - } - public function getEndIndex() - { - return $this->endIndex; - } - public function setStartIndex($startIndex) - { - $this->startIndex = $startIndex; - } - public function getStartIndex() - { - return $this->startIndex; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Recolor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Recolor.php deleted file mode 100644 index 39164c89..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Recolor.php +++ /dev/null @@ -1,47 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Slides_ColorStop - */ - public function setRecolorStops($recolorStops) - { - $this->recolorStops = $recolorStops; - } - /** - * @return Google_Service_Slides_ColorStop - */ - public function getRecolorStops() - { - return $this->recolorStops; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/RefreshSheetsChartRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/RefreshSheetsChartRequest.php deleted file mode 100644 index a1fd844d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/RefreshSheetsChartRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -objectId = $objectId; - } - public function getObjectId() - { - return $this->objectId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/ReplaceAllShapesWithImageRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/ReplaceAllShapesWithImageRequest.php deleted file mode 100644 index 235f8184..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/ReplaceAllShapesWithImageRequest.php +++ /dev/null @@ -1,74 +0,0 @@ -containsText = $containsText; - } - /** - * @return Google_Service_Slides_SubstringMatchCriteria - */ - public function getContainsText() - { - return $this->containsText; - } - public function setImageReplaceMethod($imageReplaceMethod) - { - $this->imageReplaceMethod = $imageReplaceMethod; - } - public function getImageReplaceMethod() - { - return $this->imageReplaceMethod; - } - public function setImageUrl($imageUrl) - { - $this->imageUrl = $imageUrl; - } - public function getImageUrl() - { - return $this->imageUrl; - } - public function setPageObjectIds($pageObjectIds) - { - $this->pageObjectIds = $pageObjectIds; - } - public function getPageObjectIds() - { - return $this->pageObjectIds; - } - public function setReplaceMethod($replaceMethod) - { - $this->replaceMethod = $replaceMethod; - } - public function getReplaceMethod() - { - return $this->replaceMethod; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/ReplaceAllShapesWithImageResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/ReplaceAllShapesWithImageResponse.php deleted file mode 100644 index d964c64a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/ReplaceAllShapesWithImageResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -occurrencesChanged = $occurrencesChanged; - } - public function getOccurrencesChanged() - { - return $this->occurrencesChanged; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/ReplaceAllShapesWithSheetsChartRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/ReplaceAllShapesWithSheetsChartRequest.php deleted file mode 100644 index 31faed62..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/ReplaceAllShapesWithSheetsChartRequest.php +++ /dev/null @@ -1,74 +0,0 @@ -chartId = $chartId; - } - public function getChartId() - { - return $this->chartId; - } - /** - * @param Google_Service_Slides_SubstringMatchCriteria - */ - public function setContainsText(Google_Service_Slides_SubstringMatchCriteria $containsText) - { - $this->containsText = $containsText; - } - /** - * @return Google_Service_Slides_SubstringMatchCriteria - */ - public function getContainsText() - { - return $this->containsText; - } - public function setLinkingMode($linkingMode) - { - $this->linkingMode = $linkingMode; - } - public function getLinkingMode() - { - return $this->linkingMode; - } - public function setPageObjectIds($pageObjectIds) - { - $this->pageObjectIds = $pageObjectIds; - } - public function getPageObjectIds() - { - return $this->pageObjectIds; - } - public function setSpreadsheetId($spreadsheetId) - { - $this->spreadsheetId = $spreadsheetId; - } - public function getSpreadsheetId() - { - return $this->spreadsheetId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/ReplaceAllShapesWithSheetsChartResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/ReplaceAllShapesWithSheetsChartResponse.php deleted file mode 100644 index 787ee18a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/ReplaceAllShapesWithSheetsChartResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -occurrencesChanged = $occurrencesChanged; - } - public function getOccurrencesChanged() - { - return $this->occurrencesChanged; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/ReplaceAllTextRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/ReplaceAllTextRequest.php deleted file mode 100644 index 9bca19d3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/ReplaceAllTextRequest.php +++ /dev/null @@ -1,56 +0,0 @@ -containsText = $containsText; - } - /** - * @return Google_Service_Slides_SubstringMatchCriteria - */ - public function getContainsText() - { - return $this->containsText; - } - public function setPageObjectIds($pageObjectIds) - { - $this->pageObjectIds = $pageObjectIds; - } - public function getPageObjectIds() - { - return $this->pageObjectIds; - } - public function setReplaceText($replaceText) - { - $this->replaceText = $replaceText; - } - public function getReplaceText() - { - return $this->replaceText; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/ReplaceAllTextResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/ReplaceAllTextResponse.php deleted file mode 100644 index 0421ecbc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/ReplaceAllTextResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -occurrencesChanged = $occurrencesChanged; - } - public function getOccurrencesChanged() - { - return $this->occurrencesChanged; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/ReplaceImageRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/ReplaceImageRequest.php deleted file mode 100644 index 96fa5198..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/ReplaceImageRequest.php +++ /dev/null @@ -1,48 +0,0 @@ -imageObjectId = $imageObjectId; - } - public function getImageObjectId() - { - return $this->imageObjectId; - } - public function setImageReplaceMethod($imageReplaceMethod) - { - $this->imageReplaceMethod = $imageReplaceMethod; - } - public function getImageReplaceMethod() - { - return $this->imageReplaceMethod; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Request.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Request.php deleted file mode 100644 index 573a99e9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Request.php +++ /dev/null @@ -1,709 +0,0 @@ -createImage = $createImage; - } - /** - * @return Google_Service_Slides_CreateImageRequest - */ - public function getCreateImage() - { - return $this->createImage; - } - /** - * @param Google_Service_Slides_CreateLineRequest - */ - public function setCreateLine(Google_Service_Slides_CreateLineRequest $createLine) - { - $this->createLine = $createLine; - } - /** - * @return Google_Service_Slides_CreateLineRequest - */ - public function getCreateLine() - { - return $this->createLine; - } - /** - * @param Google_Service_Slides_CreateParagraphBulletsRequest - */ - public function setCreateParagraphBullets(Google_Service_Slides_CreateParagraphBulletsRequest $createParagraphBullets) - { - $this->createParagraphBullets = $createParagraphBullets; - } - /** - * @return Google_Service_Slides_CreateParagraphBulletsRequest - */ - public function getCreateParagraphBullets() - { - return $this->createParagraphBullets; - } - /** - * @param Google_Service_Slides_CreateShapeRequest - */ - public function setCreateShape(Google_Service_Slides_CreateShapeRequest $createShape) - { - $this->createShape = $createShape; - } - /** - * @return Google_Service_Slides_CreateShapeRequest - */ - public function getCreateShape() - { - return $this->createShape; - } - /** - * @param Google_Service_Slides_CreateSheetsChartRequest - */ - public function setCreateSheetsChart(Google_Service_Slides_CreateSheetsChartRequest $createSheetsChart) - { - $this->createSheetsChart = $createSheetsChart; - } - /** - * @return Google_Service_Slides_CreateSheetsChartRequest - */ - public function getCreateSheetsChart() - { - return $this->createSheetsChart; - } - /** - * @param Google_Service_Slides_CreateSlideRequest - */ - public function setCreateSlide(Google_Service_Slides_CreateSlideRequest $createSlide) - { - $this->createSlide = $createSlide; - } - /** - * @return Google_Service_Slides_CreateSlideRequest - */ - public function getCreateSlide() - { - return $this->createSlide; - } - /** - * @param Google_Service_Slides_CreateTableRequest - */ - public function setCreateTable(Google_Service_Slides_CreateTableRequest $createTable) - { - $this->createTable = $createTable; - } - /** - * @return Google_Service_Slides_CreateTableRequest - */ - public function getCreateTable() - { - return $this->createTable; - } - /** - * @param Google_Service_Slides_CreateVideoRequest - */ - public function setCreateVideo(Google_Service_Slides_CreateVideoRequest $createVideo) - { - $this->createVideo = $createVideo; - } - /** - * @return Google_Service_Slides_CreateVideoRequest - */ - public function getCreateVideo() - { - return $this->createVideo; - } - /** - * @param Google_Service_Slides_DeleteObjectRequest - */ - public function setDeleteObject(Google_Service_Slides_DeleteObjectRequest $deleteObject) - { - $this->deleteObject = $deleteObject; - } - /** - * @return Google_Service_Slides_DeleteObjectRequest - */ - public function getDeleteObject() - { - return $this->deleteObject; - } - /** - * @param Google_Service_Slides_DeleteParagraphBulletsRequest - */ - public function setDeleteParagraphBullets(Google_Service_Slides_DeleteParagraphBulletsRequest $deleteParagraphBullets) - { - $this->deleteParagraphBullets = $deleteParagraphBullets; - } - /** - * @return Google_Service_Slides_DeleteParagraphBulletsRequest - */ - public function getDeleteParagraphBullets() - { - return $this->deleteParagraphBullets; - } - /** - * @param Google_Service_Slides_DeleteTableColumnRequest - */ - public function setDeleteTableColumn(Google_Service_Slides_DeleteTableColumnRequest $deleteTableColumn) - { - $this->deleteTableColumn = $deleteTableColumn; - } - /** - * @return Google_Service_Slides_DeleteTableColumnRequest - */ - public function getDeleteTableColumn() - { - return $this->deleteTableColumn; - } - /** - * @param Google_Service_Slides_DeleteTableRowRequest - */ - public function setDeleteTableRow(Google_Service_Slides_DeleteTableRowRequest $deleteTableRow) - { - $this->deleteTableRow = $deleteTableRow; - } - /** - * @return Google_Service_Slides_DeleteTableRowRequest - */ - public function getDeleteTableRow() - { - return $this->deleteTableRow; - } - /** - * @param Google_Service_Slides_DeleteTextRequest - */ - public function setDeleteText(Google_Service_Slides_DeleteTextRequest $deleteText) - { - $this->deleteText = $deleteText; - } - /** - * @return Google_Service_Slides_DeleteTextRequest - */ - public function getDeleteText() - { - return $this->deleteText; - } - /** - * @param Google_Service_Slides_DuplicateObjectRequest - */ - public function setDuplicateObject(Google_Service_Slides_DuplicateObjectRequest $duplicateObject) - { - $this->duplicateObject = $duplicateObject; - } - /** - * @return Google_Service_Slides_DuplicateObjectRequest - */ - public function getDuplicateObject() - { - return $this->duplicateObject; - } - /** - * @param Google_Service_Slides_GroupObjectsRequest - */ - public function setGroupObjects(Google_Service_Slides_GroupObjectsRequest $groupObjects) - { - $this->groupObjects = $groupObjects; - } - /** - * @return Google_Service_Slides_GroupObjectsRequest - */ - public function getGroupObjects() - { - return $this->groupObjects; - } - /** - * @param Google_Service_Slides_InsertTableColumnsRequest - */ - public function setInsertTableColumns(Google_Service_Slides_InsertTableColumnsRequest $insertTableColumns) - { - $this->insertTableColumns = $insertTableColumns; - } - /** - * @return Google_Service_Slides_InsertTableColumnsRequest - */ - public function getInsertTableColumns() - { - return $this->insertTableColumns; - } - /** - * @param Google_Service_Slides_InsertTableRowsRequest - */ - public function setInsertTableRows(Google_Service_Slides_InsertTableRowsRequest $insertTableRows) - { - $this->insertTableRows = $insertTableRows; - } - /** - * @return Google_Service_Slides_InsertTableRowsRequest - */ - public function getInsertTableRows() - { - return $this->insertTableRows; - } - /** - * @param Google_Service_Slides_InsertTextRequest - */ - public function setInsertText(Google_Service_Slides_InsertTextRequest $insertText) - { - $this->insertText = $insertText; - } - /** - * @return Google_Service_Slides_InsertTextRequest - */ - public function getInsertText() - { - return $this->insertText; - } - /** - * @param Google_Service_Slides_MergeTableCellsRequest - */ - public function setMergeTableCells(Google_Service_Slides_MergeTableCellsRequest $mergeTableCells) - { - $this->mergeTableCells = $mergeTableCells; - } - /** - * @return Google_Service_Slides_MergeTableCellsRequest - */ - public function getMergeTableCells() - { - return $this->mergeTableCells; - } - /** - * @param Google_Service_Slides_RefreshSheetsChartRequest - */ - public function setRefreshSheetsChart(Google_Service_Slides_RefreshSheetsChartRequest $refreshSheetsChart) - { - $this->refreshSheetsChart = $refreshSheetsChart; - } - /** - * @return Google_Service_Slides_RefreshSheetsChartRequest - */ - public function getRefreshSheetsChart() - { - return $this->refreshSheetsChart; - } - /** - * @param Google_Service_Slides_ReplaceAllShapesWithImageRequest - */ - public function setReplaceAllShapesWithImage(Google_Service_Slides_ReplaceAllShapesWithImageRequest $replaceAllShapesWithImage) - { - $this->replaceAllShapesWithImage = $replaceAllShapesWithImage; - } - /** - * @return Google_Service_Slides_ReplaceAllShapesWithImageRequest - */ - public function getReplaceAllShapesWithImage() - { - return $this->replaceAllShapesWithImage; - } - /** - * @param Google_Service_Slides_ReplaceAllShapesWithSheetsChartRequest - */ - public function setReplaceAllShapesWithSheetsChart(Google_Service_Slides_ReplaceAllShapesWithSheetsChartRequest $replaceAllShapesWithSheetsChart) - { - $this->replaceAllShapesWithSheetsChart = $replaceAllShapesWithSheetsChart; - } - /** - * @return Google_Service_Slides_ReplaceAllShapesWithSheetsChartRequest - */ - public function getReplaceAllShapesWithSheetsChart() - { - return $this->replaceAllShapesWithSheetsChart; - } - /** - * @param Google_Service_Slides_ReplaceAllTextRequest - */ - public function setReplaceAllText(Google_Service_Slides_ReplaceAllTextRequest $replaceAllText) - { - $this->replaceAllText = $replaceAllText; - } - /** - * @return Google_Service_Slides_ReplaceAllTextRequest - */ - public function getReplaceAllText() - { - return $this->replaceAllText; - } - /** - * @param Google_Service_Slides_ReplaceImageRequest - */ - public function setReplaceImage(Google_Service_Slides_ReplaceImageRequest $replaceImage) - { - $this->replaceImage = $replaceImage; - } - /** - * @return Google_Service_Slides_ReplaceImageRequest - */ - public function getReplaceImage() - { - return $this->replaceImage; - } - /** - * @param Google_Service_Slides_RerouteLineRequest - */ - public function setRerouteLine(Google_Service_Slides_RerouteLineRequest $rerouteLine) - { - $this->rerouteLine = $rerouteLine; - } - /** - * @return Google_Service_Slides_RerouteLineRequest - */ - public function getRerouteLine() - { - return $this->rerouteLine; - } - /** - * @param Google_Service_Slides_UngroupObjectsRequest - */ - public function setUngroupObjects(Google_Service_Slides_UngroupObjectsRequest $ungroupObjects) - { - $this->ungroupObjects = $ungroupObjects; - } - /** - * @return Google_Service_Slides_UngroupObjectsRequest - */ - public function getUngroupObjects() - { - return $this->ungroupObjects; - } - /** - * @param Google_Service_Slides_UnmergeTableCellsRequest - */ - public function setUnmergeTableCells(Google_Service_Slides_UnmergeTableCellsRequest $unmergeTableCells) - { - $this->unmergeTableCells = $unmergeTableCells; - } - /** - * @return Google_Service_Slides_UnmergeTableCellsRequest - */ - public function getUnmergeTableCells() - { - return $this->unmergeTableCells; - } - /** - * @param Google_Service_Slides_UpdateImagePropertiesRequest - */ - public function setUpdateImageProperties(Google_Service_Slides_UpdateImagePropertiesRequest $updateImageProperties) - { - $this->updateImageProperties = $updateImageProperties; - } - /** - * @return Google_Service_Slides_UpdateImagePropertiesRequest - */ - public function getUpdateImageProperties() - { - return $this->updateImageProperties; - } - /** - * @param Google_Service_Slides_UpdateLineCategoryRequest - */ - public function setUpdateLineCategory(Google_Service_Slides_UpdateLineCategoryRequest $updateLineCategory) - { - $this->updateLineCategory = $updateLineCategory; - } - /** - * @return Google_Service_Slides_UpdateLineCategoryRequest - */ - public function getUpdateLineCategory() - { - return $this->updateLineCategory; - } - /** - * @param Google_Service_Slides_UpdateLinePropertiesRequest - */ - public function setUpdateLineProperties(Google_Service_Slides_UpdateLinePropertiesRequest $updateLineProperties) - { - $this->updateLineProperties = $updateLineProperties; - } - /** - * @return Google_Service_Slides_UpdateLinePropertiesRequest - */ - public function getUpdateLineProperties() - { - return $this->updateLineProperties; - } - /** - * @param Google_Service_Slides_UpdatePageElementAltTextRequest - */ - public function setUpdatePageElementAltText(Google_Service_Slides_UpdatePageElementAltTextRequest $updatePageElementAltText) - { - $this->updatePageElementAltText = $updatePageElementAltText; - } - /** - * @return Google_Service_Slides_UpdatePageElementAltTextRequest - */ - public function getUpdatePageElementAltText() - { - return $this->updatePageElementAltText; - } - /** - * @param Google_Service_Slides_UpdatePageElementTransformRequest - */ - public function setUpdatePageElementTransform(Google_Service_Slides_UpdatePageElementTransformRequest $updatePageElementTransform) - { - $this->updatePageElementTransform = $updatePageElementTransform; - } - /** - * @return Google_Service_Slides_UpdatePageElementTransformRequest - */ - public function getUpdatePageElementTransform() - { - return $this->updatePageElementTransform; - } - /** - * @param Google_Service_Slides_UpdatePageElementsZOrderRequest - */ - public function setUpdatePageElementsZOrder(Google_Service_Slides_UpdatePageElementsZOrderRequest $updatePageElementsZOrder) - { - $this->updatePageElementsZOrder = $updatePageElementsZOrder; - } - /** - * @return Google_Service_Slides_UpdatePageElementsZOrderRequest - */ - public function getUpdatePageElementsZOrder() - { - return $this->updatePageElementsZOrder; - } - /** - * @param Google_Service_Slides_UpdatePagePropertiesRequest - */ - public function setUpdatePageProperties(Google_Service_Slides_UpdatePagePropertiesRequest $updatePageProperties) - { - $this->updatePageProperties = $updatePageProperties; - } - /** - * @return Google_Service_Slides_UpdatePagePropertiesRequest - */ - public function getUpdatePageProperties() - { - return $this->updatePageProperties; - } - /** - * @param Google_Service_Slides_UpdateParagraphStyleRequest - */ - public function setUpdateParagraphStyle(Google_Service_Slides_UpdateParagraphStyleRequest $updateParagraphStyle) - { - $this->updateParagraphStyle = $updateParagraphStyle; - } - /** - * @return Google_Service_Slides_UpdateParagraphStyleRequest - */ - public function getUpdateParagraphStyle() - { - return $this->updateParagraphStyle; - } - /** - * @param Google_Service_Slides_UpdateShapePropertiesRequest - */ - public function setUpdateShapeProperties(Google_Service_Slides_UpdateShapePropertiesRequest $updateShapeProperties) - { - $this->updateShapeProperties = $updateShapeProperties; - } - /** - * @return Google_Service_Slides_UpdateShapePropertiesRequest - */ - public function getUpdateShapeProperties() - { - return $this->updateShapeProperties; - } - /** - * @param Google_Service_Slides_UpdateSlidesPositionRequest - */ - public function setUpdateSlidesPosition(Google_Service_Slides_UpdateSlidesPositionRequest $updateSlidesPosition) - { - $this->updateSlidesPosition = $updateSlidesPosition; - } - /** - * @return Google_Service_Slides_UpdateSlidesPositionRequest - */ - public function getUpdateSlidesPosition() - { - return $this->updateSlidesPosition; - } - /** - * @param Google_Service_Slides_UpdateTableBorderPropertiesRequest - */ - public function setUpdateTableBorderProperties(Google_Service_Slides_UpdateTableBorderPropertiesRequest $updateTableBorderProperties) - { - $this->updateTableBorderProperties = $updateTableBorderProperties; - } - /** - * @return Google_Service_Slides_UpdateTableBorderPropertiesRequest - */ - public function getUpdateTableBorderProperties() - { - return $this->updateTableBorderProperties; - } - /** - * @param Google_Service_Slides_UpdateTableCellPropertiesRequest - */ - public function setUpdateTableCellProperties(Google_Service_Slides_UpdateTableCellPropertiesRequest $updateTableCellProperties) - { - $this->updateTableCellProperties = $updateTableCellProperties; - } - /** - * @return Google_Service_Slides_UpdateTableCellPropertiesRequest - */ - public function getUpdateTableCellProperties() - { - return $this->updateTableCellProperties; - } - /** - * @param Google_Service_Slides_UpdateTableColumnPropertiesRequest - */ - public function setUpdateTableColumnProperties(Google_Service_Slides_UpdateTableColumnPropertiesRequest $updateTableColumnProperties) - { - $this->updateTableColumnProperties = $updateTableColumnProperties; - } - /** - * @return Google_Service_Slides_UpdateTableColumnPropertiesRequest - */ - public function getUpdateTableColumnProperties() - { - return $this->updateTableColumnProperties; - } - /** - * @param Google_Service_Slides_UpdateTableRowPropertiesRequest - */ - public function setUpdateTableRowProperties(Google_Service_Slides_UpdateTableRowPropertiesRequest $updateTableRowProperties) - { - $this->updateTableRowProperties = $updateTableRowProperties; - } - /** - * @return Google_Service_Slides_UpdateTableRowPropertiesRequest - */ - public function getUpdateTableRowProperties() - { - return $this->updateTableRowProperties; - } - /** - * @param Google_Service_Slides_UpdateTextStyleRequest - */ - public function setUpdateTextStyle(Google_Service_Slides_UpdateTextStyleRequest $updateTextStyle) - { - $this->updateTextStyle = $updateTextStyle; - } - /** - * @return Google_Service_Slides_UpdateTextStyleRequest - */ - public function getUpdateTextStyle() - { - return $this->updateTextStyle; - } - /** - * @param Google_Service_Slides_UpdateVideoPropertiesRequest - */ - public function setUpdateVideoProperties(Google_Service_Slides_UpdateVideoPropertiesRequest $updateVideoProperties) - { - $this->updateVideoProperties = $updateVideoProperties; - } - /** - * @return Google_Service_Slides_UpdateVideoPropertiesRequest - */ - public function getUpdateVideoProperties() - { - return $this->updateVideoProperties; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/RerouteLineRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/RerouteLineRequest.php deleted file mode 100644 index 9095c328..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/RerouteLineRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -objectId = $objectId; - } - public function getObjectId() - { - return $this->objectId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Resource/Presentations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Resource/Presentations.php deleted file mode 100644 index 47c8f92f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Resource/Presentations.php +++ /dev/null @@ -1,89 +0,0 @@ - - * $slidesService = new Google_Service_Slides(...); - * $presentations = $slidesService->presentations; - * - */ -class Google_Service_Slides_Resource_Presentations extends Google_Service_Resource -{ - /** - * Applies one or more updates to the presentation. - * - * Each request is validated before being applied. If any request is not valid, - * then the entire request will fail and nothing will be applied. - * - * Some requests have replies to give you some information about how they are - * applied. Other requests do not need to return information; these each return - * an empty reply. The order of replies matches that of the requests. - * - * For example, suppose you call batchUpdate with four updates, and only the - * third one returns information. The response would have two empty replies: the - * reply to the third request, and another empty reply, in that order. - * - * Because other users may be editing the presentation, the presentation might - * not exactly reflect your changes: your changes may be altered with respect to - * collaborator changes. If there are no collaborators, the presentation should - * reflect your changes. In any case, the updates in your request are guaranteed - * to be applied together atomically. (presentations.batchUpdate) - * - * @param string $presentationId The presentation to apply the updates to. - * @param Google_Service_Slides_BatchUpdatePresentationRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Slides_BatchUpdatePresentationResponse - */ - public function batchUpdate($presentationId, Google_Service_Slides_BatchUpdatePresentationRequest $postBody, $optParams = array()) - { - $params = array('presentationId' => $presentationId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('batchUpdate', array($params), "Google_Service_Slides_BatchUpdatePresentationResponse"); - } - /** - * Creates a blank presentation using the title given in the request. If a - * `presentationId` is provided, it is used as the ID of the new presentation. - * Otherwise, a new ID is generated. Other fields in the request, including any - * provided content, are ignored. Returns the created presentation. - * (presentations.create) - * - * @param Google_Service_Slides_Presentation $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Slides_Presentation - */ - public function create(Google_Service_Slides_Presentation $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Slides_Presentation"); - } - /** - * Gets the latest version of the specified presentation. (presentations.get) - * - * @param string $presentationId The ID of the presentation to retrieve. - * @param array $optParams Optional parameters. - * @return Google_Service_Slides_Presentation - */ - public function get($presentationId, $optParams = array()) - { - $params = array('presentationId' => $presentationId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Slides_Presentation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Resource/PresentationsPages.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Resource/PresentationsPages.php deleted file mode 100644 index fa941fcc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Resource/PresentationsPages.php +++ /dev/null @@ -1,72 +0,0 @@ - - * $slidesService = new Google_Service_Slides(...); - * $pages = $slidesService->pages; - * - */ -class Google_Service_Slides_Resource_PresentationsPages extends Google_Service_Resource -{ - /** - * Gets the latest version of the specified page in the presentation. - * (pages.get) - * - * @param string $presentationId The ID of the presentation to retrieve. - * @param string $pageObjectId The object ID of the page to retrieve. - * @param array $optParams Optional parameters. - * @return Google_Service_Slides_Page - */ - public function get($presentationId, $pageObjectId, $optParams = array()) - { - $params = array('presentationId' => $presentationId, 'pageObjectId' => $pageObjectId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Slides_Page"); - } - /** - * Generates a thumbnail of the latest version of the specified page in the - * presentation and returns a URL to the thumbnail image. - * - * This request counts as an [expensive read request](/slides/limits) for quota - * purposes. (pages.getThumbnail) - * - * @param string $presentationId The ID of the presentation to retrieve. - * @param string $pageObjectId The object ID of the page whose thumbnail to - * retrieve. - * @param array $optParams Optional parameters. - * - * @opt_param string thumbnailProperties.mimeType The optional mime type of the - * thumbnail image. - * - * If you don't specify the mime type, the default mime type will be PNG. - * @opt_param string thumbnailProperties.thumbnailSize The optional thumbnail - * image size. - * - * If you don't specify the size, the server chooses a default size of the - * image. - * @return Google_Service_Slides_Thumbnail - */ - public function getThumbnail($presentationId, $pageObjectId, $optParams = array()) - { - $params = array('presentationId' => $presentationId, 'pageObjectId' => $pageObjectId); - $params = array_merge($params, $optParams); - return $this->call('getThumbnail', array($params), "Google_Service_Slides_Thumbnail"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Response.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Response.php deleted file mode 100644 index 8201c08d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Response.php +++ /dev/null @@ -1,213 +0,0 @@ -createImage = $createImage; - } - /** - * @return Google_Service_Slides_CreateImageResponse - */ - public function getCreateImage() - { - return $this->createImage; - } - /** - * @param Google_Service_Slides_CreateLineResponse - */ - public function setCreateLine(Google_Service_Slides_CreateLineResponse $createLine) - { - $this->createLine = $createLine; - } - /** - * @return Google_Service_Slides_CreateLineResponse - */ - public function getCreateLine() - { - return $this->createLine; - } - /** - * @param Google_Service_Slides_CreateShapeResponse - */ - public function setCreateShape(Google_Service_Slides_CreateShapeResponse $createShape) - { - $this->createShape = $createShape; - } - /** - * @return Google_Service_Slides_CreateShapeResponse - */ - public function getCreateShape() - { - return $this->createShape; - } - /** - * @param Google_Service_Slides_CreateSheetsChartResponse - */ - public function setCreateSheetsChart(Google_Service_Slides_CreateSheetsChartResponse $createSheetsChart) - { - $this->createSheetsChart = $createSheetsChart; - } - /** - * @return Google_Service_Slides_CreateSheetsChartResponse - */ - public function getCreateSheetsChart() - { - return $this->createSheetsChart; - } - /** - * @param Google_Service_Slides_CreateSlideResponse - */ - public function setCreateSlide(Google_Service_Slides_CreateSlideResponse $createSlide) - { - $this->createSlide = $createSlide; - } - /** - * @return Google_Service_Slides_CreateSlideResponse - */ - public function getCreateSlide() - { - return $this->createSlide; - } - /** - * @param Google_Service_Slides_CreateTableResponse - */ - public function setCreateTable(Google_Service_Slides_CreateTableResponse $createTable) - { - $this->createTable = $createTable; - } - /** - * @return Google_Service_Slides_CreateTableResponse - */ - public function getCreateTable() - { - return $this->createTable; - } - /** - * @param Google_Service_Slides_CreateVideoResponse - */ - public function setCreateVideo(Google_Service_Slides_CreateVideoResponse $createVideo) - { - $this->createVideo = $createVideo; - } - /** - * @return Google_Service_Slides_CreateVideoResponse - */ - public function getCreateVideo() - { - return $this->createVideo; - } - /** - * @param Google_Service_Slides_DuplicateObjectResponse - */ - public function setDuplicateObject(Google_Service_Slides_DuplicateObjectResponse $duplicateObject) - { - $this->duplicateObject = $duplicateObject; - } - /** - * @return Google_Service_Slides_DuplicateObjectResponse - */ - public function getDuplicateObject() - { - return $this->duplicateObject; - } - /** - * @param Google_Service_Slides_GroupObjectsResponse - */ - public function setGroupObjects(Google_Service_Slides_GroupObjectsResponse $groupObjects) - { - $this->groupObjects = $groupObjects; - } - /** - * @return Google_Service_Slides_GroupObjectsResponse - */ - public function getGroupObjects() - { - return $this->groupObjects; - } - /** - * @param Google_Service_Slides_ReplaceAllShapesWithImageResponse - */ - public function setReplaceAllShapesWithImage(Google_Service_Slides_ReplaceAllShapesWithImageResponse $replaceAllShapesWithImage) - { - $this->replaceAllShapesWithImage = $replaceAllShapesWithImage; - } - /** - * @return Google_Service_Slides_ReplaceAllShapesWithImageResponse - */ - public function getReplaceAllShapesWithImage() - { - return $this->replaceAllShapesWithImage; - } - /** - * @param Google_Service_Slides_ReplaceAllShapesWithSheetsChartResponse - */ - public function setReplaceAllShapesWithSheetsChart(Google_Service_Slides_ReplaceAllShapesWithSheetsChartResponse $replaceAllShapesWithSheetsChart) - { - $this->replaceAllShapesWithSheetsChart = $replaceAllShapesWithSheetsChart; - } - /** - * @return Google_Service_Slides_ReplaceAllShapesWithSheetsChartResponse - */ - public function getReplaceAllShapesWithSheetsChart() - { - return $this->replaceAllShapesWithSheetsChart; - } - /** - * @param Google_Service_Slides_ReplaceAllTextResponse - */ - public function setReplaceAllText(Google_Service_Slides_ReplaceAllTextResponse $replaceAllText) - { - $this->replaceAllText = $replaceAllText; - } - /** - * @return Google_Service_Slides_ReplaceAllTextResponse - */ - public function getReplaceAllText() - { - return $this->replaceAllText; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/RgbColor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/RgbColor.php deleted file mode 100644 index e4b0edd0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/RgbColor.php +++ /dev/null @@ -1,48 +0,0 @@ -blue = $blue; - } - public function getBlue() - { - return $this->blue; - } - public function setGreen($green) - { - $this->green = $green; - } - public function getGreen() - { - return $this->green; - } - public function setRed($red) - { - $this->red = $red; - } - public function getRed() - { - return $this->red; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Shadow.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Shadow.php deleted file mode 100644 index 7633404e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Shadow.php +++ /dev/null @@ -1,114 +0,0 @@ -alignment = $alignment; - } - public function getAlignment() - { - return $this->alignment; - } - public function setAlpha($alpha) - { - $this->alpha = $alpha; - } - public function getAlpha() - { - return $this->alpha; - } - /** - * @param Google_Service_Slides_Dimension - */ - public function setBlurRadius(Google_Service_Slides_Dimension $blurRadius) - { - $this->blurRadius = $blurRadius; - } - /** - * @return Google_Service_Slides_Dimension - */ - public function getBlurRadius() - { - return $this->blurRadius; - } - /** - * @param Google_Service_Slides_OpaqueColor - */ - public function setColor(Google_Service_Slides_OpaqueColor $color) - { - $this->color = $color; - } - /** - * @return Google_Service_Slides_OpaqueColor - */ - public function getColor() - { - return $this->color; - } - public function setPropertyState($propertyState) - { - $this->propertyState = $propertyState; - } - public function getPropertyState() - { - return $this->propertyState; - } - public function setRotateWithShape($rotateWithShape) - { - $this->rotateWithShape = $rotateWithShape; - } - public function getRotateWithShape() - { - return $this->rotateWithShape; - } - /** - * @param Google_Service_Slides_AffineTransform - */ - public function setTransform(Google_Service_Slides_AffineTransform $transform) - { - $this->transform = $transform; - } - /** - * @return Google_Service_Slides_AffineTransform - */ - public function getTransform() - { - return $this->transform; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Shape.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Shape.php deleted file mode 100644 index 717250fc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Shape.php +++ /dev/null @@ -1,78 +0,0 @@ -placeholder = $placeholder; - } - /** - * @return Google_Service_Slides_Placeholder - */ - public function getPlaceholder() - { - return $this->placeholder; - } - /** - * @param Google_Service_Slides_ShapeProperties - */ - public function setShapeProperties(Google_Service_Slides_ShapeProperties $shapeProperties) - { - $this->shapeProperties = $shapeProperties; - } - /** - * @return Google_Service_Slides_ShapeProperties - */ - public function getShapeProperties() - { - return $this->shapeProperties; - } - public function setShapeType($shapeType) - { - $this->shapeType = $shapeType; - } - public function getShapeType() - { - return $this->shapeType; - } - /** - * @param Google_Service_Slides_TextContent - */ - public function setText(Google_Service_Slides_TextContent $text) - { - $this->text = $text; - } - /** - * @return Google_Service_Slides_TextContent - */ - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/ShapeBackgroundFill.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/ShapeBackgroundFill.php deleted file mode 100644 index 0295b610..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/ShapeBackgroundFill.php +++ /dev/null @@ -1,46 +0,0 @@ -propertyState = $propertyState; - } - public function getPropertyState() - { - return $this->propertyState; - } - /** - * @param Google_Service_Slides_SolidFill - */ - public function setSolidFill(Google_Service_Slides_SolidFill $solidFill) - { - $this->solidFill = $solidFill; - } - /** - * @return Google_Service_Slides_SolidFill - */ - public function getSolidFill() - { - return $this->solidFill; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/ShapeProperties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/ShapeProperties.php deleted file mode 100644 index 4100b49f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/ShapeProperties.php +++ /dev/null @@ -1,94 +0,0 @@ -contentAlignment = $contentAlignment; - } - public function getContentAlignment() - { - return $this->contentAlignment; - } - /** - * @param Google_Service_Slides_Link - */ - public function setLink(Google_Service_Slides_Link $link) - { - $this->link = $link; - } - /** - * @return Google_Service_Slides_Link - */ - public function getLink() - { - return $this->link; - } - /** - * @param Google_Service_Slides_Outline - */ - public function setOutline(Google_Service_Slides_Outline $outline) - { - $this->outline = $outline; - } - /** - * @return Google_Service_Slides_Outline - */ - public function getOutline() - { - return $this->outline; - } - /** - * @param Google_Service_Slides_Shadow - */ - public function setShadow(Google_Service_Slides_Shadow $shadow) - { - $this->shadow = $shadow; - } - /** - * @return Google_Service_Slides_Shadow - */ - public function getShadow() - { - return $this->shadow; - } - /** - * @param Google_Service_Slides_ShapeBackgroundFill - */ - public function setShapeBackgroundFill(Google_Service_Slides_ShapeBackgroundFill $shapeBackgroundFill) - { - $this->shapeBackgroundFill = $shapeBackgroundFill; - } - /** - * @return Google_Service_Slides_ShapeBackgroundFill - */ - public function getShapeBackgroundFill() - { - return $this->shapeBackgroundFill; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/SheetsChart.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/SheetsChart.php deleted file mode 100644 index 48705e22..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/SheetsChart.php +++ /dev/null @@ -1,64 +0,0 @@ -chartId = $chartId; - } - public function getChartId() - { - return $this->chartId; - } - public function setContentUrl($contentUrl) - { - $this->contentUrl = $contentUrl; - } - public function getContentUrl() - { - return $this->contentUrl; - } - /** - * @param Google_Service_Slides_SheetsChartProperties - */ - public function setSheetsChartProperties(Google_Service_Slides_SheetsChartProperties $sheetsChartProperties) - { - $this->sheetsChartProperties = $sheetsChartProperties; - } - /** - * @return Google_Service_Slides_SheetsChartProperties - */ - public function getSheetsChartProperties() - { - return $this->sheetsChartProperties; - } - public function setSpreadsheetId($spreadsheetId) - { - $this->spreadsheetId = $spreadsheetId; - } - public function getSpreadsheetId() - { - return $this->spreadsheetId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/SheetsChartProperties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/SheetsChartProperties.php deleted file mode 100644 index 4084460f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/SheetsChartProperties.php +++ /dev/null @@ -1,37 +0,0 @@ -chartImageProperties = $chartImageProperties; - } - /** - * @return Google_Service_Slides_ImageProperties - */ - public function getChartImageProperties() - { - return $this->chartImageProperties; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Size.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Size.php deleted file mode 100644 index 15a591ca..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Size.php +++ /dev/null @@ -1,53 +0,0 @@ -height = $height; - } - /** - * @return Google_Service_Slides_Dimension - */ - public function getHeight() - { - return $this->height; - } - /** - * @param Google_Service_Slides_Dimension - */ - public function setWidth(Google_Service_Slides_Dimension $width) - { - $this->width = $width; - } - /** - * @return Google_Service_Slides_Dimension - */ - public function getWidth() - { - return $this->width; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/SlideProperties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/SlideProperties.php deleted file mode 100644 index 1823ffd6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/SlideProperties.php +++ /dev/null @@ -1,55 +0,0 @@ -layoutObjectId = $layoutObjectId; - } - public function getLayoutObjectId() - { - return $this->layoutObjectId; - } - public function setMasterObjectId($masterObjectId) - { - $this->masterObjectId = $masterObjectId; - } - public function getMasterObjectId() - { - return $this->masterObjectId; - } - /** - * @param Google_Service_Slides_Page - */ - public function setNotesPage(Google_Service_Slides_Page $notesPage) - { - $this->notesPage = $notesPage; - } - /** - * @return Google_Service_Slides_Page - */ - public function getNotesPage() - { - return $this->notesPage; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/SlidesList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/SlidesList.php deleted file mode 100644 index 046c3ae9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/SlidesList.php +++ /dev/null @@ -1,46 +0,0 @@ -listId = $listId; - } - public function getListId() - { - return $this->listId; - } - /** - * @param Google_Service_Slides_NestingLevel - */ - public function setNestingLevel($nestingLevel) - { - $this->nestingLevel = $nestingLevel; - } - /** - * @return Google_Service_Slides_NestingLevel - */ - public function getNestingLevel() - { - return $this->nestingLevel; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/SolidFill.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/SolidFill.php deleted file mode 100644 index 87f40505..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/SolidFill.php +++ /dev/null @@ -1,46 +0,0 @@ -alpha = $alpha; - } - public function getAlpha() - { - return $this->alpha; - } - /** - * @param Google_Service_Slides_OpaqueColor - */ - public function setColor(Google_Service_Slides_OpaqueColor $color) - { - $this->color = $color; - } - /** - * @return Google_Service_Slides_OpaqueColor - */ - public function getColor() - { - return $this->color; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/StretchedPictureFill.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/StretchedPictureFill.php deleted file mode 100644 index 860b621a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/StretchedPictureFill.php +++ /dev/null @@ -1,46 +0,0 @@ -contentUrl = $contentUrl; - } - public function getContentUrl() - { - return $this->contentUrl; - } - /** - * @param Google_Service_Slides_Size - */ - public function setSize(Google_Service_Slides_Size $size) - { - $this->size = $size; - } - /** - * @return Google_Service_Slides_Size - */ - public function getSize() - { - return $this->size; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/SubstringMatchCriteria.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/SubstringMatchCriteria.php deleted file mode 100644 index f02b4b33..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/SubstringMatchCriteria.php +++ /dev/null @@ -1,39 +0,0 @@ -matchCase = $matchCase; - } - public function getMatchCase() - { - return $this->matchCase; - } - public function setText($text) - { - $this->text = $text; - } - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Table.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Table.php deleted file mode 100644 index 1878e0c9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Table.php +++ /dev/null @@ -1,104 +0,0 @@ -columns = $columns; - } - public function getColumns() - { - return $this->columns; - } - /** - * @param Google_Service_Slides_TableBorderRow - */ - public function setHorizontalBorderRows($horizontalBorderRows) - { - $this->horizontalBorderRows = $horizontalBorderRows; - } - /** - * @return Google_Service_Slides_TableBorderRow - */ - public function getHorizontalBorderRows() - { - return $this->horizontalBorderRows; - } - public function setRows($rows) - { - $this->rows = $rows; - } - public function getRows() - { - return $this->rows; - } - /** - * @param Google_Service_Slides_TableColumnProperties - */ - public function setTableColumns($tableColumns) - { - $this->tableColumns = $tableColumns; - } - /** - * @return Google_Service_Slides_TableColumnProperties - */ - public function getTableColumns() - { - return $this->tableColumns; - } - /** - * @param Google_Service_Slides_TableRow - */ - public function setTableRows($tableRows) - { - $this->tableRows = $tableRows; - } - /** - * @return Google_Service_Slides_TableRow - */ - public function getTableRows() - { - return $this->tableRows; - } - /** - * @param Google_Service_Slides_TableBorderRow - */ - public function setVerticalBorderRows($verticalBorderRows) - { - $this->verticalBorderRows = $verticalBorderRows; - } - /** - * @return Google_Service_Slides_TableBorderRow - */ - public function getVerticalBorderRows() - { - return $this->verticalBorderRows; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/TableBorderCell.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/TableBorderCell.php deleted file mode 100644 index da613ec4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/TableBorderCell.php +++ /dev/null @@ -1,53 +0,0 @@ -location = $location; - } - /** - * @return Google_Service_Slides_TableCellLocation - */ - public function getLocation() - { - return $this->location; - } - /** - * @param Google_Service_Slides_TableBorderProperties - */ - public function setTableBorderProperties(Google_Service_Slides_TableBorderProperties $tableBorderProperties) - { - $this->tableBorderProperties = $tableBorderProperties; - } - /** - * @return Google_Service_Slides_TableBorderProperties - */ - public function getTableBorderProperties() - { - return $this->tableBorderProperties; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/TableBorderFill.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/TableBorderFill.php deleted file mode 100644 index 7d241650..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/TableBorderFill.php +++ /dev/null @@ -1,37 +0,0 @@ -solidFill = $solidFill; - } - /** - * @return Google_Service_Slides_SolidFill - */ - public function getSolidFill() - { - return $this->solidFill; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/TableBorderProperties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/TableBorderProperties.php deleted file mode 100644 index 9f595e1a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/TableBorderProperties.php +++ /dev/null @@ -1,62 +0,0 @@ -dashStyle = $dashStyle; - } - public function getDashStyle() - { - return $this->dashStyle; - } - /** - * @param Google_Service_Slides_TableBorderFill - */ - public function setTableBorderFill(Google_Service_Slides_TableBorderFill $tableBorderFill) - { - $this->tableBorderFill = $tableBorderFill; - } - /** - * @return Google_Service_Slides_TableBorderFill - */ - public function getTableBorderFill() - { - return $this->tableBorderFill; - } - /** - * @param Google_Service_Slides_Dimension - */ - public function setWeight(Google_Service_Slides_Dimension $weight) - { - $this->weight = $weight; - } - /** - * @return Google_Service_Slides_Dimension - */ - public function getWeight() - { - return $this->weight; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/TableBorderRow.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/TableBorderRow.php deleted file mode 100644 index 6ecd7f6f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/TableBorderRow.php +++ /dev/null @@ -1,38 +0,0 @@ -tableBorderCells = $tableBorderCells; - } - /** - * @return Google_Service_Slides_TableBorderCell - */ - public function getTableBorderCells() - { - return $this->tableBorderCells; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/TableCell.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/TableCell.php deleted file mode 100644 index d003847d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/TableCell.php +++ /dev/null @@ -1,87 +0,0 @@ -columnSpan = $columnSpan; - } - public function getColumnSpan() - { - return $this->columnSpan; - } - /** - * @param Google_Service_Slides_TableCellLocation - */ - public function setLocation(Google_Service_Slides_TableCellLocation $location) - { - $this->location = $location; - } - /** - * @return Google_Service_Slides_TableCellLocation - */ - public function getLocation() - { - return $this->location; - } - public function setRowSpan($rowSpan) - { - $this->rowSpan = $rowSpan; - } - public function getRowSpan() - { - return $this->rowSpan; - } - /** - * @param Google_Service_Slides_TableCellProperties - */ - public function setTableCellProperties(Google_Service_Slides_TableCellProperties $tableCellProperties) - { - $this->tableCellProperties = $tableCellProperties; - } - /** - * @return Google_Service_Slides_TableCellProperties - */ - public function getTableCellProperties() - { - return $this->tableCellProperties; - } - /** - * @param Google_Service_Slides_TextContent - */ - public function setText(Google_Service_Slides_TextContent $text) - { - $this->text = $text; - } - /** - * @return Google_Service_Slides_TextContent - */ - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/TableCellBackgroundFill.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/TableCellBackgroundFill.php deleted file mode 100644 index 073e0875..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/TableCellBackgroundFill.php +++ /dev/null @@ -1,46 +0,0 @@ -propertyState = $propertyState; - } - public function getPropertyState() - { - return $this->propertyState; - } - /** - * @param Google_Service_Slides_SolidFill - */ - public function setSolidFill(Google_Service_Slides_SolidFill $solidFill) - { - $this->solidFill = $solidFill; - } - /** - * @return Google_Service_Slides_SolidFill - */ - public function getSolidFill() - { - return $this->solidFill; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/TableCellLocation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/TableCellLocation.php deleted file mode 100644 index afc3b25f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/TableCellLocation.php +++ /dev/null @@ -1,39 +0,0 @@ -columnIndex = $columnIndex; - } - public function getColumnIndex() - { - return $this->columnIndex; - } - public function setRowIndex($rowIndex) - { - $this->rowIndex = $rowIndex; - } - public function getRowIndex() - { - return $this->rowIndex; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/TableCellProperties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/TableCellProperties.php deleted file mode 100644 index b4183529..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/TableCellProperties.php +++ /dev/null @@ -1,46 +0,0 @@ -contentAlignment = $contentAlignment; - } - public function getContentAlignment() - { - return $this->contentAlignment; - } - /** - * @param Google_Service_Slides_TableCellBackgroundFill - */ - public function setTableCellBackgroundFill(Google_Service_Slides_TableCellBackgroundFill $tableCellBackgroundFill) - { - $this->tableCellBackgroundFill = $tableCellBackgroundFill; - } - /** - * @return Google_Service_Slides_TableCellBackgroundFill - */ - public function getTableCellBackgroundFill() - { - return $this->tableCellBackgroundFill; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/TableColumnProperties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/TableColumnProperties.php deleted file mode 100644 index c9a915f3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/TableColumnProperties.php +++ /dev/null @@ -1,37 +0,0 @@ -columnWidth = $columnWidth; - } - /** - * @return Google_Service_Slides_Dimension - */ - public function getColumnWidth() - { - return $this->columnWidth; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/TableRange.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/TableRange.php deleted file mode 100644 index 714ac0eb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/TableRange.php +++ /dev/null @@ -1,55 +0,0 @@ -columnSpan = $columnSpan; - } - public function getColumnSpan() - { - return $this->columnSpan; - } - /** - * @param Google_Service_Slides_TableCellLocation - */ - public function setLocation(Google_Service_Slides_TableCellLocation $location) - { - $this->location = $location; - } - /** - * @return Google_Service_Slides_TableCellLocation - */ - public function getLocation() - { - return $this->location; - } - public function setRowSpan($rowSpan) - { - $this->rowSpan = $rowSpan; - } - public function getRowSpan() - { - return $this->rowSpan; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/TableRow.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/TableRow.php deleted file mode 100644 index 6227b35a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/TableRow.php +++ /dev/null @@ -1,70 +0,0 @@ -rowHeight = $rowHeight; - } - /** - * @return Google_Service_Slides_Dimension - */ - public function getRowHeight() - { - return $this->rowHeight; - } - /** - * @param Google_Service_Slides_TableCell - */ - public function setTableCells($tableCells) - { - $this->tableCells = $tableCells; - } - /** - * @return Google_Service_Slides_TableCell - */ - public function getTableCells() - { - return $this->tableCells; - } - /** - * @param Google_Service_Slides_TableRowProperties - */ - public function setTableRowProperties(Google_Service_Slides_TableRowProperties $tableRowProperties) - { - $this->tableRowProperties = $tableRowProperties; - } - /** - * @return Google_Service_Slides_TableRowProperties - */ - public function getTableRowProperties() - { - return $this->tableRowProperties; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/TableRowProperties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/TableRowProperties.php deleted file mode 100644 index 2119469c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/TableRowProperties.php +++ /dev/null @@ -1,37 +0,0 @@ -minRowHeight = $minRowHeight; - } - /** - * @return Google_Service_Slides_Dimension - */ - public function getMinRowHeight() - { - return $this->minRowHeight; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/TextContent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/TextContent.php deleted file mode 100644 index 15a490b7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/TextContent.php +++ /dev/null @@ -1,54 +0,0 @@ -lists = $lists; - } - /** - * @return Google_Service_Slides_SlidesList - */ - public function getLists() - { - return $this->lists; - } - /** - * @param Google_Service_Slides_TextElement - */ - public function setTextElements($textElements) - { - $this->textElements = $textElements; - } - /** - * @return Google_Service_Slides_TextElement - */ - public function getTextElements() - { - return $this->textElements; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/TextElement.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/TextElement.php deleted file mode 100644 index 0f17fe88..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/TextElement.php +++ /dev/null @@ -1,87 +0,0 @@ -autoText = $autoText; - } - /** - * @return Google_Service_Slides_AutoText - */ - public function getAutoText() - { - return $this->autoText; - } - public function setEndIndex($endIndex) - { - $this->endIndex = $endIndex; - } - public function getEndIndex() - { - return $this->endIndex; - } - /** - * @param Google_Service_Slides_ParagraphMarker - */ - public function setParagraphMarker(Google_Service_Slides_ParagraphMarker $paragraphMarker) - { - $this->paragraphMarker = $paragraphMarker; - } - /** - * @return Google_Service_Slides_ParagraphMarker - */ - public function getParagraphMarker() - { - return $this->paragraphMarker; - } - public function setStartIndex($startIndex) - { - $this->startIndex = $startIndex; - } - public function getStartIndex() - { - return $this->startIndex; - } - /** - * @param Google_Service_Slides_TextRun - */ - public function setTextRun(Google_Service_Slides_TextRun $textRun) - { - $this->textRun = $textRun; - } - /** - * @return Google_Service_Slides_TextRun - */ - public function getTextRun() - { - return $this->textRun; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/TextRun.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/TextRun.php deleted file mode 100644 index 3bb39bb9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/TextRun.php +++ /dev/null @@ -1,46 +0,0 @@ -content = $content; - } - public function getContent() - { - return $this->content; - } - /** - * @param Google_Service_Slides_TextStyle - */ - public function setStyle(Google_Service_Slides_TextStyle $style) - { - $this->style = $style; - } - /** - * @return Google_Service_Slides_TextStyle - */ - public function getStyle() - { - return $this->style; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/TextStyle.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/TextStyle.php deleted file mode 100644 index c53438fe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/TextStyle.php +++ /dev/null @@ -1,164 +0,0 @@ -backgroundColor = $backgroundColor; - } - /** - * @return Google_Service_Slides_OptionalColor - */ - public function getBackgroundColor() - { - return $this->backgroundColor; - } - public function setBaselineOffset($baselineOffset) - { - $this->baselineOffset = $baselineOffset; - } - public function getBaselineOffset() - { - return $this->baselineOffset; - } - public function setBold($bold) - { - $this->bold = $bold; - } - public function getBold() - { - return $this->bold; - } - public function setFontFamily($fontFamily) - { - $this->fontFamily = $fontFamily; - } - public function getFontFamily() - { - return $this->fontFamily; - } - /** - * @param Google_Service_Slides_Dimension - */ - public function setFontSize(Google_Service_Slides_Dimension $fontSize) - { - $this->fontSize = $fontSize; - } - /** - * @return Google_Service_Slides_Dimension - */ - public function getFontSize() - { - return $this->fontSize; - } - /** - * @param Google_Service_Slides_OptionalColor - */ - public function setForegroundColor(Google_Service_Slides_OptionalColor $foregroundColor) - { - $this->foregroundColor = $foregroundColor; - } - /** - * @return Google_Service_Slides_OptionalColor - */ - public function getForegroundColor() - { - return $this->foregroundColor; - } - public function setItalic($italic) - { - $this->italic = $italic; - } - public function getItalic() - { - return $this->italic; - } - /** - * @param Google_Service_Slides_Link - */ - public function setLink(Google_Service_Slides_Link $link) - { - $this->link = $link; - } - /** - * @return Google_Service_Slides_Link - */ - public function getLink() - { - return $this->link; - } - public function setSmallCaps($smallCaps) - { - $this->smallCaps = $smallCaps; - } - public function getSmallCaps() - { - return $this->smallCaps; - } - public function setStrikethrough($strikethrough) - { - $this->strikethrough = $strikethrough; - } - public function getStrikethrough() - { - return $this->strikethrough; - } - public function setUnderline($underline) - { - $this->underline = $underline; - } - public function getUnderline() - { - return $this->underline; - } - /** - * @param Google_Service_Slides_WeightedFontFamily - */ - public function setWeightedFontFamily(Google_Service_Slides_WeightedFontFamily $weightedFontFamily) - { - $this->weightedFontFamily = $weightedFontFamily; - } - /** - * @return Google_Service_Slides_WeightedFontFamily - */ - public function getWeightedFontFamily() - { - return $this->weightedFontFamily; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/ThemeColorPair.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/ThemeColorPair.php deleted file mode 100644 index c3cee04a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/ThemeColorPair.php +++ /dev/null @@ -1,46 +0,0 @@ -color = $color; - } - /** - * @return Google_Service_Slides_RgbColor - */ - public function getColor() - { - return $this->color; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Thumbnail.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Thumbnail.php deleted file mode 100644 index 9e4edcaf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Thumbnail.php +++ /dev/null @@ -1,48 +0,0 @@ -contentUrl = $contentUrl; - } - public function getContentUrl() - { - return $this->contentUrl; - } - public function setHeight($height) - { - $this->height = $height; - } - public function getHeight() - { - return $this->height; - } - public function setWidth($width) - { - $this->width = $width; - } - public function getWidth() - { - return $this->width; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/UngroupObjectsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/UngroupObjectsRequest.php deleted file mode 100644 index 700a3a20..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/UngroupObjectsRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -objectIds = $objectIds; - } - public function getObjectIds() - { - return $this->objectIds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/UnmergeTableCellsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/UnmergeTableCellsRequest.php deleted file mode 100644 index 86b2fda7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/UnmergeTableCellsRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -objectId = $objectId; - } - public function getObjectId() - { - return $this->objectId; - } - /** - * @param Google_Service_Slides_TableRange - */ - public function setTableRange(Google_Service_Slides_TableRange $tableRange) - { - $this->tableRange = $tableRange; - } - /** - * @return Google_Service_Slides_TableRange - */ - public function getTableRange() - { - return $this->tableRange; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/UpdateImagePropertiesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/UpdateImagePropertiesRequest.php deleted file mode 100644 index 80d72309..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/UpdateImagePropertiesRequest.php +++ /dev/null @@ -1,55 +0,0 @@ -fields = $fields; - } - public function getFields() - { - return $this->fields; - } - /** - * @param Google_Service_Slides_ImageProperties - */ - public function setImageProperties(Google_Service_Slides_ImageProperties $imageProperties) - { - $this->imageProperties = $imageProperties; - } - /** - * @return Google_Service_Slides_ImageProperties - */ - public function getImageProperties() - { - return $this->imageProperties; - } - public function setObjectId($objectId) - { - $this->objectId = $objectId; - } - public function getObjectId() - { - return $this->objectId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/UpdateLineCategoryRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/UpdateLineCategoryRequest.php deleted file mode 100644 index 7aad11d7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/UpdateLineCategoryRequest.php +++ /dev/null @@ -1,39 +0,0 @@ -lineCategory = $lineCategory; - } - public function getLineCategory() - { - return $this->lineCategory; - } - public function setObjectId($objectId) - { - $this->objectId = $objectId; - } - public function getObjectId() - { - return $this->objectId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/UpdateLinePropertiesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/UpdateLinePropertiesRequest.php deleted file mode 100644 index 80d91370..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/UpdateLinePropertiesRequest.php +++ /dev/null @@ -1,55 +0,0 @@ -fields = $fields; - } - public function getFields() - { - return $this->fields; - } - /** - * @param Google_Service_Slides_LineProperties - */ - public function setLineProperties(Google_Service_Slides_LineProperties $lineProperties) - { - $this->lineProperties = $lineProperties; - } - /** - * @return Google_Service_Slides_LineProperties - */ - public function getLineProperties() - { - return $this->lineProperties; - } - public function setObjectId($objectId) - { - $this->objectId = $objectId; - } - public function getObjectId() - { - return $this->objectId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/UpdatePageElementAltTextRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/UpdatePageElementAltTextRequest.php deleted file mode 100644 index 21973607..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/UpdatePageElementAltTextRequest.php +++ /dev/null @@ -1,48 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setObjectId($objectId) - { - $this->objectId = $objectId; - } - public function getObjectId() - { - return $this->objectId; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/UpdatePageElementTransformRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/UpdatePageElementTransformRequest.php deleted file mode 100644 index 57291abd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/UpdatePageElementTransformRequest.php +++ /dev/null @@ -1,55 +0,0 @@ -applyMode = $applyMode; - } - public function getApplyMode() - { - return $this->applyMode; - } - public function setObjectId($objectId) - { - $this->objectId = $objectId; - } - public function getObjectId() - { - return $this->objectId; - } - /** - * @param Google_Service_Slides_AffineTransform - */ - public function setTransform(Google_Service_Slides_AffineTransform $transform) - { - $this->transform = $transform; - } - /** - * @return Google_Service_Slides_AffineTransform - */ - public function getTransform() - { - return $this->transform; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/UpdatePageElementsZOrderRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/UpdatePageElementsZOrderRequest.php deleted file mode 100644 index 7551ebd8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/UpdatePageElementsZOrderRequest.php +++ /dev/null @@ -1,40 +0,0 @@ -operation = $operation; - } - public function getOperation() - { - return $this->operation; - } - public function setPageElementObjectIds($pageElementObjectIds) - { - $this->pageElementObjectIds = $pageElementObjectIds; - } - public function getPageElementObjectIds() - { - return $this->pageElementObjectIds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/UpdatePagePropertiesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/UpdatePagePropertiesRequest.php deleted file mode 100644 index 2091248f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/UpdatePagePropertiesRequest.php +++ /dev/null @@ -1,55 +0,0 @@ -fields = $fields; - } - public function getFields() - { - return $this->fields; - } - public function setObjectId($objectId) - { - $this->objectId = $objectId; - } - public function getObjectId() - { - return $this->objectId; - } - /** - * @param Google_Service_Slides_PageProperties - */ - public function setPageProperties(Google_Service_Slides_PageProperties $pageProperties) - { - $this->pageProperties = $pageProperties; - } - /** - * @return Google_Service_Slides_PageProperties - */ - public function getPageProperties() - { - return $this->pageProperties; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/UpdateParagraphStyleRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/UpdateParagraphStyleRequest.php deleted file mode 100644 index 5a0627de..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/UpdateParagraphStyleRequest.php +++ /dev/null @@ -1,87 +0,0 @@ -cellLocation = $cellLocation; - } - /** - * @return Google_Service_Slides_TableCellLocation - */ - public function getCellLocation() - { - return $this->cellLocation; - } - public function setFields($fields) - { - $this->fields = $fields; - } - public function getFields() - { - return $this->fields; - } - public function setObjectId($objectId) - { - $this->objectId = $objectId; - } - public function getObjectId() - { - return $this->objectId; - } - /** - * @param Google_Service_Slides_ParagraphStyle - */ - public function setStyle(Google_Service_Slides_ParagraphStyle $style) - { - $this->style = $style; - } - /** - * @return Google_Service_Slides_ParagraphStyle - */ - public function getStyle() - { - return $this->style; - } - /** - * @param Google_Service_Slides_Range - */ - public function setTextRange(Google_Service_Slides_Range $textRange) - { - $this->textRange = $textRange; - } - /** - * @return Google_Service_Slides_Range - */ - public function getTextRange() - { - return $this->textRange; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/UpdateShapePropertiesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/UpdateShapePropertiesRequest.php deleted file mode 100644 index e9d0f031..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/UpdateShapePropertiesRequest.php +++ /dev/null @@ -1,55 +0,0 @@ -fields = $fields; - } - public function getFields() - { - return $this->fields; - } - public function setObjectId($objectId) - { - $this->objectId = $objectId; - } - public function getObjectId() - { - return $this->objectId; - } - /** - * @param Google_Service_Slides_ShapeProperties - */ - public function setShapeProperties(Google_Service_Slides_ShapeProperties $shapeProperties) - { - $this->shapeProperties = $shapeProperties; - } - /** - * @return Google_Service_Slides_ShapeProperties - */ - public function getShapeProperties() - { - return $this->shapeProperties; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/UpdateSlidesPositionRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/UpdateSlidesPositionRequest.php deleted file mode 100644 index c124341b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/UpdateSlidesPositionRequest.php +++ /dev/null @@ -1,40 +0,0 @@ -insertionIndex = $insertionIndex; - } - public function getInsertionIndex() - { - return $this->insertionIndex; - } - public function setSlideObjectIds($slideObjectIds) - { - $this->slideObjectIds = $slideObjectIds; - } - public function getSlideObjectIds() - { - return $this->slideObjectIds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/UpdateTableBorderPropertiesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/UpdateTableBorderPropertiesRequest.php deleted file mode 100644 index 1b2225e6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/UpdateTableBorderPropertiesRequest.php +++ /dev/null @@ -1,80 +0,0 @@ -borderPosition = $borderPosition; - } - public function getBorderPosition() - { - return $this->borderPosition; - } - public function setFields($fields) - { - $this->fields = $fields; - } - public function getFields() - { - return $this->fields; - } - public function setObjectId($objectId) - { - $this->objectId = $objectId; - } - public function getObjectId() - { - return $this->objectId; - } - /** - * @param Google_Service_Slides_TableBorderProperties - */ - public function setTableBorderProperties(Google_Service_Slides_TableBorderProperties $tableBorderProperties) - { - $this->tableBorderProperties = $tableBorderProperties; - } - /** - * @return Google_Service_Slides_TableBorderProperties - */ - public function getTableBorderProperties() - { - return $this->tableBorderProperties; - } - /** - * @param Google_Service_Slides_TableRange - */ - public function setTableRange(Google_Service_Slides_TableRange $tableRange) - { - $this->tableRange = $tableRange; - } - /** - * @return Google_Service_Slides_TableRange - */ - public function getTableRange() - { - return $this->tableRange; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/UpdateTableCellPropertiesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/UpdateTableCellPropertiesRequest.php deleted file mode 100644 index 275a7b9c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/UpdateTableCellPropertiesRequest.php +++ /dev/null @@ -1,71 +0,0 @@ -fields = $fields; - } - public function getFields() - { - return $this->fields; - } - public function setObjectId($objectId) - { - $this->objectId = $objectId; - } - public function getObjectId() - { - return $this->objectId; - } - /** - * @param Google_Service_Slides_TableCellProperties - */ - public function setTableCellProperties(Google_Service_Slides_TableCellProperties $tableCellProperties) - { - $this->tableCellProperties = $tableCellProperties; - } - /** - * @return Google_Service_Slides_TableCellProperties - */ - public function getTableCellProperties() - { - return $this->tableCellProperties; - } - /** - * @param Google_Service_Slides_TableRange - */ - public function setTableRange(Google_Service_Slides_TableRange $tableRange) - { - $this->tableRange = $tableRange; - } - /** - * @return Google_Service_Slides_TableRange - */ - public function getTableRange() - { - return $this->tableRange; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/UpdateTableColumnPropertiesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/UpdateTableColumnPropertiesRequest.php deleted file mode 100644 index 5055c7a8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/UpdateTableColumnPropertiesRequest.php +++ /dev/null @@ -1,65 +0,0 @@ -columnIndices = $columnIndices; - } - public function getColumnIndices() - { - return $this->columnIndices; - } - public function setFields($fields) - { - $this->fields = $fields; - } - public function getFields() - { - return $this->fields; - } - public function setObjectId($objectId) - { - $this->objectId = $objectId; - } - public function getObjectId() - { - return $this->objectId; - } - /** - * @param Google_Service_Slides_TableColumnProperties - */ - public function setTableColumnProperties(Google_Service_Slides_TableColumnProperties $tableColumnProperties) - { - $this->tableColumnProperties = $tableColumnProperties; - } - /** - * @return Google_Service_Slides_TableColumnProperties - */ - public function getTableColumnProperties() - { - return $this->tableColumnProperties; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/UpdateTableRowPropertiesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/UpdateTableRowPropertiesRequest.php deleted file mode 100644 index b17cf4e9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/UpdateTableRowPropertiesRequest.php +++ /dev/null @@ -1,65 +0,0 @@ -fields = $fields; - } - public function getFields() - { - return $this->fields; - } - public function setObjectId($objectId) - { - $this->objectId = $objectId; - } - public function getObjectId() - { - return $this->objectId; - } - public function setRowIndices($rowIndices) - { - $this->rowIndices = $rowIndices; - } - public function getRowIndices() - { - return $this->rowIndices; - } - /** - * @param Google_Service_Slides_TableRowProperties - */ - public function setTableRowProperties(Google_Service_Slides_TableRowProperties $tableRowProperties) - { - $this->tableRowProperties = $tableRowProperties; - } - /** - * @return Google_Service_Slides_TableRowProperties - */ - public function getTableRowProperties() - { - return $this->tableRowProperties; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/UpdateTextStyleRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/UpdateTextStyleRequest.php deleted file mode 100644 index 293d7a64..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/UpdateTextStyleRequest.php +++ /dev/null @@ -1,87 +0,0 @@ -cellLocation = $cellLocation; - } - /** - * @return Google_Service_Slides_TableCellLocation - */ - public function getCellLocation() - { - return $this->cellLocation; - } - public function setFields($fields) - { - $this->fields = $fields; - } - public function getFields() - { - return $this->fields; - } - public function setObjectId($objectId) - { - $this->objectId = $objectId; - } - public function getObjectId() - { - return $this->objectId; - } - /** - * @param Google_Service_Slides_TextStyle - */ - public function setStyle(Google_Service_Slides_TextStyle $style) - { - $this->style = $style; - } - /** - * @return Google_Service_Slides_TextStyle - */ - public function getStyle() - { - return $this->style; - } - /** - * @param Google_Service_Slides_Range - */ - public function setTextRange(Google_Service_Slides_Range $textRange) - { - $this->textRange = $textRange; - } - /** - * @return Google_Service_Slides_Range - */ - public function getTextRange() - { - return $this->textRange; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/UpdateVideoPropertiesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/UpdateVideoPropertiesRequest.php deleted file mode 100644 index f72585fa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/UpdateVideoPropertiesRequest.php +++ /dev/null @@ -1,55 +0,0 @@ -fields = $fields; - } - public function getFields() - { - return $this->fields; - } - public function setObjectId($objectId) - { - $this->objectId = $objectId; - } - public function getObjectId() - { - return $this->objectId; - } - /** - * @param Google_Service_Slides_VideoProperties - */ - public function setVideoProperties(Google_Service_Slides_VideoProperties $videoProperties) - { - $this->videoProperties = $videoProperties; - } - /** - * @return Google_Service_Slides_VideoProperties - */ - public function getVideoProperties() - { - return $this->videoProperties; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Video.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Video.php deleted file mode 100644 index 3c59dfec..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/Video.php +++ /dev/null @@ -1,64 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setSource($source) - { - $this->source = $source; - } - public function getSource() - { - return $this->source; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } - /** - * @param Google_Service_Slides_VideoProperties - */ - public function setVideoProperties(Google_Service_Slides_VideoProperties $videoProperties) - { - $this->videoProperties = $videoProperties; - } - /** - * @return Google_Service_Slides_VideoProperties - */ - public function getVideoProperties() - { - return $this->videoProperties; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/VideoProperties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/VideoProperties.php deleted file mode 100644 index b4a844b1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/VideoProperties.php +++ /dev/null @@ -1,73 +0,0 @@ -autoPlay = $autoPlay; - } - public function getAutoPlay() - { - return $this->autoPlay; - } - public function setEnd($end) - { - $this->end = $end; - } - public function getEnd() - { - return $this->end; - } - public function setMute($mute) - { - $this->mute = $mute; - } - public function getMute() - { - return $this->mute; - } - /** - * @param Google_Service_Slides_Outline - */ - public function setOutline(Google_Service_Slides_Outline $outline) - { - $this->outline = $outline; - } - /** - * @return Google_Service_Slides_Outline - */ - public function getOutline() - { - return $this->outline; - } - public function setStart($start) - { - $this->start = $start; - } - public function getStart() - { - return $this->start; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/WeightedFontFamily.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/WeightedFontFamily.php deleted file mode 100644 index c3e678de..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/WeightedFontFamily.php +++ /dev/null @@ -1,39 +0,0 @@ -fontFamily = $fontFamily; - } - public function getFontFamily() - { - return $this->fontFamily; - } - public function setWeight($weight) - { - $this->weight = $weight; - } - public function getWeight() - { - return $this->weight; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/WordArt.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/WordArt.php deleted file mode 100644 index 3168548d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/WordArt.php +++ /dev/null @@ -1,30 +0,0 @@ -renderedText = $renderedText; - } - public function getRenderedText() - { - return $this->renderedText; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/WriteControl.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/WriteControl.php deleted file mode 100644 index 85849c93..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Slides/WriteControl.php +++ /dev/null @@ -1,30 +0,0 @@ -requiredRevisionId = $requiredRevisionId; - } - public function getRequiredRevisionId() - { - return $this->requiredRevisionId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner.php deleted file mode 100644 index f2355c61..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner.php +++ /dev/null @@ -1,719 +0,0 @@ - - * Cloud Spanner is a managed, mission-critical, globally consistent and - * scalable relational database service.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Spanner extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** Administer your Spanner databases. */ - const SPANNER_ADMIN = - "https://www.googleapis.com/auth/spanner.admin"; - /** View and manage the contents of your Spanner databases. */ - const SPANNER_DATA = - "https://www.googleapis.com/auth/spanner.data"; - - public $projects_instanceConfigs; - public $projects_instances; - public $projects_instances_backups; - public $projects_instances_backups_operations; - public $projects_instances_databases; - public $projects_instances_databases_operations; - public $projects_instances_databases_sessions; - public $projects_instances_operations; - - /** - * Constructs the internal representation of the Spanner service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://spanner.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'spanner'; - - $this->projects_instanceConfigs = new Google_Service_Spanner_Resource_ProjectsInstanceConfigs( - $this, - $this->serviceName, - 'instanceConfigs', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/instanceConfigs', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->projects_instances = new Google_Service_Spanner_Resource_ProjectsInstances( - $this, - $this->serviceName, - 'instances', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/instances', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'fieldMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'getIamPolicy' => array( - 'path' => 'v1/{+resource}:getIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/instances', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setIamPolicy' => array( - 'path' => 'v1/{+resource}:setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => 'v1/{+resource}:testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_instances_backups = new Google_Service_Spanner_Resource_ProjectsInstancesBackups( - $this, - $this->serviceName, - 'backups', - array( - 'methods' => array( - 'getIamPolicy' => array( - 'path' => 'v1/{+resource}:getIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setIamPolicy' => array( - 'path' => 'v1/{+resource}:setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => 'v1/{+resource}:testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_instances_backups_operations = new Google_Service_Spanner_Resource_ProjectsInstancesBackupsOperations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'cancel' => array( - 'path' => 'v1/{+name}:cancel', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->projects_instances_databases = new Google_Service_Spanner_Resource_ProjectsInstancesDatabases( - $this, - $this->serviceName, - 'databases', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/databases', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'dropDatabase' => array( - 'path' => 'v1/{+database}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'database' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getDdl' => array( - 'path' => 'v1/{+database}/ddl', - 'httpMethod' => 'GET', - 'parameters' => array( - 'database' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getIamPolicy' => array( - 'path' => 'v1/{+resource}:getIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/databases', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'setIamPolicy' => array( - 'path' => 'v1/{+resource}:setIamPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'testIamPermissions' => array( - 'path' => 'v1/{+resource}:testIamPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resource' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'updateDdl' => array( - 'path' => 'v1/{+database}/ddl', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'database' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_instances_databases_operations = new Google_Service_Spanner_Resource_ProjectsInstancesDatabasesOperations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'cancel' => array( - 'path' => 'v1/{+name}:cancel', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_instances_databases_sessions = new Google_Service_Spanner_Resource_ProjectsInstancesDatabasesSessions( - $this, - $this->serviceName, - 'sessions', - array( - 'methods' => array( - 'batchCreate' => array( - 'path' => 'v1/{+database}/sessions:batchCreate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'database' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'beginTransaction' => array( - 'path' => 'v1/{+session}:beginTransaction', - 'httpMethod' => 'POST', - 'parameters' => array( - 'session' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'commit' => array( - 'path' => 'v1/{+session}:commit', - 'httpMethod' => 'POST', - 'parameters' => array( - 'session' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'create' => array( - 'path' => 'v1/{+database}/sessions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'database' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'executeBatchDml' => array( - 'path' => 'v1/{+session}:executeBatchDml', - 'httpMethod' => 'POST', - 'parameters' => array( - 'session' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'executeSql' => array( - 'path' => 'v1/{+session}:executeSql', - 'httpMethod' => 'POST', - 'parameters' => array( - 'session' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'executeStreamingSql' => array( - 'path' => 'v1/{+session}:executeStreamingSql', - 'httpMethod' => 'POST', - 'parameters' => array( - 'session' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+database}/sessions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'database' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'partitionQuery' => array( - 'path' => 'v1/{+session}:partitionQuery', - 'httpMethod' => 'POST', - 'parameters' => array( - 'session' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'partitionRead' => array( - 'path' => 'v1/{+session}:partitionRead', - 'httpMethod' => 'POST', - 'parameters' => array( - 'session' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'read' => array( - 'path' => 'v1/{+session}:read', - 'httpMethod' => 'POST', - 'parameters' => array( - 'session' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'rollback' => array( - 'path' => 'v1/{+session}:rollback', - 'httpMethod' => 'POST', - 'parameters' => array( - 'session' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'streamingRead' => array( - 'path' => 'v1/{+session}:streamingRead', - 'httpMethod' => 'POST', - 'parameters' => array( - 'session' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_instances_operations = new Google_Service_Spanner_Resource_ProjectsInstancesOperations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'cancel' => array( - 'path' => 'v1/{+name}:cancel', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/BatchCreateSessionsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/BatchCreateSessionsRequest.php deleted file mode 100644 index 97b719ba..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/BatchCreateSessionsRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -sessionCount = $sessionCount; - } - public function getSessionCount() - { - return $this->sessionCount; - } - /** - * @param Google_Service_Spanner_Session - */ - public function setSessionTemplate(Google_Service_Spanner_Session $sessionTemplate) - { - $this->sessionTemplate = $sessionTemplate; - } - /** - * @return Google_Service_Spanner_Session - */ - public function getSessionTemplate() - { - return $this->sessionTemplate; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/BatchCreateSessionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/BatchCreateSessionsResponse.php deleted file mode 100644 index 6de9e0ec..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/BatchCreateSessionsResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -session = $session; - } - /** - * @return Google_Service_Spanner_Session - */ - public function getSession() - { - return $this->session; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/BeginTransactionRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/BeginTransactionRequest.php deleted file mode 100644 index 9ef85385..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/BeginTransactionRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -options = $options; - } - /** - * @return Google_Service_Spanner_TransactionOptions - */ - public function getOptions() - { - return $this->options; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Binding.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Binding.php deleted file mode 100644 index 185f0ff0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Binding.php +++ /dev/null @@ -1,56 +0,0 @@ -condition = $condition; - } - /** - * @return Google_Service_Spanner_Expr - */ - public function getCondition() - { - return $this->condition; - } - public function setMembers($members) - { - $this->members = $members; - } - public function getMembers() - { - return $this->members; - } - public function setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/ChildLink.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/ChildLink.php deleted file mode 100644 index 26313350..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/ChildLink.php +++ /dev/null @@ -1,48 +0,0 @@ -childIndex = $childIndex; - } - public function getChildIndex() - { - return $this->childIndex; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setVariable($variable) - { - $this->variable = $variable; - } - public function getVariable() - { - return $this->variable; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/CommitRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/CommitRequest.php deleted file mode 100644 index c7d28f93..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/CommitRequest.php +++ /dev/null @@ -1,63 +0,0 @@ -mutations = $mutations; - } - /** - * @return Google_Service_Spanner_Mutation - */ - public function getMutations() - { - return $this->mutations; - } - /** - * @param Google_Service_Spanner_TransactionOptions - */ - public function setSingleUseTransaction(Google_Service_Spanner_TransactionOptions $singleUseTransaction) - { - $this->singleUseTransaction = $singleUseTransaction; - } - /** - * @return Google_Service_Spanner_TransactionOptions - */ - public function getSingleUseTransaction() - { - return $this->singleUseTransaction; - } - public function setTransactionId($transactionId) - { - $this->transactionId = $transactionId; - } - public function getTransactionId() - { - return $this->transactionId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/CommitResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/CommitResponse.php deleted file mode 100644 index 73984c2f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/CommitResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -commitTimestamp = $commitTimestamp; - } - public function getCommitTimestamp() - { - return $this->commitTimestamp; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/CreateDatabaseMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/CreateDatabaseMetadata.php deleted file mode 100644 index d87965d3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/CreateDatabaseMetadata.php +++ /dev/null @@ -1,30 +0,0 @@ -database = $database; - } - public function getDatabase() - { - return $this->database; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/CreateDatabaseRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/CreateDatabaseRequest.php deleted file mode 100644 index cec1b15a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/CreateDatabaseRequest.php +++ /dev/null @@ -1,40 +0,0 @@ -createStatement = $createStatement; - } - public function getCreateStatement() - { - return $this->createStatement; - } - public function setExtraStatements($extraStatements) - { - $this->extraStatements = $extraStatements; - } - public function getExtraStatements() - { - return $this->extraStatements; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/CreateInstanceMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/CreateInstanceMetadata.php deleted file mode 100644 index 37b992a9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/CreateInstanceMetadata.php +++ /dev/null @@ -1,64 +0,0 @@ -cancelTime = $cancelTime; - } - public function getCancelTime() - { - return $this->cancelTime; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - /** - * @param Google_Service_Spanner_Instance - */ - public function setInstance(Google_Service_Spanner_Instance $instance) - { - $this->instance = $instance; - } - /** - * @return Google_Service_Spanner_Instance - */ - public function getInstance() - { - return $this->instance; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/CreateInstanceRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/CreateInstanceRequest.php deleted file mode 100644 index 0a19a4e6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/CreateInstanceRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -instance = $instance; - } - /** - * @return Google_Service_Spanner_Instance - */ - public function getInstance() - { - return $this->instance; - } - public function setInstanceId($instanceId) - { - $this->instanceId = $instanceId; - } - public function getInstanceId() - { - return $this->instanceId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/CreateSessionRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/CreateSessionRequest.php deleted file mode 100644 index c5498b78..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/CreateSessionRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -session = $session; - } - /** - * @return Google_Service_Spanner_Session - */ - public function getSession() - { - return $this->session; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Database.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Database.php deleted file mode 100644 index 3497612a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Database.php +++ /dev/null @@ -1,39 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Delete.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Delete.php deleted file mode 100644 index 279a0cf2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Delete.php +++ /dev/null @@ -1,46 +0,0 @@ -keySet = $keySet; - } - /** - * @return Google_Service_Spanner_KeySet - */ - public function getKeySet() - { - return $this->keySet; - } - public function setTable($table) - { - $this->table = $table; - } - public function getTable() - { - return $this->table; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/ExecuteBatchDmlRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/ExecuteBatchDmlRequest.php deleted file mode 100644 index a171f68d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/ExecuteBatchDmlRequest.php +++ /dev/null @@ -1,63 +0,0 @@ -seqno = $seqno; - } - public function getSeqno() - { - return $this->seqno; - } - /** - * @param Google_Service_Spanner_Statement - */ - public function setStatements($statements) - { - $this->statements = $statements; - } - /** - * @return Google_Service_Spanner_Statement - */ - public function getStatements() - { - return $this->statements; - } - /** - * @param Google_Service_Spanner_TransactionSelector - */ - public function setTransaction(Google_Service_Spanner_TransactionSelector $transaction) - { - $this->transaction = $transaction; - } - /** - * @return Google_Service_Spanner_TransactionSelector - */ - public function getTransaction() - { - return $this->transaction; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/ExecuteBatchDmlResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/ExecuteBatchDmlResponse.php deleted file mode 100644 index 3971928e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/ExecuteBatchDmlResponse.php +++ /dev/null @@ -1,54 +0,0 @@ -resultSets = $resultSets; - } - /** - * @return Google_Service_Spanner_ResultSet - */ - public function getResultSets() - { - return $this->resultSets; - } - /** - * @param Google_Service_Spanner_Status - */ - public function setStatus(Google_Service_Spanner_Status $status) - { - $this->status = $status; - } - /** - * @return Google_Service_Spanner_Status - */ - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/ExecuteSqlRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/ExecuteSqlRequest.php deleted file mode 100644 index 97691b7f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/ExecuteSqlRequest.php +++ /dev/null @@ -1,107 +0,0 @@ -paramTypes = $paramTypes; - } - /** - * @return Google_Service_Spanner_Type - */ - public function getParamTypes() - { - return $this->paramTypes; - } - public function setParams($params) - { - $this->params = $params; - } - public function getParams() - { - return $this->params; - } - public function setPartitionToken($partitionToken) - { - $this->partitionToken = $partitionToken; - } - public function getPartitionToken() - { - return $this->partitionToken; - } - public function setQueryMode($queryMode) - { - $this->queryMode = $queryMode; - } - public function getQueryMode() - { - return $this->queryMode; - } - public function setResumeToken($resumeToken) - { - $this->resumeToken = $resumeToken; - } - public function getResumeToken() - { - return $this->resumeToken; - } - public function setSeqno($seqno) - { - $this->seqno = $seqno; - } - public function getSeqno() - { - return $this->seqno; - } - public function setSql($sql) - { - $this->sql = $sql; - } - public function getSql() - { - return $this->sql; - } - /** - * @param Google_Service_Spanner_TransactionSelector - */ - public function setTransaction(Google_Service_Spanner_TransactionSelector $transaction) - { - $this->transaction = $transaction; - } - /** - * @return Google_Service_Spanner_TransactionSelector - */ - public function getTransaction() - { - return $this->transaction; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Expr.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Expr.php deleted file mode 100644 index fa2ec4d0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Expr.php +++ /dev/null @@ -1,57 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setExpression($expression) - { - $this->expression = $expression; - } - public function getExpression() - { - return $this->expression; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Field.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Field.php deleted file mode 100644 index 3da2de98..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Field.php +++ /dev/null @@ -1,46 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Spanner_Type - */ - public function setType(Google_Service_Spanner_Type $type) - { - $this->type = $type; - } - /** - * @return Google_Service_Spanner_Type - */ - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/GetDatabaseDdlResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/GetDatabaseDdlResponse.php deleted file mode 100644 index 6671b119..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/GetDatabaseDdlResponse.php +++ /dev/null @@ -1,31 +0,0 @@ -statements = $statements; - } - public function getStatements() - { - return $this->statements; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/GetIamPolicyRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/GetIamPolicyRequest.php deleted file mode 100644 index 9aa04e6b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/GetIamPolicyRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -options = $options; - } - /** - * @return Google_Service_Spanner_GetPolicyOptions - */ - public function getOptions() - { - return $this->options; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/GetPolicyOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/GetPolicyOptions.php deleted file mode 100644 index 570e0922..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/GetPolicyOptions.php +++ /dev/null @@ -1,30 +0,0 @@ -requestedPolicyVersion = $requestedPolicyVersion; - } - public function getRequestedPolicyVersion() - { - return $this->requestedPolicyVersion; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Instance.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Instance.php deleted file mode 100644 index d7d3e039..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Instance.php +++ /dev/null @@ -1,85 +0,0 @@ -config = $config; - } - public function getConfig() - { - return $this->config; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setEndpointUris($endpointUris) - { - $this->endpointUris = $endpointUris; - } - public function getEndpointUris() - { - return $this->endpointUris; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNodeCount($nodeCount) - { - $this->nodeCount = $nodeCount; - } - public function getNodeCount() - { - return $this->nodeCount; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/InstanceConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/InstanceConfig.php deleted file mode 100644 index efc1eb94..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/InstanceConfig.php +++ /dev/null @@ -1,56 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Spanner_ReplicaInfo - */ - public function setReplicas($replicas) - { - $this->replicas = $replicas; - } - /** - * @return Google_Service_Spanner_ReplicaInfo - */ - public function getReplicas() - { - return $this->replicas; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/KeyRange.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/KeyRange.php deleted file mode 100644 index 32e1794a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/KeyRange.php +++ /dev/null @@ -1,58 +0,0 @@ -endClosed = $endClosed; - } - public function getEndClosed() - { - return $this->endClosed; - } - public function setEndOpen($endOpen) - { - $this->endOpen = $endOpen; - } - public function getEndOpen() - { - return $this->endOpen; - } - public function setStartClosed($startClosed) - { - $this->startClosed = $startClosed; - } - public function getStartClosed() - { - return $this->startClosed; - } - public function setStartOpen($startOpen) - { - $this->startOpen = $startOpen; - } - public function getStartOpen() - { - return $this->startOpen; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/KeySet.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/KeySet.php deleted file mode 100644 index d20f33a3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/KeySet.php +++ /dev/null @@ -1,56 +0,0 @@ -all = $all; - } - public function getAll() - { - return $this->all; - } - public function setKeys($keys) - { - $this->keys = $keys; - } - public function getKeys() - { - return $this->keys; - } - /** - * @param Google_Service_Spanner_KeyRange - */ - public function setRanges($ranges) - { - $this->ranges = $ranges; - } - /** - * @return Google_Service_Spanner_KeyRange - */ - public function getRanges() - { - return $this->ranges; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/ListDatabasesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/ListDatabasesResponse.php deleted file mode 100644 index e4acf3ce..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/ListDatabasesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -databases = $databases; - } - /** - * @return Google_Service_Spanner_Database - */ - public function getDatabases() - { - return $this->databases; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/ListInstanceConfigsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/ListInstanceConfigsResponse.php deleted file mode 100644 index 16da3545..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/ListInstanceConfigsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -instanceConfigs = $instanceConfigs; - } - /** - * @return Google_Service_Spanner_InstanceConfig - */ - public function getInstanceConfigs() - { - return $this->instanceConfigs; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/ListInstancesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/ListInstancesResponse.php deleted file mode 100644 index 08df0fed..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/ListInstancesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -instances = $instances; - } - /** - * @return Google_Service_Spanner_Instance - */ - public function getInstances() - { - return $this->instances; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/ListOperationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/ListOperationsResponse.php deleted file mode 100644 index 181b8e21..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/ListOperationsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Spanner_Operation - */ - public function setOperations($operations) - { - $this->operations = $operations; - } - /** - * @return Google_Service_Spanner_Operation - */ - public function getOperations() - { - return $this->operations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/ListSessionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/ListSessionsResponse.php deleted file mode 100644 index 0c77b185..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/ListSessionsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Spanner_Session - */ - public function setSessions($sessions) - { - $this->sessions = $sessions; - } - /** - * @return Google_Service_Spanner_Session - */ - public function getSessions() - { - return $this->sessions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Mutation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Mutation.php deleted file mode 100644 index fb51516b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Mutation.php +++ /dev/null @@ -1,101 +0,0 @@ -delete = $delete; - } - /** - * @return Google_Service_Spanner_Delete - */ - public function getDelete() - { - return $this->delete; - } - /** - * @param Google_Service_Spanner_Write - */ - public function setInsert(Google_Service_Spanner_Write $insert) - { - $this->insert = $insert; - } - /** - * @return Google_Service_Spanner_Write - */ - public function getInsert() - { - return $this->insert; - } - /** - * @param Google_Service_Spanner_Write - */ - public function setInsertOrUpdate(Google_Service_Spanner_Write $insertOrUpdate) - { - $this->insertOrUpdate = $insertOrUpdate; - } - /** - * @return Google_Service_Spanner_Write - */ - public function getInsertOrUpdate() - { - return $this->insertOrUpdate; - } - /** - * @param Google_Service_Spanner_Write - */ - public function setReplace(Google_Service_Spanner_Write $replace) - { - $this->replace = $replace; - } - /** - * @return Google_Service_Spanner_Write - */ - public function getReplace() - { - return $this->replace; - } - /** - * @param Google_Service_Spanner_Write - */ - public function setUpdate(Google_Service_Spanner_Write $update) - { - $this->update = $update; - } - /** - * @return Google_Service_Spanner_Write - */ - public function getUpdate() - { - return $this->update; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Operation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Operation.php deleted file mode 100644 index f9829c9e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Operation.php +++ /dev/null @@ -1,73 +0,0 @@ -done = $done; - } - public function getDone() - { - return $this->done; - } - /** - * @param Google_Service_Spanner_Status - */ - public function setError(Google_Service_Spanner_Status $error) - { - $this->error = $error; - } - /** - * @return Google_Service_Spanner_Status - */ - public function getError() - { - return $this->error; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/PartialResultSet.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/PartialResultSet.php deleted file mode 100644 index ae2c1e91..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/PartialResultSet.php +++ /dev/null @@ -1,81 +0,0 @@ -chunkedValue = $chunkedValue; - } - public function getChunkedValue() - { - return $this->chunkedValue; - } - /** - * @param Google_Service_Spanner_ResultSetMetadata - */ - public function setMetadata(Google_Service_Spanner_ResultSetMetadata $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_Spanner_ResultSetMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - public function setResumeToken($resumeToken) - { - $this->resumeToken = $resumeToken; - } - public function getResumeToken() - { - return $this->resumeToken; - } - /** - * @param Google_Service_Spanner_ResultSetStats - */ - public function setStats(Google_Service_Spanner_ResultSetStats $stats) - { - $this->stats = $stats; - } - /** - * @return Google_Service_Spanner_ResultSetStats - */ - public function getStats() - { - return $this->stats; - } - public function setValues($values) - { - $this->values = $values; - } - public function getValues() - { - return $this->values; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Partition.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Partition.php deleted file mode 100644 index e08a9e5b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Partition.php +++ /dev/null @@ -1,30 +0,0 @@ -partitionToken = $partitionToken; - } - public function getPartitionToken() - { - return $this->partitionToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/PartitionOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/PartitionOptions.php deleted file mode 100644 index 83940b80..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/PartitionOptions.php +++ /dev/null @@ -1,39 +0,0 @@ -maxPartitions = $maxPartitions; - } - public function getMaxPartitions() - { - return $this->maxPartitions; - } - public function setPartitionSizeBytes($partitionSizeBytes) - { - $this->partitionSizeBytes = $partitionSizeBytes; - } - public function getPartitionSizeBytes() - { - return $this->partitionSizeBytes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/PartitionQueryRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/PartitionQueryRequest.php deleted file mode 100644 index d469a483..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/PartitionQueryRequest.php +++ /dev/null @@ -1,87 +0,0 @@ -paramTypes = $paramTypes; - } - /** - * @return Google_Service_Spanner_Type - */ - public function getParamTypes() - { - return $this->paramTypes; - } - public function setParams($params) - { - $this->params = $params; - } - public function getParams() - { - return $this->params; - } - /** - * @param Google_Service_Spanner_PartitionOptions - */ - public function setPartitionOptions(Google_Service_Spanner_PartitionOptions $partitionOptions) - { - $this->partitionOptions = $partitionOptions; - } - /** - * @return Google_Service_Spanner_PartitionOptions - */ - public function getPartitionOptions() - { - return $this->partitionOptions; - } - public function setSql($sql) - { - $this->sql = $sql; - } - public function getSql() - { - return $this->sql; - } - /** - * @param Google_Service_Spanner_TransactionSelector - */ - public function setTransaction(Google_Service_Spanner_TransactionSelector $transaction) - { - $this->transaction = $transaction; - } - /** - * @return Google_Service_Spanner_TransactionSelector - */ - public function getTransaction() - { - return $this->transaction; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/PartitionReadRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/PartitionReadRequest.php deleted file mode 100644 index d5283d54..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/PartitionReadRequest.php +++ /dev/null @@ -1,97 +0,0 @@ -columns = $columns; - } - public function getColumns() - { - return $this->columns; - } - public function setIndex($index) - { - $this->index = $index; - } - public function getIndex() - { - return $this->index; - } - /** - * @param Google_Service_Spanner_KeySet - */ - public function setKeySet(Google_Service_Spanner_KeySet $keySet) - { - $this->keySet = $keySet; - } - /** - * @return Google_Service_Spanner_KeySet - */ - public function getKeySet() - { - return $this->keySet; - } - /** - * @param Google_Service_Spanner_PartitionOptions - */ - public function setPartitionOptions(Google_Service_Spanner_PartitionOptions $partitionOptions) - { - $this->partitionOptions = $partitionOptions; - } - /** - * @return Google_Service_Spanner_PartitionOptions - */ - public function getPartitionOptions() - { - return $this->partitionOptions; - } - public function setTable($table) - { - $this->table = $table; - } - public function getTable() - { - return $this->table; - } - /** - * @param Google_Service_Spanner_TransactionSelector - */ - public function setTransaction(Google_Service_Spanner_TransactionSelector $transaction) - { - $this->transaction = $transaction; - } - /** - * @return Google_Service_Spanner_TransactionSelector - */ - public function getTransaction() - { - return $this->transaction; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/PartitionResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/PartitionResponse.php deleted file mode 100644 index 4b858891..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/PartitionResponse.php +++ /dev/null @@ -1,54 +0,0 @@ -partitions = $partitions; - } - /** - * @return Google_Service_Spanner_Partition - */ - public function getPartitions() - { - return $this->partitions; - } - /** - * @param Google_Service_Spanner_Transaction - */ - public function setTransaction(Google_Service_Spanner_Transaction $transaction) - { - $this->transaction = $transaction; - } - /** - * @return Google_Service_Spanner_Transaction - */ - public function getTransaction() - { - return $this->transaction; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/PartitionedDml.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/PartitionedDml.php deleted file mode 100644 index 5b0a8fd4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/PartitionedDml.php +++ /dev/null @@ -1,20 +0,0 @@ -childLinks = $childLinks; - } - /** - * @return Google_Service_Spanner_ChildLink - */ - public function getChildLinks() - { - return $this->childLinks; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setExecutionStats($executionStats) - { - $this->executionStats = $executionStats; - } - public function getExecutionStats() - { - return $this->executionStats; - } - public function setIndex($index) - { - $this->index = $index; - } - public function getIndex() - { - return $this->index; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - /** - * @param Google_Service_Spanner_ShortRepresentation - */ - public function setShortRepresentation(Google_Service_Spanner_ShortRepresentation $shortRepresentation) - { - $this->shortRepresentation = $shortRepresentation; - } - /** - * @return Google_Service_Spanner_ShortRepresentation - */ - public function getShortRepresentation() - { - return $this->shortRepresentation; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Policy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Policy.php deleted file mode 100644 index 98b29791..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Policy.php +++ /dev/null @@ -1,56 +0,0 @@ -bindings = $bindings; - } - /** - * @return Google_Service_Spanner_Binding - */ - public function getBindings() - { - return $this->bindings; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/QueryPlan.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/QueryPlan.php deleted file mode 100644 index b239bbf6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/QueryPlan.php +++ /dev/null @@ -1,38 +0,0 @@ -planNodes = $planNodes; - } - /** - * @return Google_Service_Spanner_PlanNode - */ - public function getPlanNodes() - { - return $this->planNodes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/ReadOnly.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/ReadOnly.php deleted file mode 100644 index 81c85ba6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/ReadOnly.php +++ /dev/null @@ -1,75 +0,0 @@ -exactStaleness = $exactStaleness; - } - public function getExactStaleness() - { - return $this->exactStaleness; - } - public function setMaxStaleness($maxStaleness) - { - $this->maxStaleness = $maxStaleness; - } - public function getMaxStaleness() - { - return $this->maxStaleness; - } - public function setMinReadTimestamp($minReadTimestamp) - { - $this->minReadTimestamp = $minReadTimestamp; - } - public function getMinReadTimestamp() - { - return $this->minReadTimestamp; - } - public function setReadTimestamp($readTimestamp) - { - $this->readTimestamp = $readTimestamp; - } - public function getReadTimestamp() - { - return $this->readTimestamp; - } - public function setReturnReadTimestamp($returnReadTimestamp) - { - $this->returnReadTimestamp = $returnReadTimestamp; - } - public function getReturnReadTimestamp() - { - return $this->returnReadTimestamp; - } - public function setStrong($strong) - { - $this->strong = $strong; - } - public function getStrong() - { - return $this->strong; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/ReadRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/ReadRequest.php deleted file mode 100644 index c2cfc5e3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/ReadRequest.php +++ /dev/null @@ -1,108 +0,0 @@ -columns = $columns; - } - public function getColumns() - { - return $this->columns; - } - public function setIndex($index) - { - $this->index = $index; - } - public function getIndex() - { - return $this->index; - } - /** - * @param Google_Service_Spanner_KeySet - */ - public function setKeySet(Google_Service_Spanner_KeySet $keySet) - { - $this->keySet = $keySet; - } - /** - * @return Google_Service_Spanner_KeySet - */ - public function getKeySet() - { - return $this->keySet; - } - public function setLimit($limit) - { - $this->limit = $limit; - } - public function getLimit() - { - return $this->limit; - } - public function setPartitionToken($partitionToken) - { - $this->partitionToken = $partitionToken; - } - public function getPartitionToken() - { - return $this->partitionToken; - } - public function setResumeToken($resumeToken) - { - $this->resumeToken = $resumeToken; - } - public function getResumeToken() - { - return $this->resumeToken; - } - public function setTable($table) - { - $this->table = $table; - } - public function getTable() - { - return $this->table; - } - /** - * @param Google_Service_Spanner_TransactionSelector - */ - public function setTransaction(Google_Service_Spanner_TransactionSelector $transaction) - { - $this->transaction = $transaction; - } - /** - * @return Google_Service_Spanner_TransactionSelector - */ - public function getTransaction() - { - return $this->transaction; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/ReadWrite.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/ReadWrite.php deleted file mode 100644 index 2cf29836..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/ReadWrite.php +++ /dev/null @@ -1,20 +0,0 @@ -defaultLeaderLocation = $defaultLeaderLocation; - } - public function getDefaultLeaderLocation() - { - return $this->defaultLeaderLocation; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Resource/Projects.php deleted file mode 100644 index 04e83136..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Resource/Projects.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $spannerService = new Google_Service_Spanner(...); - * $projects = $spannerService->projects; - * - */ -class Google_Service_Spanner_Resource_Projects extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Resource/ProjectsInstanceConfigs.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Resource/ProjectsInstanceConfigs.php deleted file mode 100644 index 65cefa7e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Resource/ProjectsInstanceConfigs.php +++ /dev/null @@ -1,65 +0,0 @@ - - * $spannerService = new Google_Service_Spanner(...); - * $instanceConfigs = $spannerService->instanceConfigs; - * - */ -class Google_Service_Spanner_Resource_ProjectsInstanceConfigs extends Google_Service_Resource -{ - /** - * Gets information about a particular instance configuration. - * (instanceConfigs.get) - * - * @param string $name Required. The name of the requested instance - * configuration. Values are of the form `projects//instanceConfigs/`. - * @param array $optParams Optional parameters. - * @return Google_Service_Spanner_InstanceConfig - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Spanner_InstanceConfig"); - } - /** - * Lists the supported instance configurations for a given project. - * (instanceConfigs.listProjectsInstanceConfigs) - * - * @param string $parent Required. The name of the project for which a list of - * supported instance configurations is requested. Values are of the form - * `projects/`. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken If non-empty, `page_token` should contain a - * next_page_token from a previous ListInstanceConfigsResponse. - * @opt_param int pageSize Number of instance configurations to be returned in - * the response. If 0 or less, defaults to the server's maximum allowed page - * size. - * @return Google_Service_Spanner_ListInstanceConfigsResponse - */ - public function listProjectsInstanceConfigs($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Spanner_ListInstanceConfigsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Resource/ProjectsInstances.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Resource/ProjectsInstances.php deleted file mode 100644 index eea56c94..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Resource/ProjectsInstances.php +++ /dev/null @@ -1,258 +0,0 @@ - - * $spannerService = new Google_Service_Spanner(...); - * $instances = $spannerService->instances; - * - */ -class Google_Service_Spanner_Resource_ProjectsInstances extends Google_Service_Resource -{ - /** - * Creates an instance and begins preparing it to begin serving. The returned - * long-running operation can be used to track the progress of preparing the new - * instance. The instance name is assigned by the caller. If the named instance - * already exists, `CreateInstance` returns `ALREADY_EXISTS`. - * - * Immediately upon completion of this request: - * - * * The instance is readable via the API, with all requested attributes - * but no allocated resources. Its state is `CREATING`. - * - * Until completion of the returned operation: - * - * * Cancelling the operation renders the instance immediately unreadable - * via the API. * The instance can be deleted. * All other attempts to - * modify the instance are rejected. - * - * Upon completion of the returned operation: - * - * * Billing for all successfully-allocated resources begins (some types - * may have lower than the requested levels). * Databases can be created in - * the instance. * The instance's allocated resource levels are readable via - * the API. * The instance's state becomes `READY`. - * - * The returned long-running operation will have a name of the format - * `/operations/` and can be used to track creation of the instance. The - * metadata field type is CreateInstanceMetadata. The response field type is - * Instance, if successful. (instances.create) - * - * @param string $parent Required. The name of the project in which to create - * the instance. Values are of the form `projects/`. - * @param Google_Service_Spanner_CreateInstanceRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Spanner_Operation - */ - public function create($parent, Google_Service_Spanner_CreateInstanceRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Spanner_Operation"); - } - /** - * Deletes an instance. - * - * Immediately upon completion of the request: - * - * * Billing ceases for all of the instance's reserved resources. - * - * Soon afterward: - * - * * The instance and *all of its databases* immediately and irrevocably - * disappear from the API. All data in the databases is permanently deleted. - * (instances.delete) - * - * @param string $name Required. The name of the instance to be deleted. Values - * are of the form `projects//instances/` - * @param array $optParams Optional parameters. - * @return Google_Service_Spanner_SpannerEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Spanner_SpannerEmpty"); - } - /** - * Gets information about a particular instance. (instances.get) - * - * @param string $name Required. The name of the requested instance. Values are - * of the form `projects//instances/`. - * @param array $optParams Optional parameters. - * - * @opt_param string fieldMask If field_mask is present, specifies the subset of - * Instance fields that should be returned. If absent, all Instance fields are - * returned. - * @return Google_Service_Spanner_Instance - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Spanner_Instance"); - } - /** - * Gets the access control policy for an instance resource. Returns an empty - * policy if an instance exists but does not have a policy set. - * - * Authorization requires `spanner.instances.getIamPolicy` on resource. - * (instances.getIamPolicy) - * - * @param string $resource REQUIRED: The Cloud Spanner resource for which the - * policy is being retrieved. The format is `projects//instances/` for instance - * resources and `projects//instances//databases/` for database resources. - * @param Google_Service_Spanner_GetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Spanner_Policy - */ - public function getIamPolicy($resource, Google_Service_Spanner_GetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_Spanner_Policy"); - } - /** - * Lists all instances in the given project. (instances.listProjectsInstances) - * - * @param string $parent Required. The name of the project for which a list of - * instances is requested. Values are of the form `projects/`. - * @param array $optParams Optional parameters. - * - * @opt_param string filter An expression for filtering the results of the - * request. Filter rules are case insensitive. The fields eligible for filtering - * are: - * - * * `name` * `display_name` * `labels.key` where key is the name of a - * label - * - * Some examples of using filters are: - * - * * `name:*` --> The instance has a name. * `name:Howl` --> The instance's - * name contains the string "howl". * `name:HOWL` --> Equivalent to above. * - * `NAME:howl` --> Equivalent to above. * `labels.env:*` --> The instance has - * the label "env". * `labels.env:dev` --> The instance has the label "env" - * and the value of the label contains the string "dev". - * * `name:howl labels.env:dev` --> The instance's name contains "howl" and - * it has the label "env" with its value - * containing "dev". - * @opt_param string pageToken If non-empty, `page_token` should contain a - * next_page_token from a previous ListInstancesResponse. - * @opt_param int pageSize Number of instances to be returned in the response. - * If 0 or less, defaults to the server's maximum allowed page size. - * @return Google_Service_Spanner_ListInstancesResponse - */ - public function listProjectsInstances($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Spanner_ListInstancesResponse"); - } - /** - * Updates an instance, and begins allocating or releasing resources as - * requested. The returned long-running operation can be used to track the - * progress of updating the instance. If the named instance does not exist, - * returns `NOT_FOUND`. - * - * Immediately upon completion of this request: - * - * * For resource types for which a decrease in the instance's allocation - * has been requested, billing is based on the newly-requested level. - * - * Until completion of the returned operation: - * - * * Cancelling the operation sets its metadata's cancel_time, and begins - * restoring resources to their pre-request values. The operation is - * guaranteed to succeed at undoing all resource changes, after which point - * it terminates with a `CANCELLED` status. * All other attempts to modify the - * instance are rejected. * Reading the instance via the API continues to give - * the pre-request resource levels. - * - * Upon completion of the returned operation: - * - * * Billing begins for all successfully-allocated resources (some types - * may have lower than the requested levels). * All newly-reserved resources - * are available for serving the instance's tables. * The instance's new - * resource levels are readable via the API. - * - * The returned long-running operation will have a name of the format - * `/operations/` and can be used to track the instance modification. The - * metadata field type is UpdateInstanceMetadata. The response field type is - * Instance, if successful. - * - * Authorization requires `spanner.instances.update` permission on resource - * name. (instances.patch) - * - * @param string $name Required. A unique identifier for the instance, which - * cannot be changed after the instance is created. Values are of the form - * `projects//instances/a-z*[a-z0-9]`. The final segment of the name must be - * between 2 and 64 characters in length. - * @param Google_Service_Spanner_UpdateInstanceRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Spanner_Operation - */ - public function patch($name, Google_Service_Spanner_UpdateInstanceRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Spanner_Operation"); - } - /** - * Sets the access control policy on an instance resource. Replaces any existing - * policy. - * - * Authorization requires `spanner.instances.setIamPolicy` on resource. - * (instances.setIamPolicy) - * - * @param string $resource REQUIRED: The Cloud Spanner resource for which the - * policy is being set. The format is `projects//instances/` for instance - * resources and `projects//instances//databases/` for databases resources. - * @param Google_Service_Spanner_SetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Spanner_Policy - */ - public function setIamPolicy($resource, Google_Service_Spanner_SetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_Spanner_Policy"); - } - /** - * Returns permissions that the caller has on the specified instance resource. - * - * Attempting this RPC on a non-existent Cloud Spanner instance resource will - * result in a NOT_FOUND error if the user has `spanner.instances.list` - * permission on the containing Google Cloud Project. Otherwise returns an empty - * set of permissions. (instances.testIamPermissions) - * - * @param string $resource REQUIRED: The Cloud Spanner resource for which - * permissions are being tested. The format is `projects//instances/` for - * instance resources and `projects//instances//databases/` for database - * resources. - * @param Google_Service_Spanner_TestIamPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Spanner_TestIamPermissionsResponse - */ - public function testIamPermissions($resource, Google_Service_Spanner_TestIamPermissionsRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_Spanner_TestIamPermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Resource/ProjectsInstancesBackups.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Resource/ProjectsInstancesBackups.php deleted file mode 100644 index 79779d56..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Resource/ProjectsInstancesBackups.php +++ /dev/null @@ -1,90 +0,0 @@ - - * $spannerService = new Google_Service_Spanner(...); - * $backups = $spannerService->backups; - * - */ -class Google_Service_Spanner_Resource_ProjectsInstancesBackups extends Google_Service_Resource -{ - /** - * Gets the access control policy for a database resource. Returns an empty - * policy if a database exists but does not have a policy set. - * - * Authorization requires `spanner.databases.getIamPolicy` permission on - * resource. (backups.getIamPolicy) - * - * @param string $resource REQUIRED: The Cloud Spanner resource for which the - * policy is being retrieved. The format is `projects//instances/` for instance - * resources and `projects//instances//databases/` for database resources. - * @param Google_Service_Spanner_GetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Spanner_Policy - */ - public function getIamPolicy($resource, Google_Service_Spanner_GetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_Spanner_Policy"); - } - /** - * Sets the access control policy on a database resource. Replaces any existing - * policy. - * - * Authorization requires `spanner.databases.setIamPolicy` permission on - * resource. (backups.setIamPolicy) - * - * @param string $resource REQUIRED: The Cloud Spanner resource for which the - * policy is being set. The format is `projects//instances/` for instance - * resources and `projects//instances//databases/` for databases resources. - * @param Google_Service_Spanner_SetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Spanner_Policy - */ - public function setIamPolicy($resource, Google_Service_Spanner_SetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_Spanner_Policy"); - } - /** - * Returns permissions that the caller has on the specified database resource. - * - * Attempting this RPC on a non-existent Cloud Spanner database will result in a - * NOT_FOUND error if the user has `spanner.databases.list` permission on the - * containing Cloud Spanner instance. Otherwise returns an empty set of - * permissions. (backups.testIamPermissions) - * - * @param string $resource REQUIRED: The Cloud Spanner resource for which - * permissions are being tested. The format is `projects//instances/` for - * instance resources and `projects//instances//databases/` for database - * resources. - * @param Google_Service_Spanner_TestIamPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Spanner_TestIamPermissionsResponse - */ - public function testIamPermissions($resource, Google_Service_Spanner_TestIamPermissionsRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_Spanner_TestIamPermissionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Resource/ProjectsInstancesBackupsOperations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Resource/ProjectsInstancesBackupsOperations.php deleted file mode 100644 index 940f6c4a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Resource/ProjectsInstancesBackupsOperations.php +++ /dev/null @@ -1,107 +0,0 @@ - - * $spannerService = new Google_Service_Spanner(...); - * $operations = $spannerService->operations; - * - */ -class Google_Service_Spanner_Resource_ProjectsInstancesBackupsOperations extends Google_Service_Resource -{ - /** - * Starts asynchronous cancellation on a long-running operation. The server - * makes a best effort to cancel the operation, but success is not guaranteed. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or - * other methods to check whether the cancellation succeeded or whether the - * operation completed despite cancellation. On successful cancellation, the - * operation is not deleted; instead, it becomes an operation with an - * Operation.error value with a google.rpc.Status.code of 1, corresponding to - * `Code.CANCELLED`. (operations.cancel) - * - * @param string $name The name of the operation resource to be cancelled. - * @param array $optParams Optional parameters. - * @return Google_Service_Spanner_SpannerEmpty - */ - public function cancel($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('cancel', array($params), "Google_Service_Spanner_SpannerEmpty"); - } - /** - * Deletes a long-running operation. This method indicates that the client is no - * longer interested in the operation result. It does not cancel the operation. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. (operations.delete) - * - * @param string $name The name of the operation resource to be deleted. - * @param array $optParams Optional parameters. - * @return Google_Service_Spanner_SpannerEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Spanner_SpannerEmpty"); - } - /** - * Gets the latest state of a long-running operation. Clients can use this - * method to poll the operation result at intervals as recommended by the API - * service. (operations.get) - * - * @param string $name The name of the operation resource. - * @param array $optParams Optional parameters. - * @return Google_Service_Spanner_Operation - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Spanner_Operation"); - } - /** - * Lists operations that match the specified filter in the request. If the - * server doesn't support this method, it returns `UNIMPLEMENTED`. - * - * NOTE: the `name` binding allows API services to override the binding to use - * different resource name schemes, such as `users/operations`. To override the - * binding, API services can add a binding such as - * `"/v1/{name=users}/operations"` to their service configuration. For backwards - * compatibility, the default name includes the operations collection id, - * however overriding users must ensure the name binding is the parent resource, - * without the operations collection id. - * (operations.listProjectsInstancesBackupsOperations) - * - * @param string $name The name of the operation's parent resource. - * @param array $optParams Optional parameters. - * - * @opt_param string filter The standard list filter. - * @opt_param string pageToken The standard list page token. - * @opt_param int pageSize The standard list page size. - * @return Google_Service_Spanner_ListOperationsResponse - */ - public function listProjectsInstancesBackupsOperations($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Spanner_ListOperationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Resource/ProjectsInstancesDatabases.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Resource/ProjectsInstancesDatabases.php deleted file mode 100644 index c75899a9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Resource/ProjectsInstancesDatabases.php +++ /dev/null @@ -1,188 +0,0 @@ - - * $spannerService = new Google_Service_Spanner(...); - * $databases = $spannerService->databases; - * - */ -class Google_Service_Spanner_Resource_ProjectsInstancesDatabases extends Google_Service_Resource -{ - /** - * Creates a new Cloud Spanner database and starts to prepare it for serving. - * The returned long-running operation will have a name of the format - * `/operations/` and can be used to track preparation of the database. The - * metadata field type is CreateDatabaseMetadata. The response field type is - * Database, if successful. (databases.create) - * - * @param string $parent Required. The name of the instance that will serve the - * new database. Values are of the form `projects//instances/`. - * @param Google_Service_Spanner_CreateDatabaseRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Spanner_Operation - */ - public function create($parent, Google_Service_Spanner_CreateDatabaseRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Spanner_Operation"); - } - /** - * Drops (aka deletes) a Cloud Spanner database. (databases.dropDatabase) - * - * @param string $database Required. The database to be dropped. - * @param array $optParams Optional parameters. - * @return Google_Service_Spanner_SpannerEmpty - */ - public function dropDatabase($database, $optParams = array()) - { - $params = array('database' => $database); - $params = array_merge($params, $optParams); - return $this->call('dropDatabase', array($params), "Google_Service_Spanner_SpannerEmpty"); - } - /** - * Gets the state of a Cloud Spanner database. (databases.get) - * - * @param string $name Required. The name of the requested database. Values are - * of the form `projects//instances//databases/`. - * @param array $optParams Optional parameters. - * @return Google_Service_Spanner_Database - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Spanner_Database"); - } - /** - * Returns the schema of a Cloud Spanner database as a list of formatted DDL - * statements. This method does not show pending schema updates, those may be - * queried using the Operations API. (databases.getDdl) - * - * @param string $database Required. The database whose schema we wish to get. - * @param array $optParams Optional parameters. - * @return Google_Service_Spanner_GetDatabaseDdlResponse - */ - public function getDdl($database, $optParams = array()) - { - $params = array('database' => $database); - $params = array_merge($params, $optParams); - return $this->call('getDdl', array($params), "Google_Service_Spanner_GetDatabaseDdlResponse"); - } - /** - * Gets the access control policy for a database resource. Returns an empty - * policy if a database exists but does not have a policy set. - * - * Authorization requires `spanner.databases.getIamPolicy` permission on - * resource. (databases.getIamPolicy) - * - * @param string $resource REQUIRED: The Cloud Spanner resource for which the - * policy is being retrieved. The format is `projects//instances/` for instance - * resources and `projects//instances//databases/` for database resources. - * @param Google_Service_Spanner_GetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Spanner_Policy - */ - public function getIamPolicy($resource, Google_Service_Spanner_GetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_Spanner_Policy"); - } - /** - * Lists Cloud Spanner databases. (databases.listProjectsInstancesDatabases) - * - * @param string $parent Required. The instance whose databases should be - * listed. Values are of the form `projects//instances/`. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken If non-empty, `page_token` should contain a - * next_page_token from a previous ListDatabasesResponse. - * @opt_param int pageSize Number of databases to be returned in the response. - * If 0 or less, defaults to the server's maximum allowed page size. - * @return Google_Service_Spanner_ListDatabasesResponse - */ - public function listProjectsInstancesDatabases($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Spanner_ListDatabasesResponse"); - } - /** - * Sets the access control policy on a database resource. Replaces any existing - * policy. - * - * Authorization requires `spanner.databases.setIamPolicy` permission on - * resource. (databases.setIamPolicy) - * - * @param string $resource REQUIRED: The Cloud Spanner resource for which the - * policy is being set. The format is `projects//instances/` for instance - * resources and `projects//instances//databases/` for databases resources. - * @param Google_Service_Spanner_SetIamPolicyRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Spanner_Policy - */ - public function setIamPolicy($resource, Google_Service_Spanner_SetIamPolicyRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_Spanner_Policy"); - } - /** - * Returns permissions that the caller has on the specified database resource. - * - * Attempting this RPC on a non-existent Cloud Spanner database will result in a - * NOT_FOUND error if the user has `spanner.databases.list` permission on the - * containing Cloud Spanner instance. Otherwise returns an empty set of - * permissions. (databases.testIamPermissions) - * - * @param string $resource REQUIRED: The Cloud Spanner resource for which - * permissions are being tested. The format is `projects//instances/` for - * instance resources and `projects//instances//databases/` for database - * resources. - * @param Google_Service_Spanner_TestIamPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Spanner_TestIamPermissionsResponse - */ - public function testIamPermissions($resource, Google_Service_Spanner_TestIamPermissionsRequest $postBody, $optParams = array()) - { - $params = array('resource' => $resource, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_Spanner_TestIamPermissionsResponse"); - } - /** - * Updates the schema of a Cloud Spanner database by creating/altering/dropping - * tables, columns, indexes, etc. The returned long-running operation will have - * a name of the format `/operations/` and can be used to track execution of the - * schema change(s). The metadata field type is UpdateDatabaseDdlMetadata. The - * operation has no response. (databases.updateDdl) - * - * @param string $database Required. The database to update. - * @param Google_Service_Spanner_UpdateDatabaseDdlRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Spanner_Operation - */ - public function updateDdl($database, Google_Service_Spanner_UpdateDatabaseDdlRequest $postBody, $optParams = array()) - { - $params = array('database' => $database, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('updateDdl', array($params), "Google_Service_Spanner_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Resource/ProjectsInstancesDatabasesOperations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Resource/ProjectsInstancesDatabasesOperations.php deleted file mode 100644 index 93fefa02..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Resource/ProjectsInstancesDatabasesOperations.php +++ /dev/null @@ -1,107 +0,0 @@ - - * $spannerService = new Google_Service_Spanner(...); - * $operations = $spannerService->operations; - * - */ -class Google_Service_Spanner_Resource_ProjectsInstancesDatabasesOperations extends Google_Service_Resource -{ - /** - * Starts asynchronous cancellation on a long-running operation. The server - * makes a best effort to cancel the operation, but success is not guaranteed. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or - * other methods to check whether the cancellation succeeded or whether the - * operation completed despite cancellation. On successful cancellation, the - * operation is not deleted; instead, it becomes an operation with an - * Operation.error value with a google.rpc.Status.code of 1, corresponding to - * `Code.CANCELLED`. (operations.cancel) - * - * @param string $name The name of the operation resource to be cancelled. - * @param array $optParams Optional parameters. - * @return Google_Service_Spanner_SpannerEmpty - */ - public function cancel($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('cancel', array($params), "Google_Service_Spanner_SpannerEmpty"); - } - /** - * Deletes a long-running operation. This method indicates that the client is no - * longer interested in the operation result. It does not cancel the operation. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. (operations.delete) - * - * @param string $name The name of the operation resource to be deleted. - * @param array $optParams Optional parameters. - * @return Google_Service_Spanner_SpannerEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Spanner_SpannerEmpty"); - } - /** - * Gets the latest state of a long-running operation. Clients can use this - * method to poll the operation result at intervals as recommended by the API - * service. (operations.get) - * - * @param string $name The name of the operation resource. - * @param array $optParams Optional parameters. - * @return Google_Service_Spanner_Operation - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Spanner_Operation"); - } - /** - * Lists operations that match the specified filter in the request. If the - * server doesn't support this method, it returns `UNIMPLEMENTED`. - * - * NOTE: the `name` binding allows API services to override the binding to use - * different resource name schemes, such as `users/operations`. To override the - * binding, API services can add a binding such as - * `"/v1/{name=users}/operations"` to their service configuration. For backwards - * compatibility, the default name includes the operations collection id, - * however overriding users must ensure the name binding is the parent resource, - * without the operations collection id. - * (operations.listProjectsInstancesDatabasesOperations) - * - * @param string $name The name of the operation's parent resource. - * @param array $optParams Optional parameters. - * - * @opt_param int pageSize The standard list page size. - * @opt_param string filter The standard list filter. - * @opt_param string pageToken The standard list page token. - * @return Google_Service_Spanner_ListOperationsResponse - */ - public function listProjectsInstancesDatabasesOperations($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Spanner_ListOperationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Resource/ProjectsInstancesDatabasesSessions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Resource/ProjectsInstancesDatabasesSessions.php deleted file mode 100644 index 2aea80a2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Resource/ProjectsInstancesDatabasesSessions.php +++ /dev/null @@ -1,358 +0,0 @@ - - * $spannerService = new Google_Service_Spanner(...); - * $sessions = $spannerService->sessions; - * - */ -class Google_Service_Spanner_Resource_ProjectsInstancesDatabasesSessions extends Google_Service_Resource -{ - /** - * Creates multiple new sessions. - * - * This API can be used to initialize a session cache on the clients. See - * https://goo.gl/TgSFN2 for best practices on session cache management. - * (sessions.batchCreate) - * - * @param string $database Required. The database in which the new sessions are - * created. - * @param Google_Service_Spanner_BatchCreateSessionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Spanner_BatchCreateSessionsResponse - */ - public function batchCreate($database, Google_Service_Spanner_BatchCreateSessionsRequest $postBody, $optParams = array()) - { - $params = array('database' => $database, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('batchCreate', array($params), "Google_Service_Spanner_BatchCreateSessionsResponse"); - } - /** - * Begins a new transaction. This step can often be skipped: Read, ExecuteSql - * and Commit can begin a new transaction as a side-effect. - * (sessions.beginTransaction) - * - * @param string $session Required. The session in which the transaction runs. - * @param Google_Service_Spanner_BeginTransactionRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Spanner_Transaction - */ - public function beginTransaction($session, Google_Service_Spanner_BeginTransactionRequest $postBody, $optParams = array()) - { - $params = array('session' => $session, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('beginTransaction', array($params), "Google_Service_Spanner_Transaction"); - } - /** - * Commits a transaction. The request includes the mutations to be applied to - * rows in the database. - * - * `Commit` might return an `ABORTED` error. This can occur at any time; - * commonly, the cause is conflicts with concurrent transactions. However, it - * can also happen for a variety of other reasons. If `Commit` returns - * `ABORTED`, the caller should re-attempt the transaction from the beginning, - * re-using the same session. (sessions.commit) - * - * @param string $session Required. The session in which the transaction to be - * committed is running. - * @param Google_Service_Spanner_CommitRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Spanner_CommitResponse - */ - public function commit($session, Google_Service_Spanner_CommitRequest $postBody, $optParams = array()) - { - $params = array('session' => $session, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('commit', array($params), "Google_Service_Spanner_CommitResponse"); - } - /** - * Creates a new session. A session can be used to perform transactions that - * read and/or modify data in a Cloud Spanner database. Sessions are meant to be - * reused for many consecutive transactions. - * - * Sessions can only execute one transaction at a time. To execute multiple - * concurrent read-write/write-only transactions, create multiple sessions. Note - * that standalone reads and queries use a transaction internally, and count - * toward the one transaction limit. - * - * Active sessions use additional server resources, so it is a good idea to - * delete idle and unneeded sessions. Aside from explicit deletes, Cloud Spanner - * may delete sessions for which no operations are sent for more than an hour. - * If a session is deleted, requests to it return `NOT_FOUND`. - * - * Idle sessions can be kept alive by sending a trivial SQL query periodically, - * e.g., `"SELECT 1"`. (sessions.create) - * - * @param string $database Required. The database in which the new session is - * created. - * @param Google_Service_Spanner_CreateSessionRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Spanner_Session - */ - public function create($database, Google_Service_Spanner_CreateSessionRequest $postBody, $optParams = array()) - { - $params = array('database' => $database, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Spanner_Session"); - } - /** - * Ends a session, releasing server resources associated with it. This will - * asynchronously trigger cancellation of any operations that are running with - * this session. (sessions.delete) - * - * @param string $name Required. The name of the session to delete. - * @param array $optParams Optional parameters. - * @return Google_Service_Spanner_SpannerEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Spanner_SpannerEmpty"); - } - /** - * Executes a batch of SQL DML statements. This method allows many statements to - * be run with lower latency than submitting them sequentially with ExecuteSql. - * - * Statements are executed in sequential order. A request can succeed even if a - * statement fails. The ExecuteBatchDmlResponse.status field in the response - * provides information about the statement that failed. Clients must inspect - * this field to determine whether an error occurred. - * - * Execution stops after the first failed statement; the remaining statements - * are not executed. (sessions.executeBatchDml) - * - * @param string $session Required. The session in which the DML statements - * should be performed. - * @param Google_Service_Spanner_ExecuteBatchDmlRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Spanner_ExecuteBatchDmlResponse - */ - public function executeBatchDml($session, Google_Service_Spanner_ExecuteBatchDmlRequest $postBody, $optParams = array()) - { - $params = array('session' => $session, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('executeBatchDml', array($params), "Google_Service_Spanner_ExecuteBatchDmlResponse"); - } - /** - * Executes an SQL statement, returning all results in a single reply. This - * method cannot be used to return a result set larger than 10 MiB; if the query - * yields more data than that, the query fails with a `FAILED_PRECONDITION` - * error. - * - * Operations inside read-write transactions might return `ABORTED`. If this - * occurs, the application should restart the transaction from the beginning. - * See Transaction for more details. - * - * Larger result sets can be fetched in streaming fashion by calling - * ExecuteStreamingSql instead. (sessions.executeSql) - * - * @param string $session Required. The session in which the SQL query should be - * performed. - * @param Google_Service_Spanner_ExecuteSqlRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Spanner_ResultSet - */ - public function executeSql($session, Google_Service_Spanner_ExecuteSqlRequest $postBody, $optParams = array()) - { - $params = array('session' => $session, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('executeSql', array($params), "Google_Service_Spanner_ResultSet"); - } - /** - * Like ExecuteSql, except returns the result set as a stream. Unlike - * ExecuteSql, there is no limit on the size of the returned result set. - * However, no individual row in the result set can exceed 100 MiB, and no - * column value can exceed 10 MiB. (sessions.executeStreamingSql) - * - * @param string $session Required. The session in which the SQL query should be - * performed. - * @param Google_Service_Spanner_ExecuteSqlRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Spanner_PartialResultSet - */ - public function executeStreamingSql($session, Google_Service_Spanner_ExecuteSqlRequest $postBody, $optParams = array()) - { - $params = array('session' => $session, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('executeStreamingSql', array($params), "Google_Service_Spanner_PartialResultSet"); - } - /** - * Gets a session. Returns `NOT_FOUND` if the session does not exist. This is - * mainly useful for determining whether a session is still alive. - * (sessions.get) - * - * @param string $name Required. The name of the session to retrieve. - * @param array $optParams Optional parameters. - * @return Google_Service_Spanner_Session - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Spanner_Session"); - } - /** - * Lists all sessions in a given database. - * (sessions.listProjectsInstancesDatabasesSessions) - * - * @param string $database Required. The database in which to list sessions. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken If non-empty, `page_token` should contain a - * next_page_token from a previous ListSessionsResponse. - * @opt_param int pageSize Number of sessions to be returned in the response. If - * 0 or less, defaults to the server's maximum allowed page size. - * @opt_param string filter An expression for filtering the results of the - * request. Filter rules are case insensitive. The fields eligible for filtering - * are: - * - * * `labels.key` where key is the name of a label - * - * Some examples of using filters are: - * - * * `labels.env:*` --> The session has the label "env". * `labels.env:dev` - * --> The session has the label "env" and the value of - * the label contains the string "dev". - * @return Google_Service_Spanner_ListSessionsResponse - */ - public function listProjectsInstancesDatabasesSessions($database, $optParams = array()) - { - $params = array('database' => $database); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Spanner_ListSessionsResponse"); - } - /** - * Creates a set of partition tokens that can be used to execute a query - * operation in parallel. Each of the returned partition tokens can be used by - * ExecuteStreamingSql to specify a subset of the query result to read. The - * same session and read-only transaction must be used by the - * PartitionQueryRequest used to create the partition tokens and the - * ExecuteSqlRequests that use the partition tokens. - * - * Partition tokens become invalid when the session used to create them is - * deleted, is idle for too long, begins a new transaction, or becomes too old. - * When any of these happen, it is not possible to resume the query, and the - * whole operation must be restarted from the beginning. - * (sessions.partitionQuery) - * - * @param string $session Required. The session used to create the partitions. - * @param Google_Service_Spanner_PartitionQueryRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Spanner_PartitionResponse - */ - public function partitionQuery($session, Google_Service_Spanner_PartitionQueryRequest $postBody, $optParams = array()) - { - $params = array('session' => $session, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('partitionQuery', array($params), "Google_Service_Spanner_PartitionResponse"); - } - /** - * Creates a set of partition tokens that can be used to execute a read - * operation in parallel. Each of the returned partition tokens can be used by - * StreamingRead to specify a subset of the read result to read. The same - * session and read-only transaction must be used by the PartitionReadRequest - * used to create the partition tokens and the ReadRequests that use the - * partition tokens. There are no ordering guarantees on rows returned among - * the returned partition tokens, or even within each individual StreamingRead - * call issued with a partition_token. - * - * Partition tokens become invalid when the session used to create them is - * deleted, is idle for too long, begins a new transaction, or becomes too old. - * When any of these happen, it is not possible to resume the read, and the - * whole operation must be restarted from the beginning. - * (sessions.partitionRead) - * - * @param string $session Required. The session used to create the partitions. - * @param Google_Service_Spanner_PartitionReadRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Spanner_PartitionResponse - */ - public function partitionRead($session, Google_Service_Spanner_PartitionReadRequest $postBody, $optParams = array()) - { - $params = array('session' => $session, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('partitionRead', array($params), "Google_Service_Spanner_PartitionResponse"); - } - /** - * Reads rows from the database using key lookups and scans, as a simple - * key/value style alternative to ExecuteSql. This method cannot be used to - * return a result set larger than 10 MiB; if the read matches more data than - * that, the read fails with a `FAILED_PRECONDITION` error. - * - * Reads inside read-write transactions might return `ABORTED`. If this occurs, - * the application should restart the transaction from the beginning. See - * Transaction for more details. - * - * Larger result sets can be yielded in streaming fashion by calling - * StreamingRead instead. (sessions.read) - * - * @param string $session Required. The session in which the read should be - * performed. - * @param Google_Service_Spanner_ReadRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Spanner_ResultSet - */ - public function read($session, Google_Service_Spanner_ReadRequest $postBody, $optParams = array()) - { - $params = array('session' => $session, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('read', array($params), "Google_Service_Spanner_ResultSet"); - } - /** - * Rolls back a transaction, releasing any locks it holds. It is a good idea to - * call this for any transaction that includes one or more Read or ExecuteSql - * requests and ultimately decides not to commit. - * - * `Rollback` returns `OK` if it successfully aborts the transaction, the - * transaction was already aborted, or the transaction is not found. `Rollback` - * never returns `ABORTED`. (sessions.rollback) - * - * @param string $session Required. The session in which the transaction to roll - * back is running. - * @param Google_Service_Spanner_RollbackRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Spanner_SpannerEmpty - */ - public function rollback($session, Google_Service_Spanner_RollbackRequest $postBody, $optParams = array()) - { - $params = array('session' => $session, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('rollback', array($params), "Google_Service_Spanner_SpannerEmpty"); - } - /** - * Like Read, except returns the result set as a stream. Unlike Read, there is - * no limit on the size of the returned result set. However, no individual row - * in the result set can exceed 100 MiB, and no column value can exceed 10 MiB. - * (sessions.streamingRead) - * - * @param string $session Required. The session in which the read should be - * performed. - * @param Google_Service_Spanner_ReadRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Spanner_PartialResultSet - */ - public function streamingRead($session, Google_Service_Spanner_ReadRequest $postBody, $optParams = array()) - { - $params = array('session' => $session, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('streamingRead', array($params), "Google_Service_Spanner_PartialResultSet"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Resource/ProjectsInstancesOperations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Resource/ProjectsInstancesOperations.php deleted file mode 100644 index 9d2e3193..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Resource/ProjectsInstancesOperations.php +++ /dev/null @@ -1,107 +0,0 @@ - - * $spannerService = new Google_Service_Spanner(...); - * $operations = $spannerService->operations; - * - */ -class Google_Service_Spanner_Resource_ProjectsInstancesOperations extends Google_Service_Resource -{ - /** - * Starts asynchronous cancellation on a long-running operation. The server - * makes a best effort to cancel the operation, but success is not guaranteed. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or - * other methods to check whether the cancellation succeeded or whether the - * operation completed despite cancellation. On successful cancellation, the - * operation is not deleted; instead, it becomes an operation with an - * Operation.error value with a google.rpc.Status.code of 1, corresponding to - * `Code.CANCELLED`. (operations.cancel) - * - * @param string $name The name of the operation resource to be cancelled. - * @param array $optParams Optional parameters. - * @return Google_Service_Spanner_SpannerEmpty - */ - public function cancel($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('cancel', array($params), "Google_Service_Spanner_SpannerEmpty"); - } - /** - * Deletes a long-running operation. This method indicates that the client is no - * longer interested in the operation result. It does not cancel the operation. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. (operations.delete) - * - * @param string $name The name of the operation resource to be deleted. - * @param array $optParams Optional parameters. - * @return Google_Service_Spanner_SpannerEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Spanner_SpannerEmpty"); - } - /** - * Gets the latest state of a long-running operation. Clients can use this - * method to poll the operation result at intervals as recommended by the API - * service. (operations.get) - * - * @param string $name The name of the operation resource. - * @param array $optParams Optional parameters. - * @return Google_Service_Spanner_Operation - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Spanner_Operation"); - } - /** - * Lists operations that match the specified filter in the request. If the - * server doesn't support this method, it returns `UNIMPLEMENTED`. - * - * NOTE: the `name` binding allows API services to override the binding to use - * different resource name schemes, such as `users/operations`. To override the - * binding, API services can add a binding such as - * `"/v1/{name=users}/operations"` to their service configuration. For backwards - * compatibility, the default name includes the operations collection id, - * however overriding users must ensure the name binding is the parent resource, - * without the operations collection id. - * (operations.listProjectsInstancesOperations) - * - * @param string $name The name of the operation's parent resource. - * @param array $optParams Optional parameters. - * - * @opt_param string filter The standard list filter. - * @opt_param string pageToken The standard list page token. - * @opt_param int pageSize The standard list page size. - * @return Google_Service_Spanner_ListOperationsResponse - */ - public function listProjectsInstancesOperations($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Spanner_ListOperationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/ResultSet.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/ResultSet.php deleted file mode 100644 index 2625ee60..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/ResultSet.php +++ /dev/null @@ -1,63 +0,0 @@ -metadata = $metadata; - } - /** - * @return Google_Service_Spanner_ResultSetMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - public function setRows($rows) - { - $this->rows = $rows; - } - public function getRows() - { - return $this->rows; - } - /** - * @param Google_Service_Spanner_ResultSetStats - */ - public function setStats(Google_Service_Spanner_ResultSetStats $stats) - { - $this->stats = $stats; - } - /** - * @return Google_Service_Spanner_ResultSetStats - */ - public function getStats() - { - return $this->stats; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/ResultSetMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/ResultSetMetadata.php deleted file mode 100644 index 534cc832..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/ResultSetMetadata.php +++ /dev/null @@ -1,53 +0,0 @@ -rowType = $rowType; - } - /** - * @return Google_Service_Spanner_StructType - */ - public function getRowType() - { - return $this->rowType; - } - /** - * @param Google_Service_Spanner_Transaction - */ - public function setTransaction(Google_Service_Spanner_Transaction $transaction) - { - $this->transaction = $transaction; - } - /** - * @return Google_Service_Spanner_Transaction - */ - public function getTransaction() - { - return $this->transaction; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/ResultSetStats.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/ResultSetStats.php deleted file mode 100644 index db495115..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/ResultSetStats.php +++ /dev/null @@ -1,64 +0,0 @@ -queryPlan = $queryPlan; - } - /** - * @return Google_Service_Spanner_QueryPlan - */ - public function getQueryPlan() - { - return $this->queryPlan; - } - public function setQueryStats($queryStats) - { - $this->queryStats = $queryStats; - } - public function getQueryStats() - { - return $this->queryStats; - } - public function setRowCountExact($rowCountExact) - { - $this->rowCountExact = $rowCountExact; - } - public function getRowCountExact() - { - return $this->rowCountExact; - } - public function setRowCountLowerBound($rowCountLowerBound) - { - $this->rowCountLowerBound = $rowCountLowerBound; - } - public function getRowCountLowerBound() - { - return $this->rowCountLowerBound; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/RollbackRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/RollbackRequest.php deleted file mode 100644 index 5d962d34..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/RollbackRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -transactionId = $transactionId; - } - public function getTransactionId() - { - return $this->transactionId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Session.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Session.php deleted file mode 100644 index 041b8e03..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Session.php +++ /dev/null @@ -1,57 +0,0 @@ -approximateLastUseTime = $approximateLastUseTime; - } - public function getApproximateLastUseTime() - { - return $this->approximateLastUseTime; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/SetIamPolicyRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/SetIamPolicyRequest.php deleted file mode 100644 index 6423989a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/SetIamPolicyRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -policy = $policy; - } - /** - * @return Google_Service_Spanner_Policy - */ - public function getPolicy() - { - return $this->policy; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/ShortRepresentation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/ShortRepresentation.php deleted file mode 100644 index 0731a52f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/ShortRepresentation.php +++ /dev/null @@ -1,39 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setSubqueries($subqueries) - { - $this->subqueries = $subqueries; - } - public function getSubqueries() - { - return $this->subqueries; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/SpannerEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/SpannerEmpty.php deleted file mode 100644 index e847a2d3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/SpannerEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -paramTypes = $paramTypes; - } - /** - * @return Google_Service_Spanner_Type - */ - public function getParamTypes() - { - return $this->paramTypes; - } - public function setParams($params) - { - $this->params = $params; - } - public function getParams() - { - return $this->params; - } - public function setSql($sql) - { - $this->sql = $sql; - } - public function getSql() - { - return $this->sql; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Status.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Status.php deleted file mode 100644 index 41b24f6a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Status.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/StructType.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/StructType.php deleted file mode 100644 index 3d3ca007..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/StructType.php +++ /dev/null @@ -1,38 +0,0 @@ -fields = $fields; - } - /** - * @return Google_Service_Spanner_Field - */ - public function getFields() - { - return $this->fields; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/TestIamPermissionsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/TestIamPermissionsRequest.php deleted file mode 100644 index 43269628..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/TestIamPermissionsRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/TestIamPermissionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/TestIamPermissionsResponse.php deleted file mode 100644 index 026345ab..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/TestIamPermissionsResponse.php +++ /dev/null @@ -1,31 +0,0 @@ -permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Transaction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Transaction.php deleted file mode 100644 index 8ddc5ead..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Transaction.php +++ /dev/null @@ -1,39 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setReadTimestamp($readTimestamp) - { - $this->readTimestamp = $readTimestamp; - } - public function getReadTimestamp() - { - return $this->readTimestamp; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/TransactionOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/TransactionOptions.php deleted file mode 100644 index e084ce32..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/TransactionOptions.php +++ /dev/null @@ -1,69 +0,0 @@ -partitionedDml = $partitionedDml; - } - /** - * @return Google_Service_Spanner_PartitionedDml - */ - public function getPartitionedDml() - { - return $this->partitionedDml; - } - /** - * @param Google_Service_Spanner_ReadOnly - */ - public function setReadOnly(Google_Service_Spanner_ReadOnly $readOnly) - { - $this->readOnly = $readOnly; - } - /** - * @return Google_Service_Spanner_ReadOnly - */ - public function getReadOnly() - { - return $this->readOnly; - } - /** - * @param Google_Service_Spanner_ReadWrite - */ - public function setReadWrite(Google_Service_Spanner_ReadWrite $readWrite) - { - $this->readWrite = $readWrite; - } - /** - * @return Google_Service_Spanner_ReadWrite - */ - public function getReadWrite() - { - return $this->readWrite; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/TransactionSelector.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/TransactionSelector.php deleted file mode 100644 index c03eb53a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/TransactionSelector.php +++ /dev/null @@ -1,62 +0,0 @@ -begin = $begin; - } - /** - * @return Google_Service_Spanner_TransactionOptions - */ - public function getBegin() - { - return $this->begin; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Spanner_TransactionOptions - */ - public function setSingleUse(Google_Service_Spanner_TransactionOptions $singleUse) - { - $this->singleUse = $singleUse; - } - /** - * @return Google_Service_Spanner_TransactionOptions - */ - public function getSingleUse() - { - return $this->singleUse; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Type.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Type.php deleted file mode 100644 index fbad3013..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Type.php +++ /dev/null @@ -1,62 +0,0 @@ -arrayElementType = $arrayElementType; - } - /** - * @return Google_Service_Spanner_Type - */ - public function getArrayElementType() - { - return $this->arrayElementType; - } - public function setCode($code) - { - $this->code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_Spanner_StructType - */ - public function setStructType(Google_Service_Spanner_StructType $structType) - { - $this->structType = $structType; - } - /** - * @return Google_Service_Spanner_StructType - */ - public function getStructType() - { - return $this->structType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/UpdateDatabaseDdlMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/UpdateDatabaseDdlMetadata.php deleted file mode 100644 index b82b0340..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/UpdateDatabaseDdlMetadata.php +++ /dev/null @@ -1,49 +0,0 @@ -commitTimestamps = $commitTimestamps; - } - public function getCommitTimestamps() - { - return $this->commitTimestamps; - } - public function setDatabase($database) - { - $this->database = $database; - } - public function getDatabase() - { - return $this->database; - } - public function setStatements($statements) - { - $this->statements = $statements; - } - public function getStatements() - { - return $this->statements; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/UpdateDatabaseDdlRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/UpdateDatabaseDdlRequest.php deleted file mode 100644 index bb0c2666..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/UpdateDatabaseDdlRequest.php +++ /dev/null @@ -1,40 +0,0 @@ -operationId = $operationId; - } - public function getOperationId() - { - return $this->operationId; - } - public function setStatements($statements) - { - $this->statements = $statements; - } - public function getStatements() - { - return $this->statements; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/UpdateInstanceMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/UpdateInstanceMetadata.php deleted file mode 100644 index 9fa7fcb4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/UpdateInstanceMetadata.php +++ /dev/null @@ -1,64 +0,0 @@ -cancelTime = $cancelTime; - } - public function getCancelTime() - { - return $this->cancelTime; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - /** - * @param Google_Service_Spanner_Instance - */ - public function setInstance(Google_Service_Spanner_Instance $instance) - { - $this->instance = $instance; - } - /** - * @return Google_Service_Spanner_Instance - */ - public function getInstance() - { - return $this->instance; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/UpdateInstanceRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/UpdateInstanceRequest.php deleted file mode 100644 index 8f827a17..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/UpdateInstanceRequest.php +++ /dev/null @@ -1,46 +0,0 @@ -fieldMask = $fieldMask; - } - public function getFieldMask() - { - return $this->fieldMask; - } - /** - * @param Google_Service_Spanner_Instance - */ - public function setInstance(Google_Service_Spanner_Instance $instance) - { - $this->instance = $instance; - } - /** - * @return Google_Service_Spanner_Instance - */ - public function getInstance() - { - return $this->instance; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Write.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Write.php deleted file mode 100644 index eeadc7b4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spanner/Write.php +++ /dev/null @@ -1,49 +0,0 @@ -columns = $columns; - } - public function getColumns() - { - return $this->columns; - } - public function setTable($table) - { - $this->table = $table; - } - public function getTable() - { - return $this->table; - } - public function setValues($values) - { - $this->values = $values; - } - public function getValues() - { - return $this->values; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum.php deleted file mode 100644 index c14321ad..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum.php +++ /dev/null @@ -1,85 +0,0 @@ - - * API for spectrum-management functions.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Spectrum extends Google_Service -{ - - - public $paws; - - /** - * Constructs the internal representation of the Spectrum service. - * - * @param Google_Client $client - */ - public function __construct(Google_Client $client) - { - parent::__construct($client); - $this->rootUrl = 'https://www.googleapis.com/'; - $this->servicePath = 'spectrum/v1explorer/paws/'; - $this->version = 'v1explorer'; - $this->serviceName = 'spectrum'; - - $this->paws = new Google_Service_Spectrum_Resource_Paws( - $this, - $this->serviceName, - 'paws', - array( - 'methods' => array( - 'getSpectrum' => array( - 'path' => 'getSpectrum', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'getSpectrumBatch' => array( - 'path' => 'getSpectrumBatch', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'init' => array( - 'path' => 'init', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'notifySpectrumUse' => array( - 'path' => 'notifySpectrumUse', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'register' => array( - 'path' => 'register', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'verifyDevice' => array( - 'path' => 'verifyDevice', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/AntennaCharacteristics.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/AntennaCharacteristics.php deleted file mode 100644 index 7ac11f66..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/AntennaCharacteristics.php +++ /dev/null @@ -1,48 +0,0 @@ -height = $height; - } - public function getHeight() - { - return $this->height; - } - public function setHeightType($heightType) - { - $this->heightType = $heightType; - } - public function getHeightType() - { - return $this->heightType; - } - public function setHeightUncertainty($heightUncertainty) - { - $this->heightUncertainty = $heightUncertainty; - } - public function getHeightUncertainty() - { - return $this->heightUncertainty; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/DatabaseSpec.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/DatabaseSpec.php deleted file mode 100644 index 5e2175d6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/DatabaseSpec.php +++ /dev/null @@ -1,39 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setUri($uri) - { - $this->uri = $uri; - } - public function getUri() - { - return $this->uri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/DbUpdateSpec.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/DbUpdateSpec.php deleted file mode 100644 index 10c2c6cc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/DbUpdateSpec.php +++ /dev/null @@ -1,38 +0,0 @@ -databases = $databases; - } - /** - * @return Google_Service_Spectrum_DatabaseSpec - */ - public function getDatabases() - { - return $this->databases; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/DeviceCapabilities.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/DeviceCapabilities.php deleted file mode 100644 index 028252f7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/DeviceCapabilities.php +++ /dev/null @@ -1,38 +0,0 @@ -frequencyRanges = $frequencyRanges; - } - /** - * @return Google_Service_Spectrum_FrequencyRange - */ - public function getFrequencyRanges() - { - return $this->frequencyRanges; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/DeviceDescriptor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/DeviceDescriptor.php deleted file mode 100644 index bec28a09..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/DeviceDescriptor.php +++ /dev/null @@ -1,112 +0,0 @@ -etsiEnDeviceCategory = $etsiEnDeviceCategory; - } - public function getEtsiEnDeviceCategory() - { - return $this->etsiEnDeviceCategory; - } - public function setEtsiEnDeviceEmissionsClass($etsiEnDeviceEmissionsClass) - { - $this->etsiEnDeviceEmissionsClass = $etsiEnDeviceEmissionsClass; - } - public function getEtsiEnDeviceEmissionsClass() - { - return $this->etsiEnDeviceEmissionsClass; - } - public function setEtsiEnDeviceType($etsiEnDeviceType) - { - $this->etsiEnDeviceType = $etsiEnDeviceType; - } - public function getEtsiEnDeviceType() - { - return $this->etsiEnDeviceType; - } - public function setEtsiEnTechnologyId($etsiEnTechnologyId) - { - $this->etsiEnTechnologyId = $etsiEnTechnologyId; - } - public function getEtsiEnTechnologyId() - { - return $this->etsiEnTechnologyId; - } - public function setFccId($fccId) - { - $this->fccId = $fccId; - } - public function getFccId() - { - return $this->fccId; - } - public function setFccTvbdDeviceType($fccTvbdDeviceType) - { - $this->fccTvbdDeviceType = $fccTvbdDeviceType; - } - public function getFccTvbdDeviceType() - { - return $this->fccTvbdDeviceType; - } - public function setManufacturerId($manufacturerId) - { - $this->manufacturerId = $manufacturerId; - } - public function getManufacturerId() - { - return $this->manufacturerId; - } - public function setModelId($modelId) - { - $this->modelId = $modelId; - } - public function getModelId() - { - return $this->modelId; - } - public function setRulesetIds($rulesetIds) - { - $this->rulesetIds = $rulesetIds; - } - public function getRulesetIds() - { - return $this->rulesetIds; - } - public function setSerialNumber($serialNumber) - { - $this->serialNumber = $serialNumber; - } - public function getSerialNumber() - { - return $this->serialNumber; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/DeviceOwner.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/DeviceOwner.php deleted file mode 100644 index efa7e8ec..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/DeviceOwner.php +++ /dev/null @@ -1,53 +0,0 @@ -operator = $operator; - } - /** - * @return Google_Service_Spectrum_Vcard - */ - public function getOperator() - { - return $this->operator; - } - /** - * @param Google_Service_Spectrum_Vcard - */ - public function setOwner(Google_Service_Spectrum_Vcard $owner) - { - $this->owner = $owner; - } - /** - * @return Google_Service_Spectrum_Vcard - */ - public function getOwner() - { - return $this->owner; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/DeviceValidity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/DeviceValidity.php deleted file mode 100644 index c2975388..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/DeviceValidity.php +++ /dev/null @@ -1,55 +0,0 @@ -deviceDesc = $deviceDesc; - } - /** - * @return Google_Service_Spectrum_DeviceDescriptor - */ - public function getDeviceDesc() - { - return $this->deviceDesc; - } - public function setIsValid($isValid) - { - $this->isValid = $isValid; - } - public function getIsValid() - { - return $this->isValid; - } - public function setReason($reason) - { - $this->reason = $reason; - } - public function getReason() - { - return $this->reason; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/EventTime.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/EventTime.php deleted file mode 100644 index dbf06e5f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/EventTime.php +++ /dev/null @@ -1,39 +0,0 @@ -startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } - public function setStopTime($stopTime) - { - $this->stopTime = $stopTime; - } - public function getStopTime() - { - return $this->stopTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/FrequencyRange.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/FrequencyRange.php deleted file mode 100644 index 7770fedb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/FrequencyRange.php +++ /dev/null @@ -1,57 +0,0 @@ -channelId = $channelId; - } - public function getChannelId() - { - return $this->channelId; - } - public function setMaxPowerDBm($maxPowerDBm) - { - $this->maxPowerDBm = $maxPowerDBm; - } - public function getMaxPowerDBm() - { - return $this->maxPowerDBm; - } - public function setStartHz($startHz) - { - $this->startHz = $startHz; - } - public function getStartHz() - { - return $this->startHz; - } - public function setStopHz($stopHz) - { - $this->stopHz = $stopHz; - } - public function getStopHz() - { - return $this->stopHz; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/GeoLocation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/GeoLocation.php deleted file mode 100644 index d836387b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/GeoLocation.php +++ /dev/null @@ -1,62 +0,0 @@ -confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - /** - * @param Google_Service_Spectrum_GeoLocationEllipse - */ - public function setPoint(Google_Service_Spectrum_GeoLocationEllipse $point) - { - $this->point = $point; - } - /** - * @return Google_Service_Spectrum_GeoLocationEllipse - */ - public function getPoint() - { - return $this->point; - } - /** - * @param Google_Service_Spectrum_GeoLocationPolygon - */ - public function setRegion(Google_Service_Spectrum_GeoLocationPolygon $region) - { - $this->region = $region; - } - /** - * @return Google_Service_Spectrum_GeoLocationPolygon - */ - public function getRegion() - { - return $this->region; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/GeoLocationEllipse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/GeoLocationEllipse.php deleted file mode 100644 index a4c036d4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/GeoLocationEllipse.php +++ /dev/null @@ -1,64 +0,0 @@ -center = $center; - } - /** - * @return Google_Service_Spectrum_GeoLocationPoint - */ - public function getCenter() - { - return $this->center; - } - public function setOrientation($orientation) - { - $this->orientation = $orientation; - } - public function getOrientation() - { - return $this->orientation; - } - public function setSemiMajorAxis($semiMajorAxis) - { - $this->semiMajorAxis = $semiMajorAxis; - } - public function getSemiMajorAxis() - { - return $this->semiMajorAxis; - } - public function setSemiMinorAxis($semiMinorAxis) - { - $this->semiMinorAxis = $semiMinorAxis; - } - public function getSemiMinorAxis() - { - return $this->semiMinorAxis; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/GeoLocationPoint.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/GeoLocationPoint.php deleted file mode 100644 index fa3ed1d9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/GeoLocationPoint.php +++ /dev/null @@ -1,39 +0,0 @@ -latitude = $latitude; - } - public function getLatitude() - { - return $this->latitude; - } - public function setLongitude($longitude) - { - $this->longitude = $longitude; - } - public function getLongitude() - { - return $this->longitude; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/GeoLocationPolygon.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/GeoLocationPolygon.php deleted file mode 100644 index 6cae9f27..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/GeoLocationPolygon.php +++ /dev/null @@ -1,38 +0,0 @@ -exterior = $exterior; - } - /** - * @return Google_Service_Spectrum_GeoLocationPoint - */ - public function getExterior() - { - return $this->exterior; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/GeoSpectrumSchedule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/GeoSpectrumSchedule.php deleted file mode 100644 index 8abc2e29..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/GeoSpectrumSchedule.php +++ /dev/null @@ -1,54 +0,0 @@ -location = $location; - } - /** - * @return Google_Service_Spectrum_GeoLocation - */ - public function getLocation() - { - return $this->location; - } - /** - * @param Google_Service_Spectrum_SpectrumSchedule - */ - public function setSpectrumSchedules($spectrumSchedules) - { - $this->spectrumSchedules = $spectrumSchedules; - } - /** - * @return Google_Service_Spectrum_SpectrumSchedule - */ - public function getSpectrumSchedules() - { - return $this->spectrumSchedules; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/PawsGetSpectrumBatchRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/PawsGetSpectrumBatchRequest.php deleted file mode 100644 index d400fda6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/PawsGetSpectrumBatchRequest.php +++ /dev/null @@ -1,145 +0,0 @@ -antenna = $antenna; - } - /** - * @return Google_Service_Spectrum_AntennaCharacteristics - */ - public function getAntenna() - { - return $this->antenna; - } - /** - * @param Google_Service_Spectrum_DeviceCapabilities - */ - public function setCapabilities(Google_Service_Spectrum_DeviceCapabilities $capabilities) - { - $this->capabilities = $capabilities; - } - /** - * @return Google_Service_Spectrum_DeviceCapabilities - */ - public function getCapabilities() - { - return $this->capabilities; - } - /** - * @param Google_Service_Spectrum_DeviceDescriptor - */ - public function setDeviceDesc(Google_Service_Spectrum_DeviceDescriptor $deviceDesc) - { - $this->deviceDesc = $deviceDesc; - } - /** - * @return Google_Service_Spectrum_DeviceDescriptor - */ - public function getDeviceDesc() - { - return $this->deviceDesc; - } - /** - * @param Google_Service_Spectrum_GeoLocation - */ - public function setLocations($locations) - { - $this->locations = $locations; - } - /** - * @return Google_Service_Spectrum_GeoLocation - */ - public function getLocations() - { - return $this->locations; - } - /** - * @param Google_Service_Spectrum_DeviceDescriptor - */ - public function setMasterDeviceDesc(Google_Service_Spectrum_DeviceDescriptor $masterDeviceDesc) - { - $this->masterDeviceDesc = $masterDeviceDesc; - } - /** - * @return Google_Service_Spectrum_DeviceDescriptor - */ - public function getMasterDeviceDesc() - { - return $this->masterDeviceDesc; - } - /** - * @param Google_Service_Spectrum_DeviceOwner - */ - public function setOwner(Google_Service_Spectrum_DeviceOwner $owner) - { - $this->owner = $owner; - } - /** - * @return Google_Service_Spectrum_DeviceOwner - */ - public function getOwner() - { - return $this->owner; - } - public function setRequestType($requestType) - { - $this->requestType = $requestType; - } - public function getRequestType() - { - return $this->requestType; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/PawsGetSpectrumBatchResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/PawsGetSpectrumBatchResponse.php deleted file mode 100644 index 311f474b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/PawsGetSpectrumBatchResponse.php +++ /dev/null @@ -1,149 +0,0 @@ -databaseChange = $databaseChange; - } - /** - * @return Google_Service_Spectrum_DbUpdateSpec - */ - public function getDatabaseChange() - { - return $this->databaseChange; - } - /** - * @param Google_Service_Spectrum_DeviceDescriptor - */ - public function setDeviceDesc(Google_Service_Spectrum_DeviceDescriptor $deviceDesc) - { - $this->deviceDesc = $deviceDesc; - } - /** - * @return Google_Service_Spectrum_DeviceDescriptor - */ - public function getDeviceDesc() - { - return $this->deviceDesc; - } - /** - * @param Google_Service_Spectrum_GeoSpectrumSchedule - */ - public function setGeoSpectrumSchedules($geoSpectrumSchedules) - { - $this->geoSpectrumSchedules = $geoSpectrumSchedules; - } - /** - * @return Google_Service_Spectrum_GeoSpectrumSchedule - */ - public function getGeoSpectrumSchedules() - { - return $this->geoSpectrumSchedules; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setMaxContiguousBwHz($maxContiguousBwHz) - { - $this->maxContiguousBwHz = $maxContiguousBwHz; - } - public function getMaxContiguousBwHz() - { - return $this->maxContiguousBwHz; - } - public function setMaxTotalBwHz($maxTotalBwHz) - { - $this->maxTotalBwHz = $maxTotalBwHz; - } - public function getMaxTotalBwHz() - { - return $this->maxTotalBwHz; - } - public function setNeedsSpectrumReport($needsSpectrumReport) - { - $this->needsSpectrumReport = $needsSpectrumReport; - } - public function getNeedsSpectrumReport() - { - return $this->needsSpectrumReport; - } - /** - * @param Google_Service_Spectrum_RulesetInfo - */ - public function setRulesetInfo(Google_Service_Spectrum_RulesetInfo $rulesetInfo) - { - $this->rulesetInfo = $rulesetInfo; - } - /** - * @return Google_Service_Spectrum_RulesetInfo - */ - public function getRulesetInfo() - { - return $this->rulesetInfo; - } - public function setTimestamp($timestamp) - { - $this->timestamp = $timestamp; - } - public function getTimestamp() - { - return $this->timestamp; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/PawsGetSpectrumRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/PawsGetSpectrumRequest.php deleted file mode 100644 index 2dde6bee..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/PawsGetSpectrumRequest.php +++ /dev/null @@ -1,144 +0,0 @@ -antenna = $antenna; - } - /** - * @return Google_Service_Spectrum_AntennaCharacteristics - */ - public function getAntenna() - { - return $this->antenna; - } - /** - * @param Google_Service_Spectrum_DeviceCapabilities - */ - public function setCapabilities(Google_Service_Spectrum_DeviceCapabilities $capabilities) - { - $this->capabilities = $capabilities; - } - /** - * @return Google_Service_Spectrum_DeviceCapabilities - */ - public function getCapabilities() - { - return $this->capabilities; - } - /** - * @param Google_Service_Spectrum_DeviceDescriptor - */ - public function setDeviceDesc(Google_Service_Spectrum_DeviceDescriptor $deviceDesc) - { - $this->deviceDesc = $deviceDesc; - } - /** - * @return Google_Service_Spectrum_DeviceDescriptor - */ - public function getDeviceDesc() - { - return $this->deviceDesc; - } - /** - * @param Google_Service_Spectrum_GeoLocation - */ - public function setLocation(Google_Service_Spectrum_GeoLocation $location) - { - $this->location = $location; - } - /** - * @return Google_Service_Spectrum_GeoLocation - */ - public function getLocation() - { - return $this->location; - } - /** - * @param Google_Service_Spectrum_DeviceDescriptor - */ - public function setMasterDeviceDesc(Google_Service_Spectrum_DeviceDescriptor $masterDeviceDesc) - { - $this->masterDeviceDesc = $masterDeviceDesc; - } - /** - * @return Google_Service_Spectrum_DeviceDescriptor - */ - public function getMasterDeviceDesc() - { - return $this->masterDeviceDesc; - } - /** - * @param Google_Service_Spectrum_DeviceOwner - */ - public function setOwner(Google_Service_Spectrum_DeviceOwner $owner) - { - $this->owner = $owner; - } - /** - * @return Google_Service_Spectrum_DeviceOwner - */ - public function getOwner() - { - return $this->owner; - } - public function setRequestType($requestType) - { - $this->requestType = $requestType; - } - public function getRequestType() - { - return $this->requestType; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/PawsGetSpectrumResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/PawsGetSpectrumResponse.php deleted file mode 100644 index cc502343..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/PawsGetSpectrumResponse.php +++ /dev/null @@ -1,149 +0,0 @@ -databaseChange = $databaseChange; - } - /** - * @return Google_Service_Spectrum_DbUpdateSpec - */ - public function getDatabaseChange() - { - return $this->databaseChange; - } - /** - * @param Google_Service_Spectrum_DeviceDescriptor - */ - public function setDeviceDesc(Google_Service_Spectrum_DeviceDescriptor $deviceDesc) - { - $this->deviceDesc = $deviceDesc; - } - /** - * @return Google_Service_Spectrum_DeviceDescriptor - */ - public function getDeviceDesc() - { - return $this->deviceDesc; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setMaxContiguousBwHz($maxContiguousBwHz) - { - $this->maxContiguousBwHz = $maxContiguousBwHz; - } - public function getMaxContiguousBwHz() - { - return $this->maxContiguousBwHz; - } - public function setMaxTotalBwHz($maxTotalBwHz) - { - $this->maxTotalBwHz = $maxTotalBwHz; - } - public function getMaxTotalBwHz() - { - return $this->maxTotalBwHz; - } - public function setNeedsSpectrumReport($needsSpectrumReport) - { - $this->needsSpectrumReport = $needsSpectrumReport; - } - public function getNeedsSpectrumReport() - { - return $this->needsSpectrumReport; - } - /** - * @param Google_Service_Spectrum_RulesetInfo - */ - public function setRulesetInfo(Google_Service_Spectrum_RulesetInfo $rulesetInfo) - { - $this->rulesetInfo = $rulesetInfo; - } - /** - * @return Google_Service_Spectrum_RulesetInfo - */ - public function getRulesetInfo() - { - return $this->rulesetInfo; - } - /** - * @param Google_Service_Spectrum_SpectrumSchedule - */ - public function setSpectrumSchedules($spectrumSchedules) - { - $this->spectrumSchedules = $spectrumSchedules; - } - /** - * @return Google_Service_Spectrum_SpectrumSchedule - */ - public function getSpectrumSchedules() - { - return $this->spectrumSchedules; - } - public function setTimestamp($timestamp) - { - $this->timestamp = $timestamp; - } - public function getTimestamp() - { - return $this->timestamp; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/PawsInitRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/PawsInitRequest.php deleted file mode 100644 index 37c5a4d2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/PawsInitRequest.php +++ /dev/null @@ -1,71 +0,0 @@ -deviceDesc = $deviceDesc; - } - /** - * @return Google_Service_Spectrum_DeviceDescriptor - */ - public function getDeviceDesc() - { - return $this->deviceDesc; - } - /** - * @param Google_Service_Spectrum_GeoLocation - */ - public function setLocation(Google_Service_Spectrum_GeoLocation $location) - { - $this->location = $location; - } - /** - * @return Google_Service_Spectrum_GeoLocation - */ - public function getLocation() - { - return $this->location; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/PawsInitResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/PawsInitResponse.php deleted file mode 100644 index 3d50b558..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/PawsInitResponse.php +++ /dev/null @@ -1,80 +0,0 @@ -databaseChange = $databaseChange; - } - /** - * @return Google_Service_Spectrum_DbUpdateSpec - */ - public function getDatabaseChange() - { - return $this->databaseChange; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Spectrum_RulesetInfo - */ - public function setRulesetInfo(Google_Service_Spectrum_RulesetInfo $rulesetInfo) - { - $this->rulesetInfo = $rulesetInfo; - } - /** - * @return Google_Service_Spectrum_RulesetInfo - */ - public function getRulesetInfo() - { - return $this->rulesetInfo; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/PawsNotifySpectrumUseRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/PawsNotifySpectrumUseRequest.php deleted file mode 100644 index be6fd839..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/PawsNotifySpectrumUseRequest.php +++ /dev/null @@ -1,88 +0,0 @@ -deviceDesc = $deviceDesc; - } - /** - * @return Google_Service_Spectrum_DeviceDescriptor - */ - public function getDeviceDesc() - { - return $this->deviceDesc; - } - /** - * @param Google_Service_Spectrum_GeoLocation - */ - public function setLocation(Google_Service_Spectrum_GeoLocation $location) - { - $this->location = $location; - } - /** - * @return Google_Service_Spectrum_GeoLocation - */ - public function getLocation() - { - return $this->location; - } - /** - * @param Google_Service_Spectrum_SpectrumMessage - */ - public function setSpectra($spectra) - { - $this->spectra = $spectra; - } - /** - * @return Google_Service_Spectrum_SpectrumMessage - */ - public function getSpectra() - { - return $this->spectra; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/PawsNotifySpectrumUseResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/PawsNotifySpectrumUseResponse.php deleted file mode 100644 index 60999684..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/PawsNotifySpectrumUseResponse.php +++ /dev/null @@ -1,48 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/PawsRegisterRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/PawsRegisterRequest.php deleted file mode 100644 index 6f408d90..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/PawsRegisterRequest.php +++ /dev/null @@ -1,103 +0,0 @@ -antenna = $antenna; - } - /** - * @return Google_Service_Spectrum_AntennaCharacteristics - */ - public function getAntenna() - { - return $this->antenna; - } - /** - * @param Google_Service_Spectrum_DeviceDescriptor - */ - public function setDeviceDesc(Google_Service_Spectrum_DeviceDescriptor $deviceDesc) - { - $this->deviceDesc = $deviceDesc; - } - /** - * @return Google_Service_Spectrum_DeviceDescriptor - */ - public function getDeviceDesc() - { - return $this->deviceDesc; - } - /** - * @param Google_Service_Spectrum_DeviceOwner - */ - public function setDeviceOwner(Google_Service_Spectrum_DeviceOwner $deviceOwner) - { - $this->deviceOwner = $deviceOwner; - } - /** - * @return Google_Service_Spectrum_DeviceOwner - */ - public function getDeviceOwner() - { - return $this->deviceOwner; - } - /** - * @param Google_Service_Spectrum_GeoLocation - */ - public function setLocation(Google_Service_Spectrum_GeoLocation $location) - { - $this->location = $location; - } - /** - * @return Google_Service_Spectrum_GeoLocation - */ - public function getLocation() - { - return $this->location; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/PawsRegisterResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/PawsRegisterResponse.php deleted file mode 100644 index 84a06e48..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/PawsRegisterResponse.php +++ /dev/null @@ -1,64 +0,0 @@ -databaseChange = $databaseChange; - } - /** - * @return Google_Service_Spectrum_DbUpdateSpec - */ - public function getDatabaseChange() - { - return $this->databaseChange; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/PawsVerifyDeviceRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/PawsVerifyDeviceRequest.php deleted file mode 100644 index da563368..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/PawsVerifyDeviceRequest.php +++ /dev/null @@ -1,56 +0,0 @@ -deviceDescs = $deviceDescs; - } - /** - * @return Google_Service_Spectrum_DeviceDescriptor - */ - public function getDeviceDescs() - { - return $this->deviceDescs; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/PawsVerifyDeviceResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/PawsVerifyDeviceResponse.php deleted file mode 100644 index 4ec47dbf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/PawsVerifyDeviceResponse.php +++ /dev/null @@ -1,81 +0,0 @@ -databaseChange = $databaseChange; - } - /** - * @return Google_Service_Spectrum_DbUpdateSpec - */ - public function getDatabaseChange() - { - return $this->databaseChange; - } - /** - * @param Google_Service_Spectrum_DeviceValidity - */ - public function setDeviceValidities($deviceValidities) - { - $this->deviceValidities = $deviceValidities; - } - /** - * @return Google_Service_Spectrum_DeviceValidity - */ - public function getDeviceValidities() - { - return $this->deviceValidities; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/Resource/Paws.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/Resource/Paws.php deleted file mode 100644 index 127b3615..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/Resource/Paws.php +++ /dev/null @@ -1,117 +0,0 @@ - - * $spectrumService = new Google_Service_Spectrum(...); - * $paws = $spectrumService->paws; - * - */ -class Google_Service_Spectrum_Resource_Paws extends Google_Service_Resource -{ - /** - * Requests information about the available spectrum for a device at a location. - * Requests from a fixed-mode device must include owner information so the - * device can be registered with the database. (paws.getSpectrum) - * - * @param Google_Service_Spectrum_PawsGetSpectrumRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Spectrum_PawsGetSpectrumResponse - */ - public function getSpectrum(Google_Service_Spectrum_PawsGetSpectrumRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('getSpectrum', array($params), "Google_Service_Spectrum_PawsGetSpectrumResponse"); - } - /** - * The Google Spectrum Database does not support batch requests, so this method - * always yields an UNIMPLEMENTED error. (paws.getSpectrumBatch) - * - * @param Google_Service_Spectrum_PawsGetSpectrumBatchRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Spectrum_PawsGetSpectrumBatchResponse - */ - public function getSpectrumBatch(Google_Service_Spectrum_PawsGetSpectrumBatchRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('getSpectrumBatch', array($params), "Google_Service_Spectrum_PawsGetSpectrumBatchResponse"); - } - /** - * Initializes the connection between a white space device and the database. - * (paws.init) - * - * @param Google_Service_Spectrum_PawsInitRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Spectrum_PawsInitResponse - */ - public function init(Google_Service_Spectrum_PawsInitRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('init', array($params), "Google_Service_Spectrum_PawsInitResponse"); - } - /** - * Notifies the database that the device has selected certain frequency ranges - * for transmission. Only to be invoked when required by the regulator. The - * Google Spectrum Database does not operate in domains that require - * notification, so this always yields an UNIMPLEMENTED error. - * (paws.notifySpectrumUse) - * - * @param Google_Service_Spectrum_PawsNotifySpectrumUseRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Spectrum_PawsNotifySpectrumUseResponse - */ - public function notifySpectrumUse(Google_Service_Spectrum_PawsNotifySpectrumUseRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('notifySpectrumUse', array($params), "Google_Service_Spectrum_PawsNotifySpectrumUseResponse"); - } - /** - * The Google Spectrum Database implements registration in the getSpectrum - * method. As such this always returns an UNIMPLEMENTED error. (paws.register) - * - * @param Google_Service_Spectrum_PawsRegisterRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Spectrum_PawsRegisterResponse - */ - public function register(Google_Service_Spectrum_PawsRegisterRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('register', array($params), "Google_Service_Spectrum_PawsRegisterResponse"); - } - /** - * Validates a device for white space use in accordance with regulatory rules. - * The Google Spectrum Database does not support master/slave configurations, so - * this always yields an UNIMPLEMENTED error. (paws.verifyDevice) - * - * @param Google_Service_Spectrum_PawsVerifyDeviceRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Spectrum_PawsVerifyDeviceResponse - */ - public function verifyDevice(Google_Service_Spectrum_PawsVerifyDeviceRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('verifyDevice', array($params), "Google_Service_Spectrum_PawsVerifyDeviceResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/RulesetInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/RulesetInfo.php deleted file mode 100644 index ac302ee5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/RulesetInfo.php +++ /dev/null @@ -1,58 +0,0 @@ -authority = $authority; - } - public function getAuthority() - { - return $this->authority; - } - public function setMaxLocationChange($maxLocationChange) - { - $this->maxLocationChange = $maxLocationChange; - } - public function getMaxLocationChange() - { - return $this->maxLocationChange; - } - public function setMaxPollingSecs($maxPollingSecs) - { - $this->maxPollingSecs = $maxPollingSecs; - } - public function getMaxPollingSecs() - { - return $this->maxPollingSecs; - } - public function setRulesetIds($rulesetIds) - { - $this->rulesetIds = $rulesetIds; - } - public function getRulesetIds() - { - return $this->rulesetIds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/SpectrumMessage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/SpectrumMessage.php deleted file mode 100644 index 3605c1ed..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/SpectrumMessage.php +++ /dev/null @@ -1,47 +0,0 @@ -bandwidth = $bandwidth; - } - public function getBandwidth() - { - return $this->bandwidth; - } - /** - * @param Google_Service_Spectrum_FrequencyRange - */ - public function setFrequencyRanges($frequencyRanges) - { - $this->frequencyRanges = $frequencyRanges; - } - /** - * @return Google_Service_Spectrum_FrequencyRange - */ - public function getFrequencyRanges() - { - return $this->frequencyRanges; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/SpectrumSchedule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/SpectrumSchedule.php deleted file mode 100644 index 61baf1e1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/SpectrumSchedule.php +++ /dev/null @@ -1,54 +0,0 @@ -eventTime = $eventTime; - } - /** - * @return Google_Service_Spectrum_EventTime - */ - public function getEventTime() - { - return $this->eventTime; - } - /** - * @param Google_Service_Spectrum_SpectrumMessage - */ - public function setSpectra($spectra) - { - $this->spectra = $spectra; - } - /** - * @return Google_Service_Spectrum_SpectrumMessage - */ - public function getSpectra() - { - return $this->spectra; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/Vcard.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/Vcard.php deleted file mode 100644 index d98f917c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/Vcard.php +++ /dev/null @@ -1,94 +0,0 @@ -adr = $adr; - } - /** - * @return Google_Service_Spectrum_VcardAddress - */ - public function getAdr() - { - return $this->adr; - } - /** - * @param Google_Service_Spectrum_VcardTypedText - */ - public function setEmail(Google_Service_Spectrum_VcardTypedText $email) - { - $this->email = $email; - } - /** - * @return Google_Service_Spectrum_VcardTypedText - */ - public function getEmail() - { - return $this->email; - } - public function setFn($fn) - { - $this->fn = $fn; - } - public function getFn() - { - return $this->fn; - } - /** - * @param Google_Service_Spectrum_VcardTypedText - */ - public function setOrg(Google_Service_Spectrum_VcardTypedText $org) - { - $this->org = $org; - } - /** - * @return Google_Service_Spectrum_VcardTypedText - */ - public function getOrg() - { - return $this->org; - } - /** - * @param Google_Service_Spectrum_VcardTelephone - */ - public function setTel(Google_Service_Spectrum_VcardTelephone $tel) - { - $this->tel = $tel; - } - /** - * @return Google_Service_Spectrum_VcardTelephone - */ - public function getTel() - { - return $this->tel; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/VcardAddress.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/VcardAddress.php deleted file mode 100644 index 8852021b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/VcardAddress.php +++ /dev/null @@ -1,75 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setCountry($country) - { - $this->country = $country; - } - public function getCountry() - { - return $this->country; - } - public function setLocality($locality) - { - $this->locality = $locality; - } - public function getLocality() - { - return $this->locality; - } - public function setPobox($pobox) - { - $this->pobox = $pobox; - } - public function getPobox() - { - return $this->pobox; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - public function setStreet($street) - { - $this->street = $street; - } - public function getStreet() - { - return $this->street; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/VcardTelephone.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/VcardTelephone.php deleted file mode 100644 index b1156c75..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/VcardTelephone.php +++ /dev/null @@ -1,30 +0,0 @@ -uri = $uri; - } - public function getUri() - { - return $this->uri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/VcardTypedText.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/VcardTypedText.php deleted file mode 100644 index a0ab56f6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Spectrum/VcardTypedText.php +++ /dev/null @@ -1,30 +0,0 @@ -text = $text; - } - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech.php deleted file mode 100644 index 29e92d8b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech.php +++ /dev/null @@ -1,158 +0,0 @@ - - * Converts audio to text by applying powerful neural network models.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Speech extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - - public $operations; - public $projects_locations_operations; - public $speech; - - /** - * Constructs the internal representation of the Speech service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://speech.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'speech'; - - $this->operations = new Google_Service_Speech_Resource_Operations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/operations/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/operations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_locations_operations = new Google_Service_Speech_Resource_ProjectsLocationsOperations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+name}/operations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->speech = new Google_Service_Speech_Resource_Speech( - $this, - $this->serviceName, - 'speech', - array( - 'methods' => array( - 'longrunningrecognize' => array( - 'path' => 'v1/speech:longrunningrecognize', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'recognize' => array( - 'path' => 'v1/speech:recognize', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/ListOperationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/ListOperationsResponse.php deleted file mode 100644 index 9f92a47b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/ListOperationsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Speech_Operation - */ - public function setOperations($operations) - { - $this->operations = $operations; - } - /** - * @return Google_Service_Speech_Operation - */ - public function getOperations() - { - return $this->operations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/LongRunningRecognizeMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/LongRunningRecognizeMetadata.php deleted file mode 100644 index efb56349..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/LongRunningRecognizeMetadata.php +++ /dev/null @@ -1,48 +0,0 @@ -lastUpdateTime = $lastUpdateTime; - } - public function getLastUpdateTime() - { - return $this->lastUpdateTime; - } - public function setProgressPercent($progressPercent) - { - $this->progressPercent = $progressPercent; - } - public function getProgressPercent() - { - return $this->progressPercent; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/LongRunningRecognizeRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/LongRunningRecognizeRequest.php deleted file mode 100644 index 9a269e54..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/LongRunningRecognizeRequest.php +++ /dev/null @@ -1,53 +0,0 @@ -audio = $audio; - } - /** - * @return Google_Service_Speech_RecognitionAudio - */ - public function getAudio() - { - return $this->audio; - } - /** - * @param Google_Service_Speech_RecognitionConfig - */ - public function setConfig(Google_Service_Speech_RecognitionConfig $config) - { - $this->config = $config; - } - /** - * @return Google_Service_Speech_RecognitionConfig - */ - public function getConfig() - { - return $this->config; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/LongRunningRecognizeResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/LongRunningRecognizeResponse.php deleted file mode 100644 index ea9a051d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/LongRunningRecognizeResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -results = $results; - } - /** - * @return Google_Service_Speech_SpeechRecognitionResult - */ - public function getResults() - { - return $this->results; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/Operation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/Operation.php deleted file mode 100644 index 7049dca2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/Operation.php +++ /dev/null @@ -1,73 +0,0 @@ -done = $done; - } - public function getDone() - { - return $this->done; - } - /** - * @param Google_Service_Speech_Status - */ - public function setError(Google_Service_Speech_Status $error) - { - $this->error = $error; - } - /** - * @return Google_Service_Speech_Status - */ - public function getError() - { - return $this->error; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/RecognitionAudio.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/RecognitionAudio.php deleted file mode 100644 index c83e3b00..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/RecognitionAudio.php +++ /dev/null @@ -1,39 +0,0 @@ -content = $content; - } - public function getContent() - { - return $this->content; - } - public function setUri($uri) - { - $this->uri = $uri; - } - public function getUri() - { - return $this->uri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/RecognitionConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/RecognitionConfig.php deleted file mode 100644 index f532bc53..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/RecognitionConfig.php +++ /dev/null @@ -1,169 +0,0 @@ -audioChannelCount = $audioChannelCount; - } - public function getAudioChannelCount() - { - return $this->audioChannelCount; - } - /** - * @param Google_Service_Speech_SpeakerDiarizationConfig - */ - public function setDiarizationConfig(Google_Service_Speech_SpeakerDiarizationConfig $diarizationConfig) - { - $this->diarizationConfig = $diarizationConfig; - } - /** - * @return Google_Service_Speech_SpeakerDiarizationConfig - */ - public function getDiarizationConfig() - { - return $this->diarizationConfig; - } - public function setEnableAutomaticPunctuation($enableAutomaticPunctuation) - { - $this->enableAutomaticPunctuation = $enableAutomaticPunctuation; - } - public function getEnableAutomaticPunctuation() - { - return $this->enableAutomaticPunctuation; - } - public function setEnableSeparateRecognitionPerChannel($enableSeparateRecognitionPerChannel) - { - $this->enableSeparateRecognitionPerChannel = $enableSeparateRecognitionPerChannel; - } - public function getEnableSeparateRecognitionPerChannel() - { - return $this->enableSeparateRecognitionPerChannel; - } - public function setEnableWordTimeOffsets($enableWordTimeOffsets) - { - $this->enableWordTimeOffsets = $enableWordTimeOffsets; - } - public function getEnableWordTimeOffsets() - { - return $this->enableWordTimeOffsets; - } - public function setEncoding($encoding) - { - $this->encoding = $encoding; - } - public function getEncoding() - { - return $this->encoding; - } - public function setLanguageCode($languageCode) - { - $this->languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } - public function setMaxAlternatives($maxAlternatives) - { - $this->maxAlternatives = $maxAlternatives; - } - public function getMaxAlternatives() - { - return $this->maxAlternatives; - } - /** - * @param Google_Service_Speech_RecognitionMetadata - */ - public function setMetadata(Google_Service_Speech_RecognitionMetadata $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_Speech_RecognitionMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - public function setModel($model) - { - $this->model = $model; - } - public function getModel() - { - return $this->model; - } - public function setProfanityFilter($profanityFilter) - { - $this->profanityFilter = $profanityFilter; - } - public function getProfanityFilter() - { - return $this->profanityFilter; - } - public function setSampleRateHertz($sampleRateHertz) - { - $this->sampleRateHertz = $sampleRateHertz; - } - public function getSampleRateHertz() - { - return $this->sampleRateHertz; - } - /** - * @param Google_Service_Speech_SpeechContext - */ - public function setSpeechContexts($speechContexts) - { - $this->speechContexts = $speechContexts; - } - /** - * @return Google_Service_Speech_SpeechContext - */ - public function getSpeechContexts() - { - return $this->speechContexts; - } - public function setUseEnhanced($useEnhanced) - { - $this->useEnhanced = $useEnhanced; - } - public function getUseEnhanced() - { - return $this->useEnhanced; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/RecognitionMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/RecognitionMetadata.php deleted file mode 100644 index b7c147f0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/RecognitionMetadata.php +++ /dev/null @@ -1,93 +0,0 @@ -audioTopic = $audioTopic; - } - public function getAudioTopic() - { - return $this->audioTopic; - } - public function setIndustryNaicsCodeOfAudio($industryNaicsCodeOfAudio) - { - $this->industryNaicsCodeOfAudio = $industryNaicsCodeOfAudio; - } - public function getIndustryNaicsCodeOfAudio() - { - return $this->industryNaicsCodeOfAudio; - } - public function setInteractionType($interactionType) - { - $this->interactionType = $interactionType; - } - public function getInteractionType() - { - return $this->interactionType; - } - public function setMicrophoneDistance($microphoneDistance) - { - $this->microphoneDistance = $microphoneDistance; - } - public function getMicrophoneDistance() - { - return $this->microphoneDistance; - } - public function setOriginalMediaType($originalMediaType) - { - $this->originalMediaType = $originalMediaType; - } - public function getOriginalMediaType() - { - return $this->originalMediaType; - } - public function setOriginalMimeType($originalMimeType) - { - $this->originalMimeType = $originalMimeType; - } - public function getOriginalMimeType() - { - return $this->originalMimeType; - } - public function setRecordingDeviceName($recordingDeviceName) - { - $this->recordingDeviceName = $recordingDeviceName; - } - public function getRecordingDeviceName() - { - return $this->recordingDeviceName; - } - public function setRecordingDeviceType($recordingDeviceType) - { - $this->recordingDeviceType = $recordingDeviceType; - } - public function getRecordingDeviceType() - { - return $this->recordingDeviceType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/RecognizeRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/RecognizeRequest.php deleted file mode 100644 index 61367c1e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/RecognizeRequest.php +++ /dev/null @@ -1,53 +0,0 @@ -audio = $audio; - } - /** - * @return Google_Service_Speech_RecognitionAudio - */ - public function getAudio() - { - return $this->audio; - } - /** - * @param Google_Service_Speech_RecognitionConfig - */ - public function setConfig(Google_Service_Speech_RecognitionConfig $config) - { - $this->config = $config; - } - /** - * @return Google_Service_Speech_RecognitionConfig - */ - public function getConfig() - { - return $this->config; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/RecognizeResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/RecognizeResponse.php deleted file mode 100644 index 6d45df53..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/RecognizeResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -results = $results; - } - /** - * @return Google_Service_Speech_SpeechRecognitionResult - */ - public function getResults() - { - return $this->results; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/Resource/Operations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/Resource/Operations.php deleted file mode 100644 index 2bbc410b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/Resource/Operations.php +++ /dev/null @@ -1,69 +0,0 @@ - - * $speechService = new Google_Service_Speech(...); - * $operations = $speechService->operations; - * - */ -class Google_Service_Speech_Resource_Operations extends Google_Service_Resource -{ - /** - * Gets the latest state of a long-running operation. Clients can use this - * method to poll the operation result at intervals as recommended by the API - * service. (operations.get) - * - * @param string $name The name of the operation resource. - * @param array $optParams Optional parameters. - * @return Google_Service_Speech_Operation - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Speech_Operation"); - } - /** - * Lists operations that match the specified filter in the request. If the - * server doesn't support this method, it returns `UNIMPLEMENTED`. - * - * NOTE: the `name` binding allows API services to override the binding to use - * different resource name schemes, such as `users/operations`. To override the - * binding, API services can add a binding such as - * `"/v1/{name=users}/operations"` to their service configuration. For backwards - * compatibility, the default name includes the operations collection id, - * however overriding users must ensure the name binding is the parent resource, - * without the operations collection id. (operations.listOperations) - * - * @param array $optParams Optional parameters. - * - * @opt_param string name The name of the operation's parent resource. - * @opt_param string pageToken The standard list page token. - * @opt_param int pageSize The standard list page size. - * @opt_param string filter The standard list filter. - * @return Google_Service_Speech_ListOperationsResponse - */ - public function listOperations($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Speech_ListOperationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/Resource/Projects.php deleted file mode 100644 index db370fc5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/Resource/Projects.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $speechService = new Google_Service_Speech(...); - * $projects = $speechService->projects; - * - */ -class Google_Service_Speech_Resource_Projects extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/Resource/ProjectsLocations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/Resource/ProjectsLocations.php deleted file mode 100644 index 3d9bd475..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/Resource/ProjectsLocations.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $speechService = new Google_Service_Speech(...); - * $locations = $speechService->locations; - * - */ -class Google_Service_Speech_Resource_ProjectsLocations extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/Resource/ProjectsLocationsOperations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/Resource/ProjectsLocationsOperations.php deleted file mode 100644 index f12d187d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/Resource/ProjectsLocationsOperations.php +++ /dev/null @@ -1,70 +0,0 @@ - - * $speechService = new Google_Service_Speech(...); - * $operations = $speechService->operations; - * - */ -class Google_Service_Speech_Resource_ProjectsLocationsOperations extends Google_Service_Resource -{ - /** - * Gets the latest state of a long-running operation. Clients can use this - * method to poll the operation result at intervals as recommended by the API - * service. (operations.get) - * - * @param string $name The name of the operation resource. - * @param array $optParams Optional parameters. - * @return Google_Service_Speech_Operation - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Speech_Operation"); - } - /** - * Lists operations that match the specified filter in the request. If the - * server doesn't support this method, it returns `UNIMPLEMENTED`. - * - * NOTE: the `name` binding allows API services to override the binding to use - * different resource name schemes, such as `users/operations`. To override the - * binding, API services can add a binding such as - * `"/v1/{name=users}/operations"` to their service configuration. For backwards - * compatibility, the default name includes the operations collection id, - * however overriding users must ensure the name binding is the parent resource, - * without the operations collection id. - * (operations.listProjectsLocationsOperations) - * - * @param string $name The name of the operation's parent resource. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The standard list page token. - * @opt_param int pageSize The standard list page size. - * @opt_param string filter The standard list filter. - * @return Google_Service_Speech_ListOperationsResponse - */ - public function listProjectsLocationsOperations($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Speech_ListOperationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/Resource/Speech.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/Resource/Speech.php deleted file mode 100644 index 3e79243b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/Resource/Speech.php +++ /dev/null @@ -1,60 +0,0 @@ - - * $speechService = new Google_Service_Speech(...); - * $speech = $speechService->speech; - * - */ -class Google_Service_Speech_Resource_Speech extends Google_Service_Resource -{ - /** - * Performs asynchronous speech recognition: receive results via the - * google.longrunning.Operations interface. Returns either an `Operation.error` - * or an `Operation.response` which contains a `LongRunningRecognizeResponse` - * message. For more information on asynchronous speech recognition, see the - * [how-to](https://cloud.google.com/speech-to-text/docs/async-recognize). - * (speech.longrunningrecognize) - * - * @param Google_Service_Speech_LongRunningRecognizeRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Speech_Operation - */ - public function longrunningrecognize(Google_Service_Speech_LongRunningRecognizeRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('longrunningrecognize', array($params), "Google_Service_Speech_Operation"); - } - /** - * Performs synchronous speech recognition: receive results after all audio has - * been sent and processed. (speech.recognize) - * - * @param Google_Service_Speech_RecognizeRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Speech_RecognizeResponse - */ - public function recognize(Google_Service_Speech_RecognizeRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('recognize', array($params), "Google_Service_Speech_RecognizeResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/SpeakerDiarizationConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/SpeakerDiarizationConfig.php deleted file mode 100644 index 6697517c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/SpeakerDiarizationConfig.php +++ /dev/null @@ -1,57 +0,0 @@ -enableSpeakerDiarization = $enableSpeakerDiarization; - } - public function getEnableSpeakerDiarization() - { - return $this->enableSpeakerDiarization; - } - public function setMaxSpeakerCount($maxSpeakerCount) - { - $this->maxSpeakerCount = $maxSpeakerCount; - } - public function getMaxSpeakerCount() - { - return $this->maxSpeakerCount; - } - public function setMinSpeakerCount($minSpeakerCount) - { - $this->minSpeakerCount = $minSpeakerCount; - } - public function getMinSpeakerCount() - { - return $this->minSpeakerCount; - } - public function setSpeakerTag($speakerTag) - { - $this->speakerTag = $speakerTag; - } - public function getSpeakerTag() - { - return $this->speakerTag; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/SpeechContext.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/SpeechContext.php deleted file mode 100644 index 10d25312..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/SpeechContext.php +++ /dev/null @@ -1,31 +0,0 @@ -phrases = $phrases; - } - public function getPhrases() - { - return $this->phrases; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/SpeechRecognitionAlternative.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/SpeechRecognitionAlternative.php deleted file mode 100644 index f012fada..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/SpeechRecognitionAlternative.php +++ /dev/null @@ -1,56 +0,0 @@ -confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - public function setTranscript($transcript) - { - $this->transcript = $transcript; - } - public function getTranscript() - { - return $this->transcript; - } - /** - * @param Google_Service_Speech_WordInfo - */ - public function setWords($words) - { - $this->words = $words; - } - /** - * @return Google_Service_Speech_WordInfo - */ - public function getWords() - { - return $this->words; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/SpeechRecognitionResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/SpeechRecognitionResult.php deleted file mode 100644 index 0aab64d1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/SpeechRecognitionResult.php +++ /dev/null @@ -1,47 +0,0 @@ -alternatives = $alternatives; - } - /** - * @return Google_Service_Speech_SpeechRecognitionAlternative - */ - public function getAlternatives() - { - return $this->alternatives; - } - public function setChannelTag($channelTag) - { - $this->channelTag = $channelTag; - } - public function getChannelTag() - { - return $this->channelTag; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/Status.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/Status.php deleted file mode 100644 index a5a6cd8e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/Status.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/WordInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/WordInfo.php deleted file mode 100644 index 0a644c4b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Speech/WordInfo.php +++ /dev/null @@ -1,57 +0,0 @@ -endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setSpeakerTag($speakerTag) - { - $this->speakerTag = $speakerTag; - } - public function getSpeakerTag() - { - return $this->speakerTag; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } - public function setWord($word) - { - $this->word = $word; - } - public function getWord() - { - return $this->word; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage.php deleted file mode 100644 index c096e1df..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage.php +++ /dev/null @@ -1,1734 +0,0 @@ - - * Stores and retrieves potentially large, immutable data objects.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Storage extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** View your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM_READ_ONLY = - "https://www.googleapis.com/auth/cloud-platform.read-only"; - /** Manage your data and permissions in Google Cloud Storage. */ - const DEVSTORAGE_FULL_CONTROL = - "https://www.googleapis.com/auth/devstorage.full_control"; - /** View your data in Google Cloud Storage. */ - const DEVSTORAGE_READ_ONLY = - "https://www.googleapis.com/auth/devstorage.read_only"; - /** Manage your data in Google Cloud Storage. */ - const DEVSTORAGE_READ_WRITE = - "https://www.googleapis.com/auth/devstorage.read_write"; - - public $bucketAccessControls; - public $buckets; - public $channels; - public $defaultObjectAccessControls; - public $notifications; - public $objectAccessControls; - public $objects; - public $projects_hmacKeys; - public $projects_serviceAccount; - - /** - * Constructs the internal representation of the Storage service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://storage.googleapis.com/'; - $this->servicePath = 'storage/v1/'; - $this->batchPath = 'batch/storage/v1'; - $this->version = 'v1'; - $this->serviceName = 'storage'; - - $this->bucketAccessControls = new Google_Service_Storage_Resource_BucketAccessControls( - $this, - $this->serviceName, - 'bucketAccessControls', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'b/{bucket}/acl/{entity}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'entity' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'provisionalUserProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'b/{bucket}/acl/{entity}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'entity' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'provisionalUserProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'insert' => array( - 'path' => 'b/{bucket}/acl', - 'httpMethod' => 'POST', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'provisionalUserProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'b/{bucket}/acl', - 'httpMethod' => 'GET', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'provisionalUserProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'b/{bucket}/acl/{entity}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'entity' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'provisionalUserProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'b/{bucket}/acl/{entity}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'entity' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'provisionalUserProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->buckets = new Google_Service_Storage_Resource_Buckets( - $this, - $this->serviceName, - 'buckets', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'b/{bucket}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'ifMetagenerationMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifMetagenerationNotMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'provisionalUserProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'b/{bucket}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'ifMetagenerationMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifMetagenerationNotMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'provisionalUserProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'getIamPolicy' => array( - 'path' => 'b/{bucket}/iam', - 'httpMethod' => 'GET', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'optionsRequestedPolicyVersion' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'provisionalUserProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'insert' => array( - 'path' => 'b', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'predefinedAcl' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'predefinedDefaultObjectAcl' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'provisionalUserProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'b', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'prefix' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'provisionalUserProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'lockRetentionPolicy' => array( - 'path' => 'b/{bucket}/lockRetentionPolicy', - 'httpMethod' => 'POST', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'ifMetagenerationMatch' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'provisionalUserProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'b/{bucket}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'ifMetagenerationMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifMetagenerationNotMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'predefinedAcl' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'predefinedDefaultObjectAcl' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'provisionalUserProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setIamPolicy' => array( - 'path' => 'b/{bucket}/iam', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'provisionalUserProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'testIamPermissions' => array( - 'path' => 'b/{bucket}/iam/testPermissions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'permissions' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - 'required' => true, - ), - 'provisionalUserProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'b/{bucket}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'ifMetagenerationMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifMetagenerationNotMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'predefinedAcl' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'predefinedDefaultObjectAcl' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'provisionalUserProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->channels = new Google_Service_Storage_Resource_Channels( - $this, - $this->serviceName, - 'channels', - array( - 'methods' => array( - 'stop' => array( - 'path' => 'channels/stop', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->defaultObjectAccessControls = new Google_Service_Storage_Resource_DefaultObjectAccessControls( - $this, - $this->serviceName, - 'defaultObjectAccessControls', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'b/{bucket}/defaultObjectAcl/{entity}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'entity' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'provisionalUserProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'b/{bucket}/defaultObjectAcl/{entity}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'entity' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'provisionalUserProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'insert' => array( - 'path' => 'b/{bucket}/defaultObjectAcl', - 'httpMethod' => 'POST', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'provisionalUserProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'b/{bucket}/defaultObjectAcl', - 'httpMethod' => 'GET', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'ifMetagenerationMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifMetagenerationNotMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'provisionalUserProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'b/{bucket}/defaultObjectAcl/{entity}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'entity' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'provisionalUserProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'b/{bucket}/defaultObjectAcl/{entity}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'entity' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'provisionalUserProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->notifications = new Google_Service_Storage_Resource_Notifications( - $this, - $this->serviceName, - 'notifications', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'b/{bucket}/notificationConfigs/{notification}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'notification' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'provisionalUserProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'b/{bucket}/notificationConfigs/{notification}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'notification' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'provisionalUserProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'insert' => array( - 'path' => 'b/{bucket}/notificationConfigs', - 'httpMethod' => 'POST', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'provisionalUserProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'b/{bucket}/notificationConfigs', - 'httpMethod' => 'GET', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'provisionalUserProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->objectAccessControls = new Google_Service_Storage_Resource_ObjectAccessControls( - $this, - $this->serviceName, - 'objectAccessControls', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'b/{bucket}/o/{object}/acl/{entity}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'object' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'entity' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'generation' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'provisionalUserProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'b/{bucket}/o/{object}/acl/{entity}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'object' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'entity' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'generation' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'provisionalUserProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'insert' => array( - 'path' => 'b/{bucket}/o/{object}/acl', - 'httpMethod' => 'POST', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'object' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'generation' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'provisionalUserProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'b/{bucket}/o/{object}/acl', - 'httpMethod' => 'GET', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'object' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'generation' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'provisionalUserProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'b/{bucket}/o/{object}/acl/{entity}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'object' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'entity' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'generation' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'provisionalUserProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'b/{bucket}/o/{object}/acl/{entity}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'object' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'entity' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'generation' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'provisionalUserProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->objects = new Google_Service_Storage_Resource_Objects( - $this, - $this->serviceName, - 'objects', - array( - 'methods' => array( - 'compose' => array( - 'path' => 'b/{destinationBucket}/o/{destinationObject}/compose', - 'httpMethod' => 'POST', - 'parameters' => array( - 'destinationBucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'destinationObject' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'destinationPredefinedAcl' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifGenerationMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifMetagenerationMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'kmsKeyName' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'provisionalUserProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'copy' => array( - 'path' => 'b/{sourceBucket}/o/{sourceObject}/copyTo/b/{destinationBucket}/o/{destinationObject}', - 'httpMethod' => 'POST', - 'parameters' => array( - 'sourceBucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sourceObject' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'destinationBucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'destinationObject' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'destinationPredefinedAcl' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifGenerationMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifGenerationNotMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifMetagenerationMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifMetagenerationNotMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifSourceGenerationMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifSourceGenerationNotMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifSourceMetagenerationMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifSourceMetagenerationNotMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'provisionalUserProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sourceGeneration' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => 'b/{bucket}/o/{object}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'object' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'generation' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifGenerationMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifGenerationNotMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifMetagenerationMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifMetagenerationNotMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'provisionalUserProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'b/{bucket}/o/{object}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'object' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'generation' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifGenerationMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifGenerationNotMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifMetagenerationMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifMetagenerationNotMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'provisionalUserProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'getIamPolicy' => array( - 'path' => 'b/{bucket}/o/{object}/iam', - 'httpMethod' => 'GET', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'object' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'generation' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'provisionalUserProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'insert' => array( - 'path' => 'b/{bucket}/o', - 'httpMethod' => 'POST', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'contentEncoding' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifGenerationMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifGenerationNotMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifMetagenerationMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifMetagenerationNotMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'kmsKeyName' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'name' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'predefinedAcl' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'provisionalUserProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'b/{bucket}/o', - 'httpMethod' => 'GET', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'delimiter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'includeTrailingDelimiter' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'prefix' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'provisionalUserProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'versions' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'patch' => array( - 'path' => 'b/{bucket}/o/{object}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'object' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'generation' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifGenerationMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifGenerationNotMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifMetagenerationMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifMetagenerationNotMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'predefinedAcl' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'provisionalUserProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'rewrite' => array( - 'path' => 'b/{sourceBucket}/o/{sourceObject}/rewriteTo/b/{destinationBucket}/o/{destinationObject}', - 'httpMethod' => 'POST', - 'parameters' => array( - 'sourceBucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sourceObject' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'destinationBucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'destinationObject' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'destinationKmsKeyName' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'destinationPredefinedAcl' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifGenerationMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifGenerationNotMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifMetagenerationMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifMetagenerationNotMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifSourceGenerationMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifSourceGenerationNotMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifSourceMetagenerationMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifSourceMetagenerationNotMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxBytesRewrittenPerCall' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'provisionalUserProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'rewriteToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sourceGeneration' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'setIamPolicy' => array( - 'path' => 'b/{bucket}/o/{object}/iam', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'object' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'generation' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'provisionalUserProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'testIamPermissions' => array( - 'path' => 'b/{bucket}/o/{object}/iam/testPermissions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'object' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'permissions' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - 'required' => true, - ), - 'generation' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'provisionalUserProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'b/{bucket}/o/{object}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'object' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'generation' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifGenerationMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifGenerationNotMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifMetagenerationMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ifMetagenerationNotMatch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'predefinedAcl' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'provisionalUserProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'watchAll' => array( - 'path' => 'b/{bucket}/o/watch', - 'httpMethod' => 'POST', - 'parameters' => array( - 'bucket' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'delimiter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'includeTrailingDelimiter' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'prefix' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'provisionalUserProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'versions' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ), - ) - ) - ); - $this->projects_hmacKeys = new Google_Service_Storage_Resource_ProjectsHmacKeys( - $this, - $this->serviceName, - 'hmacKeys', - array( - 'methods' => array( - 'create' => array( - 'path' => 'projects/{projectId}/hmacKeys', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'serviceAccountEmail' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'userProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => 'projects/{projectId}/hmacKeys/{accessId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'accessId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'userProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'projects/{projectId}/hmacKeys/{accessId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'accessId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'userProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'projects/{projectId}/hmacKeys', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'serviceAccountEmail' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'showDeletedKeys' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'userProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'projects/{projectId}/hmacKeys/{accessId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'accessId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'userProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_serviceAccount = new Google_Service_Storage_Resource_ProjectsServiceAccount( - $this, - $this->serviceName, - 'serviceAccount', - array( - 'methods' => array( - 'get' => array( - 'path' => 'projects/{projectId}/serviceAccount', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'provisionalUserProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'userProject' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/Bucket.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/Bucket.php deleted file mode 100644 index 8029a3fc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/Bucket.php +++ /dev/null @@ -1,340 +0,0 @@ -acl = $acl; - } - /** - * @return Google_Service_Storage_BucketAccessControl - */ - public function getAcl() - { - return $this->acl; - } - /** - * @param Google_Service_Storage_BucketBilling - */ - public function setBilling(Google_Service_Storage_BucketBilling $billing) - { - $this->billing = $billing; - } - /** - * @return Google_Service_Storage_BucketBilling - */ - public function getBilling() - { - return $this->billing; - } - /** - * @param Google_Service_Storage_BucketCors - */ - public function setCors($cors) - { - $this->cors = $cors; - } - /** - * @return Google_Service_Storage_BucketCors - */ - public function getCors() - { - return $this->cors; - } - public function setDefaultEventBasedHold($defaultEventBasedHold) - { - $this->defaultEventBasedHold = $defaultEventBasedHold; - } - public function getDefaultEventBasedHold() - { - return $this->defaultEventBasedHold; - } - /** - * @param Google_Service_Storage_ObjectAccessControl - */ - public function setDefaultObjectAcl($defaultObjectAcl) - { - $this->defaultObjectAcl = $defaultObjectAcl; - } - /** - * @return Google_Service_Storage_ObjectAccessControl - */ - public function getDefaultObjectAcl() - { - return $this->defaultObjectAcl; - } - /** - * @param Google_Service_Storage_BucketEncryption - */ - public function setEncryption(Google_Service_Storage_BucketEncryption $encryption) - { - $this->encryption = $encryption; - } - /** - * @return Google_Service_Storage_BucketEncryption - */ - public function getEncryption() - { - return $this->encryption; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_Storage_BucketIamConfiguration - */ - public function setIamConfiguration(Google_Service_Storage_BucketIamConfiguration $iamConfiguration) - { - $this->iamConfiguration = $iamConfiguration; - } - /** - * @return Google_Service_Storage_BucketIamConfiguration - */ - public function getIamConfiguration() - { - return $this->iamConfiguration; - } - 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 setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - /** - * @param Google_Service_Storage_BucketLifecycle - */ - public function setLifecycle(Google_Service_Storage_BucketLifecycle $lifecycle) - { - $this->lifecycle = $lifecycle; - } - /** - * @return Google_Service_Storage_BucketLifecycle - */ - public function getLifecycle() - { - return $this->lifecycle; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setLocationType($locationType) - { - $this->locationType = $locationType; - } - public function getLocationType() - { - return $this->locationType; - } - /** - * @param Google_Service_Storage_BucketLogging - */ - public function setLogging(Google_Service_Storage_BucketLogging $logging) - { - $this->logging = $logging; - } - /** - * @return Google_Service_Storage_BucketLogging - */ - public function getLogging() - { - return $this->logging; - } - public function setMetageneration($metageneration) - { - $this->metageneration = $metageneration; - } - public function getMetageneration() - { - return $this->metageneration; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Storage_BucketOwner - */ - public function setOwner(Google_Service_Storage_BucketOwner $owner) - { - $this->owner = $owner; - } - /** - * @return Google_Service_Storage_BucketOwner - */ - public function getOwner() - { - return $this->owner; - } - public function setProjectNumber($projectNumber) - { - $this->projectNumber = $projectNumber; - } - public function getProjectNumber() - { - return $this->projectNumber; - } - /** - * @param Google_Service_Storage_BucketRetentionPolicy - */ - public function setRetentionPolicy(Google_Service_Storage_BucketRetentionPolicy $retentionPolicy) - { - $this->retentionPolicy = $retentionPolicy; - } - /** - * @return Google_Service_Storage_BucketRetentionPolicy - */ - public function getRetentionPolicy() - { - return $this->retentionPolicy; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setStorageClass($storageClass) - { - $this->storageClass = $storageClass; - } - public function getStorageClass() - { - return $this->storageClass; - } - public function setTimeCreated($timeCreated) - { - $this->timeCreated = $timeCreated; - } - public function getTimeCreated() - { - return $this->timeCreated; - } - public function setUpdated($updated) - { - $this->updated = $updated; - } - public function getUpdated() - { - return $this->updated; - } - /** - * @param Google_Service_Storage_BucketVersioning - */ - public function setVersioning(Google_Service_Storage_BucketVersioning $versioning) - { - $this->versioning = $versioning; - } - /** - * @return Google_Service_Storage_BucketVersioning - */ - public function getVersioning() - { - return $this->versioning; - } - /** - * @param Google_Service_Storage_BucketWebsite - */ - public function setWebsite(Google_Service_Storage_BucketWebsite $website) - { - $this->website = $website; - } - /** - * @return Google_Service_Storage_BucketWebsite - */ - public function getWebsite() - { - return $this->website; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/BucketAccessControl.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/BucketAccessControl.php deleted file mode 100644 index c172c8e7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/BucketAccessControl.php +++ /dev/null @@ -1,127 +0,0 @@ -bucket = $bucket; - } - public function getBucket() - { - return $this->bucket; - } - public function setDomain($domain) - { - $this->domain = $domain; - } - public function getDomain() - { - return $this->domain; - } - public function setEmail($email) - { - $this->email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setEntity($entity) - { - $this->entity = $entity; - } - public function getEntity() - { - return $this->entity; - } - public function setEntityId($entityId) - { - $this->entityId = $entityId; - } - public function getEntityId() - { - return $this->entityId; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - 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; - } - /** - * @param Google_Service_Storage_BucketAccessControlProjectTeam - */ - public function setProjectTeam(Google_Service_Storage_BucketAccessControlProjectTeam $projectTeam) - { - $this->projectTeam = $projectTeam; - } - /** - * @return Google_Service_Storage_BucketAccessControlProjectTeam - */ - public function getProjectTeam() - { - return $this->projectTeam; - } - public function setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/BucketAccessControlProjectTeam.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/BucketAccessControlProjectTeam.php deleted file mode 100644 index 22a67794..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/BucketAccessControlProjectTeam.php +++ /dev/null @@ -1,39 +0,0 @@ -projectNumber = $projectNumber; - } - public function getProjectNumber() - { - return $this->projectNumber; - } - public function setTeam($team) - { - $this->team = $team; - } - public function getTeam() - { - return $this->team; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/BucketAccessControls.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/BucketAccessControls.php deleted file mode 100644 index 2e0c9786..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/BucketAccessControls.php +++ /dev/null @@ -1,47 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Storage_BucketAccessControl - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/BucketBilling.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/BucketBilling.php deleted file mode 100644 index 55bab314..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/BucketBilling.php +++ /dev/null @@ -1,30 +0,0 @@ -requesterPays = $requesterPays; - } - public function getRequesterPays() - { - return $this->requesterPays; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/BucketCors.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/BucketCors.php deleted file mode 100644 index 5ec6dbaa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/BucketCors.php +++ /dev/null @@ -1,58 +0,0 @@ -maxAgeSeconds = $maxAgeSeconds; - } - public function getMaxAgeSeconds() - { - return $this->maxAgeSeconds; - } - public function setMethod($method) - { - $this->method = $method; - } - public function getMethod() - { - return $this->method; - } - public function setOrigin($origin) - { - $this->origin = $origin; - } - public function getOrigin() - { - return $this->origin; - } - public function setResponseHeader($responseHeader) - { - $this->responseHeader = $responseHeader; - } - public function getResponseHeader() - { - return $this->responseHeader; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/BucketEncryption.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/BucketEncryption.php deleted file mode 100644 index f041a74e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/BucketEncryption.php +++ /dev/null @@ -1,30 +0,0 @@ -defaultKmsKeyName = $defaultKmsKeyName; - } - public function getDefaultKmsKeyName() - { - return $this->defaultKmsKeyName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/BucketIamConfiguration.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/BucketIamConfiguration.php deleted file mode 100644 index 51828957..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/BucketIamConfiguration.php +++ /dev/null @@ -1,53 +0,0 @@ -bucketPolicyOnly = $bucketPolicyOnly; - } - /** - * @return Google_Service_Storage_BucketIamConfigurationBucketPolicyOnly - */ - public function getBucketPolicyOnly() - { - return $this->bucketPolicyOnly; - } - /** - * @param Google_Service_Storage_BucketIamConfigurationUniformBucketLevelAccess - */ - public function setUniformBucketLevelAccess(Google_Service_Storage_BucketIamConfigurationUniformBucketLevelAccess $uniformBucketLevelAccess) - { - $this->uniformBucketLevelAccess = $uniformBucketLevelAccess; - } - /** - * @return Google_Service_Storage_BucketIamConfigurationUniformBucketLevelAccess - */ - public function getUniformBucketLevelAccess() - { - return $this->uniformBucketLevelAccess; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/BucketIamConfigurationBucketPolicyOnly.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/BucketIamConfigurationBucketPolicyOnly.php deleted file mode 100644 index 446e963e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/BucketIamConfigurationBucketPolicyOnly.php +++ /dev/null @@ -1,39 +0,0 @@ -enabled = $enabled; - } - public function getEnabled() - { - return $this->enabled; - } - public function setLockedTime($lockedTime) - { - $this->lockedTime = $lockedTime; - } - public function getLockedTime() - { - return $this->lockedTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/BucketIamConfigurationUniformBucketLevelAccess.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/BucketIamConfigurationUniformBucketLevelAccess.php deleted file mode 100644 index ef787956..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/BucketIamConfigurationUniformBucketLevelAccess.php +++ /dev/null @@ -1,39 +0,0 @@ -enabled = $enabled; - } - public function getEnabled() - { - return $this->enabled; - } - public function setLockedTime($lockedTime) - { - $this->lockedTime = $lockedTime; - } - public function getLockedTime() - { - return $this->lockedTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/BucketLifecycle.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/BucketLifecycle.php deleted file mode 100644 index b0c65fb6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/BucketLifecycle.php +++ /dev/null @@ -1,38 +0,0 @@ -rule = $rule; - } - /** - * @return Google_Service_Storage_BucketLifecycleRule - */ - public function getRule() - { - return $this->rule; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/BucketLifecycleRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/BucketLifecycleRule.php deleted file mode 100644 index 05df1b6f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/BucketLifecycleRule.php +++ /dev/null @@ -1,53 +0,0 @@ -action = $action; - } - /** - * @return Google_Service_Storage_BucketLifecycleRuleAction - */ - public function getAction() - { - return $this->action; - } - /** - * @param Google_Service_Storage_BucketLifecycleRuleCondition - */ - public function setCondition(Google_Service_Storage_BucketLifecycleRuleCondition $condition) - { - $this->condition = $condition; - } - /** - * @return Google_Service_Storage_BucketLifecycleRuleCondition - */ - public function getCondition() - { - return $this->condition; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/BucketLifecycleRuleAction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/BucketLifecycleRuleAction.php deleted file mode 100644 index d63b7a82..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/BucketLifecycleRuleAction.php +++ /dev/null @@ -1,39 +0,0 @@ -storageClass = $storageClass; - } - public function getStorageClass() - { - return $this->storageClass; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/BucketLifecycleRuleCondition.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/BucketLifecycleRuleCondition.php deleted file mode 100644 index 6d0d9189..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/BucketLifecycleRuleCondition.php +++ /dev/null @@ -1,76 +0,0 @@ -age = $age; - } - public function getAge() - { - return $this->age; - } - public function setCreatedBefore($createdBefore) - { - $this->createdBefore = $createdBefore; - } - public function getCreatedBefore() - { - return $this->createdBefore; - } - public function setIsLive($isLive) - { - $this->isLive = $isLive; - } - public function getIsLive() - { - return $this->isLive; - } - public function setMatchesPattern($matchesPattern) - { - $this->matchesPattern = $matchesPattern; - } - public function getMatchesPattern() - { - return $this->matchesPattern; - } - public function setMatchesStorageClass($matchesStorageClass) - { - $this->matchesStorageClass = $matchesStorageClass; - } - public function getMatchesStorageClass() - { - return $this->matchesStorageClass; - } - public function setNumNewerVersions($numNewerVersions) - { - $this->numNewerVersions = $numNewerVersions; - } - public function getNumNewerVersions() - { - return $this->numNewerVersions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/BucketLogging.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/BucketLogging.php deleted file mode 100644 index 07723aab..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/BucketLogging.php +++ /dev/null @@ -1,39 +0,0 @@ -logBucket = $logBucket; - } - public function getLogBucket() - { - return $this->logBucket; - } - public function setLogObjectPrefix($logObjectPrefix) - { - $this->logObjectPrefix = $logObjectPrefix; - } - public function getLogObjectPrefix() - { - return $this->logObjectPrefix; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/BucketOwner.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/BucketOwner.php deleted file mode 100644 index 858d94ec..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/BucketOwner.php +++ /dev/null @@ -1,39 +0,0 @@ -entity = $entity; - } - public function getEntity() - { - return $this->entity; - } - public function setEntityId($entityId) - { - $this->entityId = $entityId; - } - public function getEntityId() - { - return $this->entityId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/BucketRetentionPolicy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/BucketRetentionPolicy.php deleted file mode 100644 index 3f5a412c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/BucketRetentionPolicy.php +++ /dev/null @@ -1,48 +0,0 @@ -effectiveTime = $effectiveTime; - } - public function getEffectiveTime() - { - return $this->effectiveTime; - } - public function setIsLocked($isLocked) - { - $this->isLocked = $isLocked; - } - public function getIsLocked() - { - return $this->isLocked; - } - public function setRetentionPeriod($retentionPeriod) - { - $this->retentionPeriod = $retentionPeriod; - } - public function getRetentionPeriod() - { - return $this->retentionPeriod; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/BucketVersioning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/BucketVersioning.php deleted file mode 100644 index fd7589db..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/BucketVersioning.php +++ /dev/null @@ -1,30 +0,0 @@ -enabled = $enabled; - } - public function getEnabled() - { - return $this->enabled; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/BucketWebsite.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/BucketWebsite.php deleted file mode 100644 index 281698be..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/BucketWebsite.php +++ /dev/null @@ -1,39 +0,0 @@ -mainPageSuffix = $mainPageSuffix; - } - public function getMainPageSuffix() - { - return $this->mainPageSuffix; - } - public function setNotFoundPage($notFoundPage) - { - $this->notFoundPage = $notFoundPage; - } - public function getNotFoundPage() - { - return $this->notFoundPage; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/Buckets.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/Buckets.php deleted file mode 100644 index 7cdba85a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/Buckets.php +++ /dev/null @@ -1,56 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Storage_Bucket - */ - public function getItems() - { - return $this->items; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/Channel.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/Channel.php deleted file mode 100644 index 9e901c10..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/Channel.php +++ /dev/null @@ -1,111 +0,0 @@ -address = $address; - } - public function getAddress() - { - return $this->address; - } - public function setExpiration($expiration) - { - $this->expiration = $expiration; - } - public function getExpiration() - { - return $this->expiration; - } - 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 setParams($params) - { - $this->params = $params; - } - public function getParams() - { - return $this->params; - } - public function setPayload($payload) - { - $this->payload = $payload; - } - public function getPayload() - { - return $this->payload; - } - public function setResourceId($resourceId) - { - $this->resourceId = $resourceId; - } - public function getResourceId() - { - return $this->resourceId; - } - public function setResourceUri($resourceUri) - { - $this->resourceUri = $resourceUri; - } - public function getResourceUri() - { - return $this->resourceUri; - } - public function setToken($token) - { - $this->token = $token; - } - public function getToken() - { - return $this->token; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/ComposeRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/ComposeRequest.php deleted file mode 100644 index 73967bf3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/ComposeRequest.php +++ /dev/null @@ -1,63 +0,0 @@ -destination = $destination; - } - /** - * @return Google_Service_Storage_StorageObject - */ - public function getDestination() - { - return $this->destination; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Storage_ComposeRequestSourceObjects - */ - public function setSourceObjects($sourceObjects) - { - $this->sourceObjects = $sourceObjects; - } - /** - * @return Google_Service_Storage_ComposeRequestSourceObjects - */ - public function getSourceObjects() - { - return $this->sourceObjects; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/ComposeRequestSourceObjects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/ComposeRequestSourceObjects.php deleted file mode 100644 index d9a0f615..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/ComposeRequestSourceObjects.php +++ /dev/null @@ -1,55 +0,0 @@ -generation = $generation; - } - public function getGeneration() - { - return $this->generation; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Storage_ComposeRequestSourceObjectsObjectPreconditions - */ - public function setObjectPreconditions(Google_Service_Storage_ComposeRequestSourceObjectsObjectPreconditions $objectPreconditions) - { - $this->objectPreconditions = $objectPreconditions; - } - /** - * @return Google_Service_Storage_ComposeRequestSourceObjectsObjectPreconditions - */ - public function getObjectPreconditions() - { - return $this->objectPreconditions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/ComposeRequestSourceObjectsObjectPreconditions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/ComposeRequestSourceObjectsObjectPreconditions.php deleted file mode 100644 index 6761f9b8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/ComposeRequestSourceObjectsObjectPreconditions.php +++ /dev/null @@ -1,30 +0,0 @@ -ifGenerationMatch = $ifGenerationMatch; - } - public function getIfGenerationMatch() - { - return $this->ifGenerationMatch; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/Expr.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/Expr.php deleted file mode 100644 index 966c2d43..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/Expr.php +++ /dev/null @@ -1,57 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setExpression($expression) - { - $this->expression = $expression; - } - public function getExpression() - { - return $this->expression; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/HmacKey.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/HmacKey.php deleted file mode 100644 index aed22c70..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/HmacKey.php +++ /dev/null @@ -1,55 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_Storage_HmacKeyMetadata - */ - public function setMetadata(Google_Service_Storage_HmacKeyMetadata $metadata) - { - $this->metadata = $metadata; - } - /** - * @return Google_Service_Storage_HmacKeyMetadata - */ - public function getMetadata() - { - return $this->metadata; - } - public function setSecret($secret) - { - $this->secret = $secret; - } - public function getSecret() - { - return $this->secret; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/HmacKeyMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/HmacKeyMetadata.php deleted file mode 100644 index b9dc1e7c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/HmacKeyMetadata.php +++ /dev/null @@ -1,111 +0,0 @@ -accessId = $accessId; - } - public function getAccessId() - { - return $this->accessId; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - 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 setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setServiceAccountEmail($serviceAccountEmail) - { - $this->serviceAccountEmail = $serviceAccountEmail; - } - public function getServiceAccountEmail() - { - return $this->serviceAccountEmail; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setTimeCreated($timeCreated) - { - $this->timeCreated = $timeCreated; - } - public function getTimeCreated() - { - return $this->timeCreated; - } - public function setUpdated($updated) - { - $this->updated = $updated; - } - public function getUpdated() - { - return $this->updated; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/HmacKeysMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/HmacKeysMetadata.php deleted file mode 100644 index aec04748..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/HmacKeysMetadata.php +++ /dev/null @@ -1,56 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Storage_HmacKeyMetadata - */ - public function getItems() - { - return $this->items; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/Notification.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/Notification.php deleted file mode 100644 index 0c58ec3f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/Notification.php +++ /dev/null @@ -1,109 +0,0 @@ - "custom_attributes", - "eventTypes" => "event_types", - "objectNamePrefix" => "object_name_prefix", - "payloadFormat" => "payload_format", - ); - public $customAttributes; - public $etag; - public $eventTypes; - public $id; - public $kind; - public $objectNamePrefix; - public $payloadFormat; - public $selfLink; - public $topic; - - public function setCustomAttributes($customAttributes) - { - $this->customAttributes = $customAttributes; - } - public function getCustomAttributes() - { - return $this->customAttributes; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setEventTypes($eventTypes) - { - $this->eventTypes = $eventTypes; - } - public function getEventTypes() - { - return $this->eventTypes; - } - 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 setObjectNamePrefix($objectNamePrefix) - { - $this->objectNamePrefix = $objectNamePrefix; - } - public function getObjectNamePrefix() - { - return $this->objectNamePrefix; - } - public function setPayloadFormat($payloadFormat) - { - $this->payloadFormat = $payloadFormat; - } - public function getPayloadFormat() - { - return $this->payloadFormat; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setTopic($topic) - { - $this->topic = $topic; - } - public function getTopic() - { - return $this->topic; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/Notifications.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/Notifications.php deleted file mode 100644 index 47eb8ab1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/Notifications.php +++ /dev/null @@ -1,47 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Storage_Notification - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/ObjectAccessControl.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/ObjectAccessControl.php deleted file mode 100644 index e8561120..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/ObjectAccessControl.php +++ /dev/null @@ -1,145 +0,0 @@ -bucket = $bucket; - } - public function getBucket() - { - return $this->bucket; - } - public function setDomain($domain) - { - $this->domain = $domain; - } - public function getDomain() - { - return $this->domain; - } - public function setEmail($email) - { - $this->email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setEntity($entity) - { - $this->entity = $entity; - } - public function getEntity() - { - return $this->entity; - } - public function setEntityId($entityId) - { - $this->entityId = $entityId; - } - public function getEntityId() - { - return $this->entityId; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setGeneration($generation) - { - $this->generation = $generation; - } - public function getGeneration() - { - return $this->generation; - } - 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 setObject($object) - { - $this->object = $object; - } - public function getObject() - { - return $this->object; - } - /** - * @param Google_Service_Storage_ObjectAccessControlProjectTeam - */ - public function setProjectTeam(Google_Service_Storage_ObjectAccessControlProjectTeam $projectTeam) - { - $this->projectTeam = $projectTeam; - } - /** - * @return Google_Service_Storage_ObjectAccessControlProjectTeam - */ - public function getProjectTeam() - { - return $this->projectTeam; - } - public function setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/ObjectAccessControlProjectTeam.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/ObjectAccessControlProjectTeam.php deleted file mode 100644 index b338196a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/ObjectAccessControlProjectTeam.php +++ /dev/null @@ -1,39 +0,0 @@ -projectNumber = $projectNumber; - } - public function getProjectNumber() - { - return $this->projectNumber; - } - public function setTeam($team) - { - $this->team = $team; - } - public function getTeam() - { - return $this->team; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/ObjectAccessControls.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/ObjectAccessControls.php deleted file mode 100644 index 7ee11564..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/ObjectAccessControls.php +++ /dev/null @@ -1,47 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Storage_ObjectAccessControl - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/Objects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/Objects.php deleted file mode 100644 index f476eab7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/Objects.php +++ /dev/null @@ -1,65 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Storage_StorageObject - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setPrefixes($prefixes) - { - $this->prefixes = $prefixes; - } - public function getPrefixes() - { - return $this->prefixes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/Policy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/Policy.php deleted file mode 100644 index 2e586b97..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/Policy.php +++ /dev/null @@ -1,74 +0,0 @@ -bindings = $bindings; - } - /** - * @return Google_Service_Storage_PolicyBindings - */ - public function getBindings() - { - return $this->bindings; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setResourceId($resourceId) - { - $this->resourceId = $resourceId; - } - public function getResourceId() - { - return $this->resourceId; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/PolicyBindings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/PolicyBindings.php deleted file mode 100644 index ca54d40a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/PolicyBindings.php +++ /dev/null @@ -1,56 +0,0 @@ -condition = $condition; - } - /** - * @return Google_Service_Storage_Expr - */ - public function getCondition() - { - return $this->condition; - } - public function setMembers($members) - { - $this->members = $members; - } - public function getMembers() - { - return $this->members; - } - public function setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/Resource/BucketAccessControls.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/Resource/BucketAccessControls.php deleted file mode 100644 index 38d0123f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/Resource/BucketAccessControls.php +++ /dev/null @@ -1,154 +0,0 @@ - - * $storageService = new Google_Service_Storage(...); - * $bucketAccessControls = $storageService->bucketAccessControls; - * - */ -class Google_Service_Storage_Resource_BucketAccessControls extends Google_Service_Resource -{ - /** - * Permanently deletes the ACL entry for the specified entity on the specified - * bucket. (bucketAccessControls.delete) - * - * @param string $bucket Name of a bucket. - * @param string $entity The entity holding the permission. Can be user-userId, - * user-emailAddress, group-groupId, group-emailAddress, allUsers, or - * allAuthenticatedUsers. - * @param array $optParams Optional parameters. - * - * @opt_param string provisionalUserProject The project to be billed for this - * request if the target bucket is requester-pays bucket. - * @opt_param string userProject The project to be billed for this request. - * Required for Requester Pays buckets. - */ - public function delete($bucket, $entity, $optParams = array()) - { - $params = array('bucket' => $bucket, 'entity' => $entity); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Returns the ACL entry for the specified entity on the specified bucket. - * (bucketAccessControls.get) - * - * @param string $bucket Name of a bucket. - * @param string $entity The entity holding the permission. Can be user-userId, - * user-emailAddress, group-groupId, group-emailAddress, allUsers, or - * allAuthenticatedUsers. - * @param array $optParams Optional parameters. - * - * @opt_param string provisionalUserProject The project to be billed for this - * request if the target bucket is requester-pays bucket. - * @opt_param string userProject The project to be billed for this request. - * Required for Requester Pays buckets. - * @return Google_Service_Storage_BucketAccessControl - */ - public function get($bucket, $entity, $optParams = array()) - { - $params = array('bucket' => $bucket, 'entity' => $entity); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Storage_BucketAccessControl"); - } - /** - * Creates a new ACL entry on the specified bucket. - * (bucketAccessControls.insert) - * - * @param string $bucket Name of a bucket. - * @param Google_Service_Storage_BucketAccessControl $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string provisionalUserProject The project to be billed for this - * request if the target bucket is requester-pays bucket. - * @opt_param string userProject The project to be billed for this request. - * Required for Requester Pays buckets. - * @return Google_Service_Storage_BucketAccessControl - */ - public function insert($bucket, Google_Service_Storage_BucketAccessControl $postBody, $optParams = array()) - { - $params = array('bucket' => $bucket, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Storage_BucketAccessControl"); - } - /** - * Retrieves ACL entries on the specified bucket. - * (bucketAccessControls.listBucketAccessControls) - * - * @param string $bucket Name of a bucket. - * @param array $optParams Optional parameters. - * - * @opt_param string provisionalUserProject The project to be billed for this - * request if the target bucket is requester-pays bucket. - * @opt_param string userProject The project to be billed for this request. - * Required for Requester Pays buckets. - * @return Google_Service_Storage_BucketAccessControls - */ - public function listBucketAccessControls($bucket, $optParams = array()) - { - $params = array('bucket' => $bucket); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Storage_BucketAccessControls"); - } - /** - * Patches an ACL entry on the specified bucket. (bucketAccessControls.patch) - * - * @param string $bucket Name of a bucket. - * @param string $entity The entity holding the permission. Can be user-userId, - * user-emailAddress, group-groupId, group-emailAddress, allUsers, or - * allAuthenticatedUsers. - * @param Google_Service_Storage_BucketAccessControl $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string provisionalUserProject The project to be billed for this - * request if the target bucket is requester-pays bucket. - * @opt_param string userProject The project to be billed for this request. - * Required for Requester Pays buckets. - * @return Google_Service_Storage_BucketAccessControl - */ - public function patch($bucket, $entity, Google_Service_Storage_BucketAccessControl $postBody, $optParams = array()) - { - $params = array('bucket' => $bucket, 'entity' => $entity, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Storage_BucketAccessControl"); - } - /** - * Updates an ACL entry on the specified bucket. (bucketAccessControls.update) - * - * @param string $bucket Name of a bucket. - * @param string $entity The entity holding the permission. Can be user-userId, - * user-emailAddress, group-groupId, group-emailAddress, allUsers, or - * allAuthenticatedUsers. - * @param Google_Service_Storage_BucketAccessControl $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string provisionalUserProject The project to be billed for this - * request if the target bucket is requester-pays bucket. - * @opt_param string userProject The project to be billed for this request. - * Required for Requester Pays buckets. - * @return Google_Service_Storage_BucketAccessControl - */ - public function update($bucket, $entity, Google_Service_Storage_BucketAccessControl $postBody, $optParams = array()) - { - $params = array('bucket' => $bucket, 'entity' => $entity, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Storage_BucketAccessControl"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/Resource/Buckets.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/Resource/Buckets.php deleted file mode 100644 index f5a5fb88..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/Resource/Buckets.php +++ /dev/null @@ -1,268 +0,0 @@ - - * $storageService = new Google_Service_Storage(...); - * $buckets = $storageService->buckets; - * - */ -class Google_Service_Storage_Resource_Buckets extends Google_Service_Resource -{ - /** - * Permanently deletes an empty bucket. (buckets.delete) - * - * @param string $bucket Name of a bucket. - * @param array $optParams Optional parameters. - * - * @opt_param string ifMetagenerationMatch If set, only deletes the bucket if - * its metageneration matches this value. - * @opt_param string ifMetagenerationNotMatch If set, only deletes the bucket if - * its metageneration does not match this value. - * @opt_param string provisionalUserProject The project to be billed for this - * request if the target bucket is requester-pays bucket. - * @opt_param string userProject The project to be billed for this request. - * Required for Requester Pays buckets. - */ - public function delete($bucket, $optParams = array()) - { - $params = array('bucket' => $bucket); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Returns metadata for the specified bucket. (buckets.get) - * - * @param string $bucket Name of a bucket. - * @param array $optParams Optional parameters. - * - * @opt_param string ifMetagenerationMatch Makes the return of the bucket - * metadata conditional on whether the bucket's current metageneration matches - * the given value. - * @opt_param string ifMetagenerationNotMatch Makes the return of the bucket - * metadata conditional on whether the bucket's current metageneration does not - * match the given value. - * @opt_param string projection Set of properties to return. Defaults to noAcl. - * @opt_param string provisionalUserProject The project to be billed for this - * request if the target bucket is requester-pays bucket. - * @opt_param string userProject The project to be billed for this request. - * Required for Requester Pays buckets. - * @return Google_Service_Storage_Bucket - */ - public function get($bucket, $optParams = array()) - { - $params = array('bucket' => $bucket); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Storage_Bucket"); - } - /** - * Returns an IAM policy for the specified bucket. (buckets.getIamPolicy) - * - * @param string $bucket Name of a bucket. - * @param array $optParams Optional parameters. - * - * @opt_param int optionsRequestedPolicyVersion The IAM policy format version to - * be returned. If the optionsRequestedPolicyVersion is for an older version - * that doesn't support part of the requested IAM policy, the request fails. - * @opt_param string provisionalUserProject The project to be billed for this - * request if the target bucket is requester-pays bucket. - * @opt_param string userProject The project to be billed for this request. - * Required for Requester Pays buckets. - * @return Google_Service_Storage_Policy - */ - public function getIamPolicy($bucket, $optParams = array()) - { - $params = array('bucket' => $bucket); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_Storage_Policy"); - } - /** - * Creates a new bucket. (buckets.insert) - * - * @param string $project A valid API project identifier. - * @param Google_Service_Storage_Bucket $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string predefinedAcl Apply a predefined set of access controls to - * this bucket. - * @opt_param string predefinedDefaultObjectAcl Apply a predefined set of - * default object access controls to this bucket. - * @opt_param string projection Set of properties to return. Defaults to noAcl, - * unless the bucket resource specifies acl or defaultObjectAcl properties, when - * it defaults to full. - * @opt_param string provisionalUserProject The project to be billed for this - * request if the target bucket is requester-pays bucket. - * @opt_param string userProject The project to be billed for this request. - * @return Google_Service_Storage_Bucket - */ - public function insert($project, Google_Service_Storage_Bucket $postBody, $optParams = array()) - { - $params = array('project' => $project, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Storage_Bucket"); - } - /** - * Retrieves a list of buckets for a given project. (buckets.listBuckets) - * - * @param string $project A valid API project identifier. - * @param array $optParams Optional parameters. - * - * @opt_param string maxResults Maximum number of buckets to return in a single - * response. The service will use this parameter or 1,000 items, whichever is - * smaller. - * @opt_param string pageToken A previously-returned page token representing - * part of the larger set of results to view. - * @opt_param string prefix Filter results to buckets whose names begin with - * this prefix. - * @opt_param string projection Set of properties to return. Defaults to noAcl. - * @opt_param string provisionalUserProject The project to be billed for this - * request if the target bucket is requester-pays bucket. - * @opt_param string userProject The project to be billed for this request. - * @return Google_Service_Storage_Buckets - */ - public function listBuckets($project, $optParams = array()) - { - $params = array('project' => $project); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Storage_Buckets"); - } - /** - * Locks retention policy on a bucket. (buckets.lockRetentionPolicy) - * - * @param string $bucket Name of a bucket. - * @param string $ifMetagenerationMatch Makes the operation conditional on - * whether bucket's current metageneration matches the given value. - * @param array $optParams Optional parameters. - * - * @opt_param string provisionalUserProject The project to be billed for this - * request if the target bucket is requester-pays bucket. - * @opt_param string userProject The project to be billed for this request. - * Required for Requester Pays buckets. - * @return Google_Service_Storage_Bucket - */ - public function lockRetentionPolicy($bucket, $ifMetagenerationMatch, $optParams = array()) - { - $params = array('bucket' => $bucket, 'ifMetagenerationMatch' => $ifMetagenerationMatch); - $params = array_merge($params, $optParams); - return $this->call('lockRetentionPolicy', array($params), "Google_Service_Storage_Bucket"); - } - /** - * Patches a bucket. Changes to the bucket will be readable immediately after - * writing, but configuration changes may take time to propagate. - * (buckets.patch) - * - * @param string $bucket Name of a bucket. - * @param Google_Service_Storage_Bucket $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string ifMetagenerationMatch Makes the return of the bucket - * metadata conditional on whether the bucket's current metageneration matches - * the given value. - * @opt_param string ifMetagenerationNotMatch Makes the return of the bucket - * metadata conditional on whether the bucket's current metageneration does not - * match the given value. - * @opt_param string predefinedAcl Apply a predefined set of access controls to - * this bucket. - * @opt_param string predefinedDefaultObjectAcl Apply a predefined set of - * default object access controls to this bucket. - * @opt_param string projection Set of properties to return. Defaults to full. - * @opt_param string provisionalUserProject The project to be billed for this - * request if the target bucket is requester-pays bucket. - * @opt_param string userProject The project to be billed for this request. - * Required for Requester Pays buckets. - * @return Google_Service_Storage_Bucket - */ - public function patch($bucket, Google_Service_Storage_Bucket $postBody, $optParams = array()) - { - $params = array('bucket' => $bucket, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Storage_Bucket"); - } - /** - * Updates an IAM policy for the specified bucket. (buckets.setIamPolicy) - * - * @param string $bucket Name of a bucket. - * @param Google_Service_Storage_Policy $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string provisionalUserProject The project to be billed for this - * request if the target bucket is requester-pays bucket. - * @opt_param string userProject The project to be billed for this request. - * Required for Requester Pays buckets. - * @return Google_Service_Storage_Policy - */ - public function setIamPolicy($bucket, Google_Service_Storage_Policy $postBody, $optParams = array()) - { - $params = array('bucket' => $bucket, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_Storage_Policy"); - } - /** - * Tests a set of permissions on the given bucket to see which, if any, are held - * by the caller. (buckets.testIamPermissions) - * - * @param string $bucket Name of a bucket. - * @param string|array $permissions Permissions to test. - * @param array $optParams Optional parameters. - * - * @opt_param string provisionalUserProject The project to be billed for this - * request if the target bucket is requester-pays bucket. - * @opt_param string userProject The project to be billed for this request. - * Required for Requester Pays buckets. - * @return Google_Service_Storage_TestIamPermissionsResponse - */ - public function testIamPermissions($bucket, $permissions, $optParams = array()) - { - $params = array('bucket' => $bucket, 'permissions' => $permissions); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_Storage_TestIamPermissionsResponse"); - } - /** - * Updates a bucket. Changes to the bucket will be readable immediately after - * writing, but configuration changes may take time to propagate. - * (buckets.update) - * - * @param string $bucket Name of a bucket. - * @param Google_Service_Storage_Bucket $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string ifMetagenerationMatch Makes the return of the bucket - * metadata conditional on whether the bucket's current metageneration matches - * the given value. - * @opt_param string ifMetagenerationNotMatch Makes the return of the bucket - * metadata conditional on whether the bucket's current metageneration does not - * match the given value. - * @opt_param string predefinedAcl Apply a predefined set of access controls to - * this bucket. - * @opt_param string predefinedDefaultObjectAcl Apply a predefined set of - * default object access controls to this bucket. - * @opt_param string projection Set of properties to return. Defaults to full. - * @opt_param string provisionalUserProject The project to be billed for this - * request if the target bucket is requester-pays bucket. - * @opt_param string userProject The project to be billed for this request. - * Required for Requester Pays buckets. - * @return Google_Service_Storage_Bucket - */ - public function update($bucket, Google_Service_Storage_Bucket $postBody, $optParams = array()) - { - $params = array('bucket' => $bucket, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Storage_Bucket"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/Resource/Channels.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/Resource/Channels.php deleted file mode 100644 index 5545ac7f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/Resource/Channels.php +++ /dev/null @@ -1,40 +0,0 @@ - - * $storageService = new Google_Service_Storage(...); - * $channels = $storageService->channels; - * - */ -class Google_Service_Storage_Resource_Channels extends Google_Service_Resource -{ - /** - * Stop watching resources through this channel (channels.stop) - * - * @param Google_Service_Storage_Channel $postBody - * @param array $optParams Optional parameters. - */ - public function stop(Google_Service_Storage_Channel $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('stop', array($params)); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/Resource/DefaultObjectAccessControls.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/Resource/DefaultObjectAccessControls.php deleted file mode 100644 index 108ae014..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/Resource/DefaultObjectAccessControls.php +++ /dev/null @@ -1,161 +0,0 @@ - - * $storageService = new Google_Service_Storage(...); - * $defaultObjectAccessControls = $storageService->defaultObjectAccessControls; - * - */ -class Google_Service_Storage_Resource_DefaultObjectAccessControls extends Google_Service_Resource -{ - /** - * Permanently deletes the default object ACL entry for the specified entity on - * the specified bucket. (defaultObjectAccessControls.delete) - * - * @param string $bucket Name of a bucket. - * @param string $entity The entity holding the permission. Can be user-userId, - * user-emailAddress, group-groupId, group-emailAddress, allUsers, or - * allAuthenticatedUsers. - * @param array $optParams Optional parameters. - * - * @opt_param string provisionalUserProject The project to be billed for this - * request if the target bucket is requester-pays bucket. - * @opt_param string userProject The project to be billed for this request. - * Required for Requester Pays buckets. - */ - public function delete($bucket, $entity, $optParams = array()) - { - $params = array('bucket' => $bucket, 'entity' => $entity); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Returns the default object ACL entry for the specified entity on the - * specified bucket. (defaultObjectAccessControls.get) - * - * @param string $bucket Name of a bucket. - * @param string $entity The entity holding the permission. Can be user-userId, - * user-emailAddress, group-groupId, group-emailAddress, allUsers, or - * allAuthenticatedUsers. - * @param array $optParams Optional parameters. - * - * @opt_param string provisionalUserProject The project to be billed for this - * request if the target bucket is requester-pays bucket. - * @opt_param string userProject The project to be billed for this request. - * Required for Requester Pays buckets. - * @return Google_Service_Storage_ObjectAccessControl - */ - public function get($bucket, $entity, $optParams = array()) - { - $params = array('bucket' => $bucket, 'entity' => $entity); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Storage_ObjectAccessControl"); - } - /** - * Creates a new default object ACL entry on the specified bucket. - * (defaultObjectAccessControls.insert) - * - * @param string $bucket Name of a bucket. - * @param Google_Service_Storage_ObjectAccessControl $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string provisionalUserProject The project to be billed for this - * request if the target bucket is requester-pays bucket. - * @opt_param string userProject The project to be billed for this request. - * Required for Requester Pays buckets. - * @return Google_Service_Storage_ObjectAccessControl - */ - public function insert($bucket, Google_Service_Storage_ObjectAccessControl $postBody, $optParams = array()) - { - $params = array('bucket' => $bucket, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Storage_ObjectAccessControl"); - } - /** - * Retrieves default object ACL entries on the specified bucket. - * (defaultObjectAccessControls.listDefaultObjectAccessControls) - * - * @param string $bucket Name of a bucket. - * @param array $optParams Optional parameters. - * - * @opt_param string ifMetagenerationMatch If present, only return default ACL - * listing if the bucket's current metageneration matches this value. - * @opt_param string ifMetagenerationNotMatch If present, only return default - * ACL listing if the bucket's current metageneration does not match the given - * value. - * @opt_param string provisionalUserProject The project to be billed for this - * request if the target bucket is requester-pays bucket. - * @opt_param string userProject The project to be billed for this request. - * Required for Requester Pays buckets. - * @return Google_Service_Storage_ObjectAccessControls - */ - public function listDefaultObjectAccessControls($bucket, $optParams = array()) - { - $params = array('bucket' => $bucket); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Storage_ObjectAccessControls"); - } - /** - * Patches a default object ACL entry on the specified bucket. - * (defaultObjectAccessControls.patch) - * - * @param string $bucket Name of a bucket. - * @param string $entity The entity holding the permission. Can be user-userId, - * user-emailAddress, group-groupId, group-emailAddress, allUsers, or - * allAuthenticatedUsers. - * @param Google_Service_Storage_ObjectAccessControl $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string provisionalUserProject The project to be billed for this - * request if the target bucket is requester-pays bucket. - * @opt_param string userProject The project to be billed for this request. - * Required for Requester Pays buckets. - * @return Google_Service_Storage_ObjectAccessControl - */ - public function patch($bucket, $entity, Google_Service_Storage_ObjectAccessControl $postBody, $optParams = array()) - { - $params = array('bucket' => $bucket, 'entity' => $entity, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Storage_ObjectAccessControl"); - } - /** - * Updates a default object ACL entry on the specified bucket. - * (defaultObjectAccessControls.update) - * - * @param string $bucket Name of a bucket. - * @param string $entity The entity holding the permission. Can be user-userId, - * user-emailAddress, group-groupId, group-emailAddress, allUsers, or - * allAuthenticatedUsers. - * @param Google_Service_Storage_ObjectAccessControl $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string provisionalUserProject The project to be billed for this - * request if the target bucket is requester-pays bucket. - * @opt_param string userProject The project to be billed for this request. - * Required for Requester Pays buckets. - * @return Google_Service_Storage_ObjectAccessControl - */ - public function update($bucket, $entity, Google_Service_Storage_ObjectAccessControl $postBody, $optParams = array()) - { - $params = array('bucket' => $bucket, 'entity' => $entity, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Storage_ObjectAccessControl"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/Resource/Notifications.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/Resource/Notifications.php deleted file mode 100644 index c13d867c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/Resource/Notifications.php +++ /dev/null @@ -1,104 +0,0 @@ - - * $storageService = new Google_Service_Storage(...); - * $notifications = $storageService->notifications; - * - */ -class Google_Service_Storage_Resource_Notifications extends Google_Service_Resource -{ - /** - * Permanently deletes a notification subscription. (notifications.delete) - * - * @param string $bucket The parent bucket of the notification. - * @param string $notification ID of the notification to delete. - * @param array $optParams Optional parameters. - * - * @opt_param string provisionalUserProject The project to be billed for this - * request if the target bucket is requester-pays bucket. - * @opt_param string userProject The project to be billed for this request. - * Required for Requester Pays buckets. - */ - public function delete($bucket, $notification, $optParams = array()) - { - $params = array('bucket' => $bucket, 'notification' => $notification); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * View a notification configuration. (notifications.get) - * - * @param string $bucket The parent bucket of the notification. - * @param string $notification Notification ID - * @param array $optParams Optional parameters. - * - * @opt_param string provisionalUserProject The project to be billed for this - * request if the target bucket is requester-pays bucket. - * @opt_param string userProject The project to be billed for this request. - * Required for Requester Pays buckets. - * @return Google_Service_Storage_Notification - */ - public function get($bucket, $notification, $optParams = array()) - { - $params = array('bucket' => $bucket, 'notification' => $notification); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Storage_Notification"); - } - /** - * Creates a notification subscription for a given bucket. - * (notifications.insert) - * - * @param string $bucket The parent bucket of the notification. - * @param Google_Service_Storage_Notification $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string provisionalUserProject The project to be billed for this - * request if the target bucket is requester-pays bucket. - * @opt_param string userProject The project to be billed for this request. - * Required for Requester Pays buckets. - * @return Google_Service_Storage_Notification - */ - public function insert($bucket, Google_Service_Storage_Notification $postBody, $optParams = array()) - { - $params = array('bucket' => $bucket, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Storage_Notification"); - } - /** - * Retrieves a list of notification subscriptions for a given bucket. - * (notifications.listNotifications) - * - * @param string $bucket Name of a Google Cloud Storage bucket. - * @param array $optParams Optional parameters. - * - * @opt_param string provisionalUserProject The project to be billed for this - * request if the target bucket is requester-pays bucket. - * @opt_param string userProject The project to be billed for this request. - * Required for Requester Pays buckets. - * @return Google_Service_Storage_Notifications - */ - public function listNotifications($bucket, $optParams = array()) - { - $params = array('bucket' => $bucket); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Storage_Notifications"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/Resource/ObjectAccessControls.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/Resource/ObjectAccessControls.php deleted file mode 100644 index fd078dfe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/Resource/ObjectAccessControls.php +++ /dev/null @@ -1,178 +0,0 @@ - - * $storageService = new Google_Service_Storage(...); - * $objectAccessControls = $storageService->objectAccessControls; - * - */ -class Google_Service_Storage_Resource_ObjectAccessControls extends Google_Service_Resource -{ - /** - * Permanently deletes the ACL entry for the specified entity on the specified - * object. (objectAccessControls.delete) - * - * @param string $bucket Name of a bucket. - * @param string $object Name of the object. For information about how to URL - * encode object names to be path safe, see Encoding URI Path Parts. - * @param string $entity The entity holding the permission. Can be user-userId, - * user-emailAddress, group-groupId, group-emailAddress, allUsers, or - * allAuthenticatedUsers. - * @param array $optParams Optional parameters. - * - * @opt_param string generation If present, selects a specific revision of this - * object (as opposed to the latest version, the default). - * @opt_param string provisionalUserProject The project to be billed for this - * request if the target bucket is requester-pays bucket. - * @opt_param string userProject The project to be billed for this request. - * Required for Requester Pays buckets. - */ - public function delete($bucket, $object, $entity, $optParams = array()) - { - $params = array('bucket' => $bucket, 'object' => $object, 'entity' => $entity); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Returns the ACL entry for the specified entity on the specified object. - * (objectAccessControls.get) - * - * @param string $bucket Name of a bucket. - * @param string $object Name of the object. For information about how to URL - * encode object names to be path safe, see Encoding URI Path Parts. - * @param string $entity The entity holding the permission. Can be user-userId, - * user-emailAddress, group-groupId, group-emailAddress, allUsers, or - * allAuthenticatedUsers. - * @param array $optParams Optional parameters. - * - * @opt_param string generation If present, selects a specific revision of this - * object (as opposed to the latest version, the default). - * @opt_param string provisionalUserProject The project to be billed for this - * request if the target bucket is requester-pays bucket. - * @opt_param string userProject The project to be billed for this request. - * Required for Requester Pays buckets. - * @return Google_Service_Storage_ObjectAccessControl - */ - public function get($bucket, $object, $entity, $optParams = array()) - { - $params = array('bucket' => $bucket, 'object' => $object, 'entity' => $entity); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Storage_ObjectAccessControl"); - } - /** - * Creates a new ACL entry on the specified object. - * (objectAccessControls.insert) - * - * @param string $bucket Name of a bucket. - * @param string $object Name of the object. For information about how to URL - * encode object names to be path safe, see Encoding URI Path Parts. - * @param Google_Service_Storage_ObjectAccessControl $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string generation If present, selects a specific revision of this - * object (as opposed to the latest version, the default). - * @opt_param string provisionalUserProject The project to be billed for this - * request if the target bucket is requester-pays bucket. - * @opt_param string userProject The project to be billed for this request. - * Required for Requester Pays buckets. - * @return Google_Service_Storage_ObjectAccessControl - */ - public function insert($bucket, $object, Google_Service_Storage_ObjectAccessControl $postBody, $optParams = array()) - { - $params = array('bucket' => $bucket, 'object' => $object, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Storage_ObjectAccessControl"); - } - /** - * Retrieves ACL entries on the specified object. - * (objectAccessControls.listObjectAccessControls) - * - * @param string $bucket Name of a bucket. - * @param string $object Name of the object. For information about how to URL - * encode object names to be path safe, see Encoding URI Path Parts. - * @param array $optParams Optional parameters. - * - * @opt_param string generation If present, selects a specific revision of this - * object (as opposed to the latest version, the default). - * @opt_param string provisionalUserProject The project to be billed for this - * request if the target bucket is requester-pays bucket. - * @opt_param string userProject The project to be billed for this request. - * Required for Requester Pays buckets. - * @return Google_Service_Storage_ObjectAccessControls - */ - public function listObjectAccessControls($bucket, $object, $optParams = array()) - { - $params = array('bucket' => $bucket, 'object' => $object); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Storage_ObjectAccessControls"); - } - /** - * Patches an ACL entry on the specified object. (objectAccessControls.patch) - * - * @param string $bucket Name of a bucket. - * @param string $object Name of the object. For information about how to URL - * encode object names to be path safe, see Encoding URI Path Parts. - * @param string $entity The entity holding the permission. Can be user-userId, - * user-emailAddress, group-groupId, group-emailAddress, allUsers, or - * allAuthenticatedUsers. - * @param Google_Service_Storage_ObjectAccessControl $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string generation If present, selects a specific revision of this - * object (as opposed to the latest version, the default). - * @opt_param string provisionalUserProject The project to be billed for this - * request if the target bucket is requester-pays bucket. - * @opt_param string userProject The project to be billed for this request. - * Required for Requester Pays buckets. - * @return Google_Service_Storage_ObjectAccessControl - */ - public function patch($bucket, $object, $entity, Google_Service_Storage_ObjectAccessControl $postBody, $optParams = array()) - { - $params = array('bucket' => $bucket, 'object' => $object, 'entity' => $entity, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Storage_ObjectAccessControl"); - } - /** - * Updates an ACL entry on the specified object. (objectAccessControls.update) - * - * @param string $bucket Name of a bucket. - * @param string $object Name of the object. For information about how to URL - * encode object names to be path safe, see Encoding URI Path Parts. - * @param string $entity The entity holding the permission. Can be user-userId, - * user-emailAddress, group-groupId, group-emailAddress, allUsers, or - * allAuthenticatedUsers. - * @param Google_Service_Storage_ObjectAccessControl $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string generation If present, selects a specific revision of this - * object (as opposed to the latest version, the default). - * @opt_param string provisionalUserProject The project to be billed for this - * request if the target bucket is requester-pays bucket. - * @opt_param string userProject The project to be billed for this request. - * Required for Requester Pays buckets. - * @return Google_Service_Storage_ObjectAccessControl - */ - public function update($bucket, $object, $entity, Google_Service_Storage_ObjectAccessControl $postBody, $optParams = array()) - { - $params = array('bucket' => $bucket, 'object' => $object, 'entity' => $entity, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Storage_ObjectAccessControl"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/Resource/Objects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/Resource/Objects.php deleted file mode 100644 index 1e0f4cbb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/Resource/Objects.php +++ /dev/null @@ -1,536 +0,0 @@ - - * $storageService = new Google_Service_Storage(...); - * $objects = $storageService->objects; - * - */ -class Google_Service_Storage_Resource_Objects extends Google_Service_Resource -{ - /** - * Concatenates a list of existing objects into a new object in the same bucket. - * (objects.compose) - * - * @param string $destinationBucket Name of the bucket containing the source - * objects. The destination object is stored in this bucket. - * @param string $destinationObject Name of the new object. For information - * about how to URL encode object names to be path safe, see Encoding URI Path - * Parts. - * @param Google_Service_Storage_ComposeRequest $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string destinationPredefinedAcl Apply a predefined set of access - * controls to the destination object. - * @opt_param string ifGenerationMatch Makes the operation conditional on - * whether the object's current generation matches the given value. Setting to 0 - * makes the operation succeed only if there are no live versions of the object. - * @opt_param string ifMetagenerationMatch Makes the operation conditional on - * whether the object's current metageneration matches the given value. - * @opt_param string kmsKeyName Resource name of the Cloud KMS key, of the form - * projects/my-project/locations/global/keyRings/my-kr/cryptoKeys/my-key, that - * will be used to encrypt the object. Overrides the object metadata's - * kms_key_name value, if any. - * @opt_param string provisionalUserProject The project to be billed for this - * request if the target bucket is requester-pays bucket. - * @opt_param string userProject The project to be billed for this request. - * Required for Requester Pays buckets. - * @return Google_Service_Storage_StorageObject - */ - public function compose($destinationBucket, $destinationObject, Google_Service_Storage_ComposeRequest $postBody, $optParams = array()) - { - $params = array('destinationBucket' => $destinationBucket, 'destinationObject' => $destinationObject, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('compose', array($params), "Google_Service_Storage_StorageObject"); - } - /** - * Copies a source object to a destination object. Optionally overrides - * metadata. (objects.copy) - * - * @param string $sourceBucket Name of the bucket in which to find the source - * object. - * @param string $sourceObject Name of the source object. For information about - * how to URL encode object names to be path safe, see Encoding URI Path Parts. - * @param string $destinationBucket Name of the bucket in which to store the new - * object. Overrides the provided object metadata's bucket value, if any.For - * information about how to URL encode object names to be path safe, see - * Encoding URI Path Parts. - * @param string $destinationObject Name of the new object. Required when the - * object metadata is not otherwise provided. Overrides the object metadata's - * name value, if any. - * @param Google_Service_Storage_StorageObject $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string destinationPredefinedAcl Apply a predefined set of access - * controls to the destination object. - * @opt_param string ifGenerationMatch Makes the operation conditional on - * whether the destination object's current generation matches the given value. - * Setting to 0 makes the operation succeed only if there are no live versions - * of the object. - * @opt_param string ifGenerationNotMatch Makes the operation conditional on - * whether the destination object's current generation does not match the given - * value. If no live object exists, the precondition fails. Setting to 0 makes - * the operation succeed only if there is a live version of the object. - * @opt_param string ifMetagenerationMatch Makes the operation conditional on - * whether the destination object's current metageneration matches the given - * value. - * @opt_param string ifMetagenerationNotMatch Makes the operation conditional on - * whether the destination object's current metageneration does not match the - * given value. - * @opt_param string ifSourceGenerationMatch Makes the operation conditional on - * whether the source object's current generation matches the given value. - * @opt_param string ifSourceGenerationNotMatch Makes the operation conditional - * on whether the source object's current generation does not match the given - * value. - * @opt_param string ifSourceMetagenerationMatch Makes the operation conditional - * on whether the source object's current metageneration matches the given - * value. - * @opt_param string ifSourceMetagenerationNotMatch Makes the operation - * conditional on whether the source object's current metageneration does not - * match the given value. - * @opt_param string projection Set of properties to return. Defaults to noAcl, - * unless the object resource specifies the acl property, when it defaults to - * full. - * @opt_param string provisionalUserProject The project to be billed for this - * request if the target bucket is requester-pays bucket. - * @opt_param string sourceGeneration If present, selects a specific revision of - * the source object (as opposed to the latest version, the default). - * @opt_param string userProject The project to be billed for this request. - * Required for Requester Pays buckets. - * @return Google_Service_Storage_StorageObject - */ - public function copy($sourceBucket, $sourceObject, $destinationBucket, $destinationObject, Google_Service_Storage_StorageObject $postBody, $optParams = array()) - { - $params = array('sourceBucket' => $sourceBucket, 'sourceObject' => $sourceObject, 'destinationBucket' => $destinationBucket, 'destinationObject' => $destinationObject, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('copy', array($params), "Google_Service_Storage_StorageObject"); - } - /** - * Deletes an object and its metadata. Deletions are permanent if versioning is - * not enabled for the bucket, or if the generation parameter is used. - * (objects.delete) - * - * @param string $bucket Name of the bucket in which the object resides. - * @param string $object Name of the object. For information about how to URL - * encode object names to be path safe, see Encoding URI Path Parts. - * @param array $optParams Optional parameters. - * - * @opt_param string generation If present, permanently deletes a specific - * revision of this object (as opposed to the latest version, the default). - * @opt_param string ifGenerationMatch Makes the operation conditional on - * whether the object's current generation matches the given value. Setting to 0 - * makes the operation succeed only if there are no live versions of the object. - * @opt_param string ifGenerationNotMatch Makes the operation conditional on - * whether the object's current generation does not match the given value. If no - * live object exists, the precondition fails. Setting to 0 makes the operation - * succeed only if there is a live version of the object. - * @opt_param string ifMetagenerationMatch Makes the operation conditional on - * whether the object's current metageneration matches the given value. - * @opt_param string ifMetagenerationNotMatch Makes the operation conditional on - * whether the object's current metageneration does not match the given value. - * @opt_param string provisionalUserProject The project to be billed for this - * request if the target bucket is requester-pays bucket. - * @opt_param string userProject The project to be billed for this request. - * Required for Requester Pays buckets. - */ - public function delete($bucket, $object, $optParams = array()) - { - $params = array('bucket' => $bucket, 'object' => $object); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Retrieves an object or its metadata. (objects.get) - * - * @param string $bucket Name of the bucket in which the object resides. - * @param string $object Name of the object. For information about how to URL - * encode object names to be path safe, see Encoding URI Path Parts. - * @param array $optParams Optional parameters. - * - * @opt_param string generation If present, selects a specific revision of this - * object (as opposed to the latest version, the default). - * @opt_param string ifGenerationMatch Makes the operation conditional on - * whether the object's current generation matches the given value. Setting to 0 - * makes the operation succeed only if there are no live versions of the object. - * @opt_param string ifGenerationNotMatch Makes the operation conditional on - * whether the object's current generation does not match the given value. If no - * live object exists, the precondition fails. Setting to 0 makes the operation - * succeed only if there is a live version of the object. - * @opt_param string ifMetagenerationMatch Makes the operation conditional on - * whether the object's current metageneration matches the given value. - * @opt_param string ifMetagenerationNotMatch Makes the operation conditional on - * whether the object's current metageneration does not match the given value. - * @opt_param string projection Set of properties to return. Defaults to noAcl. - * @opt_param string provisionalUserProject The project to be billed for this - * request if the target bucket is requester-pays bucket. - * @opt_param string userProject The project to be billed for this request. - * Required for Requester Pays buckets. - * @return Google_Service_Storage_StorageObject - */ - public function get($bucket, $object, $optParams = array()) - { - $params = array('bucket' => $bucket, 'object' => $object); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Storage_StorageObject"); - } - /** - * Returns an IAM policy for the specified object. (objects.getIamPolicy) - * - * @param string $bucket Name of the bucket in which the object resides. - * @param string $object Name of the object. For information about how to URL - * encode object names to be path safe, see Encoding URI Path Parts. - * @param array $optParams Optional parameters. - * - * @opt_param string generation If present, selects a specific revision of this - * object (as opposed to the latest version, the default). - * @opt_param string provisionalUserProject The project to be billed for this - * request if the target bucket is requester-pays bucket. - * @opt_param string userProject The project to be billed for this request. - * Required for Requester Pays buckets. - * @return Google_Service_Storage_Policy - */ - public function getIamPolicy($bucket, $object, $optParams = array()) - { - $params = array('bucket' => $bucket, 'object' => $object); - $params = array_merge($params, $optParams); - return $this->call('getIamPolicy', array($params), "Google_Service_Storage_Policy"); - } - /** - * Stores a new object and metadata. (objects.insert) - * - * @param string $bucket Name of the bucket in which to store the new object. - * Overrides the provided object metadata's bucket value, if any. - * @param Google_Service_Storage_StorageObject $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string contentEncoding If set, sets the contentEncoding property - * of the final object to this value. Setting this parameter is equivalent to - * setting the contentEncoding metadata property. This can be useful when - * uploading an object with uploadType=media to indicate the encoding of the - * content being uploaded. - * @opt_param string ifGenerationMatch Makes the operation conditional on - * whether the object's current generation matches the given value. Setting to 0 - * makes the operation succeed only if there are no live versions of the object. - * @opt_param string ifGenerationNotMatch Makes the operation conditional on - * whether the object's current generation does not match the given value. If no - * live object exists, the precondition fails. Setting to 0 makes the operation - * succeed only if there is a live version of the object. - * @opt_param string ifMetagenerationMatch Makes the operation conditional on - * whether the object's current metageneration matches the given value. - * @opt_param string ifMetagenerationNotMatch Makes the operation conditional on - * whether the object's current metageneration does not match the given value. - * @opt_param string kmsKeyName Resource name of the Cloud KMS key, of the form - * projects/my-project/locations/global/keyRings/my-kr/cryptoKeys/my-key, that - * will be used to encrypt the object. Overrides the object metadata's - * kms_key_name value, if any. - * @opt_param string name Name of the object. Required when the object metadata - * is not otherwise provided. Overrides the object metadata's name value, if - * any. For information about how to URL encode object names to be path safe, - * see Encoding URI Path Parts. - * @opt_param string predefinedAcl Apply a predefined set of access controls to - * this object. - * @opt_param string projection Set of properties to return. Defaults to noAcl, - * unless the object resource specifies the acl property, when it defaults to - * full. - * @opt_param string provisionalUserProject The project to be billed for this - * request if the target bucket is requester-pays bucket. - * @opt_param string userProject The project to be billed for this request. - * Required for Requester Pays buckets. - * @return Google_Service_Storage_StorageObject - */ - public function insert($bucket, Google_Service_Storage_StorageObject $postBody, $optParams = array()) - { - $params = array('bucket' => $bucket, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Storage_StorageObject"); - } - /** - * Retrieves a list of objects matching the criteria. (objects.listObjects) - * - * @param string $bucket Name of the bucket in which to look for objects. - * @param array $optParams Optional parameters. - * - * @opt_param string delimiter Returns results in a directory-like mode. items - * will contain only objects whose names, aside from the prefix, do not contain - * delimiter. Objects whose names, aside from the prefix, contain delimiter will - * have their name, truncated after the delimiter, returned in prefixes. - * Duplicate prefixes are omitted. - * @opt_param bool includeTrailingDelimiter If true, objects that end in exactly - * one instance of delimiter will have their metadata included in items in - * addition to prefixes. - * @opt_param string maxResults Maximum number of items plus prefixes to return - * in a single page of responses. As duplicate prefixes are omitted, fewer total - * results may be returned than requested. The service will use this parameter - * or 1,000 items, whichever is smaller. - * @opt_param string pageToken A previously-returned page token representing - * part of the larger set of results to view. - * @opt_param string prefix Filter results to objects whose names begin with - * this prefix. - * @opt_param string projection Set of properties to return. Defaults to noAcl. - * @opt_param string provisionalUserProject The project to be billed for this - * request if the target bucket is requester-pays bucket. - * @opt_param string userProject The project to be billed for this request. - * Required for Requester Pays buckets. - * @opt_param bool versions If true, lists all versions of an object as distinct - * results. The default is false. For more information, see Object Versioning. - * @return Google_Service_Storage_Objects - */ - public function listObjects($bucket, $optParams = array()) - { - $params = array('bucket' => $bucket); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Storage_Objects"); - } - /** - * Patches an object's metadata. (objects.patch) - * - * @param string $bucket Name of the bucket in which the object resides. - * @param string $object Name of the object. For information about how to URL - * encode object names to be path safe, see Encoding URI Path Parts. - * @param Google_Service_Storage_StorageObject $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string generation If present, selects a specific revision of this - * object (as opposed to the latest version, the default). - * @opt_param string ifGenerationMatch Makes the operation conditional on - * whether the object's current generation matches the given value. Setting to 0 - * makes the operation succeed only if there are no live versions of the object. - * @opt_param string ifGenerationNotMatch Makes the operation conditional on - * whether the object's current generation does not match the given value. If no - * live object exists, the precondition fails. Setting to 0 makes the operation - * succeed only if there is a live version of the object. - * @opt_param string ifMetagenerationMatch Makes the operation conditional on - * whether the object's current metageneration matches the given value. - * @opt_param string ifMetagenerationNotMatch Makes the operation conditional on - * whether the object's current metageneration does not match the given value. - * @opt_param string predefinedAcl Apply a predefined set of access controls to - * this object. - * @opt_param string projection Set of properties to return. Defaults to full. - * @opt_param string provisionalUserProject The project to be billed for this - * request if the target bucket is requester-pays bucket. - * @opt_param string userProject The project to be billed for this request, for - * Requester Pays buckets. - * @return Google_Service_Storage_StorageObject - */ - public function patch($bucket, $object, Google_Service_Storage_StorageObject $postBody, $optParams = array()) - { - $params = array('bucket' => $bucket, 'object' => $object, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Storage_StorageObject"); - } - /** - * Rewrites a source object to a destination object. Optionally overrides - * metadata. (objects.rewrite) - * - * @param string $sourceBucket Name of the bucket in which to find the source - * object. - * @param string $sourceObject Name of the source object. For information about - * how to URL encode object names to be path safe, see Encoding URI Path Parts. - * @param string $destinationBucket Name of the bucket in which to store the new - * object. Overrides the provided object metadata's bucket value, if any. - * @param string $destinationObject Name of the new object. Required when the - * object metadata is not otherwise provided. Overrides the object metadata's - * name value, if any. For information about how to URL encode object names to - * be path safe, see Encoding URI Path Parts. - * @param Google_Service_Storage_StorageObject $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string destinationKmsKeyName Resource name of the Cloud KMS key, - * of the form projects/my-project/locations/global/keyRings/my-kr/cryptoKeys - * /my-key, that will be used to encrypt the object. Overrides the object - * metadata's kms_key_name value, if any. - * @opt_param string destinationPredefinedAcl Apply a predefined set of access - * controls to the destination object. - * @opt_param string ifGenerationMatch Makes the operation conditional on - * whether the object's current generation matches the given value. Setting to 0 - * makes the operation succeed only if there are no live versions of the object. - * @opt_param string ifGenerationNotMatch Makes the operation conditional on - * whether the object's current generation does not match the given value. If no - * live object exists, the precondition fails. Setting to 0 makes the operation - * succeed only if there is a live version of the object. - * @opt_param string ifMetagenerationMatch Makes the operation conditional on - * whether the destination object's current metageneration matches the given - * value. - * @opt_param string ifMetagenerationNotMatch Makes the operation conditional on - * whether the destination object's current metageneration does not match the - * given value. - * @opt_param string ifSourceGenerationMatch Makes the operation conditional on - * whether the source object's current generation matches the given value. - * @opt_param string ifSourceGenerationNotMatch Makes the operation conditional - * on whether the source object's current generation does not match the given - * value. - * @opt_param string ifSourceMetagenerationMatch Makes the operation conditional - * on whether the source object's current metageneration matches the given - * value. - * @opt_param string ifSourceMetagenerationNotMatch Makes the operation - * conditional on whether the source object's current metageneration does not - * match the given value. - * @opt_param string maxBytesRewrittenPerCall The maximum number of bytes that - * will be rewritten per rewrite request. Most callers shouldn't need to specify - * this parameter - it is primarily in place to support testing. If specified - * the value must be an integral multiple of 1 MiB (1048576). Also, this only - * applies to requests where the source and destination span locations and/or - * storage classes. Finally, this value must not change across rewrite calls - * else you'll get an error that the rewriteToken is invalid. - * @opt_param string projection Set of properties to return. Defaults to noAcl, - * unless the object resource specifies the acl property, when it defaults to - * full. - * @opt_param string provisionalUserProject The project to be billed for this - * request if the target bucket is requester-pays bucket. - * @opt_param string rewriteToken Include this field (from the previous rewrite - * response) on each rewrite request after the first one, until the rewrite - * response 'done' flag is true. Calls that provide a rewriteToken can omit all - * other request fields, but if included those fields must match the values - * provided in the first rewrite request. - * @opt_param string sourceGeneration If present, selects a specific revision of - * the source object (as opposed to the latest version, the default). - * @opt_param string userProject The project to be billed for this request. - * Required for Requester Pays buckets. - * @return Google_Service_Storage_RewriteResponse - */ - public function rewrite($sourceBucket, $sourceObject, $destinationBucket, $destinationObject, Google_Service_Storage_StorageObject $postBody, $optParams = array()) - { - $params = array('sourceBucket' => $sourceBucket, 'sourceObject' => $sourceObject, 'destinationBucket' => $destinationBucket, 'destinationObject' => $destinationObject, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('rewrite', array($params), "Google_Service_Storage_RewriteResponse"); - } - /** - * Updates an IAM policy for the specified object. (objects.setIamPolicy) - * - * @param string $bucket Name of the bucket in which the object resides. - * @param string $object Name of the object. For information about how to URL - * encode object names to be path safe, see Encoding URI Path Parts. - * @param Google_Service_Storage_Policy $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string generation If present, selects a specific revision of this - * object (as opposed to the latest version, the default). - * @opt_param string provisionalUserProject The project to be billed for this - * request if the target bucket is requester-pays bucket. - * @opt_param string userProject The project to be billed for this request. - * Required for Requester Pays buckets. - * @return Google_Service_Storage_Policy - */ - public function setIamPolicy($bucket, $object, Google_Service_Storage_Policy $postBody, $optParams = array()) - { - $params = array('bucket' => $bucket, 'object' => $object, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('setIamPolicy', array($params), "Google_Service_Storage_Policy"); - } - /** - * Tests a set of permissions on the given object to see which, if any, are held - * by the caller. (objects.testIamPermissions) - * - * @param string $bucket Name of the bucket in which the object resides. - * @param string $object Name of the object. For information about how to URL - * encode object names to be path safe, see Encoding URI Path Parts. - * @param string|array $permissions Permissions to test. - * @param array $optParams Optional parameters. - * - * @opt_param string generation If present, selects a specific revision of this - * object (as opposed to the latest version, the default). - * @opt_param string provisionalUserProject The project to be billed for this - * request if the target bucket is requester-pays bucket. - * @opt_param string userProject The project to be billed for this request. - * Required for Requester Pays buckets. - * @return Google_Service_Storage_TestIamPermissionsResponse - */ - public function testIamPermissions($bucket, $object, $permissions, $optParams = array()) - { - $params = array('bucket' => $bucket, 'object' => $object, 'permissions' => $permissions); - $params = array_merge($params, $optParams); - return $this->call('testIamPermissions', array($params), "Google_Service_Storage_TestIamPermissionsResponse"); - } - /** - * Updates an object's metadata. (objects.update) - * - * @param string $bucket Name of the bucket in which the object resides. - * @param string $object Name of the object. For information about how to URL - * encode object names to be path safe, see Encoding URI Path Parts. - * @param Google_Service_Storage_StorageObject $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string generation If present, selects a specific revision of this - * object (as opposed to the latest version, the default). - * @opt_param string ifGenerationMatch Makes the operation conditional on - * whether the object's current generation matches the given value. Setting to 0 - * makes the operation succeed only if there are no live versions of the object. - * @opt_param string ifGenerationNotMatch Makes the operation conditional on - * whether the object's current generation does not match the given value. If no - * live object exists, the precondition fails. Setting to 0 makes the operation - * succeed only if there is a live version of the object. - * @opt_param string ifMetagenerationMatch Makes the operation conditional on - * whether the object's current metageneration matches the given value. - * @opt_param string ifMetagenerationNotMatch Makes the operation conditional on - * whether the object's current metageneration does not match the given value. - * @opt_param string predefinedAcl Apply a predefined set of access controls to - * this object. - * @opt_param string projection Set of properties to return. Defaults to full. - * @opt_param string provisionalUserProject The project to be billed for this - * request if the target bucket is requester-pays bucket. - * @opt_param string userProject The project to be billed for this request. - * Required for Requester Pays buckets. - * @return Google_Service_Storage_StorageObject - */ - public function update($bucket, $object, Google_Service_Storage_StorageObject $postBody, $optParams = array()) - { - $params = array('bucket' => $bucket, 'object' => $object, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Storage_StorageObject"); - } - /** - * Watch for changes on all objects in a bucket. (objects.watchAll) - * - * @param string $bucket Name of the bucket in which to look for objects. - * @param Google_Service_Storage_Channel $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string delimiter Returns results in a directory-like mode. items - * will contain only objects whose names, aside from the prefix, do not contain - * delimiter. Objects whose names, aside from the prefix, contain delimiter will - * have their name, truncated after the delimiter, returned in prefixes. - * Duplicate prefixes are omitted. - * @opt_param bool includeTrailingDelimiter If true, objects that end in exactly - * one instance of delimiter will have their metadata included in items in - * addition to prefixes. - * @opt_param string maxResults Maximum number of items plus prefixes to return - * in a single page of responses. As duplicate prefixes are omitted, fewer total - * results may be returned than requested. The service will use this parameter - * or 1,000 items, whichever is smaller. - * @opt_param string pageToken A previously-returned page token representing - * part of the larger set of results to view. - * @opt_param string prefix Filter results to objects whose names begin with - * this prefix. - * @opt_param string projection Set of properties to return. Defaults to noAcl. - * @opt_param string provisionalUserProject The project to be billed for this - * request if the target bucket is requester-pays bucket. - * @opt_param string userProject The project to be billed for this request. - * Required for Requester Pays buckets. - * @opt_param bool versions If true, lists all versions of an object as distinct - * results. The default is false. For more information, see Object Versioning. - * @return Google_Service_Storage_Channel - */ - public function watchAll($bucket, Google_Service_Storage_Channel $postBody, $optParams = array()) - { - $params = array('bucket' => $bucket, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('watchAll', array($params), "Google_Service_Storage_Channel"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/Resource/Projects.php deleted file mode 100644 index bf79fda8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/Resource/Projects.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $storageService = new Google_Service_Storage(...); - * $projects = $storageService->projects; - * - */ -class Google_Service_Storage_Resource_Projects extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/Resource/ProjectsHmacKeys.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/Resource/ProjectsHmacKeys.php deleted file mode 100644 index 1fe9ecfc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/Resource/ProjectsHmacKeys.php +++ /dev/null @@ -1,123 +0,0 @@ - - * $storageService = new Google_Service_Storage(...); - * $hmacKeys = $storageService->hmacKeys; - * - */ -class Google_Service_Storage_Resource_ProjectsHmacKeys extends Google_Service_Resource -{ - /** - * Creates a new HMAC key for the specified service account. (hmacKeys.create) - * - * @param string $projectId Project ID owning the service account. - * @param string $serviceAccountEmail Email address of the service account. - * @param array $optParams Optional parameters. - * - * @opt_param string userProject The project to be billed for this request. - * @return Google_Service_Storage_HmacKey - */ - public function create($projectId, $serviceAccountEmail, $optParams = array()) - { - $params = array('projectId' => $projectId, 'serviceAccountEmail' => $serviceAccountEmail); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Storage_HmacKey"); - } - /** - * Deletes an HMAC key. (hmacKeys.delete) - * - * @param string $projectId Project ID owning the requested key - * @param string $accessId Name of the HMAC key to be deleted. - * @param array $optParams Optional parameters. - * - * @opt_param string userProject The project to be billed for this request. - */ - public function delete($projectId, $accessId, $optParams = array()) - { - $params = array('projectId' => $projectId, 'accessId' => $accessId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Retrieves an HMAC key's metadata (hmacKeys.get) - * - * @param string $projectId Project ID owning the service account of the - * requested key. - * @param string $accessId Name of the HMAC key. - * @param array $optParams Optional parameters. - * - * @opt_param string userProject The project to be billed for this request. - * @return Google_Service_Storage_HmacKeyMetadata - */ - public function get($projectId, $accessId, $optParams = array()) - { - $params = array('projectId' => $projectId, 'accessId' => $accessId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Storage_HmacKeyMetadata"); - } - /** - * Retrieves a list of HMAC keys matching the criteria. - * (hmacKeys.listProjectsHmacKeys) - * - * @param string $projectId Name of the project in which to look for HMAC keys. - * @param array $optParams Optional parameters. - * - * @opt_param string maxResults Maximum number of items to return in a single - * page of responses. The service uses this parameter or 250 items, whichever is - * smaller. The max number of items per page will also be limited by the number - * of distinct service accounts in the response. If the number of service - * accounts in a single response is too high, the page will truncated and a next - * page token will be returned. - * @opt_param string pageToken A previously-returned page token representing - * part of the larger set of results to view. - * @opt_param string serviceAccountEmail If present, only keys for the given - * service account are returned. - * @opt_param bool showDeletedKeys Whether or not to show keys in the DELETED - * state. - * @opt_param string userProject The project to be billed for this request. - * @return Google_Service_Storage_HmacKeysMetadata - */ - public function listProjectsHmacKeys($projectId, $optParams = array()) - { - $params = array('projectId' => $projectId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Storage_HmacKeysMetadata"); - } - /** - * Updates the state of an HMAC key. See the HMAC Key resource descriptor for - * valid states. (hmacKeys.update) - * - * @param string $projectId Project ID owning the service account of the updated - * key. - * @param string $accessId Name of the HMAC key being updated. - * @param Google_Service_Storage_HmacKeyMetadata $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string userProject The project to be billed for this request. - * @return Google_Service_Storage_HmacKeyMetadata - */ - public function update($projectId, $accessId, Google_Service_Storage_HmacKeyMetadata $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'accessId' => $accessId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Storage_HmacKeyMetadata"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/Resource/ProjectsServiceAccount.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/Resource/ProjectsServiceAccount.php deleted file mode 100644 index f446448c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/Resource/ProjectsServiceAccount.php +++ /dev/null @@ -1,46 +0,0 @@ - - * $storageService = new Google_Service_Storage(...); - * $serviceAccount = $storageService->serviceAccount; - * - */ -class Google_Service_Storage_Resource_ProjectsServiceAccount extends Google_Service_Resource -{ - /** - * Get the email address of this project's Google Cloud Storage service account. - * (serviceAccount.get) - * - * @param string $projectId Project ID - * @param array $optParams Optional parameters. - * - * @opt_param string provisionalUserProject The project to be billed for this - * request if the target bucket is requester-pays bucket. - * @opt_param string userProject The project to be billed for this request. - * @return Google_Service_Storage_ServiceAccount - */ - public function get($projectId, $optParams = array()) - { - $params = array('projectId' => $projectId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Storage_ServiceAccount"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/RewriteResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/RewriteResponse.php deleted file mode 100644 index 0205183c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/RewriteResponse.php +++ /dev/null @@ -1,82 +0,0 @@ -done = $done; - } - public function getDone() - { - return $this->done; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setObjectSize($objectSize) - { - $this->objectSize = $objectSize; - } - public function getObjectSize() - { - return $this->objectSize; - } - /** - * @param Google_Service_Storage_StorageObject - */ - public function setResource(Google_Service_Storage_StorageObject $resource) - { - $this->resource = $resource; - } - /** - * @return Google_Service_Storage_StorageObject - */ - public function getResource() - { - return $this->resource; - } - public function setRewriteToken($rewriteToken) - { - $this->rewriteToken = $rewriteToken; - } - public function getRewriteToken() - { - return $this->rewriteToken; - } - public function setTotalBytesRewritten($totalBytesRewritten) - { - $this->totalBytesRewritten = $totalBytesRewritten; - } - public function getTotalBytesRewritten() - { - return $this->totalBytesRewritten; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/ServiceAccount.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/ServiceAccount.php deleted file mode 100644 index c5fe3eec..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/ServiceAccount.php +++ /dev/null @@ -1,42 +0,0 @@ - "email_address", - ); - public $emailAddress; - public $kind; - - public function setEmailAddress($emailAddress) - { - $this->emailAddress = $emailAddress; - } - public function getEmailAddress() - { - return $this->emailAddress; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/StorageObject.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/StorageObject.php deleted file mode 100644 index 658691ac..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/StorageObject.php +++ /dev/null @@ -1,322 +0,0 @@ -acl = $acl; - } - /** - * @return Google_Service_Storage_ObjectAccessControl - */ - public function getAcl() - { - return $this->acl; - } - public function setBucket($bucket) - { - $this->bucket = $bucket; - } - public function getBucket() - { - return $this->bucket; - } - public function setCacheControl($cacheControl) - { - $this->cacheControl = $cacheControl; - } - public function getCacheControl() - { - return $this->cacheControl; - } - public function setComponentCount($componentCount) - { - $this->componentCount = $componentCount; - } - public function getComponentCount() - { - return $this->componentCount; - } - public function setContentDisposition($contentDisposition) - { - $this->contentDisposition = $contentDisposition; - } - public function getContentDisposition() - { - return $this->contentDisposition; - } - public function setContentEncoding($contentEncoding) - { - $this->contentEncoding = $contentEncoding; - } - public function getContentEncoding() - { - return $this->contentEncoding; - } - public function setContentLanguage($contentLanguage) - { - $this->contentLanguage = $contentLanguage; - } - public function getContentLanguage() - { - return $this->contentLanguage; - } - public function setContentType($contentType) - { - $this->contentType = $contentType; - } - public function getContentType() - { - return $this->contentType; - } - public function setCrc32c($crc32c) - { - $this->crc32c = $crc32c; - } - public function getCrc32c() - { - return $this->crc32c; - } - /** - * @param Google_Service_Storage_StorageObjectCustomerEncryption - */ - public function setCustomerEncryption(Google_Service_Storage_StorageObjectCustomerEncryption $customerEncryption) - { - $this->customerEncryption = $customerEncryption; - } - /** - * @return Google_Service_Storage_StorageObjectCustomerEncryption - */ - public function getCustomerEncryption() - { - return $this->customerEncryption; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setEventBasedHold($eventBasedHold) - { - $this->eventBasedHold = $eventBasedHold; - } - public function getEventBasedHold() - { - return $this->eventBasedHold; - } - public function setGeneration($generation) - { - $this->generation = $generation; - } - public function getGeneration() - { - return $this->generation; - } - 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 setKmsKeyName($kmsKeyName) - { - $this->kmsKeyName = $kmsKeyName; - } - public function getKmsKeyName() - { - return $this->kmsKeyName; - } - public function setMd5Hash($md5Hash) - { - $this->md5Hash = $md5Hash; - } - public function getMd5Hash() - { - return $this->md5Hash; - } - public function setMediaLink($mediaLink) - { - $this->mediaLink = $mediaLink; - } - public function getMediaLink() - { - return $this->mediaLink; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setMetageneration($metageneration) - { - $this->metageneration = $metageneration; - } - public function getMetageneration() - { - return $this->metageneration; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Storage_StorageObjectOwner - */ - public function setOwner(Google_Service_Storage_StorageObjectOwner $owner) - { - $this->owner = $owner; - } - /** - * @return Google_Service_Storage_StorageObjectOwner - */ - public function getOwner() - { - return $this->owner; - } - public function setRetentionExpirationTime($retentionExpirationTime) - { - $this->retentionExpirationTime = $retentionExpirationTime; - } - public function getRetentionExpirationTime() - { - return $this->retentionExpirationTime; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setSize($size) - { - $this->size = $size; - } - public function getSize() - { - return $this->size; - } - public function setStorageClass($storageClass) - { - $this->storageClass = $storageClass; - } - public function getStorageClass() - { - return $this->storageClass; - } - public function setTemporaryHold($temporaryHold) - { - $this->temporaryHold = $temporaryHold; - } - public function getTemporaryHold() - { - return $this->temporaryHold; - } - public function setTimeCreated($timeCreated) - { - $this->timeCreated = $timeCreated; - } - public function getTimeCreated() - { - return $this->timeCreated; - } - public function setTimeDeleted($timeDeleted) - { - $this->timeDeleted = $timeDeleted; - } - public function getTimeDeleted() - { - return $this->timeDeleted; - } - public function setTimeStorageClassUpdated($timeStorageClassUpdated) - { - $this->timeStorageClassUpdated = $timeStorageClassUpdated; - } - public function getTimeStorageClassUpdated() - { - return $this->timeStorageClassUpdated; - } - public function setUpdated($updated) - { - $this->updated = $updated; - } - public function getUpdated() - { - return $this->updated; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/StorageObjectCustomerEncryption.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/StorageObjectCustomerEncryption.php deleted file mode 100644 index b459b968..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/StorageObjectCustomerEncryption.php +++ /dev/null @@ -1,39 +0,0 @@ -encryptionAlgorithm = $encryptionAlgorithm; - } - public function getEncryptionAlgorithm() - { - return $this->encryptionAlgorithm; - } - public function setKeySha256($keySha256) - { - $this->keySha256 = $keySha256; - } - public function getKeySha256() - { - return $this->keySha256; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/StorageObjectOwner.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/StorageObjectOwner.php deleted file mode 100644 index 34f727de..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/StorageObjectOwner.php +++ /dev/null @@ -1,39 +0,0 @@ -entity = $entity; - } - public function getEntity() - { - return $this->entity; - } - public function setEntityId($entityId) - { - $this->entityId = $entityId; - } - public function getEntityId() - { - return $this->entityId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/TestIamPermissionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/TestIamPermissionsResponse.php deleted file mode 100644 index 78ed2011..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storage/TestIamPermissionsResponse.php +++ /dev/null @@ -1,40 +0,0 @@ -kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setPermissions($permissions) - { - $this->permissions = $permissions; - } - public function getPermissions() - { - return $this->permissions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer.php deleted file mode 100644 index cda0d0f8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer.php +++ /dev/null @@ -1,205 +0,0 @@ - - * Transfers data from external data sources to a Google Cloud Storage bucket or - * between Google Cloud Storage buckets.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Storagetransfer extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - - public $googleServiceAccounts; - public $transferJobs; - public $transferOperations; - - /** - * Constructs the internal representation of the Storagetransfer service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://storagetransfer.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'storagetransfer'; - - $this->googleServiceAccounts = new Google_Service_Storagetransfer_Resource_GoogleServiceAccounts( - $this, - $this->serviceName, - 'googleServiceAccounts', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/googleServiceAccounts/{projectId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->transferJobs = new Google_Service_Storagetransfer_Resource_TransferJobs( - $this, - $this->serviceName, - 'transferJobs', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/transferJobs', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'get' => array( - 'path' => 'v1/{+jobName}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'jobName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'projectId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'v1/transferJobs', - 'httpMethod' => 'GET', - 'parameters' => array( - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v1/{+jobName}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'jobName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->transferOperations = new Google_Service_Storagetransfer_Resource_TransferOperations( - $this, - $this->serviceName, - 'transferOperations', - array( - 'methods' => array( - 'cancel' => array( - 'path' => 'v1/{+name}:cancel', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'pause' => array( - 'path' => 'v1/{+name}:pause', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'resume' => array( - 'path' => 'v1/{+name}:resume', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/AwsAccessKey.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/AwsAccessKey.php deleted file mode 100644 index f1c61098..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/AwsAccessKey.php +++ /dev/null @@ -1,39 +0,0 @@ -accessKeyId = $accessKeyId; - } - public function getAccessKeyId() - { - return $this->accessKeyId; - } - public function setSecretAccessKey($secretAccessKey) - { - $this->secretAccessKey = $secretAccessKey; - } - public function getSecretAccessKey() - { - return $this->secretAccessKey; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/AwsS3Data.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/AwsS3Data.php deleted file mode 100644 index 8c346e73..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/AwsS3Data.php +++ /dev/null @@ -1,46 +0,0 @@ -awsAccessKey = $awsAccessKey; - } - /** - * @return Google_Service_Storagetransfer_AwsAccessKey - */ - public function getAwsAccessKey() - { - return $this->awsAccessKey; - } - public function setBucketName($bucketName) - { - $this->bucketName = $bucketName; - } - public function getBucketName() - { - return $this->bucketName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/Date.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/Date.php deleted file mode 100644 index 3ad7f39c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/Date.php +++ /dev/null @@ -1,48 +0,0 @@ -day = $day; - } - public function getDay() - { - return $this->day; - } - public function setMonth($month) - { - $this->month = $month; - } - public function getMonth() - { - return $this->month; - } - public function setYear($year) - { - $this->year = $year; - } - public function getYear() - { - return $this->year; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/ErrorLogEntry.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/ErrorLogEntry.php deleted file mode 100644 index 02367085..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/ErrorLogEntry.php +++ /dev/null @@ -1,40 +0,0 @@ -errorDetails = $errorDetails; - } - public function getErrorDetails() - { - return $this->errorDetails; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/ErrorSummary.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/ErrorSummary.php deleted file mode 100644 index 86472249..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/ErrorSummary.php +++ /dev/null @@ -1,56 +0,0 @@ -errorCode = $errorCode; - } - public function getErrorCode() - { - return $this->errorCode; - } - public function setErrorCount($errorCount) - { - $this->errorCount = $errorCount; - } - public function getErrorCount() - { - return $this->errorCount; - } - /** - * @param Google_Service_Storagetransfer_ErrorLogEntry - */ - public function setErrorLogEntries($errorLogEntries) - { - $this->errorLogEntries = $errorLogEntries; - } - /** - * @return Google_Service_Storagetransfer_ErrorLogEntry - */ - public function getErrorLogEntries() - { - return $this->errorLogEntries; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/GcsData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/GcsData.php deleted file mode 100644 index 8c76a880..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/GcsData.php +++ /dev/null @@ -1,30 +0,0 @@ -bucketName = $bucketName; - } - public function getBucketName() - { - return $this->bucketName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/GoogleServiceAccount.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/GoogleServiceAccount.php deleted file mode 100644 index d603b4ea..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/GoogleServiceAccount.php +++ /dev/null @@ -1,30 +0,0 @@ -accountEmail = $accountEmail; - } - public function getAccountEmail() - { - return $this->accountEmail; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/HttpData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/HttpData.php deleted file mode 100644 index c07d8a01..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/HttpData.php +++ /dev/null @@ -1,30 +0,0 @@ -listUrl = $listUrl; - } - public function getListUrl() - { - return $this->listUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/ListOperationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/ListOperationsResponse.php deleted file mode 100644 index 7e739795..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/ListOperationsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Storagetransfer_Operation - */ - public function setOperations($operations) - { - $this->operations = $operations; - } - /** - * @return Google_Service_Storagetransfer_Operation - */ - public function getOperations() - { - return $this->operations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/ListTransferJobsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/ListTransferJobsResponse.php deleted file mode 100644 index 77c1b96a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/ListTransferJobsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Storagetransfer_TransferJob - */ - public function setTransferJobs($transferJobs) - { - $this->transferJobs = $transferJobs; - } - /** - * @return Google_Service_Storagetransfer_TransferJob - */ - public function getTransferJobs() - { - return $this->transferJobs; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/ObjectConditions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/ObjectConditions.php deleted file mode 100644 index 6b5f64ea..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/ObjectConditions.php +++ /dev/null @@ -1,58 +0,0 @@ -excludePrefixes = $excludePrefixes; - } - public function getExcludePrefixes() - { - return $this->excludePrefixes; - } - public function setIncludePrefixes($includePrefixes) - { - $this->includePrefixes = $includePrefixes; - } - public function getIncludePrefixes() - { - return $this->includePrefixes; - } - public function setMaxTimeElapsedSinceLastModification($maxTimeElapsedSinceLastModification) - { - $this->maxTimeElapsedSinceLastModification = $maxTimeElapsedSinceLastModification; - } - public function getMaxTimeElapsedSinceLastModification() - { - return $this->maxTimeElapsedSinceLastModification; - } - public function setMinTimeElapsedSinceLastModification($minTimeElapsedSinceLastModification) - { - $this->minTimeElapsedSinceLastModification = $minTimeElapsedSinceLastModification; - } - public function getMinTimeElapsedSinceLastModification() - { - return $this->minTimeElapsedSinceLastModification; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/Operation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/Operation.php deleted file mode 100644 index 0f979b78..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/Operation.php +++ /dev/null @@ -1,73 +0,0 @@ -done = $done; - } - public function getDone() - { - return $this->done; - } - /** - * @param Google_Service_Storagetransfer_Status - */ - public function setError(Google_Service_Storagetransfer_Status $error) - { - $this->error = $error; - } - /** - * @return Google_Service_Storagetransfer_Status - */ - public function getError() - { - return $this->error; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/PauseTransferOperationRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/PauseTransferOperationRequest.php deleted file mode 100644 index 89beddfc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/PauseTransferOperationRequest.php +++ /dev/null @@ -1,20 +0,0 @@ - - * $storagetransferService = new Google_Service_Storagetransfer(...); - * $googleServiceAccounts = $storagetransferService->googleServiceAccounts; - * - */ -class Google_Service_Storagetransfer_Resource_GoogleServiceAccounts extends Google_Service_Resource -{ - /** - * Returns the Google service account that is used by Storage Transfer Service - * to access buckets in the project where transfers run or in other projects. - * Each Google service account is associated with one Google Cloud Platform - * Console project. Users should add this service account to the Google Cloud - * Storage bucket ACLs to grant access to Storage Transfer Service. This service - * account is created and owned by Storage Transfer Service and can only be used - * by Storage Transfer Service. (googleServiceAccounts.get) - * - * @param string $projectId Required. The ID of the Google Cloud Platform - * Console project that the Google service account is associated with. - * @param array $optParams Optional parameters. - * @return Google_Service_Storagetransfer_GoogleServiceAccount - */ - public function get($projectId, $optParams = array()) - { - $params = array('projectId' => $projectId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Storagetransfer_GoogleServiceAccount"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/Resource/TransferJobs.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/Resource/TransferJobs.php deleted file mode 100644 index 5f902576..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/Resource/TransferJobs.php +++ /dev/null @@ -1,100 +0,0 @@ - - * $storagetransferService = new Google_Service_Storagetransfer(...); - * $transferJobs = $storagetransferService->transferJobs; - * - */ -class Google_Service_Storagetransfer_Resource_TransferJobs extends Google_Service_Resource -{ - /** - * Creates a transfer job that runs periodically. (transferJobs.create) - * - * @param Google_Service_Storagetransfer_TransferJob $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Storagetransfer_TransferJob - */ - public function create(Google_Service_Storagetransfer_TransferJob $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Storagetransfer_TransferJob"); - } - /** - * Gets a transfer job. (transferJobs.get) - * - * @param string $jobName Required. The job to get. - * @param array $optParams Optional parameters. - * - * @opt_param string projectId Required. The ID of the Google Cloud Platform - * Console project that owns the job. - * @return Google_Service_Storagetransfer_TransferJob - */ - public function get($jobName, $optParams = array()) - { - $params = array('jobName' => $jobName); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Storagetransfer_TransferJob"); - } - /** - * Lists transfer jobs. (transferJobs.listTransferJobs) - * - * @param array $optParams Optional parameters. - * - * @opt_param string filter Required. A list of query parameters specified as - * JSON text in the form of: {"project_id":"my_project_id", - * "job_names":["jobid1","jobid2",...], - * "job_statuses":["status1","status2",...]}. Since `job_names` and - * `job_statuses` support multiple values, their values must be specified with - * array notation. `project_id` is required. `job_names` and `job_statuses` are - * optional. The valid values for `job_statuses` are case-insensitive: - * `ENABLED`, `DISABLED`, and `DELETED`. - * @opt_param string pageToken The list page token. - * @opt_param int pageSize The list page size. The max allowed value is 256. - * @return Google_Service_Storagetransfer_ListTransferJobsResponse - */ - public function listTransferJobs($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Storagetransfer_ListTransferJobsResponse"); - } - /** - * Updates a transfer job. Updating a job's transfer spec does not affect - * transfer operations that are running already. Updating a job's schedule is - * not allowed. - * - * Note: The job's `status` field can be modified using this RPC (for example, - * to set a job's status to `DELETED`, `DISABLED`, or `ENABLED`). - * (transferJobs.patch) - * - * @param string $jobName Required. The name of job to update. - * @param Google_Service_Storagetransfer_UpdateTransferJobRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Storagetransfer_TransferJob - */ - public function patch($jobName, Google_Service_Storagetransfer_UpdateTransferJobRequest $postBody, $optParams = array()) - { - $params = array('jobName' => $jobName, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Storagetransfer_TransferJob"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/Resource/TransferOperations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/Resource/TransferOperations.php deleted file mode 100644 index ac133d0b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/Resource/TransferOperations.php +++ /dev/null @@ -1,112 +0,0 @@ - - * $storagetransferService = new Google_Service_Storagetransfer(...); - * $transferOperations = $storagetransferService->transferOperations; - * - */ -class Google_Service_Storagetransfer_Resource_TransferOperations extends Google_Service_Resource -{ - /** - * Cancels a transfer. Use the get method to check whether the cancellation - * succeeded or whether the operation completed despite cancellation. - * (transferOperations.cancel) - * - * @param string $name The name of the operation resource to be cancelled. - * @param array $optParams Optional parameters. - * @return Google_Service_Storagetransfer_StoragetransferEmpty - */ - public function cancel($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('cancel', array($params), "Google_Service_Storagetransfer_StoragetransferEmpty"); - } - /** - * Gets the latest state of a long-running operation. Clients can use this - * method to poll the operation result at intervals as recommended by the API - * service. (transferOperations.get) - * - * @param string $name The name of the operation resource. - * @param array $optParams Optional parameters. - * @return Google_Service_Storagetransfer_Operation - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Storagetransfer_Operation"); - } - /** - * Lists transfer operations. (transferOperations.listTransferOperations) - * - * @param string $name Required. The value `transferOperations`. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The list page token. - * @opt_param int pageSize The list page size. The max allowed value is 256. - * @opt_param string filter Required. A list of query parameters specified as - * JSON text in the form of: {"project_id":"my_project_id", - * "job_names":["jobid1","jobid2",...], - * "operation_names":["opid1","opid2",...], - * "transfer_statuses":["status1","status2",...]}. Since `job_names`, - * `operation_names`, and `transfer_statuses` support multiple values, they must - * be specified with array notation. `project_id` is required. `job_names`, - * `operation_names`, and `transfer_statuses` are optional. The valid values for - * `transfer_statuses` are case-insensitive: `IN_PROGRESS`, `PAUSED`, `SUCCESS`, - * `FAILED`, and `ABORTED`. - * @return Google_Service_Storagetransfer_ListOperationsResponse - */ - public function listTransferOperations($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Storagetransfer_ListOperationsResponse"); - } - /** - * Pauses a transfer operation. (transferOperations.pause) - * - * @param string $name Required. The name of the transfer operation. - * @param Google_Service_Storagetransfer_PauseTransferOperationRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Storagetransfer_StoragetransferEmpty - */ - public function pause($name, Google_Service_Storagetransfer_PauseTransferOperationRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('pause', array($params), "Google_Service_Storagetransfer_StoragetransferEmpty"); - } - /** - * Resumes a transfer operation that is paused. (transferOperations.resume) - * - * @param string $name Required. The name of the transfer operation. - * @param Google_Service_Storagetransfer_ResumeTransferOperationRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Storagetransfer_StoragetransferEmpty - */ - public function resume($name, Google_Service_Storagetransfer_ResumeTransferOperationRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('resume', array($params), "Google_Service_Storagetransfer_StoragetransferEmpty"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/ResumeTransferOperationRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/ResumeTransferOperationRequest.php deleted file mode 100644 index e2fdeb45..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/ResumeTransferOperationRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -scheduleEndDate = $scheduleEndDate; - } - /** - * @return Google_Service_Storagetransfer_Date - */ - public function getScheduleEndDate() - { - return $this->scheduleEndDate; - } - /** - * @param Google_Service_Storagetransfer_Date - */ - public function setScheduleStartDate(Google_Service_Storagetransfer_Date $scheduleStartDate) - { - $this->scheduleStartDate = $scheduleStartDate; - } - /** - * @return Google_Service_Storagetransfer_Date - */ - public function getScheduleStartDate() - { - return $this->scheduleStartDate; - } - /** - * @param Google_Service_Storagetransfer_TimeOfDay - */ - public function setStartTimeOfDay(Google_Service_Storagetransfer_TimeOfDay $startTimeOfDay) - { - $this->startTimeOfDay = $startTimeOfDay; - } - /** - * @return Google_Service_Storagetransfer_TimeOfDay - */ - public function getStartTimeOfDay() - { - return $this->startTimeOfDay; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/Status.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/Status.php deleted file mode 100644 index 15345e6f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/Status.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/StoragetransferEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/StoragetransferEmpty.php deleted file mode 100644 index d069f616..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/StoragetransferEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -hours = $hours; - } - public function getHours() - { - return $this->hours; - } - public function setMinutes($minutes) - { - $this->minutes = $minutes; - } - public function getMinutes() - { - return $this->minutes; - } - public function setNanos($nanos) - { - $this->nanos = $nanos; - } - public function getNanos() - { - return $this->nanos; - } - public function setSeconds($seconds) - { - $this->seconds = $seconds; - } - public function getSeconds() - { - return $this->seconds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/TransferCounters.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/TransferCounters.php deleted file mode 100644 index a1a214cb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/TransferCounters.php +++ /dev/null @@ -1,165 +0,0 @@ -bytesCopiedToSink = $bytesCopiedToSink; - } - public function getBytesCopiedToSink() - { - return $this->bytesCopiedToSink; - } - public function setBytesDeletedFromSink($bytesDeletedFromSink) - { - $this->bytesDeletedFromSink = $bytesDeletedFromSink; - } - public function getBytesDeletedFromSink() - { - return $this->bytesDeletedFromSink; - } - public function setBytesDeletedFromSource($bytesDeletedFromSource) - { - $this->bytesDeletedFromSource = $bytesDeletedFromSource; - } - public function getBytesDeletedFromSource() - { - return $this->bytesDeletedFromSource; - } - public function setBytesFailedToDeleteFromSink($bytesFailedToDeleteFromSink) - { - $this->bytesFailedToDeleteFromSink = $bytesFailedToDeleteFromSink; - } - public function getBytesFailedToDeleteFromSink() - { - return $this->bytesFailedToDeleteFromSink; - } - public function setBytesFoundFromSource($bytesFoundFromSource) - { - $this->bytesFoundFromSource = $bytesFoundFromSource; - } - public function getBytesFoundFromSource() - { - return $this->bytesFoundFromSource; - } - public function setBytesFoundOnlyFromSink($bytesFoundOnlyFromSink) - { - $this->bytesFoundOnlyFromSink = $bytesFoundOnlyFromSink; - } - public function getBytesFoundOnlyFromSink() - { - return $this->bytesFoundOnlyFromSink; - } - public function setBytesFromSourceFailed($bytesFromSourceFailed) - { - $this->bytesFromSourceFailed = $bytesFromSourceFailed; - } - public function getBytesFromSourceFailed() - { - return $this->bytesFromSourceFailed; - } - public function setBytesFromSourceSkippedBySync($bytesFromSourceSkippedBySync) - { - $this->bytesFromSourceSkippedBySync = $bytesFromSourceSkippedBySync; - } - public function getBytesFromSourceSkippedBySync() - { - return $this->bytesFromSourceSkippedBySync; - } - public function setObjectsCopiedToSink($objectsCopiedToSink) - { - $this->objectsCopiedToSink = $objectsCopiedToSink; - } - public function getObjectsCopiedToSink() - { - return $this->objectsCopiedToSink; - } - public function setObjectsDeletedFromSink($objectsDeletedFromSink) - { - $this->objectsDeletedFromSink = $objectsDeletedFromSink; - } - public function getObjectsDeletedFromSink() - { - return $this->objectsDeletedFromSink; - } - public function setObjectsDeletedFromSource($objectsDeletedFromSource) - { - $this->objectsDeletedFromSource = $objectsDeletedFromSource; - } - public function getObjectsDeletedFromSource() - { - return $this->objectsDeletedFromSource; - } - public function setObjectsFailedToDeleteFromSink($objectsFailedToDeleteFromSink) - { - $this->objectsFailedToDeleteFromSink = $objectsFailedToDeleteFromSink; - } - public function getObjectsFailedToDeleteFromSink() - { - return $this->objectsFailedToDeleteFromSink; - } - public function setObjectsFoundFromSource($objectsFoundFromSource) - { - $this->objectsFoundFromSource = $objectsFoundFromSource; - } - public function getObjectsFoundFromSource() - { - return $this->objectsFoundFromSource; - } - public function setObjectsFoundOnlyFromSink($objectsFoundOnlyFromSink) - { - $this->objectsFoundOnlyFromSink = $objectsFoundOnlyFromSink; - } - public function getObjectsFoundOnlyFromSink() - { - return $this->objectsFoundOnlyFromSink; - } - public function setObjectsFromSourceFailed($objectsFromSourceFailed) - { - $this->objectsFromSourceFailed = $objectsFromSourceFailed; - } - public function getObjectsFromSourceFailed() - { - return $this->objectsFromSourceFailed; - } - public function setObjectsFromSourceSkippedBySync($objectsFromSourceSkippedBySync) - { - $this->objectsFromSourceSkippedBySync = $objectsFromSourceSkippedBySync; - } - public function getObjectsFromSourceSkippedBySync() - { - return $this->objectsFromSourceSkippedBySync; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/TransferJob.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/TransferJob.php deleted file mode 100644 index 705c3050..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/TransferJob.php +++ /dev/null @@ -1,116 +0,0 @@ -creationTime = $creationTime; - } - public function getCreationTime() - { - return $this->creationTime; - } - public function setDeletionTime($deletionTime) - { - $this->deletionTime = $deletionTime; - } - public function getDeletionTime() - { - return $this->deletionTime; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setLastModificationTime($lastModificationTime) - { - $this->lastModificationTime = $lastModificationTime; - } - public function getLastModificationTime() - { - return $this->lastModificationTime; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } - /** - * @param Google_Service_Storagetransfer_Schedule - */ - public function setSchedule(Google_Service_Storagetransfer_Schedule $schedule) - { - $this->schedule = $schedule; - } - /** - * @return Google_Service_Storagetransfer_Schedule - */ - public function getSchedule() - { - return $this->schedule; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - /** - * @param Google_Service_Storagetransfer_TransferSpec - */ - public function setTransferSpec(Google_Service_Storagetransfer_TransferSpec $transferSpec) - { - $this->transferSpec = $transferSpec; - } - /** - * @return Google_Service_Storagetransfer_TransferSpec - */ - public function getTransferSpec() - { - return $this->transferSpec; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/TransferOperation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/TransferOperation.php deleted file mode 100644 index e736bab2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/TransferOperation.php +++ /dev/null @@ -1,124 +0,0 @@ -counters = $counters; - } - /** - * @return Google_Service_Storagetransfer_TransferCounters - */ - public function getCounters() - { - return $this->counters; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - /** - * @param Google_Service_Storagetransfer_ErrorSummary - */ - public function setErrorBreakdowns($errorBreakdowns) - { - $this->errorBreakdowns = $errorBreakdowns; - } - /** - * @return Google_Service_Storagetransfer_ErrorSummary - */ - public function getErrorBreakdowns() - { - return $this->errorBreakdowns; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } - 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 setTransferJobName($transferJobName) - { - $this->transferJobName = $transferJobName; - } - public function getTransferJobName() - { - return $this->transferJobName; - } - /** - * @param Google_Service_Storagetransfer_TransferSpec - */ - public function setTransferSpec(Google_Service_Storagetransfer_TransferSpec $transferSpec) - { - $this->transferSpec = $transferSpec; - } - /** - * @return Google_Service_Storagetransfer_TransferSpec - */ - public function getTransferSpec() - { - return $this->transferSpec; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/TransferOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/TransferOptions.php deleted file mode 100644 index 48adf1e5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/TransferOptions.php +++ /dev/null @@ -1,48 +0,0 @@ -deleteObjectsFromSourceAfterTransfer = $deleteObjectsFromSourceAfterTransfer; - } - public function getDeleteObjectsFromSourceAfterTransfer() - { - return $this->deleteObjectsFromSourceAfterTransfer; - } - public function setDeleteObjectsUniqueInSink($deleteObjectsUniqueInSink) - { - $this->deleteObjectsUniqueInSink = $deleteObjectsUniqueInSink; - } - public function getDeleteObjectsUniqueInSink() - { - return $this->deleteObjectsUniqueInSink; - } - public function setOverwriteObjectsAlreadyExistingInSink($overwriteObjectsAlreadyExistingInSink) - { - $this->overwriteObjectsAlreadyExistingInSink = $overwriteObjectsAlreadyExistingInSink; - } - public function getOverwriteObjectsAlreadyExistingInSink() - { - return $this->overwriteObjectsAlreadyExistingInSink; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/TransferSpec.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/TransferSpec.php deleted file mode 100644 index 32663fb3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/TransferSpec.php +++ /dev/null @@ -1,117 +0,0 @@ -awsS3DataSource = $awsS3DataSource; - } - /** - * @return Google_Service_Storagetransfer_AwsS3Data - */ - public function getAwsS3DataSource() - { - return $this->awsS3DataSource; - } - /** - * @param Google_Service_Storagetransfer_GcsData - */ - public function setGcsDataSink(Google_Service_Storagetransfer_GcsData $gcsDataSink) - { - $this->gcsDataSink = $gcsDataSink; - } - /** - * @return Google_Service_Storagetransfer_GcsData - */ - public function getGcsDataSink() - { - return $this->gcsDataSink; - } - /** - * @param Google_Service_Storagetransfer_GcsData - */ - public function setGcsDataSource(Google_Service_Storagetransfer_GcsData $gcsDataSource) - { - $this->gcsDataSource = $gcsDataSource; - } - /** - * @return Google_Service_Storagetransfer_GcsData - */ - public function getGcsDataSource() - { - return $this->gcsDataSource; - } - /** - * @param Google_Service_Storagetransfer_HttpData - */ - public function setHttpDataSource(Google_Service_Storagetransfer_HttpData $httpDataSource) - { - $this->httpDataSource = $httpDataSource; - } - /** - * @return Google_Service_Storagetransfer_HttpData - */ - public function getHttpDataSource() - { - return $this->httpDataSource; - } - /** - * @param Google_Service_Storagetransfer_ObjectConditions - */ - public function setObjectConditions(Google_Service_Storagetransfer_ObjectConditions $objectConditions) - { - $this->objectConditions = $objectConditions; - } - /** - * @return Google_Service_Storagetransfer_ObjectConditions - */ - public function getObjectConditions() - { - return $this->objectConditions; - } - /** - * @param Google_Service_Storagetransfer_TransferOptions - */ - public function setTransferOptions(Google_Service_Storagetransfer_TransferOptions $transferOptions) - { - $this->transferOptions = $transferOptions; - } - /** - * @return Google_Service_Storagetransfer_TransferOptions - */ - public function getTransferOptions() - { - return $this->transferOptions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/UpdateTransferJobRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/UpdateTransferJobRequest.php deleted file mode 100644 index 341d4995..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Storagetransfer/UpdateTransferJobRequest.php +++ /dev/null @@ -1,55 +0,0 @@ -projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } - /** - * @param Google_Service_Storagetransfer_TransferJob - */ - public function setTransferJob(Google_Service_Storagetransfer_TransferJob $transferJob) - { - $this->transferJob = $transferJob; - } - /** - * @return Google_Service_Storagetransfer_TransferJob - */ - public function getTransferJob() - { - return $this->transferJob; - } - public function setUpdateTransferJobFieldMask($updateTransferJobFieldMask) - { - $this->updateTransferJobFieldMask = $updateTransferJobFieldMask; - } - public function getUpdateTransferJobFieldMask() - { - return $this->updateTransferJobFieldMask; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish.php deleted file mode 100644 index 0a1fe754..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish.php +++ /dev/null @@ -1,179 +0,0 @@ - - * Publishes 360 photos to Google Maps, along with position, orientation, and - * connectivity metadata. Apps can offer an interface for positioning, - * connecting, and uploading user-generated Street View images.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_StreetViewPublish extends Google_Service -{ - /** Publish and manage your 360 photos on Google Street View. */ - const STREETVIEWPUBLISH = - "https://www.googleapis.com/auth/streetviewpublish"; - - public $photo; - public $photos; - - /** - * Constructs the internal representation of the StreetViewPublish service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://streetviewpublish.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'streetviewpublish'; - - $this->photo = new Google_Service_StreetViewPublish_Resource_Photo( - $this, - $this->serviceName, - 'photo', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/photo', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'delete' => array( - 'path' => 'v1/photo/{photoId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'photoId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/photo/{photoId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'photoId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'languageCode' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'startUpload' => array( - 'path' => 'v1/photo:startUpload', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'update' => array( - 'path' => 'v1/photo/{id}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->photos = new Google_Service_StreetViewPublish_Resource_Photos( - $this, - $this->serviceName, - 'photos', - array( - 'methods' => array( - 'batchDelete' => array( - 'path' => 'v1/photos:batchDelete', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'batchGet' => array( - 'path' => 'v1/photos:batchGet', - 'httpMethod' => 'GET', - 'parameters' => array( - 'photoIds' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'languageCode' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'batchUpdate' => array( - 'path' => 'v1/photos:batchUpdate', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'list' => array( - 'path' => 'v1/photos', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'languageCode' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/BatchDeletePhotosRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/BatchDeletePhotosRequest.php deleted file mode 100644 index c32aefa4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/BatchDeletePhotosRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -photoIds = $photoIds; - } - public function getPhotoIds() - { - return $this->photoIds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/BatchDeletePhotosResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/BatchDeletePhotosResponse.php deleted file mode 100644 index b78bd48d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/BatchDeletePhotosResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -status = $status; - } - /** - * @return Google_Service_StreetViewPublish_Status - */ - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/BatchGetPhotosResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/BatchGetPhotosResponse.php deleted file mode 100644 index 0489ed5e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/BatchGetPhotosResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -results = $results; - } - /** - * @return Google_Service_StreetViewPublish_PhotoResponse - */ - public function getResults() - { - return $this->results; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/BatchUpdatePhotosRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/BatchUpdatePhotosRequest.php deleted file mode 100644 index 5b9fb3a4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/BatchUpdatePhotosRequest.php +++ /dev/null @@ -1,38 +0,0 @@ -updatePhotoRequests = $updatePhotoRequests; - } - /** - * @return Google_Service_StreetViewPublish_UpdatePhotoRequest - */ - public function getUpdatePhotoRequests() - { - return $this->updatePhotoRequests; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/BatchUpdatePhotosResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/BatchUpdatePhotosResponse.php deleted file mode 100644 index 7a388c0b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/BatchUpdatePhotosResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -results = $results; - } - /** - * @return Google_Service_StreetViewPublish_PhotoResponse - */ - public function getResults() - { - return $this->results; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/Connection.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/Connection.php deleted file mode 100644 index 870c4016..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/Connection.php +++ /dev/null @@ -1,37 +0,0 @@ -target = $target; - } - /** - * @return Google_Service_StreetViewPublish_PhotoId - */ - public function getTarget() - { - return $this->target; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/LatLng.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/LatLng.php deleted file mode 100644 index 4f7d05bb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/LatLng.php +++ /dev/null @@ -1,39 +0,0 @@ -latitude = $latitude; - } - public function getLatitude() - { - return $this->latitude; - } - public function setLongitude($longitude) - { - $this->longitude = $longitude; - } - public function getLongitude() - { - return $this->longitude; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/Level.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/Level.php deleted file mode 100644 index 1727d204..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/Level.php +++ /dev/null @@ -1,39 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setNumber($number) - { - $this->number = $number; - } - public function getNumber() - { - return $this->number; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/ListPhotosResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/ListPhotosResponse.php deleted file mode 100644 index ae52e349..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/ListPhotosResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_StreetViewPublish_Photo - */ - public function setPhotos($photos) - { - $this->photos = $photos; - } - /** - * @return Google_Service_StreetViewPublish_Photo - */ - public function getPhotos() - { - return $this->photos; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/Operation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/Operation.php deleted file mode 100644 index 4be4976c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/Operation.php +++ /dev/null @@ -1,73 +0,0 @@ -done = $done; - } - public function getDone() - { - return $this->done; - } - /** - * @param Google_Service_StreetViewPublish_Status - */ - public function setError(Google_Service_StreetViewPublish_Status $error) - { - $this->error = $error; - } - /** - * @return Google_Service_StreetViewPublish_Status - */ - public function getError() - { - return $this->error; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/Photo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/Photo.php deleted file mode 100644 index fa761289..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/Photo.php +++ /dev/null @@ -1,165 +0,0 @@ -captureTime = $captureTime; - } - public function getCaptureTime() - { - return $this->captureTime; - } - /** - * @param Google_Service_StreetViewPublish_Connection - */ - public function setConnections($connections) - { - $this->connections = $connections; - } - /** - * @return Google_Service_StreetViewPublish_Connection - */ - public function getConnections() - { - return $this->connections; - } - public function setDownloadUrl($downloadUrl) - { - $this->downloadUrl = $downloadUrl; - } - public function getDownloadUrl() - { - return $this->downloadUrl; - } - public function setMapsPublishStatus($mapsPublishStatus) - { - $this->mapsPublishStatus = $mapsPublishStatus; - } - public function getMapsPublishStatus() - { - return $this->mapsPublishStatus; - } - /** - * @param Google_Service_StreetViewPublish_PhotoId - */ - public function setPhotoId(Google_Service_StreetViewPublish_PhotoId $photoId) - { - $this->photoId = $photoId; - } - /** - * @return Google_Service_StreetViewPublish_PhotoId - */ - public function getPhotoId() - { - return $this->photoId; - } - /** - * @param Google_Service_StreetViewPublish_Place - */ - public function setPlaces($places) - { - $this->places = $places; - } - /** - * @return Google_Service_StreetViewPublish_Place - */ - public function getPlaces() - { - return $this->places; - } - /** - * @param Google_Service_StreetViewPublish_Pose - */ - public function setPose(Google_Service_StreetViewPublish_Pose $pose) - { - $this->pose = $pose; - } - /** - * @return Google_Service_StreetViewPublish_Pose - */ - public function getPose() - { - return $this->pose; - } - public function setShareLink($shareLink) - { - $this->shareLink = $shareLink; - } - public function getShareLink() - { - return $this->shareLink; - } - public function setThumbnailUrl($thumbnailUrl) - { - $this->thumbnailUrl = $thumbnailUrl; - } - public function getThumbnailUrl() - { - return $this->thumbnailUrl; - } - public function setTransferStatus($transferStatus) - { - $this->transferStatus = $transferStatus; - } - public function getTransferStatus() - { - return $this->transferStatus; - } - /** - * @param Google_Service_StreetViewPublish_UploadRef - */ - public function setUploadReference(Google_Service_StreetViewPublish_UploadRef $uploadReference) - { - $this->uploadReference = $uploadReference; - } - /** - * @return Google_Service_StreetViewPublish_UploadRef - */ - public function getUploadReference() - { - return $this->uploadReference; - } - public function setViewCount($viewCount) - { - $this->viewCount = $viewCount; - } - public function getViewCount() - { - return $this->viewCount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/PhotoId.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/PhotoId.php deleted file mode 100644 index 348371d3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/PhotoId.php +++ /dev/null @@ -1,30 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/PhotoResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/PhotoResponse.php deleted file mode 100644 index de9d3471..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/PhotoResponse.php +++ /dev/null @@ -1,53 +0,0 @@ -photo = $photo; - } - /** - * @return Google_Service_StreetViewPublish_Photo - */ - public function getPhoto() - { - return $this->photo; - } - /** - * @param Google_Service_StreetViewPublish_Status - */ - public function setStatus(Google_Service_StreetViewPublish_Status $status) - { - $this->status = $status; - } - /** - * @return Google_Service_StreetViewPublish_Status - */ - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/Place.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/Place.php deleted file mode 100644 index e899f0e3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/Place.php +++ /dev/null @@ -1,48 +0,0 @@ -languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPlaceId($placeId) - { - $this->placeId = $placeId; - } - public function getPlaceId() - { - return $this->placeId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/Pose.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/Pose.php deleted file mode 100644 index da088ca5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/Pose.php +++ /dev/null @@ -1,98 +0,0 @@ -accuracyMeters = $accuracyMeters; - } - public function getAccuracyMeters() - { - return $this->accuracyMeters; - } - public function setAltitude($altitude) - { - $this->altitude = $altitude; - } - public function getAltitude() - { - return $this->altitude; - } - public function setHeading($heading) - { - $this->heading = $heading; - } - public function getHeading() - { - return $this->heading; - } - /** - * @param Google_Service_StreetViewPublish_LatLng - */ - public function setLatLngPair(Google_Service_StreetViewPublish_LatLng $latLngPair) - { - $this->latLngPair = $latLngPair; - } - /** - * @return Google_Service_StreetViewPublish_LatLng - */ - public function getLatLngPair() - { - return $this->latLngPair; - } - /** - * @param Google_Service_StreetViewPublish_Level - */ - public function setLevel(Google_Service_StreetViewPublish_Level $level) - { - $this->level = $level; - } - /** - * @return Google_Service_StreetViewPublish_Level - */ - public function getLevel() - { - return $this->level; - } - public function setPitch($pitch) - { - $this->pitch = $pitch; - } - public function getPitch() - { - return $this->pitch; - } - public function setRoll($roll) - { - $this->roll = $roll; - } - public function getRoll() - { - return $this->roll; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/Resource/Photo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/Resource/Photo.php deleted file mode 100644 index ddda13c0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/Resource/Photo.php +++ /dev/null @@ -1,171 +0,0 @@ - - * $streetviewpublishService = new Google_Service_StreetViewPublish(...); - * $photo = $streetviewpublishService->photo; - * - */ -class Google_Service_StreetViewPublish_Resource_Photo extends Google_Service_Resource -{ - /** - * After the client finishes uploading the photo with the returned UploadRef, - * CreatePhoto publishes the uploaded Photo to Street View on Google Maps. - * - * Currently, the only way to set heading, pitch, and roll in CreatePhoto is - * through the [Photo Sphere XMP - * metadata](https://developers.google.com/streetview/spherical-metadata) in the - * photo bytes. CreatePhoto ignores the `pose.heading`, `pose.pitch`, - * `pose.roll`, `pose.altitude`, and `pose.level` fields in Pose. - * - * This method returns the following error codes: - * - * * google.rpc.Code.INVALID_ARGUMENT if the request is malformed or if the - * uploaded photo is not a 360 photo. * google.rpc.Code.NOT_FOUND if the upload - * reference does not exist. * google.rpc.Code.RESOURCE_EXHAUSTED if the account - * has reached the storage limit. (photo.create) - * - * @param Google_Service_StreetViewPublish_Photo $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_StreetViewPublish_Photo - */ - public function create(Google_Service_StreetViewPublish_Photo $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_StreetViewPublish_Photo"); - } - /** - * Deletes a Photo and its metadata. - * - * This method returns the following error codes: - * - * * google.rpc.Code.PERMISSION_DENIED if the requesting user did not create the - * requested photo. * google.rpc.Code.NOT_FOUND if the photo ID does not exist. - * (photo.delete) - * - * @param string $photoId Required. ID of the Photo. - * @param array $optParams Optional parameters. - * @return Google_Service_StreetViewPublish_StreetviewpublishEmpty - */ - public function delete($photoId, $optParams = array()) - { - $params = array('photoId' => $photoId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_StreetViewPublish_StreetviewpublishEmpty"); - } - /** - * Gets the metadata of the specified Photo. - * - * This method returns the following error codes: - * - * * google.rpc.Code.PERMISSION_DENIED if the requesting user did not create the - * requested Photo. * google.rpc.Code.NOT_FOUND if the requested Photo does not - * exist. * google.rpc.Code.UNAVAILABLE if the requested Photo is still being - * indexed. (photo.get) - * - * @param string $photoId Required. ID of the Photo. - * @param array $optParams Optional parameters. - * - * @opt_param string view Required. Specifies if a download URL for the photo - * bytes should be returned in the Photo response. - * @opt_param string languageCode The BCP-47 language code, such as "en-US" or - * "sr-Latn". For more information, see - * http://www.unicode.org/reports/tr35/#Unicode_locale_identifier. If - * language_code is unspecified, the user's language preference for Google - * services is used. - * @return Google_Service_StreetViewPublish_Photo - */ - public function get($photoId, $optParams = array()) - { - $params = array('photoId' => $photoId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_StreetViewPublish_Photo"); - } - /** - * Creates an upload session to start uploading photo bytes. The method uses - * the upload URL of the returned UploadRef to upload the bytes for the Photo. - * - * In addition to the photo requirements shown in - * https://support.google.com/maps/answer/7012050?hl=en_topic=6275604, the photo - * must meet the following requirements: - * - * * Photo Sphere XMP metadata must be included in the photo medadata. See - * https://developers.google.com/streetview/spherical-metadata for the required - * fields. * The pixel size of the photo must meet the size requirements listed - * in https://support.google.com/maps/answer/7012050?hl=en_topic=6275604, and - * the photo must be a full 360 horizontally. - * - * After the upload completes, the method uses UploadRef with CreatePhoto to - * create the Photo object entry. (photo.startUpload) - * - * @param Google_Service_StreetViewPublish_StreetviewpublishEmpty $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_StreetViewPublish_UploadRef - */ - public function startUpload(Google_Service_StreetViewPublish_StreetviewpublishEmpty $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('startUpload', array($params), "Google_Service_StreetViewPublish_UploadRef"); - } - /** - * Updates the metadata of a Photo, such as pose, place association, - * connections, etc. Changing the pixels of a photo is not supported. - * - * Only the fields specified in the updateMask field are used. If `updateMask` - * is not present, the update applies to all fields. - * - * This method returns the following error codes: - * - * * google.rpc.Code.PERMISSION_DENIED if the requesting user did not create the - * requested photo. * google.rpc.Code.INVALID_ARGUMENT if the request is - * malformed. * google.rpc.Code.NOT_FOUND if the requested photo does not exist. - * * google.rpc.Code.UNAVAILABLE if the requested Photo is still being indexed. - * (photo.update) - * - * @param string $id Required. A unique identifier for a photo. - * @param Google_Service_StreetViewPublish_Photo $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Required. Mask that identifies fields on the - * photo metadata to update. If not present, the old Photo metadata is entirely - * replaced with the new Photo metadata in this request. The update fails if - * invalid fields are specified. Multiple fields can be specified in a comma- - * delimited list. - * - * The following fields are valid: - * - * * `pose.heading` * `pose.latLngPair` * `pose.pitch` * `pose.roll` * - * `pose.level` * `pose.altitude` * `connections` * `places` - * - * Note: When updateMask contains repeated fields, the entire set of repeated - * values get replaced with the new contents. For example, if updateMask - * contains `connections` and `UpdatePhotoRequest.photo.connections` is empty, - * all connections are removed. - * @return Google_Service_StreetViewPublish_Photo - */ - public function update($id, Google_Service_StreetViewPublish_Photo $postBody, $optParams = array()) - { - $params = array('id' => $id, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_StreetViewPublish_Photo"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/Resource/Photos.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/Resource/Photos.php deleted file mode 100644 index c84d8b9b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/Resource/Photos.php +++ /dev/null @@ -1,139 +0,0 @@ - - * $streetviewpublishService = new Google_Service_StreetViewPublish(...); - * $photos = $streetviewpublishService->photos; - * - */ -class Google_Service_StreetViewPublish_Resource_Photos extends Google_Service_Resource -{ - /** - * Deletes a list of Photos and their metadata. - * - * Note that if BatchDeletePhotos fails, either critical fields are missing or - * there is an authentication error. Even if BatchDeletePhotos succeeds, - * individual photos in the batch may have failures. These failures are - * specified in each PhotoResponse.status in BatchDeletePhotosResponse.results. - * See DeletePhoto for specific failures that can occur per photo. - * (photos.batchDelete) - * - * @param Google_Service_StreetViewPublish_BatchDeletePhotosRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_StreetViewPublish_BatchDeletePhotosResponse - */ - public function batchDelete(Google_Service_StreetViewPublish_BatchDeletePhotosRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('batchDelete', array($params), "Google_Service_StreetViewPublish_BatchDeletePhotosResponse"); - } - /** - * Gets the metadata of the specified Photo batch. - * - * Note that if BatchGetPhotos fails, either critical fields are missing or - * there is an authentication error. Even if BatchGetPhotos succeeds, individual - * photos in the batch may have failures. These failures are specified in each - * PhotoResponse.status in BatchGetPhotosResponse.results. See GetPhoto for - * specific failures that can occur per photo. (photos.batchGet) - * - * @param array $optParams Optional parameters. - * - * @opt_param string photoIds Required. IDs of the Photos. For HTTP GET - * requests, the URL query parameter should be `photoIds==&...`. - * @opt_param string view Required. Specifies if a download URL for the photo - * bytes should be returned in the Photo response. - * @opt_param string languageCode The BCP-47 language code, such as "en-US" or - * "sr-Latn". For more information, see - * http://www.unicode.org/reports/tr35/#Unicode_locale_identifier. If - * language_code is unspecified, the user's language preference for Google - * services is used. - * @return Google_Service_StreetViewPublish_BatchGetPhotosResponse - */ - public function batchGet($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('batchGet', array($params), "Google_Service_StreetViewPublish_BatchGetPhotosResponse"); - } - /** - * Updates the metadata of Photos, such as pose, place association, connections, - * etc. Changing the pixels of photos is not supported. - * - * Note that if BatchUpdatePhotos fails, either critical fields are missing or - * there is an authentication error. Even if BatchUpdatePhotos succeeds, - * individual photos in the batch may have failures. These failures are - * specified in each PhotoResponse.status in BatchUpdatePhotosResponse.results. - * See UpdatePhoto for specific failures that can occur per photo. - * - * Only the fields specified in updateMask field are used. If `updateMask` is - * not present, the update applies to all fields. - * - * The number of UpdatePhotoRequest messages in a BatchUpdatePhotosRequest must - * not exceed 20. - * - * Note: To update Pose.altitude, Pose.latLngPair has to be filled as well. - * Otherwise, the request will fail. (photos.batchUpdate) - * - * @param Google_Service_StreetViewPublish_BatchUpdatePhotosRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_StreetViewPublish_BatchUpdatePhotosResponse - */ - public function batchUpdate(Google_Service_StreetViewPublish_BatchUpdatePhotosRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('batchUpdate', array($params), "Google_Service_StreetViewPublish_BatchUpdatePhotosResponse"); - } - /** - * Lists all the Photos that belong to the user. - * - * Note: Recently created photos that are still being indexed are not returned - * in the response. (photos.listPhotos) - * - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The nextPageToken value returned from a previous - * ListPhotos request, if any. - * @opt_param int pageSize The maximum number of photos to return. `pageSize` - * must be non-negative. If `pageSize` is zero or is not provided, the default - * page size of 100 is used. The number of photos returned in the response may - * be less than `pageSize` if the number of photos that belong to the user is - * less than `pageSize`. - * @opt_param string view Required. Specifies if a download URL for the photos - * bytes should be returned in the Photos response. - * @opt_param string filter Required. The filter expression. For example: - * `placeId=ChIJj61dQgK6j4AR4GeTYWZsKWw`. - * - * The only filter supported at the moment is `placeId`. - * @opt_param string languageCode The BCP-47 language code, such as "en-US" or - * "sr-Latn". For more information, see - * http://www.unicode.org/reports/tr35/#Unicode_locale_identifier. If - * language_code is unspecified, the user's language preference for Google - * services is used. - * @return Google_Service_StreetViewPublish_ListPhotosResponse - */ - public function listPhotos($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_StreetViewPublish_ListPhotosResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/Status.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/Status.php deleted file mode 100644 index e72f6423..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/Status.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/StreetviewpublishEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/StreetviewpublishEmpty.php deleted file mode 100644 index d23a76a9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/StreetviewpublishEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -photo = $photo; - } - /** - * @return Google_Service_StreetViewPublish_Photo - */ - public function getPhoto() - { - return $this->photo; - } - public function setUpdateMask($updateMask) - { - $this->updateMask = $updateMask; - } - public function getUpdateMask() - { - return $this->updateMask; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/UploadRef.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/UploadRef.php deleted file mode 100644 index bf546b26..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/StreetViewPublish/UploadRef.php +++ /dev/null @@ -1,30 +0,0 @@ -uploadUrl = $uploadUrl; - } - public function getUploadUrl() - { - return $this->uploadUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys.php deleted file mode 100644 index 283bfa18..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys.php +++ /dev/null @@ -1,164 +0,0 @@ - - * Creates and conducts surveys, lists the surveys that an authenticated user - * owns, and retrieves survey results and information about specified surveys.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Surveys extends Google_Service -{ - /** View and manage your surveys and results. */ - const SURVEYS = - "https://www.googleapis.com/auth/surveys"; - /** View your surveys and survey results. */ - const SURVEYS_READONLY = - "https://www.googleapis.com/auth/surveys.readonly"; - /** View your email address. */ - const USERINFO_EMAIL = - "https://www.googleapis.com/auth/userinfo.email"; - - public $results; - public $surveys; - - /** - * Constructs the internal representation of the Surveys service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://www.googleapis.com/'; - $this->servicePath = 'surveys/v2/'; - $this->batchPath = 'batch/surveys/v2'; - $this->version = 'v2'; - $this->serviceName = 'surveys'; - - $this->results = new Google_Service_Surveys_Resource_Results( - $this, - $this->serviceName, - 'results', - array( - 'methods' => array( - 'get' => array( - 'path' => 'surveys/{surveyUrlId}/results', - 'httpMethod' => 'GET', - 'parameters' => array( - 'surveyUrlId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->surveys = new Google_Service_Surveys_Resource_Surveys( - $this, - $this->serviceName, - 'surveys', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'surveys/{surveyUrlId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'surveyUrlId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'surveys/{surveyUrlId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'surveyUrlId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'surveys', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'list' => array( - 'path' => 'surveys', - 'httpMethod' => 'GET', - 'parameters' => array( - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'startIndex' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'token' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'start' => array( - 'path' => 'surveys/{resourceId}/start', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resourceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'stop' => array( - 'path' => 'surveys/{resourceId}/stop', - 'httpMethod' => 'POST', - 'parameters' => array( - 'resourceId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'surveys/{surveyUrlId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'surveyUrlId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/FieldMask.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/FieldMask.php deleted file mode 100644 index 95a45f5f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/FieldMask.php +++ /dev/null @@ -1,47 +0,0 @@ -fields = $fields; - } - /** - * @return Google_Service_Surveys_FieldMask - */ - public function getFields() - { - return $this->fields; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/PageInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/PageInfo.php deleted file mode 100644 index 94c71576..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/PageInfo.php +++ /dev/null @@ -1,48 +0,0 @@ -resultPerPage = $resultPerPage; - } - public function getResultPerPage() - { - return $this->resultPerPage; - } - public function setStartIndex($startIndex) - { - $this->startIndex = $startIndex; - } - public function getStartIndex() - { - return $this->startIndex; - } - public function setTotalResults($totalResults) - { - $this->totalResults = $totalResults; - } - public function getTotalResults() - { - return $this->totalResults; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/Resource/Results.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/Resource/Results.php deleted file mode 100644 index fc198f49..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/Resource/Results.php +++ /dev/null @@ -1,43 +0,0 @@ - - * $surveysService = new Google_Service_Surveys(...); - * $results = $surveysService->results; - * - */ -class Google_Service_Surveys_Resource_Results extends Google_Service_Resource -{ - /** - * Retrieves any survey results that have been produced so far. Results are - * formatted as an Excel file. You must add "?alt=media" to the URL as an - * argument to get results. (results.get) - * - * @param string $surveyUrlId External URL ID for the survey. - * @param array $optParams Optional parameters. - * @return Google_Service_Surveys_SurveyResults - */ - public function get($surveyUrlId, $optParams = array()) - { - $params = array('surveyUrlId' => $surveyUrlId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Surveys_SurveyResults"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/Resource/Surveys.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/Resource/Surveys.php deleted file mode 100644 index 0581cd27..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/Resource/Surveys.php +++ /dev/null @@ -1,125 +0,0 @@ - - * $surveysService = new Google_Service_Surveys(...); - * $surveys = $surveysService->surveys; - * - */ -class Google_Service_Surveys_Resource_Surveys extends Google_Service_Resource -{ - /** - * Removes a survey from view in all user GET requests. (surveys.delete) - * - * @param string $surveyUrlId External URL ID for the survey. - * @param array $optParams Optional parameters. - * @return Google_Service_Surveys_SurveysDeleteResponse - */ - public function delete($surveyUrlId, $optParams = array()) - { - $params = array('surveyUrlId' => $surveyUrlId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Surveys_SurveysDeleteResponse"); - } - /** - * Retrieves information about the specified survey. (surveys.get) - * - * @param string $surveyUrlId External URL ID for the survey. - * @param array $optParams Optional parameters. - * @return Google_Service_Surveys_Survey - */ - public function get($surveyUrlId, $optParams = array()) - { - $params = array('surveyUrlId' => $surveyUrlId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Surveys_Survey"); - } - /** - * Creates a survey. (surveys.insert) - * - * @param Google_Service_Surveys_Survey $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Surveys_Survey - */ - public function insert(Google_Service_Surveys_Survey $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Surveys_Survey"); - } - /** - * Lists the surveys owned by the authenticated user. (surveys.listSurveys) - * - * @param array $optParams Optional parameters. - * - * @opt_param string maxResults - * @opt_param string startIndex - * @opt_param string token - * @return Google_Service_Surveys_SurveysListResponse - */ - public function listSurveys($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Surveys_SurveysListResponse"); - } - /** - * Begins running a survey. (surveys.start) - * - * @param string $resourceId - * @param Google_Service_Surveys_SurveysStartRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Surveys_SurveysStartResponse - */ - public function start($resourceId, Google_Service_Surveys_SurveysStartRequest $postBody, $optParams = array()) - { - $params = array('resourceId' => $resourceId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('start', array($params), "Google_Service_Surveys_SurveysStartResponse"); - } - /** - * Stops a running survey. (surveys.stop) - * - * @param string $resourceId - * @param array $optParams Optional parameters. - * @return Google_Service_Surveys_SurveysStopResponse - */ - public function stop($resourceId, $optParams = array()) - { - $params = array('resourceId' => $resourceId); - $params = array_merge($params, $optParams); - return $this->call('stop', array($params), "Google_Service_Surveys_SurveysStopResponse"); - } - /** - * Updates a survey. Currently the only property that can be updated is the - * owners property. (surveys.update) - * - * @param string $surveyUrlId External URL ID for the survey. - * @param Google_Service_Surveys_Survey $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Surveys_Survey - */ - public function update($surveyUrlId, Google_Service_Surveys_Survey $postBody, $optParams = array()) - { - $params = array('surveyUrlId' => $surveyUrlId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Surveys_Survey"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/ResultsGetRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/ResultsGetRequest.php deleted file mode 100644 index c31b4b24..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/ResultsGetRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -resultMask = $resultMask; - } - /** - * @return Google_Service_Surveys_ResultsMask - */ - public function getResultMask() - { - return $this->resultMask; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/ResultsMask.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/ResultsMask.php deleted file mode 100644 index 03621b9b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/ResultsMask.php +++ /dev/null @@ -1,47 +0,0 @@ -fields = $fields; - } - /** - * @return Google_Service_Surveys_FieldMask - */ - public function getFields() - { - return $this->fields; - } - public function setProjection($projection) - { - $this->projection = $projection; - } - public function getProjection() - { - return $this->projection; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/Survey.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/Survey.php deleted file mode 100644 index 2a341b8d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/Survey.php +++ /dev/null @@ -1,149 +0,0 @@ -audience = $audience; - } - /** - * @return Google_Service_Surveys_SurveyAudience - */ - public function getAudience() - { - return $this->audience; - } - /** - * @param Google_Service_Surveys_SurveyCost - */ - public function setCost(Google_Service_Surveys_SurveyCost $cost) - { - $this->cost = $cost; - } - /** - * @return Google_Service_Surveys_SurveyCost - */ - public function getCost() - { - return $this->cost; - } - public function setCustomerData($customerData) - { - $this->customerData = $customerData; - } - public function getCustomerData() - { - return $this->customerData; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setOwners($owners) - { - $this->owners = $owners; - } - public function getOwners() - { - return $this->owners; - } - /** - * @param Google_Service_Surveys_SurveyQuestion - */ - public function setQuestions($questions) - { - $this->questions = $questions; - } - /** - * @return Google_Service_Surveys_SurveyQuestion - */ - public function getQuestions() - { - return $this->questions; - } - /** - * @param Google_Service_Surveys_SurveyRejection - */ - public function setRejectionReason(Google_Service_Surveys_SurveyRejection $rejectionReason) - { - $this->rejectionReason = $rejectionReason; - } - /** - * @return Google_Service_Surveys_SurveyRejection - */ - public function getRejectionReason() - { - return $this->rejectionReason; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setSurveyUrlId($surveyUrlId) - { - $this->surveyUrlId = $surveyUrlId; - } - public function getSurveyUrlId() - { - return $this->surveyUrlId; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setWantedResponseCount($wantedResponseCount) - { - $this->wantedResponseCount = $wantedResponseCount; - } - public function getWantedResponseCount() - { - return $this->wantedResponseCount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/SurveyAudience.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/SurveyAudience.php deleted file mode 100644 index ec96ab75..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/SurveyAudience.php +++ /dev/null @@ -1,76 +0,0 @@ -ages = $ages; - } - public function getAges() - { - return $this->ages; - } - public function setCountry($country) - { - $this->country = $country; - } - public function getCountry() - { - return $this->country; - } - public function setCountrySubdivision($countrySubdivision) - { - $this->countrySubdivision = $countrySubdivision; - } - public function getCountrySubdivision() - { - return $this->countrySubdivision; - } - public function setGender($gender) - { - $this->gender = $gender; - } - public function getGender() - { - return $this->gender; - } - public function setLanguages($languages) - { - $this->languages = $languages; - } - public function getLanguages() - { - return $this->languages; - } - public function setPopulationSource($populationSource) - { - $this->populationSource = $populationSource; - } - public function getPopulationSource() - { - return $this->populationSource; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/SurveyCost.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/SurveyCost.php deleted file mode 100644 index 425fd901..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/SurveyCost.php +++ /dev/null @@ -1,57 +0,0 @@ -costPerResponseNanos = $costPerResponseNanos; - } - public function getCostPerResponseNanos() - { - return $this->costPerResponseNanos; - } - public function setCurrencyCode($currencyCode) - { - $this->currencyCode = $currencyCode; - } - public function getCurrencyCode() - { - return $this->currencyCode; - } - public function setMaxCostPerResponseNanos($maxCostPerResponseNanos) - { - $this->maxCostPerResponseNanos = $maxCostPerResponseNanos; - } - public function getMaxCostPerResponseNanos() - { - return $this->maxCostPerResponseNanos; - } - public function setNanos($nanos) - { - $this->nanos = $nanos; - } - public function getNanos() - { - return $this->nanos; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/SurveyQuestion.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/SurveyQuestion.php deleted file mode 100644 index d2149e35..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/SurveyQuestion.php +++ /dev/null @@ -1,191 +0,0 @@ -answerOrder = $answerOrder; - } - public function getAnswerOrder() - { - return $this->answerOrder; - } - public function setAnswers($answers) - { - $this->answers = $answers; - } - public function getAnswers() - { - return $this->answers; - } - public function setHasOther($hasOther) - { - $this->hasOther = $hasOther; - } - public function getHasOther() - { - return $this->hasOther; - } - public function setHighValueLabel($highValueLabel) - { - $this->highValueLabel = $highValueLabel; - } - public function getHighValueLabel() - { - return $this->highValueLabel; - } - /** - * @param Google_Service_Surveys_SurveyQuestionImage - */ - public function setImages($images) - { - $this->images = $images; - } - /** - * @return Google_Service_Surveys_SurveyQuestionImage - */ - public function getImages() - { - return $this->images; - } - public function setLastAnswerPositionPinned($lastAnswerPositionPinned) - { - $this->lastAnswerPositionPinned = $lastAnswerPositionPinned; - } - public function getLastAnswerPositionPinned() - { - return $this->lastAnswerPositionPinned; - } - public function setLowValueLabel($lowValueLabel) - { - $this->lowValueLabel = $lowValueLabel; - } - public function getLowValueLabel() - { - return $this->lowValueLabel; - } - public function setMustPickSuggestion($mustPickSuggestion) - { - $this->mustPickSuggestion = $mustPickSuggestion; - } - public function getMustPickSuggestion() - { - return $this->mustPickSuggestion; - } - public function setNumStars($numStars) - { - $this->numStars = $numStars; - } - public function getNumStars() - { - return $this->numStars; - } - public function setOpenTextPlaceholder($openTextPlaceholder) - { - $this->openTextPlaceholder = $openTextPlaceholder; - } - public function getOpenTextPlaceholder() - { - return $this->openTextPlaceholder; - } - public function setOpenTextSuggestions($openTextSuggestions) - { - $this->openTextSuggestions = $openTextSuggestions; - } - public function getOpenTextSuggestions() - { - return $this->openTextSuggestions; - } - public function setQuestion($question) - { - $this->question = $question; - } - public function getQuestion() - { - return $this->question; - } - public function setSentimentText($sentimentText) - { - $this->sentimentText = $sentimentText; - } - public function getSentimentText() - { - return $this->sentimentText; - } - public function setSingleLineResponse($singleLineResponse) - { - $this->singleLineResponse = $singleLineResponse; - } - public function getSingleLineResponse() - { - return $this->singleLineResponse; - } - public function setThresholdAnswers($thresholdAnswers) - { - $this->thresholdAnswers = $thresholdAnswers; - } - public function getThresholdAnswers() - { - return $this->thresholdAnswers; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setUnitOfMeasurementLabel($unitOfMeasurementLabel) - { - $this->unitOfMeasurementLabel = $unitOfMeasurementLabel; - } - public function getUnitOfMeasurementLabel() - { - return $this->unitOfMeasurementLabel; - } - public function setVideoId($videoId) - { - $this->videoId = $videoId; - } - public function getVideoId() - { - return $this->videoId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/SurveyQuestionImage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/SurveyQuestionImage.php deleted file mode 100644 index ef329bfb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/SurveyQuestionImage.php +++ /dev/null @@ -1,48 +0,0 @@ -altText = $altText; - } - public function getAltText() - { - return $this->altText; - } - public function setData($data) - { - $this->data = $data; - } - public function getData() - { - return $this->data; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/SurveyRejection.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/SurveyRejection.php deleted file mode 100644 index 740be385..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/SurveyRejection.php +++ /dev/null @@ -1,39 +0,0 @@ -explanation = $explanation; - } - public function getExplanation() - { - return $this->explanation; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/SurveyResults.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/SurveyResults.php deleted file mode 100644 index 82abceed..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/SurveyResults.php +++ /dev/null @@ -1,39 +0,0 @@ -status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setSurveyUrlId($surveyUrlId) - { - $this->surveyUrlId = $surveyUrlId; - } - public function getSurveyUrlId() - { - return $this->surveyUrlId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/SurveysDeleteResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/SurveysDeleteResponse.php deleted file mode 100644 index 29b4b63f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/SurveysDeleteResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -requestId = $requestId; - } - public function getRequestId() - { - return $this->requestId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/SurveysListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/SurveysListResponse.php deleted file mode 100644 index 93b813bb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/SurveysListResponse.php +++ /dev/null @@ -1,79 +0,0 @@ -pageInfo = $pageInfo; - } - /** - * @return Google_Service_Surveys_PageInfo - */ - public function getPageInfo() - { - return $this->pageInfo; - } - public function setRequestId($requestId) - { - $this->requestId = $requestId; - } - public function getRequestId() - { - return $this->requestId; - } - /** - * @param Google_Service_Surveys_Survey - */ - public function setResources($resources) - { - $this->resources = $resources; - } - /** - * @return Google_Service_Surveys_Survey - */ - public function getResources() - { - return $this->resources; - } - /** - * @param Google_Service_Surveys_TokenPagination - */ - public function setTokenPagination(Google_Service_Surveys_TokenPagination $tokenPagination) - { - $this->tokenPagination = $tokenPagination; - } - /** - * @return Google_Service_Surveys_TokenPagination - */ - public function getTokenPagination() - { - return $this->tokenPagination; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/SurveysStartRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/SurveysStartRequest.php deleted file mode 100644 index 8a6ba022..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/SurveysStartRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -maxCostPerResponseNanos = $maxCostPerResponseNanos; - } - public function getMaxCostPerResponseNanos() - { - return $this->maxCostPerResponseNanos; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/SurveysStartResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/SurveysStartResponse.php deleted file mode 100644 index fb568f7d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/SurveysStartResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -requestId = $requestId; - } - public function getRequestId() - { - return $this->requestId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/SurveysStopResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/SurveysStopResponse.php deleted file mode 100644 index bb7f23c5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/SurveysStopResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -requestId = $requestId; - } - public function getRequestId() - { - return $this->requestId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/TokenPagination.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/TokenPagination.php deleted file mode 100644 index 634275af..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Surveys/TokenPagination.php +++ /dev/null @@ -1,39 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setPreviousPageToken($previousPageToken) - { - $this->previousPageToken = $previousPageToken; - } - public function getPreviousPageToken() - { - return $this->previousPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU.php deleted file mode 100644 index c6693e06..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU.php +++ /dev/null @@ -1,347 +0,0 @@ - - * TPU API provides customers with access to Google TPU technology.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_TPU extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - - public $projects_locations; - public $projects_locations_acceleratorTypes; - public $projects_locations_nodes; - public $projects_locations_operations; - public $projects_locations_tensorflowVersions; - - /** - * Constructs the internal representation of the TPU service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://tpu.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'tpu'; - - $this->projects_locations = new Google_Service_TPU_Resource_ProjectsLocations( - $this, - $this->serviceName, - 'locations', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+name}/locations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_locations_acceleratorTypes = new Google_Service_TPU_Resource_ProjectsLocationsAcceleratorTypes( - $this, - $this->serviceName, - 'acceleratorTypes', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/acceleratorTypes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->projects_locations_nodes = new Google_Service_TPU_Resource_ProjectsLocationsNodes( - $this, - $this->serviceName, - 'nodes', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/nodes', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'nodeId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/nodes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'reimage' => array( - 'path' => 'v1/{+name}:reimage', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'start' => array( - 'path' => 'v1/{+name}:start', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'stop' => array( - 'path' => 'v1/{+name}:stop', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_locations_operations = new Google_Service_TPU_Resource_ProjectsLocationsOperations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'cancel' => array( - 'path' => 'v1/{+name}:cancel', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+name}/operations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_locations_tensorflowVersions = new Google_Service_TPU_Resource_ProjectsLocationsTensorflowVersions( - $this, - $this->serviceName, - 'tensorflowVersions', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/tensorflowVersions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/AcceleratorType.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/AcceleratorType.php deleted file mode 100644 index 4c73cf21..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/AcceleratorType.php +++ /dev/null @@ -1,39 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/ListAcceleratorTypesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/ListAcceleratorTypesResponse.php deleted file mode 100644 index 6bf18a2a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/ListAcceleratorTypesResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -acceleratorTypes = $acceleratorTypes; - } - /** - * @return Google_Service_TPU_AcceleratorType - */ - public function getAcceleratorTypes() - { - return $this->acceleratorTypes; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setUnreachable($unreachable) - { - $this->unreachable = $unreachable; - } - public function getUnreachable() - { - return $this->unreachable; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/ListLocationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/ListLocationsResponse.php deleted file mode 100644 index 56756625..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/ListLocationsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -locations = $locations; - } - /** - * @return Google_Service_TPU_Location - */ - public function getLocations() - { - return $this->locations; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/ListNodesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/ListNodesResponse.php deleted file mode 100644 index 9a829bdb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/ListNodesResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_TPU_Node - */ - public function setNodes($nodes) - { - $this->nodes = $nodes; - } - /** - * @return Google_Service_TPU_Node - */ - public function getNodes() - { - return $this->nodes; - } - public function setUnreachable($unreachable) - { - $this->unreachable = $unreachable; - } - public function getUnreachable() - { - return $this->unreachable; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/ListOperationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/ListOperationsResponse.php deleted file mode 100644 index 17bc6089..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/ListOperationsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_TPU_Operation - */ - public function setOperations($operations) - { - $this->operations = $operations; - } - /** - * @return Google_Service_TPU_Operation - */ - public function getOperations() - { - return $this->operations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/ListTensorFlowVersionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/ListTensorFlowVersionsResponse.php deleted file mode 100644 index 02e8145f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/ListTensorFlowVersionsResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_TPU_TensorFlowVersion - */ - public function setTensorflowVersions($tensorflowVersions) - { - $this->tensorflowVersions = $tensorflowVersions; - } - /** - * @return Google_Service_TPU_TensorFlowVersion - */ - public function getTensorflowVersions() - { - return $this->tensorflowVersions; - } - public function setUnreachable($unreachable) - { - $this->unreachable = $unreachable; - } - public function getUnreachable() - { - return $this->unreachable; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/Location.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/Location.php deleted file mode 100644 index e10be4b1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/Location.php +++ /dev/null @@ -1,66 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setLocationId($locationId) - { - $this->locationId = $locationId; - } - public function getLocationId() - { - return $this->locationId; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/NetworkEndpoint.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/NetworkEndpoint.php deleted file mode 100644 index 2a905426..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/NetworkEndpoint.php +++ /dev/null @@ -1,39 +0,0 @@ -ipAddress = $ipAddress; - } - public function getIpAddress() - { - return $this->ipAddress; - } - public function setPort($port) - { - $this->port = $port; - } - public function getPort() - { - return $this->port; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/Node.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/Node.php deleted file mode 100644 index 74818131..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/Node.php +++ /dev/null @@ -1,180 +0,0 @@ -acceleratorType = $acceleratorType; - } - public function getAcceleratorType() - { - return $this->acceleratorType; - } - public function setCidrBlock($cidrBlock) - { - $this->cidrBlock = $cidrBlock; - } - public function getCidrBlock() - { - return $this->cidrBlock; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setHealth($health) - { - $this->health = $health; - } - public function getHealth() - { - return $this->health; - } - public function setHealthDescription($healthDescription) - { - $this->healthDescription = $healthDescription; - } - public function getHealthDescription() - { - return $this->healthDescription; - } - public function setIpAddress($ipAddress) - { - $this->ipAddress = $ipAddress; - } - public function getIpAddress() - { - return $this->ipAddress; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNetwork($network) - { - $this->network = $network; - } - public function getNetwork() - { - return $this->network; - } - /** - * @param Google_Service_TPU_NetworkEndpoint - */ - public function setNetworkEndpoints($networkEndpoints) - { - $this->networkEndpoints = $networkEndpoints; - } - /** - * @return Google_Service_TPU_NetworkEndpoint - */ - public function getNetworkEndpoints() - { - return $this->networkEndpoints; - } - public function setPort($port) - { - $this->port = $port; - } - public function getPort() - { - return $this->port; - } - /** - * @param Google_Service_TPU_SchedulingConfig - */ - public function setSchedulingConfig(Google_Service_TPU_SchedulingConfig $schedulingConfig) - { - $this->schedulingConfig = $schedulingConfig; - } - /** - * @return Google_Service_TPU_SchedulingConfig - */ - public function getSchedulingConfig() - { - return $this->schedulingConfig; - } - public function setServiceAccount($serviceAccount) - { - $this->serviceAccount = $serviceAccount; - } - public function getServiceAccount() - { - return $this->serviceAccount; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setTensorflowVersion($tensorflowVersion) - { - $this->tensorflowVersion = $tensorflowVersion; - } - public function getTensorflowVersion() - { - return $this->tensorflowVersion; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/Operation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/Operation.php deleted file mode 100644 index 56e777cb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/Operation.php +++ /dev/null @@ -1,73 +0,0 @@ -done = $done; - } - public function getDone() - { - return $this->done; - } - /** - * @param Google_Service_TPU_Status - */ - public function setError(Google_Service_TPU_Status $error) - { - $this->error = $error; - } - /** - * @return Google_Service_TPU_Status - */ - public function getError() - { - return $this->error; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/OperationMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/OperationMetadata.php deleted file mode 100644 index 521b86e2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/OperationMetadata.php +++ /dev/null @@ -1,84 +0,0 @@ -apiVersion = $apiVersion; - } - public function getApiVersion() - { - return $this->apiVersion; - } - public function setCancelRequested($cancelRequested) - { - $this->cancelRequested = $cancelRequested; - } - public function getCancelRequested() - { - return $this->cancelRequested; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setStatusDetail($statusDetail) - { - $this->statusDetail = $statusDetail; - } - public function getStatusDetail() - { - return $this->statusDetail; - } - public function setTarget($target) - { - $this->target = $target; - } - public function getTarget() - { - return $this->target; - } - public function setVerb($verb) - { - $this->verb = $verb; - } - public function getVerb() - { - return $this->verb; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/ReimageNodeRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/ReimageNodeRequest.php deleted file mode 100644 index d3ef2cce..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/ReimageNodeRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -tensorflowVersion = $tensorflowVersion; - } - public function getTensorflowVersion() - { - return $this->tensorflowVersion; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/Resource/Projects.php deleted file mode 100644 index 63eb71a8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/Resource/Projects.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $tpuService = new Google_Service_TPU(...); - * $projects = $tpuService->projects; - * - */ -class Google_Service_TPU_Resource_Projects extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/Resource/ProjectsLocations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/Resource/ProjectsLocations.php deleted file mode 100644 index da938d24..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/Resource/ProjectsLocations.php +++ /dev/null @@ -1,60 +0,0 @@ - - * $tpuService = new Google_Service_TPU(...); - * $locations = $tpuService->locations; - * - */ -class Google_Service_TPU_Resource_ProjectsLocations extends Google_Service_Resource -{ - /** - * Gets information about a location. (locations.get) - * - * @param string $name Resource name for the location. - * @param array $optParams Optional parameters. - * @return Google_Service_TPU_Location - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_TPU_Location"); - } - /** - * Lists information about the supported locations for this service. - * (locations.listProjectsLocations) - * - * @param string $name The resource that owns the locations collection, if - * applicable. - * @param array $optParams Optional parameters. - * - * @opt_param int pageSize The standard list page size. - * @opt_param string filter The standard list filter. - * @opt_param string pageToken The standard list page token. - * @return Google_Service_TPU_ListLocationsResponse - */ - public function listProjectsLocations($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_TPU_ListLocationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/Resource/ProjectsLocationsAcceleratorTypes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/Resource/ProjectsLocationsAcceleratorTypes.php deleted file mode 100644 index d875d7e7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/Resource/ProjectsLocationsAcceleratorTypes.php +++ /dev/null @@ -1,61 +0,0 @@ - - * $tpuService = new Google_Service_TPU(...); - * $acceleratorTypes = $tpuService->acceleratorTypes; - * - */ -class Google_Service_TPU_Resource_ProjectsLocationsAcceleratorTypes extends Google_Service_Resource -{ - /** - * Gets AcceleratorType. (acceleratorTypes.get) - * - * @param string $name The resource name. - * @param array $optParams Optional parameters. - * @return Google_Service_TPU_AcceleratorType - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_TPU_AcceleratorType"); - } - /** - * Lists accelerator types supported by this API. - * (acceleratorTypes.listProjectsLocationsAcceleratorTypes) - * - * @param string $parent The parent resource name. - * @param array $optParams Optional parameters. - * - * @opt_param string filter List filter. - * @opt_param string pageToken The next_page_token value returned from a - * previous List request, if any. - * @opt_param string orderBy Sort results. - * @opt_param int pageSize The maximum number of items to return. - * @return Google_Service_TPU_ListAcceleratorTypesResponse - */ - public function listProjectsLocationsAcceleratorTypes($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_TPU_ListAcceleratorTypesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/Resource/ProjectsLocationsNodes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/Resource/ProjectsLocationsNodes.php deleted file mode 100644 index 2b166372..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/Resource/ProjectsLocationsNodes.php +++ /dev/null @@ -1,129 +0,0 @@ - - * $tpuService = new Google_Service_TPU(...); - * $nodes = $tpuService->nodes; - * - */ -class Google_Service_TPU_Resource_ProjectsLocationsNodes extends Google_Service_Resource -{ - /** - * Creates a node. (nodes.create) - * - * @param string $parent The parent resource name. - * @param Google_Service_TPU_Node $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string nodeId The unqualified resource name. - * @return Google_Service_TPU_Operation - */ - public function create($parent, Google_Service_TPU_Node $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_TPU_Operation"); - } - /** - * Deletes a node. (nodes.delete) - * - * @param string $name The resource name. - * @param array $optParams Optional parameters. - * @return Google_Service_TPU_Operation - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_TPU_Operation"); - } - /** - * Gets the details of a node. (nodes.get) - * - * @param string $name The resource name. - * @param array $optParams Optional parameters. - * @return Google_Service_TPU_Node - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_TPU_Node"); - } - /** - * Lists nodes. (nodes.listProjectsLocationsNodes) - * - * @param string $parent The parent resource name. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The next_page_token value returned from a - * previous List request, if any. - * @opt_param int pageSize The maximum number of items to return. - * @return Google_Service_TPU_ListNodesResponse - */ - public function listProjectsLocationsNodes($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_TPU_ListNodesResponse"); - } - /** - * Reimages a node's OS. (nodes.reimage) - * - * @param string $name The resource name. - * @param Google_Service_TPU_ReimageNodeRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_TPU_Operation - */ - public function reimage($name, Google_Service_TPU_ReimageNodeRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('reimage', array($params), "Google_Service_TPU_Operation"); - } - /** - * Starts a node. (nodes.start) - * - * @param string $name The resource name. - * @param Google_Service_TPU_StartNodeRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_TPU_Operation - */ - public function start($name, Google_Service_TPU_StartNodeRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('start', array($params), "Google_Service_TPU_Operation"); - } - /** - * Stops a node. (nodes.stop) - * - * @param string $name The resource name. - * @param Google_Service_TPU_StopNodeRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_TPU_Operation - */ - public function stop($name, Google_Service_TPU_StopNodeRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('stop', array($params), "Google_Service_TPU_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/Resource/ProjectsLocationsOperations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/Resource/ProjectsLocationsOperations.php deleted file mode 100644 index b3498b08..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/Resource/ProjectsLocationsOperations.php +++ /dev/null @@ -1,107 +0,0 @@ - - * $tpuService = new Google_Service_TPU(...); - * $operations = $tpuService->operations; - * - */ -class Google_Service_TPU_Resource_ProjectsLocationsOperations extends Google_Service_Resource -{ - /** - * Starts asynchronous cancellation on a long-running operation. The server - * makes a best effort to cancel the operation, but success is not guaranteed. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or - * other methods to check whether the cancellation succeeded or whether the - * operation completed despite cancellation. On successful cancellation, the - * operation is not deleted; instead, it becomes an operation with an - * Operation.error value with a google.rpc.Status.code of 1, corresponding to - * `Code.CANCELLED`. (operations.cancel) - * - * @param string $name The name of the operation resource to be cancelled. - * @param array $optParams Optional parameters. - * @return Google_Service_TPU_TpuEmpty - */ - public function cancel($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('cancel', array($params), "Google_Service_TPU_TpuEmpty"); - } - /** - * Deletes a long-running operation. This method indicates that the client is no - * longer interested in the operation result. It does not cancel the operation. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. (operations.delete) - * - * @param string $name The name of the operation resource to be deleted. - * @param array $optParams Optional parameters. - * @return Google_Service_TPU_TpuEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_TPU_TpuEmpty"); - } - /** - * Gets the latest state of a long-running operation. Clients can use this - * method to poll the operation result at intervals as recommended by the API - * service. (operations.get) - * - * @param string $name The name of the operation resource. - * @param array $optParams Optional parameters. - * @return Google_Service_TPU_Operation - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_TPU_Operation"); - } - /** - * Lists operations that match the specified filter in the request. If the - * server doesn't support this method, it returns `UNIMPLEMENTED`. - * - * NOTE: the `name` binding allows API services to override the binding to use - * different resource name schemes, such as `users/operations`. To override the - * binding, API services can add a binding such as - * `"/v1/{name=users}/operations"` to their service configuration. For backwards - * compatibility, the default name includes the operations collection id, - * however overriding users must ensure the name binding is the parent resource, - * without the operations collection id. - * (operations.listProjectsLocationsOperations) - * - * @param string $name The name of the operation's parent resource. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The standard list page token. - * @opt_param int pageSize The standard list page size. - * @opt_param string filter The standard list filter. - * @return Google_Service_TPU_ListOperationsResponse - */ - public function listProjectsLocationsOperations($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_TPU_ListOperationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/Resource/ProjectsLocationsTensorflowVersions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/Resource/ProjectsLocationsTensorflowVersions.php deleted file mode 100644 index 333afdb6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/Resource/ProjectsLocationsTensorflowVersions.php +++ /dev/null @@ -1,61 +0,0 @@ - - * $tpuService = new Google_Service_TPU(...); - * $tensorflowVersions = $tpuService->tensorflowVersions; - * - */ -class Google_Service_TPU_Resource_ProjectsLocationsTensorflowVersions extends Google_Service_Resource -{ - /** - * Gets TensorFlow Version. (tensorflowVersions.get) - * - * @param string $name The resource name. - * @param array $optParams Optional parameters. - * @return Google_Service_TPU_TensorFlowVersion - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_TPU_TensorFlowVersion"); - } - /** - * List TensorFlow versions supported by this API. - * (tensorflowVersions.listProjectsLocationsTensorflowVersions) - * - * @param string $parent The parent resource name. - * @param array $optParams Optional parameters. - * - * @opt_param string filter List filter. - * @opt_param string pageToken The next_page_token value returned from a - * previous List request, if any. - * @opt_param string orderBy Sort results. - * @opt_param int pageSize The maximum number of items to return. - * @return Google_Service_TPU_ListTensorFlowVersionsResponse - */ - public function listProjectsLocationsTensorflowVersions($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_TPU_ListTensorFlowVersionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/SchedulingConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/SchedulingConfig.php deleted file mode 100644 index c0f59a0d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/SchedulingConfig.php +++ /dev/null @@ -1,39 +0,0 @@ -preemptible = $preemptible; - } - public function getPreemptible() - { - return $this->preemptible; - } - public function setReserved($reserved) - { - $this->reserved = $reserved; - } - public function getReserved() - { - return $this->reserved; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/StartNodeRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/StartNodeRequest.php deleted file mode 100644 index 1138f0df..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/StartNodeRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/StopNodeRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/StopNodeRequest.php deleted file mode 100644 index 526a5f98..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/StopNodeRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/TpuEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/TpuEmpty.php deleted file mode 100644 index fe2187a1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TPU/TpuEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ - - * This API allows clients to access and modify container and tag - * configuration.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_TagManager extends Google_Service -{ - /** Delete your Google Tag Manager containers. */ - const TAGMANAGER_DELETE_CONTAINERS = - "https://www.googleapis.com/auth/tagmanager.delete.containers"; - /** Manage your Google Tag Manager container and its subcomponents, excluding versioning and publishing. */ - const TAGMANAGER_EDIT_CONTAINERS = - "https://www.googleapis.com/auth/tagmanager.edit.containers"; - /** Manage your Google Tag Manager container versions. */ - const TAGMANAGER_EDIT_CONTAINERVERSIONS = - "https://www.googleapis.com/auth/tagmanager.edit.containerversions"; - /** View and manage your Google Tag Manager accounts. */ - const TAGMANAGER_MANAGE_ACCOUNTS = - "https://www.googleapis.com/auth/tagmanager.manage.accounts"; - /** Manage user permissions of your Google Tag Manager account and container. */ - const TAGMANAGER_MANAGE_USERS = - "https://www.googleapis.com/auth/tagmanager.manage.users"; - /** Publish your Google Tag Manager container versions. */ - const TAGMANAGER_PUBLISH = - "https://www.googleapis.com/auth/tagmanager.publish"; - /** View your Google Tag Manager container and its subcomponents. */ - const TAGMANAGER_READONLY = - "https://www.googleapis.com/auth/tagmanager.readonly"; - - public $accounts; - public $accounts_containers; - public $accounts_containers_environments; - public $accounts_containers_version_headers; - public $accounts_containers_versions; - public $accounts_containers_workspaces; - public $accounts_containers_workspaces_built_in_variables; - public $accounts_containers_workspaces_folders; - public $accounts_containers_workspaces_tags; - public $accounts_containers_workspaces_templates; - public $accounts_containers_workspaces_triggers; - public $accounts_containers_workspaces_variables; - public $accounts_containers_workspaces_zones; - public $accounts_user_permissions; - - /** - * Constructs the internal representation of the TagManager service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://www.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v2'; - $this->serviceName = 'tagmanager'; - - $this->accounts = new Google_Service_TagManager_Resource_Accounts( - $this, - $this->serviceName, - 'accounts', - array( - 'methods' => array( - 'get' => array( - 'path' => 'tagmanager/v2/{+path}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'path' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'tagmanager/v2/accounts', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'tagmanager/v2/{+path}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'path' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'fingerprint' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->accounts_containers = new Google_Service_TagManager_Resource_AccountsContainers( - $this, - $this->serviceName, - 'containers', - array( - 'methods' => array( - 'create' => array( - 'path' => 'tagmanager/v2/{+parent}/containers', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'tagmanager/v2/{+path}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'path' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'tagmanager/v2/{+path}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'path' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'tagmanager/v2/{+parent}/containers', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'tagmanager/v2/{+path}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'path' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'fingerprint' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->accounts_containers_environments = new Google_Service_TagManager_Resource_AccountsContainersEnvironments( - $this, - $this->serviceName, - 'environments', - array( - 'methods' => array( - 'create' => array( - 'path' => 'tagmanager/v2/{+parent}/environments', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'tagmanager/v2/{+path}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'path' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'tagmanager/v2/{+path}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'path' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'tagmanager/v2/{+parent}/environments', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'reauthorize' => array( - 'path' => 'tagmanager/v2/{+path}:reauthorize', - 'httpMethod' => 'POST', - 'parameters' => array( - 'path' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'tagmanager/v2/{+path}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'path' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'fingerprint' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->accounts_containers_version_headers = new Google_Service_TagManager_Resource_AccountsContainersVersionHeaders( - $this, - $this->serviceName, - 'version_headers', - array( - 'methods' => array( - 'latest' => array( - 'path' => 'tagmanager/v2/{+parent}/version_headers:latest', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'tagmanager/v2/{+parent}/version_headers', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'includeDeleted' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ), - ) - ) - ); - $this->accounts_containers_versions = new Google_Service_TagManager_Resource_AccountsContainersVersions( - $this, - $this->serviceName, - 'versions', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'tagmanager/v2/{+path}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'path' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'tagmanager/v2/{+path}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'path' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'containerVersionId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'live' => array( - 'path' => 'tagmanager/v2/{+parent}/versions:live', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'publish' => array( - 'path' => 'tagmanager/v2/{+path}:publish', - 'httpMethod' => 'POST', - 'parameters' => array( - 'path' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'fingerprint' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'set_latest' => array( - 'path' => 'tagmanager/v2/{+path}:set_latest', - 'httpMethod' => 'POST', - 'parameters' => array( - 'path' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'undelete' => array( - 'path' => 'tagmanager/v2/{+path}:undelete', - 'httpMethod' => 'POST', - 'parameters' => array( - 'path' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'tagmanager/v2/{+path}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'path' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'fingerprint' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->accounts_containers_workspaces = new Google_Service_TagManager_Resource_AccountsContainersWorkspaces( - $this, - $this->serviceName, - 'workspaces', - array( - 'methods' => array( - 'create' => array( - 'path' => 'tagmanager/v2/{+parent}/workspaces', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'create_version' => array( - 'path' => 'tagmanager/v2/{+path}:create_version', - 'httpMethod' => 'POST', - 'parameters' => array( - 'path' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'tagmanager/v2/{+path}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'path' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'tagmanager/v2/{+path}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'path' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getStatus' => array( - 'path' => 'tagmanager/v2/{+path}/status', - 'httpMethod' => 'GET', - 'parameters' => array( - 'path' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'tagmanager/v2/{+parent}/workspaces', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'quick_preview' => array( - 'path' => 'tagmanager/v2/{+path}:quick_preview', - 'httpMethod' => 'POST', - 'parameters' => array( - 'path' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'resolve_conflict' => array( - 'path' => 'tagmanager/v2/{+path}:resolve_conflict', - 'httpMethod' => 'POST', - 'parameters' => array( - 'path' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'fingerprint' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'sync' => array( - 'path' => 'tagmanager/v2/{+path}:sync', - 'httpMethod' => 'POST', - 'parameters' => array( - 'path' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'tagmanager/v2/{+path}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'path' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'fingerprint' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->accounts_containers_workspaces_built_in_variables = new Google_Service_TagManager_Resource_AccountsContainersWorkspacesBuiltInVariables( - $this, - $this->serviceName, - 'built_in_variables', - array( - 'methods' => array( - 'create' => array( - 'path' => 'tagmanager/v2/{+parent}/built_in_variables', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'type' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ),'delete' => array( - 'path' => 'tagmanager/v2/{+path}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'path' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'type' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ),'list' => array( - 'path' => 'tagmanager/v2/{+parent}/built_in_variables', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'revert' => array( - 'path' => 'tagmanager/v2/{+path}/built_in_variables:revert', - 'httpMethod' => 'POST', - 'parameters' => array( - 'path' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'type' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->accounts_containers_workspaces_folders = new Google_Service_TagManager_Resource_AccountsContainersWorkspacesFolders( - $this, - $this->serviceName, - 'folders', - array( - 'methods' => array( - 'create' => array( - 'path' => 'tagmanager/v2/{+parent}/folders', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'tagmanager/v2/{+path}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'path' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'entities' => array( - 'path' => 'tagmanager/v2/{+path}:entities', - 'httpMethod' => 'POST', - 'parameters' => array( - 'path' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'tagmanager/v2/{+path}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'path' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'tagmanager/v2/{+parent}/folders', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'move_entities_to_folder' => array( - 'path' => 'tagmanager/v2/{+path}:move_entities_to_folder', - 'httpMethod' => 'POST', - 'parameters' => array( - 'path' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'variableId' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'tagId' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - 'triggerId' => array( - 'location' => 'query', - 'type' => 'string', - 'repeated' => true, - ), - ), - ),'revert' => array( - 'path' => 'tagmanager/v2/{+path}:revert', - 'httpMethod' => 'POST', - 'parameters' => array( - 'path' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'fingerprint' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'tagmanager/v2/{+path}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'path' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'fingerprint' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->accounts_containers_workspaces_tags = new Google_Service_TagManager_Resource_AccountsContainersWorkspacesTags( - $this, - $this->serviceName, - 'tags', - array( - 'methods' => array( - 'create' => array( - 'path' => 'tagmanager/v2/{+parent}/tags', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'tagmanager/v2/{+path}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'path' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'tagmanager/v2/{+path}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'path' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'tagmanager/v2/{+parent}/tags', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'revert' => array( - 'path' => 'tagmanager/v2/{+path}:revert', - 'httpMethod' => 'POST', - 'parameters' => array( - 'path' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'fingerprint' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'tagmanager/v2/{+path}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'path' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'fingerprint' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->accounts_containers_workspaces_templates = new Google_Service_TagManager_Resource_AccountsContainersWorkspacesTemplates( - $this, - $this->serviceName, - 'templates', - array( - 'methods' => array( - 'create' => array( - 'path' => 'tagmanager/v2/{+parent}/templates', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'tagmanager/v2/{+path}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'path' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'tagmanager/v2/{+path}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'path' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'tagmanager/v2/{+parent}/templates', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'revert' => array( - 'path' => 'tagmanager/v2/{+path}:revert', - 'httpMethod' => 'POST', - 'parameters' => array( - 'path' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'fingerprint' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'tagmanager/v2/{+path}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'path' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'fingerprint' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->accounts_containers_workspaces_triggers = new Google_Service_TagManager_Resource_AccountsContainersWorkspacesTriggers( - $this, - $this->serviceName, - 'triggers', - array( - 'methods' => array( - 'create' => array( - 'path' => 'tagmanager/v2/{+parent}/triggers', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'tagmanager/v2/{+path}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'path' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'tagmanager/v2/{+path}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'path' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'tagmanager/v2/{+parent}/triggers', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'revert' => array( - 'path' => 'tagmanager/v2/{+path}:revert', - 'httpMethod' => 'POST', - 'parameters' => array( - 'path' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'fingerprint' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'tagmanager/v2/{+path}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'path' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'fingerprint' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->accounts_containers_workspaces_variables = new Google_Service_TagManager_Resource_AccountsContainersWorkspacesVariables( - $this, - $this->serviceName, - 'variables', - array( - 'methods' => array( - 'create' => array( - 'path' => 'tagmanager/v2/{+parent}/variables', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'tagmanager/v2/{+path}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'path' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'tagmanager/v2/{+path}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'path' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'tagmanager/v2/{+parent}/variables', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'revert' => array( - 'path' => 'tagmanager/v2/{+path}:revert', - 'httpMethod' => 'POST', - 'parameters' => array( - 'path' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'fingerprint' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'tagmanager/v2/{+path}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'path' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'fingerprint' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->accounts_containers_workspaces_zones = new Google_Service_TagManager_Resource_AccountsContainersWorkspacesZones( - $this, - $this->serviceName, - 'zones', - array( - 'methods' => array( - 'create' => array( - 'path' => 'tagmanager/v2/{+parent}/zones', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'tagmanager/v2/{+path}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'path' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'tagmanager/v2/{+path}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'path' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'tagmanager/v2/{+parent}/zones', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'revert' => array( - 'path' => 'tagmanager/v2/{+path}:revert', - 'httpMethod' => 'POST', - 'parameters' => array( - 'path' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'fingerprint' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'tagmanager/v2/{+path}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'path' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'fingerprint' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->accounts_user_permissions = new Google_Service_TagManager_Resource_AccountsUserPermissions( - $this, - $this->serviceName, - 'user_permissions', - array( - 'methods' => array( - 'create' => array( - 'path' => 'tagmanager/v2/{+parent}/user_permissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'tagmanager/v2/{+path}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'path' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'tagmanager/v2/{+path}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'path' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'tagmanager/v2/{+parent}/user_permissions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'tagmanager/v2/{+path}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'path' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Account.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Account.php deleted file mode 100644 index 2d76746c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Account.php +++ /dev/null @@ -1,75 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setFingerprint($fingerprint) - { - $this->fingerprint = $fingerprint; - } - public function getFingerprint() - { - return $this->fingerprint; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPath($path) - { - $this->path = $path; - } - public function getPath() - { - return $this->path; - } - public function setShareData($shareData) - { - $this->shareData = $shareData; - } - public function getShareData() - { - return $this->shareData; - } - public function setTagManagerUrl($tagManagerUrl) - { - $this->tagManagerUrl = $tagManagerUrl; - } - public function getTagManagerUrl() - { - return $this->tagManagerUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/AccountAccess.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/AccountAccess.php deleted file mode 100644 index 1f29b9b2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/AccountAccess.php +++ /dev/null @@ -1,30 +0,0 @@ -permission = $permission; - } - public function getPermission() - { - return $this->permission; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/BuiltInVariable.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/BuiltInVariable.php deleted file mode 100644 index 98008c3f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/BuiltInVariable.php +++ /dev/null @@ -1,75 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setContainerId($containerId) - { - $this->containerId = $containerId; - } - public function getContainerId() - { - return $this->containerId; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPath($path) - { - $this->path = $path; - } - public function getPath() - { - return $this->path; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setWorkspaceId($workspaceId) - { - $this->workspaceId = $workspaceId; - } - public function getWorkspaceId() - { - return $this->workspaceId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Client.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Client.php deleted file mode 100644 index 4840df13..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Client.php +++ /dev/null @@ -1,128 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setClientId($clientId) - { - $this->clientId = $clientId; - } - public function getClientId() - { - return $this->clientId; - } - public function setContainerId($containerId) - { - $this->containerId = $containerId; - } - public function getContainerId() - { - return $this->containerId; - } - public function setFingerprint($fingerprint) - { - $this->fingerprint = $fingerprint; - } - public function getFingerprint() - { - return $this->fingerprint; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_TagManager_Parameter - */ - public function setParameter($parameter) - { - $this->parameter = $parameter; - } - /** - * @return Google_Service_TagManager_Parameter - */ - public function getParameter() - { - return $this->parameter; - } - public function setPath($path) - { - $this->path = $path; - } - public function getPath() - { - return $this->path; - } - public function setPriority($priority) - { - $this->priority = $priority; - } - public function getPriority() - { - return $this->priority; - } - public function setTagManagerUrl($tagManagerUrl) - { - $this->tagManagerUrl = $tagManagerUrl; - } - public function getTagManagerUrl() - { - return $this->tagManagerUrl; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setWorkspaceId($workspaceId) - { - $this->workspaceId = $workspaceId; - } - public function getWorkspaceId() - { - return $this->workspaceId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Condition.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Condition.php deleted file mode 100644 index 9b84bdd7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Condition.php +++ /dev/null @@ -1,47 +0,0 @@ -parameter = $parameter; - } - /** - * @return Google_Service_TagManager_Parameter - */ - public function getParameter() - { - return $this->parameter; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Container.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Container.php deleted file mode 100644 index f19797a1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Container.php +++ /dev/null @@ -1,112 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setContainerId($containerId) - { - $this->containerId = $containerId; - } - public function getContainerId() - { - return $this->containerId; - } - public function setDomainName($domainName) - { - $this->domainName = $domainName; - } - public function getDomainName() - { - return $this->domainName; - } - public function setFingerprint($fingerprint) - { - $this->fingerprint = $fingerprint; - } - public function getFingerprint() - { - return $this->fingerprint; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNotes($notes) - { - $this->notes = $notes; - } - public function getNotes() - { - return $this->notes; - } - public function setPath($path) - { - $this->path = $path; - } - public function getPath() - { - return $this->path; - } - public function setPublicId($publicId) - { - $this->publicId = $publicId; - } - public function getPublicId() - { - return $this->publicId; - } - public function setTagManagerUrl($tagManagerUrl) - { - $this->tagManagerUrl = $tagManagerUrl; - } - public function getTagManagerUrl() - { - return $this->tagManagerUrl; - } - public function setUsageContext($usageContext) - { - $this->usageContext = $usageContext; - } - public function getUsageContext() - { - return $this->usageContext; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ContainerAccess.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ContainerAccess.php deleted file mode 100644 index bafae8eb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ContainerAccess.php +++ /dev/null @@ -1,39 +0,0 @@ -containerId = $containerId; - } - public function getContainerId() - { - return $this->containerId; - } - public function setPermission($permission) - { - $this->permission = $permission; - } - public function getPermission() - { - return $this->permission; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ContainerVersion.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ContainerVersion.php deleted file mode 100644 index 0384bd1e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ContainerVersion.php +++ /dev/null @@ -1,247 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - /** - * @param Google_Service_TagManager_BuiltInVariable - */ - public function setBuiltInVariable($builtInVariable) - { - $this->builtInVariable = $builtInVariable; - } - /** - * @return Google_Service_TagManager_BuiltInVariable - */ - public function getBuiltInVariable() - { - return $this->builtInVariable; - } - /** - * @param Google_Service_TagManager_Client - */ - public function setClient($client) - { - $this->client = $client; - } - /** - * @return Google_Service_TagManager_Client - */ - public function getClient() - { - return $this->client; - } - /** - * @param Google_Service_TagManager_Container - */ - public function setContainer(Google_Service_TagManager_Container $container) - { - $this->container = $container; - } - /** - * @return Google_Service_TagManager_Container - */ - public function getContainer() - { - return $this->container; - } - public function setContainerId($containerId) - { - $this->containerId = $containerId; - } - public function getContainerId() - { - return $this->containerId; - } - public function setContainerVersionId($containerVersionId) - { - $this->containerVersionId = $containerVersionId; - } - public function getContainerVersionId() - { - return $this->containerVersionId; - } - /** - * @param Google_Service_TagManager_CustomTemplate - */ - public function setCustomTemplate($customTemplate) - { - $this->customTemplate = $customTemplate; - } - /** - * @return Google_Service_TagManager_CustomTemplate - */ - public function getCustomTemplate() - { - return $this->customTemplate; - } - public function setDeleted($deleted) - { - $this->deleted = $deleted; - } - public function getDeleted() - { - return $this->deleted; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setFingerprint($fingerprint) - { - $this->fingerprint = $fingerprint; - } - public function getFingerprint() - { - return $this->fingerprint; - } - /** - * @param Google_Service_TagManager_Folder - */ - public function setFolder($folder) - { - $this->folder = $folder; - } - /** - * @return Google_Service_TagManager_Folder - */ - public function getFolder() - { - return $this->folder; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPath($path) - { - $this->path = $path; - } - public function getPath() - { - return $this->path; - } - /** - * @param Google_Service_TagManager_Tag - */ - public function setTag($tag) - { - $this->tag = $tag; - } - /** - * @return Google_Service_TagManager_Tag - */ - public function getTag() - { - return $this->tag; - } - public function setTagManagerUrl($tagManagerUrl) - { - $this->tagManagerUrl = $tagManagerUrl; - } - public function getTagManagerUrl() - { - return $this->tagManagerUrl; - } - /** - * @param Google_Service_TagManager_Trigger - */ - public function setTrigger($trigger) - { - $this->trigger = $trigger; - } - /** - * @return Google_Service_TagManager_Trigger - */ - public function getTrigger() - { - return $this->trigger; - } - /** - * @param Google_Service_TagManager_Variable - */ - public function setVariable($variable) - { - $this->variable = $variable; - } - /** - * @return Google_Service_TagManager_Variable - */ - public function getVariable() - { - return $this->variable; - } - /** - * @param Google_Service_TagManager_Zone - */ - public function setZone($zone) - { - $this->zone = $zone; - } - /** - * @return Google_Service_TagManager_Zone - */ - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ContainerVersionHeader.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ContainerVersionHeader.php deleted file mode 100644 index c02d6e08..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ContainerVersionHeader.php +++ /dev/null @@ -1,138 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setContainerId($containerId) - { - $this->containerId = $containerId; - } - public function getContainerId() - { - return $this->containerId; - } - public function setContainerVersionId($containerVersionId) - { - $this->containerVersionId = $containerVersionId; - } - public function getContainerVersionId() - { - return $this->containerVersionId; - } - public function setDeleted($deleted) - { - $this->deleted = $deleted; - } - public function getDeleted() - { - return $this->deleted; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNumCustomTemplates($numCustomTemplates) - { - $this->numCustomTemplates = $numCustomTemplates; - } - public function getNumCustomTemplates() - { - return $this->numCustomTemplates; - } - public function setNumMacros($numMacros) - { - $this->numMacros = $numMacros; - } - public function getNumMacros() - { - return $this->numMacros; - } - public function setNumRules($numRules) - { - $this->numRules = $numRules; - } - public function getNumRules() - { - return $this->numRules; - } - public function setNumTags($numTags) - { - $this->numTags = $numTags; - } - public function getNumTags() - { - return $this->numTags; - } - public function setNumTriggers($numTriggers) - { - $this->numTriggers = $numTriggers; - } - public function getNumTriggers() - { - return $this->numTriggers; - } - public function setNumVariables($numVariables) - { - $this->numVariables = $numVariables; - } - public function getNumVariables() - { - return $this->numVariables; - } - public function setNumZones($numZones) - { - $this->numZones = $numZones; - } - public function getNumZones() - { - return $this->numZones; - } - public function setPath($path) - { - $this->path = $path; - } - public function getPath() - { - return $this->path; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/CreateBuiltInVariableResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/CreateBuiltInVariableResponse.php deleted file mode 100644 index ceb4a55d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/CreateBuiltInVariableResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -builtInVariable = $builtInVariable; - } - /** - * @return Google_Service_TagManager_BuiltInVariable - */ - public function getBuiltInVariable() - { - return $this->builtInVariable; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/CreateContainerVersionRequestVersionOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/CreateContainerVersionRequestVersionOptions.php deleted file mode 100644 index 5e0c8911..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/CreateContainerVersionRequestVersionOptions.php +++ /dev/null @@ -1,39 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setNotes($notes) - { - $this->notes = $notes; - } - public function getNotes() - { - return $this->notes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/CreateContainerVersionResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/CreateContainerVersionResponse.php deleted file mode 100644 index 8bb286da..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/CreateContainerVersionResponse.php +++ /dev/null @@ -1,71 +0,0 @@ -compilerError = $compilerError; - } - public function getCompilerError() - { - return $this->compilerError; - } - /** - * @param Google_Service_TagManager_ContainerVersion - */ - public function setContainerVersion(Google_Service_TagManager_ContainerVersion $containerVersion) - { - $this->containerVersion = $containerVersion; - } - /** - * @return Google_Service_TagManager_ContainerVersion - */ - public function getContainerVersion() - { - return $this->containerVersion; - } - public function setNewWorkspacePath($newWorkspacePath) - { - $this->newWorkspacePath = $newWorkspacePath; - } - public function getNewWorkspacePath() - { - return $this->newWorkspacePath; - } - /** - * @param Google_Service_TagManager_SyncStatus - */ - public function setSyncStatus(Google_Service_TagManager_SyncStatus $syncStatus) - { - $this->syncStatus = $syncStatus; - } - /** - * @return Google_Service_TagManager_SyncStatus - */ - public function getSyncStatus() - { - return $this->syncStatus; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/CustomTemplate.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/CustomTemplate.php deleted file mode 100644 index fb8d736e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/CustomTemplate.php +++ /dev/null @@ -1,118 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setContainerId($containerId) - { - $this->containerId = $containerId; - } - public function getContainerId() - { - return $this->containerId; - } - public function setFingerprint($fingerprint) - { - $this->fingerprint = $fingerprint; - } - public function getFingerprint() - { - return $this->fingerprint; - } - /** - * @param Google_Service_TagManager_GalleryReference - */ - public function setGalleryReference(Google_Service_TagManager_GalleryReference $galleryReference) - { - $this->galleryReference = $galleryReference; - } - /** - * @return Google_Service_TagManager_GalleryReference - */ - public function getGalleryReference() - { - return $this->galleryReference; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPath($path) - { - $this->path = $path; - } - public function getPath() - { - return $this->path; - } - public function setTagManagerUrl($tagManagerUrl) - { - $this->tagManagerUrl = $tagManagerUrl; - } - public function getTagManagerUrl() - { - return $this->tagManagerUrl; - } - public function setTemplateData($templateData) - { - $this->templateData = $templateData; - } - public function getTemplateData() - { - return $this->templateData; - } - public function setTemplateId($templateId) - { - $this->templateId = $templateId; - } - public function getTemplateId() - { - return $this->templateId; - } - public function setWorkspaceId($workspaceId) - { - $this->workspaceId = $workspaceId; - } - public function getWorkspaceId() - { - return $this->workspaceId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Entity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Entity.php deleted file mode 100644 index 6a103a99..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Entity.php +++ /dev/null @@ -1,94 +0,0 @@ -changeStatus = $changeStatus; - } - public function getChangeStatus() - { - return $this->changeStatus; - } - /** - * @param Google_Service_TagManager_Folder - */ - public function setFolder(Google_Service_TagManager_Folder $folder) - { - $this->folder = $folder; - } - /** - * @return Google_Service_TagManager_Folder - */ - public function getFolder() - { - return $this->folder; - } - /** - * @param Google_Service_TagManager_Tag - */ - public function setTag(Google_Service_TagManager_Tag $tag) - { - $this->tag = $tag; - } - /** - * @return Google_Service_TagManager_Tag - */ - public function getTag() - { - return $this->tag; - } - /** - * @param Google_Service_TagManager_Trigger - */ - public function setTrigger(Google_Service_TagManager_Trigger $trigger) - { - $this->trigger = $trigger; - } - /** - * @return Google_Service_TagManager_Trigger - */ - public function getTrigger() - { - return $this->trigger; - } - /** - * @param Google_Service_TagManager_Variable - */ - public function setVariable(Google_Service_TagManager_Variable $variable) - { - $this->variable = $variable; - } - /** - * @return Google_Service_TagManager_Variable - */ - public function getVariable() - { - return $this->variable; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Environment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Environment.php deleted file mode 100644 index 27bfcc5c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Environment.php +++ /dev/null @@ -1,156 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setAuthorizationCode($authorizationCode) - { - $this->authorizationCode = $authorizationCode; - } - public function getAuthorizationCode() - { - return $this->authorizationCode; - } - public function setAuthorizationTimestamp($authorizationTimestamp) - { - $this->authorizationTimestamp = $authorizationTimestamp; - } - public function getAuthorizationTimestamp() - { - return $this->authorizationTimestamp; - } - public function setContainerId($containerId) - { - $this->containerId = $containerId; - } - public function getContainerId() - { - return $this->containerId; - } - public function setContainerVersionId($containerVersionId) - { - $this->containerVersionId = $containerVersionId; - } - public function getContainerVersionId() - { - return $this->containerVersionId; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setEnableDebug($enableDebug) - { - $this->enableDebug = $enableDebug; - } - public function getEnableDebug() - { - return $this->enableDebug; - } - public function setEnvironmentId($environmentId) - { - $this->environmentId = $environmentId; - } - public function getEnvironmentId() - { - return $this->environmentId; - } - public function setFingerprint($fingerprint) - { - $this->fingerprint = $fingerprint; - } - public function getFingerprint() - { - return $this->fingerprint; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPath($path) - { - $this->path = $path; - } - public function getPath() - { - return $this->path; - } - public function setTagManagerUrl($tagManagerUrl) - { - $this->tagManagerUrl = $tagManagerUrl; - } - public function getTagManagerUrl() - { - return $this->tagManagerUrl; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } - public function setWorkspaceId($workspaceId) - { - $this->workspaceId = $workspaceId; - } - public function getWorkspaceId() - { - return $this->workspaceId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Folder.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Folder.php deleted file mode 100644 index 18043ecc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Folder.php +++ /dev/null @@ -1,102 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setContainerId($containerId) - { - $this->containerId = $containerId; - } - public function getContainerId() - { - return $this->containerId; - } - public function setFingerprint($fingerprint) - { - $this->fingerprint = $fingerprint; - } - public function getFingerprint() - { - return $this->fingerprint; - } - public function setFolderId($folderId) - { - $this->folderId = $folderId; - } - public function getFolderId() - { - return $this->folderId; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNotes($notes) - { - $this->notes = $notes; - } - public function getNotes() - { - return $this->notes; - } - public function setPath($path) - { - $this->path = $path; - } - public function getPath() - { - return $this->path; - } - public function setTagManagerUrl($tagManagerUrl) - { - $this->tagManagerUrl = $tagManagerUrl; - } - public function getTagManagerUrl() - { - return $this->tagManagerUrl; - } - public function setWorkspaceId($workspaceId) - { - $this->workspaceId = $workspaceId; - } - public function getWorkspaceId() - { - return $this->workspaceId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/FolderEntities.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/FolderEntities.php deleted file mode 100644 index 74d5e765..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/FolderEntities.php +++ /dev/null @@ -1,79 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_TagManager_Tag - */ - public function setTag($tag) - { - $this->tag = $tag; - } - /** - * @return Google_Service_TagManager_Tag - */ - public function getTag() - { - return $this->tag; - } - /** - * @param Google_Service_TagManager_Trigger - */ - public function setTrigger($trigger) - { - $this->trigger = $trigger; - } - /** - * @return Google_Service_TagManager_Trigger - */ - public function getTrigger() - { - return $this->trigger; - } - /** - * @param Google_Service_TagManager_Variable - */ - public function setVariable($variable) - { - $this->variable = $variable; - } - /** - * @return Google_Service_TagManager_Variable - */ - public function getVariable() - { - return $this->variable; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/GalleryReference.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/GalleryReference.php deleted file mode 100644 index 87c42cba..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/GalleryReference.php +++ /dev/null @@ -1,75 +0,0 @@ -host = $host; - } - public function getHost() - { - return $this->host; - } - public function setIsModified($isModified) - { - $this->isModified = $isModified; - } - public function getIsModified() - { - return $this->isModified; - } - public function setOwner($owner) - { - $this->owner = $owner; - } - public function getOwner() - { - return $this->owner; - } - public function setRepository($repository) - { - $this->repository = $repository; - } - public function getRepository() - { - return $this->repository; - } - public function setSignature($signature) - { - $this->signature = $signature; - } - public function getSignature() - { - return $this->signature; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/GetWorkspaceStatusResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/GetWorkspaceStatusResponse.php deleted file mode 100644 index ff71d2bf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/GetWorkspaceStatusResponse.php +++ /dev/null @@ -1,54 +0,0 @@ -mergeConflict = $mergeConflict; - } - /** - * @return Google_Service_TagManager_MergeConflict - */ - public function getMergeConflict() - { - return $this->mergeConflict; - } - /** - * @param Google_Service_TagManager_Entity - */ - public function setWorkspaceChange($workspaceChange) - { - $this->workspaceChange = $workspaceChange; - } - /** - * @return Google_Service_TagManager_Entity - */ - public function getWorkspaceChange() - { - return $this->workspaceChange; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ListAccountsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ListAccountsResponse.php deleted file mode 100644 index e2e1dc5d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ListAccountsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -account = $account; - } - /** - * @return Google_Service_TagManager_Account - */ - public function getAccount() - { - return $this->account; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ListContainerVersionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ListContainerVersionsResponse.php deleted file mode 100644 index 8c68168d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ListContainerVersionsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -containerVersionHeader = $containerVersionHeader; - } - /** - * @return Google_Service_TagManager_ContainerVersionHeader - */ - public function getContainerVersionHeader() - { - return $this->containerVersionHeader; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ListContainersResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ListContainersResponse.php deleted file mode 100644 index ae0987d0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ListContainersResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -container = $container; - } - /** - * @return Google_Service_TagManager_Container - */ - public function getContainer() - { - return $this->container; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ListEnabledBuiltInVariablesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ListEnabledBuiltInVariablesResponse.php deleted file mode 100644 index c451783d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ListEnabledBuiltInVariablesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -builtInVariable = $builtInVariable; - } - /** - * @return Google_Service_TagManager_BuiltInVariable - */ - public function getBuiltInVariable() - { - return $this->builtInVariable; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ListEnvironmentsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ListEnvironmentsResponse.php deleted file mode 100644 index ce6bbe31..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ListEnvironmentsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -environment = $environment; - } - /** - * @return Google_Service_TagManager_Environment - */ - public function getEnvironment() - { - return $this->environment; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ListFoldersResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ListFoldersResponse.php deleted file mode 100644 index 460c5b1d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ListFoldersResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -folder = $folder; - } - /** - * @return Google_Service_TagManager_Folder - */ - public function getFolder() - { - return $this->folder; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ListTagsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ListTagsResponse.php deleted file mode 100644 index a448efd4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ListTagsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_TagManager_Tag - */ - public function setTag($tag) - { - $this->tag = $tag; - } - /** - * @return Google_Service_TagManager_Tag - */ - public function getTag() - { - return $this->tag; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ListTemplatesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ListTemplatesResponse.php deleted file mode 100644 index 21161fa7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ListTemplatesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_TagManager_CustomTemplate - */ - public function setTemplate($template) - { - $this->template = $template; - } - /** - * @return Google_Service_TagManager_CustomTemplate - */ - public function getTemplate() - { - return $this->template; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ListTriggersResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ListTriggersResponse.php deleted file mode 100644 index f84da437..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ListTriggersResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_TagManager_Trigger - */ - public function setTrigger($trigger) - { - $this->trigger = $trigger; - } - /** - * @return Google_Service_TagManager_Trigger - */ - public function getTrigger() - { - return $this->trigger; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ListUserPermissionsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ListUserPermissionsResponse.php deleted file mode 100644 index 8043d812..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ListUserPermissionsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_TagManager_UserPermission - */ - public function setUserPermission($userPermission) - { - $this->userPermission = $userPermission; - } - /** - * @return Google_Service_TagManager_UserPermission - */ - public function getUserPermission() - { - return $this->userPermission; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ListVariablesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ListVariablesResponse.php deleted file mode 100644 index fe924fe9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ListVariablesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_TagManager_Variable - */ - public function setVariable($variable) - { - $this->variable = $variable; - } - /** - * @return Google_Service_TagManager_Variable - */ - public function getVariable() - { - return $this->variable; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ListWorkspacesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ListWorkspacesResponse.php deleted file mode 100644 index a417e1dd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ListWorkspacesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_TagManager_Workspace - */ - public function setWorkspace($workspace) - { - $this->workspace = $workspace; - } - /** - * @return Google_Service_TagManager_Workspace - */ - public function getWorkspace() - { - return $this->workspace; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ListZonesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ListZonesResponse.php deleted file mode 100644 index c7b56d52..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ListZonesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_TagManager_Zone - */ - public function setZone($zone) - { - $this->zone = $zone; - } - /** - * @return Google_Service_TagManager_Zone - */ - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/MergeConflict.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/MergeConflict.php deleted file mode 100644 index e5f0416a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/MergeConflict.php +++ /dev/null @@ -1,53 +0,0 @@ -entityInBaseVersion = $entityInBaseVersion; - } - /** - * @return Google_Service_TagManager_Entity - */ - public function getEntityInBaseVersion() - { - return $this->entityInBaseVersion; - } - /** - * @param Google_Service_TagManager_Entity - */ - public function setEntityInWorkspace(Google_Service_TagManager_Entity $entityInWorkspace) - { - $this->entityInWorkspace = $entityInWorkspace; - } - /** - * @return Google_Service_TagManager_Entity - */ - public function getEntityInWorkspace() - { - return $this->entityInWorkspace; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Parameter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Parameter.php deleted file mode 100644 index 4c5828d4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Parameter.php +++ /dev/null @@ -1,81 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - /** - * @param Google_Service_TagManager_Parameter - */ - public function setList($list) - { - $this->list = $list; - } - /** - * @return Google_Service_TagManager_Parameter - */ - public function getList() - { - return $this->list; - } - /** - * @param Google_Service_TagManager_Parameter - */ - public function setMap($map) - { - $this->map = $map; - } - /** - * @return Google_Service_TagManager_Parameter - */ - public function getMap() - { - return $this->map; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/PublishContainerVersionResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/PublishContainerVersionResponse.php deleted file mode 100644 index 3f752b95..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/PublishContainerVersionResponse.php +++ /dev/null @@ -1,46 +0,0 @@ -compilerError = $compilerError; - } - public function getCompilerError() - { - return $this->compilerError; - } - /** - * @param Google_Service_TagManager_ContainerVersion - */ - public function setContainerVersion(Google_Service_TagManager_ContainerVersion $containerVersion) - { - $this->containerVersion = $containerVersion; - } - /** - * @return Google_Service_TagManager_ContainerVersion - */ - public function getContainerVersion() - { - return $this->containerVersion; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/QuickPreviewResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/QuickPreviewResponse.php deleted file mode 100644 index 5ad6cc19..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/QuickPreviewResponse.php +++ /dev/null @@ -1,62 +0,0 @@ -compilerError = $compilerError; - } - public function getCompilerError() - { - return $this->compilerError; - } - /** - * @param Google_Service_TagManager_ContainerVersion - */ - public function setContainerVersion(Google_Service_TagManager_ContainerVersion $containerVersion) - { - $this->containerVersion = $containerVersion; - } - /** - * @return Google_Service_TagManager_ContainerVersion - */ - public function getContainerVersion() - { - return $this->containerVersion; - } - /** - * @param Google_Service_TagManager_SyncStatus - */ - public function setSyncStatus(Google_Service_TagManager_SyncStatus $syncStatus) - { - $this->syncStatus = $syncStatus; - } - /** - * @return Google_Service_TagManager_SyncStatus - */ - public function getSyncStatus() - { - return $this->syncStatus; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Resource/Accounts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Resource/Accounts.php deleted file mode 100644 index bb21e712..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Resource/Accounts.php +++ /dev/null @@ -1,75 +0,0 @@ - - * $tagmanagerService = new Google_Service_TagManager(...); - * $accounts = $tagmanagerService->accounts; - * - */ -class Google_Service_TagManager_Resource_Accounts extends Google_Service_Resource -{ - /** - * Gets a GTM Account. (accounts.get) - * - * @param string $path GTM Accounts's API relative path. Example: - * accounts/{account_id} - * @param array $optParams Optional parameters. - * @return Google_Service_TagManager_Account - */ - public function get($path, $optParams = array()) - { - $params = array('path' => $path); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_TagManager_Account"); - } - /** - * Lists all GTM Accounts that a user has access to. (accounts.listAccounts) - * - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Continuation token for fetching the next page of - * results. - * @return Google_Service_TagManager_ListAccountsResponse - */ - public function listAccounts($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_TagManager_ListAccountsResponse"); - } - /** - * Updates a GTM Account. (accounts.update) - * - * @param string $path GTM Accounts's API relative path. Example: - * accounts/{account_id} - * @param Google_Service_TagManager_Account $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string fingerprint When provided, this fingerprint must match the - * fingerprint of the account in storage. - * @return Google_Service_TagManager_Account - */ - public function update($path, Google_Service_TagManager_Account $postBody, $optParams = array()) - { - $params = array('path' => $path, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_TagManager_Account"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Resource/AccountsContainers.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Resource/AccountsContainers.php deleted file mode 100644 index d49f3b4b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Resource/AccountsContainers.php +++ /dev/null @@ -1,106 +0,0 @@ - - * $tagmanagerService = new Google_Service_TagManager(...); - * $containers = $tagmanagerService->containers; - * - */ -class Google_Service_TagManager_Resource_AccountsContainers extends Google_Service_Resource -{ - /** - * Creates a Container. (containers.create) - * - * @param string $parent GTM Account's API relative path. Example: - * accounts/{account_id}. - * @param Google_Service_TagManager_Container $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_TagManager_Container - */ - public function create($parent, Google_Service_TagManager_Container $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_TagManager_Container"); - } - /** - * Deletes a Container. (containers.delete) - * - * @param string $path GTM Container's API relative path. Example: - * accounts/{account_id}/containers/{container_id} - * @param array $optParams Optional parameters. - */ - public function delete($path, $optParams = array()) - { - $params = array('path' => $path); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Gets a Container. (containers.get) - * - * @param string $path GTM Container's API relative path. Example: - * accounts/{account_id}/containers/{container_id} - * @param array $optParams Optional parameters. - * @return Google_Service_TagManager_Container - */ - public function get($path, $optParams = array()) - { - $params = array('path' => $path); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_TagManager_Container"); - } - /** - * Lists all Containers that belongs to a GTM Account. - * (containers.listAccountsContainers) - * - * @param string $parent GTM Accounts's API relative path. Example: - * accounts/{account_id}. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Continuation token for fetching the next page of - * results. - * @return Google_Service_TagManager_ListContainersResponse - */ - public function listAccountsContainers($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_TagManager_ListContainersResponse"); - } - /** - * Updates a Container. (containers.update) - * - * @param string $path GTM Container's API relative path. Example: - * accounts/{account_id}/containers/{container_id} - * @param Google_Service_TagManager_Container $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string fingerprint When provided, this fingerprint must match the - * fingerprint of the container in storage. - * @return Google_Service_TagManager_Container - */ - public function update($path, Google_Service_TagManager_Container $postBody, $optParams = array()) - { - $params = array('path' => $path, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_TagManager_Container"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Resource/AccountsContainersEnvironments.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Resource/AccountsContainersEnvironments.php deleted file mode 100644 index 146e6fa3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Resource/AccountsContainersEnvironments.php +++ /dev/null @@ -1,122 +0,0 @@ - - * $tagmanagerService = new Google_Service_TagManager(...); - * $environments = $tagmanagerService->environments; - * - */ -class Google_Service_TagManager_Resource_AccountsContainersEnvironments extends Google_Service_Resource -{ - /** - * Creates a GTM Environment. (environments.create) - * - * @param string $parent GTM Container's API relative path. Example: - * accounts/{account_id}/containers/{container_id} - * @param Google_Service_TagManager_Environment $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_TagManager_Environment - */ - public function create($parent, Google_Service_TagManager_Environment $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_TagManager_Environment"); - } - /** - * Deletes a GTM Environment. (environments.delete) - * - * @param string $path GTM Environment's API relative path. Example: - * accounts/{account_id}/containers/{container_id}/environments/{environment_id} - * @param array $optParams Optional parameters. - */ - public function delete($path, $optParams = array()) - { - $params = array('path' => $path); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Gets a GTM Environment. (environments.get) - * - * @param string $path GTM Environment's API relative path. Example: - * accounts/{account_id}/containers/{container_id}/environments/{environment_id} - * @param array $optParams Optional parameters. - * @return Google_Service_TagManager_Environment - */ - public function get($path, $optParams = array()) - { - $params = array('path' => $path); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_TagManager_Environment"); - } - /** - * Lists all GTM Environments of a GTM Container. - * (environments.listAccountsContainersEnvironments) - * - * @param string $parent GTM Container's API relative path. Example: - * accounts/{account_id}/containers/{container_id} - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Continuation token for fetching the next page of - * results. - * @return Google_Service_TagManager_ListEnvironmentsResponse - */ - public function listAccountsContainersEnvironments($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_TagManager_ListEnvironmentsResponse"); - } - /** - * Re-generates the authorization code for a GTM Environment. - * (environments.reauthorize) - * - * @param string $path GTM Environment's API relative path. Example: - * accounts/{account_id}/containers/{container_id}/environments/{environment_id} - * @param Google_Service_TagManager_Environment $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_TagManager_Environment - */ - public function reauthorize($path, Google_Service_TagManager_Environment $postBody, $optParams = array()) - { - $params = array('path' => $path, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('reauthorize', array($params), "Google_Service_TagManager_Environment"); - } - /** - * Updates a GTM Environment. (environments.update) - * - * @param string $path GTM Environment's API relative path. Example: - * accounts/{account_id}/containers/{container_id}/environments/{environment_id} - * @param Google_Service_TagManager_Environment $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string fingerprint When provided, this fingerprint must match the - * fingerprint of the environment in storage. - * @return Google_Service_TagManager_Environment - */ - public function update($path, Google_Service_TagManager_Environment $postBody, $optParams = array()) - { - $params = array('path' => $path, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_TagManager_Environment"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Resource/AccountsContainersVersionHeaders.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Resource/AccountsContainersVersionHeaders.php deleted file mode 100644 index 3c5e144a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Resource/AccountsContainersVersionHeaders.php +++ /dev/null @@ -1,62 +0,0 @@ - - * $tagmanagerService = new Google_Service_TagManager(...); - * $version_headers = $tagmanagerService->version_headers; - * - */ -class Google_Service_TagManager_Resource_AccountsContainersVersionHeaders extends Google_Service_Resource -{ - /** - * Gets the latest container version header (version_headers.latest) - * - * @param string $parent GTM Container's API relative path. Example: - * accounts/{account_id}/containers/{container_id} - * @param array $optParams Optional parameters. - * @return Google_Service_TagManager_ContainerVersionHeader - */ - public function latest($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('latest', array($params), "Google_Service_TagManager_ContainerVersionHeader"); - } - /** - * Lists all Container Versions of a GTM Container. - * (version_headers.listAccountsContainersVersionHeaders) - * - * @param string $parent GTM Container's API relative path. Example: - * accounts/{account_id}/containers/{container_id} - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Continuation token for fetching the next page of - * results. - * @opt_param bool includeDeleted Also retrieve deleted (archived) versions when - * true. - * @return Google_Service_TagManager_ListContainerVersionsResponse - */ - public function listAccountsContainersVersionHeaders($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_TagManager_ListContainerVersionsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Resource/AccountsContainersVersions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Resource/AccountsContainersVersions.php deleted file mode 100644 index 9275d22e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Resource/AccountsContainersVersions.php +++ /dev/null @@ -1,136 +0,0 @@ - - * $tagmanagerService = new Google_Service_TagManager(...); - * $versions = $tagmanagerService->versions; - * - */ -class Google_Service_TagManager_Resource_AccountsContainersVersions extends Google_Service_Resource -{ - /** - * Deletes a Container Version. (versions.delete) - * - * @param string $path GTM ContainerVersion's API relative path. Example: - * accounts/{account_id}/containers/{container_id}/versions/{version_id} - * @param array $optParams Optional parameters. - */ - public function delete($path, $optParams = array()) - { - $params = array('path' => $path); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Gets a Container Version. (versions.get) - * - * @param string $path GTM ContainerVersion's API relative path. Example: - * accounts/{account_id}/containers/{container_id}/versions/{version_id} - * @param array $optParams Optional parameters. - * - * @opt_param string containerVersionId The GTM ContainerVersion ID. Specify - * published to retrieve the currently published version. - * @return Google_Service_TagManager_ContainerVersion - */ - public function get($path, $optParams = array()) - { - $params = array('path' => $path); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_TagManager_ContainerVersion"); - } - /** - * Gets the live (i.e. published) container version (versions.live) - * - * @param string $parent GTM Container's API relative path. Example: - * accounts/{account_id}/containers/{container_id} - * @param array $optParams Optional parameters. - * @return Google_Service_TagManager_ContainerVersion - */ - public function live($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('live', array($params), "Google_Service_TagManager_ContainerVersion"); - } - /** - * Publishes a Container Version. (versions.publish) - * - * @param string $path GTM ContainerVersion's API relative path. Example: - * accounts/{account_id}/containers/{container_id}/versions/{version_id} - * @param array $optParams Optional parameters. - * - * @opt_param string fingerprint When provided, this fingerprint must match the - * fingerprint of the container version in storage. - * @return Google_Service_TagManager_PublishContainerVersionResponse - */ - public function publish($path, $optParams = array()) - { - $params = array('path' => $path); - $params = array_merge($params, $optParams); - return $this->call('publish', array($params), "Google_Service_TagManager_PublishContainerVersionResponse"); - } - /** - * Sets the latest version used for synchronization of workspaces when detecting - * conflicts and errors. (versions.set_latest) - * - * @param string $path GTM ContainerVersion's API relative path. Example: - * accounts/{account_id}/containers/{container_id}/versions/{version_id} - * @param array $optParams Optional parameters. - * @return Google_Service_TagManager_ContainerVersion - */ - public function set_latest($path, $optParams = array()) - { - $params = array('path' => $path); - $params = array_merge($params, $optParams); - return $this->call('set_latest', array($params), "Google_Service_TagManager_ContainerVersion"); - } - /** - * Undeletes a Container Version. (versions.undelete) - * - * @param string $path GTM ContainerVersion's API relative path. Example: - * accounts/{account_id}/containers/{container_id}/versions/{version_id} - * @param array $optParams Optional parameters. - * @return Google_Service_TagManager_ContainerVersion - */ - public function undelete($path, $optParams = array()) - { - $params = array('path' => $path); - $params = array_merge($params, $optParams); - return $this->call('undelete', array($params), "Google_Service_TagManager_ContainerVersion"); - } - /** - * Updates a Container Version. (versions.update) - * - * @param string $path GTM ContainerVersion's API relative path. Example: - * accounts/{account_id}/containers/{container_id}/versions/{version_id} - * @param Google_Service_TagManager_ContainerVersion $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string fingerprint When provided, this fingerprint must match the - * fingerprint of the container version in storage. - * @return Google_Service_TagManager_ContainerVersion - */ - public function update($path, Google_Service_TagManager_ContainerVersion $postBody, $optParams = array()) - { - $params = array('path' => $path, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_TagManager_ContainerVersion"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Resource/AccountsContainersWorkspaces.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Resource/AccountsContainersWorkspaces.php deleted file mode 100644 index 04f90f6f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Resource/AccountsContainersWorkspaces.php +++ /dev/null @@ -1,187 +0,0 @@ - - * $tagmanagerService = new Google_Service_TagManager(...); - * $workspaces = $tagmanagerService->workspaces; - * - */ -class Google_Service_TagManager_Resource_AccountsContainersWorkspaces extends Google_Service_Resource -{ - /** - * Creates a Workspace. (workspaces.create) - * - * @param string $parent GTM parent Container's API relative path. Example: - * accounts/{account_id}/containers/{container_id} - * @param Google_Service_TagManager_Workspace $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_TagManager_Workspace - */ - public function create($parent, Google_Service_TagManager_Workspace $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_TagManager_Workspace"); - } - /** - * Creates a Container Version from the entities present in the workspace, - * deletes the workspace, and sets the base container version to the newly - * created version. (workspaces.create_version) - * - * @param string $path GTM Workspace's API relative path. Example: - * accounts/{account_id}/containers/{container_id}/workspaces/{workspace_id} - * @param Google_Service_TagManager_CreateContainerVersionRequestVersionOptions $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_TagManager_CreateContainerVersionResponse - */ - public function create_version($path, Google_Service_TagManager_CreateContainerVersionRequestVersionOptions $postBody, $optParams = array()) - { - $params = array('path' => $path, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create_version', array($params), "Google_Service_TagManager_CreateContainerVersionResponse"); - } - /** - * Deletes a Workspace. (workspaces.delete) - * - * @param string $path GTM Workspace's API relative path. Example: - * accounts/{account_id}/containers/{container_id}/workspaces/{workspace_id} - * @param array $optParams Optional parameters. - */ - public function delete($path, $optParams = array()) - { - $params = array('path' => $path); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Gets a Workspace. (workspaces.get) - * - * @param string $path GTM Workspace's API relative path. Example: - * accounts/{account_id}/containers/{container_id}/workspaces/{workspace_id} - * @param array $optParams Optional parameters. - * @return Google_Service_TagManager_Workspace - */ - public function get($path, $optParams = array()) - { - $params = array('path' => $path); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_TagManager_Workspace"); - } - /** - * Finds conflicting and modified entities in the workspace. - * (workspaces.getStatus) - * - * @param string $path GTM Workspace's API relative path. Example: - * accounts/{account_id}/containers/{container_id}/workspaces/{workspace_id} - * @param array $optParams Optional parameters. - * @return Google_Service_TagManager_GetWorkspaceStatusResponse - */ - public function getStatus($path, $optParams = array()) - { - $params = array('path' => $path); - $params = array_merge($params, $optParams); - return $this->call('getStatus', array($params), "Google_Service_TagManager_GetWorkspaceStatusResponse"); - } - /** - * Lists all Workspaces that belong to a GTM Container. - * (workspaces.listAccountsContainersWorkspaces) - * - * @param string $parent GTM parent Container's API relative path. Example: - * accounts/{account_id}/containers/{container_id} - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Continuation token for fetching the next page of - * results. - * @return Google_Service_TagManager_ListWorkspacesResponse - */ - public function listAccountsContainersWorkspaces($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_TagManager_ListWorkspacesResponse"); - } - /** - * Quick previews a workspace by creating a fake container version from all - * entities in the provided workspace. (workspaces.quick_preview) - * - * @param string $path GTM Workspace's API relative path. Example: - * accounts/{account_id}/containers/{container_id}/workspaces/{workspace_id} - * @param array $optParams Optional parameters. - * @return Google_Service_TagManager_QuickPreviewResponse - */ - public function quick_preview($path, $optParams = array()) - { - $params = array('path' => $path); - $params = array_merge($params, $optParams); - return $this->call('quick_preview', array($params), "Google_Service_TagManager_QuickPreviewResponse"); - } - /** - * Resolves a merge conflict for a workspace entity by updating it to the - * resolved entity passed in the request. (workspaces.resolve_conflict) - * - * @param string $path GTM Workspace's API relative path. Example: - * accounts/{account_id}/containers/{container_id}/workspaces/{workspace_id} - * @param Google_Service_TagManager_Entity $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string fingerprint When provided, this fingerprint must match the - * fingerprint of the entity_in_workspace in the merge conflict. - */ - public function resolve_conflict($path, Google_Service_TagManager_Entity $postBody, $optParams = array()) - { - $params = array('path' => $path, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('resolve_conflict', array($params)); - } - /** - * Syncs a workspace to the latest container version by updating all unmodified - * workspace entities and displaying conflicts for modified entities. - * (workspaces.sync) - * - * @param string $path GTM Workspace's API relative path. Example: - * accounts/{account_id}/containers/{container_id}/workspaces/{workspace_id} - * @param array $optParams Optional parameters. - * @return Google_Service_TagManager_SyncWorkspaceResponse - */ - public function sync($path, $optParams = array()) - { - $params = array('path' => $path); - $params = array_merge($params, $optParams); - return $this->call('sync', array($params), "Google_Service_TagManager_SyncWorkspaceResponse"); - } - /** - * Updates a Workspace. (workspaces.update) - * - * @param string $path GTM Workspace's API relative path. Example: - * accounts/{account_id}/containers/{container_id}/workspaces/{workspace_id} - * @param Google_Service_TagManager_Workspace $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string fingerprint When provided, this fingerprint must match the - * fingerprint of the workspace in storage. - * @return Google_Service_TagManager_Workspace - */ - public function update($path, Google_Service_TagManager_Workspace $postBody, $optParams = array()) - { - $params = array('path' => $path, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_TagManager_Workspace"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Resource/AccountsContainersWorkspacesBuiltInVariables.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Resource/AccountsContainersWorkspacesBuiltInVariables.php deleted file mode 100644 index eae4f56d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Resource/AccountsContainersWorkspacesBuiltInVariables.php +++ /dev/null @@ -1,96 +0,0 @@ - - * $tagmanagerService = new Google_Service_TagManager(...); - * $built_in_variables = $tagmanagerService->built_in_variables; - * - */ -class Google_Service_TagManager_Resource_AccountsContainersWorkspacesBuiltInVariables extends Google_Service_Resource -{ - /** - * Creates one or more GTM Built-In Variables. (built_in_variables.create) - * - * @param string $parent GTM Workspace's API relative path. Example: - * accounts/{account_id}/containers/{container_id}/workspaces/{workspace_id} - * @param array $optParams Optional parameters. - * - * @opt_param string type The types of built-in variables to enable. - * @return Google_Service_TagManager_CreateBuiltInVariableResponse - */ - public function create($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_TagManager_CreateBuiltInVariableResponse"); - } - /** - * Deletes one or more GTM Built-In Variables. (built_in_variables.delete) - * - * @param string $path GTM BuiltInVariable's API relative path. Example: account - * s/{account_id}/containers/{container_id}/workspaces/{workspace_id}/built_in_v - * ariables - * @param array $optParams Optional parameters. - * - * @opt_param string type The types of built-in variables to delete. - */ - public function delete($path, $optParams = array()) - { - $params = array('path' => $path); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Lists all the enabled Built-In Variables of a GTM Container. - * (built_in_variables.listAccountsContainersWorkspacesBuiltInVariables) - * - * @param string $parent GTM Workspace's API relative path. Example: - * accounts/{account_id}/containers/{container_id}/workspaces/{workspace_id} - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Continuation token for fetching the next page of - * results. - * @return Google_Service_TagManager_ListEnabledBuiltInVariablesResponse - */ - public function listAccountsContainersWorkspacesBuiltInVariables($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_TagManager_ListEnabledBuiltInVariablesResponse"); - } - /** - * Reverts changes to a GTM Built-In Variables in a GTM Workspace. - * (built_in_variables.revert) - * - * @param string $path GTM BuiltInVariable's API relative path. Example: account - * s/{account_id}/containers/{container_id}/workspaces/{workspace_id}/built_in_v - * ariables - * @param array $optParams Optional parameters. - * - * @opt_param string type The type of built-in variable to revert. - * @return Google_Service_TagManager_RevertBuiltInVariableResponse - */ - public function revert($path, $optParams = array()) - { - $params = array('path' => $path); - $params = array_merge($params, $optParams); - return $this->call('revert', array($params), "Google_Service_TagManager_RevertBuiltInVariableResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Resource/AccountsContainersWorkspacesFolders.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Resource/AccountsContainersWorkspacesFolders.php deleted file mode 100644 index 4f899b7d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Resource/AccountsContainersWorkspacesFolders.php +++ /dev/null @@ -1,158 +0,0 @@ - - * $tagmanagerService = new Google_Service_TagManager(...); - * $folders = $tagmanagerService->folders; - * - */ -class Google_Service_TagManager_Resource_AccountsContainersWorkspacesFolders extends Google_Service_Resource -{ - /** - * Creates a GTM Folder. (folders.create) - * - * @param string $parent GTM Workspace's API relative path. Example: - * accounts/{account_id}/containers/{container_id}/workspaces/{workspace_id} - * @param Google_Service_TagManager_Folder $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_TagManager_Folder - */ - public function create($parent, Google_Service_TagManager_Folder $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_TagManager_Folder"); - } - /** - * Deletes a GTM Folder. (folders.delete) - * - * @param string $path GTM Folder's API relative path. Example: accounts/{accoun - * t_id}/containers/{container_id}/workspaces/{workspace_id}/folders/{folder_id} - * @param array $optParams Optional parameters. - */ - public function delete($path, $optParams = array()) - { - $params = array('path' => $path); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * List all entities in a GTM Folder. (folders.entities) - * - * @param string $path GTM Folder's API relative path. Example: accounts/{accoun - * t_id}/containers/{container_id}/workspaces/{workspace_id}/folders/{folder_id} - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Continuation token for fetching the next page of - * results. - * @return Google_Service_TagManager_FolderEntities - */ - public function entities($path, $optParams = array()) - { - $params = array('path' => $path); - $params = array_merge($params, $optParams); - return $this->call('entities', array($params), "Google_Service_TagManager_FolderEntities"); - } - /** - * Gets a GTM Folder. (folders.get) - * - * @param string $path GTM Folder's API relative path. Example: accounts/{accoun - * t_id}/containers/{container_id}/workspaces/{workspace_id}/folders/{folder_id} - * @param array $optParams Optional parameters. - * @return Google_Service_TagManager_Folder - */ - public function get($path, $optParams = array()) - { - $params = array('path' => $path); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_TagManager_Folder"); - } - /** - * Lists all GTM Folders of a Container. - * (folders.listAccountsContainersWorkspacesFolders) - * - * @param string $parent GTM Workspace's API relative path. Example: - * accounts/{account_id}/containers/{container_id}/workspaces/{workspace_id} - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Continuation token for fetching the next page of - * results. - * @return Google_Service_TagManager_ListFoldersResponse - */ - public function listAccountsContainersWorkspacesFolders($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_TagManager_ListFoldersResponse"); - } - /** - * Moves entities to a GTM Folder. (folders.move_entities_to_folder) - * - * @param string $path GTM Folder's API relative path. Example: accounts/{accoun - * t_id}/containers/{container_id}/workspaces/{workspace_id}/folders/{folder_id} - * @param Google_Service_TagManager_Folder $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string variableId The variables to be moved to the folder. - * @opt_param string tagId The tags to be moved to the folder. - * @opt_param string triggerId The triggers to be moved to the folder. - */ - public function move_entities_to_folder($path, Google_Service_TagManager_Folder $postBody, $optParams = array()) - { - $params = array('path' => $path, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('move_entities_to_folder', array($params)); - } - /** - * Reverts changes to a GTM Folder in a GTM Workspace. (folders.revert) - * - * @param string $path GTM Folder's API relative path. Example: accounts/{accoun - * t_id}/containers/{container_id}/workspaces/{workspace_id}/folders/{folder_id} - * @param array $optParams Optional parameters. - * - * @opt_param string fingerprint When provided, this fingerprint must match the - * fingerprint of the tag in storage. - * @return Google_Service_TagManager_RevertFolderResponse - */ - public function revert($path, $optParams = array()) - { - $params = array('path' => $path); - $params = array_merge($params, $optParams); - return $this->call('revert', array($params), "Google_Service_TagManager_RevertFolderResponse"); - } - /** - * Updates a GTM Folder. (folders.update) - * - * @param string $path GTM Folder's API relative path. Example: accounts/{accoun - * t_id}/containers/{container_id}/workspaces/{workspace_id}/folders/{folder_id} - * @param Google_Service_TagManager_Folder $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string fingerprint When provided, this fingerprint must match the - * fingerprint of the folder in storage. - * @return Google_Service_TagManager_Folder - */ - public function update($path, Google_Service_TagManager_Folder $postBody, $optParams = array()) - { - $params = array('path' => $path, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_TagManager_Folder"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Resource/AccountsContainersWorkspacesTags.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Resource/AccountsContainersWorkspacesTags.php deleted file mode 100644 index 059954f5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Resource/AccountsContainersWorkspacesTags.php +++ /dev/null @@ -1,123 +0,0 @@ - - * $tagmanagerService = new Google_Service_TagManager(...); - * $tags = $tagmanagerService->tags; - * - */ -class Google_Service_TagManager_Resource_AccountsContainersWorkspacesTags extends Google_Service_Resource -{ - /** - * Creates a GTM Tag. (tags.create) - * - * @param string $parent GTM Workspace's API relative path. Example: - * accounts/{account_id}/containers/{container_id}/workspaces/{workspace_id} - * @param Google_Service_TagManager_Tag $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_TagManager_Tag - */ - public function create($parent, Google_Service_TagManager_Tag $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_TagManager_Tag"); - } - /** - * Deletes a GTM Tag. (tags.delete) - * - * @param string $path GTM Tag's API relative path. Example: accounts/{account_i - * d}/containers/{container_id}/workspaces/{workspace_id}/tags/{tag_id} - * @param array $optParams Optional parameters. - */ - public function delete($path, $optParams = array()) - { - $params = array('path' => $path); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Gets a GTM Tag. (tags.get) - * - * @param string $path GTM Tag's API relative path. Example: accounts/{account_i - * d}/containers/{container_id}/workspaces/{workspace_id}/tags/{tag_id} - * @param array $optParams Optional parameters. - * @return Google_Service_TagManager_Tag - */ - public function get($path, $optParams = array()) - { - $params = array('path' => $path); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_TagManager_Tag"); - } - /** - * Lists all GTM Tags of a Container. - * (tags.listAccountsContainersWorkspacesTags) - * - * @param string $parent GTM Workspace's API relative path. Example: - * accounts/{account_id}/containers/{container_id}/workspaces/{workspace_id} - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Continuation token for fetching the next page of - * results. - * @return Google_Service_TagManager_ListTagsResponse - */ - public function listAccountsContainersWorkspacesTags($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_TagManager_ListTagsResponse"); - } - /** - * Reverts changes to a GTM Tag in a GTM Workspace. (tags.revert) - * - * @param string $path GTM Tag's API relative path. Example: accounts/{account_i - * d}/containers/{container_id}/workspaces/{workspace_id}/tags/{tag_id} - * @param array $optParams Optional parameters. - * - * @opt_param string fingerprint When provided, this fingerprint must match the - * fingerprint of thetag in storage. - * @return Google_Service_TagManager_RevertTagResponse - */ - public function revert($path, $optParams = array()) - { - $params = array('path' => $path); - $params = array_merge($params, $optParams); - return $this->call('revert', array($params), "Google_Service_TagManager_RevertTagResponse"); - } - /** - * Updates a GTM Tag. (tags.update) - * - * @param string $path GTM Tag's API relative path. Example: accounts/{account_i - * d}/containers/{container_id}/workspaces/{workspace_id}/tags/{tag_id} - * @param Google_Service_TagManager_Tag $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string fingerprint When provided, this fingerprint must match the - * fingerprint of the tag in storage. - * @return Google_Service_TagManager_Tag - */ - public function update($path, Google_Service_TagManager_Tag $postBody, $optParams = array()) - { - $params = array('path' => $path, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_TagManager_Tag"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Resource/AccountsContainersWorkspacesTemplates.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Resource/AccountsContainersWorkspacesTemplates.php deleted file mode 100644 index 21101294..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Resource/AccountsContainersWorkspacesTemplates.php +++ /dev/null @@ -1,127 +0,0 @@ - - * $tagmanagerService = new Google_Service_TagManager(...); - * $templates = $tagmanagerService->templates; - * - */ -class Google_Service_TagManager_Resource_AccountsContainersWorkspacesTemplates extends Google_Service_Resource -{ - /** - * Creates a GTM Custom Template. (templates.create) - * - * @param string $parent GTM Workspace's API relative path. Example: - * accounts/{account_id}/containers/{container_id}/workspaces/{workspace_id} - * @param Google_Service_TagManager_CustomTemplate $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_TagManager_CustomTemplate - */ - public function create($parent, Google_Service_TagManager_CustomTemplate $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_TagManager_CustomTemplate"); - } - /** - * Deletes a GTM Template. (templates.delete) - * - * @param string $path GTM Custom Template's API relative path. Example: account - * s/{account_id}/containers/{container_id}/workspaces/{workspace_id}/templates/ - * {template_id} - * @param array $optParams Optional parameters. - */ - public function delete($path, $optParams = array()) - { - $params = array('path' => $path); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Gets a GTM Template. (templates.get) - * - * @param string $path GTM Custom Template's API relative path. Example: account - * s/{account_id}/containers/{container_id}/workspaces/{workspace_id}/templates/ - * {template_id} - * @param array $optParams Optional parameters. - * @return Google_Service_TagManager_CustomTemplate - */ - public function get($path, $optParams = array()) - { - $params = array('path' => $path); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_TagManager_CustomTemplate"); - } - /** - * Lists all GTM Templates of a GTM container workspace. - * (templates.listAccountsContainersWorkspacesTemplates) - * - * @param string $parent GTM Workspace's API relative path. Example: - * accounts/{account_id}/containers/{container_id}/workspaces/{workspace_id} - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Continuation token for fetching the next page of - * results. - * @return Google_Service_TagManager_ListTemplatesResponse - */ - public function listAccountsContainersWorkspacesTemplates($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_TagManager_ListTemplatesResponse"); - } - /** - * Reverts changes to a GTM Template in a GTM Workspace. (templates.revert) - * - * @param string $path GTM Custom Template's API relative path. Example: account - * s/{account_id}/containers/{container_id}/workspaces/{workspace_id}/templates/ - * {template_id} - * @param array $optParams Optional parameters. - * - * @opt_param string fingerprint When provided, this fingerprint must match the - * fingerprint of the template in storage. - * @return Google_Service_TagManager_RevertTemplateResponse - */ - public function revert($path, $optParams = array()) - { - $params = array('path' => $path); - $params = array_merge($params, $optParams); - return $this->call('revert', array($params), "Google_Service_TagManager_RevertTemplateResponse"); - } - /** - * Updates a GTM Template. (templates.update) - * - * @param string $path GTM Custom Template's API relative path. Example: account - * s/{account_id}/containers/{container_id}/workspaces/{workspace_id}/templates/ - * {template_id} - * @param Google_Service_TagManager_CustomTemplate $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string fingerprint When provided, this fingerprint must match the - * fingerprint of the templates in storage. - * @return Google_Service_TagManager_CustomTemplate - */ - public function update($path, Google_Service_TagManager_CustomTemplate $postBody, $optParams = array()) - { - $params = array('path' => $path, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_TagManager_CustomTemplate"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Resource/AccountsContainersWorkspacesTriggers.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Resource/AccountsContainersWorkspacesTriggers.php deleted file mode 100644 index 342546df..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Resource/AccountsContainersWorkspacesTriggers.php +++ /dev/null @@ -1,127 +0,0 @@ - - * $tagmanagerService = new Google_Service_TagManager(...); - * $triggers = $tagmanagerService->triggers; - * - */ -class Google_Service_TagManager_Resource_AccountsContainersWorkspacesTriggers extends Google_Service_Resource -{ - /** - * Creates a GTM Trigger. (triggers.create) - * - * @param string $parent GTM Workspaces's API relative path. Example: - * accounts/{account_id}/containers/{container_id}/workspaces/{workspace_id} - * @param Google_Service_TagManager_Trigger $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_TagManager_Trigger - */ - public function create($parent, Google_Service_TagManager_Trigger $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_TagManager_Trigger"); - } - /** - * Deletes a GTM Trigger. (triggers.delete) - * - * @param string $path GTM Trigger's API relative path. Example: accounts/{accou - * nt_id}/containers/{container_id}/workspaces/{workspace_id}/triggers/{trigger_ - * id} - * @param array $optParams Optional parameters. - */ - public function delete($path, $optParams = array()) - { - $params = array('path' => $path); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Gets a GTM Trigger. (triggers.get) - * - * @param string $path GTM Trigger's API relative path. Example: accounts/{accou - * nt_id}/containers/{container_id}/workspaces/{workspace_id}/triggers/{trigger_ - * id} - * @param array $optParams Optional parameters. - * @return Google_Service_TagManager_Trigger - */ - public function get($path, $optParams = array()) - { - $params = array('path' => $path); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_TagManager_Trigger"); - } - /** - * Lists all GTM Triggers of a Container. - * (triggers.listAccountsContainersWorkspacesTriggers) - * - * @param string $parent GTM Workspaces's API relative path. Example: - * accounts/{account_id}/containers/{container_id}/workspaces/{workspace_id} - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Continuation token for fetching the next page of - * results. - * @return Google_Service_TagManager_ListTriggersResponse - */ - public function listAccountsContainersWorkspacesTriggers($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_TagManager_ListTriggersResponse"); - } - /** - * Reverts changes to a GTM Trigger in a GTM Workspace. (triggers.revert) - * - * @param string $path GTM Trigger's API relative path. Example: accounts/{accou - * nt_id}/containers/{container_id}/workspaces/{workspace_id}/triggers/{trigger_ - * id} - * @param array $optParams Optional parameters. - * - * @opt_param string fingerprint When provided, this fingerprint must match the - * fingerprint of the trigger in storage. - * @return Google_Service_TagManager_RevertTriggerResponse - */ - public function revert($path, $optParams = array()) - { - $params = array('path' => $path); - $params = array_merge($params, $optParams); - return $this->call('revert', array($params), "Google_Service_TagManager_RevertTriggerResponse"); - } - /** - * Updates a GTM Trigger. (triggers.update) - * - * @param string $path GTM Trigger's API relative path. Example: accounts/{accou - * nt_id}/containers/{container_id}/workspaces/{workspace_id}/triggers/{trigger_ - * id} - * @param Google_Service_TagManager_Trigger $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string fingerprint When provided, this fingerprint must match the - * fingerprint of the trigger in storage. - * @return Google_Service_TagManager_Trigger - */ - public function update($path, Google_Service_TagManager_Trigger $postBody, $optParams = array()) - { - $params = array('path' => $path, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_TagManager_Trigger"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Resource/AccountsContainersWorkspacesVariables.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Resource/AccountsContainersWorkspacesVariables.php deleted file mode 100644 index f06ab9c2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Resource/AccountsContainersWorkspacesVariables.php +++ /dev/null @@ -1,127 +0,0 @@ - - * $tagmanagerService = new Google_Service_TagManager(...); - * $variables = $tagmanagerService->variables; - * - */ -class Google_Service_TagManager_Resource_AccountsContainersWorkspacesVariables extends Google_Service_Resource -{ - /** - * Creates a GTM Variable. (variables.create) - * - * @param string $parent GTM Workspace's API relative path. Example: - * accounts/{account_id}/containers/{container_id}/workspaces/{workspace_id} - * @param Google_Service_TagManager_Variable $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_TagManager_Variable - */ - public function create($parent, Google_Service_TagManager_Variable $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_TagManager_Variable"); - } - /** - * Deletes a GTM Variable. (variables.delete) - * - * @param string $path GTM Variable's API relative path. Example: accounts/{acco - * unt_id}/containers/{container_id}/workspaces/{workspace_id}/variables/{variab - * le_id} - * @param array $optParams Optional parameters. - */ - public function delete($path, $optParams = array()) - { - $params = array('path' => $path); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Gets a GTM Variable. (variables.get) - * - * @param string $path GTM Variable's API relative path. Example: accounts/{acco - * unt_id}/containers/{container_id}/workspaces/{workspace_id}/variables/{variab - * le_id} - * @param array $optParams Optional parameters. - * @return Google_Service_TagManager_Variable - */ - public function get($path, $optParams = array()) - { - $params = array('path' => $path); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_TagManager_Variable"); - } - /** - * Lists all GTM Variables of a Container. - * (variables.listAccountsContainersWorkspacesVariables) - * - * @param string $parent GTM Workspace's API relative path. Example: - * accounts/{account_id}/containers/{container_id}/workspaces/{workspace_id} - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Continuation token for fetching the next page of - * results. - * @return Google_Service_TagManager_ListVariablesResponse - */ - public function listAccountsContainersWorkspacesVariables($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_TagManager_ListVariablesResponse"); - } - /** - * Reverts changes to a GTM Variable in a GTM Workspace. (variables.revert) - * - * @param string $path GTM Variable's API relative path. Example: accounts/{acco - * unt_id}/containers/{container_id}/workspaces/{workspace_id}/variables/{variab - * le_id} - * @param array $optParams Optional parameters. - * - * @opt_param string fingerprint When provided, this fingerprint must match the - * fingerprint of the variable in storage. - * @return Google_Service_TagManager_RevertVariableResponse - */ - public function revert($path, $optParams = array()) - { - $params = array('path' => $path); - $params = array_merge($params, $optParams); - return $this->call('revert', array($params), "Google_Service_TagManager_RevertVariableResponse"); - } - /** - * Updates a GTM Variable. (variables.update) - * - * @param string $path GTM Variable's API relative path. Example: accounts/{acco - * unt_id}/containers/{container_id}/workspaces/{workspace_id}/variables/{variab - * le_id} - * @param Google_Service_TagManager_Variable $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string fingerprint When provided, this fingerprint must match the - * fingerprint of the variable in storage. - * @return Google_Service_TagManager_Variable - */ - public function update($path, Google_Service_TagManager_Variable $postBody, $optParams = array()) - { - $params = array('path' => $path, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_TagManager_Variable"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Resource/AccountsContainersWorkspacesZones.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Resource/AccountsContainersWorkspacesZones.php deleted file mode 100644 index 74f8ca0d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Resource/AccountsContainersWorkspacesZones.php +++ /dev/null @@ -1,123 +0,0 @@ - - * $tagmanagerService = new Google_Service_TagManager(...); - * $zones = $tagmanagerService->zones; - * - */ -class Google_Service_TagManager_Resource_AccountsContainersWorkspacesZones extends Google_Service_Resource -{ - /** - * Creates a GTM Zone. (zones.create) - * - * @param string $parent GTM Workspace's API relative path. Example: - * accounts/{account_id}/containers/{container_id}/workspaces/{workspace_id} - * @param Google_Service_TagManager_Zone $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_TagManager_Zone - */ - public function create($parent, Google_Service_TagManager_Zone $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_TagManager_Zone"); - } - /** - * Deletes a GTM Zone. (zones.delete) - * - * @param string $path GTM Zone's API relative path. Example: accounts/{account_ - * id}/containers/{container_id}/workspaces/{workspace_id}/zones/{zone_id} - * @param array $optParams Optional parameters. - */ - public function delete($path, $optParams = array()) - { - $params = array('path' => $path); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Gets a GTM Zone. (zones.get) - * - * @param string $path GTM Zone's API relative path. Example: accounts/{account_ - * id}/containers/{container_id}/workspaces/{workspace_id}/zones/{zone_id} - * @param array $optParams Optional parameters. - * @return Google_Service_TagManager_Zone - */ - public function get($path, $optParams = array()) - { - $params = array('path' => $path); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_TagManager_Zone"); - } - /** - * Lists all GTM Zones of a GTM container workspace. - * (zones.listAccountsContainersWorkspacesZones) - * - * @param string $parent GTM Workspace's API relative path. Example: - * accounts/{account_id}/containers/{container_id}/workspaces/{workspace_id} - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Continuation token for fetching the next page of - * results. - * @return Google_Service_TagManager_ListZonesResponse - */ - public function listAccountsContainersWorkspacesZones($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_TagManager_ListZonesResponse"); - } - /** - * Reverts changes to a GTM Zone in a GTM Workspace. (zones.revert) - * - * @param string $path GTM Zone's API relative path. Example: accounts/{account_ - * id}/containers/{container_id}/workspaces/{workspace_id}/zones/{zone_id} - * @param array $optParams Optional parameters. - * - * @opt_param string fingerprint When provided, this fingerprint must match the - * fingerprint of the zone in storage. - * @return Google_Service_TagManager_RevertZoneResponse - */ - public function revert($path, $optParams = array()) - { - $params = array('path' => $path); - $params = array_merge($params, $optParams); - return $this->call('revert', array($params), "Google_Service_TagManager_RevertZoneResponse"); - } - /** - * Updates a GTM Zone. (zones.update) - * - * @param string $path GTM Zone's API relative path. Example: accounts/{account_ - * id}/containers/{container_id}/workspaces/{workspace_id}/zones/{zone_id} - * @param Google_Service_TagManager_Zone $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string fingerprint When provided, this fingerprint must match the - * fingerprint of the zone in storage. - * @return Google_Service_TagManager_Zone - */ - public function update($path, Google_Service_TagManager_Zone $postBody, $optParams = array()) - { - $params = array('path' => $path, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_TagManager_Zone"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Resource/AccountsUserPermissions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Resource/AccountsUserPermissions.php deleted file mode 100644 index 38cc26c8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Resource/AccountsUserPermissions.php +++ /dev/null @@ -1,105 +0,0 @@ - - * $tagmanagerService = new Google_Service_TagManager(...); - * $user_permissions = $tagmanagerService->user_permissions; - * - */ -class Google_Service_TagManager_Resource_AccountsUserPermissions extends Google_Service_Resource -{ - /** - * Creates a user's Account & Container access. (user_permissions.create) - * - * @param string $parent GTM Account's API relative path. Example: - * accounts/{account_id} - * @param Google_Service_TagManager_UserPermission $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_TagManager_UserPermission - */ - public function create($parent, Google_Service_TagManager_UserPermission $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_TagManager_UserPermission"); - } - /** - * Removes a user from the account, revoking access to it and all of its - * containers. (user_permissions.delete) - * - * @param string $path GTM UserPermission's API relative path. Example: - * accounts/{account_id}/user_permissions/{user_permission_id} - * @param array $optParams Optional parameters. - */ - public function delete($path, $optParams = array()) - { - $params = array('path' => $path); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Gets a user's Account & Container access. (user_permissions.get) - * - * @param string $path GTM UserPermission's API relative path. Example: - * accounts/{account_id}/user_permissions/{user_permission_id} - * @param array $optParams Optional parameters. - * @return Google_Service_TagManager_UserPermission - */ - public function get($path, $optParams = array()) - { - $params = array('path' => $path); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_TagManager_UserPermission"); - } - /** - * List all users that have access to the account along with Account and - * Container user access granted to each of them. - * (user_permissions.listAccountsUserPermissions) - * - * @param string $parent GTM Accounts's API relative path. Example: - * accounts/{account_id} - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Continuation token for fetching the next page of - * results. - * @return Google_Service_TagManager_ListUserPermissionsResponse - */ - public function listAccountsUserPermissions($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_TagManager_ListUserPermissionsResponse"); - } - /** - * Updates a user's Account & Container access. (user_permissions.update) - * - * @param string $path GTM UserPermission's API relative path. Example: - * accounts/{account_id}/user_permissions/{user_permission_id} - * @param Google_Service_TagManager_UserPermission $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_TagManager_UserPermission - */ - public function update($path, Google_Service_TagManager_UserPermission $postBody, $optParams = array()) - { - $params = array('path' => $path, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_TagManager_UserPermission"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/RevertBuiltInVariableResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/RevertBuiltInVariableResponse.php deleted file mode 100644 index fdc604f6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/RevertBuiltInVariableResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -enabled = $enabled; - } - public function getEnabled() - { - return $this->enabled; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/RevertFolderResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/RevertFolderResponse.php deleted file mode 100644 index ebc5c396..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/RevertFolderResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -folder = $folder; - } - /** - * @return Google_Service_TagManager_Folder - */ - public function getFolder() - { - return $this->folder; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/RevertTagResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/RevertTagResponse.php deleted file mode 100644 index 413f73b5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/RevertTagResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -tag = $tag; - } - /** - * @return Google_Service_TagManager_Tag - */ - public function getTag() - { - return $this->tag; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/RevertTemplateResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/RevertTemplateResponse.php deleted file mode 100644 index f3e945dc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/RevertTemplateResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -template = $template; - } - /** - * @return Google_Service_TagManager_CustomTemplate - */ - public function getTemplate() - { - return $this->template; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/RevertTriggerResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/RevertTriggerResponse.php deleted file mode 100644 index 8eca7bfa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/RevertTriggerResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -trigger = $trigger; - } - /** - * @return Google_Service_TagManager_Trigger - */ - public function getTrigger() - { - return $this->trigger; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/RevertVariableResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/RevertVariableResponse.php deleted file mode 100644 index d19baeae..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/RevertVariableResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -variable = $variable; - } - /** - * @return Google_Service_TagManager_Variable - */ - public function getVariable() - { - return $this->variable; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/RevertZoneResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/RevertZoneResponse.php deleted file mode 100644 index 07982388..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/RevertZoneResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -zone = $zone; - } - /** - * @return Google_Service_TagManager_Zone - */ - public function getZone() - { - return $this->zone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/SetupTag.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/SetupTag.php deleted file mode 100644 index 248f00f8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/SetupTag.php +++ /dev/null @@ -1,39 +0,0 @@ -stopOnSetupFailure = $stopOnSetupFailure; - } - public function getStopOnSetupFailure() - { - return $this->stopOnSetupFailure; - } - public function setTagName($tagName) - { - $this->tagName = $tagName; - } - public function getTagName() - { - return $this->tagName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/SyncStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/SyncStatus.php deleted file mode 100644 index 165ffe3e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/SyncStatus.php +++ /dev/null @@ -1,39 +0,0 @@ -mergeConflict = $mergeConflict; - } - public function getMergeConflict() - { - return $this->mergeConflict; - } - public function setSyncError($syncError) - { - $this->syncError = $syncError; - } - public function getSyncError() - { - return $this->syncError; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/SyncWorkspaceResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/SyncWorkspaceResponse.php deleted file mode 100644 index 72967d28..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/SyncWorkspaceResponse.php +++ /dev/null @@ -1,54 +0,0 @@ -mergeConflict = $mergeConflict; - } - /** - * @return Google_Service_TagManager_MergeConflict - */ - public function getMergeConflict() - { - return $this->mergeConflict; - } - /** - * @param Google_Service_TagManager_SyncStatus - */ - public function setSyncStatus(Google_Service_TagManager_SyncStatus $syncStatus) - { - $this->syncStatus = $syncStatus; - } - /** - * @return Google_Service_TagManager_SyncStatus - */ - public function getSyncStatus() - { - return $this->syncStatus; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Tag.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Tag.php deleted file mode 100644 index ac0f95ef..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Tag.php +++ /dev/null @@ -1,291 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setBlockingRuleId($blockingRuleId) - { - $this->blockingRuleId = $blockingRuleId; - } - public function getBlockingRuleId() - { - return $this->blockingRuleId; - } - public function setBlockingTriggerId($blockingTriggerId) - { - $this->blockingTriggerId = $blockingTriggerId; - } - public function getBlockingTriggerId() - { - return $this->blockingTriggerId; - } - public function setContainerId($containerId) - { - $this->containerId = $containerId; - } - public function getContainerId() - { - return $this->containerId; - } - public function setFingerprint($fingerprint) - { - $this->fingerprint = $fingerprint; - } - public function getFingerprint() - { - return $this->fingerprint; - } - public function setFiringRuleId($firingRuleId) - { - $this->firingRuleId = $firingRuleId; - } - public function getFiringRuleId() - { - return $this->firingRuleId; - } - public function setFiringTriggerId($firingTriggerId) - { - $this->firingTriggerId = $firingTriggerId; - } - public function getFiringTriggerId() - { - return $this->firingTriggerId; - } - public function setLiveOnly($liveOnly) - { - $this->liveOnly = $liveOnly; - } - public function getLiveOnly() - { - return $this->liveOnly; - } - /** - * @param Google_Service_TagManager_Parameter - */ - public function setMonitoringMetadata(Google_Service_TagManager_Parameter $monitoringMetadata) - { - $this->monitoringMetadata = $monitoringMetadata; - } - /** - * @return Google_Service_TagManager_Parameter - */ - public function getMonitoringMetadata() - { - return $this->monitoringMetadata; - } - public function setMonitoringMetadataTagNameKey($monitoringMetadataTagNameKey) - { - $this->monitoringMetadataTagNameKey = $monitoringMetadataTagNameKey; - } - public function getMonitoringMetadataTagNameKey() - { - return $this->monitoringMetadataTagNameKey; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNotes($notes) - { - $this->notes = $notes; - } - public function getNotes() - { - return $this->notes; - } - /** - * @param Google_Service_TagManager_Parameter - */ - public function setParameter($parameter) - { - $this->parameter = $parameter; - } - /** - * @return Google_Service_TagManager_Parameter - */ - public function getParameter() - { - return $this->parameter; - } - public function setParentFolderId($parentFolderId) - { - $this->parentFolderId = $parentFolderId; - } - public function getParentFolderId() - { - return $this->parentFolderId; - } - public function setPath($path) - { - $this->path = $path; - } - public function getPath() - { - return $this->path; - } - public function setPaused($paused) - { - $this->paused = $paused; - } - public function getPaused() - { - return $this->paused; - } - /** - * @param Google_Service_TagManager_Parameter - */ - public function setPriority(Google_Service_TagManager_Parameter $priority) - { - $this->priority = $priority; - } - /** - * @return Google_Service_TagManager_Parameter - */ - public function getPriority() - { - return $this->priority; - } - public function setScheduleEndMs($scheduleEndMs) - { - $this->scheduleEndMs = $scheduleEndMs; - } - public function getScheduleEndMs() - { - return $this->scheduleEndMs; - } - public function setScheduleStartMs($scheduleStartMs) - { - $this->scheduleStartMs = $scheduleStartMs; - } - public function getScheduleStartMs() - { - return $this->scheduleStartMs; - } - /** - * @param Google_Service_TagManager_SetupTag - */ - public function setSetupTag($setupTag) - { - $this->setupTag = $setupTag; - } - /** - * @return Google_Service_TagManager_SetupTag - */ - public function getSetupTag() - { - return $this->setupTag; - } - public function setTagFiringOption($tagFiringOption) - { - $this->tagFiringOption = $tagFiringOption; - } - public function getTagFiringOption() - { - return $this->tagFiringOption; - } - public function setTagId($tagId) - { - $this->tagId = $tagId; - } - public function getTagId() - { - return $this->tagId; - } - public function setTagManagerUrl($tagManagerUrl) - { - $this->tagManagerUrl = $tagManagerUrl; - } - public function getTagManagerUrl() - { - return $this->tagManagerUrl; - } - /** - * @param Google_Service_TagManager_TeardownTag - */ - public function setTeardownTag($teardownTag) - { - $this->teardownTag = $teardownTag; - } - /** - * @return Google_Service_TagManager_TeardownTag - */ - public function getTeardownTag() - { - return $this->teardownTag; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setWorkspaceId($workspaceId) - { - $this->workspaceId = $workspaceId; - } - public function getWorkspaceId() - { - return $this->workspaceId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/TeardownTag.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/TeardownTag.php deleted file mode 100644 index 2873778c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/TeardownTag.php +++ /dev/null @@ -1,39 +0,0 @@ -stopTeardownOnFailure = $stopTeardownOnFailure; - } - public function getStopTeardownOnFailure() - { - return $this->stopTeardownOnFailure; - } - public function setTagName($tagName) - { - $this->tagName = $tagName; - } - public function getTagName() - { - return $this->tagName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Trigger.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Trigger.php deleted file mode 100644 index 0d486ffe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Trigger.php +++ /dev/null @@ -1,457 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - /** - * @param Google_Service_TagManager_Condition - */ - public function setAutoEventFilter($autoEventFilter) - { - $this->autoEventFilter = $autoEventFilter; - } - /** - * @return Google_Service_TagManager_Condition - */ - public function getAutoEventFilter() - { - return $this->autoEventFilter; - } - /** - * @param Google_Service_TagManager_Parameter - */ - public function setCheckValidation(Google_Service_TagManager_Parameter $checkValidation) - { - $this->checkValidation = $checkValidation; - } - /** - * @return Google_Service_TagManager_Parameter - */ - public function getCheckValidation() - { - return $this->checkValidation; - } - public function setContainerId($containerId) - { - $this->containerId = $containerId; - } - public function getContainerId() - { - return $this->containerId; - } - /** - * @param Google_Service_TagManager_Parameter - */ - public function setContinuousTimeMinMilliseconds(Google_Service_TagManager_Parameter $continuousTimeMinMilliseconds) - { - $this->continuousTimeMinMilliseconds = $continuousTimeMinMilliseconds; - } - /** - * @return Google_Service_TagManager_Parameter - */ - public function getContinuousTimeMinMilliseconds() - { - return $this->continuousTimeMinMilliseconds; - } - /** - * @param Google_Service_TagManager_Condition - */ - public function setCustomEventFilter($customEventFilter) - { - $this->customEventFilter = $customEventFilter; - } - /** - * @return Google_Service_TagManager_Condition - */ - public function getCustomEventFilter() - { - return $this->customEventFilter; - } - /** - * @param Google_Service_TagManager_Parameter - */ - public function setEventName(Google_Service_TagManager_Parameter $eventName) - { - $this->eventName = $eventName; - } - /** - * @return Google_Service_TagManager_Parameter - */ - public function getEventName() - { - return $this->eventName; - } - /** - * @param Google_Service_TagManager_Condition - */ - public function setFilter($filter) - { - $this->filter = $filter; - } - /** - * @return Google_Service_TagManager_Condition - */ - public function getFilter() - { - return $this->filter; - } - public function setFingerprint($fingerprint) - { - $this->fingerprint = $fingerprint; - } - public function getFingerprint() - { - return $this->fingerprint; - } - /** - * @param Google_Service_TagManager_Parameter - */ - public function setHorizontalScrollPercentageList(Google_Service_TagManager_Parameter $horizontalScrollPercentageList) - { - $this->horizontalScrollPercentageList = $horizontalScrollPercentageList; - } - /** - * @return Google_Service_TagManager_Parameter - */ - public function getHorizontalScrollPercentageList() - { - return $this->horizontalScrollPercentageList; - } - /** - * @param Google_Service_TagManager_Parameter - */ - public function setInterval(Google_Service_TagManager_Parameter $interval) - { - $this->interval = $interval; - } - /** - * @return Google_Service_TagManager_Parameter - */ - public function getInterval() - { - return $this->interval; - } - /** - * @param Google_Service_TagManager_Parameter - */ - public function setIntervalSeconds(Google_Service_TagManager_Parameter $intervalSeconds) - { - $this->intervalSeconds = $intervalSeconds; - } - /** - * @return Google_Service_TagManager_Parameter - */ - public function getIntervalSeconds() - { - return $this->intervalSeconds; - } - /** - * @param Google_Service_TagManager_Parameter - */ - public function setLimit(Google_Service_TagManager_Parameter $limit) - { - $this->limit = $limit; - } - /** - * @return Google_Service_TagManager_Parameter - */ - public function getLimit() - { - return $this->limit; - } - /** - * @param Google_Service_TagManager_Parameter - */ - public function setMaxTimerLengthSeconds(Google_Service_TagManager_Parameter $maxTimerLengthSeconds) - { - $this->maxTimerLengthSeconds = $maxTimerLengthSeconds; - } - /** - * @return Google_Service_TagManager_Parameter - */ - public function getMaxTimerLengthSeconds() - { - return $this->maxTimerLengthSeconds; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNotes($notes) - { - $this->notes = $notes; - } - public function getNotes() - { - return $this->notes; - } - /** - * @param Google_Service_TagManager_Parameter - */ - public function setParameter($parameter) - { - $this->parameter = $parameter; - } - /** - * @return Google_Service_TagManager_Parameter - */ - public function getParameter() - { - return $this->parameter; - } - public function setParentFolderId($parentFolderId) - { - $this->parentFolderId = $parentFolderId; - } - public function getParentFolderId() - { - return $this->parentFolderId; - } - public function setPath($path) - { - $this->path = $path; - } - public function getPath() - { - return $this->path; - } - /** - * @param Google_Service_TagManager_Parameter - */ - public function setSelector(Google_Service_TagManager_Parameter $selector) - { - $this->selector = $selector; - } - /** - * @return Google_Service_TagManager_Parameter - */ - public function getSelector() - { - return $this->selector; - } - public function setTagManagerUrl($tagManagerUrl) - { - $this->tagManagerUrl = $tagManagerUrl; - } - public function getTagManagerUrl() - { - return $this->tagManagerUrl; - } - /** - * @param Google_Service_TagManager_Parameter - */ - public function setTotalTimeMinMilliseconds(Google_Service_TagManager_Parameter $totalTimeMinMilliseconds) - { - $this->totalTimeMinMilliseconds = $totalTimeMinMilliseconds; - } - /** - * @return Google_Service_TagManager_Parameter - */ - public function getTotalTimeMinMilliseconds() - { - return $this->totalTimeMinMilliseconds; - } - public function setTriggerId($triggerId) - { - $this->triggerId = $triggerId; - } - public function getTriggerId() - { - return $this->triggerId; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - /** - * @param Google_Service_TagManager_Parameter - */ - public function setUniqueTriggerId(Google_Service_TagManager_Parameter $uniqueTriggerId) - { - $this->uniqueTriggerId = $uniqueTriggerId; - } - /** - * @return Google_Service_TagManager_Parameter - */ - public function getUniqueTriggerId() - { - return $this->uniqueTriggerId; - } - /** - * @param Google_Service_TagManager_Parameter - */ - public function setVerticalScrollPercentageList(Google_Service_TagManager_Parameter $verticalScrollPercentageList) - { - $this->verticalScrollPercentageList = $verticalScrollPercentageList; - } - /** - * @return Google_Service_TagManager_Parameter - */ - public function getVerticalScrollPercentageList() - { - return $this->verticalScrollPercentageList; - } - /** - * @param Google_Service_TagManager_Parameter - */ - public function setVisibilitySelector(Google_Service_TagManager_Parameter $visibilitySelector) - { - $this->visibilitySelector = $visibilitySelector; - } - /** - * @return Google_Service_TagManager_Parameter - */ - public function getVisibilitySelector() - { - return $this->visibilitySelector; - } - /** - * @param Google_Service_TagManager_Parameter - */ - public function setVisiblePercentageMax(Google_Service_TagManager_Parameter $visiblePercentageMax) - { - $this->visiblePercentageMax = $visiblePercentageMax; - } - /** - * @return Google_Service_TagManager_Parameter - */ - public function getVisiblePercentageMax() - { - return $this->visiblePercentageMax; - } - /** - * @param Google_Service_TagManager_Parameter - */ - public function setVisiblePercentageMin(Google_Service_TagManager_Parameter $visiblePercentageMin) - { - $this->visiblePercentageMin = $visiblePercentageMin; - } - /** - * @return Google_Service_TagManager_Parameter - */ - public function getVisiblePercentageMin() - { - return $this->visiblePercentageMin; - } - /** - * @param Google_Service_TagManager_Parameter - */ - public function setWaitForTags(Google_Service_TagManager_Parameter $waitForTags) - { - $this->waitForTags = $waitForTags; - } - /** - * @return Google_Service_TagManager_Parameter - */ - public function getWaitForTags() - { - return $this->waitForTags; - } - /** - * @param Google_Service_TagManager_Parameter - */ - public function setWaitForTagsTimeout(Google_Service_TagManager_Parameter $waitForTagsTimeout) - { - $this->waitForTagsTimeout = $waitForTagsTimeout; - } - /** - * @return Google_Service_TagManager_Parameter - */ - public function getWaitForTagsTimeout() - { - return $this->waitForTagsTimeout; - } - public function setWorkspaceId($workspaceId) - { - $this->workspaceId = $workspaceId; - } - public function getWorkspaceId() - { - return $this->workspaceId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/UserPermission.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/UserPermission.php deleted file mode 100644 index 031e18c1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/UserPermission.php +++ /dev/null @@ -1,81 +0,0 @@ -accountAccess = $accountAccess; - } - /** - * @return Google_Service_TagManager_AccountAccess - */ - public function getAccountAccess() - { - return $this->accountAccess; - } - public function setAccountId($accountId) - { - $this->accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - /** - * @param Google_Service_TagManager_ContainerAccess - */ - public function setContainerAccess($containerAccess) - { - $this->containerAccess = $containerAccess; - } - /** - * @return Google_Service_TagManager_ContainerAccess - */ - public function getContainerAccess() - { - return $this->containerAccess; - } - public function setEmailAddress($emailAddress) - { - $this->emailAddress = $emailAddress; - } - public function getEmailAddress() - { - return $this->emailAddress; - } - public function setPath($path) - { - $this->path = $path; - } - public function getPath() - { - return $this->path; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Variable.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Variable.php deleted file mode 100644 index edc266ba..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Variable.php +++ /dev/null @@ -1,189 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setContainerId($containerId) - { - $this->containerId = $containerId; - } - public function getContainerId() - { - return $this->containerId; - } - public function setDisablingTriggerId($disablingTriggerId) - { - $this->disablingTriggerId = $disablingTriggerId; - } - public function getDisablingTriggerId() - { - return $this->disablingTriggerId; - } - public function setEnablingTriggerId($enablingTriggerId) - { - $this->enablingTriggerId = $enablingTriggerId; - } - public function getEnablingTriggerId() - { - return $this->enablingTriggerId; - } - public function setFingerprint($fingerprint) - { - $this->fingerprint = $fingerprint; - } - public function getFingerprint() - { - return $this->fingerprint; - } - /** - * @param Google_Service_TagManager_VariableFormatValue - */ - public function setFormatValue(Google_Service_TagManager_VariableFormatValue $formatValue) - { - $this->formatValue = $formatValue; - } - /** - * @return Google_Service_TagManager_VariableFormatValue - */ - public function getFormatValue() - { - return $this->formatValue; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNotes($notes) - { - $this->notes = $notes; - } - public function getNotes() - { - return $this->notes; - } - /** - * @param Google_Service_TagManager_Parameter - */ - public function setParameter($parameter) - { - $this->parameter = $parameter; - } - /** - * @return Google_Service_TagManager_Parameter - */ - public function getParameter() - { - return $this->parameter; - } - public function setParentFolderId($parentFolderId) - { - $this->parentFolderId = $parentFolderId; - } - public function getParentFolderId() - { - return $this->parentFolderId; - } - public function setPath($path) - { - $this->path = $path; - } - public function getPath() - { - return $this->path; - } - public function setScheduleEndMs($scheduleEndMs) - { - $this->scheduleEndMs = $scheduleEndMs; - } - public function getScheduleEndMs() - { - return $this->scheduleEndMs; - } - public function setScheduleStartMs($scheduleStartMs) - { - $this->scheduleStartMs = $scheduleStartMs; - } - public function getScheduleStartMs() - { - return $this->scheduleStartMs; - } - public function setTagManagerUrl($tagManagerUrl) - { - $this->tagManagerUrl = $tagManagerUrl; - } - public function getTagManagerUrl() - { - return $this->tagManagerUrl; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setVariableId($variableId) - { - $this->variableId = $variableId; - } - public function getVariableId() - { - return $this->variableId; - } - public function setWorkspaceId($workspaceId) - { - $this->workspaceId = $workspaceId; - } - public function getWorkspaceId() - { - return $this->workspaceId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/VariableFormatValue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/VariableFormatValue.php deleted file mode 100644 index 60b5c8fa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/VariableFormatValue.php +++ /dev/null @@ -1,94 +0,0 @@ -caseConversionType = $caseConversionType; - } - public function getCaseConversionType() - { - return $this->caseConversionType; - } - /** - * @param Google_Service_TagManager_Parameter - */ - public function setConvertFalseToValue(Google_Service_TagManager_Parameter $convertFalseToValue) - { - $this->convertFalseToValue = $convertFalseToValue; - } - /** - * @return Google_Service_TagManager_Parameter - */ - public function getConvertFalseToValue() - { - return $this->convertFalseToValue; - } - /** - * @param Google_Service_TagManager_Parameter - */ - public function setConvertNullToValue(Google_Service_TagManager_Parameter $convertNullToValue) - { - $this->convertNullToValue = $convertNullToValue; - } - /** - * @return Google_Service_TagManager_Parameter - */ - public function getConvertNullToValue() - { - return $this->convertNullToValue; - } - /** - * @param Google_Service_TagManager_Parameter - */ - public function setConvertTrueToValue(Google_Service_TagManager_Parameter $convertTrueToValue) - { - $this->convertTrueToValue = $convertTrueToValue; - } - /** - * @return Google_Service_TagManager_Parameter - */ - public function getConvertTrueToValue() - { - return $this->convertTrueToValue; - } - /** - * @param Google_Service_TagManager_Parameter - */ - public function setConvertUndefinedToValue(Google_Service_TagManager_Parameter $convertUndefinedToValue) - { - $this->convertUndefinedToValue = $convertUndefinedToValue; - } - /** - * @return Google_Service_TagManager_Parameter - */ - public function getConvertUndefinedToValue() - { - return $this->convertUndefinedToValue; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Workspace.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Workspace.php deleted file mode 100644 index b0c8f17b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Workspace.php +++ /dev/null @@ -1,93 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setContainerId($containerId) - { - $this->containerId = $containerId; - } - public function getContainerId() - { - return $this->containerId; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setFingerprint($fingerprint) - { - $this->fingerprint = $fingerprint; - } - public function getFingerprint() - { - return $this->fingerprint; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setPath($path) - { - $this->path = $path; - } - public function getPath() - { - return $this->path; - } - public function setTagManagerUrl($tagManagerUrl) - { - $this->tagManagerUrl = $tagManagerUrl; - } - public function getTagManagerUrl() - { - return $this->tagManagerUrl; - } - public function setWorkspaceId($workspaceId) - { - $this->workspaceId = $workspaceId; - } - public function getWorkspaceId() - { - return $this->workspaceId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Zone.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Zone.php deleted file mode 100644 index cf2ac209..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/Zone.php +++ /dev/null @@ -1,151 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - /** - * @param Google_Service_TagManager_ZoneBoundary - */ - public function setBoundary(Google_Service_TagManager_ZoneBoundary $boundary) - { - $this->boundary = $boundary; - } - /** - * @return Google_Service_TagManager_ZoneBoundary - */ - public function getBoundary() - { - return $this->boundary; - } - /** - * @param Google_Service_TagManager_ZoneChildContainer - */ - public function setChildContainer($childContainer) - { - $this->childContainer = $childContainer; - } - /** - * @return Google_Service_TagManager_ZoneChildContainer - */ - public function getChildContainer() - { - return $this->childContainer; - } - public function setContainerId($containerId) - { - $this->containerId = $containerId; - } - public function getContainerId() - { - return $this->containerId; - } - public function setFingerprint($fingerprint) - { - $this->fingerprint = $fingerprint; - } - public function getFingerprint() - { - return $this->fingerprint; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNotes($notes) - { - $this->notes = $notes; - } - public function getNotes() - { - return $this->notes; - } - public function setPath($path) - { - $this->path = $path; - } - public function getPath() - { - return $this->path; - } - public function setTagManagerUrl($tagManagerUrl) - { - $this->tagManagerUrl = $tagManagerUrl; - } - public function getTagManagerUrl() - { - return $this->tagManagerUrl; - } - /** - * @param Google_Service_TagManager_ZoneTypeRestriction - */ - public function setTypeRestriction(Google_Service_TagManager_ZoneTypeRestriction $typeRestriction) - { - $this->typeRestriction = $typeRestriction; - } - /** - * @return Google_Service_TagManager_ZoneTypeRestriction - */ - public function getTypeRestriction() - { - return $this->typeRestriction; - } - public function setWorkspaceId($workspaceId) - { - $this->workspaceId = $workspaceId; - } - public function getWorkspaceId() - { - return $this->workspaceId; - } - public function setZoneId($zoneId) - { - $this->zoneId = $zoneId; - } - public function getZoneId() - { - return $this->zoneId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ZoneBoundary.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ZoneBoundary.php deleted file mode 100644 index 1c43d697..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ZoneBoundary.php +++ /dev/null @@ -1,47 +0,0 @@ -condition = $condition; - } - /** - * @return Google_Service_TagManager_Condition - */ - public function getCondition() - { - return $this->condition; - } - public function setCustomEvaluationTriggerId($customEvaluationTriggerId) - { - $this->customEvaluationTriggerId = $customEvaluationTriggerId; - } - public function getCustomEvaluationTriggerId() - { - return $this->customEvaluationTriggerId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ZoneChildContainer.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ZoneChildContainer.php deleted file mode 100644 index ccedd2a8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ZoneChildContainer.php +++ /dev/null @@ -1,39 +0,0 @@ -nickname = $nickname; - } - public function getNickname() - { - return $this->nickname; - } - public function setPublicId($publicId) - { - $this->publicId = $publicId; - } - public function getPublicId() - { - return $this->publicId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ZoneTypeRestriction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ZoneTypeRestriction.php deleted file mode 100644 index a9ce16fa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/TagManager/ZoneTypeRestriction.php +++ /dev/null @@ -1,40 +0,0 @@ -enable = $enable; - } - public function getEnable() - { - return $this->enable; - } - public function setWhitelistedTypeId($whitelistedTypeId) - { - $this->whitelistedTypeId = $whitelistedTypeId; - } - public function getWhitelistedTypeId() - { - return $this->whitelistedTypeId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Taskqueue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Taskqueue.php deleted file mode 100644 index dffefd04..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Taskqueue.php +++ /dev/null @@ -1,249 +0,0 @@ - - * Accesses a Google App Engine Pull Task Queue over REST.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Taskqueue extends Google_Service -{ - /** Manage your Tasks and Taskqueues. */ - const TASKQUEUE = - "https://www.googleapis.com/auth/taskqueue"; - /** Consume Tasks from your Taskqueues. */ - const TASKQUEUE_CONSUMER = - "https://www.googleapis.com/auth/taskqueue.consumer"; - - public $taskqueues; - public $tasks; - - /** - * Constructs the internal representation of the Taskqueue service. - * - * @param Google_Client $client - */ - public function __construct(Google_Client $client) - { - parent::__construct($client); - $this->rootUrl = 'https://www.googleapis.com/'; - $this->servicePath = 'taskqueue/v1beta2/projects/'; - $this->version = 'v1beta2'; - $this->serviceName = 'taskqueue'; - - $this->taskqueues = new Google_Service_Taskqueue_Resource_Taskqueues( - $this, - $this->serviceName, - 'taskqueues', - array( - 'methods' => array( - 'get' => array( - 'path' => '{project}/taskqueues/{taskqueue}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'taskqueue' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'getStats' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ), - ) - ) - ); - $this->tasks = new Google_Service_Taskqueue_Resource_Tasks( - $this, - $this->serviceName, - 'tasks', - array( - 'methods' => array( - 'delete' => array( - 'path' => '{project}/taskqueues/{taskqueue}/tasks/{task}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'taskqueue' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'task' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => '{project}/taskqueues/{taskqueue}/tasks/{task}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'taskqueue' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'task' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => '{project}/taskqueues/{taskqueue}/tasks', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'taskqueue' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'lease' => array( - 'path' => '{project}/taskqueues/{taskqueue}/tasks/lease', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'taskqueue' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'numTasks' => array( - 'location' => 'query', - 'type' => 'integer', - 'required' => true, - ), - 'leaseSecs' => array( - 'location' => 'query', - 'type' => 'integer', - 'required' => true, - ), - 'groupByTag' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'tag' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => '{project}/taskqueues/{taskqueue}/tasks', - 'httpMethod' => 'GET', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'taskqueue' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'patch' => array( - 'path' => '{project}/taskqueues/{taskqueue}/tasks/{task}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'taskqueue' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'task' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'newLeaseSeconds' => array( - 'location' => 'query', - 'type' => 'integer', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => '{project}/taskqueues/{taskqueue}/tasks/{task}', - 'httpMethod' => 'POST', - 'parameters' => array( - 'project' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'taskqueue' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'task' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'newLeaseSeconds' => array( - 'location' => 'query', - 'type' => 'integer', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Taskqueue/Resource/Taskqueues.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Taskqueue/Resource/Taskqueues.php deleted file mode 100644 index 42c920d6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Taskqueue/Resource/Taskqueues.php +++ /dev/null @@ -1,44 +0,0 @@ - - * $taskqueueService = new Google_Service_Taskqueue(...); - * $taskqueues = $taskqueueService->taskqueues; - * - */ -class Google_Service_Taskqueue_Resource_Taskqueues extends Google_Service_Resource -{ - /** - * Get detailed information about a TaskQueue. (taskqueues.get) - * - * @param string $project The project under which the queue lies. - * @param string $taskqueue The id of the taskqueue to get the properties of. - * @param array $optParams Optional parameters. - * - * @opt_param bool getStats Whether to get stats. Optional. - * @return Google_Service_Taskqueue_TaskQueue - */ - public function get($project, $taskqueue, $optParams = array()) - { - $params = array('project' => $project, 'taskqueue' => $taskqueue); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Taskqueue_TaskQueue"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Taskqueue/Resource/Tasks.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Taskqueue/Resource/Tasks.php deleted file mode 100644 index 3f4862a2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Taskqueue/Resource/Tasks.php +++ /dev/null @@ -1,144 +0,0 @@ - - * $taskqueueService = new Google_Service_Taskqueue(...); - * $tasks = $taskqueueService->tasks; - * - */ -class Google_Service_Taskqueue_Resource_Tasks extends Google_Service_Resource -{ - /** - * Delete a task from a TaskQueue. (tasks.delete) - * - * @param string $project The project under which the queue lies. - * @param string $taskqueue The taskqueue to delete a task from. - * @param string $task The id of the task to delete. - * @param array $optParams Optional parameters. - */ - public function delete($project, $taskqueue, $task, $optParams = array()) - { - $params = array('project' => $project, 'taskqueue' => $taskqueue, 'task' => $task); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Get a particular task from a TaskQueue. (tasks.get) - * - * @param string $project The project under which the queue lies. - * @param string $taskqueue The taskqueue in which the task belongs. - * @param string $task The task to get properties of. - * @param array $optParams Optional parameters. - * @return Google_Service_Taskqueue_Task - */ - public function get($project, $taskqueue, $task, $optParams = array()) - { - $params = array('project' => $project, 'taskqueue' => $taskqueue, 'task' => $task); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Taskqueue_Task"); - } - /** - * Insert a new task in a TaskQueue (tasks.insert) - * - * @param string $project The project under which the queue lies - * @param string $taskqueue The taskqueue to insert the task into - * @param Google_Service_Taskqueue_Task $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Taskqueue_Task - */ - public function insert($project, $taskqueue, Google_Service_Taskqueue_Task $postBody, $optParams = array()) - { - $params = array('project' => $project, 'taskqueue' => $taskqueue, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Taskqueue_Task"); - } - /** - * Lease 1 or more tasks from a TaskQueue. (tasks.lease) - * - * @param string $project The project under which the queue lies. - * @param string $taskqueue The taskqueue to lease a task from. - * @param int $numTasks The number of tasks to lease. - * @param int $leaseSecs The lease in seconds. - * @param array $optParams Optional parameters. - * - * @opt_param bool groupByTag When true, all returned tasks will have the same - * tag - * @opt_param string tag The tag allowed for tasks in the response. Must only be - * specified if group_by_tag is true. If group_by_tag is true and tag is not - * specified the tag will be that of the oldest task by eta, i.e. the first - * available tag - * @return Google_Service_Taskqueue_Tasks - */ - public function lease($project, $taskqueue, $numTasks, $leaseSecs, $optParams = array()) - { - $params = array('project' => $project, 'taskqueue' => $taskqueue, 'numTasks' => $numTasks, 'leaseSecs' => $leaseSecs); - $params = array_merge($params, $optParams); - return $this->call('lease', array($params), "Google_Service_Taskqueue_Tasks"); - } - /** - * List Tasks in a TaskQueue (tasks.listTasks) - * - * @param string $project The project under which the queue lies. - * @param string $taskqueue The id of the taskqueue to list tasks from. - * @param array $optParams Optional parameters. - * @return Google_Service_Taskqueue_Tasks2 - */ - public function listTasks($project, $taskqueue, $optParams = array()) - { - $params = array('project' => $project, 'taskqueue' => $taskqueue); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Taskqueue_Tasks2"); - } - /** - * Update tasks that are leased out of a TaskQueue. This method supports patch - * semantics. (tasks.patch) - * - * @param string $project The project under which the queue lies. - * @param string $taskqueue - * @param string $task - * @param int $newLeaseSeconds The new lease in seconds. - * @param Google_Service_Taskqueue_Task $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Taskqueue_Task - */ - public function patch($project, $taskqueue, $task, $newLeaseSeconds, Google_Service_Taskqueue_Task $postBody, $optParams = array()) - { - $params = array('project' => $project, 'taskqueue' => $taskqueue, 'task' => $task, 'newLeaseSeconds' => $newLeaseSeconds, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Taskqueue_Task"); - } - /** - * Update tasks that are leased out of a TaskQueue. (tasks.update) - * - * @param string $project The project under which the queue lies. - * @param string $taskqueue - * @param string $task - * @param int $newLeaseSeconds The new lease in seconds. - * @param Google_Service_Taskqueue_Task $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Taskqueue_Task - */ - public function update($project, $taskqueue, $task, $newLeaseSeconds, Google_Service_Taskqueue_Task $postBody, $optParams = array()) - { - $params = array('project' => $project, 'taskqueue' => $taskqueue, 'task' => $task, 'newLeaseSeconds' => $newLeaseSeconds, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Taskqueue_Task"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Taskqueue/Task.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Taskqueue/Task.php deleted file mode 100644 index 60726486..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Taskqueue/Task.php +++ /dev/null @@ -1,96 +0,0 @@ - "retry_count", - ); - public $enqueueTimestamp; - public $id; - public $kind; - public $leaseTimestamp; - public $payloadBase64; - public $queueName; - public $retryCount; - public $tag; - - public function setEnqueueTimestamp($enqueueTimestamp) - { - $this->enqueueTimestamp = $enqueueTimestamp; - } - public function getEnqueueTimestamp() - { - return $this->enqueueTimestamp; - } - 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 setLeaseTimestamp($leaseTimestamp) - { - $this->leaseTimestamp = $leaseTimestamp; - } - public function getLeaseTimestamp() - { - return $this->leaseTimestamp; - } - public function setPayloadBase64($payloadBase64) - { - $this->payloadBase64 = $payloadBase64; - } - public function getPayloadBase64() - { - return $this->payloadBase64; - } - public function setQueueName($queueName) - { - $this->queueName = $queueName; - } - public function getQueueName() - { - return $this->queueName; - } - public function setRetryCount($retryCount) - { - $this->retryCount = $retryCount; - } - public function getRetryCount() - { - return $this->retryCount; - } - public function setTag($tag) - { - $this->tag = $tag; - } - public function getTag() - { - return $this->tag; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Taskqueue/TaskQueue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Taskqueue/TaskQueue.php deleted file mode 100644 index 7e75536f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Taskqueue/TaskQueue.php +++ /dev/null @@ -1,80 +0,0 @@ -acl = $acl; - } - /** - * @return Google_Service_Taskqueue_TaskQueueAcl - */ - public function getAcl() - { - return $this->acl; - } - 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 setMaxLeases($maxLeases) - { - $this->maxLeases = $maxLeases; - } - public function getMaxLeases() - { - return $this->maxLeases; - } - /** - * @param Google_Service_Taskqueue_TaskQueueStats - */ - public function setStats(Google_Service_Taskqueue_TaskQueueStats $stats) - { - $this->stats = $stats; - } - /** - * @return Google_Service_Taskqueue_TaskQueueStats - */ - public function getStats() - { - return $this->stats; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Taskqueue/TaskQueueAcl.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Taskqueue/TaskQueueAcl.php deleted file mode 100644 index e688b4c1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Taskqueue/TaskQueueAcl.php +++ /dev/null @@ -1,49 +0,0 @@ -adminEmails = $adminEmails; - } - public function getAdminEmails() - { - return $this->adminEmails; - } - public function setConsumerEmails($consumerEmails) - { - $this->consumerEmails = $consumerEmails; - } - public function getConsumerEmails() - { - return $this->consumerEmails; - } - public function setProducerEmails($producerEmails) - { - $this->producerEmails = $producerEmails; - } - public function getProducerEmails() - { - return $this->producerEmails; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Taskqueue/TaskQueueStats.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Taskqueue/TaskQueueStats.php deleted file mode 100644 index 27822475..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Taskqueue/TaskQueueStats.php +++ /dev/null @@ -1,57 +0,0 @@ -leasedLastHour = $leasedLastHour; - } - public function getLeasedLastHour() - { - return $this->leasedLastHour; - } - public function setLeasedLastMinute($leasedLastMinute) - { - $this->leasedLastMinute = $leasedLastMinute; - } - public function getLeasedLastMinute() - { - return $this->leasedLastMinute; - } - public function setOldestTask($oldestTask) - { - $this->oldestTask = $oldestTask; - } - public function getOldestTask() - { - return $this->oldestTask; - } - public function setTotalTasks($totalTasks) - { - $this->totalTasks = $totalTasks; - } - public function getTotalTasks() - { - return $this->totalTasks; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Taskqueue/Tasks.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Taskqueue/Tasks.php deleted file mode 100644 index 0e9ff192..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Taskqueue/Tasks.php +++ /dev/null @@ -1,47 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Taskqueue_Task - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Taskqueue/Tasks2.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Taskqueue/Tasks2.php deleted file mode 100644 index 1c455285..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Taskqueue/Tasks2.php +++ /dev/null @@ -1,47 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Taskqueue_Task - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tasks.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tasks.php deleted file mode 100644 index d4e1cfeb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tasks.php +++ /dev/null @@ -1,297 +0,0 @@ - - * Manages your tasks and task lists.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Tasks extends Google_Service -{ - /** Create, edit, organize, and delete all your tasks. */ - const TASKS = - "https://www.googleapis.com/auth/tasks"; - /** View your tasks. */ - const TASKS_READONLY = - "https://www.googleapis.com/auth/tasks.readonly"; - - public $tasklists; - public $tasks; - - /** - * Constructs the internal representation of the Tasks service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://www.googleapis.com/'; - $this->servicePath = 'tasks/v1/'; - $this->batchPath = 'batch/tasks/v1'; - $this->version = 'v1'; - $this->serviceName = 'tasks'; - - $this->tasklists = new Google_Service_Tasks_Resource_Tasklists( - $this, - $this->serviceName, - 'tasklists', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'users/@me/lists/{tasklist}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'tasklist' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'users/@me/lists/{tasklist}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'tasklist' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'users/@me/lists', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'list' => array( - 'path' => 'users/@me/lists', - 'httpMethod' => 'GET', - 'parameters' => array( - 'maxResults' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'users/@me/lists/{tasklist}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'tasklist' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'users/@me/lists/{tasklist}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'tasklist' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->tasks = new Google_Service_Tasks_Resource_Tasks( - $this, - $this->serviceName, - 'tasks', - array( - 'methods' => array( - 'clear' => array( - 'path' => 'lists/{tasklist}/clear', - 'httpMethod' => 'POST', - 'parameters' => array( - 'tasklist' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'lists/{tasklist}/tasks/{task}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'tasklist' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'task' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'lists/{tasklist}/tasks/{task}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'tasklist' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'task' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'lists/{tasklist}/tasks', - 'httpMethod' => 'POST', - 'parameters' => array( - 'tasklist' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'parent' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'previous' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'lists/{tasklist}/tasks', - 'httpMethod' => 'GET', - 'parameters' => array( - 'tasklist' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'completedMax' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'completedMin' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'dueMax' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'dueMin' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'showCompleted' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'showDeleted' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'showHidden' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'updatedMin' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'move' => array( - 'path' => 'lists/{tasklist}/tasks/{task}/move', - 'httpMethod' => 'POST', - 'parameters' => array( - 'tasklist' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'task' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'parent' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'previous' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'patch' => array( - 'path' => 'lists/{tasklist}/tasks/{task}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'tasklist' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'task' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'lists/{tasklist}/tasks/{task}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'tasklist' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'task' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tasks/Resource/Tasklists.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tasks/Resource/Tasklists.php deleted file mode 100644 index 20bbb849..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tasks/Resource/Tasklists.php +++ /dev/null @@ -1,114 +0,0 @@ - - * $tasksService = new Google_Service_Tasks(...); - * $tasklists = $tasksService->tasklists; - * - */ -class Google_Service_Tasks_Resource_Tasklists extends Google_Service_Resource -{ - /** - * Deletes the authenticated user's specified task list. (tasklists.delete) - * - * @param string $tasklist Task list identifier. - * @param array $optParams Optional parameters. - */ - public function delete($tasklist, $optParams = array()) - { - $params = array('tasklist' => $tasklist); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Returns the authenticated user's specified task list. (tasklists.get) - * - * @param string $tasklist Task list identifier. - * @param array $optParams Optional parameters. - * @return Google_Service_Tasks_TaskList - */ - public function get($tasklist, $optParams = array()) - { - $params = array('tasklist' => $tasklist); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Tasks_TaskList"); - } - /** - * Creates a new task list and adds it to the authenticated user's task lists. - * Fails with HTTP code 403 or 429 after reaching the storage limit of 2,000 - * lists. (tasklists.insert) - * - * @param Google_Service_Tasks_TaskList $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Tasks_TaskList - */ - public function insert(Google_Service_Tasks_TaskList $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Tasks_TaskList"); - } - /** - * Returns all the authenticated user's task lists. (tasklists.listTasklists) - * - * @param array $optParams Optional parameters. - * - * @opt_param string maxResults Maximum number of task lists returned on one - * page. Optional. The default is 20 (max allowed: 100). - * @opt_param string pageToken Token specifying the result page to return. - * Optional. - * @return Google_Service_Tasks_TaskLists - */ - public function listTasklists($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Tasks_TaskLists"); - } - /** - * Updates the authenticated user's specified task list. This method supports - * patch semantics. (tasklists.patch) - * - * @param string $tasklist Task list identifier. - * @param Google_Service_Tasks_TaskList $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Tasks_TaskList - */ - public function patch($tasklist, Google_Service_Tasks_TaskList $postBody, $optParams = array()) - { - $params = array('tasklist' => $tasklist, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Tasks_TaskList"); - } - /** - * Updates the authenticated user's specified task list. (tasklists.update) - * - * @param string $tasklist Task list identifier. - * @param Google_Service_Tasks_TaskList $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Tasks_TaskList - */ - public function update($tasklist, Google_Service_Tasks_TaskList $postBody, $optParams = array()) - { - $params = array('tasklist' => $tasklist, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Tasks_TaskList"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tasks/Resource/Tasks.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tasks/Resource/Tasks.php deleted file mode 100644 index 4f6ad182..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tasks/Resource/Tasks.php +++ /dev/null @@ -1,181 +0,0 @@ - - * $tasksService = new Google_Service_Tasks(...); - * $tasks = $tasksService->tasks; - * - */ -class Google_Service_Tasks_Resource_Tasks extends Google_Service_Resource -{ - /** - * Clears all completed tasks from the specified task list. The affected tasks - * will be marked as 'hidden' and no longer be returned by default when - * retrieving all tasks for a task list. (tasks.clear) - * - * @param string $tasklist Task list identifier. - * @param array $optParams Optional parameters. - */ - public function clear($tasklist, $optParams = array()) - { - $params = array('tasklist' => $tasklist); - $params = array_merge($params, $optParams); - return $this->call('clear', array($params)); - } - /** - * Deletes the specified task from the task list. (tasks.delete) - * - * @param string $tasklist Task list identifier. - * @param string $task Task identifier. - * @param array $optParams Optional parameters. - */ - public function delete($tasklist, $task, $optParams = array()) - { - $params = array('tasklist' => $tasklist, 'task' => $task); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Returns the specified task. (tasks.get) - * - * @param string $tasklist Task list identifier. - * @param string $task Task identifier. - * @param array $optParams Optional parameters. - * @return Google_Service_Tasks_Task - */ - public function get($tasklist, $task, $optParams = array()) - { - $params = array('tasklist' => $tasklist, 'task' => $task); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Tasks_Task"); - } - /** - * Creates a new task on the specified task list. Fails with HTTP code 403 or - * 429 after reaching the storage limit of 100,000 tasks per account. - * (tasks.insert) - * - * @param string $tasklist Task list identifier. - * @param Google_Service_Tasks_Task $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string parent Parent task identifier. If the task is created at - * the top level, this parameter is omitted. Optional. - * @opt_param string previous Previous sibling task identifier. If the task is - * created at the first position among its siblings, this parameter is omitted. - * Optional. - * @return Google_Service_Tasks_Task - */ - public function insert($tasklist, Google_Service_Tasks_Task $postBody, $optParams = array()) - { - $params = array('tasklist' => $tasklist, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Tasks_Task"); - } - /** - * Returns all tasks in the specified task list. (tasks.listTasks) - * - * @param string $tasklist Task list identifier. - * @param array $optParams Optional parameters. - * - * @opt_param string completedMax Upper bound for a task's completion date (as a - * RFC 3339 timestamp) to filter by. Optional. The default is not to filter by - * completion date. - * @opt_param string completedMin Lower bound for a task's completion date (as a - * RFC 3339 timestamp) to filter by. Optional. The default is not to filter by - * completion date. - * @opt_param string dueMax Upper bound for a task's due date (as a RFC 3339 - * timestamp) to filter by. Optional. The default is not to filter by due date. - * @opt_param string dueMin Lower bound for a task's due date (as a RFC 3339 - * timestamp) to filter by. Optional. The default is not to filter by due date. - * @opt_param string maxResults Maximum number of task lists returned on one - * page. Optional. The default is 20 (max allowed: 100). - * @opt_param string pageToken Token specifying the result page to return. - * Optional. - * @opt_param bool showCompleted Flag indicating whether completed tasks are - * returned in the result. Optional. The default is True. - * @opt_param bool showDeleted Flag indicating whether deleted tasks are - * returned in the result. Optional. The default is False. - * @opt_param bool showHidden Flag indicating whether hidden tasks are returned - * in the result. Optional. The default is False. - * @opt_param string updatedMin Lower bound for a task's last modification time - * (as a RFC 3339 timestamp) to filter by. Optional. The default is not to - * filter by last modification time. - * @return Google_Service_Tasks_Tasks - */ - public function listTasks($tasklist, $optParams = array()) - { - $params = array('tasklist' => $tasklist); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Tasks_Tasks"); - } - /** - * Moves the specified task to another position in the task list. This can - * include putting it as a child task under a new parent and/or move it to a - * different position among its sibling tasks. (tasks.move) - * - * @param string $tasklist Task list identifier. - * @param string $task Task identifier. - * @param array $optParams Optional parameters. - * - * @opt_param string parent New parent task identifier. If the task is moved to - * the top level, this parameter is omitted. Optional. - * @opt_param string previous New previous sibling task identifier. If the task - * is moved to the first position among its siblings, this parameter is omitted. - * Optional. - * @return Google_Service_Tasks_Task - */ - public function move($tasklist, $task, $optParams = array()) - { - $params = array('tasklist' => $tasklist, 'task' => $task); - $params = array_merge($params, $optParams); - return $this->call('move', array($params), "Google_Service_Tasks_Task"); - } - /** - * Updates the specified task. This method supports patch semantics. - * (tasks.patch) - * - * @param string $tasklist Task list identifier. - * @param string $task Task identifier. - * @param Google_Service_Tasks_Task $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Tasks_Task - */ - public function patch($tasklist, $task, Google_Service_Tasks_Task $postBody, $optParams = array()) - { - $params = array('tasklist' => $tasklist, 'task' => $task, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Tasks_Task"); - } - /** - * Updates the specified task. (tasks.update) - * - * @param string $tasklist Task list identifier. - * @param string $task Task identifier. - * @param Google_Service_Tasks_Task $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Tasks_Task - */ - public function update($tasklist, $task, Google_Service_Tasks_Task $postBody, $optParams = array()) - { - $params = array('tasklist' => $tasklist, 'task' => $task, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Tasks_Task"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tasks/Task.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tasks/Task.php deleted file mode 100644 index ebdd214c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tasks/Task.php +++ /dev/null @@ -1,164 +0,0 @@ -completed = $completed; - } - public function getCompleted() - { - return $this->completed; - } - public function setDeleted($deleted) - { - $this->deleted = $deleted; - } - public function getDeleted() - { - return $this->deleted; - } - public function setDue($due) - { - $this->due = $due; - } - public function getDue() - { - return $this->due; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setHidden($hidden) - { - $this->hidden = $hidden; - } - public function getHidden() - { - return $this->hidden; - } - 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; - } - /** - * @param Google_Service_Tasks_TaskLinks - */ - public function setLinks($links) - { - $this->links = $links; - } - /** - * @return Google_Service_Tasks_TaskLinks - */ - public function getLinks() - { - return $this->links; - } - public function setNotes($notes) - { - $this->notes = $notes; - } - public function getNotes() - { - return $this->notes; - } - public function setParent($parent) - { - $this->parent = $parent; - } - public function getParent() - { - return $this->parent; - } - public function setPosition($position) - { - $this->position = $position; - } - public function getPosition() - { - return $this->position; - } - public function setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setUpdated($updated) - { - $this->updated = $updated; - } - public function getUpdated() - { - return $this->updated; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tasks/TaskLinks.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tasks/TaskLinks.php deleted file mode 100644 index 7f429dd4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tasks/TaskLinks.php +++ /dev/null @@ -1,48 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setLink($link) - { - $this->link = $link; - } - public function getLink() - { - return $this->link; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tasks/TaskList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tasks/TaskList.php deleted file mode 100644 index df5522ad..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tasks/TaskList.php +++ /dev/null @@ -1,75 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - 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 setSelfLink($selfLink) - { - $this->selfLink = $selfLink; - } - public function getSelfLink() - { - return $this->selfLink; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setUpdated($updated) - { - $this->updated = $updated; - } - public function getUpdated() - { - return $this->updated; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tasks/TaskLists.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tasks/TaskLists.php deleted file mode 100644 index 5a1c1f7b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tasks/TaskLists.php +++ /dev/null @@ -1,65 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_Tasks_TaskList - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Tasks_TaskList - */ - public function getItems() - { - return $this->items; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tasks/Tasks.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tasks/Tasks.php deleted file mode 100644 index 4b2ba142..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tasks/Tasks.php +++ /dev/null @@ -1,65 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_Tasks_Task - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_Tasks_Task - */ - public function getItems() - { - return $this->items; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing.php deleted file mode 100644 index af800f09..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing.php +++ /dev/null @@ -1,153 +0,0 @@ - - * Allows developers to run automated tests for their mobile applications on - * Google infrastructure.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Testing extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** View your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM_READ_ONLY = - "https://www.googleapis.com/auth/cloud-platform.read-only"; - - public $applicationDetailService; - public $projects_testMatrices; - public $testEnvironmentCatalog; - - /** - * Constructs the internal representation of the Testing service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://testing.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'testing'; - - $this->applicationDetailService = new Google_Service_Testing_Resource_ApplicationDetailService( - $this, - $this->serviceName, - 'applicationDetailService', - array( - 'methods' => array( - 'getApkDetails' => array( - 'path' => 'v1/applicationDetailService/getApkDetails', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->projects_testMatrices = new Google_Service_Testing_Resource_ProjectsTestMatrices( - $this, - $this->serviceName, - 'testMatrices', - array( - 'methods' => array( - 'cancel' => array( - 'path' => 'v1/projects/{projectId}/testMatrices/{testMatrixId}:cancel', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'testMatrixId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'create' => array( - 'path' => 'v1/projects/{projectId}/testMatrices', - 'httpMethod' => 'POST', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'requestId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'v1/projects/{projectId}/testMatrices/{testMatrixId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projectId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'testMatrixId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->testEnvironmentCatalog = new Google_Service_Testing_Resource_TestEnvironmentCatalog( - $this, - $this->serviceName, - 'testEnvironmentCatalog', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/testEnvironmentCatalog/{environmentType}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'environmentType' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'projectId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/Account.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/Account.php deleted file mode 100644 index 3313bd67..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/Account.php +++ /dev/null @@ -1,37 +0,0 @@ -googleAuto = $googleAuto; - } - /** - * @return Google_Service_Testing_GoogleAuto - */ - public function getGoogleAuto() - { - return $this->googleAuto; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/AndroidDevice.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/AndroidDevice.php deleted file mode 100644 index 4fd3b4d2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/AndroidDevice.php +++ /dev/null @@ -1,57 +0,0 @@ -androidModelId = $androidModelId; - } - public function getAndroidModelId() - { - return $this->androidModelId; - } - public function setAndroidVersionId($androidVersionId) - { - $this->androidVersionId = $androidVersionId; - } - public function getAndroidVersionId() - { - return $this->androidVersionId; - } - public function setLocale($locale) - { - $this->locale = $locale; - } - public function getLocale() - { - return $this->locale; - } - public function setOrientation($orientation) - { - $this->orientation = $orientation; - } - public function getOrientation() - { - return $this->orientation; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/AndroidDeviceCatalog.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/AndroidDeviceCatalog.php deleted file mode 100644 index b5b45ee6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/AndroidDeviceCatalog.php +++ /dev/null @@ -1,70 +0,0 @@ -models = $models; - } - /** - * @return Google_Service_Testing_AndroidModel - */ - public function getModels() - { - return $this->models; - } - /** - * @param Google_Service_Testing_AndroidRuntimeConfiguration - */ - public function setRuntimeConfiguration(Google_Service_Testing_AndroidRuntimeConfiguration $runtimeConfiguration) - { - $this->runtimeConfiguration = $runtimeConfiguration; - } - /** - * @return Google_Service_Testing_AndroidRuntimeConfiguration - */ - public function getRuntimeConfiguration() - { - return $this->runtimeConfiguration; - } - /** - * @param Google_Service_Testing_AndroidVersion - */ - public function setVersions($versions) - { - $this->versions = $versions; - } - /** - * @return Google_Service_Testing_AndroidVersion - */ - public function getVersions() - { - return $this->versions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/AndroidDeviceList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/AndroidDeviceList.php deleted file mode 100644 index cb93d55b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/AndroidDeviceList.php +++ /dev/null @@ -1,38 +0,0 @@ -androidDevices = $androidDevices; - } - /** - * @return Google_Service_Testing_AndroidDevice - */ - public function getAndroidDevices() - { - return $this->androidDevices; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/AndroidInstrumentationTest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/AndroidInstrumentationTest.php deleted file mode 100644 index d4b65120..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/AndroidInstrumentationTest.php +++ /dev/null @@ -1,131 +0,0 @@ -appApk = $appApk; - } - /** - * @return Google_Service_Testing_FileReference - */ - public function getAppApk() - { - return $this->appApk; - } - /** - * @param Google_Service_Testing_AppBundle - */ - public function setAppBundle(Google_Service_Testing_AppBundle $appBundle) - { - $this->appBundle = $appBundle; - } - /** - * @return Google_Service_Testing_AppBundle - */ - public function getAppBundle() - { - return $this->appBundle; - } - public function setAppPackageId($appPackageId) - { - $this->appPackageId = $appPackageId; - } - public function getAppPackageId() - { - return $this->appPackageId; - } - public function setOrchestratorOption($orchestratorOption) - { - $this->orchestratorOption = $orchestratorOption; - } - public function getOrchestratorOption() - { - return $this->orchestratorOption; - } - /** - * @param Google_Service_Testing_ShardingOption - */ - public function setShardingOption(Google_Service_Testing_ShardingOption $shardingOption) - { - $this->shardingOption = $shardingOption; - } - /** - * @return Google_Service_Testing_ShardingOption - */ - public function getShardingOption() - { - return $this->shardingOption; - } - /** - * @param Google_Service_Testing_FileReference - */ - public function setTestApk(Google_Service_Testing_FileReference $testApk) - { - $this->testApk = $testApk; - } - /** - * @return Google_Service_Testing_FileReference - */ - public function getTestApk() - { - return $this->testApk; - } - public function setTestPackageId($testPackageId) - { - $this->testPackageId = $testPackageId; - } - public function getTestPackageId() - { - return $this->testPackageId; - } - public function setTestRunnerClass($testRunnerClass) - { - $this->testRunnerClass = $testRunnerClass; - } - public function getTestRunnerClass() - { - return $this->testRunnerClass; - } - public function setTestTargets($testTargets) - { - $this->testTargets = $testTargets; - } - public function getTestTargets() - { - return $this->testTargets; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/AndroidMatrix.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/AndroidMatrix.php deleted file mode 100644 index 58938c24..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/AndroidMatrix.php +++ /dev/null @@ -1,58 +0,0 @@ -androidModelIds = $androidModelIds; - } - public function getAndroidModelIds() - { - return $this->androidModelIds; - } - public function setAndroidVersionIds($androidVersionIds) - { - $this->androidVersionIds = $androidVersionIds; - } - public function getAndroidVersionIds() - { - return $this->androidVersionIds; - } - public function setLocales($locales) - { - $this->locales = $locales; - } - public function getLocales() - { - return $this->locales; - } - public function setOrientations($orientations) - { - $this->orientations = $orientations; - } - public function getOrientations() - { - return $this->orientations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/AndroidModel.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/AndroidModel.php deleted file mode 100644 index 94dc0423..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/AndroidModel.php +++ /dev/null @@ -1,148 +0,0 @@ -brand = $brand; - } - public function getBrand() - { - return $this->brand; - } - public function setCodename($codename) - { - $this->codename = $codename; - } - public function getCodename() - { - return $this->codename; - } - public function setForm($form) - { - $this->form = $form; - } - public function getForm() - { - return $this->form; - } - public function setFormFactor($formFactor) - { - $this->formFactor = $formFactor; - } - public function getFormFactor() - { - return $this->formFactor; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setLowFpsVideoRecording($lowFpsVideoRecording) - { - $this->lowFpsVideoRecording = $lowFpsVideoRecording; - } - public function getLowFpsVideoRecording() - { - return $this->lowFpsVideoRecording; - } - public function setManufacturer($manufacturer) - { - $this->manufacturer = $manufacturer; - } - public function getManufacturer() - { - return $this->manufacturer; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setScreenDensity($screenDensity) - { - $this->screenDensity = $screenDensity; - } - public function getScreenDensity() - { - return $this->screenDensity; - } - public function setScreenX($screenX) - { - $this->screenX = $screenX; - } - public function getScreenX() - { - return $this->screenX; - } - public function setScreenY($screenY) - { - $this->screenY = $screenY; - } - public function getScreenY() - { - return $this->screenY; - } - public function setSupportedAbis($supportedAbis) - { - $this->supportedAbis = $supportedAbis; - } - public function getSupportedAbis() - { - return $this->supportedAbis; - } - public function setSupportedVersionIds($supportedVersionIds) - { - $this->supportedVersionIds = $supportedVersionIds; - } - public function getSupportedVersionIds() - { - return $this->supportedVersionIds; - } - public function setTags($tags) - { - $this->tags = $tags; - } - public function getTags() - { - return $this->tags; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/AndroidRoboTest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/AndroidRoboTest.php deleted file mode 100644 index 1f18e090..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/AndroidRoboTest.php +++ /dev/null @@ -1,138 +0,0 @@ -appApk = $appApk; - } - /** - * @return Google_Service_Testing_FileReference - */ - public function getAppApk() - { - return $this->appApk; - } - /** - * @param Google_Service_Testing_AppBundle - */ - public function setAppBundle(Google_Service_Testing_AppBundle $appBundle) - { - $this->appBundle = $appBundle; - } - /** - * @return Google_Service_Testing_AppBundle - */ - public function getAppBundle() - { - return $this->appBundle; - } - public function setAppInitialActivity($appInitialActivity) - { - $this->appInitialActivity = $appInitialActivity; - } - public function getAppInitialActivity() - { - return $this->appInitialActivity; - } - public function setAppPackageId($appPackageId) - { - $this->appPackageId = $appPackageId; - } - public function getAppPackageId() - { - return $this->appPackageId; - } - public function setMaxDepth($maxDepth) - { - $this->maxDepth = $maxDepth; - } - public function getMaxDepth() - { - return $this->maxDepth; - } - public function setMaxSteps($maxSteps) - { - $this->maxSteps = $maxSteps; - } - public function getMaxSteps() - { - return $this->maxSteps; - } - /** - * @param Google_Service_Testing_RoboDirective - */ - public function setRoboDirectives($roboDirectives) - { - $this->roboDirectives = $roboDirectives; - } - /** - * @return Google_Service_Testing_RoboDirective - */ - public function getRoboDirectives() - { - return $this->roboDirectives; - } - /** - * @param Google_Service_Testing_FileReference - */ - public function setRoboScript(Google_Service_Testing_FileReference $roboScript) - { - $this->roboScript = $roboScript; - } - /** - * @return Google_Service_Testing_FileReference - */ - public function getRoboScript() - { - return $this->roboScript; - } - /** - * @param Google_Service_Testing_RoboStartingIntent - */ - public function setStartingIntents($startingIntents) - { - $this->startingIntents = $startingIntents; - } - /** - * @return Google_Service_Testing_RoboStartingIntent - */ - public function getStartingIntents() - { - return $this->startingIntents; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/AndroidRuntimeConfiguration.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/AndroidRuntimeConfiguration.php deleted file mode 100644 index 4236e485..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/AndroidRuntimeConfiguration.php +++ /dev/null @@ -1,54 +0,0 @@ -locales = $locales; - } - /** - * @return Google_Service_Testing_Locale - */ - public function getLocales() - { - return $this->locales; - } - /** - * @param Google_Service_Testing_Orientation - */ - public function setOrientations($orientations) - { - $this->orientations = $orientations; - } - /** - * @return Google_Service_Testing_Orientation - */ - public function getOrientations() - { - return $this->orientations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/AndroidTestLoop.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/AndroidTestLoop.php deleted file mode 100644 index ca225cdf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/AndroidTestLoop.php +++ /dev/null @@ -1,81 +0,0 @@ -appApk = $appApk; - } - /** - * @return Google_Service_Testing_FileReference - */ - public function getAppApk() - { - return $this->appApk; - } - /** - * @param Google_Service_Testing_AppBundle - */ - public function setAppBundle(Google_Service_Testing_AppBundle $appBundle) - { - $this->appBundle = $appBundle; - } - /** - * @return Google_Service_Testing_AppBundle - */ - public function getAppBundle() - { - return $this->appBundle; - } - public function setAppPackageId($appPackageId) - { - $this->appPackageId = $appPackageId; - } - public function getAppPackageId() - { - return $this->appPackageId; - } - public function setScenarioLabels($scenarioLabels) - { - $this->scenarioLabels = $scenarioLabels; - } - public function getScenarioLabels() - { - return $this->scenarioLabels; - } - public function setScenarios($scenarios) - { - $this->scenarios = $scenarios; - } - public function getScenarios() - { - return $this->scenarios; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/AndroidVersion.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/AndroidVersion.php deleted file mode 100644 index 54e6a89b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/AndroidVersion.php +++ /dev/null @@ -1,99 +0,0 @@ -apiLevel = $apiLevel; - } - public function getApiLevel() - { - return $this->apiLevel; - } - public function setCodeName($codeName) - { - $this->codeName = $codeName; - } - public function getCodeName() - { - return $this->codeName; - } - /** - * @param Google_Service_Testing_Distribution - */ - public function setDistribution(Google_Service_Testing_Distribution $distribution) - { - $this->distribution = $distribution; - } - /** - * @return Google_Service_Testing_Distribution - */ - public function getDistribution() - { - return $this->distribution; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Testing_Date - */ - public function setReleaseDate(Google_Service_Testing_Date $releaseDate) - { - $this->releaseDate = $releaseDate; - } - /** - * @return Google_Service_Testing_Date - */ - public function getReleaseDate() - { - return $this->releaseDate; - } - public function setTags($tags) - { - $this->tags = $tags; - } - public function getTags() - { - return $this->tags; - } - public function setVersionString($versionString) - { - $this->versionString = $versionString; - } - public function getVersionString() - { - return $this->versionString; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/Apk.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/Apk.php deleted file mode 100644 index fd5c38df..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/Apk.php +++ /dev/null @@ -1,46 +0,0 @@ -location = $location; - } - /** - * @return Google_Service_Testing_FileReference - */ - public function getLocation() - { - return $this->location; - } - public function setPackageName($packageName) - { - $this->packageName = $packageName; - } - public function getPackageName() - { - return $this->packageName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/ApkDetail.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/ApkDetail.php deleted file mode 100644 index 18b524c5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/ApkDetail.php +++ /dev/null @@ -1,37 +0,0 @@ -apkManifest = $apkManifest; - } - /** - * @return Google_Service_Testing_ApkManifest - */ - public function getApkManifest() - { - return $this->apkManifest; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/ApkManifest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/ApkManifest.php deleted file mode 100644 index 8e19b61d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/ApkManifest.php +++ /dev/null @@ -1,83 +0,0 @@ -applicationLabel = $applicationLabel; - } - public function getApplicationLabel() - { - return $this->applicationLabel; - } - /** - * @param Google_Service_Testing_IntentFilter - */ - public function setIntentFilters($intentFilters) - { - $this->intentFilters = $intentFilters; - } - /** - * @return Google_Service_Testing_IntentFilter - */ - public function getIntentFilters() - { - return $this->intentFilters; - } - public function setMaxSdkVersion($maxSdkVersion) - { - $this->maxSdkVersion = $maxSdkVersion; - } - public function getMaxSdkVersion() - { - return $this->maxSdkVersion; - } - public function setMinSdkVersion($minSdkVersion) - { - $this->minSdkVersion = $minSdkVersion; - } - public function getMinSdkVersion() - { - return $this->minSdkVersion; - } - public function setPackageName($packageName) - { - $this->packageName = $packageName; - } - public function getPackageName() - { - return $this->packageName; - } - public function setTargetSdkVersion($targetSdkVersion) - { - $this->targetSdkVersion = $targetSdkVersion; - } - public function getTargetSdkVersion() - { - return $this->targetSdkVersion; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/AppBundle.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/AppBundle.php deleted file mode 100644 index 013b9e12..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/AppBundle.php +++ /dev/null @@ -1,37 +0,0 @@ -bundleLocation = $bundleLocation; - } - /** - * @return Google_Service_Testing_FileReference - */ - public function getBundleLocation() - { - return $this->bundleLocation; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/CancelTestMatrixResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/CancelTestMatrixResponse.php deleted file mode 100644 index 9b5609d3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/CancelTestMatrixResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -testState = $testState; - } - public function getTestState() - { - return $this->testState; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/ClientInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/ClientInfo.php deleted file mode 100644 index bf2c4353..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/ClientInfo.php +++ /dev/null @@ -1,47 +0,0 @@ -clientInfoDetails = $clientInfoDetails; - } - /** - * @return Google_Service_Testing_ClientInfoDetail - */ - public function getClientInfoDetails() - { - return $this->clientInfoDetails; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/ClientInfoDetail.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/ClientInfoDetail.php deleted file mode 100644 index c5c5f200..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/ClientInfoDetail.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/Date.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/Date.php deleted file mode 100644 index 76c82705..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/Date.php +++ /dev/null @@ -1,48 +0,0 @@ -day = $day; - } - public function getDay() - { - return $this->day; - } - public function setMonth($month) - { - $this->month = $month; - } - public function getMonth() - { - return $this->month; - } - public function setYear($year) - { - $this->year = $year; - } - public function getYear() - { - return $this->year; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/DeviceFile.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/DeviceFile.php deleted file mode 100644 index c2a0e3c5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/DeviceFile.php +++ /dev/null @@ -1,53 +0,0 @@ -obbFile = $obbFile; - } - /** - * @return Google_Service_Testing_ObbFile - */ - public function getObbFile() - { - return $this->obbFile; - } - /** - * @param Google_Service_Testing_RegularFile - */ - public function setRegularFile(Google_Service_Testing_RegularFile $regularFile) - { - $this->regularFile = $regularFile; - } - /** - * @return Google_Service_Testing_RegularFile - */ - public function getRegularFile() - { - return $this->regularFile; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/Distribution.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/Distribution.php deleted file mode 100644 index e1e90a4e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/Distribution.php +++ /dev/null @@ -1,39 +0,0 @@ -marketShare = $marketShare; - } - public function getMarketShare() - { - return $this->marketShare; - } - public function setMeasurementTime($measurementTime) - { - $this->measurementTime = $measurementTime; - } - public function getMeasurementTime() - { - return $this->measurementTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/Environment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/Environment.php deleted file mode 100644 index 038a9c31..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/Environment.php +++ /dev/null @@ -1,53 +0,0 @@ -androidDevice = $androidDevice; - } - /** - * @return Google_Service_Testing_AndroidDevice - */ - public function getAndroidDevice() - { - return $this->androidDevice; - } - /** - * @param Google_Service_Testing_IosDevice - */ - public function setIosDevice(Google_Service_Testing_IosDevice $iosDevice) - { - $this->iosDevice = $iosDevice; - } - /** - * @return Google_Service_Testing_IosDevice - */ - public function getIosDevice() - { - return $this->iosDevice; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/EnvironmentMatrix.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/EnvironmentMatrix.php deleted file mode 100644 index 0fa7d51d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/EnvironmentMatrix.php +++ /dev/null @@ -1,69 +0,0 @@ -androidDeviceList = $androidDeviceList; - } - /** - * @return Google_Service_Testing_AndroidDeviceList - */ - public function getAndroidDeviceList() - { - return $this->androidDeviceList; - } - /** - * @param Google_Service_Testing_AndroidMatrix - */ - public function setAndroidMatrix(Google_Service_Testing_AndroidMatrix $androidMatrix) - { - $this->androidMatrix = $androidMatrix; - } - /** - * @return Google_Service_Testing_AndroidMatrix - */ - public function getAndroidMatrix() - { - return $this->androidMatrix; - } - /** - * @param Google_Service_Testing_IosDeviceList - */ - public function setIosDeviceList(Google_Service_Testing_IosDeviceList $iosDeviceList) - { - $this->iosDeviceList = $iosDeviceList; - } - /** - * @return Google_Service_Testing_IosDeviceList - */ - public function getIosDeviceList() - { - return $this->iosDeviceList; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/EnvironmentVariable.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/EnvironmentVariable.php deleted file mode 100644 index 5b2b2072..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/EnvironmentVariable.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/FileReference.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/FileReference.php deleted file mode 100644 index 3e42e647..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/FileReference.php +++ /dev/null @@ -1,30 +0,0 @@ -gcsPath = $gcsPath; - } - public function getGcsPath() - { - return $this->gcsPath; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/GetApkDetailsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/GetApkDetailsResponse.php deleted file mode 100644 index 02ca72fa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/GetApkDetailsResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -apkDetail = $apkDetail; - } - /** - * @return Google_Service_Testing_ApkDetail - */ - public function getApkDetail() - { - return $this->apkDetail; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/GoogleAuto.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/GoogleAuto.php deleted file mode 100644 index 2d3c4cd8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/GoogleAuto.php +++ /dev/null @@ -1,20 +0,0 @@ -gcsPath = $gcsPath; - } - public function getGcsPath() - { - return $this->gcsPath; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/IntentFilter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/IntentFilter.php deleted file mode 100644 index ec9e19ec..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/IntentFilter.php +++ /dev/null @@ -1,49 +0,0 @@ -actionNames = $actionNames; - } - public function getActionNames() - { - return $this->actionNames; - } - public function setCategoryNames($categoryNames) - { - $this->categoryNames = $categoryNames; - } - public function getCategoryNames() - { - return $this->categoryNames; - } - public function setMimeType($mimeType) - { - $this->mimeType = $mimeType; - } - public function getMimeType() - { - return $this->mimeType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/IosDevice.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/IosDevice.php deleted file mode 100644 index d2ec20f2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/IosDevice.php +++ /dev/null @@ -1,57 +0,0 @@ -iosModelId = $iosModelId; - } - public function getIosModelId() - { - return $this->iosModelId; - } - public function setIosVersionId($iosVersionId) - { - $this->iosVersionId = $iosVersionId; - } - public function getIosVersionId() - { - return $this->iosVersionId; - } - public function setLocale($locale) - { - $this->locale = $locale; - } - public function getLocale() - { - return $this->locale; - } - public function setOrientation($orientation) - { - $this->orientation = $orientation; - } - public function getOrientation() - { - return $this->orientation; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/IosDeviceCatalog.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/IosDeviceCatalog.php deleted file mode 100644 index 9bdb031a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/IosDeviceCatalog.php +++ /dev/null @@ -1,86 +0,0 @@ -models = $models; - } - /** - * @return Google_Service_Testing_IosModel - */ - public function getModels() - { - return $this->models; - } - /** - * @param Google_Service_Testing_IosRuntimeConfiguration - */ - public function setRuntimeConfiguration(Google_Service_Testing_IosRuntimeConfiguration $runtimeConfiguration) - { - $this->runtimeConfiguration = $runtimeConfiguration; - } - /** - * @return Google_Service_Testing_IosRuntimeConfiguration - */ - public function getRuntimeConfiguration() - { - return $this->runtimeConfiguration; - } - /** - * @param Google_Service_Testing_IosVersion - */ - public function setVersions($versions) - { - $this->versions = $versions; - } - /** - * @return Google_Service_Testing_IosVersion - */ - public function getVersions() - { - return $this->versions; - } - /** - * @param Google_Service_Testing_XcodeVersion - */ - public function setXcodeVersions($xcodeVersions) - { - $this->xcodeVersions = $xcodeVersions; - } - /** - * @return Google_Service_Testing_XcodeVersion - */ - public function getXcodeVersions() - { - return $this->xcodeVersions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/IosDeviceList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/IosDeviceList.php deleted file mode 100644 index cbdc041a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/IosDeviceList.php +++ /dev/null @@ -1,38 +0,0 @@ -iosDevices = $iosDevices; - } - /** - * @return Google_Service_Testing_IosDevice - */ - public function getIosDevices() - { - return $this->iosDevices; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/IosModel.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/IosModel.php deleted file mode 100644 index cf777f11..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/IosModel.php +++ /dev/null @@ -1,103 +0,0 @@ -deviceCapabilities = $deviceCapabilities; - } - public function getDeviceCapabilities() - { - return $this->deviceCapabilities; - } - public function setFormFactor($formFactor) - { - $this->formFactor = $formFactor; - } - public function getFormFactor() - { - return $this->formFactor; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setScreenDensity($screenDensity) - { - $this->screenDensity = $screenDensity; - } - public function getScreenDensity() - { - return $this->screenDensity; - } - public function setScreenX($screenX) - { - $this->screenX = $screenX; - } - public function getScreenX() - { - return $this->screenX; - } - public function setScreenY($screenY) - { - $this->screenY = $screenY; - } - public function getScreenY() - { - return $this->screenY; - } - public function setSupportedVersionIds($supportedVersionIds) - { - $this->supportedVersionIds = $supportedVersionIds; - } - public function getSupportedVersionIds() - { - return $this->supportedVersionIds; - } - public function setTags($tags) - { - $this->tags = $tags; - } - public function getTags() - { - return $this->tags; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/IosRuntimeConfiguration.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/IosRuntimeConfiguration.php deleted file mode 100644 index c74fbc90..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/IosRuntimeConfiguration.php +++ /dev/null @@ -1,54 +0,0 @@ -locales = $locales; - } - /** - * @return Google_Service_Testing_Locale - */ - public function getLocales() - { - return $this->locales; - } - /** - * @param Google_Service_Testing_Orientation - */ - public function setOrientations($orientations) - { - $this->orientations = $orientations; - } - /** - * @return Google_Service_Testing_Orientation - */ - public function getOrientations() - { - return $this->orientations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/IosTestLoop.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/IosTestLoop.php deleted file mode 100644 index a24c855d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/IosTestLoop.php +++ /dev/null @@ -1,56 +0,0 @@ -appBundleId = $appBundleId; - } - public function getAppBundleId() - { - return $this->appBundleId; - } - /** - * @param Google_Service_Testing_FileReference - */ - public function setAppIpa(Google_Service_Testing_FileReference $appIpa) - { - $this->appIpa = $appIpa; - } - /** - * @return Google_Service_Testing_FileReference - */ - public function getAppIpa() - { - return $this->appIpa; - } - public function setScenarios($scenarios) - { - $this->scenarios = $scenarios; - } - public function getScenarios() - { - return $this->scenarios; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/IosTestSetup.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/IosTestSetup.php deleted file mode 100644 index 76400bb7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/IosTestSetup.php +++ /dev/null @@ -1,30 +0,0 @@ -networkProfile = $networkProfile; - } - public function getNetworkProfile() - { - return $this->networkProfile; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/IosVersion.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/IosVersion.php deleted file mode 100644 index e59d6cf9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/IosVersion.php +++ /dev/null @@ -1,67 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setMajorVersion($majorVersion) - { - $this->majorVersion = $majorVersion; - } - public function getMajorVersion() - { - return $this->majorVersion; - } - public function setMinorVersion($minorVersion) - { - $this->minorVersion = $minorVersion; - } - public function getMinorVersion() - { - return $this->minorVersion; - } - public function setSupportedXcodeVersionIds($supportedXcodeVersionIds) - { - $this->supportedXcodeVersionIds = $supportedXcodeVersionIds; - } - public function getSupportedXcodeVersionIds() - { - return $this->supportedXcodeVersionIds; - } - public function setTags($tags) - { - $this->tags = $tags; - } - public function getTags() - { - return $this->tags; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/IosXcTest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/IosXcTest.php deleted file mode 100644 index ae36d221..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/IosXcTest.php +++ /dev/null @@ -1,71 +0,0 @@ -appBundleId = $appBundleId; - } - public function getAppBundleId() - { - return $this->appBundleId; - } - /** - * @param Google_Service_Testing_FileReference - */ - public function setTestsZip(Google_Service_Testing_FileReference $testsZip) - { - $this->testsZip = $testsZip; - } - /** - * @return Google_Service_Testing_FileReference - */ - public function getTestsZip() - { - return $this->testsZip; - } - public function setXcodeVersion($xcodeVersion) - { - $this->xcodeVersion = $xcodeVersion; - } - public function getXcodeVersion() - { - return $this->xcodeVersion; - } - /** - * @param Google_Service_Testing_FileReference - */ - public function setXctestrun(Google_Service_Testing_FileReference $xctestrun) - { - $this->xctestrun = $xctestrun; - } - /** - * @return Google_Service_Testing_FileReference - */ - public function getXctestrun() - { - return $this->xctestrun; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/LauncherActivityIntent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/LauncherActivityIntent.php deleted file mode 100644 index b0eab4ca..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/LauncherActivityIntent.php +++ /dev/null @@ -1,20 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } - public function setTags($tags) - { - $this->tags = $tags; - } - public function getTags() - { - return $this->tags; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/ManualSharding.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/ManualSharding.php deleted file mode 100644 index f7a468c1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/ManualSharding.php +++ /dev/null @@ -1,38 +0,0 @@ -testTargetsForShard = $testTargetsForShard; - } - /** - * @return Google_Service_Testing_TestTargetsForShard - */ - public function getTestTargetsForShard() - { - return $this->testTargetsForShard; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/NetworkConfiguration.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/NetworkConfiguration.php deleted file mode 100644 index a14cb4f3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/NetworkConfiguration.php +++ /dev/null @@ -1,62 +0,0 @@ -downRule = $downRule; - } - /** - * @return Google_Service_Testing_TrafficRule - */ - public function getDownRule() - { - return $this->downRule; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_Testing_TrafficRule - */ - public function setUpRule(Google_Service_Testing_TrafficRule $upRule) - { - $this->upRule = $upRule; - } - /** - * @return Google_Service_Testing_TrafficRule - */ - public function getUpRule() - { - return $this->upRule; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/NetworkConfigurationCatalog.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/NetworkConfigurationCatalog.php deleted file mode 100644 index 6964ac77..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/NetworkConfigurationCatalog.php +++ /dev/null @@ -1,38 +0,0 @@ -configurations = $configurations; - } - /** - * @return Google_Service_Testing_NetworkConfiguration - */ - public function getConfigurations() - { - return $this->configurations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/ObbFile.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/ObbFile.php deleted file mode 100644 index 2e6697c4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/ObbFile.php +++ /dev/null @@ -1,46 +0,0 @@ -obb = $obb; - } - /** - * @return Google_Service_Testing_FileReference - */ - public function getObb() - { - return $this->obb; - } - public function setObbFileName($obbFileName) - { - $this->obbFileName = $obbFileName; - } - public function getObbFileName() - { - return $this->obbFileName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/Orientation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/Orientation.php deleted file mode 100644 index 9b19e186..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/Orientation.php +++ /dev/null @@ -1,49 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setTags($tags) - { - $this->tags = $tags; - } - public function getTags() - { - return $this->tags; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/ProvidedSoftwareCatalog.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/ProvidedSoftwareCatalog.php deleted file mode 100644 index 8ea04383..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/ProvidedSoftwareCatalog.php +++ /dev/null @@ -1,30 +0,0 @@ -orchestratorVersion = $orchestratorVersion; - } - public function getOrchestratorVersion() - { - return $this->orchestratorVersion; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/RegularFile.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/RegularFile.php deleted file mode 100644 index d0a2a044..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/RegularFile.php +++ /dev/null @@ -1,46 +0,0 @@ -content = $content; - } - /** - * @return Google_Service_Testing_FileReference - */ - public function getContent() - { - return $this->content; - } - public function setDevicePath($devicePath) - { - $this->devicePath = $devicePath; - } - public function getDevicePath() - { - return $this->devicePath; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/Resource/ApplicationDetailService.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/Resource/ApplicationDetailService.php deleted file mode 100644 index 462ee689..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/Resource/ApplicationDetailService.php +++ /dev/null @@ -1,42 +0,0 @@ - - * $testingService = new Google_Service_Testing(...); - * $applicationDetailService = $testingService->applicationDetailService; - * - */ -class Google_Service_Testing_Resource_ApplicationDetailService extends Google_Service_Resource -{ - /** - * Gets the details of an Android application APK. - * (applicationDetailService.getApkDetails) - * - * @param Google_Service_Testing_FileReference $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Testing_GetApkDetailsResponse - */ - public function getApkDetails(Google_Service_Testing_FileReference $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('getApkDetails', array($params), "Google_Service_Testing_GetApkDetailsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/Resource/Projects.php deleted file mode 100644 index 8aaf14ab..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/Resource/Projects.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $testingService = new Google_Service_Testing(...); - * $projects = $testingService->projects; - * - */ -class Google_Service_Testing_Resource_Projects extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/Resource/ProjectsTestMatrices.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/Resource/ProjectsTestMatrices.php deleted file mode 100644 index 275e4f04..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/Resource/ProjectsTestMatrices.php +++ /dev/null @@ -1,99 +0,0 @@ - - * $testingService = new Google_Service_Testing(...); - * $testMatrices = $testingService->testMatrices; - * - */ -class Google_Service_Testing_Resource_ProjectsTestMatrices extends Google_Service_Resource -{ - /** - * Cancels unfinished test executions in a test matrix. This call returns - * immediately and cancellation proceeds asychronously. If the matrix is already - * final, this operation will have no effect. - * - * May return any of the following canonical error codes: - * - * - PERMISSION_DENIED - if the user is not authorized to read project - - * INVALID_ARGUMENT - if the request is malformed - NOT_FOUND - if the Test - * Matrix does not exist (testMatrices.cancel) - * - * @param string $projectId Cloud project that owns the test. - * @param string $testMatrixId Test matrix that will be canceled. - * @param array $optParams Optional parameters. - * @return Google_Service_Testing_CancelTestMatrixResponse - */ - public function cancel($projectId, $testMatrixId, $optParams = array()) - { - $params = array('projectId' => $projectId, 'testMatrixId' => $testMatrixId); - $params = array_merge($params, $optParams); - return $this->call('cancel', array($params), "Google_Service_Testing_CancelTestMatrixResponse"); - } - /** - * Creates and runs a matrix of tests according to the given specifications. - * Unsupported environments will be returned in the state UNSUPPORTED. Matrices - * are limited to at most 200 supported executions. - * - * May return any of the following canonical error codes: - * - * - PERMISSION_DENIED - if the user is not authorized to write to project - - * INVALID_ARGUMENT - if the request is malformed or if the matrix expands - * to more than 200 supported executions (testMatrices.create) - * - * @param string $projectId The GCE project under which this job will run. - * @param Google_Service_Testing_TestMatrix $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string requestId A string id used to detect duplicated requests. - * Ids are automatically scoped to a project, so users should ensure the ID is - * unique per-project. A UUID is recommended. - * - * Optional, but strongly recommended. - * @return Google_Service_Testing_TestMatrix - */ - public function create($projectId, Google_Service_Testing_TestMatrix $postBody, $optParams = array()) - { - $params = array('projectId' => $projectId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Testing_TestMatrix"); - } - /** - * Checks the status of a test matrix. - * - * May return any of the following canonical error codes: - * - * - PERMISSION_DENIED - if the user is not authorized to read project - - * INVALID_ARGUMENT - if the request is malformed - NOT_FOUND - if the Test - * Matrix does not exist (testMatrices.get) - * - * @param string $projectId Cloud project that owns the test matrix. - * @param string $testMatrixId Unique test matrix id which was assigned by the - * service. - * @param array $optParams Optional parameters. - * @return Google_Service_Testing_TestMatrix - */ - public function get($projectId, $testMatrixId, $optParams = array()) - { - $params = array('projectId' => $projectId, 'testMatrixId' => $testMatrixId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Testing_TestMatrix"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/Resource/TestEnvironmentCatalog.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/Resource/TestEnvironmentCatalog.php deleted file mode 100644 index 7f7b25ad..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/Resource/TestEnvironmentCatalog.php +++ /dev/null @@ -1,51 +0,0 @@ - - * $testingService = new Google_Service_Testing(...); - * $testEnvironmentCatalog = $testingService->testEnvironmentCatalog; - * - */ -class Google_Service_Testing_Resource_TestEnvironmentCatalog extends Google_Service_Resource -{ - /** - * Gets the catalog of supported test environments. - * - * May return any of the following canonical error codes: - * - * - INVALID_ARGUMENT - if the request is malformed - NOT_FOUND - if the - * environment type does not exist - INTERNAL - if an internal error occurred - * (testEnvironmentCatalog.get) - * - * @param string $environmentType Required. The type of environment that should - * be listed. - * @param array $optParams Optional parameters. - * - * @opt_param string projectId For authorization, the cloud project requesting - * the TestEnvironmentCatalog. - * @return Google_Service_Testing_TestEnvironmentCatalog - */ - public function get($environmentType, $optParams = array()) - { - $params = array('environmentType' => $environmentType); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Testing_TestEnvironmentCatalog"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/ResultStorage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/ResultStorage.php deleted file mode 100644 index 22057211..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/ResultStorage.php +++ /dev/null @@ -1,78 +0,0 @@ -googleCloudStorage = $googleCloudStorage; - } - /** - * @return Google_Service_Testing_GoogleCloudStorage - */ - public function getGoogleCloudStorage() - { - return $this->googleCloudStorage; - } - public function setResultsUrl($resultsUrl) - { - $this->resultsUrl = $resultsUrl; - } - public function getResultsUrl() - { - return $this->resultsUrl; - } - /** - * @param Google_Service_Testing_ToolResultsExecution - */ - public function setToolResultsExecution(Google_Service_Testing_ToolResultsExecution $toolResultsExecution) - { - $this->toolResultsExecution = $toolResultsExecution; - } - /** - * @return Google_Service_Testing_ToolResultsExecution - */ - public function getToolResultsExecution() - { - return $this->toolResultsExecution; - } - /** - * @param Google_Service_Testing_ToolResultsHistory - */ - public function setToolResultsHistory(Google_Service_Testing_ToolResultsHistory $toolResultsHistory) - { - $this->toolResultsHistory = $toolResultsHistory; - } - /** - * @return Google_Service_Testing_ToolResultsHistory - */ - public function getToolResultsHistory() - { - return $this->toolResultsHistory; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/RoboDirective.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/RoboDirective.php deleted file mode 100644 index 2bd053bc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/RoboDirective.php +++ /dev/null @@ -1,48 +0,0 @@ -actionType = $actionType; - } - public function getActionType() - { - return $this->actionType; - } - public function setInputText($inputText) - { - $this->inputText = $inputText; - } - public function getInputText() - { - return $this->inputText; - } - public function setResourceName($resourceName) - { - $this->resourceName = $resourceName; - } - public function getResourceName() - { - return $this->resourceName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/RoboStartingIntent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/RoboStartingIntent.php deleted file mode 100644 index 11fa958c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/RoboStartingIntent.php +++ /dev/null @@ -1,62 +0,0 @@ -launcherActivity = $launcherActivity; - } - /** - * @return Google_Service_Testing_LauncherActivityIntent - */ - public function getLauncherActivity() - { - return $this->launcherActivity; - } - /** - * @param Google_Service_Testing_StartActivityIntent - */ - public function setStartActivity(Google_Service_Testing_StartActivityIntent $startActivity) - { - $this->startActivity = $startActivity; - } - /** - * @return Google_Service_Testing_StartActivityIntent - */ - public function getStartActivity() - { - return $this->startActivity; - } - public function setTimeout($timeout) - { - $this->timeout = $timeout; - } - public function getTimeout() - { - return $this->timeout; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/Shard.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/Shard.php deleted file mode 100644 index 2c499502..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/Shard.php +++ /dev/null @@ -1,55 +0,0 @@ -numShards = $numShards; - } - public function getNumShards() - { - return $this->numShards; - } - public function setShardIndex($shardIndex) - { - $this->shardIndex = $shardIndex; - } - public function getShardIndex() - { - return $this->shardIndex; - } - /** - * @param Google_Service_Testing_TestTargetsForShard - */ - public function setTestTargetsForShard(Google_Service_Testing_TestTargetsForShard $testTargetsForShard) - { - $this->testTargetsForShard = $testTargetsForShard; - } - /** - * @return Google_Service_Testing_TestTargetsForShard - */ - public function getTestTargetsForShard() - { - return $this->testTargetsForShard; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/ShardingOption.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/ShardingOption.php deleted file mode 100644 index c7f568c7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/ShardingOption.php +++ /dev/null @@ -1,53 +0,0 @@ -manualSharding = $manualSharding; - } - /** - * @return Google_Service_Testing_ManualSharding - */ - public function getManualSharding() - { - return $this->manualSharding; - } - /** - * @param Google_Service_Testing_UniformSharding - */ - public function setUniformSharding(Google_Service_Testing_UniformSharding $uniformSharding) - { - $this->uniformSharding = $uniformSharding; - } - /** - * @return Google_Service_Testing_UniformSharding - */ - public function getUniformSharding() - { - return $this->uniformSharding; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/StartActivityIntent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/StartActivityIntent.php deleted file mode 100644 index 5212cd81..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/StartActivityIntent.php +++ /dev/null @@ -1,49 +0,0 @@ -action = $action; - } - public function getAction() - { - return $this->action; - } - public function setCategories($categories) - { - $this->categories = $categories; - } - public function getCategories() - { - return $this->categories; - } - public function setUri($uri) - { - $this->uri = $uri; - } - public function getUri() - { - return $this->uri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/TestDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/TestDetails.php deleted file mode 100644 index 42c3a783..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/TestDetails.php +++ /dev/null @@ -1,40 +0,0 @@ -errorMessage = $errorMessage; - } - public function getErrorMessage() - { - return $this->errorMessage; - } - public function setProgressMessages($progressMessages) - { - $this->progressMessages = $progressMessages; - } - public function getProgressMessages() - { - return $this->progressMessages; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/TestEnvironmentCatalog.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/TestEnvironmentCatalog.php deleted file mode 100644 index 83537a83..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/TestEnvironmentCatalog.php +++ /dev/null @@ -1,85 +0,0 @@ -androidDeviceCatalog = $androidDeviceCatalog; - } - /** - * @return Google_Service_Testing_AndroidDeviceCatalog - */ - public function getAndroidDeviceCatalog() - { - return $this->androidDeviceCatalog; - } - /** - * @param Google_Service_Testing_IosDeviceCatalog - */ - public function setIosDeviceCatalog(Google_Service_Testing_IosDeviceCatalog $iosDeviceCatalog) - { - $this->iosDeviceCatalog = $iosDeviceCatalog; - } - /** - * @return Google_Service_Testing_IosDeviceCatalog - */ - public function getIosDeviceCatalog() - { - return $this->iosDeviceCatalog; - } - /** - * @param Google_Service_Testing_NetworkConfigurationCatalog - */ - public function setNetworkConfigurationCatalog(Google_Service_Testing_NetworkConfigurationCatalog $networkConfigurationCatalog) - { - $this->networkConfigurationCatalog = $networkConfigurationCatalog; - } - /** - * @return Google_Service_Testing_NetworkConfigurationCatalog - */ - public function getNetworkConfigurationCatalog() - { - return $this->networkConfigurationCatalog; - } - /** - * @param Google_Service_Testing_ProvidedSoftwareCatalog - */ - public function setSoftwareCatalog(Google_Service_Testing_ProvidedSoftwareCatalog $softwareCatalog) - { - $this->softwareCatalog = $softwareCatalog; - } - /** - * @return Google_Service_Testing_ProvidedSoftwareCatalog - */ - public function getSoftwareCatalog() - { - return $this->softwareCatalog; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/TestExecution.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/TestExecution.php deleted file mode 100644 index 756c055a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/TestExecution.php +++ /dev/null @@ -1,146 +0,0 @@ -environment = $environment; - } - /** - * @return Google_Service_Testing_Environment - */ - public function getEnvironment() - { - return $this->environment; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setMatrixId($matrixId) - { - $this->matrixId = $matrixId; - } - public function getMatrixId() - { - return $this->matrixId; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } - /** - * @param Google_Service_Testing_Shard - */ - public function setShard(Google_Service_Testing_Shard $shard) - { - $this->shard = $shard; - } - /** - * @return Google_Service_Testing_Shard - */ - public function getShard() - { - return $this->shard; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - /** - * @param Google_Service_Testing_TestDetails - */ - public function setTestDetails(Google_Service_Testing_TestDetails $testDetails) - { - $this->testDetails = $testDetails; - } - /** - * @return Google_Service_Testing_TestDetails - */ - public function getTestDetails() - { - return $this->testDetails; - } - /** - * @param Google_Service_Testing_TestSpecification - */ - public function setTestSpecification(Google_Service_Testing_TestSpecification $testSpecification) - { - $this->testSpecification = $testSpecification; - } - /** - * @return Google_Service_Testing_TestSpecification - */ - public function getTestSpecification() - { - return $this->testSpecification; - } - public function setTimestamp($timestamp) - { - $this->timestamp = $timestamp; - } - public function getTimestamp() - { - return $this->timestamp; - } - /** - * @param Google_Service_Testing_ToolResultsStep - */ - public function setToolResultsStep(Google_Service_Testing_ToolResultsStep $toolResultsStep) - { - $this->toolResultsStep = $toolResultsStep; - } - /** - * @return Google_Service_Testing_ToolResultsStep - */ - public function getToolResultsStep() - { - return $this->toolResultsStep; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/TestMatrix.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/TestMatrix.php deleted file mode 100644 index 336c566b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/TestMatrix.php +++ /dev/null @@ -1,165 +0,0 @@ -clientInfo = $clientInfo; - } - /** - * @return Google_Service_Testing_ClientInfo - */ - public function getClientInfo() - { - return $this->clientInfo; - } - /** - * @param Google_Service_Testing_EnvironmentMatrix - */ - public function setEnvironmentMatrix(Google_Service_Testing_EnvironmentMatrix $environmentMatrix) - { - $this->environmentMatrix = $environmentMatrix; - } - /** - * @return Google_Service_Testing_EnvironmentMatrix - */ - public function getEnvironmentMatrix() - { - return $this->environmentMatrix; - } - public function setFlakyTestAttempts($flakyTestAttempts) - { - $this->flakyTestAttempts = $flakyTestAttempts; - } - public function getFlakyTestAttempts() - { - return $this->flakyTestAttempts; - } - public function setInvalidMatrixDetails($invalidMatrixDetails) - { - $this->invalidMatrixDetails = $invalidMatrixDetails; - } - public function getInvalidMatrixDetails() - { - return $this->invalidMatrixDetails; - } - public function setOutcomeSummary($outcomeSummary) - { - $this->outcomeSummary = $outcomeSummary; - } - public function getOutcomeSummary() - { - return $this->outcomeSummary; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } - /** - * @param Google_Service_Testing_ResultStorage - */ - public function setResultStorage(Google_Service_Testing_ResultStorage $resultStorage) - { - $this->resultStorage = $resultStorage; - } - /** - * @return Google_Service_Testing_ResultStorage - */ - public function getResultStorage() - { - return $this->resultStorage; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - /** - * @param Google_Service_Testing_TestExecution - */ - public function setTestExecutions($testExecutions) - { - $this->testExecutions = $testExecutions; - } - /** - * @return Google_Service_Testing_TestExecution - */ - public function getTestExecutions() - { - return $this->testExecutions; - } - public function setTestMatrixId($testMatrixId) - { - $this->testMatrixId = $testMatrixId; - } - public function getTestMatrixId() - { - return $this->testMatrixId; - } - /** - * @param Google_Service_Testing_TestSpecification - */ - public function setTestSpecification(Google_Service_Testing_TestSpecification $testSpecification) - { - $this->testSpecification = $testSpecification; - } - /** - * @return Google_Service_Testing_TestSpecification - */ - public function getTestSpecification() - { - return $this->testSpecification; - } - public function setTimestamp($timestamp) - { - $this->timestamp = $timestamp; - } - public function getTimestamp() - { - return $this->timestamp; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/TestSetup.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/TestSetup.php deleted file mode 100644 index 1ebc9f6c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/TestSetup.php +++ /dev/null @@ -1,104 +0,0 @@ -account = $account; - } - /** - * @return Google_Service_Testing_Account - */ - public function getAccount() - { - return $this->account; - } - /** - * @param Google_Service_Testing_Apk - */ - public function setAdditionalApks($additionalApks) - { - $this->additionalApks = $additionalApks; - } - /** - * @return Google_Service_Testing_Apk - */ - public function getAdditionalApks() - { - return $this->additionalApks; - } - public function setDirectoriesToPull($directoriesToPull) - { - $this->directoriesToPull = $directoriesToPull; - } - public function getDirectoriesToPull() - { - return $this->directoriesToPull; - } - /** - * @param Google_Service_Testing_EnvironmentVariable - */ - public function setEnvironmentVariables($environmentVariables) - { - $this->environmentVariables = $environmentVariables; - } - /** - * @return Google_Service_Testing_EnvironmentVariable - */ - public function getEnvironmentVariables() - { - return $this->environmentVariables; - } - /** - * @param Google_Service_Testing_DeviceFile - */ - public function setFilesToPush($filesToPush) - { - $this->filesToPush = $filesToPush; - } - /** - * @return Google_Service_Testing_DeviceFile - */ - public function getFilesToPush() - { - return $this->filesToPush; - } - public function setNetworkProfile($networkProfile) - { - $this->networkProfile = $networkProfile; - } - public function getNetworkProfile() - { - return $this->networkProfile; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/TestSpecification.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/TestSpecification.php deleted file mode 100644 index 0b0a46c7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/TestSpecification.php +++ /dev/null @@ -1,160 +0,0 @@ -androidInstrumentationTest = $androidInstrumentationTest; - } - /** - * @return Google_Service_Testing_AndroidInstrumentationTest - */ - public function getAndroidInstrumentationTest() - { - return $this->androidInstrumentationTest; - } - /** - * @param Google_Service_Testing_AndroidRoboTest - */ - public function setAndroidRoboTest(Google_Service_Testing_AndroidRoboTest $androidRoboTest) - { - $this->androidRoboTest = $androidRoboTest; - } - /** - * @return Google_Service_Testing_AndroidRoboTest - */ - public function getAndroidRoboTest() - { - return $this->androidRoboTest; - } - /** - * @param Google_Service_Testing_AndroidTestLoop - */ - public function setAndroidTestLoop(Google_Service_Testing_AndroidTestLoop $androidTestLoop) - { - $this->androidTestLoop = $androidTestLoop; - } - /** - * @return Google_Service_Testing_AndroidTestLoop - */ - public function getAndroidTestLoop() - { - return $this->androidTestLoop; - } - public function setDisablePerformanceMetrics($disablePerformanceMetrics) - { - $this->disablePerformanceMetrics = $disablePerformanceMetrics; - } - public function getDisablePerformanceMetrics() - { - return $this->disablePerformanceMetrics; - } - public function setDisableVideoRecording($disableVideoRecording) - { - $this->disableVideoRecording = $disableVideoRecording; - } - public function getDisableVideoRecording() - { - return $this->disableVideoRecording; - } - /** - * @param Google_Service_Testing_IosTestLoop - */ - public function setIosTestLoop(Google_Service_Testing_IosTestLoop $iosTestLoop) - { - $this->iosTestLoop = $iosTestLoop; - } - /** - * @return Google_Service_Testing_IosTestLoop - */ - public function getIosTestLoop() - { - return $this->iosTestLoop; - } - /** - * @param Google_Service_Testing_IosTestSetup - */ - public function setIosTestSetup(Google_Service_Testing_IosTestSetup $iosTestSetup) - { - $this->iosTestSetup = $iosTestSetup; - } - /** - * @return Google_Service_Testing_IosTestSetup - */ - public function getIosTestSetup() - { - return $this->iosTestSetup; - } - /** - * @param Google_Service_Testing_IosXcTest - */ - public function setIosXcTest(Google_Service_Testing_IosXcTest $iosXcTest) - { - $this->iosXcTest = $iosXcTest; - } - /** - * @return Google_Service_Testing_IosXcTest - */ - public function getIosXcTest() - { - return $this->iosXcTest; - } - /** - * @param Google_Service_Testing_TestSetup - */ - public function setTestSetup(Google_Service_Testing_TestSetup $testSetup) - { - $this->testSetup = $testSetup; - } - /** - * @return Google_Service_Testing_TestSetup - */ - public function getTestSetup() - { - return $this->testSetup; - } - public function setTestTimeout($testTimeout) - { - $this->testTimeout = $testTimeout; - } - public function getTestTimeout() - { - return $this->testTimeout; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/TestTargetsForShard.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/TestTargetsForShard.php deleted file mode 100644 index 792f88bb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/TestTargetsForShard.php +++ /dev/null @@ -1,31 +0,0 @@ -testTargets = $testTargets; - } - public function getTestTargets() - { - return $this->testTargets; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/ToolResultsExecution.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/ToolResultsExecution.php deleted file mode 100644 index 0f902ae6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/ToolResultsExecution.php +++ /dev/null @@ -1,48 +0,0 @@ -executionId = $executionId; - } - public function getExecutionId() - { - return $this->executionId; - } - public function setHistoryId($historyId) - { - $this->historyId = $historyId; - } - public function getHistoryId() - { - return $this->historyId; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/ToolResultsHistory.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/ToolResultsHistory.php deleted file mode 100644 index 20de3896..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/ToolResultsHistory.php +++ /dev/null @@ -1,39 +0,0 @@ -historyId = $historyId; - } - public function getHistoryId() - { - return $this->historyId; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/ToolResultsStep.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/ToolResultsStep.php deleted file mode 100644 index 0ea9b5e5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/ToolResultsStep.php +++ /dev/null @@ -1,57 +0,0 @@ -executionId = $executionId; - } - public function getExecutionId() - { - return $this->executionId; - } - public function setHistoryId($historyId) - { - $this->historyId = $historyId; - } - public function getHistoryId() - { - return $this->historyId; - } - public function setProjectId($projectId) - { - $this->projectId = $projectId; - } - public function getProjectId() - { - return $this->projectId; - } - public function setStepId($stepId) - { - $this->stepId = $stepId; - } - public function getStepId() - { - return $this->stepId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/TrafficRule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/TrafficRule.php deleted file mode 100644 index 2055f28b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/TrafficRule.php +++ /dev/null @@ -1,66 +0,0 @@ -bandwidth = $bandwidth; - } - public function getBandwidth() - { - return $this->bandwidth; - } - public function setBurst($burst) - { - $this->burst = $burst; - } - public function getBurst() - { - return $this->burst; - } - public function setDelay($delay) - { - $this->delay = $delay; - } - public function getDelay() - { - return $this->delay; - } - public function setPacketDuplicationRatio($packetDuplicationRatio) - { - $this->packetDuplicationRatio = $packetDuplicationRatio; - } - public function getPacketDuplicationRatio() - { - return $this->packetDuplicationRatio; - } - public function setPacketLossRatio($packetLossRatio) - { - $this->packetLossRatio = $packetLossRatio; - } - public function getPacketLossRatio() - { - return $this->packetLossRatio; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/UniformSharding.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/UniformSharding.php deleted file mode 100644 index 91894c7c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/UniformSharding.php +++ /dev/null @@ -1,30 +0,0 @@ -numShards = $numShards; - } - public function getNumShards() - { - return $this->numShards; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/XcodeVersion.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/XcodeVersion.php deleted file mode 100644 index ca5750b6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Testing/XcodeVersion.php +++ /dev/null @@ -1,40 +0,0 @@ -tags = $tags; - } - public function getTags() - { - return $this->tags; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Texttospeech.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Texttospeech.php deleted file mode 100644 index 66fa1600..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Texttospeech.php +++ /dev/null @@ -1,90 +0,0 @@ - - * Synthesizes natural-sounding speech by applying powerful neural network - * models.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Texttospeech extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - - public $text; - public $voices; - - /** - * Constructs the internal representation of the Texttospeech service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://texttospeech.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'texttospeech'; - - $this->text = new Google_Service_Texttospeech_Resource_Text( - $this, - $this->serviceName, - 'text', - array( - 'methods' => array( - 'synthesize' => array( - 'path' => 'v1/text:synthesize', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->voices = new Google_Service_Texttospeech_Resource_Voices( - $this, - $this->serviceName, - 'voices', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1/voices', - 'httpMethod' => 'GET', - 'parameters' => array( - 'languageCode' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Texttospeech/AudioConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Texttospeech/AudioConfig.php deleted file mode 100644 index 47a5bee6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Texttospeech/AudioConfig.php +++ /dev/null @@ -1,76 +0,0 @@ -audioEncoding = $audioEncoding; - } - public function getAudioEncoding() - { - return $this->audioEncoding; - } - public function setEffectsProfileId($effectsProfileId) - { - $this->effectsProfileId = $effectsProfileId; - } - public function getEffectsProfileId() - { - return $this->effectsProfileId; - } - public function setPitch($pitch) - { - $this->pitch = $pitch; - } - public function getPitch() - { - return $this->pitch; - } - public function setSampleRateHertz($sampleRateHertz) - { - $this->sampleRateHertz = $sampleRateHertz; - } - public function getSampleRateHertz() - { - return $this->sampleRateHertz; - } - public function setSpeakingRate($speakingRate) - { - $this->speakingRate = $speakingRate; - } - public function getSpeakingRate() - { - return $this->speakingRate; - } - public function setVolumeGainDb($volumeGainDb) - { - $this->volumeGainDb = $volumeGainDb; - } - public function getVolumeGainDb() - { - return $this->volumeGainDb; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Texttospeech/ListVoicesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Texttospeech/ListVoicesResponse.php deleted file mode 100644 index 07a78f20..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Texttospeech/ListVoicesResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -voices = $voices; - } - /** - * @return Google_Service_Texttospeech_Voice - */ - public function getVoices() - { - return $this->voices; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Texttospeech/Resource/Text.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Texttospeech/Resource/Text.php deleted file mode 100644 index 3f7cd277..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Texttospeech/Resource/Text.php +++ /dev/null @@ -1,42 +0,0 @@ - - * $texttospeechService = new Google_Service_Texttospeech(...); - * $text = $texttospeechService->text; - * - */ -class Google_Service_Texttospeech_Resource_Text extends Google_Service_Resource -{ - /** - * Synthesizes speech synchronously: receive results after all text input has - * been processed. (text.synthesize) - * - * @param Google_Service_Texttospeech_SynthesizeSpeechRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Texttospeech_SynthesizeSpeechResponse - */ - public function synthesize(Google_Service_Texttospeech_SynthesizeSpeechRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('synthesize', array($params), "Google_Service_Texttospeech_SynthesizeSpeechResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Texttospeech/Resource/Voices.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Texttospeech/Resource/Voices.php deleted file mode 100644 index aec1f37d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Texttospeech/Resource/Voices.php +++ /dev/null @@ -1,48 +0,0 @@ - - * $texttospeechService = new Google_Service_Texttospeech(...); - * $voices = $texttospeechService->voices; - * - */ -class Google_Service_Texttospeech_Resource_Voices extends Google_Service_Resource -{ - /** - * Returns a list of Voice supported for synthesis. (voices.listVoices) - * - * @param array $optParams Optional parameters. - * - * @opt_param string languageCode Optional. Recommended. [BCP-47](https://www - * .rfc-editor.org/rfc/bcp/bcp47.txt) language tag. If specified, the ListVoices - * call will only return voices that can be used to synthesize this - * language_code. E.g. when specifying "en-NZ", you will get supported "en-*" - * voices; when specifying "no", you will get supported "no-*" (Norwegian) and - * "nb-*" (Norwegian Bokmal) voices; specifying "zh" will also get supported - * "cmn-*" voices; specifying "zh-hk" will also get supported "yue-*" voices. - * @return Google_Service_Texttospeech_ListVoicesResponse - */ - public function listVoices($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Texttospeech_ListVoicesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Texttospeech/SynthesisInput.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Texttospeech/SynthesisInput.php deleted file mode 100644 index 8d680f85..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Texttospeech/SynthesisInput.php +++ /dev/null @@ -1,39 +0,0 @@ -ssml = $ssml; - } - public function getSsml() - { - return $this->ssml; - } - public function setText($text) - { - $this->text = $text; - } - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Texttospeech/SynthesizeSpeechRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Texttospeech/SynthesizeSpeechRequest.php deleted file mode 100644 index 235ddaf6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Texttospeech/SynthesizeSpeechRequest.php +++ /dev/null @@ -1,69 +0,0 @@ -audioConfig = $audioConfig; - } - /** - * @return Google_Service_Texttospeech_AudioConfig - */ - public function getAudioConfig() - { - return $this->audioConfig; - } - /** - * @param Google_Service_Texttospeech_SynthesisInput - */ - public function setInput(Google_Service_Texttospeech_SynthesisInput $input) - { - $this->input = $input; - } - /** - * @return Google_Service_Texttospeech_SynthesisInput - */ - public function getInput() - { - return $this->input; - } - /** - * @param Google_Service_Texttospeech_VoiceSelectionParams - */ - public function setVoice(Google_Service_Texttospeech_VoiceSelectionParams $voice) - { - $this->voice = $voice; - } - /** - * @return Google_Service_Texttospeech_VoiceSelectionParams - */ - public function getVoice() - { - return $this->voice; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Texttospeech/SynthesizeSpeechResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Texttospeech/SynthesizeSpeechResponse.php deleted file mode 100644 index 6ea8644d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Texttospeech/SynthesizeSpeechResponse.php +++ /dev/null @@ -1,30 +0,0 @@ -audioContent = $audioContent; - } - public function getAudioContent() - { - return $this->audioContent; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Texttospeech/Voice.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Texttospeech/Voice.php deleted file mode 100644 index a73f3fc5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Texttospeech/Voice.php +++ /dev/null @@ -1,58 +0,0 @@ -languageCodes = $languageCodes; - } - public function getLanguageCodes() - { - return $this->languageCodes; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setNaturalSampleRateHertz($naturalSampleRateHertz) - { - $this->naturalSampleRateHertz = $naturalSampleRateHertz; - } - public function getNaturalSampleRateHertz() - { - return $this->naturalSampleRateHertz; - } - public function setSsmlGender($ssmlGender) - { - $this->ssmlGender = $ssmlGender; - } - public function getSsmlGender() - { - return $this->ssmlGender; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Texttospeech/VoiceSelectionParams.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Texttospeech/VoiceSelectionParams.php deleted file mode 100644 index e16928bd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Texttospeech/VoiceSelectionParams.php +++ /dev/null @@ -1,48 +0,0 @@ -languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setSsmlGender($ssmlGender) - { - $this->ssmlGender = $ssmlGender; - } - public function getSsmlGender() - { - return $this->ssmlGender; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults.php deleted file mode 100644 index 99d1a31d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults.php +++ /dev/null @@ -1,53 +0,0 @@ - - * API to publish and access results from developer tools.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_ToolResults extends Google_Service -{ - - - - - /** - * Constructs the internal representation of the ToolResults service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://toolresults.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'toolresults'; - - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/ANR.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/ANR.php deleted file mode 100644 index 186fc61f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/ANR.php +++ /dev/null @@ -1,37 +0,0 @@ -stackTrace = $stackTrace; - } - /** - * @return Google_Service_ToolResults_StackTrace - */ - public function getStackTrace() - { - return $this->stackTrace; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/AvailableDeepLinks.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/AvailableDeepLinks.php deleted file mode 100644 index 7a0072b1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/AvailableDeepLinks.php +++ /dev/null @@ -1,20 +0,0 @@ -screenId = $screenId; - } - public function getScreenId() - { - return $this->screenId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/CrashDialogError.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/CrashDialogError.php deleted file mode 100644 index 5d7994fb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/CrashDialogError.php +++ /dev/null @@ -1,30 +0,0 @@ -crashPackage = $crashPackage; - } - public function getCrashPackage() - { - return $this->crashPackage; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/EncounteredLoginScreen.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/EncounteredLoginScreen.php deleted file mode 100644 index 183566d3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/EncounteredLoginScreen.php +++ /dev/null @@ -1,40 +0,0 @@ -distinctScreens = $distinctScreens; - } - public function getDistinctScreens() - { - return $this->distinctScreens; - } - public function setScreenIds($screenIds) - { - $this->screenIds = $screenIds; - } - public function getScreenIds() - { - return $this->screenIds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/EncounteredNonAndroidUiWidgetScreen.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/EncounteredNonAndroidUiWidgetScreen.php deleted file mode 100644 index 8fe8799b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/EncounteredNonAndroidUiWidgetScreen.php +++ /dev/null @@ -1,40 +0,0 @@ -distinctScreens = $distinctScreens; - } - public function getDistinctScreens() - { - return $this->distinctScreens; - } - public function setScreenIds($screenIds) - { - $this->screenIds = $screenIds; - } - public function getScreenIds() - { - return $this->screenIds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/FailedToInstall.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/FailedToInstall.php deleted file mode 100644 index a43f746a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/FailedToInstall.php +++ /dev/null @@ -1,20 +0,0 @@ -stackTrace = $stackTrace; - } - /** - * @return Google_Service_ToolResults_StackTrace - */ - public function getStackTrace() - { - return $this->stackTrace; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/InAppPurchasesFound.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/InAppPurchasesFound.php deleted file mode 100644 index 8ca08a5c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/InAppPurchasesFound.php +++ /dev/null @@ -1,39 +0,0 @@ -inAppPurchasesFlowsExplored = $inAppPurchasesFlowsExplored; - } - public function getInAppPurchasesFlowsExplored() - { - return $this->inAppPurchasesFlowsExplored; - } - public function setInAppPurchasesFlowsStarted($inAppPurchasesFlowsStarted) - { - $this->inAppPurchasesFlowsStarted = $inAppPurchasesFlowsStarted; - } - public function getInAppPurchasesFlowsStarted() - { - return $this->inAppPurchasesFlowsStarted; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/InsufficientCoverage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/InsufficientCoverage.php deleted file mode 100644 index a2bc151b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/InsufficientCoverage.php +++ /dev/null @@ -1,20 +0,0 @@ -stackTrace = $stackTrace; - } - /** - * @return Google_Service_ToolResults_StackTrace - */ - public function getStackTrace() - { - return $this->stackTrace; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/LauncherActivityNotFound.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/LauncherActivityNotFound.php deleted file mode 100644 index 187f45f9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/LauncherActivityNotFound.php +++ /dev/null @@ -1,20 +0,0 @@ -stackTrace = $stackTrace; - } - /** - * @return Google_Service_ToolResults_StackTrace - */ - public function getStackTrace() - { - return $this->stackTrace; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/NonSdkApi.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/NonSdkApi.php deleted file mode 100644 index fa06fe39..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/NonSdkApi.php +++ /dev/null @@ -1,74 +0,0 @@ -apiSignature = $apiSignature; - } - public function getApiSignature() - { - return $this->apiSignature; - } - public function setExampleStackTraces($exampleStackTraces) - { - $this->exampleStackTraces = $exampleStackTraces; - } - public function getExampleStackTraces() - { - return $this->exampleStackTraces; - } - /** - * @param Google_Service_ToolResults_NonSdkApiInsight - */ - public function setInsights($insights) - { - $this->insights = $insights; - } - /** - * @return Google_Service_ToolResults_NonSdkApiInsight - */ - public function getInsights() - { - return $this->insights; - } - public function setInvocationCount($invocationCount) - { - $this->invocationCount = $invocationCount; - } - public function getInvocationCount() - { - return $this->invocationCount; - } - public function setList($list) - { - $this->list = $list; - } - public function getList() - { - return $this->list; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/NonSdkApiInsight.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/NonSdkApiInsight.php deleted file mode 100644 index c77f2602..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/NonSdkApiInsight.php +++ /dev/null @@ -1,72 +0,0 @@ -exampleTraceMessages = $exampleTraceMessages; - } - public function getExampleTraceMessages() - { - return $this->exampleTraceMessages; - } - public function setMatcherId($matcherId) - { - $this->matcherId = $matcherId; - } - public function getMatcherId() - { - return $this->matcherId; - } - /** - * @param Google_Service_ToolResults_PendingGoogleUpdateInsight - */ - public function setPendingGoogleUpdateInsight(Google_Service_ToolResults_PendingGoogleUpdateInsight $pendingGoogleUpdateInsight) - { - $this->pendingGoogleUpdateInsight = $pendingGoogleUpdateInsight; - } - /** - * @return Google_Service_ToolResults_PendingGoogleUpdateInsight - */ - public function getPendingGoogleUpdateInsight() - { - return $this->pendingGoogleUpdateInsight; - } - /** - * @param Google_Service_ToolResults_UpgradeInsight - */ - public function setUpgradeInsight(Google_Service_ToolResults_UpgradeInsight $upgradeInsight) - { - $this->upgradeInsight = $upgradeInsight; - } - /** - * @return Google_Service_ToolResults_UpgradeInsight - */ - public function getUpgradeInsight() - { - return $this->upgradeInsight; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/NonSdkApiUsageViolation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/NonSdkApiUsageViolation.php deleted file mode 100644 index 071055ca..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/NonSdkApiUsageViolation.php +++ /dev/null @@ -1,40 +0,0 @@ -apiSignatures = $apiSignatures; - } - public function getApiSignatures() - { - return $this->apiSignatures; - } - public function setUniqueApis($uniqueApis) - { - $this->uniqueApis = $uniqueApis; - } - public function getUniqueApis() - { - return $this->uniqueApis; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/NonSdkApiUsageViolationReport.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/NonSdkApiUsageViolationReport.php deleted file mode 100644 index 3671ecf1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/NonSdkApiUsageViolationReport.php +++ /dev/null @@ -1,65 +0,0 @@ -exampleApis = $exampleApis; - } - /** - * @return Google_Service_ToolResults_NonSdkApi - */ - public function getExampleApis() - { - return $this->exampleApis; - } - public function setMinSdkVersion($minSdkVersion) - { - $this->minSdkVersion = $minSdkVersion; - } - public function getMinSdkVersion() - { - return $this->minSdkVersion; - } - public function setTargetSdkVersion($targetSdkVersion) - { - $this->targetSdkVersion = $targetSdkVersion; - } - public function getTargetSdkVersion() - { - return $this->targetSdkVersion; - } - public function setUniqueApis($uniqueApis) - { - $this->uniqueApis = $uniqueApis; - } - public function getUniqueApis() - { - return $this->uniqueApis; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/OverlappingUIElements.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/OverlappingUIElements.php deleted file mode 100644 index 4f50dbd2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/OverlappingUIElements.php +++ /dev/null @@ -1,40 +0,0 @@ -resourceName = $resourceName; - } - public function getResourceName() - { - return $this->resourceName; - } - public function setScreenId($screenId) - { - $this->screenId = $screenId; - } - public function getScreenId() - { - return $this->screenId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/PendingGoogleUpdateInsight.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/PendingGoogleUpdateInsight.php deleted file mode 100644 index b805b4ef..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/PendingGoogleUpdateInsight.php +++ /dev/null @@ -1,30 +0,0 @@ -nameOfGoogleLibrary = $nameOfGoogleLibrary; - } - public function getNameOfGoogleLibrary() - { - return $this->nameOfGoogleLibrary; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/PerformedGoogleLogin.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/PerformedGoogleLogin.php deleted file mode 100644 index fe1954bd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/PerformedGoogleLogin.php +++ /dev/null @@ -1,20 +0,0 @@ -totalActions = $totalActions; - } - public function getTotalActions() - { - return $this->totalActions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/RoboScriptExecution.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/RoboScriptExecution.php deleted file mode 100644 index 28e65bc6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/RoboScriptExecution.php +++ /dev/null @@ -1,39 +0,0 @@ -successfulActions = $successfulActions; - } - public function getSuccessfulActions() - { - return $this->successfulActions; - } - public function setTotalActions($totalActions) - { - $this->totalActions = $totalActions; - } - public function getTotalActions() - { - return $this->totalActions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/StackTrace.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/StackTrace.php deleted file mode 100644 index 083761dc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/StackTrace.php +++ /dev/null @@ -1,30 +0,0 @@ -exception = $exception; - } - public function getException() - { - return $this->exception; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/StartActivityNotFound.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/StartActivityNotFound.php deleted file mode 100644 index d63e6cb8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/StartActivityNotFound.php +++ /dev/null @@ -1,39 +0,0 @@ -action = $action; - } - public function getAction() - { - return $this->action; - } - public function setUri($uri) - { - $this->uri = $uri; - } - public function getUri() - { - return $this->uri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/UIElementTooDeep.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/UIElementTooDeep.php deleted file mode 100644 index 05dc9a65..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/UIElementTooDeep.php +++ /dev/null @@ -1,48 +0,0 @@ -depth = $depth; - } - public function getDepth() - { - return $this->depth; - } - public function setScreenId($screenId) - { - $this->screenId = $screenId; - } - public function getScreenId() - { - return $this->screenId; - } - public function setScreenStateId($screenStateId) - { - $this->screenStateId = $screenStateId; - } - public function getScreenStateId() - { - return $this->screenStateId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/UnspecifiedWarning.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/UnspecifiedWarning.php deleted file mode 100644 index d2380bd0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/UnspecifiedWarning.php +++ /dev/null @@ -1,20 +0,0 @@ -resourceName = $resourceName; - } - public function getResourceName() - { - return $this->resourceName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/UpgradeInsight.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/UpgradeInsight.php deleted file mode 100644 index 9346c5c2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/UpgradeInsight.php +++ /dev/null @@ -1,39 +0,0 @@ -packageName = $packageName; - } - public function getPackageName() - { - return $this->packageName; - } - public function setUpgradeToVersion($upgradeToVersion) - { - $this->upgradeToVersion = $upgradeToVersion; - } - public function getUpgradeToVersion() - { - return $this->upgradeToVersion; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/UsedRoboDirective.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/UsedRoboDirective.php deleted file mode 100644 index 5ef4c4c8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/UsedRoboDirective.php +++ /dev/null @@ -1,30 +0,0 @@ -resourceName = $resourceName; - } - public function getResourceName() - { - return $this->resourceName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/UsedRoboIgnoreDirective.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/UsedRoboIgnoreDirective.php deleted file mode 100644 index 9a5c424d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/ToolResults/UsedRoboIgnoreDirective.php +++ /dev/null @@ -1,30 +0,0 @@ -resourceName = $resourceName; - } - public function getResourceName() - { - return $this->resourceName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing.php deleted file mode 100644 index 8420f6c2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing.php +++ /dev/null @@ -1,148 +0,0 @@ - - * Send and retrieve trace data from Google Stackdriver Trace.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Tracing extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** Write Trace data for a project or application. */ - const TRACE_APPEND = - "https://www.googleapis.com/auth/trace.append"; - /** Read Trace data for a project or application. */ - const TRACE_READONLY = - "https://www.googleapis.com/auth/trace.readonly"; - - public $projects_traces; - public $projects_traces_spans; - - /** - * Constructs the internal representation of the Tracing service. - * - * @param Google_Client $client - */ - public function __construct(Google_Client $client) - { - parent::__construct($client); - $this->rootUrl = 'https://tracing.googleapis.com/'; - $this->servicePath = ''; - $this->version = 'v2'; - $this->serviceName = 'tracing'; - - $this->projects_traces = new Google_Service_Tracing_Resource_ProjectsTraces( - $this, - $this->serviceName, - 'traces', - array( - 'methods' => array( - 'batchWrite' => array( - 'path' => 'v2/{+name}/traces:batchWrite', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v2/{+parent}/traces', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'endTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'startTime' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'orderBy' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'listSpans' => array( - 'path' => 'v2/{+parent}:listSpans', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_traces_spans = new Google_Service_Tracing_Resource_ProjectsTracesSpans( - $this, - $this->serviceName, - 'spans', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v2/{+name}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/Annotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/Annotation.php deleted file mode 100644 index 8888b61a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/Annotation.php +++ /dev/null @@ -1,41 +0,0 @@ -attributes = $attributes; - } - public function getAttributes() - { - return $this->attributes; - } - public function setDescription(Google_Service_Tracing_TruncatableString $description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/AttributeValue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/AttributeValue.php deleted file mode 100644 index e0a269ac..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/AttributeValue.php +++ /dev/null @@ -1,49 +0,0 @@ -boolValue = $boolValue; - } - public function getBoolValue() - { - return $this->boolValue; - } - public function setIntValue($intValue) - { - $this->intValue = $intValue; - } - public function getIntValue() - { - return $this->intValue; - } - public function setStringValue(Google_Service_Tracing_TruncatableString $stringValue) - { - $this->stringValue = $stringValue; - } - public function getStringValue() - { - return $this->stringValue; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/Attributes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/Attributes.php deleted file mode 100644 index fb772193..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/Attributes.php +++ /dev/null @@ -1,40 +0,0 @@ -attributeMap = $attributeMap; - } - public function getAttributeMap() - { - return $this->attributeMap; - } - public function setDroppedAttributesCount($droppedAttributesCount) - { - $this->droppedAttributesCount = $droppedAttributesCount; - } - public function getDroppedAttributesCount() - { - return $this->droppedAttributesCount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/BatchWriteSpansRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/BatchWriteSpansRequest.php deleted file mode 100644 index 68f325e6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/BatchWriteSpansRequest.php +++ /dev/null @@ -1,32 +0,0 @@ -spans = $spans; - } - public function getSpans() - { - return $this->spans; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/Link.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/Link.php deleted file mode 100644 index 587280a5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/Link.php +++ /dev/null @@ -1,48 +0,0 @@ -spanId = $spanId; - } - public function getSpanId() - { - return $this->spanId; - } - public function setTraceId($traceId) - { - $this->traceId = $traceId; - } - public function getTraceId() - { - return $this->traceId; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/Links.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/Links.php deleted file mode 100644 index 878b1c6c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/Links.php +++ /dev/null @@ -1,41 +0,0 @@ -droppedLinksCount = $droppedLinksCount; - } - public function getDroppedLinksCount() - { - return $this->droppedLinksCount; - } - public function setLink($link) - { - $this->link = $link; - } - public function getLink() - { - return $this->link; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/ListSpansResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/ListSpansResponse.php deleted file mode 100644 index 4b407f53..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/ListSpansResponse.php +++ /dev/null @@ -1,41 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setSpans($spans) - { - $this->spans = $spans; - } - public function getSpans() - { - return $this->spans; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/ListTracesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/ListTracesResponse.php deleted file mode 100644 index 0997323c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/ListTracesResponse.php +++ /dev/null @@ -1,41 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setTraces($traces) - { - $this->traces = $traces; - } - public function getTraces() - { - return $this->traces; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/Module.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/Module.php deleted file mode 100644 index 2d1bf2f9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/Module.php +++ /dev/null @@ -1,41 +0,0 @@ -buildId = $buildId; - } - public function getBuildId() - { - return $this->buildId; - } - public function setModule(Google_Service_Tracing_TruncatableString $module) - { - $this->module = $module; - } - public function getModule() - { - return $this->module; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/NetworkEvent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/NetworkEvent.php deleted file mode 100644 index 8fb2ce2d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/NetworkEvent.php +++ /dev/null @@ -1,57 +0,0 @@ -messageId = $messageId; - } - public function getMessageId() - { - return $this->messageId; - } - public function setMessageSize($messageSize) - { - $this->messageSize = $messageSize; - } - public function getMessageSize() - { - return $this->messageSize; - } - public function setTime($time) - { - $this->time = $time; - } - public function getTime() - { - return $this->time; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/Resource/Projects.php deleted file mode 100644 index 2bae3ba3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/Resource/Projects.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $tracingService = new Google_Service_Tracing(...); - * $projects = $tracingService->projects; - * - */ -class Google_Service_Tracing_Resource_Projects extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/Resource/ProjectsTraces.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/Resource/ProjectsTraces.php deleted file mode 100644 index 6563ce86..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/Resource/ProjectsTraces.php +++ /dev/null @@ -1,105 +0,0 @@ - - * $tracingService = new Google_Service_Tracing(...); - * $traces = $tracingService->traces; - * - */ -class Google_Service_Tracing_Resource_ProjectsTraces extends Google_Service_Resource -{ - /** - * Sends new spans to Stackdriver Trace or updates existing traces. If the name - * of a trace that you send matches that of an existing trace, new spans are - * added to the existing trace. Attempt to update existing spans results - * undefined behavior. If the name does not match, a new trace is created with - * given set of spans. (traces.batchWrite) - * - * @param string $name Name of the project where the spans belong to. Format is - * `projects/PROJECT_ID`. - * @param Google_Service_Tracing_BatchWriteSpansRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Tracing_TracingEmpty - */ - public function batchWrite($name, Google_Service_Tracing_BatchWriteSpansRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('batchWrite', array($params), "Google_Service_Tracing_TracingEmpty"); - } - /** - * Returns of a list of traces that match the specified filter conditions. - * (traces.listProjectsTraces) - * - * @param string $parent ID of the Cloud project where the trace data is stored - * which is `projects/PROJECT_ID`. - * @param array $optParams Optional parameters. - * - * @opt_param string filter An optional filter for the request. Example: - * `version_label_key:a some_label:some_label_key` returns traces from version - * `a` and has `some_label` with `some_label_key`. - * @opt_param string endTime End of the time interval (inclusive) during which - * the trace data was collected from the application. - * @opt_param string pageToken Token identifying the page of results to return. - * If provided, use the value of the `next_page_token` field from a previous - * request. Optional. - * @opt_param string startTime Start of the time interval (inclusive) during - * which the trace data was collected from the application. - * @opt_param int pageSize Maximum number of traces to return. If not specified - * or <= 0, the implementation selects a reasonable value. The implementation - * may return fewer traces than the requested page size. Optional. - * @opt_param string orderBy Field used to sort the returned traces. Optional. - * Can be one of the following: - * - * * `trace_id` * `name` (`name` field of root span in the trace) * - * `duration` (difference between `end_time` and `start_time` fields of the - * root span) * `start` (`start_time` field of the root span) - * - * Descending order can be specified by appending `desc` to the sort field (for - * example, `name desc`). - * - * Only one sort field is permitted. - * @return Google_Service_Tracing_ListTracesResponse - */ - public function listProjectsTraces($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Tracing_ListTracesResponse"); - } - /** - * Returns a list of spans within a trace. (traces.listSpans) - * - * @param string $parent ID of the trace for which to list child spans. Format - * is `projects/PROJECT_ID/traces/TRACE_ID`. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Token identifying the page of results to return. - * If provided, use the value of the `nextPageToken` field from a previous - * request. Optional. - * @return Google_Service_Tracing_ListSpansResponse - */ - public function listSpans($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('listSpans', array($params), "Google_Service_Tracing_ListSpansResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/Resource/ProjectsTracesSpans.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/Resource/ProjectsTracesSpans.php deleted file mode 100644 index 27ab62a8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/Resource/ProjectsTracesSpans.php +++ /dev/null @@ -1,47 +0,0 @@ - - * $tracingService = new Google_Service_Tracing(...); - * $spans = $tracingService->spans; - * - */ -class Google_Service_Tracing_Resource_ProjectsTracesSpans extends Google_Service_Resource -{ - /** - * Creates a new Span. (spans.create) - * - * @param string $name The resource name of Span in the format - * `projects/PROJECT_ID/traces/TRACE_ID/spans/SPAN_ID`. `TRACE_ID` is a unique - * identifier for a trace within a project and is a base16-encoded, case- - * insensitive string and is required to be 32 char long. `SPAN_ID` is a unique - * identifier for a span within a trace. It is a base 16-encoded, case- - * insensitive string of a 8-bytes array and is required to be 16 char long. - * @param Google_Service_Tracing_Span $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Tracing_Span - */ - public function create($name, Google_Service_Tracing_Span $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Tracing_Span"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/Span.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/Span.php deleted file mode 100644 index 378b3b12..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/Span.php +++ /dev/null @@ -1,126 +0,0 @@ -attributes = $attributes; - } - public function getAttributes() - { - return $this->attributes; - } - public function setDisplayName(Google_Service_Tracing_TruncatableString $displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setLinks(Google_Service_Tracing_Links $links) - { - $this->links = $links; - } - public function getLinks() - { - return $this->links; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setParentSpanId($parentSpanId) - { - $this->parentSpanId = $parentSpanId; - } - public function getParentSpanId() - { - return $this->parentSpanId; - } - public function setSpanId($spanId) - { - $this->spanId = $spanId; - } - public function getSpanId() - { - return $this->spanId; - } - public function setStackTrace(Google_Service_Tracing_StackTrace $stackTrace) - { - $this->stackTrace = $stackTrace; - } - public function getStackTrace() - { - return $this->stackTrace; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } - public function setStatus(Google_Service_Tracing_Status $status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setTimeEvents(Google_Service_Tracing_TimeEvents $timeEvents) - { - $this->timeEvents = $timeEvents; - } - public function getTimeEvents() - { - return $this->timeEvents; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/StackFrame.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/StackFrame.php deleted file mode 100644 index a2fde1ef..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/StackFrame.php +++ /dev/null @@ -1,89 +0,0 @@ -columnNumber = $columnNumber; - } - public function getColumnNumber() - { - return $this->columnNumber; - } - public function setFileName(Google_Service_Tracing_TruncatableString $fileName) - { - $this->fileName = $fileName; - } - public function getFileName() - { - return $this->fileName; - } - public function setFunctionName(Google_Service_Tracing_TruncatableString $functionName) - { - $this->functionName = $functionName; - } - public function getFunctionName() - { - return $this->functionName; - } - public function setLineNumber($lineNumber) - { - $this->lineNumber = $lineNumber; - } - public function getLineNumber() - { - return $this->lineNumber; - } - public function setLoadModule(Google_Service_Tracing_Module $loadModule) - { - $this->loadModule = $loadModule; - } - public function getLoadModule() - { - return $this->loadModule; - } - public function setOriginalFunctionName(Google_Service_Tracing_TruncatableString $originalFunctionName) - { - $this->originalFunctionName = $originalFunctionName; - } - public function getOriginalFunctionName() - { - return $this->originalFunctionName; - } - public function setSourceVersion(Google_Service_Tracing_TruncatableString $sourceVersion) - { - $this->sourceVersion = $sourceVersion; - } - public function getSourceVersion() - { - return $this->sourceVersion; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/StackFrames.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/StackFrames.php deleted file mode 100644 index 252a8317..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/StackFrames.php +++ /dev/null @@ -1,41 +0,0 @@ -droppedFramesCount = $droppedFramesCount; - } - public function getDroppedFramesCount() - { - return $this->droppedFramesCount; - } - public function setFrame($frame) - { - $this->frame = $frame; - } - public function getFrame() - { - return $this->frame; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/StackTrace.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/StackTrace.php deleted file mode 100644 index d4433b4d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/StackTrace.php +++ /dev/null @@ -1,40 +0,0 @@ -stackFrames = $stackFrames; - } - public function getStackFrames() - { - return $this->stackFrames; - } - public function setStackTraceHashId($stackTraceHashId) - { - $this->stackTraceHashId = $stackTraceHashId; - } - public function getStackTraceHashId() - { - return $this->stackTraceHashId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/Status.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/Status.php deleted file mode 100644 index afafed75..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/Status.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/TimeEvent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/TimeEvent.php deleted file mode 100644 index 4cc0fedc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/TimeEvent.php +++ /dev/null @@ -1,50 +0,0 @@ -annotation = $annotation; - } - public function getAnnotation() - { - return $this->annotation; - } - public function setNetworkEvent(Google_Service_Tracing_NetworkEvent $networkEvent) - { - $this->networkEvent = $networkEvent; - } - public function getNetworkEvent() - { - return $this->networkEvent; - } - public function setTime($time) - { - $this->time = $time; - } - public function getTime() - { - return $this->time; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/TimeEvents.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/TimeEvents.php deleted file mode 100644 index ed16a3a6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/TimeEvents.php +++ /dev/null @@ -1,50 +0,0 @@ -droppedAnnotationsCount = $droppedAnnotationsCount; - } - public function getDroppedAnnotationsCount() - { - return $this->droppedAnnotationsCount; - } - public function setDroppedNetworkEventsCount($droppedNetworkEventsCount) - { - $this->droppedNetworkEventsCount = $droppedNetworkEventsCount; - } - public function getDroppedNetworkEventsCount() - { - return $this->droppedNetworkEventsCount; - } - public function setTimeEvent($timeEvent) - { - $this->timeEvent = $timeEvent; - } - public function getTimeEvent() - { - return $this->timeEvent; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/Trace.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/Trace.php deleted file mode 100644 index 958b5e4b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/Trace.php +++ /dev/null @@ -1,30 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/TracingEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/TracingEmpty.php deleted file mode 100644 index b1c2933d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Tracing/TracingEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -truncatedCharacterCount = $truncatedCharacterCount; - } - public function getTruncatedCharacterCount() - { - return $this->truncatedCharacterCount; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate.php deleted file mode 100644 index 71a6a860..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate.php +++ /dev/null @@ -1,333 +0,0 @@ - - * Integrates text translation into your website or application.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Translate extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** Translate text from one language to another using Google Translate. */ - const CLOUD_TRANSLATION = - "https://www.googleapis.com/auth/cloud-translation"; - - public $projects; - public $projects_locations; - public $projects_locations_glossaries; - public $projects_locations_operations; - - /** - * Constructs the internal representation of the Translate service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://translation.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v3'; - $this->serviceName = 'translate'; - - $this->projects = new Google_Service_Translate_Resource_Projects( - $this, - $this->serviceName, - 'projects', - array( - 'methods' => array( - 'detectLanguage' => array( - 'path' => 'v3/{+parent}:detectLanguage', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getSupportedLanguages' => array( - 'path' => 'v3/{+parent}/supportedLanguages', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'model' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'displayLanguageCode' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'translateText' => array( - 'path' => 'v3/{+parent}:translateText', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_locations = new Google_Service_Translate_Resource_ProjectsLocations( - $this, - $this->serviceName, - 'locations', - array( - 'methods' => array( - 'batchTranslateText' => array( - 'path' => 'v3/{+parent}:batchTranslateText', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'detectLanguage' => array( - 'path' => 'v3/{+parent}:detectLanguage', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v3/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'getSupportedLanguages' => array( - 'path' => 'v3/{+parent}/supportedLanguages', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'displayLanguageCode' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'model' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'v3/{+name}/locations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'translateText' => array( - 'path' => 'v3/{+parent}:translateText', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_locations_glossaries = new Google_Service_Translate_Resource_ProjectsLocationsGlossaries( - $this, - $this->serviceName, - 'glossaries', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v3/{+parent}/glossaries', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v3/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v3/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v3/{+parent}/glossaries', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_locations_operations = new Google_Service_Translate_Resource_ProjectsLocationsOperations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'cancel' => array( - 'path' => 'v3/{+name}:cancel', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v3/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v3/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v3/{+name}/operations', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'wait' => array( - 'path' => 'v3/{+name}:wait', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/BatchTranslateTextRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/BatchTranslateTextRequest.php deleted file mode 100644 index 9052037c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/BatchTranslateTextRequest.php +++ /dev/null @@ -1,106 +0,0 @@ -glossaries = $glossaries; - } - /** - * @return Google_Service_Translate_TranslateTextGlossaryConfig - */ - public function getGlossaries() - { - return $this->glossaries; - } - /** - * @param Google_Service_Translate_InputConfig - */ - public function setInputConfigs($inputConfigs) - { - $this->inputConfigs = $inputConfigs; - } - /** - * @return Google_Service_Translate_InputConfig - */ - public function getInputConfigs() - { - return $this->inputConfigs; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setModels($models) - { - $this->models = $models; - } - public function getModels() - { - return $this->models; - } - /** - * @param Google_Service_Translate_OutputConfig - */ - public function setOutputConfig(Google_Service_Translate_OutputConfig $outputConfig) - { - $this->outputConfig = $outputConfig; - } - /** - * @return Google_Service_Translate_OutputConfig - */ - public function getOutputConfig() - { - return $this->outputConfig; - } - public function setSourceLanguageCode($sourceLanguageCode) - { - $this->sourceLanguageCode = $sourceLanguageCode; - } - public function getSourceLanguageCode() - { - return $this->sourceLanguageCode; - } - public function setTargetLanguageCodes($targetLanguageCodes) - { - $this->targetLanguageCodes = $targetLanguageCodes; - } - public function getTargetLanguageCodes() - { - return $this->targetLanguageCodes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/CancelOperationRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/CancelOperationRequest.php deleted file mode 100644 index f9f39851..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/CancelOperationRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -content = $content; - } - public function getContent() - { - return $this->content; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setMimeType($mimeType) - { - $this->mimeType = $mimeType; - } - public function getMimeType() - { - return $this->mimeType; - } - public function setModel($model) - { - $this->model = $model; - } - public function getModel() - { - return $this->model; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/DetectLanguageResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/DetectLanguageResponse.php deleted file mode 100644 index 923034fe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/DetectLanguageResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -languages = $languages; - } - /** - * @return Google_Service_Translate_DetectedLanguage - */ - public function getLanguages() - { - return $this->languages; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/DetectedLanguage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/DetectedLanguage.php deleted file mode 100644 index 70e3b63b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/DetectedLanguage.php +++ /dev/null @@ -1,39 +0,0 @@ -confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - public function setLanguageCode($languageCode) - { - $this->languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/GcsDestination.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/GcsDestination.php deleted file mode 100644 index 12f61a9d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/GcsDestination.php +++ /dev/null @@ -1,30 +0,0 @@ -outputUriPrefix = $outputUriPrefix; - } - public function getOutputUriPrefix() - { - return $this->outputUriPrefix; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/GcsSource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/GcsSource.php deleted file mode 100644 index 301ac99a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/GcsSource.php +++ /dev/null @@ -1,30 +0,0 @@ -inputUri = $inputUri; - } - public function getInputUri() - { - return $this->inputUri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/Glossary.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/Glossary.php deleted file mode 100644 index 27ef7313..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/Glossary.php +++ /dev/null @@ -1,105 +0,0 @@ -endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setEntryCount($entryCount) - { - $this->entryCount = $entryCount; - } - public function getEntryCount() - { - return $this->entryCount; - } - /** - * @param Google_Service_Translate_GlossaryInputConfig - */ - public function setInputConfig(Google_Service_Translate_GlossaryInputConfig $inputConfig) - { - $this->inputConfig = $inputConfig; - } - /** - * @return Google_Service_Translate_GlossaryInputConfig - */ - public function getInputConfig() - { - return $this->inputConfig; - } - /** - * @param Google_Service_Translate_LanguageCodesSet - */ - public function setLanguageCodesSet(Google_Service_Translate_LanguageCodesSet $languageCodesSet) - { - $this->languageCodesSet = $languageCodesSet; - } - /** - * @return Google_Service_Translate_LanguageCodesSet - */ - public function getLanguageCodesSet() - { - return $this->languageCodesSet; - } - /** - * @param Google_Service_Translate_LanguageCodePair - */ - public function setLanguagePair(Google_Service_Translate_LanguageCodePair $languagePair) - { - $this->languagePair = $languagePair; - } - /** - * @return Google_Service_Translate_LanguageCodePair - */ - public function getLanguagePair() - { - return $this->languagePair; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setSubmitTime($submitTime) - { - $this->submitTime = $submitTime; - } - public function getSubmitTime() - { - return $this->submitTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/GlossaryInputConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/GlossaryInputConfig.php deleted file mode 100644 index 3fe7f378..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/GlossaryInputConfig.php +++ /dev/null @@ -1,37 +0,0 @@ -gcsSource = $gcsSource; - } - /** - * @return Google_Service_Translate_GcsSource - */ - public function getGcsSource() - { - return $this->gcsSource; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/InputConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/InputConfig.php deleted file mode 100644 index c7a44037..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/InputConfig.php +++ /dev/null @@ -1,46 +0,0 @@ -gcsSource = $gcsSource; - } - /** - * @return Google_Service_Translate_GcsSource - */ - public function getGcsSource() - { - return $this->gcsSource; - } - public function setMimeType($mimeType) - { - $this->mimeType = $mimeType; - } - public function getMimeType() - { - return $this->mimeType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/LanguageCodePair.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/LanguageCodePair.php deleted file mode 100644 index ee6541bf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/LanguageCodePair.php +++ /dev/null @@ -1,39 +0,0 @@ -sourceLanguageCode = $sourceLanguageCode; - } - public function getSourceLanguageCode() - { - return $this->sourceLanguageCode; - } - public function setTargetLanguageCode($targetLanguageCode) - { - $this->targetLanguageCode = $targetLanguageCode; - } - public function getTargetLanguageCode() - { - return $this->targetLanguageCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/LanguageCodesSet.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/LanguageCodesSet.php deleted file mode 100644 index 86f5b729..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/LanguageCodesSet.php +++ /dev/null @@ -1,31 +0,0 @@ -languageCodes = $languageCodes; - } - public function getLanguageCodes() - { - return $this->languageCodes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/ListGlossariesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/ListGlossariesResponse.php deleted file mode 100644 index dee35e80..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/ListGlossariesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -glossaries = $glossaries; - } - /** - * @return Google_Service_Translate_Glossary - */ - public function getGlossaries() - { - return $this->glossaries; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/ListLocationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/ListLocationsResponse.php deleted file mode 100644 index f22a48ad..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/ListLocationsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -locations = $locations; - } - /** - * @return Google_Service_Translate_Location - */ - public function getLocations() - { - return $this->locations; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/ListOperationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/ListOperationsResponse.php deleted file mode 100644 index 28c38b3e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/ListOperationsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Translate_Operation - */ - public function setOperations($operations) - { - $this->operations = $operations; - } - /** - * @return Google_Service_Translate_Operation - */ - public function getOperations() - { - return $this->operations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/Location.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/Location.php deleted file mode 100644 index 7efbdff1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/Location.php +++ /dev/null @@ -1,66 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setLocationId($locationId) - { - $this->locationId = $locationId; - } - public function getLocationId() - { - return $this->locationId; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/Operation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/Operation.php deleted file mode 100644 index 6038e990..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/Operation.php +++ /dev/null @@ -1,73 +0,0 @@ -done = $done; - } - public function getDone() - { - return $this->done; - } - /** - * @param Google_Service_Translate_Status - */ - public function setError(Google_Service_Translate_Status $error) - { - $this->error = $error; - } - /** - * @return Google_Service_Translate_Status - */ - public function getError() - { - return $this->error; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/OutputConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/OutputConfig.php deleted file mode 100644 index 171347d1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/OutputConfig.php +++ /dev/null @@ -1,37 +0,0 @@ -gcsDestination = $gcsDestination; - } - /** - * @return Google_Service_Translate_GcsDestination - */ - public function getGcsDestination() - { - return $this->gcsDestination; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/Resource/Projects.php deleted file mode 100644 index d9b995e2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/Resource/Projects.php +++ /dev/null @@ -1,122 +0,0 @@ - - * $translateService = new Google_Service_Translate(...); - * $projects = $translateService->projects; - * - */ -class Google_Service_Translate_Resource_Projects extends Google_Service_Resource -{ - /** - * Detects the language of text within a request. (projects.detectLanguage) - * - * @param string $parent Required. Project or location to make a call. Must - * refer to a caller's project. - * - * Format: `projects/{project-number-or-id}/locations/{location-id}` or - * `projects/{project-number-or-id}`. - * - * For global calls, use `projects/{project-number-or-id}/locations/global` or - * `projects/{project-number-or-id}`. - * - * Only models within the same region (has same location-id) can be used. - * Otherwise an INVALID_ARGUMENT (400) error is returned. - * @param Google_Service_Translate_DetectLanguageRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Translate_DetectLanguageResponse - */ - public function detectLanguage($parent, Google_Service_Translate_DetectLanguageRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('detectLanguage', array($params), "Google_Service_Translate_DetectLanguageResponse"); - } - /** - * Returns a list of supported languages for translation. - * (projects.getSupportedLanguages) - * - * @param string $parent Required. Project or location to make a call. Must - * refer to a caller's project. - * - * Format: `projects/{project-number-or-id}` or `projects/{project-number-or- - * id}/locations/{location-id}`. - * - * For global calls, use `projects/{project-number-or-id}/locations/global` or - * `projects/{project-number-or-id}`. - * - * Non-global location is required for AutoML models. - * - * Only models within the same region (have same location-id) can be used, - * otherwise an INVALID_ARGUMENT (400) error is returned. - * @param array $optParams Optional parameters. - * - * @opt_param string model Optional. Get supported languages of this model. - * - * The format depends on model type: - * - * - AutoML Translation models: `projects/{project-number-or-id}/locations - * /{location-id}/models/{model-id}` - * - * - General (built-in) models: `projects/{project-number-or-id}/locations - * /{location-id}/models/general/nmt`, `projects/{project-number-or- - * id}/locations/{location-id}/models/general/base` - * - * Returns languages supported by the specified model. If missing, we get - * supported languages of Google general base (PBMT) model. - * @opt_param string displayLanguageCode Optional. The language to use to return - * localized, human readable names of supported languages. If missing, then - * display names are not returned in a response. - * @return Google_Service_Translate_SupportedLanguages - */ - public function getSupportedLanguages($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('getSupportedLanguages', array($params), "Google_Service_Translate_SupportedLanguages"); - } - /** - * Translates input text and returns translated text. (projects.translateText) - * - * @param string $parent Required. Project or location to make a call. Must - * refer to a caller's project. - * - * Format: `projects/{project-number-or-id}` or `projects/{project-number-or- - * id}/locations/{location-id}`. - * - * For global calls, use `projects/{project-number-or-id}/locations/global` or - * `projects/{project-number-or-id}`. - * - * Non-global location is required for requests using AutoML models or custom - * glossaries. - * - * Models and glossaries must be within the same region (have same location-id), - * otherwise an INVALID_ARGUMENT (400) error is returned. - * @param Google_Service_Translate_TranslateTextRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Translate_TranslateTextResponse - */ - public function translateText($parent, Google_Service_Translate_TranslateTextRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('translateText', array($params), "Google_Service_Translate_TranslateTextResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/Resource/ProjectsLocations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/Resource/ProjectsLocations.php deleted file mode 100644 index 168a93b7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/Resource/ProjectsLocations.php +++ /dev/null @@ -1,184 +0,0 @@ - - * $translateService = new Google_Service_Translate(...); - * $locations = $translateService->locations; - * - */ -class Google_Service_Translate_Resource_ProjectsLocations extends Google_Service_Resource -{ - /** - * Translates a large volume of text in asynchronous batch mode. This function - * provides real-time output as the inputs are being processed. If caller - * cancels a request, the partial results (for an input file, it's all or - * nothing) may still be available on the specified output location. - * - * This call returns immediately and you can use - * google.longrunning.Operation.name to poll the status of the call. - * (locations.batchTranslateText) - * - * @param string $parent Required. Location to make a call. Must refer to a - * caller's project. - * - * Format: `projects/{project-number-or-id}/locations/{location-id}`. - * - * The `global` location is not supported for batch translation. - * - * Only AutoML Translation models or glossaries within the same region (have the - * same location-id) can be used, otherwise an INVALID_ARGUMENT (400) error is - * returned. - * @param Google_Service_Translate_BatchTranslateTextRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Translate_Operation - */ - public function batchTranslateText($parent, Google_Service_Translate_BatchTranslateTextRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('batchTranslateText', array($params), "Google_Service_Translate_Operation"); - } - /** - * Detects the language of text within a request. (locations.detectLanguage) - * - * @param string $parent Required. Project or location to make a call. Must - * refer to a caller's project. - * - * Format: `projects/{project-number-or-id}/locations/{location-id}` or - * `projects/{project-number-or-id}`. - * - * For global calls, use `projects/{project-number-or-id}/locations/global` or - * `projects/{project-number-or-id}`. - * - * Only models within the same region (has same location-id) can be used. - * Otherwise an INVALID_ARGUMENT (400) error is returned. - * @param Google_Service_Translate_DetectLanguageRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Translate_DetectLanguageResponse - */ - public function detectLanguage($parent, Google_Service_Translate_DetectLanguageRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('detectLanguage', array($params), "Google_Service_Translate_DetectLanguageResponse"); - } - /** - * Gets information about a location. (locations.get) - * - * @param string $name Resource name for the location. - * @param array $optParams Optional parameters. - * @return Google_Service_Translate_Location - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Translate_Location"); - } - /** - * Returns a list of supported languages for translation. - * (locations.getSupportedLanguages) - * - * @param string $parent Required. Project or location to make a call. Must - * refer to a caller's project. - * - * Format: `projects/{project-number-or-id}` or `projects/{project-number-or- - * id}/locations/{location-id}`. - * - * For global calls, use `projects/{project-number-or-id}/locations/global` or - * `projects/{project-number-or-id}`. - * - * Non-global location is required for AutoML models. - * - * Only models within the same region (have same location-id) can be used, - * otherwise an INVALID_ARGUMENT (400) error is returned. - * @param array $optParams Optional parameters. - * - * @opt_param string displayLanguageCode Optional. The language to use to return - * localized, human readable names of supported languages. If missing, then - * display names are not returned in a response. - * @opt_param string model Optional. Get supported languages of this model. - * - * The format depends on model type: - * - * - AutoML Translation models: `projects/{project-number-or-id}/locations - * /{location-id}/models/{model-id}` - * - * - General (built-in) models: `projects/{project-number-or-id}/locations - * /{location-id}/models/general/nmt`, `projects/{project-number-or- - * id}/locations/{location-id}/models/general/base` - * - * Returns languages supported by the specified model. If missing, we get - * supported languages of Google general base (PBMT) model. - * @return Google_Service_Translate_SupportedLanguages - */ - public function getSupportedLanguages($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('getSupportedLanguages', array($params), "Google_Service_Translate_SupportedLanguages"); - } - /** - * Lists information about the supported locations for this service. - * (locations.listProjectsLocations) - * - * @param string $name The resource that owns the locations collection, if - * applicable. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The standard list page token. - * @opt_param int pageSize The standard list page size. - * @opt_param string filter The standard list filter. - * @return Google_Service_Translate_ListLocationsResponse - */ - public function listProjectsLocations($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Translate_ListLocationsResponse"); - } - /** - * Translates input text and returns translated text. (locations.translateText) - * - * @param string $parent Required. Project or location to make a call. Must - * refer to a caller's project. - * - * Format: `projects/{project-number-or-id}` or `projects/{project-number-or- - * id}/locations/{location-id}`. - * - * For global calls, use `projects/{project-number-or-id}/locations/global` or - * `projects/{project-number-or-id}`. - * - * Non-global location is required for requests using AutoML models or custom - * glossaries. - * - * Models and glossaries must be within the same region (have same location-id), - * otherwise an INVALID_ARGUMENT (400) error is returned. - * @param Google_Service_Translate_TranslateTextRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Translate_TranslateTextResponse - */ - public function translateText($parent, Google_Service_Translate_TranslateTextRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('translateText', array($params), "Google_Service_Translate_TranslateTextResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/Resource/ProjectsLocationsGlossaries.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/Resource/ProjectsLocationsGlossaries.php deleted file mode 100644 index 7e3f2772..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/Resource/ProjectsLocationsGlossaries.php +++ /dev/null @@ -1,99 +0,0 @@ - - * $translateService = new Google_Service_Translate(...); - * $glossaries = $translateService->glossaries; - * - */ -class Google_Service_Translate_Resource_ProjectsLocationsGlossaries extends Google_Service_Resource -{ - /** - * Creates a glossary and returns the long-running operation. Returns NOT_FOUND, - * if the project doesn't exist. (glossaries.create) - * - * @param string $parent Required. The project name. - * @param Google_Service_Translate_Glossary $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Translate_Operation - */ - public function create($parent, Google_Service_Translate_Glossary $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Translate_Operation"); - } - /** - * Deletes a glossary, or cancels glossary construction if the glossary isn't - * created yet. Returns NOT_FOUND, if the glossary doesn't exist. - * (glossaries.delete) - * - * @param string $name Required. The name of the glossary to delete. - * @param array $optParams Optional parameters. - * @return Google_Service_Translate_Operation - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Translate_Operation"); - } - /** - * Gets a glossary. Returns NOT_FOUND, if the glossary doesn't exist. - * (glossaries.get) - * - * @param string $name Required. The name of the glossary to retrieve. - * @param array $optParams Optional parameters. - * @return Google_Service_Translate_Glossary - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Translate_Glossary"); - } - /** - * Lists glossaries in a project. Returns NOT_FOUND, if the project doesn't - * exist. (glossaries.listProjectsLocationsGlossaries) - * - * @param string $parent Required. The name of the project from which to list - * all of the glossaries. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken Optional. A token identifying a page of results - * the server should return. Typically, this is the value of - * [ListGlossariesResponse.next_page_token] returned from the previous call to - * `ListGlossaries` method. The first page is returned if `page_token`is empty - * or missing. - * @opt_param int pageSize Optional. Requested page size. The server may return - * fewer glossaries than requested. If unspecified, the server picks an - * appropriate default. - * @opt_param string filter Optional. Filter specifying constraints of a list - * operation. Filtering is not supported yet, and the parameter currently has no - * effect. If missing, no filtering is performed. - * @return Google_Service_Translate_ListGlossariesResponse - */ - public function listProjectsLocationsGlossaries($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Translate_ListGlossariesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/Resource/ProjectsLocationsOperations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/Resource/ProjectsLocationsOperations.php deleted file mode 100644 index 50df564b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/Resource/ProjectsLocationsOperations.php +++ /dev/null @@ -1,130 +0,0 @@ - - * $translateService = new Google_Service_Translate(...); - * $operations = $translateService->operations; - * - */ -class Google_Service_Translate_Resource_ProjectsLocationsOperations extends Google_Service_Resource -{ - /** - * Starts asynchronous cancellation on a long-running operation. The server - * makes a best effort to cancel the operation, but success is not guaranteed. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or - * other methods to check whether the cancellation succeeded or whether the - * operation completed despite cancellation. On successful cancellation, the - * operation is not deleted; instead, it becomes an operation with an - * Operation.error value with a google.rpc.Status.code of 1, corresponding to - * `Code.CANCELLED`. (operations.cancel) - * - * @param string $name The name of the operation resource to be cancelled. - * @param Google_Service_Translate_CancelOperationRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Translate_TranslateEmpty - */ - public function cancel($name, Google_Service_Translate_CancelOperationRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('cancel', array($params), "Google_Service_Translate_TranslateEmpty"); - } - /** - * Deletes a long-running operation. This method indicates that the client is no - * longer interested in the operation result. It does not cancel the operation. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. (operations.delete) - * - * @param string $name The name of the operation resource to be deleted. - * @param array $optParams Optional parameters. - * @return Google_Service_Translate_TranslateEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Translate_TranslateEmpty"); - } - /** - * Gets the latest state of a long-running operation. Clients can use this - * method to poll the operation result at intervals as recommended by the API - * service. (operations.get) - * - * @param string $name The name of the operation resource. - * @param array $optParams Optional parameters. - * @return Google_Service_Translate_Operation - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Translate_Operation"); - } - /** - * Lists operations that match the specified filter in the request. If the - * server doesn't support this method, it returns `UNIMPLEMENTED`. - * - * NOTE: the `name` binding allows API services to override the binding to use - * different resource name schemes, such as `users/operations`. To override the - * binding, API services can add a binding such as - * `"/v1/{name=users}/operations"` to their service configuration. For backwards - * compatibility, the default name includes the operations collection id, - * however overriding users must ensure the name binding is the parent resource, - * without the operations collection id. - * (operations.listProjectsLocationsOperations) - * - * @param string $name The name of the operation's parent resource. - * @param array $optParams Optional parameters. - * - * @opt_param string filter The standard list filter. - * @opt_param string pageToken The standard list page token. - * @opt_param int pageSize The standard list page size. - * @return Google_Service_Translate_ListOperationsResponse - */ - public function listProjectsLocationsOperations($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Translate_ListOperationsResponse"); - } - /** - * Waits for the specified long-running operation until it is done or reaches at - * most a specified timeout, returning the latest state. If the operation is - * already done, the latest state is immediately returned. If the timeout - * specified is greater than the default HTTP/RPC timeout, the HTTP/RPC timeout - * is used. If the server does not support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. Note that this method is on a best-effort - * basis. It may return the latest state before the specified timeout - * (including immediately), meaning even an immediate response is no guarantee - * that the operation is done. (operations.wait) - * - * @param string $name The name of the operation resource to wait on. - * @param Google_Service_Translate_WaitOperationRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Translate_Operation - */ - public function wait($name, Google_Service_Translate_WaitOperationRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('wait', array($params), "Google_Service_Translate_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/Status.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/Status.php deleted file mode 100644 index 1f0b937d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/Status.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/SupportedLanguage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/SupportedLanguage.php deleted file mode 100644 index 7f9701bb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/SupportedLanguage.php +++ /dev/null @@ -1,57 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setLanguageCode($languageCode) - { - $this->languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } - public function setSupportSource($supportSource) - { - $this->supportSource = $supportSource; - } - public function getSupportSource() - { - return $this->supportSource; - } - public function setSupportTarget($supportTarget) - { - $this->supportTarget = $supportTarget; - } - public function getSupportTarget() - { - return $this->supportTarget; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/SupportedLanguages.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/SupportedLanguages.php deleted file mode 100644 index bb02af08..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/SupportedLanguages.php +++ /dev/null @@ -1,38 +0,0 @@ -languages = $languages; - } - /** - * @return Google_Service_Translate_SupportedLanguage - */ - public function getLanguages() - { - return $this->languages; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/TranslateEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/TranslateEmpty.php deleted file mode 100644 index 3cc6d45a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/TranslateEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -glossary = $glossary; - } - public function getGlossary() - { - return $this->glossary; - } - public function setIgnoreCase($ignoreCase) - { - $this->ignoreCase = $ignoreCase; - } - public function getIgnoreCase() - { - return $this->ignoreCase; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/TranslateTextRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/TranslateTextRequest.php deleted file mode 100644 index 4dd16010..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/TranslateTextRequest.php +++ /dev/null @@ -1,92 +0,0 @@ -contents = $contents; - } - public function getContents() - { - return $this->contents; - } - /** - * @param Google_Service_Translate_TranslateTextGlossaryConfig - */ - public function setGlossaryConfig(Google_Service_Translate_TranslateTextGlossaryConfig $glossaryConfig) - { - $this->glossaryConfig = $glossaryConfig; - } - /** - * @return Google_Service_Translate_TranslateTextGlossaryConfig - */ - public function getGlossaryConfig() - { - return $this->glossaryConfig; - } - public function setLabels($labels) - { - $this->labels = $labels; - } - public function getLabels() - { - return $this->labels; - } - public function setMimeType($mimeType) - { - $this->mimeType = $mimeType; - } - public function getMimeType() - { - return $this->mimeType; - } - public function setModel($model) - { - $this->model = $model; - } - public function getModel() - { - return $this->model; - } - public function setSourceLanguageCode($sourceLanguageCode) - { - $this->sourceLanguageCode = $sourceLanguageCode; - } - public function getSourceLanguageCode() - { - return $this->sourceLanguageCode; - } - public function setTargetLanguageCode($targetLanguageCode) - { - $this->targetLanguageCode = $targetLanguageCode; - } - public function getTargetLanguageCode() - { - return $this->targetLanguageCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/TranslateTextResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/TranslateTextResponse.php deleted file mode 100644 index cb5d9412..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/TranslateTextResponse.php +++ /dev/null @@ -1,54 +0,0 @@ -glossaryTranslations = $glossaryTranslations; - } - /** - * @return Google_Service_Translate_Translation - */ - public function getGlossaryTranslations() - { - return $this->glossaryTranslations; - } - /** - * @param Google_Service_Translate_Translation - */ - public function setTranslations($translations) - { - $this->translations = $translations; - } - /** - * @return Google_Service_Translate_Translation - */ - public function getTranslations() - { - return $this->translations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/Translation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/Translation.php deleted file mode 100644 index 8a552bbf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/Translation.php +++ /dev/null @@ -1,64 +0,0 @@ -detectedLanguageCode = $detectedLanguageCode; - } - public function getDetectedLanguageCode() - { - return $this->detectedLanguageCode; - } - /** - * @param Google_Service_Translate_TranslateTextGlossaryConfig - */ - public function setGlossaryConfig(Google_Service_Translate_TranslateTextGlossaryConfig $glossaryConfig) - { - $this->glossaryConfig = $glossaryConfig; - } - /** - * @return Google_Service_Translate_TranslateTextGlossaryConfig - */ - public function getGlossaryConfig() - { - return $this->glossaryConfig; - } - public function setModel($model) - { - $this->model = $model; - } - public function getModel() - { - return $this->model; - } - public function setTranslatedText($translatedText) - { - $this->translatedText = $translatedText; - } - public function getTranslatedText() - { - return $this->translatedText; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/WaitOperationRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/WaitOperationRequest.php deleted file mode 100644 index 53c675db..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Translate/WaitOperationRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -timeout = $timeout; - } - public function getTimeout() - { - return $this->timeout; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Urlshortener.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Urlshortener.php deleted file mode 100644 index d4eca24e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Urlshortener.php +++ /dev/null @@ -1,96 +0,0 @@ - - * Lets you create, inspect, and manage goo.gl short URLs

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Urlshortener extends Google_Service -{ - /** Manage your goo.gl short URLs. */ - const URLSHORTENER = - "https://www.googleapis.com/auth/urlshortener"; - - public $url; - - /** - * Constructs the internal representation of the Urlshortener service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://www.googleapis.com/'; - $this->servicePath = 'urlshortener/v1/'; - $this->batchPath = 'batch/urlshortener/v1'; - $this->version = 'v1'; - $this->serviceName = 'urlshortener'; - - $this->url = new Google_Service_Urlshortener_Resource_Url( - $this, - $this->serviceName, - 'url', - array( - 'methods' => array( - 'get' => array( - 'path' => 'url', - 'httpMethod' => 'GET', - 'parameters' => array( - 'shortUrl' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'insert' => array( - 'path' => 'url', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'list' => array( - 'path' => 'url/history', - 'httpMethod' => 'GET', - 'parameters' => array( - 'projection' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'start-token' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Urlshortener/AnalyticsSnapshot.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Urlshortener/AnalyticsSnapshot.php deleted file mode 100644 index 9314d449..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Urlshortener/AnalyticsSnapshot.php +++ /dev/null @@ -1,104 +0,0 @@ -browsers = $browsers; - } - /** - * @return Google_Service_Urlshortener_StringCount - */ - public function getBrowsers() - { - return $this->browsers; - } - /** - * @param Google_Service_Urlshortener_StringCount - */ - public function setCountries($countries) - { - $this->countries = $countries; - } - /** - * @return Google_Service_Urlshortener_StringCount - */ - public function getCountries() - { - return $this->countries; - } - public function setLongUrlClicks($longUrlClicks) - { - $this->longUrlClicks = $longUrlClicks; - } - public function getLongUrlClicks() - { - return $this->longUrlClicks; - } - /** - * @param Google_Service_Urlshortener_StringCount - */ - public function setPlatforms($platforms) - { - $this->platforms = $platforms; - } - /** - * @return Google_Service_Urlshortener_StringCount - */ - public function getPlatforms() - { - return $this->platforms; - } - /** - * @param Google_Service_Urlshortener_StringCount - */ - public function setReferrers($referrers) - { - $this->referrers = $referrers; - } - /** - * @return Google_Service_Urlshortener_StringCount - */ - public function getReferrers() - { - return $this->referrers; - } - public function setShortUrlClicks($shortUrlClicks) - { - $this->shortUrlClicks = $shortUrlClicks; - } - public function getShortUrlClicks() - { - return $this->shortUrlClicks; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Urlshortener/AnalyticsSummary.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Urlshortener/AnalyticsSummary.php deleted file mode 100644 index 8117df89..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Urlshortener/AnalyticsSummary.php +++ /dev/null @@ -1,101 +0,0 @@ -allTime = $allTime; - } - /** - * @return Google_Service_Urlshortener_AnalyticsSnapshot - */ - public function getAllTime() - { - return $this->allTime; - } - /** - * @param Google_Service_Urlshortener_AnalyticsSnapshot - */ - public function setDay(Google_Service_Urlshortener_AnalyticsSnapshot $day) - { - $this->day = $day; - } - /** - * @return Google_Service_Urlshortener_AnalyticsSnapshot - */ - public function getDay() - { - return $this->day; - } - /** - * @param Google_Service_Urlshortener_AnalyticsSnapshot - */ - public function setMonth(Google_Service_Urlshortener_AnalyticsSnapshot $month) - { - $this->month = $month; - } - /** - * @return Google_Service_Urlshortener_AnalyticsSnapshot - */ - public function getMonth() - { - return $this->month; - } - /** - * @param Google_Service_Urlshortener_AnalyticsSnapshot - */ - public function setTwoHours(Google_Service_Urlshortener_AnalyticsSnapshot $twoHours) - { - $this->twoHours = $twoHours; - } - /** - * @return Google_Service_Urlshortener_AnalyticsSnapshot - */ - public function getTwoHours() - { - return $this->twoHours; - } - /** - * @param Google_Service_Urlshortener_AnalyticsSnapshot - */ - public function setWeek(Google_Service_Urlshortener_AnalyticsSnapshot $week) - { - $this->week = $week; - } - /** - * @return Google_Service_Urlshortener_AnalyticsSnapshot - */ - public function getWeek() - { - return $this->week; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Urlshortener/Resource/Url.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Urlshortener/Resource/Url.php deleted file mode 100644 index e669b7c8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Urlshortener/Resource/Url.php +++ /dev/null @@ -1,72 +0,0 @@ - - * $urlshortenerService = new Google_Service_Urlshortener(...); - * $url = $urlshortenerService->url; - * - */ -class Google_Service_Urlshortener_Resource_Url extends Google_Service_Resource -{ - /** - * Expands a short URL or gets creation time and analytics. (url.get) - * - * @param string $shortUrl The short URL, including the protocol. - * @param array $optParams Optional parameters. - * - * @opt_param string projection Additional information to return. - * @return Google_Service_Urlshortener_Url - */ - public function get($shortUrl, $optParams = array()) - { - $params = array('shortUrl' => $shortUrl); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Urlshortener_Url"); - } - /** - * Creates a new short URL. (url.insert) - * - * @param Google_Service_Urlshortener_Url $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Urlshortener_Url - */ - public function insert(Google_Service_Urlshortener_Url $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_Urlshortener_Url"); - } - /** - * Retrieves a list of URLs shortened by a user. (url.listUrl) - * - * @param array $optParams Optional parameters. - * - * @opt_param string projection Additional information to return. - * @opt_param string start-token Token for requesting successive pages of - * results. - * @return Google_Service_Urlshortener_UrlHistory - */ - public function listUrl($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Urlshortener_UrlHistory"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Urlshortener/StringCount.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Urlshortener/StringCount.php deleted file mode 100644 index 40616c43..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Urlshortener/StringCount.php +++ /dev/null @@ -1,39 +0,0 @@ -count = $count; - } - public function getCount() - { - return $this->count; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Urlshortener/Url.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Urlshortener/Url.php deleted file mode 100644 index acc8134a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Urlshortener/Url.php +++ /dev/null @@ -1,82 +0,0 @@ -analytics = $analytics; - } - /** - * @return Google_Service_Urlshortener_AnalyticsSummary - */ - public function getAnalytics() - { - return $this->analytics; - } - public function setCreated($created) - { - $this->created = $created; - } - public function getCreated() - { - return $this->created; - } - 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 setLongUrl($longUrl) - { - $this->longUrl = $longUrl; - } - public function getLongUrl() - { - return $this->longUrl; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Urlshortener/UrlHistory.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Urlshortener/UrlHistory.php deleted file mode 100644 index 571948c4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Urlshortener/UrlHistory.php +++ /dev/null @@ -1,74 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Urlshortener_Url - */ - public function getItems() - { - return $this->items; - } - public function setItemsPerPage($itemsPerPage) - { - $this->itemsPerPage = $itemsPerPage; - } - public function getItemsPerPage() - { - return $this->itemsPerPage; - } - 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; - } - public function setTotalItems($totalItems) - { - $this->totalItems = $totalItems; - } - public function getTotalItems() - { - return $this->totalItems; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault.php deleted file mode 100644 index 9753d796..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault.php +++ /dev/null @@ -1,519 +0,0 @@ - - * Archiving and eDiscovery for G Suite.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Vault extends Google_Service -{ - /** Manage your eDiscovery data. */ - const EDISCOVERY = - "https://www.googleapis.com/auth/ediscovery"; - /** View your eDiscovery data. */ - const EDISCOVERY_READONLY = - "https://www.googleapis.com/auth/ediscovery.readonly"; - - public $matters; - public $matters_exports; - public $matters_holds; - public $matters_holds_accounts; - public $matters_savedQueries; - public $operations; - - /** - * Constructs the internal representation of the Vault service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://vault.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'vault'; - - $this->matters = new Google_Service_Vault_Resource_Matters( - $this, - $this->serviceName, - 'matters', - array( - 'methods' => array( - 'addPermissions' => array( - 'path' => 'v1/matters/{matterId}:addPermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'matterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'close' => array( - 'path' => 'v1/matters/{matterId}:close', - 'httpMethod' => 'POST', - 'parameters' => array( - 'matterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'create' => array( - 'path' => 'v1/matters', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'delete' => array( - 'path' => 'v1/matters/{matterId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'matterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/matters/{matterId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'matterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'v1/matters', - 'httpMethod' => 'GET', - 'parameters' => array( - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'state' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'removePermissions' => array( - 'path' => 'v1/matters/{matterId}:removePermissions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'matterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'reopen' => array( - 'path' => 'v1/matters/{matterId}:reopen', - 'httpMethod' => 'POST', - 'parameters' => array( - 'matterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'undelete' => array( - 'path' => 'v1/matters/{matterId}:undelete', - 'httpMethod' => 'POST', - 'parameters' => array( - 'matterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'v1/matters/{matterId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'matterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->matters_exports = new Google_Service_Vault_Resource_MattersExports( - $this, - $this->serviceName, - 'exports', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/matters/{matterId}/exports', - 'httpMethod' => 'POST', - 'parameters' => array( - 'matterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/matters/{matterId}/exports/{exportId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'matterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'exportId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/matters/{matterId}/exports/{exportId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'matterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'exportId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/matters/{matterId}/exports', - 'httpMethod' => 'GET', - 'parameters' => array( - 'matterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->matters_holds = new Google_Service_Vault_Resource_MattersHolds( - $this, - $this->serviceName, - 'holds', - array( - 'methods' => array( - 'addHeldAccounts' => array( - 'path' => 'v1/matters/{matterId}/holds/{holdId}:addHeldAccounts', - 'httpMethod' => 'POST', - 'parameters' => array( - 'matterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'holdId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'create' => array( - 'path' => 'v1/matters/{matterId}/holds', - 'httpMethod' => 'POST', - 'parameters' => array( - 'matterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/matters/{matterId}/holds/{holdId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'matterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'holdId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/matters/{matterId}/holds/{holdId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'matterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'holdId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'v1/matters/{matterId}/holds', - 'httpMethod' => 'GET', - 'parameters' => array( - 'matterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'view' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'removeHeldAccounts' => array( - 'path' => 'v1/matters/{matterId}/holds/{holdId}:removeHeldAccounts', - 'httpMethod' => 'POST', - 'parameters' => array( - 'matterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'holdId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'update' => array( - 'path' => 'v1/matters/{matterId}/holds/{holdId}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'matterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'holdId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->matters_holds_accounts = new Google_Service_Vault_Resource_MattersHoldsAccounts( - $this, - $this->serviceName, - 'accounts', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/matters/{matterId}/holds/{holdId}/accounts', - 'httpMethod' => 'POST', - 'parameters' => array( - 'matterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'holdId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/matters/{matterId}/holds/{holdId}/accounts/{accountId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'matterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'holdId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'accountId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/matters/{matterId}/holds/{holdId}/accounts', - 'httpMethod' => 'GET', - 'parameters' => array( - 'matterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'holdId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->matters_savedQueries = new Google_Service_Vault_Resource_MattersSavedQueries( - $this, - $this->serviceName, - 'savedQueries', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/matters/{matterId}/savedQueries', - 'httpMethod' => 'POST', - 'parameters' => array( - 'matterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/matters/{matterId}/savedQueries/{savedQueryId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'matterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'savedQueryId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/matters/{matterId}/savedQueries/{savedQueryId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'matterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'savedQueryId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/matters/{matterId}/savedQueries', - 'httpMethod' => 'GET', - 'parameters' => array( - 'matterId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->operations = new Google_Service_Vault_Resource_Operations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/AccountInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/AccountInfo.php deleted file mode 100644 index 3d94b2b5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/AccountInfo.php +++ /dev/null @@ -1,31 +0,0 @@ -emails = $emails; - } - public function getEmails() - { - return $this->emails; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/AddHeldAccountResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/AddHeldAccountResult.php deleted file mode 100644 index 7975198e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/AddHeldAccountResult.php +++ /dev/null @@ -1,53 +0,0 @@ -account = $account; - } - /** - * @return Google_Service_Vault_HeldAccount - */ - public function getAccount() - { - return $this->account; - } - /** - * @param Google_Service_Vault_Status - */ - public function setStatus(Google_Service_Vault_Status $status) - { - $this->status = $status; - } - /** - * @return Google_Service_Vault_Status - */ - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/AddHeldAccountsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/AddHeldAccountsRequest.php deleted file mode 100644 index e478fbb2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/AddHeldAccountsRequest.php +++ /dev/null @@ -1,40 +0,0 @@ -accountIds = $accountIds; - } - public function getAccountIds() - { - return $this->accountIds; - } - public function setEmails($emails) - { - $this->emails = $emails; - } - public function getEmails() - { - return $this->emails; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/AddHeldAccountsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/AddHeldAccountsResponse.php deleted file mode 100644 index ca8fdf88..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/AddHeldAccountsResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -responses = $responses; - } - /** - * @return Google_Service_Vault_AddHeldAccountResult - */ - public function getResponses() - { - return $this->responses; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/AddMatterPermissionsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/AddMatterPermissionsRequest.php deleted file mode 100644 index cdec1675..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/AddMatterPermissionsRequest.php +++ /dev/null @@ -1,55 +0,0 @@ -ccMe = $ccMe; - } - public function getCcMe() - { - return $this->ccMe; - } - /** - * @param Google_Service_Vault_MatterPermission - */ - public function setMatterPermission(Google_Service_Vault_MatterPermission $matterPermission) - { - $this->matterPermission = $matterPermission; - } - /** - * @return Google_Service_Vault_MatterPermission - */ - public function getMatterPermission() - { - return $this->matterPermission; - } - public function setSendEmails($sendEmails) - { - $this->sendEmails = $sendEmails; - } - public function getSendEmails() - { - return $this->sendEmails; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/CloseMatterRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/CloseMatterRequest.php deleted file mode 100644 index 90598f9d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/CloseMatterRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -matter = $matter; - } - /** - * @return Google_Service_Vault_Matter - */ - public function getMatter() - { - return $this->matter; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/CloudStorageFile.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/CloudStorageFile.php deleted file mode 100644 index ca711e43..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/CloudStorageFile.php +++ /dev/null @@ -1,57 +0,0 @@ -bucketName = $bucketName; - } - public function getBucketName() - { - return $this->bucketName; - } - public function setMd5Hash($md5Hash) - { - $this->md5Hash = $md5Hash; - } - public function getMd5Hash() - { - return $this->md5Hash; - } - public function setObjectName($objectName) - { - $this->objectName = $objectName; - } - public function getObjectName() - { - return $this->objectName; - } - public function setSize($size) - { - $this->size = $size; - } - public function getSize() - { - return $this->size; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/CloudStorageSink.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/CloudStorageSink.php deleted file mode 100644 index 77748b44..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/CloudStorageSink.php +++ /dev/null @@ -1,38 +0,0 @@ -files = $files; - } - /** - * @return Google_Service_Vault_CloudStorageFile - */ - public function getFiles() - { - return $this->files; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/CorpusQuery.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/CorpusQuery.php deleted file mode 100644 index 63d8344f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/CorpusQuery.php +++ /dev/null @@ -1,85 +0,0 @@ -driveQuery = $driveQuery; - } - /** - * @return Google_Service_Vault_HeldDriveQuery - */ - public function getDriveQuery() - { - return $this->driveQuery; - } - /** - * @param Google_Service_Vault_HeldGroupsQuery - */ - public function setGroupsQuery(Google_Service_Vault_HeldGroupsQuery $groupsQuery) - { - $this->groupsQuery = $groupsQuery; - } - /** - * @return Google_Service_Vault_HeldGroupsQuery - */ - public function getGroupsQuery() - { - return $this->groupsQuery; - } - /** - * @param Google_Service_Vault_HeldHangoutsChatQuery - */ - public function setHangoutsChatQuery(Google_Service_Vault_HeldHangoutsChatQuery $hangoutsChatQuery) - { - $this->hangoutsChatQuery = $hangoutsChatQuery; - } - /** - * @return Google_Service_Vault_HeldHangoutsChatQuery - */ - public function getHangoutsChatQuery() - { - return $this->hangoutsChatQuery; - } - /** - * @param Google_Service_Vault_HeldMailQuery - */ - public function setMailQuery(Google_Service_Vault_HeldMailQuery $mailQuery) - { - $this->mailQuery = $mailQuery; - } - /** - * @return Google_Service_Vault_HeldMailQuery - */ - public function getMailQuery() - { - return $this->mailQuery; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/DriveExportOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/DriveExportOptions.php deleted file mode 100644 index 5b0fb403..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/DriveExportOptions.php +++ /dev/null @@ -1,30 +0,0 @@ -includeAccessInfo = $includeAccessInfo; - } - public function getIncludeAccessInfo() - { - return $this->includeAccessInfo; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/DriveOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/DriveOptions.php deleted file mode 100644 index 05579448..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/DriveOptions.php +++ /dev/null @@ -1,48 +0,0 @@ -includeSharedDrives = $includeSharedDrives; - } - public function getIncludeSharedDrives() - { - return $this->includeSharedDrives; - } - public function setIncludeTeamDrives($includeTeamDrives) - { - $this->includeTeamDrives = $includeTeamDrives; - } - public function getIncludeTeamDrives() - { - return $this->includeTeamDrives; - } - public function setVersionDate($versionDate) - { - $this->versionDate = $versionDate; - } - public function getVersionDate() - { - return $this->versionDate; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/Export.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/Export.php deleted file mode 100644 index 7fe1f1eb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/Export.php +++ /dev/null @@ -1,146 +0,0 @@ -cloudStorageSink = $cloudStorageSink; - } - /** - * @return Google_Service_Vault_CloudStorageSink - */ - public function getCloudStorageSink() - { - return $this->cloudStorageSink; - } - public function setCreateTime($createTime) - { - $this->createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - /** - * @param Google_Service_Vault_ExportOptions - */ - public function setExportOptions(Google_Service_Vault_ExportOptions $exportOptions) - { - $this->exportOptions = $exportOptions; - } - /** - * @return Google_Service_Vault_ExportOptions - */ - public function getExportOptions() - { - return $this->exportOptions; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setMatterId($matterId) - { - $this->matterId = $matterId; - } - public function getMatterId() - { - return $this->matterId; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Vault_Query - */ - public function setQuery(Google_Service_Vault_Query $query) - { - $this->query = $query; - } - /** - * @return Google_Service_Vault_Query - */ - public function getQuery() - { - return $this->query; - } - /** - * @param Google_Service_Vault_UserInfo - */ - public function setRequester(Google_Service_Vault_UserInfo $requester) - { - $this->requester = $requester; - } - /** - * @return Google_Service_Vault_UserInfo - */ - public function getRequester() - { - return $this->requester; - } - /** - * @param Google_Service_Vault_ExportStats - */ - public function setStats(Google_Service_Vault_ExportStats $stats) - { - $this->stats = $stats; - } - /** - * @return Google_Service_Vault_ExportStats - */ - public function getStats() - { - return $this->stats; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/ExportOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/ExportOptions.php deleted file mode 100644 index 365e5c7c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/ExportOptions.php +++ /dev/null @@ -1,94 +0,0 @@ -driveOptions = $driveOptions; - } - /** - * @return Google_Service_Vault_DriveExportOptions - */ - public function getDriveOptions() - { - return $this->driveOptions; - } - /** - * @param Google_Service_Vault_GroupsExportOptions - */ - public function setGroupsOptions(Google_Service_Vault_GroupsExportOptions $groupsOptions) - { - $this->groupsOptions = $groupsOptions; - } - /** - * @return Google_Service_Vault_GroupsExportOptions - */ - public function getGroupsOptions() - { - return $this->groupsOptions; - } - /** - * @param Google_Service_Vault_HangoutsChatExportOptions - */ - public function setHangoutsChatOptions(Google_Service_Vault_HangoutsChatExportOptions $hangoutsChatOptions) - { - $this->hangoutsChatOptions = $hangoutsChatOptions; - } - /** - * @return Google_Service_Vault_HangoutsChatExportOptions - */ - public function getHangoutsChatOptions() - { - return $this->hangoutsChatOptions; - } - /** - * @param Google_Service_Vault_MailExportOptions - */ - public function setMailOptions(Google_Service_Vault_MailExportOptions $mailOptions) - { - $this->mailOptions = $mailOptions; - } - /** - * @return Google_Service_Vault_MailExportOptions - */ - public function getMailOptions() - { - return $this->mailOptions; - } - public function setRegion($region) - { - $this->region = $region; - } - public function getRegion() - { - return $this->region; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/ExportStats.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/ExportStats.php deleted file mode 100644 index 79297987..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/ExportStats.php +++ /dev/null @@ -1,48 +0,0 @@ -exportedArtifactCount = $exportedArtifactCount; - } - public function getExportedArtifactCount() - { - return $this->exportedArtifactCount; - } - public function setSizeInBytes($sizeInBytes) - { - $this->sizeInBytes = $sizeInBytes; - } - public function getSizeInBytes() - { - return $this->sizeInBytes; - } - public function setTotalArtifactCount($totalArtifactCount) - { - $this->totalArtifactCount = $totalArtifactCount; - } - public function getTotalArtifactCount() - { - return $this->totalArtifactCount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/GroupsExportOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/GroupsExportOptions.php deleted file mode 100644 index 7ab39250..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/GroupsExportOptions.php +++ /dev/null @@ -1,30 +0,0 @@ -exportFormat = $exportFormat; - } - public function getExportFormat() - { - return $this->exportFormat; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/HangoutsChatExportOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/HangoutsChatExportOptions.php deleted file mode 100644 index 09925f0f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/HangoutsChatExportOptions.php +++ /dev/null @@ -1,30 +0,0 @@ -exportFormat = $exportFormat; - } - public function getExportFormat() - { - return $this->exportFormat; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/HangoutsChatInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/HangoutsChatInfo.php deleted file mode 100644 index b930a0aa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/HangoutsChatInfo.php +++ /dev/null @@ -1,31 +0,0 @@ -roomId = $roomId; - } - public function getRoomId() - { - return $this->roomId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/HangoutsChatOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/HangoutsChatOptions.php deleted file mode 100644 index 6ce9bc30..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/HangoutsChatOptions.php +++ /dev/null @@ -1,30 +0,0 @@ -includeRooms = $includeRooms; - } - public function getIncludeRooms() - { - return $this->includeRooms; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/HeldAccount.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/HeldAccount.php deleted file mode 100644 index 05120641..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/HeldAccount.php +++ /dev/null @@ -1,66 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setEmail($email) - { - $this->email = $email; - } - public function getEmail() - { - return $this->email; - } - public function setFirstName($firstName) - { - $this->firstName = $firstName; - } - public function getFirstName() - { - return $this->firstName; - } - public function setHoldTime($holdTime) - { - $this->holdTime = $holdTime; - } - public function getHoldTime() - { - return $this->holdTime; - } - public function setLastName($lastName) - { - $this->lastName = $lastName; - } - public function getLastName() - { - return $this->lastName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/HeldDriveQuery.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/HeldDriveQuery.php deleted file mode 100644 index 0338b42f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/HeldDriveQuery.php +++ /dev/null @@ -1,39 +0,0 @@ -includeSharedDriveFiles = $includeSharedDriveFiles; - } - public function getIncludeSharedDriveFiles() - { - return $this->includeSharedDriveFiles; - } - public function setIncludeTeamDriveFiles($includeTeamDriveFiles) - { - $this->includeTeamDriveFiles = $includeTeamDriveFiles; - } - public function getIncludeTeamDriveFiles() - { - return $this->includeTeamDriveFiles; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/HeldGroupsQuery.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/HeldGroupsQuery.php deleted file mode 100644 index e2c7045d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/HeldGroupsQuery.php +++ /dev/null @@ -1,48 +0,0 @@ -endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } - public function setTerms($terms) - { - $this->terms = $terms; - } - public function getTerms() - { - return $this->terms; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/HeldHangoutsChatQuery.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/HeldHangoutsChatQuery.php deleted file mode 100644 index 02cf9fa5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/HeldHangoutsChatQuery.php +++ /dev/null @@ -1,30 +0,0 @@ -includeRooms = $includeRooms; - } - public function getIncludeRooms() - { - return $this->includeRooms; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/HeldMailQuery.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/HeldMailQuery.php deleted file mode 100644 index 20f730a6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/HeldMailQuery.php +++ /dev/null @@ -1,48 +0,0 @@ -endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } - public function setTerms($terms) - { - $this->terms = $terms; - } - public function getTerms() - { - return $this->terms; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/HeldOrgUnit.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/HeldOrgUnit.php deleted file mode 100644 index 94d04263..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/HeldOrgUnit.php +++ /dev/null @@ -1,39 +0,0 @@ -holdTime = $holdTime; - } - public function getHoldTime() - { - return $this->holdTime; - } - public function setOrgUnitId($orgUnitId) - { - $this->orgUnitId = $orgUnitId; - } - public function getOrgUnitId() - { - return $this->orgUnitId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/Hold.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/Hold.php deleted file mode 100644 index 9e9f2bb4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/Hold.php +++ /dev/null @@ -1,106 +0,0 @@ -accounts = $accounts; - } - /** - * @return Google_Service_Vault_HeldAccount - */ - public function getAccounts() - { - return $this->accounts; - } - public function setCorpus($corpus) - { - $this->corpus = $corpus; - } - public function getCorpus() - { - return $this->corpus; - } - public function setHoldId($holdId) - { - $this->holdId = $holdId; - } - public function getHoldId() - { - return $this->holdId; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_Vault_HeldOrgUnit - */ - public function setOrgUnit(Google_Service_Vault_HeldOrgUnit $orgUnit) - { - $this->orgUnit = $orgUnit; - } - /** - * @return Google_Service_Vault_HeldOrgUnit - */ - public function getOrgUnit() - { - return $this->orgUnit; - } - /** - * @param Google_Service_Vault_CorpusQuery - */ - public function setQuery(Google_Service_Vault_CorpusQuery $query) - { - $this->query = $query; - } - /** - * @return Google_Service_Vault_CorpusQuery - */ - public function getQuery() - { - return $this->query; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/ListExportsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/ListExportsResponse.php deleted file mode 100644 index 111ac3af..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/ListExportsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -exports = $exports; - } - /** - * @return Google_Service_Vault_Export - */ - public function getExports() - { - return $this->exports; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/ListHeldAccountsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/ListHeldAccountsResponse.php deleted file mode 100644 index e3ee7e05..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/ListHeldAccountsResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -accounts = $accounts; - } - /** - * @return Google_Service_Vault_HeldAccount - */ - public function getAccounts() - { - return $this->accounts; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/ListHoldsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/ListHoldsResponse.php deleted file mode 100644 index 35734c92..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/ListHoldsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -holds = $holds; - } - /** - * @return Google_Service_Vault_Hold - */ - public function getHolds() - { - return $this->holds; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/ListMattersResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/ListMattersResponse.php deleted file mode 100644 index 79838896..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/ListMattersResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -matters = $matters; - } - /** - * @return Google_Service_Vault_Matter - */ - public function getMatters() - { - return $this->matters; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/ListSavedQueriesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/ListSavedQueriesResponse.php deleted file mode 100644 index 1b3a15a9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/ListSavedQueriesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Vault_SavedQuery - */ - public function setSavedQueries($savedQueries) - { - $this->savedQueries = $savedQueries; - } - /** - * @return Google_Service_Vault_SavedQuery - */ - public function getSavedQueries() - { - return $this->savedQueries; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/MailExportOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/MailExportOptions.php deleted file mode 100644 index b7a4e0dc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/MailExportOptions.php +++ /dev/null @@ -1,39 +0,0 @@ -exportFormat = $exportFormat; - } - public function getExportFormat() - { - return $this->exportFormat; - } - public function setShowConfidentialModeContent($showConfidentialModeContent) - { - $this->showConfidentialModeContent = $showConfidentialModeContent; - } - public function getShowConfidentialModeContent() - { - return $this->showConfidentialModeContent; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/MailOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/MailOptions.php deleted file mode 100644 index 69cfbae2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/MailOptions.php +++ /dev/null @@ -1,30 +0,0 @@ -excludeDrafts = $excludeDrafts; - } - public function getExcludeDrafts() - { - return $this->excludeDrafts; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/Matter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/Matter.php deleted file mode 100644 index 7f590dbd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/Matter.php +++ /dev/null @@ -1,74 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setMatterId($matterId) - { - $this->matterId = $matterId; - } - public function getMatterId() - { - return $this->matterId; - } - /** - * @param Google_Service_Vault_MatterPermission - */ - public function setMatterPermissions($matterPermissions) - { - $this->matterPermissions = $matterPermissions; - } - /** - * @return Google_Service_Vault_MatterPermission - */ - public function getMatterPermissions() - { - return $this->matterPermissions; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/MatterPermission.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/MatterPermission.php deleted file mode 100644 index 996c2c66..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/MatterPermission.php +++ /dev/null @@ -1,39 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } - public function setRole($role) - { - $this->role = $role; - } - public function getRole() - { - return $this->role; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/OrgUnitInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/OrgUnitInfo.php deleted file mode 100644 index 80745d87..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/OrgUnitInfo.php +++ /dev/null @@ -1,30 +0,0 @@ -orgUnitId = $orgUnitId; - } - public function getOrgUnitId() - { - return $this->orgUnitId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/Query.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/Query.php deleted file mode 100644 index cc68231f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/Query.php +++ /dev/null @@ -1,221 +0,0 @@ -accountInfo = $accountInfo; - } - /** - * @return Google_Service_Vault_AccountInfo - */ - public function getAccountInfo() - { - return $this->accountInfo; - } - public function setCorpus($corpus) - { - $this->corpus = $corpus; - } - public function getCorpus() - { - return $this->corpus; - } - public function setDataScope($dataScope) - { - $this->dataScope = $dataScope; - } - public function getDataScope() - { - return $this->dataScope; - } - /** - * @param Google_Service_Vault_DriveOptions - */ - public function setDriveOptions(Google_Service_Vault_DriveOptions $driveOptions) - { - $this->driveOptions = $driveOptions; - } - /** - * @return Google_Service_Vault_DriveOptions - */ - public function getDriveOptions() - { - return $this->driveOptions; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - /** - * @param Google_Service_Vault_HangoutsChatInfo - */ - public function setHangoutsChatInfo(Google_Service_Vault_HangoutsChatInfo $hangoutsChatInfo) - { - $this->hangoutsChatInfo = $hangoutsChatInfo; - } - /** - * @return Google_Service_Vault_HangoutsChatInfo - */ - public function getHangoutsChatInfo() - { - return $this->hangoutsChatInfo; - } - /** - * @param Google_Service_Vault_HangoutsChatOptions - */ - public function setHangoutsChatOptions(Google_Service_Vault_HangoutsChatOptions $hangoutsChatOptions) - { - $this->hangoutsChatOptions = $hangoutsChatOptions; - } - /** - * @return Google_Service_Vault_HangoutsChatOptions - */ - public function getHangoutsChatOptions() - { - return $this->hangoutsChatOptions; - } - /** - * @param Google_Service_Vault_MailOptions - */ - public function setMailOptions(Google_Service_Vault_MailOptions $mailOptions) - { - $this->mailOptions = $mailOptions; - } - /** - * @return Google_Service_Vault_MailOptions - */ - public function getMailOptions() - { - return $this->mailOptions; - } - public function setMethod($method) - { - $this->method = $method; - } - public function getMethod() - { - return $this->method; - } - /** - * @param Google_Service_Vault_OrgUnitInfo - */ - public function setOrgUnitInfo(Google_Service_Vault_OrgUnitInfo $orgUnitInfo) - { - $this->orgUnitInfo = $orgUnitInfo; - } - /** - * @return Google_Service_Vault_OrgUnitInfo - */ - public function getOrgUnitInfo() - { - return $this->orgUnitInfo; - } - public function setSearchMethod($searchMethod) - { - $this->searchMethod = $searchMethod; - } - public function getSearchMethod() - { - return $this->searchMethod; - } - /** - * @param Google_Service_Vault_SharedDriveInfo - */ - public function setSharedDriveInfo(Google_Service_Vault_SharedDriveInfo $sharedDriveInfo) - { - $this->sharedDriveInfo = $sharedDriveInfo; - } - /** - * @return Google_Service_Vault_SharedDriveInfo - */ - public function getSharedDriveInfo() - { - return $this->sharedDriveInfo; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } - /** - * @param Google_Service_Vault_TeamDriveInfo - */ - public function setTeamDriveInfo(Google_Service_Vault_TeamDriveInfo $teamDriveInfo) - { - $this->teamDriveInfo = $teamDriveInfo; - } - /** - * @return Google_Service_Vault_TeamDriveInfo - */ - public function getTeamDriveInfo() - { - return $this->teamDriveInfo; - } - public function setTerms($terms) - { - $this->terms = $terms; - } - public function getTerms() - { - return $this->terms; - } - public function setTimeZone($timeZone) - { - $this->timeZone = $timeZone; - } - public function getTimeZone() - { - return $this->timeZone; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/RemoveHeldAccountsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/RemoveHeldAccountsRequest.php deleted file mode 100644 index e86a7804..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/RemoveHeldAccountsRequest.php +++ /dev/null @@ -1,31 +0,0 @@ -accountIds = $accountIds; - } - public function getAccountIds() - { - return $this->accountIds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/RemoveHeldAccountsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/RemoveHeldAccountsResponse.php deleted file mode 100644 index 2fdac1de..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/RemoveHeldAccountsResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -statuses = $statuses; - } - /** - * @return Google_Service_Vault_Status - */ - public function getStatuses() - { - return $this->statuses; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/RemoveMatterPermissionsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/RemoveMatterPermissionsRequest.php deleted file mode 100644 index 854f9e54..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/RemoveMatterPermissionsRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -accountId = $accountId; - } - public function getAccountId() - { - return $this->accountId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/ReopenMatterRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/ReopenMatterRequest.php deleted file mode 100644 index 14fbb675..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/ReopenMatterRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -matter = $matter; - } - /** - * @return Google_Service_Vault_Matter - */ - public function getMatter() - { - return $this->matter; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/Resource/Matters.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/Resource/Matters.php deleted file mode 100644 index 0c6563be..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/Resource/Matters.php +++ /dev/null @@ -1,182 +0,0 @@ - - * $vaultService = new Google_Service_Vault(...); - * $matters = $vaultService->matters; - * - */ -class Google_Service_Vault_Resource_Matters extends Google_Service_Resource -{ - /** - * Adds an account as a matter collaborator. (matters.addPermissions) - * - * @param string $matterId The matter ID. - * @param Google_Service_Vault_AddMatterPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Vault_MatterPermission - */ - public function addPermissions($matterId, Google_Service_Vault_AddMatterPermissionsRequest $postBody, $optParams = array()) - { - $params = array('matterId' => $matterId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('addPermissions', array($params), "Google_Service_Vault_MatterPermission"); - } - /** - * Closes the specified matter. Returns matter with updated state. - * (matters.close) - * - * @param string $matterId The matter ID. - * @param Google_Service_Vault_CloseMatterRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Vault_CloseMatterResponse - */ - public function close($matterId, Google_Service_Vault_CloseMatterRequest $postBody, $optParams = array()) - { - $params = array('matterId' => $matterId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('close', array($params), "Google_Service_Vault_CloseMatterResponse"); - } - /** - * Creates a new matter with the given name and description. The initial state - * is open, and the owner is the method caller. Returns the created matter with - * default view. (matters.create) - * - * @param Google_Service_Vault_Matter $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Vault_Matter - */ - public function create(Google_Service_Vault_Matter $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Vault_Matter"); - } - /** - * Deletes the specified matter. Returns matter with updated state. - * (matters.delete) - * - * @param string $matterId The matter ID - * @param array $optParams Optional parameters. - * @return Google_Service_Vault_Matter - */ - public function delete($matterId, $optParams = array()) - { - $params = array('matterId' => $matterId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Vault_Matter"); - } - /** - * Gets the specified matter. (matters.get) - * - * @param string $matterId The matter ID. - * @param array $optParams Optional parameters. - * - * @opt_param string view Specifies which parts of the Matter to return in the - * response. - * @return Google_Service_Vault_Matter - */ - public function get($matterId, $optParams = array()) - { - $params = array('matterId' => $matterId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Vault_Matter"); - } - /** - * Lists matters the user has access to. (matters.listMatters) - * - * @param array $optParams Optional parameters. - * - * @opt_param string view Specifies which parts of the matter to return in - * response. - * @opt_param string state If set, list only matters with that specific state. - * The default is listing matters of all states. - * @opt_param string pageToken The pagination token as returned in the response. - * @opt_param int pageSize The number of matters to return in the response. - * Default and maximum are 100. - * @return Google_Service_Vault_ListMattersResponse - */ - public function listMatters($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Vault_ListMattersResponse"); - } - /** - * Removes an account as a matter collaborator. (matters.removePermissions) - * - * @param string $matterId The matter ID. - * @param Google_Service_Vault_RemoveMatterPermissionsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Vault_VaultEmpty - */ - public function removePermissions($matterId, Google_Service_Vault_RemoveMatterPermissionsRequest $postBody, $optParams = array()) - { - $params = array('matterId' => $matterId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('removePermissions', array($params), "Google_Service_Vault_VaultEmpty"); - } - /** - * Reopens the specified matter. Returns matter with updated state. - * (matters.reopen) - * - * @param string $matterId The matter ID. - * @param Google_Service_Vault_ReopenMatterRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Vault_ReopenMatterResponse - */ - public function reopen($matterId, Google_Service_Vault_ReopenMatterRequest $postBody, $optParams = array()) - { - $params = array('matterId' => $matterId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('reopen', array($params), "Google_Service_Vault_ReopenMatterResponse"); - } - /** - * Undeletes the specified matter. Returns matter with updated state. - * (matters.undelete) - * - * @param string $matterId The matter ID. - * @param Google_Service_Vault_UndeleteMatterRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Vault_Matter - */ - public function undelete($matterId, Google_Service_Vault_UndeleteMatterRequest $postBody, $optParams = array()) - { - $params = array('matterId' => $matterId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('undelete', array($params), "Google_Service_Vault_Matter"); - } - /** - * Updates the specified matter. This updates only the name and description of - * the matter, identified by matter id. Changes to any other fields are ignored. - * Returns the default view of the matter. (matters.update) - * - * @param string $matterId The matter ID. - * @param Google_Service_Vault_Matter $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Vault_Matter - */ - public function update($matterId, Google_Service_Vault_Matter $postBody, $optParams = array()) - { - $params = array('matterId' => $matterId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Vault_Matter"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/Resource/MattersExports.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/Resource/MattersExports.php deleted file mode 100644 index 294b8ea0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/Resource/MattersExports.php +++ /dev/null @@ -1,86 +0,0 @@ - - * $vaultService = new Google_Service_Vault(...); - * $exports = $vaultService->exports; - * - */ -class Google_Service_Vault_Resource_MattersExports extends Google_Service_Resource -{ - /** - * Creates an Export. (exports.create) - * - * @param string $matterId The matter ID. - * @param Google_Service_Vault_Export $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Vault_Export - */ - public function create($matterId, Google_Service_Vault_Export $postBody, $optParams = array()) - { - $params = array('matterId' => $matterId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Vault_Export"); - } - /** - * Deletes an Export. (exports.delete) - * - * @param string $matterId The matter ID. - * @param string $exportId The export ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Vault_VaultEmpty - */ - public function delete($matterId, $exportId, $optParams = array()) - { - $params = array('matterId' => $matterId, 'exportId' => $exportId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Vault_VaultEmpty"); - } - /** - * Gets an Export. (exports.get) - * - * @param string $matterId The matter ID. - * @param string $exportId The export ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Vault_Export - */ - public function get($matterId, $exportId, $optParams = array()) - { - $params = array('matterId' => $matterId, 'exportId' => $exportId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Vault_Export"); - } - /** - * Lists Exports. (exports.listMattersExports) - * - * @param string $matterId The matter ID. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The pagination token as returned in the response. - * @opt_param int pageSize The number of exports to return in the response. - * @return Google_Service_Vault_ListExportsResponse - */ - public function listMattersExports($matterId, $optParams = array()) - { - $params = array('matterId' => $matterId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Vault_ListExportsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/Resource/MattersHolds.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/Resource/MattersHolds.php deleted file mode 100644 index 07fa3b54..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/Resource/MattersHolds.php +++ /dev/null @@ -1,146 +0,0 @@ - - * $vaultService = new Google_Service_Vault(...); - * $holds = $vaultService->holds; - * - */ -class Google_Service_Vault_Resource_MattersHolds extends Google_Service_Resource -{ - /** - * Adds HeldAccounts to a hold. Returns a list of accounts that have been - * successfully added. Accounts can only be added to an existing account-based - * hold. (holds.addHeldAccounts) - * - * @param string $matterId The matter ID. - * @param string $holdId The hold ID. - * @param Google_Service_Vault_AddHeldAccountsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Vault_AddHeldAccountsResponse - */ - public function addHeldAccounts($matterId, $holdId, Google_Service_Vault_AddHeldAccountsRequest $postBody, $optParams = array()) - { - $params = array('matterId' => $matterId, 'holdId' => $holdId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('addHeldAccounts', array($params), "Google_Service_Vault_AddHeldAccountsResponse"); - } - /** - * Creates a hold in the given matter. (holds.create) - * - * @param string $matterId The matter ID. - * @param Google_Service_Vault_Hold $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Vault_Hold - */ - public function create($matterId, Google_Service_Vault_Hold $postBody, $optParams = array()) - { - $params = array('matterId' => $matterId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Vault_Hold"); - } - /** - * Removes a hold by ID. This will release any HeldAccounts on this Hold. - * (holds.delete) - * - * @param string $matterId The matter ID. - * @param string $holdId The hold ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Vault_VaultEmpty - */ - public function delete($matterId, $holdId, $optParams = array()) - { - $params = array('matterId' => $matterId, 'holdId' => $holdId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Vault_VaultEmpty"); - } - /** - * Gets a hold by ID. (holds.get) - * - * @param string $matterId The matter ID. - * @param string $holdId The hold ID. - * @param array $optParams Optional parameters. - * - * @opt_param string view Specifies which parts of the Hold to return. - * @return Google_Service_Vault_Hold - */ - public function get($matterId, $holdId, $optParams = array()) - { - $params = array('matterId' => $matterId, 'holdId' => $holdId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Vault_Hold"); - } - /** - * Lists holds within a matter. An empty page token in ListHoldsResponse denotes - * no more holds to list. (holds.listMattersHolds) - * - * @param string $matterId The matter ID. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The pagination token as returned in the response. - * An empty token means start from the beginning. - * @opt_param int pageSize The number of holds to return in the response, - * between 0 and 100 inclusive. Leaving this empty, or as 0, is the same as - * page_size = 100. - * @opt_param string view Specifies which parts of the Hold to return. - * @return Google_Service_Vault_ListHoldsResponse - */ - public function listMattersHolds($matterId, $optParams = array()) - { - $params = array('matterId' => $matterId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Vault_ListHoldsResponse"); - } - /** - * Removes HeldAccounts from a hold. Returns a list of statuses in the same - * order as the request. If this request leaves the hold with no held accounts, - * the hold will not apply to any accounts. (holds.removeHeldAccounts) - * - * @param string $matterId The matter ID. - * @param string $holdId The hold ID. - * @param Google_Service_Vault_RemoveHeldAccountsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Vault_RemoveHeldAccountsResponse - */ - public function removeHeldAccounts($matterId, $holdId, Google_Service_Vault_RemoveHeldAccountsRequest $postBody, $optParams = array()) - { - $params = array('matterId' => $matterId, 'holdId' => $holdId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('removeHeldAccounts', array($params), "Google_Service_Vault_RemoveHeldAccountsResponse"); - } - /** - * Updates the OU and/or query parameters of a hold. You cannot add accounts to - * a hold that covers an OU, nor can you add OUs to a hold that covers - * individual accounts. Accounts listed in the hold will be ignored. - * (holds.update) - * - * @param string $matterId The matter ID. - * @param string $holdId The ID of the hold. - * @param Google_Service_Vault_Hold $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Vault_Hold - */ - public function update($matterId, $holdId, Google_Service_Vault_Hold $postBody, $optParams = array()) - { - $params = array('matterId' => $matterId, 'holdId' => $holdId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_Vault_Hold"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/Resource/MattersHoldsAccounts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/Resource/MattersHoldsAccounts.php deleted file mode 100644 index db103293..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/Resource/MattersHoldsAccounts.php +++ /dev/null @@ -1,77 +0,0 @@ - - * $vaultService = new Google_Service_Vault(...); - * $accounts = $vaultService->accounts; - * - */ -class Google_Service_Vault_Resource_MattersHoldsAccounts extends Google_Service_Resource -{ - /** - * Adds a HeldAccount to a hold. Accounts can only be added to a hold that has - * no held_org_unit set. Attempting to add an account to an OU-based hold will - * result in an error. (accounts.create) - * - * @param string $matterId The matter ID. - * @param string $holdId The hold ID. - * @param Google_Service_Vault_HeldAccount $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Vault_HeldAccount - */ - public function create($matterId, $holdId, Google_Service_Vault_HeldAccount $postBody, $optParams = array()) - { - $params = array('matterId' => $matterId, 'holdId' => $holdId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Vault_HeldAccount"); - } - /** - * Removes a HeldAccount from a hold. If this request leaves the hold with no - * held accounts, the hold will not apply to any accounts. (accounts.delete) - * - * @param string $matterId The matter ID. - * @param string $holdId The hold ID. - * @param string $accountId The ID of the account to remove from the hold. - * @param array $optParams Optional parameters. - * @return Google_Service_Vault_VaultEmpty - */ - public function delete($matterId, $holdId, $accountId, $optParams = array()) - { - $params = array('matterId' => $matterId, 'holdId' => $holdId, 'accountId' => $accountId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Vault_VaultEmpty"); - } - /** - * Lists HeldAccounts for a hold. This will only list individually specified - * held accounts. If the hold is on an OU, then use Admin SDK to enumerate its - * members. (accounts.listMattersHoldsAccounts) - * - * @param string $matterId The matter ID. - * @param string $holdId The hold ID. - * @param array $optParams Optional parameters. - * @return Google_Service_Vault_ListHeldAccountsResponse - */ - public function listMattersHoldsAccounts($matterId, $holdId, $optParams = array()) - { - $params = array('matterId' => $matterId, 'holdId' => $holdId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Vault_ListHeldAccountsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/Resource/MattersSavedQueries.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/Resource/MattersSavedQueries.php deleted file mode 100644 index ffb16cda..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/Resource/MattersSavedQueries.php +++ /dev/null @@ -1,93 +0,0 @@ - - * $vaultService = new Google_Service_Vault(...); - * $savedQueries = $vaultService->savedQueries; - * - */ -class Google_Service_Vault_Resource_MattersSavedQueries extends Google_Service_Resource -{ - /** - * Creates a saved query. (savedQueries.create) - * - * @param string $matterId The matter id of the parent matter for which the - * saved query is to be created. - * @param Google_Service_Vault_SavedQuery $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Vault_SavedQuery - */ - public function create($matterId, Google_Service_Vault_SavedQuery $postBody, $optParams = array()) - { - $params = array('matterId' => $matterId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Vault_SavedQuery"); - } - /** - * Deletes a saved query by Id. (savedQueries.delete) - * - * @param string $matterId The matter id of the parent matter for which the - * saved query is to be deleted. - * @param string $savedQueryId Id of the saved query to be deleted. - * @param array $optParams Optional parameters. - * @return Google_Service_Vault_VaultEmpty - */ - public function delete($matterId, $savedQueryId, $optParams = array()) - { - $params = array('matterId' => $matterId, 'savedQueryId' => $savedQueryId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Vault_VaultEmpty"); - } - /** - * Retrieves a saved query by Id. (savedQueries.get) - * - * @param string $matterId The matter id of the parent matter for which the - * saved query is to be retrieved. - * @param string $savedQueryId Id of the saved query to be retrieved. - * @param array $optParams Optional parameters. - * @return Google_Service_Vault_SavedQuery - */ - public function get($matterId, $savedQueryId, $optParams = array()) - { - $params = array('matterId' => $matterId, 'savedQueryId' => $savedQueryId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Vault_SavedQuery"); - } - /** - * Lists saved queries within a matter. An empty page token in - * ListSavedQueriesResponse denotes no more saved queries to list. - * (savedQueries.listMattersSavedQueries) - * - * @param string $matterId The matter id of the parent matter for which the - * saved queries are to be retrieved. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The pagination token as returned in the previous - * response. An empty token means start from the beginning. - * @opt_param int pageSize The maximum number of saved queries to return. - * @return Google_Service_Vault_ListSavedQueriesResponse - */ - public function listMattersSavedQueries($matterId, $optParams = array()) - { - $params = array('matterId' => $matterId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Vault_ListSavedQueriesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/Resource/Operations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/Resource/Operations.php deleted file mode 100644 index 142af01f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/Resource/Operations.php +++ /dev/null @@ -1,44 +0,0 @@ - - * $vaultService = new Google_Service_Vault(...); - * $operations = $vaultService->operations; - * - */ -class Google_Service_Vault_Resource_Operations extends Google_Service_Resource -{ - /** - * Deletes a long-running operation. This method indicates that the client is no - * longer interested in the operation result. It does not cancel the operation. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. (operations.delete) - * - * @param string $name The name of the operation resource to be deleted. - * @param array $optParams Optional parameters. - * @return Google_Service_Vault_VaultEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Vault_VaultEmpty"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/SavedQuery.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/SavedQuery.php deleted file mode 100644 index 8cf3e08a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/SavedQuery.php +++ /dev/null @@ -1,73 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setMatterId($matterId) - { - $this->matterId = $matterId; - } - public function getMatterId() - { - return $this->matterId; - } - /** - * @param Google_Service_Vault_Query - */ - public function setQuery(Google_Service_Vault_Query $query) - { - $this->query = $query; - } - /** - * @return Google_Service_Vault_Query - */ - public function getQuery() - { - return $this->query; - } - public function setSavedQueryId($savedQueryId) - { - $this->savedQueryId = $savedQueryId; - } - public function getSavedQueryId() - { - return $this->savedQueryId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/SharedDriveInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/SharedDriveInfo.php deleted file mode 100644 index 30fb33fb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/SharedDriveInfo.php +++ /dev/null @@ -1,31 +0,0 @@ -sharedDriveIds = $sharedDriveIds; - } - public function getSharedDriveIds() - { - return $this->sharedDriveIds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/Status.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/Status.php deleted file mode 100644 index b389ac98..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/Status.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/TeamDriveInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/TeamDriveInfo.php deleted file mode 100644 index 7d1e627f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/TeamDriveInfo.php +++ /dev/null @@ -1,31 +0,0 @@ -teamDriveIds = $teamDriveIds; - } - public function getTeamDriveIds() - { - return $this->teamDriveIds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/UndeleteMatterRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/UndeleteMatterRequest.php deleted file mode 100644 index 4eba8996..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/UndeleteMatterRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setEmail($email) - { - $this->email = $email; - } - public function getEmail() - { - return $this->email; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/VaultEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/VaultEmpty.php deleted file mode 100644 index 9a108b8c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vault/VaultEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ - - * API for Verified Access chrome extension to provide credential verification - * for chrome devices connecting to an enterprise network

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Verifiedaccess extends Google_Service -{ - /** Verify your enterprise credentials. */ - const VERIFIEDACCESS = - "https://www.googleapis.com/auth/verifiedaccess"; - - public $challenge; - - /** - * Constructs the internal representation of the Verifiedaccess service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://verifiedaccess.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'verifiedaccess'; - - $this->challenge = new Google_Service_Verifiedaccess_Resource_Challenge( - $this, - $this->serviceName, - 'challenge', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/challenge', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'verify' => array( - 'path' => 'v1/challenge:verify', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Verifiedaccess/Challenge.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Verifiedaccess/Challenge.php deleted file mode 100644 index 1510d377..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Verifiedaccess/Challenge.php +++ /dev/null @@ -1,53 +0,0 @@ -alternativeChallenge = $alternativeChallenge; - } - /** - * @return Google_Service_Verifiedaccess_SignedData - */ - public function getAlternativeChallenge() - { - return $this->alternativeChallenge; - } - /** - * @param Google_Service_Verifiedaccess_SignedData - */ - public function setChallenge(Google_Service_Verifiedaccess_SignedData $challenge) - { - $this->challenge = $challenge; - } - /** - * @return Google_Service_Verifiedaccess_SignedData - */ - public function getChallenge() - { - return $this->challenge; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Verifiedaccess/Resource/Challenge.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Verifiedaccess/Resource/Challenge.php deleted file mode 100644 index ce694a15..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Verifiedaccess/Resource/Challenge.php +++ /dev/null @@ -1,54 +0,0 @@ - - * $verifiedaccessService = new Google_Service_Verifiedaccess(...); - * $challenge = $verifiedaccessService->challenge; - * - */ -class Google_Service_Verifiedaccess_Resource_Challenge extends Google_Service_Resource -{ - /** - * CreateChallenge API (challenge.create) - * - * @param Google_Service_Verifiedaccess_VerifiedaccessEmpty $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Verifiedaccess_Challenge - */ - public function create(Google_Service_Verifiedaccess_VerifiedaccessEmpty $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Verifiedaccess_Challenge"); - } - /** - * VerifyChallengeResponse API (challenge.verify) - * - * @param Google_Service_Verifiedaccess_VerifyChallengeResponseRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Verifiedaccess_VerifyChallengeResponseResult - */ - public function verify(Google_Service_Verifiedaccess_VerifyChallengeResponseRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('verify', array($params), "Google_Service_Verifiedaccess_VerifyChallengeResponseResult"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Verifiedaccess/SignedData.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Verifiedaccess/SignedData.php deleted file mode 100644 index a8ceaeb8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Verifiedaccess/SignedData.php +++ /dev/null @@ -1,39 +0,0 @@ -data = $data; - } - public function getData() - { - return $this->data; - } - public function setSignature($signature) - { - $this->signature = $signature; - } - public function getSignature() - { - return $this->signature; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Verifiedaccess/VerifiedaccessEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Verifiedaccess/VerifiedaccessEmpty.php deleted file mode 100644 index 5283a468..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Verifiedaccess/VerifiedaccessEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -challengeResponse = $challengeResponse; - } - /** - * @return Google_Service_Verifiedaccess_SignedData - */ - public function getChallengeResponse() - { - return $this->challengeResponse; - } - public function setExpectedIdentity($expectedIdentity) - { - $this->expectedIdentity = $expectedIdentity; - } - public function getExpectedIdentity() - { - return $this->expectedIdentity; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Verifiedaccess/VerifyChallengeResponseResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Verifiedaccess/VerifyChallengeResponseResult.php deleted file mode 100644 index 1181e5aa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Verifiedaccess/VerifyChallengeResponseResult.php +++ /dev/null @@ -1,57 +0,0 @@ -deviceEnrollmentId = $deviceEnrollmentId; - } - public function getDeviceEnrollmentId() - { - return $this->deviceEnrollmentId; - } - public function setDevicePermanentId($devicePermanentId) - { - $this->devicePermanentId = $devicePermanentId; - } - public function getDevicePermanentId() - { - return $this->devicePermanentId; - } - public function setSignedPublicKeyAndChallenge($signedPublicKeyAndChallenge) - { - $this->signedPublicKeyAndChallenge = $signedPublicKeyAndChallenge; - } - public function getSignedPublicKeyAndChallenge() - { - return $this->signedPublicKeyAndChallenge; - } - public function setVerificationOutput($verificationOutput) - { - $this->verificationOutput = $verificationOutput; - } - public function getVerificationOutput() - { - return $this->verificationOutput; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision.php deleted file mode 100644 index b8d505c8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision.php +++ /dev/null @@ -1,633 +0,0 @@ - - * Integrates Google Vision features, including image labeling, face, logo, and - * landmark detection, optical character recognition (OCR), and detection of - * explicit content, into applications.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Vision extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - /** Apply machine learning models to understand and label images. */ - const CLOUD_VISION = - "https://www.googleapis.com/auth/cloud-vision"; - - public $files; - public $images; - public $locations_operations; - public $operations; - public $projects_files; - public $projects_images; - public $projects_locations_files; - public $projects_locations_images; - public $projects_locations_operations; - public $projects_locations_productSets; - public $projects_locations_productSets_products; - public $projects_locations_products; - public $projects_locations_products_referenceImages; - public $projects_operations; - - /** - * Constructs the internal representation of the Vision service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://vision.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'vision'; - - $this->files = new Google_Service_Vision_Resource_Files( - $this, - $this->serviceName, - 'files', - array( - 'methods' => array( - 'annotate' => array( - 'path' => 'v1/files:annotate', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'asyncBatchAnnotate' => array( - 'path' => 'v1/files:asyncBatchAnnotate', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->images = new Google_Service_Vision_Resource_Images( - $this, - $this->serviceName, - 'images', - array( - 'methods' => array( - 'annotate' => array( - 'path' => 'v1/images:annotate', - 'httpMethod' => 'POST', - 'parameters' => array(), - ),'asyncBatchAnnotate' => array( - 'path' => 'v1/images:asyncBatchAnnotate', - 'httpMethod' => 'POST', - 'parameters' => array(), - ), - ) - ) - ); - $this->locations_operations = new Google_Service_Vision_Resource_LocationsOperations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->operations = new Google_Service_Vision_Resource_Operations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'cancel' => array( - 'path' => 'v1/{+name}:cancel', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->projects_files = new Google_Service_Vision_Resource_ProjectsFiles( - $this, - $this->serviceName, - 'files', - array( - 'methods' => array( - 'annotate' => array( - 'path' => 'v1/{+parent}/files:annotate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'asyncBatchAnnotate' => array( - 'path' => 'v1/{+parent}/files:asyncBatchAnnotate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_images = new Google_Service_Vision_Resource_ProjectsImages( - $this, - $this->serviceName, - 'images', - array( - 'methods' => array( - 'annotate' => array( - 'path' => 'v1/{+parent}/images:annotate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'asyncBatchAnnotate' => array( - 'path' => 'v1/{+parent}/images:asyncBatchAnnotate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_locations_files = new Google_Service_Vision_Resource_ProjectsLocationsFiles( - $this, - $this->serviceName, - 'files', - array( - 'methods' => array( - 'annotate' => array( - 'path' => 'v1/{+parent}/files:annotate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'asyncBatchAnnotate' => array( - 'path' => 'v1/{+parent}/files:asyncBatchAnnotate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_locations_images = new Google_Service_Vision_Resource_ProjectsLocationsImages( - $this, - $this->serviceName, - 'images', - array( - 'methods' => array( - 'annotate' => array( - 'path' => 'v1/{+parent}/images:annotate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'asyncBatchAnnotate' => array( - 'path' => 'v1/{+parent}/images:asyncBatchAnnotate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_locations_operations = new Google_Service_Vision_Resource_ProjectsLocationsOperations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_locations_productSets = new Google_Service_Vision_Resource_ProjectsLocationsProductSets( - $this, - $this->serviceName, - 'productSets', - array( - 'methods' => array( - 'addProduct' => array( - 'path' => 'v1/{+name}:addProduct', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'create' => array( - 'path' => 'v1/{+parent}/productSets', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'productSetId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'import' => array( - 'path' => 'v1/{+parent}/productSets:import', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/productSets', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'removeProduct' => array( - 'path' => 'v1/{+name}:removeProduct', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_locations_productSets_products = new Google_Service_Vision_Resource_ProjectsLocationsProductSetsProducts( - $this, - $this->serviceName, - 'products', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1/{+name}/products', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->projects_locations_products = new Google_Service_Vision_Resource_ProjectsLocationsProducts( - $this, - $this->serviceName, - 'products', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/products', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'productId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/products', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'purge' => array( - 'path' => 'v1/{+parent}/products:purge', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_locations_products_referenceImages = new Google_Service_Vision_Resource_ProjectsLocationsProductsReferenceImages( - $this, - $this->serviceName, - 'referenceImages', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/{+parent}/referenceImages', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'referenceImageId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1/{+parent}/referenceImages', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->projects_operations = new Google_Service_Vision_Resource_ProjectsOperations( - $this, - $this->serviceName, - 'operations', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/AddProductToProductSetRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/AddProductToProductSetRequest.php deleted file mode 100644 index 2d8b2cb8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/AddProductToProductSetRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -product = $product; - } - public function getProduct() - { - return $this->product; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/AnnotateFileRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/AnnotateFileRequest.php deleted file mode 100644 index 165490db..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/AnnotateFileRequest.php +++ /dev/null @@ -1,79 +0,0 @@ -features = $features; - } - /** - * @return Google_Service_Vision_Feature - */ - public function getFeatures() - { - return $this->features; - } - /** - * @param Google_Service_Vision_ImageContext - */ - public function setImageContext(Google_Service_Vision_ImageContext $imageContext) - { - $this->imageContext = $imageContext; - } - /** - * @return Google_Service_Vision_ImageContext - */ - public function getImageContext() - { - return $this->imageContext; - } - /** - * @param Google_Service_Vision_InputConfig - */ - public function setInputConfig(Google_Service_Vision_InputConfig $inputConfig) - { - $this->inputConfig = $inputConfig; - } - /** - * @return Google_Service_Vision_InputConfig - */ - public function getInputConfig() - { - return $this->inputConfig; - } - public function setPages($pages) - { - $this->pages = $pages; - } - public function getPages() - { - return $this->pages; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/AnnotateFileResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/AnnotateFileResponse.php deleted file mode 100644 index 282ad3a6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/AnnotateFileResponse.php +++ /dev/null @@ -1,79 +0,0 @@ -error = $error; - } - /** - * @return Google_Service_Vision_Status - */ - public function getError() - { - return $this->error; - } - /** - * @param Google_Service_Vision_InputConfig - */ - public function setInputConfig(Google_Service_Vision_InputConfig $inputConfig) - { - $this->inputConfig = $inputConfig; - } - /** - * @return Google_Service_Vision_InputConfig - */ - public function getInputConfig() - { - return $this->inputConfig; - } - /** - * @param Google_Service_Vision_AnnotateImageResponse - */ - public function setResponses($responses) - { - $this->responses = $responses; - } - /** - * @return Google_Service_Vision_AnnotateImageResponse - */ - public function getResponses() - { - return $this->responses; - } - public function setTotalPages($totalPages) - { - $this->totalPages = $totalPages; - } - public function getTotalPages() - { - return $this->totalPages; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/AnnotateImageRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/AnnotateImageRequest.php deleted file mode 100644 index 998e6a6e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/AnnotateImageRequest.php +++ /dev/null @@ -1,70 +0,0 @@ -features = $features; - } - /** - * @return Google_Service_Vision_Feature - */ - public function getFeatures() - { - return $this->features; - } - /** - * @param Google_Service_Vision_Image - */ - public function setImage(Google_Service_Vision_Image $image) - { - $this->image = $image; - } - /** - * @return Google_Service_Vision_Image - */ - public function getImage() - { - return $this->image; - } - /** - * @param Google_Service_Vision_ImageContext - */ - public function setImageContext(Google_Service_Vision_ImageContext $imageContext) - { - $this->imageContext = $imageContext; - } - /** - * @return Google_Service_Vision_ImageContext - */ - public function getImageContext() - { - return $this->imageContext; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/AnnotateImageResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/AnnotateImageResponse.php deleted file mode 100644 index 49c61a1c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/AnnotateImageResponse.php +++ /dev/null @@ -1,246 +0,0 @@ -context = $context; - } - /** - * @return Google_Service_Vision_ImageAnnotationContext - */ - public function getContext() - { - return $this->context; - } - /** - * @param Google_Service_Vision_CropHintsAnnotation - */ - public function setCropHintsAnnotation(Google_Service_Vision_CropHintsAnnotation $cropHintsAnnotation) - { - $this->cropHintsAnnotation = $cropHintsAnnotation; - } - /** - * @return Google_Service_Vision_CropHintsAnnotation - */ - public function getCropHintsAnnotation() - { - return $this->cropHintsAnnotation; - } - /** - * @param Google_Service_Vision_Status - */ - public function setError(Google_Service_Vision_Status $error) - { - $this->error = $error; - } - /** - * @return Google_Service_Vision_Status - */ - public function getError() - { - return $this->error; - } - /** - * @param Google_Service_Vision_FaceAnnotation - */ - public function setFaceAnnotations($faceAnnotations) - { - $this->faceAnnotations = $faceAnnotations; - } - /** - * @return Google_Service_Vision_FaceAnnotation - */ - public function getFaceAnnotations() - { - return $this->faceAnnotations; - } - /** - * @param Google_Service_Vision_TextAnnotation - */ - public function setFullTextAnnotation(Google_Service_Vision_TextAnnotation $fullTextAnnotation) - { - $this->fullTextAnnotation = $fullTextAnnotation; - } - /** - * @return Google_Service_Vision_TextAnnotation - */ - public function getFullTextAnnotation() - { - return $this->fullTextAnnotation; - } - /** - * @param Google_Service_Vision_ImageProperties - */ - public function setImagePropertiesAnnotation(Google_Service_Vision_ImageProperties $imagePropertiesAnnotation) - { - $this->imagePropertiesAnnotation = $imagePropertiesAnnotation; - } - /** - * @return Google_Service_Vision_ImageProperties - */ - public function getImagePropertiesAnnotation() - { - return $this->imagePropertiesAnnotation; - } - /** - * @param Google_Service_Vision_EntityAnnotation - */ - public function setLabelAnnotations($labelAnnotations) - { - $this->labelAnnotations = $labelAnnotations; - } - /** - * @return Google_Service_Vision_EntityAnnotation - */ - public function getLabelAnnotations() - { - return $this->labelAnnotations; - } - /** - * @param Google_Service_Vision_EntityAnnotation - */ - public function setLandmarkAnnotations($landmarkAnnotations) - { - $this->landmarkAnnotations = $landmarkAnnotations; - } - /** - * @return Google_Service_Vision_EntityAnnotation - */ - public function getLandmarkAnnotations() - { - return $this->landmarkAnnotations; - } - /** - * @param Google_Service_Vision_LocalizedObjectAnnotation - */ - public function setLocalizedObjectAnnotations($localizedObjectAnnotations) - { - $this->localizedObjectAnnotations = $localizedObjectAnnotations; - } - /** - * @return Google_Service_Vision_LocalizedObjectAnnotation - */ - public function getLocalizedObjectAnnotations() - { - return $this->localizedObjectAnnotations; - } - /** - * @param Google_Service_Vision_EntityAnnotation - */ - public function setLogoAnnotations($logoAnnotations) - { - $this->logoAnnotations = $logoAnnotations; - } - /** - * @return Google_Service_Vision_EntityAnnotation - */ - public function getLogoAnnotations() - { - return $this->logoAnnotations; - } - /** - * @param Google_Service_Vision_ProductSearchResults - */ - public function setProductSearchResults(Google_Service_Vision_ProductSearchResults $productSearchResults) - { - $this->productSearchResults = $productSearchResults; - } - /** - * @return Google_Service_Vision_ProductSearchResults - */ - public function getProductSearchResults() - { - return $this->productSearchResults; - } - /** - * @param Google_Service_Vision_SafeSearchAnnotation - */ - public function setSafeSearchAnnotation(Google_Service_Vision_SafeSearchAnnotation $safeSearchAnnotation) - { - $this->safeSearchAnnotation = $safeSearchAnnotation; - } - /** - * @return Google_Service_Vision_SafeSearchAnnotation - */ - public function getSafeSearchAnnotation() - { - return $this->safeSearchAnnotation; - } - /** - * @param Google_Service_Vision_EntityAnnotation - */ - public function setTextAnnotations($textAnnotations) - { - $this->textAnnotations = $textAnnotations; - } - /** - * @return Google_Service_Vision_EntityAnnotation - */ - public function getTextAnnotations() - { - return $this->textAnnotations; - } - /** - * @param Google_Service_Vision_WebDetection - */ - public function setWebDetection(Google_Service_Vision_WebDetection $webDetection) - { - $this->webDetection = $webDetection; - } - /** - * @return Google_Service_Vision_WebDetection - */ - public function getWebDetection() - { - return $this->webDetection; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/AsyncAnnotateFileRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/AsyncAnnotateFileRequest.php deleted file mode 100644 index ccfad83d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/AsyncAnnotateFileRequest.php +++ /dev/null @@ -1,86 +0,0 @@ -features = $features; - } - /** - * @return Google_Service_Vision_Feature - */ - public function getFeatures() - { - return $this->features; - } - /** - * @param Google_Service_Vision_ImageContext - */ - public function setImageContext(Google_Service_Vision_ImageContext $imageContext) - { - $this->imageContext = $imageContext; - } - /** - * @return Google_Service_Vision_ImageContext - */ - public function getImageContext() - { - return $this->imageContext; - } - /** - * @param Google_Service_Vision_InputConfig - */ - public function setInputConfig(Google_Service_Vision_InputConfig $inputConfig) - { - $this->inputConfig = $inputConfig; - } - /** - * @return Google_Service_Vision_InputConfig - */ - public function getInputConfig() - { - return $this->inputConfig; - } - /** - * @param Google_Service_Vision_OutputConfig - */ - public function setOutputConfig(Google_Service_Vision_OutputConfig $outputConfig) - { - $this->outputConfig = $outputConfig; - } - /** - * @return Google_Service_Vision_OutputConfig - */ - public function getOutputConfig() - { - return $this->outputConfig; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/AsyncAnnotateFileResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/AsyncAnnotateFileResponse.php deleted file mode 100644 index 5db6734b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/AsyncAnnotateFileResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -outputConfig = $outputConfig; - } - /** - * @return Google_Service_Vision_OutputConfig - */ - public function getOutputConfig() - { - return $this->outputConfig; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/AsyncBatchAnnotateFilesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/AsyncBatchAnnotateFilesRequest.php deleted file mode 100644 index 21f61110..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/AsyncBatchAnnotateFilesRequest.php +++ /dev/null @@ -1,47 +0,0 @@ -parent = $parent; - } - public function getParent() - { - return $this->parent; - } - /** - * @param Google_Service_Vision_AsyncAnnotateFileRequest - */ - public function setRequests($requests) - { - $this->requests = $requests; - } - /** - * @return Google_Service_Vision_AsyncAnnotateFileRequest - */ - public function getRequests() - { - return $this->requests; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/AsyncBatchAnnotateFilesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/AsyncBatchAnnotateFilesResponse.php deleted file mode 100644 index 98d929e5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/AsyncBatchAnnotateFilesResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -responses = $responses; - } - /** - * @return Google_Service_Vision_AsyncAnnotateFileResponse - */ - public function getResponses() - { - return $this->responses; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/AsyncBatchAnnotateImagesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/AsyncBatchAnnotateImagesRequest.php deleted file mode 100644 index 24d59483..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/AsyncBatchAnnotateImagesRequest.php +++ /dev/null @@ -1,63 +0,0 @@ -outputConfig = $outputConfig; - } - /** - * @return Google_Service_Vision_OutputConfig - */ - public function getOutputConfig() - { - return $this->outputConfig; - } - public function setParent($parent) - { - $this->parent = $parent; - } - public function getParent() - { - return $this->parent; - } - /** - * @param Google_Service_Vision_AnnotateImageRequest - */ - public function setRequests($requests) - { - $this->requests = $requests; - } - /** - * @return Google_Service_Vision_AnnotateImageRequest - */ - public function getRequests() - { - return $this->requests; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/AsyncBatchAnnotateImagesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/AsyncBatchAnnotateImagesResponse.php deleted file mode 100644 index 7f8abd4b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/AsyncBatchAnnotateImagesResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -outputConfig = $outputConfig; - } - /** - * @return Google_Service_Vision_OutputConfig - */ - public function getOutputConfig() - { - return $this->outputConfig; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/BatchAnnotateFilesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/BatchAnnotateFilesRequest.php deleted file mode 100644 index 7c5b6cef..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/BatchAnnotateFilesRequest.php +++ /dev/null @@ -1,47 +0,0 @@ -parent = $parent; - } - public function getParent() - { - return $this->parent; - } - /** - * @param Google_Service_Vision_AnnotateFileRequest - */ - public function setRequests($requests) - { - $this->requests = $requests; - } - /** - * @return Google_Service_Vision_AnnotateFileRequest - */ - public function getRequests() - { - return $this->requests; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/BatchAnnotateFilesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/BatchAnnotateFilesResponse.php deleted file mode 100644 index af0e105b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/BatchAnnotateFilesResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -responses = $responses; - } - /** - * @return Google_Service_Vision_AnnotateFileResponse - */ - public function getResponses() - { - return $this->responses; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/BatchAnnotateImagesRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/BatchAnnotateImagesRequest.php deleted file mode 100644 index 1d7e4ced..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/BatchAnnotateImagesRequest.php +++ /dev/null @@ -1,47 +0,0 @@ -parent = $parent; - } - public function getParent() - { - return $this->parent; - } - /** - * @param Google_Service_Vision_AnnotateImageRequest - */ - public function setRequests($requests) - { - $this->requests = $requests; - } - /** - * @return Google_Service_Vision_AnnotateImageRequest - */ - public function getRequests() - { - return $this->requests; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/BatchAnnotateImagesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/BatchAnnotateImagesResponse.php deleted file mode 100644 index e82a2cbb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/BatchAnnotateImagesResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -responses = $responses; - } - /** - * @return Google_Service_Vision_AnnotateImageResponse - */ - public function getResponses() - { - return $this->responses; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/BatchOperationMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/BatchOperationMetadata.php deleted file mode 100644 index fe84bb59..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/BatchOperationMetadata.php +++ /dev/null @@ -1,48 +0,0 @@ -endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setSubmitTime($submitTime) - { - $this->submitTime = $submitTime; - } - public function getSubmitTime() - { - return $this->submitTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Block.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Block.php deleted file mode 100644 index a818c63c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Block.php +++ /dev/null @@ -1,88 +0,0 @@ -blockType = $blockType; - } - public function getBlockType() - { - return $this->blockType; - } - /** - * @param Google_Service_Vision_BoundingPoly - */ - public function setBoundingBox(Google_Service_Vision_BoundingPoly $boundingBox) - { - $this->boundingBox = $boundingBox; - } - /** - * @return Google_Service_Vision_BoundingPoly - */ - public function getBoundingBox() - { - return $this->boundingBox; - } - public function setConfidence($confidence) - { - $this->confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - /** - * @param Google_Service_Vision_Paragraph - */ - public function setParagraphs($paragraphs) - { - $this->paragraphs = $paragraphs; - } - /** - * @return Google_Service_Vision_Paragraph - */ - public function getParagraphs() - { - return $this->paragraphs; - } - /** - * @param Google_Service_Vision_TextProperty - */ - public function setProperty(Google_Service_Vision_TextProperty $property) - { - $this->property = $property; - } - /** - * @return Google_Service_Vision_TextProperty - */ - public function getProperty() - { - return $this->property; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/BoundingPoly.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/BoundingPoly.php deleted file mode 100644 index 2f130179..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/BoundingPoly.php +++ /dev/null @@ -1,54 +0,0 @@ -normalizedVertices = $normalizedVertices; - } - /** - * @return Google_Service_Vision_NormalizedVertex - */ - public function getNormalizedVertices() - { - return $this->normalizedVertices; - } - /** - * @param Google_Service_Vision_Vertex - */ - public function setVertices($vertices) - { - $this->vertices = $vertices; - } - /** - * @return Google_Service_Vision_Vertex - */ - public function getVertices() - { - return $this->vertices; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/CancelOperationRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/CancelOperationRequest.php deleted file mode 100644 index 10aed59b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/CancelOperationRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -alpha = $alpha; - } - public function getAlpha() - { - return $this->alpha; - } - public function setBlue($blue) - { - $this->blue = $blue; - } - public function getBlue() - { - return $this->blue; - } - public function setGreen($green) - { - $this->green = $green; - } - public function getGreen() - { - return $this->green; - } - public function setRed($red) - { - $this->red = $red; - } - public function getRed() - { - return $this->red; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ColorInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ColorInfo.php deleted file mode 100644 index 38df55c1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ColorInfo.php +++ /dev/null @@ -1,55 +0,0 @@ -color = $color; - } - /** - * @return Google_Service_Vision_Color - */ - public function getColor() - { - return $this->color; - } - public function setPixelFraction($pixelFraction) - { - $this->pixelFraction = $pixelFraction; - } - public function getPixelFraction() - { - return $this->pixelFraction; - } - public function setScore($score) - { - $this->score = $score; - } - public function getScore() - { - return $this->score; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/CropHint.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/CropHint.php deleted file mode 100644 index 6df1cada..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/CropHint.php +++ /dev/null @@ -1,55 +0,0 @@ -boundingPoly = $boundingPoly; - } - /** - * @return Google_Service_Vision_BoundingPoly - */ - public function getBoundingPoly() - { - return $this->boundingPoly; - } - public function setConfidence($confidence) - { - $this->confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - public function setImportanceFraction($importanceFraction) - { - $this->importanceFraction = $importanceFraction; - } - public function getImportanceFraction() - { - return $this->importanceFraction; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/CropHintsAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/CropHintsAnnotation.php deleted file mode 100644 index b4920e37..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/CropHintsAnnotation.php +++ /dev/null @@ -1,38 +0,0 @@ -cropHints = $cropHints; - } - /** - * @return Google_Service_Vision_CropHint - */ - public function getCropHints() - { - return $this->cropHints; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/CropHintsParams.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/CropHintsParams.php deleted file mode 100644 index 125eb0f1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/CropHintsParams.php +++ /dev/null @@ -1,31 +0,0 @@ -aspectRatios = $aspectRatios; - } - public function getAspectRatios() - { - return $this->aspectRatios; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/DetectedBreak.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/DetectedBreak.php deleted file mode 100644 index 53fabdca..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/DetectedBreak.php +++ /dev/null @@ -1,39 +0,0 @@ -isPrefix = $isPrefix; - } - public function getIsPrefix() - { - return $this->isPrefix; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/DetectedLanguage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/DetectedLanguage.php deleted file mode 100644 index 853a567c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/DetectedLanguage.php +++ /dev/null @@ -1,39 +0,0 @@ -confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - public function setLanguageCode($languageCode) - { - $this->languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/DominantColorsAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/DominantColorsAnnotation.php deleted file mode 100644 index 4bb85342..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/DominantColorsAnnotation.php +++ /dev/null @@ -1,38 +0,0 @@ -colors = $colors; - } - /** - * @return Google_Service_Vision_ColorInfo - */ - public function getColors() - { - return $this->colors; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/EntityAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/EntityAnnotation.php deleted file mode 100644 index 8b35a702..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/EntityAnnotation.php +++ /dev/null @@ -1,124 +0,0 @@ -boundingPoly = $boundingPoly; - } - /** - * @return Google_Service_Vision_BoundingPoly - */ - public function getBoundingPoly() - { - return $this->boundingPoly; - } - public function setConfidence($confidence) - { - $this->confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setLocale($locale) - { - $this->locale = $locale; - } - public function getLocale() - { - return $this->locale; - } - /** - * @param Google_Service_Vision_LocationInfo - */ - public function setLocations($locations) - { - $this->locations = $locations; - } - /** - * @return Google_Service_Vision_LocationInfo - */ - public function getLocations() - { - return $this->locations; - } - public function setMid($mid) - { - $this->mid = $mid; - } - public function getMid() - { - return $this->mid; - } - /** - * @param Google_Service_Vision_Property - */ - public function setProperties($properties) - { - $this->properties = $properties; - } - /** - * @return Google_Service_Vision_Property - */ - public function getProperties() - { - return $this->properties; - } - public function setScore($score) - { - $this->score = $score; - } - public function getScore() - { - return $this->score; - } - public function setTopicality($topicality) - { - $this->topicality = $topicality; - } - public function getTopicality() - { - return $this->topicality; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/FaceAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/FaceAnnotation.php deleted file mode 100644 index 5dd5415e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/FaceAnnotation.php +++ /dev/null @@ -1,178 +0,0 @@ -angerLikelihood = $angerLikelihood; - } - public function getAngerLikelihood() - { - return $this->angerLikelihood; - } - public function setBlurredLikelihood($blurredLikelihood) - { - $this->blurredLikelihood = $blurredLikelihood; - } - public function getBlurredLikelihood() - { - return $this->blurredLikelihood; - } - /** - * @param Google_Service_Vision_BoundingPoly - */ - public function setBoundingPoly(Google_Service_Vision_BoundingPoly $boundingPoly) - { - $this->boundingPoly = $boundingPoly; - } - /** - * @return Google_Service_Vision_BoundingPoly - */ - public function getBoundingPoly() - { - return $this->boundingPoly; - } - public function setDetectionConfidence($detectionConfidence) - { - $this->detectionConfidence = $detectionConfidence; - } - public function getDetectionConfidence() - { - return $this->detectionConfidence; - } - /** - * @param Google_Service_Vision_BoundingPoly - */ - public function setFdBoundingPoly(Google_Service_Vision_BoundingPoly $fdBoundingPoly) - { - $this->fdBoundingPoly = $fdBoundingPoly; - } - /** - * @return Google_Service_Vision_BoundingPoly - */ - public function getFdBoundingPoly() - { - return $this->fdBoundingPoly; - } - public function setHeadwearLikelihood($headwearLikelihood) - { - $this->headwearLikelihood = $headwearLikelihood; - } - public function getHeadwearLikelihood() - { - return $this->headwearLikelihood; - } - public function setJoyLikelihood($joyLikelihood) - { - $this->joyLikelihood = $joyLikelihood; - } - public function getJoyLikelihood() - { - return $this->joyLikelihood; - } - public function setLandmarkingConfidence($landmarkingConfidence) - { - $this->landmarkingConfidence = $landmarkingConfidence; - } - public function getLandmarkingConfidence() - { - return $this->landmarkingConfidence; - } - /** - * @param Google_Service_Vision_Landmark - */ - public function setLandmarks($landmarks) - { - $this->landmarks = $landmarks; - } - /** - * @return Google_Service_Vision_Landmark - */ - public function getLandmarks() - { - return $this->landmarks; - } - public function setPanAngle($panAngle) - { - $this->panAngle = $panAngle; - } - public function getPanAngle() - { - return $this->panAngle; - } - public function setRollAngle($rollAngle) - { - $this->rollAngle = $rollAngle; - } - public function getRollAngle() - { - return $this->rollAngle; - } - public function setSorrowLikelihood($sorrowLikelihood) - { - $this->sorrowLikelihood = $sorrowLikelihood; - } - public function getSorrowLikelihood() - { - return $this->sorrowLikelihood; - } - public function setSurpriseLikelihood($surpriseLikelihood) - { - $this->surpriseLikelihood = $surpriseLikelihood; - } - public function getSurpriseLikelihood() - { - return $this->surpriseLikelihood; - } - public function setTiltAngle($tiltAngle) - { - $this->tiltAngle = $tiltAngle; - } - public function getTiltAngle() - { - return $this->tiltAngle; - } - public function setUnderExposedLikelihood($underExposedLikelihood) - { - $this->underExposedLikelihood = $underExposedLikelihood; - } - public function getUnderExposedLikelihood() - { - return $this->underExposedLikelihood; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Feature.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Feature.php deleted file mode 100644 index 44ce7483..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Feature.php +++ /dev/null @@ -1,48 +0,0 @@ -maxResults = $maxResults; - } - public function getMaxResults() - { - return $this->maxResults; - } - public function setModel($model) - { - $this->model = $model; - } - public function getModel() - { - return $this->model; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GcsDestination.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GcsDestination.php deleted file mode 100644 index 4741e011..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GcsDestination.php +++ /dev/null @@ -1,30 +0,0 @@ -uri = $uri; - } - public function getUri() - { - return $this->uri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GcsSource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GcsSource.php deleted file mode 100644 index 0033e86a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GcsSource.php +++ /dev/null @@ -1,30 +0,0 @@ -uri = $uri; - } - public function getUri() - { - return $this->uri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1AnnotateFileResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1AnnotateFileResponse.php deleted file mode 100644 index c2da0a83..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1AnnotateFileResponse.php +++ /dev/null @@ -1,79 +0,0 @@ -error = $error; - } - /** - * @return Google_Service_Vision_Status - */ - public function getError() - { - return $this->error; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p1beta1InputConfig - */ - public function setInputConfig(Google_Service_Vision_GoogleCloudVisionV1p1beta1InputConfig $inputConfig) - { - $this->inputConfig = $inputConfig; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1InputConfig - */ - public function getInputConfig() - { - return $this->inputConfig; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p1beta1AnnotateImageResponse - */ - public function setResponses($responses) - { - $this->responses = $responses; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1AnnotateImageResponse - */ - public function getResponses() - { - return $this->responses; - } - public function setTotalPages($totalPages) - { - $this->totalPages = $totalPages; - } - public function getTotalPages() - { - return $this->totalPages; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1AnnotateImageResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1AnnotateImageResponse.php deleted file mode 100644 index d9f04e2e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1AnnotateImageResponse.php +++ /dev/null @@ -1,246 +0,0 @@ -context = $context; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1ImageAnnotationContext - */ - public function getContext() - { - return $this->context; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p1beta1CropHintsAnnotation - */ - public function setCropHintsAnnotation(Google_Service_Vision_GoogleCloudVisionV1p1beta1CropHintsAnnotation $cropHintsAnnotation) - { - $this->cropHintsAnnotation = $cropHintsAnnotation; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1CropHintsAnnotation - */ - public function getCropHintsAnnotation() - { - return $this->cropHintsAnnotation; - } - /** - * @param Google_Service_Vision_Status - */ - public function setError(Google_Service_Vision_Status $error) - { - $this->error = $error; - } - /** - * @return Google_Service_Vision_Status - */ - public function getError() - { - return $this->error; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p1beta1FaceAnnotation - */ - public function setFaceAnnotations($faceAnnotations) - { - $this->faceAnnotations = $faceAnnotations; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1FaceAnnotation - */ - public function getFaceAnnotations() - { - return $this->faceAnnotations; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p1beta1TextAnnotation - */ - public function setFullTextAnnotation(Google_Service_Vision_GoogleCloudVisionV1p1beta1TextAnnotation $fullTextAnnotation) - { - $this->fullTextAnnotation = $fullTextAnnotation; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1TextAnnotation - */ - public function getFullTextAnnotation() - { - return $this->fullTextAnnotation; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p1beta1ImageProperties - */ - public function setImagePropertiesAnnotation(Google_Service_Vision_GoogleCloudVisionV1p1beta1ImageProperties $imagePropertiesAnnotation) - { - $this->imagePropertiesAnnotation = $imagePropertiesAnnotation; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1ImageProperties - */ - public function getImagePropertiesAnnotation() - { - return $this->imagePropertiesAnnotation; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p1beta1EntityAnnotation - */ - public function setLabelAnnotations($labelAnnotations) - { - $this->labelAnnotations = $labelAnnotations; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1EntityAnnotation - */ - public function getLabelAnnotations() - { - return $this->labelAnnotations; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p1beta1EntityAnnotation - */ - public function setLandmarkAnnotations($landmarkAnnotations) - { - $this->landmarkAnnotations = $landmarkAnnotations; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1EntityAnnotation - */ - public function getLandmarkAnnotations() - { - return $this->landmarkAnnotations; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p1beta1LocalizedObjectAnnotation - */ - public function setLocalizedObjectAnnotations($localizedObjectAnnotations) - { - $this->localizedObjectAnnotations = $localizedObjectAnnotations; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1LocalizedObjectAnnotation - */ - public function getLocalizedObjectAnnotations() - { - return $this->localizedObjectAnnotations; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p1beta1EntityAnnotation - */ - public function setLogoAnnotations($logoAnnotations) - { - $this->logoAnnotations = $logoAnnotations; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1EntityAnnotation - */ - public function getLogoAnnotations() - { - return $this->logoAnnotations; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p1beta1ProductSearchResults - */ - public function setProductSearchResults(Google_Service_Vision_GoogleCloudVisionV1p1beta1ProductSearchResults $productSearchResults) - { - $this->productSearchResults = $productSearchResults; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1ProductSearchResults - */ - public function getProductSearchResults() - { - return $this->productSearchResults; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p1beta1SafeSearchAnnotation - */ - public function setSafeSearchAnnotation(Google_Service_Vision_GoogleCloudVisionV1p1beta1SafeSearchAnnotation $safeSearchAnnotation) - { - $this->safeSearchAnnotation = $safeSearchAnnotation; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1SafeSearchAnnotation - */ - public function getSafeSearchAnnotation() - { - return $this->safeSearchAnnotation; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p1beta1EntityAnnotation - */ - public function setTextAnnotations($textAnnotations) - { - $this->textAnnotations = $textAnnotations; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1EntityAnnotation - */ - public function getTextAnnotations() - { - return $this->textAnnotations; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p1beta1WebDetection - */ - public function setWebDetection(Google_Service_Vision_GoogleCloudVisionV1p1beta1WebDetection $webDetection) - { - $this->webDetection = $webDetection; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1WebDetection - */ - public function getWebDetection() - { - return $this->webDetection; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1AsyncAnnotateFileResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1AsyncAnnotateFileResponse.php deleted file mode 100644 index e08602dd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1AsyncAnnotateFileResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -outputConfig = $outputConfig; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1OutputConfig - */ - public function getOutputConfig() - { - return $this->outputConfig; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1AsyncBatchAnnotateFilesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1AsyncBatchAnnotateFilesResponse.php deleted file mode 100644 index 254b2c87..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1AsyncBatchAnnotateFilesResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -responses = $responses; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1AsyncAnnotateFileResponse - */ - public function getResponses() - { - return $this->responses; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1Block.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1Block.php deleted file mode 100644 index 267a4778..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1Block.php +++ /dev/null @@ -1,88 +0,0 @@ -blockType = $blockType; - } - public function getBlockType() - { - return $this->blockType; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p1beta1BoundingPoly - */ - public function setBoundingBox(Google_Service_Vision_GoogleCloudVisionV1p1beta1BoundingPoly $boundingBox) - { - $this->boundingBox = $boundingBox; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1BoundingPoly - */ - public function getBoundingBox() - { - return $this->boundingBox; - } - public function setConfidence($confidence) - { - $this->confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p1beta1Paragraph - */ - public function setParagraphs($paragraphs) - { - $this->paragraphs = $paragraphs; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1Paragraph - */ - public function getParagraphs() - { - return $this->paragraphs; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p1beta1TextAnnotationTextProperty - */ - public function setProperty(Google_Service_Vision_GoogleCloudVisionV1p1beta1TextAnnotationTextProperty $property) - { - $this->property = $property; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1TextAnnotationTextProperty - */ - public function getProperty() - { - return $this->property; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1BoundingPoly.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1BoundingPoly.php deleted file mode 100644 index a0c09645..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1BoundingPoly.php +++ /dev/null @@ -1,54 +0,0 @@ -normalizedVertices = $normalizedVertices; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1NormalizedVertex - */ - public function getNormalizedVertices() - { - return $this->normalizedVertices; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p1beta1Vertex - */ - public function setVertices($vertices) - { - $this->vertices = $vertices; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1Vertex - */ - public function getVertices() - { - return $this->vertices; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1ColorInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1ColorInfo.php deleted file mode 100644 index 05e79a59..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1ColorInfo.php +++ /dev/null @@ -1,55 +0,0 @@ -color = $color; - } - /** - * @return Google_Service_Vision_Color - */ - public function getColor() - { - return $this->color; - } - public function setPixelFraction($pixelFraction) - { - $this->pixelFraction = $pixelFraction; - } - public function getPixelFraction() - { - return $this->pixelFraction; - } - public function setScore($score) - { - $this->score = $score; - } - public function getScore() - { - return $this->score; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1CropHint.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1CropHint.php deleted file mode 100644 index 41d920ce..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1CropHint.php +++ /dev/null @@ -1,55 +0,0 @@ -boundingPoly = $boundingPoly; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1BoundingPoly - */ - public function getBoundingPoly() - { - return $this->boundingPoly; - } - public function setConfidence($confidence) - { - $this->confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - public function setImportanceFraction($importanceFraction) - { - $this->importanceFraction = $importanceFraction; - } - public function getImportanceFraction() - { - return $this->importanceFraction; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1CropHintsAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1CropHintsAnnotation.php deleted file mode 100644 index dc64850f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1CropHintsAnnotation.php +++ /dev/null @@ -1,38 +0,0 @@ -cropHints = $cropHints; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1CropHint - */ - public function getCropHints() - { - return $this->cropHints; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1DominantColorsAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1DominantColorsAnnotation.php deleted file mode 100644 index e81eb05d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1DominantColorsAnnotation.php +++ /dev/null @@ -1,38 +0,0 @@ -colors = $colors; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1ColorInfo - */ - public function getColors() - { - return $this->colors; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1EntityAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1EntityAnnotation.php deleted file mode 100644 index 43e646f4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1EntityAnnotation.php +++ /dev/null @@ -1,124 +0,0 @@ -boundingPoly = $boundingPoly; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1BoundingPoly - */ - public function getBoundingPoly() - { - return $this->boundingPoly; - } - public function setConfidence($confidence) - { - $this->confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setLocale($locale) - { - $this->locale = $locale; - } - public function getLocale() - { - return $this->locale; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p1beta1LocationInfo - */ - public function setLocations($locations) - { - $this->locations = $locations; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1LocationInfo - */ - public function getLocations() - { - return $this->locations; - } - public function setMid($mid) - { - $this->mid = $mid; - } - public function getMid() - { - return $this->mid; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p1beta1Property - */ - public function setProperties($properties) - { - $this->properties = $properties; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1Property - */ - public function getProperties() - { - return $this->properties; - } - public function setScore($score) - { - $this->score = $score; - } - public function getScore() - { - return $this->score; - } - public function setTopicality($topicality) - { - $this->topicality = $topicality; - } - public function getTopicality() - { - return $this->topicality; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1FaceAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1FaceAnnotation.php deleted file mode 100644 index d66e818b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1FaceAnnotation.php +++ /dev/null @@ -1,178 +0,0 @@ -angerLikelihood = $angerLikelihood; - } - public function getAngerLikelihood() - { - return $this->angerLikelihood; - } - public function setBlurredLikelihood($blurredLikelihood) - { - $this->blurredLikelihood = $blurredLikelihood; - } - public function getBlurredLikelihood() - { - return $this->blurredLikelihood; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p1beta1BoundingPoly - */ - public function setBoundingPoly(Google_Service_Vision_GoogleCloudVisionV1p1beta1BoundingPoly $boundingPoly) - { - $this->boundingPoly = $boundingPoly; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1BoundingPoly - */ - public function getBoundingPoly() - { - return $this->boundingPoly; - } - public function setDetectionConfidence($detectionConfidence) - { - $this->detectionConfidence = $detectionConfidence; - } - public function getDetectionConfidence() - { - return $this->detectionConfidence; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p1beta1BoundingPoly - */ - public function setFdBoundingPoly(Google_Service_Vision_GoogleCloudVisionV1p1beta1BoundingPoly $fdBoundingPoly) - { - $this->fdBoundingPoly = $fdBoundingPoly; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1BoundingPoly - */ - public function getFdBoundingPoly() - { - return $this->fdBoundingPoly; - } - public function setHeadwearLikelihood($headwearLikelihood) - { - $this->headwearLikelihood = $headwearLikelihood; - } - public function getHeadwearLikelihood() - { - return $this->headwearLikelihood; - } - public function setJoyLikelihood($joyLikelihood) - { - $this->joyLikelihood = $joyLikelihood; - } - public function getJoyLikelihood() - { - return $this->joyLikelihood; - } - public function setLandmarkingConfidence($landmarkingConfidence) - { - $this->landmarkingConfidence = $landmarkingConfidence; - } - public function getLandmarkingConfidence() - { - return $this->landmarkingConfidence; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p1beta1FaceAnnotationLandmark - */ - public function setLandmarks($landmarks) - { - $this->landmarks = $landmarks; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1FaceAnnotationLandmark - */ - public function getLandmarks() - { - return $this->landmarks; - } - public function setPanAngle($panAngle) - { - $this->panAngle = $panAngle; - } - public function getPanAngle() - { - return $this->panAngle; - } - public function setRollAngle($rollAngle) - { - $this->rollAngle = $rollAngle; - } - public function getRollAngle() - { - return $this->rollAngle; - } - public function setSorrowLikelihood($sorrowLikelihood) - { - $this->sorrowLikelihood = $sorrowLikelihood; - } - public function getSorrowLikelihood() - { - return $this->sorrowLikelihood; - } - public function setSurpriseLikelihood($surpriseLikelihood) - { - $this->surpriseLikelihood = $surpriseLikelihood; - } - public function getSurpriseLikelihood() - { - return $this->surpriseLikelihood; - } - public function setTiltAngle($tiltAngle) - { - $this->tiltAngle = $tiltAngle; - } - public function getTiltAngle() - { - return $this->tiltAngle; - } - public function setUnderExposedLikelihood($underExposedLikelihood) - { - $this->underExposedLikelihood = $underExposedLikelihood; - } - public function getUnderExposedLikelihood() - { - return $this->underExposedLikelihood; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1FaceAnnotationLandmark.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1FaceAnnotationLandmark.php deleted file mode 100644 index b7baaf16..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1FaceAnnotationLandmark.php +++ /dev/null @@ -1,46 +0,0 @@ -position = $position; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1Position - */ - public function getPosition() - { - return $this->position; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1GcsDestination.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1GcsDestination.php deleted file mode 100644 index 3ed91f4e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1GcsDestination.php +++ /dev/null @@ -1,30 +0,0 @@ -uri = $uri; - } - public function getUri() - { - return $this->uri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1GcsSource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1GcsSource.php deleted file mode 100644 index a9c52d59..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1GcsSource.php +++ /dev/null @@ -1,30 +0,0 @@ -uri = $uri; - } - public function getUri() - { - return $this->uri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1ImageAnnotationContext.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1ImageAnnotationContext.php deleted file mode 100644 index 46dc572e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1ImageAnnotationContext.php +++ /dev/null @@ -1,39 +0,0 @@ -pageNumber = $pageNumber; - } - public function getPageNumber() - { - return $this->pageNumber; - } - public function setUri($uri) - { - $this->uri = $uri; - } - public function getUri() - { - return $this->uri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1ImageProperties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1ImageProperties.php deleted file mode 100644 index 6316f05a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1ImageProperties.php +++ /dev/null @@ -1,37 +0,0 @@ -dominantColors = $dominantColors; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1DominantColorsAnnotation - */ - public function getDominantColors() - { - return $this->dominantColors; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1InputConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1InputConfig.php deleted file mode 100644 index b571b785..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1InputConfig.php +++ /dev/null @@ -1,55 +0,0 @@ -content = $content; - } - public function getContent() - { - return $this->content; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p1beta1GcsSource - */ - public function setGcsSource(Google_Service_Vision_GoogleCloudVisionV1p1beta1GcsSource $gcsSource) - { - $this->gcsSource = $gcsSource; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1GcsSource - */ - public function getGcsSource() - { - return $this->gcsSource; - } - public function setMimeType($mimeType) - { - $this->mimeType = $mimeType; - } - public function getMimeType() - { - return $this->mimeType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1LocalizedObjectAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1LocalizedObjectAnnotation.php deleted file mode 100644 index 33851409..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1LocalizedObjectAnnotation.php +++ /dev/null @@ -1,73 +0,0 @@ -boundingPoly = $boundingPoly; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1BoundingPoly - */ - public function getBoundingPoly() - { - return $this->boundingPoly; - } - public function setLanguageCode($languageCode) - { - $this->languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } - public function setMid($mid) - { - $this->mid = $mid; - } - public function getMid() - { - return $this->mid; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setScore($score) - { - $this->score = $score; - } - public function getScore() - { - return $this->score; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1LocationInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1LocationInfo.php deleted file mode 100644 index 146da785..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1LocationInfo.php +++ /dev/null @@ -1,37 +0,0 @@ -latLng = $latLng; - } - /** - * @return Google_Service_Vision_LatLng - */ - public function getLatLng() - { - return $this->latLng; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1NormalizedVertex.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1NormalizedVertex.php deleted file mode 100644 index 2f64ea9f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1NormalizedVertex.php +++ /dev/null @@ -1,39 +0,0 @@ -x = $x; - } - public function getX() - { - return $this->x; - } - public function setY($y) - { - $this->y = $y; - } - public function getY() - { - return $this->y; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1OperationMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1OperationMetadata.php deleted file mode 100644 index 2618fa71..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1OperationMetadata.php +++ /dev/null @@ -1,48 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1OutputConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1OutputConfig.php deleted file mode 100644 index b2ed71a2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1OutputConfig.php +++ /dev/null @@ -1,46 +0,0 @@ -batchSize = $batchSize; - } - public function getBatchSize() - { - return $this->batchSize; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p1beta1GcsDestination - */ - public function setGcsDestination(Google_Service_Vision_GoogleCloudVisionV1p1beta1GcsDestination $gcsDestination) - { - $this->gcsDestination = $gcsDestination; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1GcsDestination - */ - public function getGcsDestination() - { - return $this->gcsDestination; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1Page.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1Page.php deleted file mode 100644 index c740d624..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1Page.php +++ /dev/null @@ -1,81 +0,0 @@ -blocks = $blocks; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1Block - */ - public function getBlocks() - { - return $this->blocks; - } - public function setConfidence($confidence) - { - $this->confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - public function setHeight($height) - { - $this->height = $height; - } - public function getHeight() - { - return $this->height; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p1beta1TextAnnotationTextProperty - */ - public function setProperty(Google_Service_Vision_GoogleCloudVisionV1p1beta1TextAnnotationTextProperty $property) - { - $this->property = $property; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1TextAnnotationTextProperty - */ - public function getProperty() - { - return $this->property; - } - public function setWidth($width) - { - $this->width = $width; - } - public function getWidth() - { - return $this->width; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1Paragraph.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1Paragraph.php deleted file mode 100644 index cfd526c6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1Paragraph.php +++ /dev/null @@ -1,79 +0,0 @@ -boundingBox = $boundingBox; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1BoundingPoly - */ - public function getBoundingBox() - { - return $this->boundingBox; - } - public function setConfidence($confidence) - { - $this->confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p1beta1TextAnnotationTextProperty - */ - public function setProperty(Google_Service_Vision_GoogleCloudVisionV1p1beta1TextAnnotationTextProperty $property) - { - $this->property = $property; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1TextAnnotationTextProperty - */ - public function getProperty() - { - return $this->property; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p1beta1Word - */ - public function setWords($words) - { - $this->words = $words; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1Word - */ - public function getWords() - { - return $this->words; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1Position.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1Position.php deleted file mode 100644 index 9f39cd8f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1Position.php +++ /dev/null @@ -1,48 +0,0 @@ -x = $x; - } - public function getX() - { - return $this->x; - } - public function setY($y) - { - $this->y = $y; - } - public function getY() - { - return $this->y; - } - public function setZ($z) - { - $this->z = $z; - } - public function getZ() - { - return $this->z; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1Product.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1Product.php deleted file mode 100644 index f26e250f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1Product.php +++ /dev/null @@ -1,74 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setProductCategory($productCategory) - { - $this->productCategory = $productCategory; - } - public function getProductCategory() - { - return $this->productCategory; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p1beta1ProductKeyValue - */ - public function setProductLabels($productLabels) - { - $this->productLabels = $productLabels; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1ProductKeyValue - */ - public function getProductLabels() - { - return $this->productLabels; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1ProductKeyValue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1ProductKeyValue.php deleted file mode 100644 index 170bc29f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1ProductKeyValue.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1ProductSearchResults.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1ProductSearchResults.php deleted file mode 100644 index 110304b6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1ProductSearchResults.php +++ /dev/null @@ -1,63 +0,0 @@ -indexTime = $indexTime; - } - public function getIndexTime() - { - return $this->indexTime; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p1beta1ProductSearchResultsGroupedResult - */ - public function setProductGroupedResults($productGroupedResults) - { - $this->productGroupedResults = $productGroupedResults; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1ProductSearchResultsGroupedResult - */ - public function getProductGroupedResults() - { - return $this->productGroupedResults; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p1beta1ProductSearchResultsResult - */ - public function setResults($results) - { - $this->results = $results; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1ProductSearchResultsResult - */ - public function getResults() - { - return $this->results; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1ProductSearchResultsGroupedResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1ProductSearchResultsGroupedResult.php deleted file mode 100644 index 60d0e969..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1ProductSearchResultsGroupedResult.php +++ /dev/null @@ -1,70 +0,0 @@ -boundingPoly = $boundingPoly; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1BoundingPoly - */ - public function getBoundingPoly() - { - return $this->boundingPoly; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p1beta1ProductSearchResultsObjectAnnotation - */ - public function setObjectAnnotations($objectAnnotations) - { - $this->objectAnnotations = $objectAnnotations; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1ProductSearchResultsObjectAnnotation - */ - public function getObjectAnnotations() - { - return $this->objectAnnotations; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p1beta1ProductSearchResultsResult - */ - public function setResults($results) - { - $this->results = $results; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1ProductSearchResultsResult - */ - public function getResults() - { - return $this->results; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1ProductSearchResultsObjectAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1ProductSearchResultsObjectAnnotation.php deleted file mode 100644 index 9c527901..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1ProductSearchResultsObjectAnnotation.php +++ /dev/null @@ -1,57 +0,0 @@ -languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } - public function setMid($mid) - { - $this->mid = $mid; - } - public function getMid() - { - return $this->mid; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setScore($score) - { - $this->score = $score; - } - public function getScore() - { - return $this->score; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1ProductSearchResultsResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1ProductSearchResultsResult.php deleted file mode 100644 index 02b12840..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1ProductSearchResultsResult.php +++ /dev/null @@ -1,55 +0,0 @@ -image = $image; - } - public function getImage() - { - return $this->image; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p1beta1Product - */ - public function setProduct(Google_Service_Vision_GoogleCloudVisionV1p1beta1Product $product) - { - $this->product = $product; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1Product - */ - public function getProduct() - { - return $this->product; - } - public function setScore($score) - { - $this->score = $score; - } - public function getScore() - { - return $this->score; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1Property.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1Property.php deleted file mode 100644 index 8496d55e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1Property.php +++ /dev/null @@ -1,48 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setUint64Value($uint64Value) - { - $this->uint64Value = $uint64Value; - } - public function getUint64Value() - { - return $this->uint64Value; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1SafeSearchAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1SafeSearchAnnotation.php deleted file mode 100644 index 89ddf195..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1SafeSearchAnnotation.php +++ /dev/null @@ -1,66 +0,0 @@ -adult = $adult; - } - public function getAdult() - { - return $this->adult; - } - public function setMedical($medical) - { - $this->medical = $medical; - } - public function getMedical() - { - return $this->medical; - } - public function setRacy($racy) - { - $this->racy = $racy; - } - public function getRacy() - { - return $this->racy; - } - public function setSpoof($spoof) - { - $this->spoof = $spoof; - } - public function getSpoof() - { - return $this->spoof; - } - public function setViolence($violence) - { - $this->violence = $violence; - } - public function getViolence() - { - return $this->violence; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1Symbol.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1Symbol.php deleted file mode 100644 index 94a6ef77..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1Symbol.php +++ /dev/null @@ -1,71 +0,0 @@ -boundingBox = $boundingBox; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1BoundingPoly - */ - public function getBoundingBox() - { - return $this->boundingBox; - } - public function setConfidence($confidence) - { - $this->confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p1beta1TextAnnotationTextProperty - */ - public function setProperty(Google_Service_Vision_GoogleCloudVisionV1p1beta1TextAnnotationTextProperty $property) - { - $this->property = $property; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1TextAnnotationTextProperty - */ - public function getProperty() - { - return $this->property; - } - public function setText($text) - { - $this->text = $text; - } - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1TextAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1TextAnnotation.php deleted file mode 100644 index 092d72a2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1TextAnnotation.php +++ /dev/null @@ -1,47 +0,0 @@ -pages = $pages; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1Page - */ - public function getPages() - { - return $this->pages; - } - public function setText($text) - { - $this->text = $text; - } - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1TextAnnotationDetectedBreak.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1TextAnnotationDetectedBreak.php deleted file mode 100644 index c0c1d69e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1TextAnnotationDetectedBreak.php +++ /dev/null @@ -1,39 +0,0 @@ -isPrefix = $isPrefix; - } - public function getIsPrefix() - { - return $this->isPrefix; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1TextAnnotationDetectedLanguage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1TextAnnotationDetectedLanguage.php deleted file mode 100644 index 0f45ff6f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1TextAnnotationDetectedLanguage.php +++ /dev/null @@ -1,39 +0,0 @@ -confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - public function setLanguageCode($languageCode) - { - $this->languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1TextAnnotationTextProperty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1TextAnnotationTextProperty.php deleted file mode 100644 index 73f794f2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1TextAnnotationTextProperty.php +++ /dev/null @@ -1,54 +0,0 @@ -detectedBreak = $detectedBreak; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1TextAnnotationDetectedBreak - */ - public function getDetectedBreak() - { - return $this->detectedBreak; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p1beta1TextAnnotationDetectedLanguage - */ - public function setDetectedLanguages($detectedLanguages) - { - $this->detectedLanguages = $detectedLanguages; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1TextAnnotationDetectedLanguage - */ - public function getDetectedLanguages() - { - return $this->detectedLanguages; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1Vertex.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1Vertex.php deleted file mode 100644 index d0e7ac5c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1Vertex.php +++ /dev/null @@ -1,39 +0,0 @@ -x = $x; - } - public function getX() - { - return $this->x; - } - public function setY($y) - { - $this->y = $y; - } - public function getY() - { - return $this->y; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1WebDetection.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1WebDetection.php deleted file mode 100644 index e912ad7d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1WebDetection.php +++ /dev/null @@ -1,118 +0,0 @@ -bestGuessLabels = $bestGuessLabels; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1WebDetectionWebLabel - */ - public function getBestGuessLabels() - { - return $this->bestGuessLabels; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p1beta1WebDetectionWebImage - */ - public function setFullMatchingImages($fullMatchingImages) - { - $this->fullMatchingImages = $fullMatchingImages; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1WebDetectionWebImage - */ - public function getFullMatchingImages() - { - return $this->fullMatchingImages; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p1beta1WebDetectionWebPage - */ - public function setPagesWithMatchingImages($pagesWithMatchingImages) - { - $this->pagesWithMatchingImages = $pagesWithMatchingImages; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1WebDetectionWebPage - */ - public function getPagesWithMatchingImages() - { - return $this->pagesWithMatchingImages; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p1beta1WebDetectionWebImage - */ - public function setPartialMatchingImages($partialMatchingImages) - { - $this->partialMatchingImages = $partialMatchingImages; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1WebDetectionWebImage - */ - public function getPartialMatchingImages() - { - return $this->partialMatchingImages; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p1beta1WebDetectionWebImage - */ - public function setVisuallySimilarImages($visuallySimilarImages) - { - $this->visuallySimilarImages = $visuallySimilarImages; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1WebDetectionWebImage - */ - public function getVisuallySimilarImages() - { - return $this->visuallySimilarImages; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p1beta1WebDetectionWebEntity - */ - public function setWebEntities($webEntities) - { - $this->webEntities = $webEntities; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1WebDetectionWebEntity - */ - public function getWebEntities() - { - return $this->webEntities; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1WebDetectionWebEntity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1WebDetectionWebEntity.php deleted file mode 100644 index b414e102..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1WebDetectionWebEntity.php +++ /dev/null @@ -1,48 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setEntityId($entityId) - { - $this->entityId = $entityId; - } - public function getEntityId() - { - return $this->entityId; - } - public function setScore($score) - { - $this->score = $score; - } - public function getScore() - { - return $this->score; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1WebDetectionWebImage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1WebDetectionWebImage.php deleted file mode 100644 index 173b1279..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1WebDetectionWebImage.php +++ /dev/null @@ -1,39 +0,0 @@ -score = $score; - } - public function getScore() - { - return $this->score; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1WebDetectionWebLabel.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1WebDetectionWebLabel.php deleted file mode 100644 index 0916f261..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1WebDetectionWebLabel.php +++ /dev/null @@ -1,39 +0,0 @@ -label = $label; - } - public function getLabel() - { - return $this->label; - } - public function setLanguageCode($languageCode) - { - $this->languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1WebDetectionWebPage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1WebDetectionWebPage.php deleted file mode 100644 index ebdf59b6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1WebDetectionWebPage.php +++ /dev/null @@ -1,81 +0,0 @@ -fullMatchingImages = $fullMatchingImages; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1WebDetectionWebImage - */ - public function getFullMatchingImages() - { - return $this->fullMatchingImages; - } - public function setPageTitle($pageTitle) - { - $this->pageTitle = $pageTitle; - } - public function getPageTitle() - { - return $this->pageTitle; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p1beta1WebDetectionWebImage - */ - public function setPartialMatchingImages($partialMatchingImages) - { - $this->partialMatchingImages = $partialMatchingImages; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1WebDetectionWebImage - */ - public function getPartialMatchingImages() - { - return $this->partialMatchingImages; - } - public function setScore($score) - { - $this->score = $score; - } - public function getScore() - { - return $this->score; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1Word.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1Word.php deleted file mode 100644 index e441b493..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p1beta1Word.php +++ /dev/null @@ -1,79 +0,0 @@ -boundingBox = $boundingBox; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1BoundingPoly - */ - public function getBoundingBox() - { - return $this->boundingBox; - } - public function setConfidence($confidence) - { - $this->confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p1beta1TextAnnotationTextProperty - */ - public function setProperty(Google_Service_Vision_GoogleCloudVisionV1p1beta1TextAnnotationTextProperty $property) - { - $this->property = $property; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1TextAnnotationTextProperty - */ - public function getProperty() - { - return $this->property; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p1beta1Symbol - */ - public function setSymbols($symbols) - { - $this->symbols = $symbols; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p1beta1Symbol - */ - public function getSymbols() - { - return $this->symbols; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1AnnotateFileResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1AnnotateFileResponse.php deleted file mode 100644 index b9d1dfd1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1AnnotateFileResponse.php +++ /dev/null @@ -1,79 +0,0 @@ -error = $error; - } - /** - * @return Google_Service_Vision_Status - */ - public function getError() - { - return $this->error; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p2beta1InputConfig - */ - public function setInputConfig(Google_Service_Vision_GoogleCloudVisionV1p2beta1InputConfig $inputConfig) - { - $this->inputConfig = $inputConfig; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1InputConfig - */ - public function getInputConfig() - { - return $this->inputConfig; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p2beta1AnnotateImageResponse - */ - public function setResponses($responses) - { - $this->responses = $responses; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1AnnotateImageResponse - */ - public function getResponses() - { - return $this->responses; - } - public function setTotalPages($totalPages) - { - $this->totalPages = $totalPages; - } - public function getTotalPages() - { - return $this->totalPages; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1AnnotateImageResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1AnnotateImageResponse.php deleted file mode 100644 index e2ba9f94..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1AnnotateImageResponse.php +++ /dev/null @@ -1,246 +0,0 @@ -context = $context; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1ImageAnnotationContext - */ - public function getContext() - { - return $this->context; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p2beta1CropHintsAnnotation - */ - public function setCropHintsAnnotation(Google_Service_Vision_GoogleCloudVisionV1p2beta1CropHintsAnnotation $cropHintsAnnotation) - { - $this->cropHintsAnnotation = $cropHintsAnnotation; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1CropHintsAnnotation - */ - public function getCropHintsAnnotation() - { - return $this->cropHintsAnnotation; - } - /** - * @param Google_Service_Vision_Status - */ - public function setError(Google_Service_Vision_Status $error) - { - $this->error = $error; - } - /** - * @return Google_Service_Vision_Status - */ - public function getError() - { - return $this->error; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p2beta1FaceAnnotation - */ - public function setFaceAnnotations($faceAnnotations) - { - $this->faceAnnotations = $faceAnnotations; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1FaceAnnotation - */ - public function getFaceAnnotations() - { - return $this->faceAnnotations; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p2beta1TextAnnotation - */ - public function setFullTextAnnotation(Google_Service_Vision_GoogleCloudVisionV1p2beta1TextAnnotation $fullTextAnnotation) - { - $this->fullTextAnnotation = $fullTextAnnotation; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1TextAnnotation - */ - public function getFullTextAnnotation() - { - return $this->fullTextAnnotation; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p2beta1ImageProperties - */ - public function setImagePropertiesAnnotation(Google_Service_Vision_GoogleCloudVisionV1p2beta1ImageProperties $imagePropertiesAnnotation) - { - $this->imagePropertiesAnnotation = $imagePropertiesAnnotation; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1ImageProperties - */ - public function getImagePropertiesAnnotation() - { - return $this->imagePropertiesAnnotation; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p2beta1EntityAnnotation - */ - public function setLabelAnnotations($labelAnnotations) - { - $this->labelAnnotations = $labelAnnotations; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1EntityAnnotation - */ - public function getLabelAnnotations() - { - return $this->labelAnnotations; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p2beta1EntityAnnotation - */ - public function setLandmarkAnnotations($landmarkAnnotations) - { - $this->landmarkAnnotations = $landmarkAnnotations; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1EntityAnnotation - */ - public function getLandmarkAnnotations() - { - return $this->landmarkAnnotations; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p2beta1LocalizedObjectAnnotation - */ - public function setLocalizedObjectAnnotations($localizedObjectAnnotations) - { - $this->localizedObjectAnnotations = $localizedObjectAnnotations; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1LocalizedObjectAnnotation - */ - public function getLocalizedObjectAnnotations() - { - return $this->localizedObjectAnnotations; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p2beta1EntityAnnotation - */ - public function setLogoAnnotations($logoAnnotations) - { - $this->logoAnnotations = $logoAnnotations; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1EntityAnnotation - */ - public function getLogoAnnotations() - { - return $this->logoAnnotations; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p2beta1ProductSearchResults - */ - public function setProductSearchResults(Google_Service_Vision_GoogleCloudVisionV1p2beta1ProductSearchResults $productSearchResults) - { - $this->productSearchResults = $productSearchResults; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1ProductSearchResults - */ - public function getProductSearchResults() - { - return $this->productSearchResults; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p2beta1SafeSearchAnnotation - */ - public function setSafeSearchAnnotation(Google_Service_Vision_GoogleCloudVisionV1p2beta1SafeSearchAnnotation $safeSearchAnnotation) - { - $this->safeSearchAnnotation = $safeSearchAnnotation; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1SafeSearchAnnotation - */ - public function getSafeSearchAnnotation() - { - return $this->safeSearchAnnotation; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p2beta1EntityAnnotation - */ - public function setTextAnnotations($textAnnotations) - { - $this->textAnnotations = $textAnnotations; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1EntityAnnotation - */ - public function getTextAnnotations() - { - return $this->textAnnotations; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p2beta1WebDetection - */ - public function setWebDetection(Google_Service_Vision_GoogleCloudVisionV1p2beta1WebDetection $webDetection) - { - $this->webDetection = $webDetection; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1WebDetection - */ - public function getWebDetection() - { - return $this->webDetection; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1AsyncAnnotateFileResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1AsyncAnnotateFileResponse.php deleted file mode 100644 index ff194da1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1AsyncAnnotateFileResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -outputConfig = $outputConfig; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1OutputConfig - */ - public function getOutputConfig() - { - return $this->outputConfig; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1AsyncBatchAnnotateFilesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1AsyncBatchAnnotateFilesResponse.php deleted file mode 100644 index 1b004520..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1AsyncBatchAnnotateFilesResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -responses = $responses; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1AsyncAnnotateFileResponse - */ - public function getResponses() - { - return $this->responses; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1Block.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1Block.php deleted file mode 100644 index 9a255d30..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1Block.php +++ /dev/null @@ -1,88 +0,0 @@ -blockType = $blockType; - } - public function getBlockType() - { - return $this->blockType; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p2beta1BoundingPoly - */ - public function setBoundingBox(Google_Service_Vision_GoogleCloudVisionV1p2beta1BoundingPoly $boundingBox) - { - $this->boundingBox = $boundingBox; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1BoundingPoly - */ - public function getBoundingBox() - { - return $this->boundingBox; - } - public function setConfidence($confidence) - { - $this->confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p2beta1Paragraph - */ - public function setParagraphs($paragraphs) - { - $this->paragraphs = $paragraphs; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1Paragraph - */ - public function getParagraphs() - { - return $this->paragraphs; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p2beta1TextAnnotationTextProperty - */ - public function setProperty(Google_Service_Vision_GoogleCloudVisionV1p2beta1TextAnnotationTextProperty $property) - { - $this->property = $property; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1TextAnnotationTextProperty - */ - public function getProperty() - { - return $this->property; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1BoundingPoly.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1BoundingPoly.php deleted file mode 100644 index 48bcc3c0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1BoundingPoly.php +++ /dev/null @@ -1,54 +0,0 @@ -normalizedVertices = $normalizedVertices; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1NormalizedVertex - */ - public function getNormalizedVertices() - { - return $this->normalizedVertices; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p2beta1Vertex - */ - public function setVertices($vertices) - { - $this->vertices = $vertices; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1Vertex - */ - public function getVertices() - { - return $this->vertices; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1ColorInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1ColorInfo.php deleted file mode 100644 index 7859fa5f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1ColorInfo.php +++ /dev/null @@ -1,55 +0,0 @@ -color = $color; - } - /** - * @return Google_Service_Vision_Color - */ - public function getColor() - { - return $this->color; - } - public function setPixelFraction($pixelFraction) - { - $this->pixelFraction = $pixelFraction; - } - public function getPixelFraction() - { - return $this->pixelFraction; - } - public function setScore($score) - { - $this->score = $score; - } - public function getScore() - { - return $this->score; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1CropHint.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1CropHint.php deleted file mode 100644 index fdd97346..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1CropHint.php +++ /dev/null @@ -1,55 +0,0 @@ -boundingPoly = $boundingPoly; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1BoundingPoly - */ - public function getBoundingPoly() - { - return $this->boundingPoly; - } - public function setConfidence($confidence) - { - $this->confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - public function setImportanceFraction($importanceFraction) - { - $this->importanceFraction = $importanceFraction; - } - public function getImportanceFraction() - { - return $this->importanceFraction; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1CropHintsAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1CropHintsAnnotation.php deleted file mode 100644 index 84926d8a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1CropHintsAnnotation.php +++ /dev/null @@ -1,38 +0,0 @@ -cropHints = $cropHints; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1CropHint - */ - public function getCropHints() - { - return $this->cropHints; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1DominantColorsAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1DominantColorsAnnotation.php deleted file mode 100644 index 50c85394..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1DominantColorsAnnotation.php +++ /dev/null @@ -1,38 +0,0 @@ -colors = $colors; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1ColorInfo - */ - public function getColors() - { - return $this->colors; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1EntityAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1EntityAnnotation.php deleted file mode 100644 index ea71d2f6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1EntityAnnotation.php +++ /dev/null @@ -1,124 +0,0 @@ -boundingPoly = $boundingPoly; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1BoundingPoly - */ - public function getBoundingPoly() - { - return $this->boundingPoly; - } - public function setConfidence($confidence) - { - $this->confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setLocale($locale) - { - $this->locale = $locale; - } - public function getLocale() - { - return $this->locale; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p2beta1LocationInfo - */ - public function setLocations($locations) - { - $this->locations = $locations; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1LocationInfo - */ - public function getLocations() - { - return $this->locations; - } - public function setMid($mid) - { - $this->mid = $mid; - } - public function getMid() - { - return $this->mid; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p2beta1Property - */ - public function setProperties($properties) - { - $this->properties = $properties; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1Property - */ - public function getProperties() - { - return $this->properties; - } - public function setScore($score) - { - $this->score = $score; - } - public function getScore() - { - return $this->score; - } - public function setTopicality($topicality) - { - $this->topicality = $topicality; - } - public function getTopicality() - { - return $this->topicality; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1FaceAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1FaceAnnotation.php deleted file mode 100644 index 769e717e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1FaceAnnotation.php +++ /dev/null @@ -1,178 +0,0 @@ -angerLikelihood = $angerLikelihood; - } - public function getAngerLikelihood() - { - return $this->angerLikelihood; - } - public function setBlurredLikelihood($blurredLikelihood) - { - $this->blurredLikelihood = $blurredLikelihood; - } - public function getBlurredLikelihood() - { - return $this->blurredLikelihood; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p2beta1BoundingPoly - */ - public function setBoundingPoly(Google_Service_Vision_GoogleCloudVisionV1p2beta1BoundingPoly $boundingPoly) - { - $this->boundingPoly = $boundingPoly; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1BoundingPoly - */ - public function getBoundingPoly() - { - return $this->boundingPoly; - } - public function setDetectionConfidence($detectionConfidence) - { - $this->detectionConfidence = $detectionConfidence; - } - public function getDetectionConfidence() - { - return $this->detectionConfidence; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p2beta1BoundingPoly - */ - public function setFdBoundingPoly(Google_Service_Vision_GoogleCloudVisionV1p2beta1BoundingPoly $fdBoundingPoly) - { - $this->fdBoundingPoly = $fdBoundingPoly; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1BoundingPoly - */ - public function getFdBoundingPoly() - { - return $this->fdBoundingPoly; - } - public function setHeadwearLikelihood($headwearLikelihood) - { - $this->headwearLikelihood = $headwearLikelihood; - } - public function getHeadwearLikelihood() - { - return $this->headwearLikelihood; - } - public function setJoyLikelihood($joyLikelihood) - { - $this->joyLikelihood = $joyLikelihood; - } - public function getJoyLikelihood() - { - return $this->joyLikelihood; - } - public function setLandmarkingConfidence($landmarkingConfidence) - { - $this->landmarkingConfidence = $landmarkingConfidence; - } - public function getLandmarkingConfidence() - { - return $this->landmarkingConfidence; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p2beta1FaceAnnotationLandmark - */ - public function setLandmarks($landmarks) - { - $this->landmarks = $landmarks; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1FaceAnnotationLandmark - */ - public function getLandmarks() - { - return $this->landmarks; - } - public function setPanAngle($panAngle) - { - $this->panAngle = $panAngle; - } - public function getPanAngle() - { - return $this->panAngle; - } - public function setRollAngle($rollAngle) - { - $this->rollAngle = $rollAngle; - } - public function getRollAngle() - { - return $this->rollAngle; - } - public function setSorrowLikelihood($sorrowLikelihood) - { - $this->sorrowLikelihood = $sorrowLikelihood; - } - public function getSorrowLikelihood() - { - return $this->sorrowLikelihood; - } - public function setSurpriseLikelihood($surpriseLikelihood) - { - $this->surpriseLikelihood = $surpriseLikelihood; - } - public function getSurpriseLikelihood() - { - return $this->surpriseLikelihood; - } - public function setTiltAngle($tiltAngle) - { - $this->tiltAngle = $tiltAngle; - } - public function getTiltAngle() - { - return $this->tiltAngle; - } - public function setUnderExposedLikelihood($underExposedLikelihood) - { - $this->underExposedLikelihood = $underExposedLikelihood; - } - public function getUnderExposedLikelihood() - { - return $this->underExposedLikelihood; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1FaceAnnotationLandmark.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1FaceAnnotationLandmark.php deleted file mode 100644 index f9199afb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1FaceAnnotationLandmark.php +++ /dev/null @@ -1,46 +0,0 @@ -position = $position; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1Position - */ - public function getPosition() - { - return $this->position; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1GcsDestination.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1GcsDestination.php deleted file mode 100644 index 1bd9ac9a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1GcsDestination.php +++ /dev/null @@ -1,30 +0,0 @@ -uri = $uri; - } - public function getUri() - { - return $this->uri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1GcsSource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1GcsSource.php deleted file mode 100644 index 911665f3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1GcsSource.php +++ /dev/null @@ -1,30 +0,0 @@ -uri = $uri; - } - public function getUri() - { - return $this->uri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1ImageAnnotationContext.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1ImageAnnotationContext.php deleted file mode 100644 index 66ff4d5b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1ImageAnnotationContext.php +++ /dev/null @@ -1,39 +0,0 @@ -pageNumber = $pageNumber; - } - public function getPageNumber() - { - return $this->pageNumber; - } - public function setUri($uri) - { - $this->uri = $uri; - } - public function getUri() - { - return $this->uri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1ImageProperties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1ImageProperties.php deleted file mode 100644 index 752bcb35..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1ImageProperties.php +++ /dev/null @@ -1,37 +0,0 @@ -dominantColors = $dominantColors; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1DominantColorsAnnotation - */ - public function getDominantColors() - { - return $this->dominantColors; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1InputConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1InputConfig.php deleted file mode 100644 index 6035c11f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1InputConfig.php +++ /dev/null @@ -1,55 +0,0 @@ -content = $content; - } - public function getContent() - { - return $this->content; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p2beta1GcsSource - */ - public function setGcsSource(Google_Service_Vision_GoogleCloudVisionV1p2beta1GcsSource $gcsSource) - { - $this->gcsSource = $gcsSource; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1GcsSource - */ - public function getGcsSource() - { - return $this->gcsSource; - } - public function setMimeType($mimeType) - { - $this->mimeType = $mimeType; - } - public function getMimeType() - { - return $this->mimeType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1LocalizedObjectAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1LocalizedObjectAnnotation.php deleted file mode 100644 index 1f16c59c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1LocalizedObjectAnnotation.php +++ /dev/null @@ -1,73 +0,0 @@ -boundingPoly = $boundingPoly; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1BoundingPoly - */ - public function getBoundingPoly() - { - return $this->boundingPoly; - } - public function setLanguageCode($languageCode) - { - $this->languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } - public function setMid($mid) - { - $this->mid = $mid; - } - public function getMid() - { - return $this->mid; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setScore($score) - { - $this->score = $score; - } - public function getScore() - { - return $this->score; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1LocationInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1LocationInfo.php deleted file mode 100644 index 64a3a1dc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1LocationInfo.php +++ /dev/null @@ -1,37 +0,0 @@ -latLng = $latLng; - } - /** - * @return Google_Service_Vision_LatLng - */ - public function getLatLng() - { - return $this->latLng; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1NormalizedVertex.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1NormalizedVertex.php deleted file mode 100644 index 18718597..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1NormalizedVertex.php +++ /dev/null @@ -1,39 +0,0 @@ -x = $x; - } - public function getX() - { - return $this->x; - } - public function setY($y) - { - $this->y = $y; - } - public function getY() - { - return $this->y; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1OperationMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1OperationMetadata.php deleted file mode 100644 index 6a9972e7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1OperationMetadata.php +++ /dev/null @@ -1,48 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1OutputConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1OutputConfig.php deleted file mode 100644 index d831aeaf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1OutputConfig.php +++ /dev/null @@ -1,46 +0,0 @@ -batchSize = $batchSize; - } - public function getBatchSize() - { - return $this->batchSize; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p2beta1GcsDestination - */ - public function setGcsDestination(Google_Service_Vision_GoogleCloudVisionV1p2beta1GcsDestination $gcsDestination) - { - $this->gcsDestination = $gcsDestination; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1GcsDestination - */ - public function getGcsDestination() - { - return $this->gcsDestination; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1Page.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1Page.php deleted file mode 100644 index 7bdab280..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1Page.php +++ /dev/null @@ -1,81 +0,0 @@ -blocks = $blocks; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1Block - */ - public function getBlocks() - { - return $this->blocks; - } - public function setConfidence($confidence) - { - $this->confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - public function setHeight($height) - { - $this->height = $height; - } - public function getHeight() - { - return $this->height; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p2beta1TextAnnotationTextProperty - */ - public function setProperty(Google_Service_Vision_GoogleCloudVisionV1p2beta1TextAnnotationTextProperty $property) - { - $this->property = $property; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1TextAnnotationTextProperty - */ - public function getProperty() - { - return $this->property; - } - public function setWidth($width) - { - $this->width = $width; - } - public function getWidth() - { - return $this->width; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1Paragraph.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1Paragraph.php deleted file mode 100644 index be62be45..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1Paragraph.php +++ /dev/null @@ -1,79 +0,0 @@ -boundingBox = $boundingBox; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1BoundingPoly - */ - public function getBoundingBox() - { - return $this->boundingBox; - } - public function setConfidence($confidence) - { - $this->confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p2beta1TextAnnotationTextProperty - */ - public function setProperty(Google_Service_Vision_GoogleCloudVisionV1p2beta1TextAnnotationTextProperty $property) - { - $this->property = $property; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1TextAnnotationTextProperty - */ - public function getProperty() - { - return $this->property; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p2beta1Word - */ - public function setWords($words) - { - $this->words = $words; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1Word - */ - public function getWords() - { - return $this->words; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1Position.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1Position.php deleted file mode 100644 index 17851d78..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1Position.php +++ /dev/null @@ -1,48 +0,0 @@ -x = $x; - } - public function getX() - { - return $this->x; - } - public function setY($y) - { - $this->y = $y; - } - public function getY() - { - return $this->y; - } - public function setZ($z) - { - $this->z = $z; - } - public function getZ() - { - return $this->z; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1Product.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1Product.php deleted file mode 100644 index 264dbf87..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1Product.php +++ /dev/null @@ -1,74 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setProductCategory($productCategory) - { - $this->productCategory = $productCategory; - } - public function getProductCategory() - { - return $this->productCategory; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p2beta1ProductKeyValue - */ - public function setProductLabels($productLabels) - { - $this->productLabels = $productLabels; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1ProductKeyValue - */ - public function getProductLabels() - { - return $this->productLabels; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1ProductKeyValue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1ProductKeyValue.php deleted file mode 100644 index 4d5316d0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1ProductKeyValue.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1ProductSearchResults.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1ProductSearchResults.php deleted file mode 100644 index 63551b33..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1ProductSearchResults.php +++ /dev/null @@ -1,63 +0,0 @@ -indexTime = $indexTime; - } - public function getIndexTime() - { - return $this->indexTime; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p2beta1ProductSearchResultsGroupedResult - */ - public function setProductGroupedResults($productGroupedResults) - { - $this->productGroupedResults = $productGroupedResults; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1ProductSearchResultsGroupedResult - */ - public function getProductGroupedResults() - { - return $this->productGroupedResults; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p2beta1ProductSearchResultsResult - */ - public function setResults($results) - { - $this->results = $results; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1ProductSearchResultsResult - */ - public function getResults() - { - return $this->results; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1ProductSearchResultsGroupedResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1ProductSearchResultsGroupedResult.php deleted file mode 100644 index 1959e8b6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1ProductSearchResultsGroupedResult.php +++ /dev/null @@ -1,70 +0,0 @@ -boundingPoly = $boundingPoly; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1BoundingPoly - */ - public function getBoundingPoly() - { - return $this->boundingPoly; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p2beta1ProductSearchResultsObjectAnnotation - */ - public function setObjectAnnotations($objectAnnotations) - { - $this->objectAnnotations = $objectAnnotations; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1ProductSearchResultsObjectAnnotation - */ - public function getObjectAnnotations() - { - return $this->objectAnnotations; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p2beta1ProductSearchResultsResult - */ - public function setResults($results) - { - $this->results = $results; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1ProductSearchResultsResult - */ - public function getResults() - { - return $this->results; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1ProductSearchResultsObjectAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1ProductSearchResultsObjectAnnotation.php deleted file mode 100644 index 2343f7ed..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1ProductSearchResultsObjectAnnotation.php +++ /dev/null @@ -1,57 +0,0 @@ -languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } - public function setMid($mid) - { - $this->mid = $mid; - } - public function getMid() - { - return $this->mid; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setScore($score) - { - $this->score = $score; - } - public function getScore() - { - return $this->score; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1ProductSearchResultsResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1ProductSearchResultsResult.php deleted file mode 100644 index 7955d03a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1ProductSearchResultsResult.php +++ /dev/null @@ -1,55 +0,0 @@ -image = $image; - } - public function getImage() - { - return $this->image; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p2beta1Product - */ - public function setProduct(Google_Service_Vision_GoogleCloudVisionV1p2beta1Product $product) - { - $this->product = $product; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1Product - */ - public function getProduct() - { - return $this->product; - } - public function setScore($score) - { - $this->score = $score; - } - public function getScore() - { - return $this->score; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1Property.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1Property.php deleted file mode 100644 index 34288ee3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1Property.php +++ /dev/null @@ -1,48 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setUint64Value($uint64Value) - { - $this->uint64Value = $uint64Value; - } - public function getUint64Value() - { - return $this->uint64Value; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1SafeSearchAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1SafeSearchAnnotation.php deleted file mode 100644 index b46c392c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1SafeSearchAnnotation.php +++ /dev/null @@ -1,66 +0,0 @@ -adult = $adult; - } - public function getAdult() - { - return $this->adult; - } - public function setMedical($medical) - { - $this->medical = $medical; - } - public function getMedical() - { - return $this->medical; - } - public function setRacy($racy) - { - $this->racy = $racy; - } - public function getRacy() - { - return $this->racy; - } - public function setSpoof($spoof) - { - $this->spoof = $spoof; - } - public function getSpoof() - { - return $this->spoof; - } - public function setViolence($violence) - { - $this->violence = $violence; - } - public function getViolence() - { - return $this->violence; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1Symbol.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1Symbol.php deleted file mode 100644 index 41e18b6a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1Symbol.php +++ /dev/null @@ -1,71 +0,0 @@ -boundingBox = $boundingBox; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1BoundingPoly - */ - public function getBoundingBox() - { - return $this->boundingBox; - } - public function setConfidence($confidence) - { - $this->confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p2beta1TextAnnotationTextProperty - */ - public function setProperty(Google_Service_Vision_GoogleCloudVisionV1p2beta1TextAnnotationTextProperty $property) - { - $this->property = $property; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1TextAnnotationTextProperty - */ - public function getProperty() - { - return $this->property; - } - public function setText($text) - { - $this->text = $text; - } - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1TextAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1TextAnnotation.php deleted file mode 100644 index 16fe8378..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1TextAnnotation.php +++ /dev/null @@ -1,47 +0,0 @@ -pages = $pages; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1Page - */ - public function getPages() - { - return $this->pages; - } - public function setText($text) - { - $this->text = $text; - } - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1TextAnnotationDetectedBreak.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1TextAnnotationDetectedBreak.php deleted file mode 100644 index 6fcfd609..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1TextAnnotationDetectedBreak.php +++ /dev/null @@ -1,39 +0,0 @@ -isPrefix = $isPrefix; - } - public function getIsPrefix() - { - return $this->isPrefix; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1TextAnnotationDetectedLanguage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1TextAnnotationDetectedLanguage.php deleted file mode 100644 index d6d1cfd0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1TextAnnotationDetectedLanguage.php +++ /dev/null @@ -1,39 +0,0 @@ -confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - public function setLanguageCode($languageCode) - { - $this->languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1TextAnnotationTextProperty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1TextAnnotationTextProperty.php deleted file mode 100644 index eb112116..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1TextAnnotationTextProperty.php +++ /dev/null @@ -1,54 +0,0 @@ -detectedBreak = $detectedBreak; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1TextAnnotationDetectedBreak - */ - public function getDetectedBreak() - { - return $this->detectedBreak; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p2beta1TextAnnotationDetectedLanguage - */ - public function setDetectedLanguages($detectedLanguages) - { - $this->detectedLanguages = $detectedLanguages; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1TextAnnotationDetectedLanguage - */ - public function getDetectedLanguages() - { - return $this->detectedLanguages; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1Vertex.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1Vertex.php deleted file mode 100644 index 8e0e1844..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1Vertex.php +++ /dev/null @@ -1,39 +0,0 @@ -x = $x; - } - public function getX() - { - return $this->x; - } - public function setY($y) - { - $this->y = $y; - } - public function getY() - { - return $this->y; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1WebDetection.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1WebDetection.php deleted file mode 100644 index 000dbf01..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1WebDetection.php +++ /dev/null @@ -1,118 +0,0 @@ -bestGuessLabels = $bestGuessLabels; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1WebDetectionWebLabel - */ - public function getBestGuessLabels() - { - return $this->bestGuessLabels; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p2beta1WebDetectionWebImage - */ - public function setFullMatchingImages($fullMatchingImages) - { - $this->fullMatchingImages = $fullMatchingImages; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1WebDetectionWebImage - */ - public function getFullMatchingImages() - { - return $this->fullMatchingImages; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p2beta1WebDetectionWebPage - */ - public function setPagesWithMatchingImages($pagesWithMatchingImages) - { - $this->pagesWithMatchingImages = $pagesWithMatchingImages; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1WebDetectionWebPage - */ - public function getPagesWithMatchingImages() - { - return $this->pagesWithMatchingImages; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p2beta1WebDetectionWebImage - */ - public function setPartialMatchingImages($partialMatchingImages) - { - $this->partialMatchingImages = $partialMatchingImages; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1WebDetectionWebImage - */ - public function getPartialMatchingImages() - { - return $this->partialMatchingImages; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p2beta1WebDetectionWebImage - */ - public function setVisuallySimilarImages($visuallySimilarImages) - { - $this->visuallySimilarImages = $visuallySimilarImages; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1WebDetectionWebImage - */ - public function getVisuallySimilarImages() - { - return $this->visuallySimilarImages; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p2beta1WebDetectionWebEntity - */ - public function setWebEntities($webEntities) - { - $this->webEntities = $webEntities; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1WebDetectionWebEntity - */ - public function getWebEntities() - { - return $this->webEntities; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1WebDetectionWebEntity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1WebDetectionWebEntity.php deleted file mode 100644 index f1290dc4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1WebDetectionWebEntity.php +++ /dev/null @@ -1,48 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setEntityId($entityId) - { - $this->entityId = $entityId; - } - public function getEntityId() - { - return $this->entityId; - } - public function setScore($score) - { - $this->score = $score; - } - public function getScore() - { - return $this->score; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1WebDetectionWebImage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1WebDetectionWebImage.php deleted file mode 100644 index 22a4eca6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1WebDetectionWebImage.php +++ /dev/null @@ -1,39 +0,0 @@ -score = $score; - } - public function getScore() - { - return $this->score; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1WebDetectionWebLabel.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1WebDetectionWebLabel.php deleted file mode 100644 index 4d56eaae..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1WebDetectionWebLabel.php +++ /dev/null @@ -1,39 +0,0 @@ -label = $label; - } - public function getLabel() - { - return $this->label; - } - public function setLanguageCode($languageCode) - { - $this->languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1WebDetectionWebPage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1WebDetectionWebPage.php deleted file mode 100644 index ec592ca4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1WebDetectionWebPage.php +++ /dev/null @@ -1,81 +0,0 @@ -fullMatchingImages = $fullMatchingImages; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1WebDetectionWebImage - */ - public function getFullMatchingImages() - { - return $this->fullMatchingImages; - } - public function setPageTitle($pageTitle) - { - $this->pageTitle = $pageTitle; - } - public function getPageTitle() - { - return $this->pageTitle; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p2beta1WebDetectionWebImage - */ - public function setPartialMatchingImages($partialMatchingImages) - { - $this->partialMatchingImages = $partialMatchingImages; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1WebDetectionWebImage - */ - public function getPartialMatchingImages() - { - return $this->partialMatchingImages; - } - public function setScore($score) - { - $this->score = $score; - } - public function getScore() - { - return $this->score; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1Word.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1Word.php deleted file mode 100644 index dfc1589a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p2beta1Word.php +++ /dev/null @@ -1,79 +0,0 @@ -boundingBox = $boundingBox; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1BoundingPoly - */ - public function getBoundingBox() - { - return $this->boundingBox; - } - public function setConfidence($confidence) - { - $this->confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p2beta1TextAnnotationTextProperty - */ - public function setProperty(Google_Service_Vision_GoogleCloudVisionV1p2beta1TextAnnotationTextProperty $property) - { - $this->property = $property; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1TextAnnotationTextProperty - */ - public function getProperty() - { - return $this->property; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p2beta1Symbol - */ - public function setSymbols($symbols) - { - $this->symbols = $symbols; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p2beta1Symbol - */ - public function getSymbols() - { - return $this->symbols; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1AnnotateFileResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1AnnotateFileResponse.php deleted file mode 100644 index 92a3152c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1AnnotateFileResponse.php +++ /dev/null @@ -1,79 +0,0 @@ -error = $error; - } - /** - * @return Google_Service_Vision_Status - */ - public function getError() - { - return $this->error; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p3beta1InputConfig - */ - public function setInputConfig(Google_Service_Vision_GoogleCloudVisionV1p3beta1InputConfig $inputConfig) - { - $this->inputConfig = $inputConfig; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1InputConfig - */ - public function getInputConfig() - { - return $this->inputConfig; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p3beta1AnnotateImageResponse - */ - public function setResponses($responses) - { - $this->responses = $responses; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1AnnotateImageResponse - */ - public function getResponses() - { - return $this->responses; - } - public function setTotalPages($totalPages) - { - $this->totalPages = $totalPages; - } - public function getTotalPages() - { - return $this->totalPages; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1AnnotateImageResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1AnnotateImageResponse.php deleted file mode 100644 index a898af35..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1AnnotateImageResponse.php +++ /dev/null @@ -1,246 +0,0 @@ -context = $context; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1ImageAnnotationContext - */ - public function getContext() - { - return $this->context; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p3beta1CropHintsAnnotation - */ - public function setCropHintsAnnotation(Google_Service_Vision_GoogleCloudVisionV1p3beta1CropHintsAnnotation $cropHintsAnnotation) - { - $this->cropHintsAnnotation = $cropHintsAnnotation; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1CropHintsAnnotation - */ - public function getCropHintsAnnotation() - { - return $this->cropHintsAnnotation; - } - /** - * @param Google_Service_Vision_Status - */ - public function setError(Google_Service_Vision_Status $error) - { - $this->error = $error; - } - /** - * @return Google_Service_Vision_Status - */ - public function getError() - { - return $this->error; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p3beta1FaceAnnotation - */ - public function setFaceAnnotations($faceAnnotations) - { - $this->faceAnnotations = $faceAnnotations; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1FaceAnnotation - */ - public function getFaceAnnotations() - { - return $this->faceAnnotations; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p3beta1TextAnnotation - */ - public function setFullTextAnnotation(Google_Service_Vision_GoogleCloudVisionV1p3beta1TextAnnotation $fullTextAnnotation) - { - $this->fullTextAnnotation = $fullTextAnnotation; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1TextAnnotation - */ - public function getFullTextAnnotation() - { - return $this->fullTextAnnotation; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p3beta1ImageProperties - */ - public function setImagePropertiesAnnotation(Google_Service_Vision_GoogleCloudVisionV1p3beta1ImageProperties $imagePropertiesAnnotation) - { - $this->imagePropertiesAnnotation = $imagePropertiesAnnotation; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1ImageProperties - */ - public function getImagePropertiesAnnotation() - { - return $this->imagePropertiesAnnotation; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p3beta1EntityAnnotation - */ - public function setLabelAnnotations($labelAnnotations) - { - $this->labelAnnotations = $labelAnnotations; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1EntityAnnotation - */ - public function getLabelAnnotations() - { - return $this->labelAnnotations; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p3beta1EntityAnnotation - */ - public function setLandmarkAnnotations($landmarkAnnotations) - { - $this->landmarkAnnotations = $landmarkAnnotations; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1EntityAnnotation - */ - public function getLandmarkAnnotations() - { - return $this->landmarkAnnotations; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p3beta1LocalizedObjectAnnotation - */ - public function setLocalizedObjectAnnotations($localizedObjectAnnotations) - { - $this->localizedObjectAnnotations = $localizedObjectAnnotations; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1LocalizedObjectAnnotation - */ - public function getLocalizedObjectAnnotations() - { - return $this->localizedObjectAnnotations; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p3beta1EntityAnnotation - */ - public function setLogoAnnotations($logoAnnotations) - { - $this->logoAnnotations = $logoAnnotations; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1EntityAnnotation - */ - public function getLogoAnnotations() - { - return $this->logoAnnotations; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p3beta1ProductSearchResults - */ - public function setProductSearchResults(Google_Service_Vision_GoogleCloudVisionV1p3beta1ProductSearchResults $productSearchResults) - { - $this->productSearchResults = $productSearchResults; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1ProductSearchResults - */ - public function getProductSearchResults() - { - return $this->productSearchResults; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p3beta1SafeSearchAnnotation - */ - public function setSafeSearchAnnotation(Google_Service_Vision_GoogleCloudVisionV1p3beta1SafeSearchAnnotation $safeSearchAnnotation) - { - $this->safeSearchAnnotation = $safeSearchAnnotation; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1SafeSearchAnnotation - */ - public function getSafeSearchAnnotation() - { - return $this->safeSearchAnnotation; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p3beta1EntityAnnotation - */ - public function setTextAnnotations($textAnnotations) - { - $this->textAnnotations = $textAnnotations; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1EntityAnnotation - */ - public function getTextAnnotations() - { - return $this->textAnnotations; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p3beta1WebDetection - */ - public function setWebDetection(Google_Service_Vision_GoogleCloudVisionV1p3beta1WebDetection $webDetection) - { - $this->webDetection = $webDetection; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1WebDetection - */ - public function getWebDetection() - { - return $this->webDetection; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1AsyncAnnotateFileResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1AsyncAnnotateFileResponse.php deleted file mode 100644 index 92063fe4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1AsyncAnnotateFileResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -outputConfig = $outputConfig; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1OutputConfig - */ - public function getOutputConfig() - { - return $this->outputConfig; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1AsyncBatchAnnotateFilesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1AsyncBatchAnnotateFilesResponse.php deleted file mode 100644 index fa8f92f0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1AsyncBatchAnnotateFilesResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -responses = $responses; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1AsyncAnnotateFileResponse - */ - public function getResponses() - { - return $this->responses; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1BatchOperationMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1BatchOperationMetadata.php deleted file mode 100644 index ac2d9e33..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1BatchOperationMetadata.php +++ /dev/null @@ -1,48 +0,0 @@ -endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setSubmitTime($submitTime) - { - $this->submitTime = $submitTime; - } - public function getSubmitTime() - { - return $this->submitTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1Block.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1Block.php deleted file mode 100644 index 2041dfeb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1Block.php +++ /dev/null @@ -1,88 +0,0 @@ -blockType = $blockType; - } - public function getBlockType() - { - return $this->blockType; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p3beta1BoundingPoly - */ - public function setBoundingBox(Google_Service_Vision_GoogleCloudVisionV1p3beta1BoundingPoly $boundingBox) - { - $this->boundingBox = $boundingBox; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1BoundingPoly - */ - public function getBoundingBox() - { - return $this->boundingBox; - } - public function setConfidence($confidence) - { - $this->confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p3beta1Paragraph - */ - public function setParagraphs($paragraphs) - { - $this->paragraphs = $paragraphs; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1Paragraph - */ - public function getParagraphs() - { - return $this->paragraphs; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p3beta1TextAnnotationTextProperty - */ - public function setProperty(Google_Service_Vision_GoogleCloudVisionV1p3beta1TextAnnotationTextProperty $property) - { - $this->property = $property; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1TextAnnotationTextProperty - */ - public function getProperty() - { - return $this->property; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1BoundingPoly.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1BoundingPoly.php deleted file mode 100644 index 82727255..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1BoundingPoly.php +++ /dev/null @@ -1,54 +0,0 @@ -normalizedVertices = $normalizedVertices; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1NormalizedVertex - */ - public function getNormalizedVertices() - { - return $this->normalizedVertices; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p3beta1Vertex - */ - public function setVertices($vertices) - { - $this->vertices = $vertices; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1Vertex - */ - public function getVertices() - { - return $this->vertices; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1ColorInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1ColorInfo.php deleted file mode 100644 index ecfea14b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1ColorInfo.php +++ /dev/null @@ -1,55 +0,0 @@ -color = $color; - } - /** - * @return Google_Service_Vision_Color - */ - public function getColor() - { - return $this->color; - } - public function setPixelFraction($pixelFraction) - { - $this->pixelFraction = $pixelFraction; - } - public function getPixelFraction() - { - return $this->pixelFraction; - } - public function setScore($score) - { - $this->score = $score; - } - public function getScore() - { - return $this->score; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1CropHint.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1CropHint.php deleted file mode 100644 index de22a55b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1CropHint.php +++ /dev/null @@ -1,55 +0,0 @@ -boundingPoly = $boundingPoly; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1BoundingPoly - */ - public function getBoundingPoly() - { - return $this->boundingPoly; - } - public function setConfidence($confidence) - { - $this->confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - public function setImportanceFraction($importanceFraction) - { - $this->importanceFraction = $importanceFraction; - } - public function getImportanceFraction() - { - return $this->importanceFraction; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1CropHintsAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1CropHintsAnnotation.php deleted file mode 100644 index b3b45737..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1CropHintsAnnotation.php +++ /dev/null @@ -1,38 +0,0 @@ -cropHints = $cropHints; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1CropHint - */ - public function getCropHints() - { - return $this->cropHints; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1DominantColorsAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1DominantColorsAnnotation.php deleted file mode 100644 index a47146db..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1DominantColorsAnnotation.php +++ /dev/null @@ -1,38 +0,0 @@ -colors = $colors; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1ColorInfo - */ - public function getColors() - { - return $this->colors; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1EntityAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1EntityAnnotation.php deleted file mode 100644 index 59e73c6d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1EntityAnnotation.php +++ /dev/null @@ -1,124 +0,0 @@ -boundingPoly = $boundingPoly; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1BoundingPoly - */ - public function getBoundingPoly() - { - return $this->boundingPoly; - } - public function setConfidence($confidence) - { - $this->confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setLocale($locale) - { - $this->locale = $locale; - } - public function getLocale() - { - return $this->locale; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p3beta1LocationInfo - */ - public function setLocations($locations) - { - $this->locations = $locations; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1LocationInfo - */ - public function getLocations() - { - return $this->locations; - } - public function setMid($mid) - { - $this->mid = $mid; - } - public function getMid() - { - return $this->mid; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p3beta1Property - */ - public function setProperties($properties) - { - $this->properties = $properties; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1Property - */ - public function getProperties() - { - return $this->properties; - } - public function setScore($score) - { - $this->score = $score; - } - public function getScore() - { - return $this->score; - } - public function setTopicality($topicality) - { - $this->topicality = $topicality; - } - public function getTopicality() - { - return $this->topicality; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1FaceAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1FaceAnnotation.php deleted file mode 100644 index c489c670..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1FaceAnnotation.php +++ /dev/null @@ -1,178 +0,0 @@ -angerLikelihood = $angerLikelihood; - } - public function getAngerLikelihood() - { - return $this->angerLikelihood; - } - public function setBlurredLikelihood($blurredLikelihood) - { - $this->blurredLikelihood = $blurredLikelihood; - } - public function getBlurredLikelihood() - { - return $this->blurredLikelihood; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p3beta1BoundingPoly - */ - public function setBoundingPoly(Google_Service_Vision_GoogleCloudVisionV1p3beta1BoundingPoly $boundingPoly) - { - $this->boundingPoly = $boundingPoly; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1BoundingPoly - */ - public function getBoundingPoly() - { - return $this->boundingPoly; - } - public function setDetectionConfidence($detectionConfidence) - { - $this->detectionConfidence = $detectionConfidence; - } - public function getDetectionConfidence() - { - return $this->detectionConfidence; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p3beta1BoundingPoly - */ - public function setFdBoundingPoly(Google_Service_Vision_GoogleCloudVisionV1p3beta1BoundingPoly $fdBoundingPoly) - { - $this->fdBoundingPoly = $fdBoundingPoly; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1BoundingPoly - */ - public function getFdBoundingPoly() - { - return $this->fdBoundingPoly; - } - public function setHeadwearLikelihood($headwearLikelihood) - { - $this->headwearLikelihood = $headwearLikelihood; - } - public function getHeadwearLikelihood() - { - return $this->headwearLikelihood; - } - public function setJoyLikelihood($joyLikelihood) - { - $this->joyLikelihood = $joyLikelihood; - } - public function getJoyLikelihood() - { - return $this->joyLikelihood; - } - public function setLandmarkingConfidence($landmarkingConfidence) - { - $this->landmarkingConfidence = $landmarkingConfidence; - } - public function getLandmarkingConfidence() - { - return $this->landmarkingConfidence; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p3beta1FaceAnnotationLandmark - */ - public function setLandmarks($landmarks) - { - $this->landmarks = $landmarks; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1FaceAnnotationLandmark - */ - public function getLandmarks() - { - return $this->landmarks; - } - public function setPanAngle($panAngle) - { - $this->panAngle = $panAngle; - } - public function getPanAngle() - { - return $this->panAngle; - } - public function setRollAngle($rollAngle) - { - $this->rollAngle = $rollAngle; - } - public function getRollAngle() - { - return $this->rollAngle; - } - public function setSorrowLikelihood($sorrowLikelihood) - { - $this->sorrowLikelihood = $sorrowLikelihood; - } - public function getSorrowLikelihood() - { - return $this->sorrowLikelihood; - } - public function setSurpriseLikelihood($surpriseLikelihood) - { - $this->surpriseLikelihood = $surpriseLikelihood; - } - public function getSurpriseLikelihood() - { - return $this->surpriseLikelihood; - } - public function setTiltAngle($tiltAngle) - { - $this->tiltAngle = $tiltAngle; - } - public function getTiltAngle() - { - return $this->tiltAngle; - } - public function setUnderExposedLikelihood($underExposedLikelihood) - { - $this->underExposedLikelihood = $underExposedLikelihood; - } - public function getUnderExposedLikelihood() - { - return $this->underExposedLikelihood; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1FaceAnnotationLandmark.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1FaceAnnotationLandmark.php deleted file mode 100644 index 95e55600..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1FaceAnnotationLandmark.php +++ /dev/null @@ -1,46 +0,0 @@ -position = $position; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1Position - */ - public function getPosition() - { - return $this->position; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1GcsDestination.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1GcsDestination.php deleted file mode 100644 index 961d2e77..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1GcsDestination.php +++ /dev/null @@ -1,30 +0,0 @@ -uri = $uri; - } - public function getUri() - { - return $this->uri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1GcsSource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1GcsSource.php deleted file mode 100644 index 91770c40..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1GcsSource.php +++ /dev/null @@ -1,30 +0,0 @@ -uri = $uri; - } - public function getUri() - { - return $this->uri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1ImageAnnotationContext.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1ImageAnnotationContext.php deleted file mode 100644 index 58efcd91..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1ImageAnnotationContext.php +++ /dev/null @@ -1,39 +0,0 @@ -pageNumber = $pageNumber; - } - public function getPageNumber() - { - return $this->pageNumber; - } - public function setUri($uri) - { - $this->uri = $uri; - } - public function getUri() - { - return $this->uri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1ImageProperties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1ImageProperties.php deleted file mode 100644 index d8906477..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1ImageProperties.php +++ /dev/null @@ -1,37 +0,0 @@ -dominantColors = $dominantColors; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1DominantColorsAnnotation - */ - public function getDominantColors() - { - return $this->dominantColors; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1ImportProductSetsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1ImportProductSetsResponse.php deleted file mode 100644 index 0a33891e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1ImportProductSetsResponse.php +++ /dev/null @@ -1,54 +0,0 @@ -referenceImages = $referenceImages; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1ReferenceImage - */ - public function getReferenceImages() - { - return $this->referenceImages; - } - /** - * @param Google_Service_Vision_Status - */ - public function setStatuses($statuses) - { - $this->statuses = $statuses; - } - /** - * @return Google_Service_Vision_Status - */ - public function getStatuses() - { - return $this->statuses; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1InputConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1InputConfig.php deleted file mode 100644 index c6cca63d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1InputConfig.php +++ /dev/null @@ -1,55 +0,0 @@ -content = $content; - } - public function getContent() - { - return $this->content; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p3beta1GcsSource - */ - public function setGcsSource(Google_Service_Vision_GoogleCloudVisionV1p3beta1GcsSource $gcsSource) - { - $this->gcsSource = $gcsSource; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1GcsSource - */ - public function getGcsSource() - { - return $this->gcsSource; - } - public function setMimeType($mimeType) - { - $this->mimeType = $mimeType; - } - public function getMimeType() - { - return $this->mimeType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1LocalizedObjectAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1LocalizedObjectAnnotation.php deleted file mode 100644 index b268383e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1LocalizedObjectAnnotation.php +++ /dev/null @@ -1,73 +0,0 @@ -boundingPoly = $boundingPoly; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1BoundingPoly - */ - public function getBoundingPoly() - { - return $this->boundingPoly; - } - public function setLanguageCode($languageCode) - { - $this->languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } - public function setMid($mid) - { - $this->mid = $mid; - } - public function getMid() - { - return $this->mid; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setScore($score) - { - $this->score = $score; - } - public function getScore() - { - return $this->score; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1LocationInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1LocationInfo.php deleted file mode 100644 index 24031bd1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1LocationInfo.php +++ /dev/null @@ -1,37 +0,0 @@ -latLng = $latLng; - } - /** - * @return Google_Service_Vision_LatLng - */ - public function getLatLng() - { - return $this->latLng; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1NormalizedVertex.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1NormalizedVertex.php deleted file mode 100644 index d87c4451..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1NormalizedVertex.php +++ /dev/null @@ -1,39 +0,0 @@ -x = $x; - } - public function getX() - { - return $this->x; - } - public function setY($y) - { - $this->y = $y; - } - public function getY() - { - return $this->y; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1OperationMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1OperationMetadata.php deleted file mode 100644 index c8b78500..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1OperationMetadata.php +++ /dev/null @@ -1,48 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1OutputConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1OutputConfig.php deleted file mode 100644 index ec3c6bb4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1OutputConfig.php +++ /dev/null @@ -1,46 +0,0 @@ -batchSize = $batchSize; - } - public function getBatchSize() - { - return $this->batchSize; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p3beta1GcsDestination - */ - public function setGcsDestination(Google_Service_Vision_GoogleCloudVisionV1p3beta1GcsDestination $gcsDestination) - { - $this->gcsDestination = $gcsDestination; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1GcsDestination - */ - public function getGcsDestination() - { - return $this->gcsDestination; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1Page.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1Page.php deleted file mode 100644 index 9cbdb066..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1Page.php +++ /dev/null @@ -1,81 +0,0 @@ -blocks = $blocks; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1Block - */ - public function getBlocks() - { - return $this->blocks; - } - public function setConfidence($confidence) - { - $this->confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - public function setHeight($height) - { - $this->height = $height; - } - public function getHeight() - { - return $this->height; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p3beta1TextAnnotationTextProperty - */ - public function setProperty(Google_Service_Vision_GoogleCloudVisionV1p3beta1TextAnnotationTextProperty $property) - { - $this->property = $property; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1TextAnnotationTextProperty - */ - public function getProperty() - { - return $this->property; - } - public function setWidth($width) - { - $this->width = $width; - } - public function getWidth() - { - return $this->width; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1Paragraph.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1Paragraph.php deleted file mode 100644 index 62ee77e4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1Paragraph.php +++ /dev/null @@ -1,79 +0,0 @@ -boundingBox = $boundingBox; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1BoundingPoly - */ - public function getBoundingBox() - { - return $this->boundingBox; - } - public function setConfidence($confidence) - { - $this->confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p3beta1TextAnnotationTextProperty - */ - public function setProperty(Google_Service_Vision_GoogleCloudVisionV1p3beta1TextAnnotationTextProperty $property) - { - $this->property = $property; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1TextAnnotationTextProperty - */ - public function getProperty() - { - return $this->property; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p3beta1Word - */ - public function setWords($words) - { - $this->words = $words; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1Word - */ - public function getWords() - { - return $this->words; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1Position.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1Position.php deleted file mode 100644 index 8289c546..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1Position.php +++ /dev/null @@ -1,48 +0,0 @@ -x = $x; - } - public function getX() - { - return $this->x; - } - public function setY($y) - { - $this->y = $y; - } - public function getY() - { - return $this->y; - } - public function setZ($z) - { - $this->z = $z; - } - public function getZ() - { - return $this->z; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1Product.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1Product.php deleted file mode 100644 index 8cf64141..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1Product.php +++ /dev/null @@ -1,74 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setProductCategory($productCategory) - { - $this->productCategory = $productCategory; - } - public function getProductCategory() - { - return $this->productCategory; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p3beta1ProductKeyValue - */ - public function setProductLabels($productLabels) - { - $this->productLabels = $productLabels; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1ProductKeyValue - */ - public function getProductLabels() - { - return $this->productLabels; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1ProductKeyValue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1ProductKeyValue.php deleted file mode 100644 index 1aafb4a5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1ProductKeyValue.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1ProductSearchResults.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1ProductSearchResults.php deleted file mode 100644 index 4d5203ca..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1ProductSearchResults.php +++ /dev/null @@ -1,63 +0,0 @@ -indexTime = $indexTime; - } - public function getIndexTime() - { - return $this->indexTime; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p3beta1ProductSearchResultsGroupedResult - */ - public function setProductGroupedResults($productGroupedResults) - { - $this->productGroupedResults = $productGroupedResults; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1ProductSearchResultsGroupedResult - */ - public function getProductGroupedResults() - { - return $this->productGroupedResults; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p3beta1ProductSearchResultsResult - */ - public function setResults($results) - { - $this->results = $results; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1ProductSearchResultsResult - */ - public function getResults() - { - return $this->results; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1ProductSearchResultsGroupedResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1ProductSearchResultsGroupedResult.php deleted file mode 100644 index b3e02bf0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1ProductSearchResultsGroupedResult.php +++ /dev/null @@ -1,70 +0,0 @@ -boundingPoly = $boundingPoly; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1BoundingPoly - */ - public function getBoundingPoly() - { - return $this->boundingPoly; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p3beta1ProductSearchResultsObjectAnnotation - */ - public function setObjectAnnotations($objectAnnotations) - { - $this->objectAnnotations = $objectAnnotations; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1ProductSearchResultsObjectAnnotation - */ - public function getObjectAnnotations() - { - return $this->objectAnnotations; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p3beta1ProductSearchResultsResult - */ - public function setResults($results) - { - $this->results = $results; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1ProductSearchResultsResult - */ - public function getResults() - { - return $this->results; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1ProductSearchResultsObjectAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1ProductSearchResultsObjectAnnotation.php deleted file mode 100644 index c248df5e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1ProductSearchResultsObjectAnnotation.php +++ /dev/null @@ -1,57 +0,0 @@ -languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } - public function setMid($mid) - { - $this->mid = $mid; - } - public function getMid() - { - return $this->mid; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setScore($score) - { - $this->score = $score; - } - public function getScore() - { - return $this->score; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1ProductSearchResultsResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1ProductSearchResultsResult.php deleted file mode 100644 index ef80bfa9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1ProductSearchResultsResult.php +++ /dev/null @@ -1,55 +0,0 @@ -image = $image; - } - public function getImage() - { - return $this->image; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p3beta1Product - */ - public function setProduct(Google_Service_Vision_GoogleCloudVisionV1p3beta1Product $product) - { - $this->product = $product; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1Product - */ - public function getProduct() - { - return $this->product; - } - public function setScore($score) - { - $this->score = $score; - } - public function getScore() - { - return $this->score; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1Property.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1Property.php deleted file mode 100644 index 9a9ac874..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1Property.php +++ /dev/null @@ -1,48 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setUint64Value($uint64Value) - { - $this->uint64Value = $uint64Value; - } - public function getUint64Value() - { - return $this->uint64Value; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1ReferenceImage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1ReferenceImage.php deleted file mode 100644 index 75b65e4a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1ReferenceImage.php +++ /dev/null @@ -1,56 +0,0 @@ -boundingPolys = $boundingPolys; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1BoundingPoly - */ - public function getBoundingPolys() - { - return $this->boundingPolys; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setUri($uri) - { - $this->uri = $uri; - } - public function getUri() - { - return $this->uri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1SafeSearchAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1SafeSearchAnnotation.php deleted file mode 100644 index 73441904..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1SafeSearchAnnotation.php +++ /dev/null @@ -1,66 +0,0 @@ -adult = $adult; - } - public function getAdult() - { - return $this->adult; - } - public function setMedical($medical) - { - $this->medical = $medical; - } - public function getMedical() - { - return $this->medical; - } - public function setRacy($racy) - { - $this->racy = $racy; - } - public function getRacy() - { - return $this->racy; - } - public function setSpoof($spoof) - { - $this->spoof = $spoof; - } - public function getSpoof() - { - return $this->spoof; - } - public function setViolence($violence) - { - $this->violence = $violence; - } - public function getViolence() - { - return $this->violence; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1Symbol.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1Symbol.php deleted file mode 100644 index 0a13db73..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1Symbol.php +++ /dev/null @@ -1,71 +0,0 @@ -boundingBox = $boundingBox; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1BoundingPoly - */ - public function getBoundingBox() - { - return $this->boundingBox; - } - public function setConfidence($confidence) - { - $this->confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p3beta1TextAnnotationTextProperty - */ - public function setProperty(Google_Service_Vision_GoogleCloudVisionV1p3beta1TextAnnotationTextProperty $property) - { - $this->property = $property; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1TextAnnotationTextProperty - */ - public function getProperty() - { - return $this->property; - } - public function setText($text) - { - $this->text = $text; - } - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1TextAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1TextAnnotation.php deleted file mode 100644 index 17e23dd3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1TextAnnotation.php +++ /dev/null @@ -1,47 +0,0 @@ -pages = $pages; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1Page - */ - public function getPages() - { - return $this->pages; - } - public function setText($text) - { - $this->text = $text; - } - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1TextAnnotationDetectedBreak.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1TextAnnotationDetectedBreak.php deleted file mode 100644 index 8dc8108b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1TextAnnotationDetectedBreak.php +++ /dev/null @@ -1,39 +0,0 @@ -isPrefix = $isPrefix; - } - public function getIsPrefix() - { - return $this->isPrefix; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1TextAnnotationDetectedLanguage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1TextAnnotationDetectedLanguage.php deleted file mode 100644 index 3fb40258..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1TextAnnotationDetectedLanguage.php +++ /dev/null @@ -1,39 +0,0 @@ -confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - public function setLanguageCode($languageCode) - { - $this->languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1TextAnnotationTextProperty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1TextAnnotationTextProperty.php deleted file mode 100644 index 4edc692c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1TextAnnotationTextProperty.php +++ /dev/null @@ -1,54 +0,0 @@ -detectedBreak = $detectedBreak; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1TextAnnotationDetectedBreak - */ - public function getDetectedBreak() - { - return $this->detectedBreak; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p3beta1TextAnnotationDetectedLanguage - */ - public function setDetectedLanguages($detectedLanguages) - { - $this->detectedLanguages = $detectedLanguages; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1TextAnnotationDetectedLanguage - */ - public function getDetectedLanguages() - { - return $this->detectedLanguages; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1Vertex.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1Vertex.php deleted file mode 100644 index 1343e8c7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1Vertex.php +++ /dev/null @@ -1,39 +0,0 @@ -x = $x; - } - public function getX() - { - return $this->x; - } - public function setY($y) - { - $this->y = $y; - } - public function getY() - { - return $this->y; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1WebDetection.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1WebDetection.php deleted file mode 100644 index 90f646c3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1WebDetection.php +++ /dev/null @@ -1,118 +0,0 @@ -bestGuessLabels = $bestGuessLabels; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1WebDetectionWebLabel - */ - public function getBestGuessLabels() - { - return $this->bestGuessLabels; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p3beta1WebDetectionWebImage - */ - public function setFullMatchingImages($fullMatchingImages) - { - $this->fullMatchingImages = $fullMatchingImages; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1WebDetectionWebImage - */ - public function getFullMatchingImages() - { - return $this->fullMatchingImages; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p3beta1WebDetectionWebPage - */ - public function setPagesWithMatchingImages($pagesWithMatchingImages) - { - $this->pagesWithMatchingImages = $pagesWithMatchingImages; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1WebDetectionWebPage - */ - public function getPagesWithMatchingImages() - { - return $this->pagesWithMatchingImages; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p3beta1WebDetectionWebImage - */ - public function setPartialMatchingImages($partialMatchingImages) - { - $this->partialMatchingImages = $partialMatchingImages; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1WebDetectionWebImage - */ - public function getPartialMatchingImages() - { - return $this->partialMatchingImages; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p3beta1WebDetectionWebImage - */ - public function setVisuallySimilarImages($visuallySimilarImages) - { - $this->visuallySimilarImages = $visuallySimilarImages; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1WebDetectionWebImage - */ - public function getVisuallySimilarImages() - { - return $this->visuallySimilarImages; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p3beta1WebDetectionWebEntity - */ - public function setWebEntities($webEntities) - { - $this->webEntities = $webEntities; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1WebDetectionWebEntity - */ - public function getWebEntities() - { - return $this->webEntities; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1WebDetectionWebEntity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1WebDetectionWebEntity.php deleted file mode 100644 index 231df1b1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1WebDetectionWebEntity.php +++ /dev/null @@ -1,48 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setEntityId($entityId) - { - $this->entityId = $entityId; - } - public function getEntityId() - { - return $this->entityId; - } - public function setScore($score) - { - $this->score = $score; - } - public function getScore() - { - return $this->score; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1WebDetectionWebImage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1WebDetectionWebImage.php deleted file mode 100644 index 9ed59787..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1WebDetectionWebImage.php +++ /dev/null @@ -1,39 +0,0 @@ -score = $score; - } - public function getScore() - { - return $this->score; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1WebDetectionWebLabel.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1WebDetectionWebLabel.php deleted file mode 100644 index e9150552..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1WebDetectionWebLabel.php +++ /dev/null @@ -1,39 +0,0 @@ -label = $label; - } - public function getLabel() - { - return $this->label; - } - public function setLanguageCode($languageCode) - { - $this->languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1WebDetectionWebPage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1WebDetectionWebPage.php deleted file mode 100644 index 38548eda..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1WebDetectionWebPage.php +++ /dev/null @@ -1,81 +0,0 @@ -fullMatchingImages = $fullMatchingImages; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1WebDetectionWebImage - */ - public function getFullMatchingImages() - { - return $this->fullMatchingImages; - } - public function setPageTitle($pageTitle) - { - $this->pageTitle = $pageTitle; - } - public function getPageTitle() - { - return $this->pageTitle; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p3beta1WebDetectionWebImage - */ - public function setPartialMatchingImages($partialMatchingImages) - { - $this->partialMatchingImages = $partialMatchingImages; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1WebDetectionWebImage - */ - public function getPartialMatchingImages() - { - return $this->partialMatchingImages; - } - public function setScore($score) - { - $this->score = $score; - } - public function getScore() - { - return $this->score; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1Word.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1Word.php deleted file mode 100644 index 523379c8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p3beta1Word.php +++ /dev/null @@ -1,79 +0,0 @@ -boundingBox = $boundingBox; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1BoundingPoly - */ - public function getBoundingBox() - { - return $this->boundingBox; - } - public function setConfidence($confidence) - { - $this->confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p3beta1TextAnnotationTextProperty - */ - public function setProperty(Google_Service_Vision_GoogleCloudVisionV1p3beta1TextAnnotationTextProperty $property) - { - $this->property = $property; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1TextAnnotationTextProperty - */ - public function getProperty() - { - return $this->property; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p3beta1Symbol - */ - public function setSymbols($symbols) - { - $this->symbols = $symbols; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p3beta1Symbol - */ - public function getSymbols() - { - return $this->symbols; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1AnnotateFileResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1AnnotateFileResponse.php deleted file mode 100644 index 893998d7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1AnnotateFileResponse.php +++ /dev/null @@ -1,79 +0,0 @@ -error = $error; - } - /** - * @return Google_Service_Vision_Status - */ - public function getError() - { - return $this->error; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p4beta1InputConfig - */ - public function setInputConfig(Google_Service_Vision_GoogleCloudVisionV1p4beta1InputConfig $inputConfig) - { - $this->inputConfig = $inputConfig; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1InputConfig - */ - public function getInputConfig() - { - return $this->inputConfig; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p4beta1AnnotateImageResponse - */ - public function setResponses($responses) - { - $this->responses = $responses; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1AnnotateImageResponse - */ - public function getResponses() - { - return $this->responses; - } - public function setTotalPages($totalPages) - { - $this->totalPages = $totalPages; - } - public function getTotalPages() - { - return $this->totalPages; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1AnnotateImageResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1AnnotateImageResponse.php deleted file mode 100644 index b528d4bc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1AnnotateImageResponse.php +++ /dev/null @@ -1,246 +0,0 @@ -context = $context; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1ImageAnnotationContext - */ - public function getContext() - { - return $this->context; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p4beta1CropHintsAnnotation - */ - public function setCropHintsAnnotation(Google_Service_Vision_GoogleCloudVisionV1p4beta1CropHintsAnnotation $cropHintsAnnotation) - { - $this->cropHintsAnnotation = $cropHintsAnnotation; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1CropHintsAnnotation - */ - public function getCropHintsAnnotation() - { - return $this->cropHintsAnnotation; - } - /** - * @param Google_Service_Vision_Status - */ - public function setError(Google_Service_Vision_Status $error) - { - $this->error = $error; - } - /** - * @return Google_Service_Vision_Status - */ - public function getError() - { - return $this->error; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p4beta1FaceAnnotation - */ - public function setFaceAnnotations($faceAnnotations) - { - $this->faceAnnotations = $faceAnnotations; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1FaceAnnotation - */ - public function getFaceAnnotations() - { - return $this->faceAnnotations; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p4beta1TextAnnotation - */ - public function setFullTextAnnotation(Google_Service_Vision_GoogleCloudVisionV1p4beta1TextAnnotation $fullTextAnnotation) - { - $this->fullTextAnnotation = $fullTextAnnotation; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1TextAnnotation - */ - public function getFullTextAnnotation() - { - return $this->fullTextAnnotation; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p4beta1ImageProperties - */ - public function setImagePropertiesAnnotation(Google_Service_Vision_GoogleCloudVisionV1p4beta1ImageProperties $imagePropertiesAnnotation) - { - $this->imagePropertiesAnnotation = $imagePropertiesAnnotation; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1ImageProperties - */ - public function getImagePropertiesAnnotation() - { - return $this->imagePropertiesAnnotation; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p4beta1EntityAnnotation - */ - public function setLabelAnnotations($labelAnnotations) - { - $this->labelAnnotations = $labelAnnotations; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1EntityAnnotation - */ - public function getLabelAnnotations() - { - return $this->labelAnnotations; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p4beta1EntityAnnotation - */ - public function setLandmarkAnnotations($landmarkAnnotations) - { - $this->landmarkAnnotations = $landmarkAnnotations; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1EntityAnnotation - */ - public function getLandmarkAnnotations() - { - return $this->landmarkAnnotations; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p4beta1LocalizedObjectAnnotation - */ - public function setLocalizedObjectAnnotations($localizedObjectAnnotations) - { - $this->localizedObjectAnnotations = $localizedObjectAnnotations; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1LocalizedObjectAnnotation - */ - public function getLocalizedObjectAnnotations() - { - return $this->localizedObjectAnnotations; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p4beta1EntityAnnotation - */ - public function setLogoAnnotations($logoAnnotations) - { - $this->logoAnnotations = $logoAnnotations; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1EntityAnnotation - */ - public function getLogoAnnotations() - { - return $this->logoAnnotations; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p4beta1ProductSearchResults - */ - public function setProductSearchResults(Google_Service_Vision_GoogleCloudVisionV1p4beta1ProductSearchResults $productSearchResults) - { - $this->productSearchResults = $productSearchResults; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1ProductSearchResults - */ - public function getProductSearchResults() - { - return $this->productSearchResults; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p4beta1SafeSearchAnnotation - */ - public function setSafeSearchAnnotation(Google_Service_Vision_GoogleCloudVisionV1p4beta1SafeSearchAnnotation $safeSearchAnnotation) - { - $this->safeSearchAnnotation = $safeSearchAnnotation; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1SafeSearchAnnotation - */ - public function getSafeSearchAnnotation() - { - return $this->safeSearchAnnotation; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p4beta1EntityAnnotation - */ - public function setTextAnnotations($textAnnotations) - { - $this->textAnnotations = $textAnnotations; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1EntityAnnotation - */ - public function getTextAnnotations() - { - return $this->textAnnotations; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p4beta1WebDetection - */ - public function setWebDetection(Google_Service_Vision_GoogleCloudVisionV1p4beta1WebDetection $webDetection) - { - $this->webDetection = $webDetection; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1WebDetection - */ - public function getWebDetection() - { - return $this->webDetection; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1AsyncAnnotateFileResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1AsyncAnnotateFileResponse.php deleted file mode 100644 index 6c7847e2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1AsyncAnnotateFileResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -outputConfig = $outputConfig; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1OutputConfig - */ - public function getOutputConfig() - { - return $this->outputConfig; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1AsyncBatchAnnotateFilesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1AsyncBatchAnnotateFilesResponse.php deleted file mode 100644 index 0488b9e5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1AsyncBatchAnnotateFilesResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -responses = $responses; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1AsyncAnnotateFileResponse - */ - public function getResponses() - { - return $this->responses; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1AsyncBatchAnnotateImagesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1AsyncBatchAnnotateImagesResponse.php deleted file mode 100644 index 5b82541b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1AsyncBatchAnnotateImagesResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -outputConfig = $outputConfig; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1OutputConfig - */ - public function getOutputConfig() - { - return $this->outputConfig; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1BatchAnnotateFilesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1BatchAnnotateFilesResponse.php deleted file mode 100644 index a4523b8c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1BatchAnnotateFilesResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -responses = $responses; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1AnnotateFileResponse - */ - public function getResponses() - { - return $this->responses; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1BatchOperationMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1BatchOperationMetadata.php deleted file mode 100644 index 9e5c2f9a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1BatchOperationMetadata.php +++ /dev/null @@ -1,48 +0,0 @@ -endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setSubmitTime($submitTime) - { - $this->submitTime = $submitTime; - } - public function getSubmitTime() - { - return $this->submitTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1Block.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1Block.php deleted file mode 100644 index f01c8a74..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1Block.php +++ /dev/null @@ -1,88 +0,0 @@ -blockType = $blockType; - } - public function getBlockType() - { - return $this->blockType; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p4beta1BoundingPoly - */ - public function setBoundingBox(Google_Service_Vision_GoogleCloudVisionV1p4beta1BoundingPoly $boundingBox) - { - $this->boundingBox = $boundingBox; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1BoundingPoly - */ - public function getBoundingBox() - { - return $this->boundingBox; - } - public function setConfidence($confidence) - { - $this->confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p4beta1Paragraph - */ - public function setParagraphs($paragraphs) - { - $this->paragraphs = $paragraphs; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1Paragraph - */ - public function getParagraphs() - { - return $this->paragraphs; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p4beta1TextAnnotationTextProperty - */ - public function setProperty(Google_Service_Vision_GoogleCloudVisionV1p4beta1TextAnnotationTextProperty $property) - { - $this->property = $property; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1TextAnnotationTextProperty - */ - public function getProperty() - { - return $this->property; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1BoundingPoly.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1BoundingPoly.php deleted file mode 100644 index 8f63cb05..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1BoundingPoly.php +++ /dev/null @@ -1,54 +0,0 @@ -normalizedVertices = $normalizedVertices; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1NormalizedVertex - */ - public function getNormalizedVertices() - { - return $this->normalizedVertices; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p4beta1Vertex - */ - public function setVertices($vertices) - { - $this->vertices = $vertices; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1Vertex - */ - public function getVertices() - { - return $this->vertices; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1Celebrity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1Celebrity.php deleted file mode 100644 index d0bcb5ed..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1Celebrity.php +++ /dev/null @@ -1,48 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1ColorInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1ColorInfo.php deleted file mode 100644 index 5bf9b6e4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1ColorInfo.php +++ /dev/null @@ -1,55 +0,0 @@ -color = $color; - } - /** - * @return Google_Service_Vision_Color - */ - public function getColor() - { - return $this->color; - } - public function setPixelFraction($pixelFraction) - { - $this->pixelFraction = $pixelFraction; - } - public function getPixelFraction() - { - return $this->pixelFraction; - } - public function setScore($score) - { - $this->score = $score; - } - public function getScore() - { - return $this->score; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1CropHint.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1CropHint.php deleted file mode 100644 index 51c97fd6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1CropHint.php +++ /dev/null @@ -1,55 +0,0 @@ -boundingPoly = $boundingPoly; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1BoundingPoly - */ - public function getBoundingPoly() - { - return $this->boundingPoly; - } - public function setConfidence($confidence) - { - $this->confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - public function setImportanceFraction($importanceFraction) - { - $this->importanceFraction = $importanceFraction; - } - public function getImportanceFraction() - { - return $this->importanceFraction; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1CropHintsAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1CropHintsAnnotation.php deleted file mode 100644 index 2bd32e54..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1CropHintsAnnotation.php +++ /dev/null @@ -1,38 +0,0 @@ -cropHints = $cropHints; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1CropHint - */ - public function getCropHints() - { - return $this->cropHints; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1DominantColorsAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1DominantColorsAnnotation.php deleted file mode 100644 index 08361ce2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1DominantColorsAnnotation.php +++ /dev/null @@ -1,38 +0,0 @@ -colors = $colors; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1ColorInfo - */ - public function getColors() - { - return $this->colors; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1EntityAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1EntityAnnotation.php deleted file mode 100644 index c0b8c1de..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1EntityAnnotation.php +++ /dev/null @@ -1,124 +0,0 @@ -boundingPoly = $boundingPoly; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1BoundingPoly - */ - public function getBoundingPoly() - { - return $this->boundingPoly; - } - public function setConfidence($confidence) - { - $this->confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setLocale($locale) - { - $this->locale = $locale; - } - public function getLocale() - { - return $this->locale; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p4beta1LocationInfo - */ - public function setLocations($locations) - { - $this->locations = $locations; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1LocationInfo - */ - public function getLocations() - { - return $this->locations; - } - public function setMid($mid) - { - $this->mid = $mid; - } - public function getMid() - { - return $this->mid; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p4beta1Property - */ - public function setProperties($properties) - { - $this->properties = $properties; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1Property - */ - public function getProperties() - { - return $this->properties; - } - public function setScore($score) - { - $this->score = $score; - } - public function getScore() - { - return $this->score; - } - public function setTopicality($topicality) - { - $this->topicality = $topicality; - } - public function getTopicality() - { - return $this->topicality; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1FaceAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1FaceAnnotation.php deleted file mode 100644 index 623802f6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1FaceAnnotation.php +++ /dev/null @@ -1,194 +0,0 @@ -angerLikelihood = $angerLikelihood; - } - public function getAngerLikelihood() - { - return $this->angerLikelihood; - } - public function setBlurredLikelihood($blurredLikelihood) - { - $this->blurredLikelihood = $blurredLikelihood; - } - public function getBlurredLikelihood() - { - return $this->blurredLikelihood; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p4beta1BoundingPoly - */ - public function setBoundingPoly(Google_Service_Vision_GoogleCloudVisionV1p4beta1BoundingPoly $boundingPoly) - { - $this->boundingPoly = $boundingPoly; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1BoundingPoly - */ - public function getBoundingPoly() - { - return $this->boundingPoly; - } - public function setDetectionConfidence($detectionConfidence) - { - $this->detectionConfidence = $detectionConfidence; - } - public function getDetectionConfidence() - { - return $this->detectionConfidence; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p4beta1BoundingPoly - */ - public function setFdBoundingPoly(Google_Service_Vision_GoogleCloudVisionV1p4beta1BoundingPoly $fdBoundingPoly) - { - $this->fdBoundingPoly = $fdBoundingPoly; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1BoundingPoly - */ - public function getFdBoundingPoly() - { - return $this->fdBoundingPoly; - } - public function setHeadwearLikelihood($headwearLikelihood) - { - $this->headwearLikelihood = $headwearLikelihood; - } - public function getHeadwearLikelihood() - { - return $this->headwearLikelihood; - } - public function setJoyLikelihood($joyLikelihood) - { - $this->joyLikelihood = $joyLikelihood; - } - public function getJoyLikelihood() - { - return $this->joyLikelihood; - } - public function setLandmarkingConfidence($landmarkingConfidence) - { - $this->landmarkingConfidence = $landmarkingConfidence; - } - public function getLandmarkingConfidence() - { - return $this->landmarkingConfidence; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p4beta1FaceAnnotationLandmark - */ - public function setLandmarks($landmarks) - { - $this->landmarks = $landmarks; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1FaceAnnotationLandmark - */ - public function getLandmarks() - { - return $this->landmarks; - } - public function setPanAngle($panAngle) - { - $this->panAngle = $panAngle; - } - public function getPanAngle() - { - return $this->panAngle; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p4beta1FaceRecognitionResult - */ - public function setRecognitionResult($recognitionResult) - { - $this->recognitionResult = $recognitionResult; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1FaceRecognitionResult - */ - public function getRecognitionResult() - { - return $this->recognitionResult; - } - public function setRollAngle($rollAngle) - { - $this->rollAngle = $rollAngle; - } - public function getRollAngle() - { - return $this->rollAngle; - } - public function setSorrowLikelihood($sorrowLikelihood) - { - $this->sorrowLikelihood = $sorrowLikelihood; - } - public function getSorrowLikelihood() - { - return $this->sorrowLikelihood; - } - public function setSurpriseLikelihood($surpriseLikelihood) - { - $this->surpriseLikelihood = $surpriseLikelihood; - } - public function getSurpriseLikelihood() - { - return $this->surpriseLikelihood; - } - public function setTiltAngle($tiltAngle) - { - $this->tiltAngle = $tiltAngle; - } - public function getTiltAngle() - { - return $this->tiltAngle; - } - public function setUnderExposedLikelihood($underExposedLikelihood) - { - $this->underExposedLikelihood = $underExposedLikelihood; - } - public function getUnderExposedLikelihood() - { - return $this->underExposedLikelihood; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1FaceAnnotationLandmark.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1FaceAnnotationLandmark.php deleted file mode 100644 index e83617b9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1FaceAnnotationLandmark.php +++ /dev/null @@ -1,46 +0,0 @@ -position = $position; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1Position - */ - public function getPosition() - { - return $this->position; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1FaceRecognitionResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1FaceRecognitionResult.php deleted file mode 100644 index 2c85ac35..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1FaceRecognitionResult.php +++ /dev/null @@ -1,46 +0,0 @@ -celebrity = $celebrity; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1Celebrity - */ - public function getCelebrity() - { - return $this->celebrity; - } - public function setConfidence($confidence) - { - $this->confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1GcsDestination.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1GcsDestination.php deleted file mode 100644 index 5c605a1d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1GcsDestination.php +++ /dev/null @@ -1,30 +0,0 @@ -uri = $uri; - } - public function getUri() - { - return $this->uri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1GcsSource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1GcsSource.php deleted file mode 100644 index 67b611f3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1GcsSource.php +++ /dev/null @@ -1,30 +0,0 @@ -uri = $uri; - } - public function getUri() - { - return $this->uri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1ImageAnnotationContext.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1ImageAnnotationContext.php deleted file mode 100644 index 5ef4eaf1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1ImageAnnotationContext.php +++ /dev/null @@ -1,39 +0,0 @@ -pageNumber = $pageNumber; - } - public function getPageNumber() - { - return $this->pageNumber; - } - public function setUri($uri) - { - $this->uri = $uri; - } - public function getUri() - { - return $this->uri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1ImageProperties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1ImageProperties.php deleted file mode 100644 index 30ffd471..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1ImageProperties.php +++ /dev/null @@ -1,37 +0,0 @@ -dominantColors = $dominantColors; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1DominantColorsAnnotation - */ - public function getDominantColors() - { - return $this->dominantColors; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1ImportProductSetsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1ImportProductSetsResponse.php deleted file mode 100644 index 999b00dc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1ImportProductSetsResponse.php +++ /dev/null @@ -1,54 +0,0 @@ -referenceImages = $referenceImages; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1ReferenceImage - */ - public function getReferenceImages() - { - return $this->referenceImages; - } - /** - * @param Google_Service_Vision_Status - */ - public function setStatuses($statuses) - { - $this->statuses = $statuses; - } - /** - * @return Google_Service_Vision_Status - */ - public function getStatuses() - { - return $this->statuses; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1InputConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1InputConfig.php deleted file mode 100644 index de11e49f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1InputConfig.php +++ /dev/null @@ -1,55 +0,0 @@ -content = $content; - } - public function getContent() - { - return $this->content; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p4beta1GcsSource - */ - public function setGcsSource(Google_Service_Vision_GoogleCloudVisionV1p4beta1GcsSource $gcsSource) - { - $this->gcsSource = $gcsSource; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1GcsSource - */ - public function getGcsSource() - { - return $this->gcsSource; - } - public function setMimeType($mimeType) - { - $this->mimeType = $mimeType; - } - public function getMimeType() - { - return $this->mimeType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1LocalizedObjectAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1LocalizedObjectAnnotation.php deleted file mode 100644 index 64311d77..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1LocalizedObjectAnnotation.php +++ /dev/null @@ -1,73 +0,0 @@ -boundingPoly = $boundingPoly; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1BoundingPoly - */ - public function getBoundingPoly() - { - return $this->boundingPoly; - } - public function setLanguageCode($languageCode) - { - $this->languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } - public function setMid($mid) - { - $this->mid = $mid; - } - public function getMid() - { - return $this->mid; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setScore($score) - { - $this->score = $score; - } - public function getScore() - { - return $this->score; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1LocationInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1LocationInfo.php deleted file mode 100644 index 954d159b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1LocationInfo.php +++ /dev/null @@ -1,37 +0,0 @@ -latLng = $latLng; - } - /** - * @return Google_Service_Vision_LatLng - */ - public function getLatLng() - { - return $this->latLng; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1NormalizedVertex.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1NormalizedVertex.php deleted file mode 100644 index a04242e8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1NormalizedVertex.php +++ /dev/null @@ -1,39 +0,0 @@ -x = $x; - } - public function getX() - { - return $this->x; - } - public function setY($y) - { - $this->y = $y; - } - public function getY() - { - return $this->y; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1OperationMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1OperationMetadata.php deleted file mode 100644 index 03b64da4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1OperationMetadata.php +++ /dev/null @@ -1,48 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1OutputConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1OutputConfig.php deleted file mode 100644 index 7f452e90..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1OutputConfig.php +++ /dev/null @@ -1,46 +0,0 @@ -batchSize = $batchSize; - } - public function getBatchSize() - { - return $this->batchSize; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p4beta1GcsDestination - */ - public function setGcsDestination(Google_Service_Vision_GoogleCloudVisionV1p4beta1GcsDestination $gcsDestination) - { - $this->gcsDestination = $gcsDestination; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1GcsDestination - */ - public function getGcsDestination() - { - return $this->gcsDestination; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1Page.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1Page.php deleted file mode 100644 index cc208ea2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1Page.php +++ /dev/null @@ -1,81 +0,0 @@ -blocks = $blocks; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1Block - */ - public function getBlocks() - { - return $this->blocks; - } - public function setConfidence($confidence) - { - $this->confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - public function setHeight($height) - { - $this->height = $height; - } - public function getHeight() - { - return $this->height; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p4beta1TextAnnotationTextProperty - */ - public function setProperty(Google_Service_Vision_GoogleCloudVisionV1p4beta1TextAnnotationTextProperty $property) - { - $this->property = $property; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1TextAnnotationTextProperty - */ - public function getProperty() - { - return $this->property; - } - public function setWidth($width) - { - $this->width = $width; - } - public function getWidth() - { - return $this->width; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1Paragraph.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1Paragraph.php deleted file mode 100644 index c06af474..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1Paragraph.php +++ /dev/null @@ -1,79 +0,0 @@ -boundingBox = $boundingBox; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1BoundingPoly - */ - public function getBoundingBox() - { - return $this->boundingBox; - } - public function setConfidence($confidence) - { - $this->confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p4beta1TextAnnotationTextProperty - */ - public function setProperty(Google_Service_Vision_GoogleCloudVisionV1p4beta1TextAnnotationTextProperty $property) - { - $this->property = $property; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1TextAnnotationTextProperty - */ - public function getProperty() - { - return $this->property; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p4beta1Word - */ - public function setWords($words) - { - $this->words = $words; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1Word - */ - public function getWords() - { - return $this->words; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1Position.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1Position.php deleted file mode 100644 index 21807298..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1Position.php +++ /dev/null @@ -1,48 +0,0 @@ -x = $x; - } - public function getX() - { - return $this->x; - } - public function setY($y) - { - $this->y = $y; - } - public function getY() - { - return $this->y; - } - public function setZ($z) - { - $this->z = $z; - } - public function getZ() - { - return $this->z; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1Product.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1Product.php deleted file mode 100644 index 468df040..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1Product.php +++ /dev/null @@ -1,74 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setProductCategory($productCategory) - { - $this->productCategory = $productCategory; - } - public function getProductCategory() - { - return $this->productCategory; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p4beta1ProductKeyValue - */ - public function setProductLabels($productLabels) - { - $this->productLabels = $productLabels; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1ProductKeyValue - */ - public function getProductLabels() - { - return $this->productLabels; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1ProductKeyValue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1ProductKeyValue.php deleted file mode 100644 index 39c728c4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1ProductKeyValue.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1ProductSearchResults.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1ProductSearchResults.php deleted file mode 100644 index 74e66c0d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1ProductSearchResults.php +++ /dev/null @@ -1,63 +0,0 @@ -indexTime = $indexTime; - } - public function getIndexTime() - { - return $this->indexTime; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p4beta1ProductSearchResultsGroupedResult - */ - public function setProductGroupedResults($productGroupedResults) - { - $this->productGroupedResults = $productGroupedResults; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1ProductSearchResultsGroupedResult - */ - public function getProductGroupedResults() - { - return $this->productGroupedResults; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p4beta1ProductSearchResultsResult - */ - public function setResults($results) - { - $this->results = $results; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1ProductSearchResultsResult - */ - public function getResults() - { - return $this->results; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1ProductSearchResultsGroupedResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1ProductSearchResultsGroupedResult.php deleted file mode 100644 index 18d16b38..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1ProductSearchResultsGroupedResult.php +++ /dev/null @@ -1,70 +0,0 @@ -boundingPoly = $boundingPoly; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1BoundingPoly - */ - public function getBoundingPoly() - { - return $this->boundingPoly; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p4beta1ProductSearchResultsObjectAnnotation - */ - public function setObjectAnnotations($objectAnnotations) - { - $this->objectAnnotations = $objectAnnotations; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1ProductSearchResultsObjectAnnotation - */ - public function getObjectAnnotations() - { - return $this->objectAnnotations; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p4beta1ProductSearchResultsResult - */ - public function setResults($results) - { - $this->results = $results; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1ProductSearchResultsResult - */ - public function getResults() - { - return $this->results; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1ProductSearchResultsObjectAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1ProductSearchResultsObjectAnnotation.php deleted file mode 100644 index 21062727..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1ProductSearchResultsObjectAnnotation.php +++ /dev/null @@ -1,57 +0,0 @@ -languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } - public function setMid($mid) - { - $this->mid = $mid; - } - public function getMid() - { - return $this->mid; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setScore($score) - { - $this->score = $score; - } - public function getScore() - { - return $this->score; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1ProductSearchResultsResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1ProductSearchResultsResult.php deleted file mode 100644 index ca87de2c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1ProductSearchResultsResult.php +++ /dev/null @@ -1,55 +0,0 @@ -image = $image; - } - public function getImage() - { - return $this->image; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p4beta1Product - */ - public function setProduct(Google_Service_Vision_GoogleCloudVisionV1p4beta1Product $product) - { - $this->product = $product; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1Product - */ - public function getProduct() - { - return $this->product; - } - public function setScore($score) - { - $this->score = $score; - } - public function getScore() - { - return $this->score; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1Property.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1Property.php deleted file mode 100644 index 40c94cb5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1Property.php +++ /dev/null @@ -1,48 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setUint64Value($uint64Value) - { - $this->uint64Value = $uint64Value; - } - public function getUint64Value() - { - return $this->uint64Value; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1ReferenceImage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1ReferenceImage.php deleted file mode 100644 index 67b5798f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1ReferenceImage.php +++ /dev/null @@ -1,56 +0,0 @@ -boundingPolys = $boundingPolys; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1BoundingPoly - */ - public function getBoundingPolys() - { - return $this->boundingPolys; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setUri($uri) - { - $this->uri = $uri; - } - public function getUri() - { - return $this->uri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1SafeSearchAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1SafeSearchAnnotation.php deleted file mode 100644 index 819aeff7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1SafeSearchAnnotation.php +++ /dev/null @@ -1,66 +0,0 @@ -adult = $adult; - } - public function getAdult() - { - return $this->adult; - } - public function setMedical($medical) - { - $this->medical = $medical; - } - public function getMedical() - { - return $this->medical; - } - public function setRacy($racy) - { - $this->racy = $racy; - } - public function getRacy() - { - return $this->racy; - } - public function setSpoof($spoof) - { - $this->spoof = $spoof; - } - public function getSpoof() - { - return $this->spoof; - } - public function setViolence($violence) - { - $this->violence = $violence; - } - public function getViolence() - { - return $this->violence; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1Symbol.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1Symbol.php deleted file mode 100644 index 63350d83..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1Symbol.php +++ /dev/null @@ -1,71 +0,0 @@ -boundingBox = $boundingBox; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1BoundingPoly - */ - public function getBoundingBox() - { - return $this->boundingBox; - } - public function setConfidence($confidence) - { - $this->confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p4beta1TextAnnotationTextProperty - */ - public function setProperty(Google_Service_Vision_GoogleCloudVisionV1p4beta1TextAnnotationTextProperty $property) - { - $this->property = $property; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1TextAnnotationTextProperty - */ - public function getProperty() - { - return $this->property; - } - public function setText($text) - { - $this->text = $text; - } - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1TextAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1TextAnnotation.php deleted file mode 100644 index 03b7f8b3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1TextAnnotation.php +++ /dev/null @@ -1,47 +0,0 @@ -pages = $pages; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1Page - */ - public function getPages() - { - return $this->pages; - } - public function setText($text) - { - $this->text = $text; - } - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1TextAnnotationDetectedBreak.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1TextAnnotationDetectedBreak.php deleted file mode 100644 index 7ebd815f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1TextAnnotationDetectedBreak.php +++ /dev/null @@ -1,39 +0,0 @@ -isPrefix = $isPrefix; - } - public function getIsPrefix() - { - return $this->isPrefix; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1TextAnnotationDetectedLanguage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1TextAnnotationDetectedLanguage.php deleted file mode 100644 index 6065b47d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1TextAnnotationDetectedLanguage.php +++ /dev/null @@ -1,39 +0,0 @@ -confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - public function setLanguageCode($languageCode) - { - $this->languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1TextAnnotationTextProperty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1TextAnnotationTextProperty.php deleted file mode 100644 index bd8cc1bc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1TextAnnotationTextProperty.php +++ /dev/null @@ -1,54 +0,0 @@ -detectedBreak = $detectedBreak; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1TextAnnotationDetectedBreak - */ - public function getDetectedBreak() - { - return $this->detectedBreak; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p4beta1TextAnnotationDetectedLanguage - */ - public function setDetectedLanguages($detectedLanguages) - { - $this->detectedLanguages = $detectedLanguages; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1TextAnnotationDetectedLanguage - */ - public function getDetectedLanguages() - { - return $this->detectedLanguages; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1Vertex.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1Vertex.php deleted file mode 100644 index 46fd88e9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1Vertex.php +++ /dev/null @@ -1,39 +0,0 @@ -x = $x; - } - public function getX() - { - return $this->x; - } - public function setY($y) - { - $this->y = $y; - } - public function getY() - { - return $this->y; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1WebDetection.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1WebDetection.php deleted file mode 100644 index e83cbda0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1WebDetection.php +++ /dev/null @@ -1,118 +0,0 @@ -bestGuessLabels = $bestGuessLabels; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1WebDetectionWebLabel - */ - public function getBestGuessLabels() - { - return $this->bestGuessLabels; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p4beta1WebDetectionWebImage - */ - public function setFullMatchingImages($fullMatchingImages) - { - $this->fullMatchingImages = $fullMatchingImages; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1WebDetectionWebImage - */ - public function getFullMatchingImages() - { - return $this->fullMatchingImages; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p4beta1WebDetectionWebPage - */ - public function setPagesWithMatchingImages($pagesWithMatchingImages) - { - $this->pagesWithMatchingImages = $pagesWithMatchingImages; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1WebDetectionWebPage - */ - public function getPagesWithMatchingImages() - { - return $this->pagesWithMatchingImages; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p4beta1WebDetectionWebImage - */ - public function setPartialMatchingImages($partialMatchingImages) - { - $this->partialMatchingImages = $partialMatchingImages; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1WebDetectionWebImage - */ - public function getPartialMatchingImages() - { - return $this->partialMatchingImages; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p4beta1WebDetectionWebImage - */ - public function setVisuallySimilarImages($visuallySimilarImages) - { - $this->visuallySimilarImages = $visuallySimilarImages; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1WebDetectionWebImage - */ - public function getVisuallySimilarImages() - { - return $this->visuallySimilarImages; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p4beta1WebDetectionWebEntity - */ - public function setWebEntities($webEntities) - { - $this->webEntities = $webEntities; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1WebDetectionWebEntity - */ - public function getWebEntities() - { - return $this->webEntities; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1WebDetectionWebEntity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1WebDetectionWebEntity.php deleted file mode 100644 index 37ac1750..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1WebDetectionWebEntity.php +++ /dev/null @@ -1,48 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setEntityId($entityId) - { - $this->entityId = $entityId; - } - public function getEntityId() - { - return $this->entityId; - } - public function setScore($score) - { - $this->score = $score; - } - public function getScore() - { - return $this->score; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1WebDetectionWebImage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1WebDetectionWebImage.php deleted file mode 100644 index ac0e92e6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1WebDetectionWebImage.php +++ /dev/null @@ -1,39 +0,0 @@ -score = $score; - } - public function getScore() - { - return $this->score; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1WebDetectionWebLabel.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1WebDetectionWebLabel.php deleted file mode 100644 index ab877c5f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1WebDetectionWebLabel.php +++ /dev/null @@ -1,39 +0,0 @@ -label = $label; - } - public function getLabel() - { - return $this->label; - } - public function setLanguageCode($languageCode) - { - $this->languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1WebDetectionWebPage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1WebDetectionWebPage.php deleted file mode 100644 index 01bea345..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1WebDetectionWebPage.php +++ /dev/null @@ -1,81 +0,0 @@ -fullMatchingImages = $fullMatchingImages; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1WebDetectionWebImage - */ - public function getFullMatchingImages() - { - return $this->fullMatchingImages; - } - public function setPageTitle($pageTitle) - { - $this->pageTitle = $pageTitle; - } - public function getPageTitle() - { - return $this->pageTitle; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p4beta1WebDetectionWebImage - */ - public function setPartialMatchingImages($partialMatchingImages) - { - $this->partialMatchingImages = $partialMatchingImages; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1WebDetectionWebImage - */ - public function getPartialMatchingImages() - { - return $this->partialMatchingImages; - } - public function setScore($score) - { - $this->score = $score; - } - public function getScore() - { - return $this->score; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1Word.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1Word.php deleted file mode 100644 index 6e382618..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GoogleCloudVisionV1p4beta1Word.php +++ /dev/null @@ -1,79 +0,0 @@ -boundingBox = $boundingBox; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1BoundingPoly - */ - public function getBoundingBox() - { - return $this->boundingBox; - } - public function setConfidence($confidence) - { - $this->confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p4beta1TextAnnotationTextProperty - */ - public function setProperty(Google_Service_Vision_GoogleCloudVisionV1p4beta1TextAnnotationTextProperty $property) - { - $this->property = $property; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1TextAnnotationTextProperty - */ - public function getProperty() - { - return $this->property; - } - /** - * @param Google_Service_Vision_GoogleCloudVisionV1p4beta1Symbol - */ - public function setSymbols($symbols) - { - $this->symbols = $symbols; - } - /** - * @return Google_Service_Vision_GoogleCloudVisionV1p4beta1Symbol - */ - public function getSymbols() - { - return $this->symbols; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GroupedResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GroupedResult.php deleted file mode 100644 index 489b1f58..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/GroupedResult.php +++ /dev/null @@ -1,70 +0,0 @@ -boundingPoly = $boundingPoly; - } - /** - * @return Google_Service_Vision_BoundingPoly - */ - public function getBoundingPoly() - { - return $this->boundingPoly; - } - /** - * @param Google_Service_Vision_ObjectAnnotation - */ - public function setObjectAnnotations($objectAnnotations) - { - $this->objectAnnotations = $objectAnnotations; - } - /** - * @return Google_Service_Vision_ObjectAnnotation - */ - public function getObjectAnnotations() - { - return $this->objectAnnotations; - } - /** - * @param Google_Service_Vision_Result - */ - public function setResults($results) - { - $this->results = $results; - } - /** - * @return Google_Service_Vision_Result - */ - public function getResults() - { - return $this->results; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Image.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Image.php deleted file mode 100644 index 84de647f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Image.php +++ /dev/null @@ -1,46 +0,0 @@ -content = $content; - } - public function getContent() - { - return $this->content; - } - /** - * @param Google_Service_Vision_ImageSource - */ - public function setSource(Google_Service_Vision_ImageSource $source) - { - $this->source = $source; - } - /** - * @return Google_Service_Vision_ImageSource - */ - public function getSource() - { - return $this->source; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ImageAnnotationContext.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ImageAnnotationContext.php deleted file mode 100644 index 373f4a2f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ImageAnnotationContext.php +++ /dev/null @@ -1,39 +0,0 @@ -pageNumber = $pageNumber; - } - public function getPageNumber() - { - return $this->pageNumber; - } - public function setUri($uri) - { - $this->uri = $uri; - } - public function getUri() - { - return $this->uri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ImageContext.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ImageContext.php deleted file mode 100644 index 4c58c4e7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ImageContext.php +++ /dev/null @@ -1,95 +0,0 @@ -cropHintsParams = $cropHintsParams; - } - /** - * @return Google_Service_Vision_CropHintsParams - */ - public function getCropHintsParams() - { - return $this->cropHintsParams; - } - public function setLanguageHints($languageHints) - { - $this->languageHints = $languageHints; - } - public function getLanguageHints() - { - return $this->languageHints; - } - /** - * @param Google_Service_Vision_LatLongRect - */ - public function setLatLongRect(Google_Service_Vision_LatLongRect $latLongRect) - { - $this->latLongRect = $latLongRect; - } - /** - * @return Google_Service_Vision_LatLongRect - */ - public function getLatLongRect() - { - return $this->latLongRect; - } - /** - * @param Google_Service_Vision_ProductSearchParams - */ - public function setProductSearchParams(Google_Service_Vision_ProductSearchParams $productSearchParams) - { - $this->productSearchParams = $productSearchParams; - } - /** - * @return Google_Service_Vision_ProductSearchParams - */ - public function getProductSearchParams() - { - return $this->productSearchParams; - } - /** - * @param Google_Service_Vision_WebDetectionParams - */ - public function setWebDetectionParams(Google_Service_Vision_WebDetectionParams $webDetectionParams) - { - $this->webDetectionParams = $webDetectionParams; - } - /** - * @return Google_Service_Vision_WebDetectionParams - */ - public function getWebDetectionParams() - { - return $this->webDetectionParams; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ImageProperties.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ImageProperties.php deleted file mode 100644 index 9d160c06..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ImageProperties.php +++ /dev/null @@ -1,37 +0,0 @@ -dominantColors = $dominantColors; - } - /** - * @return Google_Service_Vision_DominantColorsAnnotation - */ - public function getDominantColors() - { - return $this->dominantColors; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ImageSource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ImageSource.php deleted file mode 100644 index 08582ba3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ImageSource.php +++ /dev/null @@ -1,39 +0,0 @@ -gcsImageUri = $gcsImageUri; - } - public function getGcsImageUri() - { - return $this->gcsImageUri; - } - public function setImageUri($imageUri) - { - $this->imageUri = $imageUri; - } - public function getImageUri() - { - return $this->imageUri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ImportProductSetsGcsSource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ImportProductSetsGcsSource.php deleted file mode 100644 index 3498f3ef..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ImportProductSetsGcsSource.php +++ /dev/null @@ -1,30 +0,0 @@ -csvFileUri = $csvFileUri; - } - public function getCsvFileUri() - { - return $this->csvFileUri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ImportProductSetsInputConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ImportProductSetsInputConfig.php deleted file mode 100644 index 615371f0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ImportProductSetsInputConfig.php +++ /dev/null @@ -1,37 +0,0 @@ -gcsSource = $gcsSource; - } - /** - * @return Google_Service_Vision_ImportProductSetsGcsSource - */ - public function getGcsSource() - { - return $this->gcsSource; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ImportProductSetsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ImportProductSetsRequest.php deleted file mode 100644 index 2494943f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ImportProductSetsRequest.php +++ /dev/null @@ -1,37 +0,0 @@ -inputConfig = $inputConfig; - } - /** - * @return Google_Service_Vision_ImportProductSetsInputConfig - */ - public function getInputConfig() - { - return $this->inputConfig; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ImportProductSetsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ImportProductSetsResponse.php deleted file mode 100644 index 5cea5785..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ImportProductSetsResponse.php +++ /dev/null @@ -1,54 +0,0 @@ -referenceImages = $referenceImages; - } - /** - * @return Google_Service_Vision_ReferenceImage - */ - public function getReferenceImages() - { - return $this->referenceImages; - } - /** - * @param Google_Service_Vision_Status - */ - public function setStatuses($statuses) - { - $this->statuses = $statuses; - } - /** - * @return Google_Service_Vision_Status - */ - public function getStatuses() - { - return $this->statuses; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/InputConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/InputConfig.php deleted file mode 100644 index 502d535d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/InputConfig.php +++ /dev/null @@ -1,55 +0,0 @@ -content = $content; - } - public function getContent() - { - return $this->content; - } - /** - * @param Google_Service_Vision_GcsSource - */ - public function setGcsSource(Google_Service_Vision_GcsSource $gcsSource) - { - $this->gcsSource = $gcsSource; - } - /** - * @return Google_Service_Vision_GcsSource - */ - public function getGcsSource() - { - return $this->gcsSource; - } - public function setMimeType($mimeType) - { - $this->mimeType = $mimeType; - } - public function getMimeType() - { - return $this->mimeType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/KeyValue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/KeyValue.php deleted file mode 100644 index 3e2c5eed..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/KeyValue.php +++ /dev/null @@ -1,39 +0,0 @@ -key = $key; - } - public function getKey() - { - return $this->key; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Landmark.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Landmark.php deleted file mode 100644 index a25eff29..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Landmark.php +++ /dev/null @@ -1,46 +0,0 @@ -position = $position; - } - /** - * @return Google_Service_Vision_Position - */ - public function getPosition() - { - return $this->position; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/LatLng.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/LatLng.php deleted file mode 100644 index 7d545bf6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/LatLng.php +++ /dev/null @@ -1,39 +0,0 @@ -latitude = $latitude; - } - public function getLatitude() - { - return $this->latitude; - } - public function setLongitude($longitude) - { - $this->longitude = $longitude; - } - public function getLongitude() - { - return $this->longitude; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/LatLongRect.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/LatLongRect.php deleted file mode 100644 index 3ede376d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/LatLongRect.php +++ /dev/null @@ -1,53 +0,0 @@ -maxLatLng = $maxLatLng; - } - /** - * @return Google_Service_Vision_LatLng - */ - public function getMaxLatLng() - { - return $this->maxLatLng; - } - /** - * @param Google_Service_Vision_LatLng - */ - public function setMinLatLng(Google_Service_Vision_LatLng $minLatLng) - { - $this->minLatLng = $minLatLng; - } - /** - * @return Google_Service_Vision_LatLng - */ - public function getMinLatLng() - { - return $this->minLatLng; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ListOperationsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ListOperationsResponse.php deleted file mode 100644 index f0e56ff4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ListOperationsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Vision_Operation - */ - public function setOperations($operations) - { - $this->operations = $operations; - } - /** - * @return Google_Service_Vision_Operation - */ - public function getOperations() - { - return $this->operations; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ListProductSetsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ListProductSetsResponse.php deleted file mode 100644 index 02339052..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ListProductSetsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Vision_ProductSet - */ - public function setProductSets($productSets) - { - $this->productSets = $productSets; - } - /** - * @return Google_Service_Vision_ProductSet - */ - public function getProductSets() - { - return $this->productSets; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ListProductsInProductSetResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ListProductsInProductSetResponse.php deleted file mode 100644 index c06f33ef..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ListProductsInProductSetResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Vision_Product - */ - public function setProducts($products) - { - $this->products = $products; - } - /** - * @return Google_Service_Vision_Product - */ - public function getProducts() - { - return $this->products; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ListProductsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ListProductsResponse.php deleted file mode 100644 index bdc7a059..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ListProductsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_Vision_Product - */ - public function setProducts($products) - { - $this->products = $products; - } - /** - * @return Google_Service_Vision_Product - */ - public function getProducts() - { - return $this->products; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ListReferenceImagesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ListReferenceImagesResponse.php deleted file mode 100644 index bdba6365..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ListReferenceImagesResponse.php +++ /dev/null @@ -1,56 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - public function setPageSize($pageSize) - { - $this->pageSize = $pageSize; - } - public function getPageSize() - { - return $this->pageSize; - } - /** - * @param Google_Service_Vision_ReferenceImage - */ - public function setReferenceImages($referenceImages) - { - $this->referenceImages = $referenceImages; - } - /** - * @return Google_Service_Vision_ReferenceImage - */ - public function getReferenceImages() - { - return $this->referenceImages; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/LocalizedObjectAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/LocalizedObjectAnnotation.php deleted file mode 100644 index 7e2d9eac..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/LocalizedObjectAnnotation.php +++ /dev/null @@ -1,73 +0,0 @@ -boundingPoly = $boundingPoly; - } - /** - * @return Google_Service_Vision_BoundingPoly - */ - public function getBoundingPoly() - { - return $this->boundingPoly; - } - public function setLanguageCode($languageCode) - { - $this->languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } - public function setMid($mid) - { - $this->mid = $mid; - } - public function getMid() - { - return $this->mid; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setScore($score) - { - $this->score = $score; - } - public function getScore() - { - return $this->score; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/LocationInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/LocationInfo.php deleted file mode 100644 index 5fcd9c0f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/LocationInfo.php +++ /dev/null @@ -1,37 +0,0 @@ -latLng = $latLng; - } - /** - * @return Google_Service_Vision_LatLng - */ - public function getLatLng() - { - return $this->latLng; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/NormalizedVertex.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/NormalizedVertex.php deleted file mode 100644 index e2aa0c72..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/NormalizedVertex.php +++ /dev/null @@ -1,39 +0,0 @@ -x = $x; - } - public function getX() - { - return $this->x; - } - public function setY($y) - { - $this->y = $y; - } - public function getY() - { - return $this->y; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ObjectAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ObjectAnnotation.php deleted file mode 100644 index b52b91b9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ObjectAnnotation.php +++ /dev/null @@ -1,57 +0,0 @@ -languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } - public function setMid($mid) - { - $this->mid = $mid; - } - public function getMid() - { - return $this->mid; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setScore($score) - { - $this->score = $score; - } - public function getScore() - { - return $this->score; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Operation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Operation.php deleted file mode 100644 index 1243308d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Operation.php +++ /dev/null @@ -1,73 +0,0 @@ -done = $done; - } - public function getDone() - { - return $this->done; - } - /** - * @param Google_Service_Vision_Status - */ - public function setError(Google_Service_Vision_Status $error) - { - $this->error = $error; - } - /** - * @return Google_Service_Vision_Status - */ - public function getError() - { - return $this->error; - } - public function setMetadata($metadata) - { - $this->metadata = $metadata; - } - public function getMetadata() - { - return $this->metadata; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setResponse($response) - { - $this->response = $response; - } - public function getResponse() - { - return $this->response; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/OperationMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/OperationMetadata.php deleted file mode 100644 index cbb378fa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/OperationMetadata.php +++ /dev/null @@ -1,48 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setState($state) - { - $this->state = $state; - } - public function getState() - { - return $this->state; - } - public function setUpdateTime($updateTime) - { - $this->updateTime = $updateTime; - } - public function getUpdateTime() - { - return $this->updateTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/OutputConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/OutputConfig.php deleted file mode 100644 index 65b754e8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/OutputConfig.php +++ /dev/null @@ -1,46 +0,0 @@ -batchSize = $batchSize; - } - public function getBatchSize() - { - return $this->batchSize; - } - /** - * @param Google_Service_Vision_GcsDestination - */ - public function setGcsDestination(Google_Service_Vision_GcsDestination $gcsDestination) - { - $this->gcsDestination = $gcsDestination; - } - /** - * @return Google_Service_Vision_GcsDestination - */ - public function getGcsDestination() - { - return $this->gcsDestination; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Page.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Page.php deleted file mode 100644 index 353b2a07..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Page.php +++ /dev/null @@ -1,81 +0,0 @@ -blocks = $blocks; - } - /** - * @return Google_Service_Vision_Block - */ - public function getBlocks() - { - return $this->blocks; - } - public function setConfidence($confidence) - { - $this->confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - public function setHeight($height) - { - $this->height = $height; - } - public function getHeight() - { - return $this->height; - } - /** - * @param Google_Service_Vision_TextProperty - */ - public function setProperty(Google_Service_Vision_TextProperty $property) - { - $this->property = $property; - } - /** - * @return Google_Service_Vision_TextProperty - */ - public function getProperty() - { - return $this->property; - } - public function setWidth($width) - { - $this->width = $width; - } - public function getWidth() - { - return $this->width; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Paragraph.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Paragraph.php deleted file mode 100644 index 10274248..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Paragraph.php +++ /dev/null @@ -1,79 +0,0 @@ -boundingBox = $boundingBox; - } - /** - * @return Google_Service_Vision_BoundingPoly - */ - public function getBoundingBox() - { - return $this->boundingBox; - } - public function setConfidence($confidence) - { - $this->confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - /** - * @param Google_Service_Vision_TextProperty - */ - public function setProperty(Google_Service_Vision_TextProperty $property) - { - $this->property = $property; - } - /** - * @return Google_Service_Vision_TextProperty - */ - public function getProperty() - { - return $this->property; - } - /** - * @param Google_Service_Vision_Word - */ - public function setWords($words) - { - $this->words = $words; - } - /** - * @return Google_Service_Vision_Word - */ - public function getWords() - { - return $this->words; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Position.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Position.php deleted file mode 100644 index 74baf2f8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Position.php +++ /dev/null @@ -1,48 +0,0 @@ -x = $x; - } - public function getX() - { - return $this->x; - } - public function setY($y) - { - $this->y = $y; - } - public function getY() - { - return $this->y; - } - public function setZ($z) - { - $this->z = $z; - } - public function getZ() - { - return $this->z; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Product.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Product.php deleted file mode 100644 index 9eba3390..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Product.php +++ /dev/null @@ -1,74 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setProductCategory($productCategory) - { - $this->productCategory = $productCategory; - } - public function getProductCategory() - { - return $this->productCategory; - } - /** - * @param Google_Service_Vision_KeyValue - */ - public function setProductLabels($productLabels) - { - $this->productLabels = $productLabels; - } - /** - * @return Google_Service_Vision_KeyValue - */ - public function getProductLabels() - { - return $this->productLabels; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ProductSearchParams.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ProductSearchParams.php deleted file mode 100644 index 3577cab5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ProductSearchParams.php +++ /dev/null @@ -1,65 +0,0 @@ -boundingPoly = $boundingPoly; - } - /** - * @return Google_Service_Vision_BoundingPoly - */ - public function getBoundingPoly() - { - return $this->boundingPoly; - } - public function setFilter($filter) - { - $this->filter = $filter; - } - public function getFilter() - { - return $this->filter; - } - public function setProductCategories($productCategories) - { - $this->productCategories = $productCategories; - } - public function getProductCategories() - { - return $this->productCategories; - } - public function setProductSet($productSet) - { - $this->productSet = $productSet; - } - public function getProductSet() - { - return $this->productSet; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ProductSearchResults.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ProductSearchResults.php deleted file mode 100644 index 2adcbe6d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ProductSearchResults.php +++ /dev/null @@ -1,63 +0,0 @@ -indexTime = $indexTime; - } - public function getIndexTime() - { - return $this->indexTime; - } - /** - * @param Google_Service_Vision_GroupedResult - */ - public function setProductGroupedResults($productGroupedResults) - { - $this->productGroupedResults = $productGroupedResults; - } - /** - * @return Google_Service_Vision_GroupedResult - */ - public function getProductGroupedResults() - { - return $this->productGroupedResults; - } - /** - * @param Google_Service_Vision_Result - */ - public function setResults($results) - { - $this->results = $results; - } - /** - * @return Google_Service_Vision_Result - */ - public function getResults() - { - return $this->results; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ProductSet.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ProductSet.php deleted file mode 100644 index c41480b3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ProductSet.php +++ /dev/null @@ -1,64 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - /** - * @param Google_Service_Vision_Status - */ - public function setIndexError(Google_Service_Vision_Status $indexError) - { - $this->indexError = $indexError; - } - /** - * @return Google_Service_Vision_Status - */ - public function getIndexError() - { - return $this->indexError; - } - public function setIndexTime($indexTime) - { - $this->indexTime = $indexTime; - } - public function getIndexTime() - { - return $this->indexTime; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ProductSetPurgeConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ProductSetPurgeConfig.php deleted file mode 100644 index 08f98123..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ProductSetPurgeConfig.php +++ /dev/null @@ -1,30 +0,0 @@ -productSetId = $productSetId; - } - public function getProductSetId() - { - return $this->productSetId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Property.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Property.php deleted file mode 100644 index 820d72a2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Property.php +++ /dev/null @@ -1,48 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setUint64Value($uint64Value) - { - $this->uint64Value = $uint64Value; - } - public function getUint64Value() - { - return $this->uint64Value; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/PurgeProductsRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/PurgeProductsRequest.php deleted file mode 100644 index 51b2ab7c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/PurgeProductsRequest.php +++ /dev/null @@ -1,55 +0,0 @@ -deleteOrphanProducts = $deleteOrphanProducts; - } - public function getDeleteOrphanProducts() - { - return $this->deleteOrphanProducts; - } - public function setForce($force) - { - $this->force = $force; - } - public function getForce() - { - return $this->force; - } - /** - * @param Google_Service_Vision_ProductSetPurgeConfig - */ - public function setProductSetPurgeConfig(Google_Service_Vision_ProductSetPurgeConfig $productSetPurgeConfig) - { - $this->productSetPurgeConfig = $productSetPurgeConfig; - } - /** - * @return Google_Service_Vision_ProductSetPurgeConfig - */ - public function getProductSetPurgeConfig() - { - return $this->productSetPurgeConfig; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ReferenceImage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ReferenceImage.php deleted file mode 100644 index b727df7b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/ReferenceImage.php +++ /dev/null @@ -1,56 +0,0 @@ -boundingPolys = $boundingPolys; - } - /** - * @return Google_Service_Vision_BoundingPoly - */ - public function getBoundingPolys() - { - return $this->boundingPolys; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setUri($uri) - { - $this->uri = $uri; - } - public function getUri() - { - return $this->uri; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/RemoveProductFromProductSetRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/RemoveProductFromProductSetRequest.php deleted file mode 100644 index df14a42f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/RemoveProductFromProductSetRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -product = $product; - } - public function getProduct() - { - return $this->product; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Resource/Files.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Resource/Files.php deleted file mode 100644 index 596190bc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Resource/Files.php +++ /dev/null @@ -1,65 +0,0 @@ - - * $visionService = new Google_Service_Vision(...); - * $files = $visionService->files; - * - */ -class Google_Service_Vision_Resource_Files extends Google_Service_Resource -{ - /** - * Service that performs image detection and annotation for a batch of files. - * Now only "application/pdf", "image/tiff" and "image/gif" are supported. - * - * This service will extract at most 5 (customers can specify which 5 in - * AnnotateFileRequest.pages) frames (gif) or pages (pdf or tiff) from each file - * provided and perform detection and annotation for each image extracted. - * (files.annotate) - * - * @param Google_Service_Vision_BatchAnnotateFilesRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Vision_BatchAnnotateFilesResponse - */ - public function annotate(Google_Service_Vision_BatchAnnotateFilesRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('annotate', array($params), "Google_Service_Vision_BatchAnnotateFilesResponse"); - } - /** - * Run asynchronous image detection and annotation for a list of generic files, - * such as PDF files, which may contain multiple pages and multiple images per - * page. Progress and results can be retrieved through the - * `google.longrunning.Operations` interface. `Operation.metadata` contains - * `OperationMetadata` (metadata). `Operation.response` contains - * `AsyncBatchAnnotateFilesResponse` (results). (files.asyncBatchAnnotate) - * - * @param Google_Service_Vision_AsyncBatchAnnotateFilesRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Vision_Operation - */ - public function asyncBatchAnnotate(Google_Service_Vision_AsyncBatchAnnotateFilesRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('asyncBatchAnnotate', array($params), "Google_Service_Vision_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Resource/Images.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Resource/Images.php deleted file mode 100644 index f2393357..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Resource/Images.php +++ /dev/null @@ -1,63 +0,0 @@ - - * $visionService = new Google_Service_Vision(...); - * $images = $visionService->images; - * - */ -class Google_Service_Vision_Resource_Images extends Google_Service_Resource -{ - /** - * Run image detection and annotation for a batch of images. (images.annotate) - * - * @param Google_Service_Vision_BatchAnnotateImagesRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Vision_BatchAnnotateImagesResponse - */ - public function annotate(Google_Service_Vision_BatchAnnotateImagesRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('annotate', array($params), "Google_Service_Vision_BatchAnnotateImagesResponse"); - } - /** - * Run asynchronous image detection and annotation for a list of images. - * - * Progress and results can be retrieved through the - * `google.longrunning.Operations` interface. `Operation.metadata` contains - * `OperationMetadata` (metadata). `Operation.response` contains - * `AsyncBatchAnnotateImagesResponse` (results). - * - * This service will write image annotation outputs to json files in customer - * GCS bucket, each json file containing BatchAnnotateImagesResponse proto. - * (images.asyncBatchAnnotate) - * - * @param Google_Service_Vision_AsyncBatchAnnotateImagesRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Vision_Operation - */ - public function asyncBatchAnnotate(Google_Service_Vision_AsyncBatchAnnotateImagesRequest $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('asyncBatchAnnotate', array($params), "Google_Service_Vision_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Resource/Locations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Resource/Locations.php deleted file mode 100644 index 648dadd5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Resource/Locations.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $visionService = new Google_Service_Vision(...); - * $locations = $visionService->locations; - * - */ -class Google_Service_Vision_Resource_Locations extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Resource/LocationsOperations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Resource/LocationsOperations.php deleted file mode 100644 index b673130e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Resource/LocationsOperations.php +++ /dev/null @@ -1,43 +0,0 @@ - - * $visionService = new Google_Service_Vision(...); - * $operations = $visionService->operations; - * - */ -class Google_Service_Vision_Resource_LocationsOperations extends Google_Service_Resource -{ - /** - * Gets the latest state of a long-running operation. Clients can use this - * method to poll the operation result at intervals as recommended by the API - * service. (operations.get) - * - * @param string $name The name of the operation resource. - * @param array $optParams Optional parameters. - * @return Google_Service_Vision_Operation - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Vision_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Resource/Operations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Resource/Operations.php deleted file mode 100644 index 0d9cc74e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Resource/Operations.php +++ /dev/null @@ -1,107 +0,0 @@ - - * $visionService = new Google_Service_Vision(...); - * $operations = $visionService->operations; - * - */ -class Google_Service_Vision_Resource_Operations extends Google_Service_Resource -{ - /** - * Starts asynchronous cancellation on a long-running operation. The server - * makes a best effort to cancel the operation, but success is not guaranteed. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or - * other methods to check whether the cancellation succeeded or whether the - * operation completed despite cancellation. On successful cancellation, the - * operation is not deleted; instead, it becomes an operation with an - * Operation.error value with a google.rpc.Status.code of 1, corresponding to - * `Code.CANCELLED`. (operations.cancel) - * - * @param string $name The name of the operation resource to be cancelled. - * @param Google_Service_Vision_CancelOperationRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Vision_VisionEmpty - */ - public function cancel($name, Google_Service_Vision_CancelOperationRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('cancel', array($params), "Google_Service_Vision_VisionEmpty"); - } - /** - * Deletes a long-running operation. This method indicates that the client is no - * longer interested in the operation result. It does not cancel the operation. - * If the server doesn't support this method, it returns - * `google.rpc.Code.UNIMPLEMENTED`. (operations.delete) - * - * @param string $name The name of the operation resource to be deleted. - * @param array $optParams Optional parameters. - * @return Google_Service_Vision_VisionEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Vision_VisionEmpty"); - } - /** - * Gets the latest state of a long-running operation. Clients can use this - * method to poll the operation result at intervals as recommended by the API - * service. (operations.get) - * - * @param string $name The name of the operation resource. - * @param array $optParams Optional parameters. - * @return Google_Service_Vision_Operation - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Vision_Operation"); - } - /** - * Lists operations that match the specified filter in the request. If the - * server doesn't support this method, it returns `UNIMPLEMENTED`. - * - * NOTE: the `name` binding allows API services to override the binding to use - * different resource name schemes, such as `users/operations`. To override the - * binding, API services can add a binding such as - * `"/v1/{name=users}/operations"` to their service configuration. For backwards - * compatibility, the default name includes the operations collection id, - * however overriding users must ensure the name binding is the parent resource, - * without the operations collection id. (operations.listOperations) - * - * @param string $name The name of the operation's parent resource. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The standard list page token. - * @opt_param int pageSize The standard list page size. - * @opt_param string filter The standard list filter. - * @return Google_Service_Vision_ListOperationsResponse - */ - public function listOperations($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Vision_ListOperationsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Resource/Projects.php deleted file mode 100644 index 84b9ef23..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Resource/Projects.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $visionService = new Google_Service_Vision(...); - * $projects = $visionService->projects; - * - */ -class Google_Service_Vision_Resource_Projects extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Resource/ProjectsFiles.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Resource/ProjectsFiles.php deleted file mode 100644 index f5c58ef3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Resource/ProjectsFiles.php +++ /dev/null @@ -1,85 +0,0 @@ - - * $visionService = new Google_Service_Vision(...); - * $files = $visionService->files; - * - */ -class Google_Service_Vision_Resource_ProjectsFiles extends Google_Service_Resource -{ - /** - * Service that performs image detection and annotation for a batch of files. - * Now only "application/pdf", "image/tiff" and "image/gif" are supported. - * - * This service will extract at most 5 (customers can specify which 5 in - * AnnotateFileRequest.pages) frames (gif) or pages (pdf or tiff) from each file - * provided and perform detection and annotation for each image extracted. - * (files.annotate) - * - * @param string $parent Optional. Target project and location to make a call. - * - * Format: `projects/{project-id}/locations/{location-id}`. - * - * If no parent is specified, a region will be chosen automatically. - * - * Supported location-ids: `us`: USA country only, `asia`: East asia - * areas, like Japan, Taiwan, `eu`: The European Union. - * - * Example: `projects/project-A/locations/eu`. - * @param Google_Service_Vision_BatchAnnotateFilesRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Vision_BatchAnnotateFilesResponse - */ - public function annotate($parent, Google_Service_Vision_BatchAnnotateFilesRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('annotate', array($params), "Google_Service_Vision_BatchAnnotateFilesResponse"); - } - /** - * Run asynchronous image detection and annotation for a list of generic files, - * such as PDF files, which may contain multiple pages and multiple images per - * page. Progress and results can be retrieved through the - * `google.longrunning.Operations` interface. `Operation.metadata` contains - * `OperationMetadata` (metadata). `Operation.response` contains - * `AsyncBatchAnnotateFilesResponse` (results). (files.asyncBatchAnnotate) - * - * @param string $parent Optional. Target project and location to make a call. - * - * Format: `projects/{project-id}/locations/{location-id}`. - * - * If no parent is specified, a region will be chosen automatically. - * - * Supported location-ids: `us`: USA country only, `asia`: East asia - * areas, like Japan, Taiwan, `eu`: The European Union. - * - * Example: `projects/project-A/locations/eu`. - * @param Google_Service_Vision_AsyncBatchAnnotateFilesRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Vision_Operation - */ - public function asyncBatchAnnotate($parent, Google_Service_Vision_AsyncBatchAnnotateFilesRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('asyncBatchAnnotate', array($params), "Google_Service_Vision_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Resource/ProjectsImages.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Resource/ProjectsImages.php deleted file mode 100644 index 726a9992..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Resource/ProjectsImages.php +++ /dev/null @@ -1,83 +0,0 @@ - - * $visionService = new Google_Service_Vision(...); - * $images = $visionService->images; - * - */ -class Google_Service_Vision_Resource_ProjectsImages extends Google_Service_Resource -{ - /** - * Run image detection and annotation for a batch of images. (images.annotate) - * - * @param string $parent Optional. Target project and location to make a call. - * - * Format: `projects/{project-id}/locations/{location-id}`. - * - * If no parent is specified, a region will be chosen automatically. - * - * Supported location-ids: `us`: USA country only, `asia`: East asia - * areas, like Japan, Taiwan, `eu`: The European Union. - * - * Example: `projects/project-A/locations/eu`. - * @param Google_Service_Vision_BatchAnnotateImagesRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Vision_BatchAnnotateImagesResponse - */ - public function annotate($parent, Google_Service_Vision_BatchAnnotateImagesRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('annotate', array($params), "Google_Service_Vision_BatchAnnotateImagesResponse"); - } - /** - * Run asynchronous image detection and annotation for a list of images. - * - * Progress and results can be retrieved through the - * `google.longrunning.Operations` interface. `Operation.metadata` contains - * `OperationMetadata` (metadata). `Operation.response` contains - * `AsyncBatchAnnotateImagesResponse` (results). - * - * This service will write image annotation outputs to json files in customer - * GCS bucket, each json file containing BatchAnnotateImagesResponse proto. - * (images.asyncBatchAnnotate) - * - * @param string $parent Optional. Target project and location to make a call. - * - * Format: `projects/{project-id}/locations/{location-id}`. - * - * If no parent is specified, a region will be chosen automatically. - * - * Supported location-ids: `us`: USA country only, `asia`: East asia - * areas, like Japan, Taiwan, `eu`: The European Union. - * - * Example: `projects/project-A/locations/eu`. - * @param Google_Service_Vision_AsyncBatchAnnotateImagesRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Vision_Operation - */ - public function asyncBatchAnnotate($parent, Google_Service_Vision_AsyncBatchAnnotateImagesRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('asyncBatchAnnotate', array($params), "Google_Service_Vision_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Resource/ProjectsLocations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Resource/ProjectsLocations.php deleted file mode 100644 index 73ee9ba5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Resource/ProjectsLocations.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $visionService = new Google_Service_Vision(...); - * $locations = $visionService->locations; - * - */ -class Google_Service_Vision_Resource_ProjectsLocations extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Resource/ProjectsLocationsFiles.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Resource/ProjectsLocationsFiles.php deleted file mode 100644 index d802056a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Resource/ProjectsLocationsFiles.php +++ /dev/null @@ -1,85 +0,0 @@ - - * $visionService = new Google_Service_Vision(...); - * $files = $visionService->files; - * - */ -class Google_Service_Vision_Resource_ProjectsLocationsFiles extends Google_Service_Resource -{ - /** - * Service that performs image detection and annotation for a batch of files. - * Now only "application/pdf", "image/tiff" and "image/gif" are supported. - * - * This service will extract at most 5 (customers can specify which 5 in - * AnnotateFileRequest.pages) frames (gif) or pages (pdf or tiff) from each file - * provided and perform detection and annotation for each image extracted. - * (files.annotate) - * - * @param string $parent Optional. Target project and location to make a call. - * - * Format: `projects/{project-id}/locations/{location-id}`. - * - * If no parent is specified, a region will be chosen automatically. - * - * Supported location-ids: `us`: USA country only, `asia`: East asia - * areas, like Japan, Taiwan, `eu`: The European Union. - * - * Example: `projects/project-A/locations/eu`. - * @param Google_Service_Vision_BatchAnnotateFilesRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Vision_BatchAnnotateFilesResponse - */ - public function annotate($parent, Google_Service_Vision_BatchAnnotateFilesRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('annotate', array($params), "Google_Service_Vision_BatchAnnotateFilesResponse"); - } - /** - * Run asynchronous image detection and annotation for a list of generic files, - * such as PDF files, which may contain multiple pages and multiple images per - * page. Progress and results can be retrieved through the - * `google.longrunning.Operations` interface. `Operation.metadata` contains - * `OperationMetadata` (metadata). `Operation.response` contains - * `AsyncBatchAnnotateFilesResponse` (results). (files.asyncBatchAnnotate) - * - * @param string $parent Optional. Target project and location to make a call. - * - * Format: `projects/{project-id}/locations/{location-id}`. - * - * If no parent is specified, a region will be chosen automatically. - * - * Supported location-ids: `us`: USA country only, `asia`: East asia - * areas, like Japan, Taiwan, `eu`: The European Union. - * - * Example: `projects/project-A/locations/eu`. - * @param Google_Service_Vision_AsyncBatchAnnotateFilesRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Vision_Operation - */ - public function asyncBatchAnnotate($parent, Google_Service_Vision_AsyncBatchAnnotateFilesRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('asyncBatchAnnotate', array($params), "Google_Service_Vision_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Resource/ProjectsLocationsImages.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Resource/ProjectsLocationsImages.php deleted file mode 100644 index 55e31a67..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Resource/ProjectsLocationsImages.php +++ /dev/null @@ -1,83 +0,0 @@ - - * $visionService = new Google_Service_Vision(...); - * $images = $visionService->images; - * - */ -class Google_Service_Vision_Resource_ProjectsLocationsImages extends Google_Service_Resource -{ - /** - * Run image detection and annotation for a batch of images. (images.annotate) - * - * @param string $parent Optional. Target project and location to make a call. - * - * Format: `projects/{project-id}/locations/{location-id}`. - * - * If no parent is specified, a region will be chosen automatically. - * - * Supported location-ids: `us`: USA country only, `asia`: East asia - * areas, like Japan, Taiwan, `eu`: The European Union. - * - * Example: `projects/project-A/locations/eu`. - * @param Google_Service_Vision_BatchAnnotateImagesRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Vision_BatchAnnotateImagesResponse - */ - public function annotate($parent, Google_Service_Vision_BatchAnnotateImagesRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('annotate', array($params), "Google_Service_Vision_BatchAnnotateImagesResponse"); - } - /** - * Run asynchronous image detection and annotation for a list of images. - * - * Progress and results can be retrieved through the - * `google.longrunning.Operations` interface. `Operation.metadata` contains - * `OperationMetadata` (metadata). `Operation.response` contains - * `AsyncBatchAnnotateImagesResponse` (results). - * - * This service will write image annotation outputs to json files in customer - * GCS bucket, each json file containing BatchAnnotateImagesResponse proto. - * (images.asyncBatchAnnotate) - * - * @param string $parent Optional. Target project and location to make a call. - * - * Format: `projects/{project-id}/locations/{location-id}`. - * - * If no parent is specified, a region will be chosen automatically. - * - * Supported location-ids: `us`: USA country only, `asia`: East asia - * areas, like Japan, Taiwan, `eu`: The European Union. - * - * Example: `projects/project-A/locations/eu`. - * @param Google_Service_Vision_AsyncBatchAnnotateImagesRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Vision_Operation - */ - public function asyncBatchAnnotate($parent, Google_Service_Vision_AsyncBatchAnnotateImagesRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('asyncBatchAnnotate', array($params), "Google_Service_Vision_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Resource/ProjectsLocationsOperations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Resource/ProjectsLocationsOperations.php deleted file mode 100644 index 3562081c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Resource/ProjectsLocationsOperations.php +++ /dev/null @@ -1,43 +0,0 @@ - - * $visionService = new Google_Service_Vision(...); - * $operations = $visionService->operations; - * - */ -class Google_Service_Vision_Resource_ProjectsLocationsOperations extends Google_Service_Resource -{ - /** - * Gets the latest state of a long-running operation. Clients can use this - * method to poll the operation result at intervals as recommended by the API - * service. (operations.get) - * - * @param string $name The name of the operation resource. - * @param array $optParams Optional parameters. - * @return Google_Service_Vision_Operation - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Vision_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Resource/ProjectsLocationsProductSets.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Resource/ProjectsLocationsProductSets.php deleted file mode 100644 index 1ca72dde..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Resource/ProjectsLocationsProductSets.php +++ /dev/null @@ -1,215 +0,0 @@ - - * $visionService = new Google_Service_Vision(...); - * $productSets = $visionService->productSets; - * - */ -class Google_Service_Vision_Resource_ProjectsLocationsProductSets extends Google_Service_Resource -{ - /** - * Adds a Product to the specified ProductSet. If the Product is already - * present, no change is made. - * - * One Product can be added to at most 100 ProductSets. - * - * Possible errors: - * - * * Returns NOT_FOUND if the Product or the ProductSet doesn't exist. - * (productSets.addProduct) - * - * @param string $name Required. The resource name for the ProductSet to modify. - * - * Format is: `projects/PROJECT_ID/locations/LOC_ID/productSets/PRODUCT_SET_ID` - * @param Google_Service_Vision_AddProductToProductSetRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Vision_VisionEmpty - */ - public function addProduct($name, Google_Service_Vision_AddProductToProductSetRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('addProduct', array($params), "Google_Service_Vision_VisionEmpty"); - } - /** - * Creates and returns a new ProductSet resource. - * - * Possible errors: - * - * * Returns INVALID_ARGUMENT if display_name is missing, or is longer than - * 4096 characters. (productSets.create) - * - * @param string $parent Required. The project in which the ProductSet should be - * created. - * - * Format is `projects/PROJECT_ID/locations/LOC_ID`. - * @param Google_Service_Vision_ProductSet $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string productSetId A user-supplied resource id for this - * ProductSet. If set, the server will attempt to use this value as the resource - * id. If it is already in use, an error is returned with code ALREADY_EXISTS. - * Must be at most 128 characters long. It cannot contain the character `/`. - * @return Google_Service_Vision_ProductSet - */ - public function create($parent, Google_Service_Vision_ProductSet $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Vision_ProductSet"); - } - /** - * Permanently deletes a ProductSet. Products and ReferenceImages in the - * ProductSet are not deleted. - * - * The actual image files are not deleted from Google Cloud Storage. - * (productSets.delete) - * - * @param string $name Required. Resource name of the ProductSet to delete. - * - * Format is: `projects/PROJECT_ID/locations/LOC_ID/productSets/PRODUCT_SET_ID` - * @param array $optParams Optional parameters. - * @return Google_Service_Vision_VisionEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Vision_VisionEmpty"); - } - /** - * Gets information associated with a ProductSet. - * - * Possible errors: - * - * * Returns NOT_FOUND if the ProductSet does not exist. (productSets.get) - * - * @param string $name Required. Resource name of the ProductSet to get. - * - * Format is: `projects/PROJECT_ID/locations/LOC_ID/productSets/PRODUCT_SET_ID` - * @param array $optParams Optional parameters. - * @return Google_Service_Vision_ProductSet - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Vision_ProductSet"); - } - /** - * Asynchronous API that imports a list of reference images to specified product - * sets based on a list of image information. - * - * The google.longrunning.Operation API can be used to keep track of the - * progress and results of the request. `Operation.metadata` contains - * `BatchOperationMetadata`. (progress) `Operation.response` contains - * `ImportProductSetsResponse`. (results) - * - * The input source of this method is a csv file on Google Cloud Storage. For - * the format of the csv file please see - * ImportProductSetsGcsSource.csv_file_uri. (productSets.import) - * - * @param string $parent Required. The project in which the ProductSets should - * be imported. - * - * Format is `projects/PROJECT_ID/locations/LOC_ID`. - * @param Google_Service_Vision_ImportProductSetsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Vision_Operation - */ - public function import($parent, Google_Service_Vision_ImportProductSetsRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('import', array($params), "Google_Service_Vision_Operation"); - } - /** - * Lists ProductSets in an unspecified order. - * - * Possible errors: - * - * * Returns INVALID_ARGUMENT if page_size is greater than 100, or less than - * 1. (productSets.listProjectsLocationsProductSets) - * - * @param string $parent Required. The project from which ProductSets should be - * listed. - * - * Format is `projects/PROJECT_ID/locations/LOC_ID`. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The next_page_token returned from a previous List - * request, if any. - * @opt_param int pageSize The maximum number of items to return. Default 10, - * maximum 100. - * @return Google_Service_Vision_ListProductSetsResponse - */ - public function listProjectsLocationsProductSets($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Vision_ListProductSetsResponse"); - } - /** - * Makes changes to a ProductSet resource. Only display_name can be updated - * currently. - * - * Possible errors: - * - * * Returns NOT_FOUND if the ProductSet does not exist. * Returns - * INVALID_ARGUMENT if display_name is present in update_mask but missing from - * the request or longer than 4096 characters. (productSets.patch) - * - * @param string $name The resource name of the ProductSet. - * - * Format is: `projects/PROJECT_ID/locations/LOC_ID/productSets/PRODUCT_SET_ID`. - * - * This field is ignored when creating a ProductSet. - * @param Google_Service_Vision_ProductSet $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask The FieldMask that specifies which fields to - * update. If update_mask isn't specified, all mutable fields are to be updated. - * Valid mask path is `display_name`. - * @return Google_Service_Vision_ProductSet - */ - public function patch($name, Google_Service_Vision_ProductSet $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Vision_ProductSet"); - } - /** - * Removes a Product from the specified ProductSet. (productSets.removeProduct) - * - * @param string $name Required. The resource name for the ProductSet to modify. - * - * Format is: `projects/PROJECT_ID/locations/LOC_ID/productSets/PRODUCT_SET_ID` - * @param Google_Service_Vision_RemoveProductFromProductSetRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Vision_VisionEmpty - */ - public function removeProduct($name, Google_Service_Vision_RemoveProductFromProductSetRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('removeProduct', array($params), "Google_Service_Vision_VisionEmpty"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Resource/ProjectsLocationsProductSetsProducts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Resource/ProjectsLocationsProductSetsProducts.php deleted file mode 100644 index 8fd326d1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Resource/ProjectsLocationsProductSetsProducts.php +++ /dev/null @@ -1,55 +0,0 @@ - - * $visionService = new Google_Service_Vision(...); - * $products = $visionService->products; - * - */ -class Google_Service_Vision_Resource_ProjectsLocationsProductSetsProducts extends Google_Service_Resource -{ - /** - * Lists the Products in a ProductSet, in an unspecified order. If the - * ProductSet does not exist, the products field of the response will be empty. - * - * Possible errors: - * - * * Returns INVALID_ARGUMENT if page_size is greater than 100 or less than 1. - * (products.listProjectsLocationsProductSetsProducts) - * - * @param string $name Required. The ProductSet resource for which to retrieve - * Products. - * - * Format is: `projects/PROJECT_ID/locations/LOC_ID/productSets/PRODUCT_SET_ID` - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The next_page_token returned from a previous List - * request, if any. - * @opt_param int pageSize The maximum number of items to return. Default 10, - * maximum 100. - * @return Google_Service_Vision_ListProductsInProductSetResponse - */ - public function listProjectsLocationsProductSetsProducts($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Vision_ListProductsInProductSetResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Resource/ProjectsLocationsProducts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Resource/ProjectsLocationsProducts.php deleted file mode 100644 index b78984ca..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Resource/ProjectsLocationsProducts.php +++ /dev/null @@ -1,195 +0,0 @@ - - * $visionService = new Google_Service_Vision(...); - * $products = $visionService->products; - * - */ -class Google_Service_Vision_Resource_ProjectsLocationsProducts extends Google_Service_Resource -{ - /** - * Creates and returns a new product resource. - * - * Possible errors: - * - * * Returns INVALID_ARGUMENT if display_name is missing or longer than 4096 - * characters. * Returns INVALID_ARGUMENT if description is longer than 4096 - * characters. * Returns INVALID_ARGUMENT if product_category is missing or - * invalid. (products.create) - * - * @param string $parent Required. The project in which the Product should be - * created. - * - * Format is `projects/PROJECT_ID/locations/LOC_ID`. - * @param Google_Service_Vision_Product $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string productId A user-supplied resource id for this Product. If - * set, the server will attempt to use this value as the resource id. If it is - * already in use, an error is returned with code ALREADY_EXISTS. Must be at - * most 128 characters long. It cannot contain the character `/`. - * @return Google_Service_Vision_Product - */ - public function create($parent, Google_Service_Vision_Product $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Vision_Product"); - } - /** - * Permanently deletes a product and its reference images. - * - * Metadata of the product and all its images will be deleted right away, but - * search queries against ProductSets containing the product may still work - * until all related caches are refreshed. (products.delete) - * - * @param string $name Required. Resource name of product to delete. - * - * Format is: `projects/PROJECT_ID/locations/LOC_ID/products/PRODUCT_ID` - * @param array $optParams Optional parameters. - * @return Google_Service_Vision_VisionEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Vision_VisionEmpty"); - } - /** - * Gets information associated with a Product. - * - * Possible errors: - * - * * Returns NOT_FOUND if the Product does not exist. (products.get) - * - * @param string $name Required. Resource name of the Product to get. - * - * Format is: `projects/PROJECT_ID/locations/LOC_ID/products/PRODUCT_ID` - * @param array $optParams Optional parameters. - * @return Google_Service_Vision_Product - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Vision_Product"); - } - /** - * Lists products in an unspecified order. - * - * Possible errors: - * - * * Returns INVALID_ARGUMENT if page_size is greater than 100 or less than 1. - * (products.listProjectsLocationsProducts) - * - * @param string $parent Required. The project OR ProductSet from which Products - * should be listed. - * - * Format: `projects/PROJECT_ID/locations/LOC_ID` - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The next_page_token returned from a previous List - * request, if any. - * @opt_param int pageSize The maximum number of items to return. Default 10, - * maximum 100. - * @return Google_Service_Vision_ListProductsResponse - */ - public function listProjectsLocationsProducts($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Vision_ListProductsResponse"); - } - /** - * Makes changes to a Product resource. Only the `display_name`, `description`, - * and `labels` fields can be updated right now. - * - * If labels are updated, the change will not be reflected in queries until the - * next index time. - * - * Possible errors: - * - * * Returns NOT_FOUND if the Product does not exist. * Returns INVALID_ARGUMENT - * if display_name is present in update_mask but is missing from the request - * or longer than 4096 characters. * Returns INVALID_ARGUMENT if description is - * present in update_mask but is longer than 4096 characters. * Returns - * INVALID_ARGUMENT if product_category is present in update_mask. - * (products.patch) - * - * @param string $name The resource name of the product. - * - * Format is: `projects/PROJECT_ID/locations/LOC_ID/products/PRODUCT_ID`. - * - * This field is ignored when creating a product. - * @param Google_Service_Vision_Product $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask The FieldMask that specifies which fields to - * update. If update_mask isn't specified, all mutable fields are to be updated. - * Valid mask paths include `product_labels`, `display_name`, and `description`. - * @return Google_Service_Vision_Product - */ - public function patch($name, Google_Service_Vision_Product $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_Vision_Product"); - } - /** - * Asynchronous API to delete all Products in a ProductSet or all Products that - * are in no ProductSet. - * - * If a Product is a member of the specified ProductSet in addition to other - * ProductSets, the Product will still be deleted. - * - * It is recommended to not delete the specified ProductSet until after this - * operation has completed. It is also recommended to not add any of the - * Products involved in the batch delete to a new ProductSet while this - * operation is running because those Products may still end up deleted. - * - * It's not possible to undo the PurgeProducts operation. Therefore, it is - * recommended to keep the csv files used in ImportProductSets (if that was how - * you originally built the Product Set) before starting PurgeProducts, in case - * you need to re-import the data after deletion. - * - * If the plan is to purge all of the Products from a ProductSet and then re-use - * the empty ProductSet to re-import new Products into the empty ProductSet, you - * must wait until the PurgeProducts operation has finished for that ProductSet. - * - * The google.longrunning.Operation API can be used to keep track of the - * progress and results of the request. `Operation.metadata` contains - * `BatchOperationMetadata`. (progress) (products.purge) - * - * @param string $parent Required. The project and location in which the - * Products should be deleted. - * - * Format is `projects/PROJECT_ID/locations/LOC_ID`. - * @param Google_Service_Vision_PurgeProductsRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Vision_Operation - */ - public function purge($parent, Google_Service_Vision_PurgeProductsRequest $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('purge', array($params), "Google_Service_Vision_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Resource/ProjectsLocationsProductsReferenceImages.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Resource/ProjectsLocationsProductsReferenceImages.php deleted file mode 100644 index d7e57dd9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Resource/ProjectsLocationsProductsReferenceImages.php +++ /dev/null @@ -1,148 +0,0 @@ - - * $visionService = new Google_Service_Vision(...); - * $referenceImages = $visionService->referenceImages; - * - */ -class Google_Service_Vision_Resource_ProjectsLocationsProductsReferenceImages extends Google_Service_Resource -{ - /** - * Creates and returns a new ReferenceImage resource. - * - * The `bounding_poly` field is optional. If `bounding_poly` is not specified, - * the system will try to detect regions of interest in the image that are - * compatible with the product_category on the parent product. If it is - * specified, detection is ALWAYS skipped. The system converts polygons into - * non-rotated rectangles. - * - * Note that the pipeline will resize the image if the image resolution is too - * large to process (above 50MP). - * - * Possible errors: - * - * * Returns INVALID_ARGUMENT if the image_uri is missing or longer than 4096 - * characters. * Returns INVALID_ARGUMENT if the product does not exist. * - * Returns INVALID_ARGUMENT if bounding_poly is not provided, and nothing - * compatible with the parent product's product_category is detected. * Returns - * INVALID_ARGUMENT if bounding_poly contains more than 10 polygons. - * (referenceImages.create) - * - * @param string $parent Required. Resource name of the product in which to - * create the reference image. - * - * Format is `projects/PROJECT_ID/locations/LOC_ID/products/PRODUCT_ID`. - * @param Google_Service_Vision_ReferenceImage $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string referenceImageId A user-supplied resource id for the - * ReferenceImage to be added. If set, the server will attempt to use this value - * as the resource id. If it is already in use, an error is returned with code - * ALREADY_EXISTS. Must be at most 128 characters long. It cannot contain the - * character `/`. - * @return Google_Service_Vision_ReferenceImage - */ - public function create($parent, Google_Service_Vision_ReferenceImage $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_Vision_ReferenceImage"); - } - /** - * Permanently deletes a reference image. - * - * The image metadata will be deleted right away, but search queries against - * ProductSets containing the image may still work until all related caches are - * refreshed. - * - * The actual image files are not deleted from Google Cloud Storage. - * (referenceImages.delete) - * - * @param string $name Required. The resource name of the reference image to - * delete. - * - * Format is: - * - * `projects/PROJECT_ID/locations/LOC_ID/products/PRODUCT_ID/referenceImages/IMA - * GE_ID` - * @param array $optParams Optional parameters. - * @return Google_Service_Vision_VisionEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_Vision_VisionEmpty"); - } - /** - * Gets information associated with a ReferenceImage. - * - * Possible errors: - * - * * Returns NOT_FOUND if the specified image does not exist. - * (referenceImages.get) - * - * @param string $name Required. The resource name of the ReferenceImage to get. - * - * Format is: - * - * `projects/PROJECT_ID/locations/LOC_ID/products/PRODUCT_ID/referenceImages/IMA - * GE_ID`. - * @param array $optParams Optional parameters. - * @return Google_Service_Vision_ReferenceImage - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Vision_ReferenceImage"); - } - /** - * Lists reference images. - * - * Possible errors: - * - * * Returns NOT_FOUND if the parent product does not exist. * Returns - * INVALID_ARGUMENT if the page_size is greater than 100, or less than 1. - * (referenceImages.listProjectsLocationsProductsReferenceImages) - * - * @param string $parent Required. Resource name of the product containing the - * reference images. - * - * Format is `projects/PROJECT_ID/locations/LOC_ID/products/PRODUCT_ID`. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A token identifying a page of results to be - * returned. This is the value of `nextPageToken` returned in a previous - * reference image list request. - * - * Defaults to the first page if not specified. - * @opt_param int pageSize The maximum number of items to return. Default 10, - * maximum 100. - * @return Google_Service_Vision_ListReferenceImagesResponse - */ - public function listProjectsLocationsProductsReferenceImages($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Vision_ListReferenceImagesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Resource/ProjectsOperations.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Resource/ProjectsOperations.php deleted file mode 100644 index 43dae9f3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Resource/ProjectsOperations.php +++ /dev/null @@ -1,43 +0,0 @@ - - * $visionService = new Google_Service_Vision(...); - * $operations = $visionService->operations; - * - */ -class Google_Service_Vision_Resource_ProjectsOperations extends Google_Service_Resource -{ - /** - * Gets the latest state of a long-running operation. Clients can use this - * method to poll the operation result at intervals as recommended by the API - * service. (operations.get) - * - * @param string $name The name of the operation resource. - * @param array $optParams Optional parameters. - * @return Google_Service_Vision_Operation - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Vision_Operation"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Result.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Result.php deleted file mode 100644 index d8a75bb6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Result.php +++ /dev/null @@ -1,55 +0,0 @@ -image = $image; - } - public function getImage() - { - return $this->image; - } - /** - * @param Google_Service_Vision_Product - */ - public function setProduct(Google_Service_Vision_Product $product) - { - $this->product = $product; - } - /** - * @return Google_Service_Vision_Product - */ - public function getProduct() - { - return $this->product; - } - public function setScore($score) - { - $this->score = $score; - } - public function getScore() - { - return $this->score; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/SafeSearchAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/SafeSearchAnnotation.php deleted file mode 100644 index fb613b62..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/SafeSearchAnnotation.php +++ /dev/null @@ -1,66 +0,0 @@ -adult = $adult; - } - public function getAdult() - { - return $this->adult; - } - public function setMedical($medical) - { - $this->medical = $medical; - } - public function getMedical() - { - return $this->medical; - } - public function setRacy($racy) - { - $this->racy = $racy; - } - public function getRacy() - { - return $this->racy; - } - public function setSpoof($spoof) - { - $this->spoof = $spoof; - } - public function getSpoof() - { - return $this->spoof; - } - public function setViolence($violence) - { - $this->violence = $violence; - } - public function getViolence() - { - return $this->violence; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Status.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Status.php deleted file mode 100644 index 4ead4159..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Status.php +++ /dev/null @@ -1,49 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDetails($details) - { - $this->details = $details; - } - public function getDetails() - { - return $this->details; - } - public function setMessage($message) - { - $this->message = $message; - } - public function getMessage() - { - return $this->message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Symbol.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Symbol.php deleted file mode 100644 index 03b2e814..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Symbol.php +++ /dev/null @@ -1,71 +0,0 @@ -boundingBox = $boundingBox; - } - /** - * @return Google_Service_Vision_BoundingPoly - */ - public function getBoundingBox() - { - return $this->boundingBox; - } - public function setConfidence($confidence) - { - $this->confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - /** - * @param Google_Service_Vision_TextProperty - */ - public function setProperty(Google_Service_Vision_TextProperty $property) - { - $this->property = $property; - } - /** - * @return Google_Service_Vision_TextProperty - */ - public function getProperty() - { - return $this->property; - } - public function setText($text) - { - $this->text = $text; - } - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/TextAnnotation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/TextAnnotation.php deleted file mode 100644 index c4ae9fb2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/TextAnnotation.php +++ /dev/null @@ -1,47 +0,0 @@ -pages = $pages; - } - /** - * @return Google_Service_Vision_Page - */ - public function getPages() - { - return $this->pages; - } - public function setText($text) - { - $this->text = $text; - } - public function getText() - { - return $this->text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/TextProperty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/TextProperty.php deleted file mode 100644 index fab75a34..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/TextProperty.php +++ /dev/null @@ -1,54 +0,0 @@ -detectedBreak = $detectedBreak; - } - /** - * @return Google_Service_Vision_DetectedBreak - */ - public function getDetectedBreak() - { - return $this->detectedBreak; - } - /** - * @param Google_Service_Vision_DetectedLanguage - */ - public function setDetectedLanguages($detectedLanguages) - { - $this->detectedLanguages = $detectedLanguages; - } - /** - * @return Google_Service_Vision_DetectedLanguage - */ - public function getDetectedLanguages() - { - return $this->detectedLanguages; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Vertex.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Vertex.php deleted file mode 100644 index 9edcfeb3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Vertex.php +++ /dev/null @@ -1,39 +0,0 @@ -x = $x; - } - public function getX() - { - return $this->x; - } - public function setY($y) - { - $this->y = $y; - } - public function getY() - { - return $this->y; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/VisionEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/VisionEmpty.php deleted file mode 100644 index efc96bbd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/VisionEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -bestGuessLabels = $bestGuessLabels; - } - /** - * @return Google_Service_Vision_WebLabel - */ - public function getBestGuessLabels() - { - return $this->bestGuessLabels; - } - /** - * @param Google_Service_Vision_WebImage - */ - public function setFullMatchingImages($fullMatchingImages) - { - $this->fullMatchingImages = $fullMatchingImages; - } - /** - * @return Google_Service_Vision_WebImage - */ - public function getFullMatchingImages() - { - return $this->fullMatchingImages; - } - /** - * @param Google_Service_Vision_WebPage - */ - public function setPagesWithMatchingImages($pagesWithMatchingImages) - { - $this->pagesWithMatchingImages = $pagesWithMatchingImages; - } - /** - * @return Google_Service_Vision_WebPage - */ - public function getPagesWithMatchingImages() - { - return $this->pagesWithMatchingImages; - } - /** - * @param Google_Service_Vision_WebImage - */ - public function setPartialMatchingImages($partialMatchingImages) - { - $this->partialMatchingImages = $partialMatchingImages; - } - /** - * @return Google_Service_Vision_WebImage - */ - public function getPartialMatchingImages() - { - return $this->partialMatchingImages; - } - /** - * @param Google_Service_Vision_WebImage - */ - public function setVisuallySimilarImages($visuallySimilarImages) - { - $this->visuallySimilarImages = $visuallySimilarImages; - } - /** - * @return Google_Service_Vision_WebImage - */ - public function getVisuallySimilarImages() - { - return $this->visuallySimilarImages; - } - /** - * @param Google_Service_Vision_WebEntity - */ - public function setWebEntities($webEntities) - { - $this->webEntities = $webEntities; - } - /** - * @return Google_Service_Vision_WebEntity - */ - public function getWebEntities() - { - return $this->webEntities; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/WebDetectionParams.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/WebDetectionParams.php deleted file mode 100644 index 8e90193c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/WebDetectionParams.php +++ /dev/null @@ -1,30 +0,0 @@ -includeGeoResults = $includeGeoResults; - } - public function getIncludeGeoResults() - { - return $this->includeGeoResults; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/WebEntity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/WebEntity.php deleted file mode 100644 index e414314c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/WebEntity.php +++ /dev/null @@ -1,48 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setEntityId($entityId) - { - $this->entityId = $entityId; - } - public function getEntityId() - { - return $this->entityId; - } - public function setScore($score) - { - $this->score = $score; - } - public function getScore() - { - return $this->score; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/WebImage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/WebImage.php deleted file mode 100644 index 1920a201..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/WebImage.php +++ /dev/null @@ -1,39 +0,0 @@ -score = $score; - } - public function getScore() - { - return $this->score; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/WebLabel.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/WebLabel.php deleted file mode 100644 index b80d1312..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/WebLabel.php +++ /dev/null @@ -1,39 +0,0 @@ -label = $label; - } - public function getLabel() - { - return $this->label; - } - public function setLanguageCode($languageCode) - { - $this->languageCode = $languageCode; - } - public function getLanguageCode() - { - return $this->languageCode; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/WebPage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/WebPage.php deleted file mode 100644 index faaa3de1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/WebPage.php +++ /dev/null @@ -1,81 +0,0 @@ -fullMatchingImages = $fullMatchingImages; - } - /** - * @return Google_Service_Vision_WebImage - */ - public function getFullMatchingImages() - { - return $this->fullMatchingImages; - } - public function setPageTitle($pageTitle) - { - $this->pageTitle = $pageTitle; - } - public function getPageTitle() - { - return $this->pageTitle; - } - /** - * @param Google_Service_Vision_WebImage - */ - public function setPartialMatchingImages($partialMatchingImages) - { - $this->partialMatchingImages = $partialMatchingImages; - } - /** - * @return Google_Service_Vision_WebImage - */ - public function getPartialMatchingImages() - { - return $this->partialMatchingImages; - } - public function setScore($score) - { - $this->score = $score; - } - public function getScore() - { - return $this->score; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Word.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Word.php deleted file mode 100644 index 685bbfc7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Vision/Word.php +++ /dev/null @@ -1,79 +0,0 @@ -boundingBox = $boundingBox; - } - /** - * @return Google_Service_Vision_BoundingPoly - */ - public function getBoundingBox() - { - return $this->boundingBox; - } - public function setConfidence($confidence) - { - $this->confidence = $confidence; - } - public function getConfidence() - { - return $this->confidence; - } - /** - * @param Google_Service_Vision_TextProperty - */ - public function setProperty(Google_Service_Vision_TextProperty $property) - { - $this->property = $property; - } - /** - * @return Google_Service_Vision_TextProperty - */ - public function getProperty() - { - return $this->property; - } - /** - * @param Google_Service_Vision_Symbol - */ - public function setSymbols($symbols) - { - $this->symbols = $symbols; - } - /** - * @return Google_Service_Vision_Symbol - */ - public function getSymbols() - { - return $this->symbols; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner.php deleted file mode 100644 index 403b652f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner.php +++ /dev/null @@ -1,278 +0,0 @@ - - * Scans your Compute and App Engine apps for common web vulnerabilities.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_WebSecurityScanner extends Google_Service -{ - /** View and manage your data across Google Cloud Platform services. */ - const CLOUD_PLATFORM = - "https://www.googleapis.com/auth/cloud-platform"; - - public $projects_scanConfigs; - public $projects_scanConfigs_scanRuns; - public $projects_scanConfigs_scanRuns_crawledUrls; - public $projects_scanConfigs_scanRuns_findingTypeStats; - public $projects_scanConfigs_scanRuns_findings; - - /** - * Constructs the internal representation of the WebSecurityScanner service. - * - * @param Google_Client $client - */ - public function __construct(Google_Client $client) - { - parent::__construct($client); - $this->rootUrl = 'https://websecurityscanner.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1alpha'; - $this->serviceName = 'websecurityscanner'; - - $this->projects_scanConfigs = new Google_Service_WebSecurityScanner_Resource_ProjectsScanConfigs( - $this, - $this->serviceName, - 'scanConfigs', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1alpha/{+parent}/scanConfigs', - 'httpMethod' => 'POST', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'v1alpha/{+name}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'v1alpha/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1alpha/{+parent}/scanConfigs', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'patch' => array( - 'path' => 'v1alpha/{+name}', - 'httpMethod' => 'PATCH', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'updateMask' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'start' => array( - 'path' => 'v1alpha/{+name}:start', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_scanConfigs_scanRuns = new Google_Service_WebSecurityScanner_Resource_ProjectsScanConfigsScanRuns( - $this, - $this->serviceName, - 'scanRuns', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1alpha/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1alpha/{+parent}/scanRuns', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ),'stop' => array( - 'path' => 'v1alpha/{+name}:stop', - 'httpMethod' => 'POST', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_scanConfigs_scanRuns_crawledUrls = new Google_Service_WebSecurityScanner_Resource_ProjectsScanConfigsScanRunsCrawledUrls( - $this, - $this->serviceName, - 'crawledUrls', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1alpha/{+parent}/crawledUrls', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->projects_scanConfigs_scanRuns_findingTypeStats = new Google_Service_WebSecurityScanner_Resource_ProjectsScanConfigsScanRunsFindingTypeStats( - $this, - $this->serviceName, - 'findingTypeStats', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1alpha/{+parent}/findingTypeStats', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->projects_scanConfigs_scanRuns_findings = new Google_Service_WebSecurityScanner_Resource_ProjectsScanConfigsScanRunsFindings( - $this, - $this->serviceName, - 'findings', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1alpha/{+name}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'name' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'v1alpha/{+parent}/findings', - 'httpMethod' => 'GET', - 'parameters' => array( - 'parent' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/Authentication.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/Authentication.php deleted file mode 100644 index 89a36825..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/Authentication.php +++ /dev/null @@ -1,53 +0,0 @@ -customAccount = $customAccount; - } - /** - * @return Google_Service_WebSecurityScanner_CustomAccount - */ - public function getCustomAccount() - { - return $this->customAccount; - } - /** - * @param Google_Service_WebSecurityScanner_GoogleAccount - */ - public function setGoogleAccount(Google_Service_WebSecurityScanner_GoogleAccount $googleAccount) - { - $this->googleAccount = $googleAccount; - } - /** - * @return Google_Service_WebSecurityScanner_GoogleAccount - */ - public function getGoogleAccount() - { - return $this->googleAccount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/CrawledUrl.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/CrawledUrl.php deleted file mode 100644 index 03b85942..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/CrawledUrl.php +++ /dev/null @@ -1,48 +0,0 @@ -body = $body; - } - public function getBody() - { - return $this->body; - } - public function setHttpMethod($httpMethod) - { - $this->httpMethod = $httpMethod; - } - public function getHttpMethod() - { - return $this->httpMethod; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/CustomAccount.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/CustomAccount.php deleted file mode 100644 index 2babdb81..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/CustomAccount.php +++ /dev/null @@ -1,48 +0,0 @@ -loginUrl = $loginUrl; - } - public function getLoginUrl() - { - return $this->loginUrl; - } - public function setPassword($password) - { - $this->password = $password; - } - public function getPassword() - { - return $this->password; - } - public function setUsername($username) - { - $this->username = $username; - } - public function getUsername() - { - return $this->username; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/Finding.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/Finding.php deleted file mode 100644 index fbd2779a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/Finding.php +++ /dev/null @@ -1,191 +0,0 @@ -body = $body; - } - public function getBody() - { - return $this->body; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setFinalUrl($finalUrl) - { - $this->finalUrl = $finalUrl; - } - public function getFinalUrl() - { - return $this->finalUrl; - } - public function setFindingType($findingType) - { - $this->findingType = $findingType; - } - public function getFindingType() - { - return $this->findingType; - } - public function setFrameUrl($frameUrl) - { - $this->frameUrl = $frameUrl; - } - public function getFrameUrl() - { - return $this->frameUrl; - } - public function setFuzzedUrl($fuzzedUrl) - { - $this->fuzzedUrl = $fuzzedUrl; - } - public function getFuzzedUrl() - { - return $this->fuzzedUrl; - } - public function setHttpMethod($httpMethod) - { - $this->httpMethod = $httpMethod; - } - public function getHttpMethod() - { - return $this->httpMethod; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_WebSecurityScanner_OutdatedLibrary - */ - public function setOutdatedLibrary(Google_Service_WebSecurityScanner_OutdatedLibrary $outdatedLibrary) - { - $this->outdatedLibrary = $outdatedLibrary; - } - /** - * @return Google_Service_WebSecurityScanner_OutdatedLibrary - */ - public function getOutdatedLibrary() - { - return $this->outdatedLibrary; - } - public function setReproductionUrl($reproductionUrl) - { - $this->reproductionUrl = $reproductionUrl; - } - public function getReproductionUrl() - { - return $this->reproductionUrl; - } - public function setTrackingId($trackingId) - { - $this->trackingId = $trackingId; - } - public function getTrackingId() - { - return $this->trackingId; - } - /** - * @param Google_Service_WebSecurityScanner_ViolatingResource - */ - public function setViolatingResource(Google_Service_WebSecurityScanner_ViolatingResource $violatingResource) - { - $this->violatingResource = $violatingResource; - } - /** - * @return Google_Service_WebSecurityScanner_ViolatingResource - */ - public function getViolatingResource() - { - return $this->violatingResource; - } - /** - * @param Google_Service_WebSecurityScanner_VulnerableHeaders - */ - public function setVulnerableHeaders(Google_Service_WebSecurityScanner_VulnerableHeaders $vulnerableHeaders) - { - $this->vulnerableHeaders = $vulnerableHeaders; - } - /** - * @return Google_Service_WebSecurityScanner_VulnerableHeaders - */ - public function getVulnerableHeaders() - { - return $this->vulnerableHeaders; - } - /** - * @param Google_Service_WebSecurityScanner_VulnerableParameters - */ - public function setVulnerableParameters(Google_Service_WebSecurityScanner_VulnerableParameters $vulnerableParameters) - { - $this->vulnerableParameters = $vulnerableParameters; - } - /** - * @return Google_Service_WebSecurityScanner_VulnerableParameters - */ - public function getVulnerableParameters() - { - return $this->vulnerableParameters; - } - /** - * @param Google_Service_WebSecurityScanner_Xss - */ - public function setXss(Google_Service_WebSecurityScanner_Xss $xss) - { - $this->xss = $xss; - } - /** - * @return Google_Service_WebSecurityScanner_Xss - */ - public function getXss() - { - return $this->xss; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/FindingTypeStats.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/FindingTypeStats.php deleted file mode 100644 index d268fd47..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/FindingTypeStats.php +++ /dev/null @@ -1,39 +0,0 @@ -findingCount = $findingCount; - } - public function getFindingCount() - { - return $this->findingCount; - } - public function setFindingType($findingType) - { - $this->findingType = $findingType; - } - public function getFindingType() - { - return $this->findingType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/GoogleAccount.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/GoogleAccount.php deleted file mode 100644 index 20dedaab..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/GoogleAccount.php +++ /dev/null @@ -1,39 +0,0 @@ -password = $password; - } - public function getPassword() - { - return $this->password; - } - public function setUsername($username) - { - $this->username = $username; - } - public function getUsername() - { - return $this->username; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/Header.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/Header.php deleted file mode 100644 index 36a88466..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/Header.php +++ /dev/null @@ -1,39 +0,0 @@ -name = $name; - } - public function getName() - { - return $this->name; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/ListCrawledUrlsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/ListCrawledUrlsResponse.php deleted file mode 100644 index 1dbb7ca1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/ListCrawledUrlsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -crawledUrls = $crawledUrls; - } - /** - * @return Google_Service_WebSecurityScanner_CrawledUrl - */ - public function getCrawledUrls() - { - return $this->crawledUrls; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/ListFindingTypeStatsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/ListFindingTypeStatsResponse.php deleted file mode 100644 index f7c97224..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/ListFindingTypeStatsResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -findingTypeStats = $findingTypeStats; - } - /** - * @return Google_Service_WebSecurityScanner_FindingTypeStats - */ - public function getFindingTypeStats() - { - return $this->findingTypeStats; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/ListFindingsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/ListFindingsResponse.php deleted file mode 100644 index e079ded0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/ListFindingsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -findings = $findings; - } - /** - * @return Google_Service_WebSecurityScanner_Finding - */ - public function getFindings() - { - return $this->findings; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/ListScanConfigsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/ListScanConfigsResponse.php deleted file mode 100644 index 07796cea..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/ListScanConfigsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_WebSecurityScanner_ScanConfig - */ - public function setScanConfigs($scanConfigs) - { - $this->scanConfigs = $scanConfigs; - } - /** - * @return Google_Service_WebSecurityScanner_ScanConfig - */ - public function getScanConfigs() - { - return $this->scanConfigs; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/ListScanRunsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/ListScanRunsResponse.php deleted file mode 100644 index 91fdcf16..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/ListScanRunsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_WebSecurityScanner_ScanRun - */ - public function setScanRuns($scanRuns) - { - $this->scanRuns = $scanRuns; - } - /** - * @return Google_Service_WebSecurityScanner_ScanRun - */ - public function getScanRuns() - { - return $this->scanRuns; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/OutdatedLibrary.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/OutdatedLibrary.php deleted file mode 100644 index 67e8bbb3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/OutdatedLibrary.php +++ /dev/null @@ -1,49 +0,0 @@ -learnMoreUrls = $learnMoreUrls; - } - public function getLearnMoreUrls() - { - return $this->learnMoreUrls; - } - public function setLibraryName($libraryName) - { - $this->libraryName = $libraryName; - } - public function getLibraryName() - { - return $this->libraryName; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/Resource/Projects.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/Resource/Projects.php deleted file mode 100644 index 476d4b7d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/Resource/Projects.php +++ /dev/null @@ -1,28 +0,0 @@ - - * $websecurityscannerService = new Google_Service_WebSecurityScanner(...); - * $projects = $websecurityscannerService->projects; - * - */ -class Google_Service_WebSecurityScanner_Resource_Projects extends Google_Service_Resource -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/Resource/ProjectsScanConfigs.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/Resource/ProjectsScanConfigs.php deleted file mode 100644 index 89eafadc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/Resource/ProjectsScanConfigs.php +++ /dev/null @@ -1,133 +0,0 @@ - - * $websecurityscannerService = new Google_Service_WebSecurityScanner(...); - * $scanConfigs = $websecurityscannerService->scanConfigs; - * - */ -class Google_Service_WebSecurityScanner_Resource_ProjectsScanConfigs extends Google_Service_Resource -{ - /** - * Creates a new ScanConfig. (scanConfigs.create) - * - * @param string $parent Required. The parent resource name where the scan is - * created, which should be a project resource name in the format - * 'projects/{projectId}'. - * @param Google_Service_WebSecurityScanner_ScanConfig $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_WebSecurityScanner_ScanConfig - */ - public function create($parent, Google_Service_WebSecurityScanner_ScanConfig $postBody, $optParams = array()) - { - $params = array('parent' => $parent, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_WebSecurityScanner_ScanConfig"); - } - /** - * Deletes an existing ScanConfig and its child resources. (scanConfigs.delete) - * - * @param string $name Required. The resource name of the ScanConfig to be - * deleted. The name follows the format of - * 'projects/{projectId}/scanConfigs/{scanConfigId}'. - * @param array $optParams Optional parameters. - * @return Google_Service_WebSecurityScanner_WebsecurityscannerEmpty - */ - public function delete($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_WebSecurityScanner_WebsecurityscannerEmpty"); - } - /** - * Gets a ScanConfig. (scanConfigs.get) - * - * @param string $name Required. The resource name of the ScanConfig to be - * returned. The name follows the format of - * 'projects/{projectId}/scanConfigs/{scanConfigId}'. - * @param array $optParams Optional parameters. - * @return Google_Service_WebSecurityScanner_ScanConfig - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_WebSecurityScanner_ScanConfig"); - } - /** - * Lists ScanConfigs under a given project. - * (scanConfigs.listProjectsScanConfigs) - * - * @param string $parent Required. The parent resource name, which should be a - * project resource name in the format 'projects/{projectId}'. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A token identifying a page of results to be - * returned. This should be a `next_page_token` value returned from a previous - * List request. If unspecified, the first page of results is returned. - * @opt_param int pageSize The maximum number of ScanConfigs to return, can be - * limited by server. If not specified or not positive, the implementation will - * select a reasonable value. - * @return Google_Service_WebSecurityScanner_ListScanConfigsResponse - */ - public function listProjectsScanConfigs($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_WebSecurityScanner_ListScanConfigsResponse"); - } - /** - * Updates a ScanConfig. This method support partial update of a ScanConfig. - * (scanConfigs.patch) - * - * @param string $name The resource name of the ScanConfig. The name follows the - * format of 'projects/{projectId}/scanConfigs/{scanConfigId}'. The ScanConfig - * IDs are generated by the system. - * @param Google_Service_WebSecurityScanner_ScanConfig $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string updateMask Required. The update mask applies to the - * resource. For the `FieldMask` definition, see https://developers.google.com - * /protocol-buffers/docs/reference/google.protobuf#fieldmask - * @return Google_Service_WebSecurityScanner_ScanConfig - */ - public function patch($name, Google_Service_WebSecurityScanner_ScanConfig $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('patch', array($params), "Google_Service_WebSecurityScanner_ScanConfig"); - } - /** - * Start a ScanRun according to the given ScanConfig. (scanConfigs.start) - * - * @param string $name Required. The resource name of the ScanConfig to be used. - * The name follows the format of - * 'projects/{projectId}/scanConfigs/{scanConfigId}'. - * @param Google_Service_WebSecurityScanner_StartScanRunRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_WebSecurityScanner_ScanRun - */ - public function start($name, Google_Service_WebSecurityScanner_StartScanRunRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('start', array($params), "Google_Service_WebSecurityScanner_ScanRun"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/Resource/ProjectsScanConfigsScanRuns.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/Resource/ProjectsScanConfigsScanRuns.php deleted file mode 100644 index 881afd01..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/Resource/ProjectsScanConfigsScanRuns.php +++ /dev/null @@ -1,82 +0,0 @@ - - * $websecurityscannerService = new Google_Service_WebSecurityScanner(...); - * $scanRuns = $websecurityscannerService->scanRuns; - * - */ -class Google_Service_WebSecurityScanner_Resource_ProjectsScanConfigsScanRuns extends Google_Service_Resource -{ - /** - * Gets a ScanRun. (scanRuns.get) - * - * @param string $name Required. The resource name of the ScanRun to be - * returned. The name follows the format of - * 'projects/{projectId}/scanConfigs/{scanConfigId}/scanRuns/{scanRunId}'. - * @param array $optParams Optional parameters. - * @return Google_Service_WebSecurityScanner_ScanRun - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_WebSecurityScanner_ScanRun"); - } - /** - * Lists ScanRuns under a given ScanConfig, in descending order of ScanRun stop - * time. (scanRuns.listProjectsScanConfigsScanRuns) - * - * @param string $parent Required. The parent resource name, which should be a - * scan resource name in the format - * 'projects/{projectId}/scanConfigs/{scanConfigId}'. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A token identifying a page of results to be - * returned. This should be a `next_page_token` value returned from a previous - * List request. If unspecified, the first page of results is returned. - * @opt_param int pageSize The maximum number of ScanRuns to return, can be - * limited by server. If not specified or not positive, the implementation will - * select a reasonable value. - * @return Google_Service_WebSecurityScanner_ListScanRunsResponse - */ - public function listProjectsScanConfigsScanRuns($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_WebSecurityScanner_ListScanRunsResponse"); - } - /** - * Stops a ScanRun. The stopped ScanRun is returned. (scanRuns.stop) - * - * @param string $name Required. The resource name of the ScanRun to be stopped. - * The name follows the format of - * 'projects/{projectId}/scanConfigs/{scanConfigId}/scanRuns/{scanRunId}'. - * @param Google_Service_WebSecurityScanner_StopScanRunRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_WebSecurityScanner_ScanRun - */ - public function stop($name, Google_Service_WebSecurityScanner_StopScanRunRequest $postBody, $optParams = array()) - { - $params = array('name' => $name, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('stop', array($params), "Google_Service_WebSecurityScanner_ScanRun"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/Resource/ProjectsScanConfigsScanRunsCrawledUrls.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/Resource/ProjectsScanConfigsScanRunsCrawledUrls.php deleted file mode 100644 index 464bd578..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/Resource/ProjectsScanConfigsScanRunsCrawledUrls.php +++ /dev/null @@ -1,51 +0,0 @@ - - * $websecurityscannerService = new Google_Service_WebSecurityScanner(...); - * $crawledUrls = $websecurityscannerService->crawledUrls; - * - */ -class Google_Service_WebSecurityScanner_Resource_ProjectsScanConfigsScanRunsCrawledUrls extends Google_Service_Resource -{ - /** - * List CrawledUrls under a given ScanRun. - * (crawledUrls.listProjectsScanConfigsScanRunsCrawledUrls) - * - * @param string $parent Required. The parent resource name, which should be a - * scan run resource name in the format - * 'projects/{projectId}/scanConfigs/{scanConfigId}/scanRuns/{scanRunId}'. - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A token identifying a page of results to be - * returned. This should be a `next_page_token` value returned from a previous - * List request. If unspecified, the first page of results is returned. - * @opt_param int pageSize The maximum number of CrawledUrls to return, can be - * limited by server. If not specified or not positive, the implementation will - * select a reasonable value. - * @return Google_Service_WebSecurityScanner_ListCrawledUrlsResponse - */ - public function listProjectsScanConfigsScanRunsCrawledUrls($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_WebSecurityScanner_ListCrawledUrlsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/Resource/ProjectsScanConfigsScanRunsFindingTypeStats.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/Resource/ProjectsScanConfigsScanRunsFindingTypeStats.php deleted file mode 100644 index 1db7e241..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/Resource/ProjectsScanConfigsScanRunsFindingTypeStats.php +++ /dev/null @@ -1,44 +0,0 @@ - - * $websecurityscannerService = new Google_Service_WebSecurityScanner(...); - * $findingTypeStats = $websecurityscannerService->findingTypeStats; - * - */ -class Google_Service_WebSecurityScanner_Resource_ProjectsScanConfigsScanRunsFindingTypeStats extends Google_Service_Resource -{ - /** - * List all FindingTypeStats under a given ScanRun. - * (findingTypeStats.listProjectsScanConfigsScanRunsFindingTypeStats) - * - * @param string $parent Required. The parent resource name, which should be a - * scan run resource name in the format - * 'projects/{projectId}/scanConfigs/{scanConfigId}/scanRuns/{scanRunId}'. - * @param array $optParams Optional parameters. - * @return Google_Service_WebSecurityScanner_ListFindingTypeStatsResponse - */ - public function listProjectsScanConfigsScanRunsFindingTypeStats($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_WebSecurityScanner_ListFindingTypeStatsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/Resource/ProjectsScanConfigsScanRunsFindings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/Resource/ProjectsScanConfigsScanRunsFindings.php deleted file mode 100644 index be35a4e5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/Resource/ProjectsScanConfigsScanRunsFindings.php +++ /dev/null @@ -1,68 +0,0 @@ - - * $websecurityscannerService = new Google_Service_WebSecurityScanner(...); - * $findings = $websecurityscannerService->findings; - * - */ -class Google_Service_WebSecurityScanner_Resource_ProjectsScanConfigsScanRunsFindings extends Google_Service_Resource -{ - /** - * Gets a Finding. (findings.get) - * - * @param string $name Required. The resource name of the Finding to be - * returned. The name follows the format of 'projects/{projectId}/scanConfigs/{s - * canConfigId}/scanRuns/{scanRunId}/findings/{findingId}'. - * @param array $optParams Optional parameters. - * @return Google_Service_WebSecurityScanner_Finding - */ - public function get($name, $optParams = array()) - { - $params = array('name' => $name); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_WebSecurityScanner_Finding"); - } - /** - * List Findings under a given ScanRun. - * (findings.listProjectsScanConfigsScanRunsFindings) - * - * @param string $parent Required. The parent resource name, which should be a - * scan run resource name in the format - * 'projects/{projectId}/scanConfigs/{scanConfigId}/scanRuns/{scanRunId}'. - * @param array $optParams Optional parameters. - * - * @opt_param string filter The filter expression. The expression must be in the - * format: . Supported field: 'finding_type'. Supported operator: '='. - * @opt_param string pageToken A token identifying a page of results to be - * returned. This should be a `next_page_token` value returned from a previous - * List request. If unspecified, the first page of results is returned. - * @opt_param int pageSize The maximum number of Findings to return, can be - * limited by server. If not specified or not positive, the implementation will - * select a reasonable value. - * @return Google_Service_WebSecurityScanner_ListFindingsResponse - */ - public function listProjectsScanConfigsScanRunsFindings($parent, $optParams = array()) - { - $params = array('parent' => $parent); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_WebSecurityScanner_ListFindingsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/ScanConfig.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/ScanConfig.php deleted file mode 100644 index 2e1150d0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/ScanConfig.php +++ /dev/null @@ -1,133 +0,0 @@ -authentication = $authentication; - } - /** - * @return Google_Service_WebSecurityScanner_Authentication - */ - public function getAuthentication() - { - return $this->authentication; - } - public function setBlacklistPatterns($blacklistPatterns) - { - $this->blacklistPatterns = $blacklistPatterns; - } - public function getBlacklistPatterns() - { - return $this->blacklistPatterns; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - /** - * @param Google_Service_WebSecurityScanner_ScanRun - */ - public function setLatestRun(Google_Service_WebSecurityScanner_ScanRun $latestRun) - { - $this->latestRun = $latestRun; - } - /** - * @return Google_Service_WebSecurityScanner_ScanRun - */ - public function getLatestRun() - { - return $this->latestRun; - } - public function setMaxQps($maxQps) - { - $this->maxQps = $maxQps; - } - public function getMaxQps() - { - return $this->maxQps; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - /** - * @param Google_Service_WebSecurityScanner_Schedule - */ - public function setSchedule(Google_Service_WebSecurityScanner_Schedule $schedule) - { - $this->schedule = $schedule; - } - /** - * @return Google_Service_WebSecurityScanner_Schedule - */ - public function getSchedule() - { - return $this->schedule; - } - public function setStartingUrls($startingUrls) - { - $this->startingUrls = $startingUrls; - } - public function getStartingUrls() - { - return $this->startingUrls; - } - public function setTargetPlatforms($targetPlatforms) - { - $this->targetPlatforms = $targetPlatforms; - } - public function getTargetPlatforms() - { - return $this->targetPlatforms; - } - public function setUserAgent($userAgent) - { - $this->userAgent = $userAgent; - } - public function getUserAgent() - { - return $this->userAgent; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/ScanRun.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/ScanRun.php deleted file mode 100644 index b88cba2f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/ScanRun.php +++ /dev/null @@ -1,102 +0,0 @@ -endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setExecutionState($executionState) - { - $this->executionState = $executionState; - } - public function getExecutionState() - { - return $this->executionState; - } - public function setHasVulnerabilities($hasVulnerabilities) - { - $this->hasVulnerabilities = $hasVulnerabilities; - } - public function getHasVulnerabilities() - { - return $this->hasVulnerabilities; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setProgressPercent($progressPercent) - { - $this->progressPercent = $progressPercent; - } - public function getProgressPercent() - { - return $this->progressPercent; - } - public function setResultState($resultState) - { - $this->resultState = $resultState; - } - public function getResultState() - { - return $this->resultState; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } - public function setUrlsCrawledCount($urlsCrawledCount) - { - $this->urlsCrawledCount = $urlsCrawledCount; - } - public function getUrlsCrawledCount() - { - return $this->urlsCrawledCount; - } - public function setUrlsTestedCount($urlsTestedCount) - { - $this->urlsTestedCount = $urlsTestedCount; - } - public function getUrlsTestedCount() - { - return $this->urlsTestedCount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/Schedule.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/Schedule.php deleted file mode 100644 index df43ab9e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/Schedule.php +++ /dev/null @@ -1,39 +0,0 @@ -intervalDurationDays = $intervalDurationDays; - } - public function getIntervalDurationDays() - { - return $this->intervalDurationDays; - } - public function setScheduleTime($scheduleTime) - { - $this->scheduleTime = $scheduleTime; - } - public function getScheduleTime() - { - return $this->scheduleTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/StartScanRunRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/StartScanRunRequest.php deleted file mode 100644 index 64593d32..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/StartScanRunRequest.php +++ /dev/null @@ -1,20 +0,0 @@ -contentType = $contentType; - } - public function getContentType() - { - return $this->contentType; - } - public function setResourceUrl($resourceUrl) - { - $this->resourceUrl = $resourceUrl; - } - public function getResourceUrl() - { - return $this->resourceUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/VulnerableHeaders.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/VulnerableHeaders.php deleted file mode 100644 index 9236f5cb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/VulnerableHeaders.php +++ /dev/null @@ -1,54 +0,0 @@ -headers = $headers; - } - /** - * @return Google_Service_WebSecurityScanner_Header - */ - public function getHeaders() - { - return $this->headers; - } - /** - * @param Google_Service_WebSecurityScanner_Header - */ - public function setMissingHeaders($missingHeaders) - { - $this->missingHeaders = $missingHeaders; - } - /** - * @return Google_Service_WebSecurityScanner_Header - */ - public function getMissingHeaders() - { - return $this->missingHeaders; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/VulnerableParameters.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/VulnerableParameters.php deleted file mode 100644 index 3731a598..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/VulnerableParameters.php +++ /dev/null @@ -1,31 +0,0 @@ -parameterNames = $parameterNames; - } - public function getParameterNames() - { - return $this->parameterNames; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/WebsecurityscannerEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/WebsecurityscannerEmpty.php deleted file mode 100644 index 2c04adbe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/WebSecurityScanner/WebsecurityscannerEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -errorMessage = $errorMessage; - } - public function getErrorMessage() - { - return $this->errorMessage; - } - public function setStackTraces($stackTraces) - { - $this->stackTraces = $stackTraces; - } - public function getStackTraces() - { - return $this->stackTraces; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Webfonts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Webfonts.php deleted file mode 100644 index 3ebc92c6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Webfonts.php +++ /dev/null @@ -1,74 +0,0 @@ - - * Accesses the metadata for all families served by Google Fonts, providing a - * list of families currently available (including available styles and a list - * of supported script subsets).

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Webfonts extends Google_Service -{ - - - public $webfonts; - - /** - * Constructs the internal representation of the Webfonts service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://www.googleapis.com/'; - $this->servicePath = 'webfonts/v1/'; - $this->batchPath = 'batch/webfonts/v1'; - $this->version = 'v1'; - $this->serviceName = 'webfonts'; - - $this->webfonts = new Google_Service_Webfonts_Resource_Webfonts( - $this, - $this->serviceName, - 'webfonts', - array( - 'methods' => array( - 'list' => array( - 'path' => 'webfonts', - 'httpMethod' => 'GET', - 'parameters' => array( - 'sort' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Webfonts/Resource/Webfonts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Webfonts/Resource/Webfonts.php deleted file mode 100644 index fb2b458b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Webfonts/Resource/Webfonts.php +++ /dev/null @@ -1,43 +0,0 @@ - - * $webfontsService = new Google_Service_Webfonts(...); - * $webfonts = $webfontsService->webfonts; - * - */ -class Google_Service_Webfonts_Resource_Webfonts extends Google_Service_Resource -{ - /** - * Retrieves the list of fonts currently served by the Google Fonts Developer - * API (webfonts.listWebfonts) - * - * @param array $optParams Optional parameters. - * - * @opt_param string sort Enables sorting of the list - * @return Google_Service_Webfonts_WebfontList - */ - public function listWebfonts($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Webfonts_WebfontList"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Webfonts/Webfont.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Webfonts/Webfont.php deleted file mode 100644 index 36575718..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Webfonts/Webfont.php +++ /dev/null @@ -1,94 +0,0 @@ -category = $category; - } - public function getCategory() - { - return $this->category; - } - public function setFamily($family) - { - $this->family = $family; - } - public function getFamily() - { - return $this->family; - } - public function setFiles($files) - { - $this->files = $files; - } - public function getFiles() - { - return $this->files; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setLastModified($lastModified) - { - $this->lastModified = $lastModified; - } - public function getLastModified() - { - return $this->lastModified; - } - public function setSubsets($subsets) - { - $this->subsets = $subsets; - } - public function getSubsets() - { - return $this->subsets; - } - public function setVariants($variants) - { - $this->variants = $variants; - } - public function getVariants() - { - return $this->variants; - } - public function setVersion($version) - { - $this->version = $version; - } - public function getVersion() - { - return $this->version; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Webfonts/WebfontList.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Webfonts/WebfontList.php deleted file mode 100644 index 63941415..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Webfonts/WebfontList.php +++ /dev/null @@ -1,47 +0,0 @@ -items = $items; - } - /** - * @return Google_Service_Webfonts_Webfont - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Webmasters.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Webmasters.php deleted file mode 100644 index c3390e63..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Webmasters.php +++ /dev/null @@ -1,193 +0,0 @@ - - * View Google Search Console data for your verified sites.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_Webmasters extends Google_Service -{ - /** View and manage Search Console data for your verified sites. */ - const WEBMASTERS = - "https://www.googleapis.com/auth/webmasters"; - /** View Search Console data for your verified sites. */ - const WEBMASTERS_READONLY = - "https://www.googleapis.com/auth/webmasters.readonly"; - - public $searchanalytics; - public $sitemaps; - public $sites; - - /** - * Constructs the internal representation of the Webmasters service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://www.googleapis.com/'; - $this->servicePath = 'webmasters/v3/'; - $this->batchPath = 'batch/webmasters/v3'; - $this->version = 'v3'; - $this->serviceName = 'webmasters'; - - $this->searchanalytics = new Google_Service_Webmasters_Resource_Searchanalytics( - $this, - $this->serviceName, - 'searchanalytics', - array( - 'methods' => array( - 'query' => array( - 'path' => 'sites/{siteUrl}/searchAnalytics/query', - 'httpMethod' => 'POST', - 'parameters' => array( - 'siteUrl' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->sitemaps = new Google_Service_Webmasters_Resource_Sitemaps( - $this, - $this->serviceName, - 'sitemaps', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'sites/{siteUrl}/sitemaps/{feedpath}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'siteUrl' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'feedpath' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'sites/{siteUrl}/sitemaps/{feedpath}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'siteUrl' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'feedpath' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'sites/{siteUrl}/sitemaps', - 'httpMethod' => 'GET', - 'parameters' => array( - 'siteUrl' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'sitemapIndex' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'submit' => array( - 'path' => 'sites/{siteUrl}/sitemaps/{feedpath}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'siteUrl' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'feedpath' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->sites = new Google_Service_Webmasters_Resource_Sites( - $this, - $this->serviceName, - 'sites', - array( - 'methods' => array( - 'add' => array( - 'path' => 'sites/{siteUrl}', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'siteUrl' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'delete' => array( - 'path' => 'sites/{siteUrl}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'siteUrl' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'get' => array( - 'path' => 'sites/{siteUrl}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'siteUrl' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'sites', - 'httpMethod' => 'GET', - 'parameters' => array(), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Webmasters/ApiDataRow.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Webmasters/ApiDataRow.php deleted file mode 100644 index 06dfa4d8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Webmasters/ApiDataRow.php +++ /dev/null @@ -1,67 +0,0 @@ -clicks = $clicks; - } - public function getClicks() - { - return $this->clicks; - } - public function setCtr($ctr) - { - $this->ctr = $ctr; - } - public function getCtr() - { - return $this->ctr; - } - public function setImpressions($impressions) - { - $this->impressions = $impressions; - } - public function getImpressions() - { - return $this->impressions; - } - public function setKeys($keys) - { - $this->keys = $keys; - } - public function getKeys() - { - return $this->keys; - } - public function setPosition($position) - { - $this->position = $position; - } - public function getPosition() - { - return $this->position; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Webmasters/ApiDimensionFilter.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Webmasters/ApiDimensionFilter.php deleted file mode 100644 index fda51c86..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Webmasters/ApiDimensionFilter.php +++ /dev/null @@ -1,48 +0,0 @@ -dimension = $dimension; - } - public function getDimension() - { - return $this->dimension; - } - public function setExpression($expression) - { - $this->expression = $expression; - } - public function getExpression() - { - return $this->expression; - } - public function setOperator($operator) - { - $this->operator = $operator; - } - public function getOperator() - { - return $this->operator; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Webmasters/ApiDimensionFilterGroup.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Webmasters/ApiDimensionFilterGroup.php deleted file mode 100644 index 8d7f8f68..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Webmasters/ApiDimensionFilterGroup.php +++ /dev/null @@ -1,47 +0,0 @@ -filters = $filters; - } - /** - * @return Google_Service_Webmasters_ApiDimensionFilter - */ - public function getFilters() - { - return $this->filters; - } - public function setGroupType($groupType) - { - $this->groupType = $groupType; - } - public function getGroupType() - { - return $this->groupType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Webmasters/Resource/Searchanalytics.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Webmasters/Resource/Searchanalytics.php deleted file mode 100644 index d922f327..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Webmasters/Resource/Searchanalytics.php +++ /dev/null @@ -1,50 +0,0 @@ - - * $webmastersService = new Google_Service_Webmasters(...); - * $searchanalytics = $webmastersService->searchanalytics; - * - */ -class Google_Service_Webmasters_Resource_Searchanalytics extends Google_Service_Resource -{ - /** - * Query your data with filters and parameters that you define. Returns zero or - * more rows grouped by the row keys that you define. You must define a date - * range of one or more days. - * - * When date is one of the group by values, any days without data are omitted - * from the result list. If you need to know which days have data, issue a broad - * date range query grouped by date for any metric, and see which day rows are - * returned. (searchanalytics.query) - * - * @param string $siteUrl The site's URL, including protocol. For example: - * http://www.example.com/ - * @param Google_Service_Webmasters_SearchAnalyticsQueryRequest $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_Webmasters_SearchAnalyticsQueryResponse - */ - public function query($siteUrl, Google_Service_Webmasters_SearchAnalyticsQueryRequest $postBody, $optParams = array()) - { - $params = array('siteUrl' => $siteUrl, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('query', array($params), "Google_Service_Webmasters_SearchAnalyticsQueryResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Webmasters/Resource/Sitemaps.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Webmasters/Resource/Sitemaps.php deleted file mode 100644 index 1cb1859f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Webmasters/Resource/Sitemaps.php +++ /dev/null @@ -1,93 +0,0 @@ - - * $webmastersService = new Google_Service_Webmasters(...); - * $sitemaps = $webmastersService->sitemaps; - * - */ -class Google_Service_Webmasters_Resource_Sitemaps extends Google_Service_Resource -{ - /** - * Deletes a sitemap from this site. (sitemaps.delete) - * - * @param string $siteUrl The site's URL, including protocol. For example: - * http://www.example.com/ - * @param string $feedpath The URL of the actual sitemap. For example: - * http://www.example.com/sitemap.xml - * @param array $optParams Optional parameters. - */ - public function delete($siteUrl, $feedpath, $optParams = array()) - { - $params = array('siteUrl' => $siteUrl, 'feedpath' => $feedpath); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Retrieves information about a specific sitemap. (sitemaps.get) - * - * @param string $siteUrl The site's URL, including protocol. For example: - * http://www.example.com/ - * @param string $feedpath The URL of the actual sitemap. For example: - * http://www.example.com/sitemap.xml - * @param array $optParams Optional parameters. - * @return Google_Service_Webmasters_WmxSitemap - */ - public function get($siteUrl, $feedpath, $optParams = array()) - { - $params = array('siteUrl' => $siteUrl, 'feedpath' => $feedpath); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Webmasters_WmxSitemap"); - } - /** - * Lists the sitemaps-entries submitted for this site, or included in the - * sitemap index file (if sitemapIndex is specified in the request). - * (sitemaps.listSitemaps) - * - * @param string $siteUrl The site's URL, including protocol. For example: - * http://www.example.com/ - * @param array $optParams Optional parameters. - * - * @opt_param string sitemapIndex A URL of a site's sitemap index. For example: - * http://www.example.com/sitemapindex.xml - * @return Google_Service_Webmasters_SitemapsListResponse - */ - public function listSitemaps($siteUrl, $optParams = array()) - { - $params = array('siteUrl' => $siteUrl); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Webmasters_SitemapsListResponse"); - } - /** - * Submits a sitemap for a site. (sitemaps.submit) - * - * @param string $siteUrl The site's URL, including protocol. For example: - * http://www.example.com/ - * @param string $feedpath The URL of the sitemap to add. For example: - * http://www.example.com/sitemap.xml - * @param array $optParams Optional parameters. - */ - public function submit($siteUrl, $feedpath, $optParams = array()) - { - $params = array('siteUrl' => $siteUrl, 'feedpath' => $feedpath); - $params = array_merge($params, $optParams); - return $this->call('submit', array($params)); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Webmasters/Resource/Sites.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Webmasters/Resource/Sites.php deleted file mode 100644 index 6070e60e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Webmasters/Resource/Sites.php +++ /dev/null @@ -1,84 +0,0 @@ - - * $webmastersService = new Google_Service_Webmasters(...); - * $sites = $webmastersService->sites; - * - */ -class Google_Service_Webmasters_Resource_Sites extends Google_Service_Resource -{ - /** - * Adds a site to the set of the user's sites in Search Console. (sites.add) - * - * @param string $siteUrl The URL of the site to add. - * @param array $optParams Optional parameters. - */ - public function add($siteUrl, $optParams = array()) - { - $params = array('siteUrl' => $siteUrl); - $params = array_merge($params, $optParams); - return $this->call('add', array($params)); - } - /** - * Removes a site from the set of the user's Search Console sites. - * (sites.delete) - * - * @param string $siteUrl The URI of the property as defined in Search Console. - * Examples: http://www.example.com/ or android-app://com.example/ Note: for - * property-sets, use the URI that starts with sc-set: which is used in Search - * Console URLs. - * @param array $optParams Optional parameters. - */ - public function delete($siteUrl, $optParams = array()) - { - $params = array('siteUrl' => $siteUrl); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Retrieves information about specific site. (sites.get) - * - * @param string $siteUrl The URI of the property as defined in Search Console. - * Examples: http://www.example.com/ or android-app://com.example/ Note: for - * property-sets, use the URI that starts with sc-set: which is used in Search - * Console URLs. - * @param array $optParams Optional parameters. - * @return Google_Service_Webmasters_WmxSite - */ - public function get($siteUrl, $optParams = array()) - { - $params = array('siteUrl' => $siteUrl); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_Webmasters_WmxSite"); - } - /** - * Lists the user's Search Console sites. (sites.listSites) - * - * @param array $optParams Optional parameters. - * @return Google_Service_Webmasters_SitesListResponse - */ - public function listSites($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_Webmasters_SitesListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Webmasters/SearchAnalyticsQueryRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Webmasters/SearchAnalyticsQueryRequest.php deleted file mode 100644 index 0cc54e2d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Webmasters/SearchAnalyticsQueryRequest.php +++ /dev/null @@ -1,101 +0,0 @@ -aggregationType = $aggregationType; - } - public function getAggregationType() - { - return $this->aggregationType; - } - /** - * @param Google_Service_Webmasters_ApiDimensionFilterGroup - */ - public function setDimensionFilterGroups($dimensionFilterGroups) - { - $this->dimensionFilterGroups = $dimensionFilterGroups; - } - /** - * @return Google_Service_Webmasters_ApiDimensionFilterGroup - */ - public function getDimensionFilterGroups() - { - return $this->dimensionFilterGroups; - } - public function setDimensions($dimensions) - { - $this->dimensions = $dimensions; - } - public function getDimensions() - { - return $this->dimensions; - } - public function setEndDate($endDate) - { - $this->endDate = $endDate; - } - public function getEndDate() - { - return $this->endDate; - } - public function setRowLimit($rowLimit) - { - $this->rowLimit = $rowLimit; - } - public function getRowLimit() - { - return $this->rowLimit; - } - public function setSearchType($searchType) - { - $this->searchType = $searchType; - } - public function getSearchType() - { - return $this->searchType; - } - public function setStartDate($startDate) - { - $this->startDate = $startDate; - } - public function getStartDate() - { - return $this->startDate; - } - public function setStartRow($startRow) - { - $this->startRow = $startRow; - } - public function getStartRow() - { - return $this->startRow; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Webmasters/SearchAnalyticsQueryResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Webmasters/SearchAnalyticsQueryResponse.php deleted file mode 100644 index 9d257469..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Webmasters/SearchAnalyticsQueryResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -responseAggregationType = $responseAggregationType; - } - public function getResponseAggregationType() - { - return $this->responseAggregationType; - } - /** - * @param Google_Service_Webmasters_ApiDataRow - */ - public function setRows($rows) - { - $this->rows = $rows; - } - /** - * @return Google_Service_Webmasters_ApiDataRow - */ - public function getRows() - { - return $this->rows; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Webmasters/SitemapsListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Webmasters/SitemapsListResponse.php deleted file mode 100644 index 68135a0c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Webmasters/SitemapsListResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -sitemap = $sitemap; - } - /** - * @return Google_Service_Webmasters_WmxSitemap - */ - public function getSitemap() - { - return $this->sitemap; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Webmasters/SitesListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Webmasters/SitesListResponse.php deleted file mode 100644 index d730db5a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Webmasters/SitesListResponse.php +++ /dev/null @@ -1,38 +0,0 @@ -siteEntry = $siteEntry; - } - /** - * @return Google_Service_Webmasters_WmxSite - */ - public function getSiteEntry() - { - return $this->siteEntry; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Webmasters/WmxSite.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Webmasters/WmxSite.php deleted file mode 100644 index c2e24a5d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Webmasters/WmxSite.php +++ /dev/null @@ -1,39 +0,0 @@ -permissionLevel = $permissionLevel; - } - public function getPermissionLevel() - { - return $this->permissionLevel; - } - public function setSiteUrl($siteUrl) - { - $this->siteUrl = $siteUrl; - } - public function getSiteUrl() - { - return $this->siteUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Webmasters/WmxSitemap.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Webmasters/WmxSitemap.php deleted file mode 100644 index 640c1b86..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Webmasters/WmxSitemap.php +++ /dev/null @@ -1,110 +0,0 @@ -contents = $contents; - } - /** - * @return Google_Service_Webmasters_WmxSitemapContent - */ - public function getContents() - { - return $this->contents; - } - public function setErrors($errors) - { - $this->errors = $errors; - } - public function getErrors() - { - return $this->errors; - } - public function setIsPending($isPending) - { - $this->isPending = $isPending; - } - public function getIsPending() - { - return $this->isPending; - } - public function setIsSitemapsIndex($isSitemapsIndex) - { - $this->isSitemapsIndex = $isSitemapsIndex; - } - public function getIsSitemapsIndex() - { - return $this->isSitemapsIndex; - } - public function setLastDownloaded($lastDownloaded) - { - $this->lastDownloaded = $lastDownloaded; - } - public function getLastDownloaded() - { - return $this->lastDownloaded; - } - public function setLastSubmitted($lastSubmitted) - { - $this->lastSubmitted = $lastSubmitted; - } - public function getLastSubmitted() - { - return $this->lastSubmitted; - } - public function setPath($path) - { - $this->path = $path; - } - public function getPath() - { - return $this->path; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setWarnings($warnings) - { - $this->warnings = $warnings; - } - public function getWarnings() - { - return $this->warnings; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Webmasters/WmxSitemapContent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Webmasters/WmxSitemapContent.php deleted file mode 100644 index 8e47ed26..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/Webmasters/WmxSitemapContent.php +++ /dev/null @@ -1,48 +0,0 @@ -indexed = $indexed; - } - public function getIndexed() - { - return $this->indexed; - } - public function setSubmitted($submitted) - { - $this->submitted = $submitted; - } - public function getSubmitted() - { - return $this->submitted; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube.php deleted file mode 100644 index f8c178bd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube.php +++ /dev/null @@ -1,1979 +0,0 @@ - - * Supports core YouTube features, such as uploading videos, creating and - * managing playlists, searching for content, and much more.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_YouTube extends Google_Service -{ - /** Manage your YouTube account. */ - const YOUTUBE = - "https://www.googleapis.com/auth/youtube"; - /** See, edit, and permanently delete your YouTube videos, ratings, comments and captions. */ - const YOUTUBE_FORCE_SSL = - "https://www.googleapis.com/auth/youtube.force-ssl"; - /** View your YouTube account. */ - const YOUTUBE_READONLY = - "https://www.googleapis.com/auth/youtube.readonly"; - /** Manage your YouTube videos. */ - const YOUTUBE_UPLOAD = - "https://www.googleapis.com/auth/youtube.upload"; - /** View and manage your assets and associated content on YouTube. */ - const YOUTUBEPARTNER = - "https://www.googleapis.com/auth/youtubepartner"; - /** View private information of your YouTube channel relevant during the audit process with a YouTube partner. */ - const YOUTUBEPARTNER_CHANNEL_AUDIT = - "https://www.googleapis.com/auth/youtubepartner-channel-audit"; - - public $activities; - public $captions; - public $channelBanners; - public $channelSections; - public $channels; - public $commentThreads; - public $comments; - public $guideCategories; - public $i18nLanguages; - public $i18nRegions; - public $liveBroadcasts; - public $liveChatBans; - public $liveChatMessages; - public $liveChatModerators; - public $liveStreams; - public $members; - public $membershipsLevels; - public $playlistItems; - public $playlists; - public $search; - public $sponsors; - public $subscriptions; - public $superChatEvents; - public $thumbnails; - public $videoAbuseReportReasons; - public $videoCategories; - public $videos; - public $watermarks; - - /** - * Constructs the internal representation of the YouTube service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://www.googleapis.com/'; - $this->servicePath = 'youtube/v3/'; - $this->batchPath = 'batch/youtube/v3'; - $this->version = 'v3'; - $this->serviceName = 'youtube'; - - $this->activities = new Google_Service_YouTube_Resource_Activities( - $this, - $this->serviceName, - 'activities', - array( - 'methods' => array( - 'insert' => array( - 'path' => 'activities', - 'httpMethod' => 'POST', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'activities', - 'httpMethod' => 'GET', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'channelId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'home' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'mine' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'publishedAfter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'publishedBefore' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'regionCode' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->captions = new Google_Service_YouTube_Resource_Captions( - $this, - $this->serviceName, - 'captions', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'captions', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOf' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'download' => array( - 'path' => 'captions/{id}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'id' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOf' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'tfmt' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'tlang' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'insert' => array( - 'path' => 'captions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOf' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sync' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'list' => array( - 'path' => 'captions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'videoId' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'onBehalfOf' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'captions', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOf' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sync' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ), - ) - ) - ); - $this->channelBanners = new Google_Service_YouTube_Resource_ChannelBanners( - $this, - $this->serviceName, - 'channelBanners', - array( - 'methods' => array( - 'insert' => array( - 'path' => 'channelBanners/insert', - 'httpMethod' => 'POST', - 'parameters' => array( - 'channelId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->channelSections = new Google_Service_YouTube_Resource_ChannelSections( - $this, - $this->serviceName, - 'channelSections', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'channelSections', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'insert' => array( - 'path' => 'channelSections', - 'httpMethod' => 'POST', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'onBehalfOfContentOwnerChannel' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'channelSections', - 'httpMethod' => 'GET', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'channelId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'hl' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'id' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'mine' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'channelSections', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->channels = new Google_Service_YouTube_Resource_Channels( - $this, - $this->serviceName, - 'channels', - array( - 'methods' => array( - 'list' => array( - 'path' => 'channels', - 'httpMethod' => 'GET', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'categoryId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'forUsername' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'hl' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'id' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'managedByMe' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'mine' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'mySubscribers' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'channels', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->commentThreads = new Google_Service_YouTube_Resource_CommentThreads( - $this, - $this->serviceName, - 'commentThreads', - array( - 'methods' => array( - 'insert' => array( - 'path' => 'commentThreads', - 'httpMethod' => 'POST', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'commentThreads', - 'httpMethod' => 'GET', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'allThreadsRelatedToChannelId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'channelId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'id' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'moderationStatus' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'order' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'searchTerms' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'textFormat' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'videoId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'commentThreads', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->comments = new Google_Service_YouTube_Resource_Comments( - $this, - $this->serviceName, - 'comments', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'comments', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'comments', - 'httpMethod' => 'POST', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'comments', - 'httpMethod' => 'GET', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'parentId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'textFormat' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'markAsSpam' => array( - 'path' => 'comments/markAsSpam', - 'httpMethod' => 'POST', - 'parameters' => array( - 'id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'setModerationStatus' => array( - 'path' => 'comments/setModerationStatus', - 'httpMethod' => 'POST', - 'parameters' => array( - 'id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'moderationStatus' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'banAuthor' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'update' => array( - 'path' => 'comments', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->guideCategories = new Google_Service_YouTube_Resource_GuideCategories( - $this, - $this->serviceName, - 'guideCategories', - array( - 'methods' => array( - 'list' => array( - 'path' => 'guideCategories', - 'httpMethod' => 'GET', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'hl' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'id' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'regionCode' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->i18nLanguages = new Google_Service_YouTube_Resource_I18nLanguages( - $this, - $this->serviceName, - 'i18nLanguages', - array( - 'methods' => array( - 'list' => array( - 'path' => 'i18nLanguages', - 'httpMethod' => 'GET', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'hl' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->i18nRegions = new Google_Service_YouTube_Resource_I18nRegions( - $this, - $this->serviceName, - 'i18nRegions', - array( - 'methods' => array( - 'list' => array( - 'path' => 'i18nRegions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'hl' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->liveBroadcasts = new Google_Service_YouTube_Resource_LiveBroadcasts( - $this, - $this->serviceName, - 'liveBroadcasts', - array( - 'methods' => array( - 'bind' => array( - 'path' => 'liveBroadcasts/bind', - 'httpMethod' => 'POST', - 'parameters' => array( - 'id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'onBehalfOfContentOwnerChannel' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'streamId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'control' => array( - 'path' => 'liveBroadcasts/control', - 'httpMethod' => 'POST', - 'parameters' => array( - 'id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'displaySlate' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'offsetTimeMs' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'onBehalfOfContentOwnerChannel' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'walltime' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => 'liveBroadcasts', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'onBehalfOfContentOwnerChannel' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'insert' => array( - 'path' => 'liveBroadcasts', - 'httpMethod' => 'POST', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'onBehalfOfContentOwnerChannel' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'liveBroadcasts', - 'httpMethod' => 'GET', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'broadcastStatus' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'broadcastType' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'id' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'mine' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'onBehalfOfContentOwnerChannel' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'transition' => array( - 'path' => 'liveBroadcasts/transition', - 'httpMethod' => 'POST', - 'parameters' => array( - 'broadcastStatus' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'onBehalfOfContentOwnerChannel' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'liveBroadcasts', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'onBehalfOfContentOwnerChannel' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->liveChatBans = new Google_Service_YouTube_Resource_LiveChatBans( - $this, - $this->serviceName, - 'liveChatBans', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'liveChat/bans', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'liveChat/bans', - 'httpMethod' => 'POST', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->liveChatMessages = new Google_Service_YouTube_Resource_LiveChatMessages( - $this, - $this->serviceName, - 'liveChatMessages', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'liveChat/messages', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'liveChat/messages', - 'httpMethod' => 'POST', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'liveChat/messages', - 'httpMethod' => 'GET', - 'parameters' => array( - 'liveChatId' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'hl' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'profileImageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - $this->liveChatModerators = new Google_Service_YouTube_Resource_LiveChatModerators( - $this, - $this->serviceName, - 'liveChatModerators', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'liveChat/moderators', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'liveChat/moderators', - 'httpMethod' => 'POST', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'liveChat/moderators', - 'httpMethod' => 'GET', - 'parameters' => array( - 'liveChatId' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->liveStreams = new Google_Service_YouTube_Resource_LiveStreams( - $this, - $this->serviceName, - 'liveStreams', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'liveStreams', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'onBehalfOfContentOwnerChannel' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'insert' => array( - 'path' => 'liveStreams', - 'httpMethod' => 'POST', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'onBehalfOfContentOwnerChannel' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'liveStreams', - 'httpMethod' => 'GET', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'mine' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'onBehalfOfContentOwnerChannel' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'liveStreams', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'onBehalfOfContentOwnerChannel' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->members = new Google_Service_YouTube_Resource_Members( - $this, - $this->serviceName, - 'members', - array( - 'methods' => array( - 'list' => array( - 'path' => 'members', - 'httpMethod' => 'GET', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'filterByMemberChannelId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'hasAccessToLevel' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'mode' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->membershipsLevels = new Google_Service_YouTube_Resource_MembershipsLevels( - $this, - $this->serviceName, - 'membershipsLevels', - array( - 'methods' => array( - 'list' => array( - 'path' => 'membershipsLevels', - 'httpMethod' => 'GET', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->playlistItems = new Google_Service_YouTube_Resource_PlaylistItems( - $this, - $this->serviceName, - 'playlistItems', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'playlistItems', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'insert' => array( - 'path' => 'playlistItems', - 'httpMethod' => 'POST', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'playlistItems', - 'httpMethod' => 'GET', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'id' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'playlistId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'videoId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'playlistItems', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->playlists = new Google_Service_YouTube_Resource_Playlists( - $this, - $this->serviceName, - 'playlists', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'playlists', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'insert' => array( - 'path' => 'playlists', - 'httpMethod' => 'POST', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'onBehalfOfContentOwnerChannel' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'playlists', - 'httpMethod' => 'GET', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'channelId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'hl' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'id' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'mine' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'onBehalfOfContentOwnerChannel' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'playlists', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->search = new Google_Service_YouTube_Resource_Search( - $this, - $this->serviceName, - 'search', - array( - 'methods' => array( - 'list' => array( - 'path' => 'search', - 'httpMethod' => 'GET', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'channelId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'channelType' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'eventType' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'forContentOwner' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'forDeveloper' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'forMine' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'location' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'locationRadius' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'order' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'publishedAfter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'publishedBefore' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'q' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'regionCode' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'relatedToVideoId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'relevanceLanguage' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'safeSearch' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'topicId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'type' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'videoCaption' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'videoCategoryId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'videoDefinition' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'videoDimension' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'videoDuration' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'videoEmbeddable' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'videoLicense' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'videoSyndicated' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'videoType' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->sponsors = new Google_Service_YouTube_Resource_Sponsors( - $this, - $this->serviceName, - 'sponsors', - array( - 'methods' => array( - 'list' => array( - 'path' => 'sponsors', - 'httpMethod' => 'GET', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'filter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->subscriptions = new Google_Service_YouTube_Resource_Subscriptions( - $this, - $this->serviceName, - 'subscriptions', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'subscriptions', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'insert' => array( - 'path' => 'subscriptions', - 'httpMethod' => 'POST', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'list' => array( - 'path' => 'subscriptions', - 'httpMethod' => 'GET', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'channelId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'forChannelId' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'id' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'mine' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'myRecentSubscribers' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'mySubscribers' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'onBehalfOfContentOwnerChannel' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'order' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->superChatEvents = new Google_Service_YouTube_Resource_SuperChatEvents( - $this, - $this->serviceName, - 'superChatEvents', - array( - 'methods' => array( - 'list' => array( - 'path' => 'superChatEvents', - 'httpMethod' => 'GET', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'hl' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->thumbnails = new Google_Service_YouTube_Resource_Thumbnails( - $this, - $this->serviceName, - 'thumbnails', - array( - 'methods' => array( - 'set' => array( - 'path' => 'thumbnails/set', - 'httpMethod' => 'POST', - 'parameters' => array( - 'videoId' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->videoAbuseReportReasons = new Google_Service_YouTube_Resource_VideoAbuseReportReasons( - $this, - $this->serviceName, - 'videoAbuseReportReasons', - array( - 'methods' => array( - 'list' => array( - 'path' => 'videoAbuseReportReasons', - 'httpMethod' => 'GET', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'hl' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->videoCategories = new Google_Service_YouTube_Resource_VideoCategories( - $this, - $this->serviceName, - 'videoCategories', - array( - 'methods' => array( - 'list' => array( - 'path' => 'videoCategories', - 'httpMethod' => 'GET', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'hl' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'id' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'regionCode' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->videos = new Google_Service_YouTube_Resource_Videos( - $this, - $this->serviceName, - 'videos', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'videos', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'getRating' => array( - 'path' => 'videos/getRating', - 'httpMethod' => 'GET', - 'parameters' => array( - 'id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'insert' => array( - 'path' => 'videos', - 'httpMethod' => 'POST', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'autoLevels' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'notifySubscribers' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'onBehalfOfContentOwnerChannel' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'stabilize' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'list' => array( - 'path' => 'videos', - 'httpMethod' => 'GET', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'chart' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'hl' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'id' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'locale' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'maxHeight' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'maxWidth' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'myRating' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'regionCode' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'videoCategoryId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'rate' => array( - 'path' => 'videos/rate', - 'httpMethod' => 'POST', - 'parameters' => array( - 'id' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'rating' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - ), - ),'reportAbuse' => array( - 'path' => 'videos/reportAbuse', - 'httpMethod' => 'POST', - 'parameters' => array( - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'update' => array( - 'path' => 'videos', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'part' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->watermarks = new Google_Service_YouTube_Resource_Watermarks( - $this, - $this->serviceName, - 'watermarks', - array( - 'methods' => array( - 'set' => array( - 'path' => 'watermarks/set', - 'httpMethod' => 'POST', - 'parameters' => array( - 'channelId' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'unset' => array( - 'path' => 'watermarks/unset', - 'httpMethod' => 'POST', - 'parameters' => array( - 'channelId' => array( - 'location' => 'query', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/AccessPolicy.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/AccessPolicy.php deleted file mode 100644 index 668dd4a8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/AccessPolicy.php +++ /dev/null @@ -1,40 +0,0 @@ -allowed = $allowed; - } - public function getAllowed() - { - return $this->allowed; - } - public function setException($exception) - { - $this->exception = $exception; - } - public function getException() - { - return $this->exception; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Activity.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Activity.php deleted file mode 100644 index be3c37e3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Activity.php +++ /dev/null @@ -1,80 +0,0 @@ -contentDetails = $contentDetails; - } - /** - * @return Google_Service_YouTube_ActivityContentDetails - */ - public function getContentDetails() - { - return $this->contentDetails; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - 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; - } - /** - * @param Google_Service_YouTube_ActivitySnippet - */ - public function setSnippet(Google_Service_YouTube_ActivitySnippet $snippet) - { - $this->snippet = $snippet; - } - /** - * @return Google_Service_YouTube_ActivitySnippet - */ - public function getSnippet() - { - return $this->snippet; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ActivityContentDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ActivityContentDetails.php deleted file mode 100644 index 9f9b43ca..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ActivityContentDetails.php +++ /dev/null @@ -1,197 +0,0 @@ -bulletin = $bulletin; - } - /** - * @return Google_Service_YouTube_ActivityContentDetailsBulletin - */ - public function getBulletin() - { - return $this->bulletin; - } - /** - * @param Google_Service_YouTube_ActivityContentDetailsChannelItem - */ - public function setChannelItem(Google_Service_YouTube_ActivityContentDetailsChannelItem $channelItem) - { - $this->channelItem = $channelItem; - } - /** - * @return Google_Service_YouTube_ActivityContentDetailsChannelItem - */ - public function getChannelItem() - { - return $this->channelItem; - } - /** - * @param Google_Service_YouTube_ActivityContentDetailsComment - */ - public function setComment(Google_Service_YouTube_ActivityContentDetailsComment $comment) - { - $this->comment = $comment; - } - /** - * @return Google_Service_YouTube_ActivityContentDetailsComment - */ - public function getComment() - { - return $this->comment; - } - /** - * @param Google_Service_YouTube_ActivityContentDetailsFavorite - */ - public function setFavorite(Google_Service_YouTube_ActivityContentDetailsFavorite $favorite) - { - $this->favorite = $favorite; - } - /** - * @return Google_Service_YouTube_ActivityContentDetailsFavorite - */ - public function getFavorite() - { - return $this->favorite; - } - /** - * @param Google_Service_YouTube_ActivityContentDetailsLike - */ - public function setLike(Google_Service_YouTube_ActivityContentDetailsLike $like) - { - $this->like = $like; - } - /** - * @return Google_Service_YouTube_ActivityContentDetailsLike - */ - public function getLike() - { - return $this->like; - } - /** - * @param Google_Service_YouTube_ActivityContentDetailsPlaylistItem - */ - public function setPlaylistItem(Google_Service_YouTube_ActivityContentDetailsPlaylistItem $playlistItem) - { - $this->playlistItem = $playlistItem; - } - /** - * @return Google_Service_YouTube_ActivityContentDetailsPlaylistItem - */ - public function getPlaylistItem() - { - return $this->playlistItem; - } - /** - * @param Google_Service_YouTube_ActivityContentDetailsPromotedItem - */ - public function setPromotedItem(Google_Service_YouTube_ActivityContentDetailsPromotedItem $promotedItem) - { - $this->promotedItem = $promotedItem; - } - /** - * @return Google_Service_YouTube_ActivityContentDetailsPromotedItem - */ - public function getPromotedItem() - { - return $this->promotedItem; - } - /** - * @param Google_Service_YouTube_ActivityContentDetailsRecommendation - */ - public function setRecommendation(Google_Service_YouTube_ActivityContentDetailsRecommendation $recommendation) - { - $this->recommendation = $recommendation; - } - /** - * @return Google_Service_YouTube_ActivityContentDetailsRecommendation - */ - public function getRecommendation() - { - return $this->recommendation; - } - /** - * @param Google_Service_YouTube_ActivityContentDetailsSocial - */ - public function setSocial(Google_Service_YouTube_ActivityContentDetailsSocial $social) - { - $this->social = $social; - } - /** - * @return Google_Service_YouTube_ActivityContentDetailsSocial - */ - public function getSocial() - { - return $this->social; - } - /** - * @param Google_Service_YouTube_ActivityContentDetailsSubscription - */ - public function setSubscription(Google_Service_YouTube_ActivityContentDetailsSubscription $subscription) - { - $this->subscription = $subscription; - } - /** - * @return Google_Service_YouTube_ActivityContentDetailsSubscription - */ - public function getSubscription() - { - return $this->subscription; - } - /** - * @param Google_Service_YouTube_ActivityContentDetailsUpload - */ - public function setUpload(Google_Service_YouTube_ActivityContentDetailsUpload $upload) - { - $this->upload = $upload; - } - /** - * @return Google_Service_YouTube_ActivityContentDetailsUpload - */ - public function getUpload() - { - return $this->upload; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ActivityContentDetailsBulletin.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ActivityContentDetailsBulletin.php deleted file mode 100644 index bec52b0c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ActivityContentDetailsBulletin.php +++ /dev/null @@ -1,37 +0,0 @@ -resourceId = $resourceId; - } - /** - * @return Google_Service_YouTube_ResourceId - */ - public function getResourceId() - { - return $this->resourceId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ActivityContentDetailsChannelItem.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ActivityContentDetailsChannelItem.php deleted file mode 100644 index 65686b3a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ActivityContentDetailsChannelItem.php +++ /dev/null @@ -1,37 +0,0 @@ -resourceId = $resourceId; - } - /** - * @return Google_Service_YouTube_ResourceId - */ - public function getResourceId() - { - return $this->resourceId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ActivityContentDetailsComment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ActivityContentDetailsComment.php deleted file mode 100644 index a1308aea..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ActivityContentDetailsComment.php +++ /dev/null @@ -1,37 +0,0 @@ -resourceId = $resourceId; - } - /** - * @return Google_Service_YouTube_ResourceId - */ - public function getResourceId() - { - return $this->resourceId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ActivityContentDetailsFavorite.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ActivityContentDetailsFavorite.php deleted file mode 100644 index d06d5fa1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ActivityContentDetailsFavorite.php +++ /dev/null @@ -1,37 +0,0 @@ -resourceId = $resourceId; - } - /** - * @return Google_Service_YouTube_ResourceId - */ - public function getResourceId() - { - return $this->resourceId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ActivityContentDetailsLike.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ActivityContentDetailsLike.php deleted file mode 100644 index 3fc64a39..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ActivityContentDetailsLike.php +++ /dev/null @@ -1,37 +0,0 @@ -resourceId = $resourceId; - } - /** - * @return Google_Service_YouTube_ResourceId - */ - public function getResourceId() - { - return $this->resourceId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ActivityContentDetailsPlaylistItem.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ActivityContentDetailsPlaylistItem.php deleted file mode 100644 index ac054f63..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ActivityContentDetailsPlaylistItem.php +++ /dev/null @@ -1,55 +0,0 @@ -playlistId = $playlistId; - } - public function getPlaylistId() - { - return $this->playlistId; - } - public function setPlaylistItemId($playlistItemId) - { - $this->playlistItemId = $playlistItemId; - } - public function getPlaylistItemId() - { - return $this->playlistItemId; - } - /** - * @param Google_Service_YouTube_ResourceId - */ - public function setResourceId(Google_Service_YouTube_ResourceId $resourceId) - { - $this->resourceId = $resourceId; - } - /** - * @return Google_Service_YouTube_ResourceId - */ - public function getResourceId() - { - return $this->resourceId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ActivityContentDetailsPromotedItem.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ActivityContentDetailsPromotedItem.php deleted file mode 100644 index c5e587ac..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ActivityContentDetailsPromotedItem.php +++ /dev/null @@ -1,112 +0,0 @@ -adTag = $adTag; - } - public function getAdTag() - { - return $this->adTag; - } - public function setClickTrackingUrl($clickTrackingUrl) - { - $this->clickTrackingUrl = $clickTrackingUrl; - } - public function getClickTrackingUrl() - { - return $this->clickTrackingUrl; - } - public function setCreativeViewUrl($creativeViewUrl) - { - $this->creativeViewUrl = $creativeViewUrl; - } - public function getCreativeViewUrl() - { - return $this->creativeViewUrl; - } - public function setCtaType($ctaType) - { - $this->ctaType = $ctaType; - } - public function getCtaType() - { - return $this->ctaType; - } - public function setCustomCtaButtonText($customCtaButtonText) - { - $this->customCtaButtonText = $customCtaButtonText; - } - public function getCustomCtaButtonText() - { - return $this->customCtaButtonText; - } - public function setDescriptionText($descriptionText) - { - $this->descriptionText = $descriptionText; - } - public function getDescriptionText() - { - return $this->descriptionText; - } - public function setDestinationUrl($destinationUrl) - { - $this->destinationUrl = $destinationUrl; - } - public function getDestinationUrl() - { - return $this->destinationUrl; - } - public function setForecastingUrl($forecastingUrl) - { - $this->forecastingUrl = $forecastingUrl; - } - public function getForecastingUrl() - { - return $this->forecastingUrl; - } - public function setImpressionUrl($impressionUrl) - { - $this->impressionUrl = $impressionUrl; - } - public function getImpressionUrl() - { - return $this->impressionUrl; - } - public function setVideoId($videoId) - { - $this->videoId = $videoId; - } - public function getVideoId() - { - return $this->videoId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ActivityContentDetailsRecommendation.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ActivityContentDetailsRecommendation.php deleted file mode 100644 index fa0fd9c6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ActivityContentDetailsRecommendation.php +++ /dev/null @@ -1,62 +0,0 @@ -reason = $reason; - } - public function getReason() - { - return $this->reason; - } - /** - * @param Google_Service_YouTube_ResourceId - */ - public function setResourceId(Google_Service_YouTube_ResourceId $resourceId) - { - $this->resourceId = $resourceId; - } - /** - * @return Google_Service_YouTube_ResourceId - */ - public function getResourceId() - { - return $this->resourceId; - } - /** - * @param Google_Service_YouTube_ResourceId - */ - public function setSeedResourceId(Google_Service_YouTube_ResourceId $seedResourceId) - { - $this->seedResourceId = $seedResourceId; - } - /** - * @return Google_Service_YouTube_ResourceId - */ - public function getSeedResourceId() - { - return $this->seedResourceId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ActivityContentDetailsSocial.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ActivityContentDetailsSocial.php deleted file mode 100644 index 0e52bd75..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ActivityContentDetailsSocial.php +++ /dev/null @@ -1,73 +0,0 @@ -author = $author; - } - public function getAuthor() - { - return $this->author; - } - public function setImageUrl($imageUrl) - { - $this->imageUrl = $imageUrl; - } - public function getImageUrl() - { - return $this->imageUrl; - } - public function setReferenceUrl($referenceUrl) - { - $this->referenceUrl = $referenceUrl; - } - public function getReferenceUrl() - { - return $this->referenceUrl; - } - /** - * @param Google_Service_YouTube_ResourceId - */ - public function setResourceId(Google_Service_YouTube_ResourceId $resourceId) - { - $this->resourceId = $resourceId; - } - /** - * @return Google_Service_YouTube_ResourceId - */ - public function getResourceId() - { - return $this->resourceId; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ActivityContentDetailsSubscription.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ActivityContentDetailsSubscription.php deleted file mode 100644 index b3c0c938..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ActivityContentDetailsSubscription.php +++ /dev/null @@ -1,37 +0,0 @@ -resourceId = $resourceId; - } - /** - * @return Google_Service_YouTube_ResourceId - */ - public function getResourceId() - { - return $this->resourceId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ActivityContentDetailsUpload.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ActivityContentDetailsUpload.php deleted file mode 100644 index 95b6b9f2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ActivityContentDetailsUpload.php +++ /dev/null @@ -1,30 +0,0 @@ -videoId = $videoId; - } - public function getVideoId() - { - return $this->videoId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ActivityListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ActivityListResponse.php deleted file mode 100644 index 4675f6c9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ActivityListResponse.php +++ /dev/null @@ -1,124 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setEventId($eventId) - { - $this->eventId = $eventId; - } - public function getEventId() - { - return $this->eventId; - } - /** - * @param Google_Service_YouTube_Activity - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_YouTube_Activity - */ - public function getItems() - { - return $this->items; - } - 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_YouTube_PageInfo - */ - public function setPageInfo(Google_Service_YouTube_PageInfo $pageInfo) - { - $this->pageInfo = $pageInfo; - } - /** - * @return Google_Service_YouTube_PageInfo - */ - public function getPageInfo() - { - return $this->pageInfo; - } - public function setPrevPageToken($prevPageToken) - { - $this->prevPageToken = $prevPageToken; - } - public function getPrevPageToken() - { - return $this->prevPageToken; - } - /** - * @param Google_Service_YouTube_TokenPagination - */ - public function setTokenPagination(Google_Service_YouTube_TokenPagination $tokenPagination) - { - $this->tokenPagination = $tokenPagination; - } - /** - * @return Google_Service_YouTube_TokenPagination - */ - public function getTokenPagination() - { - return $this->tokenPagination; - } - public function setVisitorId($visitorId) - { - $this->visitorId = $visitorId; - } - public function getVisitorId() - { - return $this->visitorId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ActivitySnippet.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ActivitySnippet.php deleted file mode 100644 index 0441cf32..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ActivitySnippet.php +++ /dev/null @@ -1,100 +0,0 @@ -channelId = $channelId; - } - public function getChannelId() - { - return $this->channelId; - } - public function setChannelTitle($channelTitle) - { - $this->channelTitle = $channelTitle; - } - public function getChannelTitle() - { - return $this->channelTitle; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setGroupId($groupId) - { - $this->groupId = $groupId; - } - public function getGroupId() - { - return $this->groupId; - } - public function setPublishedAt($publishedAt) - { - $this->publishedAt = $publishedAt; - } - public function getPublishedAt() - { - return $this->publishedAt; - } - /** - * @param Google_Service_YouTube_ThumbnailDetails - */ - public function setThumbnails(Google_Service_YouTube_ThumbnailDetails $thumbnails) - { - $this->thumbnails = $thumbnails; - } - /** - * @return Google_Service_YouTube_ThumbnailDetails - */ - public function getThumbnails() - { - return $this->thumbnails; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Caption.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Caption.php deleted file mode 100644 index a7f3a054..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Caption.php +++ /dev/null @@ -1,64 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - 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; - } - /** - * @param Google_Service_YouTube_CaptionSnippet - */ - public function setSnippet(Google_Service_YouTube_CaptionSnippet $snippet) - { - $this->snippet = $snippet; - } - /** - * @return Google_Service_YouTube_CaptionSnippet - */ - public function getSnippet() - { - return $this->snippet; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/CaptionListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/CaptionListResponse.php deleted file mode 100644 index 23723197..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/CaptionListResponse.php +++ /dev/null @@ -1,74 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setEventId($eventId) - { - $this->eventId = $eventId; - } - public function getEventId() - { - return $this->eventId; - } - /** - * @param Google_Service_YouTube_Caption - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_YouTube_Caption - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setVisitorId($visitorId) - { - $this->visitorId = $visitorId; - } - public function getVisitorId() - { - return $this->visitorId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/CaptionSnippet.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/CaptionSnippet.php deleted file mode 100644 index 06f0c074..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/CaptionSnippet.php +++ /dev/null @@ -1,138 +0,0 @@ -audioTrackType = $audioTrackType; - } - public function getAudioTrackType() - { - return $this->audioTrackType; - } - public function setFailureReason($failureReason) - { - $this->failureReason = $failureReason; - } - public function getFailureReason() - { - return $this->failureReason; - } - public function setIsAutoSynced($isAutoSynced) - { - $this->isAutoSynced = $isAutoSynced; - } - public function getIsAutoSynced() - { - return $this->isAutoSynced; - } - public function setIsCC($isCC) - { - $this->isCC = $isCC; - } - public function getIsCC() - { - return $this->isCC; - } - public function setIsDraft($isDraft) - { - $this->isDraft = $isDraft; - } - public function getIsDraft() - { - return $this->isDraft; - } - public function setIsEasyReader($isEasyReader) - { - $this->isEasyReader = $isEasyReader; - } - public function getIsEasyReader() - { - return $this->isEasyReader; - } - public function setIsLarge($isLarge) - { - $this->isLarge = $isLarge; - } - public function getIsLarge() - { - return $this->isLarge; - } - public function setLanguage($language) - { - $this->language = $language; - } - public function getLanguage() - { - return $this->language; - } - public function setLastUpdated($lastUpdated) - { - $this->lastUpdated = $lastUpdated; - } - public function getLastUpdated() - { - return $this->lastUpdated; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } - public function setTrackKind($trackKind) - { - $this->trackKind = $trackKind; - } - public function getTrackKind() - { - return $this->trackKind; - } - public function setVideoId($videoId) - { - $this->videoId = $videoId; - } - public function getVideoId() - { - return $this->videoId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/CdnSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/CdnSettings.php deleted file mode 100644 index f2d5e652..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/CdnSettings.php +++ /dev/null @@ -1,73 +0,0 @@ -format = $format; - } - public function getFormat() - { - return $this->format; - } - public function setFrameRate($frameRate) - { - $this->frameRate = $frameRate; - } - public function getFrameRate() - { - return $this->frameRate; - } - /** - * @param Google_Service_YouTube_IngestionInfo - */ - public function setIngestionInfo(Google_Service_YouTube_IngestionInfo $ingestionInfo) - { - $this->ingestionInfo = $ingestionInfo; - } - /** - * @return Google_Service_YouTube_IngestionInfo - */ - public function getIngestionInfo() - { - return $this->ingestionInfo; - } - public function setIngestionType($ingestionType) - { - $this->ingestionType = $ingestionType; - } - public function getIngestionType() - { - return $this->ingestionType; - } - public function setResolution($resolution) - { - $this->resolution = $resolution; - } - public function getResolution() - { - return $this->resolution; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Channel.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Channel.php deleted file mode 100644 index e266201b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Channel.php +++ /dev/null @@ -1,224 +0,0 @@ -auditDetails = $auditDetails; - } - /** - * @return Google_Service_YouTube_ChannelAuditDetails - */ - public function getAuditDetails() - { - return $this->auditDetails; - } - /** - * @param Google_Service_YouTube_ChannelBrandingSettings - */ - public function setBrandingSettings(Google_Service_YouTube_ChannelBrandingSettings $brandingSettings) - { - $this->brandingSettings = $brandingSettings; - } - /** - * @return Google_Service_YouTube_ChannelBrandingSettings - */ - public function getBrandingSettings() - { - return $this->brandingSettings; - } - /** - * @param Google_Service_YouTube_ChannelContentDetails - */ - public function setContentDetails(Google_Service_YouTube_ChannelContentDetails $contentDetails) - { - $this->contentDetails = $contentDetails; - } - /** - * @return Google_Service_YouTube_ChannelContentDetails - */ - public function getContentDetails() - { - return $this->contentDetails; - } - /** - * @param Google_Service_YouTube_ChannelContentOwnerDetails - */ - public function setContentOwnerDetails(Google_Service_YouTube_ChannelContentOwnerDetails $contentOwnerDetails) - { - $this->contentOwnerDetails = $contentOwnerDetails; - } - /** - * @return Google_Service_YouTube_ChannelContentOwnerDetails - */ - public function getContentOwnerDetails() - { - return $this->contentOwnerDetails; - } - /** - * @param Google_Service_YouTube_ChannelConversionPings - */ - public function setConversionPings(Google_Service_YouTube_ChannelConversionPings $conversionPings) - { - $this->conversionPings = $conversionPings; - } - /** - * @return Google_Service_YouTube_ChannelConversionPings - */ - public function getConversionPings() - { - return $this->conversionPings; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_YouTube_InvideoPromotion - */ - public function setInvideoPromotion(Google_Service_YouTube_InvideoPromotion $invideoPromotion) - { - $this->invideoPromotion = $invideoPromotion; - } - /** - * @return Google_Service_YouTube_InvideoPromotion - */ - public function getInvideoPromotion() - { - return $this->invideoPromotion; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_YouTube_ChannelLocalization - */ - public function setLocalizations($localizations) - { - $this->localizations = $localizations; - } - /** - * @return Google_Service_YouTube_ChannelLocalization - */ - public function getLocalizations() - { - return $this->localizations; - } - /** - * @param Google_Service_YouTube_ChannelSnippet - */ - public function setSnippet(Google_Service_YouTube_ChannelSnippet $snippet) - { - $this->snippet = $snippet; - } - /** - * @return Google_Service_YouTube_ChannelSnippet - */ - public function getSnippet() - { - return $this->snippet; - } - /** - * @param Google_Service_YouTube_ChannelStatistics - */ - public function setStatistics(Google_Service_YouTube_ChannelStatistics $statistics) - { - $this->statistics = $statistics; - } - /** - * @return Google_Service_YouTube_ChannelStatistics - */ - public function getStatistics() - { - return $this->statistics; - } - /** - * @param Google_Service_YouTube_ChannelStatus - */ - public function setStatus(Google_Service_YouTube_ChannelStatus $status) - { - $this->status = $status; - } - /** - * @return Google_Service_YouTube_ChannelStatus - */ - public function getStatus() - { - return $this->status; - } - /** - * @param Google_Service_YouTube_ChannelTopicDetails - */ - public function setTopicDetails(Google_Service_YouTube_ChannelTopicDetails $topicDetails) - { - $this->topicDetails = $topicDetails; - } - /** - * @return Google_Service_YouTube_ChannelTopicDetails - */ - public function getTopicDetails() - { - return $this->topicDetails; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelAuditDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelAuditDetails.php deleted file mode 100644 index c754d0a0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelAuditDetails.php +++ /dev/null @@ -1,48 +0,0 @@ -communityGuidelinesGoodStanding = $communityGuidelinesGoodStanding; - } - public function getCommunityGuidelinesGoodStanding() - { - return $this->communityGuidelinesGoodStanding; - } - public function setContentIdClaimsGoodStanding($contentIdClaimsGoodStanding) - { - $this->contentIdClaimsGoodStanding = $contentIdClaimsGoodStanding; - } - public function getContentIdClaimsGoodStanding() - { - return $this->contentIdClaimsGoodStanding; - } - public function setCopyrightStrikesGoodStanding($copyrightStrikesGoodStanding) - { - $this->copyrightStrikesGoodStanding = $copyrightStrikesGoodStanding; - } - public function getCopyrightStrikesGoodStanding() - { - return $this->copyrightStrikesGoodStanding; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelBannerResource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelBannerResource.php deleted file mode 100644 index 095c5115..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelBannerResource.php +++ /dev/null @@ -1,48 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelBrandingSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelBrandingSettings.php deleted file mode 100644 index 90e5fc2d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelBrandingSettings.php +++ /dev/null @@ -1,86 +0,0 @@ -channel = $channel; - } - /** - * @return Google_Service_YouTube_ChannelSettings - */ - public function getChannel() - { - return $this->channel; - } - /** - * @param Google_Service_YouTube_PropertyValue - */ - public function setHints($hints) - { - $this->hints = $hints; - } - /** - * @return Google_Service_YouTube_PropertyValue - */ - public function getHints() - { - return $this->hints; - } - /** - * @param Google_Service_YouTube_ImageSettings - */ - public function setImage(Google_Service_YouTube_ImageSettings $image) - { - $this->image = $image; - } - /** - * @return Google_Service_YouTube_ImageSettings - */ - public function getImage() - { - return $this->image; - } - /** - * @param Google_Service_YouTube_WatchSettings - */ - public function setWatch(Google_Service_YouTube_WatchSettings $watch) - { - $this->watch = $watch; - } - /** - * @return Google_Service_YouTube_WatchSettings - */ - public function getWatch() - { - return $this->watch; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelContentDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelContentDetails.php deleted file mode 100644 index 35597175..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelContentDetails.php +++ /dev/null @@ -1,37 +0,0 @@ -relatedPlaylists = $relatedPlaylists; - } - /** - * @return Google_Service_YouTube_ChannelContentDetailsRelatedPlaylists - */ - public function getRelatedPlaylists() - { - return $this->relatedPlaylists; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelContentDetailsRelatedPlaylists.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelContentDetailsRelatedPlaylists.php deleted file mode 100644 index 3abe8eb7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelContentDetailsRelatedPlaylists.php +++ /dev/null @@ -1,66 +0,0 @@ -favorites = $favorites; - } - public function getFavorites() - { - return $this->favorites; - } - public function setLikes($likes) - { - $this->likes = $likes; - } - public function getLikes() - { - return $this->likes; - } - public function setUploads($uploads) - { - $this->uploads = $uploads; - } - public function getUploads() - { - return $this->uploads; - } - public function setWatchHistory($watchHistory) - { - $this->watchHistory = $watchHistory; - } - public function getWatchHistory() - { - return $this->watchHistory; - } - public function setWatchLater($watchLater) - { - $this->watchLater = $watchLater; - } - public function getWatchLater() - { - return $this->watchLater; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelContentOwnerDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelContentOwnerDetails.php deleted file mode 100644 index a6174a35..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelContentOwnerDetails.php +++ /dev/null @@ -1,39 +0,0 @@ -contentOwner = $contentOwner; - } - public function getContentOwner() - { - return $this->contentOwner; - } - public function setTimeLinked($timeLinked) - { - $this->timeLinked = $timeLinked; - } - public function getTimeLinked() - { - return $this->timeLinked; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelConversionPing.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelConversionPing.php deleted file mode 100644 index 67c17046..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelConversionPing.php +++ /dev/null @@ -1,39 +0,0 @@ -context = $context; - } - public function getContext() - { - return $this->context; - } - public function setConversionUrl($conversionUrl) - { - $this->conversionUrl = $conversionUrl; - } - public function getConversionUrl() - { - return $this->conversionUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelConversionPings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelConversionPings.php deleted file mode 100644 index 2291a676..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelConversionPings.php +++ /dev/null @@ -1,38 +0,0 @@ -pings = $pings; - } - /** - * @return Google_Service_YouTube_ChannelConversionPing - */ - public function getPings() - { - return $this->pings; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelListResponse.php deleted file mode 100644 index b986e0d4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelListResponse.php +++ /dev/null @@ -1,124 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setEventId($eventId) - { - $this->eventId = $eventId; - } - public function getEventId() - { - return $this->eventId; - } - /** - * @param Google_Service_YouTube_Channel - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_YouTube_Channel - */ - public function getItems() - { - return $this->items; - } - 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_YouTube_PageInfo - */ - public function setPageInfo(Google_Service_YouTube_PageInfo $pageInfo) - { - $this->pageInfo = $pageInfo; - } - /** - * @return Google_Service_YouTube_PageInfo - */ - public function getPageInfo() - { - return $this->pageInfo; - } - public function setPrevPageToken($prevPageToken) - { - $this->prevPageToken = $prevPageToken; - } - public function getPrevPageToken() - { - return $this->prevPageToken; - } - /** - * @param Google_Service_YouTube_TokenPagination - */ - public function setTokenPagination(Google_Service_YouTube_TokenPagination $tokenPagination) - { - $this->tokenPagination = $tokenPagination; - } - /** - * @return Google_Service_YouTube_TokenPagination - */ - public function getTokenPagination() - { - return $this->tokenPagination; - } - public function setVisitorId($visitorId) - { - $this->visitorId = $visitorId; - } - public function getVisitorId() - { - return $this->visitorId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelLocalization.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelLocalization.php deleted file mode 100644 index 13606a94..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelLocalization.php +++ /dev/null @@ -1,39 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelProfileDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelProfileDetails.php deleted file mode 100644 index f4718fee..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelProfileDetails.php +++ /dev/null @@ -1,57 +0,0 @@ -channelId = $channelId; - } - public function getChannelId() - { - return $this->channelId; - } - public function setChannelUrl($channelUrl) - { - $this->channelUrl = $channelUrl; - } - public function getChannelUrl() - { - return $this->channelUrl; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setProfileImageUrl($profileImageUrl) - { - $this->profileImageUrl = $profileImageUrl; - } - public function getProfileImageUrl() - { - return $this->profileImageUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelSection.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelSection.php deleted file mode 100644 index 5d77d88e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelSection.php +++ /dev/null @@ -1,112 +0,0 @@ -contentDetails = $contentDetails; - } - /** - * @return Google_Service_YouTube_ChannelSectionContentDetails - */ - public function getContentDetails() - { - return $this->contentDetails; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - 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; - } - /** - * @param Google_Service_YouTube_ChannelSectionLocalization - */ - public function setLocalizations($localizations) - { - $this->localizations = $localizations; - } - /** - * @return Google_Service_YouTube_ChannelSectionLocalization - */ - public function getLocalizations() - { - return $this->localizations; - } - /** - * @param Google_Service_YouTube_ChannelSectionSnippet - */ - public function setSnippet(Google_Service_YouTube_ChannelSectionSnippet $snippet) - { - $this->snippet = $snippet; - } - /** - * @return Google_Service_YouTube_ChannelSectionSnippet - */ - public function getSnippet() - { - return $this->snippet; - } - /** - * @param Google_Service_YouTube_ChannelSectionTargeting - */ - public function setTargeting(Google_Service_YouTube_ChannelSectionTargeting $targeting) - { - $this->targeting = $targeting; - } - /** - * @return Google_Service_YouTube_ChannelSectionTargeting - */ - public function getTargeting() - { - return $this->targeting; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelSectionContentDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelSectionContentDetails.php deleted file mode 100644 index 9664b253..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelSectionContentDetails.php +++ /dev/null @@ -1,40 +0,0 @@ -channels = $channels; - } - public function getChannels() - { - return $this->channels; - } - public function setPlaylists($playlists) - { - $this->playlists = $playlists; - } - public function getPlaylists() - { - return $this->playlists; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelSectionListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelSectionListResponse.php deleted file mode 100644 index a0df7992..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelSectionListResponse.php +++ /dev/null @@ -1,74 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setEventId($eventId) - { - $this->eventId = $eventId; - } - public function getEventId() - { - return $this->eventId; - } - /** - * @param Google_Service_YouTube_ChannelSection - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_YouTube_ChannelSection - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setVisitorId($visitorId) - { - $this->visitorId = $visitorId; - } - public function getVisitorId() - { - return $this->visitorId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelSectionLocalization.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelSectionLocalization.php deleted file mode 100644 index 8dd73df9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelSectionLocalization.php +++ /dev/null @@ -1,30 +0,0 @@ -title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelSectionSnippet.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelSectionSnippet.php deleted file mode 100644 index 2f10929b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelSectionSnippet.php +++ /dev/null @@ -1,91 +0,0 @@ -channelId = $channelId; - } - public function getChannelId() - { - return $this->channelId; - } - public function setDefaultLanguage($defaultLanguage) - { - $this->defaultLanguage = $defaultLanguage; - } - public function getDefaultLanguage() - { - return $this->defaultLanguage; - } - /** - * @param Google_Service_YouTube_ChannelSectionLocalization - */ - public function setLocalized(Google_Service_YouTube_ChannelSectionLocalization $localized) - { - $this->localized = $localized; - } - /** - * @return Google_Service_YouTube_ChannelSectionLocalization - */ - public function getLocalized() - { - return $this->localized; - } - public function setPosition($position) - { - $this->position = $position; - } - public function getPosition() - { - return $this->position; - } - public function setStyle($style) - { - $this->style = $style; - } - public function getStyle() - { - return $this->style; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelSectionTargeting.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelSectionTargeting.php deleted file mode 100644 index a2f06d09..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelSectionTargeting.php +++ /dev/null @@ -1,49 +0,0 @@ -countries = $countries; - } - public function getCountries() - { - return $this->countries; - } - public function setLanguages($languages) - { - $this->languages = $languages; - } - public function getLanguages() - { - return $this->languages; - } - public function setRegions($regions) - { - $this->regions = $regions; - } - public function getRegions() - { - return $this->regions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelSettings.php deleted file mode 100644 index d626741b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelSettings.php +++ /dev/null @@ -1,148 +0,0 @@ -country = $country; - } - public function getCountry() - { - return $this->country; - } - public function setDefaultLanguage($defaultLanguage) - { - $this->defaultLanguage = $defaultLanguage; - } - public function getDefaultLanguage() - { - return $this->defaultLanguage; - } - public function setDefaultTab($defaultTab) - { - $this->defaultTab = $defaultTab; - } - public function getDefaultTab() - { - return $this->defaultTab; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setFeaturedChannelsTitle($featuredChannelsTitle) - { - $this->featuredChannelsTitle = $featuredChannelsTitle; - } - public function getFeaturedChannelsTitle() - { - return $this->featuredChannelsTitle; - } - public function setFeaturedChannelsUrls($featuredChannelsUrls) - { - $this->featuredChannelsUrls = $featuredChannelsUrls; - } - public function getFeaturedChannelsUrls() - { - return $this->featuredChannelsUrls; - } - public function setKeywords($keywords) - { - $this->keywords = $keywords; - } - public function getKeywords() - { - return $this->keywords; - } - public function setModerateComments($moderateComments) - { - $this->moderateComments = $moderateComments; - } - public function getModerateComments() - { - return $this->moderateComments; - } - public function setProfileColor($profileColor) - { - $this->profileColor = $profileColor; - } - public function getProfileColor() - { - return $this->profileColor; - } - public function setShowBrowseView($showBrowseView) - { - $this->showBrowseView = $showBrowseView; - } - public function getShowBrowseView() - { - return $this->showBrowseView; - } - public function setShowRelatedChannels($showRelatedChannels) - { - $this->showRelatedChannels = $showRelatedChannels; - } - public function getShowRelatedChannels() - { - return $this->showRelatedChannels; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } - public function setTrackingAnalyticsAccountId($trackingAnalyticsAccountId) - { - $this->trackingAnalyticsAccountId = $trackingAnalyticsAccountId; - } - public function getTrackingAnalyticsAccountId() - { - return $this->trackingAnalyticsAccountId; - } - public function setUnsubscribedTrailer($unsubscribedTrailer) - { - $this->unsubscribedTrailer = $unsubscribedTrailer; - } - public function getUnsubscribedTrailer() - { - return $this->unsubscribedTrailer; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelSnippet.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelSnippet.php deleted file mode 100644 index 83fad864..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelSnippet.php +++ /dev/null @@ -1,107 +0,0 @@ -country = $country; - } - public function getCountry() - { - return $this->country; - } - public function setCustomUrl($customUrl) - { - $this->customUrl = $customUrl; - } - public function getCustomUrl() - { - return $this->customUrl; - } - public function setDefaultLanguage($defaultLanguage) - { - $this->defaultLanguage = $defaultLanguage; - } - public function getDefaultLanguage() - { - return $this->defaultLanguage; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - /** - * @param Google_Service_YouTube_ChannelLocalization - */ - public function setLocalized(Google_Service_YouTube_ChannelLocalization $localized) - { - $this->localized = $localized; - } - /** - * @return Google_Service_YouTube_ChannelLocalization - */ - public function getLocalized() - { - return $this->localized; - } - public function setPublishedAt($publishedAt) - { - $this->publishedAt = $publishedAt; - } - public function getPublishedAt() - { - return $this->publishedAt; - } - /** - * @param Google_Service_YouTube_ThumbnailDetails - */ - public function setThumbnails(Google_Service_YouTube_ThumbnailDetails $thumbnails) - { - $this->thumbnails = $thumbnails; - } - /** - * @return Google_Service_YouTube_ThumbnailDetails - */ - public function getThumbnails() - { - return $this->thumbnails; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelStatistics.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelStatistics.php deleted file mode 100644 index f24d1156..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelStatistics.php +++ /dev/null @@ -1,66 +0,0 @@ -commentCount = $commentCount; - } - public function getCommentCount() - { - return $this->commentCount; - } - public function setHiddenSubscriberCount($hiddenSubscriberCount) - { - $this->hiddenSubscriberCount = $hiddenSubscriberCount; - } - public function getHiddenSubscriberCount() - { - return $this->hiddenSubscriberCount; - } - public function setSubscriberCount($subscriberCount) - { - $this->subscriberCount = $subscriberCount; - } - public function getSubscriberCount() - { - return $this->subscriberCount; - } - public function setVideoCount($videoCount) - { - $this->videoCount = $videoCount; - } - public function getVideoCount() - { - return $this->videoCount; - } - public function setViewCount($viewCount) - { - $this->viewCount = $viewCount; - } - public function getViewCount() - { - return $this->viewCount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelStatus.php deleted file mode 100644 index be371e8e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelStatus.php +++ /dev/null @@ -1,66 +0,0 @@ -isLinked = $isLinked; - } - public function getIsLinked() - { - return $this->isLinked; - } - public function setLongUploadsStatus($longUploadsStatus) - { - $this->longUploadsStatus = $longUploadsStatus; - } - public function getLongUploadsStatus() - { - return $this->longUploadsStatus; - } - public function setMadeForKids($madeForKids) - { - $this->madeForKids = $madeForKids; - } - public function getMadeForKids() - { - return $this->madeForKids; - } - public function setPrivacyStatus($privacyStatus) - { - $this->privacyStatus = $privacyStatus; - } - public function getPrivacyStatus() - { - return $this->privacyStatus; - } - public function setSelfDeclaredMadeForKids($selfDeclaredMadeForKids) - { - $this->selfDeclaredMadeForKids = $selfDeclaredMadeForKids; - } - public function getSelfDeclaredMadeForKids() - { - return $this->selfDeclaredMadeForKids; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelTopicDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelTopicDetails.php deleted file mode 100644 index 1f4fe1a3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ChannelTopicDetails.php +++ /dev/null @@ -1,40 +0,0 @@ -topicCategories = $topicCategories; - } - public function getTopicCategories() - { - return $this->topicCategories; - } - public function setTopicIds($topicIds) - { - $this->topicIds = $topicIds; - } - public function getTopicIds() - { - return $this->topicIds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Comment.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Comment.php deleted file mode 100644 index 0d8a4c8c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Comment.php +++ /dev/null @@ -1,64 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - 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; - } - /** - * @param Google_Service_YouTube_CommentSnippet - */ - public function setSnippet(Google_Service_YouTube_CommentSnippet $snippet) - { - $this->snippet = $snippet; - } - /** - * @return Google_Service_YouTube_CommentSnippet - */ - public function getSnippet() - { - return $this->snippet; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/CommentListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/CommentListResponse.php deleted file mode 100644 index be411e4f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/CommentListResponse.php +++ /dev/null @@ -1,115 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setEventId($eventId) - { - $this->eventId = $eventId; - } - public function getEventId() - { - return $this->eventId; - } - /** - * @param Google_Service_YouTube_Comment - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_YouTube_Comment - */ - public function getItems() - { - return $this->items; - } - 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_YouTube_PageInfo - */ - public function setPageInfo(Google_Service_YouTube_PageInfo $pageInfo) - { - $this->pageInfo = $pageInfo; - } - /** - * @return Google_Service_YouTube_PageInfo - */ - public function getPageInfo() - { - return $this->pageInfo; - } - /** - * @param Google_Service_YouTube_TokenPagination - */ - public function setTokenPagination(Google_Service_YouTube_TokenPagination $tokenPagination) - { - $this->tokenPagination = $tokenPagination; - } - /** - * @return Google_Service_YouTube_TokenPagination - */ - public function getTokenPagination() - { - return $this->tokenPagination; - } - public function setVisitorId($visitorId) - { - $this->visitorId = $visitorId; - } - public function getVisitorId() - { - return $this->visitorId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/CommentSnippet.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/CommentSnippet.php deleted file mode 100644 index f3367dba..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/CommentSnippet.php +++ /dev/null @@ -1,156 +0,0 @@ -authorChannelId = $authorChannelId; - } - public function getAuthorChannelId() - { - return $this->authorChannelId; - } - public function setAuthorChannelUrl($authorChannelUrl) - { - $this->authorChannelUrl = $authorChannelUrl; - } - public function getAuthorChannelUrl() - { - return $this->authorChannelUrl; - } - public function setAuthorDisplayName($authorDisplayName) - { - $this->authorDisplayName = $authorDisplayName; - } - public function getAuthorDisplayName() - { - return $this->authorDisplayName; - } - public function setAuthorProfileImageUrl($authorProfileImageUrl) - { - $this->authorProfileImageUrl = $authorProfileImageUrl; - } - public function getAuthorProfileImageUrl() - { - return $this->authorProfileImageUrl; - } - public function setCanRate($canRate) - { - $this->canRate = $canRate; - } - public function getCanRate() - { - return $this->canRate; - } - public function setChannelId($channelId) - { - $this->channelId = $channelId; - } - public function getChannelId() - { - return $this->channelId; - } - public function setLikeCount($likeCount) - { - $this->likeCount = $likeCount; - } - public function getLikeCount() - { - return $this->likeCount; - } - public function setModerationStatus($moderationStatus) - { - $this->moderationStatus = $moderationStatus; - } - public function getModerationStatus() - { - return $this->moderationStatus; - } - public function setParentId($parentId) - { - $this->parentId = $parentId; - } - public function getParentId() - { - return $this->parentId; - } - public function setPublishedAt($publishedAt) - { - $this->publishedAt = $publishedAt; - } - public function getPublishedAt() - { - return $this->publishedAt; - } - public function setTextDisplay($textDisplay) - { - $this->textDisplay = $textDisplay; - } - public function getTextDisplay() - { - return $this->textDisplay; - } - public function setTextOriginal($textOriginal) - { - $this->textOriginal = $textOriginal; - } - public function getTextOriginal() - { - return $this->textOriginal; - } - public function setUpdatedAt($updatedAt) - { - $this->updatedAt = $updatedAt; - } - public function getUpdatedAt() - { - return $this->updatedAt; - } - public function setVideoId($videoId) - { - $this->videoId = $videoId; - } - public function getVideoId() - { - return $this->videoId; - } - public function setViewerRating($viewerRating) - { - $this->viewerRating = $viewerRating; - } - public function getViewerRating() - { - return $this->viewerRating; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/CommentThread.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/CommentThread.php deleted file mode 100644 index 100c1e4e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/CommentThread.php +++ /dev/null @@ -1,80 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - 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; - } - /** - * @param Google_Service_YouTube_CommentThreadReplies - */ - public function setReplies(Google_Service_YouTube_CommentThreadReplies $replies) - { - $this->replies = $replies; - } - /** - * @return Google_Service_YouTube_CommentThreadReplies - */ - public function getReplies() - { - return $this->replies; - } - /** - * @param Google_Service_YouTube_CommentThreadSnippet - */ - public function setSnippet(Google_Service_YouTube_CommentThreadSnippet $snippet) - { - $this->snippet = $snippet; - } - /** - * @return Google_Service_YouTube_CommentThreadSnippet - */ - public function getSnippet() - { - return $this->snippet; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/CommentThreadListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/CommentThreadListResponse.php deleted file mode 100644 index 51050e3a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/CommentThreadListResponse.php +++ /dev/null @@ -1,115 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setEventId($eventId) - { - $this->eventId = $eventId; - } - public function getEventId() - { - return $this->eventId; - } - /** - * @param Google_Service_YouTube_CommentThread - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_YouTube_CommentThread - */ - public function getItems() - { - return $this->items; - } - 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_YouTube_PageInfo - */ - public function setPageInfo(Google_Service_YouTube_PageInfo $pageInfo) - { - $this->pageInfo = $pageInfo; - } - /** - * @return Google_Service_YouTube_PageInfo - */ - public function getPageInfo() - { - return $this->pageInfo; - } - /** - * @param Google_Service_YouTube_TokenPagination - */ - public function setTokenPagination(Google_Service_YouTube_TokenPagination $tokenPagination) - { - $this->tokenPagination = $tokenPagination; - } - /** - * @return Google_Service_YouTube_TokenPagination - */ - public function getTokenPagination() - { - return $this->tokenPagination; - } - public function setVisitorId($visitorId) - { - $this->visitorId = $visitorId; - } - public function getVisitorId() - { - return $this->visitorId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/CommentThreadReplies.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/CommentThreadReplies.php deleted file mode 100644 index 391d4e13..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/CommentThreadReplies.php +++ /dev/null @@ -1,38 +0,0 @@ -comments = $comments; - } - /** - * @return Google_Service_YouTube_Comment - */ - public function getComments() - { - return $this->comments; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/CommentThreadSnippet.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/CommentThreadSnippet.php deleted file mode 100644 index 9762620f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/CommentThreadSnippet.php +++ /dev/null @@ -1,82 +0,0 @@ -canReply = $canReply; - } - public function getCanReply() - { - return $this->canReply; - } - public function setChannelId($channelId) - { - $this->channelId = $channelId; - } - public function getChannelId() - { - return $this->channelId; - } - public function setIsPublic($isPublic) - { - $this->isPublic = $isPublic; - } - public function getIsPublic() - { - return $this->isPublic; - } - /** - * @param Google_Service_YouTube_Comment - */ - public function setTopLevelComment(Google_Service_YouTube_Comment $topLevelComment) - { - $this->topLevelComment = $topLevelComment; - } - /** - * @return Google_Service_YouTube_Comment - */ - public function getTopLevelComment() - { - return $this->topLevelComment; - } - public function setTotalReplyCount($totalReplyCount) - { - $this->totalReplyCount = $totalReplyCount; - } - public function getTotalReplyCount() - { - return $this->totalReplyCount; - } - public function setVideoId($videoId) - { - $this->videoId = $videoId; - } - public function getVideoId() - { - return $this->videoId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ContentRating.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ContentRating.php deleted file mode 100644 index cddf93e8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ContentRating.php +++ /dev/null @@ -1,661 +0,0 @@ -acbRating = $acbRating; - } - public function getAcbRating() - { - return $this->acbRating; - } - public function setAgcomRating($agcomRating) - { - $this->agcomRating = $agcomRating; - } - public function getAgcomRating() - { - return $this->agcomRating; - } - public function setAnatelRating($anatelRating) - { - $this->anatelRating = $anatelRating; - } - public function getAnatelRating() - { - return $this->anatelRating; - } - public function setBbfcRating($bbfcRating) - { - $this->bbfcRating = $bbfcRating; - } - public function getBbfcRating() - { - return $this->bbfcRating; - } - public function setBfvcRating($bfvcRating) - { - $this->bfvcRating = $bfvcRating; - } - public function getBfvcRating() - { - return $this->bfvcRating; - } - public function setBmukkRating($bmukkRating) - { - $this->bmukkRating = $bmukkRating; - } - public function getBmukkRating() - { - return $this->bmukkRating; - } - public function setCatvRating($catvRating) - { - $this->catvRating = $catvRating; - } - public function getCatvRating() - { - return $this->catvRating; - } - public function setCatvfrRating($catvfrRating) - { - $this->catvfrRating = $catvfrRating; - } - public function getCatvfrRating() - { - return $this->catvfrRating; - } - public function setCbfcRating($cbfcRating) - { - $this->cbfcRating = $cbfcRating; - } - public function getCbfcRating() - { - return $this->cbfcRating; - } - public function setCccRating($cccRating) - { - $this->cccRating = $cccRating; - } - public function getCccRating() - { - return $this->cccRating; - } - public function setCceRating($cceRating) - { - $this->cceRating = $cceRating; - } - public function getCceRating() - { - return $this->cceRating; - } - public function setChfilmRating($chfilmRating) - { - $this->chfilmRating = $chfilmRating; - } - public function getChfilmRating() - { - return $this->chfilmRating; - } - public function setChvrsRating($chvrsRating) - { - $this->chvrsRating = $chvrsRating; - } - public function getChvrsRating() - { - return $this->chvrsRating; - } - public function setCicfRating($cicfRating) - { - $this->cicfRating = $cicfRating; - } - public function getCicfRating() - { - return $this->cicfRating; - } - public function setCnaRating($cnaRating) - { - $this->cnaRating = $cnaRating; - } - public function getCnaRating() - { - return $this->cnaRating; - } - public function setCncRating($cncRating) - { - $this->cncRating = $cncRating; - } - public function getCncRating() - { - return $this->cncRating; - } - public function setCsaRating($csaRating) - { - $this->csaRating = $csaRating; - } - public function getCsaRating() - { - return $this->csaRating; - } - public function setCscfRating($cscfRating) - { - $this->cscfRating = $cscfRating; - } - public function getCscfRating() - { - return $this->cscfRating; - } - public function setCzfilmRating($czfilmRating) - { - $this->czfilmRating = $czfilmRating; - } - public function getCzfilmRating() - { - return $this->czfilmRating; - } - public function setDjctqRating($djctqRating) - { - $this->djctqRating = $djctqRating; - } - public function getDjctqRating() - { - return $this->djctqRating; - } - public function setDjctqRatingReasons($djctqRatingReasons) - { - $this->djctqRatingReasons = $djctqRatingReasons; - } - public function getDjctqRatingReasons() - { - return $this->djctqRatingReasons; - } - public function setEcbmctRating($ecbmctRating) - { - $this->ecbmctRating = $ecbmctRating; - } - public function getEcbmctRating() - { - return $this->ecbmctRating; - } - public function setEefilmRating($eefilmRating) - { - $this->eefilmRating = $eefilmRating; - } - public function getEefilmRating() - { - return $this->eefilmRating; - } - public function setEgfilmRating($egfilmRating) - { - $this->egfilmRating = $egfilmRating; - } - public function getEgfilmRating() - { - return $this->egfilmRating; - } - public function setEirinRating($eirinRating) - { - $this->eirinRating = $eirinRating; - } - public function getEirinRating() - { - return $this->eirinRating; - } - public function setFcbmRating($fcbmRating) - { - $this->fcbmRating = $fcbmRating; - } - public function getFcbmRating() - { - return $this->fcbmRating; - } - public function setFcoRating($fcoRating) - { - $this->fcoRating = $fcoRating; - } - public function getFcoRating() - { - return $this->fcoRating; - } - public function setFmocRating($fmocRating) - { - $this->fmocRating = $fmocRating; - } - public function getFmocRating() - { - return $this->fmocRating; - } - public function setFpbRating($fpbRating) - { - $this->fpbRating = $fpbRating; - } - public function getFpbRating() - { - return $this->fpbRating; - } - public function setFpbRatingReasons($fpbRatingReasons) - { - $this->fpbRatingReasons = $fpbRatingReasons; - } - public function getFpbRatingReasons() - { - return $this->fpbRatingReasons; - } - public function setFskRating($fskRating) - { - $this->fskRating = $fskRating; - } - public function getFskRating() - { - return $this->fskRating; - } - public function setGrfilmRating($grfilmRating) - { - $this->grfilmRating = $grfilmRating; - } - public function getGrfilmRating() - { - return $this->grfilmRating; - } - public function setIcaaRating($icaaRating) - { - $this->icaaRating = $icaaRating; - } - public function getIcaaRating() - { - return $this->icaaRating; - } - public function setIfcoRating($ifcoRating) - { - $this->ifcoRating = $ifcoRating; - } - public function getIfcoRating() - { - return $this->ifcoRating; - } - public function setIlfilmRating($ilfilmRating) - { - $this->ilfilmRating = $ilfilmRating; - } - public function getIlfilmRating() - { - return $this->ilfilmRating; - } - public function setIncaaRating($incaaRating) - { - $this->incaaRating = $incaaRating; - } - public function getIncaaRating() - { - return $this->incaaRating; - } - public function setKfcbRating($kfcbRating) - { - $this->kfcbRating = $kfcbRating; - } - public function getKfcbRating() - { - return $this->kfcbRating; - } - public function setKijkwijzerRating($kijkwijzerRating) - { - $this->kijkwijzerRating = $kijkwijzerRating; - } - public function getKijkwijzerRating() - { - return $this->kijkwijzerRating; - } - public function setKmrbRating($kmrbRating) - { - $this->kmrbRating = $kmrbRating; - } - public function getKmrbRating() - { - return $this->kmrbRating; - } - public function setLsfRating($lsfRating) - { - $this->lsfRating = $lsfRating; - } - public function getLsfRating() - { - return $this->lsfRating; - } - public function setMccaaRating($mccaaRating) - { - $this->mccaaRating = $mccaaRating; - } - public function getMccaaRating() - { - return $this->mccaaRating; - } - public function setMccypRating($mccypRating) - { - $this->mccypRating = $mccypRating; - } - public function getMccypRating() - { - return $this->mccypRating; - } - public function setMcstRating($mcstRating) - { - $this->mcstRating = $mcstRating; - } - public function getMcstRating() - { - return $this->mcstRating; - } - public function setMdaRating($mdaRating) - { - $this->mdaRating = $mdaRating; - } - public function getMdaRating() - { - return $this->mdaRating; - } - public function setMedietilsynetRating($medietilsynetRating) - { - $this->medietilsynetRating = $medietilsynetRating; - } - public function getMedietilsynetRating() - { - return $this->medietilsynetRating; - } - public function setMekuRating($mekuRating) - { - $this->mekuRating = $mekuRating; - } - public function getMekuRating() - { - return $this->mekuRating; - } - public function setMenaMpaaRating($menaMpaaRating) - { - $this->menaMpaaRating = $menaMpaaRating; - } - public function getMenaMpaaRating() - { - return $this->menaMpaaRating; - } - public function setMibacRating($mibacRating) - { - $this->mibacRating = $mibacRating; - } - public function getMibacRating() - { - return $this->mibacRating; - } - public function setMocRating($mocRating) - { - $this->mocRating = $mocRating; - } - public function getMocRating() - { - return $this->mocRating; - } - public function setMoctwRating($moctwRating) - { - $this->moctwRating = $moctwRating; - } - public function getMoctwRating() - { - return $this->moctwRating; - } - public function setMpaaRating($mpaaRating) - { - $this->mpaaRating = $mpaaRating; - } - public function getMpaaRating() - { - return $this->mpaaRating; - } - public function setMpaatRating($mpaatRating) - { - $this->mpaatRating = $mpaatRating; - } - public function getMpaatRating() - { - return $this->mpaatRating; - } - public function setMtrcbRating($mtrcbRating) - { - $this->mtrcbRating = $mtrcbRating; - } - public function getMtrcbRating() - { - return $this->mtrcbRating; - } - public function setNbcRating($nbcRating) - { - $this->nbcRating = $nbcRating; - } - public function getNbcRating() - { - return $this->nbcRating; - } - public function setNbcplRating($nbcplRating) - { - $this->nbcplRating = $nbcplRating; - } - public function getNbcplRating() - { - return $this->nbcplRating; - } - public function setNfrcRating($nfrcRating) - { - $this->nfrcRating = $nfrcRating; - } - public function getNfrcRating() - { - return $this->nfrcRating; - } - public function setNfvcbRating($nfvcbRating) - { - $this->nfvcbRating = $nfvcbRating; - } - public function getNfvcbRating() - { - return $this->nfvcbRating; - } - public function setNkclvRating($nkclvRating) - { - $this->nkclvRating = $nkclvRating; - } - public function getNkclvRating() - { - return $this->nkclvRating; - } - public function setNmcRating($nmcRating) - { - $this->nmcRating = $nmcRating; - } - public function getNmcRating() - { - return $this->nmcRating; - } - public function setOflcRating($oflcRating) - { - $this->oflcRating = $oflcRating; - } - public function getOflcRating() - { - return $this->oflcRating; - } - public function setPefilmRating($pefilmRating) - { - $this->pefilmRating = $pefilmRating; - } - public function getPefilmRating() - { - return $this->pefilmRating; - } - public function setRcnofRating($rcnofRating) - { - $this->rcnofRating = $rcnofRating; - } - public function getRcnofRating() - { - return $this->rcnofRating; - } - public function setResorteviolenciaRating($resorteviolenciaRating) - { - $this->resorteviolenciaRating = $resorteviolenciaRating; - } - public function getResorteviolenciaRating() - { - return $this->resorteviolenciaRating; - } - public function setRtcRating($rtcRating) - { - $this->rtcRating = $rtcRating; - } - public function getRtcRating() - { - return $this->rtcRating; - } - public function setRteRating($rteRating) - { - $this->rteRating = $rteRating; - } - public function getRteRating() - { - return $this->rteRating; - } - public function setRussiaRating($russiaRating) - { - $this->russiaRating = $russiaRating; - } - public function getRussiaRating() - { - return $this->russiaRating; - } - public function setSkfilmRating($skfilmRating) - { - $this->skfilmRating = $skfilmRating; - } - public function getSkfilmRating() - { - return $this->skfilmRating; - } - public function setSmaisRating($smaisRating) - { - $this->smaisRating = $smaisRating; - } - public function getSmaisRating() - { - return $this->smaisRating; - } - public function setSmsaRating($smsaRating) - { - $this->smsaRating = $smsaRating; - } - public function getSmsaRating() - { - return $this->smsaRating; - } - public function setTvpgRating($tvpgRating) - { - $this->tvpgRating = $tvpgRating; - } - public function getTvpgRating() - { - return $this->tvpgRating; - } - public function setYtRating($ytRating) - { - $this->ytRating = $ytRating; - } - public function getYtRating() - { - return $this->ytRating; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/GeoPoint.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/GeoPoint.php deleted file mode 100644 index 9d653d29..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/GeoPoint.php +++ /dev/null @@ -1,48 +0,0 @@ -altitude = $altitude; - } - public function getAltitude() - { - return $this->altitude; - } - public function setLatitude($latitude) - { - $this->latitude = $latitude; - } - public function getLatitude() - { - return $this->latitude; - } - public function setLongitude($longitude) - { - $this->longitude = $longitude; - } - public function getLongitude() - { - return $this->longitude; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/GuideCategory.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/GuideCategory.php deleted file mode 100644 index 45316198..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/GuideCategory.php +++ /dev/null @@ -1,64 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - 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; - } - /** - * @param Google_Service_YouTube_GuideCategorySnippet - */ - public function setSnippet(Google_Service_YouTube_GuideCategorySnippet $snippet) - { - $this->snippet = $snippet; - } - /** - * @return Google_Service_YouTube_GuideCategorySnippet - */ - public function getSnippet() - { - return $this->snippet; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/GuideCategoryListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/GuideCategoryListResponse.php deleted file mode 100644 index 64a0fdc7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/GuideCategoryListResponse.php +++ /dev/null @@ -1,124 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setEventId($eventId) - { - $this->eventId = $eventId; - } - public function getEventId() - { - return $this->eventId; - } - /** - * @param Google_Service_YouTube_GuideCategory - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_YouTube_GuideCategory - */ - public function getItems() - { - return $this->items; - } - 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_YouTube_PageInfo - */ - public function setPageInfo(Google_Service_YouTube_PageInfo $pageInfo) - { - $this->pageInfo = $pageInfo; - } - /** - * @return Google_Service_YouTube_PageInfo - */ - public function getPageInfo() - { - return $this->pageInfo; - } - public function setPrevPageToken($prevPageToken) - { - $this->prevPageToken = $prevPageToken; - } - public function getPrevPageToken() - { - return $this->prevPageToken; - } - /** - * @param Google_Service_YouTube_TokenPagination - */ - public function setTokenPagination(Google_Service_YouTube_TokenPagination $tokenPagination) - { - $this->tokenPagination = $tokenPagination; - } - /** - * @return Google_Service_YouTube_TokenPagination - */ - public function getTokenPagination() - { - return $this->tokenPagination; - } - public function setVisitorId($visitorId) - { - $this->visitorId = $visitorId; - } - public function getVisitorId() - { - return $this->visitorId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/GuideCategorySnippet.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/GuideCategorySnippet.php deleted file mode 100644 index 8ad84a20..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/GuideCategorySnippet.php +++ /dev/null @@ -1,39 +0,0 @@ -channelId = $channelId; - } - public function getChannelId() - { - return $this->channelId; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/I18nLanguage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/I18nLanguage.php deleted file mode 100644 index 121af5da..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/I18nLanguage.php +++ /dev/null @@ -1,64 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - 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; - } - /** - * @param Google_Service_YouTube_I18nLanguageSnippet - */ - public function setSnippet(Google_Service_YouTube_I18nLanguageSnippet $snippet) - { - $this->snippet = $snippet; - } - /** - * @return Google_Service_YouTube_I18nLanguageSnippet - */ - public function getSnippet() - { - return $this->snippet; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/I18nLanguageListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/I18nLanguageListResponse.php deleted file mode 100644 index 28c43368..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/I18nLanguageListResponse.php +++ /dev/null @@ -1,74 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setEventId($eventId) - { - $this->eventId = $eventId; - } - public function getEventId() - { - return $this->eventId; - } - /** - * @param Google_Service_YouTube_I18nLanguage - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_YouTube_I18nLanguage - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setVisitorId($visitorId) - { - $this->visitorId = $visitorId; - } - public function getVisitorId() - { - return $this->visitorId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/I18nLanguageSnippet.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/I18nLanguageSnippet.php deleted file mode 100644 index a8d11107..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/I18nLanguageSnippet.php +++ /dev/null @@ -1,39 +0,0 @@ -hl = $hl; - } - public function getHl() - { - return $this->hl; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/I18nRegion.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/I18nRegion.php deleted file mode 100644 index 5f6fd9ad..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/I18nRegion.php +++ /dev/null @@ -1,64 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - 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; - } - /** - * @param Google_Service_YouTube_I18nRegionSnippet - */ - public function setSnippet(Google_Service_YouTube_I18nRegionSnippet $snippet) - { - $this->snippet = $snippet; - } - /** - * @return Google_Service_YouTube_I18nRegionSnippet - */ - public function getSnippet() - { - return $this->snippet; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/I18nRegionListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/I18nRegionListResponse.php deleted file mode 100644 index 35fd3085..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/I18nRegionListResponse.php +++ /dev/null @@ -1,74 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setEventId($eventId) - { - $this->eventId = $eventId; - } - public function getEventId() - { - return $this->eventId; - } - /** - * @param Google_Service_YouTube_I18nRegion - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_YouTube_I18nRegion - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setVisitorId($visitorId) - { - $this->visitorId = $visitorId; - } - public function getVisitorId() - { - return $this->visitorId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/I18nRegionSnippet.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/I18nRegionSnippet.php deleted file mode 100644 index 504cd976..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/I18nRegionSnippet.php +++ /dev/null @@ -1,39 +0,0 @@ -gl = $gl; - } - public function getGl() - { - return $this->gl; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ImageSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ImageSettings.php deleted file mode 100644 index 63c2f008..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ImageSettings.php +++ /dev/null @@ -1,254 +0,0 @@ -backgroundImageUrl = $backgroundImageUrl; - } - /** - * @return Google_Service_YouTube_LocalizedProperty - */ - public function getBackgroundImageUrl() - { - return $this->backgroundImageUrl; - } - public function setBannerExternalUrl($bannerExternalUrl) - { - $this->bannerExternalUrl = $bannerExternalUrl; - } - public function getBannerExternalUrl() - { - return $this->bannerExternalUrl; - } - public function setBannerImageUrl($bannerImageUrl) - { - $this->bannerImageUrl = $bannerImageUrl; - } - public function getBannerImageUrl() - { - return $this->bannerImageUrl; - } - public function setBannerMobileExtraHdImageUrl($bannerMobileExtraHdImageUrl) - { - $this->bannerMobileExtraHdImageUrl = $bannerMobileExtraHdImageUrl; - } - public function getBannerMobileExtraHdImageUrl() - { - return $this->bannerMobileExtraHdImageUrl; - } - public function setBannerMobileHdImageUrl($bannerMobileHdImageUrl) - { - $this->bannerMobileHdImageUrl = $bannerMobileHdImageUrl; - } - public function getBannerMobileHdImageUrl() - { - return $this->bannerMobileHdImageUrl; - } - public function setBannerMobileImageUrl($bannerMobileImageUrl) - { - $this->bannerMobileImageUrl = $bannerMobileImageUrl; - } - public function getBannerMobileImageUrl() - { - return $this->bannerMobileImageUrl; - } - public function setBannerMobileLowImageUrl($bannerMobileLowImageUrl) - { - $this->bannerMobileLowImageUrl = $bannerMobileLowImageUrl; - } - public function getBannerMobileLowImageUrl() - { - return $this->bannerMobileLowImageUrl; - } - public function setBannerMobileMediumHdImageUrl($bannerMobileMediumHdImageUrl) - { - $this->bannerMobileMediumHdImageUrl = $bannerMobileMediumHdImageUrl; - } - public function getBannerMobileMediumHdImageUrl() - { - return $this->bannerMobileMediumHdImageUrl; - } - public function setBannerTabletExtraHdImageUrl($bannerTabletExtraHdImageUrl) - { - $this->bannerTabletExtraHdImageUrl = $bannerTabletExtraHdImageUrl; - } - public function getBannerTabletExtraHdImageUrl() - { - return $this->bannerTabletExtraHdImageUrl; - } - public function setBannerTabletHdImageUrl($bannerTabletHdImageUrl) - { - $this->bannerTabletHdImageUrl = $bannerTabletHdImageUrl; - } - public function getBannerTabletHdImageUrl() - { - return $this->bannerTabletHdImageUrl; - } - public function setBannerTabletImageUrl($bannerTabletImageUrl) - { - $this->bannerTabletImageUrl = $bannerTabletImageUrl; - } - public function getBannerTabletImageUrl() - { - return $this->bannerTabletImageUrl; - } - public function setBannerTabletLowImageUrl($bannerTabletLowImageUrl) - { - $this->bannerTabletLowImageUrl = $bannerTabletLowImageUrl; - } - public function getBannerTabletLowImageUrl() - { - return $this->bannerTabletLowImageUrl; - } - public function setBannerTvHighImageUrl($bannerTvHighImageUrl) - { - $this->bannerTvHighImageUrl = $bannerTvHighImageUrl; - } - public function getBannerTvHighImageUrl() - { - return $this->bannerTvHighImageUrl; - } - public function setBannerTvImageUrl($bannerTvImageUrl) - { - $this->bannerTvImageUrl = $bannerTvImageUrl; - } - public function getBannerTvImageUrl() - { - return $this->bannerTvImageUrl; - } - public function setBannerTvLowImageUrl($bannerTvLowImageUrl) - { - $this->bannerTvLowImageUrl = $bannerTvLowImageUrl; - } - public function getBannerTvLowImageUrl() - { - return $this->bannerTvLowImageUrl; - } - public function setBannerTvMediumImageUrl($bannerTvMediumImageUrl) - { - $this->bannerTvMediumImageUrl = $bannerTvMediumImageUrl; - } - public function getBannerTvMediumImageUrl() - { - return $this->bannerTvMediumImageUrl; - } - /** - * @param Google_Service_YouTube_LocalizedProperty - */ - public function setLargeBrandedBannerImageImapScript(Google_Service_YouTube_LocalizedProperty $largeBrandedBannerImageImapScript) - { - $this->largeBrandedBannerImageImapScript = $largeBrandedBannerImageImapScript; - } - /** - * @return Google_Service_YouTube_LocalizedProperty - */ - public function getLargeBrandedBannerImageImapScript() - { - return $this->largeBrandedBannerImageImapScript; - } - /** - * @param Google_Service_YouTube_LocalizedProperty - */ - public function setLargeBrandedBannerImageUrl(Google_Service_YouTube_LocalizedProperty $largeBrandedBannerImageUrl) - { - $this->largeBrandedBannerImageUrl = $largeBrandedBannerImageUrl; - } - /** - * @return Google_Service_YouTube_LocalizedProperty - */ - public function getLargeBrandedBannerImageUrl() - { - return $this->largeBrandedBannerImageUrl; - } - /** - * @param Google_Service_YouTube_LocalizedProperty - */ - public function setSmallBrandedBannerImageImapScript(Google_Service_YouTube_LocalizedProperty $smallBrandedBannerImageImapScript) - { - $this->smallBrandedBannerImageImapScript = $smallBrandedBannerImageImapScript; - } - /** - * @return Google_Service_YouTube_LocalizedProperty - */ - public function getSmallBrandedBannerImageImapScript() - { - return $this->smallBrandedBannerImageImapScript; - } - /** - * @param Google_Service_YouTube_LocalizedProperty - */ - public function setSmallBrandedBannerImageUrl(Google_Service_YouTube_LocalizedProperty $smallBrandedBannerImageUrl) - { - $this->smallBrandedBannerImageUrl = $smallBrandedBannerImageUrl; - } - /** - * @return Google_Service_YouTube_LocalizedProperty - */ - public function getSmallBrandedBannerImageUrl() - { - return $this->smallBrandedBannerImageUrl; - } - public function setTrackingImageUrl($trackingImageUrl) - { - $this->trackingImageUrl = $trackingImageUrl; - } - public function getTrackingImageUrl() - { - return $this->trackingImageUrl; - } - public function setWatchIconImageUrl($watchIconImageUrl) - { - $this->watchIconImageUrl = $watchIconImageUrl; - } - public function getWatchIconImageUrl() - { - return $this->watchIconImageUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/IngestionInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/IngestionInfo.php deleted file mode 100644 index 5f9eafaa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/IngestionInfo.php +++ /dev/null @@ -1,48 +0,0 @@ -backupIngestionAddress = $backupIngestionAddress; - } - public function getBackupIngestionAddress() - { - return $this->backupIngestionAddress; - } - public function setIngestionAddress($ingestionAddress) - { - $this->ingestionAddress = $ingestionAddress; - } - public function getIngestionAddress() - { - return $this->ingestionAddress; - } - public function setStreamName($streamName) - { - $this->streamName = $streamName; - } - public function getStreamName() - { - return $this->streamName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/InvideoBranding.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/InvideoBranding.php deleted file mode 100644 index 2cc06e9e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/InvideoBranding.php +++ /dev/null @@ -1,80 +0,0 @@ -imageBytes = $imageBytes; - } - public function getImageBytes() - { - return $this->imageBytes; - } - public function setImageUrl($imageUrl) - { - $this->imageUrl = $imageUrl; - } - public function getImageUrl() - { - return $this->imageUrl; - } - /** - * @param Google_Service_YouTube_InvideoPosition - */ - public function setPosition(Google_Service_YouTube_InvideoPosition $position) - { - $this->position = $position; - } - /** - * @return Google_Service_YouTube_InvideoPosition - */ - public function getPosition() - { - return $this->position; - } - public function setTargetChannelId($targetChannelId) - { - $this->targetChannelId = $targetChannelId; - } - public function getTargetChannelId() - { - return $this->targetChannelId; - } - /** - * @param Google_Service_YouTube_InvideoTiming - */ - public function setTiming(Google_Service_YouTube_InvideoTiming $timing) - { - $this->timing = $timing; - } - /** - * @return Google_Service_YouTube_InvideoTiming - */ - public function getTiming() - { - return $this->timing; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/InvideoPosition.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/InvideoPosition.php deleted file mode 100644 index 58f5f7de..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/InvideoPosition.php +++ /dev/null @@ -1,39 +0,0 @@ -cornerPosition = $cornerPosition; - } - public function getCornerPosition() - { - return $this->cornerPosition; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/InvideoPromotion.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/InvideoPromotion.php deleted file mode 100644 index dc5c738a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/InvideoPromotion.php +++ /dev/null @@ -1,79 +0,0 @@ -defaultTiming = $defaultTiming; - } - /** - * @return Google_Service_YouTube_InvideoTiming - */ - public function getDefaultTiming() - { - return $this->defaultTiming; - } - /** - * @param Google_Service_YouTube_PromotedItem - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_YouTube_PromotedItem - */ - public function getItems() - { - return $this->items; - } - /** - * @param Google_Service_YouTube_InvideoPosition - */ - public function setPosition(Google_Service_YouTube_InvideoPosition $position) - { - $this->position = $position; - } - /** - * @return Google_Service_YouTube_InvideoPosition - */ - public function getPosition() - { - return $this->position; - } - public function setUseSmartTiming($useSmartTiming) - { - $this->useSmartTiming = $useSmartTiming; - } - public function getUseSmartTiming() - { - return $this->useSmartTiming; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/InvideoTiming.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/InvideoTiming.php deleted file mode 100644 index b2480bb8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/InvideoTiming.php +++ /dev/null @@ -1,48 +0,0 @@ -durationMs = $durationMs; - } - public function getDurationMs() - { - return $this->durationMs; - } - public function setOffsetMs($offsetMs) - { - $this->offsetMs = $offsetMs; - } - public function getOffsetMs() - { - return $this->offsetMs; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LanguageTag.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LanguageTag.php deleted file mode 100644 index 29989b65..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LanguageTag.php +++ /dev/null @@ -1,30 +0,0 @@ -value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LevelDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LevelDetails.php deleted file mode 100644 index ba9bdad8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LevelDetails.php +++ /dev/null @@ -1,30 +0,0 @@ -displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveBroadcast.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveBroadcast.php deleted file mode 100644 index 6cc17e39..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveBroadcast.php +++ /dev/null @@ -1,112 +0,0 @@ -contentDetails = $contentDetails; - } - /** - * @return Google_Service_YouTube_LiveBroadcastContentDetails - */ - public function getContentDetails() - { - return $this->contentDetails; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - 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; - } - /** - * @param Google_Service_YouTube_LiveBroadcastSnippet - */ - public function setSnippet(Google_Service_YouTube_LiveBroadcastSnippet $snippet) - { - $this->snippet = $snippet; - } - /** - * @return Google_Service_YouTube_LiveBroadcastSnippet - */ - public function getSnippet() - { - return $this->snippet; - } - /** - * @param Google_Service_YouTube_LiveBroadcastStatistics - */ - public function setStatistics(Google_Service_YouTube_LiveBroadcastStatistics $statistics) - { - $this->statistics = $statistics; - } - /** - * @return Google_Service_YouTube_LiveBroadcastStatistics - */ - public function getStatistics() - { - return $this->statistics; - } - /** - * @param Google_Service_YouTube_LiveBroadcastStatus - */ - public function setStatus(Google_Service_YouTube_LiveBroadcastStatus $status) - { - $this->status = $status; - } - /** - * @return Google_Service_YouTube_LiveBroadcastStatus - */ - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveBroadcastContentDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveBroadcastContentDetails.php deleted file mode 100644 index cd564ea9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveBroadcastContentDetails.php +++ /dev/null @@ -1,172 +0,0 @@ -boundStreamId = $boundStreamId; - } - public function getBoundStreamId() - { - return $this->boundStreamId; - } - public function setBoundStreamLastUpdateTimeMs($boundStreamLastUpdateTimeMs) - { - $this->boundStreamLastUpdateTimeMs = $boundStreamLastUpdateTimeMs; - } - public function getBoundStreamLastUpdateTimeMs() - { - return $this->boundStreamLastUpdateTimeMs; - } - public function setClosedCaptionsType($closedCaptionsType) - { - $this->closedCaptionsType = $closedCaptionsType; - } - public function getClosedCaptionsType() - { - return $this->closedCaptionsType; - } - public function setEnableAutoStart($enableAutoStart) - { - $this->enableAutoStart = $enableAutoStart; - } - public function getEnableAutoStart() - { - return $this->enableAutoStart; - } - public function setEnableClosedCaptions($enableClosedCaptions) - { - $this->enableClosedCaptions = $enableClosedCaptions; - } - public function getEnableClosedCaptions() - { - return $this->enableClosedCaptions; - } - public function setEnableContentEncryption($enableContentEncryption) - { - $this->enableContentEncryption = $enableContentEncryption; - } - public function getEnableContentEncryption() - { - return $this->enableContentEncryption; - } - public function setEnableDvr($enableDvr) - { - $this->enableDvr = $enableDvr; - } - public function getEnableDvr() - { - return $this->enableDvr; - } - public function setEnableEmbed($enableEmbed) - { - $this->enableEmbed = $enableEmbed; - } - public function getEnableEmbed() - { - return $this->enableEmbed; - } - public function setEnableLowLatency($enableLowLatency) - { - $this->enableLowLatency = $enableLowLatency; - } - public function getEnableLowLatency() - { - return $this->enableLowLatency; - } - public function setLatencyPreference($latencyPreference) - { - $this->latencyPreference = $latencyPreference; - } - public function getLatencyPreference() - { - return $this->latencyPreference; - } - public function setMesh($mesh) - { - $this->mesh = $mesh; - } - public function getMesh() - { - return $this->mesh; - } - /** - * @param Google_Service_YouTube_MonitorStreamInfo - */ - public function setMonitorStream(Google_Service_YouTube_MonitorStreamInfo $monitorStream) - { - $this->monitorStream = $monitorStream; - } - /** - * @return Google_Service_YouTube_MonitorStreamInfo - */ - public function getMonitorStream() - { - return $this->monitorStream; - } - public function setProjection($projection) - { - $this->projection = $projection; - } - public function getProjection() - { - return $this->projection; - } - public function setRecordFromStart($recordFromStart) - { - $this->recordFromStart = $recordFromStart; - } - public function getRecordFromStart() - { - return $this->recordFromStart; - } - public function setStartWithSlate($startWithSlate) - { - $this->startWithSlate = $startWithSlate; - } - public function getStartWithSlate() - { - return $this->startWithSlate; - } - public function setStereoLayout($stereoLayout) - { - $this->stereoLayout = $stereoLayout; - } - public function getStereoLayout() - { - return $this->stereoLayout; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveBroadcastListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveBroadcastListResponse.php deleted file mode 100644 index 9e8f34f5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveBroadcastListResponse.php +++ /dev/null @@ -1,124 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setEventId($eventId) - { - $this->eventId = $eventId; - } - public function getEventId() - { - return $this->eventId; - } - /** - * @param Google_Service_YouTube_LiveBroadcast - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_YouTube_LiveBroadcast - */ - public function getItems() - { - return $this->items; - } - 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_YouTube_PageInfo - */ - public function setPageInfo(Google_Service_YouTube_PageInfo $pageInfo) - { - $this->pageInfo = $pageInfo; - } - /** - * @return Google_Service_YouTube_PageInfo - */ - public function getPageInfo() - { - return $this->pageInfo; - } - public function setPrevPageToken($prevPageToken) - { - $this->prevPageToken = $prevPageToken; - } - public function getPrevPageToken() - { - return $this->prevPageToken; - } - /** - * @param Google_Service_YouTube_TokenPagination - */ - public function setTokenPagination(Google_Service_YouTube_TokenPagination $tokenPagination) - { - $this->tokenPagination = $tokenPagination; - } - /** - * @return Google_Service_YouTube_TokenPagination - */ - public function getTokenPagination() - { - return $this->tokenPagination; - } - public function setVisitorId($visitorId) - { - $this->visitorId = $visitorId; - } - public function getVisitorId() - { - return $this->visitorId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveBroadcastSnippet.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveBroadcastSnippet.php deleted file mode 100644 index a16dae2d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveBroadcastSnippet.php +++ /dev/null @@ -1,136 +0,0 @@ -actualEndTime = $actualEndTime; - } - public function getActualEndTime() - { - return $this->actualEndTime; - } - public function setActualStartTime($actualStartTime) - { - $this->actualStartTime = $actualStartTime; - } - public function getActualStartTime() - { - return $this->actualStartTime; - } - public function setBroadcastType($broadcastType) - { - $this->broadcastType = $broadcastType; - } - public function getBroadcastType() - { - return $this->broadcastType; - } - public function setChannelId($channelId) - { - $this->channelId = $channelId; - } - public function getChannelId() - { - return $this->channelId; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setIsDefaultBroadcast($isDefaultBroadcast) - { - $this->isDefaultBroadcast = $isDefaultBroadcast; - } - public function getIsDefaultBroadcast() - { - return $this->isDefaultBroadcast; - } - public function setLiveChatId($liveChatId) - { - $this->liveChatId = $liveChatId; - } - public function getLiveChatId() - { - return $this->liveChatId; - } - public function setPublishedAt($publishedAt) - { - $this->publishedAt = $publishedAt; - } - public function getPublishedAt() - { - return $this->publishedAt; - } - public function setScheduledEndTime($scheduledEndTime) - { - $this->scheduledEndTime = $scheduledEndTime; - } - public function getScheduledEndTime() - { - return $this->scheduledEndTime; - } - public function setScheduledStartTime($scheduledStartTime) - { - $this->scheduledStartTime = $scheduledStartTime; - } - public function getScheduledStartTime() - { - return $this->scheduledStartTime; - } - /** - * @param Google_Service_YouTube_ThumbnailDetails - */ - public function setThumbnails(Google_Service_YouTube_ThumbnailDetails $thumbnails) - { - $this->thumbnails = $thumbnails; - } - /** - * @return Google_Service_YouTube_ThumbnailDetails - */ - public function getThumbnails() - { - return $this->thumbnails; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveBroadcastStatistics.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveBroadcastStatistics.php deleted file mode 100644 index cb5ac2e6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveBroadcastStatistics.php +++ /dev/null @@ -1,39 +0,0 @@ -concurrentViewers = $concurrentViewers; - } - public function getConcurrentViewers() - { - return $this->concurrentViewers; - } - public function setTotalChatCount($totalChatCount) - { - $this->totalChatCount = $totalChatCount; - } - public function getTotalChatCount() - { - return $this->totalChatCount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveBroadcastStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveBroadcastStatus.php deleted file mode 100644 index 3429c9e0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveBroadcastStatus.php +++ /dev/null @@ -1,75 +0,0 @@ -lifeCycleStatus = $lifeCycleStatus; - } - public function getLifeCycleStatus() - { - return $this->lifeCycleStatus; - } - public function setLiveBroadcastPriority($liveBroadcastPriority) - { - $this->liveBroadcastPriority = $liveBroadcastPriority; - } - public function getLiveBroadcastPriority() - { - return $this->liveBroadcastPriority; - } - public function setMadeForKids($madeForKids) - { - $this->madeForKids = $madeForKids; - } - public function getMadeForKids() - { - return $this->madeForKids; - } - public function setPrivacyStatus($privacyStatus) - { - $this->privacyStatus = $privacyStatus; - } - public function getPrivacyStatus() - { - return $this->privacyStatus; - } - public function setRecordingStatus($recordingStatus) - { - $this->recordingStatus = $recordingStatus; - } - public function getRecordingStatus() - { - return $this->recordingStatus; - } - public function setSelfDeclaredMadeForKids($selfDeclaredMadeForKids) - { - $this->selfDeclaredMadeForKids = $selfDeclaredMadeForKids; - } - public function getSelfDeclaredMadeForKids() - { - return $this->selfDeclaredMadeForKids; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatBan.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatBan.php deleted file mode 100644 index ce6994f5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatBan.php +++ /dev/null @@ -1,64 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - 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; - } - /** - * @param Google_Service_YouTube_LiveChatBanSnippet - */ - public function setSnippet(Google_Service_YouTube_LiveChatBanSnippet $snippet) - { - $this->snippet = $snippet; - } - /** - * @return Google_Service_YouTube_LiveChatBanSnippet - */ - public function getSnippet() - { - return $this->snippet; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatBanSnippet.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatBanSnippet.php deleted file mode 100644 index 9eef68c8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatBanSnippet.php +++ /dev/null @@ -1,64 +0,0 @@ -banDurationSeconds = $banDurationSeconds; - } - public function getBanDurationSeconds() - { - return $this->banDurationSeconds; - } - /** - * @param Google_Service_YouTube_ChannelProfileDetails - */ - public function setBannedUserDetails(Google_Service_YouTube_ChannelProfileDetails $bannedUserDetails) - { - $this->bannedUserDetails = $bannedUserDetails; - } - /** - * @return Google_Service_YouTube_ChannelProfileDetails - */ - public function getBannedUserDetails() - { - return $this->bannedUserDetails; - } - public function setLiveChatId($liveChatId) - { - $this->liveChatId = $liveChatId; - } - public function getLiveChatId() - { - return $this->liveChatId; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatFanFundingEventDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatFanFundingEventDetails.php deleted file mode 100644 index 60fc1cf0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatFanFundingEventDetails.php +++ /dev/null @@ -1,57 +0,0 @@ -amountDisplayString = $amountDisplayString; - } - public function getAmountDisplayString() - { - return $this->amountDisplayString; - } - public function setAmountMicros($amountMicros) - { - $this->amountMicros = $amountMicros; - } - public function getAmountMicros() - { - return $this->amountMicros; - } - public function setCurrency($currency) - { - $this->currency = $currency; - } - public function getCurrency() - { - return $this->currency; - } - public function setUserComment($userComment) - { - $this->userComment = $userComment; - } - public function getUserComment() - { - return $this->userComment; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatMessage.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatMessage.php deleted file mode 100644 index 9b30ddcd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatMessage.php +++ /dev/null @@ -1,80 +0,0 @@ -authorDetails = $authorDetails; - } - /** - * @return Google_Service_YouTube_LiveChatMessageAuthorDetails - */ - public function getAuthorDetails() - { - return $this->authorDetails; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - 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; - } - /** - * @param Google_Service_YouTube_LiveChatMessageSnippet - */ - public function setSnippet(Google_Service_YouTube_LiveChatMessageSnippet $snippet) - { - $this->snippet = $snippet; - } - /** - * @return Google_Service_YouTube_LiveChatMessageSnippet - */ - public function getSnippet() - { - return $this->snippet; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatMessageAuthorDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatMessageAuthorDetails.php deleted file mode 100644 index 791383d4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatMessageAuthorDetails.php +++ /dev/null @@ -1,93 +0,0 @@ -channelId = $channelId; - } - public function getChannelId() - { - return $this->channelId; - } - public function setChannelUrl($channelUrl) - { - $this->channelUrl = $channelUrl; - } - public function getChannelUrl() - { - return $this->channelUrl; - } - public function setDisplayName($displayName) - { - $this->displayName = $displayName; - } - public function getDisplayName() - { - return $this->displayName; - } - public function setIsChatModerator($isChatModerator) - { - $this->isChatModerator = $isChatModerator; - } - public function getIsChatModerator() - { - return $this->isChatModerator; - } - public function setIsChatOwner($isChatOwner) - { - $this->isChatOwner = $isChatOwner; - } - public function getIsChatOwner() - { - return $this->isChatOwner; - } - public function setIsChatSponsor($isChatSponsor) - { - $this->isChatSponsor = $isChatSponsor; - } - public function getIsChatSponsor() - { - return $this->isChatSponsor; - } - public function setIsVerified($isVerified) - { - $this->isVerified = $isVerified; - } - public function getIsVerified() - { - return $this->isVerified; - } - public function setProfileImageUrl($profileImageUrl) - { - $this->profileImageUrl = $profileImageUrl; - } - public function getProfileImageUrl() - { - return $this->profileImageUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatMessageDeletedDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatMessageDeletedDetails.php deleted file mode 100644 index c8cf663a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatMessageDeletedDetails.php +++ /dev/null @@ -1,30 +0,0 @@ -deletedMessageId = $deletedMessageId; - } - public function getDeletedMessageId() - { - return $this->deletedMessageId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatMessageListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatMessageListResponse.php deleted file mode 100644 index b9210954..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatMessageListResponse.php +++ /dev/null @@ -1,133 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setEventId($eventId) - { - $this->eventId = $eventId; - } - public function getEventId() - { - return $this->eventId; - } - /** - * @param Google_Service_YouTube_LiveChatMessage - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_YouTube_LiveChatMessage - */ - public function getItems() - { - return $this->items; - } - 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; - } - public function setOfflineAt($offlineAt) - { - $this->offlineAt = $offlineAt; - } - public function getOfflineAt() - { - return $this->offlineAt; - } - /** - * @param Google_Service_YouTube_PageInfo - */ - public function setPageInfo(Google_Service_YouTube_PageInfo $pageInfo) - { - $this->pageInfo = $pageInfo; - } - /** - * @return Google_Service_YouTube_PageInfo - */ - public function getPageInfo() - { - return $this->pageInfo; - } - public function setPollingIntervalMillis($pollingIntervalMillis) - { - $this->pollingIntervalMillis = $pollingIntervalMillis; - } - public function getPollingIntervalMillis() - { - return $this->pollingIntervalMillis; - } - /** - * @param Google_Service_YouTube_TokenPagination - */ - public function setTokenPagination(Google_Service_YouTube_TokenPagination $tokenPagination) - { - $this->tokenPagination = $tokenPagination; - } - /** - * @return Google_Service_YouTube_TokenPagination - */ - public function getTokenPagination() - { - return $this->tokenPagination; - } - public function setVisitorId($visitorId) - { - $this->visitorId = $visitorId; - } - public function getVisitorId() - { - return $this->visitorId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatMessageRetractedDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatMessageRetractedDetails.php deleted file mode 100644 index 91ac7571..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatMessageRetractedDetails.php +++ /dev/null @@ -1,30 +0,0 @@ -retractedMessageId = $retractedMessageId; - } - public function getRetractedMessageId() - { - return $this->retractedMessageId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatMessageSnippet.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatMessageSnippet.php deleted file mode 100644 index f1ae29cc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatMessageSnippet.php +++ /dev/null @@ -1,251 +0,0 @@ -authorChannelId = $authorChannelId; - } - public function getAuthorChannelId() - { - return $this->authorChannelId; - } - public function setDisplayMessage($displayMessage) - { - $this->displayMessage = $displayMessage; - } - public function getDisplayMessage() - { - return $this->displayMessage; - } - /** - * @param Google_Service_YouTube_LiveChatFanFundingEventDetails - */ - public function setFanFundingEventDetails(Google_Service_YouTube_LiveChatFanFundingEventDetails $fanFundingEventDetails) - { - $this->fanFundingEventDetails = $fanFundingEventDetails; - } - /** - * @return Google_Service_YouTube_LiveChatFanFundingEventDetails - */ - public function getFanFundingEventDetails() - { - return $this->fanFundingEventDetails; - } - public function setHasDisplayContent($hasDisplayContent) - { - $this->hasDisplayContent = $hasDisplayContent; - } - public function getHasDisplayContent() - { - return $this->hasDisplayContent; - } - public function setLiveChatId($liveChatId) - { - $this->liveChatId = $liveChatId; - } - public function getLiveChatId() - { - return $this->liveChatId; - } - /** - * @param Google_Service_YouTube_LiveChatMessageDeletedDetails - */ - public function setMessageDeletedDetails(Google_Service_YouTube_LiveChatMessageDeletedDetails $messageDeletedDetails) - { - $this->messageDeletedDetails = $messageDeletedDetails; - } - /** - * @return Google_Service_YouTube_LiveChatMessageDeletedDetails - */ - public function getMessageDeletedDetails() - { - return $this->messageDeletedDetails; - } - /** - * @param Google_Service_YouTube_LiveChatMessageRetractedDetails - */ - public function setMessageRetractedDetails(Google_Service_YouTube_LiveChatMessageRetractedDetails $messageRetractedDetails) - { - $this->messageRetractedDetails = $messageRetractedDetails; - } - /** - * @return Google_Service_YouTube_LiveChatMessageRetractedDetails - */ - public function getMessageRetractedDetails() - { - return $this->messageRetractedDetails; - } - /** - * @param Google_Service_YouTube_LiveChatPollClosedDetails - */ - public function setPollClosedDetails(Google_Service_YouTube_LiveChatPollClosedDetails $pollClosedDetails) - { - $this->pollClosedDetails = $pollClosedDetails; - } - /** - * @return Google_Service_YouTube_LiveChatPollClosedDetails - */ - public function getPollClosedDetails() - { - return $this->pollClosedDetails; - } - /** - * @param Google_Service_YouTube_LiveChatPollEditedDetails - */ - public function setPollEditedDetails(Google_Service_YouTube_LiveChatPollEditedDetails $pollEditedDetails) - { - $this->pollEditedDetails = $pollEditedDetails; - } - /** - * @return Google_Service_YouTube_LiveChatPollEditedDetails - */ - public function getPollEditedDetails() - { - return $this->pollEditedDetails; - } - /** - * @param Google_Service_YouTube_LiveChatPollOpenedDetails - */ - public function setPollOpenedDetails(Google_Service_YouTube_LiveChatPollOpenedDetails $pollOpenedDetails) - { - $this->pollOpenedDetails = $pollOpenedDetails; - } - /** - * @return Google_Service_YouTube_LiveChatPollOpenedDetails - */ - public function getPollOpenedDetails() - { - return $this->pollOpenedDetails; - } - /** - * @param Google_Service_YouTube_LiveChatPollVotedDetails - */ - public function setPollVotedDetails(Google_Service_YouTube_LiveChatPollVotedDetails $pollVotedDetails) - { - $this->pollVotedDetails = $pollVotedDetails; - } - /** - * @return Google_Service_YouTube_LiveChatPollVotedDetails - */ - public function getPollVotedDetails() - { - return $this->pollVotedDetails; - } - public function setPublishedAt($publishedAt) - { - $this->publishedAt = $publishedAt; - } - public function getPublishedAt() - { - return $this->publishedAt; - } - /** - * @param Google_Service_YouTube_LiveChatSuperChatDetails - */ - public function setSuperChatDetails(Google_Service_YouTube_LiveChatSuperChatDetails $superChatDetails) - { - $this->superChatDetails = $superChatDetails; - } - /** - * @return Google_Service_YouTube_LiveChatSuperChatDetails - */ - public function getSuperChatDetails() - { - return $this->superChatDetails; - } - /** - * @param Google_Service_YouTube_LiveChatSuperStickerDetails - */ - public function setSuperStickerDetails(Google_Service_YouTube_LiveChatSuperStickerDetails $superStickerDetails) - { - $this->superStickerDetails = $superStickerDetails; - } - /** - * @return Google_Service_YouTube_LiveChatSuperStickerDetails - */ - public function getSuperStickerDetails() - { - return $this->superStickerDetails; - } - /** - * @param Google_Service_YouTube_LiveChatTextMessageDetails - */ - public function setTextMessageDetails(Google_Service_YouTube_LiveChatTextMessageDetails $textMessageDetails) - { - $this->textMessageDetails = $textMessageDetails; - } - /** - * @return Google_Service_YouTube_LiveChatTextMessageDetails - */ - public function getTextMessageDetails() - { - return $this->textMessageDetails; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - /** - * @param Google_Service_YouTube_LiveChatUserBannedMessageDetails - */ - public function setUserBannedDetails(Google_Service_YouTube_LiveChatUserBannedMessageDetails $userBannedDetails) - { - $this->userBannedDetails = $userBannedDetails; - } - /** - * @return Google_Service_YouTube_LiveChatUserBannedMessageDetails - */ - public function getUserBannedDetails() - { - return $this->userBannedDetails; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatModerator.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatModerator.php deleted file mode 100644 index 6cef1b2c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatModerator.php +++ /dev/null @@ -1,64 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - 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; - } - /** - * @param Google_Service_YouTube_LiveChatModeratorSnippet - */ - public function setSnippet(Google_Service_YouTube_LiveChatModeratorSnippet $snippet) - { - $this->snippet = $snippet; - } - /** - * @return Google_Service_YouTube_LiveChatModeratorSnippet - */ - public function getSnippet() - { - return $this->snippet; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatModeratorListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatModeratorListResponse.php deleted file mode 100644 index c16537e6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatModeratorListResponse.php +++ /dev/null @@ -1,124 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setEventId($eventId) - { - $this->eventId = $eventId; - } - public function getEventId() - { - return $this->eventId; - } - /** - * @param Google_Service_YouTube_LiveChatModerator - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_YouTube_LiveChatModerator - */ - public function getItems() - { - return $this->items; - } - 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_YouTube_PageInfo - */ - public function setPageInfo(Google_Service_YouTube_PageInfo $pageInfo) - { - $this->pageInfo = $pageInfo; - } - /** - * @return Google_Service_YouTube_PageInfo - */ - public function getPageInfo() - { - return $this->pageInfo; - } - public function setPrevPageToken($prevPageToken) - { - $this->prevPageToken = $prevPageToken; - } - public function getPrevPageToken() - { - return $this->prevPageToken; - } - /** - * @param Google_Service_YouTube_TokenPagination - */ - public function setTokenPagination(Google_Service_YouTube_TokenPagination $tokenPagination) - { - $this->tokenPagination = $tokenPagination; - } - /** - * @return Google_Service_YouTube_TokenPagination - */ - public function getTokenPagination() - { - return $this->tokenPagination; - } - public function setVisitorId($visitorId) - { - $this->visitorId = $visitorId; - } - public function getVisitorId() - { - return $this->visitorId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatModeratorSnippet.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatModeratorSnippet.php deleted file mode 100644 index a5947383..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatModeratorSnippet.php +++ /dev/null @@ -1,46 +0,0 @@ -liveChatId = $liveChatId; - } - public function getLiveChatId() - { - return $this->liveChatId; - } - /** - * @param Google_Service_YouTube_ChannelProfileDetails - */ - public function setModeratorDetails(Google_Service_YouTube_ChannelProfileDetails $moderatorDetails) - { - $this->moderatorDetails = $moderatorDetails; - } - /** - * @return Google_Service_YouTube_ChannelProfileDetails - */ - public function getModeratorDetails() - { - return $this->moderatorDetails; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatPollClosedDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatPollClosedDetails.php deleted file mode 100644 index 42cd39c9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatPollClosedDetails.php +++ /dev/null @@ -1,30 +0,0 @@ -pollId = $pollId; - } - public function getPollId() - { - return $this->pollId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatPollEditedDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatPollEditedDetails.php deleted file mode 100644 index 764ce93e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatPollEditedDetails.php +++ /dev/null @@ -1,56 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_YouTube_LiveChatPollItem - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_YouTube_LiveChatPollItem - */ - public function getItems() - { - return $this->items; - } - public function setPrompt($prompt) - { - $this->prompt = $prompt; - } - public function getPrompt() - { - return $this->prompt; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatPollItem.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatPollItem.php deleted file mode 100644 index fff02359..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatPollItem.php +++ /dev/null @@ -1,39 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setItemId($itemId) - { - $this->itemId = $itemId; - } - public function getItemId() - { - return $this->itemId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatPollOpenedDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatPollOpenedDetails.php deleted file mode 100644 index 1ed289e7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatPollOpenedDetails.php +++ /dev/null @@ -1,56 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - /** - * @param Google_Service_YouTube_LiveChatPollItem - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_YouTube_LiveChatPollItem - */ - public function getItems() - { - return $this->items; - } - public function setPrompt($prompt) - { - $this->prompt = $prompt; - } - public function getPrompt() - { - return $this->prompt; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatPollVotedDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatPollVotedDetails.php deleted file mode 100644 index 58e78b40..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatPollVotedDetails.php +++ /dev/null @@ -1,39 +0,0 @@ -itemId = $itemId; - } - public function getItemId() - { - return $this->itemId; - } - public function setPollId($pollId) - { - $this->pollId = $pollId; - } - public function getPollId() - { - return $this->pollId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatSuperChatDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatSuperChatDetails.php deleted file mode 100644 index fd2089a6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatSuperChatDetails.php +++ /dev/null @@ -1,66 +0,0 @@ -amountDisplayString = $amountDisplayString; - } - public function getAmountDisplayString() - { - return $this->amountDisplayString; - } - public function setAmountMicros($amountMicros) - { - $this->amountMicros = $amountMicros; - } - public function getAmountMicros() - { - return $this->amountMicros; - } - public function setCurrency($currency) - { - $this->currency = $currency; - } - public function getCurrency() - { - return $this->currency; - } - public function setTier($tier) - { - $this->tier = $tier; - } - public function getTier() - { - return $this->tier; - } - public function setUserComment($userComment) - { - $this->userComment = $userComment; - } - public function getUserComment() - { - return $this->userComment; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatSuperStickerDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatSuperStickerDetails.php deleted file mode 100644 index ac7d47e3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatSuperStickerDetails.php +++ /dev/null @@ -1,73 +0,0 @@ -amountDisplayString = $amountDisplayString; - } - public function getAmountDisplayString() - { - return $this->amountDisplayString; - } - public function setAmountMicros($amountMicros) - { - $this->amountMicros = $amountMicros; - } - public function getAmountMicros() - { - return $this->amountMicros; - } - public function setCurrency($currency) - { - $this->currency = $currency; - } - public function getCurrency() - { - return $this->currency; - } - /** - * @param Google_Service_YouTube_SuperStickerMetadata - */ - public function setSuperStickerMetadata(Google_Service_YouTube_SuperStickerMetadata $superStickerMetadata) - { - $this->superStickerMetadata = $superStickerMetadata; - } - /** - * @return Google_Service_YouTube_SuperStickerMetadata - */ - public function getSuperStickerMetadata() - { - return $this->superStickerMetadata; - } - public function setTier($tier) - { - $this->tier = $tier; - } - public function getTier() - { - return $this->tier; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatTextMessageDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatTextMessageDetails.php deleted file mode 100644 index cef4d222..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatTextMessageDetails.php +++ /dev/null @@ -1,30 +0,0 @@ -messageText = $messageText; - } - public function getMessageText() - { - return $this->messageText; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatUserBannedMessageDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatUserBannedMessageDetails.php deleted file mode 100644 index 5cbbeffa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveChatUserBannedMessageDetails.php +++ /dev/null @@ -1,55 +0,0 @@ -banDurationSeconds = $banDurationSeconds; - } - public function getBanDurationSeconds() - { - return $this->banDurationSeconds; - } - public function setBanType($banType) - { - $this->banType = $banType; - } - public function getBanType() - { - return $this->banType; - } - /** - * @param Google_Service_YouTube_ChannelProfileDetails - */ - public function setBannedUserDetails(Google_Service_YouTube_ChannelProfileDetails $bannedUserDetails) - { - $this->bannedUserDetails = $bannedUserDetails; - } - /** - * @return Google_Service_YouTube_ChannelProfileDetails - */ - public function getBannedUserDetails() - { - return $this->bannedUserDetails; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveStream.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveStream.php deleted file mode 100644 index 52b1f213..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveStream.php +++ /dev/null @@ -1,112 +0,0 @@ -cdn = $cdn; - } - /** - * @return Google_Service_YouTube_CdnSettings - */ - public function getCdn() - { - return $this->cdn; - } - /** - * @param Google_Service_YouTube_LiveStreamContentDetails - */ - public function setContentDetails(Google_Service_YouTube_LiveStreamContentDetails $contentDetails) - { - $this->contentDetails = $contentDetails; - } - /** - * @return Google_Service_YouTube_LiveStreamContentDetails - */ - public function getContentDetails() - { - return $this->contentDetails; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - 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; - } - /** - * @param Google_Service_YouTube_LiveStreamSnippet - */ - public function setSnippet(Google_Service_YouTube_LiveStreamSnippet $snippet) - { - $this->snippet = $snippet; - } - /** - * @return Google_Service_YouTube_LiveStreamSnippet - */ - public function getSnippet() - { - return $this->snippet; - } - /** - * @param Google_Service_YouTube_LiveStreamStatus - */ - public function setStatus(Google_Service_YouTube_LiveStreamStatus $status) - { - $this->status = $status; - } - /** - * @return Google_Service_YouTube_LiveStreamStatus - */ - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveStreamConfigurationIssue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveStreamConfigurationIssue.php deleted file mode 100644 index 8631dd81..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveStreamConfigurationIssue.php +++ /dev/null @@ -1,57 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setReason($reason) - { - $this->reason = $reason; - } - public function getReason() - { - return $this->reason; - } - public function setSeverity($severity) - { - $this->severity = $severity; - } - public function getSeverity() - { - return $this->severity; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveStreamContentDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveStreamContentDetails.php deleted file mode 100644 index 6ef8b89d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveStreamContentDetails.php +++ /dev/null @@ -1,39 +0,0 @@ -closedCaptionsIngestionUrl = $closedCaptionsIngestionUrl; - } - public function getClosedCaptionsIngestionUrl() - { - return $this->closedCaptionsIngestionUrl; - } - public function setIsReusable($isReusable) - { - $this->isReusable = $isReusable; - } - public function getIsReusable() - { - return $this->isReusable; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveStreamHealthStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveStreamHealthStatus.php deleted file mode 100644 index 09b6379c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveStreamHealthStatus.php +++ /dev/null @@ -1,56 +0,0 @@ -configurationIssues = $configurationIssues; - } - /** - * @return Google_Service_YouTube_LiveStreamConfigurationIssue - */ - public function getConfigurationIssues() - { - return $this->configurationIssues; - } - public function setLastUpdateTimeSeconds($lastUpdateTimeSeconds) - { - $this->lastUpdateTimeSeconds = $lastUpdateTimeSeconds; - } - public function getLastUpdateTimeSeconds() - { - return $this->lastUpdateTimeSeconds; - } - public function setStatus($status) - { - $this->status = $status; - } - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveStreamListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveStreamListResponse.php deleted file mode 100644 index bb451d56..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveStreamListResponse.php +++ /dev/null @@ -1,124 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setEventId($eventId) - { - $this->eventId = $eventId; - } - public function getEventId() - { - return $this->eventId; - } - /** - * @param Google_Service_YouTube_LiveStream - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_YouTube_LiveStream - */ - public function getItems() - { - return $this->items; - } - 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_YouTube_PageInfo - */ - public function setPageInfo(Google_Service_YouTube_PageInfo $pageInfo) - { - $this->pageInfo = $pageInfo; - } - /** - * @return Google_Service_YouTube_PageInfo - */ - public function getPageInfo() - { - return $this->pageInfo; - } - public function setPrevPageToken($prevPageToken) - { - $this->prevPageToken = $prevPageToken; - } - public function getPrevPageToken() - { - return $this->prevPageToken; - } - /** - * @param Google_Service_YouTube_TokenPagination - */ - public function setTokenPagination(Google_Service_YouTube_TokenPagination $tokenPagination) - { - $this->tokenPagination = $tokenPagination; - } - /** - * @return Google_Service_YouTube_TokenPagination - */ - public function getTokenPagination() - { - return $this->tokenPagination; - } - public function setVisitorId($visitorId) - { - $this->visitorId = $visitorId; - } - public function getVisitorId() - { - return $this->visitorId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveStreamSnippet.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveStreamSnippet.php deleted file mode 100644 index fcae002e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveStreamSnippet.php +++ /dev/null @@ -1,66 +0,0 @@ -channelId = $channelId; - } - public function getChannelId() - { - return $this->channelId; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setIsDefaultStream($isDefaultStream) - { - $this->isDefaultStream = $isDefaultStream; - } - public function getIsDefaultStream() - { - return $this->isDefaultStream; - } - public function setPublishedAt($publishedAt) - { - $this->publishedAt = $publishedAt; - } - public function getPublishedAt() - { - return $this->publishedAt; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveStreamStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveStreamStatus.php deleted file mode 100644 index e4f36938..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LiveStreamStatus.php +++ /dev/null @@ -1,46 +0,0 @@ -healthStatus = $healthStatus; - } - /** - * @return Google_Service_YouTube_LiveStreamHealthStatus - */ - public function getHealthStatus() - { - return $this->healthStatus; - } - public function setStreamStatus($streamStatus) - { - $this->streamStatus = $streamStatus; - } - public function getStreamStatus() - { - return $this->streamStatus; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LocalizedProperty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LocalizedProperty.php deleted file mode 100644 index 116bcf83..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LocalizedProperty.php +++ /dev/null @@ -1,63 +0,0 @@ -default = $default; - } - public function getDefault() - { - return $this->default; - } - /** - * @param Google_Service_YouTube_LanguageTag - */ - public function setDefaultLanguage(Google_Service_YouTube_LanguageTag $defaultLanguage) - { - $this->defaultLanguage = $defaultLanguage; - } - /** - * @return Google_Service_YouTube_LanguageTag - */ - public function getDefaultLanguage() - { - return $this->defaultLanguage; - } - /** - * @param Google_Service_YouTube_LocalizedString - */ - public function setLocalized($localized) - { - $this->localized = $localized; - } - /** - * @return Google_Service_YouTube_LocalizedString - */ - public function getLocalized() - { - return $this->localized; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LocalizedString.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LocalizedString.php deleted file mode 100644 index fe878632..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/LocalizedString.php +++ /dev/null @@ -1,39 +0,0 @@ -language = $language; - } - public function getLanguage() - { - return $this->language; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Member.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Member.php deleted file mode 100644 index e72876fb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Member.php +++ /dev/null @@ -1,55 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_YouTube_MemberSnippet - */ - public function setSnippet(Google_Service_YouTube_MemberSnippet $snippet) - { - $this->snippet = $snippet; - } - /** - * @return Google_Service_YouTube_MemberSnippet - */ - public function getSnippet() - { - return $this->snippet; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/MemberListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/MemberListResponse.php deleted file mode 100644 index f078ecee..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/MemberListResponse.php +++ /dev/null @@ -1,115 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setEventId($eventId) - { - $this->eventId = $eventId; - } - public function getEventId() - { - return $this->eventId; - } - /** - * @param Google_Service_YouTube_Member - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_YouTube_Member - */ - public function getItems() - { - return $this->items; - } - 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_YouTube_PageInfo - */ - public function setPageInfo(Google_Service_YouTube_PageInfo $pageInfo) - { - $this->pageInfo = $pageInfo; - } - /** - * @return Google_Service_YouTube_PageInfo - */ - public function getPageInfo() - { - return $this->pageInfo; - } - /** - * @param Google_Service_YouTube_TokenPagination - */ - public function setTokenPagination(Google_Service_YouTube_TokenPagination $tokenPagination) - { - $this->tokenPagination = $tokenPagination; - } - /** - * @return Google_Service_YouTube_TokenPagination - */ - public function getTokenPagination() - { - return $this->tokenPagination; - } - public function setVisitorId($visitorId) - { - $this->visitorId = $visitorId; - } - public function getVisitorId() - { - return $this->visitorId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/MemberSnippet.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/MemberSnippet.php deleted file mode 100644 index 496d14a0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/MemberSnippet.php +++ /dev/null @@ -1,62 +0,0 @@ -creatorChannelId = $creatorChannelId; - } - public function getCreatorChannelId() - { - return $this->creatorChannelId; - } - /** - * @param Google_Service_YouTube_ChannelProfileDetails - */ - public function setMemberDetails(Google_Service_YouTube_ChannelProfileDetails $memberDetails) - { - $this->memberDetails = $memberDetails; - } - /** - * @return Google_Service_YouTube_ChannelProfileDetails - */ - public function getMemberDetails() - { - return $this->memberDetails; - } - /** - * @param Google_Service_YouTube_MembershipsDetails - */ - public function setMembershipsDetails(Google_Service_YouTube_MembershipsDetails $membershipsDetails) - { - $this->membershipsDetails = $membershipsDetails; - } - /** - * @return Google_Service_YouTube_MembershipsDetails - */ - public function getMembershipsDetails() - { - return $this->membershipsDetails; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/MembershipsDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/MembershipsDetails.php deleted file mode 100644 index 1c43bfc9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/MembershipsDetails.php +++ /dev/null @@ -1,94 +0,0 @@ -accessibleLevels = $accessibleLevels; - } - public function getAccessibleLevels() - { - return $this->accessibleLevels; - } - public function setHighestAccessibleLevel($highestAccessibleLevel) - { - $this->highestAccessibleLevel = $highestAccessibleLevel; - } - public function getHighestAccessibleLevel() - { - return $this->highestAccessibleLevel; - } - public function setHighestAccessibleLevelDisplayName($highestAccessibleLevelDisplayName) - { - $this->highestAccessibleLevelDisplayName = $highestAccessibleLevelDisplayName; - } - public function getHighestAccessibleLevelDisplayName() - { - return $this->highestAccessibleLevelDisplayName; - } - public function setMemberSince($memberSince) - { - $this->memberSince = $memberSince; - } - public function getMemberSince() - { - return $this->memberSince; - } - public function setMemberSinceCurrentLevel($memberSinceCurrentLevel) - { - $this->memberSinceCurrentLevel = $memberSinceCurrentLevel; - } - public function getMemberSinceCurrentLevel() - { - return $this->memberSinceCurrentLevel; - } - public function setMemberTotalDuration($memberTotalDuration) - { - $this->memberTotalDuration = $memberTotalDuration; - } - public function getMemberTotalDuration() - { - return $this->memberTotalDuration; - } - public function setMemberTotalDurationCurrentLevel($memberTotalDurationCurrentLevel) - { - $this->memberTotalDurationCurrentLevel = $memberTotalDurationCurrentLevel; - } - public function getMemberTotalDurationCurrentLevel() - { - return $this->memberTotalDurationCurrentLevel; - } - public function setPurchasedLevel($purchasedLevel) - { - $this->purchasedLevel = $purchasedLevel; - } - public function getPurchasedLevel() - { - return $this->purchasedLevel; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/MembershipsLevel.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/MembershipsLevel.php deleted file mode 100644 index 95b13748..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/MembershipsLevel.php +++ /dev/null @@ -1,64 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - 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; - } - /** - * @param Google_Service_YouTube_MembershipsLevelSnippet - */ - public function setSnippet(Google_Service_YouTube_MembershipsLevelSnippet $snippet) - { - $this->snippet = $snippet; - } - /** - * @return Google_Service_YouTube_MembershipsLevelSnippet - */ - public function getSnippet() - { - return $this->snippet; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/MembershipsLevelListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/MembershipsLevelListResponse.php deleted file mode 100644 index 607f41f3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/MembershipsLevelListResponse.php +++ /dev/null @@ -1,74 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setEventId($eventId) - { - $this->eventId = $eventId; - } - public function getEventId() - { - return $this->eventId; - } - /** - * @param Google_Service_YouTube_MembershipsLevel - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_YouTube_MembershipsLevel - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setVisitorId($visitorId) - { - $this->visitorId = $visitorId; - } - public function getVisitorId() - { - return $this->visitorId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/MembershipsLevelSnippet.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/MembershipsLevelSnippet.php deleted file mode 100644 index 2e6e1594..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/MembershipsLevelSnippet.php +++ /dev/null @@ -1,46 +0,0 @@ -creatorChannelId = $creatorChannelId; - } - public function getCreatorChannelId() - { - return $this->creatorChannelId; - } - /** - * @param Google_Service_YouTube_LevelDetails - */ - public function setLevelDetails(Google_Service_YouTube_LevelDetails $levelDetails) - { - $this->levelDetails = $levelDetails; - } - /** - * @return Google_Service_YouTube_LevelDetails - */ - public function getLevelDetails() - { - return $this->levelDetails; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/MonitorStreamInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/MonitorStreamInfo.php deleted file mode 100644 index 8af0a3c8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/MonitorStreamInfo.php +++ /dev/null @@ -1,48 +0,0 @@ -broadcastStreamDelayMs = $broadcastStreamDelayMs; - } - public function getBroadcastStreamDelayMs() - { - return $this->broadcastStreamDelayMs; - } - public function setEmbedHtml($embedHtml) - { - $this->embedHtml = $embedHtml; - } - public function getEmbedHtml() - { - return $this->embedHtml; - } - public function setEnableMonitorStream($enableMonitorStream) - { - $this->enableMonitorStream = $enableMonitorStream; - } - public function getEnableMonitorStream() - { - return $this->enableMonitorStream; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Nonprofit.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Nonprofit.php deleted file mode 100644 index c383b2fd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Nonprofit.php +++ /dev/null @@ -1,46 +0,0 @@ -nonprofitId = $nonprofitId; - } - /** - * @return Google_Service_YouTube_NonprofitId - */ - public function getNonprofitId() - { - return $this->nonprofitId; - } - public function setNonprofitLegalName($nonprofitLegalName) - { - $this->nonprofitLegalName = $nonprofitLegalName; - } - public function getNonprofitLegalName() - { - return $this->nonprofitLegalName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/NonprofitId.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/NonprofitId.php deleted file mode 100644 index 0e354423..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/NonprofitId.php +++ /dev/null @@ -1,30 +0,0 @@ -value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/PageInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/PageInfo.php deleted file mode 100644 index 2b66b874..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/PageInfo.php +++ /dev/null @@ -1,39 +0,0 @@ -resultsPerPage = $resultsPerPage; - } - public function getResultsPerPage() - { - return $this->resultsPerPage; - } - public function setTotalResults($totalResults) - { - $this->totalResults = $totalResults; - } - public function getTotalResults() - { - return $this->totalResults; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Playlist.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Playlist.php deleted file mode 100644 index 43f28026..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Playlist.php +++ /dev/null @@ -1,128 +0,0 @@ -contentDetails = $contentDetails; - } - /** - * @return Google_Service_YouTube_PlaylistContentDetails - */ - public function getContentDetails() - { - return $this->contentDetails; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - 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; - } - /** - * @param Google_Service_YouTube_PlaylistLocalization - */ - public function setLocalizations($localizations) - { - $this->localizations = $localizations; - } - /** - * @return Google_Service_YouTube_PlaylistLocalization - */ - public function getLocalizations() - { - return $this->localizations; - } - /** - * @param Google_Service_YouTube_PlaylistPlayer - */ - public function setPlayer(Google_Service_YouTube_PlaylistPlayer $player) - { - $this->player = $player; - } - /** - * @return Google_Service_YouTube_PlaylistPlayer - */ - public function getPlayer() - { - return $this->player; - } - /** - * @param Google_Service_YouTube_PlaylistSnippet - */ - public function setSnippet(Google_Service_YouTube_PlaylistSnippet $snippet) - { - $this->snippet = $snippet; - } - /** - * @return Google_Service_YouTube_PlaylistSnippet - */ - public function getSnippet() - { - return $this->snippet; - } - /** - * @param Google_Service_YouTube_PlaylistStatus - */ - public function setStatus(Google_Service_YouTube_PlaylistStatus $status) - { - $this->status = $status; - } - /** - * @return Google_Service_YouTube_PlaylistStatus - */ - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/PlaylistContentDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/PlaylistContentDetails.php deleted file mode 100644 index 05fbfb79..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/PlaylistContentDetails.php +++ /dev/null @@ -1,30 +0,0 @@ -itemCount = $itemCount; - } - public function getItemCount() - { - return $this->itemCount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/PlaylistItem.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/PlaylistItem.php deleted file mode 100644 index d37ffc83..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/PlaylistItem.php +++ /dev/null @@ -1,96 +0,0 @@ -contentDetails = $contentDetails; - } - /** - * @return Google_Service_YouTube_PlaylistItemContentDetails - */ - public function getContentDetails() - { - return $this->contentDetails; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - 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; - } - /** - * @param Google_Service_YouTube_PlaylistItemSnippet - */ - public function setSnippet(Google_Service_YouTube_PlaylistItemSnippet $snippet) - { - $this->snippet = $snippet; - } - /** - * @return Google_Service_YouTube_PlaylistItemSnippet - */ - public function getSnippet() - { - return $this->snippet; - } - /** - * @param Google_Service_YouTube_PlaylistItemStatus - */ - public function setStatus(Google_Service_YouTube_PlaylistItemStatus $status) - { - $this->status = $status; - } - /** - * @return Google_Service_YouTube_PlaylistItemStatus - */ - public function getStatus() - { - return $this->status; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/PlaylistItemContentDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/PlaylistItemContentDetails.php deleted file mode 100644 index aa737462..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/PlaylistItemContentDetails.php +++ /dev/null @@ -1,66 +0,0 @@ -endAt = $endAt; - } - public function getEndAt() - { - return $this->endAt; - } - public function setNote($note) - { - $this->note = $note; - } - public function getNote() - { - return $this->note; - } - public function setStartAt($startAt) - { - $this->startAt = $startAt; - } - public function getStartAt() - { - return $this->startAt; - } - public function setVideoId($videoId) - { - $this->videoId = $videoId; - } - public function getVideoId() - { - return $this->videoId; - } - public function setVideoPublishedAt($videoPublishedAt) - { - $this->videoPublishedAt = $videoPublishedAt; - } - public function getVideoPublishedAt() - { - return $this->videoPublishedAt; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/PlaylistItemListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/PlaylistItemListResponse.php deleted file mode 100644 index 557912c7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/PlaylistItemListResponse.php +++ /dev/null @@ -1,124 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setEventId($eventId) - { - $this->eventId = $eventId; - } - public function getEventId() - { - return $this->eventId; - } - /** - * @param Google_Service_YouTube_PlaylistItem - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_YouTube_PlaylistItem - */ - public function getItems() - { - return $this->items; - } - 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_YouTube_PageInfo - */ - public function setPageInfo(Google_Service_YouTube_PageInfo $pageInfo) - { - $this->pageInfo = $pageInfo; - } - /** - * @return Google_Service_YouTube_PageInfo - */ - public function getPageInfo() - { - return $this->pageInfo; - } - public function setPrevPageToken($prevPageToken) - { - $this->prevPageToken = $prevPageToken; - } - public function getPrevPageToken() - { - return $this->prevPageToken; - } - /** - * @param Google_Service_YouTube_TokenPagination - */ - public function setTokenPagination(Google_Service_YouTube_TokenPagination $tokenPagination) - { - $this->tokenPagination = $tokenPagination; - } - /** - * @return Google_Service_YouTube_TokenPagination - */ - public function getTokenPagination() - { - return $this->tokenPagination; - } - public function setVisitorId($visitorId) - { - $this->visitorId = $visitorId; - } - public function getVisitorId() - { - return $this->visitorId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/PlaylistItemSnippet.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/PlaylistItemSnippet.php deleted file mode 100644 index 62d466c3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/PlaylistItemSnippet.php +++ /dev/null @@ -1,116 +0,0 @@ -channelId = $channelId; - } - public function getChannelId() - { - return $this->channelId; - } - public function setChannelTitle($channelTitle) - { - $this->channelTitle = $channelTitle; - } - public function getChannelTitle() - { - return $this->channelTitle; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setPlaylistId($playlistId) - { - $this->playlistId = $playlistId; - } - public function getPlaylistId() - { - return $this->playlistId; - } - public function setPosition($position) - { - $this->position = $position; - } - public function getPosition() - { - return $this->position; - } - public function setPublishedAt($publishedAt) - { - $this->publishedAt = $publishedAt; - } - public function getPublishedAt() - { - return $this->publishedAt; - } - /** - * @param Google_Service_YouTube_ResourceId - */ - public function setResourceId(Google_Service_YouTube_ResourceId $resourceId) - { - $this->resourceId = $resourceId; - } - /** - * @return Google_Service_YouTube_ResourceId - */ - public function getResourceId() - { - return $this->resourceId; - } - /** - * @param Google_Service_YouTube_ThumbnailDetails - */ - public function setThumbnails(Google_Service_YouTube_ThumbnailDetails $thumbnails) - { - $this->thumbnails = $thumbnails; - } - /** - * @return Google_Service_YouTube_ThumbnailDetails - */ - public function getThumbnails() - { - return $this->thumbnails; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/PlaylistItemStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/PlaylistItemStatus.php deleted file mode 100644 index e28d1964..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/PlaylistItemStatus.php +++ /dev/null @@ -1,30 +0,0 @@ -privacyStatus = $privacyStatus; - } - public function getPrivacyStatus() - { - return $this->privacyStatus; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/PlaylistListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/PlaylistListResponse.php deleted file mode 100644 index e1873b16..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/PlaylistListResponse.php +++ /dev/null @@ -1,124 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setEventId($eventId) - { - $this->eventId = $eventId; - } - public function getEventId() - { - return $this->eventId; - } - /** - * @param Google_Service_YouTube_Playlist - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_YouTube_Playlist - */ - public function getItems() - { - return $this->items; - } - 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_YouTube_PageInfo - */ - public function setPageInfo(Google_Service_YouTube_PageInfo $pageInfo) - { - $this->pageInfo = $pageInfo; - } - /** - * @return Google_Service_YouTube_PageInfo - */ - public function getPageInfo() - { - return $this->pageInfo; - } - public function setPrevPageToken($prevPageToken) - { - $this->prevPageToken = $prevPageToken; - } - public function getPrevPageToken() - { - return $this->prevPageToken; - } - /** - * @param Google_Service_YouTube_TokenPagination - */ - public function setTokenPagination(Google_Service_YouTube_TokenPagination $tokenPagination) - { - $this->tokenPagination = $tokenPagination; - } - /** - * @return Google_Service_YouTube_TokenPagination - */ - public function getTokenPagination() - { - return $this->tokenPagination; - } - public function setVisitorId($visitorId) - { - $this->visitorId = $visitorId; - } - public function getVisitorId() - { - return $this->visitorId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/PlaylistLocalization.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/PlaylistLocalization.php deleted file mode 100644 index ffdbdeae..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/PlaylistLocalization.php +++ /dev/null @@ -1,39 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/PlaylistPlayer.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/PlaylistPlayer.php deleted file mode 100644 index 2741b65b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/PlaylistPlayer.php +++ /dev/null @@ -1,30 +0,0 @@ -embedHtml = $embedHtml; - } - public function getEmbedHtml() - { - return $this->embedHtml; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/PlaylistSnippet.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/PlaylistSnippet.php deleted file mode 100644 index d6d4107e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/PlaylistSnippet.php +++ /dev/null @@ -1,117 +0,0 @@ -channelId = $channelId; - } - public function getChannelId() - { - return $this->channelId; - } - public function setChannelTitle($channelTitle) - { - $this->channelTitle = $channelTitle; - } - public function getChannelTitle() - { - return $this->channelTitle; - } - public function setDefaultLanguage($defaultLanguage) - { - $this->defaultLanguage = $defaultLanguage; - } - public function getDefaultLanguage() - { - return $this->defaultLanguage; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - /** - * @param Google_Service_YouTube_PlaylistLocalization - */ - public function setLocalized(Google_Service_YouTube_PlaylistLocalization $localized) - { - $this->localized = $localized; - } - /** - * @return Google_Service_YouTube_PlaylistLocalization - */ - public function getLocalized() - { - return $this->localized; - } - public function setPublishedAt($publishedAt) - { - $this->publishedAt = $publishedAt; - } - public function getPublishedAt() - { - return $this->publishedAt; - } - public function setTags($tags) - { - $this->tags = $tags; - } - public function getTags() - { - return $this->tags; - } - /** - * @param Google_Service_YouTube_ThumbnailDetails - */ - public function setThumbnails(Google_Service_YouTube_ThumbnailDetails $thumbnails) - { - $this->thumbnails = $thumbnails; - } - /** - * @return Google_Service_YouTube_ThumbnailDetails - */ - public function getThumbnails() - { - return $this->thumbnails; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/PlaylistStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/PlaylistStatus.php deleted file mode 100644 index beb1d2cd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/PlaylistStatus.php +++ /dev/null @@ -1,30 +0,0 @@ -privacyStatus = $privacyStatus; - } - public function getPrivacyStatus() - { - return $this->privacyStatus; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/PromotedItem.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/PromotedItem.php deleted file mode 100644 index 570ce111..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/PromotedItem.php +++ /dev/null @@ -1,71 +0,0 @@ -customMessage = $customMessage; - } - public function getCustomMessage() - { - return $this->customMessage; - } - /** - * @param Google_Service_YouTube_PromotedItemId - */ - public function setId(Google_Service_YouTube_PromotedItemId $id) - { - $this->id = $id; - } - /** - * @return Google_Service_YouTube_PromotedItemId - */ - public function getId() - { - return $this->id; - } - public function setPromotedByContentOwner($promotedByContentOwner) - { - $this->promotedByContentOwner = $promotedByContentOwner; - } - public function getPromotedByContentOwner() - { - return $this->promotedByContentOwner; - } - /** - * @param Google_Service_YouTube_InvideoTiming - */ - public function setTiming(Google_Service_YouTube_InvideoTiming $timing) - { - $this->timing = $timing; - } - /** - * @return Google_Service_YouTube_InvideoTiming - */ - public function getTiming() - { - return $this->timing; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/PromotedItemId.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/PromotedItemId.php deleted file mode 100644 index 3ef9ac0b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/PromotedItemId.php +++ /dev/null @@ -1,57 +0,0 @@ -recentlyUploadedBy = $recentlyUploadedBy; - } - public function getRecentlyUploadedBy() - { - return $this->recentlyUploadedBy; - } - public function setType($type) - { - $this->type = $type; - } - public function getType() - { - return $this->type; - } - public function setVideoId($videoId) - { - $this->videoId = $videoId; - } - public function getVideoId() - { - return $this->videoId; - } - public function setWebsiteUrl($websiteUrl) - { - $this->websiteUrl = $websiteUrl; - } - public function getWebsiteUrl() - { - return $this->websiteUrl; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/PropertyValue.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/PropertyValue.php deleted file mode 100644 index 469ab5fa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/PropertyValue.php +++ /dev/null @@ -1,39 +0,0 @@ -property = $property; - } - public function getProperty() - { - return $this->property; - } - public function setValue($value) - { - $this->value = $value; - } - public function getValue() - { - return $this->value; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/Activities.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/Activities.php deleted file mode 100644 index a70e1f12..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/Activities.php +++ /dev/null @@ -1,109 +0,0 @@ - - * $youtubeService = new Google_Service_YouTube(...); - * $activities = $youtubeService->activities; - * - */ -class Google_Service_YouTube_Resource_Activities extends Google_Service_Resource -{ - /** - * Posts a bulletin for a specific channel. (The user submitting the request - * must be authorized to act on the channel's behalf.) - * - * Note: Even though an activity resource can contain information about actions - * like a user rating a video or marking a video as a favorite, you need to use - * other API methods to generate those activity resources. For example, you - * would use the API's videos.rate() method to rate a video and the - * playlistItems.insert() method to mark a video as a favorite. - * (activities.insert) - * - * @param string $part The part parameter serves two purposes in this operation. - * It identifies the properties that the write operation will set as well as the - * properties that the API response will include. - * @param Google_Service_YouTube_Activity $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_YouTube_Activity - */ - public function insert($part, Google_Service_YouTube_Activity $postBody, $optParams = array()) - { - $params = array('part' => $part, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_YouTube_Activity"); - } - /** - * Returns a list of channel activity events that match the request criteria. - * For example, you can retrieve events associated with a particular channel, - * events associated with the user's subscriptions and Google+ friends, or the - * YouTube home page feed, which is customized for each user. - * (activities.listActivities) - * - * @param string $part The part parameter specifies a comma-separated list of - * one or more activity resource properties that the API response will include. - * - * If the parameter identifies a property that contains child properties, the - * child properties will be included in the response. For example, in an - * activity resource, the snippet property contains other properties that - * identify the type of activity, a display title for the activity, and so - * forth. If you set part=snippet, the API response will also contain all of - * those nested properties. - * @param array $optParams Optional parameters. - * - * @opt_param string channelId The channelId parameter specifies a unique - * YouTube channel ID. The API will then return a list of that channel's - * activities. - * @opt_param bool home Set this parameter's value to true to retrieve the - * activity feed that displays on the YouTube home page for the currently - * authenticated user. - * @opt_param string maxResults The maxResults parameter specifies the maximum - * number of items that should be returned in the result set. - * @opt_param bool mine Set this parameter's value to true to retrieve a feed of - * the authenticated user's activities. - * @opt_param string pageToken The pageToken parameter identifies a specific - * page in the result set that should be returned. In an API response, the - * nextPageToken and prevPageToken properties identify other pages that could be - * retrieved. - * @opt_param string publishedAfter The publishedAfter parameter specifies the - * earliest date and time that an activity could have occurred for that activity - * to be included in the API response. If the parameter value specifies a day, - * but not a time, then any activities that occurred that day will be included - * in the result set. The value is specified in ISO 8601 (YYYY-MM- - * DDThh:mm:ss.sZ) format. - * @opt_param string publishedBefore The publishedBefore parameter specifies the - * date and time before which an activity must have occurred for that activity - * to be included in the API response. If the parameter value specifies a day, - * but not a time, then any activities that occurred that day will be excluded - * from the result set. The value is specified in ISO 8601 (YYYY-MM- - * DDThh:mm:ss.sZ) format. - * @opt_param string regionCode The regionCode parameter instructs the API to - * return results for the specified country. The parameter value is an ISO - * 3166-1 alpha-2 country code. YouTube uses this value when the authorized - * user's previous activity on YouTube does not provide enough information to - * generate the activity feed. - * @return Google_Service_YouTube_ActivityListResponse - */ - public function listActivities($part, $optParams = array()) - { - $params = array('part' => $part); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_YouTube_ActivityListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/Captions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/Captions.php deleted file mode 100644 index 79a59d33..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/Captions.php +++ /dev/null @@ -1,215 +0,0 @@ - - * $youtubeService = new Google_Service_YouTube(...); - * $captions = $youtubeService->captions; - * - */ -class Google_Service_YouTube_Resource_Captions extends Google_Service_Resource -{ - /** - * Deletes a specified caption track. (captions.delete) - * - * @param string $id The id parameter identifies the caption track that is being - * deleted. The value is a caption track ID as identified by the id property in - * a caption resource. - * @param array $optParams Optional parameters. - * - * @opt_param string onBehalfOf ID of the Google+ Page for the channel that the - * request is be on behalf of - * @opt_param string onBehalfOfContentOwner Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwner parameter indicates that the request's - * authorization credentials identify a YouTube CMS user who is acting on behalf - * of the content owner specified in the parameter value. This parameter is - * intended for YouTube content partners that own and manage many different - * YouTube channels. It allows content owners to authenticate once and get - * access to all their video and channel data, without having to provide - * authentication credentials for each individual channel. The actual CMS - * account that the user authenticates with must be linked to the specified - * YouTube content owner. - */ - public function delete($id, $optParams = array()) - { - $params = array('id' => $id); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Downloads a caption track. The caption track is returned in its original - * format unless the request specifies a value for the tfmt parameter and in its - * original language unless the request specifies a value for the tlang - * parameter. (captions.download) - * - * @param string $id The id parameter identifies the caption track that is being - * retrieved. The value is a caption track ID as identified by the id property - * in a caption resource. - * @param array $optParams Optional parameters. - * - * @opt_param string onBehalfOf ID of the Google+ Page for the channel that the - * request is be on behalf of - * @opt_param string onBehalfOfContentOwner Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwner parameter indicates that the request's - * authorization credentials identify a YouTube CMS user who is acting on behalf - * of the content owner specified in the parameter value. This parameter is - * intended for YouTube content partners that own and manage many different - * YouTube channels. It allows content owners to authenticate once and get - * access to all their video and channel data, without having to provide - * authentication credentials for each individual channel. The actual CMS - * account that the user authenticates with must be linked to the specified - * YouTube content owner. - * @opt_param string tfmt The tfmt parameter specifies that the caption track - * should be returned in a specific format. If the parameter is not included in - * the request, the track is returned in its original format. - * @opt_param string tlang The tlang parameter specifies that the API response - * should return a translation of the specified caption track. The parameter - * value is an ISO 639-1 two-letter language code that identifies the desired - * caption language. The translation is generated by using machine translation, - * such as Google Translate. - */ - public function download($id, $optParams = array()) - { - $params = array('id' => $id); - $params = array_merge($params, $optParams); - return $this->call('download', array($params)); - } - /** - * Uploads a caption track. (captions.insert) - * - * @param string $part The part parameter specifies the caption resource parts - * that the API response will include. Set the parameter value to snippet. - * @param Google_Service_YouTube_Caption $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string onBehalfOf ID of the Google+ Page for the channel that the - * request is be on behalf of - * @opt_param string onBehalfOfContentOwner Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwner parameter indicates that the request's - * authorization credentials identify a YouTube CMS user who is acting on behalf - * of the content owner specified in the parameter value. This parameter is - * intended for YouTube content partners that own and manage many different - * YouTube channels. It allows content owners to authenticate once and get - * access to all their video and channel data, without having to provide - * authentication credentials for each individual channel. The actual CMS - * account that the user authenticates with must be linked to the specified - * YouTube content owner. - * @opt_param bool sync The sync parameter indicates whether YouTube should - * automatically synchronize the caption file with the audio track of the video. - * If you set the value to true, YouTube will disregard any time codes that are - * in the uploaded caption file and generate new time codes for the captions. - * - * You should set the sync parameter to true if you are uploading a transcript, - * which has no time codes, or if you suspect the time codes in your file are - * incorrect and want YouTube to try to fix them. - * @return Google_Service_YouTube_Caption - */ - public function insert($part, Google_Service_YouTube_Caption $postBody, $optParams = array()) - { - $params = array('part' => $part, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_YouTube_Caption"); - } - /** - * Returns a list of caption tracks that are associated with a specified video. - * Note that the API response does not contain the actual captions and that the - * captions.download method provides the ability to retrieve a caption track. - * (captions.listCaptions) - * - * @param string $part The part parameter specifies a comma-separated list of - * one or more caption resource parts that the API response will include. The - * part names that you can include in the parameter value are id and snippet. - * @param string $videoId The videoId parameter specifies the YouTube video ID - * of the video for which the API should return caption tracks. - * @param array $optParams Optional parameters. - * - * @opt_param string id The id parameter specifies a comma-separated list of IDs - * that identify the caption resources that should be retrieved. Each ID must - * identify a caption track associated with the specified video. - * @opt_param string onBehalfOf ID of the Google+ Page for the channel that the - * request is on behalf of. - * @opt_param string onBehalfOfContentOwner Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwner parameter indicates that the request's - * authorization credentials identify a YouTube CMS user who is acting on behalf - * of the content owner specified in the parameter value. This parameter is - * intended for YouTube content partners that own and manage many different - * YouTube channels. It allows content owners to authenticate once and get - * access to all their video and channel data, without having to provide - * authentication credentials for each individual channel. The actual CMS - * account that the user authenticates with must be linked to the specified - * YouTube content owner. - * @return Google_Service_YouTube_CaptionListResponse - */ - public function listCaptions($part, $videoId, $optParams = array()) - { - $params = array('part' => $part, 'videoId' => $videoId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_YouTube_CaptionListResponse"); - } - /** - * Updates a caption track. When updating a caption track, you can change the - * track's draft status, upload a new caption file for the track, or both. - * (captions.update) - * - * @param string $part The part parameter serves two purposes in this operation. - * It identifies the properties that the write operation will set as well as the - * properties that the API response will include. Set the property value to - * snippet if you are updating the track's draft status. Otherwise, set the - * property value to id. - * @param Google_Service_YouTube_Caption $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string onBehalfOf ID of the Google+ Page for the channel that the - * request is be on behalf of - * @opt_param string onBehalfOfContentOwner Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwner parameter indicates that the request's - * authorization credentials identify a YouTube CMS user who is acting on behalf - * of the content owner specified in the parameter value. This parameter is - * intended for YouTube content partners that own and manage many different - * YouTube channels. It allows content owners to authenticate once and get - * access to all their video and channel data, without having to provide - * authentication credentials for each individual channel. The actual CMS - * account that the user authenticates with must be linked to the specified - * YouTube content owner. - * @opt_param bool sync Note: The API server only processes the parameter value - * if the request contains an updated caption file. - * - * The sync parameter indicates whether YouTube should automatically synchronize - * the caption file with the audio track of the video. If you set the value to - * true, YouTube will automatically synchronize the caption track with the audio - * track. - * @return Google_Service_YouTube_Caption - */ - public function update($part, Google_Service_YouTube_Caption $postBody, $optParams = array()) - { - $params = array('part' => $part, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_YouTube_Caption"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/ChannelBanners.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/ChannelBanners.php deleted file mode 100644 index 9c387e9a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/ChannelBanners.php +++ /dev/null @@ -1,70 +0,0 @@ - - * $youtubeService = new Google_Service_YouTube(...); - * $channelBanners = $youtubeService->channelBanners; - * - */ -class Google_Service_YouTube_Resource_ChannelBanners extends Google_Service_Resource -{ - /** - * Uploads a channel banner image to YouTube. This method represents the first - * two steps in a three-step process to update the banner image for a channel: - * - * - Call the channelBanners.insert method to upload the binary image data to - * YouTube. The image must have a 16:9 aspect ratio and be at least 2120x1192 - * pixels. - Extract the url property's value from the response that the API - * returns for step 1. - Call the channels.update method to update the channel's - * branding settings. Set the brandingSettings.image.bannerExternalUrl - * property's value to the URL obtained in step 2. (channelBanners.insert) - * - * @param Google_Service_YouTube_ChannelBannerResource $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string channelId The channelId parameter identifies the YouTube - * channel to which the banner is uploaded. The channelId parameter was - * introduced as a required parameter in May 2017. As this was a backward- - * incompatible change, channelBanners.insert requests that do not specify this - * parameter will not return an error until six months have passed from the time - * that the parameter was introduced. Please see the API Terms of Service for - * the official policy regarding backward incompatible changes and the API - * revision history for the exact date that the parameter was introduced. - * @opt_param string onBehalfOfContentOwner Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwner parameter indicates that the request's - * authorization credentials identify a YouTube CMS user who is acting on behalf - * of the content owner specified in the parameter value. This parameter is - * intended for YouTube content partners that own and manage many different - * YouTube channels. It allows content owners to authenticate once and get - * access to all their video and channel data, without having to provide - * authentication credentials for each individual channel. The CMS account that - * the user authenticates with must be linked to the specified YouTube content - * owner. - * @return Google_Service_YouTube_ChannelBannerResource - */ - public function insert(Google_Service_YouTube_ChannelBannerResource $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_YouTube_ChannelBannerResource"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/ChannelSections.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/ChannelSections.php deleted file mode 100644 index d41cc657..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/ChannelSections.php +++ /dev/null @@ -1,190 +0,0 @@ - - * $youtubeService = new Google_Service_YouTube(...); - * $channelSections = $youtubeService->channelSections; - * - */ -class Google_Service_YouTube_Resource_ChannelSections extends Google_Service_Resource -{ - /** - * Deletes a channelSection. (channelSections.delete) - * - * @param string $id The id parameter specifies the YouTube channelSection ID - * for the resource that is being deleted. In a channelSection resource, the id - * property specifies the YouTube channelSection ID. - * @param array $optParams Optional parameters. - * - * @opt_param string onBehalfOfContentOwner Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwner parameter indicates that the request's - * authorization credentials identify a YouTube CMS user who is acting on behalf - * of the content owner specified in the parameter value. This parameter is - * intended for YouTube content partners that own and manage many different - * YouTube channels. It allows content owners to authenticate once and get - * access to all their video and channel data, without having to provide - * authentication credentials for each individual channel. The CMS account that - * the user authenticates with must be linked to the specified YouTube content - * owner. - */ - public function delete($id, $optParams = array()) - { - $params = array('id' => $id); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Adds a channelSection for the authenticated user's channel. - * (channelSections.insert) - * - * @param string $part The part parameter serves two purposes in this operation. - * It identifies the properties that the write operation will set as well as the - * properties that the API response will include. - * - * The part names that you can include in the parameter value are snippet and - * contentDetails. - * @param Google_Service_YouTube_ChannelSection $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string onBehalfOfContentOwner Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwner parameter indicates that the request's - * authorization credentials identify a YouTube CMS user who is acting on behalf - * of the content owner specified in the parameter value. This parameter is - * intended for YouTube content partners that own and manage many different - * YouTube channels. It allows content owners to authenticate once and get - * access to all their video and channel data, without having to provide - * authentication credentials for each individual channel. The CMS account that - * the user authenticates with must be linked to the specified YouTube content - * owner. - * @opt_param string onBehalfOfContentOwnerChannel This parameter can only be - * used in a properly authorized request. Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwnerChannel parameter specifies the YouTube channel ID - * of the channel to which a video is being added. This parameter is required - * when a request specifies a value for the onBehalfOfContentOwner parameter, - * and it can only be used in conjunction with that parameter. In addition, the - * request must be authorized using a CMS account that is linked to the content - * owner that the onBehalfOfContentOwner parameter specifies. Finally, the - * channel that the onBehalfOfContentOwnerChannel parameter value specifies must - * be linked to the content owner that the onBehalfOfContentOwner parameter - * specifies. - * - * This parameter is intended for YouTube content partners that own and manage - * many different YouTube channels. It allows content owners to authenticate - * once and perform actions on behalf of the channel specified in the parameter - * value, without having to provide authentication credentials for each separate - * channel. - * @return Google_Service_YouTube_ChannelSection - */ - public function insert($part, Google_Service_YouTube_ChannelSection $postBody, $optParams = array()) - { - $params = array('part' => $part, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_YouTube_ChannelSection"); - } - /** - * Returns channelSection resources that match the API request criteria. - * (channelSections.listChannelSections) - * - * @param string $part The part parameter specifies a comma-separated list of - * one or more channelSection resource properties that the API response will - * include. The part names that you can include in the parameter value are id, - * snippet, and contentDetails. - * - * If the parameter identifies a property that contains child properties, the - * child properties will be included in the response. For example, in a - * channelSection resource, the snippet property contains other properties, such - * as a display title for the channelSection. If you set part=snippet, the API - * response will also contain all of those nested properties. - * @param array $optParams Optional parameters. - * - * @opt_param string channelId The channelId parameter specifies a YouTube - * channel ID. The API will only return that channel's channelSections. - * @opt_param string hl The hl parameter indicates that the snippet.localized - * property values in the returned channelSection resources should be in the - * specified language if localized values for that language are available. For - * example, if the API request specifies hl=de, the snippet.localized properties - * in the API response will contain German titles if German titles are - * available. Channel owners can provide localized channel section titles using - * either the channelSections.insert or channelSections.update method. - * @opt_param string id The id parameter specifies a comma-separated list of the - * YouTube channelSection ID(s) for the resource(s) that are being retrieved. In - * a channelSection resource, the id property specifies the YouTube - * channelSection ID. - * @opt_param bool mine Set this parameter's value to true to retrieve a feed of - * the authenticated user's channelSections. - * @opt_param string onBehalfOfContentOwner Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwner parameter indicates that the request's - * authorization credentials identify a YouTube CMS user who is acting on behalf - * of the content owner specified in the parameter value. This parameter is - * intended for YouTube content partners that own and manage many different - * YouTube channels. It allows content owners to authenticate once and get - * access to all their video and channel data, without having to provide - * authentication credentials for each individual channel. The CMS account that - * the user authenticates with must be linked to the specified YouTube content - * owner. - * @return Google_Service_YouTube_ChannelSectionListResponse - */ - public function listChannelSections($part, $optParams = array()) - { - $params = array('part' => $part); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_YouTube_ChannelSectionListResponse"); - } - /** - * Update a channelSection. (channelSections.update) - * - * @param string $part The part parameter serves two purposes in this operation. - * It identifies the properties that the write operation will set as well as the - * properties that the API response will include. - * - * The part names that you can include in the parameter value are snippet and - * contentDetails. - * @param Google_Service_YouTube_ChannelSection $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string onBehalfOfContentOwner Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwner parameter indicates that the request's - * authorization credentials identify a YouTube CMS user who is acting on behalf - * of the content owner specified in the parameter value. This parameter is - * intended for YouTube content partners that own and manage many different - * YouTube channels. It allows content owners to authenticate once and get - * access to all their video and channel data, without having to provide - * authentication credentials for each individual channel. The CMS account that - * the user authenticates with must be linked to the specified YouTube content - * owner. - * @return Google_Service_YouTube_ChannelSection - */ - public function update($part, Google_Service_YouTube_ChannelSection $postBody, $optParams = array()) - { - $params = array('part' => $part, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_YouTube_ChannelSection"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/Channels.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/Channels.php deleted file mode 100644 index bff2c73e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/Channels.php +++ /dev/null @@ -1,126 +0,0 @@ - - * $youtubeService = new Google_Service_YouTube(...); - * $channels = $youtubeService->channels; - * - */ -class Google_Service_YouTube_Resource_Channels extends Google_Service_Resource -{ - /** - * Returns a collection of zero or more channel resources that match the request - * criteria. (channels.listChannels) - * - * @param string $part The part parameter specifies a comma-separated list of - * one or more channel resource properties that the API response will include. - * - * If the parameter identifies a property that contains child properties, the - * child properties will be included in the response. For example, in a channel - * resource, the contentDetails property contains other properties, such as the - * uploads properties. As such, if you set part=contentDetails, the API response - * will also contain all of those nested properties. - * @param array $optParams Optional parameters. - * - * @opt_param string categoryId The categoryId parameter specifies a YouTube - * guide category, thereby requesting YouTube channels associated with that - * category. - * @opt_param string forUsername The forUsername parameter specifies a YouTube - * username, thereby requesting the channel associated with that username. - * @opt_param string hl The hl parameter should be used for filter out the - * properties that are not in the given language. Used for the brandingSettings - * part. - * @opt_param string id The id parameter specifies a comma-separated list of the - * YouTube channel ID(s) for the resource(s) that are being retrieved. In a - * channel resource, the id property specifies the channel's YouTube channel ID. - * @opt_param bool managedByMe Note: This parameter is intended exclusively for - * YouTube content partners. - * - * Set this parameter's value to true to instruct the API to only return - * channels managed by the content owner that the onBehalfOfContentOwner - * parameter specifies. The user must be authenticated as a CMS account linked - * to the specified content owner and onBehalfOfContentOwner must be provided. - * @opt_param string maxResults The maxResults parameter specifies the maximum - * number of items that should be returned in the result set. - * @opt_param bool mine Set this parameter's value to true to instruct the API - * to only return channels owned by the authenticated user. - * @opt_param bool mySubscribers Use the subscriptions.list method and its - * mySubscribers parameter to retrieve a list of subscribers to the - * authenticated user's channel. - * @opt_param string onBehalfOfContentOwner Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwner parameter indicates that the request's - * authorization credentials identify a YouTube CMS user who is acting on behalf - * of the content owner specified in the parameter value. This parameter is - * intended for YouTube content partners that own and manage many different - * YouTube channels. It allows content owners to authenticate once and get - * access to all their video and channel data, without having to provide - * authentication credentials for each individual channel. The CMS account that - * the user authenticates with must be linked to the specified YouTube content - * owner. - * @opt_param string pageToken The pageToken parameter identifies a specific - * page in the result set that should be returned. In an API response, the - * nextPageToken and prevPageToken properties identify other pages that could be - * retrieved. - * @return Google_Service_YouTube_ChannelListResponse - */ - public function listChannels($part, $optParams = array()) - { - $params = array('part' => $part); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_YouTube_ChannelListResponse"); - } - /** - * Updates a channel's metadata. Note that this method currently only supports - * updates to the channel resource's brandingSettings and invideoPromotion - * objects and their child properties. (channels.update) - * - * @param string $part The part parameter serves two purposes in this operation. - * It identifies the properties that the write operation will set as well as the - * properties that the API response will include. - * - * The API currently only allows the parameter value to be set to either - * brandingSettings or invideoPromotion. (You cannot update both of those parts - * with a single request.) - * - * Note that this method overrides the existing values for all of the mutable - * properties that are contained in any parts that the parameter value - * specifies. - * @param Google_Service_YouTube_Channel $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string onBehalfOfContentOwner The onBehalfOfContentOwner parameter - * indicates that the authenticated user is acting on behalf of the content - * owner specified in the parameter value. This parameter is intended for - * YouTube content partners that own and manage many different YouTube channels. - * It allows content owners to authenticate once and get access to all their - * video and channel data, without having to provide authentication credentials - * for each individual channel. The actual CMS account that the user - * authenticates with needs to be linked to the specified YouTube content owner. - * @return Google_Service_YouTube_Channel - */ - public function update($part, Google_Service_YouTube_Channel $postBody, $optParams = array()) - { - $params = array('part' => $part, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_YouTube_Channel"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/CommentThreads.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/CommentThreads.php deleted file mode 100644 index 4b26bd52..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/CommentThreads.php +++ /dev/null @@ -1,121 +0,0 @@ - - * $youtubeService = new Google_Service_YouTube(...); - * $commentThreads = $youtubeService->commentThreads; - * - */ -class Google_Service_YouTube_Resource_CommentThreads extends Google_Service_Resource -{ - /** - * Creates a new top-level comment. To add a reply to an existing comment, use - * the comments.insert method instead. (commentThreads.insert) - * - * @param string $part The part parameter identifies the properties that the API - * response will include. Set the parameter value to snippet. The snippet part - * has a quota cost of 2 units. - * @param Google_Service_YouTube_CommentThread $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_YouTube_CommentThread - */ - public function insert($part, Google_Service_YouTube_CommentThread $postBody, $optParams = array()) - { - $params = array('part' => $part, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_YouTube_CommentThread"); - } - /** - * Returns a list of comment threads that match the API request parameters. - * (commentThreads.listCommentThreads) - * - * @param string $part The part parameter specifies a comma-separated list of - * one or more commentThread resource properties that the API response will - * include. - * @param array $optParams Optional parameters. - * - * @opt_param string allThreadsRelatedToChannelId The - * allThreadsRelatedToChannelId parameter instructs the API to return all - * comment threads associated with the specified channel. The response can - * include comments about the channel or about the channel's videos. - * @opt_param string channelId The channelId parameter instructs the API to - * return comment threads containing comments about the specified channel. (The - * response will not include comments left on videos that the channel uploaded.) - * @opt_param string id The id parameter specifies a comma-separated list of - * comment thread IDs for the resources that should be retrieved. - * @opt_param string maxResults The maxResults parameter specifies the maximum - * number of items that should be returned in the result set. - * - * Note: This parameter is not supported for use in conjunction with the id - * parameter. - * @opt_param string moderationStatus Set this parameter to limit the returned - * comment threads to a particular moderation state. - * - * Note: This parameter is not supported for use in conjunction with the id - * parameter. - * @opt_param string order The order parameter specifies the order in which the - * API response should list comment threads. Valid values are: - time - Comment - * threads are ordered by time. This is the default behavior. - relevance - - * Comment threads are ordered by relevance.Note: This parameter is not - * supported for use in conjunction with the id parameter. - * @opt_param string pageToken The pageToken parameter identifies a specific - * page in the result set that should be returned. In an API response, the - * nextPageToken property identifies the next page of the result that can be - * retrieved. - * - * Note: This parameter is not supported for use in conjunction with the id - * parameter. - * @opt_param string searchTerms The searchTerms parameter instructs the API to - * limit the API response to only contain comments that contain the specified - * search terms. - * - * Note: This parameter is not supported for use in conjunction with the id - * parameter. - * @opt_param string textFormat Set this parameter's value to html or plainText - * to instruct the API to return the comments left by users in html formatted or - * in plain text. - * @opt_param string videoId The videoId parameter instructs the API to return - * comment threads associated with the specified video ID. - * @return Google_Service_YouTube_CommentThreadListResponse - */ - public function listCommentThreads($part, $optParams = array()) - { - $params = array('part' => $part); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_YouTube_CommentThreadListResponse"); - } - /** - * Modifies the top-level comment in a comment thread. (commentThreads.update) - * - * @param string $part The part parameter specifies a comma-separated list of - * commentThread resource properties that the API response will include. You - * must at least include the snippet part in the parameter value since that part - * contains all of the properties that the API request can update. - * @param Google_Service_YouTube_CommentThread $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_YouTube_CommentThread - */ - public function update($part, Google_Service_YouTube_CommentThread $postBody, $optParams = array()) - { - $params = array('part' => $part, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_YouTube_CommentThread"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/Comments.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/Comments.php deleted file mode 100644 index 76967e18..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/Comments.php +++ /dev/null @@ -1,151 +0,0 @@ - - * $youtubeService = new Google_Service_YouTube(...); - * $comments = $youtubeService->comments; - * - */ -class Google_Service_YouTube_Resource_Comments extends Google_Service_Resource -{ - /** - * Deletes a comment. (comments.delete) - * - * @param string $id The id parameter specifies the comment ID for the resource - * that is being deleted. - * @param array $optParams Optional parameters. - */ - public function delete($id, $optParams = array()) - { - $params = array('id' => $id); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Creates a reply to an existing comment. Note: To create a top-level comment, - * use the commentThreads.insert method. (comments.insert) - * - * @param string $part The part parameter identifies the properties that the API - * response will include. Set the parameter value to snippet. The snippet part - * has a quota cost of 2 units. - * @param Google_Service_YouTube_Comment $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_YouTube_Comment - */ - public function insert($part, Google_Service_YouTube_Comment $postBody, $optParams = array()) - { - $params = array('part' => $part, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_YouTube_Comment"); - } - /** - * Returns a list of comments that match the API request parameters. - * (comments.listComments) - * - * @param string $part The part parameter specifies a comma-separated list of - * one or more comment resource properties that the API response will include. - * @param array $optParams Optional parameters. - * - * @opt_param string id The id parameter specifies a comma-separated list of - * comment IDs for the resources that are being retrieved. In a comment - * resource, the id property specifies the comment's ID. - * @opt_param string maxResults The maxResults parameter specifies the maximum - * number of items that should be returned in the result set. - * - * Note: This parameter is not supported for use in conjunction with the id - * parameter. - * @opt_param string pageToken The pageToken parameter identifies a specific - * page in the result set that should be returned. In an API response, the - * nextPageToken property identifies the next page of the result that can be - * retrieved. - * - * Note: This parameter is not supported for use in conjunction with the id - * parameter. - * @opt_param string parentId The parentId parameter specifies the ID of the - * comment for which replies should be retrieved. - * - * Note: YouTube currently supports replies only for top-level comments. - * However, replies to replies may be supported in the future. - * @opt_param string textFormat This parameter indicates whether the API should - * return comments formatted as HTML or as plain text. - * @return Google_Service_YouTube_CommentListResponse - */ - public function listComments($part, $optParams = array()) - { - $params = array('part' => $part); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_YouTube_CommentListResponse"); - } - /** - * Expresses the caller's opinion that one or more comments should be flagged as - * spam. (comments.markAsSpam) - * - * @param string $id The id parameter specifies a comma-separated list of IDs of - * comments that the caller believes should be classified as spam. - * @param array $optParams Optional parameters. - */ - public function markAsSpam($id, $optParams = array()) - { - $params = array('id' => $id); - $params = array_merge($params, $optParams); - return $this->call('markAsSpam', array($params)); - } - /** - * Sets the moderation status of one or more comments. The API request must be - * authorized by the owner of the channel or video associated with the comments. - * (comments.setModerationStatus) - * - * @param string $id The id parameter specifies a comma-separated list of IDs - * that identify the comments for which you are updating the moderation status. - * @param string $moderationStatus Identifies the new moderation status of the - * specified comments. - * @param array $optParams Optional parameters. - * - * @opt_param bool banAuthor The banAuthor parameter lets you indicate that you - * want to automatically reject any additional comments written by the comment's - * author. Set the parameter value to true to ban the author. - * - * Note: This parameter is only valid if the moderationStatus parameter is also - * set to rejected. - */ - public function setModerationStatus($id, $moderationStatus, $optParams = array()) - { - $params = array('id' => $id, 'moderationStatus' => $moderationStatus); - $params = array_merge($params, $optParams); - return $this->call('setModerationStatus', array($params)); - } - /** - * Modifies a comment. (comments.update) - * - * @param string $part The part parameter identifies the properties that the API - * response will include. You must at least include the snippet part in the - * parameter value since that part contains all of the properties that the API - * request can update. - * @param Google_Service_YouTube_Comment $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_YouTube_Comment - */ - public function update($part, Google_Service_YouTube_Comment $postBody, $optParams = array()) - { - $params = array('part' => $part, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_YouTube_Comment"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/GuideCategories.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/GuideCategories.php deleted file mode 100644 index 768431e6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/GuideCategories.php +++ /dev/null @@ -1,54 +0,0 @@ - - * $youtubeService = new Google_Service_YouTube(...); - * $guideCategories = $youtubeService->guideCategories; - * - */ -class Google_Service_YouTube_Resource_GuideCategories extends Google_Service_Resource -{ - /** - * Returns a list of categories that can be associated with YouTube channels. - * (guideCategories.listGuideCategories) - * - * @param string $part The part parameter specifies the guideCategory resource - * properties that the API response will include. Set the parameter value to - * snippet. - * @param array $optParams Optional parameters. - * - * @opt_param string hl The hl parameter specifies the language that will be - * used for text values in the API response. - * @opt_param string id The id parameter specifies a comma-separated list of the - * YouTube channel category ID(s) for the resource(s) that are being retrieved. - * In a guideCategory resource, the id property specifies the YouTube channel - * category ID. - * @opt_param string regionCode The regionCode parameter instructs the API to - * return the list of guide categories available in the specified country. The - * parameter value is an ISO 3166-1 alpha-2 country code. - * @return Google_Service_YouTube_GuideCategoryListResponse - */ - public function listGuideCategories($part, $optParams = array()) - { - $params = array('part' => $part); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_YouTube_GuideCategoryListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/I18nLanguages.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/I18nLanguages.php deleted file mode 100644 index 637d6f92..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/I18nLanguages.php +++ /dev/null @@ -1,47 +0,0 @@ - - * $youtubeService = new Google_Service_YouTube(...); - * $i18nLanguages = $youtubeService->i18nLanguages; - * - */ -class Google_Service_YouTube_Resource_I18nLanguages extends Google_Service_Resource -{ - /** - * Returns a list of application languages that the YouTube website supports. - * (i18nLanguages.listI18nLanguages) - * - * @param string $part The part parameter specifies the i18nLanguage resource - * properties that the API response will include. Set the parameter value to - * snippet. - * @param array $optParams Optional parameters. - * - * @opt_param string hl The hl parameter specifies the language that should be - * used for text values in the API response. - * @return Google_Service_YouTube_I18nLanguageListResponse - */ - public function listI18nLanguages($part, $optParams = array()) - { - $params = array('part' => $part); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_YouTube_I18nLanguageListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/I18nRegions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/I18nRegions.php deleted file mode 100644 index 77067796..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/I18nRegions.php +++ /dev/null @@ -1,47 +0,0 @@ - - * $youtubeService = new Google_Service_YouTube(...); - * $i18nRegions = $youtubeService->i18nRegions; - * - */ -class Google_Service_YouTube_Resource_I18nRegions extends Google_Service_Resource -{ - /** - * Returns a list of content regions that the YouTube website supports. - * (i18nRegions.listI18nRegions) - * - * @param string $part The part parameter specifies the i18nRegion resource - * properties that the API response will include. Set the parameter value to - * snippet. - * @param array $optParams Optional parameters. - * - * @opt_param string hl The hl parameter specifies the language that should be - * used for text values in the API response. - * @return Google_Service_YouTube_I18nRegionListResponse - */ - public function listI18nRegions($part, $optParams = array()) - { - $params = array('part' => $part); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_YouTube_I18nRegionListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/LiveBroadcasts.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/LiveBroadcasts.php deleted file mode 100644 index 568b9a27..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/LiveBroadcasts.php +++ /dev/null @@ -1,438 +0,0 @@ - - * $youtubeService = new Google_Service_YouTube(...); - * $liveBroadcasts = $youtubeService->liveBroadcasts; - * - */ -class Google_Service_YouTube_Resource_LiveBroadcasts extends Google_Service_Resource -{ - /** - * Binds a YouTube broadcast to a stream or removes an existing binding between - * a broadcast and a stream. A broadcast can only be bound to one video stream, - * though a video stream may be bound to more than one broadcast. - * (liveBroadcasts.bind) - * - * @param string $id The id parameter specifies the unique ID of the broadcast - * that is being bound to a video stream. - * @param string $part The part parameter specifies a comma-separated list of - * one or more liveBroadcast resource properties that the API response will - * include. The part names that you can include in the parameter value are id, - * snippet, contentDetails, and status. - * @param array $optParams Optional parameters. - * - * @opt_param string onBehalfOfContentOwner Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwner parameter indicates that the request's - * authorization credentials identify a YouTube CMS user who is acting on behalf - * of the content owner specified in the parameter value. This parameter is - * intended for YouTube content partners that own and manage many different - * YouTube channels. It allows content owners to authenticate once and get - * access to all their video and channel data, without having to provide - * authentication credentials for each individual channel. The CMS account that - * the user authenticates with must be linked to the specified YouTube content - * owner. - * @opt_param string onBehalfOfContentOwnerChannel This parameter can only be - * used in a properly authorized request. Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwnerChannel parameter specifies the YouTube channel ID - * of the channel to which a video is being added. This parameter is required - * when a request specifies a value for the onBehalfOfContentOwner parameter, - * and it can only be used in conjunction with that parameter. In addition, the - * request must be authorized using a CMS account that is linked to the content - * owner that the onBehalfOfContentOwner parameter specifies. Finally, the - * channel that the onBehalfOfContentOwnerChannel parameter value specifies must - * be linked to the content owner that the onBehalfOfContentOwner parameter - * specifies. - * - * This parameter is intended for YouTube content partners that own and manage - * many different YouTube channels. It allows content owners to authenticate - * once and perform actions on behalf of the channel specified in the parameter - * value, without having to provide authentication credentials for each separate - * channel. - * @opt_param string streamId The streamId parameter specifies the unique ID of - * the video stream that is being bound to a broadcast. If this parameter is - * omitted, the API will remove any existing binding between the broadcast and a - * video stream. - * @return Google_Service_YouTube_LiveBroadcast - */ - public function bind($id, $part, $optParams = array()) - { - $params = array('id' => $id, 'part' => $part); - $params = array_merge($params, $optParams); - return $this->call('bind', array($params), "Google_Service_YouTube_LiveBroadcast"); - } - /** - * Controls the settings for a slate that can be displayed in the broadcast - * stream. (liveBroadcasts.control) - * - * @param string $id The id parameter specifies the YouTube live broadcast ID - * that uniquely identifies the broadcast in which the slate is being updated. - * @param string $part The part parameter specifies a comma-separated list of - * one or more liveBroadcast resource properties that the API response will - * include. The part names that you can include in the parameter value are id, - * snippet, contentDetails, and status. - * @param array $optParams Optional parameters. - * - * @opt_param bool displaySlate The displaySlate parameter specifies whether the - * slate is being enabled or disabled. - * @opt_param string offsetTimeMs The offsetTimeMs parameter specifies a - * positive time offset when the specified slate change will occur. The value is - * measured in milliseconds from the beginning of the broadcast's monitor - * stream, which is the time that the testing phase for the broadcast began. - * Even though it is specified in milliseconds, the value is actually an - * approximation, and YouTube completes the requested action as closely as - * possible to that time. - * - * If you do not specify a value for this parameter, then YouTube performs the - * action as soon as possible. See the Getting started guide for more details. - * - * Important: You should only specify a value for this parameter if your - * broadcast stream is delayed. - * @opt_param string onBehalfOfContentOwner Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwner parameter indicates that the request's - * authorization credentials identify a YouTube CMS user who is acting on behalf - * of the content owner specified in the parameter value. This parameter is - * intended for YouTube content partners that own and manage many different - * YouTube channels. It allows content owners to authenticate once and get - * access to all their video and channel data, without having to provide - * authentication credentials for each individual channel. The CMS account that - * the user authenticates with must be linked to the specified YouTube content - * owner. - * @opt_param string onBehalfOfContentOwnerChannel This parameter can only be - * used in a properly authorized request. Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwnerChannel parameter specifies the YouTube channel ID - * of the channel to which a video is being added. This parameter is required - * when a request specifies a value for the onBehalfOfContentOwner parameter, - * and it can only be used in conjunction with that parameter. In addition, the - * request must be authorized using a CMS account that is linked to the content - * owner that the onBehalfOfContentOwner parameter specifies. Finally, the - * channel that the onBehalfOfContentOwnerChannel parameter value specifies must - * be linked to the content owner that the onBehalfOfContentOwner parameter - * specifies. - * - * This parameter is intended for YouTube content partners that own and manage - * many different YouTube channels. It allows content owners to authenticate - * once and perform actions on behalf of the channel specified in the parameter - * value, without having to provide authentication credentials for each separate - * channel. - * @opt_param string walltime The walltime parameter specifies the wall clock - * time at which the specified slate change will occur. The value is specified - * in ISO 8601 (YYYY-MM-DDThh:mm:ss.sssZ) format. - * @return Google_Service_YouTube_LiveBroadcast - */ - public function control($id, $part, $optParams = array()) - { - $params = array('id' => $id, 'part' => $part); - $params = array_merge($params, $optParams); - return $this->call('control', array($params), "Google_Service_YouTube_LiveBroadcast"); - } - /** - * Deletes a broadcast. (liveBroadcasts.delete) - * - * @param string $id The id parameter specifies the YouTube live broadcast ID - * for the resource that is being deleted. - * @param array $optParams Optional parameters. - * - * @opt_param string onBehalfOfContentOwner Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwner parameter indicates that the request's - * authorization credentials identify a YouTube CMS user who is acting on behalf - * of the content owner specified in the parameter value. This parameter is - * intended for YouTube content partners that own and manage many different - * YouTube channels. It allows content owners to authenticate once and get - * access to all their video and channel data, without having to provide - * authentication credentials for each individual channel. The CMS account that - * the user authenticates with must be linked to the specified YouTube content - * owner. - * @opt_param string onBehalfOfContentOwnerChannel This parameter can only be - * used in a properly authorized request. Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwnerChannel parameter specifies the YouTube channel ID - * of the channel to which a video is being added. This parameter is required - * when a request specifies a value for the onBehalfOfContentOwner parameter, - * and it can only be used in conjunction with that parameter. In addition, the - * request must be authorized using a CMS account that is linked to the content - * owner that the onBehalfOfContentOwner parameter specifies. Finally, the - * channel that the onBehalfOfContentOwnerChannel parameter value specifies must - * be linked to the content owner that the onBehalfOfContentOwner parameter - * specifies. - * - * This parameter is intended for YouTube content partners that own and manage - * many different YouTube channels. It allows content owners to authenticate - * once and perform actions on behalf of the channel specified in the parameter - * value, without having to provide authentication credentials for each separate - * channel. - */ - public function delete($id, $optParams = array()) - { - $params = array('id' => $id); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Creates a broadcast. (liveBroadcasts.insert) - * - * @param string $part The part parameter serves two purposes in this operation. - * It identifies the properties that the write operation will set as well as the - * properties that the API response will include. - * - * The part properties that you can include in the parameter value are id, - * snippet, contentDetails, and status. - * @param Google_Service_YouTube_LiveBroadcast $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string onBehalfOfContentOwner Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwner parameter indicates that the request's - * authorization credentials identify a YouTube CMS user who is acting on behalf - * of the content owner specified in the parameter value. This parameter is - * intended for YouTube content partners that own and manage many different - * YouTube channels. It allows content owners to authenticate once and get - * access to all their video and channel data, without having to provide - * authentication credentials for each individual channel. The CMS account that - * the user authenticates with must be linked to the specified YouTube content - * owner. - * @opt_param string onBehalfOfContentOwnerChannel This parameter can only be - * used in a properly authorized request. Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwnerChannel parameter specifies the YouTube channel ID - * of the channel to which a video is being added. This parameter is required - * when a request specifies a value for the onBehalfOfContentOwner parameter, - * and it can only be used in conjunction with that parameter. In addition, the - * request must be authorized using a CMS account that is linked to the content - * owner that the onBehalfOfContentOwner parameter specifies. Finally, the - * channel that the onBehalfOfContentOwnerChannel parameter value specifies must - * be linked to the content owner that the onBehalfOfContentOwner parameter - * specifies. - * - * This parameter is intended for YouTube content partners that own and manage - * many different YouTube channels. It allows content owners to authenticate - * once and perform actions on behalf of the channel specified in the parameter - * value, without having to provide authentication credentials for each separate - * channel. - * @return Google_Service_YouTube_LiveBroadcast - */ - public function insert($part, Google_Service_YouTube_LiveBroadcast $postBody, $optParams = array()) - { - $params = array('part' => $part, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_YouTube_LiveBroadcast"); - } - /** - * Returns a list of YouTube broadcasts that match the API request parameters. - * (liveBroadcasts.listLiveBroadcasts) - * - * @param string $part The part parameter specifies a comma-separated list of - * one or more liveBroadcast resource properties that the API response will - * include. The part names that you can include in the parameter value are id, - * snippet, contentDetails, and status. - * @param array $optParams Optional parameters. - * - * @opt_param string broadcastStatus The broadcastStatus parameter filters the - * API response to only include broadcasts with the specified status. - * @opt_param string broadcastType The broadcastType parameter filters the API - * response to only include broadcasts with the specified type. This is only - * compatible with the mine filter for now. - * @opt_param string id The id parameter specifies a comma-separated list of - * YouTube broadcast IDs that identify the broadcasts being retrieved. In a - * liveBroadcast resource, the id property specifies the broadcast's ID. - * @opt_param string maxResults The maxResults parameter specifies the maximum - * number of items that should be returned in the result set. - * @opt_param bool mine The mine parameter can be used to instruct the API to - * only return broadcasts owned by the authenticated user. Set the parameter - * value to true to only retrieve your own broadcasts. - * @opt_param string onBehalfOfContentOwner Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwner parameter indicates that the request's - * authorization credentials identify a YouTube CMS user who is acting on behalf - * of the content owner specified in the parameter value. This parameter is - * intended for YouTube content partners that own and manage many different - * YouTube channels. It allows content owners to authenticate once and get - * access to all their video and channel data, without having to provide - * authentication credentials for each individual channel. The CMS account that - * the user authenticates with must be linked to the specified YouTube content - * owner. - * @opt_param string onBehalfOfContentOwnerChannel This parameter can only be - * used in a properly authorized request. Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwnerChannel parameter specifies the YouTube channel ID - * of the channel to which a video is being added. This parameter is required - * when a request specifies a value for the onBehalfOfContentOwner parameter, - * and it can only be used in conjunction with that parameter. In addition, the - * request must be authorized using a CMS account that is linked to the content - * owner that the onBehalfOfContentOwner parameter specifies. Finally, the - * channel that the onBehalfOfContentOwnerChannel parameter value specifies must - * be linked to the content owner that the onBehalfOfContentOwner parameter - * specifies. - * - * This parameter is intended for YouTube content partners that own and manage - * many different YouTube channels. It allows content owners to authenticate - * once and perform actions on behalf of the channel specified in the parameter - * value, without having to provide authentication credentials for each separate - * channel. - * @opt_param string pageToken The pageToken parameter identifies a specific - * page in the result set that should be returned. In an API response, the - * nextPageToken and prevPageToken properties identify other pages that could be - * retrieved. - * @return Google_Service_YouTube_LiveBroadcastListResponse - */ - public function listLiveBroadcasts($part, $optParams = array()) - { - $params = array('part' => $part); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_YouTube_LiveBroadcastListResponse"); - } - /** - * Changes the status of a YouTube live broadcast and initiates any processes - * associated with the new status. For example, when you transition a - * broadcast's status to testing, YouTube starts to transmit video to that - * broadcast's monitor stream. Before calling this method, you should confirm - * that the value of the status.streamStatus property for the stream bound to - * your broadcast is active. (liveBroadcasts.transition) - * - * @param string $broadcastStatus The broadcastStatus parameter identifies the - * state to which the broadcast is changing. Note that to transition a broadcast - * to either the testing or live state, the status.streamStatus must be active - * for the stream that the broadcast is bound to. - * @param string $id The id parameter specifies the unique ID of the broadcast - * that is transitioning to another status. - * @param string $part The part parameter specifies a comma-separated list of - * one or more liveBroadcast resource properties that the API response will - * include. The part names that you can include in the parameter value are id, - * snippet, contentDetails, and status. - * @param array $optParams Optional parameters. - * - * @opt_param string onBehalfOfContentOwner Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwner parameter indicates that the request's - * authorization credentials identify a YouTube CMS user who is acting on behalf - * of the content owner specified in the parameter value. This parameter is - * intended for YouTube content partners that own and manage many different - * YouTube channels. It allows content owners to authenticate once and get - * access to all their video and channel data, without having to provide - * authentication credentials for each individual channel. The CMS account that - * the user authenticates with must be linked to the specified YouTube content - * owner. - * @opt_param string onBehalfOfContentOwnerChannel This parameter can only be - * used in a properly authorized request. Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwnerChannel parameter specifies the YouTube channel ID - * of the channel to which a video is being added. This parameter is required - * when a request specifies a value for the onBehalfOfContentOwner parameter, - * and it can only be used in conjunction with that parameter. In addition, the - * request must be authorized using a CMS account that is linked to the content - * owner that the onBehalfOfContentOwner parameter specifies. Finally, the - * channel that the onBehalfOfContentOwnerChannel parameter value specifies must - * be linked to the content owner that the onBehalfOfContentOwner parameter - * specifies. - * - * This parameter is intended for YouTube content partners that own and manage - * many different YouTube channels. It allows content owners to authenticate - * once and perform actions on behalf of the channel specified in the parameter - * value, without having to provide authentication credentials for each separate - * channel. - * @return Google_Service_YouTube_LiveBroadcast - */ - public function transition($broadcastStatus, $id, $part, $optParams = array()) - { - $params = array('broadcastStatus' => $broadcastStatus, 'id' => $id, 'part' => $part); - $params = array_merge($params, $optParams); - return $this->call('transition', array($params), "Google_Service_YouTube_LiveBroadcast"); - } - /** - * Updates a broadcast. For example, you could modify the broadcast settings - * defined in the liveBroadcast resource's contentDetails object. - * (liveBroadcasts.update) - * - * @param string $part The part parameter serves two purposes in this operation. - * It identifies the properties that the write operation will set as well as the - * properties that the API response will include. - * - * The part properties that you can include in the parameter value are id, - * snippet, contentDetails, and status. - * - * Note that this method will override the existing values for all of the - * mutable properties that are contained in any parts that the parameter value - * specifies. For example, a broadcast's privacy status is defined in the status - * part. As such, if your request is updating a private or unlisted broadcast, - * and the request's part parameter value includes the status part, the - * broadcast's privacy setting will be updated to whatever value the request - * body specifies. If the request body does not specify a value, the existing - * privacy setting will be removed and the broadcast will revert to the default - * privacy setting. - * @param Google_Service_YouTube_LiveBroadcast $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string onBehalfOfContentOwner Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwner parameter indicates that the request's - * authorization credentials identify a YouTube CMS user who is acting on behalf - * of the content owner specified in the parameter value. This parameter is - * intended for YouTube content partners that own and manage many different - * YouTube channels. It allows content owners to authenticate once and get - * access to all their video and channel data, without having to provide - * authentication credentials for each individual channel. The CMS account that - * the user authenticates with must be linked to the specified YouTube content - * owner. - * @opt_param string onBehalfOfContentOwnerChannel This parameter can only be - * used in a properly authorized request. Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwnerChannel parameter specifies the YouTube channel ID - * of the channel to which a video is being added. This parameter is required - * when a request specifies a value for the onBehalfOfContentOwner parameter, - * and it can only be used in conjunction with that parameter. In addition, the - * request must be authorized using a CMS account that is linked to the content - * owner that the onBehalfOfContentOwner parameter specifies. Finally, the - * channel that the onBehalfOfContentOwnerChannel parameter value specifies must - * be linked to the content owner that the onBehalfOfContentOwner parameter - * specifies. - * - * This parameter is intended for YouTube content partners that own and manage - * many different YouTube channels. It allows content owners to authenticate - * once and perform actions on behalf of the channel specified in the parameter - * value, without having to provide authentication credentials for each separate - * channel. - * @return Google_Service_YouTube_LiveBroadcast - */ - public function update($part, Google_Service_YouTube_LiveBroadcast $postBody, $optParams = array()) - { - $params = array('part' => $part, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_YouTube_LiveBroadcast"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/LiveChatBans.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/LiveChatBans.php deleted file mode 100644 index af57e60f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/LiveChatBans.php +++ /dev/null @@ -1,57 +0,0 @@ - - * $youtubeService = new Google_Service_YouTube(...); - * $liveChatBans = $youtubeService->liveChatBans; - * - */ -class Google_Service_YouTube_Resource_LiveChatBans extends Google_Service_Resource -{ - /** - * Removes a chat ban. (liveChatBans.delete) - * - * @param string $id The id parameter identifies the chat ban to remove. The - * value uniquely identifies both the ban and the chat. - * @param array $optParams Optional parameters. - */ - public function delete($id, $optParams = array()) - { - $params = array('id' => $id); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Adds a new ban to the chat. (liveChatBans.insert) - * - * @param string $part The part parameter serves two purposes in this operation. - * It identifies the properties that the write operation will set as well as the - * properties that the API response returns. Set the parameter value to snippet. - * @param Google_Service_YouTube_LiveChatBan $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_YouTube_LiveChatBan - */ - public function insert($part, Google_Service_YouTube_LiveChatBan $postBody, $optParams = array()) - { - $params = array('part' => $part, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_YouTube_LiveChatBan"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/LiveChatMessages.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/LiveChatMessages.php deleted file mode 100644 index 6106a6ff..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/LiveChatMessages.php +++ /dev/null @@ -1,93 +0,0 @@ - - * $youtubeService = new Google_Service_YouTube(...); - * $liveChatMessages = $youtubeService->liveChatMessages; - * - */ -class Google_Service_YouTube_Resource_LiveChatMessages extends Google_Service_Resource -{ - /** - * Deletes a chat message. (liveChatMessages.delete) - * - * @param string $id The id parameter specifies the YouTube chat message ID of - * the resource that is being deleted. - * @param array $optParams Optional parameters. - */ - public function delete($id, $optParams = array()) - { - $params = array('id' => $id); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Adds a message to a live chat. (liveChatMessages.insert) - * - * @param string $part The part parameter serves two purposes. It identifies the - * properties that the write operation will set as well as the properties that - * the API response will include. Set the parameter value to snippet. - * @param Google_Service_YouTube_LiveChatMessage $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_YouTube_LiveChatMessage - */ - public function insert($part, Google_Service_YouTube_LiveChatMessage $postBody, $optParams = array()) - { - $params = array('part' => $part, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_YouTube_LiveChatMessage"); - } - /** - * Lists live chat messages for a specific chat. - * (liveChatMessages.listLiveChatMessages) - * - * @param string $liveChatId The liveChatId parameter specifies the ID of the - * chat whose messages will be returned. - * @param string $part The part parameter specifies the liveChatComment resource - * parts that the API response will include. Supported values are id and - * snippet. - * @param array $optParams Optional parameters. - * - * @opt_param string hl The hl parameter instructs the API to retrieve localized - * resource metadata for a specific application language that the YouTube - * website supports. The parameter value must be a language code included in the - * list returned by the i18nLanguages.list method. - * - * If localized resource details are available in that language, the resource's - * snippet.localized object will contain the localized values. However, if - * localized details are not available, the snippet.localized object will - * contain resource details in the resource's default language. - * @opt_param string maxResults The maxResults parameter specifies the maximum - * number of messages that should be returned in the result set. - * @opt_param string pageToken The pageToken parameter identifies a specific - * page in the result set that should be returned. In an API response, the - * nextPageToken property identify other pages that could be retrieved. - * @opt_param string profileImageSize The profileImageSize parameter specifies - * the size of the user profile pictures that should be returned in the result - * set. Default: 88. - * @return Google_Service_YouTube_LiveChatMessageListResponse - */ - public function listLiveChatMessages($liveChatId, $part, $optParams = array()) - { - $params = array('liveChatId' => $liveChatId, 'part' => $part); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_YouTube_LiveChatMessageListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/LiveChatModerators.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/LiveChatModerators.php deleted file mode 100644 index 89875ad0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/LiveChatModerators.php +++ /dev/null @@ -1,81 +0,0 @@ - - * $youtubeService = new Google_Service_YouTube(...); - * $liveChatModerators = $youtubeService->liveChatModerators; - * - */ -class Google_Service_YouTube_Resource_LiveChatModerators extends Google_Service_Resource -{ - /** - * Removes a chat moderator. (liveChatModerators.delete) - * - * @param string $id The id parameter identifies the chat moderator to remove. - * The value uniquely identifies both the moderator and the chat. - * @param array $optParams Optional parameters. - */ - public function delete($id, $optParams = array()) - { - $params = array('id' => $id); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Adds a new moderator for the chat. (liveChatModerators.insert) - * - * @param string $part The part parameter serves two purposes in this operation. - * It identifies the properties that the write operation will set as well as the - * properties that the API response returns. Set the parameter value to snippet. - * @param Google_Service_YouTube_LiveChatModerator $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_YouTube_LiveChatModerator - */ - public function insert($part, Google_Service_YouTube_LiveChatModerator $postBody, $optParams = array()) - { - $params = array('part' => $part, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_YouTube_LiveChatModerator"); - } - /** - * Lists moderators for a live chat. (liveChatModerators.listLiveChatModerators) - * - * @param string $liveChatId The liveChatId parameter specifies the YouTube live - * chat for which the API should return moderators. - * @param string $part The part parameter specifies the liveChatModerator - * resource parts that the API response will include. Supported values are id - * and snippet. - * @param array $optParams Optional parameters. - * - * @opt_param string maxResults The maxResults parameter specifies the maximum - * number of items that should be returned in the result set. - * @opt_param string pageToken The pageToken parameter identifies a specific - * page in the result set that should be returned. In an API response, the - * nextPageToken and prevPageToken properties identify other pages that could be - * retrieved. - * @return Google_Service_YouTube_LiveChatModeratorListResponse - */ - public function listLiveChatModerators($liveChatId, $part, $optParams = array()) - { - $params = array('liveChatId' => $liveChatId, 'part' => $part); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_YouTube_LiveChatModeratorListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/LiveStreams.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/LiveStreams.php deleted file mode 100644 index 0a40129f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/LiveStreams.php +++ /dev/null @@ -1,244 +0,0 @@ - - * $youtubeService = new Google_Service_YouTube(...); - * $liveStreams = $youtubeService->liveStreams; - * - */ -class Google_Service_YouTube_Resource_LiveStreams extends Google_Service_Resource -{ - /** - * Deletes a video stream. (liveStreams.delete) - * - * @param string $id The id parameter specifies the YouTube live stream ID for - * the resource that is being deleted. - * @param array $optParams Optional parameters. - * - * @opt_param string onBehalfOfContentOwner Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwner parameter indicates that the request's - * authorization credentials identify a YouTube CMS user who is acting on behalf - * of the content owner specified in the parameter value. This parameter is - * intended for YouTube content partners that own and manage many different - * YouTube channels. It allows content owners to authenticate once and get - * access to all their video and channel data, without having to provide - * authentication credentials for each individual channel. The CMS account that - * the user authenticates with must be linked to the specified YouTube content - * owner. - * @opt_param string onBehalfOfContentOwnerChannel This parameter can only be - * used in a properly authorized request. Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwnerChannel parameter specifies the YouTube channel ID - * of the channel to which a video is being added. This parameter is required - * when a request specifies a value for the onBehalfOfContentOwner parameter, - * and it can only be used in conjunction with that parameter. In addition, the - * request must be authorized using a CMS account that is linked to the content - * owner that the onBehalfOfContentOwner parameter specifies. Finally, the - * channel that the onBehalfOfContentOwnerChannel parameter value specifies must - * be linked to the content owner that the onBehalfOfContentOwner parameter - * specifies. - * - * This parameter is intended for YouTube content partners that own and manage - * many different YouTube channels. It allows content owners to authenticate - * once and perform actions on behalf of the channel specified in the parameter - * value, without having to provide authentication credentials for each separate - * channel. - */ - public function delete($id, $optParams = array()) - { - $params = array('id' => $id); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Creates a video stream. The stream enables you to send your video to YouTube, - * which can then broadcast the video to your audience. (liveStreams.insert) - * - * @param string $part The part parameter serves two purposes in this operation. - * It identifies the properties that the write operation will set as well as the - * properties that the API response will include. - * - * The part properties that you can include in the parameter value are id, - * snippet, cdn, and status. - * @param Google_Service_YouTube_LiveStream $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string onBehalfOfContentOwner Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwner parameter indicates that the request's - * authorization credentials identify a YouTube CMS user who is acting on behalf - * of the content owner specified in the parameter value. This parameter is - * intended for YouTube content partners that own and manage many different - * YouTube channels. It allows content owners to authenticate once and get - * access to all their video and channel data, without having to provide - * authentication credentials for each individual channel. The CMS account that - * the user authenticates with must be linked to the specified YouTube content - * owner. - * @opt_param string onBehalfOfContentOwnerChannel This parameter can only be - * used in a properly authorized request. Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwnerChannel parameter specifies the YouTube channel ID - * of the channel to which a video is being added. This parameter is required - * when a request specifies a value for the onBehalfOfContentOwner parameter, - * and it can only be used in conjunction with that parameter. In addition, the - * request must be authorized using a CMS account that is linked to the content - * owner that the onBehalfOfContentOwner parameter specifies. Finally, the - * channel that the onBehalfOfContentOwnerChannel parameter value specifies must - * be linked to the content owner that the onBehalfOfContentOwner parameter - * specifies. - * - * This parameter is intended for YouTube content partners that own and manage - * many different YouTube channels. It allows content owners to authenticate - * once and perform actions on behalf of the channel specified in the parameter - * value, without having to provide authentication credentials for each separate - * channel. - * @return Google_Service_YouTube_LiveStream - */ - public function insert($part, Google_Service_YouTube_LiveStream $postBody, $optParams = array()) - { - $params = array('part' => $part, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_YouTube_LiveStream"); - } - /** - * Returns a list of video streams that match the API request parameters. - * (liveStreams.listLiveStreams) - * - * @param string $part The part parameter specifies a comma-separated list of - * one or more liveStream resource properties that the API response will - * include. The part names that you can include in the parameter value are id, - * snippet, cdn, and status. - * @param array $optParams Optional parameters. - * - * @opt_param string id The id parameter specifies a comma-separated list of - * YouTube stream IDs that identify the streams being retrieved. In a liveStream - * resource, the id property specifies the stream's ID. - * @opt_param string maxResults The maxResults parameter specifies the maximum - * number of items that should be returned in the result set. - * @opt_param bool mine The mine parameter can be used to instruct the API to - * only return streams owned by the authenticated user. Set the parameter value - * to true to only retrieve your own streams. - * @opt_param string onBehalfOfContentOwner Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwner parameter indicates that the request's - * authorization credentials identify a YouTube CMS user who is acting on behalf - * of the content owner specified in the parameter value. This parameter is - * intended for YouTube content partners that own and manage many different - * YouTube channels. It allows content owners to authenticate once and get - * access to all their video and channel data, without having to provide - * authentication credentials for each individual channel. The CMS account that - * the user authenticates with must be linked to the specified YouTube content - * owner. - * @opt_param string onBehalfOfContentOwnerChannel This parameter can only be - * used in a properly authorized request. Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwnerChannel parameter specifies the YouTube channel ID - * of the channel to which a video is being added. This parameter is required - * when a request specifies a value for the onBehalfOfContentOwner parameter, - * and it can only be used in conjunction with that parameter. In addition, the - * request must be authorized using a CMS account that is linked to the content - * owner that the onBehalfOfContentOwner parameter specifies. Finally, the - * channel that the onBehalfOfContentOwnerChannel parameter value specifies must - * be linked to the content owner that the onBehalfOfContentOwner parameter - * specifies. - * - * This parameter is intended for YouTube content partners that own and manage - * many different YouTube channels. It allows content owners to authenticate - * once and perform actions on behalf of the channel specified in the parameter - * value, without having to provide authentication credentials for each separate - * channel. - * @opt_param string pageToken The pageToken parameter identifies a specific - * page in the result set that should be returned. In an API response, the - * nextPageToken and prevPageToken properties identify other pages that could be - * retrieved. - * @return Google_Service_YouTube_LiveStreamListResponse - */ - public function listLiveStreams($part, $optParams = array()) - { - $params = array('part' => $part); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_YouTube_LiveStreamListResponse"); - } - /** - * Updates a video stream. If the properties that you want to change cannot be - * updated, then you need to create a new stream with the proper settings. - * (liveStreams.update) - * - * @param string $part The part parameter serves two purposes in this operation. - * It identifies the properties that the write operation will set as well as the - * properties that the API response will include. - * - * The part properties that you can include in the parameter value are id, - * snippet, cdn, and status. - * - * Note that this method will override the existing values for all of the - * mutable properties that are contained in any parts that the parameter value - * specifies. If the request body does not specify a value for a mutable - * property, the existing value for that property will be removed. - * @param Google_Service_YouTube_LiveStream $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string onBehalfOfContentOwner Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwner parameter indicates that the request's - * authorization credentials identify a YouTube CMS user who is acting on behalf - * of the content owner specified in the parameter value. This parameter is - * intended for YouTube content partners that own and manage many different - * YouTube channels. It allows content owners to authenticate once and get - * access to all their video and channel data, without having to provide - * authentication credentials for each individual channel. The CMS account that - * the user authenticates with must be linked to the specified YouTube content - * owner. - * @opt_param string onBehalfOfContentOwnerChannel This parameter can only be - * used in a properly authorized request. Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwnerChannel parameter specifies the YouTube channel ID - * of the channel to which a video is being added. This parameter is required - * when a request specifies a value for the onBehalfOfContentOwner parameter, - * and it can only be used in conjunction with that parameter. In addition, the - * request must be authorized using a CMS account that is linked to the content - * owner that the onBehalfOfContentOwner parameter specifies. Finally, the - * channel that the onBehalfOfContentOwnerChannel parameter value specifies must - * be linked to the content owner that the onBehalfOfContentOwner parameter - * specifies. - * - * This parameter is intended for YouTube content partners that own and manage - * many different YouTube channels. It allows content owners to authenticate - * once and perform actions on behalf of the channel specified in the parameter - * value, without having to provide authentication credentials for each separate - * channel. - * @return Google_Service_YouTube_LiveStream - */ - public function update($part, Google_Service_YouTube_LiveStream $postBody, $optParams = array()) - { - $params = array('part' => $part, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_YouTube_LiveStream"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/Members.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/Members.php deleted file mode 100644 index db02a0ed..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/Members.php +++ /dev/null @@ -1,60 +0,0 @@ - - * $youtubeService = new Google_Service_YouTube(...); - * $members = $youtubeService->members; - * - */ -class Google_Service_YouTube_Resource_Members extends Google_Service_Resource -{ - /** - * Lists members for a channel. (members.listMembers) - * - * @param string $part The part parameter specifies the member resource parts - * that the API response will include. Set the parameter value to snippet. - * @param array $optParams Optional parameters. - * - * @opt_param string filterByMemberChannelId The filterByMemberChannelId - * parameter represents a comma separated list of channel IDs. Only data about - * members that are part of this list will be included in the response. It can - * be used to efficiently check whether specific users are entitled to perks - * offered via third parties. - * @opt_param string hasAccessToLevel The hasAccessToLevel parameter specifies, - * when set, the ID of a pricing level that members from the results set should - * have access to. When not set, all members will be considered, regardless of - * their active pricing level. - * @opt_param string maxResults The maxResults parameter specifies the maximum - * number of items that should be returned in the result set. - * @opt_param string mode The mode parameter specifies which channel members to - * return. - * @opt_param string pageToken The pageToken parameter identifies a specific - * page in the result set that should be returned. In an API response, the - * nextPageToken and prevPageToken properties identify other pages that could be - * retrieved. - * @return Google_Service_YouTube_MemberListResponse - */ - public function listMembers($part, $optParams = array()) - { - $params = array('part' => $part); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_YouTube_MemberListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/MembershipsLevels.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/MembershipsLevels.php deleted file mode 100644 index fd8b72b5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/MembershipsLevels.php +++ /dev/null @@ -1,43 +0,0 @@ - - * $youtubeService = new Google_Service_YouTube(...); - * $membershipsLevels = $youtubeService->membershipsLevels; - * - */ -class Google_Service_YouTube_Resource_MembershipsLevels extends Google_Service_Resource -{ - /** - * Lists pricing levels for a channel. (membershipsLevels.listMembershipsLevels) - * - * @param string $part The part parameter specifies the membershipsLevel - * resource parts that the API response will include. Supported values are id - * and snippet. - * @param array $optParams Optional parameters. - * @return Google_Service_YouTube_MembershipsLevelListResponse - */ - public function listMembershipsLevels($part, $optParams = array()) - { - $params = array('part' => $part); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_YouTube_MembershipsLevelListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/PlaylistItems.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/PlaylistItems.php deleted file mode 100644 index cfeee73d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/PlaylistItems.php +++ /dev/null @@ -1,178 +0,0 @@ - - * $youtubeService = new Google_Service_YouTube(...); - * $playlistItems = $youtubeService->playlistItems; - * - */ -class Google_Service_YouTube_Resource_PlaylistItems extends Google_Service_Resource -{ - /** - * Deletes a playlist item. (playlistItems.delete) - * - * @param string $id The id parameter specifies the YouTube playlist item ID for - * the playlist item that is being deleted. In a playlistItem resource, the id - * property specifies the playlist item's ID. - * @param array $optParams Optional parameters. - * - * @opt_param string onBehalfOfContentOwner Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwner parameter indicates that the request's - * authorization credentials identify a YouTube CMS user who is acting on behalf - * of the content owner specified in the parameter value. This parameter is - * intended for YouTube content partners that own and manage many different - * YouTube channels. It allows content owners to authenticate once and get - * access to all their video and channel data, without having to provide - * authentication credentials for each individual channel. The CMS account that - * the user authenticates with must be linked to the specified YouTube content - * owner. - */ - public function delete($id, $optParams = array()) - { - $params = array('id' => $id); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Adds a resource to a playlist. (playlistItems.insert) - * - * @param string $part The part parameter serves two purposes in this operation. - * It identifies the properties that the write operation will set as well as the - * properties that the API response will include. - * @param Google_Service_YouTube_PlaylistItem $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string onBehalfOfContentOwner Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwner parameter indicates that the request's - * authorization credentials identify a YouTube CMS user who is acting on behalf - * of the content owner specified in the parameter value. This parameter is - * intended for YouTube content partners that own and manage many different - * YouTube channels. It allows content owners to authenticate once and get - * access to all their video and channel data, without having to provide - * authentication credentials for each individual channel. The CMS account that - * the user authenticates with must be linked to the specified YouTube content - * owner. - * @return Google_Service_YouTube_PlaylistItem - */ - public function insert($part, Google_Service_YouTube_PlaylistItem $postBody, $optParams = array()) - { - $params = array('part' => $part, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_YouTube_PlaylistItem"); - } - /** - * Returns a collection of playlist items that match the API request parameters. - * You can retrieve all of the playlist items in a specified playlist or - * retrieve one or more playlist items by their unique IDs. - * (playlistItems.listPlaylistItems) - * - * @param string $part The part parameter specifies a comma-separated list of - * one or more playlistItem resource properties that the API response will - * include. - * - * If the parameter identifies a property that contains child properties, the - * child properties will be included in the response. For example, in a - * playlistItem resource, the snippet property contains numerous fields, - * including the title, description, position, and resourceId properties. As - * such, if you set part=snippet, the API response will contain all of those - * properties. - * @param array $optParams Optional parameters. - * - * @opt_param string id The id parameter specifies a comma-separated list of one - * or more unique playlist item IDs. - * @opt_param string maxResults The maxResults parameter specifies the maximum - * number of items that should be returned in the result set. - * @opt_param string onBehalfOfContentOwner Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwner parameter indicates that the request's - * authorization credentials identify a YouTube CMS user who is acting on behalf - * of the content owner specified in the parameter value. This parameter is - * intended for YouTube content partners that own and manage many different - * YouTube channels. It allows content owners to authenticate once and get - * access to all their video and channel data, without having to provide - * authentication credentials for each individual channel. The CMS account that - * the user authenticates with must be linked to the specified YouTube content - * owner. - * @opt_param string pageToken The pageToken parameter identifies a specific - * page in the result set that should be returned. In an API response, the - * nextPageToken and prevPageToken properties identify other pages that could be - * retrieved. - * @opt_param string playlistId The playlistId parameter specifies the unique ID - * of the playlist for which you want to retrieve playlist items. Note that even - * though this is an optional parameter, every request to retrieve playlist - * items must specify a value for either the id parameter or the playlistId - * parameter. - * @opt_param string videoId The videoId parameter specifies that the request - * should return only the playlist items that contain the specified video. - * @return Google_Service_YouTube_PlaylistItemListResponse - */ - public function listPlaylistItems($part, $optParams = array()) - { - $params = array('part' => $part); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_YouTube_PlaylistItemListResponse"); - } - /** - * Modifies a playlist item. For example, you could update the item's position - * in the playlist. (playlistItems.update) - * - * @param string $part The part parameter serves two purposes in this operation. - * It identifies the properties that the write operation will set as well as the - * properties that the API response will include. - * - * Note that this method will override the existing values for all of the - * mutable properties that are contained in any parts that the parameter value - * specifies. For example, a playlist item can specify a start time and end - * time, which identify the times portion of the video that should play when - * users watch the video in the playlist. If your request is updating a playlist - * item that sets these values, and the request's part parameter value includes - * the contentDetails part, the playlist item's start and end times will be - * updated to whatever value the request body specifies. If the request body - * does not specify values, the existing start and end times will be removed and - * replaced with the default settings. - * @param Google_Service_YouTube_PlaylistItem $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string onBehalfOfContentOwner Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwner parameter indicates that the request's - * authorization credentials identify a YouTube CMS user who is acting on behalf - * of the content owner specified in the parameter value. This parameter is - * intended for YouTube content partners that own and manage many different - * YouTube channels. It allows content owners to authenticate once and get - * access to all their video and channel data, without having to provide - * authentication credentials for each individual channel. The CMS account that - * the user authenticates with must be linked to the specified YouTube content - * owner. - * @return Google_Service_YouTube_PlaylistItem - */ - public function update($part, Google_Service_YouTube_PlaylistItem $postBody, $optParams = array()) - { - $params = array('part' => $part, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_YouTube_PlaylistItem"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/Playlists.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/Playlists.php deleted file mode 100644 index 0a844242..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/Playlists.php +++ /dev/null @@ -1,211 +0,0 @@ - - * $youtubeService = new Google_Service_YouTube(...); - * $playlists = $youtubeService->playlists; - * - */ -class Google_Service_YouTube_Resource_Playlists extends Google_Service_Resource -{ - /** - * Deletes a playlist. (playlists.delete) - * - * @param string $id The id parameter specifies the YouTube playlist ID for the - * playlist that is being deleted. In a playlist resource, the id property - * specifies the playlist's ID. - * @param array $optParams Optional parameters. - * - * @opt_param string onBehalfOfContentOwner Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwner parameter indicates that the request's - * authorization credentials identify a YouTube CMS user who is acting on behalf - * of the content owner specified in the parameter value. This parameter is - * intended for YouTube content partners that own and manage many different - * YouTube channels. It allows content owners to authenticate once and get - * access to all their video and channel data, without having to provide - * authentication credentials for each individual channel. The CMS account that - * the user authenticates with must be linked to the specified YouTube content - * owner. - */ - public function delete($id, $optParams = array()) - { - $params = array('id' => $id); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Creates a playlist. (playlists.insert) - * - * @param string $part The part parameter serves two purposes in this operation. - * It identifies the properties that the write operation will set as well as the - * properties that the API response will include. - * @param Google_Service_YouTube_Playlist $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string onBehalfOfContentOwner Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwner parameter indicates that the request's - * authorization credentials identify a YouTube CMS user who is acting on behalf - * of the content owner specified in the parameter value. This parameter is - * intended for YouTube content partners that own and manage many different - * YouTube channels. It allows content owners to authenticate once and get - * access to all their video and channel data, without having to provide - * authentication credentials for each individual channel. The CMS account that - * the user authenticates with must be linked to the specified YouTube content - * owner. - * @opt_param string onBehalfOfContentOwnerChannel This parameter can only be - * used in a properly authorized request. Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwnerChannel parameter specifies the YouTube channel ID - * of the channel to which a video is being added. This parameter is required - * when a request specifies a value for the onBehalfOfContentOwner parameter, - * and it can only be used in conjunction with that parameter. In addition, the - * request must be authorized using a CMS account that is linked to the content - * owner that the onBehalfOfContentOwner parameter specifies. Finally, the - * channel that the onBehalfOfContentOwnerChannel parameter value specifies must - * be linked to the content owner that the onBehalfOfContentOwner parameter - * specifies. - * - * This parameter is intended for YouTube content partners that own and manage - * many different YouTube channels. It allows content owners to authenticate - * once and perform actions on behalf of the channel specified in the parameter - * value, without having to provide authentication credentials for each separate - * channel. - * @return Google_Service_YouTube_Playlist - */ - public function insert($part, Google_Service_YouTube_Playlist $postBody, $optParams = array()) - { - $params = array('part' => $part, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_YouTube_Playlist"); - } - /** - * Returns a collection of playlists that match the API request parameters. For - * example, you can retrieve all playlists that the authenticated user owns, or - * you can retrieve one or more playlists by their unique IDs. - * (playlists.listPlaylists) - * - * @param string $part The part parameter specifies a comma-separated list of - * one or more playlist resource properties that the API response will include. - * - * If the parameter identifies a property that contains child properties, the - * child properties will be included in the response. For example, in a playlist - * resource, the snippet property contains properties like author, title, - * description, tags, and timeCreated. As such, if you set part=snippet, the API - * response will contain all of those properties. - * @param array $optParams Optional parameters. - * - * @opt_param string channelId This value indicates that the API should only - * return the specified channel's playlists. - * @opt_param string hl The hl parameter should be used for filter out the - * properties that are not in the given language. Used for the snippet part. - * @opt_param string id The id parameter specifies a comma-separated list of the - * YouTube playlist ID(s) for the resource(s) that are being retrieved. In a - * playlist resource, the id property specifies the playlist's YouTube playlist - * ID. - * @opt_param string maxResults The maxResults parameter specifies the maximum - * number of items that should be returned in the result set. - * @opt_param bool mine Set this parameter's value to true to instruct the API - * to only return playlists owned by the authenticated user. - * @opt_param string onBehalfOfContentOwner Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwner parameter indicates that the request's - * authorization credentials identify a YouTube CMS user who is acting on behalf - * of the content owner specified in the parameter value. This parameter is - * intended for YouTube content partners that own and manage many different - * YouTube channels. It allows content owners to authenticate once and get - * access to all their video and channel data, without having to provide - * authentication credentials for each individual channel. The CMS account that - * the user authenticates with must be linked to the specified YouTube content - * owner. - * @opt_param string onBehalfOfContentOwnerChannel This parameter can only be - * used in a properly authorized request. Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwnerChannel parameter specifies the YouTube channel ID - * of the channel to which a video is being added. This parameter is required - * when a request specifies a value for the onBehalfOfContentOwner parameter, - * and it can only be used in conjunction with that parameter. In addition, the - * request must be authorized using a CMS account that is linked to the content - * owner that the onBehalfOfContentOwner parameter specifies. Finally, the - * channel that the onBehalfOfContentOwnerChannel parameter value specifies must - * be linked to the content owner that the onBehalfOfContentOwner parameter - * specifies. - * - * This parameter is intended for YouTube content partners that own and manage - * many different YouTube channels. It allows content owners to authenticate - * once and perform actions on behalf of the channel specified in the parameter - * value, without having to provide authentication credentials for each separate - * channel. - * @opt_param string pageToken The pageToken parameter identifies a specific - * page in the result set that should be returned. In an API response, the - * nextPageToken and prevPageToken properties identify other pages that could be - * retrieved. - * @return Google_Service_YouTube_PlaylistListResponse - */ - public function listPlaylists($part, $optParams = array()) - { - $params = array('part' => $part); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_YouTube_PlaylistListResponse"); - } - /** - * Modifies a playlist. For example, you could change a playlist's title, - * description, or privacy status. (playlists.update) - * - * @param string $part The part parameter serves two purposes in this operation. - * It identifies the properties that the write operation will set as well as the - * properties that the API response will include. - * - * Note that this method will override the existing values for mutable - * properties that are contained in any parts that the request body specifies. - * For example, a playlist's description is contained in the snippet part, which - * must be included in the request body. If the request does not specify a value - * for the snippet.description property, the playlist's existing description - * will be deleted. - * @param Google_Service_YouTube_Playlist $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string onBehalfOfContentOwner Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwner parameter indicates that the request's - * authorization credentials identify a YouTube CMS user who is acting on behalf - * of the content owner specified in the parameter value. This parameter is - * intended for YouTube content partners that own and manage many different - * YouTube channels. It allows content owners to authenticate once and get - * access to all their video and channel data, without having to provide - * authentication credentials for each individual channel. The CMS account that - * the user authenticates with must be linked to the specified YouTube content - * owner. - * @return Google_Service_YouTube_Playlist - */ - public function update($part, Google_Service_YouTube_Playlist $postBody, $optParams = array()) - { - $params = array('part' => $part, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_YouTube_Playlist"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/Search.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/Search.php deleted file mode 100644 index 1f67c052..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/Search.php +++ /dev/null @@ -1,185 +0,0 @@ - - * $youtubeService = new Google_Service_YouTube(...); - * $search = $youtubeService->search; - * - */ -class Google_Service_YouTube_Resource_Search extends Google_Service_Resource -{ - /** - * Returns a collection of search results that match the query parameters - * specified in the API request. By default, a search result set identifies - * matching video, channel, and playlist resources, but you can also configure - * queries to only retrieve a specific type of resource. (search.listSearch) - * - * @param string $part The part parameter specifies a comma-separated list of - * one or more search resource properties that the API response will include. - * Set the parameter value to snippet. - * @param array $optParams Optional parameters. - * - * @opt_param string channelId The channelId parameter indicates that the API - * response should only contain resources created by the channel - * @opt_param string channelType The channelType parameter lets you restrict a - * search to a particular type of channel. - * @opt_param string eventType The eventType parameter restricts a search to - * broadcast events. If you specify a value for this parameter, you must also - * set the type parameter's value to video. - * @opt_param bool forContentOwner Note: This parameter is intended exclusively - * for YouTube content partners. - * - * The forContentOwner parameter restricts the search to only retrieve resources - * owned by the content owner specified by the onBehalfOfContentOwner parameter. - * The user must be authenticated using a CMS account linked to the specified - * content owner and onBehalfOfContentOwner must be provided. - * @opt_param bool forDeveloper The forDeveloper parameter restricts the search - * to only retrieve videos uploaded via the developer's application or website. - * The API server uses the request's authorization credentials to identify the - * developer. Therefore, a developer can restrict results to videos uploaded - * through the developer's own app or website but not to videos uploaded through - * other apps or sites. - * @opt_param bool forMine The forMine parameter restricts the search to only - * retrieve videos owned by the authenticated user. If you set this parameter to - * true, then the type parameter's value must also be set to video. - * @opt_param string location The location parameter, in conjunction with the - * locationRadius parameter, defines a circular geographic area and also - * restricts a search to videos that specify, in their metadata, a geographic - * location that falls within that area. The parameter value is a string that - * specifies latitude/longitude coordinates e.g. (37.42307,-122.08427). - * - * - The location parameter value identifies the point at the center of the - * area. - The locationRadius parameter specifies the maximum distance that the - * location associated with a video can be from that point for the video to - * still be included in the search results.The API returns an error if your - * request specifies a value for the location parameter but does not also - * specify a value for the locationRadius parameter. - * @opt_param string locationRadius The locationRadius parameter, in conjunction - * with the location parameter, defines a circular geographic area. - * - * The parameter value must be a floating point number followed by a measurement - * unit. Valid measurement units are m, km, ft, and mi. For example, valid - * parameter values include 1500m, 5km, 10000ft, and 0.75mi. The API does not - * support locationRadius parameter values larger than 1000 kilometers. - * - * Note: See the definition of the location parameter for more information. - * @opt_param string maxResults The maxResults parameter specifies the maximum - * number of items that should be returned in the result set. - * @opt_param string onBehalfOfContentOwner Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwner parameter indicates that the request's - * authorization credentials identify a YouTube CMS user who is acting on behalf - * of the content owner specified in the parameter value. This parameter is - * intended for YouTube content partners that own and manage many different - * YouTube channels. It allows content owners to authenticate once and get - * access to all their video and channel data, without having to provide - * authentication credentials for each individual channel. The CMS account that - * the user authenticates with must be linked to the specified YouTube content - * owner. - * @opt_param string order The order parameter specifies the method that will be - * used to order resources in the API response. - * @opt_param string pageToken The pageToken parameter identifies a specific - * page in the result set that should be returned. In an API response, the - * nextPageToken and prevPageToken properties identify other pages that could be - * retrieved. - * @opt_param string publishedAfter The publishedAfter parameter indicates that - * the API response should only contain resources created after the specified - * time. The value is an RFC 3339 formatted date-time value - * (1970-01-01T00:00:00Z). - * @opt_param string publishedBefore The publishedBefore parameter indicates - * that the API response should only contain resources created before the - * specified time. The value is an RFC 3339 formatted date-time value - * (1970-01-01T00:00:00Z). - * @opt_param string q The q parameter specifies the query term to search for. - * - * Your request can also use the Boolean NOT (-) and OR (|) operators to exclude - * videos or to find videos that are associated with one of several search - * terms. For example, to search for videos matching either "boating" or - * "sailing", set the q parameter value to boating|sailing. Similarly, to search - * for videos matching either "boating" or "sailing" but not "fishing", set the - * q parameter value to boating|sailing -fishing. Note that the pipe character - * must be URL-escaped when it is sent in your API request. The URL-escaped - * value for the pipe character is %7C. - * @opt_param string regionCode The regionCode parameter instructs the API to - * return search results for the specified country. The parameter value is an - * ISO 3166-1 alpha-2 country code. - * @opt_param string relatedToVideoId The relatedToVideoId parameter retrieves a - * list of videos that are related to the video that the parameter value - * identifies. The parameter value must be set to a YouTube video ID and, if you - * are using this parameter, the type parameter must be set to video. - * @opt_param string relevanceLanguage The relevanceLanguage parameter instructs - * the API to return search results that are most relevant to the specified - * language. The parameter value is typically an ISO 639-1 two-letter language - * code. However, you should use the values zh-Hans for simplified Chinese and - * zh-Hant for traditional Chinese. Please note that results in other languages - * will still be returned if they are highly relevant to the search query term. - * @opt_param string safeSearch The safeSearch parameter indicates whether the - * search results should include restricted content as well as standard content. - * @opt_param string topicId The topicId parameter indicates that the API - * response should only contain resources associated with the specified topic. - * The value identifies a Freebase topic ID. - * @opt_param string type The type parameter restricts a search query to only - * retrieve a particular type of resource. The value is a comma-separated list - * of resource types. - * @opt_param string videoCaption The videoCaption parameter indicates whether - * the API should filter video search results based on whether they have - * captions. If you specify a value for this parameter, you must also set the - * type parameter's value to video. - * @opt_param string videoCategoryId The videoCategoryId parameter filters video - * search results based on their category. If you specify a value for this - * parameter, you must also set the type parameter's value to video. - * @opt_param string videoDefinition The videoDefinition parameter lets you - * restrict a search to only include either high definition (HD) or standard - * definition (SD) videos. HD videos are available for playback in at least - * 720p, though higher resolutions, like 1080p, might also be available. If you - * specify a value for this parameter, you must also set the type parameter's - * value to video. - * @opt_param string videoDimension The videoDimension parameter lets you - * restrict a search to only retrieve 2D or 3D videos. If you specify a value - * for this parameter, you must also set the type parameter's value to video. - * @opt_param string videoDuration The videoDuration parameter filters video - * search results based on their duration. If you specify a value for this - * parameter, you must also set the type parameter's value to video. - * @opt_param string videoEmbeddable The videoEmbeddable parameter lets you to - * restrict a search to only videos that can be embedded into a webpage. If you - * specify a value for this parameter, you must also set the type parameter's - * value to video. - * @opt_param string videoLicense The videoLicense parameter filters search - * results to only include videos with a particular license. YouTube lets video - * uploaders choose to attach either the Creative Commons license or the - * standard YouTube license to each of their videos. If you specify a value for - * this parameter, you must also set the type parameter's value to video. - * @opt_param string videoSyndicated The videoSyndicated parameter lets you to - * restrict a search to only videos that can be played outside youtube.com. If - * you specify a value for this parameter, you must also set the type - * parameter's value to video. - * @opt_param string videoType The videoType parameter lets you restrict a - * search to a particular type of videos. If you specify a value for this - * parameter, you must also set the type parameter's value to video. - * @return Google_Service_YouTube_SearchListResponse - */ - public function listSearch($part, $optParams = array()) - { - $params = array('part' => $part); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_YouTube_SearchListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/Sponsors.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/Sponsors.php deleted file mode 100644 index 2a3c43ba..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/Sponsors.php +++ /dev/null @@ -1,51 +0,0 @@ - - * $youtubeService = new Google_Service_YouTube(...); - * $sponsors = $youtubeService->sponsors; - * - */ -class Google_Service_YouTube_Resource_Sponsors extends Google_Service_Resource -{ - /** - * Lists sponsors for a channel. (sponsors.listSponsors) - * - * @param string $part The part parameter specifies the sponsor resource parts - * that the API response will include. Supported values are id and snippet. - * @param array $optParams Optional parameters. - * - * @opt_param string filter The filter parameter specifies which channel - * sponsors to return. - * @opt_param string maxResults The maxResults parameter specifies the maximum - * number of items that should be returned in the result set. - * @opt_param string pageToken The pageToken parameter identifies a specific - * page in the result set that should be returned. In an API response, the - * nextPageToken and prevPageToken properties identify other pages that could be - * retrieved. - * @return Google_Service_YouTube_SponsorListResponse - */ - public function listSponsors($part, $optParams = array()) - { - $params = array('part' => $part); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_YouTube_SponsorListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/Subscriptions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/Subscriptions.php deleted file mode 100644 index 993d3dec..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/Subscriptions.php +++ /dev/null @@ -1,136 +0,0 @@ - - * $youtubeService = new Google_Service_YouTube(...); - * $subscriptions = $youtubeService->subscriptions; - * - */ -class Google_Service_YouTube_Resource_Subscriptions extends Google_Service_Resource -{ - /** - * Deletes a subscription. (subscriptions.delete) - * - * @param string $id The id parameter specifies the YouTube subscription ID for - * the resource that is being deleted. In a subscription resource, the id - * property specifies the YouTube subscription ID. - * @param array $optParams Optional parameters. - */ - public function delete($id, $optParams = array()) - { - $params = array('id' => $id); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Adds a subscription for the authenticated user's channel. - * (subscriptions.insert) - * - * @param string $part The part parameter serves two purposes in this operation. - * It identifies the properties that the write operation will set as well as the - * properties that the API response will include. - * @param Google_Service_YouTube_Subscription $postBody - * @param array $optParams Optional parameters. - * @return Google_Service_YouTube_Subscription - */ - public function insert($part, Google_Service_YouTube_Subscription $postBody, $optParams = array()) - { - $params = array('part' => $part, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_YouTube_Subscription"); - } - /** - * Returns subscription resources that match the API request criteria. - * (subscriptions.listSubscriptions) - * - * @param string $part The part parameter specifies a comma-separated list of - * one or more subscription resource properties that the API response will - * include. - * - * If the parameter identifies a property that contains child properties, the - * child properties will be included in the response. For example, in a - * subscription resource, the snippet property contains other properties, such - * as a display title for the subscription. If you set part=snippet, the API - * response will also contain all of those nested properties. - * @param array $optParams Optional parameters. - * - * @opt_param string channelId The channelId parameter specifies a YouTube - * channel ID. The API will only return that channel's subscriptions. - * @opt_param string forChannelId The forChannelId parameter specifies a comma- - * separated list of channel IDs. The API response will then only contain - * subscriptions matching those channels. - * @opt_param string id The id parameter specifies a comma-separated list of the - * YouTube subscription ID(s) for the resource(s) that are being retrieved. In a - * subscription resource, the id property specifies the YouTube subscription ID. - * @opt_param string maxResults The maxResults parameter specifies the maximum - * number of items that should be returned in the result set. - * @opt_param bool mine Set this parameter's value to true to retrieve a feed of - * the authenticated user's subscriptions. - * @opt_param bool myRecentSubscribers Set this parameter's value to true to - * retrieve a feed of the subscribers of the authenticated user in reverse - * chronological order (newest first). - * @opt_param bool mySubscribers Set this parameter's value to true to retrieve - * a feed of the subscribers of the authenticated user in no particular order. - * @opt_param string onBehalfOfContentOwner Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwner parameter indicates that the request's - * authorization credentials identify a YouTube CMS user who is acting on behalf - * of the content owner specified in the parameter value. This parameter is - * intended for YouTube content partners that own and manage many different - * YouTube channels. It allows content owners to authenticate once and get - * access to all their video and channel data, without having to provide - * authentication credentials for each individual channel. The CMS account that - * the user authenticates with must be linked to the specified YouTube content - * owner. - * @opt_param string onBehalfOfContentOwnerChannel This parameter can only be - * used in a properly authorized request. Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwnerChannel parameter specifies the YouTube channel ID - * of the channel to which a video is being added. This parameter is required - * when a request specifies a value for the onBehalfOfContentOwner parameter, - * and it can only be used in conjunction with that parameter. In addition, the - * request must be authorized using a CMS account that is linked to the content - * owner that the onBehalfOfContentOwner parameter specifies. Finally, the - * channel that the onBehalfOfContentOwnerChannel parameter value specifies must - * be linked to the content owner that the onBehalfOfContentOwner parameter - * specifies. - * - * This parameter is intended for YouTube content partners that own and manage - * many different YouTube channels. It allows content owners to authenticate - * once and perform actions on behalf of the channel specified in the parameter - * value, without having to provide authentication credentials for each separate - * channel. - * @opt_param string order The order parameter specifies the method that will be - * used to sort resources in the API response. - * @opt_param string pageToken The pageToken parameter identifies a specific - * page in the result set that should be returned. In an API response, the - * nextPageToken and prevPageToken properties identify other pages that could be - * retrieved. - * @return Google_Service_YouTube_SubscriptionListResponse - */ - public function listSubscriptions($part, $optParams = array()) - { - $params = array('part' => $part); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_YouTube_SubscriptionListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/SuperChatEvents.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/SuperChatEvents.php deleted file mode 100644 index 38a2be00..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/SuperChatEvents.php +++ /dev/null @@ -1,59 +0,0 @@ - - * $youtubeService = new Google_Service_YouTube(...); - * $superChatEvents = $youtubeService->superChatEvents; - * - */ -class Google_Service_YouTube_Resource_SuperChatEvents extends Google_Service_Resource -{ - /** - * Lists Super Chat events for a channel. (superChatEvents.listSuperChatEvents) - * - * @param string $part The part parameter specifies the superChatEvent resource - * parts that the API response will include. Supported values are id and - * snippet. - * @param array $optParams Optional parameters. - * - * @opt_param string hl The hl parameter instructs the API to retrieve localized - * resource metadata for a specific application language that the YouTube - * website supports. The parameter value must be a language code included in the - * list returned by the i18nLanguages.list method. - * - * If localized resource details are available in that language, the resource's - * snippet.localized object will contain the localized values. However, if - * localized details are not available, the snippet.localized object will - * contain resource details in the resource's default language. - * @opt_param string maxResults The maxResults parameter specifies the maximum - * number of items that should be returned in the result set. - * @opt_param string pageToken The pageToken parameter identifies a specific - * page in the result set that should be returned. In an API response, the - * nextPageToken and prevPageToken properties identify other pages that could be - * retrieved. - * @return Google_Service_YouTube_SuperChatEventListResponse - */ - public function listSuperChatEvents($part, $optParams = array()) - { - $params = array('part' => $part); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_YouTube_SuperChatEventListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/Thumbnails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/Thumbnails.php deleted file mode 100644 index bf91bcd4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/Thumbnails.php +++ /dev/null @@ -1,56 +0,0 @@ - - * $youtubeService = new Google_Service_YouTube(...); - * $thumbnails = $youtubeService->thumbnails; - * - */ -class Google_Service_YouTube_Resource_Thumbnails extends Google_Service_Resource -{ - /** - * Uploads a custom video thumbnail to YouTube and sets it for a video. - * (thumbnails.set) - * - * @param string $videoId The videoId parameter specifies a YouTube video ID for - * which the custom video thumbnail is being provided. - * @param array $optParams Optional parameters. - * - * @opt_param string onBehalfOfContentOwner Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwner parameter indicates that the request's - * authorization credentials identify a YouTube CMS user who is acting on behalf - * of the content owner specified in the parameter value. This parameter is - * intended for YouTube content partners that own and manage many different - * YouTube channels. It allows content owners to authenticate once and get - * access to all their video and channel data, without having to provide - * authentication credentials for each individual channel. The actual CMS - * account that the user authenticates with must be linked to the specified - * YouTube content owner. - * @return Google_Service_YouTube_ThumbnailSetResponse - */ - public function set($videoId, $optParams = array()) - { - $params = array('videoId' => $videoId); - $params = array_merge($params, $optParams); - return $this->call('set', array($params), "Google_Service_YouTube_ThumbnailSetResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/VideoAbuseReportReasons.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/VideoAbuseReportReasons.php deleted file mode 100644 index 6b63f94d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/VideoAbuseReportReasons.php +++ /dev/null @@ -1,47 +0,0 @@ - - * $youtubeService = new Google_Service_YouTube(...); - * $videoAbuseReportReasons = $youtubeService->videoAbuseReportReasons; - * - */ -class Google_Service_YouTube_Resource_VideoAbuseReportReasons extends Google_Service_Resource -{ - /** - * Returns a list of abuse reasons that can be used for reporting abusive - * videos. (videoAbuseReportReasons.listVideoAbuseReportReasons) - * - * @param string $part The part parameter specifies the videoCategory resource - * parts that the API response will include. Supported values are id and - * snippet. - * @param array $optParams Optional parameters. - * - * @opt_param string hl The hl parameter specifies the language that should be - * used for text values in the API response. - * @return Google_Service_YouTube_VideoAbuseReportReasonListResponse - */ - public function listVideoAbuseReportReasons($part, $optParams = array()) - { - $params = array('part' => $part); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_YouTube_VideoAbuseReportReasonListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/VideoCategories.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/VideoCategories.php deleted file mode 100644 index 9f6c15f8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/VideoCategories.php +++ /dev/null @@ -1,52 +0,0 @@ - - * $youtubeService = new Google_Service_YouTube(...); - * $videoCategories = $youtubeService->videoCategories; - * - */ -class Google_Service_YouTube_Resource_VideoCategories extends Google_Service_Resource -{ - /** - * Returns a list of categories that can be associated with YouTube videos. - * (videoCategories.listVideoCategories) - * - * @param string $part The part parameter specifies the videoCategory resource - * properties that the API response will include. Set the parameter value to - * snippet. - * @param array $optParams Optional parameters. - * - * @opt_param string hl The hl parameter specifies the language that should be - * used for text values in the API response. - * @opt_param string id The id parameter specifies a comma-separated list of - * video category IDs for the resources that you are retrieving. - * @opt_param string regionCode The regionCode parameter instructs the API to - * return the list of video categories available in the specified country. The - * parameter value is an ISO 3166-1 alpha-2 country code. - * @return Google_Service_YouTube_VideoCategoryListResponse - */ - public function listVideoCategories($part, $optParams = array()) - { - $params = array('part' => $part); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_YouTube_VideoCategoryListResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/Videos.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/Videos.php deleted file mode 100644 index d5203384..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/Videos.php +++ /dev/null @@ -1,315 +0,0 @@ - - * $youtubeService = new Google_Service_YouTube(...); - * $videos = $youtubeService->videos; - * - */ -class Google_Service_YouTube_Resource_Videos extends Google_Service_Resource -{ - /** - * Deletes a YouTube video. (videos.delete) - * - * @param string $id The id parameter specifies the YouTube video ID for the - * resource that is being deleted. In a video resource, the id property - * specifies the video's ID. - * @param array $optParams Optional parameters. - * - * @opt_param string onBehalfOfContentOwner Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwner parameter indicates that the request's - * authorization credentials identify a YouTube CMS user who is acting on behalf - * of the content owner specified in the parameter value. This parameter is - * intended for YouTube content partners that own and manage many different - * YouTube channels. It allows content owners to authenticate once and get - * access to all their video and channel data, without having to provide - * authentication credentials for each individual channel. The actual CMS - * account that the user authenticates with must be linked to the specified - * YouTube content owner. - */ - public function delete($id, $optParams = array()) - { - $params = array('id' => $id); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params)); - } - /** - * Retrieves the ratings that the authorized user gave to a list of specified - * videos. (videos.getRating) - * - * @param string $id The id parameter specifies a comma-separated list of the - * YouTube video ID(s) for the resource(s) for which you are retrieving rating - * data. In a video resource, the id property specifies the video's ID. - * @param array $optParams Optional parameters. - * - * @opt_param string onBehalfOfContentOwner Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwner parameter indicates that the request's - * authorization credentials identify a YouTube CMS user who is acting on behalf - * of the content owner specified in the parameter value. This parameter is - * intended for YouTube content partners that own and manage many different - * YouTube channels. It allows content owners to authenticate once and get - * access to all their video and channel data, without having to provide - * authentication credentials for each individual channel. The CMS account that - * the user authenticates with must be linked to the specified YouTube content - * owner. - * @return Google_Service_YouTube_VideoGetRatingResponse - */ - public function getRating($id, $optParams = array()) - { - $params = array('id' => $id); - $params = array_merge($params, $optParams); - return $this->call('getRating', array($params), "Google_Service_YouTube_VideoGetRatingResponse"); - } - /** - * Uploads a video to YouTube and optionally sets the video's metadata. - * (videos.insert) - * - * @param string $part The part parameter serves two purposes in this operation. - * It identifies the properties that the write operation will set as well as the - * properties that the API response will include. - * - * Note that not all parts contain properties that can be set when inserting or - * updating a video. For example, the statistics object encapsulates statistics - * that YouTube calculates for a video and does not contain values that you can - * set or modify. If the parameter value specifies a part that does not contain - * mutable values, that part will still be included in the API response. - * @param Google_Service_YouTube_Video $postBody - * @param array $optParams Optional parameters. - * - * @opt_param bool autoLevels The autoLevels parameter indicates whether YouTube - * should automatically enhance the video's lighting and color. - * @opt_param bool notifySubscribers The notifySubscribers parameter indicates - * whether YouTube should send a notification about the new video to users who - * subscribe to the video's channel. A parameter value of True indicates that - * subscribers will be notified of newly uploaded videos. However, a channel - * owner who is uploading many videos might prefer to set the value to False to - * avoid sending a notification about each new video to the channel's - * subscribers. - * @opt_param string onBehalfOfContentOwner Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwner parameter indicates that the request's - * authorization credentials identify a YouTube CMS user who is acting on behalf - * of the content owner specified in the parameter value. This parameter is - * intended for YouTube content partners that own and manage many different - * YouTube channels. It allows content owners to authenticate once and get - * access to all their video and channel data, without having to provide - * authentication credentials for each individual channel. The CMS account that - * the user authenticates with must be linked to the specified YouTube content - * owner. - * @opt_param string onBehalfOfContentOwnerChannel This parameter can only be - * used in a properly authorized request. Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwnerChannel parameter specifies the YouTube channel ID - * of the channel to which a video is being added. This parameter is required - * when a request specifies a value for the onBehalfOfContentOwner parameter, - * and it can only be used in conjunction with that parameter. In addition, the - * request must be authorized using a CMS account that is linked to the content - * owner that the onBehalfOfContentOwner parameter specifies. Finally, the - * channel that the onBehalfOfContentOwnerChannel parameter value specifies must - * be linked to the content owner that the onBehalfOfContentOwner parameter - * specifies. - * - * This parameter is intended for YouTube content partners that own and manage - * many different YouTube channels. It allows content owners to authenticate - * once and perform actions on behalf of the channel specified in the parameter - * value, without having to provide authentication credentials for each separate - * channel. - * @opt_param bool stabilize The stabilize parameter indicates whether YouTube - * should adjust the video to remove shaky camera motions. - * @return Google_Service_YouTube_Video - */ - public function insert($part, Google_Service_YouTube_Video $postBody, $optParams = array()) - { - $params = array('part' => $part, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_YouTube_Video"); - } - /** - * Returns a list of videos that match the API request parameters. - * (videos.listVideos) - * - * @param string $part The part parameter specifies a comma-separated list of - * one or more video resource properties that the API response will include. - * - * If the parameter identifies a property that contains child properties, the - * child properties will be included in the response. For example, in a video - * resource, the snippet property contains the channelId, title, description, - * tags, and categoryId properties. As such, if you set part=snippet, the API - * response will contain all of those properties. - * @param array $optParams Optional parameters. - * - * @opt_param string chart The chart parameter identifies the chart that you - * want to retrieve. - * @opt_param string hl The hl parameter instructs the API to retrieve localized - * resource metadata for a specific application language that the YouTube - * website supports. The parameter value must be a language code included in the - * list returned by the i18nLanguages.list method. - * - * If localized resource details are available in that language, the resource's - * snippet.localized object will contain the localized values. However, if - * localized details are not available, the snippet.localized object will - * contain resource details in the resource's default language. - * @opt_param string id The id parameter specifies a comma-separated list of the - * YouTube video ID(s) for the resource(s) that are being retrieved. In a video - * resource, the id property specifies the video's ID. - * @opt_param string locale DEPRECATED - * @opt_param string maxHeight The maxHeight parameter specifies a maximum - * height of the embedded player. If maxWidth is provided, maxHeight may not be - * reached in order to not violate the width request. - * @opt_param string maxResults The maxResults parameter specifies the maximum - * number of items that should be returned in the result set. - * - * Note: This parameter is supported for use in conjunction with the myRating - * and chart parameters, but it is not supported for use in conjunction with the - * id parameter. - * @opt_param string maxWidth The maxWidth parameter specifies a maximum width - * of the embedded player. If maxHeight is provided, maxWidth may not be reached - * in order to not violate the height request. - * @opt_param string myRating Set this parameter's value to like or dislike to - * instruct the API to only return videos liked or disliked by the authenticated - * user. - * @opt_param string onBehalfOfContentOwner Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwner parameter indicates that the request's - * authorization credentials identify a YouTube CMS user who is acting on behalf - * of the content owner specified in the parameter value. This parameter is - * intended for YouTube content partners that own and manage many different - * YouTube channels. It allows content owners to authenticate once and get - * access to all their video and channel data, without having to provide - * authentication credentials for each individual channel. The CMS account that - * the user authenticates with must be linked to the specified YouTube content - * owner. - * @opt_param string pageToken The pageToken parameter identifies a specific - * page in the result set that should be returned. In an API response, the - * nextPageToken and prevPageToken properties identify other pages that could be - * retrieved. - * - * Note: This parameter is supported for use in conjunction with the myRating - * and chart parameters, but it is not supported for use in conjunction with the - * id parameter. - * @opt_param string regionCode The regionCode parameter instructs the API to - * select a video chart available in the specified region. This parameter can - * only be used in conjunction with the chart parameter. The parameter value is - * an ISO 3166-1 alpha-2 country code. - * @opt_param string videoCategoryId The videoCategoryId parameter identifies - * the video category for which the chart should be retrieved. This parameter - * can only be used in conjunction with the chart parameter. By default, charts - * are not restricted to a particular category. - * @return Google_Service_YouTube_VideoListResponse - */ - public function listVideos($part, $optParams = array()) - { - $params = array('part' => $part); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_YouTube_VideoListResponse"); - } - /** - * Add a like or dislike rating to a video or remove a rating from a video. - * (videos.rate) - * - * @param string $id The id parameter specifies the YouTube video ID of the - * video that is being rated or having its rating removed. - * @param string $rating Specifies the rating to record. - * @param array $optParams Optional parameters. - */ - public function rate($id, $rating, $optParams = array()) - { - $params = array('id' => $id, 'rating' => $rating); - $params = array_merge($params, $optParams); - return $this->call('rate', array($params)); - } - /** - * Report abuse for a video. (videos.reportAbuse) - * - * @param Google_Service_YouTube_VideoAbuseReport $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string onBehalfOfContentOwner Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwner parameter indicates that the request's - * authorization credentials identify a YouTube CMS user who is acting on behalf - * of the content owner specified in the parameter value. This parameter is - * intended for YouTube content partners that own and manage many different - * YouTube channels. It allows content owners to authenticate once and get - * access to all their video and channel data, without having to provide - * authentication credentials for each individual channel. The CMS account that - * the user authenticates with must be linked to the specified YouTube content - * owner. - */ - public function reportAbuse(Google_Service_YouTube_VideoAbuseReport $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('reportAbuse', array($params)); - } - /** - * Updates a video's metadata. (videos.update) - * - * @param string $part The part parameter serves two purposes in this operation. - * It identifies the properties that the write operation will set as well as the - * properties that the API response will include. - * - * Note that this method will override the existing values for all of the - * mutable properties that are contained in any parts that the parameter value - * specifies. For example, a video's privacy setting is contained in the status - * part. As such, if your request is updating a private video, and the request's - * part parameter value includes the status part, the video's privacy setting - * will be updated to whatever value the request body specifies. If the request - * body does not specify a value, the existing privacy setting will be removed - * and the video will revert to the default privacy setting. - * - * In addition, not all parts contain properties that can be set when inserting - * or updating a video. For example, the statistics object encapsulates - * statistics that YouTube calculates for a video and does not contain values - * that you can set or modify. If the parameter value specifies a part that does - * not contain mutable values, that part will still be included in the API - * response. - * @param Google_Service_YouTube_Video $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string onBehalfOfContentOwner Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwner parameter indicates that the request's - * authorization credentials identify a YouTube CMS user who is acting on behalf - * of the content owner specified in the parameter value. This parameter is - * intended for YouTube content partners that own and manage many different - * YouTube channels. It allows content owners to authenticate once and get - * access to all their video and channel data, without having to provide - * authentication credentials for each individual channel. The actual CMS - * account that the user authenticates with must be linked to the specified - * YouTube content owner. - * @return Google_Service_YouTube_Video - */ - public function update($part, Google_Service_YouTube_Video $postBody, $optParams = array()) - { - $params = array('part' => $part, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_YouTube_Video"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/Watermarks.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/Watermarks.php deleted file mode 100644 index 08740403..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Resource/Watermarks.php +++ /dev/null @@ -1,82 +0,0 @@ - - * $youtubeService = new Google_Service_YouTube(...); - * $watermarks = $youtubeService->watermarks; - * - */ -class Google_Service_YouTube_Resource_Watermarks extends Google_Service_Resource -{ - /** - * Uploads a watermark image to YouTube and sets it for a channel. - * (watermarks.set) - * - * @param string $channelId The channelId parameter specifies the YouTube - * channel ID for which the watermark is being provided. - * @param Google_Service_YouTube_InvideoBranding $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string onBehalfOfContentOwner Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwner parameter indicates that the request's - * authorization credentials identify a YouTube CMS user who is acting on behalf - * of the content owner specified in the parameter value. This parameter is - * intended for YouTube content partners that own and manage many different - * YouTube channels. It allows content owners to authenticate once and get - * access to all their video and channel data, without having to provide - * authentication credentials for each individual channel. The CMS account that - * the user authenticates with must be linked to the specified YouTube content - * owner. - */ - public function set($channelId, Google_Service_YouTube_InvideoBranding $postBody, $optParams = array()) - { - $params = array('channelId' => $channelId, 'postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('set', array($params)); - } - /** - * Deletes a channel's watermark image. (watermarks.unsetWatermarks) - * - * @param string $channelId The channelId parameter specifies the YouTube - * channel ID for which the watermark is being unset. - * @param array $optParams Optional parameters. - * - * @opt_param string onBehalfOfContentOwner Note: This parameter is intended - * exclusively for YouTube content partners. - * - * The onBehalfOfContentOwner parameter indicates that the request's - * authorization credentials identify a YouTube CMS user who is acting on behalf - * of the content owner specified in the parameter value. This parameter is - * intended for YouTube content partners that own and manage many different - * YouTube channels. It allows content owners to authenticate once and get - * access to all their video and channel data, without having to provide - * authentication credentials for each individual channel. The CMS account that - * the user authenticates with must be linked to the specified YouTube content - * owner. - */ - public function unsetWatermarks($channelId, $optParams = array()) - { - $params = array('channelId' => $channelId); - $params = array_merge($params, $optParams); - return $this->call('unset', array($params)); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ResourceId.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ResourceId.php deleted file mode 100644 index cd869cfd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ResourceId.php +++ /dev/null @@ -1,57 +0,0 @@ -channelId = $channelId; - } - public function getChannelId() - { - return $this->channelId; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setPlaylistId($playlistId) - { - $this->playlistId = $playlistId; - } - public function getPlaylistId() - { - return $this->playlistId; - } - public function setVideoId($videoId) - { - $this->videoId = $videoId; - } - public function getVideoId() - { - return $this->videoId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/SearchListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/SearchListResponse.php deleted file mode 100644 index 93808fdd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/SearchListResponse.php +++ /dev/null @@ -1,133 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setEventId($eventId) - { - $this->eventId = $eventId; - } - public function getEventId() - { - return $this->eventId; - } - /** - * @param Google_Service_YouTube_SearchResult - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_YouTube_SearchResult - */ - public function getItems() - { - return $this->items; - } - 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_YouTube_PageInfo - */ - public function setPageInfo(Google_Service_YouTube_PageInfo $pageInfo) - { - $this->pageInfo = $pageInfo; - } - /** - * @return Google_Service_YouTube_PageInfo - */ - public function getPageInfo() - { - return $this->pageInfo; - } - public function setPrevPageToken($prevPageToken) - { - $this->prevPageToken = $prevPageToken; - } - public function getPrevPageToken() - { - return $this->prevPageToken; - } - public function setRegionCode($regionCode) - { - $this->regionCode = $regionCode; - } - public function getRegionCode() - { - return $this->regionCode; - } - /** - * @param Google_Service_YouTube_TokenPagination - */ - public function setTokenPagination(Google_Service_YouTube_TokenPagination $tokenPagination) - { - $this->tokenPagination = $tokenPagination; - } - /** - * @return Google_Service_YouTube_TokenPagination - */ - public function getTokenPagination() - { - return $this->tokenPagination; - } - public function setVisitorId($visitorId) - { - $this->visitorId = $visitorId; - } - public function getVisitorId() - { - return $this->visitorId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/SearchResult.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/SearchResult.php deleted file mode 100644 index 342887b9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/SearchResult.php +++ /dev/null @@ -1,71 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_YouTube_ResourceId - */ - public function setId(Google_Service_YouTube_ResourceId $id) - { - $this->id = $id; - } - /** - * @return Google_Service_YouTube_ResourceId - */ - public function getId() - { - return $this->id; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_YouTube_SearchResultSnippet - */ - public function setSnippet(Google_Service_YouTube_SearchResultSnippet $snippet) - { - $this->snippet = $snippet; - } - /** - * @return Google_Service_YouTube_SearchResultSnippet - */ - public function getSnippet() - { - return $this->snippet; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/SearchResultSnippet.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/SearchResultSnippet.php deleted file mode 100644 index c1fe9898..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/SearchResultSnippet.php +++ /dev/null @@ -1,91 +0,0 @@ -channelId = $channelId; - } - public function getChannelId() - { - return $this->channelId; - } - public function setChannelTitle($channelTitle) - { - $this->channelTitle = $channelTitle; - } - public function getChannelTitle() - { - return $this->channelTitle; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setLiveBroadcastContent($liveBroadcastContent) - { - $this->liveBroadcastContent = $liveBroadcastContent; - } - public function getLiveBroadcastContent() - { - return $this->liveBroadcastContent; - } - public function setPublishedAt($publishedAt) - { - $this->publishedAt = $publishedAt; - } - public function getPublishedAt() - { - return $this->publishedAt; - } - /** - * @param Google_Service_YouTube_ThumbnailDetails - */ - public function setThumbnails(Google_Service_YouTube_ThumbnailDetails $thumbnails) - { - $this->thumbnails = $thumbnails; - } - /** - * @return Google_Service_YouTube_ThumbnailDetails - */ - public function getThumbnails() - { - return $this->thumbnails; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Sponsor.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Sponsor.php deleted file mode 100644 index deb383bf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Sponsor.php +++ /dev/null @@ -1,55 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - /** - * @param Google_Service_YouTube_SponsorSnippet - */ - public function setSnippet(Google_Service_YouTube_SponsorSnippet $snippet) - { - $this->snippet = $snippet; - } - /** - * @return Google_Service_YouTube_SponsorSnippet - */ - public function getSnippet() - { - return $this->snippet; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/SponsorListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/SponsorListResponse.php deleted file mode 100644 index 309bd080..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/SponsorListResponse.php +++ /dev/null @@ -1,115 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setEventId($eventId) - { - $this->eventId = $eventId; - } - public function getEventId() - { - return $this->eventId; - } - /** - * @param Google_Service_YouTube_Sponsor - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_YouTube_Sponsor - */ - public function getItems() - { - return $this->items; - } - 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_YouTube_PageInfo - */ - public function setPageInfo(Google_Service_YouTube_PageInfo $pageInfo) - { - $this->pageInfo = $pageInfo; - } - /** - * @return Google_Service_YouTube_PageInfo - */ - public function getPageInfo() - { - return $this->pageInfo; - } - /** - * @param Google_Service_YouTube_TokenPagination - */ - public function setTokenPagination(Google_Service_YouTube_TokenPagination $tokenPagination) - { - $this->tokenPagination = $tokenPagination; - } - /** - * @return Google_Service_YouTube_TokenPagination - */ - public function getTokenPagination() - { - return $this->tokenPagination; - } - public function setVisitorId($visitorId) - { - $this->visitorId = $visitorId; - } - public function getVisitorId() - { - return $this->visitorId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/SponsorSnippet.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/SponsorSnippet.php deleted file mode 100644 index 5e1880d4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/SponsorSnippet.php +++ /dev/null @@ -1,64 +0,0 @@ -channelId = $channelId; - } - public function getChannelId() - { - return $this->channelId; - } - public function setCumulativeDurationMonths($cumulativeDurationMonths) - { - $this->cumulativeDurationMonths = $cumulativeDurationMonths; - } - public function getCumulativeDurationMonths() - { - return $this->cumulativeDurationMonths; - } - /** - * @param Google_Service_YouTube_ChannelProfileDetails - */ - public function setSponsorDetails(Google_Service_YouTube_ChannelProfileDetails $sponsorDetails) - { - $this->sponsorDetails = $sponsorDetails; - } - /** - * @return Google_Service_YouTube_ChannelProfileDetails - */ - public function getSponsorDetails() - { - return $this->sponsorDetails; - } - public function setSponsorSince($sponsorSince) - { - $this->sponsorSince = $sponsorSince; - } - public function getSponsorSince() - { - return $this->sponsorSince; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Subscription.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Subscription.php deleted file mode 100644 index ad3ba92d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Subscription.php +++ /dev/null @@ -1,96 +0,0 @@ -contentDetails = $contentDetails; - } - /** - * @return Google_Service_YouTube_SubscriptionContentDetails - */ - public function getContentDetails() - { - return $this->contentDetails; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - 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; - } - /** - * @param Google_Service_YouTube_SubscriptionSnippet - */ - public function setSnippet(Google_Service_YouTube_SubscriptionSnippet $snippet) - { - $this->snippet = $snippet; - } - /** - * @return Google_Service_YouTube_SubscriptionSnippet - */ - public function getSnippet() - { - return $this->snippet; - } - /** - * @param Google_Service_YouTube_SubscriptionSubscriberSnippet - */ - public function setSubscriberSnippet(Google_Service_YouTube_SubscriptionSubscriberSnippet $subscriberSnippet) - { - $this->subscriberSnippet = $subscriberSnippet; - } - /** - * @return Google_Service_YouTube_SubscriptionSubscriberSnippet - */ - public function getSubscriberSnippet() - { - return $this->subscriberSnippet; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/SubscriptionContentDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/SubscriptionContentDetails.php deleted file mode 100644 index 8eeff51b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/SubscriptionContentDetails.php +++ /dev/null @@ -1,48 +0,0 @@ -activityType = $activityType; - } - public function getActivityType() - { - return $this->activityType; - } - public function setNewItemCount($newItemCount) - { - $this->newItemCount = $newItemCount; - } - public function getNewItemCount() - { - return $this->newItemCount; - } - public function setTotalItemCount($totalItemCount) - { - $this->totalItemCount = $totalItemCount; - } - public function getTotalItemCount() - { - return $this->totalItemCount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/SubscriptionListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/SubscriptionListResponse.php deleted file mode 100644 index 47402d9a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/SubscriptionListResponse.php +++ /dev/null @@ -1,124 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setEventId($eventId) - { - $this->eventId = $eventId; - } - public function getEventId() - { - return $this->eventId; - } - /** - * @param Google_Service_YouTube_Subscription - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_YouTube_Subscription - */ - public function getItems() - { - return $this->items; - } - 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_YouTube_PageInfo - */ - public function setPageInfo(Google_Service_YouTube_PageInfo $pageInfo) - { - $this->pageInfo = $pageInfo; - } - /** - * @return Google_Service_YouTube_PageInfo - */ - public function getPageInfo() - { - return $this->pageInfo; - } - public function setPrevPageToken($prevPageToken) - { - $this->prevPageToken = $prevPageToken; - } - public function getPrevPageToken() - { - return $this->prevPageToken; - } - /** - * @param Google_Service_YouTube_TokenPagination - */ - public function setTokenPagination(Google_Service_YouTube_TokenPagination $tokenPagination) - { - $this->tokenPagination = $tokenPagination; - } - /** - * @return Google_Service_YouTube_TokenPagination - */ - public function getTokenPagination() - { - return $this->tokenPagination; - } - public function setVisitorId($visitorId) - { - $this->visitorId = $visitorId; - } - public function getVisitorId() - { - return $this->visitorId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/SubscriptionSnippet.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/SubscriptionSnippet.php deleted file mode 100644 index 852a70b3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/SubscriptionSnippet.php +++ /dev/null @@ -1,98 +0,0 @@ -channelId = $channelId; - } - public function getChannelId() - { - return $this->channelId; - } - public function setChannelTitle($channelTitle) - { - $this->channelTitle = $channelTitle; - } - public function getChannelTitle() - { - return $this->channelTitle; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setPublishedAt($publishedAt) - { - $this->publishedAt = $publishedAt; - } - public function getPublishedAt() - { - return $this->publishedAt; - } - /** - * @param Google_Service_YouTube_ResourceId - */ - public function setResourceId(Google_Service_YouTube_ResourceId $resourceId) - { - $this->resourceId = $resourceId; - } - /** - * @return Google_Service_YouTube_ResourceId - */ - public function getResourceId() - { - return $this->resourceId; - } - /** - * @param Google_Service_YouTube_ThumbnailDetails - */ - public function setThumbnails(Google_Service_YouTube_ThumbnailDetails $thumbnails) - { - $this->thumbnails = $thumbnails; - } - /** - * @return Google_Service_YouTube_ThumbnailDetails - */ - public function getThumbnails() - { - return $this->thumbnails; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/SubscriptionSubscriberSnippet.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/SubscriptionSubscriberSnippet.php deleted file mode 100644 index 722473b9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/SubscriptionSubscriberSnippet.php +++ /dev/null @@ -1,64 +0,0 @@ -channelId = $channelId; - } - public function getChannelId() - { - return $this->channelId; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - /** - * @param Google_Service_YouTube_ThumbnailDetails - */ - public function setThumbnails(Google_Service_YouTube_ThumbnailDetails $thumbnails) - { - $this->thumbnails = $thumbnails; - } - /** - * @return Google_Service_YouTube_ThumbnailDetails - */ - public function getThumbnails() - { - return $this->thumbnails; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/SuperChatEvent.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/SuperChatEvent.php deleted file mode 100644 index 53ea21d5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/SuperChatEvent.php +++ /dev/null @@ -1,64 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - 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; - } - /** - * @param Google_Service_YouTube_SuperChatEventSnippet - */ - public function setSnippet(Google_Service_YouTube_SuperChatEventSnippet $snippet) - { - $this->snippet = $snippet; - } - /** - * @return Google_Service_YouTube_SuperChatEventSnippet - */ - public function getSnippet() - { - return $this->snippet; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/SuperChatEventListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/SuperChatEventListResponse.php deleted file mode 100644 index c5ffc5f2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/SuperChatEventListResponse.php +++ /dev/null @@ -1,115 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setEventId($eventId) - { - $this->eventId = $eventId; - } - public function getEventId() - { - return $this->eventId; - } - /** - * @param Google_Service_YouTube_SuperChatEvent - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_YouTube_SuperChatEvent - */ - public function getItems() - { - return $this->items; - } - 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_YouTube_PageInfo - */ - public function setPageInfo(Google_Service_YouTube_PageInfo $pageInfo) - { - $this->pageInfo = $pageInfo; - } - /** - * @return Google_Service_YouTube_PageInfo - */ - public function getPageInfo() - { - return $this->pageInfo; - } - /** - * @param Google_Service_YouTube_TokenPagination - */ - public function setTokenPagination(Google_Service_YouTube_TokenPagination $tokenPagination) - { - $this->tokenPagination = $tokenPagination; - } - /** - * @return Google_Service_YouTube_TokenPagination - */ - public function getTokenPagination() - { - return $this->tokenPagination; - } - public function setVisitorId($visitorId) - { - $this->visitorId = $visitorId; - } - public function getVisitorId() - { - return $this->visitorId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/SuperChatEventSnippet.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/SuperChatEventSnippet.php deleted file mode 100644 index 395fb405..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/SuperChatEventSnippet.php +++ /dev/null @@ -1,150 +0,0 @@ -amountMicros = $amountMicros; - } - public function getAmountMicros() - { - return $this->amountMicros; - } - public function setChannelId($channelId) - { - $this->channelId = $channelId; - } - public function getChannelId() - { - return $this->channelId; - } - public function setCommentText($commentText) - { - $this->commentText = $commentText; - } - public function getCommentText() - { - return $this->commentText; - } - public function setCreatedAt($createdAt) - { - $this->createdAt = $createdAt; - } - public function getCreatedAt() - { - return $this->createdAt; - } - public function setCurrency($currency) - { - $this->currency = $currency; - } - public function getCurrency() - { - return $this->currency; - } - public function setDisplayString($displayString) - { - $this->displayString = $displayString; - } - public function getDisplayString() - { - return $this->displayString; - } - public function setIsSuperChatForGood($isSuperChatForGood) - { - $this->isSuperChatForGood = $isSuperChatForGood; - } - public function getIsSuperChatForGood() - { - return $this->isSuperChatForGood; - } - public function setIsSuperStickerEvent($isSuperStickerEvent) - { - $this->isSuperStickerEvent = $isSuperStickerEvent; - } - public function getIsSuperStickerEvent() - { - return $this->isSuperStickerEvent; - } - public function setMessageType($messageType) - { - $this->messageType = $messageType; - } - public function getMessageType() - { - return $this->messageType; - } - /** - * @param Google_Service_YouTube_Nonprofit - */ - public function setNonprofit(Google_Service_YouTube_Nonprofit $nonprofit) - { - $this->nonprofit = $nonprofit; - } - /** - * @return Google_Service_YouTube_Nonprofit - */ - public function getNonprofit() - { - return $this->nonprofit; - } - /** - * @param Google_Service_YouTube_SuperStickerMetadata - */ - public function setSuperStickerMetadata(Google_Service_YouTube_SuperStickerMetadata $superStickerMetadata) - { - $this->superStickerMetadata = $superStickerMetadata; - } - /** - * @return Google_Service_YouTube_SuperStickerMetadata - */ - public function getSuperStickerMetadata() - { - return $this->superStickerMetadata; - } - /** - * @param Google_Service_YouTube_ChannelProfileDetails - */ - public function setSupporterDetails(Google_Service_YouTube_ChannelProfileDetails $supporterDetails) - { - $this->supporterDetails = $supporterDetails; - } - /** - * @return Google_Service_YouTube_ChannelProfileDetails - */ - public function getSupporterDetails() - { - return $this->supporterDetails; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/SuperStickerMetadata.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/SuperStickerMetadata.php deleted file mode 100644 index 28a0deea..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/SuperStickerMetadata.php +++ /dev/null @@ -1,48 +0,0 @@ -altText = $altText; - } - public function getAltText() - { - return $this->altText; - } - public function setAltTextLanguage($altTextLanguage) - { - $this->altTextLanguage = $altTextLanguage; - } - public function getAltTextLanguage() - { - return $this->altTextLanguage; - } - public function setStickerId($stickerId) - { - $this->stickerId = $stickerId; - } - public function getStickerId() - { - return $this->stickerId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Thumbnail.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Thumbnail.php deleted file mode 100644 index 008a35a1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/Thumbnail.php +++ /dev/null @@ -1,48 +0,0 @@ -height = $height; - } - public function getHeight() - { - return $this->height; - } - public function setUrl($url) - { - $this->url = $url; - } - public function getUrl() - { - return $this->url; - } - public function setWidth($width) - { - $this->width = $width; - } - public function getWidth() - { - return $this->width; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ThumbnailDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ThumbnailDetails.php deleted file mode 100644 index 133092dd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ThumbnailDetails.php +++ /dev/null @@ -1,101 +0,0 @@ -default = $default; - } - /** - * @return Google_Service_YouTube_Thumbnail - */ - public function getDefault() - { - return $this->default; - } - /** - * @param Google_Service_YouTube_Thumbnail - */ - public function setHigh(Google_Service_YouTube_Thumbnail $high) - { - $this->high = $high; - } - /** - * @return Google_Service_YouTube_Thumbnail - */ - public function getHigh() - { - return $this->high; - } - /** - * @param Google_Service_YouTube_Thumbnail - */ - public function setMaxres(Google_Service_YouTube_Thumbnail $maxres) - { - $this->maxres = $maxres; - } - /** - * @return Google_Service_YouTube_Thumbnail - */ - public function getMaxres() - { - return $this->maxres; - } - /** - * @param Google_Service_YouTube_Thumbnail - */ - public function setMedium(Google_Service_YouTube_Thumbnail $medium) - { - $this->medium = $medium; - } - /** - * @return Google_Service_YouTube_Thumbnail - */ - public function getMedium() - { - return $this->medium; - } - /** - * @param Google_Service_YouTube_Thumbnail - */ - public function setStandard(Google_Service_YouTube_Thumbnail $standard) - { - $this->standard = $standard; - } - /** - * @return Google_Service_YouTube_Thumbnail - */ - public function getStandard() - { - return $this->standard; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ThumbnailSetResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ThumbnailSetResponse.php deleted file mode 100644 index 5256cabe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/ThumbnailSetResponse.php +++ /dev/null @@ -1,74 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setEventId($eventId) - { - $this->eventId = $eventId; - } - public function getEventId() - { - return $this->eventId; - } - /** - * @param Google_Service_YouTube_ThumbnailDetails - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_YouTube_ThumbnailDetails - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setVisitorId($visitorId) - { - $this->visitorId = $visitorId; - } - public function getVisitorId() - { - return $this->visitorId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/TokenPagination.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/TokenPagination.php deleted file mode 100644 index dbe5851d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/TokenPagination.php +++ /dev/null @@ -1,20 +0,0 @@ -ageGating = $ageGating; - } - /** - * @return Google_Service_YouTube_VideoAgeGating - */ - public function getAgeGating() - { - return $this->ageGating; - } - /** - * @param Google_Service_YouTube_VideoContentDetails - */ - public function setContentDetails(Google_Service_YouTube_VideoContentDetails $contentDetails) - { - $this->contentDetails = $contentDetails; - } - /** - * @return Google_Service_YouTube_VideoContentDetails - */ - public function getContentDetails() - { - return $this->contentDetails; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_YouTube_VideoFileDetails - */ - public function setFileDetails(Google_Service_YouTube_VideoFileDetails $fileDetails) - { - $this->fileDetails = $fileDetails; - } - /** - * @return Google_Service_YouTube_VideoFileDetails - */ - public function getFileDetails() - { - return $this->fileDetails; - } - 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; - } - /** - * @param Google_Service_YouTube_VideoLiveStreamingDetails - */ - public function setLiveStreamingDetails(Google_Service_YouTube_VideoLiveStreamingDetails $liveStreamingDetails) - { - $this->liveStreamingDetails = $liveStreamingDetails; - } - /** - * @return Google_Service_YouTube_VideoLiveStreamingDetails - */ - public function getLiveStreamingDetails() - { - return $this->liveStreamingDetails; - } - /** - * @param Google_Service_YouTube_VideoLocalization - */ - public function setLocalizations($localizations) - { - $this->localizations = $localizations; - } - /** - * @return Google_Service_YouTube_VideoLocalization - */ - public function getLocalizations() - { - return $this->localizations; - } - /** - * @param Google_Service_YouTube_VideoMonetizationDetails - */ - public function setMonetizationDetails(Google_Service_YouTube_VideoMonetizationDetails $monetizationDetails) - { - $this->monetizationDetails = $monetizationDetails; - } - /** - * @return Google_Service_YouTube_VideoMonetizationDetails - */ - public function getMonetizationDetails() - { - return $this->monetizationDetails; - } - /** - * @param Google_Service_YouTube_VideoPlayer - */ - public function setPlayer(Google_Service_YouTube_VideoPlayer $player) - { - $this->player = $player; - } - /** - * @return Google_Service_YouTube_VideoPlayer - */ - public function getPlayer() - { - return $this->player; - } - /** - * @param Google_Service_YouTube_VideoProcessingDetails - */ - public function setProcessingDetails(Google_Service_YouTube_VideoProcessingDetails $processingDetails) - { - $this->processingDetails = $processingDetails; - } - /** - * @return Google_Service_YouTube_VideoProcessingDetails - */ - public function getProcessingDetails() - { - return $this->processingDetails; - } - /** - * @param Google_Service_YouTube_VideoProjectDetails - */ - public function setProjectDetails(Google_Service_YouTube_VideoProjectDetails $projectDetails) - { - $this->projectDetails = $projectDetails; - } - /** - * @return Google_Service_YouTube_VideoProjectDetails - */ - public function getProjectDetails() - { - return $this->projectDetails; - } - /** - * @param Google_Service_YouTube_VideoRecordingDetails - */ - public function setRecordingDetails(Google_Service_YouTube_VideoRecordingDetails $recordingDetails) - { - $this->recordingDetails = $recordingDetails; - } - /** - * @return Google_Service_YouTube_VideoRecordingDetails - */ - public function getRecordingDetails() - { - return $this->recordingDetails; - } - /** - * @param Google_Service_YouTube_VideoSnippet - */ - public function setSnippet(Google_Service_YouTube_VideoSnippet $snippet) - { - $this->snippet = $snippet; - } - /** - * @return Google_Service_YouTube_VideoSnippet - */ - public function getSnippet() - { - return $this->snippet; - } - /** - * @param Google_Service_YouTube_VideoStatistics - */ - public function setStatistics(Google_Service_YouTube_VideoStatistics $statistics) - { - $this->statistics = $statistics; - } - /** - * @return Google_Service_YouTube_VideoStatistics - */ - public function getStatistics() - { - return $this->statistics; - } - /** - * @param Google_Service_YouTube_VideoStatus - */ - public function setStatus(Google_Service_YouTube_VideoStatus $status) - { - $this->status = $status; - } - /** - * @return Google_Service_YouTube_VideoStatus - */ - public function getStatus() - { - return $this->status; - } - /** - * @param Google_Service_YouTube_VideoSuggestions - */ - public function setSuggestions(Google_Service_YouTube_VideoSuggestions $suggestions) - { - $this->suggestions = $suggestions; - } - /** - * @return Google_Service_YouTube_VideoSuggestions - */ - public function getSuggestions() - { - return $this->suggestions; - } - /** - * @param Google_Service_YouTube_VideoTopicDetails - */ - public function setTopicDetails(Google_Service_YouTube_VideoTopicDetails $topicDetails) - { - $this->topicDetails = $topicDetails; - } - /** - * @return Google_Service_YouTube_VideoTopicDetails - */ - public function getTopicDetails() - { - return $this->topicDetails; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoAbuseReport.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoAbuseReport.php deleted file mode 100644 index d7b3e240..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoAbuseReport.php +++ /dev/null @@ -1,66 +0,0 @@ -comments = $comments; - } - public function getComments() - { - return $this->comments; - } - public function setLanguage($language) - { - $this->language = $language; - } - public function getLanguage() - { - return $this->language; - } - public function setReasonId($reasonId) - { - $this->reasonId = $reasonId; - } - public function getReasonId() - { - return $this->reasonId; - } - public function setSecondaryReasonId($secondaryReasonId) - { - $this->secondaryReasonId = $secondaryReasonId; - } - public function getSecondaryReasonId() - { - return $this->secondaryReasonId; - } - public function setVideoId($videoId) - { - $this->videoId = $videoId; - } - public function getVideoId() - { - return $this->videoId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoAbuseReportReason.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoAbuseReportReason.php deleted file mode 100644 index 2cc78cce..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoAbuseReportReason.php +++ /dev/null @@ -1,64 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - 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; - } - /** - * @param Google_Service_YouTube_VideoAbuseReportReasonSnippet - */ - public function setSnippet(Google_Service_YouTube_VideoAbuseReportReasonSnippet $snippet) - { - $this->snippet = $snippet; - } - /** - * @return Google_Service_YouTube_VideoAbuseReportReasonSnippet - */ - public function getSnippet() - { - return $this->snippet; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoAbuseReportReasonListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoAbuseReportReasonListResponse.php deleted file mode 100644 index 62588038..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoAbuseReportReasonListResponse.php +++ /dev/null @@ -1,74 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setEventId($eventId) - { - $this->eventId = $eventId; - } - public function getEventId() - { - return $this->eventId; - } - /** - * @param Google_Service_YouTube_VideoAbuseReportReason - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_YouTube_VideoAbuseReportReason - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setVisitorId($visitorId) - { - $this->visitorId = $visitorId; - } - public function getVisitorId() - { - return $this->visitorId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoAbuseReportReasonSnippet.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoAbuseReportReasonSnippet.php deleted file mode 100644 index 39f2fad5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoAbuseReportReasonSnippet.php +++ /dev/null @@ -1,47 +0,0 @@ -label = $label; - } - public function getLabel() - { - return $this->label; - } - /** - * @param Google_Service_YouTube_VideoAbuseReportSecondaryReason - */ - public function setSecondaryReasons($secondaryReasons) - { - $this->secondaryReasons = $secondaryReasons; - } - /** - * @return Google_Service_YouTube_VideoAbuseReportSecondaryReason - */ - public function getSecondaryReasons() - { - return $this->secondaryReasons; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoAbuseReportSecondaryReason.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoAbuseReportSecondaryReason.php deleted file mode 100644 index 1cca94cd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoAbuseReportSecondaryReason.php +++ /dev/null @@ -1,39 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setLabel($label) - { - $this->label = $label; - } - public function getLabel() - { - return $this->label; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoAgeGating.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoAgeGating.php deleted file mode 100644 index b1270636..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoAgeGating.php +++ /dev/null @@ -1,48 +0,0 @@ -alcoholContent = $alcoholContent; - } - public function getAlcoholContent() - { - return $this->alcoholContent; - } - public function setRestricted($restricted) - { - $this->restricted = $restricted; - } - public function getRestricted() - { - return $this->restricted; - } - public function setVideoGameRating($videoGameRating) - { - $this->videoGameRating = $videoGameRating; - } - public function getVideoGameRating() - { - return $this->videoGameRating; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoCategory.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoCategory.php deleted file mode 100644 index 5ed90dfe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoCategory.php +++ /dev/null @@ -1,64 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - 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; - } - /** - * @param Google_Service_YouTube_VideoCategorySnippet - */ - public function setSnippet(Google_Service_YouTube_VideoCategorySnippet $snippet) - { - $this->snippet = $snippet; - } - /** - * @return Google_Service_YouTube_VideoCategorySnippet - */ - public function getSnippet() - { - return $this->snippet; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoCategoryListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoCategoryListResponse.php deleted file mode 100644 index d0ffc1cc..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoCategoryListResponse.php +++ /dev/null @@ -1,124 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setEventId($eventId) - { - $this->eventId = $eventId; - } - public function getEventId() - { - return $this->eventId; - } - /** - * @param Google_Service_YouTube_VideoCategory - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_YouTube_VideoCategory - */ - public function getItems() - { - return $this->items; - } - 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_YouTube_PageInfo - */ - public function setPageInfo(Google_Service_YouTube_PageInfo $pageInfo) - { - $this->pageInfo = $pageInfo; - } - /** - * @return Google_Service_YouTube_PageInfo - */ - public function getPageInfo() - { - return $this->pageInfo; - } - public function setPrevPageToken($prevPageToken) - { - $this->prevPageToken = $prevPageToken; - } - public function getPrevPageToken() - { - return $this->prevPageToken; - } - /** - * @param Google_Service_YouTube_TokenPagination - */ - public function setTokenPagination(Google_Service_YouTube_TokenPagination $tokenPagination) - { - $this->tokenPagination = $tokenPagination; - } - /** - * @return Google_Service_YouTube_TokenPagination - */ - public function getTokenPagination() - { - return $this->tokenPagination; - } - public function setVisitorId($visitorId) - { - $this->visitorId = $visitorId; - } - public function getVisitorId() - { - return $this->visitorId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoCategorySnippet.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoCategorySnippet.php deleted file mode 100644 index f02099c9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoCategorySnippet.php +++ /dev/null @@ -1,48 +0,0 @@ -assignable = $assignable; - } - public function getAssignable() - { - return $this->assignable; - } - public function setChannelId($channelId) - { - $this->channelId = $channelId; - } - public function getChannelId() - { - return $this->channelId; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoContentDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoContentDetails.php deleted file mode 100644 index d9abc9a5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoContentDetails.php +++ /dev/null @@ -1,132 +0,0 @@ -caption = $caption; - } - public function getCaption() - { - return $this->caption; - } - /** - * @param Google_Service_YouTube_ContentRating - */ - public function setContentRating(Google_Service_YouTube_ContentRating $contentRating) - { - $this->contentRating = $contentRating; - } - /** - * @return Google_Service_YouTube_ContentRating - */ - public function getContentRating() - { - return $this->contentRating; - } - /** - * @param Google_Service_YouTube_AccessPolicy - */ - public function setCountryRestriction(Google_Service_YouTube_AccessPolicy $countryRestriction) - { - $this->countryRestriction = $countryRestriction; - } - /** - * @return Google_Service_YouTube_AccessPolicy - */ - public function getCountryRestriction() - { - return $this->countryRestriction; - } - public function setDefinition($definition) - { - $this->definition = $definition; - } - public function getDefinition() - { - return $this->definition; - } - public function setDimension($dimension) - { - $this->dimension = $dimension; - } - public function getDimension() - { - return $this->dimension; - } - public function setDuration($duration) - { - $this->duration = $duration; - } - public function getDuration() - { - return $this->duration; - } - public function setHasCustomThumbnail($hasCustomThumbnail) - { - $this->hasCustomThumbnail = $hasCustomThumbnail; - } - public function getHasCustomThumbnail() - { - return $this->hasCustomThumbnail; - } - public function setLicensedContent($licensedContent) - { - $this->licensedContent = $licensedContent; - } - public function getLicensedContent() - { - return $this->licensedContent; - } - public function setProjection($projection) - { - $this->projection = $projection; - } - public function getProjection() - { - return $this->projection; - } - /** - * @param Google_Service_YouTube_VideoContentDetailsRegionRestriction - */ - public function setRegionRestriction(Google_Service_YouTube_VideoContentDetailsRegionRestriction $regionRestriction) - { - $this->regionRestriction = $regionRestriction; - } - /** - * @return Google_Service_YouTube_VideoContentDetailsRegionRestriction - */ - public function getRegionRestriction() - { - return $this->regionRestriction; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoContentDetailsRegionRestriction.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoContentDetailsRegionRestriction.php deleted file mode 100644 index 018ecc8a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoContentDetailsRegionRestriction.php +++ /dev/null @@ -1,40 +0,0 @@ -allowed = $allowed; - } - public function getAllowed() - { - return $this->allowed; - } - public function setBlocked($blocked) - { - $this->blocked = $blocked; - } - public function getBlocked() - { - return $this->blocked; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoFileDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoFileDetails.php deleted file mode 100644 index 38ea3554..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoFileDetails.php +++ /dev/null @@ -1,117 +0,0 @@ -audioStreams = $audioStreams; - } - /** - * @return Google_Service_YouTube_VideoFileDetailsAudioStream - */ - public function getAudioStreams() - { - return $this->audioStreams; - } - public function setBitrateBps($bitrateBps) - { - $this->bitrateBps = $bitrateBps; - } - public function getBitrateBps() - { - return $this->bitrateBps; - } - public function setContainer($container) - { - $this->container = $container; - } - public function getContainer() - { - return $this->container; - } - public function setCreationTime($creationTime) - { - $this->creationTime = $creationTime; - } - public function getCreationTime() - { - return $this->creationTime; - } - public function setDurationMs($durationMs) - { - $this->durationMs = $durationMs; - } - public function getDurationMs() - { - return $this->durationMs; - } - public function setFileName($fileName) - { - $this->fileName = $fileName; - } - public function getFileName() - { - return $this->fileName; - } - public function setFileSize($fileSize) - { - $this->fileSize = $fileSize; - } - public function getFileSize() - { - return $this->fileSize; - } - public function setFileType($fileType) - { - $this->fileType = $fileType; - } - public function getFileType() - { - return $this->fileType; - } - /** - * @param Google_Service_YouTube_VideoFileDetailsVideoStream - */ - public function setVideoStreams($videoStreams) - { - $this->videoStreams = $videoStreams; - } - /** - * @return Google_Service_YouTube_VideoFileDetailsVideoStream - */ - public function getVideoStreams() - { - return $this->videoStreams; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoFileDetailsAudioStream.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoFileDetailsAudioStream.php deleted file mode 100644 index e082b885..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoFileDetailsAudioStream.php +++ /dev/null @@ -1,57 +0,0 @@ -bitrateBps = $bitrateBps; - } - public function getBitrateBps() - { - return $this->bitrateBps; - } - public function setChannelCount($channelCount) - { - $this->channelCount = $channelCount; - } - public function getChannelCount() - { - return $this->channelCount; - } - public function setCodec($codec) - { - $this->codec = $codec; - } - public function getCodec() - { - return $this->codec; - } - public function setVendor($vendor) - { - $this->vendor = $vendor; - } - public function getVendor() - { - return $this->vendor; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoFileDetailsVideoStream.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoFileDetailsVideoStream.php deleted file mode 100644 index 6a62cbb8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoFileDetailsVideoStream.php +++ /dev/null @@ -1,93 +0,0 @@ -aspectRatio = $aspectRatio; - } - public function getAspectRatio() - { - return $this->aspectRatio; - } - public function setBitrateBps($bitrateBps) - { - $this->bitrateBps = $bitrateBps; - } - public function getBitrateBps() - { - return $this->bitrateBps; - } - public function setCodec($codec) - { - $this->codec = $codec; - } - public function getCodec() - { - return $this->codec; - } - public function setFrameRateFps($frameRateFps) - { - $this->frameRateFps = $frameRateFps; - } - public function getFrameRateFps() - { - return $this->frameRateFps; - } - public function setHeightPixels($heightPixels) - { - $this->heightPixels = $heightPixels; - } - public function getHeightPixels() - { - return $this->heightPixels; - } - public function setRotation($rotation) - { - $this->rotation = $rotation; - } - public function getRotation() - { - return $this->rotation; - } - public function setVendor($vendor) - { - $this->vendor = $vendor; - } - public function getVendor() - { - return $this->vendor; - } - public function setWidthPixels($widthPixels) - { - $this->widthPixels = $widthPixels; - } - public function getWidthPixels() - { - return $this->widthPixels; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoGetRatingResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoGetRatingResponse.php deleted file mode 100644 index 989f3ffa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoGetRatingResponse.php +++ /dev/null @@ -1,74 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setEventId($eventId) - { - $this->eventId = $eventId; - } - public function getEventId() - { - return $this->eventId; - } - /** - * @param Google_Service_YouTube_VideoRating - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_YouTube_VideoRating - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setVisitorId($visitorId) - { - $this->visitorId = $visitorId; - } - public function getVisitorId() - { - return $this->visitorId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoListResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoListResponse.php deleted file mode 100644 index 034705e3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoListResponse.php +++ /dev/null @@ -1,124 +0,0 @@ -etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setEventId($eventId) - { - $this->eventId = $eventId; - } - public function getEventId() - { - return $this->eventId; - } - /** - * @param Google_Service_YouTube_Video - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_YouTube_Video - */ - public function getItems() - { - return $this->items; - } - 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_YouTube_PageInfo - */ - public function setPageInfo(Google_Service_YouTube_PageInfo $pageInfo) - { - $this->pageInfo = $pageInfo; - } - /** - * @return Google_Service_YouTube_PageInfo - */ - public function getPageInfo() - { - return $this->pageInfo; - } - public function setPrevPageToken($prevPageToken) - { - $this->prevPageToken = $prevPageToken; - } - public function getPrevPageToken() - { - return $this->prevPageToken; - } - /** - * @param Google_Service_YouTube_TokenPagination - */ - public function setTokenPagination(Google_Service_YouTube_TokenPagination $tokenPagination) - { - $this->tokenPagination = $tokenPagination; - } - /** - * @return Google_Service_YouTube_TokenPagination - */ - public function getTokenPagination() - { - return $this->tokenPagination; - } - public function setVisitorId($visitorId) - { - $this->visitorId = $visitorId; - } - public function getVisitorId() - { - return $this->visitorId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoLiveStreamingDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoLiveStreamingDetails.php deleted file mode 100644 index 8641bcd9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoLiveStreamingDetails.php +++ /dev/null @@ -1,75 +0,0 @@ -activeLiveChatId = $activeLiveChatId; - } - public function getActiveLiveChatId() - { - return $this->activeLiveChatId; - } - public function setActualEndTime($actualEndTime) - { - $this->actualEndTime = $actualEndTime; - } - public function getActualEndTime() - { - return $this->actualEndTime; - } - public function setActualStartTime($actualStartTime) - { - $this->actualStartTime = $actualStartTime; - } - public function getActualStartTime() - { - return $this->actualStartTime; - } - public function setConcurrentViewers($concurrentViewers) - { - $this->concurrentViewers = $concurrentViewers; - } - public function getConcurrentViewers() - { - return $this->concurrentViewers; - } - public function setScheduledEndTime($scheduledEndTime) - { - $this->scheduledEndTime = $scheduledEndTime; - } - public function getScheduledEndTime() - { - return $this->scheduledEndTime; - } - public function setScheduledStartTime($scheduledStartTime) - { - $this->scheduledStartTime = $scheduledStartTime; - } - public function getScheduledStartTime() - { - return $this->scheduledStartTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoLocalization.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoLocalization.php deleted file mode 100644 index c24831cf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoLocalization.php +++ /dev/null @@ -1,39 +0,0 @@ -description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoMonetizationDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoMonetizationDetails.php deleted file mode 100644 index f3adeae7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoMonetizationDetails.php +++ /dev/null @@ -1,37 +0,0 @@ -access = $access; - } - /** - * @return Google_Service_YouTube_AccessPolicy - */ - public function getAccess() - { - return $this->access; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoPlayer.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoPlayer.php deleted file mode 100644 index 024619e8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoPlayer.php +++ /dev/null @@ -1,48 +0,0 @@ -embedHeight = $embedHeight; - } - public function getEmbedHeight() - { - return $this->embedHeight; - } - public function setEmbedHtml($embedHtml) - { - $this->embedHtml = $embedHtml; - } - public function getEmbedHtml() - { - return $this->embedHtml; - } - public function setEmbedWidth($embedWidth) - { - $this->embedWidth = $embedWidth; - } - public function getEmbedWidth() - { - return $this->embedWidth; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoProcessingDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoProcessingDetails.php deleted file mode 100644 index 7a582226..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoProcessingDetails.php +++ /dev/null @@ -1,100 +0,0 @@ -editorSuggestionsAvailability = $editorSuggestionsAvailability; - } - public function getEditorSuggestionsAvailability() - { - return $this->editorSuggestionsAvailability; - } - public function setFileDetailsAvailability($fileDetailsAvailability) - { - $this->fileDetailsAvailability = $fileDetailsAvailability; - } - public function getFileDetailsAvailability() - { - return $this->fileDetailsAvailability; - } - public function setProcessingFailureReason($processingFailureReason) - { - $this->processingFailureReason = $processingFailureReason; - } - public function getProcessingFailureReason() - { - return $this->processingFailureReason; - } - public function setProcessingIssuesAvailability($processingIssuesAvailability) - { - $this->processingIssuesAvailability = $processingIssuesAvailability; - } - public function getProcessingIssuesAvailability() - { - return $this->processingIssuesAvailability; - } - /** - * @param Google_Service_YouTube_VideoProcessingDetailsProcessingProgress - */ - public function setProcessingProgress(Google_Service_YouTube_VideoProcessingDetailsProcessingProgress $processingProgress) - { - $this->processingProgress = $processingProgress; - } - /** - * @return Google_Service_YouTube_VideoProcessingDetailsProcessingProgress - */ - public function getProcessingProgress() - { - return $this->processingProgress; - } - public function setProcessingStatus($processingStatus) - { - $this->processingStatus = $processingStatus; - } - public function getProcessingStatus() - { - return $this->processingStatus; - } - public function setTagSuggestionsAvailability($tagSuggestionsAvailability) - { - $this->tagSuggestionsAvailability = $tagSuggestionsAvailability; - } - public function getTagSuggestionsAvailability() - { - return $this->tagSuggestionsAvailability; - } - public function setThumbnailsAvailability($thumbnailsAvailability) - { - $this->thumbnailsAvailability = $thumbnailsAvailability; - } - public function getThumbnailsAvailability() - { - return $this->thumbnailsAvailability; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoProcessingDetailsProcessingProgress.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoProcessingDetailsProcessingProgress.php deleted file mode 100644 index 72d08196..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoProcessingDetailsProcessingProgress.php +++ /dev/null @@ -1,48 +0,0 @@ -partsProcessed = $partsProcessed; - } - public function getPartsProcessed() - { - return $this->partsProcessed; - } - public function setPartsTotal($partsTotal) - { - $this->partsTotal = $partsTotal; - } - public function getPartsTotal() - { - return $this->partsTotal; - } - public function setTimeLeftMs($timeLeftMs) - { - $this->timeLeftMs = $timeLeftMs; - } - public function getTimeLeftMs() - { - return $this->timeLeftMs; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoProjectDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoProjectDetails.php deleted file mode 100644 index 4be655b1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoProjectDetails.php +++ /dev/null @@ -1,31 +0,0 @@ -tags = $tags; - } - public function getTags() - { - return $this->tags; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoRating.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoRating.php deleted file mode 100644 index bdcc2d6c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoRating.php +++ /dev/null @@ -1,39 +0,0 @@ -rating = $rating; - } - public function getRating() - { - return $this->rating; - } - public function setVideoId($videoId) - { - $this->videoId = $videoId; - } - public function getVideoId() - { - return $this->videoId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoRecordingDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoRecordingDetails.php deleted file mode 100644 index e98d9601..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoRecordingDetails.php +++ /dev/null @@ -1,55 +0,0 @@ -location = $location; - } - /** - * @return Google_Service_YouTube_GeoPoint - */ - public function getLocation() - { - return $this->location; - } - public function setLocationDescription($locationDescription) - { - $this->locationDescription = $locationDescription; - } - public function getLocationDescription() - { - return $this->locationDescription; - } - public function setRecordingDate($recordingDate) - { - $this->recordingDate = $recordingDate; - } - public function getRecordingDate() - { - return $this->recordingDate; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoSnippet.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoSnippet.php deleted file mode 100644 index d9f63c10..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoSnippet.php +++ /dev/null @@ -1,144 +0,0 @@ -categoryId = $categoryId; - } - public function getCategoryId() - { - return $this->categoryId; - } - public function setChannelId($channelId) - { - $this->channelId = $channelId; - } - public function getChannelId() - { - return $this->channelId; - } - public function setChannelTitle($channelTitle) - { - $this->channelTitle = $channelTitle; - } - public function getChannelTitle() - { - return $this->channelTitle; - } - public function setDefaultAudioLanguage($defaultAudioLanguage) - { - $this->defaultAudioLanguage = $defaultAudioLanguage; - } - public function getDefaultAudioLanguage() - { - return $this->defaultAudioLanguage; - } - public function setDefaultLanguage($defaultLanguage) - { - $this->defaultLanguage = $defaultLanguage; - } - public function getDefaultLanguage() - { - return $this->defaultLanguage; - } - public function setDescription($description) - { - $this->description = $description; - } - public function getDescription() - { - return $this->description; - } - public function setLiveBroadcastContent($liveBroadcastContent) - { - $this->liveBroadcastContent = $liveBroadcastContent; - } - public function getLiveBroadcastContent() - { - return $this->liveBroadcastContent; - } - /** - * @param Google_Service_YouTube_VideoLocalization - */ - public function setLocalized(Google_Service_YouTube_VideoLocalization $localized) - { - $this->localized = $localized; - } - /** - * @return Google_Service_YouTube_VideoLocalization - */ - public function getLocalized() - { - return $this->localized; - } - public function setPublishedAt($publishedAt) - { - $this->publishedAt = $publishedAt; - } - public function getPublishedAt() - { - return $this->publishedAt; - } - public function setTags($tags) - { - $this->tags = $tags; - } - public function getTags() - { - return $this->tags; - } - /** - * @param Google_Service_YouTube_ThumbnailDetails - */ - public function setThumbnails(Google_Service_YouTube_ThumbnailDetails $thumbnails) - { - $this->thumbnails = $thumbnails; - } - /** - * @return Google_Service_YouTube_ThumbnailDetails - */ - public function getThumbnails() - { - return $this->thumbnails; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoStatistics.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoStatistics.php deleted file mode 100644 index 6570fe49..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoStatistics.php +++ /dev/null @@ -1,66 +0,0 @@ -commentCount = $commentCount; - } - public function getCommentCount() - { - return $this->commentCount; - } - public function setDislikeCount($dislikeCount) - { - $this->dislikeCount = $dislikeCount; - } - public function getDislikeCount() - { - return $this->dislikeCount; - } - public function setFavoriteCount($favoriteCount) - { - $this->favoriteCount = $favoriteCount; - } - public function getFavoriteCount() - { - return $this->favoriteCount; - } - public function setLikeCount($likeCount) - { - $this->likeCount = $likeCount; - } - public function getLikeCount() - { - return $this->likeCount; - } - public function setViewCount($viewCount) - { - $this->viewCount = $viewCount; - } - public function getViewCount() - { - return $this->viewCount; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoStatus.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoStatus.php deleted file mode 100644 index 9968bb5e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoStatus.php +++ /dev/null @@ -1,111 +0,0 @@ -embeddable = $embeddable; - } - public function getEmbeddable() - { - return $this->embeddable; - } - public function setFailureReason($failureReason) - { - $this->failureReason = $failureReason; - } - public function getFailureReason() - { - return $this->failureReason; - } - public function setLicense($license) - { - $this->license = $license; - } - public function getLicense() - { - return $this->license; - } - public function setMadeForKids($madeForKids) - { - $this->madeForKids = $madeForKids; - } - public function getMadeForKids() - { - return $this->madeForKids; - } - public function setPrivacyStatus($privacyStatus) - { - $this->privacyStatus = $privacyStatus; - } - public function getPrivacyStatus() - { - return $this->privacyStatus; - } - public function setPublicStatsViewable($publicStatsViewable) - { - $this->publicStatsViewable = $publicStatsViewable; - } - public function getPublicStatsViewable() - { - return $this->publicStatsViewable; - } - public function setPublishAt($publishAt) - { - $this->publishAt = $publishAt; - } - public function getPublishAt() - { - return $this->publishAt; - } - public function setRejectionReason($rejectionReason) - { - $this->rejectionReason = $rejectionReason; - } - public function getRejectionReason() - { - return $this->rejectionReason; - } - public function setSelfDeclaredMadeForKids($selfDeclaredMadeForKids) - { - $this->selfDeclaredMadeForKids = $selfDeclaredMadeForKids; - } - public function getSelfDeclaredMadeForKids() - { - return $this->selfDeclaredMadeForKids; - } - public function setUploadStatus($uploadStatus) - { - $this->uploadStatus = $uploadStatus; - } - public function getUploadStatus() - { - return $this->uploadStatus; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoSuggestions.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoSuggestions.php deleted file mode 100644 index 17935653..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoSuggestions.php +++ /dev/null @@ -1,74 +0,0 @@ -editorSuggestions = $editorSuggestions; - } - public function getEditorSuggestions() - { - return $this->editorSuggestions; - } - public function setProcessingErrors($processingErrors) - { - $this->processingErrors = $processingErrors; - } - public function getProcessingErrors() - { - return $this->processingErrors; - } - public function setProcessingHints($processingHints) - { - $this->processingHints = $processingHints; - } - public function getProcessingHints() - { - return $this->processingHints; - } - public function setProcessingWarnings($processingWarnings) - { - $this->processingWarnings = $processingWarnings; - } - public function getProcessingWarnings() - { - return $this->processingWarnings; - } - /** - * @param Google_Service_YouTube_VideoSuggestionsTagSuggestion - */ - public function setTagSuggestions($tagSuggestions) - { - $this->tagSuggestions = $tagSuggestions; - } - /** - * @return Google_Service_YouTube_VideoSuggestionsTagSuggestion - */ - public function getTagSuggestions() - { - return $this->tagSuggestions; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoSuggestionsTagSuggestion.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoSuggestionsTagSuggestion.php deleted file mode 100644 index 8895b991..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoSuggestionsTagSuggestion.php +++ /dev/null @@ -1,40 +0,0 @@ -categoryRestricts = $categoryRestricts; - } - public function getCategoryRestricts() - { - return $this->categoryRestricts; - } - public function setTag($tag) - { - $this->tag = $tag; - } - public function getTag() - { - return $this->tag; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoTopicDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoTopicDetails.php deleted file mode 100644 index 8cadb796..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/VideoTopicDetails.php +++ /dev/null @@ -1,49 +0,0 @@ -relevantTopicIds = $relevantTopicIds; - } - public function getRelevantTopicIds() - { - return $this->relevantTopicIds; - } - public function setTopicCategories($topicCategories) - { - $this->topicCategories = $topicCategories; - } - public function getTopicCategories() - { - return $this->topicCategories; - } - public function setTopicIds($topicIds) - { - $this->topicIds = $topicIds; - } - public function getTopicIds() - { - return $this->topicIds; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/WatchSettings.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/WatchSettings.php deleted file mode 100644 index a17316a7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTube/WatchSettings.php +++ /dev/null @@ -1,48 +0,0 @@ -backgroundColor = $backgroundColor; - } - public function getBackgroundColor() - { - return $this->backgroundColor; - } - public function setFeaturedPlaylistId($featuredPlaylistId) - { - $this->featuredPlaylistId = $featuredPlaylistId; - } - public function getFeaturedPlaylistId() - { - return $this->featuredPlaylistId; - } - public function setTextColor($textColor) - { - $this->textColor = $textColor; - } - public function getTextColor() - { - return $this->textColor; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeAnalytics.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeAnalytics.php deleted file mode 100644 index 84134c50..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeAnalytics.php +++ /dev/null @@ -1,235 +0,0 @@ - - * Retrieves your YouTube Analytics data.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_YouTubeAnalytics extends Google_Service -{ - /** Manage your YouTube account. */ - const YOUTUBE = - "https://www.googleapis.com/auth/youtube"; - /** View your YouTube account. */ - const YOUTUBE_READONLY = - "https://www.googleapis.com/auth/youtube.readonly"; - /** View and manage your assets and associated content on YouTube. */ - const YOUTUBEPARTNER = - "https://www.googleapis.com/auth/youtubepartner"; - /** View monetary and non-monetary YouTube Analytics reports for your YouTube content. */ - const YT_ANALYTICS_MONETARY_READONLY = - "https://www.googleapis.com/auth/yt-analytics-monetary.readonly"; - /** View YouTube Analytics reports for your YouTube content. */ - const YT_ANALYTICS_READONLY = - "https://www.googleapis.com/auth/yt-analytics.readonly"; - - public $groupItems; - public $groups; - public $reports; - - /** - * Constructs the internal representation of the YouTubeAnalytics service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://youtubeanalytics.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v2'; - $this->serviceName = 'youtubeAnalytics'; - - $this->groupItems = new Google_Service_YouTubeAnalytics_Resource_GroupItems( - $this, - $this->serviceName, - 'groupItems', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'v2/groupItems', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'id' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'insert' => array( - 'path' => 'v2/groupItems', - 'httpMethod' => 'POST', - 'parameters' => array( - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'v2/groupItems', - 'httpMethod' => 'GET', - 'parameters' => array( - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'groupId' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->groups = new Google_Service_YouTubeAnalytics_Resource_Groups( - $this, - $this->serviceName, - 'groups', - array( - 'methods' => array( - 'delete' => array( - 'path' => 'v2/groups', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'id' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'insert' => array( - 'path' => 'v2/groups', - 'httpMethod' => 'POST', - 'parameters' => array( - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'v2/groups', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'id' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'mine' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - ), - ),'update' => array( - 'path' => 'v2/groups', - 'httpMethod' => 'PUT', - 'parameters' => array( - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->reports = new Google_Service_YouTubeAnalytics_Resource_Reports( - $this, - $this->serviceName, - 'reports', - array( - 'methods' => array( - 'query' => array( - 'path' => 'v2/reports', - 'httpMethod' => 'GET', - 'parameters' => array( - 'maxResults' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'filters' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'sort' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'startDate' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'metrics' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'ids' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'includeHistoricalChannelData' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'currency' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'startIndex' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'dimensions' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'endDate' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeAnalytics/EmptyResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeAnalytics/EmptyResponse.php deleted file mode 100644 index 178e21b0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeAnalytics/EmptyResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -errors = $errors; - } - /** - * @return Google_Service_YouTubeAnalytics_Errors - */ - public function getErrors() - { - return $this->errors; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeAnalytics/ErrorProto.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeAnalytics/ErrorProto.php deleted file mode 100644 index a233b2ca..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeAnalytics/ErrorProto.php +++ /dev/null @@ -1,85 +0,0 @@ -argument = $argument; - } - public function getArgument() - { - return $this->argument; - } - public function setCode($code) - { - $this->code = $code; - } - public function getCode() - { - return $this->code; - } - public function setDebugInfo($debugInfo) - { - $this->debugInfo = $debugInfo; - } - public function getDebugInfo() - { - return $this->debugInfo; - } - public function setDomain($domain) - { - $this->domain = $domain; - } - public function getDomain() - { - return $this->domain; - } - public function setExternalErrorMessage($externalErrorMessage) - { - $this->externalErrorMessage = $externalErrorMessage; - } - public function getExternalErrorMessage() - { - return $this->externalErrorMessage; - } - public function setLocation($location) - { - $this->location = $location; - } - public function getLocation() - { - return $this->location; - } - public function setLocationType($locationType) - { - $this->locationType = $locationType; - } - public function getLocationType() - { - return $this->locationType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeAnalytics/Errors.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeAnalytics/Errors.php deleted file mode 100644 index 4fa48403..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeAnalytics/Errors.php +++ /dev/null @@ -1,56 +0,0 @@ -code = $code; - } - public function getCode() - { - return $this->code; - } - /** - * @param Google_Service_YouTubeAnalytics_ErrorProto - */ - public function setError($error) - { - $this->error = $error; - } - /** - * @return Google_Service_YouTubeAnalytics_ErrorProto - */ - public function getError() - { - return $this->error; - } - public function setRequestId($requestId) - { - $this->requestId = $requestId; - } - public function getRequestId() - { - return $this->requestId; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeAnalytics/Group.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeAnalytics/Group.php deleted file mode 100644 index 5c222280..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeAnalytics/Group.php +++ /dev/null @@ -1,96 +0,0 @@ -contentDetails = $contentDetails; - } - /** - * @return Google_Service_YouTubeAnalytics_GroupContentDetails - */ - public function getContentDetails() - { - return $this->contentDetails; - } - /** - * @param Google_Service_YouTubeAnalytics_Errors - */ - public function setErrors(Google_Service_YouTubeAnalytics_Errors $errors) - { - $this->errors = $errors; - } - /** - * @return Google_Service_YouTubeAnalytics_Errors - */ - public function getErrors() - { - return $this->errors; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - 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; - } - /** - * @param Google_Service_YouTubeAnalytics_GroupSnippet - */ - public function setSnippet(Google_Service_YouTubeAnalytics_GroupSnippet $snippet) - { - $this->snippet = $snippet; - } - /** - * @return Google_Service_YouTubeAnalytics_GroupSnippet - */ - public function getSnippet() - { - return $this->snippet; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeAnalytics/GroupContentDetails.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeAnalytics/GroupContentDetails.php deleted file mode 100644 index 10c8f4f2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeAnalytics/GroupContentDetails.php +++ /dev/null @@ -1,39 +0,0 @@ -itemCount = $itemCount; - } - public function getItemCount() - { - return $this->itemCount; - } - public function setItemType($itemType) - { - $this->itemType = $itemType; - } - public function getItemType() - { - return $this->itemType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeAnalytics/GroupItem.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeAnalytics/GroupItem.php deleted file mode 100644 index b0d189f8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeAnalytics/GroupItem.php +++ /dev/null @@ -1,89 +0,0 @@ -errors = $errors; - } - /** - * @return Google_Service_YouTubeAnalytics_Errors - */ - public function getErrors() - { - return $this->errors; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - public function setGroupId($groupId) - { - $this->groupId = $groupId; - } - public function getGroupId() - { - return $this->groupId; - } - 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; - } - /** - * @param Google_Service_YouTubeAnalytics_GroupItemResource - */ - public function setResource(Google_Service_YouTubeAnalytics_GroupItemResource $resource) - { - $this->resource = $resource; - } - /** - * @return Google_Service_YouTubeAnalytics_GroupItemResource - */ - public function getResource() - { - return $this->resource; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeAnalytics/GroupItemResource.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeAnalytics/GroupItemResource.php deleted file mode 100644 index 9373557c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeAnalytics/GroupItemResource.php +++ /dev/null @@ -1,39 +0,0 @@ -id = $id; - } - public function getId() - { - return $this->id; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeAnalytics/GroupSnippet.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeAnalytics/GroupSnippet.php deleted file mode 100644 index 225121bf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeAnalytics/GroupSnippet.php +++ /dev/null @@ -1,39 +0,0 @@ -publishedAt = $publishedAt; - } - public function getPublishedAt() - { - return $this->publishedAt; - } - public function setTitle($title) - { - $this->title = $title; - } - public function getTitle() - { - return $this->title; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeAnalytics/ListGroupItemsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeAnalytics/ListGroupItemsResponse.php deleted file mode 100644 index 41b39d4b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeAnalytics/ListGroupItemsResponse.php +++ /dev/null @@ -1,72 +0,0 @@ -errors = $errors; - } - /** - * @return Google_Service_YouTubeAnalytics_Errors - */ - public function getErrors() - { - return $this->errors; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_YouTubeAnalytics_GroupItem - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_YouTubeAnalytics_GroupItem - */ - public function getItems() - { - return $this->items; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeAnalytics/ListGroupsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeAnalytics/ListGroupsResponse.php deleted file mode 100644 index 2f86a52c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeAnalytics/ListGroupsResponse.php +++ /dev/null @@ -1,81 +0,0 @@ -errors = $errors; - } - /** - * @return Google_Service_YouTubeAnalytics_Errors - */ - public function getErrors() - { - return $this->errors; - } - public function setEtag($etag) - { - $this->etag = $etag; - } - public function getEtag() - { - return $this->etag; - } - /** - * @param Google_Service_YouTubeAnalytics_Group - */ - public function setItems($items) - { - $this->items = $items; - } - /** - * @return Google_Service_YouTubeAnalytics_Group - */ - public function getItems() - { - return $this->items; - } - 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; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeAnalytics/QueryResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeAnalytics/QueryResponse.php deleted file mode 100644 index 911120f9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeAnalytics/QueryResponse.php +++ /dev/null @@ -1,72 +0,0 @@ -columnHeaders = $columnHeaders; - } - /** - * @return Google_Service_YouTubeAnalytics_ResultTableColumnHeader - */ - public function getColumnHeaders() - { - return $this->columnHeaders; - } - /** - * @param Google_Service_YouTubeAnalytics_Errors - */ - public function setErrors(Google_Service_YouTubeAnalytics_Errors $errors) - { - $this->errors = $errors; - } - /** - * @return Google_Service_YouTubeAnalytics_Errors - */ - public function getErrors() - { - return $this->errors; - } - public function setKind($kind) - { - $this->kind = $kind; - } - public function getKind() - { - return $this->kind; - } - public function setRows($rows) - { - $this->rows = $rows; - } - public function getRows() - { - return $this->rows; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeAnalytics/Resource/GroupItems.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeAnalytics/Resource/GroupItems.php deleted file mode 100644 index 7edd97c0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeAnalytics/Resource/GroupItems.php +++ /dev/null @@ -1,109 +0,0 @@ - - * $youtubeAnalyticsService = new Google_Service_YouTubeAnalytics(...); - * $groupItems = $youtubeAnalyticsService->groupItems; - * - */ -class Google_Service_YouTubeAnalytics_Resource_GroupItems extends Google_Service_Resource -{ - /** - * Removes an item from a group. (groupItems.delete) - * - * @param array $optParams Optional parameters. - * - * @opt_param string onBehalfOfContentOwner This parameter can only be used in a - * properly authorized request. **Note:** This parameter is intended exclusively - * for YouTube content partners that own and manage many different YouTube - * channels. - * - * The `onBehalfOfContentOwner` parameter indicates that the request's - * authorization credentials identify a YouTube user who is acting on behalf of - * the content owner specified in the parameter value. It allows content owners - * to authenticate once and get access to all their video and channel data, - * without having to provide authentication credentials for each individual - * channel. The account that the user authenticates with must be linked to the - * specified YouTube content owner. - * @opt_param string id The `id` parameter specifies the YouTube group item ID - * of the group item that is being deleted. - * @return Google_Service_YouTubeAnalytics_EmptyResponse - */ - public function delete($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_YouTubeAnalytics_EmptyResponse"); - } - /** - * Creates a group item. (groupItems.insert) - * - * @param Google_Service_YouTubeAnalytics_GroupItem $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string onBehalfOfContentOwner This parameter can only be used in a - * properly authorized request. **Note:** This parameter is intended exclusively - * for YouTube content partners that own and manage many different YouTube - * channels. - * - * The `onBehalfOfContentOwner` parameter indicates that the request's - * authorization credentials identify a YouTube user who is acting on behalf of - * the content owner specified in the parameter value. It allows content owners - * to authenticate once and get access to all their video and channel data, - * without having to provide authentication credentials for each individual - * channel. The account that the user authenticates with must be linked to the - * specified YouTube content owner. - * @return Google_Service_YouTubeAnalytics_GroupItem - */ - public function insert(Google_Service_YouTubeAnalytics_GroupItem $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_YouTubeAnalytics_GroupItem"); - } - /** - * Returns a collection of group items that match the API request parameters. - * (groupItems.listGroupItems) - * - * @param array $optParams Optional parameters. - * - * @opt_param string onBehalfOfContentOwner This parameter can only be used in a - * properly authorized request. **Note:** This parameter is intended exclusively - * for YouTube content partners that own and manage many different YouTube - * channels. - * - * The `onBehalfOfContentOwner` parameter indicates that the request's - * authorization credentials identify a YouTube user who is acting on behalf of - * the content owner specified in the parameter value. It allows content owners - * to authenticate once and get access to all their video and channel data, - * without having to provide authentication credentials for each individual - * channel. The account that the user authenticates with must be linked to the - * specified YouTube content owner. - * @opt_param string groupId The `groupId` parameter specifies the unique ID of - * the group for which you want to retrieve group items. - * @return Google_Service_YouTubeAnalytics_ListGroupItemsResponse - */ - public function listGroupItems($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_YouTubeAnalytics_ListGroupItemsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeAnalytics/Resource/Groups.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeAnalytics/Resource/Groups.php deleted file mode 100644 index 29a0e376..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeAnalytics/Resource/Groups.php +++ /dev/null @@ -1,148 +0,0 @@ - - * $youtubeAnalyticsService = new Google_Service_YouTubeAnalytics(...); - * $groups = $youtubeAnalyticsService->groups; - * - */ -class Google_Service_YouTubeAnalytics_Resource_Groups extends Google_Service_Resource -{ - /** - * Deletes a group. (groups.delete) - * - * @param array $optParams Optional parameters. - * - * @opt_param string onBehalfOfContentOwner This parameter can only be used in a - * properly authorized request. **Note:** This parameter is intended exclusively - * for YouTube content partners that own and manage many different YouTube - * channels. - * - * The `onBehalfOfContentOwner` parameter indicates that the request's - * authorization credentials identify a YouTube user who is acting on behalf of - * the content owner specified in the parameter value. It allows content owners - * to authenticate once and get access to all their video and channel data, - * without having to provide authentication credentials for each individual - * channel. The account that the user authenticates with must be linked to the - * specified YouTube content owner. - * @opt_param string id The `id` parameter specifies the YouTube group ID of the - * group that is being deleted. - * @return Google_Service_YouTubeAnalytics_EmptyResponse - */ - public function delete($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_YouTubeAnalytics_EmptyResponse"); - } - /** - * Creates a group. (groups.insert) - * - * @param Google_Service_YouTubeAnalytics_Group $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string onBehalfOfContentOwner This parameter can only be used in a - * properly authorized request. **Note:** This parameter is intended exclusively - * for YouTube content partners that own and manage many different YouTube - * channels. - * - * The `onBehalfOfContentOwner` parameter indicates that the request's - * authorization credentials identify a YouTube user who is acting on behalf of - * the content owner specified in the parameter value. It allows content owners - * to authenticate once and get access to all their video and channel data, - * without having to provide authentication credentials for each individual - * channel. The account that the user authenticates with must be linked to the - * specified YouTube content owner. - * @return Google_Service_YouTubeAnalytics_Group - */ - public function insert(Google_Service_YouTubeAnalytics_Group $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('insert', array($params), "Google_Service_YouTubeAnalytics_Group"); - } - /** - * Returns a collection of groups that match the API request parameters. For - * example, you can retrieve all groups that the authenticated user owns, or you - * can retrieve one or more groups by their unique IDs. (groups.listGroups) - * - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken The `pageToken` parameter identifies a specific - * page in the result set that should be returned. In an API response, the - * `nextPageToken` property identifies the next page that can be retrieved. - * @opt_param string onBehalfOfContentOwner This parameter can only be used in a - * properly authorized request. **Note:** This parameter is intended exclusively - * for YouTube content partners that own and manage many different YouTube - * channels. - * - * The `onBehalfOfContentOwner` parameter indicates that the request's - * authorization credentials identify a YouTube user who is acting on behalf of - * the content owner specified in the parameter value. It allows content owners - * to authenticate once and get access to all their video and channel data, - * without having to provide authentication credentials for each individual - * channel. The account that the user authenticates with must be linked to the - * specified YouTube content owner. - * @opt_param string id The `id` parameter specifies a comma-separated list of - * the YouTube group ID(s) for the resource(s) that are being retrieved. Each - * group must be owned by the authenticated user. In a `group` resource, the - * `id` property specifies the group's YouTube group ID. - * - * Note that if you do not specify a value for the `id` parameter, then you must - * set the `mine` parameter to `true`. - * @opt_param bool mine This parameter can only be used in a properly authorized - * request. Set this parameter's value to true to retrieve all groups owned by - * the authenticated user. - * @return Google_Service_YouTubeAnalytics_ListGroupsResponse - */ - public function listGroups($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_YouTubeAnalytics_ListGroupsResponse"); - } - /** - * Modifies a group. For example, you could change a group's title. - * (groups.update) - * - * @param Google_Service_YouTubeAnalytics_Group $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string onBehalfOfContentOwner This parameter can only be used in a - * properly authorized request. **Note:** This parameter is intended exclusively - * for YouTube content partners that own and manage many different YouTube - * channels. - * - * The `onBehalfOfContentOwner` parameter indicates that the request's - * authorization credentials identify a YouTube user who is acting on behalf of - * the content owner specified in the parameter value. It allows content owners - * to authenticate once and get access to all their video and channel data, - * without having to provide authentication credentials for each individual - * channel. The account that the user authenticates with must be linked to the - * specified YouTube content owner. - * @return Google_Service_YouTubeAnalytics_Group - */ - public function update(Google_Service_YouTubeAnalytics_Group $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('update', array($params), "Google_Service_YouTubeAnalytics_Group"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeAnalytics/Resource/Reports.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeAnalytics/Resource/Reports.php deleted file mode 100644 index 407c65ab..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeAnalytics/Resource/Reports.php +++ /dev/null @@ -1,93 +0,0 @@ - - * $youtubeAnalyticsService = new Google_Service_YouTubeAnalytics(...); - * $reports = $youtubeAnalyticsService->reports; - * - */ -class Google_Service_YouTubeAnalytics_Resource_Reports extends Google_Service_Resource -{ - /** - * Retrieve your YouTube Analytics reports. (reports.query) - * - * @param array $optParams Optional parameters. - * - * @opt_param int maxResults The maximum number of rows to include in the - * response.", minValue: 1 - * @opt_param string filters A list of filters that should be applied when - * retrieving YouTube Analytics data. The [Available - * Reports](/youtube/analytics/v2/available_reports) document identifies the - * dimensions that can be used to filter each report, and the - * [Dimensions](/youtube/analytics/v2/dimsmets/dims) document defines those - * dimensions. If a request uses multiple filters, join them together with a - * semicolon (`;`), and the returned result table will satisfy both filters. For - * example, a filters parameter value of `video==dMH0bHeiRNg;country==IT` - * restricts the result set to include data for the given video in Italy.", - * @opt_param string sort A comma-separated list of dimensions or metrics that - * determine the sort order for YouTube Analytics data. By default the sort - * order is ascending. The '`-`' prefix causes descending sort order.", pattern: - * [-0-9a-zA-Z,]+ - * @opt_param string startDate The start date for fetching YouTube Analytics - * data. The value should be in `YYYY-MM-DD` format. required: true, pattern: - * "[0-9]{4}-[0-9]{2}-[0-9]{2} - * @opt_param string metrics A comma-separated list of YouTube Analytics - * metrics, such as `views` or `likes,dislikes`. See the [Available - * Reports](/youtube/analytics/v2/available_reports) document for a list of the - * reports that you can retrieve and the metrics available in each report, and - * see the [Metrics](/youtube/analytics/v2/dimsmets/mets) document for - * definitions of those metrics. required: true, pattern: [0-9a-zA-Z,]+ - * @opt_param string ids Identifies the YouTube channel or content owner for - * which you are retrieving YouTube Analytics data. - * - * - To request data for a YouTube user, set the `ids` parameter value to - * `channel==CHANNEL_ID`, where `CHANNEL_ID` specifies the unique YouTube - * channel ID. - To request data for a YouTube CMS content owner, set the `ids` - * parameter value to `contentOwner==OWNER_NAME`, where `OWNER_NAME` is the - * CMS name of the content owner. required: true, pattern: - * [a-zA-Z]+==[a-zA-Z0-9_+-]+ - * @opt_param bool includeHistoricalChannelData If set to true historical data - * (i.e. channel data from before the linking of the channel to the content - * owner) will be retrieved.", - * @opt_param string currency The currency to which financial metrics should be - * converted. The default is US Dollar (USD). If the result contains no - * financial metrics, this flag will be ignored. Responds with an error if the - * specified currency is not recognized.", pattern: [A-Z]{3} - * @opt_param int startIndex An index of the first entity to retrieve. Use this - * parameter as a pagination mechanism along with the max-results parameter - * (one-based, inclusive).", minValue: 1 - * @opt_param string dimensions A comma-separated list of YouTube Analytics - * dimensions, such as `views` or `ageGroup,gender`. See the [Available - * Reports](/youtube/analytics/v2/available_reports) document for a list of the - * reports that you can retrieve and the dimensions used for those reports. Also - * see the [Dimensions](/youtube/analytics/v2/dimsmets/dims) document for - * definitions of those dimensions." pattern: [0-9a-zA-Z,]+ - * @opt_param string endDate The end date for fetching YouTube Analytics data. - * The value should be in `YYYY-MM-DD` format. required: true, pattern: - * [0-9]{4}-[0-9]{2}-[0-9]{2} - * @return Google_Service_YouTubeAnalytics_QueryResponse - */ - public function query($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('query', array($params), "Google_Service_YouTubeAnalytics_QueryResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeAnalytics/ResultTableColumnHeader.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeAnalytics/ResultTableColumnHeader.php deleted file mode 100644 index 77ee065f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeAnalytics/ResultTableColumnHeader.php +++ /dev/null @@ -1,48 +0,0 @@ -columnType = $columnType; - } - public function getColumnType() - { - return $this->columnType; - } - public function setDataType($dataType) - { - $this->dataType = $dataType; - } - public function getDataType() - { - return $this->dataType; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting.php deleted file mode 100644 index 060f8110..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting.php +++ /dev/null @@ -1,244 +0,0 @@ - - * Schedules reporting jobs containing your YouTube Analytics data and downloads - * the resulting bulk data reports in the form of CSV files.

- * - *

- * For more information about this service, see the API - * Documentation - *

- * - * @author Google, Inc. - */ -class Google_Service_YouTubeReporting extends Google_Service -{ - /** View monetary and non-monetary YouTube Analytics reports for your YouTube content. */ - const YT_ANALYTICS_MONETARY_READONLY = - "https://www.googleapis.com/auth/yt-analytics-monetary.readonly"; - /** View YouTube Analytics reports for your YouTube content. */ - const YT_ANALYTICS_READONLY = - "https://www.googleapis.com/auth/yt-analytics.readonly"; - - public $jobs; - public $jobs_reports; - public $media; - public $reportTypes; - - /** - * Constructs the internal representation of the YouTubeReporting service. - * - * @param Google_Client $client The client used to deliver requests. - * @param string $rootUrl The root URL used for requests to the service. - */ - public function __construct(Google_Client $client, $rootUrl = null) - { - parent::__construct($client); - $this->rootUrl = $rootUrl ?: 'https://youtubereporting.googleapis.com/'; - $this->servicePath = ''; - $this->batchPath = 'batch'; - $this->version = 'v1'; - $this->serviceName = 'youtubereporting'; - - $this->jobs = new Google_Service_YouTubeReporting_Resource_Jobs( - $this, - $this->serviceName, - 'jobs', - array( - 'methods' => array( - 'create' => array( - 'path' => 'v1/jobs', - 'httpMethod' => 'POST', - 'parameters' => array( - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'delete' => array( - 'path' => 'v1/jobs/{jobId}', - 'httpMethod' => 'DELETE', - 'parameters' => array( - 'jobId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'get' => array( - 'path' => 'v1/jobs/{jobId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'jobId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'v1/jobs', - 'httpMethod' => 'GET', - 'parameters' => array( - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'includeSystemManaged' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->jobs_reports = new Google_Service_YouTubeReporting_Resource_JobsReports( - $this, - $this->serviceName, - 'reports', - array( - 'methods' => array( - 'get' => array( - 'path' => 'v1/jobs/{jobId}/reports/{reportId}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'jobId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'reportId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ),'list' => array( - 'path' => 'v1/jobs/{jobId}/reports', - 'httpMethod' => 'GET', - 'parameters' => array( - 'jobId' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - 'startTimeAtOrAfter' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'startTimeBefore' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'createdAfter' => array( - 'location' => 'query', - 'type' => 'string', - ), - ), - ), - ) - ) - ); - $this->media = new Google_Service_YouTubeReporting_Resource_Media( - $this, - $this->serviceName, - 'media', - array( - 'methods' => array( - 'download' => array( - 'path' => 'v1/media/{+resourceName}', - 'httpMethod' => 'GET', - 'parameters' => array( - 'resourceName' => array( - 'location' => 'path', - 'type' => 'string', - 'required' => true, - ), - ), - ), - ) - ) - ); - $this->reportTypes = new Google_Service_YouTubeReporting_Resource_ReportTypes( - $this, - $this->serviceName, - 'reportTypes', - array( - 'methods' => array( - 'list' => array( - 'path' => 'v1/reportTypes', - 'httpMethod' => 'GET', - 'parameters' => array( - 'onBehalfOfContentOwner' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'pageToken' => array( - 'location' => 'query', - 'type' => 'string', - ), - 'includeSystemManaged' => array( - 'location' => 'query', - 'type' => 'boolean', - ), - 'pageSize' => array( - 'location' => 'query', - 'type' => 'integer', - ), - ), - ), - ) - ) - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/GdataBlobstore2Info.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/GdataBlobstore2Info.php deleted file mode 100644 index 6ab0c01c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/GdataBlobstore2Info.php +++ /dev/null @@ -1,66 +0,0 @@ -blobGeneration = $blobGeneration; - } - public function getBlobGeneration() - { - return $this->blobGeneration; - } - public function setBlobId($blobId) - { - $this->blobId = $blobId; - } - public function getBlobId() - { - return $this->blobId; - } - public function setDownloadReadHandle($downloadReadHandle) - { - $this->downloadReadHandle = $downloadReadHandle; - } - public function getDownloadReadHandle() - { - return $this->downloadReadHandle; - } - public function setReadToken($readToken) - { - $this->readToken = $readToken; - } - public function getReadToken() - { - return $this->readToken; - } - public function setUploadMetadataContainer($uploadMetadataContainer) - { - $this->uploadMetadataContainer = $uploadMetadataContainer; - } - public function getUploadMetadataContainer() - { - return $this->uploadMetadataContainer; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/GdataCompositeMedia.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/GdataCompositeMedia.php deleted file mode 100644 index 744fe60f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/GdataCompositeMedia.php +++ /dev/null @@ -1,134 +0,0 @@ -blobRef = $blobRef; - } - public function getBlobRef() - { - return $this->blobRef; - } - /** - * @param Google_Service_YouTubeReporting_GdataBlobstore2Info - */ - public function setBlobstore2Info(Google_Service_YouTubeReporting_GdataBlobstore2Info $blobstore2Info) - { - $this->blobstore2Info = $blobstore2Info; - } - /** - * @return Google_Service_YouTubeReporting_GdataBlobstore2Info - */ - public function getBlobstore2Info() - { - return $this->blobstore2Info; - } - public function setCosmoBinaryReference($cosmoBinaryReference) - { - $this->cosmoBinaryReference = $cosmoBinaryReference; - } - public function getCosmoBinaryReference() - { - return $this->cosmoBinaryReference; - } - public function setCrc32cHash($crc32cHash) - { - $this->crc32cHash = $crc32cHash; - } - public function getCrc32cHash() - { - return $this->crc32cHash; - } - public function setInline($inline) - { - $this->inline = $inline; - } - public function getInline() - { - return $this->inline; - } - public function setLength($length) - { - $this->length = $length; - } - public function getLength() - { - return $this->length; - } - public function setMd5Hash($md5Hash) - { - $this->md5Hash = $md5Hash; - } - public function getMd5Hash() - { - return $this->md5Hash; - } - /** - * @param Google_Service_YouTubeReporting_GdataObjectId - */ - public function setObjectId(Google_Service_YouTubeReporting_GdataObjectId $objectId) - { - $this->objectId = $objectId; - } - /** - * @return Google_Service_YouTubeReporting_GdataObjectId - */ - public function getObjectId() - { - return $this->objectId; - } - public function setPath($path) - { - $this->path = $path; - } - public function getPath() - { - return $this->path; - } - public function setReferenceType($referenceType) - { - $this->referenceType = $referenceType; - } - public function getReferenceType() - { - return $this->referenceType; - } - public function setSha1Hash($sha1Hash) - { - $this->sha1Hash = $sha1Hash; - } - public function getSha1Hash() - { - return $this->sha1Hash; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/GdataContentTypeInfo.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/GdataContentTypeInfo.php deleted file mode 100644 index eacedec4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/GdataContentTypeInfo.php +++ /dev/null @@ -1,66 +0,0 @@ -bestGuess = $bestGuess; - } - public function getBestGuess() - { - return $this->bestGuess; - } - public function setFromBytes($fromBytes) - { - $this->fromBytes = $fromBytes; - } - public function getFromBytes() - { - return $this->fromBytes; - } - public function setFromFileName($fromFileName) - { - $this->fromFileName = $fromFileName; - } - public function getFromFileName() - { - return $this->fromFileName; - } - public function setFromHeader($fromHeader) - { - $this->fromHeader = $fromHeader; - } - public function getFromHeader() - { - return $this->fromHeader; - } - public function setFromUrlPath($fromUrlPath) - { - $this->fromUrlPath = $fromUrlPath; - } - public function getFromUrlPath() - { - return $this->fromUrlPath; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/GdataDiffChecksumsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/GdataDiffChecksumsResponse.php deleted file mode 100644 index 182fa4a7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/GdataDiffChecksumsResponse.php +++ /dev/null @@ -1,80 +0,0 @@ -checksumsLocation = $checksumsLocation; - } - /** - * @return Google_Service_YouTubeReporting_GdataCompositeMedia - */ - public function getChecksumsLocation() - { - return $this->checksumsLocation; - } - public function setChunkSizeBytes($chunkSizeBytes) - { - $this->chunkSizeBytes = $chunkSizeBytes; - } - public function getChunkSizeBytes() - { - return $this->chunkSizeBytes; - } - /** - * @param Google_Service_YouTubeReporting_GdataCompositeMedia - */ - public function setObjectLocation(Google_Service_YouTubeReporting_GdataCompositeMedia $objectLocation) - { - $this->objectLocation = $objectLocation; - } - /** - * @return Google_Service_YouTubeReporting_GdataCompositeMedia - */ - public function getObjectLocation() - { - return $this->objectLocation; - } - public function setObjectSizeBytes($objectSizeBytes) - { - $this->objectSizeBytes = $objectSizeBytes; - } - public function getObjectSizeBytes() - { - return $this->objectSizeBytes; - } - public function setObjectVersion($objectVersion) - { - $this->objectVersion = $objectVersion; - } - public function getObjectVersion() - { - return $this->objectVersion; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/GdataDiffDownloadResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/GdataDiffDownloadResponse.php deleted file mode 100644 index 8621099e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/GdataDiffDownloadResponse.php +++ /dev/null @@ -1,37 +0,0 @@ -objectLocation = $objectLocation; - } - /** - * @return Google_Service_YouTubeReporting_GdataCompositeMedia - */ - public function getObjectLocation() - { - return $this->objectLocation; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/GdataDiffUploadRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/GdataDiffUploadRequest.php deleted file mode 100644 index 8a4c6fb1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/GdataDiffUploadRequest.php +++ /dev/null @@ -1,62 +0,0 @@ -checksumsInfo = $checksumsInfo; - } - /** - * @return Google_Service_YouTubeReporting_GdataCompositeMedia - */ - public function getChecksumsInfo() - { - return $this->checksumsInfo; - } - /** - * @param Google_Service_YouTubeReporting_GdataCompositeMedia - */ - public function setObjectInfo(Google_Service_YouTubeReporting_GdataCompositeMedia $objectInfo) - { - $this->objectInfo = $objectInfo; - } - /** - * @return Google_Service_YouTubeReporting_GdataCompositeMedia - */ - public function getObjectInfo() - { - return $this->objectInfo; - } - public function setObjectVersion($objectVersion) - { - $this->objectVersion = $objectVersion; - } - public function getObjectVersion() - { - return $this->objectVersion; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/GdataDiffUploadResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/GdataDiffUploadResponse.php deleted file mode 100644 index 3f1a2ce0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/GdataDiffUploadResponse.php +++ /dev/null @@ -1,46 +0,0 @@ -objectVersion = $objectVersion; - } - public function getObjectVersion() - { - return $this->objectVersion; - } - /** - * @param Google_Service_YouTubeReporting_GdataCompositeMedia - */ - public function setOriginalObject(Google_Service_YouTubeReporting_GdataCompositeMedia $originalObject) - { - $this->originalObject = $originalObject; - } - /** - * @return Google_Service_YouTubeReporting_GdataCompositeMedia - */ - public function getOriginalObject() - { - return $this->originalObject; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/GdataDiffVersionResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/GdataDiffVersionResponse.php deleted file mode 100644 index 610ab32b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/GdataDiffVersionResponse.php +++ /dev/null @@ -1,39 +0,0 @@ -objectSizeBytes = $objectSizeBytes; - } - public function getObjectSizeBytes() - { - return $this->objectSizeBytes; - } - public function setObjectVersion($objectVersion) - { - $this->objectVersion = $objectVersion; - } - public function getObjectVersion() - { - return $this->objectVersion; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/GdataDownloadParameters.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/GdataDownloadParameters.php deleted file mode 100644 index 04cee8f5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/GdataDownloadParameters.php +++ /dev/null @@ -1,39 +0,0 @@ -allowGzipCompression = $allowGzipCompression; - } - public function getAllowGzipCompression() - { - return $this->allowGzipCompression; - } - public function setIgnoreRange($ignoreRange) - { - $this->ignoreRange = $ignoreRange; - } - public function getIgnoreRange() - { - return $this->ignoreRange; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/GdataMedia.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/GdataMedia.php deleted file mode 100644 index 03cf9ae1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/GdataMedia.php +++ /dev/null @@ -1,362 +0,0 @@ -algorithm = $algorithm; - } - public function getAlgorithm() - { - return $this->algorithm; - } - public function setBigstoreObjectRef($bigstoreObjectRef) - { - $this->bigstoreObjectRef = $bigstoreObjectRef; - } - public function getBigstoreObjectRef() - { - return $this->bigstoreObjectRef; - } - public function setBlobRef($blobRef) - { - $this->blobRef = $blobRef; - } - public function getBlobRef() - { - return $this->blobRef; - } - /** - * @param Google_Service_YouTubeReporting_GdataBlobstore2Info - */ - public function setBlobstore2Info(Google_Service_YouTubeReporting_GdataBlobstore2Info $blobstore2Info) - { - $this->blobstore2Info = $blobstore2Info; - } - /** - * @return Google_Service_YouTubeReporting_GdataBlobstore2Info - */ - public function getBlobstore2Info() - { - return $this->blobstore2Info; - } - /** - * @param Google_Service_YouTubeReporting_GdataCompositeMedia - */ - public function setCompositeMedia($compositeMedia) - { - $this->compositeMedia = $compositeMedia; - } - /** - * @return Google_Service_YouTubeReporting_GdataCompositeMedia - */ - public function getCompositeMedia() - { - return $this->compositeMedia; - } - public function setContentType($contentType) - { - $this->contentType = $contentType; - } - public function getContentType() - { - return $this->contentType; - } - /** - * @param Google_Service_YouTubeReporting_GdataContentTypeInfo - */ - public function setContentTypeInfo(Google_Service_YouTubeReporting_GdataContentTypeInfo $contentTypeInfo) - { - $this->contentTypeInfo = $contentTypeInfo; - } - /** - * @return Google_Service_YouTubeReporting_GdataContentTypeInfo - */ - public function getContentTypeInfo() - { - return $this->contentTypeInfo; - } - public function setCosmoBinaryReference($cosmoBinaryReference) - { - $this->cosmoBinaryReference = $cosmoBinaryReference; - } - public function getCosmoBinaryReference() - { - return $this->cosmoBinaryReference; - } - public function setCrc32cHash($crc32cHash) - { - $this->crc32cHash = $crc32cHash; - } - public function getCrc32cHash() - { - return $this->crc32cHash; - } - /** - * @param Google_Service_YouTubeReporting_GdataDiffChecksumsResponse - */ - public function setDiffChecksumsResponse(Google_Service_YouTubeReporting_GdataDiffChecksumsResponse $diffChecksumsResponse) - { - $this->diffChecksumsResponse = $diffChecksumsResponse; - } - /** - * @return Google_Service_YouTubeReporting_GdataDiffChecksumsResponse - */ - public function getDiffChecksumsResponse() - { - return $this->diffChecksumsResponse; - } - /** - * @param Google_Service_YouTubeReporting_GdataDiffDownloadResponse - */ - public function setDiffDownloadResponse(Google_Service_YouTubeReporting_GdataDiffDownloadResponse $diffDownloadResponse) - { - $this->diffDownloadResponse = $diffDownloadResponse; - } - /** - * @return Google_Service_YouTubeReporting_GdataDiffDownloadResponse - */ - public function getDiffDownloadResponse() - { - return $this->diffDownloadResponse; - } - /** - * @param Google_Service_YouTubeReporting_GdataDiffUploadRequest - */ - public function setDiffUploadRequest(Google_Service_YouTubeReporting_GdataDiffUploadRequest $diffUploadRequest) - { - $this->diffUploadRequest = $diffUploadRequest; - } - /** - * @return Google_Service_YouTubeReporting_GdataDiffUploadRequest - */ - public function getDiffUploadRequest() - { - return $this->diffUploadRequest; - } - /** - * @param Google_Service_YouTubeReporting_GdataDiffUploadResponse - */ - public function setDiffUploadResponse(Google_Service_YouTubeReporting_GdataDiffUploadResponse $diffUploadResponse) - { - $this->diffUploadResponse = $diffUploadResponse; - } - /** - * @return Google_Service_YouTubeReporting_GdataDiffUploadResponse - */ - public function getDiffUploadResponse() - { - return $this->diffUploadResponse; - } - /** - * @param Google_Service_YouTubeReporting_GdataDiffVersionResponse - */ - public function setDiffVersionResponse(Google_Service_YouTubeReporting_GdataDiffVersionResponse $diffVersionResponse) - { - $this->diffVersionResponse = $diffVersionResponse; - } - /** - * @return Google_Service_YouTubeReporting_GdataDiffVersionResponse - */ - public function getDiffVersionResponse() - { - return $this->diffVersionResponse; - } - /** - * @param Google_Service_YouTubeReporting_GdataDownloadParameters - */ - public function setDownloadParameters(Google_Service_YouTubeReporting_GdataDownloadParameters $downloadParameters) - { - $this->downloadParameters = $downloadParameters; - } - /** - * @return Google_Service_YouTubeReporting_GdataDownloadParameters - */ - public function getDownloadParameters() - { - return $this->downloadParameters; - } - public function setFilename($filename) - { - $this->filename = $filename; - } - public function getFilename() - { - return $this->filename; - } - public function setHash($hash) - { - $this->hash = $hash; - } - public function getHash() - { - return $this->hash; - } - public function setHashVerified($hashVerified) - { - $this->hashVerified = $hashVerified; - } - public function getHashVerified() - { - return $this->hashVerified; - } - public function setInline($inline) - { - $this->inline = $inline; - } - public function getInline() - { - return $this->inline; - } - public function setIsPotentialRetry($isPotentialRetry) - { - $this->isPotentialRetry = $isPotentialRetry; - } - public function getIsPotentialRetry() - { - return $this->isPotentialRetry; - } - public function setLength($length) - { - $this->length = $length; - } - public function getLength() - { - return $this->length; - } - public function setMd5Hash($md5Hash) - { - $this->md5Hash = $md5Hash; - } - public function getMd5Hash() - { - return $this->md5Hash; - } - public function setMediaId($mediaId) - { - $this->mediaId = $mediaId; - } - public function getMediaId() - { - return $this->mediaId; - } - /** - * @param Google_Service_YouTubeReporting_GdataObjectId - */ - public function setObjectId(Google_Service_YouTubeReporting_GdataObjectId $objectId) - { - $this->objectId = $objectId; - } - /** - * @return Google_Service_YouTubeReporting_GdataObjectId - */ - public function getObjectId() - { - return $this->objectId; - } - public function setPath($path) - { - $this->path = $path; - } - public function getPath() - { - return $this->path; - } - public function setReferenceType($referenceType) - { - $this->referenceType = $referenceType; - } - public function getReferenceType() - { - return $this->referenceType; - } - public function setSha1Hash($sha1Hash) - { - $this->sha1Hash = $sha1Hash; - } - public function getSha1Hash() - { - return $this->sha1Hash; - } - public function setSha256Hash($sha256Hash) - { - $this->sha256Hash = $sha256Hash; - } - public function getSha256Hash() - { - return $this->sha256Hash; - } - public function setTimestamp($timestamp) - { - $this->timestamp = $timestamp; - } - public function getTimestamp() - { - return $this->timestamp; - } - public function setToken($token) - { - $this->token = $token; - } - public function getToken() - { - return $this->token; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/GdataObjectId.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/GdataObjectId.php deleted file mode 100644 index ca56ebef..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/GdataObjectId.php +++ /dev/null @@ -1,48 +0,0 @@ -bucketName = $bucketName; - } - public function getBucketName() - { - return $this->bucketName; - } - public function setGeneration($generation) - { - $this->generation = $generation; - } - public function getGeneration() - { - return $this->generation; - } - public function setObjectName($objectName) - { - $this->objectName = $objectName; - } - public function getObjectName() - { - return $this->objectName; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/Job.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/Job.php deleted file mode 100644 index fa3f6139..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/Job.php +++ /dev/null @@ -1,75 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setExpireTime($expireTime) - { - $this->expireTime = $expireTime; - } - public function getExpireTime() - { - return $this->expireTime; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setReportTypeId($reportTypeId) - { - $this->reportTypeId = $reportTypeId; - } - public function getReportTypeId() - { - return $this->reportTypeId; - } - public function setSystemManaged($systemManaged) - { - $this->systemManaged = $systemManaged; - } - public function getSystemManaged() - { - return $this->systemManaged; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/ListJobsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/ListJobsResponse.php deleted file mode 100644 index e11fba7e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/ListJobsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -jobs = $jobs; - } - /** - * @return Google_Service_YouTubeReporting_Job - */ - public function getJobs() - { - return $this->jobs; - } - public function setNextPageToken($nextPageToken) - { - $this->nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/ListReportTypesResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/ListReportTypesResponse.php deleted file mode 100644 index a97090ae..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/ListReportTypesResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_YouTubeReporting_ReportType - */ - public function setReportTypes($reportTypes) - { - $this->reportTypes = $reportTypes; - } - /** - * @return Google_Service_YouTubeReporting_ReportType - */ - public function getReportTypes() - { - return $this->reportTypes; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/ListReportsResponse.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/ListReportsResponse.php deleted file mode 100644 index 0d544a39..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/ListReportsResponse.php +++ /dev/null @@ -1,47 +0,0 @@ -nextPageToken = $nextPageToken; - } - public function getNextPageToken() - { - return $this->nextPageToken; - } - /** - * @param Google_Service_YouTubeReporting_Report - */ - public function setReports($reports) - { - $this->reports = $reports; - } - /** - * @return Google_Service_YouTubeReporting_Report - */ - public function getReports() - { - return $this->reports; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/Report.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/Report.php deleted file mode 100644 index e096e205..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/Report.php +++ /dev/null @@ -1,84 +0,0 @@ -createTime = $createTime; - } - public function getCreateTime() - { - return $this->createTime; - } - public function setDownloadUrl($downloadUrl) - { - $this->downloadUrl = $downloadUrl; - } - public function getDownloadUrl() - { - return $this->downloadUrl; - } - public function setEndTime($endTime) - { - $this->endTime = $endTime; - } - public function getEndTime() - { - return $this->endTime; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setJobExpireTime($jobExpireTime) - { - $this->jobExpireTime = $jobExpireTime; - } - public function getJobExpireTime() - { - return $this->jobExpireTime; - } - public function setJobId($jobId) - { - $this->jobId = $jobId; - } - public function getJobId() - { - return $this->jobId; - } - public function setStartTime($startTime) - { - $this->startTime = $startTime; - } - public function getStartTime() - { - return $this->startTime; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/ReportType.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/ReportType.php deleted file mode 100644 index 64d56e5d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/ReportType.php +++ /dev/null @@ -1,57 +0,0 @@ -deprecateTime = $deprecateTime; - } - public function getDeprecateTime() - { - return $this->deprecateTime; - } - public function setId($id) - { - $this->id = $id; - } - public function getId() - { - return $this->id; - } - public function setName($name) - { - $this->name = $name; - } - public function getName() - { - return $this->name; - } - public function setSystemManaged($systemManaged) - { - $this->systemManaged = $systemManaged; - } - public function getSystemManaged() - { - return $this->systemManaged; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/Resource/Jobs.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/Resource/Jobs.php deleted file mode 100644 index ddb1c13e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/Resource/Jobs.php +++ /dev/null @@ -1,104 +0,0 @@ - - * $youtubereportingService = new Google_Service_YouTubeReporting(...); - * $jobs = $youtubereportingService->jobs; - * - */ -class Google_Service_YouTubeReporting_Resource_Jobs extends Google_Service_Resource -{ - /** - * Creates a job and returns it. (jobs.create) - * - * @param Google_Service_YouTubeReporting_Job $postBody - * @param array $optParams Optional parameters. - * - * @opt_param string onBehalfOfContentOwner The content owner's external ID on - * which behalf the user is acting on. If not set, the user is acting for - * himself (his own channel). - * @return Google_Service_YouTubeReporting_Job - */ - public function create(Google_Service_YouTubeReporting_Job $postBody, $optParams = array()) - { - $params = array('postBody' => $postBody); - $params = array_merge($params, $optParams); - return $this->call('create', array($params), "Google_Service_YouTubeReporting_Job"); - } - /** - * Deletes a job. (jobs.delete) - * - * @param string $jobId The ID of the job to delete. - * @param array $optParams Optional parameters. - * - * @opt_param string onBehalfOfContentOwner The content owner's external ID on - * which behalf the user is acting on. If not set, the user is acting for - * himself (his own channel). - * @return Google_Service_YouTubeReporting_YoutubereportingEmpty - */ - public function delete($jobId, $optParams = array()) - { - $params = array('jobId' => $jobId); - $params = array_merge($params, $optParams); - return $this->call('delete', array($params), "Google_Service_YouTubeReporting_YoutubereportingEmpty"); - } - /** - * Gets a job. (jobs.get) - * - * @param string $jobId The ID of the job to retrieve. - * @param array $optParams Optional parameters. - * - * @opt_param string onBehalfOfContentOwner The content owner's external ID on - * which behalf the user is acting on. If not set, the user is acting for - * himself (his own channel). - * @return Google_Service_YouTubeReporting_Job - */ - public function get($jobId, $optParams = array()) - { - $params = array('jobId' => $jobId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_YouTubeReporting_Job"); - } - /** - * Lists jobs. (jobs.listJobs) - * - * @param array $optParams Optional parameters. - * - * @opt_param string pageToken A token identifying a page of results the server - * should return. Typically, this is the value of - * ListReportTypesResponse.next_page_token returned in response to the previous - * call to the `ListJobs` method. - * @opt_param bool includeSystemManaged If set to true, also system-managed jobs - * will be returned; otherwise only user-created jobs will be returned. System- - * managed jobs can neither be modified nor deleted. - * @opt_param int pageSize Requested page size. Server may return fewer jobs - * than requested. If unspecified, server will pick an appropriate default. - * @opt_param string onBehalfOfContentOwner The content owner's external ID on - * which behalf the user is acting on. If not set, the user is acting for - * himself (his own channel). - * @return Google_Service_YouTubeReporting_ListJobsResponse - */ - public function listJobs($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_YouTubeReporting_ListJobsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/Resource/JobsReports.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/Resource/JobsReports.php deleted file mode 100644 index 2f5d7f20..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/Resource/JobsReports.php +++ /dev/null @@ -1,77 +0,0 @@ - - * $youtubereportingService = new Google_Service_YouTubeReporting(...); - * $reports = $youtubereportingService->reports; - * - */ -class Google_Service_YouTubeReporting_Resource_JobsReports extends Google_Service_Resource -{ - /** - * Gets the metadata of a specific report. (reports.get) - * - * @param string $jobId The ID of the job. - * @param string $reportId The ID of the report to retrieve. - * @param array $optParams Optional parameters. - * - * @opt_param string onBehalfOfContentOwner The content owner's external ID on - * which behalf the user is acting on. If not set, the user is acting for - * himself (his own channel). - * @return Google_Service_YouTubeReporting_Report - */ - public function get($jobId, $reportId, $optParams = array()) - { - $params = array('jobId' => $jobId, 'reportId' => $reportId); - $params = array_merge($params, $optParams); - return $this->call('get', array($params), "Google_Service_YouTubeReporting_Report"); - } - /** - * Lists reports created by a specific job. Returns NOT_FOUND if the job does - * not exist. (reports.listJobsReports) - * - * @param string $jobId The ID of the job. - * @param array $optParams Optional parameters. - * - * @opt_param string startTimeAtOrAfter If set, only reports whose start time is - * greater than or equal the specified date/time are returned. - * @opt_param string pageToken A token identifying a page of results the server - * should return. Typically, this is the value of - * ListReportsResponse.next_page_token returned in response to the previous call - * to the `ListReports` method. - * @opt_param int pageSize Requested page size. Server may return fewer report - * types than requested. If unspecified, server will pick an appropriate - * default. - * @opt_param string onBehalfOfContentOwner The content owner's external ID on - * which behalf the user is acting on. If not set, the user is acting for - * himself (his own channel). - * @opt_param string startTimeBefore If set, only reports whose start time is - * smaller than the specified date/time are returned. - * @opt_param string createdAfter If set, only reports created after the - * specified date/time are returned. - * @return Google_Service_YouTubeReporting_ListReportsResponse - */ - public function listJobsReports($jobId, $optParams = array()) - { - $params = array('jobId' => $jobId); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_YouTubeReporting_ListReportsResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/Resource/Media.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/Resource/Media.php deleted file mode 100644 index ffe1f689..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/Resource/Media.php +++ /dev/null @@ -1,42 +0,0 @@ - - * $youtubereportingService = new Google_Service_YouTubeReporting(...); - * $media = $youtubereportingService->media; - * - */ -class Google_Service_YouTubeReporting_Resource_Media extends Google_Service_Resource -{ - /** - * Method for media download. Download is supported on the URI - * `/v1/media/{+name}?alt=media`. (media.download) - * - * @param string $resourceName Name of the media that is being downloaded. - * @param array $optParams Optional parameters. - * @return Google_Service_YouTubeReporting_GdataMedia - */ - public function download($resourceName, $optParams = array()) - { - $params = array('resourceName' => $resourceName); - $params = array_merge($params, $optParams); - return $this->call('download', array($params), "Google_Service_YouTubeReporting_GdataMedia"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/Resource/ReportTypes.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/Resource/ReportTypes.php deleted file mode 100644 index 0122426e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/Resource/ReportTypes.php +++ /dev/null @@ -1,54 +0,0 @@ - - * $youtubereportingService = new Google_Service_YouTubeReporting(...); - * $reportTypes = $youtubereportingService->reportTypes; - * - */ -class Google_Service_YouTubeReporting_Resource_ReportTypes extends Google_Service_Resource -{ - /** - * Lists report types. (reportTypes.listReportTypes) - * - * @param array $optParams Optional parameters. - * - * @opt_param string onBehalfOfContentOwner The content owner's external ID on - * which behalf the user is acting on. If not set, the user is acting for - * himself (his own channel). - * @opt_param string pageToken A token identifying a page of results the server - * should return. Typically, this is the value of - * ListReportTypesResponse.next_page_token returned in response to the previous - * call to the `ListReportTypes` method. - * @opt_param bool includeSystemManaged If set to true, also system-managed - * report types will be returned; otherwise only the report types that can be - * used to create new reporting jobs will be returned. - * @opt_param int pageSize Requested page size. Server may return fewer report - * types than requested. If unspecified, server will pick an appropriate - * default. - * @return Google_Service_YouTubeReporting_ListReportTypesResponse - */ - public function listReportTypes($optParams = array()) - { - $params = array(); - $params = array_merge($params, $optParams); - return $this->call('list', array($params), "Google_Service_YouTubeReporting_ListReportTypesResponse"); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/YoutubereportingEmpty.php b/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/YoutubereportingEmpty.php deleted file mode 100644 index 26503759..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/apiclient-services/src/Google/Service/YouTubeReporting/YoutubereportingEmpty.php +++ /dev/null @@ -1,20 +0,0 @@ -getMock('Google_Service'); - $this->getMock('Google_Model'); - $this->getMock('Google_Collection'); - $this->getMock('Google_Service_Resource'); - } - - /** - * @dataProvider serviceProvider - */ - public function testIncludes($class) - { - $this->assertTrue( - class_exists($class), - sprintf('Failed asserting class %s exists.', $class) - ); - } - - public function testCaseConflicts() - { - $apis = $this->apiProvider(); - $classes = array_unique(array_map('strtolower', $apis)); - $this->assertCount(count($apis), $classes); - } - - public function serviceProvider() - { - $classes = array(); - $path = __DIR__ . '/../src/Google/Service/'; - foreach (glob($path . "*.php") as $file) { - $service = basename($file, '.php'); - $classes[] = array('Google_Service_' . $service); - foreach (glob($path . "{$service}/*.php") as $file) { - $classes[] = array("Google_Service_{$service}_" . basename($file, '.php')); - } - foreach (glob($path . "{$service}/Resource/*.php") as $file) { - $classes[] = array("Google_Service_{$service}_Resource_" . basename($file, '.php')); - } - } - - return $classes; - } - - public function apiProvider() - { - $path = __DIR__ . '/../src/Google/Service/*'; - return array_filter(glob($path), 'is_dir'); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/CHANGELOG.md b/services/libs/google-api-php-client-2.4.1/vendor/google/auth/CHANGELOG.md deleted file mode 100644 index 0afd79e5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/CHANGELOG.md +++ /dev/null @@ -1,126 +0,0 @@ -## 1.7.1 (02/12/2020) - -* [fix] Invalid character in iap cert cache key (#263) -* [fix] Typo in exception for package name (#262) - -## 1.7.0 (02/11/2020) - -* [feat] Add ID token to auth token methods. (#248) -* [feat] Add support for ES256 in `AccessToken::verify`. (#255) -* [fix] Let namespace match the file structure. (#258) -* [fix] Construct RuntimeException. (#257) -* [tests] Update tests for PHP 7.4 compatibility. (#253) -* [chore] Add a couple more things to `.gitattributes`. (#252) - -## 1.6.1 (10/29/2019) - -* [fix] Handle DST correctly for cache item expirations. (#246) - -## 1.6.0 (10/01/2019) - -* [feat] Add utility for verifying and revoking access tokens. (#243) -* [docs] Fix README console terminology. (#242) -* [feat] Support custom scopes with GCECredentials. (#239) -* [fix] Fix phpseclib existence check. (#237) - -## 1.5.2 (07/22/2019) - -* [fix] Move loadItems call out of `SysVCacheItemPool` constructor. (#229) -* [fix] Add `Metadata-Flavor` header to initial GCE metadata call. (#232) - -## 1.5.1 (04/16/2019) - -* [fix] Moved `getClientName()` from `Google\Auth\FetchAuthTokenInterface` - to `Google\Auth\SignBlobInterface`, and removed `getClientName()` from - `InsecureCredentials` and `UserRefreshCredentials`. (#223) - -## 1.5.0 (04/15/2019) - -### Changes - - * Add support for signing strings with a Credentials instance. (#221) - * [Docs] Describe the arrays returned by fetchAuthToken. (#216) - * [Testing] Fix failing tests (#217) - * Update GitHub issue templates (#214, #213) - -## 1.4.0 (09/17/2018) - -### Changes - - * Add support for insecure credentials (#208) - -## 1.3.3 (08/27/2018) - -### Changes - - * Add retry and increase timeout for GCE credentials (#195) - * [Docs] Fix spelling (#204) - * Update token url (#206) - -## 1.3.2 (07/23/2018) - -### Changes - - * Only emits a warning for gcloud credentials (#202) - -## 1.3.1 (07/19/2018) - -### Changes - - * Added a warning for 3 legged OAuth credentials (#199) - * [Code cleanup] Removed useless else after return (#193) - -## 1.3.0 (06/04/2018) - -### Changes - - * Fixes usage of deprecated env var for GAE Flex (#189) - * fix - guzzlehttp/psr7 dependency version definition (#190) - * Added SystemV shared memory based CacheItemPool (#191) - -## 1.2.1 (24/01/2018) - -### Changes - - * Fixes array merging bug in Guzzle5HttpHandler (#186) - * Fixes constructor argument bug in Subscriber & Middleware (#184) - -## 1.2.0 (6/12/2017) - -### Changes - - * Adds async method to HTTP handlers (#176) - * Misc bug fixes and improvements (#177, #175, #178) - -## 1.1.0 (10/10/2017) - -### Changes - - * Supports additional claims in JWT tokens (#171) - * Adds makeHttpClient for creating authorized Guzzle clients (#162) - * Misc bug fixes/improvements (#168, #161, #167, #170, #143) - -## 1.0.1 (31/07/2017) - -### Changes - -* Adds support for Firebase 5.0 (#159) - -## 1.0.0 (12/06/2017) - -### Changes - -* Adds hashing and shortening to enforce max key length ([@bshaffer]) -* Fix for better PSR-6 compliance - verifies a hit before getting the cache item ([@bshaffer]) -* README fixes ([@bshaffer]) -* Change authorization header key to lowercase ([@stanley-cheung]) - -## 0.4.0 (23/04/2015) - -### Changes - -* Export callback function to update auth metadata ([@stanley-cheung][]) -* Adds an implementation of User Refresh Token auth ([@stanley-cheung][]) - -[@bshaffer]: https://github.com/bshaffer -[@stanley-cheung]: https://github.com/stanley-cheung diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/CODE_OF_CONDUCT.md b/services/libs/google-api-php-client-2.4.1/vendor/google/auth/CODE_OF_CONDUCT.md deleted file mode 100644 index 46b2a08e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/CODE_OF_CONDUCT.md +++ /dev/null @@ -1,43 +0,0 @@ -# Contributor Code of Conduct - -As contributors and maintainers of this project, -and in the interest of fostering an open and welcoming community, -we pledge to respect all people who contribute through reporting issues, -posting feature requests, updating documentation, -submitting pull requests or patches, and other activities. - -We are committed to making participation in this project -a harassment-free experience for everyone, -regardless of level of experience, gender, gender identity and expression, -sexual orientation, disability, personal appearance, -body size, race, ethnicity, age, religion, or nationality. - -Examples of unacceptable behavior by participants include: - -* The use of sexualized language or imagery -* Personal attacks -* Trolling or insulting/derogatory comments -* Public or private harassment -* Publishing other's private information, -such as physical or electronic -addresses, without explicit permission -* Other unethical or unprofessional conduct. - -Project maintainers have the right and responsibility to remove, edit, or reject -comments, commits, code, wiki edits, issues, and other contributions -that are not aligned to this Code of Conduct. -By adopting this Code of Conduct, -project maintainers commit themselves to fairly and consistently -applying these principles to every aspect of managing this project. -Project maintainers who do not follow or enforce the Code of Conduct -may be permanently removed from the project team. - -This code of conduct applies both within project spaces and in public spaces -when an individual is representing the project or its community. - -Instances of abusive, harassing, or otherwise unacceptable behavior -may be reported by opening an issue -or contacting one or more of the project maintainers. - -This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.2.0, -available at [http://contributor-covenant.org/version/1/2/0/](http://contributor-covenant.org/version/1/2/0/) diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/COPYING b/services/libs/google-api-php-client-2.4.1/vendor/google/auth/COPYING deleted file mode 100644 index b5d5055a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/COPYING +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright 2015 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. diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/LICENSE b/services/libs/google-api-php-client-2.4.1/vendor/google/auth/LICENSE deleted file mode 100644 index a148ba56..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/LICENSE +++ /dev/null @@ -1,203 +0,0 @@ -Apache License -Version 2.0, January 2004 -http://www.apache.org/licenses/ - -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - -"License" shall mean the terms and conditions for use, reproduction, -and distribution as defined by Sections 1 through 9 of this document. - -"Licensor" shall mean the copyright owner or entity authorized by -the copyright owner that is granting the License. - -"Legal Entity" shall mean the union of the acting entity and all -other entities that control, are controlled by, or are under common -control with that entity. For the purposes of this definition, -"control" means (i) the power, direct or indirect, to cause the -direction or management of such entity, whether by contract or -otherwise, or (ii) ownership of fifty percent (50%) or more of the -outstanding shares, or (iii) beneficial ownership of such entity. - -"You" (or "Your") shall mean an individual or Legal Entity -exercising permissions granted by this License. - -"Source" form shall mean the preferred form for making modifications, -including but not limited to software source code, documentation -source, and configuration files. - -"Object" form shall mean any form resulting from mechanical -transformation or translation of a Source form, including but -not limited to compiled object code, generated documentation, -and conversions to other media types. - -"Work" shall mean the work of authorship, whether in Source or -Object form, made available under the License, as indicated by a -copyright notice that is included in or attached to the work -(an example is provided in the Appendix below). - -"Derivative Works" shall mean any work, whether in Source or Object -form, that is based on (or derived from) the Work and for which the -editorial revisions, annotations, elaborations, or other modifications -represent, as a whole, an original work of authorship. For the purposes -of this License, Derivative Works shall not include works that remain -separable from, or merely link (or bind by name) to the interfaces of, -the Work and Derivative Works thereof. - -"Contribution" shall mean any work of authorship, including -the original version of the Work and any modifications or additions -to that Work or Derivative Works thereof, that is intentionally -submitted to Licensor for inclusion in the Work by the copyright owner -or by an individual or Legal Entity authorized to submit on behalf of -the copyright owner. For the purposes of this definition, "submitted" -means any form of electronic, verbal, or written communication sent -to the Licensor or its representatives, including but not limited to -communication on electronic mailing lists, source code control systems, -and issue tracking systems that are managed by, or on behalf of, the -Licensor for the purpose of discussing and improving the Work, but -excluding communication that is conspicuously marked or otherwise -designated in writing by the copyright owner as "Not a Contribution." - -"Contributor" shall mean Licensor and any individual or Legal Entity -on behalf of whom a Contribution has been received by Licensor and -subsequently incorporated within the Work. - -2. Grant of Copyright License. Subject to the terms and conditions of -this License, each Contributor hereby grants to You a perpetual, -worldwide, non-exclusive, no-charge, royalty-free, irrevocable -copyright license to reproduce, prepare Derivative Works of, -publicly display, publicly perform, sublicense, and distribute the -Work and such Derivative Works in Source or Object form. - -3. Grant of Patent License. Subject to the terms and conditions of -this License, each Contributor hereby grants to You a perpetual, -worldwide, non-exclusive, no-charge, royalty-free, irrevocable -(except as stated in this section) patent license to make, have made, -use, offer to sell, sell, import, and otherwise transfer the Work, -where such license applies only to those patent claims licensable -by such Contributor that are necessarily infringed by their -Contribution(s) alone or by combination of their Contribution(s) -with the Work to which such Contribution(s) was submitted. If You -institute patent litigation against any entity (including a -cross-claim or counterclaim in a lawsuit) alleging that the Work -or a Contribution incorporated within the Work constitutes direct -or contributory patent infringement, then any patent licenses -granted to You under this License for that Work shall terminate -as of the date such litigation is filed. - -4. Redistribution. You may reproduce and distribute copies of the -Work or Derivative Works thereof in any medium, with or without -modifications, and in Source or Object form, provided that You -meet the following conditions: - -(a) You must give any other recipients of the Work or -Derivative Works a copy of this License; and - -(b) You must cause any modified files to carry prominent notices -stating that You changed the files; and - -(c) You must retain, in the Source form of any Derivative Works -that You distribute, all copyright, patent, trademark, and -attribution notices from the Source form of the Work, -excluding those notices that do not pertain to any part of -the Derivative Works; and - -(d) If the Work includes a "NOTICE" text file as part of its -distribution, then any Derivative Works that You distribute must -include a readable copy of the attribution notices contained -within such NOTICE file, excluding those notices that do not -pertain to any part of the Derivative Works, in at least one -of the following places: within a NOTICE text file distributed -as part of the Derivative Works; within the Source form or -documentation, if provided along with the Derivative Works; or, -within a display generated by the Derivative Works, if and -wherever such third-party notices normally appear. The contents -of the NOTICE file are for informational purposes only and -do not modify the License. You may add Your own attribution -notices within Derivative Works that You distribute, alongside -or as an addendum to the NOTICE text from the Work, provided -that such additional attribution notices cannot be construed -as modifying the License. - -You may add Your own copyright statement to Your modifications and -may provide additional or different license terms and conditions -for use, reproduction, or distribution of Your modifications, or -for any such Derivative Works as a whole, provided Your use, -reproduction, and distribution of the Work otherwise complies with -the conditions stated in this License. - -5. Submission of Contributions. Unless You explicitly state otherwise, -any Contribution intentionally submitted for inclusion in the Work -by You to the Licensor shall be under the terms and conditions of -this License, without any additional terms or conditions. -Notwithstanding the above, nothing herein shall supersede or modify -the terms of any separate license agreement you may have executed -with Licensor regarding such Contributions. - -6. Trademarks. This License does not grant permission to use the trade -names, trademarks, service marks, or product names of the Licensor, -except as required for reasonable and customary use in describing the -origin of the Work and reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. Unless required by applicable law or -agreed to in writing, Licensor provides the Work (and each -Contributor provides its Contributions) on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or -implied, including, without limitation, any warranties or conditions -of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A -PARTICULAR PURPOSE. You are solely responsible for determining the -appropriateness of using or redistributing the Work and assume any -risks associated with Your exercise of permissions under this License. - -8. Limitation of Liability. In no event and under no legal theory, -whether in tort (including negligence), contract, or otherwise, -unless required by applicable law (such as deliberate and grossly -negligent acts) or agreed to in writing, shall any Contributor be -liable to You for damages, including any direct, indirect, special, -incidental, or consequential damages of any character arising as a -result of this License or out of the use or inability to use the -Work (including but not limited to damages for loss of goodwill, -work stoppage, computer failure or malfunction, or any and all -other commercial damages or losses), even if such Contributor -has been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. While redistributing -the Work or Derivative Works thereof, You may choose to offer, -and charge a fee for, acceptance of support, warranty, indemnity, -or other liability obligations and/or rights consistent with this -License. However, in accepting such obligations, You may act only -on Your own behalf and on Your sole responsibility, not on behalf -of any other Contributor, and only if You agree to indemnify, -defend, and hold each Contributor harmless for any liability -incurred by, or claims asserted against, such Contributor by reason -of your accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work. - -To apply the Apache License to your work, attach the following -boilerplate notice, with the fields enclosed by brackets "[]" -replaced with your own identifying information. (Don't include -the brackets!) The text should be enclosed in the appropriate -comment syntax for the file format. We also recommend that a -file or class name and description of purpose be included on the -same "printed page" as the copyright notice for easier -identification within third-party archives. - -Copyright [yyyy] [name of copyright owner] - -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. - - diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/README.md b/services/libs/google-api-php-client-2.4.1/vendor/google/auth/README.md deleted file mode 100644 index dbc9cbaa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/README.md +++ /dev/null @@ -1,226 +0,0 @@ -# Google Auth Library for PHP - -
-
Homepage
http://www.github.com/google/google-auth-library-php
-
Authors
-
Tim Emiola
-
Stanley Cheung
-
Brent Shaffer
-
Copyright
Copyright © 2015 Google, Inc.
-
License
Apache 2.0
-
- -## Description - -This is Google's officially supported PHP client library for using OAuth 2.0 -authorization and authentication with Google APIs. - -### Installing via Composer - -The recommended way to install the google auth library is through -[Composer](http://getcomposer.org). - -```bash -# Install Composer -curl -sS https://getcomposer.org/installer | php -``` - -Next, run the Composer command to install the latest stable version: - -```bash -composer.phar require google/auth -``` - -## Application Default Credentials - -This library provides an implementation of -[application default credentials][application default credentials] for PHP. - -The Application Default Credentials provide a simple way to get authorization -credentials for use in calling Google APIs. - -They are best suited for cases when the call needs to have the same identity -and authorization level for the application independent of the user. This is -the recommended approach to authorize calls to Cloud APIs, particularly when -you're building an application that uses Google Compute Engine. - -#### Download your Service Account Credentials JSON file - -To use `Application Default Credentials`, You first need to download a set of -JSON credentials for your project. Go to **APIs & Services** > **Credentials** in -the [Google Developers Console][developer console] and select -**Service account** from the **Add credentials** dropdown. - -> This file is your *only copy* of these credentials. It should never be -> committed with your source code, and should be stored securely. - -Once downloaded, store the path to this file in the -`GOOGLE_APPLICATION_CREDENTIALS` environment variable. - -```php -putenv('GOOGLE_APPLICATION_CREDENTIALS=/path/to/my/credentials.json'); -``` - -> PHP's `putenv` function is just one way to set an environment variable. -> Consider using `.htaccess` or apache configuration files as well. - -#### Enable the API you want to use - -Before making your API call, you must be sure the API you're calling has been -enabled. Go to **APIs & Auth** > **APIs** in the -[Google Developers Console][developer console] and enable the APIs you'd like to -call. For the example below, you must enable the `Drive API`. - -#### Call the APIs - -As long as you update the environment variable below to point to *your* JSON -credentials file, the following code should output a list of your Drive files. - -```php -use Google\Auth\ApplicationDefaultCredentials; -use GuzzleHttp\Client; -use GuzzleHttp\HandlerStack; - -// specify the path to your application credentials -putenv('GOOGLE_APPLICATION_CREDENTIALS=/path/to/my/credentials.json'); - -// define the scopes for your API call -$scopes = ['https://www.googleapis.com/auth/drive.readonly']; - -// create middleware -$middleware = ApplicationDefaultCredentials::getMiddleware($scopes); -$stack = HandlerStack::create(); -$stack->push($middleware); - -// create the HTTP client -$client = new Client([ - 'handler' => $stack, - 'base_uri' => 'https://www.googleapis.com', - 'auth' => 'google_auth' // authorize all requests -]); - -// make the request -$response = $client->get('drive/v2/files'); - -// show the result! -print_r((string) $response->getBody()); -``` - -##### Guzzle 5 Compatibility - -If you are using [Guzzle 5][Guzzle 5], replace the `create middleware` and -`create the HTTP Client` steps with the following: - -```php -// create the HTTP client -$client = new Client([ - 'base_url' => 'https://www.googleapis.com', - 'auth' => 'google_auth' // authorize all requests -]); - -// create subscriber -$subscriber = ApplicationDefaultCredentials::getSubscriber($scopes); -$client->getEmitter()->attach($subscriber); -``` - -#### Call using an ID Token -If your application is running behind Cloud Run, or using Cloud Identity-Aware -Proxy (IAP), you will need to fetch an ID token to access your application. For -this, use the static method `getIdTokenMiddleware` on -`ApplicationDefaultCredentials`. - -```php -use Google\Auth\ApplicationDefaultCredentials; -use GuzzleHttp\Client; -use GuzzleHttp\HandlerStack; - -// specify the path to your application credentials -putenv('GOOGLE_APPLICATION_CREDENTIALS=/path/to/my/credentials.json'); - -// Provide the ID token audience. This can be a Client ID associated with an IAP application, -// Or the URL associated with a CloudRun App -// $targetAudience = 'IAP_CLIENT_ID.apps.googleusercontent.com'; -// $targetAudience = 'https://service-1234-uc.a.run.app'; -$targetAudience = 'YOUR_ID_TOKEN_AUDIENCE'; - -// create middleware -$middleware = ApplicationDefaultCredentials::getIdTokenMiddleware($targetAudience); -$stack = HandlerStack::create(); -$stack->push($middleware); - -// create the HTTP client -$client = new Client([ - 'handler' => $stack, - 'auth' => 'google_auth', - // Cloud Run, IAP, or custom resource URL - 'base_uri' => 'https://YOUR_PROTECTED_RESOURCE', -]); - -// make the request -$response = $client->get('/'); - -// show the result! -print_r((string) $response->getBody()); -``` - -For invoking Cloud Run services, your service account will need the -[`Cloud Run Invoker`](https://cloud.google.com/run/docs/authenticating/service-to-service) -IAM permission. - -For invoking Cloud Identity-Aware Proxy, you will need to pass the Client ID -used when you set up your protected resource as the target audience. See how to -[secure your IAP app with signed headers](https://cloud.google.com/iap/docs/signed-headers-howto). - -#### Verifying JWTs - -If you are [using Google ID tokens to authenticate users][google-id-tokens], use -the `Google\Auth\AccessToken` class to verify the ID token: - -```php -use Google\Auth\AccessToken; - -$auth = new AccessToken(); -$auth->verify($idToken); -``` - -If your app is running behind [Google Identity-Aware Proxy][iap-id-tokens] -(IAP), you can verify the ID token coming from the IAP server by pointing to the -appropriate certificate URL for IAP. This is because IAP signs the ID -tokens with a different key than the Google Identity service: - -```php -use Google\Auth\AccessToken; - -$auth = new AccessToken(); -$auth->verify($idToken, [ - 'certsLocation' => AccessToken::IAP_CERT_URL -]); -``` - -[google-id-tokens]: https://developers.google.com/identity/sign-in/web/backend-auth -[iap-id-tokens]: https://cloud.google.com/iap/docs/signed-headers-howto - -## License - -This library is licensed under Apache 2.0. Full license text is -available in [COPYING][copying]. - -## Contributing - -See [CONTRIBUTING][contributing]. - -## Support - -Please -[report bugs at the project on Github](https://github.com/google/google-auth-library-php/issues). Don't -hesitate to -[ask questions](http://stackoverflow.com/questions/tagged/google-auth-library-php) -about the client or APIs on [StackOverflow](http://stackoverflow.com). - -[google-apis-php-client]: https://github.com/google/google-api-php-client -[application default credentials]: https://developers.google.com/accounts/docs/application-default-credentials -[contributing]: https://github.com/google/google-auth-library-php/tree/master/.github/CONTRIBUTING.md -[copying]: https://github.com/google/google-auth-library-php/tree/master/COPYING -[Guzzle]: https://github.com/guzzle/guzzle -[Guzzle 5]: http://docs.guzzlephp.org/en/5.3 -[developer console]: https://console.developers.google.com diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/autoload.php b/services/libs/google-api-php-client-2.4.1/vendor/google/auth/autoload.php deleted file mode 100644 index f5473378..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/autoload.php +++ /dev/null @@ -1,34 +0,0 @@ - 3) { - // Maximum class file path depth in this project is 3. - $classPath = array_slice($classPath, 0, 3); - } - $filePath = dirname(__FILE__) . '/src/' . implode('/', $classPath) . '.php'; - if (file_exists($filePath)) { - require_once $filePath; - } -} - -spl_autoload_register('oauth2client_php_autoload'); diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/composer.json b/services/libs/google-api-php-client-2.4.1/vendor/google/auth/composer.json deleted file mode 100644 index 17052365..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/composer.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "name": "google/auth", - "type": "library", - "description": "Google Auth Library for PHP", - "keywords": ["google", "oauth2", "authentication"], - "homepage": "http://github.com/google/google-auth-library-php", - "license": "Apache-2.0", - "require": { - "php": ">=5.4", - "firebase/php-jwt": "~2.0|~3.0|~4.0|~5.0", - "guzzlehttp/guzzle": "~5.3.1|~6.0", - "guzzlehttp/psr7": "^1.2", - "psr/http-message": "^1.0", - "psr/cache": "^1.0" - }, - "require-dev": { - "guzzlehttp/promises": "0.1.1|^1.3", - "friendsofphp/php-cs-fixer": "^1.11", - "phpunit/phpunit": "^4.8.36|^5.7", - "sebastian/comparator": ">=1.2.3", - "phpseclib/phpseclib": "^2", - "kelvinmo/simplejwt": "^0.2.5" - }, - "suggest": { - "phpseclib/phpseclib": "May be used in place of OpenSSL for signing strings or for token management. Please require version ^2." - }, - "autoload": { - "psr-4": { - "Google\\Auth\\": "src" - } - }, - "autoload-dev": { - "psr-4": { - "Google\\Auth\\Tests\\": "tests" - } - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/AccessToken.php b/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/AccessToken.php deleted file mode 100644 index 5eb908fe..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/AccessToken.php +++ /dev/null @@ -1,455 +0,0 @@ -httpHandler = $httpHandler - ?: HttpHandlerFactory::build(HttpClientCache::getHttpClient()); - $this->cache = $cache ?: new MemoryCacheItemPool(); - } - - /** - * Verifies an id token and returns the authenticated apiLoginTicket. - * Throws an exception if the id token is not valid. - * The audience parameter can be used to control which id tokens are - * accepted. By default, the id token must have been issued to this OAuth2 client. - * - * @param string $token The JSON Web Token to be verified. - * @param array $options [optional] { - * Configuration options. - * - * @type string $audience The indended recipient of the token. - * @type string $certsLocation The location (remote or local) from which - * to retrieve certificates, if not cached. This value should only be - * provided in limited circumstances in which you are sure of the - * behavior. - * @type string $cacheKey The cache key of the cached certs. Defaults to - * the sha1 of $certsLocation if provided, otherwise is set to - * "federated_signon_certs_v3". - * } - * @return array|bool the token payload, if successful, or false if not. - * @throws \InvalidArgumentException If certs could not be retrieved from a local file. - * @throws \InvalidArgumentException If received certs are in an invalid format. - * @throws \RuntimeException If certs could not be retrieved from a remote location. - */ - public function verify($token, array $options = []) - { - $audience = isset($options['audience']) - ? $options['audience'] - : null; - $certsLocation = isset($options['certsLocation']) - ? $options['certsLocation'] - : self::FEDERATED_SIGNON_CERT_URL; - $cacheKey = isset($options['cacheKey']) - ? $options['cacheKey'] - : $this->getCacheKeyFromCertLocation($certsLocation); - - // Check signature against each available cert. - $certs = $this->getCerts($certsLocation, $cacheKey, $options); - $alg = $this->determineAlg($certs); - - switch ($alg) { - case 'ES256': - return $this->verifyEs256($token, $certs, $audience); - - case 'RS256': - return $this->verifyRs256($token, $certs, $audience); - - default: - throw new \InvalidArgumentException( - 'unrecognized "alg" in certs, expected ES256 or RS256'); - } - } - - /** - * Identifies the expected algorithm to verify by looking at the "alg" key - * of the provided certs. - * - * @param array $certs Certificate array according to the JWK spec (see - * https://tools.ietf.org/html/rfc7517). - * @return string The expected algorithm, such as "ES256" or "RS256". - */ - private function determineAlg(array $certs) - { - $alg = null; - foreach ($certs as $cert) { - if (empty($cert['alg'])) { - throw new \InvalidArgumentException( - 'certs expects "alg" to be set' - ); - } - $alg = $alg ?: $cert['alg']; - - if ($alg != $cert['alg']) { - throw new \InvalidArgumentException( - 'More than one alg detected in certs' - ); - } - } - return $alg; - } - - /** - * Verifies an ES256-signed JWT. - * - * @param string $token The JSON Web Token to be verified. - * @param array $certs Certificate array according to the JWK spec (see - * https://tools.ietf.org/html/rfc7517). - * @param string|null $audience If set, returns false if the provided - * audience does not match the "aud" claim on - * the JWT. - * @return array|bool the token payload, if successful, or false if not. - */ - private function verifyEs256($token, array $certs, $audience = null) - { - $this->checkSimpleJwt(); - - $jwkset = new KeySet(); - foreach ($certs as $cert) { - $jwkset->add(KeyFactory::create($cert, 'php')); - } - - // Validate the signature using the key set and ES256 algorithm. - try { - $jwt = $this->callSimpleJwtDecode([$token, $jwkset, 'ES256']); - } catch (InvalidTokenException $e) { - return false; - } - - if ($aud = $jwt->getClaim('aud')) { - if ($audience && $aud != $audience) { - return false; - } - } - - return $jwt->getClaims(); - } - - /** - * Verifies an RS256-signed JWT. - * - * @param string $token The JSON Web Token to be verified. - * @param array $certs Certificate array according to the JWK spec (see - * https://tools.ietf.org/html/rfc7517). - * @param string|null $audience If set, returns false if the provided - * audience does not match the "aud" claim on - * the JWT. - * @return array|bool the token payload, if successful, or false if not. - */ - private function verifyRs256($token, array $certs, $audience = null) - { - $this->checkAndInitializePhpsec(); - $keys = []; - foreach ($certs as $cert) { - if (empty($cert['kid'])) { - throw new \InvalidArgumentException( - 'certs expects "kid" to be set' - ); - } - if (empty($cert['n']) || empty($cert['e'])) { - throw new \InvalidArgumentException( - 'RSA certs expects "n" and "e" to be set' - ); - } - $rsa = new RSA(); - $rsa->loadKey([ - 'n' => new BigInteger($this->callJwtStatic('urlsafeB64Decode', [ - $cert['n'], - ]), 256), - 'e' => new BigInteger($this->callJwtStatic('urlsafeB64Decode', [ - $cert['e'] - ]), 256), - ]); - - // create an array of key IDs to certs for the JWT library - $keys[$cert['kid']] = $rsa->getPublicKey(); - } - - try { - $payload = $this->callJwtStatic('decode', [ - $token, - $keys, - ['RS256'] - ]); - - if (property_exists($payload, 'aud')) { - if ($audience && $payload->aud != $audience) { - return false; - } - } - - // support HTTP and HTTPS issuers - // @see https://developers.google.com/identity/sign-in/web/backend-auth - $issuers = [self::OAUTH2_ISSUER, self::OAUTH2_ISSUER_HTTPS]; - if (!isset($payload->iss) || !in_array($payload->iss, $issuers)) { - return false; - } - - return (array) $payload; - } catch (ExpiredException $e) { - } catch (\ExpiredException $e) { - // (firebase/php-jwt 2) - } catch (SignatureInvalidException $e) { - } catch (\SignatureInvalidException $e) { - // (firebase/php-jwt 2) - } catch (\DomainException $e) { - } - - return false; - } - - /** - * Revoke an OAuth2 access token or refresh token. This method will revoke the current access - * token, if a token isn't provided. - * - * @param string|array $token The token (access token or a refresh token) that should be revoked. - * @param array $options [optional] Configuration options. - * @return boolean Returns True if the revocation was successful, otherwise False. - */ - public function revoke($token, array $options = []) - { - if (is_array($token)) { - if (isset($token['refresh_token'])) { - $token = $token['refresh_token']; - } else { - $token = $token['access_token']; - } - } - - $body = Psr7\stream_for(http_build_query(['token' => $token])); - $request = new Request('POST', self::OAUTH2_REVOKE_URI, [ - 'Cache-Control' => 'no-store', - 'Content-Type' => 'application/x-www-form-urlencoded', - ], $body); - - $httpHandler = $this->httpHandler; - - $response = $httpHandler($request, $options); - - return $response->getStatusCode() == 200; - } - - /** - * Gets federated sign-on certificates to use for verifying identity tokens. - * Returns certs as array structure, where keys are key ids, and values - * are PEM encoded certificates. - * - * @param string $location The location from which to retrieve certs. - * @param array $options [optional] Configuration options. - * @return array - * @throws \InvalidArgumentException If received certs are in an invalid format. - */ - private function getCerts($location, $cacheKey, array $options = []) - { - $cacheItem = $this->cache->getItem($cacheKey); - $certs = $cacheItem ? $cacheItem->get() : null; - - $gotNewCerts = false; - if (!$certs) { - $certs = $this->retrieveCertsFromLocation($location, $options); - - $gotNewCerts = true; - } - - if (!isset($certs['keys'])) { - if ($location !== self::IAP_CERT_URL) { - throw new \InvalidArgumentException( - 'federated sign-on certs expects "keys" to be set' - ); - } - throw new \InvalidArgumentException( - 'certs expects "keys" to be set' - ); - } - - // Push caching off until after verifying certs are in a valid format. - // Don't want to cache bad data. - if ($gotNewCerts) { - $cacheItem->expiresAt(new \DateTime('+1 hour')); - $cacheItem->set($certs); - $this->cache->save($cacheItem); - } - - return $certs['keys']; - } - - /** - * Retrieve and cache a certificates file. - * - * @param $url string location - * @param array $options [optional] Configuration options. - * @return array certificates - * @throws \InvalidArgumentException If certs could not be retrieved from a local file. - * @throws \RuntimeException If certs could not be retrieved from a remote location. - */ - private function retrieveCertsFromLocation($url, array $options = []) - { - // If we're retrieving a local file, just grab it. - if (strpos($url, 'http') !== 0) { - if (!file_exists($url)) { - throw new \InvalidArgumentException(sprintf( - 'Failed to retrieve verification certificates from path: %s.', - $url - )); - } - - return json_decode(file_get_contents($url), true); - } - - $httpHandler = $this->httpHandler; - $response = $httpHandler(new Request('GET', $url), $options); - - if ($response->getStatusCode() == 200) { - return json_decode((string) $response->getBody(), true); - } - - throw new \RuntimeException(sprintf( - 'Failed to retrieve verification certificates: "%s".', - $response->getBody()->getContents() - ), $response->getStatusCode()); - } - - private function checkAndInitializePhpsec() - { - // @codeCoverageIgnoreStart - if (!class_exists('phpseclib\Crypt\RSA')) { - throw new \RuntimeException('Please require phpseclib/phpseclib v2 to use this utility.'); - } - // @codeCoverageIgnoreEnd - - $this->setPhpsecConstants(); - } - - private function checkSimpleJwt() - { - // @codeCoverageIgnoreStart - if (!class_exists('SimpleJWT\JWT')) { - throw new \RuntimeException('Please require kelvinmo/simplejwt ^0.2 to use this utility.'); - } - // @codeCoverageIgnoreEnd - } - - /** - * phpseclib calls "phpinfo" by default, which requires special - * whitelisting in the AppEngine VM environment. This function - * sets constants to bypass the need for phpseclib to check phpinfo - * - * @see phpseclib/Math/BigInteger - * @see https://github.com/GoogleCloudPlatform/getting-started-php/issues/85 - * @codeCoverageIgnore - */ - private function setPhpsecConstants() - { - if (filter_var(getenv('GAE_VM'), FILTER_VALIDATE_BOOLEAN)) { - if (!defined('MATH_BIGINTEGER_OPENSSL_ENABLED')) { - define('MATH_BIGINTEGER_OPENSSL_ENABLED', true); - } - if (!defined('CRYPT_RSA_MODE')) { - define('CRYPT_RSA_MODE', RSA::MODE_OPENSSL); - } - } - } - - /** - * Provide a hook to mock calls to the JWT static methods. - * - * @param string $method - * @param array $args - * @return mixed - */ - protected function callJwtStatic($method, array $args = []) - { - $class = class_exists('Firebase\JWT\JWT') - ? 'Firebase\JWT\JWT' - : 'JWT'; - return call_user_func_array([$class, $method], $args); - } - - /** - * Provide a hook to mock calls to the JWT static methods. - * - * @param array $args - * @return mixed - */ - protected function callSimpleJwtDecode(array $args = []) - { - return call_user_func_array(['SimpleJWT\JWT', 'decode'], $args); - } - - /** - * Generate a cache key based on the cert location using sha1 with the - * exception of using "federated_signon_certs_v3" to preserve BC. - * - * @param string $certsLocation - * @return string - */ - private function getCacheKeyFromCertLocation($certsLocation) - { - $key = $certsLocation === self::FEDERATED_SIGNON_CERT_URL - ? 'federated_signon_certs_v3' - : sha1($certsLocation); - - return 'google_auth_certs_cache|' . $key; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/ApplicationDefaultCredentials.php b/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/ApplicationDefaultCredentials.php deleted file mode 100644 index c99beb17..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/ApplicationDefaultCredentials.php +++ /dev/null @@ -1,278 +0,0 @@ -push($middleware); - * - * $client = new Client([ - * 'handler' => $stack, - * 'base_uri' => 'https://www.googleapis.com/taskqueue/v1beta2/projects/', - * 'auth' => 'google_auth' // authorize all requests - * ]); - * - * $res = $client->get('myproject/taskqueues/myqueue'); - */ -class ApplicationDefaultCredentials -{ - /** - * Obtains an AuthTokenSubscriber that uses the default FetchAuthTokenInterface - * implementation to use in this environment. - * - * If supplied, $scope is used to in creating the credentials instance if - * this does not fallback to the compute engine defaults. - * - * @param string|array scope the scope of the access request, expressed - * either as an Array or as a space-delimited String. - * @param callable $httpHandler callback which delivers psr7 request - * @param array $cacheConfig configuration for the cache when it's present - * @param CacheItemPoolInterface $cache an implementation of CacheItemPoolInterface - * - * @return AuthTokenSubscriber - * - * @throws DomainException if no implementation can be obtained. - */ - public static function getSubscriber( - $scope = null, - callable $httpHandler = null, - array $cacheConfig = null, - CacheItemPoolInterface $cache = null - ) { - $creds = self::getCredentials($scope, $httpHandler, $cacheConfig, $cache); - - return new AuthTokenSubscriber($creds, $httpHandler); - } - - /** - * Obtains an AuthTokenMiddleware that uses the default FetchAuthTokenInterface - * implementation to use in this environment. - * - * If supplied, $scope is used to in creating the credentials instance if - * this does not fallback to the compute engine defaults. - * - * @param string|array scope the scope of the access request, expressed - * either as an Array or as a space-delimited String. - * @param callable $httpHandler callback which delivers psr7 request - * @param array $cacheConfig configuration for the cache when it's present - * @param CacheItemPoolInterface $cache - * - * @return AuthTokenMiddleware - * - * @throws DomainException if no implementation can be obtained. - */ - public static function getMiddleware( - $scope = null, - callable $httpHandler = null, - array $cacheConfig = null, - CacheItemPoolInterface $cache = null - ) { - $creds = self::getCredentials($scope, $httpHandler, $cacheConfig, $cache); - - return new AuthTokenMiddleware($creds, $httpHandler); - } - - /** - * Obtains an AuthTokenMiddleware which will fetch an access token to use in - * the Authorization header. The middleware is configured with the default - * FetchAuthTokenInterface implementation to use in this environment. - * - * If supplied, $scope is used to in creating the credentials instance if - * this does not fallback to the Compute Engine defaults. - * - * @param string|array scope the scope of the access request, expressed - * either as an Array or as a space-delimited String. - * @param callable $httpHandler callback which delivers psr7 request - * @param array $cacheConfig configuration for the cache when it's present - * @param CacheItemPoolInterface $cache - * - * @return CredentialsLoader - * - * @throws DomainException if no implementation can be obtained. - */ - public static function getCredentials( - $scope = null, - callable $httpHandler = null, - array $cacheConfig = null, - CacheItemPoolInterface $cache = null - ) { - $creds = null; - $jsonKey = CredentialsLoader::fromEnv() - ?: CredentialsLoader::fromWellKnownFile(); - - if (!$httpHandler) { - if (!($client = HttpClientCache::getHttpClient())) { - $client = new Client(); - HttpClientCache::setHttpClient($client); - } - - $httpHandler = HttpHandlerFactory::build($client); - } - - if (!is_null($jsonKey)) { - $creds = CredentialsLoader::makeCredentials($scope, $jsonKey); - } elseif (AppIdentityCredentials::onAppEngine() && !GCECredentials::onAppEngineFlexible()) { - $creds = new AppIdentityCredentials($scope); - } elseif (GCECredentials::onGce($httpHandler)) { - $creds = new GCECredentials(null, $scope); - } - - if (is_null($creds)) { - throw new DomainException(self::notFound()); - } - if (!is_null($cache)) { - $creds = new FetchAuthTokenCache($creds, $cacheConfig, $cache); - } - return $creds; - } - - /** - * Obtains an AuthTokenMiddleware which will fetch an ID token to use in the - * Authorization header. The middleware is configured with the default - * FetchAuthTokenInterface implementation to use in this environment. - * - * If supplied, $targetAudience is used to set the "aud" on the resulting - * ID token. - * - * @param string $targetAudience The audience for the ID token. - * @param callable $httpHandler callback which delivers psr7 request - * @param array $cacheConfig configuration for the cache when it's present - * @param CacheItemPoolInterface $cache - * - * @return AuthTokenMiddleware - * - * @throws DomainException if no implementation can be obtained. - */ - public static function getIdTokenMiddleware( - $targetAudience, - callable $httpHandler = null, - array $cacheConfig = null, - CacheItemPoolInterface $cache = null - - ) { - $creds = self::getIdTokenCredentials($targetAudience, $httpHandler, $cacheConfig, $cache); - - return new AuthTokenMiddleware($creds, $httpHandler); - } - - /** - * Obtains the default FetchAuthTokenInterface implementation to use - * in this environment, configured with a $targetAudience for fetching an ID - * token. - * - * @param string $targetAudience The audience for the ID token. - * @param callable $httpHandler callback which delivers psr7 request - * @param array $cacheConfig configuration for the cache when it's present - * @param CacheItemPoolInterface $cache - * - * @return CredentialsLoader - * - * @throws DomainException if no implementation can be obtained. - * @throws InvalidArgumentException if JSON "type" key is invalid - */ - public static function getIdTokenCredentials( - $targetAudience, - callable $httpHandler = null, - array $cacheConfig = null, - CacheItemPoolInterface $cache = null - ) { - $creds = null; - $jsonKey = CredentialsLoader::fromEnv() - ?: CredentialsLoader::fromWellKnownFile(); - - if (!$httpHandler) { - if (!($client = HttpClientCache::getHttpClient())) { - $client = new Client(); - HttpClientCache::setHttpClient($client); - } - - $httpHandler = HttpHandlerFactory::build($client); - } - - if (!is_null($jsonKey)) { - if (!array_key_exists('type', $jsonKey)) { - throw new \InvalidArgumentException('json key is missing the type field'); - } - - if ($jsonKey['type'] == 'authorized_user') { - throw new InvalidArgumentException('ID tokens are not supported for end user credentials'); - } - - if ($jsonKey['type'] != 'service_account') { - throw new InvalidArgumentException('invalid value in the type field'); - } - - $creds = new ServiceAccountCredentials(null, $jsonKey, null, $targetAudience); - } elseif (GCECredentials::onGce($httpHandler)) { - $creds = new GCECredentials(null, null, $targetAudience); - } - - if (is_null($creds)) { - throw new DomainException(self::notFound()); - } - if (!is_null($cache)) { - $creds = new FetchAuthTokenCache($creds, $cacheConfig, $cache); - } - return $creds; - } - - private static function notFound() - { - $msg = 'Could not load the default credentials. Browse to '; - $msg .= 'https://developers.google.com'; - $msg .= '/accounts/docs/application-default-credentials'; - $msg .= ' for more information'; - - return $msg; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/Cache/InvalidArgumentException.php b/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/Cache/InvalidArgumentException.php deleted file mode 100644 index 331e5611..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/Cache/InvalidArgumentException.php +++ /dev/null @@ -1,24 +0,0 @@ -key = $key; - } - - /** - * {@inheritdoc} - */ - public function getKey() - { - return $this->key; - } - - /** - * {@inheritdoc} - */ - public function get() - { - return $this->isHit() ? $this->value : null; - } - - /** - * {@inheritdoc} - */ - public function isHit() - { - if (!$this->isHit) { - return false; - } - - if ($this->expiration === null) { - return true; - } - - return $this->currentTime()->getTimestamp() < $this->expiration->getTimestamp(); - } - - /** - * {@inheritdoc} - */ - public function set($value) - { - $this->isHit = true; - $this->value = $value; - - return $this; - } - - /** - * {@inheritdoc} - */ - public function expiresAt($expiration) - { - if ($this->isValidExpiration($expiration)) { - $this->expiration = $expiration; - - return $this; - } - - $implementationMessage = interface_exists('DateTimeInterface') - ? 'implement interface DateTimeInterface' - : 'be an instance of DateTime'; - - $error = sprintf( - 'Argument 1 passed to %s::expiresAt() must %s, %s given', - get_class($this), - $implementationMessage, - gettype($expiration) - ); - - $this->handleError($error); - } - - /** - * {@inheritdoc} - */ - public function expiresAfter($time) - { - if (is_int($time)) { - $this->expiration = $this->currentTime()->add(new \DateInterval("PT{$time}S")); - } elseif ($time instanceof \DateInterval) { - $this->expiration = $this->currentTime()->add($time); - } elseif ($time === null) { - $this->expiration = $time; - } else { - $message = 'Argument 1 passed to %s::expiresAfter() must be an ' . - 'instance of DateInterval or of the type integer, %s given'; - $error = sprintf($message, get_class($this), gettype($time)); - - $this->handleError($error); - } - - return $this; - } - - /** - * Handles an error. - * - * @param string $error - * @throws \TypeError - */ - private function handleError($error) - { - if (class_exists('TypeError')) { - throw new \TypeError($error); - } - - trigger_error($error, E_USER_ERROR); - } - - /** - * Determines if an expiration is valid based on the rules defined by PSR6. - * - * @param mixed $expiration - * @return bool - */ - private function isValidExpiration($expiration) - { - if ($expiration === null) { - return true; - } - - // We test for two types here due to the fact the DateTimeInterface - // was not introduced until PHP 5.5. Checking for the DateTime type as - // well allows us to support 5.4. - if ($expiration instanceof \DateTimeInterface) { - return true; - } - - if ($expiration instanceof \DateTime) { - return true; - } - - return false; - } - - protected function currentTime() - { - return new \DateTime('now', new \DateTimeZone('UTC')); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/Cache/MemoryCacheItemPool.php b/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/Cache/MemoryCacheItemPool.php deleted file mode 100644 index 0af29304..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/Cache/MemoryCacheItemPool.php +++ /dev/null @@ -1,154 +0,0 @@ -getItems([$key])); - } - - /** - * {@inheritdoc} - */ - public function getItems(array $keys = []) - { - $items = []; - - foreach ($keys as $key) { - $items[$key] = $this->hasItem($key) ? clone $this->items[$key] : new Item($key); - } - - return $items; - } - - /** - * {@inheritdoc} - */ - public function hasItem($key) - { - $this->isValidKey($key); - - return isset($this->items[$key]) && $this->items[$key]->isHit(); - } - - /** - * {@inheritdoc} - */ - public function clear() - { - $this->items = []; - $this->deferredItems = []; - - return true; - } - - /** - * {@inheritdoc} - */ - public function deleteItem($key) - { - return $this->deleteItems([$key]); - } - - /** - * {@inheritdoc} - */ - public function deleteItems(array $keys) - { - array_walk($keys, [$this, 'isValidKey']); - - foreach ($keys as $key) { - unset($this->items[$key]); - } - - return true; - } - - /** - * {@inheritdoc} - */ - public function save(CacheItemInterface $item) - { - $this->items[$item->getKey()] = $item; - - return true; - } - - /** - * {@inheritdoc} - */ - public function saveDeferred(CacheItemInterface $item) - { - $this->deferredItems[$item->getKey()] = $item; - - return true; - } - - /** - * {@inheritdoc} - */ - public function commit() - { - foreach ($this->deferredItems as $item) { - $this->save($item); - } - - $this->deferredItems = []; - - return true; - } - - /** - * Determines if the provided key is valid. - * - * @param string $key - * @return bool - * @throws InvalidArgumentException - */ - private function isValidKey($key) - { - $invalidCharacters = '{}()/\\\\@:'; - - if (!is_string($key) || preg_match("#[$invalidCharacters]#", $key)) { - throw new InvalidArgumentException('The provided key is not valid: ' . var_export($key, true)); - } - - return true; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/Cache/SysVCacheItemPool.php b/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/Cache/SysVCacheItemPool.php deleted file mode 100644 index 5280eee6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/Cache/SysVCacheItemPool.php +++ /dev/null @@ -1,244 +0,0 @@ -options = $options + [ - 'variableKey' => self::VAR_KEY, - 'proj' => self::DEFAULT_PROJ, - 'memsize' => self::DEFAULT_MEMSIZE, - 'perm' => self::DEFAULT_PERM - ]; - $this->items = []; - $this->deferredItems = []; - $this->sysvKey = ftok(__FILE__, $this->options['proj']); - } - - /** - * {@inheritdoc} - */ - public function getItem($key) - { - $this->loadItems(); - return current($this->getItems([$key])); - } - - /** - * {@inheritdoc} - */ - public function getItems(array $keys = []) - { - $this->loadItems(); - $items = []; - foreach ($keys as $key) { - $items[$key] = $this->hasItem($key) ? - clone $this->items[$key] : - new Item($key); - } - return $items; - } - - /** - * {@inheritdoc} - */ - public function hasItem($key) - { - $this->loadItems(); - return isset($this->items[$key]) && $this->items[$key]->isHit(); - } - - /** - * {@inheritdoc} - */ - public function clear() - { - $this->items = []; - $this->deferredItems = []; - return $this->saveCurrentItems(); - } - - /** - * {@inheritdoc} - */ - public function deleteItem($key) - { - return $this->deleteItems([$key]); - } - - /** - * {@inheritdoc} - */ - public function deleteItems(array $keys) - { - if (!$this->hasLoadedItems) { - $this->loadItems(); - } - - foreach ($keys as $key) { - unset($this->items[$key]); - } - return $this->saveCurrentItems(); - } - - /** - * {@inheritdoc} - */ - public function save(CacheItemInterface $item) - { - if (!$this->hasLoadedItems) { - $this->loadItems(); - } - - $this->items[$item->getKey()] = $item; - return $this->saveCurrentItems(); - } - - /** - * {@inheritdoc} - */ - public function saveDeferred(CacheItemInterface $item) - { - $this->deferredItems[$item->getKey()] = $item; - return true; - } - - /** - * {@inheritdoc} - */ - public function commit() - { - foreach ($this->deferredItems as $item) { - if ($this->save($item) === false) { - return false; - } - } - $this->deferredItems = []; - return true; - } - - /** - * Save the current items. - * - * @return bool true when success, false upon failure - */ - private function saveCurrentItems() - { - $shmid = shm_attach( - $this->sysvKey, - $this->options['memsize'], - $this->options['perm'] - ); - if ($shmid !== false) { - $ret = shm_put_var( - $shmid, - $this->options['variableKey'], - $this->items - ); - shm_detach($shmid); - return $ret; - } - return false; - } - - /** - * Load the items from the shared memory. - * - * @return bool true when success, false upon failure - */ - private function loadItems() - { - $shmid = shm_attach( - $this->sysvKey, - $this->options['memsize'], - $this->options['perm'] - ); - if ($shmid !== false) { - $data = @shm_get_var($shmid, $this->options['variableKey']); - if (!empty($data)) { - $this->items = $data; - } else { - $this->items = []; - } - shm_detach($shmid); - $this->hasLoadedItems = true; - return true; - } - return false; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/CacheTrait.php b/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/CacheTrait.php deleted file mode 100644 index 217ce8e2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/CacheTrait.php +++ /dev/null @@ -1,83 +0,0 @@ -cache)) { - return; - } - - $key = $this->getFullCacheKey($k); - if (is_null($key)) { - return; - } - - $cacheItem = $this->cache->getItem($key); - if ($cacheItem->isHit()) { - return $cacheItem->get(); - } - } - - /** - * Saves the value in the cache when that is available. - */ - private function setCachedValue($k, $v) - { - if (is_null($this->cache)) { - return; - } - - $key = $this->getFullCacheKey($k); - if (is_null($key)) { - return; - } - - $cacheItem = $this->cache->getItem($key); - $cacheItem->set($v); - $cacheItem->expiresAfter($this->cacheConfig['lifetime']); - return $this->cache->save($cacheItem); - } - - private function getFullCacheKey($key) - { - if (is_null($key)) { - return; - } - - $key = $this->cacheConfig['prefix'] . $key; - - // ensure we do not have illegal characters - $key = preg_replace('|[^a-zA-Z0-9_\.!]|', '', $key); - - // Hash keys if they exceed $maxKeyLength (defaults to 64) - if ($this->maxKeyLength && strlen($key) > $this->maxKeyLength) { - $key = substr(hash('sha256', $key), 0, $this->maxKeyLength); - } - - return $key; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/Credentials/AppIdentityCredentials.php b/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/Credentials/AppIdentityCredentials.php deleted file mode 100644 index 31342e6f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/Credentials/AppIdentityCredentials.php +++ /dev/null @@ -1,201 +0,0 @@ -push($middleware); - * - * $client = new Client([ - * 'handler' => $stack, - * 'base_uri' => 'https://www.googleapis.com/books/v1', - * 'auth' => 'google_auth' - * ]); - * - * $res = $client->get('volumes?q=Henry+David+Thoreau&country=US'); - */ -class AppIdentityCredentials extends CredentialsLoader implements SignBlobInterface -{ - /** - * Result of fetchAuthToken. - * - * @array - */ - protected $lastReceivedToken; - - /** - * Array of OAuth2 scopes to be requested. - */ - private $scope; - - /** - * @var string - */ - private $clientName; - - public function __construct($scope = array()) - { - $this->scope = $scope; - } - - /** - * Determines if this an App Engine instance, by accessing the - * SERVER_SOFTWARE environment variable (prod) or the APPENGINE_RUNTIME - * environment variable (dev). - * - * @return true if this an App Engine Instance, false otherwise - */ - public static function onAppEngine() - { - $appEngineProduction = isset($_SERVER['SERVER_SOFTWARE']) && - 0 === strpos($_SERVER['SERVER_SOFTWARE'], 'Google App Engine'); - if ($appEngineProduction) { - return true; - } - $appEngineDevAppServer = isset($_SERVER['APPENGINE_RUNTIME']) && - $_SERVER['APPENGINE_RUNTIME'] == 'php'; - if ($appEngineDevAppServer) { - return true; - } - return false; - } - - /** - * Implements FetchAuthTokenInterface#fetchAuthToken. - * - * Fetches the auth tokens using the AppIdentityService if available. - * As the AppIdentityService uses protobufs to fetch the access token, - * the GuzzleHttp\ClientInterface instance passed in will not be used. - * - * @param callable $httpHandler callback which delivers psr7 request - * - * @return array A set of auth related metadata, containing the following - * keys: - * - access_token (string) - * - expiration_time (string) - */ - public function fetchAuthToken(callable $httpHandler = null) - { - try { - $this->checkAppEngineContext(); - } catch (\Exception $e) { - return []; - } - - // AppIdentityService expects an array when multiple scopes are supplied - $scope = is_array($this->scope) ? $this->scope : explode(' ', $this->scope); - - $token = AppIdentityService::getAccessToken($scope); - $this->lastReceivedToken = $token; - - return $token; - } - - /** - * Sign a string using AppIdentityService. - * - * @param string $stringToSign The string to sign. - * @param bool $forceOpenSsl [optional] Does not apply to this credentials - * type. - * @return string The signature, base64-encoded. - * @throws \Exception If AppEngine SDK or mock is not available. - */ - public function signBlob($stringToSign, $forceOpenSsl = false) - { - $this->checkAppEngineContext(); - - return base64_encode(AppIdentityService::signForApp($stringToSign)['signature']); - } - - /** - * Get the client name from AppIdentityService. - * - * Subsequent calls to this method will return a cached value. - * - * @param callable $httpHandler Not used in this implementation. - * @return string - * @throws \Exception If AppEngine SDK or mock is not available. - */ - public function getClientName(callable $httpHandler = null) - { - $this->checkAppEngineContext(); - - if (!$this->clientName) { - $this->clientName = AppIdentityService::getServiceAccountName(); - } - - return $this->clientName; - } - - /** - * @return array|null - */ - public function getLastReceivedToken() - { - if ($this->lastReceivedToken) { - return [ - 'access_token' => $this->lastReceivedToken['access_token'], - 'expires_at' => $this->lastReceivedToken['expiration_time'], - ]; - } - - return null; - } - - /** - * Caching is handled by the underlying AppIdentityService, return empty string - * to prevent caching. - * - * @return string - */ - public function getCacheKey() - { - return ''; - } - - private function checkAppEngineContext() - { - if (!self::onAppEngine() || !class_exists('google\appengine\api\app_identity\AppIdentityService')) { - throw new \Exception( - 'This class must be run in App Engine, or you must include the AppIdentityService ' - . 'mock class defined in tests/mocks/AppIdentityService.php' - ); - } - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/Credentials/GCECredentials.php b/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/Credentials/GCECredentials.php deleted file mode 100644 index 0032f76e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/Credentials/GCECredentials.php +++ /dev/null @@ -1,405 +0,0 @@ -push($middleware); - * - * $client = new Client([ - * 'handler' => $stack, - * 'base_uri' => 'https://www.googleapis.com/taskqueue/v1beta2/projects/', - * 'auth' => 'google_auth' - * ]); - * - * $res = $client->get('myproject/taskqueues/myqueue'); - */ -class GCECredentials extends CredentialsLoader implements SignBlobInterface -{ - const cacheKey = 'GOOGLE_AUTH_PHP_GCE'; - - /** - * The metadata IP address on appengine instances. - * - * The IP is used instead of the domain 'metadata' to avoid slow responses - * when not on Compute Engine. - */ - const METADATA_IP = '169.254.169.254'; - - /** - * The metadata path of the default token. - */ - const TOKEN_URI_PATH = 'v1/instance/service-accounts/default/token'; - - /** - * The metadata path of the default id token. - */ - const ID_TOKEN_URI_PATH = 'v1/instance/service-accounts/default/identity'; - - /** - * The metadata path of the client ID. - */ - const CLIENT_ID_URI_PATH = 'v1/instance/service-accounts/default/email'; - - /** - * The header whose presence indicates GCE presence. - */ - const FLAVOR_HEADER = 'Metadata-Flavor'; - - /** - * Note: the explicit `timeout` and `tries` below is a workaround. The underlying - * issue is that resolving an unknown host on some networks will take - * 20-30 seconds; making this timeout short fixes the issue, but - * could lead to false negatives in the event that we are on GCE, but - * the metadata resolution was particularly slow. The latter case is - * "unlikely" since the expected 4-nines time is about 0.5 seconds. - * This allows us to limit the total ping maximum timeout to 1.5 seconds - * for developer desktop scenarios. - */ - const MAX_COMPUTE_PING_TRIES = 3; - const COMPUTE_PING_CONNECTION_TIMEOUT_S = 0.5; - - /** - * Flag used to ensure that the onGCE test is only done once;. - * - * @var bool - */ - private $hasCheckedOnGce = false; - - /** - * Flag that stores the value of the onGCE check. - * - * @var bool - */ - private $isOnGce = false; - - /** - * Result of fetchAuthToken. - */ - protected $lastReceivedToken; - - /** - * @var string - */ - private $clientName; - - /** - * @var Iam|null - */ - private $iam; - - /** - * @var string - */ - private $tokenUri; - - /** - * @var string - */ - private $targetAudience; - - /** - * @param Iam $iam [optional] An IAM instance. - * @param string|array $scope [optional] the scope of the access request, - * expressed either as an array or as a space-delimited string. - * @param string $targetAudience [optional] The audience for the ID token. - */ - public function __construct(Iam $iam = null, $scope = null, $targetAudience = null) - { - $this->iam = $iam; - - if ($scope && $targetAudience) { - throw new InvalidArgumentException( - 'Scope and targetAudience cannot both be supplied'); - } - - $tokenUri = self::getTokenUri(); - if ($scope) { - if (is_string($scope)) { - $scope = explode(' ', $scope); - } - - $scope = implode(',', $scope); - - $tokenUri = $tokenUri . '?scopes='. $scope; - } elseif ($targetAudience) { - $tokenUri = sprintf('http://%s/computeMetadata/%s?audience=%s', - self::METADATA_IP, - self::ID_TOKEN_URI_PATH, - $targetAudience - ); - $this->targetAudience = $targetAudience; - } - - $this->tokenUri = $tokenUri; - } - - /** - * The full uri for accessing the default token. - * - * @return string - */ - public static function getTokenUri() - { - $base = 'http://' . self::METADATA_IP . '/computeMetadata/'; - - return $base . self::TOKEN_URI_PATH; - } - - /** - * The full uri for accessing the default service account. - * - * @return string - */ - public static function getClientNameUri() - { - $base = 'http://' . self::METADATA_IP . '/computeMetadata/'; - - return $base . self::CLIENT_ID_URI_PATH; - } - - /** - * Determines if this an App Engine Flexible instance, by accessing the - * GAE_INSTANCE environment variable. - * - * @return true if this an App Engine Flexible Instance, false otherwise - */ - public static function onAppEngineFlexible() - { - return substr(getenv('GAE_INSTANCE'), 0, 4) === 'aef-'; - } - - /** - * Determines if this a GCE instance, by accessing the expected metadata - * host. - * If $httpHandler is not specified a the default HttpHandler is used. - * - * @param callable $httpHandler callback which delivers psr7 request - * - * @return true if this a GCEInstance false otherwise - */ - public static function onGce(callable $httpHandler = null) - { - $httpHandler = $httpHandler - ?: HttpHandlerFactory::build(HttpClientCache::getHttpClient()); - - $checkUri = 'http://' . self::METADATA_IP; - for ($i = 1; $i <= self::MAX_COMPUTE_PING_TRIES; $i++) { - try { - // Comment from: oauth2client/client.py - // - // Note: the explicit `timeout` below is a workaround. The underlying - // issue is that resolving an unknown host on some networks will take - // 20-30 seconds; making this timeout short fixes the issue, but - // could lead to false negatives in the event that we are on GCE, but - // the metadata resolution was particularly slow. The latter case is - // "unlikely". - $resp = $httpHandler( - new Request( - 'GET', - $checkUri, - [self::FLAVOR_HEADER => 'Google'] - ), - ['timeout' => self::COMPUTE_PING_CONNECTION_TIMEOUT_S] - ); - - return $resp->getHeaderLine(self::FLAVOR_HEADER) == 'Google'; - } catch (ClientException $e) { - } catch (ServerException $e) { - } catch (RequestException $e) { - } - } - return false; - } - - /** - * Implements FetchAuthTokenInterface#fetchAuthToken. - * - * Fetches the auth tokens from the GCE metadata host if it is available. - * If $httpHandler is not specified a the default HttpHandler is used. - * - * @param callable $httpHandler callback which delivers psr7 request - * - * @return array A set of auth related metadata, based on the token type. - * - * Access tokens have the following keys: - * - access_token (string) - * - expires_in (int) - * - token_type (string) - * ID tokens have the following keys: - * - id_token (string) - * - * @throws \Exception - */ - public function fetchAuthToken(callable $httpHandler = null) - { - $httpHandler = $httpHandler - ?: HttpHandlerFactory::build(HttpClientCache::getHttpClient()); - - if (!$this->hasCheckedOnGce) { - $this->isOnGce = self::onGce($httpHandler); - $this->hasCheckedOnGce = true; - } - if (!$this->isOnGce) { - return array(); // return an empty array with no access token - } - - $response = $this->getFromMetadata($httpHandler, $this->tokenUri); - - if ($this->targetAudience) { - return ['id_token' => $response]; - } - - if (null === $json = json_decode($response, true)) { - throw new \Exception('Invalid JSON response'); - } - - // store this so we can retrieve it later - $this->lastReceivedToken = $json; - $this->lastReceivedToken['expires_at'] = time() + $json['expires_in']; - - return $json; - } - - /** - * @return string - */ - public function getCacheKey() - { - return self::cacheKey; - } - - /** - * @return array|null - */ - public function getLastReceivedToken() - { - if ($this->lastReceivedToken) { - return [ - 'access_token' => $this->lastReceivedToken['access_token'], - 'expires_at' => $this->lastReceivedToken['expires_at'], - ]; - } - - return null; - } - - /** - * Get the client name from GCE metadata. - * - * Subsequent calls will return a cached value. - * - * @param callable $httpHandler callback which delivers psr7 request - * @return string - */ - public function getClientName(callable $httpHandler = null) - { - if ($this->clientName) { - return $this->clientName; - } - - $httpHandler = $httpHandler - ?: HttpHandlerFactory::build(HttpClientCache::getHttpClient()); - - if (!$this->hasCheckedOnGce) { - $this->isOnGce = self::onGce($httpHandler); - $this->hasCheckedOnGce = true; - } - - if (!$this->isOnGce) { - return ''; - } - - $this->clientName = $this->getFromMetadata($httpHandler, self::getClientNameUri()); - - return $this->clientName; - } - - /** - * Sign a string using the default service account private key. - * - * This implementation uses IAM's signBlob API. - * - * @see https://cloud.google.com/iam/credentials/reference/rest/v1/projects.serviceAccounts/signBlob SignBlob - * - * @param string $stringToSign The string to sign. - * @param bool $forceOpenSsl [optional] Does not apply to this credentials - * type. - * @return string - */ - public function signBlob($stringToSign, $forceOpenSsl = false) - { - $httpHandler = HttpHandlerFactory::build(HttpClientCache::getHttpClient()); - - // Providing a signer is useful for testing, but it's undocumented - // because it's not something a user would generally need to do. - $signer = $this->iam ?: new Iam($httpHandler); - - $email = $this->getClientName($httpHandler); - - $previousToken = $this->getLastReceivedToken(); - $accessToken = $previousToken - ? $previousToken['access_token'] - : $this->fetchAuthToken($httpHandler)['access_token']; - - return $signer->signBlob($email, $accessToken, $stringToSign); - } - - /** - * Fetch the value of a GCE metadata server URI. - * - * @param callable $httpHandler An HTTP Handler to deliver PSR7 requests. - * @param string $uri The metadata URI. - * @return string - */ - private function getFromMetadata(callable $httpHandler, $uri) - { - $resp = $httpHandler( - new Request( - 'GET', - $uri, - [self::FLAVOR_HEADER => 'Google'] - ) - ); - - return (string) $resp->getBody(); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/Credentials/IAMCredentials.php b/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/Credentials/IAMCredentials.php deleted file mode 100644 index 0d2a37d1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/Credentials/IAMCredentials.php +++ /dev/null @@ -1,89 +0,0 @@ -selector = $selector; - $this->token = $token; - } - - /** - * export a callback function which updates runtime metadata. - * - * @return array updateMetadata function - */ - public function getUpdateMetadataFunc() - { - return array($this, 'updateMetadata'); - } - - /** - * Updates metadata with the appropriate header metadata. - * - * @param array $metadata metadata hashmap - * @param string $unusedAuthUri optional auth uri - * @param callable $httpHandler callback which delivers psr7 request - * Note: this param is unused here, only included here for - * consistency with other credentials class - * - * @return array updated metadata hashmap - */ - public function updateMetadata( - $metadata, - $unusedAuthUri = null, - callable $httpHandler = null - ) { - $metadata_copy = $metadata; - $metadata_copy[self::SELECTOR_KEY] = $this->selector; - $metadata_copy[self::TOKEN_KEY] = $this->token; - - return $metadata_copy; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/Credentials/InsecureCredentials.php b/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/Credentials/InsecureCredentials.php deleted file mode 100644 index dae894fa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/Credentials/InsecureCredentials.php +++ /dev/null @@ -1,70 +0,0 @@ - '' - ]; - - /** - * Fetches the auth token. In this case it returns an empty string. - * - * @param callable $httpHandler - * @return array A set of auth related metadata, containing the following - * keys: - * - access_token (string) - */ - public function fetchAuthToken(callable $httpHandler = null) - { - return $this->token; - } - - /** - * Returns the cache key. In this case it returns a null value, disabling - * caching. - * - * @return string|null - */ - public function getCacheKey() - { - return null; - } - - /** - * Fetches the last received token. In this case, it returns the same empty string - * auth token. - * - * @return array - */ - public function getLastReceivedToken() - { - return $this->token; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/Credentials/ServiceAccountCredentials.php b/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/Credentials/ServiceAccountCredentials.php deleted file mode 100644 index f180f273..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/Credentials/ServiceAccountCredentials.php +++ /dev/null @@ -1,210 +0,0 @@ -push($middleware); - * - * $client = new Client([ - * 'handler' => $stack, - * 'base_uri' => 'https://www.googleapis.com/taskqueue/v1beta2/projects/', - * 'auth' => 'google_auth' // authorize all requests - * ]); - * - * $res = $client->get('myproject/taskqueues/myqueue'); - */ -class ServiceAccountCredentials extends CredentialsLoader implements SignBlobInterface -{ - use ServiceAccountSignerTrait; - - /** - * The OAuth2 instance used to conduct authorization. - * - * @var OAuth2 - */ - protected $auth; - - /** - * Create a new ServiceAccountCredentials. - * - * @param string|array $scope the scope of the access request, expressed - * either as an Array or as a space-delimited String. - * @param string|array $jsonKey JSON credential file path or JSON credentials - * as an associative array - * @param string $sub an email address account to impersonate, in situations when - * the service account has been delegated domain wide access. - * @param string $targetAudience The audience for the ID token. - */ - public function __construct( - $scope, - $jsonKey, - $sub = null, - $targetAudience = null - ) { - if (is_string($jsonKey)) { - if (!file_exists($jsonKey)) { - throw new \InvalidArgumentException('file does not exist'); - } - $jsonKeyStream = file_get_contents($jsonKey); - if (!$jsonKey = json_decode($jsonKeyStream, true)) { - throw new \LogicException('invalid json for auth config'); - } - } - if (!array_key_exists('client_email', $jsonKey)) { - throw new \InvalidArgumentException( - 'json key is missing the client_email field'); - } - if (!array_key_exists('private_key', $jsonKey)) { - throw new \InvalidArgumentException( - 'json key is missing the private_key field'); - } - if ($scope && $targetAudience) { - throw new InvalidArgumentException( - 'Scope and targetAudience cannot both be supplied'); - } - $additionalClaims = []; - if ($targetAudience) { - $additionalClaims = ['target_audience' => $targetAudience]; - } - $this->auth = new OAuth2([ - 'audience' => self::TOKEN_CREDENTIAL_URI, - 'issuer' => $jsonKey['client_email'], - 'scope' => $scope, - 'signingAlgorithm' => 'RS256', - 'signingKey' => $jsonKey['private_key'], - 'sub' => $sub, - 'tokenCredentialUri' => self::TOKEN_CREDENTIAL_URI, - 'additionalClaims' => $additionalClaims, - ]); - } - - /** - * @param callable $httpHandler - * - * @return array A set of auth related metadata, containing the following - * keys: - * - access_token (string) - * - expires_in (int) - * - token_type (string) - */ - public function fetchAuthToken(callable $httpHandler = null) - { - return $this->auth->fetchAuthToken($httpHandler); - } - - /** - * @return string - */ - public function getCacheKey() - { - $key = $this->auth->getIssuer() . ':' . $this->auth->getCacheKey(); - if ($sub = $this->auth->getSub()) { - $key .= ':' . $sub; - } - - return $key; - } - - /** - * @return array - */ - public function getLastReceivedToken() - { - return $this->auth->getLastReceivedToken(); - } - - /** - * Updates metadata with the authorization token. - * - * @param array $metadata metadata hashmap - * @param string $authUri optional auth uri - * @param callable $httpHandler callback which delivers psr7 request - * - * @return array updated metadata hashmap - */ - public function updateMetadata( - $metadata, - $authUri = null, - callable $httpHandler = null - ) { - // scope exists. use oauth implementation - $scope = $this->auth->getScope(); - if (!is_null($scope)) { - return parent::updateMetadata($metadata, $authUri, $httpHandler); - } - - // no scope found. create jwt with the auth uri - $credJson = array( - 'private_key' => $this->auth->getSigningKey(), - 'client_email' => $this->auth->getIssuer(), - ); - $jwtCreds = new ServiceAccountJwtAccessCredentials($credJson); - - return $jwtCreds->updateMetadata($metadata, $authUri, $httpHandler); - } - - /** - * @param string $sub an email address account to impersonate, in situations when - * the service account has been delegated domain wide access. - */ - public function setSub($sub) - { - $this->auth->setSub($sub); - } - - /** - * Get the client name from the keyfile. - * - * In this case, it returns the keyfile's client_email key. - * - * @param callable $httpHandler Not used by this credentials type. - * @return string - */ - public function getClientName(callable $httpHandler = null) - { - return $this->auth->getIssuer(); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/Credentials/ServiceAccountJwtAccessCredentials.php b/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/Credentials/ServiceAccountJwtAccessCredentials.php deleted file mode 100644 index cf9e06aa..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/Credentials/ServiceAccountJwtAccessCredentials.php +++ /dev/null @@ -1,150 +0,0 @@ -auth = new OAuth2([ - 'issuer' => $jsonKey['client_email'], - 'sub' => $jsonKey['client_email'], - 'signingAlgorithm' => 'RS256', - 'signingKey' => $jsonKey['private_key'], - ]); - } - - /** - * Updates metadata with the authorization token. - * - * @param array $metadata metadata hashmap - * @param string $authUri optional auth uri - * @param callable $httpHandler callback which delivers psr7 request - * - * @return array updated metadata hashmap - */ - public function updateMetadata( - $metadata, - $authUri = null, - callable $httpHandler = null - ) { - if (empty($authUri)) { - return $metadata; - } - - $this->auth->setAudience($authUri); - - return parent::updateMetadata($metadata, $authUri, $httpHandler); - } - - /** - * Implements FetchAuthTokenInterface#fetchAuthToken. - * - * @param callable $httpHandler - * - * @return array|void A set of auth related metadata, containing the - * following keys: - * - access_token (string) - */ - public function fetchAuthToken(callable $httpHandler = null) - { - $audience = $this->auth->getAudience(); - if (empty($audience)) { - return null; - } - - $access_token = $this->auth->toJwt(); - - return array('access_token' => $access_token); - } - - /** - * @return string - */ - public function getCacheKey() - { - return $this->auth->getCacheKey(); - } - - /** - * @return array - */ - public function getLastReceivedToken() - { - return $this->auth->getLastReceivedToken(); - } - - /** - * Get the client name from the keyfile. - * - * In this case, it returns the keyfile's client_email key. - * - * @param callable $httpHandler Not used by this credentials type. - * @return string - */ - public function getClientName(callable $httpHandler = null) - { - return $this->auth->getIssuer(); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/Credentials/UserRefreshCredentials.php b/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/Credentials/UserRefreshCredentials.php deleted file mode 100644 index 74dcad8f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/Credentials/UserRefreshCredentials.php +++ /dev/null @@ -1,137 +0,0 @@ -auth = new OAuth2([ - 'clientId' => $jsonKey['client_id'], - 'clientSecret' => $jsonKey['client_secret'], - 'refresh_token' => $jsonKey['refresh_token'], - 'scope' => $scope, - 'tokenCredentialUri' => self::TOKEN_CREDENTIAL_URI, - ]); - if ($jsonKey['client_id'] === self::CLOUD_SDK_CLIENT_ID - && getenv(self::SUPPRESS_CLOUD_SDK_CREDS_WARNING_ENV) !== 'true') { - trigger_error( - 'Your application has authenticated using end user credentials ' - . 'from Google Cloud SDK. We recommend that most server ' - . 'applications use service accounts instead. If your ' - . 'application continues to use end user credentials ' - . 'from Cloud SDK, you might receive a "quota exceeded" ' - . 'or "API not enabled" error. For more information about ' - . 'service accounts, see ' - . 'https://cloud.google.com/docs/authentication/. ' - . 'To disable this warning, set ' - . self::SUPPRESS_CLOUD_SDK_CREDS_WARNING_ENV - . ' environment variable to "true".', - E_USER_WARNING); - } - } - - /** - * @param callable $httpHandler - * - * @return array A set of auth related metadata, containing the following - * keys: - * - access_token (string) - * - expires_in (int) - * - scope (string) - * - token_type (string) - * - id_token (string) - */ - public function fetchAuthToken(callable $httpHandler = null) - { - return $this->auth->fetchAuthToken($httpHandler); - } - - /** - * @return string - */ - public function getCacheKey() - { - return $this->auth->getClientId() . ':' . $this->auth->getCacheKey(); - } - - /** - * @return array - */ - public function getLastReceivedToken() - { - return $this->auth->getLastReceivedToken(); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/CredentialsLoader.php b/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/CredentialsLoader.php deleted file mode 100644 index a81d88f7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/CredentialsLoader.php +++ /dev/null @@ -1,223 +0,0 @@ -setDefaultOption('auth', 'google_auth'); - $subscriber = new Subscriber\AuthTokenSubscriber( - $fetcher, - $httpHandler, - $tokenCallback - ); - $client->getEmitter()->attach($subscriber); - return $client; - case '6': - $middleware = new Middleware\AuthTokenMiddleware( - $fetcher, - $httpHandler, - $tokenCallback - ); - $stack = \GuzzleHttp\HandlerStack::create(); - $stack->push($middleware); - - return new \GuzzleHttp\Client([ - 'handler' => $stack, - 'auth' => 'google_auth', - ] + $httpClientOptions); - default: - throw new \Exception('Version not supported'); - } - } - - /** - * Create a new instance of InsecureCredentials. - * - * @return InsecureCredentials - */ - public static function makeInsecureCredentials() - { - return new InsecureCredentials(); - } - - /** - * export a callback function which updates runtime metadata. - * - * @return array updateMetadata function - */ - public function getUpdateMetadataFunc() - { - return array($this, 'updateMetadata'); - } - - /** - * Updates metadata with the authorization token. - * - * @param array $metadata metadata hashmap - * @param string $authUri optional auth uri - * @param callable $httpHandler callback which delivers psr7 request - * - * @return array updated metadata hashmap - */ - public function updateMetadata( - $metadata, - $authUri = null, - callable $httpHandler = null - ) { - $result = $this->fetchAuthToken($httpHandler); - if (!isset($result['access_token'])) { - return $metadata; - } - $metadata_copy = $metadata; - $metadata_copy[self::AUTH_METADATA_KEY] = array('Bearer ' . $result['access_token']); - - return $metadata_copy; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/FetchAuthTokenCache.php b/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/FetchAuthTokenCache.php deleted file mode 100644 index 7824d154..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/FetchAuthTokenCache.php +++ /dev/null @@ -1,142 +0,0 @@ -fetcher = $fetcher; - $this->cache = $cache; - $this->cacheConfig = array_merge([ - 'lifetime' => 1500, - 'prefix' => '', - ], (array) $cacheConfig); - } - - /** - * Implements FetchAuthTokenInterface#fetchAuthToken. - * - * Checks the cache for a valid auth token and fetches the auth tokens - * from the supplied fetcher. - * - * @param callable $httpHandler callback which delivers psr7 request - * - * @return array the response - * - * @throws \Exception - */ - public function fetchAuthToken(callable $httpHandler = null) - { - // Use the cached value if its available. - // - // TODO: correct caching; update the call to setCachedValue to set the expiry - // to the value returned with the auth token. - // - // TODO: correct caching; enable the cache to be cleared. - $cacheKey = $this->fetcher->getCacheKey(); - $cached = $this->getCachedValue($cacheKey); - if (!empty($cached)) { - return ['access_token' => $cached]; - } - - $auth_token = $this->fetcher->fetchAuthToken($httpHandler); - - if (isset($auth_token['access_token'])) { - $this->setCachedValue($cacheKey, $auth_token['access_token']); - } - - return $auth_token; - } - - /** - * @return string - */ - public function getCacheKey() - { - return $this->getFullCacheKey($this->fetcher->getCacheKey()); - } - - /** - * @return array|null - */ - public function getLastReceivedToken() - { - return $this->fetcher->getLastReceivedToken(); - } - - /** - * Get the client name from the fetcher. - * - * @param callable $httpHandler An HTTP handler to deliver PSR7 requests. - * @return string - */ - public function getClientName(callable $httpHandler = null) - { - return $this->fetcher->getClientName($httpHandler); - } - - /** - * Sign a blob using the fetcher. - * - * @param string $stringToSign The string to sign. - * @param bool $forceOpenssl Require use of OpenSSL for local signing. Does - * not apply to signing done using external services. **Defaults to** - * `false`. - * @return string The resulting signature. - * @throws \RuntimeException If the fetcher does not implement - * `Google\Auth\SignBlobInterface`. - */ - public function signBlob($stringToSign, $forceOpenSsl = false) - { - if (!$this->fetcher instanceof SignBlobInterface) { - throw new \RuntimeException( - 'Credentials fetcher does not implement ' . - 'Google\Auth\SignBlobInterface' - ); - } - - return $this->fetcher->signBlob($stringToSign, $forceOpenSsl); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/FetchAuthTokenInterface.php b/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/FetchAuthTokenInterface.php deleted file mode 100644 index e3d8d28b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/FetchAuthTokenInterface.php +++ /dev/null @@ -1,55 +0,0 @@ -client = $client; - } - - /** - * Accepts a PSR-7 Request and an array of options and returns a PSR-7 response. - * - * @param RequestInterface $request - * @param array $options - * - * @return ResponseInterface - */ - public function __invoke(RequestInterface $request, array $options = []) - { - $response = $this->client->send( - $this->createGuzzle5Request($request, $options) - ); - - return $this->createPsr7Response($response); - } - - /** - * Accepts a PSR-7 request and an array of options and returns a PromiseInterface - * - * @param RequestInterface $request - * @param array $options - * - * @return Promise - */ - public function async(RequestInterface $request, array $options = []) - { - if (!class_exists('GuzzleHttp\Promise\Promise')) { - throw new Exception('Install guzzlehttp/promises to use async with Guzzle 5'); - } - - $futureResponse = $this->client->send( - $this->createGuzzle5Request( - $request, - ['future' => true] + $options - ) - ); - - $promise = new Promise( - function () use ($futureResponse) { - try { - $futureResponse->wait(); - } catch (Exception $e) { - // The promise is already delivered when the exception is - // thrown, so don't rethrow it. - } - }, - [$futureResponse, 'cancel'] - ); - - $futureResponse->then([$promise, 'resolve'], [$promise, 'reject']); - - return $promise->then( - function (Guzzle5ResponseInterface $response) { - // Adapt the Guzzle 5 Response to a PSR-7 Response. - return $this->createPsr7Response($response); - }, - function (Exception $e) { - return new RejectedPromise($e); - } - ); - } - - private function createGuzzle5Request(RequestInterface $request, array $options) - { - return $this->client->createRequest( - $request->getMethod(), - $request->getUri(), - array_merge_recursive([ - 'headers' => $request->getHeaders(), - 'body' => $request->getBody(), - ], $options) - ); - } - - private function createPsr7Response(Guzzle5ResponseInterface $response) - { - return new Response( - $response->getStatusCode(), - $response->getHeaders() ?: [], - $response->getBody(), - $response->getProtocolVersion(), - $response->getReasonPhrase() - ); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/HttpHandler/Guzzle6HttpHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/HttpHandler/Guzzle6HttpHandler.php deleted file mode 100644 index 6dfe9a8f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/HttpHandler/Guzzle6HttpHandler.php +++ /dev/null @@ -1,49 +0,0 @@ -client = $client; - } - - /** - * Accepts a PSR-7 request and an array of options and returns a PSR-7 response. - * - * @param RequestInterface $request - * @param array $options - * - * @return ResponseInterface - */ - public function __invoke(RequestInterface $request, array $options = []) - { - return $this->client->send($request, $options); - } - - /** - * Accepts a PSR-7 request and an array of options and returns a PromiseInterface - * - * @param RequestInterface $request - * @param array $options - * - * @return \GuzzleHttp\Promise\Promise - */ - public function async(RequestInterface $request, array $options = []) - { - return $this->client->sendAsync($request, $options); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/HttpHandler/HttpClientCache.php b/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/HttpHandler/HttpClientCache.php deleted file mode 100644 index f4a62b96..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/HttpHandler/HttpClientCache.php +++ /dev/null @@ -1,54 +0,0 @@ -httpHandler = $httpHandler - ?: HttpHandlerFactory::build(HttpClientCache::getHttpClient()); - } - - /** - * Sign a string using the IAM signBlob API. - * - * Note that signing using IAM requires your service account to have the - * `iam.serviceAccounts.signBlob` permission, part of the "Service Account - * Token Creator" IAM role. - * - * @param string $email The service account email. - * @param string $accessToken An access token from the service account. - * @param string $stringToSign The string to be signed. - * @param array $delegates [optional] A list of service account emails to - * add to the delegate chain. If omitted, the value of `$email` will - * be used. - * @return string The signed string, base64-encoded. - */ - public function signBlob($email, $accessToken, $stringToSign, array $delegates = []) - { - $httpHandler = $this->httpHandler; - $name = sprintf(self::SERVICE_ACCOUNT_NAME, $email); - $uri = self::IAM_API_ROOT . '/' . sprintf(self::SIGN_BLOB_PATH, $name); - - if ($delegates) { - foreach ($delegates as &$delegate) { - $delegate = sprintf(self::SERVICE_ACCOUNT_NAME, $delegate); - } - } else { - $delegates = [$name]; - } - - $body = [ - 'delegates' => $delegates, - 'payload' => base64_encode($stringToSign), - ]; - - $headers = [ - 'Authorization' => 'Bearer ' . $accessToken - ]; - - $request = new Psr7\Request( - 'POST', - $uri, - $headers, - Psr7\stream_for(json_encode($body)) - ); - - $res = $httpHandler($request); - $body = json_decode((string) $res->getBody(), true); - - return $body['signedBlob']; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/Middleware/AuthTokenMiddleware.php b/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/Middleware/AuthTokenMiddleware.php deleted file mode 100644 index bd4566bf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/Middleware/AuthTokenMiddleware.php +++ /dev/null @@ -1,130 +0,0 @@ -' - */ -class AuthTokenMiddleware -{ - /** - * @var callback - */ - private $httpHandler; - - /** - * @var FetchAuthTokenInterface - */ - private $fetcher; - - /** - * @var callable - */ - private $tokenCallback; - - /** - * Creates a new AuthTokenMiddleware. - * - * @param FetchAuthTokenInterface $fetcher is used to fetch the auth token - * @param callable $httpHandler (optional) callback which delivers psr7 request - * @param callable $tokenCallback (optional) function to be called when a new token is fetched. - */ - public function __construct( - FetchAuthTokenInterface $fetcher, - callable $httpHandler = null, - callable $tokenCallback = null - ) { - $this->fetcher = $fetcher; - $this->httpHandler = $httpHandler; - $this->tokenCallback = $tokenCallback; - } - - /** - * Updates the request with an Authorization header when auth is 'google_auth'. - * - * use Google\Auth\Middleware\AuthTokenMiddleware; - * use Google\Auth\OAuth2; - * use GuzzleHttp\Client; - * use GuzzleHttp\HandlerStack; - * - * $config = [...]; - * $oauth2 = new OAuth2($config) - * $middleware = new AuthTokenMiddleware($oauth2); - * $stack = HandlerStack::create(); - * $stack->push($middleware); - * - * $client = new Client([ - * 'handler' => $stack, - * 'base_uri' => 'https://www.googleapis.com/taskqueue/v1beta2/projects/', - * 'auth' => 'google_auth' // authorize all requests - * ]); - * - * $res = $client->get('myproject/taskqueues/myqueue'); - * - * @param callable $handler - * - * @return \Closure - */ - public function __invoke(callable $handler) - { - return function (RequestInterface $request, array $options) use ($handler) { - // Requests using "auth"="google_auth" will be authorized. - if (!isset($options['auth']) || $options['auth'] !== 'google_auth') { - return $handler($request, $options); - } - - $request = $request->withHeader('authorization', 'Bearer ' . $this->fetchToken()); - - return $handler($request, $options); - }; - } - - /** - * Call fetcher to fetch the token. - * - * @return string - */ - private function fetchToken() - { - $auth_tokens = $this->fetcher->fetchAuthToken($this->httpHandler); - - if (array_key_exists('access_token', $auth_tokens)) { - // notify the callback if applicable - if ($this->tokenCallback) { - call_user_func($this->tokenCallback, $this->fetcher->getCacheKey(), $auth_tokens['access_token']); - } - - return $auth_tokens['access_token']; - } - - if (array_key_exists('id_token', $auth_tokens)) { - return $auth_tokens['id_token']; - } - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/Middleware/ScopedAccessTokenMiddleware.php b/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/Middleware/ScopedAccessTokenMiddleware.php deleted file mode 100644 index 55f04d1b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/Middleware/ScopedAccessTokenMiddleware.php +++ /dev/null @@ -1,175 +0,0 @@ -' - */ -class ScopedAccessTokenMiddleware -{ - use CacheTrait; - - const DEFAULT_CACHE_LIFETIME = 1500; - - /** - * @var CacheItemPoolInterface - */ - private $cache; - - /** - * @var array configuration - */ - private $cacheConfig; - - /** - * @var callable - */ - private $tokenFunc; - - /** - * @var array|string - */ - private $scopes; - - /** - * Creates a new ScopedAccessTokenMiddleware. - * - * @param callable $tokenFunc a token generator function - * @param array|string $scopes the token authentication scopes - * @param array $cacheConfig configuration for the cache when it's present - * @param CacheItemPoolInterface $cache an implementation of CacheItemPoolInterface - */ - public function __construct( - callable $tokenFunc, - $scopes, - array $cacheConfig = null, - CacheItemPoolInterface $cache = null - ) { - $this->tokenFunc = $tokenFunc; - if (!(is_string($scopes) || is_array($scopes))) { - throw new \InvalidArgumentException( - 'wants scope should be string or array'); - } - $this->scopes = $scopes; - - if (!is_null($cache)) { - $this->cache = $cache; - $this->cacheConfig = array_merge([ - 'lifetime' => self::DEFAULT_CACHE_LIFETIME, - 'prefix' => '', - ], $cacheConfig); - } - } - - /** - * Updates the request with an Authorization header when auth is 'scoped'. - * - * E.g this could be used to authenticate using the AppEngine - * AppIdentityService. - * - * use google\appengine\api\app_identity\AppIdentityService; - * use Google\Auth\Middleware\ScopedAccessTokenMiddleware; - * use GuzzleHttp\Client; - * use GuzzleHttp\HandlerStack; - * - * $scope = 'https://www.googleapis.com/auth/taskqueue' - * $middleware = new ScopedAccessTokenMiddleware( - * 'AppIdentityService::getAccessToken', - * $scope, - * [ 'prefix' => 'Google\Auth\ScopedAccessToken::' ], - * $cache = new Memcache() - * ); - * $stack = HandlerStack::create(); - * $stack->push($middleware); - * - * $client = new Client([ - * 'handler' => $stack, - * 'base_url' => 'https://www.googleapis.com/taskqueue/v1beta2/projects/', - * 'auth' => 'scoped' // authorize all requests - * ]); - * - * $res = $client->get('myproject/taskqueues/myqueue'); - * - * @param callable $handler - * - * @return \Closure - */ - public function __invoke(callable $handler) - { - return function (RequestInterface $request, array $options) use ($handler) { - // Requests using "auth"="scoped" will be authorized. - if (!isset($options['auth']) || $options['auth'] !== 'scoped') { - return $handler($request, $options); - } - - $request = $request->withHeader('authorization', 'Bearer ' . $this->fetchToken()); - - return $handler($request, $options); - }; - } - - /** - * @return string - */ - private function getCacheKey() - { - $key = null; - - if (is_string($this->scopes)) { - $key .= $this->scopes; - } elseif (is_array($this->scopes)) { - $key .= implode(':', $this->scopes); - } - - return $key; - } - - /** - * Determine if token is available in the cache, if not call tokenFunc to - * fetch it. - * - * @return string - */ - private function fetchToken() - { - $cacheKey = $this->getCacheKey(); - $cached = $this->getCachedValue($cacheKey); - - if (!empty($cached)) { - return $cached; - } - - $token = call_user_func($this->tokenFunc, $this->scopes); - $this->setCachedValue($cacheKey, $token); - - return $token; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/Middleware/SimpleMiddleware.php b/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/Middleware/SimpleMiddleware.php deleted file mode 100644 index c31fc657..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/Middleware/SimpleMiddleware.php +++ /dev/null @@ -1,93 +0,0 @@ -config = array_merge(['key' => null], $config); - } - - /** - * Updates the request query with the developer key if auth is set to simple. - * - * use Google\Auth\Middleware\SimpleMiddleware; - * use GuzzleHttp\Client; - * use GuzzleHttp\HandlerStack; - * - * $my_key = 'is not the same as yours'; - * $middleware = new SimpleMiddleware(['key' => $my_key]); - * $stack = HandlerStack::create(); - * $stack->push($middleware); - * - * $client = new Client([ - * 'handler' => $stack, - * 'base_uri' => 'https://www.googleapis.com/discovery/v1/', - * 'auth' => 'simple' - * ]); - * - * $res = $client->get('drive/v2/rest'); - * - * @param callable $handler - * - * @return \Closure - */ - public function __invoke(callable $handler) - { - return function (RequestInterface $request, array $options) use ($handler) { - // Requests using "auth"="scoped" will be authorized. - if (!isset($options['auth']) || $options['auth'] !== 'simple') { - return $handler($request, $options); - } - - $query = Psr7\parse_query($request->getUri()->getQuery()); - $params = array_merge($query, $this->config); - $uri = $request->getUri()->withQuery(Psr7\build_query($params)); - $request = $request->withUri($uri); - - return $handler($request, $options); - }; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/OAuth2.php b/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/OAuth2.php deleted file mode 100644 index fa3f5939..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/OAuth2.php +++ /dev/null @@ -1,1360 +0,0 @@ - self::DEFAULT_EXPIRY_SECONDS, - 'extensionParams' => [], - 'authorizationUri' => null, - 'redirectUri' => null, - 'tokenCredentialUri' => null, - 'state' => null, - 'username' => null, - 'password' => null, - 'clientId' => null, - 'clientSecret' => null, - 'issuer' => null, - 'sub' => null, - 'audience' => null, - 'signingKey' => null, - 'signingAlgorithm' => null, - 'scope' => null, - 'additionalClaims' => [], - ], $config); - - $this->setAuthorizationUri($opts['authorizationUri']); - $this->setRedirectUri($opts['redirectUri']); - $this->setTokenCredentialUri($opts['tokenCredentialUri']); - $this->setState($opts['state']); - $this->setUsername($opts['username']); - $this->setPassword($opts['password']); - $this->setClientId($opts['clientId']); - $this->setClientSecret($opts['clientSecret']); - $this->setIssuer($opts['issuer']); - $this->setSub($opts['sub']); - $this->setExpiry($opts['expiry']); - $this->setAudience($opts['audience']); - $this->setSigningKey($opts['signingKey']); - $this->setSigningAlgorithm($opts['signingAlgorithm']); - $this->setScope($opts['scope']); - $this->setExtensionParams($opts['extensionParams']); - $this->setAdditionalClaims($opts['additionalClaims']); - $this->updateToken($opts); - } - - /** - * Verifies the idToken if present. - * - * - if none is present, return null - * - if present, but invalid, raises DomainException. - * - otherwise returns the payload in the idtoken as a PHP object. - * - * if $publicKey is null, the key is decoded without being verified. - * - * @param string $publicKey The public key to use to authenticate the token - * @param array $allowed_algs List of supported verification algorithms - * - * @return null|object - */ - public function verifyIdToken($publicKey = null, $allowed_algs = array()) - { - $idToken = $this->getIdToken(); - if (is_null($idToken)) { - return null; - } - - $resp = $this->jwtDecode($idToken, $publicKey, $allowed_algs); - if (!property_exists($resp, 'aud')) { - throw new \DomainException('No audience found the id token'); - } - if ($resp->aud != $this->getAudience()) { - throw new \DomainException('Wrong audience present in the id token'); - } - - return $resp; - } - - /** - * Obtains the encoded jwt from the instance data. - * - * @param array $config array optional configuration parameters - * - * @return string - */ - public function toJwt(array $config = []) - { - if (is_null($this->getSigningKey())) { - throw new \DomainException('No signing key available'); - } - if (is_null($this->getSigningAlgorithm())) { - throw new \DomainException('No signing algorithm specified'); - } - $now = time(); - - $opts = array_merge([ - 'skew' => self::DEFAULT_SKEW_SECONDS, - ], $config); - - $assertion = [ - 'iss' => $this->getIssuer(), - 'aud' => $this->getAudience(), - 'exp' => ($now + $this->getExpiry()), - 'iat' => ($now - $opts['skew']), - ]; - foreach ($assertion as $k => $v) { - if (is_null($v)) { - throw new \DomainException($k . ' should not be null'); - } - } - if (!(is_null($this->getScope()))) { - $assertion['scope'] = $this->getScope(); - } - if (!(is_null($this->getSub()))) { - $assertion['sub'] = $this->getSub(); - } - $assertion += $this->getAdditionalClaims(); - - return $this->jwtEncode($assertion, $this->getSigningKey(), - $this->getSigningAlgorithm()); - } - - /** - * Generates a request for token credentials. - * - * @return RequestInterface the authorization Url. - */ - public function generateCredentialsRequest() - { - $uri = $this->getTokenCredentialUri(); - if (is_null($uri)) { - throw new \DomainException('No token credential URI was set.'); - } - - $grantType = $this->getGrantType(); - $params = array('grant_type' => $grantType); - switch ($grantType) { - case 'authorization_code': - $params['code'] = $this->getCode(); - $params['redirect_uri'] = $this->getRedirectUri(); - $this->addClientCredentials($params); - break; - case 'password': - $params['username'] = $this->getUsername(); - $params['password'] = $this->getPassword(); - $this->addClientCredentials($params); - break; - case 'refresh_token': - $params['refresh_token'] = $this->getRefreshToken(); - $this->addClientCredentials($params); - break; - case self::JWT_URN: - $params['assertion'] = $this->toJwt(); - break; - default: - if (!is_null($this->getRedirectUri())) { - # Grant type was supposed to be 'authorization_code', as there - # is a redirect URI. - throw new \DomainException('Missing authorization code'); - } - unset($params['grant_type']); - if (!is_null($grantType)) { - $params['grant_type'] = $grantType; - } - $params = array_merge($params, $this->getExtensionParams()); - } - - $headers = [ - 'Cache-Control' => 'no-store', - 'Content-Type' => 'application/x-www-form-urlencoded', - ]; - - return new Request( - 'POST', - $uri, - $headers, - Psr7\build_query($params) - ); - } - - /** - * Fetches the auth tokens based on the current state. - * - * @param callable $httpHandler callback which delivers psr7 request - * - * @return array the response - */ - public function fetchAuthToken(callable $httpHandler = null) - { - if (is_null($httpHandler)) { - $httpHandler = HttpHandlerFactory::build(HttpClientCache::getHttpClient()); - } - - $response = $httpHandler($this->generateCredentialsRequest()); - $credentials = $this->parseTokenResponse($response); - $this->updateToken($credentials); - - return $credentials; - } - - /** - * Obtains a key that can used to cache the results of #fetchAuthToken. - * - * The key is derived from the scopes. - * - * @return string a key that may be used to cache the auth token. - */ - public function getCacheKey() - { - if (is_string($this->scope)) { - return $this->scope; - } - - if (is_array($this->scope)) { - return implode(':', $this->scope); - } - - // If scope has not set, return null to indicate no caching. - return null; - } - - /** - * Parses the fetched tokens. - * - * @param ResponseInterface $resp the response. - * - * @return array the tokens parsed from the response body. - * - * @throws \Exception - */ - public function parseTokenResponse(ResponseInterface $resp) - { - $body = (string)$resp->getBody(); - if ($resp->hasHeader('Content-Type') && - $resp->getHeaderLine('Content-Type') == 'application/x-www-form-urlencoded' - ) { - $res = array(); - parse_str($body, $res); - - return $res; - } - - // Assume it's JSON; if it's not throw an exception - if (null === $res = json_decode($body, true)) { - throw new \Exception('Invalid JSON response'); - } - - return $res; - } - - /** - * Updates an OAuth 2.0 client. - * - * @example - * client.updateToken([ - * 'refresh_token' => 'n4E9O119d', - * 'access_token' => 'FJQbwq9', - * 'expires_in' => 3600 - * ]) - * - * @param array $config - * The configuration parameters related to the token. - * - * - refresh_token - * The refresh token associated with the access token - * to be refreshed. - * - * - access_token - * The current access token for this client. - * - * - id_token - * The current ID token for this client. - * - * - expires_in - * The time in seconds until access token expiration. - * - * - expires_at - * The time as an integer number of seconds since the Epoch - * - * - issued_at - * The timestamp that the token was issued at. - */ - public function updateToken(array $config) - { - $opts = array_merge([ - 'extensionParams' => [], - 'access_token' => null, - 'id_token' => null, - 'expires_in' => null, - 'expires_at' => null, - 'issued_at' => null, - ], $config); - - $this->setExpiresAt($opts['expires_at']); - $this->setExpiresIn($opts['expires_in']); - // By default, the token is issued at `Time.now` when `expiresIn` is set, - // but this can be used to supply a more precise time. - if (!is_null($opts['issued_at'])) { - $this->setIssuedAt($opts['issued_at']); - } - - $this->setAccessToken($opts['access_token']); - $this->setIdToken($opts['id_token']); - // The refresh token should only be updated if a value is explicitly - // passed in, as some access token responses do not include a refresh - // token. - if (array_key_exists('refresh_token', $opts)) { - $this->setRefreshToken($opts['refresh_token']); - } - } - - /** - * Builds the authorization Uri that the user should be redirected to. - * - * @param array $config configuration options that customize the return url - * - * @return UriInterface the authorization Url. - * - * @throws InvalidArgumentException - */ - public function buildFullAuthorizationUri(array $config = []) - { - if (is_null($this->getAuthorizationUri())) { - throw new InvalidArgumentException( - 'requires an authorizationUri to have been set'); - } - - $params = array_merge([ - 'response_type' => 'code', - 'access_type' => 'offline', - 'client_id' => $this->clientId, - 'redirect_uri' => $this->redirectUri, - 'state' => $this->state, - 'scope' => $this->getScope(), - ], $config); - - // Validate the auth_params - if (is_null($params['client_id'])) { - throw new InvalidArgumentException( - 'missing the required client identifier'); - } - if (is_null($params['redirect_uri'])) { - throw new InvalidArgumentException('missing the required redirect URI'); - } - if (!empty($params['prompt']) && !empty($params['approval_prompt'])) { - throw new InvalidArgumentException( - 'prompt and approval_prompt are mutually exclusive'); - } - - // Construct the uri object; return it if it is valid. - $result = clone $this->authorizationUri; - $existingParams = Psr7\parse_query($result->getQuery()); - - $result = $result->withQuery( - Psr7\build_query(array_merge($existingParams, $params)) - ); - - if ($result->getScheme() != 'https') { - throw new InvalidArgumentException( - 'Authorization endpoint must be protected by TLS'); - } - - return $result; - } - - /** - * Sets the authorization server's HTTP endpoint capable of authenticating - * the end-user and obtaining authorization. - * - * @param string $uri - */ - public function setAuthorizationUri($uri) - { - $this->authorizationUri = $this->coerceUri($uri); - } - - /** - * Gets the authorization server's HTTP endpoint capable of authenticating - * the end-user and obtaining authorization. - * - * @return UriInterface - */ - public function getAuthorizationUri() - { - return $this->authorizationUri; - } - - /** - * Gets the authorization server's HTTP endpoint capable of issuing tokens - * and refreshing expired tokens. - * - * @return string - */ - public function getTokenCredentialUri() - { - return $this->tokenCredentialUri; - } - - /** - * Sets the authorization server's HTTP endpoint capable of issuing tokens - * and refreshing expired tokens. - * - * @param string $uri - */ - public function setTokenCredentialUri($uri) - { - $this->tokenCredentialUri = $this->coerceUri($uri); - } - - /** - * Gets the redirection URI used in the initial request. - * - * @return string - */ - public function getRedirectUri() - { - return $this->redirectUri; - } - - /** - * Sets the redirection URI used in the initial request. - * - * @param string $uri - */ - public function setRedirectUri($uri) - { - if (is_null($uri)) { - $this->redirectUri = null; - - return; - } - // redirect URI must be absolute - if (!$this->isAbsoluteUri($uri)) { - // "postmessage" is a reserved URI string in Google-land - // @see https://developers.google.com/identity/sign-in/web/server-side-flow - if ('postmessage' !== (string)$uri) { - throw new InvalidArgumentException( - 'Redirect URI must be absolute'); - } - } - $this->redirectUri = (string)$uri; - } - - /** - * Gets the scope of the access requests as a space-delimited String. - * - * @return string - */ - public function getScope() - { - if (is_null($this->scope)) { - return $this->scope; - } - - return implode(' ', $this->scope); - } - - /** - * Sets the scope of the access request, expressed either as an Array or as - * a space-delimited String. - * - * @param string|array $scope - * - * @throws InvalidArgumentException - */ - public function setScope($scope) - { - if (is_null($scope)) { - $this->scope = null; - } elseif (is_string($scope)) { - $this->scope = explode(' ', $scope); - } elseif (is_array($scope)) { - foreach ($scope as $s) { - $pos = strpos($s, ' '); - if ($pos !== false) { - throw new InvalidArgumentException( - 'array scope values should not contain spaces'); - } - } - $this->scope = $scope; - } else { - throw new InvalidArgumentException( - 'scopes should be a string or array of strings'); - } - } - - /** - * Gets the current grant type. - * - * @return string - */ - public function getGrantType() - { - if (!is_null($this->grantType)) { - return $this->grantType; - } - - // Returns the inferred grant type, based on the current object instance - // state. - if (!is_null($this->code)) { - return 'authorization_code'; - } - - if (!is_null($this->refreshToken)) { - return 'refresh_token'; - } - - if (!is_null($this->username) && !is_null($this->password)) { - return 'password'; - } - - if (!is_null($this->issuer) && !is_null($this->signingKey)) { - return self::JWT_URN; - } - - return null; - } - - /** - * Sets the current grant type. - * - * @param $grantType - * - * @throws InvalidArgumentException - */ - public function setGrantType($grantType) - { - if (in_array($grantType, self::$knownGrantTypes)) { - $this->grantType = $grantType; - } else { - // validate URI - if (!$this->isAbsoluteUri($grantType)) { - throw new InvalidArgumentException( - 'invalid grant type'); - } - $this->grantType = (string)$grantType; - } - } - - /** - * Gets an arbitrary string designed to allow the client to maintain state. - * - * @return string - */ - public function getState() - { - return $this->state; - } - - /** - * Sets an arbitrary string designed to allow the client to maintain state. - * - * @param string $state - */ - public function setState($state) - { - $this->state = $state; - } - - /** - * Gets the authorization code issued to this client. - */ - public function getCode() - { - return $this->code; - } - - /** - * Sets the authorization code issued to this client. - * - * @param string $code - */ - public function setCode($code) - { - $this->code = $code; - } - - /** - * Gets the resource owner's username. - */ - public function getUsername() - { - return $this->username; - } - - /** - * Sets the resource owner's username. - * - * @param string $username - */ - public function setUsername($username) - { - $this->username = $username; - } - - /** - * Gets the resource owner's password. - */ - public function getPassword() - { - return $this->password; - } - - /** - * Sets the resource owner's password. - * - * @param $password - */ - public function setPassword($password) - { - $this->password = $password; - } - - /** - * Sets a unique identifier issued to the client to identify itself to the - * authorization server. - */ - public function getClientId() - { - return $this->clientId; - } - - /** - * Sets a unique identifier issued to the client to identify itself to the - * authorization server. - * - * @param $clientId - */ - public function setClientId($clientId) - { - $this->clientId = $clientId; - } - - /** - * Gets a shared symmetric secret issued by the authorization server, which - * is used to authenticate the client. - */ - public function getClientSecret() - { - return $this->clientSecret; - } - - /** - * Sets a shared symmetric secret issued by the authorization server, which - * is used to authenticate the client. - * - * @param $clientSecret - */ - public function setClientSecret($clientSecret) - { - $this->clientSecret = $clientSecret; - } - - /** - * Gets the Issuer ID when using assertion profile. - */ - public function getIssuer() - { - return $this->issuer; - } - - /** - * Sets the Issuer ID when using assertion profile. - * - * @param string $issuer - */ - public function setIssuer($issuer) - { - $this->issuer = $issuer; - } - - /** - * Gets the target sub when issuing assertions. - */ - public function getSub() - { - return $this->sub; - } - - /** - * Sets the target sub when issuing assertions. - * - * @param string $sub - */ - public function setSub($sub) - { - $this->sub = $sub; - } - - /** - * Gets the target audience when issuing assertions. - */ - public function getAudience() - { - return $this->audience; - } - - /** - * Sets the target audience when issuing assertions. - * - * @param string $audience - */ - public function setAudience($audience) - { - $this->audience = $audience; - } - - /** - * Gets the signing key when using an assertion profile. - */ - public function getSigningKey() - { - return $this->signingKey; - } - - /** - * Sets the signing key when using an assertion profile. - * - * @param string $signingKey - */ - public function setSigningKey($signingKey) - { - $this->signingKey = $signingKey; - } - - /** - * Gets the signing algorithm when using an assertion profile. - * - * @return string - */ - public function getSigningAlgorithm() - { - return $this->signingAlgorithm; - } - - /** - * Sets the signing algorithm when using an assertion profile. - * - * @param string $signingAlgorithm - */ - public function setSigningAlgorithm($signingAlgorithm) - { - if (is_null($signingAlgorithm)) { - $this->signingAlgorithm = null; - } elseif (!in_array($signingAlgorithm, self::$knownSigningAlgorithms)) { - throw new InvalidArgumentException('unknown signing algorithm'); - } else { - $this->signingAlgorithm = $signingAlgorithm; - } - } - - /** - * Gets the set of parameters used by extension when using an extension - * grant type. - */ - public function getExtensionParams() - { - return $this->extensionParams; - } - - /** - * Sets the set of parameters used by extension when using an extension - * grant type. - * - * @param $extensionParams - */ - public function setExtensionParams($extensionParams) - { - $this->extensionParams = $extensionParams; - } - - /** - * Gets the number of seconds assertions are valid for. - */ - public function getExpiry() - { - return $this->expiry; - } - - /** - * Sets the number of seconds assertions are valid for. - * - * @param int $expiry - */ - public function setExpiry($expiry) - { - $this->expiry = $expiry; - } - - /** - * Gets the lifetime of the access token in seconds. - */ - public function getExpiresIn() - { - return $this->expiresIn; - } - - /** - * Sets the lifetime of the access token in seconds. - * - * @param int $expiresIn - */ - public function setExpiresIn($expiresIn) - { - if (is_null($expiresIn)) { - $this->expiresIn = null; - $this->issuedAt = null; - } else { - $this->issuedAt = time(); - $this->expiresIn = (int)$expiresIn; - } - } - - /** - * Gets the time the current access token expires at. - * - * @return int - */ - public function getExpiresAt() - { - if (!is_null($this->expiresAt)) { - return $this->expiresAt; - } - - if (!is_null($this->issuedAt) && !is_null($this->expiresIn)) { - return $this->issuedAt + $this->expiresIn; - } - - return null; - } - - /** - * Returns true if the acccess token has expired. - * - * @return bool - */ - public function isExpired() - { - $expiration = $this->getExpiresAt(); - $now = time(); - - return !is_null($expiration) && $now >= $expiration; - } - - /** - * Sets the time the current access token expires at. - * - * @param int $expiresAt - */ - public function setExpiresAt($expiresAt) - { - $this->expiresAt = $expiresAt; - } - - /** - * Gets the time the current access token was issued at. - */ - public function getIssuedAt() - { - return $this->issuedAt; - } - - /** - * Sets the time the current access token was issued at. - * - * @param int $issuedAt - */ - public function setIssuedAt($issuedAt) - { - $this->issuedAt = $issuedAt; - } - - /** - * Gets the current access token. - */ - public function getAccessToken() - { - return $this->accessToken; - } - - /** - * Sets the current access token. - * - * @param string $accessToken - */ - public function setAccessToken($accessToken) - { - $this->accessToken = $accessToken; - } - - /** - * Gets the current ID token. - */ - public function getIdToken() - { - return $this->idToken; - } - - /** - * Sets the current ID token. - * - * @param $idToken - */ - public function setIdToken($idToken) - { - $this->idToken = $idToken; - } - - /** - * Gets the refresh token associated with the current access token. - */ - public function getRefreshToken() - { - return $this->refreshToken; - } - - /** - * Sets the refresh token associated with the current access token. - * - * @param $refreshToken - */ - public function setRefreshToken($refreshToken) - { - $this->refreshToken = $refreshToken; - } - - /** - * Sets additional claims to be included in the JWT token - * - * @param array $additionalClaims - */ - public function setAdditionalClaims(array $additionalClaims) - { - $this->additionalClaims = $additionalClaims; - } - - /** - * Gets the additional claims to be included in the JWT token. - * - * @return array - */ - public function getAdditionalClaims() - { - return $this->additionalClaims; - } - - /** - * The expiration of the last received token. - * - * @return array - */ - public function getLastReceivedToken() - { - if ($token = $this->getAccessToken()) { - return [ - 'access_token' => $token, - 'expires_at' => $this->getExpiresAt(), - ]; - } - - return null; - } - - /** - * Get the client ID. - * - * Alias of {@see Google\Auth\OAuth2::getClientId()}. - * - * @param callable $httpHandler - * @return string - * @access private - */ - public function getClientName(callable $httpHandler = null) - { - return $this->getClientId(); - } - - /** - * @todo handle uri as array - * - * @param string $uri - * - * @return null|UriInterface - */ - private function coerceUri($uri) - { - if (is_null($uri)) { - return; - } - - return Psr7\uri_for($uri); - } - - /** - * @param string $idToken - * @param string|array|null $publicKey - * @param array $allowedAlgs - * - * @return object - */ - private function jwtDecode($idToken, $publicKey, $allowedAlgs) - { - if (class_exists('Firebase\JWT\JWT')) { - return \Firebase\JWT\JWT::decode($idToken, $publicKey, $allowedAlgs); - } - - return \JWT::decode($idToken, $publicKey, $allowedAlgs); - } - - private function jwtEncode($assertion, $signingKey, $signingAlgorithm) - { - if (class_exists('Firebase\JWT\JWT')) { - return \Firebase\JWT\JWT::encode($assertion, $signingKey, - $signingAlgorithm); - } - - return \JWT::encode($assertion, $signingKey, $signingAlgorithm); - } - - /** - * Determines if the URI is absolute based on its scheme and host or path - * (RFC 3986). - * - * @param string $uri - * - * @return bool - */ - private function isAbsoluteUri($uri) - { - $uri = $this->coerceUri($uri); - - return $uri->getScheme() && ($uri->getHost() || $uri->getPath()); - } - - /** - * @param array $params - * - * @return array - */ - private function addClientCredentials(&$params) - { - $clientId = $this->getClientId(); - $clientSecret = $this->getClientSecret(); - - if ($clientId && $clientSecret) { - $params['client_id'] = $clientId; - $params['client_secret'] = $clientSecret; - } - - return $params; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/ServiceAccountSignerTrait.php b/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/ServiceAccountSignerTrait.php deleted file mode 100644 index 72fb1428..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/ServiceAccountSignerTrait.php +++ /dev/null @@ -1,57 +0,0 @@ -auth->getSigningKey(); - - $signedString = ''; - if (class_exists('\\phpseclib\\Crypt\\RSA') && !$forceOpenssl) { - $rsa = new RSA; - $rsa->loadKey($privateKey); - $rsa->setSignatureMode(RSA::SIGNATURE_PKCS1); - $rsa->setHash('sha256'); - - $signedString = $rsa->sign($stringToSign); - } elseif (extension_loaded('openssl')) { - openssl_sign($stringToSign, $signedString, $privateKey, 'sha256WithRSAEncryption'); - } else { - // @codeCoverageIgnoreStart - throw new \RuntimeException('OpenSSL is not installed.'); - } - // @codeCoverageIgnoreEnd - - return base64_encode($signedString); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/SignBlobInterface.php b/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/SignBlobInterface.php deleted file mode 100644 index 5f2c9441..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/SignBlobInterface.php +++ /dev/null @@ -1,44 +0,0 @@ -' - */ -class AuthTokenSubscriber implements SubscriberInterface -{ - /** - * @var callable - */ - private $httpHandler; - - /** - * @var FetchAuthTokenInterface - */ - private $fetcher; - - /** - * @var callable - */ - private $tokenCallback; - - /** - * Creates a new AuthTokenSubscriber. - * - * @param FetchAuthTokenInterface $fetcher is used to fetch the auth token - * @param callable $httpHandler (optional) http client to fetch the token. - * @param callable $tokenCallback (optional) function to be called when a new token is fetched. - */ - public function __construct( - FetchAuthTokenInterface $fetcher, - callable $httpHandler = null, - callable $tokenCallback = null - ) { - $this->fetcher = $fetcher; - $this->httpHandler = $httpHandler; - $this->tokenCallback = $tokenCallback; - } - - /** - * @return array - */ - public function getEvents() - { - return ['before' => ['onBefore', RequestEvents::SIGN_REQUEST]]; - } - - /** - * Updates the request with an Authorization header when auth is 'fetched_auth_token'. - * - * use GuzzleHttp\Client; - * use Google\Auth\OAuth2; - * use Google\Auth\Subscriber\AuthTokenSubscriber; - * - * $config = [...]; - * $oauth2 = new OAuth2($config) - * $subscriber = new AuthTokenSubscriber($oauth2); - * - * $client = new Client([ - * 'base_url' => 'https://www.googleapis.com/taskqueue/v1beta2/projects/', - * 'defaults' => ['auth' => 'google_auth'] - * ]); - * $client->getEmitter()->attach($subscriber); - * - * $res = $client->get('myproject/taskqueues/myqueue'); - * - * @param BeforeEvent $event - */ - public function onBefore(BeforeEvent $event) - { - // Requests using "auth"="google_auth" will be authorized. - $request = $event->getRequest(); - if ($request->getConfig()['auth'] != 'google_auth') { - return; - } - - // Fetch the auth token. - $auth_tokens = $this->fetcher->fetchAuthToken($this->httpHandler); - if (array_key_exists('access_token', $auth_tokens)) { - $request->setHeader('authorization', 'Bearer ' . $auth_tokens['access_token']); - - // notify the callback if applicable - if ($this->tokenCallback) { - call_user_func($this->tokenCallback, $this->fetcher->getCacheKey(), $auth_tokens['access_token']); - } - } - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/Subscriber/ScopedAccessTokenSubscriber.php b/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/Subscriber/ScopedAccessTokenSubscriber.php deleted file mode 100644 index 63b4ca2a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/Subscriber/ScopedAccessTokenSubscriber.php +++ /dev/null @@ -1,177 +0,0 @@ -' - */ -class ScopedAccessTokenSubscriber implements SubscriberInterface -{ - use CacheTrait; - - const DEFAULT_CACHE_LIFETIME = 1500; - - /** - * @var CacheItemPoolInterface - */ - private $cache; - - /** - * @var callable The access token generator function - */ - private $tokenFunc; - - /** - * @var array|string The scopes used to generate the token - */ - private $scopes; - - /** - * @var array - */ - private $cacheConfig; - - /** - * Creates a new ScopedAccessTokenSubscriber. - * - * @param callable $tokenFunc a token generator function - * @param array|string $scopes the token authentication scopes - * @param array $cacheConfig configuration for the cache when it's present - * @param CacheItemPoolInterface $cache an implementation of CacheItemPoolInterface - */ - public function __construct( - callable $tokenFunc, - $scopes, - array $cacheConfig = null, - CacheItemPoolInterface $cache = null - ) { - $this->tokenFunc = $tokenFunc; - if (!(is_string($scopes) || is_array($scopes))) { - throw new \InvalidArgumentException( - 'wants scope should be string or array'); - } - $this->scopes = $scopes; - - if (!is_null($cache)) { - $this->cache = $cache; - $this->cacheConfig = array_merge([ - 'lifetime' => self::DEFAULT_CACHE_LIFETIME, - 'prefix' => '', - ], $cacheConfig); - } - } - - /** - * @return array - */ - public function getEvents() - { - return ['before' => ['onBefore', RequestEvents::SIGN_REQUEST]]; - } - - /** - * Updates the request with an Authorization header when auth is 'scoped'. - * - * E.g this could be used to authenticate using the AppEngine - * AppIdentityService. - * - * use google\appengine\api\app_identity\AppIdentityService; - * use Google\Auth\Subscriber\ScopedAccessTokenSubscriber; - * use GuzzleHttp\Client; - * - * $scope = 'https://www.googleapis.com/auth/taskqueue' - * $subscriber = new ScopedAccessToken( - * 'AppIdentityService::getAccessToken', - * $scope, - * ['prefix' => 'Google\Auth\ScopedAccessToken::'], - * $cache = new Memcache() - * ); - * - * $client = new Client([ - * 'base_url' => 'https://www.googleapis.com/taskqueue/v1beta2/projects/', - * 'defaults' => ['auth' => 'scoped'] - * ]); - * $client->getEmitter()->attach($subscriber); - * - * $res = $client->get('myproject/taskqueues/myqueue'); - * - * @param BeforeEvent $event - */ - public function onBefore(BeforeEvent $event) - { - // Requests using "auth"="scoped" will be authorized. - $request = $event->getRequest(); - if ($request->getConfig()['auth'] != 'scoped') { - return; - } - $auth_header = 'Bearer ' . $this->fetchToken(); - $request->setHeader('authorization', $auth_header); - } - - /** - * @return string - */ - private function getCacheKey() - { - $key = null; - - if (is_string($this->scopes)) { - $key .= $this->scopes; - } elseif (is_array($this->scopes)) { - $key .= implode(':', $this->scopes); - } - - return $key; - } - - /** - * Determine if token is available in the cache, if not call tokenFunc to - * fetch it. - * - * @return string - */ - private function fetchToken() - { - $cacheKey = $this->getCacheKey(); - $cached = $this->getCachedValue($cacheKey); - - if (!empty($cached)) { - return $cached; - } - - $token = call_user_func($this->tokenFunc, $this->scopes); - $this->setCachedValue($cacheKey, $token); - - return $token; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/Subscriber/SimpleSubscriber.php b/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/Subscriber/SimpleSubscriber.php deleted file mode 100644 index 0c567313..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/google/auth/src/Subscriber/SimpleSubscriber.php +++ /dev/null @@ -1,90 +0,0 @@ -config = array_merge([], $config); - } - - /** - * @return array - */ - public function getEvents() - { - return ['before' => ['onBefore', RequestEvents::SIGN_REQUEST]]; - } - - /** - * Updates the request query with the developer key if auth is set to simple. - * - * use Google\Auth\Subscriber\SimpleSubscriber; - * use GuzzleHttp\Client; - * - * $my_key = 'is not the same as yours'; - * $subscriber = new SimpleSubscriber(['key' => $my_key]); - * - * $client = new Client([ - * 'base_url' => 'https://www.googleapis.com/discovery/v1/', - * 'defaults' => ['auth' => 'simple'] - * ]); - * $client->getEmitter()->attach($subscriber); - * - * $res = $client->get('drive/v2/rest'); - * - * @param BeforeEvent $event - */ - public function onBefore(BeforeEvent $event) - { - // Requests using "auth"="simple" with the developer key. - $request = $event->getRequest(); - if ($request->getConfig()['auth'] != 'simple') { - return; - } - $request->getQuery()->overwriteWith($this->config); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/.php_cs b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/.php_cs deleted file mode 100644 index 2dd5036c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/.php_cs +++ /dev/null @@ -1,23 +0,0 @@ -setRiskyAllowed(true) - ->setRules([ - '@PSR2' => true, - 'array_syntax' => ['syntax' => 'short'], - 'declare_strict_types' => false, - 'concat_space' => ['spacing'=>'one'], - 'php_unit_test_case_static_method_calls' => ['call_type' => 'self'], - 'ordered_imports' => true, - // 'phpdoc_align' => ['align'=>'vertical'], - // 'native_function_invocation' => true, - ]) - ->setFinder( - PhpCsFixer\Finder::create() - ->in(__DIR__.'/src') - ->in(__DIR__.'/tests') - ->name('*.php') - ) -; - -return $config; diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/CHANGELOG.md b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/CHANGELOG.md deleted file mode 100644 index a2b61e71..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/CHANGELOG.md +++ /dev/null @@ -1,1322 +0,0 @@ -# Change Log - -## 6.5.2 - 2019-12-23 - -* idn_to_ascii() fix for old PHP versions [#2489](https://github.com/guzzle/guzzle/pull/2489) - -## 6.5.1 - 2019-12-21 - -* Better defaults for PHP installations with old ICU lib [#2454](https://github.com/guzzle/guzzle/pull/2454) -* IDN support for redirects [#2424](https://github.com/guzzle/guzzle/pull/2424) - -## 6.5.0 - 2019-12-07 - -* Improvement: Added support for reset internal queue in MockHandler. [#2143](https://github.com/guzzle/guzzle/pull/2143) -* Improvement: Added support to pass arbitrary options to `curl_multi_init`. [#2287](https://github.com/guzzle/guzzle/pull/2287) -* Fix: Gracefully handle passing `null` to the `header` option. [#2132](https://github.com/guzzle/guzzle/pull/2132) -* Fix: `RetryMiddleware` did not do exponential delay between retires due unit mismatch. [#2132](https://github.com/guzzle/guzzle/pull/2132) -* Fix: Prevent undefined offset when using array for ssl_key options. [#2348](https://github.com/guzzle/guzzle/pull/2348) -* Deprecated `ClientInterface::VERSION` - -## 6.4.1 - 2019-10-23 - -* No `guzzle.phar` was created in 6.4.0 due expired API token. This release will fix that -* Added `parent::__construct()` to `FileCookieJar` and `SessionCookieJar` - -## 6.4.0 - 2019-10-23 - -* Improvement: Improved error messages when using curl < 7.21.2 [#2108](https://github.com/guzzle/guzzle/pull/2108) -* Fix: Test if response is readable before returning a summary in `RequestException::getResponseBodySummary()` [#2081](https://github.com/guzzle/guzzle/pull/2081) -* Fix: Add support for GUZZLE_CURL_SELECT_TIMEOUT environment variable [#2161](https://github.com/guzzle/guzzle/pull/2161) -* Improvement: Added `GuzzleHttp\Exception\InvalidArgumentException` [#2163](https://github.com/guzzle/guzzle/pull/2163) -* Improvement: Added `GuzzleHttp\_current_time()` to use `hrtime()` if that function exists. [#2242](https://github.com/guzzle/guzzle/pull/2242) -* Improvement: Added curl's `appconnect_time` in `TransferStats` [#2284](https://github.com/guzzle/guzzle/pull/2284) -* Improvement: Make GuzzleException extend Throwable wherever it's available [#2273](https://github.com/guzzle/guzzle/pull/2273) -* Fix: Prevent concurrent writes to file when saving `CookieJar` [#2335](https://github.com/guzzle/guzzle/pull/2335) -* Improvement: Update `MockHandler` so we can test transfer time [#2362](https://github.com/guzzle/guzzle/pull/2362) - -## 6.3.3 - 2018-04-22 - -* Fix: Default headers when decode_content is specified - - -## 6.3.2 - 2018-03-26 - -* Fix: Release process - - -## 6.3.1 - 2018-03-26 - -* Bug fix: Parsing 0 epoch expiry times in cookies [#2014](https://github.com/guzzle/guzzle/pull/2014) -* Improvement: Better ConnectException detection [#2012](https://github.com/guzzle/guzzle/pull/2012) -* Bug fix: Malformed domain that contains a "/" [#1999](https://github.com/guzzle/guzzle/pull/1999) -* Bug fix: Undefined offset when a cookie has no first key-value pair [#1998](https://github.com/guzzle/guzzle/pull/1998) -* Improvement: Support PHPUnit 6 [#1953](https://github.com/guzzle/guzzle/pull/1953) -* Bug fix: Support empty headers [#1915](https://github.com/guzzle/guzzle/pull/1915) -* Bug fix: Ignore case during header modifications [#1916](https://github.com/guzzle/guzzle/pull/1916) - -+ Minor code cleanups, documentation fixes and clarifications. - - -## 6.3.0 - 2017-06-22 - -* Feature: force IP resolution (ipv4 or ipv6) [#1608](https://github.com/guzzle/guzzle/pull/1608), [#1659](https://github.com/guzzle/guzzle/pull/1659) -* Improvement: Don't include summary in exception message when body is empty [#1621](https://github.com/guzzle/guzzle/pull/1621) -* Improvement: Handle `on_headers` option in MockHandler [#1580](https://github.com/guzzle/guzzle/pull/1580) -* Improvement: Added SUSE Linux CA path [#1609](https://github.com/guzzle/guzzle/issues/1609) -* Improvement: Use class reference for getting the name of the class instead of using hardcoded strings [#1641](https://github.com/guzzle/guzzle/pull/1641) -* Feature: Added `read_timeout` option [#1611](https://github.com/guzzle/guzzle/pull/1611) -* Bug fix: PHP 7.x fixes [#1685](https://github.com/guzzle/guzzle/pull/1685), [#1686](https://github.com/guzzle/guzzle/pull/1686), [#1811](https://github.com/guzzle/guzzle/pull/1811) -* Deprecation: BadResponseException instantiation without a response [#1642](https://github.com/guzzle/guzzle/pull/1642) -* Feature: Added NTLM auth [#1569](https://github.com/guzzle/guzzle/pull/1569) -* Feature: Track redirect HTTP status codes [#1711](https://github.com/guzzle/guzzle/pull/1711) -* Improvement: Check handler type during construction [#1745](https://github.com/guzzle/guzzle/pull/1745) -* Improvement: Always include the Content-Length if there's a body [#1721](https://github.com/guzzle/guzzle/pull/1721) -* Feature: Added convenience method to access a cookie by name [#1318](https://github.com/guzzle/guzzle/pull/1318) -* Bug fix: Fill `CURLOPT_CAPATH` and `CURLOPT_CAINFO` properly [#1684](https://github.com/guzzle/guzzle/pull/1684) -* Improvement: Use `\GuzzleHttp\Promise\rejection_for` function instead of object init [#1827](https://github.com/guzzle/guzzle/pull/1827) - - -+ Minor code cleanups, documentation fixes and clarifications. - -## 6.2.3 - 2017-02-28 - -* Fix deprecations with guzzle/psr7 version 1.4 - -## 6.2.2 - 2016-10-08 - -* Allow to pass nullable Response to delay callable -* Only add scheme when host is present -* Fix drain case where content-length is the literal string zero -* Obfuscate in-URL credentials in exceptions - -## 6.2.1 - 2016-07-18 - -* Address HTTP_PROXY security vulnerability, CVE-2016-5385: - https://httpoxy.org/ -* Fixing timeout bug with StreamHandler: - https://github.com/guzzle/guzzle/pull/1488 -* Only read up to `Content-Length` in PHP StreamHandler to avoid timeouts when - a server does not honor `Connection: close`. -* Ignore URI fragment when sending requests. - -## 6.2.0 - 2016-03-21 - -* Feature: added `GuzzleHttp\json_encode` and `GuzzleHttp\json_decode`. - https://github.com/guzzle/guzzle/pull/1389 -* Bug fix: Fix sleep calculation when waiting for delayed requests. - https://github.com/guzzle/guzzle/pull/1324 -* Feature: More flexible history containers. - https://github.com/guzzle/guzzle/pull/1373 -* Bug fix: defer sink stream opening in StreamHandler. - https://github.com/guzzle/guzzle/pull/1377 -* Bug fix: do not attempt to escape cookie values. - https://github.com/guzzle/guzzle/pull/1406 -* Feature: report original content encoding and length on decoded responses. - https://github.com/guzzle/guzzle/pull/1409 -* Bug fix: rewind seekable request bodies before dispatching to cURL. - https://github.com/guzzle/guzzle/pull/1422 -* Bug fix: provide an empty string to `http_build_query` for HHVM workaround. - https://github.com/guzzle/guzzle/pull/1367 - -## 6.1.1 - 2015-11-22 - -* Bug fix: Proxy::wrapSync() now correctly proxies to the appropriate handler - https://github.com/guzzle/guzzle/commit/911bcbc8b434adce64e223a6d1d14e9a8f63e4e4 -* Feature: HandlerStack is now more generic. - https://github.com/guzzle/guzzle/commit/f2102941331cda544745eedd97fc8fd46e1ee33e -* Bug fix: setting verify to false in the StreamHandler now disables peer - verification. https://github.com/guzzle/guzzle/issues/1256 -* Feature: Middleware now uses an exception factory, including more error - context. https://github.com/guzzle/guzzle/pull/1282 -* Feature: better support for disabled functions. - https://github.com/guzzle/guzzle/pull/1287 -* Bug fix: fixed regression where MockHandler was not using `sink`. - https://github.com/guzzle/guzzle/pull/1292 - -## 6.1.0 - 2015-09-08 - -* Feature: Added the `on_stats` request option to provide access to transfer - statistics for requests. https://github.com/guzzle/guzzle/pull/1202 -* Feature: Added the ability to persist session cookies in CookieJars. - https://github.com/guzzle/guzzle/pull/1195 -* Feature: Some compatibility updates for Google APP Engine - https://github.com/guzzle/guzzle/pull/1216 -* Feature: Added support for NO_PROXY to prevent the use of a proxy based on - a simple set of rules. https://github.com/guzzle/guzzle/pull/1197 -* Feature: Cookies can now contain square brackets. - https://github.com/guzzle/guzzle/pull/1237 -* Bug fix: Now correctly parsing `=` inside of quotes in Cookies. - https://github.com/guzzle/guzzle/pull/1232 -* Bug fix: Cusotm cURL options now correctly override curl options of the - same name. https://github.com/guzzle/guzzle/pull/1221 -* Bug fix: Content-Type header is now added when using an explicitly provided - multipart body. https://github.com/guzzle/guzzle/pull/1218 -* Bug fix: Now ignoring Set-Cookie headers that have no name. -* Bug fix: Reason phrase is no longer cast to an int in some cases in the - cURL handler. https://github.com/guzzle/guzzle/pull/1187 -* Bug fix: Remove the Authorization header when redirecting if the Host - header changes. https://github.com/guzzle/guzzle/pull/1207 -* Bug fix: Cookie path matching fixes - https://github.com/guzzle/guzzle/issues/1129 -* Bug fix: Fixing the cURL `body_as_string` setting - https://github.com/guzzle/guzzle/pull/1201 -* Bug fix: quotes are no longer stripped when parsing cookies. - https://github.com/guzzle/guzzle/issues/1172 -* Bug fix: `form_params` and `query` now always uses the `&` separator. - https://github.com/guzzle/guzzle/pull/1163 -* Bug fix: Adding a Content-Length to PHP stream wrapper requests if not set. - https://github.com/guzzle/guzzle/pull/1189 - -## 6.0.2 - 2015-07-04 - -* Fixed a memory leak in the curl handlers in which references to callbacks - were not being removed by `curl_reset`. -* Cookies are now extracted properly before redirects. -* Cookies now allow more character ranges. -* Decoded Content-Encoding responses are now modified to correctly reflect - their state if the encoding was automatically removed by a handler. This - means that the `Content-Encoding` header may be removed an the - `Content-Length` modified to reflect the message size after removing the - encoding. -* Added a more explicit error message when trying to use `form_params` and - `multipart` in the same request. -* Several fixes for HHVM support. -* Functions are now conditionally required using an additional level of - indirection to help with global Composer installations. - -## 6.0.1 - 2015-05-27 - -* Fixed a bug with serializing the `query` request option where the `&` - separator was missing. -* Added a better error message for when `body` is provided as an array. Please - use `form_params` or `multipart` instead. -* Various doc fixes. - -## 6.0.0 - 2015-05-26 - -* See the UPGRADING.md document for more information. -* Added `multipart` and `form_params` request options. -* Added `synchronous` request option. -* Added the `on_headers` request option. -* Fixed `expect` handling. -* No longer adding default middlewares in the client ctor. These need to be - present on the provided handler in order to work. -* Requests are no longer initiated when sending async requests with the - CurlMultiHandler. This prevents unexpected recursion from requests completing - while ticking the cURL loop. -* Removed the semantics of setting `default` to `true`. This is no longer - required now that the cURL loop is not ticked for async requests. -* Added request and response logging middleware. -* No longer allowing self signed certificates when using the StreamHandler. -* Ensuring that `sink` is valid if saving to a file. -* Request exceptions now include a "handler context" which provides handler - specific contextual information. -* Added `GuzzleHttp\RequestOptions` to allow request options to be applied - using constants. -* `$maxHandles` has been removed from CurlMultiHandler. -* `MultipartPostBody` is now part of the `guzzlehttp/psr7` package. - -## 5.3.0 - 2015-05-19 - -* Mock now supports `save_to` -* Marked `AbstractRequestEvent::getTransaction()` as public. -* Fixed a bug in which multiple headers using different casing would overwrite - previous headers in the associative array. -* Added `Utils::getDefaultHandler()` -* Marked `GuzzleHttp\Client::getDefaultUserAgent` as deprecated. -* URL scheme is now always lowercased. - -## 6.0.0-beta.1 - -* Requires PHP >= 5.5 -* Updated to use PSR-7 - * Requires immutable messages, which basically means an event based system - owned by a request instance is no longer possible. - * Utilizing the [Guzzle PSR-7 package](https://github.com/guzzle/psr7). - * Removed the dependency on `guzzlehttp/streams`. These stream abstractions - are available in the `guzzlehttp/psr7` package under the `GuzzleHttp\Psr7` - namespace. -* Added middleware and handler system - * Replaced the Guzzle event and subscriber system with a middleware system. - * No longer depends on RingPHP, but rather places the HTTP handlers directly - in Guzzle, operating on PSR-7 messages. - * Retry logic is now encapsulated in `GuzzleHttp\Middleware::retry`, which - means the `guzzlehttp/retry-subscriber` is now obsolete. - * Mocking responses is now handled using `GuzzleHttp\Handler\MockHandler`. -* Asynchronous responses - * No longer supports the `future` request option to send an async request. - Instead, use one of the `*Async` methods of a client (e.g., `requestAsync`, - `getAsync`, etc.). - * Utilizing `GuzzleHttp\Promise` instead of React's promise library to avoid - recursion required by chaining and forwarding react promises. See - https://github.com/guzzle/promises - * Added `requestAsync` and `sendAsync` to send request asynchronously. - * Added magic methods for `getAsync()`, `postAsync()`, etc. to send requests - asynchronously. -* Request options - * POST and form updates - * Added the `form_fields` and `form_files` request options. - * Removed the `GuzzleHttp\Post` namespace. - * The `body` request option no longer accepts an array for POST requests. - * The `exceptions` request option has been deprecated in favor of the - `http_errors` request options. - * The `save_to` request option has been deprecated in favor of `sink` request - option. -* Clients no longer accept an array of URI template string and variables for - URI variables. You will need to expand URI templates before passing them - into a client constructor or request method. -* Client methods `get()`, `post()`, `put()`, `patch()`, `options()`, etc. are - now magic methods that will send synchronous requests. -* Replaced `Utils.php` with plain functions in `functions.php`. -* Removed `GuzzleHttp\Collection`. -* Removed `GuzzleHttp\BatchResults`. Batched pool results are now returned as - an array. -* Removed `GuzzleHttp\Query`. Query string handling is now handled using an - associative array passed into the `query` request option. The query string - is serialized using PHP's `http_build_query`. If you need more control, you - can pass the query string in as a string. -* `GuzzleHttp\QueryParser` has been replaced with the - `GuzzleHttp\Psr7\parse_query`. - -## 5.2.0 - 2015-01-27 - -* Added `AppliesHeadersInterface` to make applying headers to a request based - on the body more generic and not specific to `PostBodyInterface`. -* Reduced the number of stack frames needed to send requests. -* Nested futures are now resolved in the client rather than the RequestFsm -* Finishing state transitions is now handled in the RequestFsm rather than the - RingBridge. -* Added a guard in the Pool class to not use recursion for request retries. - -## 5.1.0 - 2014-12-19 - -* Pool class no longer uses recursion when a request is intercepted. -* The size of a Pool can now be dynamically adjusted using a callback. - See https://github.com/guzzle/guzzle/pull/943. -* Setting a request option to `null` when creating a request with a client will - ensure that the option is not set. This allows you to overwrite default - request options on a per-request basis. - See https://github.com/guzzle/guzzle/pull/937. -* Added the ability to limit which protocols are allowed for redirects by - specifying a `protocols` array in the `allow_redirects` request option. -* Nested futures due to retries are now resolved when waiting for synchronous - responses. See https://github.com/guzzle/guzzle/pull/947. -* `"0"` is now an allowed URI path. See - https://github.com/guzzle/guzzle/pull/935. -* `Query` no longer typehints on the `$query` argument in the constructor, - allowing for strings and arrays. -* Exceptions thrown in the `end` event are now correctly wrapped with Guzzle - specific exceptions if necessary. - -## 5.0.3 - 2014-11-03 - -This change updates query strings so that they are treated as un-encoded values -by default where the value represents an un-encoded value to send over the -wire. A Query object then encodes the value before sending over the wire. This -means that even value query string values (e.g., ":") are url encoded. This -makes the Query class match PHP's http_build_query function. However, if you -want to send requests over the wire using valid query string characters that do -not need to be encoded, then you can provide a string to Url::setQuery() and -pass true as the second argument to specify that the query string is a raw -string that should not be parsed or encoded (unless a call to getQuery() is -subsequently made, forcing the query-string to be converted into a Query -object). - -## 5.0.2 - 2014-10-30 - -* Added a trailing `\r\n` to multipart/form-data payloads. See - https://github.com/guzzle/guzzle/pull/871 -* Added a `GuzzleHttp\Pool::send()` convenience method to match the docs. -* Status codes are now returned as integers. See - https://github.com/guzzle/guzzle/issues/881 -* No longer overwriting an existing `application/x-www-form-urlencoded` header - when sending POST requests, allowing for customized headers. See - https://github.com/guzzle/guzzle/issues/877 -* Improved path URL serialization. - - * No longer double percent-encoding characters in the path or query string if - they are already encoded. - * Now properly encoding the supplied path to a URL object, instead of only - encoding ' ' and '?'. - * Note: This has been changed in 5.0.3 to now encode query string values by - default unless the `rawString` argument is provided when setting the query - string on a URL: Now allowing many more characters to be present in the - query string without being percent encoded. See http://tools.ietf.org/html/rfc3986#appendix-A - -## 5.0.1 - 2014-10-16 - -Bugfix release. - -* Fixed an issue where connection errors still returned response object in - error and end events event though the response is unusable. This has been - corrected so that a response is not returned in the `getResponse` method of - these events if the response did not complete. https://github.com/guzzle/guzzle/issues/867 -* Fixed an issue where transfer statistics were not being populated in the - RingBridge. https://github.com/guzzle/guzzle/issues/866 - -## 5.0.0 - 2014-10-12 - -Adding support for non-blocking responses and some minor API cleanup. - -### New Features - -* Added support for non-blocking responses based on `guzzlehttp/guzzle-ring`. -* Added a public API for creating a default HTTP adapter. -* Updated the redirect plugin to be non-blocking so that redirects are sent - concurrently. Other plugins like this can now be updated to be non-blocking. -* Added a "progress" event so that you can get upload and download progress - events. -* Added `GuzzleHttp\Pool` which implements FutureInterface and transfers - requests concurrently using a capped pool size as efficiently as possible. -* Added `hasListeners()` to EmitterInterface. -* Removed `GuzzleHttp\ClientInterface::sendAll` and marked - `GuzzleHttp\Client::sendAll` as deprecated (it's still there, just not the - recommended way). - -### Breaking changes - -The breaking changes in this release are relatively minor. The biggest thing to -look out for is that request and response objects no longer implement fluent -interfaces. - -* Removed the fluent interfaces (i.e., `return $this`) from requests, - responses, `GuzzleHttp\Collection`, `GuzzleHttp\Url`, - `GuzzleHttp\Query`, `GuzzleHttp\Post\PostBody`, and - `GuzzleHttp\Cookie\SetCookie`. This blog post provides a good outline of - why I did this: http://ocramius.github.io/blog/fluent-interfaces-are-evil/. - This also makes the Guzzle message interfaces compatible with the current - PSR-7 message proposal. -* Removed "functions.php", so that Guzzle is truly PSR-4 compliant. Except - for the HTTP request functions from function.php, these functions are now - implemented in `GuzzleHttp\Utils` using camelCase. `GuzzleHttp\json_decode` - moved to `GuzzleHttp\Utils::jsonDecode`. `GuzzleHttp\get_path` moved to - `GuzzleHttp\Utils::getPath`. `GuzzleHttp\set_path` moved to - `GuzzleHttp\Utils::setPath`. `GuzzleHttp\batch` should now be - `GuzzleHttp\Pool::batch`, which returns an `objectStorage`. Using functions.php - caused problems for many users: they aren't PSR-4 compliant, require an - explicit include, and needed an if-guard to ensure that the functions are not - declared multiple times. -* Rewrote adapter layer. - * Removing all classes from `GuzzleHttp\Adapter`, these are now - implemented as callables that are stored in `GuzzleHttp\Ring\Client`. - * Removed the concept of "parallel adapters". Sending requests serially or - concurrently is now handled using a single adapter. - * Moved `GuzzleHttp\Adapter\Transaction` to `GuzzleHttp\Transaction`. The - Transaction object now exposes the request, response, and client as public - properties. The getters and setters have been removed. -* Removed the "headers" event. This event was only useful for changing the - body a response once the headers of the response were known. You can implement - a similar behavior in a number of ways. One example might be to use a - FnStream that has access to the transaction being sent. For example, when the - first byte is written, you could check if the response headers match your - expectations, and if so, change the actual stream body that is being - written to. -* Removed the `asArray` parameter from - `GuzzleHttp\Message\MessageInterface::getHeader`. If you want to get a header - value as an array, then use the newly added `getHeaderAsArray()` method of - `MessageInterface`. This change makes the Guzzle interfaces compatible with - the PSR-7 interfaces. -* `GuzzleHttp\Message\MessageFactory` no longer allows subclasses to add - custom request options using double-dispatch (this was an implementation - detail). Instead, you should now provide an associative array to the - constructor which is a mapping of the request option name mapping to a - function that applies the option value to a request. -* Removed the concept of "throwImmediately" from exceptions and error events. - This control mechanism was used to stop a transfer of concurrent requests - from completing. This can now be handled by throwing the exception or by - cancelling a pool of requests or each outstanding future request individually. -* Updated to "GuzzleHttp\Streams" 3.0. - * `GuzzleHttp\Stream\StreamInterface::getContents()` no longer accepts a - `maxLen` parameter. This update makes the Guzzle streams project - compatible with the current PSR-7 proposal. - * `GuzzleHttp\Stream\Stream::__construct`, - `GuzzleHttp\Stream\Stream::factory`, and - `GuzzleHttp\Stream\Utils::create` no longer accept a size in the second - argument. They now accept an associative array of options, including the - "size" key and "metadata" key which can be used to provide custom metadata. - -## 4.2.2 - 2014-09-08 - -* Fixed a memory leak in the CurlAdapter when reusing cURL handles. -* No longer using `request_fulluri` in stream adapter proxies. -* Relative redirects are now based on the last response, not the first response. - -## 4.2.1 - 2014-08-19 - -* Ensuring that the StreamAdapter does not always add a Content-Type header -* Adding automated github releases with a phar and zip - -## 4.2.0 - 2014-08-17 - -* Now merging in default options using a case-insensitive comparison. - Closes https://github.com/guzzle/guzzle/issues/767 -* Added the ability to automatically decode `Content-Encoding` response bodies - using the `decode_content` request option. This is set to `true` by default - to decode the response body if it comes over the wire with a - `Content-Encoding`. Set this value to `false` to disable decoding the - response content, and pass a string to provide a request `Accept-Encoding` - header and turn on automatic response decoding. This feature now allows you - to pass an `Accept-Encoding` header in the headers of a request but still - disable automatic response decoding. - Closes https://github.com/guzzle/guzzle/issues/764 -* Added the ability to throw an exception immediately when transferring - requests in parallel. Closes https://github.com/guzzle/guzzle/issues/760 -* Updating guzzlehttp/streams dependency to ~2.1 -* No longer utilizing the now deprecated namespaced methods from the stream - package. - -## 4.1.8 - 2014-08-14 - -* Fixed an issue in the CurlFactory that caused setting the `stream=false` - request option to throw an exception. - See: https://github.com/guzzle/guzzle/issues/769 -* TransactionIterator now calls rewind on the inner iterator. - See: https://github.com/guzzle/guzzle/pull/765 -* You can now set the `Content-Type` header to `multipart/form-data` - when creating POST requests to force multipart bodies. - See https://github.com/guzzle/guzzle/issues/768 - -## 4.1.7 - 2014-08-07 - -* Fixed an error in the HistoryPlugin that caused the same request and response - to be logged multiple times when an HTTP protocol error occurs. -* Ensuring that cURL does not add a default Content-Type when no Content-Type - has been supplied by the user. This prevents the adapter layer from modifying - the request that is sent over the wire after any listeners may have already - put the request in a desired state (e.g., signed the request). -* Throwing an exception when you attempt to send requests that have the - "stream" set to true in parallel using the MultiAdapter. -* Only calling curl_multi_select when there are active cURL handles. This was - previously changed and caused performance problems on some systems due to PHP - always selecting until the maximum select timeout. -* Fixed a bug where multipart/form-data POST fields were not correctly - aggregated (e.g., values with "&"). - -## 4.1.6 - 2014-08-03 - -* Added helper methods to make it easier to represent messages as strings, - including getting the start line and getting headers as a string. - -## 4.1.5 - 2014-08-02 - -* Automatically retrying cURL "Connection died, retrying a fresh connect" - errors when possible. -* cURL implementation cleanup -* Allowing multiple event subscriber listeners to be registered per event by - passing an array of arrays of listener configuration. - -## 4.1.4 - 2014-07-22 - -* Fixed a bug that caused multi-part POST requests with more than one field to - serialize incorrectly. -* Paths can now be set to "0" -* `ResponseInterface::xml` now accepts a `libxml_options` option and added a - missing default argument that was required when parsing XML response bodies. -* A `save_to` stream is now created lazily, which means that files are not - created on disk unless a request succeeds. - -## 4.1.3 - 2014-07-15 - -* Various fixes to multipart/form-data POST uploads -* Wrapping function.php in an if-statement to ensure Guzzle can be used - globally and in a Composer install -* Fixed an issue with generating and merging in events to an event array -* POST headers are only applied before sending a request to allow you to change - the query aggregator used before uploading -* Added much more robust query string parsing -* Fixed various parsing and normalization issues with URLs -* Fixing an issue where multi-valued headers were not being utilized correctly - in the StreamAdapter - -## 4.1.2 - 2014-06-18 - -* Added support for sending payloads with GET requests - -## 4.1.1 - 2014-06-08 - -* Fixed an issue related to using custom message factory options in subclasses -* Fixed an issue with nested form fields in a multi-part POST -* Fixed an issue with using the `json` request option for POST requests -* Added `ToArrayInterface` to `GuzzleHttp\Cookie\CookieJar` - -## 4.1.0 - 2014-05-27 - -* Added a `json` request option to easily serialize JSON payloads. -* Added a `GuzzleHttp\json_decode()` wrapper to safely parse JSON. -* Added `setPort()` and `getPort()` to `GuzzleHttp\Message\RequestInterface`. -* Added the ability to provide an emitter to a client in the client constructor. -* Added the ability to persist a cookie session using $_SESSION. -* Added a trait that can be used to add event listeners to an iterator. -* Removed request method constants from RequestInterface. -* Fixed warning when invalid request start-lines are received. -* Updated MessageFactory to work with custom request option methods. -* Updated cacert bundle to latest build. - -4.0.2 (2014-04-16) ------------------- - -* Proxy requests using the StreamAdapter now properly use request_fulluri (#632) -* Added the ability to set scalars as POST fields (#628) - -## 4.0.1 - 2014-04-04 - -* The HTTP status code of a response is now set as the exception code of - RequestException objects. -* 303 redirects will now correctly switch from POST to GET requests. -* The default parallel adapter of a client now correctly uses the MultiAdapter. -* HasDataTrait now initializes the internal data array as an empty array so - that the toArray() method always returns an array. - -## 4.0.0 - 2014-03-29 - -* For more information on the 4.0 transition, see: - http://mtdowling.com/blog/2014/03/15/guzzle-4-rc/ -* For information on changes and upgrading, see: - https://github.com/guzzle/guzzle/blob/master/UPGRADING.md#3x-to-40 -* Added `GuzzleHttp\batch()` as a convenience function for sending requests in - parallel without needing to write asynchronous code. -* Restructured how events are added to `GuzzleHttp\ClientInterface::sendAll()`. - You can now pass a callable or an array of associative arrays where each - associative array contains the "fn", "priority", and "once" keys. - -## 4.0.0.rc-2 - 2014-03-25 - -* Removed `getConfig()` and `setConfig()` from clients to avoid confusion - around whether things like base_url, message_factory, etc. should be able to - be retrieved or modified. -* Added `getDefaultOption()` and `setDefaultOption()` to ClientInterface -* functions.php functions were renamed using snake_case to match PHP idioms -* Added support for `HTTP_PROXY`, `HTTPS_PROXY`, and - `GUZZLE_CURL_SELECT_TIMEOUT` environment variables -* Added the ability to specify custom `sendAll()` event priorities -* Added the ability to specify custom stream context options to the stream - adapter. -* Added a functions.php function for `get_path()` and `set_path()` -* CurlAdapter and MultiAdapter now use a callable to generate curl resources -* MockAdapter now properly reads a body and emits a `headers` event -* Updated Url class to check if a scheme and host are set before adding ":" - and "//". This allows empty Url (e.g., "") to be serialized as "". -* Parsing invalid XML no longer emits warnings -* Curl classes now properly throw AdapterExceptions -* Various performance optimizations -* Streams are created with the faster `Stream\create()` function -* Marked deprecation_proxy() as internal -* Test server is now a collection of static methods on a class - -## 4.0.0-rc.1 - 2014-03-15 - -* See https://github.com/guzzle/guzzle/blob/master/UPGRADING.md#3x-to-40 - -## 3.8.1 - 2014-01-28 - -* Bug: Always using GET requests when redirecting from a 303 response -* Bug: CURLOPT_SSL_VERIFYHOST is now correctly set to false when setting `$certificateAuthority` to false in - `Guzzle\Http\ClientInterface::setSslVerification()` -* Bug: RedirectPlugin now uses strict RFC 3986 compliance when combining a base URL with a relative URL -* Bug: The body of a request can now be set to `"0"` -* Sending PHP stream requests no longer forces `HTTP/1.0` -* Adding more information to ExceptionCollection exceptions so that users have more context, including a stack trace of - each sub-exception -* Updated the `$ref` attribute in service descriptions to merge over any existing parameters of a schema (rather than - clobbering everything). -* Merging URLs will now use the query string object from the relative URL (thus allowing custom query aggregators) -* Query strings are now parsed in a way that they do no convert empty keys with no value to have a dangling `=`. - For example `foo&bar=baz` is now correctly parsed and recognized as `foo&bar=baz` rather than `foo=&bar=baz`. -* Now properly escaping the regular expression delimiter when matching Cookie domains. -* Network access is now disabled when loading XML documents - -## 3.8.0 - 2013-12-05 - -* Added the ability to define a POST name for a file -* JSON response parsing now properly walks additionalProperties -* cURL error code 18 is now retried automatically in the BackoffPlugin -* Fixed a cURL error when URLs contain fragments -* Fixed an issue in the BackoffPlugin retry event where it was trying to access all exceptions as if they were - CurlExceptions -* CURLOPT_PROGRESS function fix for PHP 5.5 (69fcc1e) -* Added the ability for Guzzle to work with older versions of cURL that do not support `CURLOPT_TIMEOUT_MS` -* Fixed a bug that was encountered when parsing empty header parameters -* UriTemplate now has a `setRegex()` method to match the docs -* The `debug` request parameter now checks if it is truthy rather than if it exists -* Setting the `debug` request parameter to true shows verbose cURL output instead of using the LogPlugin -* Added the ability to combine URLs using strict RFC 3986 compliance -* Command objects can now return the validation errors encountered by the command -* Various fixes to cache revalidation (#437 and 29797e5) -* Various fixes to the AsyncPlugin -* Cleaned up build scripts - -## 3.7.4 - 2013-10-02 - -* Bug fix: 0 is now an allowed value in a description parameter that has a default value (#430) -* Bug fix: SchemaFormatter now returns an integer when formatting to a Unix timestamp - (see https://github.com/aws/aws-sdk-php/issues/147) -* Bug fix: Cleaned up and fixed URL dot segment removal to properly resolve internal dots -* Minimum PHP version is now properly specified as 5.3.3 (up from 5.3.2) (#420) -* Updated the bundled cacert.pem (#419) -* OauthPlugin now supports adding authentication to headers or query string (#425) - -## 3.7.3 - 2013-09-08 - -* Added the ability to get the exception associated with a request/command when using `MultiTransferException` and - `CommandTransferException`. -* Setting `additionalParameters` of a response to false is now honored when parsing responses with a service description -* Schemas are only injected into response models when explicitly configured. -* No longer guessing Content-Type based on the path of a request. Content-Type is now only guessed based on the path of - an EntityBody. -* Bug fix: ChunkedIterator can now properly chunk a \Traversable as well as an \Iterator. -* Bug fix: FilterIterator now relies on `\Iterator` instead of `\Traversable`. -* Bug fix: Gracefully handling malformed responses in RequestMediator::writeResponseBody() -* Bug fix: Replaced call to canCache with canCacheRequest in the CallbackCanCacheStrategy of the CachePlugin -* Bug fix: Visiting XML attributes first before visiting XML children when serializing requests -* Bug fix: Properly parsing headers that contain commas contained in quotes -* Bug fix: mimetype guessing based on a filename is now case-insensitive - -## 3.7.2 - 2013-08-02 - -* Bug fix: Properly URL encoding paths when using the PHP-only version of the UriTemplate expander - See https://github.com/guzzle/guzzle/issues/371 -* Bug fix: Cookie domains are now matched correctly according to RFC 6265 - See https://github.com/guzzle/guzzle/issues/377 -* Bug fix: GET parameters are now used when calculating an OAuth signature -* Bug fix: Fixed an issue with cache revalidation where the If-None-Match header was being double quoted -* `Guzzle\Common\AbstractHasDispatcher::dispatch()` now returns the event that was dispatched -* `Guzzle\Http\QueryString::factory()` now guesses the most appropriate query aggregator to used based on the input. - See https://github.com/guzzle/guzzle/issues/379 -* Added a way to add custom domain objects to service description parsing using the `operation.parse_class` event. See - https://github.com/guzzle/guzzle/pull/380 -* cURL multi cleanup and optimizations - -## 3.7.1 - 2013-07-05 - -* Bug fix: Setting default options on a client now works -* Bug fix: Setting options on HEAD requests now works. See #352 -* Bug fix: Moving stream factory before send event to before building the stream. See #353 -* Bug fix: Cookies no longer match on IP addresses per RFC 6265 -* Bug fix: Correctly parsing header parameters that are in `<>` and quotes -* Added `cert` and `ssl_key` as request options -* `Host` header can now diverge from the host part of a URL if the header is set manually -* `Guzzle\Service\Command\LocationVisitor\Request\XmlVisitor` was rewritten to change from using SimpleXML to XMLWriter -* OAuth parameters are only added via the plugin if they aren't already set -* Exceptions are now thrown when a URL cannot be parsed -* Returning `false` if `Guzzle\Http\EntityBody::getContentMd5()` fails -* Not setting a `Content-MD5` on a command if calculating the Content-MD5 fails via the CommandContentMd5Plugin - -## 3.7.0 - 2013-06-10 - -* See UPGRADING.md for more information on how to upgrade. -* Requests now support the ability to specify an array of $options when creating a request to more easily modify a - request. You can pass a 'request.options' configuration setting to a client to apply default request options to - every request created by a client (e.g. default query string variables, headers, curl options, etc.). -* Added a static facade class that allows you to use Guzzle with static methods and mount the class to `\Guzzle`. - See `Guzzle\Http\StaticClient::mount`. -* Added `command.request_options` to `Guzzle\Service\Command\AbstractCommand` to pass request options to requests - created by a command (e.g. custom headers, query string variables, timeout settings, etc.). -* Stream size in `Guzzle\Stream\PhpStreamRequestFactory` will now be set if Content-Length is returned in the - headers of a response -* Added `Guzzle\Common\Collection::setPath($path, $value)` to set a value into an array using a nested key - (e.g. `$collection->setPath('foo/baz/bar', 'test'); echo $collection['foo']['bar']['bar'];`) -* ServiceBuilders now support storing and retrieving arbitrary data -* CachePlugin can now purge all resources for a given URI -* CachePlugin can automatically purge matching cached items when a non-idempotent request is sent to a resource -* CachePlugin now uses the Vary header to determine if a resource is a cache hit -* `Guzzle\Http\Message\Response` now implements `\Serializable` -* Added `Guzzle\Cache\CacheAdapterFactory::fromCache()` to more easily create cache adapters -* `Guzzle\Service\ClientInterface::execute()` now accepts an array, single command, or Traversable -* Fixed a bug in `Guzzle\Http\Message\Header\Link::addLink()` -* Better handling of calculating the size of a stream in `Guzzle\Stream\Stream` using fstat() and caching the size -* `Guzzle\Common\Exception\ExceptionCollection` now creates a more readable exception message -* Fixing BC break: Added back the MonologLogAdapter implementation rather than extending from PsrLog so that older - Symfony users can still use the old version of Monolog. -* Fixing BC break: Added the implementation back in for `Guzzle\Http\Message\AbstractMessage::getTokenizedHeader()`. - Now triggering an E_USER_DEPRECATED warning when used. Use `$message->getHeader()->parseParams()`. -* Several performance improvements to `Guzzle\Common\Collection` -* Added an `$options` argument to the end of the following methods of `Guzzle\Http\ClientInterface`: - createRequest, head, delete, put, patch, post, options, prepareRequest -* Added an `$options` argument to the end of `Guzzle\Http\Message\Request\RequestFactoryInterface::createRequest()` -* Added an `applyOptions()` method to `Guzzle\Http\Message\Request\RequestFactoryInterface` -* Changed `Guzzle\Http\ClientInterface::get($uri = null, $headers = null, $body = null)` to - `Guzzle\Http\ClientInterface::get($uri = null, $headers = null, $options = array())`. You can still pass in a - resource, string, or EntityBody into the $options parameter to specify the download location of the response. -* Changed `Guzzle\Common\Collection::__construct($data)` to no longer accepts a null value for `$data` but a - default `array()` -* Added `Guzzle\Stream\StreamInterface::isRepeatable` -* Removed `Guzzle\Http\ClientInterface::setDefaultHeaders(). Use - $client->getConfig()->setPath('request.options/headers/{header_name}', 'value')`. or - $client->getConfig()->setPath('request.options/headers', array('header_name' => 'value'))`. -* Removed `Guzzle\Http\ClientInterface::getDefaultHeaders(). Use $client->getConfig()->getPath('request.options/headers')`. -* Removed `Guzzle\Http\ClientInterface::expandTemplate()` -* Removed `Guzzle\Http\ClientInterface::setRequestFactory()` -* Removed `Guzzle\Http\ClientInterface::getCurlMulti()` -* Removed `Guzzle\Http\Message\RequestInterface::canCache` -* Removed `Guzzle\Http\Message\RequestInterface::setIsRedirect` -* Removed `Guzzle\Http\Message\RequestInterface::isRedirect` -* Made `Guzzle\Http\Client::expandTemplate` and `getUriTemplate` protected methods. -* You can now enable E_USER_DEPRECATED warnings to see if you are using a deprecated method by setting - `Guzzle\Common\Version::$emitWarnings` to true. -* Marked `Guzzle\Http\Message\Request::isResponseBodyRepeatable()` as deprecated. Use - `$request->getResponseBody()->isRepeatable()` instead. -* Marked `Guzzle\Http\Message\Request::canCache()` as deprecated. Use - `Guzzle\Plugin\Cache\DefaultCanCacheStrategy->canCacheRequest()` instead. -* Marked `Guzzle\Http\Message\Request::canCache()` as deprecated. Use - `Guzzle\Plugin\Cache\DefaultCanCacheStrategy->canCacheRequest()` instead. -* Marked `Guzzle\Http\Message\Request::setIsRedirect()` as deprecated. Use the HistoryPlugin instead. -* Marked `Guzzle\Http\Message\Request::isRedirect()` as deprecated. Use the HistoryPlugin instead. -* Marked `Guzzle\Cache\CacheAdapterFactory::factory()` as deprecated -* Marked 'command.headers', 'command.response_body' and 'command.on_complete' as deprecated for AbstractCommand. - These will work through Guzzle 4.0 -* Marked 'request.params' for `Guzzle\Http\Client` as deprecated. Use [request.options][params]. -* Marked `Guzzle\Service\Client::enableMagicMethods()` as deprecated. Magic methods can no longer be disabled on a Guzzle\Service\Client. -* Marked `Guzzle\Service\Client::getDefaultHeaders()` as deprecated. Use $client->getConfig()->getPath('request.options/headers')`. -* Marked `Guzzle\Service\Client::setDefaultHeaders()` as deprecated. Use $client->getConfig()->setPath('request.options/headers/{header_name}', 'value')`. -* Marked `Guzzle\Parser\Url\UrlParser` as deprecated. Just use PHP's `parse_url()` and percent encode your UTF-8. -* Marked `Guzzle\Common\Collection::inject()` as deprecated. -* Marked `Guzzle\Plugin\CurlAuth\CurlAuthPlugin` as deprecated. Use `$client->getConfig()->setPath('request.options/auth', array('user', 'pass', 'Basic|Digest');` -* CacheKeyProviderInterface and DefaultCacheKeyProvider are no longer used. All of this logic is handled in a - CacheStorageInterface. These two objects and interface will be removed in a future version. -* Always setting X-cache headers on cached responses -* Default cache TTLs are now handled by the CacheStorageInterface of a CachePlugin -* `CacheStorageInterface::cache($key, Response $response, $ttl = null)` has changed to `cache(RequestInterface - $request, Response $response);` -* `CacheStorageInterface::fetch($key)` has changed to `fetch(RequestInterface $request);` -* `CacheStorageInterface::delete($key)` has changed to `delete(RequestInterface $request);` -* Added `CacheStorageInterface::purge($url)` -* `DefaultRevalidation::__construct(CacheKeyProviderInterface $cacheKey, CacheStorageInterface $cache, CachePlugin - $plugin)` has changed to `DefaultRevalidation::__construct(CacheStorageInterface $cache, - CanCacheStrategyInterface $canCache = null)` -* Added `RevalidationInterface::shouldRevalidate(RequestInterface $request, Response $response)` - -## 3.6.0 - 2013-05-29 - -* ServiceDescription now implements ToArrayInterface -* Added command.hidden_params to blacklist certain headers from being treated as additionalParameters -* Guzzle can now correctly parse incomplete URLs -* Mixed casing of headers are now forced to be a single consistent casing across all values for that header. -* Messages internally use a HeaderCollection object to delegate handling case-insensitive header resolution -* Removed the whole changedHeader() function system of messages because all header changes now go through addHeader(). -* Specific header implementations can be created for complex headers. When a message creates a header, it uses a - HeaderFactory which can map specific headers to specific header classes. There is now a Link header and - CacheControl header implementation. -* Removed from interface: Guzzle\Http\ClientInterface::setUriTemplate -* Removed from interface: Guzzle\Http\ClientInterface::setCurlMulti() -* Removed Guzzle\Http\Message\Request::receivedRequestHeader() and implemented this functionality in - Guzzle\Http\Curl\RequestMediator -* Removed the optional $asString parameter from MessageInterface::getHeader(). Just cast the header to a string. -* Removed the optional $tryChunkedTransfer option from Guzzle\Http\Message\EntityEnclosingRequestInterface -* Removed the $asObjects argument from Guzzle\Http\Message\MessageInterface::getHeaders() -* Removed Guzzle\Parser\ParserRegister::get(). Use getParser() -* Removed Guzzle\Parser\ParserRegister::set(). Use registerParser(). -* All response header helper functions return a string rather than mixing Header objects and strings inconsistently -* Removed cURL blacklist support. This is no longer necessary now that Expect, Accept, etc. are managed by Guzzle - directly via interfaces -* Removed the injecting of a request object onto a response object. The methods to get and set a request still exist - but are a no-op until removed. -* Most classes that used to require a `Guzzle\Service\Command\CommandInterface` typehint now request a - `Guzzle\Service\Command\ArrayCommandInterface`. -* Added `Guzzle\Http\Message\RequestInterface::startResponse()` to the RequestInterface to handle injecting a response - on a request while the request is still being transferred -* The ability to case-insensitively search for header values -* Guzzle\Http\Message\Header::hasExactHeader -* Guzzle\Http\Message\Header::raw. Use getAll() -* Deprecated cache control specific methods on Guzzle\Http\Message\AbstractMessage. Use the CacheControl header object - instead. -* `Guzzle\Service\Command\CommandInterface` now extends from ToArrayInterface and ArrayAccess -* Added the ability to cast Model objects to a string to view debug information. - -## 3.5.0 - 2013-05-13 - -* Bug: Fixed a regression so that request responses are parsed only once per oncomplete event rather than multiple times -* Bug: Better cleanup of one-time events across the board (when an event is meant to fire once, it will now remove - itself from the EventDispatcher) -* Bug: `Guzzle\Log\MessageFormatter` now properly writes "total_time" and "connect_time" values -* Bug: Cloning an EntityEnclosingRequest now clones the EntityBody too -* Bug: Fixed an undefined index error when parsing nested JSON responses with a sentAs parameter that reference a - non-existent key -* Bug: All __call() method arguments are now required (helps with mocking frameworks) -* Deprecating Response::getRequest() and now using a shallow clone of a request object to remove a circular reference - to help with refcount based garbage collection of resources created by sending a request -* Deprecating ZF1 cache and log adapters. These will be removed in the next major version. -* Deprecating `Response::getPreviousResponse()` (method signature still exists, but it's deprecated). Use the - HistoryPlugin for a history. -* Added a `responseBody` alias for the `response_body` location -* Refactored internals to no longer rely on Response::getRequest() -* HistoryPlugin can now be cast to a string -* HistoryPlugin now logs transactions rather than requests and responses to more accurately keep track of the requests - and responses that are sent over the wire -* Added `getEffectiveUrl()` and `getRedirectCount()` to Response objects - -## 3.4.3 - 2013-04-30 - -* Bug fix: Fixing bug introduced in 3.4.2 where redirect responses are duplicated on the final redirected response -* Added a check to re-extract the temp cacert bundle from the phar before sending each request - -## 3.4.2 - 2013-04-29 - -* Bug fix: Stream objects now work correctly with "a" and "a+" modes -* Bug fix: Removing `Transfer-Encoding: chunked` header when a Content-Length is present -* Bug fix: AsyncPlugin no longer forces HEAD requests -* Bug fix: DateTime timezones are now properly handled when using the service description schema formatter -* Bug fix: CachePlugin now properly handles stale-if-error directives when a request to the origin server fails -* Setting a response on a request will write to the custom request body from the response body if one is specified -* LogPlugin now writes to php://output when STDERR is undefined -* Added the ability to set multiple POST files for the same key in a single call -* application/x-www-form-urlencoded POSTs now use the utf-8 charset by default -* Added the ability to queue CurlExceptions to the MockPlugin -* Cleaned up how manual responses are queued on requests (removed "queued_response" and now using request.before_send) -* Configuration loading now allows remote files - -## 3.4.1 - 2013-04-16 - -* Large refactoring to how CurlMulti handles work. There is now a proxy that sits in front of a pool of CurlMulti - handles. This greatly simplifies the implementation, fixes a couple bugs, and provides a small performance boost. -* Exceptions are now properly grouped when sending requests in parallel -* Redirects are now properly aggregated when a multi transaction fails -* Redirects now set the response on the original object even in the event of a failure -* Bug fix: Model names are now properly set even when using $refs -* Added support for PHP 5.5's CurlFile to prevent warnings with the deprecated @ syntax -* Added support for oauth_callback in OAuth signatures -* Added support for oauth_verifier in OAuth signatures -* Added support to attempt to retrieve a command first literally, then ucfirst, the with inflection - -## 3.4.0 - 2013-04-11 - -* Bug fix: URLs are now resolved correctly based on http://tools.ietf.org/html/rfc3986#section-5.2. #289 -* Bug fix: Absolute URLs with a path in a service description will now properly override the base URL. #289 -* Bug fix: Parsing a query string with a single PHP array value will now result in an array. #263 -* Bug fix: Better normalization of the User-Agent header to prevent duplicate headers. #264. -* Bug fix: Added `number` type to service descriptions. -* Bug fix: empty parameters are removed from an OAuth signature -* Bug fix: Revalidating a cache entry prefers the Last-Modified over the Date header -* Bug fix: Fixed "array to string" error when validating a union of types in a service description -* Bug fix: Removed code that attempted to determine the size of a stream when data is written to the stream -* Bug fix: Not including an `oauth_token` if the value is null in the OauthPlugin. -* Bug fix: Now correctly aggregating successful requests and failed requests in CurlMulti when a redirect occurs. -* The new default CURLOPT_TIMEOUT setting has been increased to 150 seconds so that Guzzle works on poor connections. -* Added a feature to EntityEnclosingRequest::setBody() that will automatically set the Content-Type of the request if - the Content-Type can be determined based on the entity body or the path of the request. -* Added the ability to overwrite configuration settings in a client when grabbing a throwaway client from a builder. -* Added support for a PSR-3 LogAdapter. -* Added a `command.after_prepare` event -* Added `oauth_callback` parameter to the OauthPlugin -* Added the ability to create a custom stream class when using a stream factory -* Added a CachingEntityBody decorator -* Added support for `additionalParameters` in service descriptions to define how custom parameters are serialized. -* The bundled SSL certificate is now provided in the phar file and extracted when running Guzzle from a phar. -* You can now send any EntityEnclosingRequest with POST fields or POST files and cURL will handle creating bodies -* POST requests using a custom entity body are now treated exactly like PUT requests but with a custom cURL method. This - means that the redirect behavior of POST requests with custom bodies will not be the same as POST requests that use - POST fields or files (the latter is only used when emulating a form POST in the browser). -* Lots of cleanup to CurlHandle::factory and RequestFactory::createRequest - -## 3.3.1 - 2013-03-10 - -* Added the ability to create PHP streaming responses from HTTP requests -* Bug fix: Running any filters when parsing response headers with service descriptions -* Bug fix: OauthPlugin fixes to allow for multi-dimensional array signing, and sorting parameters before signing -* Bug fix: Removed the adding of default empty arrays and false Booleans to responses in order to be consistent across - response location visitors. -* Bug fix: Removed the possibility of creating configuration files with circular dependencies -* RequestFactory::create() now uses the key of a POST file when setting the POST file name -* Added xmlAllowEmpty to serialize an XML body even if no XML specific parameters are set - -## 3.3.0 - 2013-03-03 - -* A large number of performance optimizations have been made -* Bug fix: Added 'wb' as a valid write mode for streams -* Bug fix: `Guzzle\Http\Message\Response::json()` now allows scalar values to be returned -* Bug fix: Fixed bug in `Guzzle\Http\Message\Response` where wrapping quotes were stripped from `getEtag()` -* BC: Removed `Guzzle\Http\Utils` class -* BC: Setting a service description on a client will no longer modify the client's command factories. -* BC: Emitting IO events from a RequestMediator is now a parameter that must be set in a request's curl options using - the 'emit_io' key. This was previously set under a request's parameters using 'curl.emit_io' -* BC: `Guzzle\Stream\Stream::getWrapper()` and `Guzzle\Stream\Stream::getSteamType()` are no longer converted to - lowercase -* Operation parameter objects are now lazy loaded internally -* Added ErrorResponsePlugin that can throw errors for responses defined in service description operations' errorResponses -* Added support for instantiating responseType=class responseClass classes. Classes must implement - `Guzzle\Service\Command\ResponseClassInterface` -* Added support for additionalProperties for top-level parameters in responseType=model responseClasses. These - additional properties also support locations and can be used to parse JSON responses where the outermost part of the - JSON is an array -* Added support for nested renaming of JSON models (rename sentAs to name) -* CachePlugin - * Added support for stale-if-error so that the CachePlugin can now serve stale content from the cache on error - * Debug headers can now added to cached response in the CachePlugin - -## 3.2.0 - 2013-02-14 - -* CurlMulti is no longer reused globally. A new multi object is created per-client. This helps to isolate clients. -* URLs with no path no longer contain a "/" by default -* Guzzle\Http\QueryString does no longer manages the leading "?". This is now handled in Guzzle\Http\Url. -* BadResponseException no longer includes the full request and response message -* Adding setData() to Guzzle\Service\Description\ServiceDescriptionInterface -* Adding getResponseBody() to Guzzle\Http\Message\RequestInterface -* Various updates to classes to use ServiceDescriptionInterface type hints rather than ServiceDescription -* Header values can now be normalized into distinct values when multiple headers are combined with a comma separated list -* xmlEncoding can now be customized for the XML declaration of a XML service description operation -* Guzzle\Http\QueryString now uses Guzzle\Http\QueryAggregator\QueryAggregatorInterface objects to add custom value - aggregation and no longer uses callbacks -* The URL encoding implementation of Guzzle\Http\QueryString can now be customized -* Bug fix: Filters were not always invoked for array service description parameters -* Bug fix: Redirects now use a target response body rather than a temporary response body -* Bug fix: The default exponential backoff BackoffPlugin was not giving when the request threshold was exceeded -* Bug fix: Guzzle now takes the first found value when grabbing Cache-Control directives - -## 3.1.2 - 2013-01-27 - -* Refactored how operation responses are parsed. Visitors now include a before() method responsible for parsing the - response body. For example, the XmlVisitor now parses the XML response into an array in the before() method. -* Fixed an issue where cURL would not automatically decompress responses when the Accept-Encoding header was sent -* CURLOPT_SSL_VERIFYHOST is never set to 1 because it is deprecated (see 5e0ff2ef20f839e19d1eeb298f90ba3598784444) -* Fixed a bug where redirect responses were not chained correctly using getPreviousResponse() -* Setting default headers on a client after setting the user-agent will not erase the user-agent setting - -## 3.1.1 - 2013-01-20 - -* Adding wildcard support to Guzzle\Common\Collection::getPath() -* Adding alias support to ServiceBuilder configs -* Adding Guzzle\Service\Resource\CompositeResourceIteratorFactory and cleaning up factory interface - -## 3.1.0 - 2013-01-12 - -* BC: CurlException now extends from RequestException rather than BadResponseException -* BC: Renamed Guzzle\Plugin\Cache\CanCacheStrategyInterface::canCache() to canCacheRequest() and added CanCacheResponse() -* Added getData to ServiceDescriptionInterface -* Added context array to RequestInterface::setState() -* Bug: Removing hard dependency on the BackoffPlugin from Guzzle\Http -* Bug: Adding required content-type when JSON request visitor adds JSON to a command -* Bug: Fixing the serialization of a service description with custom data -* Made it easier to deal with exceptions thrown when transferring commands or requests in parallel by providing - an array of successful and failed responses -* Moved getPath from Guzzle\Service\Resource\Model to Guzzle\Common\Collection -* Added Guzzle\Http\IoEmittingEntityBody -* Moved command filtration from validators to location visitors -* Added `extends` attributes to service description parameters -* Added getModels to ServiceDescriptionInterface - -## 3.0.7 - 2012-12-19 - -* Fixing phar detection when forcing a cacert to system if null or true -* Allowing filename to be passed to `Guzzle\Http\Message\Request::setResponseBody()` -* Cleaning up `Guzzle\Common\Collection::inject` method -* Adding a response_body location to service descriptions - -## 3.0.6 - 2012-12-09 - -* CurlMulti performance improvements -* Adding setErrorResponses() to Operation -* composer.json tweaks - -## 3.0.5 - 2012-11-18 - -* Bug: Fixing an infinite recursion bug caused from revalidating with the CachePlugin -* Bug: Response body can now be a string containing "0" -* Bug: Using Guzzle inside of a phar uses system by default but now allows for a custom cacert -* Bug: QueryString::fromString now properly parses query string parameters that contain equal signs -* Added support for XML attributes in service description responses -* DefaultRequestSerializer now supports array URI parameter values for URI template expansion -* Added better mimetype guessing to requests and post files - -## 3.0.4 - 2012-11-11 - -* Bug: Fixed a bug when adding multiple cookies to a request to use the correct glue value -* Bug: Cookies can now be added that have a name, domain, or value set to "0" -* Bug: Using the system cacert bundle when using the Phar -* Added json and xml methods to Response to make it easier to parse JSON and XML response data into data structures -* Enhanced cookie jar de-duplication -* Added the ability to enable strict cookie jars that throw exceptions when invalid cookies are added -* Added setStream to StreamInterface to actually make it possible to implement custom rewind behavior for entity bodies -* Added the ability to create any sort of hash for a stream rather than just an MD5 hash - -## 3.0.3 - 2012-11-04 - -* Implementing redirects in PHP rather than cURL -* Added PECL URI template extension and using as default parser if available -* Bug: Fixed Content-Length parsing of Response factory -* Adding rewind() method to entity bodies and streams. Allows for custom rewinding of non-repeatable streams. -* Adding ToArrayInterface throughout library -* Fixing OauthPlugin to create unique nonce values per request - -## 3.0.2 - 2012-10-25 - -* Magic methods are enabled by default on clients -* Magic methods return the result of a command -* Service clients no longer require a base_url option in the factory -* Bug: Fixed an issue with URI templates where null template variables were being expanded - -## 3.0.1 - 2012-10-22 - -* Models can now be used like regular collection objects by calling filter, map, etc. -* Models no longer require a Parameter structure or initial data in the constructor -* Added a custom AppendIterator to get around a PHP bug with the `\AppendIterator` - -## 3.0.0 - 2012-10-15 - -* Rewrote service description format to be based on Swagger - * Now based on JSON schema - * Added nested input structures and nested response models - * Support for JSON and XML input and output models - * Renamed `commands` to `operations` - * Removed dot class notation - * Removed custom types -* Broke the project into smaller top-level namespaces to be more component friendly -* Removed support for XML configs and descriptions. Use arrays or JSON files. -* Removed the Validation component and Inspector -* Moved all cookie code to Guzzle\Plugin\Cookie -* Magic methods on a Guzzle\Service\Client now return the command un-executed. -* Calling getResult() or getResponse() on a command will lazily execute the command if needed. -* Now shipping with cURL's CA certs and using it by default -* Added previousResponse() method to response objects -* No longer sending Accept and Accept-Encoding headers on every request -* Only sending an Expect header by default when a payload is greater than 1MB -* Added/moved client options: - * curl.blacklist to curl.option.blacklist - * Added ssl.certificate_authority -* Added a Guzzle\Iterator component -* Moved plugins from Guzzle\Http\Plugin to Guzzle\Plugin -* Added a more robust backoff retry strategy (replaced the ExponentialBackoffPlugin) -* Added a more robust caching plugin -* Added setBody to response objects -* Updating LogPlugin to use a more flexible MessageFormatter -* Added a completely revamped build process -* Cleaning up Collection class and removing default values from the get method -* Fixed ZF2 cache adapters - -## 2.8.8 - 2012-10-15 - -* Bug: Fixed a cookie issue that caused dot prefixed domains to not match where popular browsers did - -## 2.8.7 - 2012-09-30 - -* Bug: Fixed config file aliases for JSON includes -* Bug: Fixed cookie bug on a request object by using CookieParser to parse cookies on requests -* Bug: Removing the path to a file when sending a Content-Disposition header on a POST upload -* Bug: Hardening request and response parsing to account for missing parts -* Bug: Fixed PEAR packaging -* Bug: Fixed Request::getInfo -* Bug: Fixed cases where CURLM_CALL_MULTI_PERFORM return codes were causing curl transactions to fail -* Adding the ability for the namespace Iterator factory to look in multiple directories -* Added more getters/setters/removers from service descriptions -* Added the ability to remove POST fields from OAuth signatures -* OAuth plugin now supports 2-legged OAuth - -## 2.8.6 - 2012-09-05 - -* Added the ability to modify and build service descriptions -* Added the use of visitors to apply parameters to locations in service descriptions using the dynamic command -* Added a `json` parameter location -* Now allowing dot notation for classes in the CacheAdapterFactory -* Using the union of two arrays rather than an array_merge when extending service builder services and service params -* Ensuring that a service is a string before doing strpos() checks on it when substituting services for references - in service builder config files. -* Services defined in two different config files that include one another will by default replace the previously - defined service, but you can now create services that extend themselves and merge their settings over the previous -* The JsonLoader now supports aliasing filenames with different filenames. This allows you to alias something like - '_default' with a default JSON configuration file. - -## 2.8.5 - 2012-08-29 - -* Bug: Suppressed empty arrays from URI templates -* Bug: Added the missing $options argument from ServiceDescription::factory to enable caching -* Added support for HTTP responses that do not contain a reason phrase in the start-line -* AbstractCommand commands are now invokable -* Added a way to get the data used when signing an Oauth request before a request is sent - -## 2.8.4 - 2012-08-15 - -* Bug: Custom delay time calculations are no longer ignored in the ExponentialBackoffPlugin -* Added the ability to transfer entity bodies as a string rather than streamed. This gets around curl error 65. Set `body_as_string` in a request's curl options to enable. -* Added a StreamInterface, EntityBodyInterface, and added ftell() to Guzzle\Common\Stream -* Added an AbstractEntityBodyDecorator and a ReadLimitEntityBody decorator to transfer only a subset of a decorated stream -* Stream and EntityBody objects will now return the file position to the previous position after a read required operation (e.g. getContentMd5()) -* Added additional response status codes -* Removed SSL information from the default User-Agent header -* DELETE requests can now send an entity body -* Added an EventDispatcher to the ExponentialBackoffPlugin and added an ExponentialBackoffLogger to log backoff retries -* Added the ability of the MockPlugin to consume mocked request bodies -* LogPlugin now exposes request and response objects in the extras array - -## 2.8.3 - 2012-07-30 - -* Bug: Fixed a case where empty POST requests were sent as GET requests -* Bug: Fixed a bug in ExponentialBackoffPlugin that caused fatal errors when retrying an EntityEnclosingRequest that does not have a body -* Bug: Setting the response body of a request to null after completing a request, not when setting the state of a request to new -* Added multiple inheritance to service description commands -* Added an ApiCommandInterface and added `getParamNames()` and `hasParam()` -* Removed the default 2mb size cutoff from the Md5ValidatorPlugin so that it now defaults to validating everything -* Changed CurlMulti::perform to pass a smaller timeout to CurlMulti::executeHandles - -## 2.8.2 - 2012-07-24 - -* Bug: Query string values set to 0 are no longer dropped from the query string -* Bug: A Collection object is no longer created each time a call is made to `Guzzle\Service\Command\AbstractCommand::getRequestHeaders()` -* Bug: `+` is now treated as an encoded space when parsing query strings -* QueryString and Collection performance improvements -* Allowing dot notation for class paths in filters attribute of a service descriptions - -## 2.8.1 - 2012-07-16 - -* Loosening Event Dispatcher dependency -* POST redirects can now be customized using CURLOPT_POSTREDIR - -## 2.8.0 - 2012-07-15 - -* BC: Guzzle\Http\Query - * Query strings with empty variables will always show an equal sign unless the variable is set to QueryString::BLANK (e.g. ?acl= vs ?acl) - * Changed isEncodingValues() and isEncodingFields() to isUrlEncoding() - * Changed setEncodeValues(bool) and setEncodeFields(bool) to useUrlEncoding(bool) - * Changed the aggregation functions of QueryString to be static methods - * Can now use fromString() with querystrings that have a leading ? -* cURL configuration values can be specified in service descriptions using `curl.` prefixed parameters -* Content-Length is set to 0 before emitting the request.before_send event when sending an empty request body -* Cookies are no longer URL decoded by default -* Bug: URI template variables set to null are no longer expanded - -## 2.7.2 - 2012-07-02 - -* BC: Moving things to get ready for subtree splits. Moving Inflection into Common. Moving Guzzle\Http\Parser to Guzzle\Parser. -* BC: Removing Guzzle\Common\Batch\Batch::count() and replacing it with isEmpty() -* CachePlugin now allows for a custom request parameter function to check if a request can be cached -* Bug fix: CachePlugin now only caches GET and HEAD requests by default -* Bug fix: Using header glue when transferring headers over the wire -* Allowing deeply nested arrays for composite variables in URI templates -* Batch divisors can now return iterators or arrays - -## 2.7.1 - 2012-06-26 - -* Minor patch to update version number in UA string -* Updating build process - -## 2.7.0 - 2012-06-25 - -* BC: Inflection classes moved to Guzzle\Inflection. No longer static methods. Can now inject custom inflectors into classes. -* BC: Removed magic setX methods from commands -* BC: Magic methods mapped to service description commands are now inflected in the command factory rather than the client __call() method -* Verbose cURL options are no longer enabled by default. Set curl.debug to true on a client to enable. -* Bug: Now allowing colons in a response start-line (e.g. HTTP/1.1 503 Service Unavailable: Back-end server is at capacity) -* Guzzle\Service\Resource\ResourceIteratorApplyBatched now internally uses the Guzzle\Common\Batch namespace -* Added Guzzle\Service\Plugin namespace and a PluginCollectionPlugin -* Added the ability to set POST fields and files in a service description -* Guzzle\Http\EntityBody::factory() now accepts objects with a __toString() method -* Adding a command.before_prepare event to clients -* Added BatchClosureTransfer and BatchClosureDivisor -* BatchTransferException now includes references to the batch divisor and transfer strategies -* Fixed some tests so that they pass more reliably -* Added Guzzle\Common\Log\ArrayLogAdapter - -## 2.6.6 - 2012-06-10 - -* BC: Removing Guzzle\Http\Plugin\BatchQueuePlugin -* BC: Removing Guzzle\Service\Command\CommandSet -* Adding generic batching system (replaces the batch queue plugin and command set) -* Updating ZF cache and log adapters and now using ZF's composer repository -* Bug: Setting the name of each ApiParam when creating through an ApiCommand -* Adding result_type, result_doc, deprecated, and doc_url to service descriptions -* Bug: Changed the default cookie header casing back to 'Cookie' - -## 2.6.5 - 2012-06-03 - -* BC: Renaming Guzzle\Http\Message\RequestInterface::getResourceUri() to getResource() -* BC: Removing unused AUTH_BASIC and AUTH_DIGEST constants from -* BC: Guzzle\Http\Cookie is now used to manage Set-Cookie data, not Cookie data -* BC: Renaming methods in the CookieJarInterface -* Moving almost all cookie logic out of the CookiePlugin and into the Cookie or CookieJar implementations -* Making the default glue for HTTP headers ';' instead of ',' -* Adding a removeValue to Guzzle\Http\Message\Header -* Adding getCookies() to request interface. -* Making it easier to add event subscribers to HasDispatcherInterface classes. Can now directly call addSubscriber() - -## 2.6.4 - 2012-05-30 - -* BC: Cleaning up how POST files are stored in EntityEnclosingRequest objects. Adding PostFile class. -* BC: Moving ApiCommand specific functionality from the Inspector and on to the ApiCommand -* Bug: Fixing magic method command calls on clients -* Bug: Email constraint only validates strings -* Bug: Aggregate POST fields when POST files are present in curl handle -* Bug: Fixing default User-Agent header -* Bug: Only appending or prepending parameters in commands if they are specified -* Bug: Not requiring response reason phrases or status codes to match a predefined list of codes -* Allowing the use of dot notation for class namespaces when using instance_of constraint -* Added any_match validation constraint -* Added an AsyncPlugin -* Passing request object to the calculateWait method of the ExponentialBackoffPlugin -* Allowing the result of a command object to be changed -* Parsing location and type sub values when instantiating a service description rather than over and over at runtime - -## 2.6.3 - 2012-05-23 - -* [BC] Guzzle\Common\FromConfigInterface no longer requires any config options. -* [BC] Refactoring how POST files are stored on an EntityEnclosingRequest. They are now separate from POST fields. -* You can now use an array of data when creating PUT request bodies in the request factory. -* Removing the requirement that HTTPS requests needed a Cache-Control: public directive to be cacheable. -* [Http] Adding support for Content-Type in multipart POST uploads per upload -* [Http] Added support for uploading multiple files using the same name (foo[0], foo[1]) -* Adding more POST data operations for easier manipulation of POST data. -* You can now set empty POST fields. -* The body of a request is only shown on EntityEnclosingRequest objects that do not use POST files. -* Split the Guzzle\Service\Inspector::validateConfig method into two methods. One to initialize when a command is created, and one to validate. -* CS updates - -## 2.6.2 - 2012-05-19 - -* [Http] Better handling of nested scope requests in CurlMulti. Requests are now always prepares in the send() method rather than the addRequest() method. - -## 2.6.1 - 2012-05-19 - -* [BC] Removing 'path' support in service descriptions. Use 'uri'. -* [BC] Guzzle\Service\Inspector::parseDocBlock is now protected. Adding getApiParamsForClass() with cache. -* [BC] Removing Guzzle\Common\NullObject. Use https://github.com/mtdowling/NullObject if you need it. -* [BC] Removing Guzzle\Common\XmlElement. -* All commands, both dynamic and concrete, have ApiCommand objects. -* Adding a fix for CurlMulti so that if all of the connections encounter some sort of curl error, then the loop exits. -* Adding checks to EntityEnclosingRequest so that empty POST files and fields are ignored. -* Making the method signature of Guzzle\Service\Builder\ServiceBuilder::factory more flexible. - -## 2.6.0 - 2012-05-15 - -* [BC] Moving Guzzle\Service\Builder to Guzzle\Service\Builder\ServiceBuilder -* [BC] Executing a Command returns the result of the command rather than the command -* [BC] Moving all HTTP parsing logic to Guzzle\Http\Parsers. Allows for faster C implementations if needed. -* [BC] Changing the Guzzle\Http\Message\Response::setProtocol() method to accept a protocol and version in separate args. -* [BC] Moving ResourceIterator* to Guzzle\Service\Resource -* [BC] Completely refactored ResourceIterators to iterate over a cloned command object -* [BC] Moved Guzzle\Http\UriTemplate to Guzzle\Http\Parser\UriTemplate\UriTemplate -* [BC] Guzzle\Guzzle is now deprecated -* Moving Guzzle\Common\Guzzle::inject to Guzzle\Common\Collection::inject -* Adding Guzzle\Version class to give version information about Guzzle -* Adding Guzzle\Http\Utils class to provide getDefaultUserAgent() and getHttpDate() -* Adding Guzzle\Curl\CurlVersion to manage caching curl_version() data -* ServiceDescription and ServiceBuilder are now cacheable using similar configs -* Changing the format of XML and JSON service builder configs. Backwards compatible. -* Cleaned up Cookie parsing -* Trimming the default Guzzle User-Agent header -* Adding a setOnComplete() method to Commands that is called when a command completes -* Keeping track of requests that were mocked in the MockPlugin -* Fixed a caching bug in the CacheAdapterFactory -* Inspector objects can be injected into a Command object -* Refactoring a lot of code and tests to be case insensitive when dealing with headers -* Adding Guzzle\Http\Message\HeaderComparison for easy comparison of HTTP headers using a DSL -* Adding the ability to set global option overrides to service builder configs -* Adding the ability to include other service builder config files from within XML and JSON files -* Moving the parseQuery method out of Url and on to QueryString::fromString() as a static factory method. - -## 2.5.0 - 2012-05-08 - -* Major performance improvements -* [BC] Simplifying Guzzle\Common\Collection. Please check to see if you are using features that are now deprecated. -* [BC] Using a custom validation system that allows a flyweight implementation for much faster validation. No longer using Symfony2 Validation component. -* [BC] No longer supporting "{{ }}" for injecting into command or UriTemplates. Use "{}" -* Added the ability to passed parameters to all requests created by a client -* Added callback functionality to the ExponentialBackoffPlugin -* Using microtime in ExponentialBackoffPlugin to allow more granular backoff strategies. -* Rewinding request stream bodies when retrying requests -* Exception is thrown when JSON response body cannot be decoded -* Added configurable magic method calls to clients and commands. This is off by default. -* Fixed a defect that added a hash to every parsed URL part -* Fixed duplicate none generation for OauthPlugin. -* Emitting an event each time a client is generated by a ServiceBuilder -* Using an ApiParams object instead of a Collection for parameters of an ApiCommand -* cache.* request parameters should be renamed to params.cache.* -* Added the ability to set arbitrary curl options on requests (disable_wire, progress, etc.). See CurlHandle. -* Added the ability to disable type validation of service descriptions -* ServiceDescriptions and ServiceBuilders are now Serializable diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/Dockerfile b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/Dockerfile deleted file mode 100644 index f6a09523..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/Dockerfile +++ /dev/null @@ -1,18 +0,0 @@ -FROM composer:latest as setup - -RUN mkdir /guzzle - -WORKDIR /guzzle - -RUN set -xe \ - && composer init --name=guzzlehttp/test --description="Simple project for testing Guzzle scripts" --author="Márk Sági-Kazár " --no-interaction \ - && composer require guzzlehttp/guzzle - - -FROM php:7.3 - -RUN mkdir /guzzle - -WORKDIR /guzzle - -COPY --from=setup /guzzle /guzzle diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/LICENSE b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/LICENSE deleted file mode 100644 index 50a177b0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/LICENSE +++ /dev/null @@ -1,19 +0,0 @@ -Copyright (c) 2011-2018 Michael Dowling, https://github.com/mtdowling - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/README.md b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/README.md deleted file mode 100644 index 5fdb6c5f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/README.md +++ /dev/null @@ -1,90 +0,0 @@ -Guzzle, PHP HTTP client -======================= - -[![Latest Version](https://img.shields.io/github/release/guzzle/guzzle.svg?style=flat-square)](https://github.com/guzzle/guzzle/releases) -[![Build Status](https://img.shields.io/travis/guzzle/guzzle.svg?style=flat-square)](https://travis-ci.org/guzzle/guzzle) -[![Total Downloads](https://img.shields.io/packagist/dt/guzzlehttp/guzzle.svg?style=flat-square)](https://packagist.org/packages/guzzlehttp/guzzle) - -Guzzle is a PHP HTTP client that makes it easy to send HTTP requests and -trivial to integrate with web services. - -- Simple interface for building query strings, POST requests, streaming large - uploads, streaming large downloads, using HTTP cookies, uploading JSON data, - etc... -- Can send both synchronous and asynchronous requests using the same interface. -- Uses PSR-7 interfaces for requests, responses, and streams. This allows you - to utilize other PSR-7 compatible libraries with Guzzle. -- Abstracts away the underlying HTTP transport, allowing you to write - environment and transport agnostic code; i.e., no hard dependency on cURL, - PHP streams, sockets, or non-blocking event loops. -- Middleware system allows you to augment and compose client behavior. - -```php -$client = new \GuzzleHttp\Client(); -$response = $client->request('GET', 'https://api.github.com/repos/guzzle/guzzle'); - -echo $response->getStatusCode(); # 200 -echo $response->getHeaderLine('content-type'); # 'application/json; charset=utf8' -echo $response->getBody(); # '{"id": 1420053, "name": "guzzle", ...}' - -# Send an asynchronous request. -$request = new \GuzzleHttp\Psr7\Request('GET', 'http://httpbin.org'); -$promise = $client->sendAsync($request)->then(function ($response) { - echo 'I completed! ' . $response->getBody(); -}); - -$promise->wait(); -``` - -## Help and docs - -- [Documentation](http://guzzlephp.org/) -- [Stack Overflow](http://stackoverflow.com/questions/tagged/guzzle) -- [Gitter](https://gitter.im/guzzle/guzzle) - - -## Installing Guzzle - -The recommended way to install Guzzle is through -[Composer](http://getcomposer.org). - -```bash -# Install Composer -curl -sS https://getcomposer.org/installer | php -``` - -Next, run the Composer command to install the latest stable version of Guzzle: - -```bash -composer require guzzlehttp/guzzle -``` - -After installing, you need to require Composer's autoloader: - -```php -require 'vendor/autoload.php'; -``` - -You can then later update Guzzle using composer: - - ```bash -composer update - ``` - - -## Version Guidance - -| Version | Status | Packagist | Namespace | Repo | Docs | PSR-7 | PHP Version | -|---------|------------|---------------------|--------------|---------------------|---------------------|-------|-------------| -| 3.x | EOL | `guzzle/guzzle` | `Guzzle` | [v3][guzzle-3-repo] | [v3][guzzle-3-docs] | No | >= 5.3.3 | -| 4.x | EOL | `guzzlehttp/guzzle` | `GuzzleHttp` | [v4][guzzle-4-repo] | N/A | No | >= 5.4 | -| 5.x | EOL | `guzzlehttp/guzzle` | `GuzzleHttp` | [v5][guzzle-5-repo] | [v5][guzzle-5-docs] | No | >= 5.4 | -| 6.x | Latest | `guzzlehttp/guzzle` | `GuzzleHttp` | [v6][guzzle-6-repo] | [v6][guzzle-6-docs] | Yes | >= 5.5 | - -[guzzle-3-repo]: https://github.com/guzzle/guzzle3 -[guzzle-4-repo]: https://github.com/guzzle/guzzle/tree/4.x -[guzzle-5-repo]: https://github.com/guzzle/guzzle/tree/5.3 -[guzzle-6-repo]: https://github.com/guzzle/guzzle -[guzzle-3-docs]: http://guzzle3.readthedocs.org -[guzzle-5-docs]: http://guzzle.readthedocs.org/en/5.3/ -[guzzle-6-docs]: http://guzzle.readthedocs.org/en/latest/ diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/UPGRADING.md b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/UPGRADING.md deleted file mode 100644 index 91d1dcc9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/UPGRADING.md +++ /dev/null @@ -1,1203 +0,0 @@ -Guzzle Upgrade Guide -==================== - -5.0 to 6.0 ----------- - -Guzzle now uses [PSR-7](http://www.php-fig.org/psr/psr-7/) for HTTP messages. -Due to the fact that these messages are immutable, this prompted a refactoring -of Guzzle to use a middleware based system rather than an event system. Any -HTTP message interaction (e.g., `GuzzleHttp\Message\Request`) need to be -updated to work with the new immutable PSR-7 request and response objects. Any -event listeners or subscribers need to be updated to become middleware -functions that wrap handlers (or are injected into a -`GuzzleHttp\HandlerStack`). - -- Removed `GuzzleHttp\BatchResults` -- Removed `GuzzleHttp\Collection` -- Removed `GuzzleHttp\HasDataTrait` -- Removed `GuzzleHttp\ToArrayInterface` -- The `guzzlehttp/streams` dependency has been removed. Stream functionality - is now present in the `GuzzleHttp\Psr7` namespace provided by the - `guzzlehttp/psr7` package. -- Guzzle no longer uses ReactPHP promises and now uses the - `guzzlehttp/promises` library. We use a custom promise library for three - significant reasons: - 1. React promises (at the time of writing this) are recursive. Promise - chaining and promise resolution will eventually blow the stack. Guzzle - promises are not recursive as they use a sort of trampolining technique. - Note: there has been movement in the React project to modify promises to - no longer utilize recursion. - 2. Guzzle needs to have the ability to synchronously block on a promise to - wait for a result. Guzzle promises allows this functionality (and does - not require the use of recursion). - 3. Because we need to be able to wait on a result, doing so using React - promises requires wrapping react promises with RingPHP futures. This - overhead is no longer needed, reducing stack sizes, reducing complexity, - and improving performance. -- `GuzzleHttp\Mimetypes` has been moved to a function in - `GuzzleHttp\Psr7\mimetype_from_extension` and - `GuzzleHttp\Psr7\mimetype_from_filename`. -- `GuzzleHttp\Query` and `GuzzleHttp\QueryParser` have been removed. Query - strings must now be passed into request objects as strings, or provided to - the `query` request option when creating requests with clients. The `query` - option uses PHP's `http_build_query` to convert an array to a string. If you - need a different serialization technique, you will need to pass the query - string in as a string. There are a couple helper functions that will make - working with query strings easier: `GuzzleHttp\Psr7\parse_query` and - `GuzzleHttp\Psr7\build_query`. -- Guzzle no longer has a dependency on RingPHP. Due to the use of a middleware - system based on PSR-7, using RingPHP and it's middleware system as well adds - more complexity than the benefits it provides. All HTTP handlers that were - present in RingPHP have been modified to work directly with PSR-7 messages - and placed in the `GuzzleHttp\Handler` namespace. This significantly reduces - complexity in Guzzle, removes a dependency, and improves performance. RingPHP - will be maintained for Guzzle 5 support, but will no longer be a part of - Guzzle 6. -- As Guzzle now uses a middleware based systems the event system and RingPHP - integration has been removed. Note: while the event system has been removed, - it is possible to add your own type of event system that is powered by the - middleware system. - - Removed the `Event` namespace. - - Removed the `Subscriber` namespace. - - Removed `Transaction` class - - Removed `RequestFsm` - - Removed `RingBridge` - - `GuzzleHttp\Subscriber\Cookie` is now provided by - `GuzzleHttp\Middleware::cookies` - - `GuzzleHttp\Subscriber\HttpError` is now provided by - `GuzzleHttp\Middleware::httpError` - - `GuzzleHttp\Subscriber\History` is now provided by - `GuzzleHttp\Middleware::history` - - `GuzzleHttp\Subscriber\Mock` is now provided by - `GuzzleHttp\Handler\MockHandler` - - `GuzzleHttp\Subscriber\Prepare` is now provided by - `GuzzleHttp\PrepareBodyMiddleware` - - `GuzzleHttp\Subscriber\Redirect` is now provided by - `GuzzleHttp\RedirectMiddleware` -- Guzzle now uses `Psr\Http\Message\UriInterface` (implements in - `GuzzleHttp\Psr7\Uri`) for URI support. `GuzzleHttp\Url` is now gone. -- Static functions in `GuzzleHttp\Utils` have been moved to namespaced - functions under the `GuzzleHttp` namespace. This requires either a Composer - based autoloader or you to include functions.php. -- `GuzzleHttp\ClientInterface::getDefaultOption` has been renamed to - `GuzzleHttp\ClientInterface::getConfig`. -- `GuzzleHttp\ClientInterface::setDefaultOption` has been removed. -- The `json` and `xml` methods of response objects has been removed. With the - migration to strictly adhering to PSR-7 as the interface for Guzzle messages, - adding methods to message interfaces would actually require Guzzle messages - to extend from PSR-7 messages rather then work with them directly. - -## Migrating to middleware - -The change to PSR-7 unfortunately required significant refactoring to Guzzle -due to the fact that PSR-7 messages are immutable. Guzzle 5 relied on an event -system from plugins. The event system relied on mutability of HTTP messages and -side effects in order to work. With immutable messages, you have to change your -workflow to become more about either returning a value (e.g., functional -middlewares) or setting a value on an object. Guzzle v6 has chosen the -functional middleware approach. - -Instead of using the event system to listen for things like the `before` event, -you now create a stack based middleware function that intercepts a request on -the way in and the promise of the response on the way out. This is a much -simpler and more predictable approach than the event system and works nicely -with PSR-7 middleware. Due to the use of promises, the middleware system is -also asynchronous. - -v5: - -```php -use GuzzleHttp\Event\BeforeEvent; -$client = new GuzzleHttp\Client(); -// Get the emitter and listen to the before event. -$client->getEmitter()->on('before', function (BeforeEvent $e) { - // Guzzle v5 events relied on mutation - $e->getRequest()->setHeader('X-Foo', 'Bar'); -}); -``` - -v6: - -In v6, you can modify the request before it is sent using the `mapRequest` -middleware. The idiomatic way in v6 to modify the request/response lifecycle is -to setup a handler middleware stack up front and inject the handler into a -client. - -```php -use GuzzleHttp\Middleware; -// Create a handler stack that has all of the default middlewares attached -$handler = GuzzleHttp\HandlerStack::create(); -// Push the handler onto the handler stack -$handler->push(Middleware::mapRequest(function (RequestInterface $request) { - // Notice that we have to return a request object - return $request->withHeader('X-Foo', 'Bar'); -})); -// Inject the handler into the client -$client = new GuzzleHttp\Client(['handler' => $handler]); -``` - -## POST Requests - -This version added the [`form_params`](http://guzzle.readthedocs.org/en/latest/request-options.html#form_params) -and `multipart` request options. `form_params` is an associative array of -strings or array of strings and is used to serialize an -`application/x-www-form-urlencoded` POST request. The -[`multipart`](http://guzzle.readthedocs.org/en/latest/request-options.html#multipart) -option is now used to send a multipart/form-data POST request. - -`GuzzleHttp\Post\PostFile` has been removed. Use the `multipart` option to add -POST files to a multipart/form-data request. - -The `body` option no longer accepts an array to send POST requests. Please use -`multipart` or `form_params` instead. - -The `base_url` option has been renamed to `base_uri`. - -4.x to 5.0 ----------- - -## Rewritten Adapter Layer - -Guzzle now uses [RingPHP](http://ringphp.readthedocs.org/en/latest) to send -HTTP requests. The `adapter` option in a `GuzzleHttp\Client` constructor -is still supported, but it has now been renamed to `handler`. Instead of -passing a `GuzzleHttp\Adapter\AdapterInterface`, you must now pass a PHP -`callable` that follows the RingPHP specification. - -## Removed Fluent Interfaces - -[Fluent interfaces were removed](http://ocramius.github.io/blog/fluent-interfaces-are-evil) -from the following classes: - -- `GuzzleHttp\Collection` -- `GuzzleHttp\Url` -- `GuzzleHttp\Query` -- `GuzzleHttp\Post\PostBody` -- `GuzzleHttp\Cookie\SetCookie` - -## Removed functions.php - -Removed "functions.php", so that Guzzle is truly PSR-4 compliant. The following -functions can be used as replacements. - -- `GuzzleHttp\json_decode` -> `GuzzleHttp\Utils::jsonDecode` -- `GuzzleHttp\get_path` -> `GuzzleHttp\Utils::getPath` -- `GuzzleHttp\Utils::setPath` -> `GuzzleHttp\set_path` -- `GuzzleHttp\Pool::batch` -> `GuzzleHttp\batch`. This function is, however, - deprecated in favor of using `GuzzleHttp\Pool::batch()`. - -The "procedural" global client has been removed with no replacement (e.g., -`GuzzleHttp\get()`, `GuzzleHttp\post()`, etc.). Use a `GuzzleHttp\Client` -object as a replacement. - -## `throwImmediately` has been removed - -The concept of "throwImmediately" has been removed from exceptions and error -events. This control mechanism was used to stop a transfer of concurrent -requests from completing. This can now be handled by throwing the exception or -by cancelling a pool of requests or each outstanding future request -individually. - -## headers event has been removed - -Removed the "headers" event. This event was only useful for changing the -body a response once the headers of the response were known. You can implement -a similar behavior in a number of ways. One example might be to use a -FnStream that has access to the transaction being sent. For example, when the -first byte is written, you could check if the response headers match your -expectations, and if so, change the actual stream body that is being -written to. - -## Updates to HTTP Messages - -Removed the `asArray` parameter from -`GuzzleHttp\Message\MessageInterface::getHeader`. If you want to get a header -value as an array, then use the newly added `getHeaderAsArray()` method of -`MessageInterface`. This change makes the Guzzle interfaces compatible with -the PSR-7 interfaces. - -3.x to 4.0 ----------- - -## Overarching changes: - -- Now requires PHP 5.4 or greater. -- No longer requires cURL to send requests. -- Guzzle no longer wraps every exception it throws. Only exceptions that are - recoverable are now wrapped by Guzzle. -- Various namespaces have been removed or renamed. -- No longer requiring the Symfony EventDispatcher. A custom event dispatcher - based on the Symfony EventDispatcher is - now utilized in `GuzzleHttp\Event\EmitterInterface` (resulting in significant - speed and functionality improvements). - -Changes per Guzzle 3.x namespace are described below. - -## Batch - -The `Guzzle\Batch` namespace has been removed. This is best left to -third-parties to implement on top of Guzzle's core HTTP library. - -## Cache - -The `Guzzle\Cache` namespace has been removed. (Todo: No suitable replacement -has been implemented yet, but hoping to utilize a PSR cache interface). - -## Common - -- Removed all of the wrapped exceptions. It's better to use the standard PHP - library for unrecoverable exceptions. -- `FromConfigInterface` has been removed. -- `Guzzle\Common\Version` has been removed. The VERSION constant can be found - at `GuzzleHttp\ClientInterface::VERSION`. - -### Collection - -- `getAll` has been removed. Use `toArray` to convert a collection to an array. -- `inject` has been removed. -- `keySearch` has been removed. -- `getPath` no longer supports wildcard expressions. Use something better like - JMESPath for this. -- `setPath` now supports appending to an existing array via the `[]` notation. - -### Events - -Guzzle no longer requires Symfony's EventDispatcher component. Guzzle now uses -`GuzzleHttp\Event\Emitter`. - -- `Symfony\Component\EventDispatcher\EventDispatcherInterface` is replaced by - `GuzzleHttp\Event\EmitterInterface`. -- `Symfony\Component\EventDispatcher\EventDispatcher` is replaced by - `GuzzleHttp\Event\Emitter`. -- `Symfony\Component\EventDispatcher\Event` is replaced by - `GuzzleHttp\Event\Event`, and Guzzle now has an EventInterface in - `GuzzleHttp\Event\EventInterface`. -- `AbstractHasDispatcher` has moved to a trait, `HasEmitterTrait`, and - `HasDispatcherInterface` has moved to `HasEmitterInterface`. Retrieving the - event emitter of a request, client, etc. now uses the `getEmitter` method - rather than the `getDispatcher` method. - -#### Emitter - -- Use the `once()` method to add a listener that automatically removes itself - the first time it is invoked. -- Use the `listeners()` method to retrieve a list of event listeners rather than - the `getListeners()` method. -- Use `emit()` instead of `dispatch()` to emit an event from an emitter. -- Use `attach()` instead of `addSubscriber()` and `detach()` instead of - `removeSubscriber()`. - -```php -$mock = new Mock(); -// 3.x -$request->getEventDispatcher()->addSubscriber($mock); -$request->getEventDispatcher()->removeSubscriber($mock); -// 4.x -$request->getEmitter()->attach($mock); -$request->getEmitter()->detach($mock); -``` - -Use the `on()` method to add a listener rather than the `addListener()` method. - -```php -// 3.x -$request->getEventDispatcher()->addListener('foo', function (Event $event) { /* ... */ } ); -// 4.x -$request->getEmitter()->on('foo', function (Event $event, $name) { /* ... */ } ); -``` - -## Http - -### General changes - -- The cacert.pem certificate has been moved to `src/cacert.pem`. -- Added the concept of adapters that are used to transfer requests over the - wire. -- Simplified the event system. -- Sending requests in parallel is still possible, but batching is no longer a - concept of the HTTP layer. Instead, you must use the `complete` and `error` - events to asynchronously manage parallel request transfers. -- `Guzzle\Http\Url` has moved to `GuzzleHttp\Url`. -- `Guzzle\Http\QueryString` has moved to `GuzzleHttp\Query`. -- QueryAggregators have been rewritten so that they are simply callable - functions. -- `GuzzleHttp\StaticClient` has been removed. Use the functions provided in - `functions.php` for an easy to use static client instance. -- Exceptions in `GuzzleHttp\Exception` have been updated to all extend from - `GuzzleHttp\Exception\TransferException`. - -### Client - -Calling methods like `get()`, `post()`, `head()`, etc. no longer create and -return a request, but rather creates a request, sends the request, and returns -the response. - -```php -// 3.0 -$request = $client->get('/'); -$response = $request->send(); - -// 4.0 -$response = $client->get('/'); - -// or, to mirror the previous behavior -$request = $client->createRequest('GET', '/'); -$response = $client->send($request); -``` - -`GuzzleHttp\ClientInterface` has changed. - -- The `send` method no longer accepts more than one request. Use `sendAll` to - send multiple requests in parallel. -- `setUserAgent()` has been removed. Use a default request option instead. You - could, for example, do something like: - `$client->setConfig('defaults/headers/User-Agent', 'Foo/Bar ' . $client::getDefaultUserAgent())`. -- `setSslVerification()` has been removed. Use default request options instead, - like `$client->setConfig('defaults/verify', true)`. - -`GuzzleHttp\Client` has changed. - -- The constructor now accepts only an associative array. You can include a - `base_url` string or array to use a URI template as the base URL of a client. - You can also specify a `defaults` key that is an associative array of default - request options. You can pass an `adapter` to use a custom adapter, - `batch_adapter` to use a custom adapter for sending requests in parallel, or - a `message_factory` to change the factory used to create HTTP requests and - responses. -- The client no longer emits a `client.create_request` event. -- Creating requests with a client no longer automatically utilize a URI - template. You must pass an array into a creational method (e.g., - `createRequest`, `get`, `put`, etc.) in order to expand a URI template. - -### Messages - -Messages no longer have references to their counterparts (i.e., a request no -longer has a reference to it's response, and a response no loger has a -reference to its request). This association is now managed through a -`GuzzleHttp\Adapter\TransactionInterface` object. You can get references to -these transaction objects using request events that are emitted over the -lifecycle of a request. - -#### Requests with a body - -- `GuzzleHttp\Message\EntityEnclosingRequest` and - `GuzzleHttp\Message\EntityEnclosingRequestInterface` have been removed. The - separation between requests that contain a body and requests that do not - contain a body has been removed, and now `GuzzleHttp\Message\RequestInterface` - handles both use cases. -- Any method that previously accepts a `GuzzleHttp\Response` object now accept a - `GuzzleHttp\Message\ResponseInterface`. -- `GuzzleHttp\Message\RequestFactoryInterface` has been renamed to - `GuzzleHttp\Message\MessageFactoryInterface`. This interface is used to create - both requests and responses and is implemented in - `GuzzleHttp\Message\MessageFactory`. -- POST field and file methods have been removed from the request object. You - must now use the methods made available to `GuzzleHttp\Post\PostBodyInterface` - to control the format of a POST body. Requests that are created using a - standard `GuzzleHttp\Message\MessageFactoryInterface` will automatically use - a `GuzzleHttp\Post\PostBody` body if the body was passed as an array or if - the method is POST and no body is provided. - -```php -$request = $client->createRequest('POST', '/'); -$request->getBody()->setField('foo', 'bar'); -$request->getBody()->addFile(new PostFile('file_key', fopen('/path/to/content', 'r'))); -``` - -#### Headers - -- `GuzzleHttp\Message\Header` has been removed. Header values are now simply - represented by an array of values or as a string. Header values are returned - as a string by default when retrieving a header value from a message. You can - pass an optional argument of `true` to retrieve a header value as an array - of strings instead of a single concatenated string. -- `GuzzleHttp\PostFile` and `GuzzleHttp\PostFileInterface` have been moved to - `GuzzleHttp\Post`. This interface has been simplified and now allows the - addition of arbitrary headers. -- Custom headers like `GuzzleHttp\Message\Header\Link` have been removed. Most - of the custom headers are now handled separately in specific - subscribers/plugins, and `GuzzleHttp\Message\HeaderValues::parseParams()` has - been updated to properly handle headers that contain parameters (like the - `Link` header). - -#### Responses - -- `GuzzleHttp\Message\Response::getInfo()` and - `GuzzleHttp\Message\Response::setInfo()` have been removed. Use the event - system to retrieve this type of information. -- `GuzzleHttp\Message\Response::getRawHeaders()` has been removed. -- `GuzzleHttp\Message\Response::getMessage()` has been removed. -- `GuzzleHttp\Message\Response::calculateAge()` and other cache specific - methods have moved to the CacheSubscriber. -- Header specific helper functions like `getContentMd5()` have been removed. - Just use `getHeader('Content-MD5')` instead. -- `GuzzleHttp\Message\Response::setRequest()` and - `GuzzleHttp\Message\Response::getRequest()` have been removed. Use the event - system to work with request and response objects as a transaction. -- `GuzzleHttp\Message\Response::getRedirectCount()` has been removed. Use the - Redirect subscriber instead. -- `GuzzleHttp\Message\Response::isSuccessful()` and other related methods have - been removed. Use `getStatusCode()` instead. - -#### Streaming responses - -Streaming requests can now be created by a client directly, returning a -`GuzzleHttp\Message\ResponseInterface` object that contains a body stream -referencing an open PHP HTTP stream. - -```php -// 3.0 -use Guzzle\Stream\PhpStreamRequestFactory; -$request = $client->get('/'); -$factory = new PhpStreamRequestFactory(); -$stream = $factory->fromRequest($request); -$data = $stream->read(1024); - -// 4.0 -$response = $client->get('/', ['stream' => true]); -// Read some data off of the stream in the response body -$data = $response->getBody()->read(1024); -``` - -#### Redirects - -The `configureRedirects()` method has been removed in favor of a -`allow_redirects` request option. - -```php -// Standard redirects with a default of a max of 5 redirects -$request = $client->createRequest('GET', '/', ['allow_redirects' => true]); - -// Strict redirects with a custom number of redirects -$request = $client->createRequest('GET', '/', [ - 'allow_redirects' => ['max' => 5, 'strict' => true] -]); -``` - -#### EntityBody - -EntityBody interfaces and classes have been removed or moved to -`GuzzleHttp\Stream`. All classes and interfaces that once required -`GuzzleHttp\EntityBodyInterface` now require -`GuzzleHttp\Stream\StreamInterface`. Creating a new body for a request no -longer uses `GuzzleHttp\EntityBody::factory` but now uses -`GuzzleHttp\Stream\Stream::factory` or even better: -`GuzzleHttp\Stream\create()`. - -- `Guzzle\Http\EntityBodyInterface` is now `GuzzleHttp\Stream\StreamInterface` -- `Guzzle\Http\EntityBody` is now `GuzzleHttp\Stream\Stream` -- `Guzzle\Http\CachingEntityBody` is now `GuzzleHttp\Stream\CachingStream` -- `Guzzle\Http\ReadLimitEntityBody` is now `GuzzleHttp\Stream\LimitStream` -- `Guzzle\Http\IoEmittyinEntityBody` has been removed. - -#### Request lifecycle events - -Requests previously submitted a large number of requests. The number of events -emitted over the lifecycle of a request has been significantly reduced to make -it easier to understand how to extend the behavior of a request. All events -emitted during the lifecycle of a request now emit a custom -`GuzzleHttp\Event\EventInterface` object that contains context providing -methods and a way in which to modify the transaction at that specific point in -time (e.g., intercept the request and set a response on the transaction). - -- `request.before_send` has been renamed to `before` and now emits a - `GuzzleHttp\Event\BeforeEvent` -- `request.complete` has been renamed to `complete` and now emits a - `GuzzleHttp\Event\CompleteEvent`. -- `request.sent` has been removed. Use `complete`. -- `request.success` has been removed. Use `complete`. -- `error` is now an event that emits a `GuzzleHttp\Event\ErrorEvent`. -- `request.exception` has been removed. Use `error`. -- `request.receive.status_line` has been removed. -- `curl.callback.progress` has been removed. Use a custom `StreamInterface` to - maintain a status update. -- `curl.callback.write` has been removed. Use a custom `StreamInterface` to - intercept writes. -- `curl.callback.read` has been removed. Use a custom `StreamInterface` to - intercept reads. - -`headers` is a new event that is emitted after the response headers of a -request have been received before the body of the response is downloaded. This -event emits a `GuzzleHttp\Event\HeadersEvent`. - -You can intercept a request and inject a response using the `intercept()` event -of a `GuzzleHttp\Event\BeforeEvent`, `GuzzleHttp\Event\CompleteEvent`, and -`GuzzleHttp\Event\ErrorEvent` event. - -See: http://docs.guzzlephp.org/en/latest/events.html - -## Inflection - -The `Guzzle\Inflection` namespace has been removed. This is not a core concern -of Guzzle. - -## Iterator - -The `Guzzle\Iterator` namespace has been removed. - -- `Guzzle\Iterator\AppendIterator`, `Guzzle\Iterator\ChunkedIterator`, and - `Guzzle\Iterator\MethodProxyIterator` are nice, but not a core requirement of - Guzzle itself. -- `Guzzle\Iterator\FilterIterator` is no longer needed because an equivalent - class is shipped with PHP 5.4. -- `Guzzle\Iterator\MapIterator` is not really needed when using PHP 5.5 because - it's easier to just wrap an iterator in a generator that maps values. - -For a replacement of these iterators, see https://github.com/nikic/iter - -## Log - -The LogPlugin has moved to https://github.com/guzzle/log-subscriber. The -`Guzzle\Log` namespace has been removed. Guzzle now relies on -`Psr\Log\LoggerInterface` for all logging. The MessageFormatter class has been -moved to `GuzzleHttp\Subscriber\Log\Formatter`. - -## Parser - -The `Guzzle\Parser` namespace has been removed. This was previously used to -make it possible to plug in custom parsers for cookies, messages, URI -templates, and URLs; however, this level of complexity is not needed in Guzzle -so it has been removed. - -- Cookie: Cookie parsing logic has been moved to - `GuzzleHttp\Cookie\SetCookie::fromString`. -- Message: Message parsing logic for both requests and responses has been moved - to `GuzzleHttp\Message\MessageFactory::fromMessage`. Message parsing is only - used in debugging or deserializing messages, so it doesn't make sense for - Guzzle as a library to add this level of complexity to parsing messages. -- UriTemplate: URI template parsing has been moved to - `GuzzleHttp\UriTemplate`. The Guzzle library will automatically use the PECL - URI template library if it is installed. -- Url: URL parsing is now performed in `GuzzleHttp\Url::fromString` (previously - it was `Guzzle\Http\Url::factory()`). If custom URL parsing is necessary, - then developers are free to subclass `GuzzleHttp\Url`. - -## Plugin - -The `Guzzle\Plugin` namespace has been renamed to `GuzzleHttp\Subscriber`. -Several plugins are shipping with the core Guzzle library under this namespace. - -- `GuzzleHttp\Subscriber\Cookie`: Replaces the old CookiePlugin. Cookie jar - code has moved to `GuzzleHttp\Cookie`. -- `GuzzleHttp\Subscriber\History`: Replaces the old HistoryPlugin. -- `GuzzleHttp\Subscriber\HttpError`: Throws errors when a bad HTTP response is - received. -- `GuzzleHttp\Subscriber\Mock`: Replaces the old MockPlugin. -- `GuzzleHttp\Subscriber\Prepare`: Prepares the body of a request just before - sending. This subscriber is attached to all requests by default. -- `GuzzleHttp\Subscriber\Redirect`: Replaces the RedirectPlugin. - -The following plugins have been removed (third-parties are free to re-implement -these if needed): - -- `GuzzleHttp\Plugin\Async` has been removed. -- `GuzzleHttp\Plugin\CurlAuth` has been removed. -- `GuzzleHttp\Plugin\ErrorResponse\ErrorResponsePlugin` has been removed. This - functionality should instead be implemented with event listeners that occur - after normal response parsing occurs in the guzzle/command package. - -The following plugins are not part of the core Guzzle package, but are provided -in separate repositories: - -- `Guzzle\Http\Plugin\BackoffPlugin` has been rewritten to be much simpler - to build custom retry policies using simple functions rather than various - chained classes. See: https://github.com/guzzle/retry-subscriber -- `Guzzle\Http\Plugin\Cache\CachePlugin` has moved to - https://github.com/guzzle/cache-subscriber -- `Guzzle\Http\Plugin\Log\LogPlugin` has moved to - https://github.com/guzzle/log-subscriber -- `Guzzle\Http\Plugin\Md5\Md5Plugin` has moved to - https://github.com/guzzle/message-integrity-subscriber -- `Guzzle\Http\Plugin\Mock\MockPlugin` has moved to - `GuzzleHttp\Subscriber\MockSubscriber`. -- `Guzzle\Http\Plugin\Oauth\OauthPlugin` has moved to - https://github.com/guzzle/oauth-subscriber - -## Service - -The service description layer of Guzzle has moved into two separate packages: - -- http://github.com/guzzle/command Provides a high level abstraction over web - services by representing web service operations using commands. -- http://github.com/guzzle/guzzle-services Provides an implementation of - guzzle/command that provides request serialization and response parsing using - Guzzle service descriptions. - -## Stream - -Stream have moved to a separate package available at -https://github.com/guzzle/streams. - -`Guzzle\Stream\StreamInterface` has been given a large update to cleanly take -on the responsibilities of `Guzzle\Http\EntityBody` and -`Guzzle\Http\EntityBodyInterface` now that they have been removed. The number -of methods implemented by the `StreamInterface` has been drastically reduced to -allow developers to more easily extend and decorate stream behavior. - -## Removed methods from StreamInterface - -- `getStream` and `setStream` have been removed to better encapsulate streams. -- `getMetadata` and `setMetadata` have been removed in favor of - `GuzzleHttp\Stream\MetadataStreamInterface`. -- `getWrapper`, `getWrapperData`, `getStreamType`, and `getUri` have all been - removed. This data is accessible when - using streams that implement `GuzzleHttp\Stream\MetadataStreamInterface`. -- `rewind` has been removed. Use `seek(0)` for a similar behavior. - -## Renamed methods - -- `detachStream` has been renamed to `detach`. -- `feof` has been renamed to `eof`. -- `ftell` has been renamed to `tell`. -- `readLine` has moved from an instance method to a static class method of - `GuzzleHttp\Stream\Stream`. - -## Metadata streams - -`GuzzleHttp\Stream\MetadataStreamInterface` has been added to denote streams -that contain additional metadata accessible via `getMetadata()`. -`GuzzleHttp\Stream\StreamInterface::getMetadata` and -`GuzzleHttp\Stream\StreamInterface::setMetadata` have been removed. - -## StreamRequestFactory - -The entire concept of the StreamRequestFactory has been removed. The way this -was used in Guzzle 3 broke the actual interface of sending streaming requests -(instead of getting back a Response, you got a StreamInterface). Streaming -PHP requests are now implemented through the `GuzzleHttp\Adapter\StreamAdapter`. - -3.6 to 3.7 ----------- - -### Deprecations - -- You can now enable E_USER_DEPRECATED warnings to see if you are using any deprecated methods.: - -```php -\Guzzle\Common\Version::$emitWarnings = true; -``` - -The following APIs and options have been marked as deprecated: - -- Marked `Guzzle\Http\Message\Request::isResponseBodyRepeatable()` as deprecated. Use `$request->getResponseBody()->isRepeatable()` instead. -- Marked `Guzzle\Http\Message\Request::canCache()` as deprecated. Use `Guzzle\Plugin\Cache\DefaultCanCacheStrategy->canCacheRequest()` instead. -- Marked `Guzzle\Http\Message\Request::canCache()` as deprecated. Use `Guzzle\Plugin\Cache\DefaultCanCacheStrategy->canCacheRequest()` instead. -- Marked `Guzzle\Http\Message\Request::setIsRedirect()` as deprecated. Use the HistoryPlugin instead. -- Marked `Guzzle\Http\Message\Request::isRedirect()` as deprecated. Use the HistoryPlugin instead. -- Marked `Guzzle\Cache\CacheAdapterFactory::factory()` as deprecated -- Marked `Guzzle\Service\Client::enableMagicMethods()` as deprecated. Magic methods can no longer be disabled on a Guzzle\Service\Client. -- Marked `Guzzle\Parser\Url\UrlParser` as deprecated. Just use PHP's `parse_url()` and percent encode your UTF-8. -- Marked `Guzzle\Common\Collection::inject()` as deprecated. -- Marked `Guzzle\Plugin\CurlAuth\CurlAuthPlugin` as deprecated. Use - `$client->getConfig()->setPath('request.options/auth', array('user', 'pass', 'Basic|Digest|NTLM|Any'));` or - `$client->setDefaultOption('auth', array('user', 'pass', 'Basic|Digest|NTLM|Any'));` - -3.7 introduces `request.options` as a parameter for a client configuration and as an optional argument to all creational -request methods. When paired with a client's configuration settings, these options allow you to specify default settings -for various aspects of a request. Because these options make other previous configuration options redundant, several -configuration options and methods of a client and AbstractCommand have been deprecated. - -- Marked `Guzzle\Service\Client::getDefaultHeaders()` as deprecated. Use `$client->getDefaultOption('headers')`. -- Marked `Guzzle\Service\Client::setDefaultHeaders()` as deprecated. Use `$client->setDefaultOption('headers/{header_name}', 'value')`. -- Marked 'request.params' for `Guzzle\Http\Client` as deprecated. Use `$client->setDefaultOption('params/{param_name}', 'value')` -- Marked 'command.headers', 'command.response_body' and 'command.on_complete' as deprecated for AbstractCommand. These will work through Guzzle 4.0 - - $command = $client->getCommand('foo', array( - 'command.headers' => array('Test' => '123'), - 'command.response_body' => '/path/to/file' - )); - - // Should be changed to: - - $command = $client->getCommand('foo', array( - 'command.request_options' => array( - 'headers' => array('Test' => '123'), - 'save_as' => '/path/to/file' - ) - )); - -### Interface changes - -Additions and changes (you will need to update any implementations or subclasses you may have created): - -- Added an `$options` argument to the end of the following methods of `Guzzle\Http\ClientInterface`: - createRequest, head, delete, put, patch, post, options, prepareRequest -- Added an `$options` argument to the end of `Guzzle\Http\Message\Request\RequestFactoryInterface::createRequest()` -- Added an `applyOptions()` method to `Guzzle\Http\Message\Request\RequestFactoryInterface` -- Changed `Guzzle\Http\ClientInterface::get($uri = null, $headers = null, $body = null)` to - `Guzzle\Http\ClientInterface::get($uri = null, $headers = null, $options = array())`. You can still pass in a - resource, string, or EntityBody into the $options parameter to specify the download location of the response. -- Changed `Guzzle\Common\Collection::__construct($data)` to no longer accepts a null value for `$data` but a - default `array()` -- Added `Guzzle\Stream\StreamInterface::isRepeatable` -- Made `Guzzle\Http\Client::expandTemplate` and `getUriTemplate` protected methods. - -The following methods were removed from interfaces. All of these methods are still available in the concrete classes -that implement them, but you should update your code to use alternative methods: - -- Removed `Guzzle\Http\ClientInterface::setDefaultHeaders(). Use - `$client->getConfig()->setPath('request.options/headers/{header_name}', 'value')`. or - `$client->getConfig()->setPath('request.options/headers', array('header_name' => 'value'))` or - `$client->setDefaultOption('headers/{header_name}', 'value')`. or - `$client->setDefaultOption('headers', array('header_name' => 'value'))`. -- Removed `Guzzle\Http\ClientInterface::getDefaultHeaders(). Use `$client->getConfig()->getPath('request.options/headers')`. -- Removed `Guzzle\Http\ClientInterface::expandTemplate()`. This is an implementation detail. -- Removed `Guzzle\Http\ClientInterface::setRequestFactory()`. This is an implementation detail. -- Removed `Guzzle\Http\ClientInterface::getCurlMulti()`. This is a very specific implementation detail. -- Removed `Guzzle\Http\Message\RequestInterface::canCache`. Use the CachePlugin. -- Removed `Guzzle\Http\Message\RequestInterface::setIsRedirect`. Use the HistoryPlugin. -- Removed `Guzzle\Http\Message\RequestInterface::isRedirect`. Use the HistoryPlugin. - -### Cache plugin breaking changes - -- CacheKeyProviderInterface and DefaultCacheKeyProvider are no longer used. All of this logic is handled in a - CacheStorageInterface. These two objects and interface will be removed in a future version. -- Always setting X-cache headers on cached responses -- Default cache TTLs are now handled by the CacheStorageInterface of a CachePlugin -- `CacheStorageInterface::cache($key, Response $response, $ttl = null)` has changed to `cache(RequestInterface - $request, Response $response);` -- `CacheStorageInterface::fetch($key)` has changed to `fetch(RequestInterface $request);` -- `CacheStorageInterface::delete($key)` has changed to `delete(RequestInterface $request);` -- Added `CacheStorageInterface::purge($url)` -- `DefaultRevalidation::__construct(CacheKeyProviderInterface $cacheKey, CacheStorageInterface $cache, CachePlugin - $plugin)` has changed to `DefaultRevalidation::__construct(CacheStorageInterface $cache, - CanCacheStrategyInterface $canCache = null)` -- Added `RevalidationInterface::shouldRevalidate(RequestInterface $request, Response $response)` - -3.5 to 3.6 ----------- - -* Mixed casing of headers are now forced to be a single consistent casing across all values for that header. -* Messages internally use a HeaderCollection object to delegate handling case-insensitive header resolution -* Removed the whole changedHeader() function system of messages because all header changes now go through addHeader(). - For example, setHeader() first removes the header using unset on a HeaderCollection and then calls addHeader(). - Keeping the Host header and URL host in sync is now handled by overriding the addHeader method in Request. -* Specific header implementations can be created for complex headers. When a message creates a header, it uses a - HeaderFactory which can map specific headers to specific header classes. There is now a Link header and - CacheControl header implementation. -* Moved getLinks() from Response to just be used on a Link header object. - -If you previously relied on Guzzle\Http\Message\Header::raw(), then you will need to update your code to use the -HeaderInterface (e.g. toArray(), getAll(), etc.). - -### Interface changes - -* Removed from interface: Guzzle\Http\ClientInterface::setUriTemplate -* Removed from interface: Guzzle\Http\ClientInterface::setCurlMulti() -* Removed Guzzle\Http\Message\Request::receivedRequestHeader() and implemented this functionality in - Guzzle\Http\Curl\RequestMediator -* Removed the optional $asString parameter from MessageInterface::getHeader(). Just cast the header to a string. -* Removed the optional $tryChunkedTransfer option from Guzzle\Http\Message\EntityEnclosingRequestInterface -* Removed the $asObjects argument from Guzzle\Http\Message\MessageInterface::getHeaders() - -### Removed deprecated functions - -* Removed Guzzle\Parser\ParserRegister::get(). Use getParser() -* Removed Guzzle\Parser\ParserRegister::set(). Use registerParser(). - -### Deprecations - -* The ability to case-insensitively search for header values -* Guzzle\Http\Message\Header::hasExactHeader -* Guzzle\Http\Message\Header::raw. Use getAll() -* Deprecated cache control specific methods on Guzzle\Http\Message\AbstractMessage. Use the CacheControl header object - instead. - -### Other changes - -* All response header helper functions return a string rather than mixing Header objects and strings inconsistently -* Removed cURL blacklist support. This is no longer necessary now that Expect, Accept, etc. are managed by Guzzle - directly via interfaces -* Removed the injecting of a request object onto a response object. The methods to get and set a request still exist - but are a no-op until removed. -* Most classes that used to require a `Guzzle\Service\Command\CommandInterface` typehint now request a - `Guzzle\Service\Command\ArrayCommandInterface`. -* Added `Guzzle\Http\Message\RequestInterface::startResponse()` to the RequestInterface to handle injecting a response - on a request while the request is still being transferred -* `Guzzle\Service\Command\CommandInterface` now extends from ToArrayInterface and ArrayAccess - -3.3 to 3.4 ----------- - -Base URLs of a client now follow the rules of http://tools.ietf.org/html/rfc3986#section-5.2.2 when merging URLs. - -3.2 to 3.3 ----------- - -### Response::getEtag() quote stripping removed - -`Guzzle\Http\Message\Response::getEtag()` no longer strips quotes around the ETag response header - -### Removed `Guzzle\Http\Utils` - -The `Guzzle\Http\Utils` class was removed. This class was only used for testing. - -### Stream wrapper and type - -`Guzzle\Stream\Stream::getWrapper()` and `Guzzle\Stream\Stream::getStreamType()` are no longer converted to lowercase. - -### curl.emit_io became emit_io - -Emitting IO events from a RequestMediator is now a parameter that must be set in a request's curl options using the -'emit_io' key. This was previously set under a request's parameters using 'curl.emit_io' - -3.1 to 3.2 ----------- - -### CurlMulti is no longer reused globally - -Before 3.2, the same CurlMulti object was reused globally for each client. This can cause issue where plugins added -to a single client can pollute requests dispatched from other clients. - -If you still wish to reuse the same CurlMulti object with each client, then you can add a listener to the -ServiceBuilder's `service_builder.create_client` event to inject a custom CurlMulti object into each client as it is -created. - -```php -$multi = new Guzzle\Http\Curl\CurlMulti(); -$builder = Guzzle\Service\Builder\ServiceBuilder::factory('/path/to/config.json'); -$builder->addListener('service_builder.create_client', function ($event) use ($multi) { - $event['client']->setCurlMulti($multi); -} -}); -``` - -### No default path - -URLs no longer have a default path value of '/' if no path was specified. - -Before: - -```php -$request = $client->get('http://www.foo.com'); -echo $request->getUrl(); -// >> http://www.foo.com/ -``` - -After: - -```php -$request = $client->get('http://www.foo.com'); -echo $request->getUrl(); -// >> http://www.foo.com -``` - -### Less verbose BadResponseException - -The exception message for `Guzzle\Http\Exception\BadResponseException` no longer contains the full HTTP request and -response information. You can, however, get access to the request and response object by calling `getRequest()` or -`getResponse()` on the exception object. - -### Query parameter aggregation - -Multi-valued query parameters are no longer aggregated using a callback function. `Guzzle\Http\Query` now has a -setAggregator() method that accepts a `Guzzle\Http\QueryAggregator\QueryAggregatorInterface` object. This object is -responsible for handling the aggregation of multi-valued query string variables into a flattened hash. - -2.8 to 3.x ----------- - -### Guzzle\Service\Inspector - -Change `\Guzzle\Service\Inspector::fromConfig` to `\Guzzle\Common\Collection::fromConfig` - -**Before** - -```php -use Guzzle\Service\Inspector; - -class YourClient extends \Guzzle\Service\Client -{ - public static function factory($config = array()) - { - $default = array(); - $required = array('base_url', 'username', 'api_key'); - $config = Inspector::fromConfig($config, $default, $required); - - $client = new self( - $config->get('base_url'), - $config->get('username'), - $config->get('api_key') - ); - $client->setConfig($config); - - $client->setDescription(ServiceDescription::factory(__DIR__ . DIRECTORY_SEPARATOR . 'client.json')); - - return $client; - } -``` - -**After** - -```php -use Guzzle\Common\Collection; - -class YourClient extends \Guzzle\Service\Client -{ - public static function factory($config = array()) - { - $default = array(); - $required = array('base_url', 'username', 'api_key'); - $config = Collection::fromConfig($config, $default, $required); - - $client = new self( - $config->get('base_url'), - $config->get('username'), - $config->get('api_key') - ); - $client->setConfig($config); - - $client->setDescription(ServiceDescription::factory(__DIR__ . DIRECTORY_SEPARATOR . 'client.json')); - - return $client; - } -``` - -### Convert XML Service Descriptions to JSON - -**Before** - -```xml - - - - - - Get a list of groups - - - Uses a search query to get a list of groups - - - - Create a group - - - - - Delete a group by ID - - - - - - - Update a group - - - - - - -``` - -**After** - -```json -{ - "name": "Zendesk REST API v2", - "apiVersion": "2012-12-31", - "description":"Provides access to Zendesk views, groups, tickets, ticket fields, and users", - "operations": { - "list_groups": { - "httpMethod":"GET", - "uri": "groups.json", - "summary": "Get a list of groups" - }, - "search_groups":{ - "httpMethod":"GET", - "uri": "search.json?query=\"{query} type:group\"", - "summary": "Uses a search query to get a list of groups", - "parameters":{ - "query":{ - "location": "uri", - "description":"Zendesk Search Query", - "type": "string", - "required": true - } - } - }, - "create_group": { - "httpMethod":"POST", - "uri": "groups.json", - "summary": "Create a group", - "parameters":{ - "data": { - "type": "array", - "location": "body", - "description":"Group JSON", - "filters": "json_encode", - "required": true - }, - "Content-Type":{ - "type": "string", - "location":"header", - "static": "application/json" - } - } - }, - "delete_group": { - "httpMethod":"DELETE", - "uri": "groups/{id}.json", - "summary": "Delete a group", - "parameters":{ - "id":{ - "location": "uri", - "description":"Group to delete by ID", - "type": "integer", - "required": true - } - } - }, - "get_group": { - "httpMethod":"GET", - "uri": "groups/{id}.json", - "summary": "Get a ticket", - "parameters":{ - "id":{ - "location": "uri", - "description":"Group to get by ID", - "type": "integer", - "required": true - } - } - }, - "update_group": { - "httpMethod":"PUT", - "uri": "groups/{id}.json", - "summary": "Update a group", - "parameters":{ - "id": { - "location": "uri", - "description":"Group to update by ID", - "type": "integer", - "required": true - }, - "data": { - "type": "array", - "location": "body", - "description":"Group JSON", - "filters": "json_encode", - "required": true - }, - "Content-Type":{ - "type": "string", - "location":"header", - "static": "application/json" - } - } - } -} -``` - -### Guzzle\Service\Description\ServiceDescription - -Commands are now called Operations - -**Before** - -```php -use Guzzle\Service\Description\ServiceDescription; - -$sd = new ServiceDescription(); -$sd->getCommands(); // @returns ApiCommandInterface[] -$sd->hasCommand($name); -$sd->getCommand($name); // @returns ApiCommandInterface|null -$sd->addCommand($command); // @param ApiCommandInterface $command -``` - -**After** - -```php -use Guzzle\Service\Description\ServiceDescription; - -$sd = new ServiceDescription(); -$sd->getOperations(); // @returns OperationInterface[] -$sd->hasOperation($name); -$sd->getOperation($name); // @returns OperationInterface|null -$sd->addOperation($operation); // @param OperationInterface $operation -``` - -### Guzzle\Common\Inflection\Inflector - -Namespace is now `Guzzle\Inflection\Inflector` - -### Guzzle\Http\Plugin - -Namespace is now `Guzzle\Plugin`. Many other changes occur within this namespace and are detailed in their own sections below. - -### Guzzle\Http\Plugin\LogPlugin and Guzzle\Common\Log - -Now `Guzzle\Plugin\Log\LogPlugin` and `Guzzle\Log` respectively. - -**Before** - -```php -use Guzzle\Common\Log\ClosureLogAdapter; -use Guzzle\Http\Plugin\LogPlugin; - -/** @var \Guzzle\Http\Client */ -$client; - -// $verbosity is an integer indicating desired message verbosity level -$client->addSubscriber(new LogPlugin(new ClosureLogAdapter(function($m) { echo $m; }, $verbosity = LogPlugin::LOG_VERBOSE); -``` - -**After** - -```php -use Guzzle\Log\ClosureLogAdapter; -use Guzzle\Log\MessageFormatter; -use Guzzle\Plugin\Log\LogPlugin; - -/** @var \Guzzle\Http\Client */ -$client; - -// $format is a string indicating desired message format -- @see MessageFormatter -$client->addSubscriber(new LogPlugin(new ClosureLogAdapter(function($m) { echo $m; }, $format = MessageFormatter::DEBUG_FORMAT); -``` - -### Guzzle\Http\Plugin\CurlAuthPlugin - -Now `Guzzle\Plugin\CurlAuth\CurlAuthPlugin`. - -### Guzzle\Http\Plugin\ExponentialBackoffPlugin - -Now `Guzzle\Plugin\Backoff\BackoffPlugin`, and other changes. - -**Before** - -```php -use Guzzle\Http\Plugin\ExponentialBackoffPlugin; - -$backoffPlugin = new ExponentialBackoffPlugin($maxRetries, array_merge( - ExponentialBackoffPlugin::getDefaultFailureCodes(), array(429) - )); - -$client->addSubscriber($backoffPlugin); -``` - -**After** - -```php -use Guzzle\Plugin\Backoff\BackoffPlugin; -use Guzzle\Plugin\Backoff\HttpBackoffStrategy; - -// Use convenient factory method instead -- see implementation for ideas of what -// you can do with chaining backoff strategies -$backoffPlugin = BackoffPlugin::getExponentialBackoff($maxRetries, array_merge( - HttpBackoffStrategy::getDefaultFailureCodes(), array(429) - )); -$client->addSubscriber($backoffPlugin); -``` - -### Known Issues - -#### [BUG] Accept-Encoding header behavior changed unintentionally. - -(See #217) (Fixed in 09daeb8c666fb44499a0646d655a8ae36456575e) - -In version 2.8 setting the `Accept-Encoding` header would set the CURLOPT_ENCODING option, which permitted cURL to -properly handle gzip/deflate compressed responses from the server. In versions affected by this bug this does not happen. -See issue #217 for a workaround, or use a version containing the fix. diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/composer.json b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/composer.json deleted file mode 100644 index bbf0ff20..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/composer.json +++ /dev/null @@ -1,59 +0,0 @@ -{ - "name": "guzzlehttp/guzzle", - "type": "library", - "description": "Guzzle is a PHP HTTP client library", - "keywords": [ - "framework", - "http", - "rest", - "web service", - "curl", - "client", - "HTTP client" - ], - "homepage": "http://guzzlephp.org/", - "license": "MIT", - "authors": [ - { - "name": "Michael Dowling", - "email": "mtdowling@gmail.com", - "homepage": "https://github.com/mtdowling" - } - ], - "require": { - "php": ">=5.5", - "ext-json": "*", - "guzzlehttp/promises": "^1.0", - "guzzlehttp/psr7": "^1.6.1" - }, - "require-dev": { - "ext-curl": "*", - "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0", - "psr/log": "^1.1" - }, - "suggest": { - "psr/log": "Required for using the Log middleware", - "ext-intl": "Required for Internationalized Domain Name (IDN) support" - }, - "config": { - "sort-packages": true - }, - "extra": { - "branch-alias": { - "dev-master": "6.5-dev" - } - }, - "autoload": { - "psr-4": { - "GuzzleHttp\\": "src/" - }, - "files": [ - "src/functions_include.php" - ] - }, - "autoload-dev": { - "psr-4": { - "GuzzleHttp\\Tests\\": "tests/" - } - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/Client.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/Client.php deleted file mode 100644 index f2bf2044..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/Client.php +++ /dev/null @@ -1,511 +0,0 @@ - 'http://www.foo.com/1.0/', - * 'timeout' => 0, - * 'allow_redirects' => false, - * 'proxy' => '192.168.16.1:10' - * ]); - * - * Client configuration settings include the following options: - * - * - handler: (callable) Function that transfers HTTP requests over the - * wire. The function is called with a Psr7\Http\Message\RequestInterface - * and array of transfer options, and must return a - * GuzzleHttp\Promise\PromiseInterface that is fulfilled with a - * Psr7\Http\Message\ResponseInterface on success. "handler" is a - * constructor only option that cannot be overridden in per/request - * options. If no handler is provided, a default handler will be created - * that enables all of the request options below by attaching all of the - * default middleware to the handler. - * - base_uri: (string|UriInterface) Base URI of the client that is merged - * into relative URIs. Can be a string or instance of UriInterface. - * - **: any request option - * - * @param array $config Client configuration settings. - * - * @see \GuzzleHttp\RequestOptions for a list of available request options. - */ - public function __construct(array $config = []) - { - if (!isset($config['handler'])) { - $config['handler'] = HandlerStack::create(); - } elseif (!is_callable($config['handler'])) { - throw new \InvalidArgumentException('handler must be a callable'); - } - - // Convert the base_uri to a UriInterface - if (isset($config['base_uri'])) { - $config['base_uri'] = Psr7\uri_for($config['base_uri']); - } - - $this->configureDefaults($config); - } - - /** - * @param string $method - * @param array $args - * - * @return Promise\PromiseInterface - */ - public function __call($method, $args) - { - if (count($args) < 1) { - throw new \InvalidArgumentException('Magic request methods require a URI and optional options array'); - } - - $uri = $args[0]; - $opts = isset($args[1]) ? $args[1] : []; - - return substr($method, -5) === 'Async' - ? $this->requestAsync(substr($method, 0, -5), $uri, $opts) - : $this->request($method, $uri, $opts); - } - - /** - * Asynchronously send an HTTP request. - * - * @param array $options Request options to apply to the given - * request and to the transfer. See \GuzzleHttp\RequestOptions. - * - * @return Promise\PromiseInterface - */ - public function sendAsync(RequestInterface $request, array $options = []) - { - // Merge the base URI into the request URI if needed. - $options = $this->prepareDefaults($options); - - return $this->transfer( - $request->withUri($this->buildUri($request->getUri(), $options), $request->hasHeader('Host')), - $options - ); - } - - /** - * Send an HTTP request. - * - * @param array $options Request options to apply to the given - * request and to the transfer. See \GuzzleHttp\RequestOptions. - * - * @return ResponseInterface - * @throws GuzzleException - */ - public function send(RequestInterface $request, array $options = []) - { - $options[RequestOptions::SYNCHRONOUS] = true; - return $this->sendAsync($request, $options)->wait(); - } - - /** - * Create and send an asynchronous HTTP request. - * - * Use an absolute path to override the base path of the client, or a - * relative path to append to the base path of the client. The URL can - * contain the query string as well. Use an array to provide a URL - * template and additional variables to use in the URL template expansion. - * - * @param string $method HTTP method - * @param string|UriInterface $uri URI object or string. - * @param array $options Request options to apply. See \GuzzleHttp\RequestOptions. - * - * @return Promise\PromiseInterface - */ - public function requestAsync($method, $uri = '', array $options = []) - { - $options = $this->prepareDefaults($options); - // Remove request modifying parameter because it can be done up-front. - $headers = isset($options['headers']) ? $options['headers'] : []; - $body = isset($options['body']) ? $options['body'] : null; - $version = isset($options['version']) ? $options['version'] : '1.1'; - // Merge the URI into the base URI. - $uri = $this->buildUri($uri, $options); - if (is_array($body)) { - $this->invalidBody(); - } - $request = new Psr7\Request($method, $uri, $headers, $body, $version); - // Remove the option so that they are not doubly-applied. - unset($options['headers'], $options['body'], $options['version']); - - return $this->transfer($request, $options); - } - - /** - * Create and send an HTTP request. - * - * Use an absolute path to override the base path of the client, or a - * relative path to append to the base path of the client. The URL can - * contain the query string as well. - * - * @param string $method HTTP method. - * @param string|UriInterface $uri URI object or string. - * @param array $options Request options to apply. See \GuzzleHttp\RequestOptions. - * - * @return ResponseInterface - * @throws GuzzleException - */ - public function request($method, $uri = '', array $options = []) - { - $options[RequestOptions::SYNCHRONOUS] = true; - return $this->requestAsync($method, $uri, $options)->wait(); - } - - /** - * Get a client configuration option. - * - * These options include default request options of the client, a "handler" - * (if utilized by the concrete client), and a "base_uri" if utilized by - * the concrete client. - * - * @param string|null $option The config option to retrieve. - * - * @return mixed - */ - public function getConfig($option = null) - { - return $option === null - ? $this->config - : (isset($this->config[$option]) ? $this->config[$option] : null); - } - - /** - * @param string|null $uri - * - * @return UriInterface - */ - private function buildUri($uri, array $config) - { - // for BC we accept null which would otherwise fail in uri_for - $uri = Psr7\uri_for($uri === null ? '' : $uri); - - if (isset($config['base_uri'])) { - $uri = Psr7\UriResolver::resolve(Psr7\uri_for($config['base_uri']), $uri); - } - - if (isset($config['idn_conversion']) && ($config['idn_conversion'] !== false)) { - $idnOptions = ($config['idn_conversion'] === true) ? IDNA_DEFAULT : $config['idn_conversion']; - $uri = _idn_uri_convert($uri, $idnOptions); - } - - return $uri->getScheme() === '' && $uri->getHost() !== '' ? $uri->withScheme('http') : $uri; - } - - /** - * Configures the default options for a client. - * - * @param array $config - * @return void - */ - private function configureDefaults(array $config) - { - $defaults = [ - 'allow_redirects' => RedirectMiddleware::$defaultSettings, - 'http_errors' => true, - 'decode_content' => true, - 'verify' => true, - 'cookies' => false - ]; - - // idn_to_ascii() is a part of ext-intl and might be not available - $defaults['idn_conversion'] = function_exists('idn_to_ascii') - // Old ICU versions don't have this constant, so we are basically stuck (see https://github.com/guzzle/guzzle/pull/2424 - // and https://github.com/guzzle/guzzle/issues/2448 for details) - && ( - defined('INTL_IDNA_VARIANT_UTS46') - || - PHP_VERSION_ID < 70200 - ); - - // Use the standard Linux HTTP_PROXY and HTTPS_PROXY if set. - - // We can only trust the HTTP_PROXY environment variable in a CLI - // process due to the fact that PHP has no reliable mechanism to - // get environment variables that start with "HTTP_". - if (php_sapi_name() === 'cli' && getenv('HTTP_PROXY')) { - $defaults['proxy']['http'] = getenv('HTTP_PROXY'); - } - - if ($proxy = getenv('HTTPS_PROXY')) { - $defaults['proxy']['https'] = $proxy; - } - - if ($noProxy = getenv('NO_PROXY')) { - $cleanedNoProxy = str_replace(' ', '', $noProxy); - $defaults['proxy']['no'] = explode(',', $cleanedNoProxy); - } - - $this->config = $config + $defaults; - - if (!empty($config['cookies']) && $config['cookies'] === true) { - $this->config['cookies'] = new CookieJar(); - } - - // Add the default user-agent header. - if (!isset($this->config['headers'])) { - $this->config['headers'] = ['User-Agent' => default_user_agent()]; - } else { - // Add the User-Agent header if one was not already set. - foreach (array_keys($this->config['headers']) as $name) { - if (strtolower($name) === 'user-agent') { - return; - } - } - $this->config['headers']['User-Agent'] = default_user_agent(); - } - } - - /** - * Merges default options into the array. - * - * @param array $options Options to modify by reference - * - * @return array - */ - private function prepareDefaults(array $options) - { - $defaults = $this->config; - - if (!empty($defaults['headers'])) { - // Default headers are only added if they are not present. - $defaults['_conditional'] = $defaults['headers']; - unset($defaults['headers']); - } - - // Special handling for headers is required as they are added as - // conditional headers and as headers passed to a request ctor. - if (array_key_exists('headers', $options)) { - // Allows default headers to be unset. - if ($options['headers'] === null) { - $defaults['_conditional'] = []; - unset($options['headers']); - } elseif (!is_array($options['headers'])) { - throw new \InvalidArgumentException('headers must be an array'); - } - } - - // Shallow merge defaults underneath options. - $result = $options + $defaults; - - // Remove null values. - foreach ($result as $k => $v) { - if ($v === null) { - unset($result[$k]); - } - } - - return $result; - } - - /** - * Transfers the given request and applies request options. - * - * The URI of the request is not modified and the request options are used - * as-is without merging in default options. - * - * @param array $options See \GuzzleHttp\RequestOptions. - * - * @return Promise\PromiseInterface - */ - private function transfer(RequestInterface $request, array $options) - { - // save_to -> sink - if (isset($options['save_to'])) { - $options['sink'] = $options['save_to']; - unset($options['save_to']); - } - - // exceptions -> http_errors - if (isset($options['exceptions'])) { - $options['http_errors'] = $options['exceptions']; - unset($options['exceptions']); - } - - $request = $this->applyOptions($request, $options); - /** @var HandlerStack $handler */ - $handler = $options['handler']; - - try { - return Promise\promise_for($handler($request, $options)); - } catch (\Exception $e) { - return Promise\rejection_for($e); - } - } - - /** - * Applies the array of request options to a request. - * - * @param RequestInterface $request - * @param array $options - * - * @return RequestInterface - */ - private function applyOptions(RequestInterface $request, array &$options) - { - $modify = [ - 'set_headers' => [], - ]; - - if (isset($options['headers'])) { - $modify['set_headers'] = $options['headers']; - unset($options['headers']); - } - - if (isset($options['form_params'])) { - if (isset($options['multipart'])) { - throw new \InvalidArgumentException('You cannot use ' - . 'form_params and multipart at the same time. Use the ' - . 'form_params option if you want to send application/' - . 'x-www-form-urlencoded requests, and the multipart ' - . 'option to send multipart/form-data requests.'); - } - $options['body'] = http_build_query($options['form_params'], '', '&'); - unset($options['form_params']); - // Ensure that we don't have the header in different case and set the new value. - $options['_conditional'] = Psr7\_caseless_remove(['Content-Type'], $options['_conditional']); - $options['_conditional']['Content-Type'] = 'application/x-www-form-urlencoded'; - } - - if (isset($options['multipart'])) { - $options['body'] = new Psr7\MultipartStream($options['multipart']); - unset($options['multipart']); - } - - if (isset($options['json'])) { - $options['body'] = \GuzzleHttp\json_encode($options['json']); - unset($options['json']); - // Ensure that we don't have the header in different case and set the new value. - $options['_conditional'] = Psr7\_caseless_remove(['Content-Type'], $options['_conditional']); - $options['_conditional']['Content-Type'] = 'application/json'; - } - - if (!empty($options['decode_content']) - && $options['decode_content'] !== true - ) { - // Ensure that we don't have the header in different case and set the new value. - $options['_conditional'] = Psr7\_caseless_remove(['Accept-Encoding'], $options['_conditional']); - $modify['set_headers']['Accept-Encoding'] = $options['decode_content']; - } - - if (isset($options['body'])) { - if (is_array($options['body'])) { - $this->invalidBody(); - } - $modify['body'] = Psr7\stream_for($options['body']); - unset($options['body']); - } - - if (!empty($options['auth']) && is_array($options['auth'])) { - $value = $options['auth']; - $type = isset($value[2]) ? strtolower($value[2]) : 'basic'; - switch ($type) { - case 'basic': - // Ensure that we don't have the header in different case and set the new value. - $modify['set_headers'] = Psr7\_caseless_remove(['Authorization'], $modify['set_headers']); - $modify['set_headers']['Authorization'] = 'Basic ' - . base64_encode("$value[0]:$value[1]"); - break; - case 'digest': - // @todo: Do not rely on curl - $options['curl'][CURLOPT_HTTPAUTH] = CURLAUTH_DIGEST; - $options['curl'][CURLOPT_USERPWD] = "$value[0]:$value[1]"; - break; - case 'ntlm': - $options['curl'][CURLOPT_HTTPAUTH] = CURLAUTH_NTLM; - $options['curl'][CURLOPT_USERPWD] = "$value[0]:$value[1]"; - break; - } - } - - if (isset($options['query'])) { - $value = $options['query']; - if (is_array($value)) { - $value = http_build_query($value, null, '&', PHP_QUERY_RFC3986); - } - if (!is_string($value)) { - throw new \InvalidArgumentException('query must be a string or array'); - } - $modify['query'] = $value; - unset($options['query']); - } - - // Ensure that sink is not an invalid value. - if (isset($options['sink'])) { - // TODO: Add more sink validation? - if (is_bool($options['sink'])) { - throw new \InvalidArgumentException('sink must not be a boolean'); - } - } - - $request = Psr7\modify_request($request, $modify); - if ($request->getBody() instanceof Psr7\MultipartStream) { - // Use a multipart/form-data POST if a Content-Type is not set. - // Ensure that we don't have the header in different case and set the new value. - $options['_conditional'] = Psr7\_caseless_remove(['Content-Type'], $options['_conditional']); - $options['_conditional']['Content-Type'] = 'multipart/form-data; boundary=' - . $request->getBody()->getBoundary(); - } - - // Merge in conditional headers if they are not present. - if (isset($options['_conditional'])) { - // Build up the changes so it's in a single clone of the message. - $modify = []; - foreach ($options['_conditional'] as $k => $v) { - if (!$request->hasHeader($k)) { - $modify['set_headers'][$k] = $v; - } - } - $request = Psr7\modify_request($request, $modify); - // Don't pass this internal value along to middleware/handlers. - unset($options['_conditional']); - } - - return $request; - } - - /** - * Throw Exception with pre-set message. - * @return void - * @throws InvalidArgumentException Invalid body. - */ - private function invalidBody() - { - throw new \InvalidArgumentException('Passing in the "body" request ' - . 'option as an array to send a POST request has been deprecated. ' - . 'Please use the "form_params" request option to send a ' - . 'application/x-www-form-urlencoded request, or the "multipart" ' - . 'request option to send a multipart/form-data request.'); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/ClientInterface.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/ClientInterface.php deleted file mode 100644 index 0c8d42a1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/ClientInterface.php +++ /dev/null @@ -1,87 +0,0 @@ -strictMode = $strictMode; - - foreach ($cookieArray as $cookie) { - if (!($cookie instanceof SetCookie)) { - $cookie = new SetCookie($cookie); - } - $this->setCookie($cookie); - } - } - - /** - * Create a new Cookie jar from an associative array and domain. - * - * @param array $cookies Cookies to create the jar from - * @param string $domain Domain to set the cookies to - * - * @return self - */ - public static function fromArray(array $cookies, $domain) - { - $cookieJar = new self(); - foreach ($cookies as $name => $value) { - $cookieJar->setCookie(new SetCookie([ - 'Domain' => $domain, - 'Name' => $name, - 'Value' => $value, - 'Discard' => true - ])); - } - - return $cookieJar; - } - - /** - * @deprecated - */ - public static function getCookieValue($value) - { - return $value; - } - - /** - * Evaluate if this cookie should be persisted to storage - * that survives between requests. - * - * @param SetCookie $cookie Being evaluated. - * @param bool $allowSessionCookies If we should persist session cookies - * @return bool - */ - public static function shouldPersist( - SetCookie $cookie, - $allowSessionCookies = false - ) { - if ($cookie->getExpires() || $allowSessionCookies) { - if (!$cookie->getDiscard()) { - return true; - } - } - - return false; - } - - /** - * Finds and returns the cookie based on the name - * - * @param string $name cookie name to search for - * @return SetCookie|null cookie that was found or null if not found - */ - public function getCookieByName($name) - { - // don't allow a non string name - if ($name === null || !is_scalar($name)) { - return null; - } - foreach ($this->cookies as $cookie) { - if ($cookie->getName() !== null && strcasecmp($cookie->getName(), $name) === 0) { - return $cookie; - } - } - - return null; - } - - public function toArray() - { - return array_map(function (SetCookie $cookie) { - return $cookie->toArray(); - }, $this->getIterator()->getArrayCopy()); - } - - public function clear($domain = null, $path = null, $name = null) - { - if (!$domain) { - $this->cookies = []; - return; - } elseif (!$path) { - $this->cookies = array_filter( - $this->cookies, - function (SetCookie $cookie) use ($domain) { - return !$cookie->matchesDomain($domain); - } - ); - } elseif (!$name) { - $this->cookies = array_filter( - $this->cookies, - function (SetCookie $cookie) use ($path, $domain) { - return !($cookie->matchesPath($path) && - $cookie->matchesDomain($domain)); - } - ); - } else { - $this->cookies = array_filter( - $this->cookies, - function (SetCookie $cookie) use ($path, $domain, $name) { - return !($cookie->getName() == $name && - $cookie->matchesPath($path) && - $cookie->matchesDomain($domain)); - } - ); - } - } - - public function clearSessionCookies() - { - $this->cookies = array_filter( - $this->cookies, - function (SetCookie $cookie) { - return !$cookie->getDiscard() && $cookie->getExpires(); - } - ); - } - - public function setCookie(SetCookie $cookie) - { - // If the name string is empty (but not 0), ignore the set-cookie - // string entirely. - $name = $cookie->getName(); - if (!$name && $name !== '0') { - return false; - } - - // Only allow cookies with set and valid domain, name, value - $result = $cookie->validate(); - if ($result !== true) { - if ($this->strictMode) { - throw new \RuntimeException('Invalid cookie: ' . $result); - } else { - $this->removeCookieIfEmpty($cookie); - return false; - } - } - - // Resolve conflicts with previously set cookies - foreach ($this->cookies as $i => $c) { - - // Two cookies are identical, when their path, and domain are - // identical. - if ($c->getPath() != $cookie->getPath() || - $c->getDomain() != $cookie->getDomain() || - $c->getName() != $cookie->getName() - ) { - continue; - } - - // The previously set cookie is a discard cookie and this one is - // not so allow the new cookie to be set - if (!$cookie->getDiscard() && $c->getDiscard()) { - unset($this->cookies[$i]); - continue; - } - - // If the new cookie's expiration is further into the future, then - // replace the old cookie - if ($cookie->getExpires() > $c->getExpires()) { - unset($this->cookies[$i]); - continue; - } - - // If the value has changed, we better change it - if ($cookie->getValue() !== $c->getValue()) { - unset($this->cookies[$i]); - continue; - } - - // The cookie exists, so no need to continue - return false; - } - - $this->cookies[] = $cookie; - - return true; - } - - public function count() - { - return count($this->cookies); - } - - public function getIterator() - { - return new \ArrayIterator(array_values($this->cookies)); - } - - public function extractCookies( - RequestInterface $request, - ResponseInterface $response - ) { - if ($cookieHeader = $response->getHeader('Set-Cookie')) { - foreach ($cookieHeader as $cookie) { - $sc = SetCookie::fromString($cookie); - if (!$sc->getDomain()) { - $sc->setDomain($request->getUri()->getHost()); - } - if (0 !== strpos($sc->getPath(), '/')) { - $sc->setPath($this->getCookiePathFromRequest($request)); - } - $this->setCookie($sc); - } - } - } - - /** - * Computes cookie path following RFC 6265 section 5.1.4 - * - * @link https://tools.ietf.org/html/rfc6265#section-5.1.4 - * - * @param RequestInterface $request - * @return string - */ - private function getCookiePathFromRequest(RequestInterface $request) - { - $uriPath = $request->getUri()->getPath(); - if ('' === $uriPath) { - return '/'; - } - if (0 !== strpos($uriPath, '/')) { - return '/'; - } - if ('/' === $uriPath) { - return '/'; - } - if (0 === $lastSlashPos = strrpos($uriPath, '/')) { - return '/'; - } - - return substr($uriPath, 0, $lastSlashPos); - } - - public function withCookieHeader(RequestInterface $request) - { - $values = []; - $uri = $request->getUri(); - $scheme = $uri->getScheme(); - $host = $uri->getHost(); - $path = $uri->getPath() ?: '/'; - - foreach ($this->cookies as $cookie) { - if ($cookie->matchesPath($path) && - $cookie->matchesDomain($host) && - !$cookie->isExpired() && - (!$cookie->getSecure() || $scheme === 'https') - ) { - $values[] = $cookie->getName() . '=' - . $cookie->getValue(); - } - } - - return $values - ? $request->withHeader('Cookie', implode('; ', $values)) - : $request; - } - - /** - * If a cookie already exists and the server asks to set it again with a - * null value, the cookie must be deleted. - * - * @param SetCookie $cookie - */ - private function removeCookieIfEmpty(SetCookie $cookie) - { - $cookieValue = $cookie->getValue(); - if ($cookieValue === null || $cookieValue === '') { - $this->clear( - $cookie->getDomain(), - $cookie->getPath(), - $cookie->getName() - ); - } - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/Cookie/CookieJarInterface.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/Cookie/CookieJarInterface.php deleted file mode 100644 index 6ee11885..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/Cookie/CookieJarInterface.php +++ /dev/null @@ -1,84 +0,0 @@ -filename = $cookieFile; - $this->storeSessionCookies = $storeSessionCookies; - - if (file_exists($cookieFile)) { - $this->load($cookieFile); - } - } - - /** - * Saves the file when shutting down - */ - public function __destruct() - { - $this->save($this->filename); - } - - /** - * Saves the cookies to a file. - * - * @param string $filename File to save - * @throws \RuntimeException if the file cannot be found or created - */ - public function save($filename) - { - $json = []; - foreach ($this as $cookie) { - /** @var SetCookie $cookie */ - if (CookieJar::shouldPersist($cookie, $this->storeSessionCookies)) { - $json[] = $cookie->toArray(); - } - } - - $jsonStr = \GuzzleHttp\json_encode($json); - if (false === file_put_contents($filename, $jsonStr, LOCK_EX)) { - throw new \RuntimeException("Unable to save file {$filename}"); - } - } - - /** - * Load cookies from a JSON formatted file. - * - * Old cookies are kept unless overwritten by newly loaded ones. - * - * @param string $filename Cookie file to load. - * @throws \RuntimeException if the file cannot be loaded. - */ - public function load($filename) - { - $json = file_get_contents($filename); - if (false === $json) { - throw new \RuntimeException("Unable to load file {$filename}"); - } elseif ($json === '') { - return; - } - - $data = \GuzzleHttp\json_decode($json, true); - if (is_array($data)) { - foreach (json_decode($json, true) as $cookie) { - $this->setCookie(new SetCookie($cookie)); - } - } elseif (strlen($data)) { - throw new \RuntimeException("Invalid cookie file: {$filename}"); - } - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/Cookie/SessionCookieJar.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/Cookie/SessionCookieJar.php deleted file mode 100644 index 0224a244..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/Cookie/SessionCookieJar.php +++ /dev/null @@ -1,72 +0,0 @@ -sessionKey = $sessionKey; - $this->storeSessionCookies = $storeSessionCookies; - $this->load(); - } - - /** - * Saves cookies to session when shutting down - */ - public function __destruct() - { - $this->save(); - } - - /** - * Save cookies to the client session - */ - public function save() - { - $json = []; - foreach ($this as $cookie) { - /** @var SetCookie $cookie */ - if (CookieJar::shouldPersist($cookie, $this->storeSessionCookies)) { - $json[] = $cookie->toArray(); - } - } - - $_SESSION[$this->sessionKey] = json_encode($json); - } - - /** - * Load the contents of the client session into the data array - */ - protected function load() - { - if (!isset($_SESSION[$this->sessionKey])) { - return; - } - $data = json_decode($_SESSION[$this->sessionKey], true); - if (is_array($data)) { - foreach ($data as $cookie) { - $this->setCookie(new SetCookie($cookie)); - } - } elseif (strlen($data)) { - throw new \RuntimeException("Invalid cookie data"); - } - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/Cookie/SetCookie.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/Cookie/SetCookie.php deleted file mode 100644 index 3d776a70..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/Cookie/SetCookie.php +++ /dev/null @@ -1,403 +0,0 @@ - null, - 'Value' => null, - 'Domain' => null, - 'Path' => '/', - 'Max-Age' => null, - 'Expires' => null, - 'Secure' => false, - 'Discard' => false, - 'HttpOnly' => false - ]; - - /** @var array Cookie data */ - private $data; - - /** - * Create a new SetCookie object from a string - * - * @param string $cookie Set-Cookie header string - * - * @return self - */ - public static function fromString($cookie) - { - // Create the default return array - $data = self::$defaults; - // Explode the cookie string using a series of semicolons - $pieces = array_filter(array_map('trim', explode(';', $cookie))); - // The name of the cookie (first kvp) must exist and include an equal sign. - if (empty($pieces[0]) || !strpos($pieces[0], '=')) { - return new self($data); - } - - // Add the cookie pieces into the parsed data array - foreach ($pieces as $part) { - $cookieParts = explode('=', $part, 2); - $key = trim($cookieParts[0]); - $value = isset($cookieParts[1]) - ? trim($cookieParts[1], " \n\r\t\0\x0B") - : true; - - // Only check for non-cookies when cookies have been found - if (empty($data['Name'])) { - $data['Name'] = $key; - $data['Value'] = $value; - } else { - foreach (array_keys(self::$defaults) as $search) { - if (!strcasecmp($search, $key)) { - $data[$search] = $value; - continue 2; - } - } - $data[$key] = $value; - } - } - - return new self($data); - } - - /** - * @param array $data Array of cookie data provided by a Cookie parser - */ - public function __construct(array $data = []) - { - $this->data = array_replace(self::$defaults, $data); - // Extract the Expires value and turn it into a UNIX timestamp if needed - if (!$this->getExpires() && $this->getMaxAge()) { - // Calculate the Expires date - $this->setExpires(time() + $this->getMaxAge()); - } elseif ($this->getExpires() && !is_numeric($this->getExpires())) { - $this->setExpires($this->getExpires()); - } - } - - public function __toString() - { - $str = $this->data['Name'] . '=' . $this->data['Value'] . '; '; - foreach ($this->data as $k => $v) { - if ($k !== 'Name' && $k !== 'Value' && $v !== null && $v !== false) { - if ($k === 'Expires') { - $str .= 'Expires=' . gmdate('D, d M Y H:i:s \G\M\T', $v) . '; '; - } else { - $str .= ($v === true ? $k : "{$k}={$v}") . '; '; - } - } - } - - return rtrim($str, '; '); - } - - public function toArray() - { - return $this->data; - } - - /** - * Get the cookie name - * - * @return string - */ - public function getName() - { - return $this->data['Name']; - } - - /** - * Set the cookie name - * - * @param string $name Cookie name - */ - public function setName($name) - { - $this->data['Name'] = $name; - } - - /** - * Get the cookie value - * - * @return string - */ - public function getValue() - { - return $this->data['Value']; - } - - /** - * Set the cookie value - * - * @param string $value Cookie value - */ - public function setValue($value) - { - $this->data['Value'] = $value; - } - - /** - * Get the domain - * - * @return string|null - */ - public function getDomain() - { - return $this->data['Domain']; - } - - /** - * Set the domain of the cookie - * - * @param string $domain - */ - public function setDomain($domain) - { - $this->data['Domain'] = $domain; - } - - /** - * Get the path - * - * @return string - */ - public function getPath() - { - return $this->data['Path']; - } - - /** - * Set the path of the cookie - * - * @param string $path Path of the cookie - */ - public function setPath($path) - { - $this->data['Path'] = $path; - } - - /** - * Maximum lifetime of the cookie in seconds - * - * @return int|null - */ - public function getMaxAge() - { - return $this->data['Max-Age']; - } - - /** - * Set the max-age of the cookie - * - * @param int $maxAge Max age of the cookie in seconds - */ - public function setMaxAge($maxAge) - { - $this->data['Max-Age'] = $maxAge; - } - - /** - * The UNIX timestamp when the cookie Expires - * - * @return mixed - */ - public function getExpires() - { - return $this->data['Expires']; - } - - /** - * Set the unix timestamp for which the cookie will expire - * - * @param int $timestamp Unix timestamp - */ - public function setExpires($timestamp) - { - $this->data['Expires'] = is_numeric($timestamp) - ? (int) $timestamp - : strtotime($timestamp); - } - - /** - * Get whether or not this is a secure cookie - * - * @return bool|null - */ - public function getSecure() - { - return $this->data['Secure']; - } - - /** - * Set whether or not the cookie is secure - * - * @param bool $secure Set to true or false if secure - */ - public function setSecure($secure) - { - $this->data['Secure'] = $secure; - } - - /** - * Get whether or not this is a session cookie - * - * @return bool|null - */ - public function getDiscard() - { - return $this->data['Discard']; - } - - /** - * Set whether or not this is a session cookie - * - * @param bool $discard Set to true or false if this is a session cookie - */ - public function setDiscard($discard) - { - $this->data['Discard'] = $discard; - } - - /** - * Get whether or not this is an HTTP only cookie - * - * @return bool - */ - public function getHttpOnly() - { - return $this->data['HttpOnly']; - } - - /** - * Set whether or not this is an HTTP only cookie - * - * @param bool $httpOnly Set to true or false if this is HTTP only - */ - public function setHttpOnly($httpOnly) - { - $this->data['HttpOnly'] = $httpOnly; - } - - /** - * Check if the cookie matches a path value. - * - * A request-path path-matches a given cookie-path if at least one of - * the following conditions holds: - * - * - The cookie-path and the request-path are identical. - * - The cookie-path is a prefix of the request-path, and the last - * character of the cookie-path is %x2F ("/"). - * - The cookie-path is a prefix of the request-path, and the first - * character of the request-path that is not included in the cookie- - * path is a %x2F ("/") character. - * - * @param string $requestPath Path to check against - * - * @return bool - */ - public function matchesPath($requestPath) - { - $cookiePath = $this->getPath(); - - // Match on exact matches or when path is the default empty "/" - if ($cookiePath === '/' || $cookiePath == $requestPath) { - return true; - } - - // Ensure that the cookie-path is a prefix of the request path. - if (0 !== strpos($requestPath, $cookiePath)) { - return false; - } - - // Match if the last character of the cookie-path is "/" - if (substr($cookiePath, -1, 1) === '/') { - return true; - } - - // Match if the first character not included in cookie path is "/" - return substr($requestPath, strlen($cookiePath), 1) === '/'; - } - - /** - * Check if the cookie matches a domain value - * - * @param string $domain Domain to check against - * - * @return bool - */ - public function matchesDomain($domain) - { - // Remove the leading '.' as per spec in RFC 6265. - // http://tools.ietf.org/html/rfc6265#section-5.2.3 - $cookieDomain = ltrim($this->getDomain(), '.'); - - // Domain not set or exact match. - if (!$cookieDomain || !strcasecmp($domain, $cookieDomain)) { - return true; - } - - // Matching the subdomain according to RFC 6265. - // http://tools.ietf.org/html/rfc6265#section-5.1.3 - if (filter_var($domain, FILTER_VALIDATE_IP)) { - return false; - } - - return (bool) preg_match('/\.' . preg_quote($cookieDomain, '/') . '$/', $domain); - } - - /** - * Check if the cookie is expired - * - * @return bool - */ - public function isExpired() - { - return $this->getExpires() !== null && time() > $this->getExpires(); - } - - /** - * Check if the cookie is valid according to RFC 6265 - * - * @return bool|string Returns true if valid or an error message if invalid - */ - public function validate() - { - // Names must not be empty, but can be 0 - $name = $this->getName(); - if (empty($name) && !is_numeric($name)) { - return 'The cookie name must not be empty'; - } - - // Check if any of the invalid characters are present in the cookie name - if (preg_match( - '/[\x00-\x20\x22\x28-\x29\x2c\x2f\x3a-\x40\x5c\x7b\x7d\x7f]/', - $name - )) { - return 'Cookie name must not contain invalid characters: ASCII ' - . 'Control characters (0-31;127), space, tab and the ' - . 'following characters: ()<>@,;:\"/?={}'; - } - - // Value must not be empty, but can be 0 - $value = $this->getValue(); - if (empty($value) && !is_numeric($value)) { - return 'The cookie value must not be empty'; - } - - // Domains must not be empty, but can be 0 - // A "0" is not a valid internet domain, but may be used as server name - // in a private network. - $domain = $this->getDomain(); - if (empty($domain) && !is_numeric($domain)) { - return 'The cookie domain must not be empty'; - } - - return true; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/Exception/BadResponseException.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/Exception/BadResponseException.php deleted file mode 100644 index 427d896f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/Exception/BadResponseException.php +++ /dev/null @@ -1,27 +0,0 @@ -getStatusCode() - : 0; - parent::__construct($message, $code, $previous); - $this->request = $request; - $this->response = $response; - $this->handlerContext = $handlerContext; - } - - /** - * Wrap non-RequestExceptions with a RequestException - * - * @param RequestInterface $request - * @param \Exception $e - * - * @return RequestException - */ - public static function wrapException(RequestInterface $request, \Exception $e) - { - return $e instanceof RequestException - ? $e - : new RequestException($e->getMessage(), $request, null, $e); - } - - /** - * Factory method to create a new exception with a normalized error message - * - * @param RequestInterface $request Request - * @param ResponseInterface $response Response received - * @param \Exception $previous Previous exception - * @param array $ctx Optional handler context. - * - * @return self - */ - public static function create( - RequestInterface $request, - ResponseInterface $response = null, - \Exception $previous = null, - array $ctx = [] - ) { - if (!$response) { - return new self( - 'Error completing request', - $request, - null, - $previous, - $ctx - ); - } - - $level = (int) floor($response->getStatusCode() / 100); - if ($level === 4) { - $label = 'Client error'; - $className = ClientException::class; - } elseif ($level === 5) { - $label = 'Server error'; - $className = ServerException::class; - } else { - $label = 'Unsuccessful request'; - $className = __CLASS__; - } - - $uri = $request->getUri(); - $uri = static::obfuscateUri($uri); - - // Client Error: `GET /` resulted in a `404 Not Found` response: - // ... (truncated) - $message = sprintf( - '%s: `%s %s` resulted in a `%s %s` response', - $label, - $request->getMethod(), - $uri, - $response->getStatusCode(), - $response->getReasonPhrase() - ); - - $summary = static::getResponseBodySummary($response); - - if ($summary !== null) { - $message .= ":\n{$summary}\n"; - } - - return new $className($message, $request, $response, $previous, $ctx); - } - - /** - * Get a short summary of the response - * - * Will return `null` if the response is not printable. - * - * @param ResponseInterface $response - * - * @return string|null - */ - public static function getResponseBodySummary(ResponseInterface $response) - { - return \GuzzleHttp\Psr7\get_message_body_summary($response); - } - - /** - * Obfuscates URI if there is a username and a password present - * - * @param UriInterface $uri - * - * @return UriInterface - */ - private static function obfuscateUri(UriInterface $uri) - { - $userInfo = $uri->getUserInfo(); - - if (false !== ($pos = strpos($userInfo, ':'))) { - return $uri->withUserInfo(substr($userInfo, 0, $pos), '***'); - } - - return $uri; - } - - /** - * Get the request that caused the exception - * - * @return RequestInterface - */ - public function getRequest() - { - return $this->request; - } - - /** - * Get the associated response - * - * @return ResponseInterface|null - */ - public function getResponse() - { - return $this->response; - } - - /** - * Check if a response was received - * - * @return bool - */ - public function hasResponse() - { - return $this->response !== null; - } - - /** - * Get contextual information about the error from the underlying handler. - * - * The contents of this array will vary depending on which handler you are - * using. It may also be just an empty array. Relying on this data will - * couple you to a specific handler, but can give more debug information - * when needed. - * - * @return array - */ - public function getHandlerContext() - { - return $this->handlerContext; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/Exception/SeekException.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/Exception/SeekException.php deleted file mode 100644 index a77c2892..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/Exception/SeekException.php +++ /dev/null @@ -1,27 +0,0 @@ -stream = $stream; - $msg = $msg ?: 'Could not seek the stream to position ' . $pos; - parent::__construct($msg); - } - - /** - * @return StreamInterface - */ - public function getStream() - { - return $this->stream; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/Exception/ServerException.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/Exception/ServerException.php deleted file mode 100644 index 127094c1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/Exception/ServerException.php +++ /dev/null @@ -1,9 +0,0 @@ -maxHandles = $maxHandles; - } - - public function create(RequestInterface $request, array $options) - { - if (isset($options['curl']['body_as_string'])) { - $options['_body_as_string'] = $options['curl']['body_as_string']; - unset($options['curl']['body_as_string']); - } - - $easy = new EasyHandle; - $easy->request = $request; - $easy->options = $options; - $conf = $this->getDefaultConf($easy); - $this->applyMethod($easy, $conf); - $this->applyHandlerOptions($easy, $conf); - $this->applyHeaders($easy, $conf); - unset($conf['_headers']); - - // Add handler options from the request configuration options - if (isset($options['curl'])) { - $conf = array_replace($conf, $options['curl']); - } - - $conf[CURLOPT_HEADERFUNCTION] = $this->createHeaderFn($easy); - $easy->handle = $this->handles - ? array_pop($this->handles) - : curl_init(); - curl_setopt_array($easy->handle, $conf); - - return $easy; - } - - public function release(EasyHandle $easy) - { - $resource = $easy->handle; - unset($easy->handle); - - if (count($this->handles) >= $this->maxHandles) { - curl_close($resource); - } else { - // Remove all callback functions as they can hold onto references - // and are not cleaned up by curl_reset. Using curl_setopt_array - // does not work for some reason, so removing each one - // individually. - curl_setopt($resource, CURLOPT_HEADERFUNCTION, null); - curl_setopt($resource, CURLOPT_READFUNCTION, null); - curl_setopt($resource, CURLOPT_WRITEFUNCTION, null); - curl_setopt($resource, CURLOPT_PROGRESSFUNCTION, null); - curl_reset($resource); - $this->handles[] = $resource; - } - } - - /** - * Completes a cURL transaction, either returning a response promise or a - * rejected promise. - * - * @param callable $handler - * @param EasyHandle $easy - * @param CurlFactoryInterface $factory Dictates how the handle is released - * - * @return \GuzzleHttp\Promise\PromiseInterface - */ - public static function finish( - callable $handler, - EasyHandle $easy, - CurlFactoryInterface $factory - ) { - if (isset($easy->options['on_stats'])) { - self::invokeStats($easy); - } - - if (!$easy->response || $easy->errno) { - return self::finishError($handler, $easy, $factory); - } - - // Return the response if it is present and there is no error. - $factory->release($easy); - - // Rewind the body of the response if possible. - $body = $easy->response->getBody(); - if ($body->isSeekable()) { - $body->rewind(); - } - - return new FulfilledPromise($easy->response); - } - - private static function invokeStats(EasyHandle $easy) - { - $curlStats = curl_getinfo($easy->handle); - $curlStats['appconnect_time'] = curl_getinfo($easy->handle, CURLINFO_APPCONNECT_TIME); - $stats = new TransferStats( - $easy->request, - $easy->response, - $curlStats['total_time'], - $easy->errno, - $curlStats - ); - call_user_func($easy->options['on_stats'], $stats); - } - - private static function finishError( - callable $handler, - EasyHandle $easy, - CurlFactoryInterface $factory - ) { - // Get error information and release the handle to the factory. - $ctx = [ - 'errno' => $easy->errno, - 'error' => curl_error($easy->handle), - 'appconnect_time' => curl_getinfo($easy->handle, CURLINFO_APPCONNECT_TIME), - ] + curl_getinfo($easy->handle); - $ctx[self::CURL_VERSION_STR] = curl_version()['version']; - $factory->release($easy); - - // Retry when nothing is present or when curl failed to rewind. - if (empty($easy->options['_err_message']) - && (!$easy->errno || $easy->errno == 65) - ) { - return self::retryFailedRewind($handler, $easy, $ctx); - } - - return self::createRejection($easy, $ctx); - } - - private static function createRejection(EasyHandle $easy, array $ctx) - { - static $connectionErrors = [ - CURLE_OPERATION_TIMEOUTED => true, - CURLE_COULDNT_RESOLVE_HOST => true, - CURLE_COULDNT_CONNECT => true, - CURLE_SSL_CONNECT_ERROR => true, - CURLE_GOT_NOTHING => true, - ]; - - // If an exception was encountered during the onHeaders event, then - // return a rejected promise that wraps that exception. - if ($easy->onHeadersException) { - return \GuzzleHttp\Promise\rejection_for( - new RequestException( - 'An error was encountered during the on_headers event', - $easy->request, - $easy->response, - $easy->onHeadersException, - $ctx - ) - ); - } - if (version_compare($ctx[self::CURL_VERSION_STR], self::LOW_CURL_VERSION_NUMBER)) { - $message = sprintf( - 'cURL error %s: %s (%s)', - $ctx['errno'], - $ctx['error'], - 'see https://curl.haxx.se/libcurl/c/libcurl-errors.html' - ); - } else { - $message = sprintf( - 'cURL error %s: %s (%s) for %s', - $ctx['errno'], - $ctx['error'], - 'see https://curl.haxx.se/libcurl/c/libcurl-errors.html', - $easy->request->getUri() - ); - } - - // Create a connection exception if it was a specific error code. - $error = isset($connectionErrors[$easy->errno]) - ? new ConnectException($message, $easy->request, null, $ctx) - : new RequestException($message, $easy->request, $easy->response, null, $ctx); - - return \GuzzleHttp\Promise\rejection_for($error); - } - - private function getDefaultConf(EasyHandle $easy) - { - $conf = [ - '_headers' => $easy->request->getHeaders(), - CURLOPT_CUSTOMREQUEST => $easy->request->getMethod(), - CURLOPT_URL => (string) $easy->request->getUri()->withFragment(''), - CURLOPT_RETURNTRANSFER => false, - CURLOPT_HEADER => false, - CURLOPT_CONNECTTIMEOUT => 150, - ]; - - if (defined('CURLOPT_PROTOCOLS')) { - $conf[CURLOPT_PROTOCOLS] = CURLPROTO_HTTP | CURLPROTO_HTTPS; - } - - $version = $easy->request->getProtocolVersion(); - if ($version == 1.1) { - $conf[CURLOPT_HTTP_VERSION] = CURL_HTTP_VERSION_1_1; - } elseif ($version == 2.0) { - $conf[CURLOPT_HTTP_VERSION] = CURL_HTTP_VERSION_2_0; - } else { - $conf[CURLOPT_HTTP_VERSION] = CURL_HTTP_VERSION_1_0; - } - - return $conf; - } - - private function applyMethod(EasyHandle $easy, array &$conf) - { - $body = $easy->request->getBody(); - $size = $body->getSize(); - - if ($size === null || $size > 0) { - $this->applyBody($easy->request, $easy->options, $conf); - return; - } - - $method = $easy->request->getMethod(); - if ($method === 'PUT' || $method === 'POST') { - // See http://tools.ietf.org/html/rfc7230#section-3.3.2 - if (!$easy->request->hasHeader('Content-Length')) { - $conf[CURLOPT_HTTPHEADER][] = 'Content-Length: 0'; - } - } elseif ($method === 'HEAD') { - $conf[CURLOPT_NOBODY] = true; - unset( - $conf[CURLOPT_WRITEFUNCTION], - $conf[CURLOPT_READFUNCTION], - $conf[CURLOPT_FILE], - $conf[CURLOPT_INFILE] - ); - } - } - - private function applyBody(RequestInterface $request, array $options, array &$conf) - { - $size = $request->hasHeader('Content-Length') - ? (int) $request->getHeaderLine('Content-Length') - : null; - - // Send the body as a string if the size is less than 1MB OR if the - // [curl][body_as_string] request value is set. - if (($size !== null && $size < 1000000) || - !empty($options['_body_as_string']) - ) { - $conf[CURLOPT_POSTFIELDS] = (string) $request->getBody(); - // Don't duplicate the Content-Length header - $this->removeHeader('Content-Length', $conf); - $this->removeHeader('Transfer-Encoding', $conf); - } else { - $conf[CURLOPT_UPLOAD] = true; - if ($size !== null) { - $conf[CURLOPT_INFILESIZE] = $size; - $this->removeHeader('Content-Length', $conf); - } - $body = $request->getBody(); - if ($body->isSeekable()) { - $body->rewind(); - } - $conf[CURLOPT_READFUNCTION] = function ($ch, $fd, $length) use ($body) { - return $body->read($length); - }; - } - - // If the Expect header is not present, prevent curl from adding it - if (!$request->hasHeader('Expect')) { - $conf[CURLOPT_HTTPHEADER][] = 'Expect:'; - } - - // cURL sometimes adds a content-type by default. Prevent this. - if (!$request->hasHeader('Content-Type')) { - $conf[CURLOPT_HTTPHEADER][] = 'Content-Type:'; - } - } - - private function applyHeaders(EasyHandle $easy, array &$conf) - { - foreach ($conf['_headers'] as $name => $values) { - foreach ($values as $value) { - $value = (string) $value; - if ($value === '') { - // cURL requires a special format for empty headers. - // See https://github.com/guzzle/guzzle/issues/1882 for more details. - $conf[CURLOPT_HTTPHEADER][] = "$name;"; - } else { - $conf[CURLOPT_HTTPHEADER][] = "$name: $value"; - } - } - } - - // Remove the Accept header if one was not set - if (!$easy->request->hasHeader('Accept')) { - $conf[CURLOPT_HTTPHEADER][] = 'Accept:'; - } - } - - /** - * Remove a header from the options array. - * - * @param string $name Case-insensitive header to remove - * @param array $options Array of options to modify - */ - private function removeHeader($name, array &$options) - { - foreach (array_keys($options['_headers']) as $key) { - if (!strcasecmp($key, $name)) { - unset($options['_headers'][$key]); - return; - } - } - } - - private function applyHandlerOptions(EasyHandle $easy, array &$conf) - { - $options = $easy->options; - if (isset($options['verify'])) { - if ($options['verify'] === false) { - unset($conf[CURLOPT_CAINFO]); - $conf[CURLOPT_SSL_VERIFYHOST] = 0; - $conf[CURLOPT_SSL_VERIFYPEER] = false; - } else { - $conf[CURLOPT_SSL_VERIFYHOST] = 2; - $conf[CURLOPT_SSL_VERIFYPEER] = true; - if (is_string($options['verify'])) { - // Throw an error if the file/folder/link path is not valid or doesn't exist. - if (!file_exists($options['verify'])) { - throw new \InvalidArgumentException( - "SSL CA bundle not found: {$options['verify']}" - ); - } - // If it's a directory or a link to a directory use CURLOPT_CAPATH. - // If not, it's probably a file, or a link to a file, so use CURLOPT_CAINFO. - if (is_dir($options['verify']) || - (is_link($options['verify']) && is_dir(readlink($options['verify'])))) { - $conf[CURLOPT_CAPATH] = $options['verify']; - } else { - $conf[CURLOPT_CAINFO] = $options['verify']; - } - } - } - } - - if (!empty($options['decode_content'])) { - $accept = $easy->request->getHeaderLine('Accept-Encoding'); - if ($accept) { - $conf[CURLOPT_ENCODING] = $accept; - } else { - $conf[CURLOPT_ENCODING] = ''; - // Don't let curl send the header over the wire - $conf[CURLOPT_HTTPHEADER][] = 'Accept-Encoding:'; - } - } - - if (isset($options['sink'])) { - $sink = $options['sink']; - if (!is_string($sink)) { - $sink = \GuzzleHttp\Psr7\stream_for($sink); - } elseif (!is_dir(dirname($sink))) { - // Ensure that the directory exists before failing in curl. - throw new \RuntimeException(sprintf( - 'Directory %s does not exist for sink value of %s', - dirname($sink), - $sink - )); - } else { - $sink = new LazyOpenStream($sink, 'w+'); - } - $easy->sink = $sink; - $conf[CURLOPT_WRITEFUNCTION] = function ($ch, $write) use ($sink) { - return $sink->write($write); - }; - } else { - // Use a default temp stream if no sink was set. - $conf[CURLOPT_FILE] = fopen('php://temp', 'w+'); - $easy->sink = Psr7\stream_for($conf[CURLOPT_FILE]); - } - $timeoutRequiresNoSignal = false; - if (isset($options['timeout'])) { - $timeoutRequiresNoSignal |= $options['timeout'] < 1; - $conf[CURLOPT_TIMEOUT_MS] = $options['timeout'] * 1000; - } - - // CURL default value is CURL_IPRESOLVE_WHATEVER - if (isset($options['force_ip_resolve'])) { - if ('v4' === $options['force_ip_resolve']) { - $conf[CURLOPT_IPRESOLVE] = CURL_IPRESOLVE_V4; - } elseif ('v6' === $options['force_ip_resolve']) { - $conf[CURLOPT_IPRESOLVE] = CURL_IPRESOLVE_V6; - } - } - - if (isset($options['connect_timeout'])) { - $timeoutRequiresNoSignal |= $options['connect_timeout'] < 1; - $conf[CURLOPT_CONNECTTIMEOUT_MS] = $options['connect_timeout'] * 1000; - } - - if ($timeoutRequiresNoSignal && strtoupper(substr(PHP_OS, 0, 3)) !== 'WIN') { - $conf[CURLOPT_NOSIGNAL] = true; - } - - if (isset($options['proxy'])) { - if (!is_array($options['proxy'])) { - $conf[CURLOPT_PROXY] = $options['proxy']; - } else { - $scheme = $easy->request->getUri()->getScheme(); - if (isset($options['proxy'][$scheme])) { - $host = $easy->request->getUri()->getHost(); - if (!isset($options['proxy']['no']) || - !\GuzzleHttp\is_host_in_noproxy($host, $options['proxy']['no']) - ) { - $conf[CURLOPT_PROXY] = $options['proxy'][$scheme]; - } - } - } - } - - if (isset($options['cert'])) { - $cert = $options['cert']; - if (is_array($cert)) { - $conf[CURLOPT_SSLCERTPASSWD] = $cert[1]; - $cert = $cert[0]; - } - if (!file_exists($cert)) { - throw new \InvalidArgumentException( - "SSL certificate not found: {$cert}" - ); - } - $conf[CURLOPT_SSLCERT] = $cert; - } - - if (isset($options['ssl_key'])) { - if (is_array($options['ssl_key'])) { - if (count($options['ssl_key']) === 2) { - list($sslKey, $conf[CURLOPT_SSLKEYPASSWD]) = $options['ssl_key']; - } else { - list($sslKey) = $options['ssl_key']; - } - } - - $sslKey = isset($sslKey) ? $sslKey: $options['ssl_key']; - - if (!file_exists($sslKey)) { - throw new \InvalidArgumentException( - "SSL private key not found: {$sslKey}" - ); - } - $conf[CURLOPT_SSLKEY] = $sslKey; - } - - if (isset($options['progress'])) { - $progress = $options['progress']; - if (!is_callable($progress)) { - throw new \InvalidArgumentException( - 'progress client option must be callable' - ); - } - $conf[CURLOPT_NOPROGRESS] = false; - $conf[CURLOPT_PROGRESSFUNCTION] = function () use ($progress) { - $args = func_get_args(); - // PHP 5.5 pushed the handle onto the start of the args - if (is_resource($args[0])) { - array_shift($args); - } - call_user_func_array($progress, $args); - }; - } - - if (!empty($options['debug'])) { - $conf[CURLOPT_STDERR] = \GuzzleHttp\debug_resource($options['debug']); - $conf[CURLOPT_VERBOSE] = true; - } - } - - /** - * This function ensures that a response was set on a transaction. If one - * was not set, then the request is retried if possible. This error - * typically means you are sending a payload, curl encountered a - * "Connection died, retrying a fresh connect" error, tried to rewind the - * stream, and then encountered a "necessary data rewind wasn't possible" - * error, causing the request to be sent through curl_multi_info_read() - * without an error status. - */ - private static function retryFailedRewind( - callable $handler, - EasyHandle $easy, - array $ctx - ) { - try { - // Only rewind if the body has been read from. - $body = $easy->request->getBody(); - if ($body->tell() > 0) { - $body->rewind(); - } - } catch (\RuntimeException $e) { - $ctx['error'] = 'The connection unexpectedly failed without ' - . 'providing an error. The request would have been retried, ' - . 'but attempting to rewind the request body failed. ' - . 'Exception: ' . $e; - return self::createRejection($easy, $ctx); - } - - // Retry no more than 3 times before giving up. - if (!isset($easy->options['_curl_retries'])) { - $easy->options['_curl_retries'] = 1; - } elseif ($easy->options['_curl_retries'] == 2) { - $ctx['error'] = 'The cURL request was retried 3 times ' - . 'and did not succeed. The most likely reason for the failure ' - . 'is that cURL was unable to rewind the body of the request ' - . 'and subsequent retries resulted in the same error. Turn on ' - . 'the debug option to see what went wrong. See ' - . 'https://bugs.php.net/bug.php?id=47204 for more information.'; - return self::createRejection($easy, $ctx); - } else { - $easy->options['_curl_retries']++; - } - - return $handler($easy->request, $easy->options); - } - - private function createHeaderFn(EasyHandle $easy) - { - if (isset($easy->options['on_headers'])) { - $onHeaders = $easy->options['on_headers']; - - if (!is_callable($onHeaders)) { - throw new \InvalidArgumentException('on_headers must be callable'); - } - } else { - $onHeaders = null; - } - - return function ($ch, $h) use ( - $onHeaders, - $easy, - &$startingResponse - ) { - $value = trim($h); - if ($value === '') { - $startingResponse = true; - $easy->createResponse(); - if ($onHeaders !== null) { - try { - $onHeaders($easy->response); - } catch (\Exception $e) { - // Associate the exception with the handle and trigger - // a curl header write error by returning 0. - $easy->onHeadersException = $e; - return -1; - } - } - } elseif ($startingResponse) { - $startingResponse = false; - $easy->headers = [$value]; - } else { - $easy->headers[] = $value; - } - return strlen($h); - }; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/Handler/CurlFactoryInterface.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/Handler/CurlFactoryInterface.php deleted file mode 100644 index b0fc2368..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/Handler/CurlFactoryInterface.php +++ /dev/null @@ -1,27 +0,0 @@ -factory = isset($options['handle_factory']) - ? $options['handle_factory'] - : new CurlFactory(3); - } - - public function __invoke(RequestInterface $request, array $options) - { - if (isset($options['delay'])) { - usleep($options['delay'] * 1000); - } - - $easy = $this->factory->create($request, $options); - curl_exec($easy->handle); - $easy->errno = curl_errno($easy->handle); - - return CurlFactory::finish($this, $easy, $this->factory); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/Handler/CurlMultiHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/Handler/CurlMultiHandler.php deleted file mode 100644 index b73e5c72..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/Handler/CurlMultiHandler.php +++ /dev/null @@ -1,219 +0,0 @@ -factory = isset($options['handle_factory']) - ? $options['handle_factory'] : new CurlFactory(50); - - if (isset($options['select_timeout'])) { - $this->selectTimeout = $options['select_timeout']; - } elseif ($selectTimeout = getenv('GUZZLE_CURL_SELECT_TIMEOUT')) { - $this->selectTimeout = $selectTimeout; - } else { - $this->selectTimeout = 1; - } - - $this->options = isset($options['options']) ? $options['options'] : []; - } - - public function __get($name) - { - if ($name === '_mh') { - $this->_mh = curl_multi_init(); - - foreach ($this->options as $option => $value) { - // A warning is raised in case of a wrong option. - curl_multi_setopt($this->_mh, $option, $value); - } - - // Further calls to _mh will return the value directly, without entering the - // __get() method at all. - return $this->_mh; - } - - throw new \BadMethodCallException(); - } - - public function __destruct() - { - if (isset($this->_mh)) { - curl_multi_close($this->_mh); - unset($this->_mh); - } - } - - public function __invoke(RequestInterface $request, array $options) - { - $easy = $this->factory->create($request, $options); - $id = (int) $easy->handle; - - $promise = new Promise( - [$this, 'execute'], - function () use ($id) { - return $this->cancel($id); - } - ); - - $this->addRequest(['easy' => $easy, 'deferred' => $promise]); - - return $promise; - } - - /** - * Ticks the curl event loop. - */ - public function tick() - { - // Add any delayed handles if needed. - if ($this->delays) { - $currentTime = \GuzzleHttp\_current_time(); - foreach ($this->delays as $id => $delay) { - if ($currentTime >= $delay) { - unset($this->delays[$id]); - curl_multi_add_handle( - $this->_mh, - $this->handles[$id]['easy']->handle - ); - } - } - } - - // Step through the task queue which may add additional requests. - P\queue()->run(); - - if ($this->active && - curl_multi_select($this->_mh, $this->selectTimeout) === -1 - ) { - // Perform a usleep if a select returns -1. - // See: https://bugs.php.net/bug.php?id=61141 - usleep(250); - } - - while (curl_multi_exec($this->_mh, $this->active) === CURLM_CALL_MULTI_PERFORM); - - $this->processMessages(); - } - - /** - * Runs until all outstanding connections have completed. - */ - public function execute() - { - $queue = P\queue(); - - while ($this->handles || !$queue->isEmpty()) { - // If there are no transfers, then sleep for the next delay - if (!$this->active && $this->delays) { - usleep($this->timeToNext()); - } - $this->tick(); - } - } - - private function addRequest(array $entry) - { - $easy = $entry['easy']; - $id = (int) $easy->handle; - $this->handles[$id] = $entry; - if (empty($easy->options['delay'])) { - curl_multi_add_handle($this->_mh, $easy->handle); - } else { - $this->delays[$id] = \GuzzleHttp\_current_time() + ($easy->options['delay'] / 1000); - } - } - - /** - * Cancels a handle from sending and removes references to it. - * - * @param int $id Handle ID to cancel and remove. - * - * @return bool True on success, false on failure. - */ - private function cancel($id) - { - // Cannot cancel if it has been processed. - if (!isset($this->handles[$id])) { - return false; - } - - $handle = $this->handles[$id]['easy']->handle; - unset($this->delays[$id], $this->handles[$id]); - curl_multi_remove_handle($this->_mh, $handle); - curl_close($handle); - - return true; - } - - private function processMessages() - { - while ($done = curl_multi_info_read($this->_mh)) { - $id = (int) $done['handle']; - curl_multi_remove_handle($this->_mh, $done['handle']); - - if (!isset($this->handles[$id])) { - // Probably was cancelled. - continue; - } - - $entry = $this->handles[$id]; - unset($this->handles[$id], $this->delays[$id]); - $entry['easy']->errno = $done['result']; - $entry['deferred']->resolve( - CurlFactory::finish( - $this, - $entry['easy'], - $this->factory - ) - ); - } - } - - private function timeToNext() - { - $currentTime = \GuzzleHttp\_current_time(); - $nextTime = PHP_INT_MAX; - foreach ($this->delays as $time) { - if ($time < $nextTime) { - $nextTime = $time; - } - } - - return max(0, $nextTime - $currentTime) * 1000000; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/Handler/EasyHandle.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/Handler/EasyHandle.php deleted file mode 100644 index 7754e911..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/Handler/EasyHandle.php +++ /dev/null @@ -1,92 +0,0 @@ -headers)) { - throw new \RuntimeException('No headers have been received'); - } - - // HTTP-version SP status-code SP reason-phrase - $startLine = explode(' ', array_shift($this->headers), 3); - $headers = \GuzzleHttp\headers_from_lines($this->headers); - $normalizedKeys = \GuzzleHttp\normalize_header_keys($headers); - - if (!empty($this->options['decode_content']) - && isset($normalizedKeys['content-encoding']) - ) { - $headers['x-encoded-content-encoding'] - = $headers[$normalizedKeys['content-encoding']]; - unset($headers[$normalizedKeys['content-encoding']]); - if (isset($normalizedKeys['content-length'])) { - $headers['x-encoded-content-length'] - = $headers[$normalizedKeys['content-length']]; - - $bodyLength = (int) $this->sink->getSize(); - if ($bodyLength) { - $headers[$normalizedKeys['content-length']] = $bodyLength; - } else { - unset($headers[$normalizedKeys['content-length']]); - } - } - } - - // Attach a response to the easy handle with the parsed headers. - $this->response = new Response( - $startLine[1], - $headers, - $this->sink, - substr($startLine[0], 5), - isset($startLine[2]) ? (string) $startLine[2] : null - ); - } - - public function __get($name) - { - $msg = $name === 'handle' - ? 'The EasyHandle has been released' - : 'Invalid property: ' . $name; - throw new \BadMethodCallException($msg); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/Handler/MockHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/Handler/MockHandler.php deleted file mode 100644 index 5b312bc0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/Handler/MockHandler.php +++ /dev/null @@ -1,195 +0,0 @@ -onFulfilled = $onFulfilled; - $this->onRejected = $onRejected; - - if ($queue) { - call_user_func_array([$this, 'append'], $queue); - } - } - - public function __invoke(RequestInterface $request, array $options) - { - if (!$this->queue) { - throw new \OutOfBoundsException('Mock queue is empty'); - } - - if (isset($options['delay']) && is_numeric($options['delay'])) { - usleep($options['delay'] * 1000); - } - - $this->lastRequest = $request; - $this->lastOptions = $options; - $response = array_shift($this->queue); - - if (isset($options['on_headers'])) { - if (!is_callable($options['on_headers'])) { - throw new \InvalidArgumentException('on_headers must be callable'); - } - try { - $options['on_headers']($response); - } catch (\Exception $e) { - $msg = 'An error was encountered during the on_headers event'; - $response = new RequestException($msg, $request, $response, $e); - } - } - - if (is_callable($response)) { - $response = call_user_func($response, $request, $options); - } - - $response = $response instanceof \Exception - ? \GuzzleHttp\Promise\rejection_for($response) - : \GuzzleHttp\Promise\promise_for($response); - - return $response->then( - function ($value) use ($request, $options) { - $this->invokeStats($request, $options, $value); - if ($this->onFulfilled) { - call_user_func($this->onFulfilled, $value); - } - if (isset($options['sink'])) { - $contents = (string) $value->getBody(); - $sink = $options['sink']; - - if (is_resource($sink)) { - fwrite($sink, $contents); - } elseif (is_string($sink)) { - file_put_contents($sink, $contents); - } elseif ($sink instanceof \Psr\Http\Message\StreamInterface) { - $sink->write($contents); - } - } - - return $value; - }, - function ($reason) use ($request, $options) { - $this->invokeStats($request, $options, null, $reason); - if ($this->onRejected) { - call_user_func($this->onRejected, $reason); - } - return \GuzzleHttp\Promise\rejection_for($reason); - } - ); - } - - /** - * Adds one or more variadic requests, exceptions, callables, or promises - * to the queue. - */ - public function append() - { - foreach (func_get_args() as $value) { - if ($value instanceof ResponseInterface - || $value instanceof \Exception - || $value instanceof PromiseInterface - || is_callable($value) - ) { - $this->queue[] = $value; - } else { - throw new \InvalidArgumentException('Expected a response or ' - . 'exception. Found ' . \GuzzleHttp\describe_type($value)); - } - } - } - - /** - * Get the last received request. - * - * @return RequestInterface - */ - public function getLastRequest() - { - return $this->lastRequest; - } - - /** - * Get the last received request options. - * - * @return array - */ - public function getLastOptions() - { - return $this->lastOptions; - } - - /** - * Returns the number of remaining items in the queue. - * - * @return int - */ - public function count() - { - return count($this->queue); - } - - public function reset() - { - $this->queue = []; - } - - private function invokeStats( - RequestInterface $request, - array $options, - ResponseInterface $response = null, - $reason = null - ) { - if (isset($options['on_stats'])) { - $transferTime = isset($options['transfer_time']) ? $options['transfer_time'] : 0; - $stats = new TransferStats($request, $response, $transferTime, $reason); - call_user_func($options['on_stats'], $stats); - } - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/Handler/Proxy.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/Handler/Proxy.php deleted file mode 100644 index f8b00be0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/Handler/Proxy.php +++ /dev/null @@ -1,55 +0,0 @@ -withoutHeader('Expect'); - - // Append a content-length header if body size is zero to match - // cURL's behavior. - if (0 === $request->getBody()->getSize()) { - $request = $request->withHeader('Content-Length', '0'); - } - - return $this->createResponse( - $request, - $options, - $this->createStream($request, $options), - $startTime - ); - } catch (\InvalidArgumentException $e) { - throw $e; - } catch (\Exception $e) { - // Determine if the error was a networking error. - $message = $e->getMessage(); - // This list can probably get more comprehensive. - if (strpos($message, 'getaddrinfo') // DNS lookup failed - || strpos($message, 'Connection refused') - || strpos($message, "couldn't connect to host") // error on HHVM - || strpos($message, "connection attempt failed") - ) { - $e = new ConnectException($e->getMessage(), $request, $e); - } - $e = RequestException::wrapException($request, $e); - $this->invokeStats($options, $request, $startTime, null, $e); - - return \GuzzleHttp\Promise\rejection_for($e); - } - } - - private function invokeStats( - array $options, - RequestInterface $request, - $startTime, - ResponseInterface $response = null, - $error = null - ) { - if (isset($options['on_stats'])) { - $stats = new TransferStats( - $request, - $response, - \GuzzleHttp\_current_time() - $startTime, - $error, - [] - ); - call_user_func($options['on_stats'], $stats); - } - } - - private function createResponse( - RequestInterface $request, - array $options, - $stream, - $startTime - ) { - $hdrs = $this->lastHeaders; - $this->lastHeaders = []; - $parts = explode(' ', array_shift($hdrs), 3); - $ver = explode('/', $parts[0])[1]; - $status = $parts[1]; - $reason = isset($parts[2]) ? $parts[2] : null; - $headers = \GuzzleHttp\headers_from_lines($hdrs); - list($stream, $headers) = $this->checkDecode($options, $headers, $stream); - $stream = Psr7\stream_for($stream); - $sink = $stream; - - if (strcasecmp('HEAD', $request->getMethod())) { - $sink = $this->createSink($stream, $options); - } - - $response = new Psr7\Response($status, $headers, $sink, $ver, $reason); - - if (isset($options['on_headers'])) { - try { - $options['on_headers']($response); - } catch (\Exception $e) { - $msg = 'An error was encountered during the on_headers event'; - $ex = new RequestException($msg, $request, $response, $e); - return \GuzzleHttp\Promise\rejection_for($ex); - } - } - - // Do not drain when the request is a HEAD request because they have - // no body. - if ($sink !== $stream) { - $this->drain( - $stream, - $sink, - $response->getHeaderLine('Content-Length') - ); - } - - $this->invokeStats($options, $request, $startTime, $response, null); - - return new FulfilledPromise($response); - } - - private function createSink(StreamInterface $stream, array $options) - { - if (!empty($options['stream'])) { - return $stream; - } - - $sink = isset($options['sink']) - ? $options['sink'] - : fopen('php://temp', 'r+'); - - return is_string($sink) - ? new Psr7\LazyOpenStream($sink, 'w+') - : Psr7\stream_for($sink); - } - - private function checkDecode(array $options, array $headers, $stream) - { - // Automatically decode responses when instructed. - if (!empty($options['decode_content'])) { - $normalizedKeys = \GuzzleHttp\normalize_header_keys($headers); - if (isset($normalizedKeys['content-encoding'])) { - $encoding = $headers[$normalizedKeys['content-encoding']]; - if ($encoding[0] === 'gzip' || $encoding[0] === 'deflate') { - $stream = new Psr7\InflateStream( - Psr7\stream_for($stream) - ); - $headers['x-encoded-content-encoding'] - = $headers[$normalizedKeys['content-encoding']]; - // Remove content-encoding header - unset($headers[$normalizedKeys['content-encoding']]); - // Fix content-length header - if (isset($normalizedKeys['content-length'])) { - $headers['x-encoded-content-length'] - = $headers[$normalizedKeys['content-length']]; - - $length = (int) $stream->getSize(); - if ($length === 0) { - unset($headers[$normalizedKeys['content-length']]); - } else { - $headers[$normalizedKeys['content-length']] = [$length]; - } - } - } - } - } - - return [$stream, $headers]; - } - - /** - * Drains the source stream into the "sink" client option. - * - * @param StreamInterface $source - * @param StreamInterface $sink - * @param string $contentLength Header specifying the amount of - * data to read. - * - * @return StreamInterface - * @throws \RuntimeException when the sink option is invalid. - */ - private function drain( - StreamInterface $source, - StreamInterface $sink, - $contentLength - ) { - // If a content-length header is provided, then stop reading once - // that number of bytes has been read. This can prevent infinitely - // reading from a stream when dealing with servers that do not honor - // Connection: Close headers. - Psr7\copy_to_stream( - $source, - $sink, - (strlen($contentLength) > 0 && (int) $contentLength > 0) ? (int) $contentLength : -1 - ); - - $sink->seek(0); - $source->close(); - - return $sink; - } - - /** - * Create a resource and check to ensure it was created successfully - * - * @param callable $callback Callable that returns stream resource - * - * @return resource - * @throws \RuntimeException on error - */ - private function createResource(callable $callback) - { - $errors = null; - set_error_handler(function ($_, $msg, $file, $line) use (&$errors) { - $errors[] = [ - 'message' => $msg, - 'file' => $file, - 'line' => $line - ]; - return true; - }); - - $resource = $callback(); - restore_error_handler(); - - if (!$resource) { - $message = 'Error creating resource: '; - foreach ($errors as $err) { - foreach ($err as $key => $value) { - $message .= "[$key] $value" . PHP_EOL; - } - } - throw new \RuntimeException(trim($message)); - } - - return $resource; - } - - private function createStream(RequestInterface $request, array $options) - { - static $methods; - if (!$methods) { - $methods = array_flip(get_class_methods(__CLASS__)); - } - - // HTTP/1.1 streams using the PHP stream wrapper require a - // Connection: close header - if ($request->getProtocolVersion() == '1.1' - && !$request->hasHeader('Connection') - ) { - $request = $request->withHeader('Connection', 'close'); - } - - // Ensure SSL is verified by default - if (!isset($options['verify'])) { - $options['verify'] = true; - } - - $params = []; - $context = $this->getDefaultContext($request); - - if (isset($options['on_headers']) && !is_callable($options['on_headers'])) { - throw new \InvalidArgumentException('on_headers must be callable'); - } - - if (!empty($options)) { - foreach ($options as $key => $value) { - $method = "add_{$key}"; - if (isset($methods[$method])) { - $this->{$method}($request, $context, $value, $params); - } - } - } - - if (isset($options['stream_context'])) { - if (!is_array($options['stream_context'])) { - throw new \InvalidArgumentException('stream_context must be an array'); - } - $context = array_replace_recursive( - $context, - $options['stream_context'] - ); - } - - // Microsoft NTLM authentication only supported with curl handler - if (isset($options['auth']) - && is_array($options['auth']) - && isset($options['auth'][2]) - && 'ntlm' == $options['auth'][2] - ) { - throw new \InvalidArgumentException('Microsoft NTLM authentication only supported with curl handler'); - } - - $uri = $this->resolveHost($request, $options); - - $context = $this->createResource( - function () use ($context, $params) { - return stream_context_create($context, $params); - } - ); - - return $this->createResource( - function () use ($uri, &$http_response_header, $context, $options) { - $resource = fopen((string) $uri, 'r', null, $context); - $this->lastHeaders = $http_response_header; - - if (isset($options['read_timeout'])) { - $readTimeout = $options['read_timeout']; - $sec = (int) $readTimeout; - $usec = ($readTimeout - $sec) * 100000; - stream_set_timeout($resource, $sec, $usec); - } - - return $resource; - } - ); - } - - private function resolveHost(RequestInterface $request, array $options) - { - $uri = $request->getUri(); - - if (isset($options['force_ip_resolve']) && !filter_var($uri->getHost(), FILTER_VALIDATE_IP)) { - if ('v4' === $options['force_ip_resolve']) { - $records = dns_get_record($uri->getHost(), DNS_A); - if (!isset($records[0]['ip'])) { - throw new ConnectException( - sprintf( - "Could not resolve IPv4 address for host '%s'", - $uri->getHost() - ), - $request - ); - } - $uri = $uri->withHost($records[0]['ip']); - } elseif ('v6' === $options['force_ip_resolve']) { - $records = dns_get_record($uri->getHost(), DNS_AAAA); - if (!isset($records[0]['ipv6'])) { - throw new ConnectException( - sprintf( - "Could not resolve IPv6 address for host '%s'", - $uri->getHost() - ), - $request - ); - } - $uri = $uri->withHost('[' . $records[0]['ipv6'] . ']'); - } - } - - return $uri; - } - - private function getDefaultContext(RequestInterface $request) - { - $headers = ''; - foreach ($request->getHeaders() as $name => $value) { - foreach ($value as $val) { - $headers .= "$name: $val\r\n"; - } - } - - $context = [ - 'http' => [ - 'method' => $request->getMethod(), - 'header' => $headers, - 'protocol_version' => $request->getProtocolVersion(), - 'ignore_errors' => true, - 'follow_location' => 0, - ], - ]; - - $body = (string) $request->getBody(); - - if (!empty($body)) { - $context['http']['content'] = $body; - // Prevent the HTTP handler from adding a Content-Type header. - if (!$request->hasHeader('Content-Type')) { - $context['http']['header'] .= "Content-Type:\r\n"; - } - } - - $context['http']['header'] = rtrim($context['http']['header']); - - return $context; - } - - private function add_proxy(RequestInterface $request, &$options, $value, &$params) - { - if (!is_array($value)) { - $options['http']['proxy'] = $value; - } else { - $scheme = $request->getUri()->getScheme(); - if (isset($value[$scheme])) { - if (!isset($value['no']) - || !\GuzzleHttp\is_host_in_noproxy( - $request->getUri()->getHost(), - $value['no'] - ) - ) { - $options['http']['proxy'] = $value[$scheme]; - } - } - } - } - - private function add_timeout(RequestInterface $request, &$options, $value, &$params) - { - if ($value > 0) { - $options['http']['timeout'] = $value; - } - } - - private function add_verify(RequestInterface $request, &$options, $value, &$params) - { - if ($value === true) { - // PHP 5.6 or greater will find the system cert by default. When - // < 5.6, use the Guzzle bundled cacert. - if (PHP_VERSION_ID < 50600) { - $options['ssl']['cafile'] = \GuzzleHttp\default_ca_bundle(); - } - } elseif (is_string($value)) { - $options['ssl']['cafile'] = $value; - if (!file_exists($value)) { - throw new \RuntimeException("SSL CA bundle not found: $value"); - } - } elseif ($value === false) { - $options['ssl']['verify_peer'] = false; - $options['ssl']['verify_peer_name'] = false; - return; - } else { - throw new \InvalidArgumentException('Invalid verify request option'); - } - - $options['ssl']['verify_peer'] = true; - $options['ssl']['verify_peer_name'] = true; - $options['ssl']['allow_self_signed'] = false; - } - - private function add_cert(RequestInterface $request, &$options, $value, &$params) - { - if (is_array($value)) { - $options['ssl']['passphrase'] = $value[1]; - $value = $value[0]; - } - - if (!file_exists($value)) { - throw new \RuntimeException("SSL certificate not found: {$value}"); - } - - $options['ssl']['local_cert'] = $value; - } - - private function add_progress(RequestInterface $request, &$options, $value, &$params) - { - $this->addNotification( - $params, - function ($code, $a, $b, $c, $transferred, $total) use ($value) { - if ($code == STREAM_NOTIFY_PROGRESS) { - $value($total, $transferred, null, null); - } - } - ); - } - - private function add_debug(RequestInterface $request, &$options, $value, &$params) - { - if ($value === false) { - return; - } - - static $map = [ - STREAM_NOTIFY_CONNECT => 'CONNECT', - STREAM_NOTIFY_AUTH_REQUIRED => 'AUTH_REQUIRED', - STREAM_NOTIFY_AUTH_RESULT => 'AUTH_RESULT', - STREAM_NOTIFY_MIME_TYPE_IS => 'MIME_TYPE_IS', - STREAM_NOTIFY_FILE_SIZE_IS => 'FILE_SIZE_IS', - STREAM_NOTIFY_REDIRECTED => 'REDIRECTED', - STREAM_NOTIFY_PROGRESS => 'PROGRESS', - STREAM_NOTIFY_FAILURE => 'FAILURE', - STREAM_NOTIFY_COMPLETED => 'COMPLETED', - STREAM_NOTIFY_RESOLVE => 'RESOLVE', - ]; - static $args = ['severity', 'message', 'message_code', - 'bytes_transferred', 'bytes_max']; - - $value = \GuzzleHttp\debug_resource($value); - $ident = $request->getMethod() . ' ' . $request->getUri()->withFragment(''); - $this->addNotification( - $params, - function () use ($ident, $value, $map, $args) { - $passed = func_get_args(); - $code = array_shift($passed); - fprintf($value, '<%s> [%s] ', $ident, $map[$code]); - foreach (array_filter($passed) as $i => $v) { - fwrite($value, $args[$i] . ': "' . $v . '" '); - } - fwrite($value, "\n"); - } - ); - } - - private function addNotification(array &$params, callable $notify) - { - // Wrap the existing function if needed. - if (!isset($params['notification'])) { - $params['notification'] = $notify; - } else { - $params['notification'] = $this->callArray([ - $params['notification'], - $notify - ]); - } - } - - private function callArray(array $functions) - { - return function () use ($functions) { - $args = func_get_args(); - foreach ($functions as $fn) { - call_user_func_array($fn, $args); - } - }; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/HandlerStack.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/HandlerStack.php deleted file mode 100644 index 6a49cc06..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/HandlerStack.php +++ /dev/null @@ -1,277 +0,0 @@ -push(Middleware::httpErrors(), 'http_errors'); - $stack->push(Middleware::redirect(), 'allow_redirects'); - $stack->push(Middleware::cookies(), 'cookies'); - $stack->push(Middleware::prepareBody(), 'prepare_body'); - - return $stack; - } - - /** - * @param callable $handler Underlying HTTP handler. - */ - public function __construct(callable $handler = null) - { - $this->handler = $handler; - } - - /** - * Invokes the handler stack as a composed handler - * - * @param RequestInterface $request - * @param array $options - * - * @return ResponseInterface|PromiseInterface - */ - public function __invoke(RequestInterface $request, array $options) - { - $handler = $this->resolve(); - - return $handler($request, $options); - } - - /** - * Dumps a string representation of the stack. - * - * @return string - */ - public function __toString() - { - $depth = 0; - $stack = []; - if ($this->handler) { - $stack[] = "0) Handler: " . $this->debugCallable($this->handler); - } - - $result = ''; - foreach (array_reverse($this->stack) as $tuple) { - $depth++; - $str = "{$depth}) Name: '{$tuple[1]}', "; - $str .= "Function: " . $this->debugCallable($tuple[0]); - $result = "> {$str}\n{$result}"; - $stack[] = $str; - } - - foreach (array_keys($stack) as $k) { - $result .= "< {$stack[$k]}\n"; - } - - return $result; - } - - /** - * Set the HTTP handler that actually returns a promise. - * - * @param callable $handler Accepts a request and array of options and - * returns a Promise. - */ - public function setHandler(callable $handler) - { - $this->handler = $handler; - $this->cached = null; - } - - /** - * Returns true if the builder has a handler. - * - * @return bool - */ - public function hasHandler() - { - return (bool) $this->handler; - } - - /** - * Unshift a middleware to the bottom of the stack. - * - * @param callable $middleware Middleware function - * @param string $name Name to register for this middleware. - */ - public function unshift(callable $middleware, $name = null) - { - array_unshift($this->stack, [$middleware, $name]); - $this->cached = null; - } - - /** - * Push a middleware to the top of the stack. - * - * @param callable $middleware Middleware function - * @param string $name Name to register for this middleware. - */ - public function push(callable $middleware, $name = '') - { - $this->stack[] = [$middleware, $name]; - $this->cached = null; - } - - /** - * Add a middleware before another middleware by name. - * - * @param string $findName Middleware to find - * @param callable $middleware Middleware function - * @param string $withName Name to register for this middleware. - */ - public function before($findName, callable $middleware, $withName = '') - { - $this->splice($findName, $withName, $middleware, true); - } - - /** - * Add a middleware after another middleware by name. - * - * @param string $findName Middleware to find - * @param callable $middleware Middleware function - * @param string $withName Name to register for this middleware. - */ - public function after($findName, callable $middleware, $withName = '') - { - $this->splice($findName, $withName, $middleware, false); - } - - /** - * Remove a middleware by instance or name from the stack. - * - * @param callable|string $remove Middleware to remove by instance or name. - */ - public function remove($remove) - { - $this->cached = null; - $idx = is_callable($remove) ? 0 : 1; - $this->stack = array_values(array_filter( - $this->stack, - function ($tuple) use ($idx, $remove) { - return $tuple[$idx] !== $remove; - } - )); - } - - /** - * Compose the middleware and handler into a single callable function. - * - * @return callable - */ - public function resolve() - { - if (!$this->cached) { - if (!($prev = $this->handler)) { - throw new \LogicException('No handler has been specified'); - } - - foreach (array_reverse($this->stack) as $fn) { - $prev = $fn[0]($prev); - } - - $this->cached = $prev; - } - - return $this->cached; - } - - /** - * @param string $name - * @return int - */ - private function findByName($name) - { - foreach ($this->stack as $k => $v) { - if ($v[1] === $name) { - return $k; - } - } - - throw new \InvalidArgumentException("Middleware not found: $name"); - } - - /** - * Splices a function into the middleware list at a specific position. - * - * @param string $findName - * @param string $withName - * @param callable $middleware - * @param bool $before - */ - private function splice($findName, $withName, callable $middleware, $before) - { - $this->cached = null; - $idx = $this->findByName($findName); - $tuple = [$middleware, $withName]; - - if ($before) { - if ($idx === 0) { - array_unshift($this->stack, $tuple); - } else { - $replacement = [$tuple, $this->stack[$idx]]; - array_splice($this->stack, $idx, 1, $replacement); - } - } elseif ($idx === count($this->stack) - 1) { - $this->stack[] = $tuple; - } else { - $replacement = [$this->stack[$idx], $tuple]; - array_splice($this->stack, $idx, 1, $replacement); - } - } - - /** - * Provides a debug string for a given callable. - * - * @param array|callable $fn Function to write as a string. - * - * @return string - */ - private function debugCallable($fn) - { - if (is_string($fn)) { - return "callable({$fn})"; - } - - if (is_array($fn)) { - return is_string($fn[0]) - ? "callable({$fn[0]}::{$fn[1]})" - : "callable(['" . get_class($fn[0]) . "', '{$fn[1]}'])"; - } - - return 'callable(' . spl_object_hash($fn) . ')'; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/MessageFormatter.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/MessageFormatter.php deleted file mode 100644 index dc36bb52..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/MessageFormatter.php +++ /dev/null @@ -1,185 +0,0 @@ ->>>>>>>\n{request}\n<<<<<<<<\n{response}\n--------\n{error}"; - const SHORT = '[{ts}] "{method} {target} HTTP/{version}" {code}'; - - /** @var string Template used to format log messages */ - private $template; - - /** - * @param string $template Log message template - */ - public function __construct($template = self::CLF) - { - $this->template = $template ?: self::CLF; - } - - /** - * Returns a formatted message string. - * - * @param RequestInterface $request Request that was sent - * @param ResponseInterface $response Response that was received - * @param \Exception $error Exception that was received - * - * @return string - */ - public function format( - RequestInterface $request, - ResponseInterface $response = null, - \Exception $error = null - ) { - $cache = []; - - return preg_replace_callback( - '/{\s*([A-Za-z_\-\.0-9]+)\s*}/', - function (array $matches) use ($request, $response, $error, &$cache) { - if (isset($cache[$matches[1]])) { - return $cache[$matches[1]]; - } - - $result = ''; - switch ($matches[1]) { - case 'request': - $result = Psr7\str($request); - break; - case 'response': - $result = $response ? Psr7\str($response) : ''; - break; - case 'req_headers': - $result = trim($request->getMethod() - . ' ' . $request->getRequestTarget()) - . ' HTTP/' . $request->getProtocolVersion() . "\r\n" - . $this->headers($request); - break; - case 'res_headers': - $result = $response ? - sprintf( - 'HTTP/%s %d %s', - $response->getProtocolVersion(), - $response->getStatusCode(), - $response->getReasonPhrase() - ) . "\r\n" . $this->headers($response) - : 'NULL'; - break; - case 'req_body': - $result = $request->getBody(); - break; - case 'res_body': - $result = $response ? $response->getBody() : 'NULL'; - break; - case 'ts': - case 'date_iso_8601': - $result = gmdate('c'); - break; - case 'date_common_log': - $result = date('d/M/Y:H:i:s O'); - break; - case 'method': - $result = $request->getMethod(); - break; - case 'version': - $result = $request->getProtocolVersion(); - break; - case 'uri': - case 'url': - $result = $request->getUri(); - break; - case 'target': - $result = $request->getRequestTarget(); - break; - case 'req_version': - $result = $request->getProtocolVersion(); - break; - case 'res_version': - $result = $response - ? $response->getProtocolVersion() - : 'NULL'; - break; - case 'host': - $result = $request->getHeaderLine('Host'); - break; - case 'hostname': - $result = gethostname(); - break; - case 'code': - $result = $response ? $response->getStatusCode() : 'NULL'; - break; - case 'phrase': - $result = $response ? $response->getReasonPhrase() : 'NULL'; - break; - case 'error': - $result = $error ? $error->getMessage() : 'NULL'; - break; - default: - // handle prefixed dynamic headers - if (strpos($matches[1], 'req_header_') === 0) { - $result = $request->getHeaderLine(substr($matches[1], 11)); - } elseif (strpos($matches[1], 'res_header_') === 0) { - $result = $response - ? $response->getHeaderLine(substr($matches[1], 11)) - : 'NULL'; - } - } - - $cache[$matches[1]] = $result; - return $result; - }, - $this->template - ); - } - - /** - * Get headers from message as string - * - * @return string - */ - private function headers(MessageInterface $message) - { - $result = ''; - foreach ($message->getHeaders() as $name => $values) { - $result .= $name . ': ' . implode(', ', $values) . "\r\n"; - } - - return trim($result); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/Middleware.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/Middleware.php deleted file mode 100644 index bffc1974..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/Middleware.php +++ /dev/null @@ -1,254 +0,0 @@ -withCookieHeader($request); - return $handler($request, $options) - ->then( - function ($response) use ($cookieJar, $request) { - $cookieJar->extractCookies($request, $response); - return $response; - } - ); - }; - }; - } - - /** - * Middleware that throws exceptions for 4xx or 5xx responses when the - * "http_error" request option is set to true. - * - * @return callable Returns a function that accepts the next handler. - */ - public static function httpErrors() - { - return function (callable $handler) { - return function ($request, array $options) use ($handler) { - if (empty($options['http_errors'])) { - return $handler($request, $options); - } - return $handler($request, $options)->then( - function (ResponseInterface $response) use ($request) { - $code = $response->getStatusCode(); - if ($code < 400) { - return $response; - } - throw RequestException::create($request, $response); - } - ); - }; - }; - } - - /** - * Middleware that pushes history data to an ArrayAccess container. - * - * @param array|\ArrayAccess $container Container to hold the history (by reference). - * - * @return callable Returns a function that accepts the next handler. - * @throws \InvalidArgumentException if container is not an array or ArrayAccess. - */ - public static function history(&$container) - { - if (!is_array($container) && !$container instanceof \ArrayAccess) { - throw new \InvalidArgumentException('history container must be an array or object implementing ArrayAccess'); - } - - return function (callable $handler) use (&$container) { - return function ($request, array $options) use ($handler, &$container) { - return $handler($request, $options)->then( - function ($value) use ($request, &$container, $options) { - $container[] = [ - 'request' => $request, - 'response' => $value, - 'error' => null, - 'options' => $options - ]; - return $value; - }, - function ($reason) use ($request, &$container, $options) { - $container[] = [ - 'request' => $request, - 'response' => null, - 'error' => $reason, - 'options' => $options - ]; - return \GuzzleHttp\Promise\rejection_for($reason); - } - ); - }; - }; - } - - /** - * Middleware that invokes a callback before and after sending a request. - * - * The provided listener cannot modify or alter the response. It simply - * "taps" into the chain to be notified before returning the promise. The - * before listener accepts a request and options array, and the after - * listener accepts a request, options array, and response promise. - * - * @param callable $before Function to invoke before forwarding the request. - * @param callable $after Function invoked after forwarding. - * - * @return callable Returns a function that accepts the next handler. - */ - public static function tap(callable $before = null, callable $after = null) - { - return function (callable $handler) use ($before, $after) { - return function ($request, array $options) use ($handler, $before, $after) { - if ($before) { - $before($request, $options); - } - $response = $handler($request, $options); - if ($after) { - $after($request, $options, $response); - } - return $response; - }; - }; - } - - /** - * Middleware that handles request redirects. - * - * @return callable Returns a function that accepts the next handler. - */ - public static function redirect() - { - return function (callable $handler) { - return new RedirectMiddleware($handler); - }; - } - - /** - * Middleware that retries requests based on the boolean result of - * invoking the provided "decider" function. - * - * If no delay function is provided, a simple implementation of exponential - * backoff will be utilized. - * - * @param callable $decider Function that accepts the number of retries, - * a request, [response], and [exception] and - * returns true if the request is to be retried. - * @param callable $delay Function that accepts the number of retries and - * returns the number of milliseconds to delay. - * - * @return callable Returns a function that accepts the next handler. - */ - public static function retry(callable $decider, callable $delay = null) - { - return function (callable $handler) use ($decider, $delay) { - return new RetryMiddleware($decider, $handler, $delay); - }; - } - - /** - * Middleware that logs requests, responses, and errors using a message - * formatter. - * - * @param LoggerInterface $logger Logs messages. - * @param MessageFormatter $formatter Formatter used to create message strings. - * @param string $logLevel Level at which to log requests. - * - * @return callable Returns a function that accepts the next handler. - */ - public static function log(LoggerInterface $logger, MessageFormatter $formatter, $logLevel = 'info' /* \Psr\Log\LogLevel::INFO */) - { - return function (callable $handler) use ($logger, $formatter, $logLevel) { - return function ($request, array $options) use ($handler, $logger, $formatter, $logLevel) { - return $handler($request, $options)->then( - function ($response) use ($logger, $request, $formatter, $logLevel) { - $message = $formatter->format($request, $response); - $logger->log($logLevel, $message); - return $response; - }, - function ($reason) use ($logger, $request, $formatter) { - $response = $reason instanceof RequestException - ? $reason->getResponse() - : null; - $message = $formatter->format($request, $response, $reason); - $logger->notice($message); - return \GuzzleHttp\Promise\rejection_for($reason); - } - ); - }; - }; - } - - /** - * This middleware adds a default content-type if possible, a default - * content-length or transfer-encoding header, and the expect header. - * - * @return callable - */ - public static function prepareBody() - { - return function (callable $handler) { - return new PrepareBodyMiddleware($handler); - }; - } - - /** - * Middleware that applies a map function to the request before passing to - * the next handler. - * - * @param callable $fn Function that accepts a RequestInterface and returns - * a RequestInterface. - * @return callable - */ - public static function mapRequest(callable $fn) - { - return function (callable $handler) use ($fn) { - return function ($request, array $options) use ($handler, $fn) { - return $handler($fn($request), $options); - }; - }; - } - - /** - * Middleware that applies a map function to the resolved promise's - * response. - * - * @param callable $fn Function that accepts a ResponseInterface and - * returns a ResponseInterface. - * @return callable - */ - public static function mapResponse(callable $fn) - { - return function (callable $handler) use ($fn) { - return function ($request, array $options) use ($handler, $fn) { - return $handler($request, $options)->then($fn); - }; - }; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/Pool.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/Pool.php deleted file mode 100644 index 5838db4f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/Pool.php +++ /dev/null @@ -1,134 +0,0 @@ - $rfn) { - if ($rfn instanceof RequestInterface) { - yield $key => $client->sendAsync($rfn, $opts); - } elseif (is_callable($rfn)) { - yield $key => $rfn($opts); - } else { - throw new \InvalidArgumentException('Each value yielded by ' - . 'the iterator must be a Psr7\Http\Message\RequestInterface ' - . 'or a callable that returns a promise that fulfills ' - . 'with a Psr7\Message\Http\ResponseInterface object.'); - } - } - }; - - $this->each = new EachPromise($requests(), $config); - } - - /** - * Get promise - * - * @return PromiseInterface - */ - public function promise() - { - return $this->each->promise(); - } - - /** - * Sends multiple requests concurrently and returns an array of responses - * and exceptions that uses the same ordering as the provided requests. - * - * IMPORTANT: This method keeps every request and response in memory, and - * as such, is NOT recommended when sending a large number or an - * indeterminate number of requests concurrently. - * - * @param ClientInterface $client Client used to send the requests - * @param array|\Iterator $requests Requests to send concurrently. - * @param array $options Passes through the options available in - * {@see GuzzleHttp\Pool::__construct} - * - * @return array Returns an array containing the response or an exception - * in the same order that the requests were sent. - * @throws \InvalidArgumentException if the event format is incorrect. - */ - public static function batch( - ClientInterface $client, - $requests, - array $options = [] - ) { - $res = []; - self::cmpCallback($options, 'fulfilled', $res); - self::cmpCallback($options, 'rejected', $res); - $pool = new static($client, $requests, $options); - $pool->promise()->wait(); - ksort($res); - - return $res; - } - - /** - * Execute callback(s) - * - * @return void - */ - private static function cmpCallback(array &$options, $name, array &$results) - { - if (!isset($options[$name])) { - $options[$name] = function ($v, $k) use (&$results) { - $results[$k] = $v; - }; - } else { - $currentFn = $options[$name]; - $options[$name] = function ($v, $k) use (&$results, $currentFn) { - $currentFn($v, $k); - $results[$k] = $v; - }; - } - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/PrepareBodyMiddleware.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/PrepareBodyMiddleware.php deleted file mode 100644 index 568a1e90..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/PrepareBodyMiddleware.php +++ /dev/null @@ -1,111 +0,0 @@ -nextHandler = $nextHandler; - } - - /** - * @param RequestInterface $request - * @param array $options - * - * @return PromiseInterface - */ - public function __invoke(RequestInterface $request, array $options) - { - $fn = $this->nextHandler; - - // Don't do anything if the request has no body. - if ($request->getBody()->getSize() === 0) { - return $fn($request, $options); - } - - $modify = []; - - // Add a default content-type if possible. - if (!$request->hasHeader('Content-Type')) { - if ($uri = $request->getBody()->getMetadata('uri')) { - if ($type = Psr7\mimetype_from_filename($uri)) { - $modify['set_headers']['Content-Type'] = $type; - } - } - } - - // Add a default content-length or transfer-encoding header. - if (!$request->hasHeader('Content-Length') - && !$request->hasHeader('Transfer-Encoding') - ) { - $size = $request->getBody()->getSize(); - if ($size !== null) { - $modify['set_headers']['Content-Length'] = $size; - } else { - $modify['set_headers']['Transfer-Encoding'] = 'chunked'; - } - } - - // Add the expect header if needed. - $this->addExpectHeader($request, $options, $modify); - - return $fn(Psr7\modify_request($request, $modify), $options); - } - - /** - * Add expect header - * - * @return void - */ - private function addExpectHeader( - RequestInterface $request, - array $options, - array &$modify - ) { - // Determine if the Expect header should be used - if ($request->hasHeader('Expect')) { - return; - } - - $expect = isset($options['expect']) ? $options['expect'] : null; - - // Return if disabled or if you're not using HTTP/1.1 or HTTP/2.0 - if ($expect === false || $request->getProtocolVersion() < 1.1) { - return; - } - - // The expect header is unconditionally enabled - if ($expect === true) { - $modify['set_headers']['Expect'] = '100-Continue'; - return; - } - - // By default, send the expect header when the payload is > 1mb - if ($expect === null) { - $expect = 1048576; - } - - // Always add if the body cannot be rewound, the size cannot be - // determined, or the size is greater than the cutoff threshold - $body = $request->getBody(); - $size = $body->getSize(); - - if ($size === null || $size >= (int) $expect || !$body->isSeekable()) { - $modify['set_headers']['Expect'] = '100-Continue'; - } - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/RedirectMiddleware.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/RedirectMiddleware.php deleted file mode 100644 index 2f301261..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/RedirectMiddleware.php +++ /dev/null @@ -1,255 +0,0 @@ - 5, - 'protocols' => ['http', 'https'], - 'strict' => false, - 'referer' => false, - 'track_redirects' => false, - ]; - - /** @var callable */ - private $nextHandler; - - /** - * @param callable $nextHandler Next handler to invoke. - */ - public function __construct(callable $nextHandler) - { - $this->nextHandler = $nextHandler; - } - - /** - * @param RequestInterface $request - * @param array $options - * - * @return PromiseInterface - */ - public function __invoke(RequestInterface $request, array $options) - { - $fn = $this->nextHandler; - - if (empty($options['allow_redirects'])) { - return $fn($request, $options); - } - - if ($options['allow_redirects'] === true) { - $options['allow_redirects'] = self::$defaultSettings; - } elseif (!is_array($options['allow_redirects'])) { - throw new \InvalidArgumentException('allow_redirects must be true, false, or array'); - } else { - // Merge the default settings with the provided settings - $options['allow_redirects'] += self::$defaultSettings; - } - - if (empty($options['allow_redirects']['max'])) { - return $fn($request, $options); - } - - return $fn($request, $options) - ->then(function (ResponseInterface $response) use ($request, $options) { - return $this->checkRedirect($request, $options, $response); - }); - } - - /** - * @param RequestInterface $request - * @param array $options - * @param ResponseInterface $response - * - * @return ResponseInterface|PromiseInterface - */ - public function checkRedirect( - RequestInterface $request, - array $options, - ResponseInterface $response - ) { - if (substr($response->getStatusCode(), 0, 1) != '3' - || !$response->hasHeader('Location') - ) { - return $response; - } - - $this->guardMax($request, $options); - $nextRequest = $this->modifyRequest($request, $options, $response); - - if (isset($options['allow_redirects']['on_redirect'])) { - call_user_func( - $options['allow_redirects']['on_redirect'], - $request, - $response, - $nextRequest->getUri() - ); - } - - /** @var PromiseInterface|ResponseInterface $promise */ - $promise = $this($nextRequest, $options); - - // Add headers to be able to track history of redirects. - if (!empty($options['allow_redirects']['track_redirects'])) { - return $this->withTracking( - $promise, - (string) $nextRequest->getUri(), - $response->getStatusCode() - ); - } - - return $promise; - } - - /** - * Enable tracking on promise. - * - * @return PromiseInterface - */ - private function withTracking(PromiseInterface $promise, $uri, $statusCode) - { - return $promise->then( - function (ResponseInterface $response) use ($uri, $statusCode) { - // Note that we are pushing to the front of the list as this - // would be an earlier response than what is currently present - // in the history header. - $historyHeader = $response->getHeader(self::HISTORY_HEADER); - $statusHeader = $response->getHeader(self::STATUS_HISTORY_HEADER); - array_unshift($historyHeader, $uri); - array_unshift($statusHeader, $statusCode); - return $response->withHeader(self::HISTORY_HEADER, $historyHeader) - ->withHeader(self::STATUS_HISTORY_HEADER, $statusHeader); - } - ); - } - - /** - * Check for too many redirects - * - * @return void - * - * @throws TooManyRedirectsException Too many redirects. - */ - private function guardMax(RequestInterface $request, array &$options) - { - $current = isset($options['__redirect_count']) - ? $options['__redirect_count'] - : 0; - $options['__redirect_count'] = $current + 1; - $max = $options['allow_redirects']['max']; - - if ($options['__redirect_count'] > $max) { - throw new TooManyRedirectsException( - "Will not follow more than {$max} redirects", - $request - ); - } - } - - /** - * @param RequestInterface $request - * @param array $options - * @param ResponseInterface $response - * - * @return RequestInterface - */ - public function modifyRequest( - RequestInterface $request, - array $options, - ResponseInterface $response - ) { - // Request modifications to apply. - $modify = []; - $protocols = $options['allow_redirects']['protocols']; - - // Use a GET request if this is an entity enclosing request and we are - // not forcing RFC compliance, but rather emulating what all browsers - // would do. - $statusCode = $response->getStatusCode(); - if ($statusCode == 303 || - ($statusCode <= 302 && !$options['allow_redirects']['strict']) - ) { - $modify['method'] = 'GET'; - $modify['body'] = ''; - } - - $uri = $this->redirectUri($request, $response, $protocols); - if (isset($options['idn_conversion']) && ($options['idn_conversion'] !== false)) { - $idnOptions = ($options['idn_conversion'] === true) ? IDNA_DEFAULT : $options['idn_conversion']; - $uri = _idn_uri_convert($uri, $idnOptions); - } - - $modify['uri'] = $uri; - Psr7\rewind_body($request); - - // Add the Referer header if it is told to do so and only - // add the header if we are not redirecting from https to http. - if ($options['allow_redirects']['referer'] - && $modify['uri']->getScheme() === $request->getUri()->getScheme() - ) { - $uri = $request->getUri()->withUserInfo(''); - $modify['set_headers']['Referer'] = (string) $uri; - } else { - $modify['remove_headers'][] = 'Referer'; - } - - // Remove Authorization header if host is different. - if ($request->getUri()->getHost() !== $modify['uri']->getHost()) { - $modify['remove_headers'][] = 'Authorization'; - } - - return Psr7\modify_request($request, $modify); - } - - /** - * Set the appropriate URL on the request based on the location header - * - * @param RequestInterface $request - * @param ResponseInterface $response - * @param array $protocols - * - * @return UriInterface - */ - private function redirectUri( - RequestInterface $request, - ResponseInterface $response, - array $protocols - ) { - $location = Psr7\UriResolver::resolve( - $request->getUri(), - new Psr7\Uri($response->getHeaderLine('Location')) - ); - - // Ensure that the redirect URI is allowed based on the protocols. - if (!in_array($location->getScheme(), $protocols)) { - throw new BadResponseException( - sprintf( - 'Redirect URI, %s, does not use one of the allowed redirect protocols: %s', - $location, - implode(', ', $protocols) - ), - $request, - $response - ); - } - - return $location; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/RequestOptions.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/RequestOptions.php deleted file mode 100644 index 355f658f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/RequestOptions.php +++ /dev/null @@ -1,263 +0,0 @@ -decider = $decider; - $this->nextHandler = $nextHandler; - $this->delay = $delay ?: __CLASS__ . '::exponentialDelay'; - } - - /** - * Default exponential backoff delay function. - * - * @param int $retries - * - * @return int milliseconds. - */ - public static function exponentialDelay($retries) - { - return (int) pow(2, $retries - 1) * 1000; - } - - /** - * @param RequestInterface $request - * @param array $options - * - * @return PromiseInterface - */ - public function __invoke(RequestInterface $request, array $options) - { - if (!isset($options['retries'])) { - $options['retries'] = 0; - } - - $fn = $this->nextHandler; - return $fn($request, $options) - ->then( - $this->onFulfilled($request, $options), - $this->onRejected($request, $options) - ); - } - - /** - * Execute fulfilled closure - * - * @return mixed - */ - private function onFulfilled(RequestInterface $req, array $options) - { - return function ($value) use ($req, $options) { - if (!call_user_func( - $this->decider, - $options['retries'], - $req, - $value, - null - )) { - return $value; - } - return $this->doRetry($req, $options, $value); - }; - } - - /** - * Execute rejected closure - * - * @return callable - */ - private function onRejected(RequestInterface $req, array $options) - { - return function ($reason) use ($req, $options) { - if (!call_user_func( - $this->decider, - $options['retries'], - $req, - null, - $reason - )) { - return \GuzzleHttp\Promise\rejection_for($reason); - } - return $this->doRetry($req, $options); - }; - } - - /** - * @return self - */ - private function doRetry(RequestInterface $request, array $options, ResponseInterface $response = null) - { - $options['delay'] = call_user_func($this->delay, ++$options['retries'], $response); - - return $this($request, $options); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/TransferStats.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/TransferStats.php deleted file mode 100644 index 87fb3c00..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/TransferStats.php +++ /dev/null @@ -1,126 +0,0 @@ -request = $request; - $this->response = $response; - $this->transferTime = $transferTime; - $this->handlerErrorData = $handlerErrorData; - $this->handlerStats = $handlerStats; - } - - /** - * @return RequestInterface - */ - public function getRequest() - { - return $this->request; - } - - /** - * Returns the response that was received (if any). - * - * @return ResponseInterface|null - */ - public function getResponse() - { - return $this->response; - } - - /** - * Returns true if a response was received. - * - * @return bool - */ - public function hasResponse() - { - return $this->response !== null; - } - - /** - * Gets handler specific error data. - * - * This might be an exception, a integer representing an error code, or - * anything else. Relying on this value assumes that you know what handler - * you are using. - * - * @return mixed - */ - public function getHandlerErrorData() - { - return $this->handlerErrorData; - } - - /** - * Get the effective URI the request was sent to. - * - * @return UriInterface - */ - public function getEffectiveUri() - { - return $this->request->getUri(); - } - - /** - * Get the estimated time the request was being transferred by the handler. - * - * @return float|null Time in seconds. - */ - public function getTransferTime() - { - return $this->transferTime; - } - - /** - * Gets an array of all of the handler specific transfer data. - * - * @return array - */ - public function getHandlerStats() - { - return $this->handlerStats; - } - - /** - * Get a specific handler statistic from the handler by name. - * - * @param string $stat Handler specific transfer stat to retrieve. - * - * @return mixed|null - */ - public function getHandlerStat($stat) - { - return isset($this->handlerStats[$stat]) - ? $this->handlerStats[$stat] - : null; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/UriTemplate.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/UriTemplate.php deleted file mode 100644 index 96dcfd09..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/UriTemplate.php +++ /dev/null @@ -1,237 +0,0 @@ - ['prefix' => '', 'joiner' => ',', 'query' => false], - '+' => ['prefix' => '', 'joiner' => ',', 'query' => false], - '#' => ['prefix' => '#', 'joiner' => ',', 'query' => false], - '.' => ['prefix' => '.', 'joiner' => '.', 'query' => false], - '/' => ['prefix' => '/', 'joiner' => '/', 'query' => false], - ';' => ['prefix' => ';', 'joiner' => ';', 'query' => true], - '?' => ['prefix' => '?', 'joiner' => '&', 'query' => true], - '&' => ['prefix' => '&', 'joiner' => '&', 'query' => true] - ]; - - /** @var array Delimiters */ - private static $delims = [':', '/', '?', '#', '[', ']', '@', '!', '$', - '&', '\'', '(', ')', '*', '+', ',', ';', '=']; - - /** @var array Percent encoded delimiters */ - private static $delimsPct = ['%3A', '%2F', '%3F', '%23', '%5B', '%5D', - '%40', '%21', '%24', '%26', '%27', '%28', '%29', '%2A', '%2B', '%2C', - '%3B', '%3D']; - - public function expand($template, array $variables) - { - if (false === strpos($template, '{')) { - return $template; - } - - $this->template = $template; - $this->variables = $variables; - - return preg_replace_callback( - '/\{([^\}]+)\}/', - [$this, 'expandMatch'], - $this->template - ); - } - - /** - * Parse an expression into parts - * - * @param string $expression Expression to parse - * - * @return array Returns an associative array of parts - */ - private function parseExpression($expression) - { - $result = []; - - if (isset(self::$operatorHash[$expression[0]])) { - $result['operator'] = $expression[0]; - $expression = substr($expression, 1); - } else { - $result['operator'] = ''; - } - - foreach (explode(',', $expression) as $value) { - $value = trim($value); - $varspec = []; - if ($colonPos = strpos($value, ':')) { - $varspec['value'] = substr($value, 0, $colonPos); - $varspec['modifier'] = ':'; - $varspec['position'] = (int) substr($value, $colonPos + 1); - } elseif (substr($value, -1) === '*') { - $varspec['modifier'] = '*'; - $varspec['value'] = substr($value, 0, -1); - } else { - $varspec['value'] = (string) $value; - $varspec['modifier'] = ''; - } - $result['values'][] = $varspec; - } - - return $result; - } - - /** - * Process an expansion - * - * @param array $matches Matches met in the preg_replace_callback - * - * @return string Returns the replacement string - */ - private function expandMatch(array $matches) - { - static $rfc1738to3986 = ['+' => '%20', '%7e' => '~']; - - $replacements = []; - $parsed = self::parseExpression($matches[1]); - $prefix = self::$operatorHash[$parsed['operator']]['prefix']; - $joiner = self::$operatorHash[$parsed['operator']]['joiner']; - $useQuery = self::$operatorHash[$parsed['operator']]['query']; - - foreach ($parsed['values'] as $value) { - if (!isset($this->variables[$value['value']])) { - continue; - } - - $variable = $this->variables[$value['value']]; - $actuallyUseQuery = $useQuery; - $expanded = ''; - - if (is_array($variable)) { - $isAssoc = $this->isAssoc($variable); - $kvp = []; - foreach ($variable as $key => $var) { - if ($isAssoc) { - $key = rawurlencode($key); - $isNestedArray = is_array($var); - } else { - $isNestedArray = false; - } - - if (!$isNestedArray) { - $var = rawurlencode($var); - if ($parsed['operator'] === '+' || - $parsed['operator'] === '#' - ) { - $var = $this->decodeReserved($var); - } - } - - if ($value['modifier'] === '*') { - if ($isAssoc) { - if ($isNestedArray) { - // Nested arrays must allow for deeply nested - // structures. - $var = strtr( - http_build_query([$key => $var]), - $rfc1738to3986 - ); - } else { - $var = $key . '=' . $var; - } - } elseif ($key > 0 && $actuallyUseQuery) { - $var = $value['value'] . '=' . $var; - } - } - - $kvp[$key] = $var; - } - - if (empty($variable)) { - $actuallyUseQuery = false; - } elseif ($value['modifier'] === '*') { - $expanded = implode($joiner, $kvp); - if ($isAssoc) { - // Don't prepend the value name when using the explode - // modifier with an associative array. - $actuallyUseQuery = false; - } - } else { - if ($isAssoc) { - // When an associative array is encountered and the - // explode modifier is not set, then the result must be - // a comma separated list of keys followed by their - // respective values. - foreach ($kvp as $k => &$v) { - $v = $k . ',' . $v; - } - } - $expanded = implode(',', $kvp); - } - } else { - if ($value['modifier'] === ':') { - $variable = substr($variable, 0, $value['position']); - } - $expanded = rawurlencode($variable); - if ($parsed['operator'] === '+' || $parsed['operator'] === '#') { - $expanded = $this->decodeReserved($expanded); - } - } - - if ($actuallyUseQuery) { - if (!$expanded && $joiner !== '&') { - $expanded = $value['value']; - } else { - $expanded = $value['value'] . '=' . $expanded; - } - } - - $replacements[] = $expanded; - } - - $ret = implode($joiner, $replacements); - if ($ret && $prefix) { - return $prefix . $ret; - } - - return $ret; - } - - /** - * Determines if an array is associative. - * - * This makes the assumption that input arrays are sequences or hashes. - * This assumption is a tradeoff for accuracy in favor of speed, but it - * should work in almost every case where input is supplied for a URI - * template. - * - * @param array $array Array to check - * - * @return bool - */ - private function isAssoc(array $array) - { - return $array && array_keys($array)[0] !== 0; - } - - /** - * Removes percent encoding on reserved characters (used with + and # - * modifiers). - * - * @param string $string String to fix - * - * @return string - */ - private function decodeReserved($string) - { - return str_replace(self::$delimsPct, self::$delims, $string); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/functions.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/functions.php deleted file mode 100644 index 5e806f63..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/functions.php +++ /dev/null @@ -1,394 +0,0 @@ -expand($template, $variables); -} - -/** - * Debug function used to describe the provided value type and class. - * - * @param mixed $input - * - * @return string Returns a string containing the type of the variable and - * if a class is provided, the class name. - */ -function describe_type($input) -{ - switch (gettype($input)) { - case 'object': - return 'object(' . get_class($input) . ')'; - case 'array': - return 'array(' . count($input) . ')'; - default: - ob_start(); - var_dump($input); - // normalize float vs double - return str_replace('double(', 'float(', rtrim(ob_get_clean())); - } -} - -/** - * Parses an array of header lines into an associative array of headers. - * - * @param iterable $lines Header lines array of strings in the following - * format: "Name: Value" - * @return array - */ -function headers_from_lines($lines) -{ - $headers = []; - - foreach ($lines as $line) { - $parts = explode(':', $line, 2); - $headers[trim($parts[0])][] = isset($parts[1]) - ? trim($parts[1]) - : null; - } - - return $headers; -} - -/** - * Returns a debug stream based on the provided variable. - * - * @param mixed $value Optional value - * - * @return resource - */ -function debug_resource($value = null) -{ - if (is_resource($value)) { - return $value; - } elseif (defined('STDOUT')) { - return STDOUT; - } - - return fopen('php://output', 'w'); -} - -/** - * Chooses and creates a default handler to use based on the environment. - * - * The returned handler is not wrapped by any default middlewares. - * - * @throws \RuntimeException if no viable Handler is available. - * @return callable Returns the best handler for the given system. - */ -function choose_handler() -{ - $handler = null; - if (function_exists('curl_multi_exec') && function_exists('curl_exec')) { - $handler = Proxy::wrapSync(new CurlMultiHandler(), new CurlHandler()); - } elseif (function_exists('curl_exec')) { - $handler = new CurlHandler(); - } elseif (function_exists('curl_multi_exec')) { - $handler = new CurlMultiHandler(); - } - - if (ini_get('allow_url_fopen')) { - $handler = $handler - ? Proxy::wrapStreaming($handler, new StreamHandler()) - : new StreamHandler(); - } elseif (!$handler) { - throw new \RuntimeException('GuzzleHttp requires cURL, the ' - . 'allow_url_fopen ini setting, or a custom HTTP handler.'); - } - - return $handler; -} - -/** - * Get the default User-Agent string to use with Guzzle - * - * @return string - */ -function default_user_agent() -{ - static $defaultAgent = ''; - - if (!$defaultAgent) { - $defaultAgent = 'GuzzleHttp/' . Client::VERSION; - if (extension_loaded('curl') && function_exists('curl_version')) { - $defaultAgent .= ' curl/' . \curl_version()['version']; - } - $defaultAgent .= ' PHP/' . PHP_VERSION; - } - - return $defaultAgent; -} - -/** - * Returns the default cacert bundle for the current system. - * - * First, the openssl.cafile and curl.cainfo php.ini settings are checked. - * If those settings are not configured, then the common locations for - * bundles found on Red Hat, CentOS, Fedora, Ubuntu, Debian, FreeBSD, OS X - * and Windows are checked. If any of these file locations are found on - * disk, they will be utilized. - * - * Note: the result of this function is cached for subsequent calls. - * - * @return string - * @throws \RuntimeException if no bundle can be found. - */ -function default_ca_bundle() -{ - static $cached = null; - static $cafiles = [ - // Red Hat, CentOS, Fedora (provided by the ca-certificates package) - '/etc/pki/tls/certs/ca-bundle.crt', - // Ubuntu, Debian (provided by the ca-certificates package) - '/etc/ssl/certs/ca-certificates.crt', - // FreeBSD (provided by the ca_root_nss package) - '/usr/local/share/certs/ca-root-nss.crt', - // SLES 12 (provided by the ca-certificates package) - '/var/lib/ca-certificates/ca-bundle.pem', - // OS X provided by homebrew (using the default path) - '/usr/local/etc/openssl/cert.pem', - // Google app engine - '/etc/ca-certificates.crt', - // Windows? - 'C:\\windows\\system32\\curl-ca-bundle.crt', - 'C:\\windows\\curl-ca-bundle.crt', - ]; - - if ($cached) { - return $cached; - } - - if ($ca = ini_get('openssl.cafile')) { - return $cached = $ca; - } - - if ($ca = ini_get('curl.cainfo')) { - return $cached = $ca; - } - - foreach ($cafiles as $filename) { - if (file_exists($filename)) { - return $cached = $filename; - } - } - - throw new \RuntimeException( - <<< EOT -No system CA bundle could be found in any of the the common system locations. -PHP versions earlier than 5.6 are not properly configured to use the system's -CA bundle by default. In order to verify peer certificates, you will need to -supply the path on disk to a certificate bundle to the 'verify' request -option: http://docs.guzzlephp.org/en/latest/clients.html#verify. If you do not -need a specific certificate bundle, then Mozilla provides a commonly used CA -bundle which can be downloaded here (provided by the maintainer of cURL): -https://raw.githubusercontent.com/bagder/ca-bundle/master/ca-bundle.crt. Once -you have a CA bundle available on disk, you can set the 'openssl.cafile' PHP -ini setting to point to the path to the file, allowing you to omit the 'verify' -request option. See http://curl.haxx.se/docs/sslcerts.html for more -information. -EOT - ); -} - -/** - * Creates an associative array of lowercase header names to the actual - * header casing. - * - * @param array $headers - * - * @return array - */ -function normalize_header_keys(array $headers) -{ - $result = []; - foreach (array_keys($headers) as $key) { - $result[strtolower($key)] = $key; - } - - return $result; -} - -/** - * Returns true if the provided host matches any of the no proxy areas. - * - * This method will strip a port from the host if it is present. Each pattern - * can be matched with an exact match (e.g., "foo.com" == "foo.com") or a - * partial match: (e.g., "foo.com" == "baz.foo.com" and ".foo.com" == - * "baz.foo.com", but ".foo.com" != "foo.com"). - * - * Areas are matched in the following cases: - * 1. "*" (without quotes) always matches any hosts. - * 2. An exact match. - * 3. The area starts with "." and the area is the last part of the host. e.g. - * '.mit.edu' will match any host that ends with '.mit.edu'. - * - * @param string $host Host to check against the patterns. - * @param array $noProxyArray An array of host patterns. - * - * @return bool - */ -function is_host_in_noproxy($host, array $noProxyArray) -{ - if (strlen($host) === 0) { - throw new \InvalidArgumentException('Empty host provided'); - } - - // Strip port if present. - if (strpos($host, ':')) { - $host = explode($host, ':', 2)[0]; - } - - foreach ($noProxyArray as $area) { - // Always match on wildcards. - if ($area === '*') { - return true; - } elseif (empty($area)) { - // Don't match on empty values. - continue; - } elseif ($area === $host) { - // Exact matches. - return true; - } else { - // Special match if the area when prefixed with ".". Remove any - // existing leading "." and add a new leading ".". - $area = '.' . ltrim($area, '.'); - if (substr($host, -(strlen($area))) === $area) { - return true; - } - } - } - - return false; -} - -/** - * Wrapper for json_decode that throws when an error occurs. - * - * @param string $json JSON data to parse - * @param bool $assoc When true, returned objects will be converted - * into associative arrays. - * @param int $depth User specified recursion depth. - * @param int $options Bitmask of JSON decode options. - * - * @return mixed - * @throws Exception\InvalidArgumentException if the JSON cannot be decoded. - * @link http://www.php.net/manual/en/function.json-decode.php - */ -function json_decode($json, $assoc = false, $depth = 512, $options = 0) -{ - $data = \json_decode($json, $assoc, $depth, $options); - if (JSON_ERROR_NONE !== json_last_error()) { - throw new Exception\InvalidArgumentException( - 'json_decode error: ' . json_last_error_msg() - ); - } - - return $data; -} - -/** - * Wrapper for JSON encoding that throws when an error occurs. - * - * @param mixed $value The value being encoded - * @param int $options JSON encode option bitmask - * @param int $depth Set the maximum depth. Must be greater than zero. - * - * @return string - * @throws Exception\InvalidArgumentException if the JSON cannot be encoded. - * @link http://www.php.net/manual/en/function.json-encode.php - */ -function json_encode($value, $options = 0, $depth = 512) -{ - $json = \json_encode($value, $options, $depth); - if (JSON_ERROR_NONE !== json_last_error()) { - throw new Exception\InvalidArgumentException( - 'json_encode error: ' . json_last_error_msg() - ); - } - - return $json; -} - -/** - * Wrapper for the hrtime() or microtime() functions - * (depending on the PHP version, one of the two is used) - * - * @return float|mixed UNIX timestamp - * @internal - */ -function _current_time() -{ - return function_exists('hrtime') ? hrtime(true) / 1e9 : microtime(true); -} - - -/** - * @param int $options - * - * @return UriInterface - * - * @internal - */ -function _idn_uri_convert(UriInterface $uri, $options = 0) -{ - if ($uri->getHost()) { - $idnaVariant = defined('INTL_IDNA_VARIANT_UTS46') ? INTL_IDNA_VARIANT_UTS46 : 0; - $asciiHost = $idnaVariant === 0 - ? idn_to_ascii($uri->getHost(), $options) - : idn_to_ascii($uri->getHost(), $options, $idnaVariant, $info); - if ($asciiHost === false) { - $errorBitSet = isset($info['errors']) ? $info['errors'] : 0; - - $errorConstants = array_filter(array_keys(get_defined_constants()), function ($name) { - return substr($name, 0, 11) === 'IDNA_ERROR_'; - }); - - $errors = []; - foreach ($errorConstants as $errorConstant) { - if ($errorBitSet & constant($errorConstant)) { - $errors[] = $errorConstant; - } - } - - $errorMessage = 'IDN conversion failed'; - if ($errors) { - $errorMessage .= ' (errors: ' . implode(', ', $errors) . ')'; - } - - throw new InvalidArgumentException($errorMessage); - } else { - if ($uri->getHost() !== $asciiHost) { - // Replace URI only if the ASCII version is different - $uri = $uri->withHost($asciiHost); - } - } - } - - return $uri; -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/functions_include.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/functions_include.php deleted file mode 100644 index a93393ac..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/guzzle/src/functions_include.php +++ /dev/null @@ -1,6 +0,0 @@ - - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/promises/Makefile b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/promises/Makefile deleted file mode 100644 index 8d5b3ef9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/promises/Makefile +++ /dev/null @@ -1,13 +0,0 @@ -all: clean test - -test: - vendor/bin/phpunit - -coverage: - vendor/bin/phpunit --coverage-html=artifacts/coverage - -view-coverage: - open artifacts/coverage/index.html - -clean: - rm -rf artifacts/* diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/promises/README.md b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/promises/README.md deleted file mode 100644 index 7b607e28..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/promises/README.md +++ /dev/null @@ -1,504 +0,0 @@ -# Guzzle Promises - -[Promises/A+](https://promisesaplus.com/) implementation that handles promise -chaining and resolution iteratively, allowing for "infinite" promise chaining -while keeping the stack size constant. Read [this blog post](https://blog.domenic.me/youre-missing-the-point-of-promises/) -for a general introduction to promises. - -- [Features](#features) -- [Quick start](#quick-start) -- [Synchronous wait](#synchronous-wait) -- [Cancellation](#cancellation) -- [API](#api) - - [Promise](#promise) - - [FulfilledPromise](#fulfilledpromise) - - [RejectedPromise](#rejectedpromise) -- [Promise interop](#promise-interop) -- [Implementation notes](#implementation-notes) - - -# Features - -- [Promises/A+](https://promisesaplus.com/) implementation. -- Promise resolution and chaining is handled iteratively, allowing for - "infinite" promise chaining. -- Promises have a synchronous `wait` method. -- Promises can be cancelled. -- Works with any object that has a `then` function. -- C# style async/await coroutine promises using - `GuzzleHttp\Promise\coroutine()`. - - -# Quick start - -A *promise* represents the eventual result of an asynchronous operation. The -primary way of interacting with a promise is through its `then` method, which -registers callbacks to receive either a promise's eventual value or the reason -why the promise cannot be fulfilled. - - -## Callbacks - -Callbacks are registered with the `then` method by providing an optional -`$onFulfilled` followed by an optional `$onRejected` function. - - -```php -use GuzzleHttp\Promise\Promise; - -$promise = new Promise(); -$promise->then( - // $onFulfilled - function ($value) { - echo 'The promise was fulfilled.'; - }, - // $onRejected - function ($reason) { - echo 'The promise was rejected.'; - } -); -``` - -*Resolving* a promise means that you either fulfill a promise with a *value* or -reject a promise with a *reason*. Resolving a promises triggers callbacks -registered with the promises's `then` method. These callbacks are triggered -only once and in the order in which they were added. - - -## Resolving a promise - -Promises are fulfilled using the `resolve($value)` method. Resolving a promise -with any value other than a `GuzzleHttp\Promise\RejectedPromise` will trigger -all of the onFulfilled callbacks (resolving a promise with a rejected promise -will reject the promise and trigger the `$onRejected` callbacks). - -```php -use GuzzleHttp\Promise\Promise; - -$promise = new Promise(); -$promise - ->then(function ($value) { - // Return a value and don't break the chain - return "Hello, " . $value; - }) - // This then is executed after the first then and receives the value - // returned from the first then. - ->then(function ($value) { - echo $value; - }); - -// Resolving the promise triggers the $onFulfilled callbacks and outputs -// "Hello, reader". -$promise->resolve('reader.'); -``` - - -## Promise forwarding - -Promises can be chained one after the other. Each then in the chain is a new -promise. The return value of a promise is what's forwarded to the next -promise in the chain. Returning a promise in a `then` callback will cause the -subsequent promises in the chain to only be fulfilled when the returned promise -has been fulfilled. The next promise in the chain will be invoked with the -resolved value of the promise. - -```php -use GuzzleHttp\Promise\Promise; - -$promise = new Promise(); -$nextPromise = new Promise(); - -$promise - ->then(function ($value) use ($nextPromise) { - echo $value; - return $nextPromise; - }) - ->then(function ($value) { - echo $value; - }); - -// Triggers the first callback and outputs "A" -$promise->resolve('A'); -// Triggers the second callback and outputs "B" -$nextPromise->resolve('B'); -``` - -## Promise rejection - -When a promise is rejected, the `$onRejected` callbacks are invoked with the -rejection reason. - -```php -use GuzzleHttp\Promise\Promise; - -$promise = new Promise(); -$promise->then(null, function ($reason) { - echo $reason; -}); - -$promise->reject('Error!'); -// Outputs "Error!" -``` - -## Rejection forwarding - -If an exception is thrown in an `$onRejected` callback, subsequent -`$onRejected` callbacks are invoked with the thrown exception as the reason. - -```php -use GuzzleHttp\Promise\Promise; - -$promise = new Promise(); -$promise->then(null, function ($reason) { - throw new \Exception($reason); -})->then(null, function ($reason) { - assert($reason->getMessage() === 'Error!'); -}); - -$promise->reject('Error!'); -``` - -You can also forward a rejection down the promise chain by returning a -`GuzzleHttp\Promise\RejectedPromise` in either an `$onFulfilled` or -`$onRejected` callback. - -```php -use GuzzleHttp\Promise\Promise; -use GuzzleHttp\Promise\RejectedPromise; - -$promise = new Promise(); -$promise->then(null, function ($reason) { - return new RejectedPromise($reason); -})->then(null, function ($reason) { - assert($reason === 'Error!'); -}); - -$promise->reject('Error!'); -``` - -If an exception is not thrown in a `$onRejected` callback and the callback -does not return a rejected promise, downstream `$onFulfilled` callbacks are -invoked using the value returned from the `$onRejected` callback. - -```php -use GuzzleHttp\Promise\Promise; -use GuzzleHttp\Promise\RejectedPromise; - -$promise = new Promise(); -$promise - ->then(null, function ($reason) { - return "It's ok"; - }) - ->then(function ($value) { - assert($value === "It's ok"); - }); - -$promise->reject('Error!'); -``` - -# Synchronous wait - -You can synchronously force promises to complete using a promise's `wait` -method. When creating a promise, you can provide a wait function that is used -to synchronously force a promise to complete. When a wait function is invoked -it is expected to deliver a value to the promise or reject the promise. If the -wait function does not deliver a value, then an exception is thrown. The wait -function provided to a promise constructor is invoked when the `wait` function -of the promise is called. - -```php -$promise = new Promise(function () use (&$promise) { - $promise->resolve('foo'); -}); - -// Calling wait will return the value of the promise. -echo $promise->wait(); // outputs "foo" -``` - -If an exception is encountered while invoking the wait function of a promise, -the promise is rejected with the exception and the exception is thrown. - -```php -$promise = new Promise(function () use (&$promise) { - throw new \Exception('foo'); -}); - -$promise->wait(); // throws the exception. -``` - -Calling `wait` on a promise that has been fulfilled will not trigger the wait -function. It will simply return the previously resolved value. - -```php -$promise = new Promise(function () { die('this is not called!'); }); -$promise->resolve('foo'); -echo $promise->wait(); // outputs "foo" -``` - -Calling `wait` on a promise that has been rejected will throw an exception. If -the rejection reason is an instance of `\Exception` the reason is thrown. -Otherwise, a `GuzzleHttp\Promise\RejectionException` is thrown and the reason -can be obtained by calling the `getReason` method of the exception. - -```php -$promise = new Promise(); -$promise->reject('foo'); -$promise->wait(); -``` - -> PHP Fatal error: Uncaught exception 'GuzzleHttp\Promise\RejectionException' with message 'The promise was rejected with value: foo' - - -## Unwrapping a promise - -When synchronously waiting on a promise, you are joining the state of the -promise into the current state of execution (i.e., return the value of the -promise if it was fulfilled or throw an exception if it was rejected). This is -called "unwrapping" the promise. Waiting on a promise will by default unwrap -the promise state. - -You can force a promise to resolve and *not* unwrap the state of the promise -by passing `false` to the first argument of the `wait` function: - -```php -$promise = new Promise(); -$promise->reject('foo'); -// This will not throw an exception. It simply ensures the promise has -// been resolved. -$promise->wait(false); -``` - -When unwrapping a promise, the resolved value of the promise will be waited -upon until the unwrapped value is not a promise. This means that if you resolve -promise A with a promise B and unwrap promise A, the value returned by the -wait function will be the value delivered to promise B. - -**Note**: when you do not unwrap the promise, no value is returned. - - -# Cancellation - -You can cancel a promise that has not yet been fulfilled using the `cancel()` -method of a promise. When creating a promise you can provide an optional -cancel function that when invoked cancels the action of computing a resolution -of the promise. - - -# API - - -## Promise - -When creating a promise object, you can provide an optional `$waitFn` and -`$cancelFn`. `$waitFn` is a function that is invoked with no arguments and is -expected to resolve the promise. `$cancelFn` is a function with no arguments -that is expected to cancel the computation of a promise. It is invoked when the -`cancel()` method of a promise is called. - -```php -use GuzzleHttp\Promise\Promise; - -$promise = new Promise( - function () use (&$promise) { - $promise->resolve('waited'); - }, - function () { - // do something that will cancel the promise computation (e.g., close - // a socket, cancel a database query, etc...) - } -); - -assert('waited' === $promise->wait()); -``` - -A promise has the following methods: - -- `then(callable $onFulfilled, callable $onRejected) : PromiseInterface` - - Appends fulfillment and rejection handlers to the promise, and returns a new promise resolving to the return value of the called handler. - -- `otherwise(callable $onRejected) : PromiseInterface` - - Appends a rejection handler callback to the promise, and returns a new promise resolving to the return value of the callback if it is called, or to its original fulfillment value if the promise is instead fulfilled. - -- `wait($unwrap = true) : mixed` - - Synchronously waits on the promise to complete. - - `$unwrap` controls whether or not the value of the promise is returned for a - fulfilled promise or if an exception is thrown if the promise is rejected. - This is set to `true` by default. - -- `cancel()` - - Attempts to cancel the promise if possible. The promise being cancelled and - the parent most ancestor that has not yet been resolved will also be - cancelled. Any promises waiting on the cancelled promise to resolve will also - be cancelled. - -- `getState() : string` - - Returns the state of the promise. One of `pending`, `fulfilled`, or - `rejected`. - -- `resolve($value)` - - Fulfills the promise with the given `$value`. - -- `reject($reason)` - - Rejects the promise with the given `$reason`. - - -## FulfilledPromise - -A fulfilled promise can be created to represent a promise that has been -fulfilled. - -```php -use GuzzleHttp\Promise\FulfilledPromise; - -$promise = new FulfilledPromise('value'); - -// Fulfilled callbacks are immediately invoked. -$promise->then(function ($value) { - echo $value; -}); -``` - - -## RejectedPromise - -A rejected promise can be created to represent a promise that has been -rejected. - -```php -use GuzzleHttp\Promise\RejectedPromise; - -$promise = new RejectedPromise('Error'); - -// Rejected callbacks are immediately invoked. -$promise->then(null, function ($reason) { - echo $reason; -}); -``` - - -# Promise interop - -This library works with foreign promises that have a `then` method. This means -you can use Guzzle promises with [React promises](https://github.com/reactphp/promise) -for example. When a foreign promise is returned inside of a then method -callback, promise resolution will occur recursively. - -```php -// Create a React promise -$deferred = new React\Promise\Deferred(); -$reactPromise = $deferred->promise(); - -// Create a Guzzle promise that is fulfilled with a React promise. -$guzzlePromise = new \GuzzleHttp\Promise\Promise(); -$guzzlePromise->then(function ($value) use ($reactPromise) { - // Do something something with the value... - // Return the React promise - return $reactPromise; -}); -``` - -Please note that wait and cancel chaining is no longer possible when forwarding -a foreign promise. You will need to wrap a third-party promise with a Guzzle -promise in order to utilize wait and cancel functions with foreign promises. - - -## Event Loop Integration - -In order to keep the stack size constant, Guzzle promises are resolved -asynchronously using a task queue. When waiting on promises synchronously, the -task queue will be automatically run to ensure that the blocking promise and -any forwarded promises are resolved. When using promises asynchronously in an -event loop, you will need to run the task queue on each tick of the loop. If -you do not run the task queue, then promises will not be resolved. - -You can run the task queue using the `run()` method of the global task queue -instance. - -```php -// Get the global task queue -$queue = \GuzzleHttp\Promise\queue(); -$queue->run(); -``` - -For example, you could use Guzzle promises with React using a periodic timer: - -```php -$loop = React\EventLoop\Factory::create(); -$loop->addPeriodicTimer(0, [$queue, 'run']); -``` - -*TODO*: Perhaps adding a `futureTick()` on each tick would be faster? - - -# Implementation notes - - -## Promise resolution and chaining is handled iteratively - -By shuffling pending handlers from one owner to another, promises are -resolved iteratively, allowing for "infinite" then chaining. - -```php -then(function ($v) { - // The stack size remains constant (a good thing) - echo xdebug_get_stack_depth() . ', '; - return $v + 1; - }); -} - -$parent->resolve(0); -var_dump($p->wait()); // int(1000) - -``` - -When a promise is fulfilled or rejected with a non-promise value, the promise -then takes ownership of the handlers of each child promise and delivers values -down the chain without using recursion. - -When a promise is resolved with another promise, the original promise transfers -all of its pending handlers to the new promise. When the new promise is -eventually resolved, all of the pending handlers are delivered the forwarded -value. - - -## A promise is the deferred. - -Some promise libraries implement promises using a deferred object to represent -a computation and a promise object to represent the delivery of the result of -the computation. This is a nice separation of computation and delivery because -consumers of the promise cannot modify the value that will be eventually -delivered. - -One side effect of being able to implement promise resolution and chaining -iteratively is that you need to be able for one promise to reach into the state -of another promise to shuffle around ownership of handlers. In order to achieve -this without making the handlers of a promise publicly mutable, a promise is -also the deferred value, allowing promises of the same parent class to reach -into and modify the private properties of promises of the same type. While this -does allow consumers of the value to modify the resolution or rejection of the -deferred, it is a small price to pay for keeping the stack size constant. - -```php -$promise = new Promise(); -$promise->then(function ($value) { echo $value; }); -// The promise is the deferred value, so you can deliver a value to it. -$promise->resolve('foo'); -// prints "foo" -``` diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/promises/composer.json b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/promises/composer.json deleted file mode 100644 index ec41a61e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/promises/composer.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "name": "guzzlehttp/promises", - "description": "Guzzle promises library", - "keywords": ["promise"], - "license": "MIT", - "authors": [ - { - "name": "Michael Dowling", - "email": "mtdowling@gmail.com", - "homepage": "https://github.com/mtdowling" - } - ], - "require": { - "php": ">=5.5.0" - }, - "require-dev": { - "phpunit/phpunit": "^4.0" - }, - "autoload": { - "psr-4": { - "GuzzleHttp\\Promise\\": "src/" - }, - "files": ["src/functions_include.php"] - }, - "scripts": { - "test": "vendor/bin/phpunit", - "test-ci": "vendor/bin/phpunit --coverage-text" - }, - "extra": { - "branch-alias": { - "dev-master": "1.4-dev" - } - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/promises/src/AggregateException.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/promises/src/AggregateException.php deleted file mode 100644 index 6a5690c3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/promises/src/AggregateException.php +++ /dev/null @@ -1,16 +0,0 @@ -then(function ($v) { echo $v; }); - * - * @param callable $generatorFn Generator function to wrap into a promise. - * - * @return Promise - * @link https://github.com/petkaantonov/bluebird/blob/master/API.md#generators inspiration - */ -final class Coroutine implements PromiseInterface -{ - /** - * @var PromiseInterface|null - */ - private $currentPromise; - - /** - * @var Generator - */ - private $generator; - - /** - * @var Promise - */ - private $result; - - public function __construct(callable $generatorFn) - { - $this->generator = $generatorFn(); - $this->result = new Promise(function () { - while (isset($this->currentPromise)) { - $this->currentPromise->wait(); - } - }); - $this->nextCoroutine($this->generator->current()); - } - - public function then( - callable $onFulfilled = null, - callable $onRejected = null - ) { - return $this->result->then($onFulfilled, $onRejected); - } - - public function otherwise(callable $onRejected) - { - return $this->result->otherwise($onRejected); - } - - public function wait($unwrap = true) - { - return $this->result->wait($unwrap); - } - - public function getState() - { - return $this->result->getState(); - } - - public function resolve($value) - { - $this->result->resolve($value); - } - - public function reject($reason) - { - $this->result->reject($reason); - } - - public function cancel() - { - $this->currentPromise->cancel(); - $this->result->cancel(); - } - - private function nextCoroutine($yielded) - { - $this->currentPromise = promise_for($yielded) - ->then([$this, '_handleSuccess'], [$this, '_handleFailure']); - } - - /** - * @internal - */ - public function _handleSuccess($value) - { - unset($this->currentPromise); - try { - $next = $this->generator->send($value); - if ($this->generator->valid()) { - $this->nextCoroutine($next); - } else { - $this->result->resolve($value); - } - } catch (Exception $exception) { - $this->result->reject($exception); - } catch (Throwable $throwable) { - $this->result->reject($throwable); - } - } - - /** - * @internal - */ - public function _handleFailure($reason) - { - unset($this->currentPromise); - try { - $nextYield = $this->generator->throw(exception_for($reason)); - // The throw was caught, so keep iterating on the coroutine - $this->nextCoroutine($nextYield); - } catch (Exception $exception) { - $this->result->reject($exception); - } catch (Throwable $throwable) { - $this->result->reject($throwable); - } - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/promises/src/EachPromise.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/promises/src/EachPromise.php deleted file mode 100644 index d0ddf603..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/promises/src/EachPromise.php +++ /dev/null @@ -1,229 +0,0 @@ -iterable = iter_for($iterable); - - if (isset($config['concurrency'])) { - $this->concurrency = $config['concurrency']; - } - - if (isset($config['fulfilled'])) { - $this->onFulfilled = $config['fulfilled']; - } - - if (isset($config['rejected'])) { - $this->onRejected = $config['rejected']; - } - } - - public function promise() - { - if ($this->aggregate) { - return $this->aggregate; - } - - try { - $this->createPromise(); - $this->iterable->rewind(); - $this->refillPending(); - } catch (\Throwable $e) { - $this->aggregate->reject($e); - } catch (\Exception $e) { - $this->aggregate->reject($e); - } - - return $this->aggregate; - } - - private function createPromise() - { - $this->mutex = false; - $this->aggregate = new Promise(function () { - reset($this->pending); - if (empty($this->pending) && !$this->iterable->valid()) { - $this->aggregate->resolve(null); - return; - } - - // Consume a potentially fluctuating list of promises while - // ensuring that indexes are maintained (precluding array_shift). - while ($promise = current($this->pending)) { - next($this->pending); - $promise->wait(); - if ($this->aggregate->getState() !== PromiseInterface::PENDING) { - return; - } - } - }); - - // Clear the references when the promise is resolved. - $clearFn = function () { - $this->iterable = $this->concurrency = $this->pending = null; - $this->onFulfilled = $this->onRejected = null; - }; - - $this->aggregate->then($clearFn, $clearFn); - } - - private function refillPending() - { - if (!$this->concurrency) { - // Add all pending promises. - while ($this->addPending() && $this->advanceIterator()); - return; - } - - // Add only up to N pending promises. - $concurrency = is_callable($this->concurrency) - ? call_user_func($this->concurrency, count($this->pending)) - : $this->concurrency; - $concurrency = max($concurrency - count($this->pending), 0); - // Concurrency may be set to 0 to disallow new promises. - if (!$concurrency) { - return; - } - // Add the first pending promise. - $this->addPending(); - // Note this is special handling for concurrency=1 so that we do - // not advance the iterator after adding the first promise. This - // helps work around issues with generators that might not have the - // next value to yield until promise callbacks are called. - while (--$concurrency - && $this->advanceIterator() - && $this->addPending()); - } - - private function addPending() - { - if (!$this->iterable || !$this->iterable->valid()) { - return false; - } - - $promise = promise_for($this->iterable->current()); - $idx = $this->iterable->key(); - - $this->pending[$idx] = $promise->then( - function ($value) use ($idx) { - if ($this->onFulfilled) { - call_user_func( - $this->onFulfilled, $value, $idx, $this->aggregate - ); - } - $this->step($idx); - }, - function ($reason) use ($idx) { - if ($this->onRejected) { - call_user_func( - $this->onRejected, $reason, $idx, $this->aggregate - ); - } - $this->step($idx); - } - ); - - return true; - } - - private function advanceIterator() - { - // Place a lock on the iterator so that we ensure to not recurse, - // preventing fatal generator errors. - if ($this->mutex) { - return false; - } - - $this->mutex = true; - - try { - $this->iterable->next(); - $this->mutex = false; - return true; - } catch (\Throwable $e) { - $this->aggregate->reject($e); - $this->mutex = false; - return false; - } catch (\Exception $e) { - $this->aggregate->reject($e); - $this->mutex = false; - return false; - } - } - - private function step($idx) - { - // If the promise was already resolved, then ignore this step. - if ($this->aggregate->getState() !== PromiseInterface::PENDING) { - return; - } - - unset($this->pending[$idx]); - - // Only refill pending promises if we are not locked, preventing the - // EachPromise to recursively invoke the provided iterator, which - // cause a fatal error: "Cannot resume an already running generator" - if ($this->advanceIterator() && !$this->checkIfFinished()) { - // Add more pending promises if possible. - $this->refillPending(); - } - } - - private function checkIfFinished() - { - if (!$this->pending && !$this->iterable->valid()) { - // Resolve the promise if there's nothing left to do. - $this->aggregate->resolve(null); - return true; - } - - return false; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/promises/src/FulfilledPromise.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/promises/src/FulfilledPromise.php deleted file mode 100644 index dbbeeb9f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/promises/src/FulfilledPromise.php +++ /dev/null @@ -1,82 +0,0 @@ -value = $value; - } - - public function then( - callable $onFulfilled = null, - callable $onRejected = null - ) { - // Return itself if there is no onFulfilled function. - if (!$onFulfilled) { - return $this; - } - - $queue = queue(); - $p = new Promise([$queue, 'run']); - $value = $this->value; - $queue->add(static function () use ($p, $value, $onFulfilled) { - if ($p->getState() === self::PENDING) { - try { - $p->resolve($onFulfilled($value)); - } catch (\Throwable $e) { - $p->reject($e); - } catch (\Exception $e) { - $p->reject($e); - } - } - }); - - return $p; - } - - public function otherwise(callable $onRejected) - { - return $this->then(null, $onRejected); - } - - public function wait($unwrap = true, $defaultDelivery = null) - { - return $unwrap ? $this->value : null; - } - - public function getState() - { - return self::FULFILLED; - } - - public function resolve($value) - { - if ($value !== $this->value) { - throw new \LogicException("Cannot resolve a fulfilled promise"); - } - } - - public function reject($reason) - { - throw new \LogicException("Cannot reject a fulfilled promise"); - } - - public function cancel() - { - // pass - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/promises/src/Promise.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/promises/src/Promise.php deleted file mode 100644 index 844ada07..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/promises/src/Promise.php +++ /dev/null @@ -1,280 +0,0 @@ -waitFn = $waitFn; - $this->cancelFn = $cancelFn; - } - - public function then( - callable $onFulfilled = null, - callable $onRejected = null - ) { - if ($this->state === self::PENDING) { - $p = new Promise(null, [$this, 'cancel']); - $this->handlers[] = [$p, $onFulfilled, $onRejected]; - $p->waitList = $this->waitList; - $p->waitList[] = $this; - return $p; - } - - // Return a fulfilled promise and immediately invoke any callbacks. - if ($this->state === self::FULFILLED) { - return $onFulfilled - ? promise_for($this->result)->then($onFulfilled) - : promise_for($this->result); - } - - // It's either cancelled or rejected, so return a rejected promise - // and immediately invoke any callbacks. - $rejection = rejection_for($this->result); - return $onRejected ? $rejection->then(null, $onRejected) : $rejection; - } - - public function otherwise(callable $onRejected) - { - return $this->then(null, $onRejected); - } - - public function wait($unwrap = true) - { - $this->waitIfPending(); - - $inner = $this->result instanceof PromiseInterface - ? $this->result->wait($unwrap) - : $this->result; - - if ($unwrap) { - if ($this->result instanceof PromiseInterface - || $this->state === self::FULFILLED - ) { - return $inner; - } else { - // It's rejected so "unwrap" and throw an exception. - throw exception_for($inner); - } - } - } - - public function getState() - { - return $this->state; - } - - public function cancel() - { - if ($this->state !== self::PENDING) { - return; - } - - $this->waitFn = $this->waitList = null; - - if ($this->cancelFn) { - $fn = $this->cancelFn; - $this->cancelFn = null; - try { - $fn(); - } catch (\Throwable $e) { - $this->reject($e); - } catch (\Exception $e) { - $this->reject($e); - } - } - - // Reject the promise only if it wasn't rejected in a then callback. - if ($this->state === self::PENDING) { - $this->reject(new CancellationException('Promise has been cancelled')); - } - } - - public function resolve($value) - { - $this->settle(self::FULFILLED, $value); - } - - public function reject($reason) - { - $this->settle(self::REJECTED, $reason); - } - - private function settle($state, $value) - { - if ($this->state !== self::PENDING) { - // Ignore calls with the same resolution. - if ($state === $this->state && $value === $this->result) { - return; - } - throw $this->state === $state - ? new \LogicException("The promise is already {$state}.") - : new \LogicException("Cannot change a {$this->state} promise to {$state}"); - } - - if ($value === $this) { - throw new \LogicException('Cannot fulfill or reject a promise with itself'); - } - - // Clear out the state of the promise but stash the handlers. - $this->state = $state; - $this->result = $value; - $handlers = $this->handlers; - $this->handlers = null; - $this->waitList = $this->waitFn = null; - $this->cancelFn = null; - - if (!$handlers) { - return; - } - - // If the value was not a settled promise or a thenable, then resolve - // it in the task queue using the correct ID. - if (!method_exists($value, 'then')) { - $id = $state === self::FULFILLED ? 1 : 2; - // It's a success, so resolve the handlers in the queue. - queue()->add(static function () use ($id, $value, $handlers) { - foreach ($handlers as $handler) { - self::callHandler($id, $value, $handler); - } - }); - } elseif ($value instanceof Promise - && $value->getState() === self::PENDING - ) { - // We can just merge our handlers onto the next promise. - $value->handlers = array_merge($value->handlers, $handlers); - } else { - // Resolve the handlers when the forwarded promise is resolved. - $value->then( - static function ($value) use ($handlers) { - foreach ($handlers as $handler) { - self::callHandler(1, $value, $handler); - } - }, - static function ($reason) use ($handlers) { - foreach ($handlers as $handler) { - self::callHandler(2, $reason, $handler); - } - } - ); - } - } - - /** - * Call a stack of handlers using a specific callback index and value. - * - * @param int $index 1 (resolve) or 2 (reject). - * @param mixed $value Value to pass to the callback. - * @param array $handler Array of handler data (promise and callbacks). - * - * @return array Returns the next group to resolve. - */ - private static function callHandler($index, $value, array $handler) - { - /** @var PromiseInterface $promise */ - $promise = $handler[0]; - - // The promise may have been cancelled or resolved before placing - // this thunk in the queue. - if ($promise->getState() !== self::PENDING) { - return; - } - - try { - if (isset($handler[$index])) { - $promise->resolve($handler[$index]($value)); - } elseif ($index === 1) { - // Forward resolution values as-is. - $promise->resolve($value); - } else { - // Forward rejections down the chain. - $promise->reject($value); - } - } catch (\Throwable $reason) { - $promise->reject($reason); - } catch (\Exception $reason) { - $promise->reject($reason); - } - } - - private function waitIfPending() - { - if ($this->state !== self::PENDING) { - return; - } elseif ($this->waitFn) { - $this->invokeWaitFn(); - } elseif ($this->waitList) { - $this->invokeWaitList(); - } else { - // If there's not wait function, then reject the promise. - $this->reject('Cannot wait on a promise that has ' - . 'no internal wait function. You must provide a wait ' - . 'function when constructing the promise to be able to ' - . 'wait on a promise.'); - } - - queue()->run(); - - if ($this->state === self::PENDING) { - $this->reject('Invoking the wait callback did not resolve the promise'); - } - } - - private function invokeWaitFn() - { - try { - $wfn = $this->waitFn; - $this->waitFn = null; - $wfn(true); - } catch (\Exception $reason) { - if ($this->state === self::PENDING) { - // The promise has not been resolved yet, so reject the promise - // with the exception. - $this->reject($reason); - } else { - // The promise was already resolved, so there's a problem in - // the application. - throw $reason; - } - } - } - - private function invokeWaitList() - { - $waitList = $this->waitList; - $this->waitList = null; - - foreach ($waitList as $result) { - while (true) { - $result->waitIfPending(); - - if ($result->result instanceof Promise) { - $result = $result->result; - } else { - if ($result->result instanceof PromiseInterface) { - $result->result->wait(false); - } - break; - } - } - } - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/promises/src/PromiseInterface.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/promises/src/PromiseInterface.php deleted file mode 100644 index 8f5f4b99..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/promises/src/PromiseInterface.php +++ /dev/null @@ -1,93 +0,0 @@ -reason = $reason; - } - - public function then( - callable $onFulfilled = null, - callable $onRejected = null - ) { - // If there's no onRejected callback then just return self. - if (!$onRejected) { - return $this; - } - - $queue = queue(); - $reason = $this->reason; - $p = new Promise([$queue, 'run']); - $queue->add(static function () use ($p, $reason, $onRejected) { - if ($p->getState() === self::PENDING) { - try { - // Return a resolved promise if onRejected does not throw. - $p->resolve($onRejected($reason)); - } catch (\Throwable $e) { - // onRejected threw, so return a rejected promise. - $p->reject($e); - } catch (\Exception $e) { - // onRejected threw, so return a rejected promise. - $p->reject($e); - } - } - }); - - return $p; - } - - public function otherwise(callable $onRejected) - { - return $this->then(null, $onRejected); - } - - public function wait($unwrap = true, $defaultDelivery = null) - { - if ($unwrap) { - throw exception_for($this->reason); - } - } - - public function getState() - { - return self::REJECTED; - } - - public function resolve($value) - { - throw new \LogicException("Cannot resolve a rejected promise"); - } - - public function reject($reason) - { - if ($reason !== $this->reason) { - throw new \LogicException("Cannot reject a rejected promise"); - } - } - - public function cancel() - { - // pass - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/promises/src/RejectionException.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/promises/src/RejectionException.php deleted file mode 100644 index 07c1136d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/promises/src/RejectionException.php +++ /dev/null @@ -1,47 +0,0 @@ -reason = $reason; - - $message = 'The promise was rejected'; - - if ($description) { - $message .= ' with reason: ' . $description; - } elseif (is_string($reason) - || (is_object($reason) && method_exists($reason, '__toString')) - ) { - $message .= ' with reason: ' . $this->reason; - } elseif ($reason instanceof \JsonSerializable) { - $message .= ' with reason: ' - . json_encode($this->reason, JSON_PRETTY_PRINT); - } - - parent::__construct($message); - } - - /** - * Returns the rejection reason. - * - * @return mixed - */ - public function getReason() - { - return $this->reason; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/promises/src/TaskQueue.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/promises/src/TaskQueue.php deleted file mode 100644 index 6e8a2a08..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/promises/src/TaskQueue.php +++ /dev/null @@ -1,66 +0,0 @@ -run(); - */ -class TaskQueue implements TaskQueueInterface -{ - private $enableShutdown = true; - private $queue = []; - - public function __construct($withShutdown = true) - { - if ($withShutdown) { - register_shutdown_function(function () { - if ($this->enableShutdown) { - // Only run the tasks if an E_ERROR didn't occur. - $err = error_get_last(); - if (!$err || ($err['type'] ^ E_ERROR)) { - $this->run(); - } - } - }); - } - } - - public function isEmpty() - { - return !$this->queue; - } - - public function add(callable $task) - { - $this->queue[] = $task; - } - - public function run() - { - /** @var callable $task */ - while ($task = array_shift($this->queue)) { - $task(); - } - } - - /** - * The task queue will be run and exhausted by default when the process - * exits IFF the exit is not the result of a PHP E_ERROR error. - * - * You can disable running the automatic shutdown of the queue by calling - * this function. If you disable the task queue shutdown process, then you - * MUST either run the task queue (as a result of running your event loop - * or manually using the run() method) or wait on each outstanding promise. - * - * Note: This shutdown will occur before any destructors are triggered. - */ - public function disableShutdown() - { - $this->enableShutdown = false; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/promises/src/TaskQueueInterface.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/promises/src/TaskQueueInterface.php deleted file mode 100644 index ac8306e1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/promises/src/TaskQueueInterface.php +++ /dev/null @@ -1,25 +0,0 @@ - - * while ($eventLoop->isRunning()) { - * GuzzleHttp\Promise\queue()->run(); - * } - * - * - * @param TaskQueueInterface $assign Optionally specify a new queue instance. - * - * @return TaskQueueInterface - */ -function queue(TaskQueueInterface $assign = null) -{ - static $queue; - - if ($assign) { - $queue = $assign; - } elseif (!$queue) { - $queue = new TaskQueue(); - } - - return $queue; -} - -/** - * Adds a function to run in the task queue when it is next `run()` and returns - * a promise that is fulfilled or rejected with the result. - * - * @param callable $task Task function to run. - * - * @return PromiseInterface - */ -function task(callable $task) -{ - $queue = queue(); - $promise = new Promise([$queue, 'run']); - $queue->add(function () use ($task, $promise) { - try { - $promise->resolve($task()); - } catch (\Throwable $e) { - $promise->reject($e); - } catch (\Exception $e) { - $promise->reject($e); - } - }); - - return $promise; -} - -/** - * Creates a promise for a value if the value is not a promise. - * - * @param mixed $value Promise or value. - * - * @return PromiseInterface - */ -function promise_for($value) -{ - if ($value instanceof PromiseInterface) { - return $value; - } - - // Return a Guzzle promise that shadows the given promise. - if (method_exists($value, 'then')) { - $wfn = method_exists($value, 'wait') ? [$value, 'wait'] : null; - $cfn = method_exists($value, 'cancel') ? [$value, 'cancel'] : null; - $promise = new Promise($wfn, $cfn); - $value->then([$promise, 'resolve'], [$promise, 'reject']); - return $promise; - } - - return new FulfilledPromise($value); -} - -/** - * Creates a rejected promise for a reason if the reason is not a promise. If - * the provided reason is a promise, then it is returned as-is. - * - * @param mixed $reason Promise or reason. - * - * @return PromiseInterface - */ -function rejection_for($reason) -{ - if ($reason instanceof PromiseInterface) { - return $reason; - } - - return new RejectedPromise($reason); -} - -/** - * Create an exception for a rejected promise value. - * - * @param mixed $reason - * - * @return \Exception|\Throwable - */ -function exception_for($reason) -{ - return $reason instanceof \Exception || $reason instanceof \Throwable - ? $reason - : new RejectionException($reason); -} - -/** - * Returns an iterator for the given value. - * - * @param mixed $value - * - * @return \Iterator - */ -function iter_for($value) -{ - if ($value instanceof \Iterator) { - return $value; - } elseif (is_array($value)) { - return new \ArrayIterator($value); - } else { - return new \ArrayIterator([$value]); - } -} - -/** - * Synchronously waits on a promise to resolve and returns an inspection state - * array. - * - * Returns a state associative array containing a "state" key mapping to a - * valid promise state. If the state of the promise is "fulfilled", the array - * will contain a "value" key mapping to the fulfilled value of the promise. If - * the promise is rejected, the array will contain a "reason" key mapping to - * the rejection reason of the promise. - * - * @param PromiseInterface $promise Promise or value. - * - * @return array - */ -function inspect(PromiseInterface $promise) -{ - try { - return [ - 'state' => PromiseInterface::FULFILLED, - 'value' => $promise->wait() - ]; - } catch (RejectionException $e) { - return ['state' => PromiseInterface::REJECTED, 'reason' => $e->getReason()]; - } catch (\Throwable $e) { - return ['state' => PromiseInterface::REJECTED, 'reason' => $e]; - } catch (\Exception $e) { - return ['state' => PromiseInterface::REJECTED, 'reason' => $e]; - } -} - -/** - * Waits on all of the provided promises, but does not unwrap rejected promises - * as thrown exception. - * - * Returns an array of inspection state arrays. - * - * @param PromiseInterface[] $promises Traversable of promises to wait upon. - * - * @return array - * @see GuzzleHttp\Promise\inspect for the inspection state array format. - */ -function inspect_all($promises) -{ - $results = []; - foreach ($promises as $key => $promise) { - $results[$key] = inspect($promise); - } - - return $results; -} - -/** - * Waits on all of the provided promises and returns the fulfilled values. - * - * Returns an array that contains the value of each promise (in the same order - * the promises were provided). An exception is thrown if any of the promises - * are rejected. - * - * @param mixed $promises Iterable of PromiseInterface objects to wait on. - * - * @return array - * @throws \Exception on error - * @throws \Throwable on error in PHP >=7 - */ -function unwrap($promises) -{ - $results = []; - foreach ($promises as $key => $promise) { - $results[$key] = $promise->wait(); - } - - return $results; -} - -/** - * Given an array of promises, return a promise that is fulfilled when all the - * items in the array are fulfilled. - * - * The promise's fulfillment value is an array with fulfillment values at - * respective positions to the original array. If any promise in the array - * rejects, the returned promise is rejected with the rejection reason. - * - * @param mixed $promises Promises or values. - * - * @return PromiseInterface - */ -function all($promises) -{ - $results = []; - return each( - $promises, - function ($value, $idx) use (&$results) { - $results[$idx] = $value; - }, - function ($reason, $idx, Promise $aggregate) { - $aggregate->reject($reason); - } - )->then(function () use (&$results) { - ksort($results); - return $results; - }); -} - -/** - * Initiate a competitive race between multiple promises or values (values will - * become immediately fulfilled promises). - * - * When count amount of promises have been fulfilled, the returned promise is - * fulfilled with an array that contains the fulfillment values of the winners - * in order of resolution. - * - * This prommise is rejected with a {@see GuzzleHttp\Promise\AggregateException} - * if the number of fulfilled promises is less than the desired $count. - * - * @param int $count Total number of promises. - * @param mixed $promises Promises or values. - * - * @return PromiseInterface - */ -function some($count, $promises) -{ - $results = []; - $rejections = []; - - return each( - $promises, - function ($value, $idx, PromiseInterface $p) use (&$results, $count) { - if ($p->getState() !== PromiseInterface::PENDING) { - return; - } - $results[$idx] = $value; - if (count($results) >= $count) { - $p->resolve(null); - } - }, - function ($reason) use (&$rejections) { - $rejections[] = $reason; - } - )->then( - function () use (&$results, &$rejections, $count) { - if (count($results) !== $count) { - throw new AggregateException( - 'Not enough promises to fulfill count', - $rejections - ); - } - ksort($results); - return array_values($results); - } - ); -} - -/** - * Like some(), with 1 as count. However, if the promise fulfills, the - * fulfillment value is not an array of 1 but the value directly. - * - * @param mixed $promises Promises or values. - * - * @return PromiseInterface - */ -function any($promises) -{ - return some(1, $promises)->then(function ($values) { return $values[0]; }); -} - -/** - * Returns a promise that is fulfilled when all of the provided promises have - * been fulfilled or rejected. - * - * The returned promise is fulfilled with an array of inspection state arrays. - * - * @param mixed $promises Promises or values. - * - * @return PromiseInterface - * @see GuzzleHttp\Promise\inspect for the inspection state array format. - */ -function settle($promises) -{ - $results = []; - - return each( - $promises, - function ($value, $idx) use (&$results) { - $results[$idx] = ['state' => PromiseInterface::FULFILLED, 'value' => $value]; - }, - function ($reason, $idx) use (&$results) { - $results[$idx] = ['state' => PromiseInterface::REJECTED, 'reason' => $reason]; - } - )->then(function () use (&$results) { - ksort($results); - return $results; - }); -} - -/** - * Given an iterator that yields promises or values, returns a promise that is - * fulfilled with a null value when the iterator has been consumed or the - * aggregate promise has been fulfilled or rejected. - * - * $onFulfilled is a function that accepts the fulfilled value, iterator - * index, and the aggregate promise. The callback can invoke any necessary side - * effects and choose to resolve or reject the aggregate promise if needed. - * - * $onRejected is a function that accepts the rejection reason, iterator - * index, and the aggregate promise. The callback can invoke any necessary side - * effects and choose to resolve or reject the aggregate promise if needed. - * - * @param mixed $iterable Iterator or array to iterate over. - * @param callable $onFulfilled - * @param callable $onRejected - * - * @return PromiseInterface - */ -function each( - $iterable, - callable $onFulfilled = null, - callable $onRejected = null -) { - return (new EachPromise($iterable, [ - 'fulfilled' => $onFulfilled, - 'rejected' => $onRejected - ]))->promise(); -} - -/** - * Like each, but only allows a certain number of outstanding promises at any - * given time. - * - * $concurrency may be an integer or a function that accepts the number of - * pending promises and returns a numeric concurrency limit value to allow for - * dynamic a concurrency size. - * - * @param mixed $iterable - * @param int|callable $concurrency - * @param callable $onFulfilled - * @param callable $onRejected - * - * @return PromiseInterface - */ -function each_limit( - $iterable, - $concurrency, - callable $onFulfilled = null, - callable $onRejected = null -) { - return (new EachPromise($iterable, [ - 'fulfilled' => $onFulfilled, - 'rejected' => $onRejected, - 'concurrency' => $concurrency - ]))->promise(); -} - -/** - * Like each_limit, but ensures that no promise in the given $iterable argument - * is rejected. If any promise is rejected, then the aggregate promise is - * rejected with the encountered rejection. - * - * @param mixed $iterable - * @param int|callable $concurrency - * @param callable $onFulfilled - * - * @return PromiseInterface - */ -function each_limit_all( - $iterable, - $concurrency, - callable $onFulfilled = null -) { - return each_limit( - $iterable, - $concurrency, - $onFulfilled, - function ($reason, $idx, PromiseInterface $aggregate) { - $aggregate->reject($reason); - } - ); -} - -/** - * Returns true if a promise is fulfilled. - * - * @param PromiseInterface $promise - * - * @return bool - */ -function is_fulfilled(PromiseInterface $promise) -{ - return $promise->getState() === PromiseInterface::FULFILLED; -} - -/** - * Returns true if a promise is rejected. - * - * @param PromiseInterface $promise - * - * @return bool - */ -function is_rejected(PromiseInterface $promise) -{ - return $promise->getState() === PromiseInterface::REJECTED; -} - -/** - * Returns true if a promise is fulfilled or rejected. - * - * @param PromiseInterface $promise - * - * @return bool - */ -function is_settled(PromiseInterface $promise) -{ - return $promise->getState() !== PromiseInterface::PENDING; -} - -/** - * @see Coroutine - * - * @param callable $generatorFn - * - * @return PromiseInterface - */ -function coroutine(callable $generatorFn) -{ - return new Coroutine($generatorFn); -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/promises/src/functions_include.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/promises/src/functions_include.php deleted file mode 100644 index 34cd1710..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/promises/src/functions_include.php +++ /dev/null @@ -1,6 +0,0 @@ -withPath('foo')->withHost('example.com')` will throw an exception - because the path of a URI with an authority must start with a slash "/" or be empty - - `(new Uri())->withScheme('http')` will return `'http://localhost'` - -### Deprecated - -- `Uri::resolve` in favor of `UriResolver::resolve` -- `Uri::removeDotSegments` in favor of `UriResolver::removeDotSegments` - -### Fixed - -- `Stream::read` when length parameter <= 0. -- `copy_to_stream` reads bytes in chunks instead of `maxLen` into memory. -- `ServerRequest::getUriFromGlobals` when `Host` header contains port. -- Compatibility of URIs with `file` scheme and empty host. - - -## [1.3.1] - 2016-06-25 - -### Fixed - -- `Uri::__toString` for network path references, e.g. `//example.org`. -- Missing lowercase normalization for host. -- Handling of URI components in case they are `'0'` in a lot of places, - e.g. as a user info password. -- `Uri::withAddedHeader` to correctly merge headers with different case. -- Trimming of header values in `Uri::withAddedHeader`. Header values may - be surrounded by whitespace which should be ignored according to RFC 7230 - Section 3.2.4. This does not apply to header names. -- `Uri::withAddedHeader` with an array of header values. -- `Uri::resolve` when base path has no slash and handling of fragment. -- Handling of encoding in `Uri::with(out)QueryValue` so one can pass the - key/value both in encoded as well as decoded form to those methods. This is - consistent with withPath, withQuery etc. -- `ServerRequest::withoutAttribute` when attribute value is null. - - -## [1.3.0] - 2016-04-13 - -### Added - -- Remaining interfaces needed for full PSR7 compatibility - (ServerRequestInterface, UploadedFileInterface, etc.). -- Support for stream_for from scalars. - -### Changed - -- Can now extend Uri. - -### Fixed -- A bug in validating request methods by making it more permissive. - - -## [1.2.3] - 2016-02-18 - -### Fixed - -- Support in `GuzzleHttp\Psr7\CachingStream` for seeking forward on remote - streams, which can sometimes return fewer bytes than requested with `fread`. -- Handling of gzipped responses with FNAME headers. - - -## [1.2.2] - 2016-01-22 - -### Added - -- Support for URIs without any authority. -- Support for HTTP 451 'Unavailable For Legal Reasons.' -- Support for using '0' as a filename. -- Support for including non-standard ports in Host headers. - - -## [1.2.1] - 2015-11-02 - -### Changes - -- Now supporting negative offsets when seeking to SEEK_END. - - -## [1.2.0] - 2015-08-15 - -### Changed - -- Body as `"0"` is now properly added to a response. -- Now allowing forward seeking in CachingStream. -- Now properly parsing HTTP requests that contain proxy targets in - `parse_request`. -- functions.php is now conditionally required. -- user-info is no longer dropped when resolving URIs. - - -## [1.1.0] - 2015-06-24 - -### Changed - -- URIs can now be relative. -- `multipart/form-data` headers are now overridden case-insensitively. -- URI paths no longer encode the following characters because they are allowed - in URIs: "(", ")", "*", "!", "'" -- A port is no longer added to a URI when the scheme is missing and no port is - present. - - -## 1.0.0 - 2015-05-19 - -Initial release. - -Currently unsupported: - -- `Psr\Http\Message\ServerRequestInterface` -- `Psr\Http\Message\UploadedFileInterface` - - - -[Unreleased]: https://github.com/guzzle/psr7/compare/1.6.0...HEAD -[1.6.0]: https://github.com/guzzle/psr7/compare/1.5.2...1.6.0 -[1.5.2]: https://github.com/guzzle/psr7/compare/1.5.1...1.5.2 -[1.5.1]: https://github.com/guzzle/psr7/compare/1.5.0...1.5.1 -[1.5.0]: https://github.com/guzzle/psr7/compare/1.4.2...1.5.0 -[1.4.2]: https://github.com/guzzle/psr7/compare/1.4.1...1.4.2 -[1.4.1]: https://github.com/guzzle/psr7/compare/1.4.0...1.4.1 -[1.4.0]: https://github.com/guzzle/psr7/compare/1.3.1...1.4.0 -[1.3.1]: https://github.com/guzzle/psr7/compare/1.3.0...1.3.1 -[1.3.0]: https://github.com/guzzle/psr7/compare/1.2.3...1.3.0 -[1.2.3]: https://github.com/guzzle/psr7/compare/1.2.2...1.2.3 -[1.2.2]: https://github.com/guzzle/psr7/compare/1.2.1...1.2.2 -[1.2.1]: https://github.com/guzzle/psr7/compare/1.2.0...1.2.1 -[1.2.0]: https://github.com/guzzle/psr7/compare/1.1.0...1.2.0 -[1.1.0]: https://github.com/guzzle/psr7/compare/1.0.0...1.1.0 diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/LICENSE b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/LICENSE deleted file mode 100644 index 581d95f9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/LICENSE +++ /dev/null @@ -1,19 +0,0 @@ -Copyright (c) 2015 Michael Dowling, https://github.com/mtdowling - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/README.md b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/README.md deleted file mode 100644 index c60a6a38..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/README.md +++ /dev/null @@ -1,745 +0,0 @@ -# PSR-7 Message Implementation - -This repository contains a full [PSR-7](http://www.php-fig.org/psr/psr-7/) -message implementation, several stream decorators, and some helpful -functionality like query string parsing. - - -[![Build Status](https://travis-ci.org/guzzle/psr7.svg?branch=master)](https://travis-ci.org/guzzle/psr7) - - -# Stream implementation - -This package comes with a number of stream implementations and stream -decorators. - - -## AppendStream - -`GuzzleHttp\Psr7\AppendStream` - -Reads from multiple streams, one after the other. - -```php -use GuzzleHttp\Psr7; - -$a = Psr7\stream_for('abc, '); -$b = Psr7\stream_for('123.'); -$composed = new Psr7\AppendStream([$a, $b]); - -$composed->addStream(Psr7\stream_for(' Above all listen to me')); - -echo $composed; // abc, 123. Above all listen to me. -``` - - -## BufferStream - -`GuzzleHttp\Psr7\BufferStream` - -Provides a buffer stream that can be written to fill a buffer, and read -from to remove bytes from the buffer. - -This stream returns a "hwm" metadata value that tells upstream consumers -what the configured high water mark of the stream is, or the maximum -preferred size of the buffer. - -```php -use GuzzleHttp\Psr7; - -// When more than 1024 bytes are in the buffer, it will begin returning -// false to writes. This is an indication that writers should slow down. -$buffer = new Psr7\BufferStream(1024); -``` - - -## CachingStream - -The CachingStream is used to allow seeking over previously read bytes on -non-seekable streams. This can be useful when transferring a non-seekable -entity body fails due to needing to rewind the stream (for example, resulting -from a redirect). Data that is read from the remote stream will be buffered in -a PHP temp stream so that previously read bytes are cached first in memory, -then on disk. - -```php -use GuzzleHttp\Psr7; - -$original = Psr7\stream_for(fopen('http://www.google.com', 'r')); -$stream = new Psr7\CachingStream($original); - -$stream->read(1024); -echo $stream->tell(); -// 1024 - -$stream->seek(0); -echo $stream->tell(); -// 0 -``` - - -## DroppingStream - -`GuzzleHttp\Psr7\DroppingStream` - -Stream decorator that begins dropping data once the size of the underlying -stream becomes too full. - -```php -use GuzzleHttp\Psr7; - -// Create an empty stream -$stream = Psr7\stream_for(); - -// Start dropping data when the stream has more than 10 bytes -$dropping = new Psr7\DroppingStream($stream, 10); - -$dropping->write('01234567890123456789'); -echo $stream; // 0123456789 -``` - - -## FnStream - -`GuzzleHttp\Psr7\FnStream` - -Compose stream implementations based on a hash of functions. - -Allows for easy testing and extension of a provided stream without needing -to create a concrete class for a simple extension point. - -```php - -use GuzzleHttp\Psr7; - -$stream = Psr7\stream_for('hi'); -$fnStream = Psr7\FnStream::decorate($stream, [ - 'rewind' => function () use ($stream) { - echo 'About to rewind - '; - $stream->rewind(); - echo 'rewound!'; - } -]); - -$fnStream->rewind(); -// Outputs: About to rewind - rewound! -``` - - -## InflateStream - -`GuzzleHttp\Psr7\InflateStream` - -Uses PHP's zlib.inflate filter to inflate deflate or gzipped content. - -This stream decorator skips the first 10 bytes of the given stream to remove -the gzip header, converts the provided stream to a PHP stream resource, -then appends the zlib.inflate filter. The stream is then converted back -to a Guzzle stream resource to be used as a Guzzle stream. - - -## LazyOpenStream - -`GuzzleHttp\Psr7\LazyOpenStream` - -Lazily reads or writes to a file that is opened only after an IO operation -take place on the stream. - -```php -use GuzzleHttp\Psr7; - -$stream = new Psr7\LazyOpenStream('/path/to/file', 'r'); -// The file has not yet been opened... - -echo $stream->read(10); -// The file is opened and read from only when needed. -``` - - -## LimitStream - -`GuzzleHttp\Psr7\LimitStream` - -LimitStream can be used to read a subset or slice of an existing stream object. -This can be useful for breaking a large file into smaller pieces to be sent in -chunks (e.g. Amazon S3's multipart upload API). - -```php -use GuzzleHttp\Psr7; - -$original = Psr7\stream_for(fopen('/tmp/test.txt', 'r+')); -echo $original->getSize(); -// >>> 1048576 - -// Limit the size of the body to 1024 bytes and start reading from byte 2048 -$stream = new Psr7\LimitStream($original, 1024, 2048); -echo $stream->getSize(); -// >>> 1024 -echo $stream->tell(); -// >>> 0 -``` - - -## MultipartStream - -`GuzzleHttp\Psr7\MultipartStream` - -Stream that when read returns bytes for a streaming multipart or -multipart/form-data stream. - - -## NoSeekStream - -`GuzzleHttp\Psr7\NoSeekStream` - -NoSeekStream wraps a stream and does not allow seeking. - -```php -use GuzzleHttp\Psr7; - -$original = Psr7\stream_for('foo'); -$noSeek = new Psr7\NoSeekStream($original); - -echo $noSeek->read(3); -// foo -var_export($noSeek->isSeekable()); -// false -$noSeek->seek(0); -var_export($noSeek->read(3)); -// NULL -``` - - -## PumpStream - -`GuzzleHttp\Psr7\PumpStream` - -Provides a read only stream that pumps data from a PHP callable. - -When invoking the provided callable, the PumpStream will pass the amount of -data requested to read to the callable. The callable can choose to ignore -this value and return fewer or more bytes than requested. Any extra data -returned by the provided callable is buffered internally until drained using -the read() function of the PumpStream. The provided callable MUST return -false when there is no more data to read. - - -## Implementing stream decorators - -Creating a stream decorator is very easy thanks to the -`GuzzleHttp\Psr7\StreamDecoratorTrait`. This trait provides methods that -implement `Psr\Http\Message\StreamInterface` by proxying to an underlying -stream. Just `use` the `StreamDecoratorTrait` and implement your custom -methods. - -For example, let's say we wanted to call a specific function each time the last -byte is read from a stream. This could be implemented by overriding the -`read()` method. - -```php -use Psr\Http\Message\StreamInterface; -use GuzzleHttp\Psr7\StreamDecoratorTrait; - -class EofCallbackStream implements StreamInterface -{ - use StreamDecoratorTrait; - - private $callback; - - public function __construct(StreamInterface $stream, callable $cb) - { - $this->stream = $stream; - $this->callback = $cb; - } - - public function read($length) - { - $result = $this->stream->read($length); - - // Invoke the callback when EOF is hit. - if ($this->eof()) { - call_user_func($this->callback); - } - - return $result; - } -} -``` - -This decorator could be added to any existing stream and used like so: - -```php -use GuzzleHttp\Psr7; - -$original = Psr7\stream_for('foo'); - -$eofStream = new EofCallbackStream($original, function () { - echo 'EOF!'; -}); - -$eofStream->read(2); -$eofStream->read(1); -// echoes "EOF!" -$eofStream->seek(0); -$eofStream->read(3); -// echoes "EOF!" -``` - - -## PHP StreamWrapper - -You can use the `GuzzleHttp\Psr7\StreamWrapper` class if you need to use a -PSR-7 stream as a PHP stream resource. - -Use the `GuzzleHttp\Psr7\StreamWrapper::getResource()` method to create a PHP -stream from a PSR-7 stream. - -```php -use GuzzleHttp\Psr7\StreamWrapper; - -$stream = GuzzleHttp\Psr7\stream_for('hello!'); -$resource = StreamWrapper::getResource($stream); -echo fread($resource, 6); // outputs hello! -``` - - -# Function API - -There are various functions available under the `GuzzleHttp\Psr7` namespace. - - -## `function str` - -`function str(MessageInterface $message)` - -Returns the string representation of an HTTP message. - -```php -$request = new GuzzleHttp\Psr7\Request('GET', 'http://example.com'); -echo GuzzleHttp\Psr7\str($request); -``` - - -## `function uri_for` - -`function uri_for($uri)` - -This function accepts a string or `Psr\Http\Message\UriInterface` and returns a -UriInterface for the given value. If the value is already a `UriInterface`, it -is returned as-is. - -```php -$uri = GuzzleHttp\Psr7\uri_for('http://example.com'); -assert($uri === GuzzleHttp\Psr7\uri_for($uri)); -``` - - -## `function stream_for` - -`function stream_for($resource = '', array $options = [])` - -Create a new stream based on the input type. - -Options is an associative array that can contain the following keys: - -* - metadata: Array of custom metadata. -* - size: Size of the stream. - -This method accepts the following `$resource` types: - -- `Psr\Http\Message\StreamInterface`: Returns the value as-is. -- `string`: Creates a stream object that uses the given string as the contents. -- `resource`: Creates a stream object that wraps the given PHP stream resource. -- `Iterator`: If the provided value implements `Iterator`, then a read-only - stream object will be created that wraps the given iterable. Each time the - stream is read from, data from the iterator will fill a buffer and will be - continuously called until the buffer is equal to the requested read size. - Subsequent read calls will first read from the buffer and then call `next` - on the underlying iterator until it is exhausted. -- `object` with `__toString()`: If the object has the `__toString()` method, - the object will be cast to a string and then a stream will be returned that - uses the string value. -- `NULL`: When `null` is passed, an empty stream object is returned. -- `callable` When a callable is passed, a read-only stream object will be - created that invokes the given callable. The callable is invoked with the - number of suggested bytes to read. The callable can return any number of - bytes, but MUST return `false` when there is no more data to return. The - stream object that wraps the callable will invoke the callable until the - number of requested bytes are available. Any additional bytes will be - buffered and used in subsequent reads. - -```php -$stream = GuzzleHttp\Psr7\stream_for('foo'); -$stream = GuzzleHttp\Psr7\stream_for(fopen('/path/to/file', 'r')); - -$generator = function ($bytes) { - for ($i = 0; $i < $bytes; $i++) { - yield ' '; - } -} - -$stream = GuzzleHttp\Psr7\stream_for($generator(100)); -``` - - -## `function parse_header` - -`function parse_header($header)` - -Parse an array of header values containing ";" separated data into an array of -associative arrays representing the header key value pair data of the header. -When a parameter does not contain a value, but just contains a key, this -function will inject a key with a '' string value. - - -## `function normalize_header` - -`function normalize_header($header)` - -Converts an array of header values that may contain comma separated headers -into an array of headers with no comma separated values. - - -## `function modify_request` - -`function modify_request(RequestInterface $request, array $changes)` - -Clone and modify a request with the given changes. This method is useful for -reducing the number of clones needed to mutate a message. - -The changes can be one of: - -- method: (string) Changes the HTTP method. -- set_headers: (array) Sets the given headers. -- remove_headers: (array) Remove the given headers. -- body: (mixed) Sets the given body. -- uri: (UriInterface) Set the URI. -- query: (string) Set the query string value of the URI. -- version: (string) Set the protocol version. - - -## `function rewind_body` - -`function rewind_body(MessageInterface $message)` - -Attempts to rewind a message body and throws an exception on failure. The body -of the message will only be rewound if a call to `tell()` returns a value other -than `0`. - - -## `function try_fopen` - -`function try_fopen($filename, $mode)` - -Safely opens a PHP stream resource using a filename. - -When fopen fails, PHP normally raises a warning. This function adds an error -handler that checks for errors and throws an exception instead. - - -## `function copy_to_string` - -`function copy_to_string(StreamInterface $stream, $maxLen = -1)` - -Copy the contents of a stream into a string until the given number of bytes -have been read. - - -## `function copy_to_stream` - -`function copy_to_stream(StreamInterface $source, StreamInterface $dest, $maxLen = -1)` - -Copy the contents of a stream into another stream until the given number of -bytes have been read. - - -## `function hash` - -`function hash(StreamInterface $stream, $algo, $rawOutput = false)` - -Calculate a hash of a Stream. This method reads the entire stream to calculate -a rolling hash (based on PHP's hash_init functions). - - -## `function readline` - -`function readline(StreamInterface $stream, $maxLength = null)` - -Read a line from the stream up to the maximum allowed buffer length. - - -## `function parse_request` - -`function parse_request($message)` - -Parses a request message string into a request object. - - -## `function parse_response` - -`function parse_response($message)` - -Parses a response message string into a response object. - - -## `function parse_query` - -`function parse_query($str, $urlEncoding = true)` - -Parse a query string into an associative array. - -If multiple values are found for the same key, the value of that key value pair -will become an array. This function does not parse nested PHP style arrays into -an associative array (e.g., `foo[a]=1&foo[b]=2` will be parsed into -`['foo[a]' => '1', 'foo[b]' => '2']`). - - -## `function build_query` - -`function build_query(array $params, $encoding = PHP_QUERY_RFC3986)` - -Build a query string from an array of key value pairs. - -This function can use the return value of parse_query() to build a query string. -This function does not modify the provided keys when an array is encountered -(like http_build_query would). - - -## `function mimetype_from_filename` - -`function mimetype_from_filename($filename)` - -Determines the mimetype of a file by looking at its extension. - - -## `function mimetype_from_extension` - -`function mimetype_from_extension($extension)` - -Maps a file extensions to a mimetype. - - -# Additional URI Methods - -Aside from the standard `Psr\Http\Message\UriInterface` implementation in form of the `GuzzleHttp\Psr7\Uri` class, -this library also provides additional functionality when working with URIs as static methods. - -## URI Types - -An instance of `Psr\Http\Message\UriInterface` can either be an absolute URI or a relative reference. -An absolute URI has a scheme. A relative reference is used to express a URI relative to another URI, -the base URI. Relative references can be divided into several forms according to -[RFC 3986 Section 4.2](https://tools.ietf.org/html/rfc3986#section-4.2): - -- network-path references, e.g. `//example.com/path` -- absolute-path references, e.g. `/path` -- relative-path references, e.g. `subpath` - -The following methods can be used to identify the type of the URI. - -### `GuzzleHttp\Psr7\Uri::isAbsolute` - -`public static function isAbsolute(UriInterface $uri): bool` - -Whether the URI is absolute, i.e. it has a scheme. - -### `GuzzleHttp\Psr7\Uri::isNetworkPathReference` - -`public static function isNetworkPathReference(UriInterface $uri): bool` - -Whether the URI is a network-path reference. A relative reference that begins with two slash characters is -termed an network-path reference. - -### `GuzzleHttp\Psr7\Uri::isAbsolutePathReference` - -`public static function isAbsolutePathReference(UriInterface $uri): bool` - -Whether the URI is a absolute-path reference. A relative reference that begins with a single slash character is -termed an absolute-path reference. - -### `GuzzleHttp\Psr7\Uri::isRelativePathReference` - -`public static function isRelativePathReference(UriInterface $uri): bool` - -Whether the URI is a relative-path reference. A relative reference that does not begin with a slash character is -termed a relative-path reference. - -### `GuzzleHttp\Psr7\Uri::isSameDocumentReference` - -`public static function isSameDocumentReference(UriInterface $uri, UriInterface $base = null): bool` - -Whether the URI is a same-document reference. A same-document reference refers to a URI that is, aside from its -fragment component, identical to the base URI. When no base URI is given, only an empty URI reference -(apart from its fragment) is considered a same-document reference. - -## URI Components - -Additional methods to work with URI components. - -### `GuzzleHttp\Psr7\Uri::isDefaultPort` - -`public static function isDefaultPort(UriInterface $uri): bool` - -Whether the URI has the default port of the current scheme. `Psr\Http\Message\UriInterface::getPort` may return null -or the standard port. This method can be used independently of the implementation. - -### `GuzzleHttp\Psr7\Uri::composeComponents` - -`public static function composeComponents($scheme, $authority, $path, $query, $fragment): string` - -Composes a URI reference string from its various components according to -[RFC 3986 Section 5.3](https://tools.ietf.org/html/rfc3986#section-5.3). Usually this method does not need to be called -manually but instead is used indirectly via `Psr\Http\Message\UriInterface::__toString`. - -### `GuzzleHttp\Psr7\Uri::fromParts` - -`public static function fromParts(array $parts): UriInterface` - -Creates a URI from a hash of [`parse_url`](http://php.net/manual/en/function.parse-url.php) components. - - -### `GuzzleHttp\Psr7\Uri::withQueryValue` - -`public static function withQueryValue(UriInterface $uri, $key, $value): UriInterface` - -Creates a new URI with a specific query string value. Any existing query string values that exactly match the -provided key are removed and replaced with the given key value pair. A value of null will set the query string -key without a value, e.g. "key" instead of "key=value". - -### `GuzzleHttp\Psr7\Uri::withQueryValues` - -`public static function withQueryValues(UriInterface $uri, array $keyValueArray): UriInterface` - -Creates a new URI with multiple query string values. It has the same behavior as `withQueryValue()` but for an -associative array of key => value. - -### `GuzzleHttp\Psr7\Uri::withoutQueryValue` - -`public static function withoutQueryValue(UriInterface $uri, $key): UriInterface` - -Creates a new URI with a specific query string value removed. Any existing query string values that exactly match the -provided key are removed. - -## Reference Resolution - -`GuzzleHttp\Psr7\UriResolver` provides methods to resolve a URI reference in the context of a base URI according -to [RFC 3986 Section 5](https://tools.ietf.org/html/rfc3986#section-5). This is for example also what web browsers -do when resolving a link in a website based on the current request URI. - -### `GuzzleHttp\Psr7\UriResolver::resolve` - -`public static function resolve(UriInterface $base, UriInterface $rel): UriInterface` - -Converts the relative URI into a new URI that is resolved against the base URI. - -### `GuzzleHttp\Psr7\UriResolver::removeDotSegments` - -`public static function removeDotSegments(string $path): string` - -Removes dot segments from a path and returns the new path according to -[RFC 3986 Section 5.2.4](https://tools.ietf.org/html/rfc3986#section-5.2.4). - -### `GuzzleHttp\Psr7\UriResolver::relativize` - -`public static function relativize(UriInterface $base, UriInterface $target): UriInterface` - -Returns the target URI as a relative reference from the base URI. This method is the counterpart to resolve(): - -```php -(string) $target === (string) UriResolver::resolve($base, UriResolver::relativize($base, $target)) -``` - -One use-case is to use the current request URI as base URI and then generate relative links in your documents -to reduce the document size or offer self-contained downloadable document archives. - -```php -$base = new Uri('http://example.com/a/b/'); -echo UriResolver::relativize($base, new Uri('http://example.com/a/b/c')); // prints 'c'. -echo UriResolver::relativize($base, new Uri('http://example.com/a/x/y')); // prints '../x/y'. -echo UriResolver::relativize($base, new Uri('http://example.com/a/b/?q')); // prints '?q'. -echo UriResolver::relativize($base, new Uri('http://example.org/a/b/')); // prints '//example.org/a/b/'. -``` - -## Normalization and Comparison - -`GuzzleHttp\Psr7\UriNormalizer` provides methods to normalize and compare URIs according to -[RFC 3986 Section 6](https://tools.ietf.org/html/rfc3986#section-6). - -### `GuzzleHttp\Psr7\UriNormalizer::normalize` - -`public static function normalize(UriInterface $uri, $flags = self::PRESERVING_NORMALIZATIONS): UriInterface` - -Returns a normalized URI. The scheme and host component are already normalized to lowercase per PSR-7 UriInterface. -This methods adds additional normalizations that can be configured with the `$flags` parameter which is a bitmask -of normalizations to apply. The following normalizations are available: - -- `UriNormalizer::PRESERVING_NORMALIZATIONS` - - Default normalizations which only include the ones that preserve semantics. - -- `UriNormalizer::CAPITALIZE_PERCENT_ENCODING` - - All letters within a percent-encoding triplet (e.g., "%3A") are case-insensitive, and should be capitalized. - - Example: `http://example.org/a%c2%b1b` → `http://example.org/a%C2%B1b` - -- `UriNormalizer::DECODE_UNRESERVED_CHARACTERS` - - Decodes percent-encoded octets of unreserved characters. For consistency, percent-encoded octets in the ranges of - ALPHA (%41–%5A and %61–%7A), DIGIT (%30–%39), hyphen (%2D), period (%2E), underscore (%5F), or tilde (%7E) should - not be created by URI producers and, when found in a URI, should be decoded to their corresponding unreserved - characters by URI normalizers. - - Example: `http://example.org/%7Eusern%61me/` → `http://example.org/~username/` - -- `UriNormalizer::CONVERT_EMPTY_PATH` - - Converts the empty path to "/" for http and https URIs. - - Example: `http://example.org` → `http://example.org/` - -- `UriNormalizer::REMOVE_DEFAULT_HOST` - - Removes the default host of the given URI scheme from the URI. Only the "file" scheme defines the default host - "localhost". All of `file:/myfile`, `file:///myfile`, and `file://localhost/myfile` are equivalent according to - RFC 3986. - - Example: `file://localhost/myfile` → `file:///myfile` - -- `UriNormalizer::REMOVE_DEFAULT_PORT` - - Removes the default port of the given URI scheme from the URI. - - Example: `http://example.org:80/` → `http://example.org/` - -- `UriNormalizer::REMOVE_DOT_SEGMENTS` - - Removes unnecessary dot-segments. Dot-segments in relative-path references are not removed as it would - change the semantics of the URI reference. - - Example: `http://example.org/../a/b/../c/./d.html` → `http://example.org/a/c/d.html` - -- `UriNormalizer::REMOVE_DUPLICATE_SLASHES` - - Paths which include two or more adjacent slashes are converted to one. Webservers usually ignore duplicate slashes - and treat those URIs equivalent. But in theory those URIs do not need to be equivalent. So this normalization - may change the semantics. Encoded slashes (%2F) are not removed. - - Example: `http://example.org//foo///bar.html` → `http://example.org/foo/bar.html` - -- `UriNormalizer::SORT_QUERY_PARAMETERS` - - Sort query parameters with their values in alphabetical order. However, the order of parameters in a URI may be - significant (this is not defined by the standard). So this normalization is not safe and may change the semantics - of the URI. - - Example: `?lang=en&article=fred` → `?article=fred&lang=en` - -### `GuzzleHttp\Psr7\UriNormalizer::isEquivalent` - -`public static function isEquivalent(UriInterface $uri1, UriInterface $uri2, $normalizations = self::PRESERVING_NORMALIZATIONS): bool` - -Whether two URIs can be considered equivalent. Both URIs are normalized automatically before comparison with the given -`$normalizations` bitmask. The method also accepts relative URI references and returns true when they are equivalent. -This of course assumes they will be resolved against the same base URI. If this is not the case, determination of -equivalence or difference of relative references does not mean anything. diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/composer.json b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/composer.json deleted file mode 100644 index 168a055b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/composer.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "name": "guzzlehttp/psr7", - "type": "library", - "description": "PSR-7 message implementation that also provides common utility methods", - "keywords": ["request", "response", "message", "stream", "http", "uri", "url", "psr-7"], - "license": "MIT", - "authors": [ - { - "name": "Michael Dowling", - "email": "mtdowling@gmail.com", - "homepage": "https://github.com/mtdowling" - }, - { - "name": "Tobias Schultze", - "homepage": "https://github.com/Tobion" - } - ], - "require": { - "php": ">=5.4.0", - "psr/http-message": "~1.0", - "ralouphie/getallheaders": "^2.0.5 || ^3.0.0" - }, - "require-dev": { - "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8", - "ext-zlib": "*" - }, - "provide": { - "psr/http-message-implementation": "1.0" - }, - "suggest": { - "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses" - }, - "autoload": { - "psr-4": { - "GuzzleHttp\\Psr7\\": "src/" - }, - "files": ["src/functions_include.php"] - }, - "autoload-dev": { - "psr-4": { - "GuzzleHttp\\Tests\\Psr7\\": "tests/" - } - }, - "extra": { - "branch-alias": { - "dev-master": "1.6-dev" - } - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/AppendStream.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/AppendStream.php deleted file mode 100644 index 472a0d61..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/AppendStream.php +++ /dev/null @@ -1,241 +0,0 @@ -addStream($stream); - } - } - - public function __toString() - { - try { - $this->rewind(); - return $this->getContents(); - } catch (\Exception $e) { - return ''; - } - } - - /** - * Add a stream to the AppendStream - * - * @param StreamInterface $stream Stream to append. Must be readable. - * - * @throws \InvalidArgumentException if the stream is not readable - */ - public function addStream(StreamInterface $stream) - { - if (!$stream->isReadable()) { - throw new \InvalidArgumentException('Each stream must be readable'); - } - - // The stream is only seekable if all streams are seekable - if (!$stream->isSeekable()) { - $this->seekable = false; - } - - $this->streams[] = $stream; - } - - public function getContents() - { - return copy_to_string($this); - } - - /** - * Closes each attached stream. - * - * {@inheritdoc} - */ - public function close() - { - $this->pos = $this->current = 0; - $this->seekable = true; - - foreach ($this->streams as $stream) { - $stream->close(); - } - - $this->streams = []; - } - - /** - * Detaches each attached stream. - * - * Returns null as it's not clear which underlying stream resource to return. - * - * {@inheritdoc} - */ - public function detach() - { - $this->pos = $this->current = 0; - $this->seekable = true; - - foreach ($this->streams as $stream) { - $stream->detach(); - } - - $this->streams = []; - } - - public function tell() - { - return $this->pos; - } - - /** - * Tries to calculate the size by adding the size of each stream. - * - * If any of the streams do not return a valid number, then the size of the - * append stream cannot be determined and null is returned. - * - * {@inheritdoc} - */ - public function getSize() - { - $size = 0; - - foreach ($this->streams as $stream) { - $s = $stream->getSize(); - if ($s === null) { - return null; - } - $size += $s; - } - - return $size; - } - - public function eof() - { - return !$this->streams || - ($this->current >= count($this->streams) - 1 && - $this->streams[$this->current]->eof()); - } - - public function rewind() - { - $this->seek(0); - } - - /** - * Attempts to seek to the given position. Only supports SEEK_SET. - * - * {@inheritdoc} - */ - public function seek($offset, $whence = SEEK_SET) - { - if (!$this->seekable) { - throw new \RuntimeException('This AppendStream is not seekable'); - } elseif ($whence !== SEEK_SET) { - throw new \RuntimeException('The AppendStream can only seek with SEEK_SET'); - } - - $this->pos = $this->current = 0; - - // Rewind each stream - foreach ($this->streams as $i => $stream) { - try { - $stream->rewind(); - } catch (\Exception $e) { - throw new \RuntimeException('Unable to seek stream ' - . $i . ' of the AppendStream', 0, $e); - } - } - - // Seek to the actual position by reading from each stream - while ($this->pos < $offset && !$this->eof()) { - $result = $this->read(min(8096, $offset - $this->pos)); - if ($result === '') { - break; - } - } - } - - /** - * Reads from all of the appended streams until the length is met or EOF. - * - * {@inheritdoc} - */ - public function read($length) - { - $buffer = ''; - $total = count($this->streams) - 1; - $remaining = $length; - $progressToNext = false; - - while ($remaining > 0) { - - // Progress to the next stream if needed. - if ($progressToNext || $this->streams[$this->current]->eof()) { - $progressToNext = false; - if ($this->current === $total) { - break; - } - $this->current++; - } - - $result = $this->streams[$this->current]->read($remaining); - - // Using a loose comparison here to match on '', false, and null - if ($result == null) { - $progressToNext = true; - continue; - } - - $buffer .= $result; - $remaining = $length - strlen($buffer); - } - - $this->pos += strlen($buffer); - - return $buffer; - } - - public function isReadable() - { - return true; - } - - public function isWritable() - { - return false; - } - - public function isSeekable() - { - return $this->seekable; - } - - public function write($string) - { - throw new \RuntimeException('Cannot write to an AppendStream'); - } - - public function getMetadata($key = null) - { - return $key ? null : []; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/BufferStream.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/BufferStream.php deleted file mode 100644 index af4d4c22..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/BufferStream.php +++ /dev/null @@ -1,137 +0,0 @@ -hwm = $hwm; - } - - public function __toString() - { - return $this->getContents(); - } - - public function getContents() - { - $buffer = $this->buffer; - $this->buffer = ''; - - return $buffer; - } - - public function close() - { - $this->buffer = ''; - } - - public function detach() - { - $this->close(); - } - - public function getSize() - { - return strlen($this->buffer); - } - - public function isReadable() - { - return true; - } - - public function isWritable() - { - return true; - } - - public function isSeekable() - { - return false; - } - - public function rewind() - { - $this->seek(0); - } - - public function seek($offset, $whence = SEEK_SET) - { - throw new \RuntimeException('Cannot seek a BufferStream'); - } - - public function eof() - { - return strlen($this->buffer) === 0; - } - - public function tell() - { - throw new \RuntimeException('Cannot determine the position of a BufferStream'); - } - - /** - * Reads data from the buffer. - */ - public function read($length) - { - $currentLength = strlen($this->buffer); - - if ($length >= $currentLength) { - // No need to slice the buffer because we don't have enough data. - $result = $this->buffer; - $this->buffer = ''; - } else { - // Slice up the result to provide a subset of the buffer. - $result = substr($this->buffer, 0, $length); - $this->buffer = substr($this->buffer, $length); - } - - return $result; - } - - /** - * Writes data to the buffer. - */ - public function write($string) - { - $this->buffer .= $string; - - // TODO: What should happen here? - if (strlen($this->buffer) >= $this->hwm) { - return false; - } - - return strlen($string); - } - - public function getMetadata($key = null) - { - if ($key == 'hwm') { - return $this->hwm; - } - - return $key ? null : []; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/CachingStream.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/CachingStream.php deleted file mode 100644 index ed68f086..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/CachingStream.php +++ /dev/null @@ -1,138 +0,0 @@ -remoteStream = $stream; - $this->stream = $target ?: new Stream(fopen('php://temp', 'r+')); - } - - public function getSize() - { - return max($this->stream->getSize(), $this->remoteStream->getSize()); - } - - public function rewind() - { - $this->seek(0); - } - - public function seek($offset, $whence = SEEK_SET) - { - if ($whence == SEEK_SET) { - $byte = $offset; - } elseif ($whence == SEEK_CUR) { - $byte = $offset + $this->tell(); - } elseif ($whence == SEEK_END) { - $size = $this->remoteStream->getSize(); - if ($size === null) { - $size = $this->cacheEntireStream(); - } - $byte = $size + $offset; - } else { - throw new \InvalidArgumentException('Invalid whence'); - } - - $diff = $byte - $this->stream->getSize(); - - if ($diff > 0) { - // Read the remoteStream until we have read in at least the amount - // of bytes requested, or we reach the end of the file. - while ($diff > 0 && !$this->remoteStream->eof()) { - $this->read($diff); - $diff = $byte - $this->stream->getSize(); - } - } else { - // We can just do a normal seek since we've already seen this byte. - $this->stream->seek($byte); - } - } - - public function read($length) - { - // Perform a regular read on any previously read data from the buffer - $data = $this->stream->read($length); - $remaining = $length - strlen($data); - - // More data was requested so read from the remote stream - if ($remaining) { - // If data was written to the buffer in a position that would have - // been filled from the remote stream, then we must skip bytes on - // the remote stream to emulate overwriting bytes from that - // position. This mimics the behavior of other PHP stream wrappers. - $remoteData = $this->remoteStream->read( - $remaining + $this->skipReadBytes - ); - - if ($this->skipReadBytes) { - $len = strlen($remoteData); - $remoteData = substr($remoteData, $this->skipReadBytes); - $this->skipReadBytes = max(0, $this->skipReadBytes - $len); - } - - $data .= $remoteData; - $this->stream->write($remoteData); - } - - return $data; - } - - public function write($string) - { - // When appending to the end of the currently read stream, you'll want - // to skip bytes from being read from the remote stream to emulate - // other stream wrappers. Basically replacing bytes of data of a fixed - // length. - $overflow = (strlen($string) + $this->tell()) - $this->remoteStream->tell(); - if ($overflow > 0) { - $this->skipReadBytes += $overflow; - } - - return $this->stream->write($string); - } - - public function eof() - { - return $this->stream->eof() && $this->remoteStream->eof(); - } - - /** - * Close both the remote stream and buffer stream - */ - public function close() - { - $this->remoteStream->close() && $this->stream->close(); - } - - private function cacheEntireStream() - { - $target = new FnStream(['write' => 'strlen']); - copy_to_stream($this, $target); - - return $this->tell(); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/DroppingStream.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/DroppingStream.php deleted file mode 100644 index 8935c80d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/DroppingStream.php +++ /dev/null @@ -1,42 +0,0 @@ -stream = $stream; - $this->maxLength = $maxLength; - } - - public function write($string) - { - $diff = $this->maxLength - $this->stream->getSize(); - - // Begin returning 0 when the underlying stream is too large. - if ($diff <= 0) { - return 0; - } - - // Write the stream or a subset of the stream if needed. - if (strlen($string) < $diff) { - return $this->stream->write($string); - } - - return $this->stream->write(substr($string, 0, $diff)); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/FnStream.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/FnStream.php deleted file mode 100644 index 73daea6f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/FnStream.php +++ /dev/null @@ -1,158 +0,0 @@ -methods = $methods; - - // Create the functions on the class - foreach ($methods as $name => $fn) { - $this->{'_fn_' . $name} = $fn; - } - } - - /** - * Lazily determine which methods are not implemented. - * @throws \BadMethodCallException - */ - public function __get($name) - { - throw new \BadMethodCallException(str_replace('_fn_', '', $name) - . '() is not implemented in the FnStream'); - } - - /** - * The close method is called on the underlying stream only if possible. - */ - public function __destruct() - { - if (isset($this->_fn_close)) { - call_user_func($this->_fn_close); - } - } - - /** - * An unserialize would allow the __destruct to run when the unserialized value goes out of scope. - * @throws \LogicException - */ - public function __wakeup() - { - throw new \LogicException('FnStream should never be unserialized'); - } - - /** - * Adds custom functionality to an underlying stream by intercepting - * specific method calls. - * - * @param StreamInterface $stream Stream to decorate - * @param array $methods Hash of method name to a closure - * - * @return FnStream - */ - public static function decorate(StreamInterface $stream, array $methods) - { - // If any of the required methods were not provided, then simply - // proxy to the decorated stream. - foreach (array_diff(self::$slots, array_keys($methods)) as $diff) { - $methods[$diff] = [$stream, $diff]; - } - - return new self($methods); - } - - public function __toString() - { - return call_user_func($this->_fn___toString); - } - - public function close() - { - return call_user_func($this->_fn_close); - } - - public function detach() - { - return call_user_func($this->_fn_detach); - } - - public function getSize() - { - return call_user_func($this->_fn_getSize); - } - - public function tell() - { - return call_user_func($this->_fn_tell); - } - - public function eof() - { - return call_user_func($this->_fn_eof); - } - - public function isSeekable() - { - return call_user_func($this->_fn_isSeekable); - } - - public function rewind() - { - call_user_func($this->_fn_rewind); - } - - public function seek($offset, $whence = SEEK_SET) - { - call_user_func($this->_fn_seek, $offset, $whence); - } - - public function isWritable() - { - return call_user_func($this->_fn_isWritable); - } - - public function write($string) - { - return call_user_func($this->_fn_write, $string); - } - - public function isReadable() - { - return call_user_func($this->_fn_isReadable); - } - - public function read($length) - { - return call_user_func($this->_fn_read, $length); - } - - public function getContents() - { - return call_user_func($this->_fn_getContents); - } - - public function getMetadata($key = null) - { - return call_user_func($this->_fn_getMetadata, $key); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/InflateStream.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/InflateStream.php deleted file mode 100644 index 5e4f6028..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/InflateStream.php +++ /dev/null @@ -1,52 +0,0 @@ -read(10); - $filenameHeaderLength = $this->getLengthOfPossibleFilenameHeader($stream, $header); - // Skip the header, that is 10 + length of filename + 1 (nil) bytes - $stream = new LimitStream($stream, -1, 10 + $filenameHeaderLength); - $resource = StreamWrapper::getResource($stream); - stream_filter_append($resource, 'zlib.inflate', STREAM_FILTER_READ); - $this->stream = $stream->isSeekable() ? new Stream($resource) : new NoSeekStream(new Stream($resource)); - } - - /** - * @param StreamInterface $stream - * @param $header - * @return int - */ - private function getLengthOfPossibleFilenameHeader(StreamInterface $stream, $header) - { - $filename_header_length = 0; - - if (substr(bin2hex($header), 6, 2) === '08') { - // we have a filename, read until nil - $filename_header_length = 1; - while ($stream->read(1) !== chr(0)) { - $filename_header_length++; - } - } - - return $filename_header_length; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/LazyOpenStream.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/LazyOpenStream.php deleted file mode 100644 index 02cec3af..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/LazyOpenStream.php +++ /dev/null @@ -1,39 +0,0 @@ -filename = $filename; - $this->mode = $mode; - } - - /** - * Creates the underlying stream lazily when required. - * - * @return StreamInterface - */ - protected function createStream() - { - return stream_for(try_fopen($this->filename, $this->mode)); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/LimitStream.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/LimitStream.php deleted file mode 100644 index e4f239e3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/LimitStream.php +++ /dev/null @@ -1,155 +0,0 @@ -stream = $stream; - $this->setLimit($limit); - $this->setOffset($offset); - } - - public function eof() - { - // Always return true if the underlying stream is EOF - if ($this->stream->eof()) { - return true; - } - - // No limit and the underlying stream is not at EOF - if ($this->limit == -1) { - return false; - } - - return $this->stream->tell() >= $this->offset + $this->limit; - } - - /** - * Returns the size of the limited subset of data - * {@inheritdoc} - */ - public function getSize() - { - if (null === ($length = $this->stream->getSize())) { - return null; - } elseif ($this->limit == -1) { - return $length - $this->offset; - } else { - return min($this->limit, $length - $this->offset); - } - } - - /** - * Allow for a bounded seek on the read limited stream - * {@inheritdoc} - */ - public function seek($offset, $whence = SEEK_SET) - { - if ($whence !== SEEK_SET || $offset < 0) { - throw new \RuntimeException(sprintf( - 'Cannot seek to offset %s with whence %s', - $offset, - $whence - )); - } - - $offset += $this->offset; - - if ($this->limit !== -1) { - if ($offset > $this->offset + $this->limit) { - $offset = $this->offset + $this->limit; - } - } - - $this->stream->seek($offset); - } - - /** - * Give a relative tell() - * {@inheritdoc} - */ - public function tell() - { - return $this->stream->tell() - $this->offset; - } - - /** - * Set the offset to start limiting from - * - * @param int $offset Offset to seek to and begin byte limiting from - * - * @throws \RuntimeException if the stream cannot be seeked. - */ - public function setOffset($offset) - { - $current = $this->stream->tell(); - - if ($current !== $offset) { - // If the stream cannot seek to the offset position, then read to it - if ($this->stream->isSeekable()) { - $this->stream->seek($offset); - } elseif ($current > $offset) { - throw new \RuntimeException("Could not seek to stream offset $offset"); - } else { - $this->stream->read($offset - $current); - } - } - - $this->offset = $offset; - } - - /** - * Set the limit of bytes that the decorator allows to be read from the - * stream. - * - * @param int $limit Number of bytes to allow to be read from the stream. - * Use -1 for no limit. - */ - public function setLimit($limit) - { - $this->limit = $limit; - } - - public function read($length) - { - if ($this->limit == -1) { - return $this->stream->read($length); - } - - // Check if the current position is less than the total allowed - // bytes + original offset - $remaining = ($this->offset + $this->limit) - $this->stream->tell(); - if ($remaining > 0) { - // Only return the amount of requested data, ensuring that the byte - // limit is not exceeded - return $this->stream->read(min($remaining, $length)); - } - - return ''; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/MessageTrait.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/MessageTrait.php deleted file mode 100644 index a7966d10..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/MessageTrait.php +++ /dev/null @@ -1,213 +0,0 @@ - array of values */ - private $headers = []; - - /** @var array Map of lowercase header name => original name at registration */ - private $headerNames = []; - - /** @var string */ - private $protocol = '1.1'; - - /** @var StreamInterface */ - private $stream; - - public function getProtocolVersion() - { - return $this->protocol; - } - - public function withProtocolVersion($version) - { - if ($this->protocol === $version) { - return $this; - } - - $new = clone $this; - $new->protocol = $version; - return $new; - } - - public function getHeaders() - { - return $this->headers; - } - - public function hasHeader($header) - { - return isset($this->headerNames[strtolower($header)]); - } - - public function getHeader($header) - { - $header = strtolower($header); - - if (!isset($this->headerNames[$header])) { - return []; - } - - $header = $this->headerNames[$header]; - - return $this->headers[$header]; - } - - public function getHeaderLine($header) - { - return implode(', ', $this->getHeader($header)); - } - - public function withHeader($header, $value) - { - $this->assertHeader($header); - $value = $this->normalizeHeaderValue($value); - $normalized = strtolower($header); - - $new = clone $this; - if (isset($new->headerNames[$normalized])) { - unset($new->headers[$new->headerNames[$normalized]]); - } - $new->headerNames[$normalized] = $header; - $new->headers[$header] = $value; - - return $new; - } - - public function withAddedHeader($header, $value) - { - $this->assertHeader($header); - $value = $this->normalizeHeaderValue($value); - $normalized = strtolower($header); - - $new = clone $this; - if (isset($new->headerNames[$normalized])) { - $header = $this->headerNames[$normalized]; - $new->headers[$header] = array_merge($this->headers[$header], $value); - } else { - $new->headerNames[$normalized] = $header; - $new->headers[$header] = $value; - } - - return $new; - } - - public function withoutHeader($header) - { - $normalized = strtolower($header); - - if (!isset($this->headerNames[$normalized])) { - return $this; - } - - $header = $this->headerNames[$normalized]; - - $new = clone $this; - unset($new->headers[$header], $new->headerNames[$normalized]); - - return $new; - } - - public function getBody() - { - if (!$this->stream) { - $this->stream = stream_for(''); - } - - return $this->stream; - } - - public function withBody(StreamInterface $body) - { - if ($body === $this->stream) { - return $this; - } - - $new = clone $this; - $new->stream = $body; - return $new; - } - - private function setHeaders(array $headers) - { - $this->headerNames = $this->headers = []; - foreach ($headers as $header => $value) { - if (is_int($header)) { - // Numeric array keys are converted to int by PHP but having a header name '123' is not forbidden by the spec - // and also allowed in withHeader(). So we need to cast it to string again for the following assertion to pass. - $header = (string) $header; - } - $this->assertHeader($header); - $value = $this->normalizeHeaderValue($value); - $normalized = strtolower($header); - if (isset($this->headerNames[$normalized])) { - $header = $this->headerNames[$normalized]; - $this->headers[$header] = array_merge($this->headers[$header], $value); - } else { - $this->headerNames[$normalized] = $header; - $this->headers[$header] = $value; - } - } - } - - private function normalizeHeaderValue($value) - { - if (!is_array($value)) { - return $this->trimHeaderValues([$value]); - } - - if (count($value) === 0) { - throw new \InvalidArgumentException('Header value can not be an empty array.'); - } - - return $this->trimHeaderValues($value); - } - - /** - * Trims whitespace from the header values. - * - * Spaces and tabs ought to be excluded by parsers when extracting the field value from a header field. - * - * header-field = field-name ":" OWS field-value OWS - * OWS = *( SP / HTAB ) - * - * @param string[] $values Header values - * - * @return string[] Trimmed header values - * - * @see https://tools.ietf.org/html/rfc7230#section-3.2.4 - */ - private function trimHeaderValues(array $values) - { - return array_map(function ($value) { - if (!is_scalar($value) && null !== $value) { - throw new \InvalidArgumentException(sprintf( - 'Header value must be scalar or null but %s provided.', - is_object($value) ? get_class($value) : gettype($value) - )); - } - - return trim((string) $value, " \t"); - }, $values); - } - - private function assertHeader($header) - { - if (!is_string($header)) { - throw new \InvalidArgumentException(sprintf( - 'Header name must be a string but %s provided.', - is_object($header) ? get_class($header) : gettype($header) - )); - } - - if ($header === '') { - throw new \InvalidArgumentException('Header name can not be empty.'); - } - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/MultipartStream.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/MultipartStream.php deleted file mode 100644 index c0fd584f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/MultipartStream.php +++ /dev/null @@ -1,153 +0,0 @@ -boundary = $boundary ?: sha1(uniqid('', true)); - $this->stream = $this->createStream($elements); - } - - /** - * Get the boundary - * - * @return string - */ - public function getBoundary() - { - return $this->boundary; - } - - public function isWritable() - { - return false; - } - - /** - * Get the headers needed before transferring the content of a POST file - */ - private function getHeaders(array $headers) - { - $str = ''; - foreach ($headers as $key => $value) { - $str .= "{$key}: {$value}\r\n"; - } - - return "--{$this->boundary}\r\n" . trim($str) . "\r\n\r\n"; - } - - /** - * Create the aggregate stream that will be used to upload the POST data - */ - protected function createStream(array $elements) - { - $stream = new AppendStream(); - - foreach ($elements as $element) { - $this->addElement($stream, $element); - } - - // Add the trailing boundary with CRLF - $stream->addStream(stream_for("--{$this->boundary}--\r\n")); - - return $stream; - } - - private function addElement(AppendStream $stream, array $element) - { - foreach (['contents', 'name'] as $key) { - if (!array_key_exists($key, $element)) { - throw new \InvalidArgumentException("A '{$key}' key is required"); - } - } - - $element['contents'] = stream_for($element['contents']); - - if (empty($element['filename'])) { - $uri = $element['contents']->getMetadata('uri'); - if (substr($uri, 0, 6) !== 'php://') { - $element['filename'] = $uri; - } - } - - list($body, $headers) = $this->createElement( - $element['name'], - $element['contents'], - isset($element['filename']) ? $element['filename'] : null, - isset($element['headers']) ? $element['headers'] : [] - ); - - $stream->addStream(stream_for($this->getHeaders($headers))); - $stream->addStream($body); - $stream->addStream(stream_for("\r\n")); - } - - /** - * @return array - */ - private function createElement($name, StreamInterface $stream, $filename, array $headers) - { - // Set a default content-disposition header if one was no provided - $disposition = $this->getHeader($headers, 'content-disposition'); - if (!$disposition) { - $headers['Content-Disposition'] = ($filename === '0' || $filename) - ? sprintf('form-data; name="%s"; filename="%s"', - $name, - basename($filename)) - : "form-data; name=\"{$name}\""; - } - - // Set a default content-length header if one was no provided - $length = $this->getHeader($headers, 'content-length'); - if (!$length) { - if ($length = $stream->getSize()) { - $headers['Content-Length'] = (string) $length; - } - } - - // Set a default Content-Type if one was not supplied - $type = $this->getHeader($headers, 'content-type'); - if (!$type && ($filename === '0' || $filename)) { - if ($type = mimetype_from_filename($filename)) { - $headers['Content-Type'] = $type; - } - } - - return [$stream, $headers]; - } - - private function getHeader(array $headers, $key) - { - $lowercaseHeader = strtolower($key); - foreach ($headers as $k => $v) { - if (strtolower($k) === $lowercaseHeader) { - return $v; - } - } - - return null; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/NoSeekStream.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/NoSeekStream.php deleted file mode 100644 index 23322180..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/NoSeekStream.php +++ /dev/null @@ -1,22 +0,0 @@ -source = $source; - $this->size = isset($options['size']) ? $options['size'] : null; - $this->metadata = isset($options['metadata']) ? $options['metadata'] : []; - $this->buffer = new BufferStream(); - } - - public function __toString() - { - try { - return copy_to_string($this); - } catch (\Exception $e) { - return ''; - } - } - - public function close() - { - $this->detach(); - } - - public function detach() - { - $this->tellPos = false; - $this->source = null; - } - - public function getSize() - { - return $this->size; - } - - public function tell() - { - return $this->tellPos; - } - - public function eof() - { - return !$this->source; - } - - public function isSeekable() - { - return false; - } - - public function rewind() - { - $this->seek(0); - } - - public function seek($offset, $whence = SEEK_SET) - { - throw new \RuntimeException('Cannot seek a PumpStream'); - } - - public function isWritable() - { - return false; - } - - public function write($string) - { - throw new \RuntimeException('Cannot write to a PumpStream'); - } - - public function isReadable() - { - return true; - } - - public function read($length) - { - $data = $this->buffer->read($length); - $readLen = strlen($data); - $this->tellPos += $readLen; - $remaining = $length - $readLen; - - if ($remaining) { - $this->pump($remaining); - $data .= $this->buffer->read($remaining); - $this->tellPos += strlen($data) - $readLen; - } - - return $data; - } - - public function getContents() - { - $result = ''; - while (!$this->eof()) { - $result .= $this->read(1000000); - } - - return $result; - } - - public function getMetadata($key = null) - { - if (!$key) { - return $this->metadata; - } - - return isset($this->metadata[$key]) ? $this->metadata[$key] : null; - } - - private function pump($length) - { - if ($this->source) { - do { - $data = call_user_func($this->source, $length); - if ($data === false || $data === null) { - $this->source = null; - return; - } - $this->buffer->write($data); - $length -= strlen($data); - } while ($length > 0); - } - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/Request.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/Request.php deleted file mode 100644 index 59f337db..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/Request.php +++ /dev/null @@ -1,151 +0,0 @@ -assertMethod($method); - if (!($uri instanceof UriInterface)) { - $uri = new Uri($uri); - } - - $this->method = strtoupper($method); - $this->uri = $uri; - $this->setHeaders($headers); - $this->protocol = $version; - - if (!isset($this->headerNames['host'])) { - $this->updateHostFromUri(); - } - - if ($body !== '' && $body !== null) { - $this->stream = stream_for($body); - } - } - - public function getRequestTarget() - { - if ($this->requestTarget !== null) { - return $this->requestTarget; - } - - $target = $this->uri->getPath(); - if ($target == '') { - $target = '/'; - } - if ($this->uri->getQuery() != '') { - $target .= '?' . $this->uri->getQuery(); - } - - return $target; - } - - public function withRequestTarget($requestTarget) - { - if (preg_match('#\s#', $requestTarget)) { - throw new InvalidArgumentException( - 'Invalid request target provided; cannot contain whitespace' - ); - } - - $new = clone $this; - $new->requestTarget = $requestTarget; - return $new; - } - - public function getMethod() - { - return $this->method; - } - - public function withMethod($method) - { - $this->assertMethod($method); - $new = clone $this; - $new->method = strtoupper($method); - return $new; - } - - public function getUri() - { - return $this->uri; - } - - public function withUri(UriInterface $uri, $preserveHost = false) - { - if ($uri === $this->uri) { - return $this; - } - - $new = clone $this; - $new->uri = $uri; - - if (!$preserveHost || !isset($this->headerNames['host'])) { - $new->updateHostFromUri(); - } - - return $new; - } - - private function updateHostFromUri() - { - $host = $this->uri->getHost(); - - if ($host == '') { - return; - } - - if (($port = $this->uri->getPort()) !== null) { - $host .= ':' . $port; - } - - if (isset($this->headerNames['host'])) { - $header = $this->headerNames['host']; - } else { - $header = 'Host'; - $this->headerNames['host'] = 'Host'; - } - // Ensure Host is the first header. - // See: http://tools.ietf.org/html/rfc7230#section-5.4 - $this->headers = [$header => [$host]] + $this->headers; - } - - private function assertMethod($method) - { - if (!is_string($method) || $method === '') { - throw new \InvalidArgumentException('Method must be a non-empty string.'); - } - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/Response.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/Response.php deleted file mode 100644 index e7e04d86..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/Response.php +++ /dev/null @@ -1,154 +0,0 @@ - 'Continue', - 101 => 'Switching Protocols', - 102 => 'Processing', - 200 => 'OK', - 201 => 'Created', - 202 => 'Accepted', - 203 => 'Non-Authoritative Information', - 204 => 'No Content', - 205 => 'Reset Content', - 206 => 'Partial Content', - 207 => 'Multi-status', - 208 => 'Already Reported', - 300 => 'Multiple Choices', - 301 => 'Moved Permanently', - 302 => 'Found', - 303 => 'See Other', - 304 => 'Not Modified', - 305 => 'Use Proxy', - 306 => 'Switch Proxy', - 307 => 'Temporary Redirect', - 400 => 'Bad Request', - 401 => 'Unauthorized', - 402 => 'Payment Required', - 403 => 'Forbidden', - 404 => 'Not Found', - 405 => 'Method Not Allowed', - 406 => 'Not Acceptable', - 407 => 'Proxy Authentication Required', - 408 => 'Request Time-out', - 409 => 'Conflict', - 410 => 'Gone', - 411 => 'Length Required', - 412 => 'Precondition Failed', - 413 => 'Request Entity Too Large', - 414 => 'Request-URI Too Large', - 415 => 'Unsupported Media Type', - 416 => 'Requested range not satisfiable', - 417 => 'Expectation Failed', - 418 => 'I\'m a teapot', - 422 => 'Unprocessable Entity', - 423 => 'Locked', - 424 => 'Failed Dependency', - 425 => 'Unordered Collection', - 426 => 'Upgrade Required', - 428 => 'Precondition Required', - 429 => 'Too Many Requests', - 431 => 'Request Header Fields Too Large', - 451 => 'Unavailable For Legal Reasons', - 500 => 'Internal Server Error', - 501 => 'Not Implemented', - 502 => 'Bad Gateway', - 503 => 'Service Unavailable', - 504 => 'Gateway Time-out', - 505 => 'HTTP Version not supported', - 506 => 'Variant Also Negotiates', - 507 => 'Insufficient Storage', - 508 => 'Loop Detected', - 511 => 'Network Authentication Required', - ]; - - /** @var string */ - private $reasonPhrase = ''; - - /** @var int */ - private $statusCode = 200; - - /** - * @param int $status Status code - * @param array $headers Response headers - * @param string|null|resource|StreamInterface $body Response body - * @param string $version Protocol version - * @param string|null $reason Reason phrase (when empty a default will be used based on the status code) - */ - public function __construct( - $status = 200, - array $headers = [], - $body = null, - $version = '1.1', - $reason = null - ) { - $this->assertStatusCodeIsInteger($status); - $status = (int) $status; - $this->assertStatusCodeRange($status); - - $this->statusCode = $status; - - if ($body !== '' && $body !== null) { - $this->stream = stream_for($body); - } - - $this->setHeaders($headers); - if ($reason == '' && isset(self::$phrases[$this->statusCode])) { - $this->reasonPhrase = self::$phrases[$this->statusCode]; - } else { - $this->reasonPhrase = (string) $reason; - } - - $this->protocol = $version; - } - - public function getStatusCode() - { - return $this->statusCode; - } - - public function getReasonPhrase() - { - return $this->reasonPhrase; - } - - public function withStatus($code, $reasonPhrase = '') - { - $this->assertStatusCodeIsInteger($code); - $code = (int) $code; - $this->assertStatusCodeRange($code); - - $new = clone $this; - $new->statusCode = $code; - if ($reasonPhrase == '' && isset(self::$phrases[$new->statusCode])) { - $reasonPhrase = self::$phrases[$new->statusCode]; - } - $new->reasonPhrase = $reasonPhrase; - return $new; - } - - private function assertStatusCodeIsInteger($statusCode) - { - if (filter_var($statusCode, FILTER_VALIDATE_INT) === false) { - throw new \InvalidArgumentException('Status code must be an integer value.'); - } - } - - private function assertStatusCodeRange($statusCode) - { - if ($statusCode < 100 || $statusCode >= 600) { - throw new \InvalidArgumentException('Status code must be an integer value between 1xx and 5xx.'); - } - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/Rfc7230.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/Rfc7230.php deleted file mode 100644 index 505e4742..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/Rfc7230.php +++ /dev/null @@ -1,18 +0,0 @@ -@,;:\\\"/[\]?={}\x01-\x20\x7F]++):[ \t]*+((?:[ \t]*+[\x21-\x7E\x80-\xFF]++)*+)[ \t]*+\r?\n)m"; - const HEADER_FOLD_REGEX = "(\r?\n[ \t]++)"; -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/ServerRequest.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/ServerRequest.php deleted file mode 100644 index 1a09a6c8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/ServerRequest.php +++ /dev/null @@ -1,376 +0,0 @@ -serverParams = $serverParams; - - parent::__construct($method, $uri, $headers, $body, $version); - } - - /** - * Return an UploadedFile instance array. - * - * @param array $files A array which respect $_FILES structure - * @throws InvalidArgumentException for unrecognized values - * @return array - */ - public static function normalizeFiles(array $files) - { - $normalized = []; - - foreach ($files as $key => $value) { - if ($value instanceof UploadedFileInterface) { - $normalized[$key] = $value; - } elseif (is_array($value) && isset($value['tmp_name'])) { - $normalized[$key] = self::createUploadedFileFromSpec($value); - } elseif (is_array($value)) { - $normalized[$key] = self::normalizeFiles($value); - continue; - } else { - throw new InvalidArgumentException('Invalid value in files specification'); - } - } - - return $normalized; - } - - /** - * Create and return an UploadedFile instance from a $_FILES specification. - * - * If the specification represents an array of values, this method will - * delegate to normalizeNestedFileSpec() and return that return value. - * - * @param array $value $_FILES struct - * @return array|UploadedFileInterface - */ - private static function createUploadedFileFromSpec(array $value) - { - if (is_array($value['tmp_name'])) { - return self::normalizeNestedFileSpec($value); - } - - return new UploadedFile( - $value['tmp_name'], - (int) $value['size'], - (int) $value['error'], - $value['name'], - $value['type'] - ); - } - - /** - * Normalize an array of file specifications. - * - * Loops through all nested files and returns a normalized array of - * UploadedFileInterface instances. - * - * @param array $files - * @return UploadedFileInterface[] - */ - private static function normalizeNestedFileSpec(array $files = []) - { - $normalizedFiles = []; - - foreach (array_keys($files['tmp_name']) as $key) { - $spec = [ - 'tmp_name' => $files['tmp_name'][$key], - 'size' => $files['size'][$key], - 'error' => $files['error'][$key], - 'name' => $files['name'][$key], - 'type' => $files['type'][$key], - ]; - $normalizedFiles[$key] = self::createUploadedFileFromSpec($spec); - } - - return $normalizedFiles; - } - - /** - * Return a ServerRequest populated with superglobals: - * $_GET - * $_POST - * $_COOKIE - * $_FILES - * $_SERVER - * - * @return ServerRequestInterface - */ - public static function fromGlobals() - { - $method = isset($_SERVER['REQUEST_METHOD']) ? $_SERVER['REQUEST_METHOD'] : 'GET'; - $headers = getallheaders(); - $uri = self::getUriFromGlobals(); - $body = new CachingStream(new LazyOpenStream('php://input', 'r+')); - $protocol = isset($_SERVER['SERVER_PROTOCOL']) ? str_replace('HTTP/', '', $_SERVER['SERVER_PROTOCOL']) : '1.1'; - - $serverRequest = new ServerRequest($method, $uri, $headers, $body, $protocol, $_SERVER); - - return $serverRequest - ->withCookieParams($_COOKIE) - ->withQueryParams($_GET) - ->withParsedBody($_POST) - ->withUploadedFiles(self::normalizeFiles($_FILES)); - } - - private static function extractHostAndPortFromAuthority($authority) - { - $uri = 'http://'.$authority; - $parts = parse_url($uri); - if (false === $parts) { - return [null, null]; - } - - $host = isset($parts['host']) ? $parts['host'] : null; - $port = isset($parts['port']) ? $parts['port'] : null; - - return [$host, $port]; - } - - /** - * Get a Uri populated with values from $_SERVER. - * - * @return UriInterface - */ - public static function getUriFromGlobals() - { - $uri = new Uri(''); - - $uri = $uri->withScheme(!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off' ? 'https' : 'http'); - - $hasPort = false; - if (isset($_SERVER['HTTP_HOST'])) { - list($host, $port) = self::extractHostAndPortFromAuthority($_SERVER['HTTP_HOST']); - if ($host !== null) { - $uri = $uri->withHost($host); - } - - if ($port !== null) { - $hasPort = true; - $uri = $uri->withPort($port); - } - } elseif (isset($_SERVER['SERVER_NAME'])) { - $uri = $uri->withHost($_SERVER['SERVER_NAME']); - } elseif (isset($_SERVER['SERVER_ADDR'])) { - $uri = $uri->withHost($_SERVER['SERVER_ADDR']); - } - - if (!$hasPort && isset($_SERVER['SERVER_PORT'])) { - $uri = $uri->withPort($_SERVER['SERVER_PORT']); - } - - $hasQuery = false; - if (isset($_SERVER['REQUEST_URI'])) { - $requestUriParts = explode('?', $_SERVER['REQUEST_URI'], 2); - $uri = $uri->withPath($requestUriParts[0]); - if (isset($requestUriParts[1])) { - $hasQuery = true; - $uri = $uri->withQuery($requestUriParts[1]); - } - } - - if (!$hasQuery && isset($_SERVER['QUERY_STRING'])) { - $uri = $uri->withQuery($_SERVER['QUERY_STRING']); - } - - return $uri; - } - - - /** - * {@inheritdoc} - */ - public function getServerParams() - { - return $this->serverParams; - } - - /** - * {@inheritdoc} - */ - public function getUploadedFiles() - { - return $this->uploadedFiles; - } - - /** - * {@inheritdoc} - */ - public function withUploadedFiles(array $uploadedFiles) - { - $new = clone $this; - $new->uploadedFiles = $uploadedFiles; - - return $new; - } - - /** - * {@inheritdoc} - */ - public function getCookieParams() - { - return $this->cookieParams; - } - - /** - * {@inheritdoc} - */ - public function withCookieParams(array $cookies) - { - $new = clone $this; - $new->cookieParams = $cookies; - - return $new; - } - - /** - * {@inheritdoc} - */ - public function getQueryParams() - { - return $this->queryParams; - } - - /** - * {@inheritdoc} - */ - public function withQueryParams(array $query) - { - $new = clone $this; - $new->queryParams = $query; - - return $new; - } - - /** - * {@inheritdoc} - */ - public function getParsedBody() - { - return $this->parsedBody; - } - - /** - * {@inheritdoc} - */ - public function withParsedBody($data) - { - $new = clone $this; - $new->parsedBody = $data; - - return $new; - } - - /** - * {@inheritdoc} - */ - public function getAttributes() - { - return $this->attributes; - } - - /** - * {@inheritdoc} - */ - public function getAttribute($attribute, $default = null) - { - if (false === array_key_exists($attribute, $this->attributes)) { - return $default; - } - - return $this->attributes[$attribute]; - } - - /** - * {@inheritdoc} - */ - public function withAttribute($attribute, $value) - { - $new = clone $this; - $new->attributes[$attribute] = $value; - - return $new; - } - - /** - * {@inheritdoc} - */ - public function withoutAttribute($attribute) - { - if (false === array_key_exists($attribute, $this->attributes)) { - return $this; - } - - $new = clone $this; - unset($new->attributes[$attribute]); - - return $new; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/Stream.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/Stream.php deleted file mode 100644 index d9e7409c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/Stream.php +++ /dev/null @@ -1,267 +0,0 @@ -size = $options['size']; - } - - $this->customMetadata = isset($options['metadata']) - ? $options['metadata'] - : []; - - $this->stream = $stream; - $meta = stream_get_meta_data($this->stream); - $this->seekable = $meta['seekable']; - $this->readable = (bool)preg_match(self::READABLE_MODES, $meta['mode']); - $this->writable = (bool)preg_match(self::WRITABLE_MODES, $meta['mode']); - $this->uri = $this->getMetadata('uri'); - } - - /** - * Closes the stream when the destructed - */ - public function __destruct() - { - $this->close(); - } - - public function __toString() - { - try { - $this->seek(0); - return (string) stream_get_contents($this->stream); - } catch (\Exception $e) { - return ''; - } - } - - public function getContents() - { - if (!isset($this->stream)) { - throw new \RuntimeException('Stream is detached'); - } - - $contents = stream_get_contents($this->stream); - - if ($contents === false) { - throw new \RuntimeException('Unable to read stream contents'); - } - - return $contents; - } - - public function close() - { - if (isset($this->stream)) { - if (is_resource($this->stream)) { - fclose($this->stream); - } - $this->detach(); - } - } - - public function detach() - { - if (!isset($this->stream)) { - return null; - } - - $result = $this->stream; - unset($this->stream); - $this->size = $this->uri = null; - $this->readable = $this->writable = $this->seekable = false; - - return $result; - } - - public function getSize() - { - if ($this->size !== null) { - return $this->size; - } - - if (!isset($this->stream)) { - return null; - } - - // Clear the stat cache if the stream has a URI - if ($this->uri) { - clearstatcache(true, $this->uri); - } - - $stats = fstat($this->stream); - if (isset($stats['size'])) { - $this->size = $stats['size']; - return $this->size; - } - - return null; - } - - public function isReadable() - { - return $this->readable; - } - - public function isWritable() - { - return $this->writable; - } - - public function isSeekable() - { - return $this->seekable; - } - - public function eof() - { - if (!isset($this->stream)) { - throw new \RuntimeException('Stream is detached'); - } - - return feof($this->stream); - } - - public function tell() - { - if (!isset($this->stream)) { - throw new \RuntimeException('Stream is detached'); - } - - $result = ftell($this->stream); - - if ($result === false) { - throw new \RuntimeException('Unable to determine stream position'); - } - - return $result; - } - - public function rewind() - { - $this->seek(0); - } - - public function seek($offset, $whence = SEEK_SET) - { - $whence = (int) $whence; - - if (!isset($this->stream)) { - throw new \RuntimeException('Stream is detached'); - } - if (!$this->seekable) { - throw new \RuntimeException('Stream is not seekable'); - } - if (fseek($this->stream, $offset, $whence) === -1) { - throw new \RuntimeException('Unable to seek to stream position ' - . $offset . ' with whence ' . var_export($whence, true)); - } - } - - public function read($length) - { - if (!isset($this->stream)) { - throw new \RuntimeException('Stream is detached'); - } - if (!$this->readable) { - throw new \RuntimeException('Cannot read from non-readable stream'); - } - if ($length < 0) { - throw new \RuntimeException('Length parameter cannot be negative'); - } - - if (0 === $length) { - return ''; - } - - $string = fread($this->stream, $length); - if (false === $string) { - throw new \RuntimeException('Unable to read from stream'); - } - - return $string; - } - - public function write($string) - { - if (!isset($this->stream)) { - throw new \RuntimeException('Stream is detached'); - } - if (!$this->writable) { - throw new \RuntimeException('Cannot write to a non-writable stream'); - } - - // We can't know the size after writing anything - $this->size = null; - $result = fwrite($this->stream, $string); - - if ($result === false) { - throw new \RuntimeException('Unable to write to stream'); - } - - return $result; - } - - public function getMetadata($key = null) - { - if (!isset($this->stream)) { - return $key ? null : []; - } elseif (!$key) { - return $this->customMetadata + stream_get_meta_data($this->stream); - } elseif (isset($this->customMetadata[$key])) { - return $this->customMetadata[$key]; - } - - $meta = stream_get_meta_data($this->stream); - - return isset($meta[$key]) ? $meta[$key] : null; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/StreamDecoratorTrait.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/StreamDecoratorTrait.php deleted file mode 100644 index daec6f52..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/StreamDecoratorTrait.php +++ /dev/null @@ -1,149 +0,0 @@ -stream = $stream; - } - - /** - * Magic method used to create a new stream if streams are not added in - * the constructor of a decorator (e.g., LazyOpenStream). - * - * @param string $name Name of the property (allows "stream" only). - * - * @return StreamInterface - */ - public function __get($name) - { - if ($name == 'stream') { - $this->stream = $this->createStream(); - return $this->stream; - } - - throw new \UnexpectedValueException("$name not found on class"); - } - - public function __toString() - { - try { - if ($this->isSeekable()) { - $this->seek(0); - } - return $this->getContents(); - } catch (\Exception $e) { - // Really, PHP? https://bugs.php.net/bug.php?id=53648 - trigger_error('StreamDecorator::__toString exception: ' - . (string) $e, E_USER_ERROR); - return ''; - } - } - - public function getContents() - { - return copy_to_string($this); - } - - /** - * Allow decorators to implement custom methods - * - * @param string $method Missing method name - * @param array $args Method arguments - * - * @return mixed - */ - public function __call($method, array $args) - { - $result = call_user_func_array([$this->stream, $method], $args); - - // Always return the wrapped object if the result is a return $this - return $result === $this->stream ? $this : $result; - } - - public function close() - { - $this->stream->close(); - } - - public function getMetadata($key = null) - { - return $this->stream->getMetadata($key); - } - - public function detach() - { - return $this->stream->detach(); - } - - public function getSize() - { - return $this->stream->getSize(); - } - - public function eof() - { - return $this->stream->eof(); - } - - public function tell() - { - return $this->stream->tell(); - } - - public function isReadable() - { - return $this->stream->isReadable(); - } - - public function isWritable() - { - return $this->stream->isWritable(); - } - - public function isSeekable() - { - return $this->stream->isSeekable(); - } - - public function rewind() - { - $this->seek(0); - } - - public function seek($offset, $whence = SEEK_SET) - { - $this->stream->seek($offset, $whence); - } - - public function read($length) - { - return $this->stream->read($length); - } - - public function write($string) - { - return $this->stream->write($string); - } - - /** - * Implement in subclasses to dynamically create streams when requested. - * - * @return StreamInterface - * @throws \BadMethodCallException - */ - protected function createStream() - { - throw new \BadMethodCallException('Not implemented'); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/StreamWrapper.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/StreamWrapper.php deleted file mode 100644 index 0f3a2856..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/StreamWrapper.php +++ /dev/null @@ -1,161 +0,0 @@ -isReadable()) { - $mode = $stream->isWritable() ? 'r+' : 'r'; - } elseif ($stream->isWritable()) { - $mode = 'w'; - } else { - throw new \InvalidArgumentException('The stream must be readable, ' - . 'writable, or both.'); - } - - return fopen('guzzle://stream', $mode, null, self::createStreamContext($stream)); - } - - /** - * Creates a stream context that can be used to open a stream as a php stream resource. - * - * @param StreamInterface $stream - * - * @return resource - */ - public static function createStreamContext(StreamInterface $stream) - { - return stream_context_create([ - 'guzzle' => ['stream' => $stream] - ]); - } - - /** - * Registers the stream wrapper if needed - */ - public static function register() - { - if (!in_array('guzzle', stream_get_wrappers())) { - stream_wrapper_register('guzzle', __CLASS__); - } - } - - public function stream_open($path, $mode, $options, &$opened_path) - { - $options = stream_context_get_options($this->context); - - if (!isset($options['guzzle']['stream'])) { - return false; - } - - $this->mode = $mode; - $this->stream = $options['guzzle']['stream']; - - return true; - } - - public function stream_read($count) - { - return $this->stream->read($count); - } - - public function stream_write($data) - { - return (int) $this->stream->write($data); - } - - public function stream_tell() - { - return $this->stream->tell(); - } - - public function stream_eof() - { - return $this->stream->eof(); - } - - public function stream_seek($offset, $whence) - { - $this->stream->seek($offset, $whence); - - return true; - } - - public function stream_cast($cast_as) - { - $stream = clone($this->stream); - - return $stream->detach(); - } - - public function stream_stat() - { - static $modeMap = [ - 'r' => 33060, - 'rb' => 33060, - 'r+' => 33206, - 'w' => 33188, - 'wb' => 33188 - ]; - - return [ - 'dev' => 0, - 'ino' => 0, - 'mode' => $modeMap[$this->mode], - 'nlink' => 0, - 'uid' => 0, - 'gid' => 0, - 'rdev' => 0, - 'size' => $this->stream->getSize() ?: 0, - 'atime' => 0, - 'mtime' => 0, - 'ctime' => 0, - 'blksize' => 0, - 'blocks' => 0 - ]; - } - - public function url_stat($path, $flags) - { - return [ - 'dev' => 0, - 'ino' => 0, - 'mode' => 0, - 'nlink' => 0, - 'uid' => 0, - 'gid' => 0, - 'rdev' => 0, - 'size' => 0, - 'atime' => 0, - 'mtime' => 0, - 'ctime' => 0, - 'blksize' => 0, - 'blocks' => 0 - ]; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/UploadedFile.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/UploadedFile.php deleted file mode 100644 index e62bd5c8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/UploadedFile.php +++ /dev/null @@ -1,316 +0,0 @@ -setError($errorStatus); - $this->setSize($size); - $this->setClientFilename($clientFilename); - $this->setClientMediaType($clientMediaType); - - if ($this->isOk()) { - $this->setStreamOrFile($streamOrFile); - } - } - - /** - * Depending on the value set file or stream variable - * - * @param mixed $streamOrFile - * @throws InvalidArgumentException - */ - private function setStreamOrFile($streamOrFile) - { - if (is_string($streamOrFile)) { - $this->file = $streamOrFile; - } elseif (is_resource($streamOrFile)) { - $this->stream = new Stream($streamOrFile); - } elseif ($streamOrFile instanceof StreamInterface) { - $this->stream = $streamOrFile; - } else { - throw new InvalidArgumentException( - 'Invalid stream or file provided for UploadedFile' - ); - } - } - - /** - * @param int $error - * @throws InvalidArgumentException - */ - private function setError($error) - { - if (false === is_int($error)) { - throw new InvalidArgumentException( - 'Upload file error status must be an integer' - ); - } - - if (false === in_array($error, UploadedFile::$errors)) { - throw new InvalidArgumentException( - 'Invalid error status for UploadedFile' - ); - } - - $this->error = $error; - } - - /** - * @param int $size - * @throws InvalidArgumentException - */ - private function setSize($size) - { - if (false === is_int($size)) { - throw new InvalidArgumentException( - 'Upload file size must be an integer' - ); - } - - $this->size = $size; - } - - /** - * @param mixed $param - * @return boolean - */ - private function isStringOrNull($param) - { - return in_array(gettype($param), ['string', 'NULL']); - } - - /** - * @param mixed $param - * @return boolean - */ - private function isStringNotEmpty($param) - { - return is_string($param) && false === empty($param); - } - - /** - * @param string|null $clientFilename - * @throws InvalidArgumentException - */ - private function setClientFilename($clientFilename) - { - if (false === $this->isStringOrNull($clientFilename)) { - throw new InvalidArgumentException( - 'Upload file client filename must be a string or null' - ); - } - - $this->clientFilename = $clientFilename; - } - - /** - * @param string|null $clientMediaType - * @throws InvalidArgumentException - */ - private function setClientMediaType($clientMediaType) - { - if (false === $this->isStringOrNull($clientMediaType)) { - throw new InvalidArgumentException( - 'Upload file client media type must be a string or null' - ); - } - - $this->clientMediaType = $clientMediaType; - } - - /** - * Return true if there is no upload error - * - * @return boolean - */ - private function isOk() - { - return $this->error === UPLOAD_ERR_OK; - } - - /** - * @return boolean - */ - public function isMoved() - { - return $this->moved; - } - - /** - * @throws RuntimeException if is moved or not ok - */ - private function validateActive() - { - if (false === $this->isOk()) { - throw new RuntimeException('Cannot retrieve stream due to upload error'); - } - - if ($this->isMoved()) { - throw new RuntimeException('Cannot retrieve stream after it has already been moved'); - } - } - - /** - * {@inheritdoc} - * @throws RuntimeException if the upload was not successful. - */ - public function getStream() - { - $this->validateActive(); - - if ($this->stream instanceof StreamInterface) { - return $this->stream; - } - - return new LazyOpenStream($this->file, 'r+'); - } - - /** - * {@inheritdoc} - * - * @see http://php.net/is_uploaded_file - * @see http://php.net/move_uploaded_file - * @param string $targetPath Path to which to move the uploaded file. - * @throws RuntimeException if the upload was not successful. - * @throws InvalidArgumentException if the $path specified is invalid. - * @throws RuntimeException on any error during the move operation, or on - * the second or subsequent call to the method. - */ - public function moveTo($targetPath) - { - $this->validateActive(); - - if (false === $this->isStringNotEmpty($targetPath)) { - throw new InvalidArgumentException( - 'Invalid path provided for move operation; must be a non-empty string' - ); - } - - if ($this->file) { - $this->moved = php_sapi_name() == 'cli' - ? rename($this->file, $targetPath) - : move_uploaded_file($this->file, $targetPath); - } else { - copy_to_stream( - $this->getStream(), - new LazyOpenStream($targetPath, 'w') - ); - - $this->moved = true; - } - - if (false === $this->moved) { - throw new RuntimeException( - sprintf('Uploaded file could not be moved to %s', $targetPath) - ); - } - } - - /** - * {@inheritdoc} - * - * @return int|null The file size in bytes or null if unknown. - */ - public function getSize() - { - return $this->size; - } - - /** - * {@inheritdoc} - * - * @see http://php.net/manual/en/features.file-upload.errors.php - * @return int One of PHP's UPLOAD_ERR_XXX constants. - */ - public function getError() - { - return $this->error; - } - - /** - * {@inheritdoc} - * - * @return string|null The filename sent by the client or null if none - * was provided. - */ - public function getClientFilename() - { - return $this->clientFilename; - } - - /** - * {@inheritdoc} - */ - public function getClientMediaType() - { - return $this->clientMediaType; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/Uri.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/Uri.php deleted file mode 100644 index 825a25ee..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/Uri.php +++ /dev/null @@ -1,760 +0,0 @@ - 80, - 'https' => 443, - 'ftp' => 21, - 'gopher' => 70, - 'nntp' => 119, - 'news' => 119, - 'telnet' => 23, - 'tn3270' => 23, - 'imap' => 143, - 'pop' => 110, - 'ldap' => 389, - ]; - - private static $charUnreserved = 'a-zA-Z0-9_\-\.~'; - private static $charSubDelims = '!\$&\'\(\)\*\+,;='; - private static $replaceQuery = ['=' => '%3D', '&' => '%26']; - - /** @var string Uri scheme. */ - private $scheme = ''; - - /** @var string Uri user info. */ - private $userInfo = ''; - - /** @var string Uri host. */ - private $host = ''; - - /** @var int|null Uri port. */ - private $port; - - /** @var string Uri path. */ - private $path = ''; - - /** @var string Uri query string. */ - private $query = ''; - - /** @var string Uri fragment. */ - private $fragment = ''; - - /** - * @param string $uri URI to parse - */ - public function __construct($uri = '') - { - // weak type check to also accept null until we can add scalar type hints - if ($uri != '') { - $parts = parse_url($uri); - if ($parts === false) { - throw new \InvalidArgumentException("Unable to parse URI: $uri"); - } - $this->applyParts($parts); - } - } - - public function __toString() - { - return self::composeComponents( - $this->scheme, - $this->getAuthority(), - $this->path, - $this->query, - $this->fragment - ); - } - - /** - * Composes a URI reference string from its various components. - * - * Usually this method does not need to be called manually but instead is used indirectly via - * `Psr\Http\Message\UriInterface::__toString`. - * - * PSR-7 UriInterface treats an empty component the same as a missing component as - * getQuery(), getFragment() etc. always return a string. This explains the slight - * difference to RFC 3986 Section 5.3. - * - * Another adjustment is that the authority separator is added even when the authority is missing/empty - * for the "file" scheme. This is because PHP stream functions like `file_get_contents` only work with - * `file:///myfile` but not with `file:/myfile` although they are equivalent according to RFC 3986. But - * `file:///` is the more common syntax for the file scheme anyway (Chrome for example redirects to - * that format). - * - * @param string $scheme - * @param string $authority - * @param string $path - * @param string $query - * @param string $fragment - * - * @return string - * - * @link https://tools.ietf.org/html/rfc3986#section-5.3 - */ - public static function composeComponents($scheme, $authority, $path, $query, $fragment) - { - $uri = ''; - - // weak type checks to also accept null until we can add scalar type hints - if ($scheme != '') { - $uri .= $scheme . ':'; - } - - if ($authority != ''|| $scheme === 'file') { - $uri .= '//' . $authority; - } - - $uri .= $path; - - if ($query != '') { - $uri .= '?' . $query; - } - - if ($fragment != '') { - $uri .= '#' . $fragment; - } - - return $uri; - } - - /** - * Whether the URI has the default port of the current scheme. - * - * `Psr\Http\Message\UriInterface::getPort` may return null or the standard port. This method can be used - * independently of the implementation. - * - * @param UriInterface $uri - * - * @return bool - */ - public static function isDefaultPort(UriInterface $uri) - { - return $uri->getPort() === null - || (isset(self::$defaultPorts[$uri->getScheme()]) && $uri->getPort() === self::$defaultPorts[$uri->getScheme()]); - } - - /** - * Whether the URI is absolute, i.e. it has a scheme. - * - * An instance of UriInterface can either be an absolute URI or a relative reference. This method returns true - * if it is the former. An absolute URI has a scheme. A relative reference is used to express a URI relative - * to another URI, the base URI. Relative references can be divided into several forms: - * - network-path references, e.g. '//example.com/path' - * - absolute-path references, e.g. '/path' - * - relative-path references, e.g. 'subpath' - * - * @param UriInterface $uri - * - * @return bool - * @see Uri::isNetworkPathReference - * @see Uri::isAbsolutePathReference - * @see Uri::isRelativePathReference - * @link https://tools.ietf.org/html/rfc3986#section-4 - */ - public static function isAbsolute(UriInterface $uri) - { - return $uri->getScheme() !== ''; - } - - /** - * Whether the URI is a network-path reference. - * - * A relative reference that begins with two slash characters is termed an network-path reference. - * - * @param UriInterface $uri - * - * @return bool - * @link https://tools.ietf.org/html/rfc3986#section-4.2 - */ - public static function isNetworkPathReference(UriInterface $uri) - { - return $uri->getScheme() === '' && $uri->getAuthority() !== ''; - } - - /** - * Whether the URI is a absolute-path reference. - * - * A relative reference that begins with a single slash character is termed an absolute-path reference. - * - * @param UriInterface $uri - * - * @return bool - * @link https://tools.ietf.org/html/rfc3986#section-4.2 - */ - public static function isAbsolutePathReference(UriInterface $uri) - { - return $uri->getScheme() === '' - && $uri->getAuthority() === '' - && isset($uri->getPath()[0]) - && $uri->getPath()[0] === '/'; - } - - /** - * Whether the URI is a relative-path reference. - * - * A relative reference that does not begin with a slash character is termed a relative-path reference. - * - * @param UriInterface $uri - * - * @return bool - * @link https://tools.ietf.org/html/rfc3986#section-4.2 - */ - public static function isRelativePathReference(UriInterface $uri) - { - return $uri->getScheme() === '' - && $uri->getAuthority() === '' - && (!isset($uri->getPath()[0]) || $uri->getPath()[0] !== '/'); - } - - /** - * Whether the URI is a same-document reference. - * - * A same-document reference refers to a URI that is, aside from its fragment - * component, identical to the base URI. When no base URI is given, only an empty - * URI reference (apart from its fragment) is considered a same-document reference. - * - * @param UriInterface $uri The URI to check - * @param UriInterface|null $base An optional base URI to compare against - * - * @return bool - * @link https://tools.ietf.org/html/rfc3986#section-4.4 - */ - public static function isSameDocumentReference(UriInterface $uri, UriInterface $base = null) - { - if ($base !== null) { - $uri = UriResolver::resolve($base, $uri); - - return ($uri->getScheme() === $base->getScheme()) - && ($uri->getAuthority() === $base->getAuthority()) - && ($uri->getPath() === $base->getPath()) - && ($uri->getQuery() === $base->getQuery()); - } - - return $uri->getScheme() === '' && $uri->getAuthority() === '' && $uri->getPath() === '' && $uri->getQuery() === ''; - } - - /** - * Removes dot segments from a path and returns the new path. - * - * @param string $path - * - * @return string - * - * @deprecated since version 1.4. Use UriResolver::removeDotSegments instead. - * @see UriResolver::removeDotSegments - */ - public static function removeDotSegments($path) - { - return UriResolver::removeDotSegments($path); - } - - /** - * Converts the relative URI into a new URI that is resolved against the base URI. - * - * @param UriInterface $base Base URI - * @param string|UriInterface $rel Relative URI - * - * @return UriInterface - * - * @deprecated since version 1.4. Use UriResolver::resolve instead. - * @see UriResolver::resolve - */ - public static function resolve(UriInterface $base, $rel) - { - if (!($rel instanceof UriInterface)) { - $rel = new self($rel); - } - - return UriResolver::resolve($base, $rel); - } - - /** - * Creates a new URI with a specific query string value removed. - * - * Any existing query string values that exactly match the provided key are - * removed. - * - * @param UriInterface $uri URI to use as a base. - * @param string $key Query string key to remove. - * - * @return UriInterface - */ - public static function withoutQueryValue(UriInterface $uri, $key) - { - $result = self::getFilteredQueryString($uri, [$key]); - - return $uri->withQuery(implode('&', $result)); - } - - /** - * Creates a new URI with a specific query string value. - * - * Any existing query string values that exactly match the provided key are - * removed and replaced with the given key value pair. - * - * A value of null will set the query string key without a value, e.g. "key" - * instead of "key=value". - * - * @param UriInterface $uri URI to use as a base. - * @param string $key Key to set. - * @param string|null $value Value to set - * - * @return UriInterface - */ - public static function withQueryValue(UriInterface $uri, $key, $value) - { - $result = self::getFilteredQueryString($uri, [$key]); - - $result[] = self::generateQueryString($key, $value); - - return $uri->withQuery(implode('&', $result)); - } - - /** - * Creates a new URI with multiple specific query string values. - * - * It has the same behavior as withQueryValue() but for an associative array of key => value. - * - * @param UriInterface $uri URI to use as a base. - * @param array $keyValueArray Associative array of key and values - * - * @return UriInterface - */ - public static function withQueryValues(UriInterface $uri, array $keyValueArray) - { - $result = self::getFilteredQueryString($uri, array_keys($keyValueArray)); - - foreach ($keyValueArray as $key => $value) { - $result[] = self::generateQueryString($key, $value); - } - - return $uri->withQuery(implode('&', $result)); - } - - /** - * Creates a URI from a hash of `parse_url` components. - * - * @param array $parts - * - * @return UriInterface - * @link http://php.net/manual/en/function.parse-url.php - * - * @throws \InvalidArgumentException If the components do not form a valid URI. - */ - public static function fromParts(array $parts) - { - $uri = new self(); - $uri->applyParts($parts); - $uri->validateState(); - - return $uri; - } - - public function getScheme() - { - return $this->scheme; - } - - public function getAuthority() - { - $authority = $this->host; - if ($this->userInfo !== '') { - $authority = $this->userInfo . '@' . $authority; - } - - if ($this->port !== null) { - $authority .= ':' . $this->port; - } - - return $authority; - } - - public function getUserInfo() - { - return $this->userInfo; - } - - public function getHost() - { - return $this->host; - } - - public function getPort() - { - return $this->port; - } - - public function getPath() - { - return $this->path; - } - - public function getQuery() - { - return $this->query; - } - - public function getFragment() - { - return $this->fragment; - } - - public function withScheme($scheme) - { - $scheme = $this->filterScheme($scheme); - - if ($this->scheme === $scheme) { - return $this; - } - - $new = clone $this; - $new->scheme = $scheme; - $new->removeDefaultPort(); - $new->validateState(); - - return $new; - } - - public function withUserInfo($user, $password = null) - { - $info = $this->filterUserInfoComponent($user); - if ($password !== null) { - $info .= ':' . $this->filterUserInfoComponent($password); - } - - if ($this->userInfo === $info) { - return $this; - } - - $new = clone $this; - $new->userInfo = $info; - $new->validateState(); - - return $new; - } - - public function withHost($host) - { - $host = $this->filterHost($host); - - if ($this->host === $host) { - return $this; - } - - $new = clone $this; - $new->host = $host; - $new->validateState(); - - return $new; - } - - public function withPort($port) - { - $port = $this->filterPort($port); - - if ($this->port === $port) { - return $this; - } - - $new = clone $this; - $new->port = $port; - $new->removeDefaultPort(); - $new->validateState(); - - return $new; - } - - public function withPath($path) - { - $path = $this->filterPath($path); - - if ($this->path === $path) { - return $this; - } - - $new = clone $this; - $new->path = $path; - $new->validateState(); - - return $new; - } - - public function withQuery($query) - { - $query = $this->filterQueryAndFragment($query); - - if ($this->query === $query) { - return $this; - } - - $new = clone $this; - $new->query = $query; - - return $new; - } - - public function withFragment($fragment) - { - $fragment = $this->filterQueryAndFragment($fragment); - - if ($this->fragment === $fragment) { - return $this; - } - - $new = clone $this; - $new->fragment = $fragment; - - return $new; - } - - /** - * Apply parse_url parts to a URI. - * - * @param array $parts Array of parse_url parts to apply. - */ - private function applyParts(array $parts) - { - $this->scheme = isset($parts['scheme']) - ? $this->filterScheme($parts['scheme']) - : ''; - $this->userInfo = isset($parts['user']) - ? $this->filterUserInfoComponent($parts['user']) - : ''; - $this->host = isset($parts['host']) - ? $this->filterHost($parts['host']) - : ''; - $this->port = isset($parts['port']) - ? $this->filterPort($parts['port']) - : null; - $this->path = isset($parts['path']) - ? $this->filterPath($parts['path']) - : ''; - $this->query = isset($parts['query']) - ? $this->filterQueryAndFragment($parts['query']) - : ''; - $this->fragment = isset($parts['fragment']) - ? $this->filterQueryAndFragment($parts['fragment']) - : ''; - if (isset($parts['pass'])) { - $this->userInfo .= ':' . $this->filterUserInfoComponent($parts['pass']); - } - - $this->removeDefaultPort(); - } - - /** - * @param string $scheme - * - * @return string - * - * @throws \InvalidArgumentException If the scheme is invalid. - */ - private function filterScheme($scheme) - { - if (!is_string($scheme)) { - throw new \InvalidArgumentException('Scheme must be a string'); - } - - return strtolower($scheme); - } - - /** - * @param string $component - * - * @return string - * - * @throws \InvalidArgumentException If the user info is invalid. - */ - private function filterUserInfoComponent($component) - { - if (!is_string($component)) { - throw new \InvalidArgumentException('User info must be a string'); - } - - return preg_replace_callback( - '/(?:[^%' . self::$charUnreserved . self::$charSubDelims . ']+|%(?![A-Fa-f0-9]{2}))/', - [$this, 'rawurlencodeMatchZero'], - $component - ); - } - - /** - * @param string $host - * - * @return string - * - * @throws \InvalidArgumentException If the host is invalid. - */ - private function filterHost($host) - { - if (!is_string($host)) { - throw new \InvalidArgumentException('Host must be a string'); - } - - return strtolower($host); - } - - /** - * @param int|null $port - * - * @return int|null - * - * @throws \InvalidArgumentException If the port is invalid. - */ - private function filterPort($port) - { - if ($port === null) { - return null; - } - - $port = (int) $port; - if (0 > $port || 0xffff < $port) { - throw new \InvalidArgumentException( - sprintf('Invalid port: %d. Must be between 0 and 65535', $port) - ); - } - - return $port; - } - - /** - * @param UriInterface $uri - * @param array $keys - * - * @return array - */ - private static function getFilteredQueryString(UriInterface $uri, array $keys) - { - $current = $uri->getQuery(); - - if ($current === '') { - return []; - } - - $decodedKeys = array_map('rawurldecode', $keys); - - return array_filter(explode('&', $current), function ($part) use ($decodedKeys) { - return !in_array(rawurldecode(explode('=', $part)[0]), $decodedKeys, true); - }); - } - - /** - * @param string $key - * @param string|null $value - * - * @return string - */ - private static function generateQueryString($key, $value) - { - // Query string separators ("=", "&") within the key or value need to be encoded - // (while preventing double-encoding) before setting the query string. All other - // chars that need percent-encoding will be encoded by withQuery(). - $queryString = strtr($key, self::$replaceQuery); - - if ($value !== null) { - $queryString .= '=' . strtr($value, self::$replaceQuery); - } - - return $queryString; - } - - private function removeDefaultPort() - { - if ($this->port !== null && self::isDefaultPort($this)) { - $this->port = null; - } - } - - /** - * Filters the path of a URI - * - * @param string $path - * - * @return string - * - * @throws \InvalidArgumentException If the path is invalid. - */ - private function filterPath($path) - { - if (!is_string($path)) { - throw new \InvalidArgumentException('Path must be a string'); - } - - return preg_replace_callback( - '/(?:[^' . self::$charUnreserved . self::$charSubDelims . '%:@\/]++|%(?![A-Fa-f0-9]{2}))/', - [$this, 'rawurlencodeMatchZero'], - $path - ); - } - - /** - * Filters the query string or fragment of a URI. - * - * @param string $str - * - * @return string - * - * @throws \InvalidArgumentException If the query or fragment is invalid. - */ - private function filterQueryAndFragment($str) - { - if (!is_string($str)) { - throw new \InvalidArgumentException('Query and fragment must be a string'); - } - - return preg_replace_callback( - '/(?:[^' . self::$charUnreserved . self::$charSubDelims . '%:@\/\?]++|%(?![A-Fa-f0-9]{2}))/', - [$this, 'rawurlencodeMatchZero'], - $str - ); - } - - private function rawurlencodeMatchZero(array $match) - { - return rawurlencode($match[0]); - } - - private function validateState() - { - if ($this->host === '' && ($this->scheme === 'http' || $this->scheme === 'https')) { - $this->host = self::HTTP_DEFAULT_HOST; - } - - if ($this->getAuthority() === '') { - if (0 === strpos($this->path, '//')) { - throw new \InvalidArgumentException('The path of a URI without an authority must not start with two slashes "//"'); - } - if ($this->scheme === '' && false !== strpos(explode('/', $this->path, 2)[0], ':')) { - throw new \InvalidArgumentException('A relative URI must not have a path beginning with a segment containing a colon'); - } - } elseif (isset($this->path[0]) && $this->path[0] !== '/') { - @trigger_error( - 'The path of a URI with an authority must start with a slash "/" or be empty. Automagically fixing the URI ' . - 'by adding a leading slash to the path is deprecated since version 1.4 and will throw an exception instead.', - E_USER_DEPRECATED - ); - $this->path = '/'. $this->path; - //throw new \InvalidArgumentException('The path of a URI with an authority must start with a slash "/" or be empty'); - } - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/UriNormalizer.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/UriNormalizer.php deleted file mode 100644 index 384c29e5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/UriNormalizer.php +++ /dev/null @@ -1,216 +0,0 @@ -getPath() === '' && - ($uri->getScheme() === 'http' || $uri->getScheme() === 'https') - ) { - $uri = $uri->withPath('/'); - } - - if ($flags & self::REMOVE_DEFAULT_HOST && $uri->getScheme() === 'file' && $uri->getHost() === 'localhost') { - $uri = $uri->withHost(''); - } - - if ($flags & self::REMOVE_DEFAULT_PORT && $uri->getPort() !== null && Uri::isDefaultPort($uri)) { - $uri = $uri->withPort(null); - } - - if ($flags & self::REMOVE_DOT_SEGMENTS && !Uri::isRelativePathReference($uri)) { - $uri = $uri->withPath(UriResolver::removeDotSegments($uri->getPath())); - } - - if ($flags & self::REMOVE_DUPLICATE_SLASHES) { - $uri = $uri->withPath(preg_replace('#//++#', '/', $uri->getPath())); - } - - if ($flags & self::SORT_QUERY_PARAMETERS && $uri->getQuery() !== '') { - $queryKeyValues = explode('&', $uri->getQuery()); - sort($queryKeyValues); - $uri = $uri->withQuery(implode('&', $queryKeyValues)); - } - - return $uri; - } - - /** - * Whether two URIs can be considered equivalent. - * - * Both URIs are normalized automatically before comparison with the given $normalizations bitmask. The method also - * accepts relative URI references and returns true when they are equivalent. This of course assumes they will be - * resolved against the same base URI. If this is not the case, determination of equivalence or difference of - * relative references does not mean anything. - * - * @param UriInterface $uri1 An URI to compare - * @param UriInterface $uri2 An URI to compare - * @param int $normalizations A bitmask of normalizations to apply, see constants - * - * @return bool - * @link https://tools.ietf.org/html/rfc3986#section-6.1 - */ - public static function isEquivalent(UriInterface $uri1, UriInterface $uri2, $normalizations = self::PRESERVING_NORMALIZATIONS) - { - return (string) self::normalize($uri1, $normalizations) === (string) self::normalize($uri2, $normalizations); - } - - private static function capitalizePercentEncoding(UriInterface $uri) - { - $regex = '/(?:%[A-Fa-f0-9]{2})++/'; - - $callback = function (array $match) { - return strtoupper($match[0]); - }; - - return - $uri->withPath( - preg_replace_callback($regex, $callback, $uri->getPath()) - )->withQuery( - preg_replace_callback($regex, $callback, $uri->getQuery()) - ); - } - - private static function decodeUnreservedCharacters(UriInterface $uri) - { - $regex = '/%(?:2D|2E|5F|7E|3[0-9]|[46][1-9A-F]|[57][0-9A])/i'; - - $callback = function (array $match) { - return rawurldecode($match[0]); - }; - - return - $uri->withPath( - preg_replace_callback($regex, $callback, $uri->getPath()) - )->withQuery( - preg_replace_callback($regex, $callback, $uri->getQuery()) - ); - } - - private function __construct() - { - // cannot be instantiated - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/UriResolver.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/UriResolver.php deleted file mode 100644 index c1cb8a27..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/UriResolver.php +++ /dev/null @@ -1,219 +0,0 @@ -getScheme() != '') { - return $rel->withPath(self::removeDotSegments($rel->getPath())); - } - - if ($rel->getAuthority() != '') { - $targetAuthority = $rel->getAuthority(); - $targetPath = self::removeDotSegments($rel->getPath()); - $targetQuery = $rel->getQuery(); - } else { - $targetAuthority = $base->getAuthority(); - if ($rel->getPath() === '') { - $targetPath = $base->getPath(); - $targetQuery = $rel->getQuery() != '' ? $rel->getQuery() : $base->getQuery(); - } else { - if ($rel->getPath()[0] === '/') { - $targetPath = $rel->getPath(); - } else { - if ($targetAuthority != '' && $base->getPath() === '') { - $targetPath = '/' . $rel->getPath(); - } else { - $lastSlashPos = strrpos($base->getPath(), '/'); - if ($lastSlashPos === false) { - $targetPath = $rel->getPath(); - } else { - $targetPath = substr($base->getPath(), 0, $lastSlashPos + 1) . $rel->getPath(); - } - } - } - $targetPath = self::removeDotSegments($targetPath); - $targetQuery = $rel->getQuery(); - } - } - - return new Uri(Uri::composeComponents( - $base->getScheme(), - $targetAuthority, - $targetPath, - $targetQuery, - $rel->getFragment() - )); - } - - /** - * Returns the target URI as a relative reference from the base URI. - * - * This method is the counterpart to resolve(): - * - * (string) $target === (string) UriResolver::resolve($base, UriResolver::relativize($base, $target)) - * - * One use-case is to use the current request URI as base URI and then generate relative links in your documents - * to reduce the document size or offer self-contained downloadable document archives. - * - * $base = new Uri('http://example.com/a/b/'); - * echo UriResolver::relativize($base, new Uri('http://example.com/a/b/c')); // prints 'c'. - * echo UriResolver::relativize($base, new Uri('http://example.com/a/x/y')); // prints '../x/y'. - * echo UriResolver::relativize($base, new Uri('http://example.com/a/b/?q')); // prints '?q'. - * echo UriResolver::relativize($base, new Uri('http://example.org/a/b/')); // prints '//example.org/a/b/'. - * - * This method also accepts a target that is already relative and will try to relativize it further. Only a - * relative-path reference will be returned as-is. - * - * echo UriResolver::relativize($base, new Uri('/a/b/c')); // prints 'c' as well - * - * @param UriInterface $base Base URI - * @param UriInterface $target Target URI - * - * @return UriInterface The relative URI reference - */ - public static function relativize(UriInterface $base, UriInterface $target) - { - if ($target->getScheme() !== '' && - ($base->getScheme() !== $target->getScheme() || $target->getAuthority() === '' && $base->getAuthority() !== '') - ) { - return $target; - } - - if (Uri::isRelativePathReference($target)) { - // As the target is already highly relative we return it as-is. It would be possible to resolve - // the target with `$target = self::resolve($base, $target);` and then try make it more relative - // by removing a duplicate query. But let's not do that automatically. - return $target; - } - - if ($target->getAuthority() !== '' && $base->getAuthority() !== $target->getAuthority()) { - return $target->withScheme(''); - } - - // We must remove the path before removing the authority because if the path starts with two slashes, the URI - // would turn invalid. And we also cannot set a relative path before removing the authority, as that is also - // invalid. - $emptyPathUri = $target->withScheme('')->withPath('')->withUserInfo('')->withPort(null)->withHost(''); - - if ($base->getPath() !== $target->getPath()) { - return $emptyPathUri->withPath(self::getRelativePath($base, $target)); - } - - if ($base->getQuery() === $target->getQuery()) { - // Only the target fragment is left. And it must be returned even if base and target fragment are the same. - return $emptyPathUri->withQuery(''); - } - - // If the base URI has a query but the target has none, we cannot return an empty path reference as it would - // inherit the base query component when resolving. - if ($target->getQuery() === '') { - $segments = explode('/', $target->getPath()); - $lastSegment = end($segments); - - return $emptyPathUri->withPath($lastSegment === '' ? './' : $lastSegment); - } - - return $emptyPathUri; - } - - private static function getRelativePath(UriInterface $base, UriInterface $target) - { - $sourceSegments = explode('/', $base->getPath()); - $targetSegments = explode('/', $target->getPath()); - array_pop($sourceSegments); - $targetLastSegment = array_pop($targetSegments); - foreach ($sourceSegments as $i => $segment) { - if (isset($targetSegments[$i]) && $segment === $targetSegments[$i]) { - unset($sourceSegments[$i], $targetSegments[$i]); - } else { - break; - } - } - $targetSegments[] = $targetLastSegment; - $relativePath = str_repeat('../', count($sourceSegments)) . implode('/', $targetSegments); - - // A reference to am empty last segment or an empty first sub-segment must be prefixed with "./". - // This also applies to a segment with a colon character (e.g., "file:colon") that cannot be used - // as the first segment of a relative-path reference, as it would be mistaken for a scheme name. - if ('' === $relativePath || false !== strpos(explode('/', $relativePath, 2)[0], ':')) { - $relativePath = "./$relativePath"; - } elseif ('/' === $relativePath[0]) { - if ($base->getAuthority() != '' && $base->getPath() === '') { - // In this case an extra slash is added by resolve() automatically. So we must not add one here. - $relativePath = ".$relativePath"; - } else { - $relativePath = "./$relativePath"; - } - } - - return $relativePath; - } - - private function __construct() - { - // cannot be instantiated - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/functions.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/functions.php deleted file mode 100644 index 8e6dafe6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/functions.php +++ /dev/null @@ -1,899 +0,0 @@ -getMethod() . ' ' - . $message->getRequestTarget()) - . ' HTTP/' . $message->getProtocolVersion(); - if (!$message->hasHeader('host')) { - $msg .= "\r\nHost: " . $message->getUri()->getHost(); - } - } elseif ($message instanceof ResponseInterface) { - $msg = 'HTTP/' . $message->getProtocolVersion() . ' ' - . $message->getStatusCode() . ' ' - . $message->getReasonPhrase(); - } else { - throw new \InvalidArgumentException('Unknown message type'); - } - - foreach ($message->getHeaders() as $name => $values) { - $msg .= "\r\n{$name}: " . implode(', ', $values); - } - - return "{$msg}\r\n\r\n" . $message->getBody(); -} - -/** - * Returns a UriInterface for the given value. - * - * This function accepts a string or {@see Psr\Http\Message\UriInterface} and - * returns a UriInterface for the given value. If the value is already a - * `UriInterface`, it is returned as-is. - * - * @param string|UriInterface $uri - * - * @return UriInterface - * @throws \InvalidArgumentException - */ -function uri_for($uri) -{ - if ($uri instanceof UriInterface) { - return $uri; - } elseif (is_string($uri)) { - return new Uri($uri); - } - - throw new \InvalidArgumentException('URI must be a string or UriInterface'); -} - -/** - * Create a new stream based on the input type. - * - * Options is an associative array that can contain the following keys: - * - metadata: Array of custom metadata. - * - size: Size of the stream. - * - * @param resource|string|null|int|float|bool|StreamInterface|callable|\Iterator $resource Entity body data - * @param array $options Additional options - * - * @return StreamInterface - * @throws \InvalidArgumentException if the $resource arg is not valid. - */ -function stream_for($resource = '', array $options = []) -{ - if (is_scalar($resource)) { - $stream = fopen('php://temp', 'r+'); - if ($resource !== '') { - fwrite($stream, $resource); - fseek($stream, 0); - } - return new Stream($stream, $options); - } - - switch (gettype($resource)) { - case 'resource': - return new Stream($resource, $options); - case 'object': - if ($resource instanceof StreamInterface) { - return $resource; - } elseif ($resource instanceof \Iterator) { - return new PumpStream(function () use ($resource) { - if (!$resource->valid()) { - return false; - } - $result = $resource->current(); - $resource->next(); - return $result; - }, $options); - } elseif (method_exists($resource, '__toString')) { - return stream_for((string) $resource, $options); - } - break; - case 'NULL': - return new Stream(fopen('php://temp', 'r+'), $options); - } - - if (is_callable($resource)) { - return new PumpStream($resource, $options); - } - - throw new \InvalidArgumentException('Invalid resource type: ' . gettype($resource)); -} - -/** - * Parse an array of header values containing ";" separated data into an - * array of associative arrays representing the header key value pair - * data of the header. When a parameter does not contain a value, but just - * contains a key, this function will inject a key with a '' string value. - * - * @param string|array $header Header to parse into components. - * - * @return array Returns the parsed header values. - */ -function parse_header($header) -{ - static $trimmed = "\"' \n\t\r"; - $params = $matches = []; - - foreach (normalize_header($header) as $val) { - $part = []; - foreach (preg_split('/;(?=([^"]*"[^"]*")*[^"]*$)/', $val) as $kvp) { - if (preg_match_all('/<[^>]+>|[^=]+/', $kvp, $matches)) { - $m = $matches[0]; - if (isset($m[1])) { - $part[trim($m[0], $trimmed)] = trim($m[1], $trimmed); - } else { - $part[] = trim($m[0], $trimmed); - } - } - } - if ($part) { - $params[] = $part; - } - } - - return $params; -} - -/** - * Converts an array of header values that may contain comma separated - * headers into an array of headers with no comma separated values. - * - * @param string|array $header Header to normalize. - * - * @return array Returns the normalized header field values. - */ -function normalize_header($header) -{ - if (!is_array($header)) { - return array_map('trim', explode(',', $header)); - } - - $result = []; - foreach ($header as $value) { - foreach ((array) $value as $v) { - if (strpos($v, ',') === false) { - $result[] = $v; - continue; - } - foreach (preg_split('/,(?=([^"]*"[^"]*")*[^"]*$)/', $v) as $vv) { - $result[] = trim($vv); - } - } - } - - return $result; -} - -/** - * Clone and modify a request with the given changes. - * - * The changes can be one of: - * - method: (string) Changes the HTTP method. - * - set_headers: (array) Sets the given headers. - * - remove_headers: (array) Remove the given headers. - * - body: (mixed) Sets the given body. - * - uri: (UriInterface) Set the URI. - * - query: (string) Set the query string value of the URI. - * - version: (string) Set the protocol version. - * - * @param RequestInterface $request Request to clone and modify. - * @param array $changes Changes to apply. - * - * @return RequestInterface - */ -function modify_request(RequestInterface $request, array $changes) -{ - if (!$changes) { - return $request; - } - - $headers = $request->getHeaders(); - - if (!isset($changes['uri'])) { - $uri = $request->getUri(); - } else { - // Remove the host header if one is on the URI - if ($host = $changes['uri']->getHost()) { - $changes['set_headers']['Host'] = $host; - - if ($port = $changes['uri']->getPort()) { - $standardPorts = ['http' => 80, 'https' => 443]; - $scheme = $changes['uri']->getScheme(); - if (isset($standardPorts[$scheme]) && $port != $standardPorts[$scheme]) { - $changes['set_headers']['Host'] .= ':'.$port; - } - } - } - $uri = $changes['uri']; - } - - if (!empty($changes['remove_headers'])) { - $headers = _caseless_remove($changes['remove_headers'], $headers); - } - - if (!empty($changes['set_headers'])) { - $headers = _caseless_remove(array_keys($changes['set_headers']), $headers); - $headers = $changes['set_headers'] + $headers; - } - - if (isset($changes['query'])) { - $uri = $uri->withQuery($changes['query']); - } - - if ($request instanceof ServerRequestInterface) { - return (new ServerRequest( - isset($changes['method']) ? $changes['method'] : $request->getMethod(), - $uri, - $headers, - isset($changes['body']) ? $changes['body'] : $request->getBody(), - isset($changes['version']) - ? $changes['version'] - : $request->getProtocolVersion(), - $request->getServerParams() - )) - ->withParsedBody($request->getParsedBody()) - ->withQueryParams($request->getQueryParams()) - ->withCookieParams($request->getCookieParams()) - ->withUploadedFiles($request->getUploadedFiles()); - } - - return new Request( - isset($changes['method']) ? $changes['method'] : $request->getMethod(), - $uri, - $headers, - isset($changes['body']) ? $changes['body'] : $request->getBody(), - isset($changes['version']) - ? $changes['version'] - : $request->getProtocolVersion() - ); -} - -/** - * Attempts to rewind a message body and throws an exception on failure. - * - * The body of the message will only be rewound if a call to `tell()` returns a - * value other than `0`. - * - * @param MessageInterface $message Message to rewind - * - * @throws \RuntimeException - */ -function rewind_body(MessageInterface $message) -{ - $body = $message->getBody(); - - if ($body->tell()) { - $body->rewind(); - } -} - -/** - * Safely opens a PHP stream resource using a filename. - * - * When fopen fails, PHP normally raises a warning. This function adds an - * error handler that checks for errors and throws an exception instead. - * - * @param string $filename File to open - * @param string $mode Mode used to open the file - * - * @return resource - * @throws \RuntimeException if the file cannot be opened - */ -function try_fopen($filename, $mode) -{ - $ex = null; - set_error_handler(function () use ($filename, $mode, &$ex) { - $ex = new \RuntimeException(sprintf( - 'Unable to open %s using mode %s: %s', - $filename, - $mode, - func_get_args()[1] - )); - }); - - $handle = fopen($filename, $mode); - restore_error_handler(); - - if ($ex) { - /** @var $ex \RuntimeException */ - throw $ex; - } - - return $handle; -} - -/** - * Copy the contents of a stream into a string until the given number of - * bytes have been read. - * - * @param StreamInterface $stream Stream to read - * @param int $maxLen Maximum number of bytes to read. Pass -1 - * to read the entire stream. - * @return string - * @throws \RuntimeException on error. - */ -function copy_to_string(StreamInterface $stream, $maxLen = -1) -{ - $buffer = ''; - - if ($maxLen === -1) { - while (!$stream->eof()) { - $buf = $stream->read(1048576); - // Using a loose equality here to match on '' and false. - if ($buf == null) { - break; - } - $buffer .= $buf; - } - return $buffer; - } - - $len = 0; - while (!$stream->eof() && $len < $maxLen) { - $buf = $stream->read($maxLen - $len); - // Using a loose equality here to match on '' and false. - if ($buf == null) { - break; - } - $buffer .= $buf; - $len = strlen($buffer); - } - - return $buffer; -} - -/** - * Copy the contents of a stream into another stream until the given number - * of bytes have been read. - * - * @param StreamInterface $source Stream to read from - * @param StreamInterface $dest Stream to write to - * @param int $maxLen Maximum number of bytes to read. Pass -1 - * to read the entire stream. - * - * @throws \RuntimeException on error. - */ -function copy_to_stream( - StreamInterface $source, - StreamInterface $dest, - $maxLen = -1 -) { - $bufferSize = 8192; - - if ($maxLen === -1) { - while (!$source->eof()) { - if (!$dest->write($source->read($bufferSize))) { - break; - } - } - } else { - $remaining = $maxLen; - while ($remaining > 0 && !$source->eof()) { - $buf = $source->read(min($bufferSize, $remaining)); - $len = strlen($buf); - if (!$len) { - break; - } - $remaining -= $len; - $dest->write($buf); - } - } -} - -/** - * Calculate a hash of a Stream - * - * @param StreamInterface $stream Stream to calculate the hash for - * @param string $algo Hash algorithm (e.g. md5, crc32, etc) - * @param bool $rawOutput Whether or not to use raw output - * - * @return string Returns the hash of the stream - * @throws \RuntimeException on error. - */ -function hash( - StreamInterface $stream, - $algo, - $rawOutput = false -) { - $pos = $stream->tell(); - - if ($pos > 0) { - $stream->rewind(); - } - - $ctx = hash_init($algo); - while (!$stream->eof()) { - hash_update($ctx, $stream->read(1048576)); - } - - $out = hash_final($ctx, (bool) $rawOutput); - $stream->seek($pos); - - return $out; -} - -/** - * Read a line from the stream up to the maximum allowed buffer length - * - * @param StreamInterface $stream Stream to read from - * @param int $maxLength Maximum buffer length - * - * @return string - */ -function readline(StreamInterface $stream, $maxLength = null) -{ - $buffer = ''; - $size = 0; - - while (!$stream->eof()) { - // Using a loose equality here to match on '' and false. - if (null == ($byte = $stream->read(1))) { - return $buffer; - } - $buffer .= $byte; - // Break when a new line is found or the max length - 1 is reached - if ($byte === "\n" || ++$size === $maxLength - 1) { - break; - } - } - - return $buffer; -} - -/** - * Parses a request message string into a request object. - * - * @param string $message Request message string. - * - * @return Request - */ -function parse_request($message) -{ - $data = _parse_message($message); - $matches = []; - if (!preg_match('/^[\S]+\s+([a-zA-Z]+:\/\/|\/).*/', $data['start-line'], $matches)) { - throw new \InvalidArgumentException('Invalid request string'); - } - $parts = explode(' ', $data['start-line'], 3); - $version = isset($parts[2]) ? explode('/', $parts[2])[1] : '1.1'; - - $request = new Request( - $parts[0], - $matches[1] === '/' ? _parse_request_uri($parts[1], $data['headers']) : $parts[1], - $data['headers'], - $data['body'], - $version - ); - - return $matches[1] === '/' ? $request : $request->withRequestTarget($parts[1]); -} - -/** - * Parses a response message string into a response object. - * - * @param string $message Response message string. - * - * @return Response - */ -function parse_response($message) -{ - $data = _parse_message($message); - // According to https://tools.ietf.org/html/rfc7230#section-3.1.2 the space - // between status-code and reason-phrase is required. But browsers accept - // responses without space and reason as well. - if (!preg_match('/^HTTP\/.* [0-9]{3}( .*|$)/', $data['start-line'])) { - throw new \InvalidArgumentException('Invalid response string: ' . $data['start-line']); - } - $parts = explode(' ', $data['start-line'], 3); - - return new Response( - $parts[1], - $data['headers'], - $data['body'], - explode('/', $parts[0])[1], - isset($parts[2]) ? $parts[2] : null - ); -} - -/** - * Parse a query string into an associative array. - * - * If multiple values are found for the same key, the value of that key - * value pair will become an array. This function does not parse nested - * PHP style arrays into an associative array (e.g., foo[a]=1&foo[b]=2 will - * be parsed into ['foo[a]' => '1', 'foo[b]' => '2']). - * - * @param string $str Query string to parse - * @param int|bool $urlEncoding How the query string is encoded - * - * @return array - */ -function parse_query($str, $urlEncoding = true) -{ - $result = []; - - if ($str === '') { - return $result; - } - - if ($urlEncoding === true) { - $decoder = function ($value) { - return rawurldecode(str_replace('+', ' ', $value)); - }; - } elseif ($urlEncoding === PHP_QUERY_RFC3986) { - $decoder = 'rawurldecode'; - } elseif ($urlEncoding === PHP_QUERY_RFC1738) { - $decoder = 'urldecode'; - } else { - $decoder = function ($str) { return $str; }; - } - - foreach (explode('&', $str) as $kvp) { - $parts = explode('=', $kvp, 2); - $key = $decoder($parts[0]); - $value = isset($parts[1]) ? $decoder($parts[1]) : null; - if (!isset($result[$key])) { - $result[$key] = $value; - } else { - if (!is_array($result[$key])) { - $result[$key] = [$result[$key]]; - } - $result[$key][] = $value; - } - } - - return $result; -} - -/** - * Build a query string from an array of key value pairs. - * - * This function can use the return value of parse_query() to build a query - * string. This function does not modify the provided keys when an array is - * encountered (like http_build_query would). - * - * @param array $params Query string parameters. - * @param int|false $encoding Set to false to not encode, PHP_QUERY_RFC3986 - * to encode using RFC3986, or PHP_QUERY_RFC1738 - * to encode using RFC1738. - * @return string - */ -function build_query(array $params, $encoding = PHP_QUERY_RFC3986) -{ - if (!$params) { - return ''; - } - - if ($encoding === false) { - $encoder = function ($str) { return $str; }; - } elseif ($encoding === PHP_QUERY_RFC3986) { - $encoder = 'rawurlencode'; - } elseif ($encoding === PHP_QUERY_RFC1738) { - $encoder = 'urlencode'; - } else { - throw new \InvalidArgumentException('Invalid type'); - } - - $qs = ''; - foreach ($params as $k => $v) { - $k = $encoder($k); - if (!is_array($v)) { - $qs .= $k; - if ($v !== null) { - $qs .= '=' . $encoder($v); - } - $qs .= '&'; - } else { - foreach ($v as $vv) { - $qs .= $k; - if ($vv !== null) { - $qs .= '=' . $encoder($vv); - } - $qs .= '&'; - } - } - } - - return $qs ? (string) substr($qs, 0, -1) : ''; -} - -/** - * Determines the mimetype of a file by looking at its extension. - * - * @param $filename - * - * @return null|string - */ -function mimetype_from_filename($filename) -{ - return mimetype_from_extension(pathinfo($filename, PATHINFO_EXTENSION)); -} - -/** - * Maps a file extensions to a mimetype. - * - * @param $extension string The file extension. - * - * @return string|null - * @link http://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x/conf/mime.types - */ -function mimetype_from_extension($extension) -{ - static $mimetypes = [ - '3gp' => 'video/3gpp', - '7z' => 'application/x-7z-compressed', - 'aac' => 'audio/x-aac', - 'ai' => 'application/postscript', - 'aif' => 'audio/x-aiff', - 'asc' => 'text/plain', - 'asf' => 'video/x-ms-asf', - 'atom' => 'application/atom+xml', - 'avi' => 'video/x-msvideo', - 'bmp' => 'image/bmp', - 'bz2' => 'application/x-bzip2', - 'cer' => 'application/pkix-cert', - 'crl' => 'application/pkix-crl', - 'crt' => 'application/x-x509-ca-cert', - 'css' => 'text/css', - 'csv' => 'text/csv', - 'cu' => 'application/cu-seeme', - 'deb' => 'application/x-debian-package', - 'doc' => 'application/msword', - 'docx' => 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', - 'dvi' => 'application/x-dvi', - 'eot' => 'application/vnd.ms-fontobject', - 'eps' => 'application/postscript', - 'epub' => 'application/epub+zip', - 'etx' => 'text/x-setext', - 'flac' => 'audio/flac', - 'flv' => 'video/x-flv', - 'gif' => 'image/gif', - 'gz' => 'application/gzip', - 'htm' => 'text/html', - 'html' => 'text/html', - 'ico' => 'image/x-icon', - 'ics' => 'text/calendar', - 'ini' => 'text/plain', - 'iso' => 'application/x-iso9660-image', - 'jar' => 'application/java-archive', - 'jpe' => 'image/jpeg', - 'jpeg' => 'image/jpeg', - 'jpg' => 'image/jpeg', - 'js' => 'text/javascript', - 'json' => 'application/json', - 'latex' => 'application/x-latex', - 'log' => 'text/plain', - 'm4a' => 'audio/mp4', - 'm4v' => 'video/mp4', - 'mid' => 'audio/midi', - 'midi' => 'audio/midi', - 'mov' => 'video/quicktime', - 'mkv' => 'video/x-matroska', - 'mp3' => 'audio/mpeg', - 'mp4' => 'video/mp4', - 'mp4a' => 'audio/mp4', - 'mp4v' => 'video/mp4', - 'mpe' => 'video/mpeg', - 'mpeg' => 'video/mpeg', - 'mpg' => 'video/mpeg', - 'mpg4' => 'video/mp4', - 'oga' => 'audio/ogg', - 'ogg' => 'audio/ogg', - 'ogv' => 'video/ogg', - 'ogx' => 'application/ogg', - 'pbm' => 'image/x-portable-bitmap', - 'pdf' => 'application/pdf', - 'pgm' => 'image/x-portable-graymap', - 'png' => 'image/png', - 'pnm' => 'image/x-portable-anymap', - 'ppm' => 'image/x-portable-pixmap', - 'ppt' => 'application/vnd.ms-powerpoint', - 'pptx' => 'application/vnd.openxmlformats-officedocument.presentationml.presentation', - 'ps' => 'application/postscript', - 'qt' => 'video/quicktime', - 'rar' => 'application/x-rar-compressed', - 'ras' => 'image/x-cmu-raster', - 'rss' => 'application/rss+xml', - 'rtf' => 'application/rtf', - 'sgm' => 'text/sgml', - 'sgml' => 'text/sgml', - 'svg' => 'image/svg+xml', - 'swf' => 'application/x-shockwave-flash', - 'tar' => 'application/x-tar', - 'tif' => 'image/tiff', - 'tiff' => 'image/tiff', - 'torrent' => 'application/x-bittorrent', - 'ttf' => 'application/x-font-ttf', - 'txt' => 'text/plain', - 'wav' => 'audio/x-wav', - 'webm' => 'video/webm', - 'webp' => 'image/webp', - 'wma' => 'audio/x-ms-wma', - 'wmv' => 'video/x-ms-wmv', - 'woff' => 'application/x-font-woff', - 'wsdl' => 'application/wsdl+xml', - 'xbm' => 'image/x-xbitmap', - 'xls' => 'application/vnd.ms-excel', - 'xlsx' => 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', - 'xml' => 'application/xml', - 'xpm' => 'image/x-xpixmap', - 'xwd' => 'image/x-xwindowdump', - 'yaml' => 'text/yaml', - 'yml' => 'text/yaml', - 'zip' => 'application/zip', - ]; - - $extension = strtolower($extension); - - return isset($mimetypes[$extension]) - ? $mimetypes[$extension] - : null; -} - -/** - * Parses an HTTP message into an associative array. - * - * The array contains the "start-line" key containing the start line of - * the message, "headers" key containing an associative array of header - * array values, and a "body" key containing the body of the message. - * - * @param string $message HTTP request or response to parse. - * - * @return array - * @internal - */ -function _parse_message($message) -{ - if (!$message) { - throw new \InvalidArgumentException('Invalid message'); - } - - $message = ltrim($message, "\r\n"); - - $messageParts = preg_split("/\r?\n\r?\n/", $message, 2); - - if ($messageParts === false || count($messageParts) !== 2) { - throw new \InvalidArgumentException('Invalid message: Missing header delimiter'); - } - - list($rawHeaders, $body) = $messageParts; - $rawHeaders .= "\r\n"; // Put back the delimiter we split previously - $headerParts = preg_split("/\r?\n/", $rawHeaders, 2); - - if ($headerParts === false || count($headerParts) !== 2) { - throw new \InvalidArgumentException('Invalid message: Missing status line'); - } - - list($startLine, $rawHeaders) = $headerParts; - - if (preg_match("/(?:^HTTP\/|^[A-Z]+ \S+ HTTP\/)(\d+(?:\.\d+)?)/i", $startLine, $matches) && $matches[1] === '1.0') { - // Header folding is deprecated for HTTP/1.1, but allowed in HTTP/1.0 - $rawHeaders = preg_replace(Rfc7230::HEADER_FOLD_REGEX, ' ', $rawHeaders); - } - - /** @var array[] $headerLines */ - $count = preg_match_all(Rfc7230::HEADER_REGEX, $rawHeaders, $headerLines, PREG_SET_ORDER); - - // If these aren't the same, then one line didn't match and there's an invalid header. - if ($count !== substr_count($rawHeaders, "\n")) { - // Folding is deprecated, see https://tools.ietf.org/html/rfc7230#section-3.2.4 - if (preg_match(Rfc7230::HEADER_FOLD_REGEX, $rawHeaders)) { - throw new \InvalidArgumentException('Invalid header syntax: Obsolete line folding'); - } - - throw new \InvalidArgumentException('Invalid header syntax'); - } - - $headers = []; - - foreach ($headerLines as $headerLine) { - $headers[$headerLine[1]][] = $headerLine[2]; - } - - return [ - 'start-line' => $startLine, - 'headers' => $headers, - 'body' => $body, - ]; -} - -/** - * Constructs a URI for an HTTP request message. - * - * @param string $path Path from the start-line - * @param array $headers Array of headers (each value an array). - * - * @return string - * @internal - */ -function _parse_request_uri($path, array $headers) -{ - $hostKey = array_filter(array_keys($headers), function ($k) { - return strtolower($k) === 'host'; - }); - - // If no host is found, then a full URI cannot be constructed. - if (!$hostKey) { - return $path; - } - - $host = $headers[reset($hostKey)][0]; - $scheme = substr($host, -4) === ':443' ? 'https' : 'http'; - - return $scheme . '://' . $host . '/' . ltrim($path, '/'); -} - -/** - * Get a short summary of the message body - * - * Will return `null` if the response is not printable. - * - * @param MessageInterface $message The message to get the body summary - * @param int $truncateAt The maximum allowed size of the summary - * - * @return null|string - */ -function get_message_body_summary(MessageInterface $message, $truncateAt = 120) -{ - $body = $message->getBody(); - - if (!$body->isSeekable() || !$body->isReadable()) { - return null; - } - - $size = $body->getSize(); - - if ($size === 0) { - return null; - } - - $summary = $body->read($truncateAt); - $body->rewind(); - - if ($size > $truncateAt) { - $summary .= ' (truncated...)'; - } - - // Matches any printable character, including unicode characters: - // letters, marks, numbers, punctuation, spacing, and separators. - if (preg_match('/[^\pL\pM\pN\pP\pS\pZ\n\r\t]/', $summary)) { - return null; - } - - return $summary; -} - -/** @internal */ -function _caseless_remove($keys, array $data) -{ - $result = []; - - foreach ($keys as &$key) { - $key = strtolower($key); - } - - foreach ($data as $k => $v) { - if (!in_array(strtolower($k), $keys)) { - $result[$k] = $v; - } - } - - return $result; -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/functions_include.php b/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/functions_include.php deleted file mode 100644 index 96a4a83a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/guzzlehttp/psr7/src/functions_include.php +++ /dev/null @@ -1,6 +0,0 @@ -useMicrosecondTimestamps(false)`, disabling it gets you a bit of performance boost but reduces the precision to the second instead of microsecond - * Added possibility to skip some extra stack frames in IntrospectionProcessor if you have some library wrapping Monolog that is always adding frames - * Added `Logger->withName` to clone a logger (keeping all handlers) with a new name - * Added FluentdFormatter for the Fluentd unix socket protocol - * Added HandlerWrapper base class to ease the creation of handler wrappers, just extend it and override as needed - * Added support for replacing context sub-keys using `%context.*%` in LineFormatter - * Added support for `payload` context value in RollbarHandler - * Added setRelease to RavenHandler to describe the application version, sent with every log - * Added support for `fingerprint` context value in RavenHandler - * Fixed JSON encoding errors that would gobble up the whole log record, we now handle those more gracefully by dropping chars as needed - * Fixed write timeouts in SocketHandler and derivatives, set to 10sec by default, lower it with `setWritingTimeout()` - * Fixed PHP7 compatibility with regard to Exception/Throwable handling in a few places - -### 1.17.2 (2015-10-14) - - * Fixed ErrorHandler compatibility with non-Monolog PSR-3 loggers - * Fixed SlackHandler handling to use slack functionalities better - * Fixed SwiftMailerHandler bug when sending multiple emails they all had the same id - * Fixed 5.3 compatibility regression - -### 1.17.1 (2015-08-31) - - * Fixed RollbarHandler triggering PHP notices - -### 1.17.0 (2015-08-30) - - * Added support for `checksum` and `release` context/extra values in RavenHandler - * Added better support for exceptions in RollbarHandler - * Added UidProcessor::getUid - * Added support for showing the resource type in NormalizedFormatter - * Fixed IntrospectionProcessor triggering PHP notices - -### 1.16.0 (2015-08-09) - - * Added IFTTTHandler to notify ifttt.com triggers - * Added Logger::setHandlers() to allow setting/replacing all handlers - * Added $capSize in RedisHandler to cap the log size - * Fixed StreamHandler creation of directory to only trigger when the first log write happens - * Fixed bug in the handling of curl failures - * Fixed duplicate logging of fatal errors when both error and fatal error handlers are registered in monolog's ErrorHandler - * Fixed missing fatal errors records with handlers that need to be closed to flush log records - * Fixed TagProcessor::addTags support for associative arrays - -### 1.15.0 (2015-07-12) - - * Added addTags and setTags methods to change a TagProcessor - * Added automatic creation of directories if they are missing for a StreamHandler to open a log file - * Added retry functionality to Loggly, Cube and Mandrill handlers so they retry up to 5 times in case of network failure - * Fixed process exit code being incorrectly reset to 0 if ErrorHandler::registerExceptionHandler was used - * Fixed HTML/JS escaping in BrowserConsoleHandler - * Fixed JSON encoding errors being silently suppressed (PHP 5.5+ only) - -### 1.14.0 (2015-06-19) - - * Added PHPConsoleHandler to send record to Chrome's PHP Console extension and library - * Added support for objects implementing __toString in the NormalizerFormatter - * Added support for HipChat's v2 API in HipChatHandler - * Added Logger::setTimezone() to initialize the timezone monolog should use in case date.timezone isn't correct for your app - * Added an option to send formatted message instead of the raw record on PushoverHandler via ->useFormattedMessage(true) - * Fixed curl errors being silently suppressed - -### 1.13.1 (2015-03-09) - - * Fixed regression in HipChat requiring a new token to be created - -### 1.13.0 (2015-03-05) - - * Added Registry::hasLogger to check for the presence of a logger instance - * Added context.user support to RavenHandler - * Added HipChat API v2 support in the HipChatHandler - * Added NativeMailerHandler::addParameter to pass params to the mail() process - * Added context data to SlackHandler when $includeContextAndExtra is true - * Added ability to customize the Swift_Message per-email in SwiftMailerHandler - * Fixed SwiftMailerHandler to lazily create message instances if a callback is provided - * Fixed serialization of INF and NaN values in Normalizer and LineFormatter - -### 1.12.0 (2014-12-29) - - * Break: HandlerInterface::isHandling now receives a partial record containing only a level key. This was always the intent and does not break any Monolog handler but is strictly speaking a BC break and you should check if you relied on any other field in your own handlers. - * Added PsrHandler to forward records to another PSR-3 logger - * Added SamplingHandler to wrap around a handler and include only every Nth record - * Added MongoDBFormatter to support better storage with MongoDBHandler (it must be enabled manually for now) - * Added exception codes in the output of most formatters - * Added LineFormatter::includeStacktraces to enable exception stack traces in logs (uses more than one line) - * Added $useShortAttachment to SlackHandler to minify attachment size and $includeExtra to append extra data - * Added $host to HipChatHandler for users of private instances - * Added $transactionName to NewRelicHandler and support for a transaction_name context value - * Fixed MandrillHandler to avoid outputting API call responses - * Fixed some non-standard behaviors in SyslogUdpHandler - -### 1.11.0 (2014-09-30) - - * Break: The NewRelicHandler extra and context data are now prefixed with extra_ and context_ to avoid clashes. Watch out if you have scripts reading those from the API and rely on names - * Added WhatFailureGroupHandler to suppress any exception coming from the wrapped handlers and avoid chain failures if a logging service fails - * Added MandrillHandler to send emails via the Mandrillapp.com API - * Added SlackHandler to log records to a Slack.com account - * Added FleepHookHandler to log records to a Fleep.io account - * Added LogglyHandler::addTag to allow adding tags to an existing handler - * Added $ignoreEmptyContextAndExtra to LineFormatter to avoid empty [] at the end - * Added $useLocking to StreamHandler and RotatingFileHandler to enable flock() while writing - * Added support for PhpAmqpLib in the AmqpHandler - * Added FingersCrossedHandler::clear and BufferHandler::clear to reset them between batches in long running jobs - * Added support for adding extra fields from $_SERVER in the WebProcessor - * Fixed support for non-string values in PrsLogMessageProcessor - * Fixed SwiftMailer messages being sent with the wrong date in long running scripts - * Fixed minor PHP 5.6 compatibility issues - * Fixed BufferHandler::close being called twice - -### 1.10.0 (2014-06-04) - - * Added Logger::getHandlers() and Logger::getProcessors() methods - * Added $passthruLevel argument to FingersCrossedHandler to let it always pass some records through even if the trigger level is not reached - * Added support for extra data in NewRelicHandler - * Added $expandNewlines flag to the ErrorLogHandler to create multiple log entries when a message has multiple lines - -### 1.9.1 (2014-04-24) - - * Fixed regression in RotatingFileHandler file permissions - * Fixed initialization of the BufferHandler to make sure it gets flushed after receiving records - * Fixed ChromePHPHandler and FirePHPHandler's activation strategies to be more conservative - -### 1.9.0 (2014-04-20) - - * Added LogEntriesHandler to send logs to a LogEntries account - * Added $filePermissions to tweak file mode on StreamHandler and RotatingFileHandler - * Added $useFormatting flag to MemoryProcessor to make it send raw data in bytes - * Added support for table formatting in FirePHPHandler via the table context key - * Added a TagProcessor to add tags to records, and support for tags in RavenHandler - * Added $appendNewline flag to the JsonFormatter to enable using it when logging to files - * Added sound support to the PushoverHandler - * Fixed multi-threading support in StreamHandler - * Fixed empty headers issue when ChromePHPHandler received no records - * Fixed default format of the ErrorLogHandler - -### 1.8.0 (2014-03-23) - - * Break: the LineFormatter now strips newlines by default because this was a bug, set $allowInlineLineBreaks to true if you need them - * Added BrowserConsoleHandler to send logs to any browser's console via console.log() injection in the output - * Added FilterHandler to filter records and only allow those of a given list of levels through to the wrapped handler - * Added FlowdockHandler to send logs to a Flowdock account - * Added RollbarHandler to send logs to a Rollbar account - * Added HtmlFormatter to send prettier log emails with colors for each log level - * Added GitProcessor to add the current branch/commit to extra record data - * Added a Monolog\Registry class to allow easier global access to pre-configured loggers - * Added support for the new official graylog2/gelf-php lib for GelfHandler, upgrade if you can by replacing the mlehner/gelf-php requirement - * Added support for HHVM - * Added support for Loggly batch uploads - * Added support for tweaking the content type and encoding in NativeMailerHandler - * Added $skipClassesPartials to tweak the ignored classes in the IntrospectionProcessor - * Fixed batch request support in GelfHandler - -### 1.7.0 (2013-11-14) - - * Added ElasticSearchHandler to send logs to an Elastic Search server - * Added DynamoDbHandler and ScalarFormatter to send logs to Amazon's Dynamo DB - * Added SyslogUdpHandler to send logs to a remote syslogd server - * Added LogglyHandler to send logs to a Loggly account - * Added $level to IntrospectionProcessor so it only adds backtraces when needed - * Added $version to LogstashFormatter to allow using the new v1 Logstash format - * Added $appName to NewRelicHandler - * Added configuration of Pushover notification retries/expiry - * Added $maxColumnWidth to NativeMailerHandler to change the 70 chars default - * Added chainability to most setters for all handlers - * Fixed RavenHandler batch processing so it takes the message from the record with highest priority - * Fixed HipChatHandler batch processing so it sends all messages at once - * Fixed issues with eAccelerator - * Fixed and improved many small things - -### 1.6.0 (2013-07-29) - - * Added HipChatHandler to send logs to a HipChat chat room - * Added ErrorLogHandler to send logs to PHP's error_log function - * Added NewRelicHandler to send logs to NewRelic's service - * Added Monolog\ErrorHandler helper class to register a Logger as exception/error/fatal handler - * Added ChannelLevelActivationStrategy for the FingersCrossedHandler to customize levels by channel - * Added stack traces output when normalizing exceptions (json output & co) - * Added Monolog\Logger::API constant (currently 1) - * Added support for ChromePHP's v4.0 extension - * Added support for message priorities in PushoverHandler, see $highPriorityLevel and $emergencyLevel - * Added support for sending messages to multiple users at once with the PushoverHandler - * Fixed RavenHandler's support for batch sending of messages (when behind a Buffer or FingersCrossedHandler) - * Fixed normalization of Traversables with very large data sets, only the first 1000 items are shown now - * Fixed issue in RotatingFileHandler when an open_basedir restriction is active - * Fixed minor issues in RavenHandler and bumped the API to Raven 0.5.0 - * Fixed SyslogHandler issue when many were used concurrently with different facilities - -### 1.5.0 (2013-04-23) - - * Added ProcessIdProcessor to inject the PID in log records - * Added UidProcessor to inject a unique identifier to all log records of one request/run - * Added support for previous exceptions in the LineFormatter exception serialization - * Added Monolog\Logger::getLevels() to get all available levels - * Fixed ChromePHPHandler so it avoids sending headers larger than Chrome can handle - -### 1.4.1 (2013-04-01) - - * Fixed exception formatting in the LineFormatter to be more minimalistic - * Fixed RavenHandler's handling of context/extra data, requires Raven client >0.1.0 - * Fixed log rotation in RotatingFileHandler to work with long running scripts spanning multiple days - * Fixed WebProcessor array access so it checks for data presence - * Fixed Buffer, Group and FingersCrossed handlers to make use of their processors - -### 1.4.0 (2013-02-13) - - * Added RedisHandler to log to Redis via the Predis library or the phpredis extension - * Added ZendMonitorHandler to log to the Zend Server monitor - * Added the possibility to pass arrays of handlers and processors directly in the Logger constructor - * Added `$useSSL` option to the PushoverHandler which is enabled by default - * Fixed ChromePHPHandler and FirePHPHandler issue when multiple instances are used simultaneously - * Fixed header injection capability in the NativeMailHandler - -### 1.3.1 (2013-01-11) - - * Fixed LogstashFormatter to be usable with stream handlers - * Fixed GelfMessageFormatter levels on Windows - -### 1.3.0 (2013-01-08) - - * Added PSR-3 compliance, the `Monolog\Logger` class is now an instance of `Psr\Log\LoggerInterface` - * Added PsrLogMessageProcessor that you can selectively enable for full PSR-3 compliance - * Added LogstashFormatter (combine with SocketHandler or StreamHandler to send logs to Logstash) - * Added PushoverHandler to send mobile notifications - * Added CouchDBHandler and DoctrineCouchDBHandler - * Added RavenHandler to send data to Sentry servers - * Added support for the new MongoClient class in MongoDBHandler - * Added microsecond precision to log records' timestamps - * Added `$flushOnOverflow` param to BufferHandler to flush by batches instead of losing - the oldest entries - * Fixed normalization of objects with cyclic references - -### 1.2.1 (2012-08-29) - - * Added new $logopts arg to SyslogHandler to provide custom openlog options - * Fixed fatal error in SyslogHandler - -### 1.2.0 (2012-08-18) - - * Added AmqpHandler (for use with AMQP servers) - * Added CubeHandler - * Added NativeMailerHandler::addHeader() to send custom headers in mails - * Added the possibility to specify more than one recipient in NativeMailerHandler - * Added the possibility to specify float timeouts in SocketHandler - * Added NOTICE and EMERGENCY levels to conform with RFC 5424 - * Fixed the log records to use the php default timezone instead of UTC - * Fixed BufferHandler not being flushed properly on PHP fatal errors - * Fixed normalization of exotic resource types - * Fixed the default format of the SyslogHandler to avoid duplicating datetimes in syslog - -### 1.1.0 (2012-04-23) - - * Added Monolog\Logger::isHandling() to check if a handler will - handle the given log level - * Added ChromePHPHandler - * Added MongoDBHandler - * Added GelfHandler (for use with Graylog2 servers) - * Added SocketHandler (for use with syslog-ng for example) - * Added NormalizerFormatter - * Added the possibility to change the activation strategy of the FingersCrossedHandler - * Added possibility to show microseconds in logs - * Added `server` and `referer` to WebProcessor output - -### 1.0.2 (2011-10-24) - - * Fixed bug in IE with large response headers and FirePHPHandler - -### 1.0.1 (2011-08-25) - - * Added MemoryPeakUsageProcessor and MemoryUsageProcessor - * Added Monolog\Logger::getName() to get a logger's channel name - -### 1.0.0 (2011-07-06) - - * Added IntrospectionProcessor to get info from where the logger was called - * Fixed WebProcessor in CLI - -### 1.0.0-RC1 (2011-07-01) - - * Initial release diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/LICENSE b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/LICENSE deleted file mode 100644 index 5170c6df..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/LICENSE +++ /dev/null @@ -1,19 +0,0 @@ -Copyright (c) 2011-2019 Jordi Boggiano - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is furnished -to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/README.md b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/README.md deleted file mode 100644 index aebd054c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/README.md +++ /dev/null @@ -1,105 +0,0 @@ -# Monolog - Logging for PHP [![Build Status](https://travis-ci.org/Seldaek/monolog.svg?branch=master)](https://travis-ci.org/Seldaek/monolog) - -[![Total Downloads](https://img.shields.io/packagist/dt/monolog/monolog.svg)](https://packagist.org/packages/monolog/monolog) -[![Latest Stable Version](https://img.shields.io/packagist/v/monolog/monolog.svg)](https://packagist.org/packages/monolog/monolog) - - -Monolog sends your logs to files, sockets, inboxes, databases and various -web services. See the complete list of handlers below. Special handlers -allow you to build advanced logging strategies. - -This library implements the [PSR-3](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-3-logger-interface.md) -interface that you can type-hint against in your own libraries to keep -a maximum of interoperability. You can also use it in your applications to -make sure you can always use another compatible logger at a later time. -As of 1.11.0 Monolog public APIs will also accept PSR-3 log levels. -Internally Monolog still uses its own level scheme since it predates PSR-3. - -## Installation - -Install the latest version with - -```bash -$ composer require monolog/monolog -``` - -## Basic Usage - -```php -pushHandler(new StreamHandler('path/to/your.log', Logger::WARNING)); - -// add records to the log -$log->warning('Foo'); -$log->error('Bar'); -``` - -## Documentation - -- [Usage Instructions](doc/01-usage.md) -- [Handlers, Formatters and Processors](doc/02-handlers-formatters-processors.md) -- [Utility Classes](doc/03-utilities.md) -- [Extending Monolog](doc/04-extending.md) -- [Log Record Structure](doc/message-structure.md) - -## Support Monolog Financially - -Get supported Monolog and help fund the project with the [Tidelift Subscription](https://tidelift.com/subscription/pkg/packagist-monolog-monolog?utm_source=packagist-monolog-monolog&utm_medium=referral&utm_campaign=enterprise) or via [GitHub sponsorship](https://github.com/sponsors/Seldaek). - -Tidelift delivers commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use. - -## Third Party Packages - -Third party handlers, formatters and processors are -[listed in the wiki](https://github.com/Seldaek/monolog/wiki/Third-Party-Packages). You -can also add your own there if you publish one. - -## About - -### Requirements - -- Monolog 2.x works with PHP 7.2 or above, use Monolog `^1.0` for PHP 5.3+ support. - -### Submitting bugs and feature requests - -Bugs and feature request are tracked on [GitHub](https://github.com/Seldaek/monolog/issues) - -### Framework Integrations - -- Frameworks and libraries using [PSR-3](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-3-logger-interface.md) - can be used very easily with Monolog since it implements the interface. -- [Symfony](http://symfony.com) comes out of the box with Monolog. -- [Laravel](http://laravel.com/) comes out of the box with Monolog. -- [Lumen](http://lumen.laravel.com/) comes out of the box with Monolog. -- [PPI](https://github.com/ppi/framework) comes out of the box with Monolog. -- [CakePHP](http://cakephp.org/) is usable with Monolog via the [cakephp-monolog](https://github.com/jadb/cakephp-monolog) plugin. -- [Slim](http://www.slimframework.com/) is usable with Monolog via the [Slim-Monolog](https://github.com/Flynsarmy/Slim-Monolog) log writer. -- [XOOPS 2.6](http://xoops.org/) comes out of the box with Monolog. -- [Aura.Web_Project](https://github.com/auraphp/Aura.Web_Project) comes out of the box with Monolog. -- [Nette Framework](http://nette.org/en/) can be used with Monolog via [Kdyby/Monolog](https://github.com/Kdyby/Monolog) extension. -- [Proton Micro Framework](https://github.com/alexbilbie/Proton) comes out of the box with Monolog. -- [FuelPHP](http://fuelphp.com/) comes out of the box with Monolog. -- [Equip Framework](https://github.com/equip/framework) comes out of the box with Monolog. -- [Yii 2](http://www.yiiframework.com/) is usable with Monolog via the [yii2-monolog](https://github.com/merorafael/yii2-monolog) or [yii2-psr-log-target](https://github.com/samdark/yii2-psr-log-target) plugins. -- [Hawkbit Micro Framework](https://github.com/HawkBitPhp/hawkbit) comes out of the box with Monolog. -- [SilverStripe 4](https://www.silverstripe.org/) comes out of the box with Monolog. - -### Author - -Jordi Boggiano - -
-See also the list of [contributors](https://github.com/Seldaek/monolog/contributors) who participated in this project. - -### License - -Monolog is licensed under the MIT License - see the `LICENSE` file for details - -### Acknowledgements - -This library is heavily inspired by Python's [Logbook](https://logbook.readthedocs.io/en/stable/) -library, although most concepts have been adjusted to fit to the PHP world. diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/UPGRADE.md b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/UPGRADE.md deleted file mode 100644 index 84e15e6b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/UPGRADE.md +++ /dev/null @@ -1,72 +0,0 @@ -### 2.0.0 - -- `Monolog\Logger::API` can be used to distinguish between a Monolog `1` and `2` - install of Monolog when writing integration code. - -- Removed non-PSR-3 methods to add records, all the `add*` (e.g. `addWarning`) - methods as well as `emerg`, `crit`, `err` and `warn`. - -- DateTime are now formatted with a timezone and microseconds (unless disabled). - Various formatters and log output might be affected, which may mess with log parsing - in some cases. - -- The `datetime` in every record array is now a DateTimeImmutable, not that you - should have been modifying these anyway. - -- The timezone is now set per Logger instance and not statically, either - via ->setTimezone or passed in the constructor. Calls to Logger::setTimezone - should be converted. - -- `HandlerInterface` has been split off and two new interfaces now exist for - more granular controls: `ProcessableHandlerInterface` and - `FormattableHandlerInterface`. Handlers not extending `AbstractHandler` - should make sure to implement the relevant interfaces. - -- `HandlerInterface` now requires the `close` method to be implemented. This - only impacts you if you implement the interface yourself, but you can extend - the new `Monolog\Handler\Handler` base class too. - -- There is no more default handler configured on empty Logger instances, if - you were relying on that you will not get any output anymore, make sure to - configure the handler you need. - -#### LogglyFormatter - -- The records' `datetime` is not sent anymore. Only `timestamp` is sent to Loggly. - -#### AmqpHandler - -- Log levels are not shortened to 4 characters anymore. e.g. a warning record - will be sent using the `warning.channel` routing key instead of `warn.channel` - as in 1.x. -- The exchange name does not default to 'log' anymore, and it is completely ignored - now for the AMQP extension users. Only PHPAmqpLib uses it if provided. - -#### RotatingFileHandler - -- The file name format must now contain `{date}` and the date format must be set - to one of the predefined FILE_PER_* constants to avoid issues with file rotation. - See `setFilenameFormat`. - -#### LogstashFormatter - -- Removed Logstash V0 support -- Context/extra prefix has been removed in favor of letting users configure the exact key being sent -- Context/extra data are now sent as an object instead of single keys - -#### HipChatHandler - -- Removed deprecated HipChat handler, migrate to Slack and use SlackWebhookHandler or SlackHandler instead - -#### SlackbotHandler - -- Removed deprecated SlackbotHandler handler, use SlackWebhookHandler or SlackHandler instead - -#### RavenHandler - -- Removed deprecated RavenHandler handler, use sentry/sentry 2.x and their Sentry\Monolog\Handler instead - -#### ElasticSearchHandler - -- As support for the official Elasticsearch library was added, the former ElasticSearchHandler has been - renamed to ElasticaHandler and the new one added as ElasticsearchHandler. diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/composer.json b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/composer.json deleted file mode 100644 index 21d80648..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/composer.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "name": "monolog/monolog", - "description": "Sends your logs to files, sockets, inboxes, databases and various web services", - "keywords": ["log", "logging", "psr-3"], - "homepage": "http://github.com/Seldaek/monolog", - "type": "library", - "license": "MIT", - "authors": [ - { - "name": "Jordi Boggiano", - "email": "j.boggiano@seld.be", - "homepage": "http://seld.be" - } - ], - "require": { - "php": "^7.2", - "psr/log": "^1.0.1" - }, - "require-dev": { - "aws/aws-sdk-php": "^2.4.9 || ^3.0", - "doctrine/couchdb": "~1.0@dev", - "elasticsearch/elasticsearch": "^6.0", - "graylog2/gelf-php": "^1.4.2", - "jakub-onderka/php-parallel-lint": "^0.9", - "php-amqplib/php-amqplib": "~2.4", - "php-console/php-console": "^3.1.3", - "phpspec/prophecy": "^1.6.1", - "phpunit/phpunit": "^8.3", - "predis/predis": "^1.1", - "rollbar/rollbar": "^1.3", - "ruflin/elastica": ">=0.90 <3.0", - "swiftmailer/swiftmailer": "^5.3|^6.0" - }, - "suggest": { - "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server", - "doctrine/couchdb": "Allow sending log messages to a CouchDB server", - "ruflin/elastica": "Allow sending log messages to an Elastic Search server", - "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client", - "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib", - "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)", - "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)", - "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)", - "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB", - "rollbar/rollbar": "Allow sending log messages to Rollbar", - "php-console/php-console": "Allow sending log messages to Google Chrome", - "ext-mbstring": "Allow to work properly with unicode symbols" - }, - "autoload": { - "psr-4": {"Monolog\\": "src/Monolog"} - }, - "autoload-dev": { - "psr-4": {"Monolog\\": "tests/Monolog"} - }, - "provide": { - "psr/log-implementation": "1.0.0" - }, - "extra": { - "branch-alias": { - "dev-master": "2.x-dev" - } - }, - "scripts": { - "test": [ - "parallel-lint . --exclude vendor", - "phpunit" - ] - }, - "config": { - "sort-packages": true - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/DateTimeImmutable.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/DateTimeImmutable.php deleted file mode 100644 index 6a1ba9b2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/DateTimeImmutable.php +++ /dev/null @@ -1,49 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog; - -use DateTimeZone; - -/** - * Overrides default json encoding of date time objects - * - * @author Menno Holtkamp - * @author Jordi Boggiano - */ -class DateTimeImmutable extends \DateTimeImmutable implements \JsonSerializable -{ - /** - * @var bool - */ - private $useMicroseconds; - - public function __construct(bool $useMicroseconds, ?DateTimeZone $timezone = null) - { - $this->useMicroseconds = $useMicroseconds; - - parent::__construct('now', $timezone); - } - - public function jsonSerialize(): string - { - if ($this->useMicroseconds) { - return $this->format('Y-m-d\TH:i:s.uP'); - } - - return $this->format('Y-m-d\TH:i:sP'); - } - - public function __toString(): string - { - return $this->jsonSerialize(); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/ErrorHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/ErrorHandler.php deleted file mode 100644 index 2643fdb8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/ErrorHandler.php +++ /dev/null @@ -1,267 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog; - -use Psr\Log\LoggerInterface; -use Psr\Log\LogLevel; - -/** - * Monolog error handler - * - * A facility to enable logging of runtime errors, exceptions and fatal errors. - * - * Quick setup: ErrorHandler::register($logger); - * - * @author Jordi Boggiano - */ -class ErrorHandler -{ - private $logger; - - private $previousExceptionHandler; - private $uncaughtExceptionLevelMap; - - private $previousErrorHandler; - private $errorLevelMap; - private $handleOnlyReportedErrors; - - private $hasFatalErrorHandler; - private $fatalLevel; - private $reservedMemory; - private $lastFatalTrace; - private static $fatalErrors = [E_ERROR, E_PARSE, E_CORE_ERROR, E_COMPILE_ERROR, E_USER_ERROR]; - - public function __construct(LoggerInterface $logger) - { - $this->logger = $logger; - } - - /** - * Registers a new ErrorHandler for a given Logger - * - * By default it will handle errors, exceptions and fatal errors - * - * @param LoggerInterface $logger - * @param array|false $errorLevelMap an array of E_* constant to LogLevel::* constant mapping, or false to disable error handling - * @param array|false $exceptionLevelMap an array of class name to LogLevel::* constant mapping, or false to disable exception handling - * @param string|null|false $fatalLevel a LogLevel::* constant, null to use the default LogLevel::ALERT or false to disable fatal error handling - * @return ErrorHandler - */ - public static function register(LoggerInterface $logger, $errorLevelMap = [], $exceptionLevelMap = [], $fatalLevel = null): self - { - $handler = new static($logger); - if ($errorLevelMap !== false) { - $handler->registerErrorHandler($errorLevelMap); - } - if ($exceptionLevelMap !== false) { - $handler->registerExceptionHandler($exceptionLevelMap); - } - if ($fatalLevel !== false) { - $handler->registerFatalHandler($fatalLevel); - } - - return $handler; - } - - public function registerExceptionHandler($levelMap = [], $callPrevious = true): self - { - $prev = set_exception_handler([$this, 'handleException']); - $this->uncaughtExceptionLevelMap = $levelMap; - foreach ($this->defaultExceptionLevelMap() as $class => $level) { - if (!isset($this->uncaughtExceptionLevelMap[$class])) { - $this->uncaughtExceptionLevelMap[$class] = $level; - } - } - if ($callPrevious && $prev) { - $this->previousExceptionHandler = $prev; - } - - return $this; - } - - public function registerErrorHandler(array $levelMap = [], $callPrevious = true, $errorTypes = -1, $handleOnlyReportedErrors = true): self - { - $prev = set_error_handler([$this, 'handleError'], $errorTypes); - $this->errorLevelMap = array_replace($this->defaultErrorLevelMap(), $levelMap); - if ($callPrevious) { - $this->previousErrorHandler = $prev ?: true; - } - - $this->handleOnlyReportedErrors = $handleOnlyReportedErrors; - - return $this; - } - - /** - * @param string|null $level a LogLevel::* constant, null to use the default LogLevel::ALERT or false to disable fatal error handling - * @param int $reservedMemorySize Amount of KBs to reserve in memory so that it can be freed when handling fatal errors giving Monolog some room in memory to get its job done - */ - public function registerFatalHandler($level = null, int $reservedMemorySize = 20): self - { - register_shutdown_function([$this, 'handleFatalError']); - - $this->reservedMemory = str_repeat(' ', 1024 * $reservedMemorySize); - $this->fatalLevel = $level; - $this->hasFatalErrorHandler = true; - - return $this; - } - - protected function defaultExceptionLevelMap(): array - { - return [ - 'ParseError' => LogLevel::CRITICAL, - 'Throwable' => LogLevel::ERROR, - ]; - } - - protected function defaultErrorLevelMap(): array - { - return [ - E_ERROR => LogLevel::CRITICAL, - E_WARNING => LogLevel::WARNING, - E_PARSE => LogLevel::ALERT, - E_NOTICE => LogLevel::NOTICE, - E_CORE_ERROR => LogLevel::CRITICAL, - E_CORE_WARNING => LogLevel::WARNING, - E_COMPILE_ERROR => LogLevel::ALERT, - E_COMPILE_WARNING => LogLevel::WARNING, - E_USER_ERROR => LogLevel::ERROR, - E_USER_WARNING => LogLevel::WARNING, - E_USER_NOTICE => LogLevel::NOTICE, - E_STRICT => LogLevel::NOTICE, - E_RECOVERABLE_ERROR => LogLevel::ERROR, - E_DEPRECATED => LogLevel::NOTICE, - E_USER_DEPRECATED => LogLevel::NOTICE, - ]; - } - - /** - * @private - * @param \Exception $e - */ - public function handleException($e) - { - $level = LogLevel::ERROR; - foreach ($this->uncaughtExceptionLevelMap as $class => $candidate) { - if ($e instanceof $class) { - $level = $candidate; - break; - } - } - - $this->logger->log( - $level, - sprintf('Uncaught Exception %s: "%s" at %s line %s', Utils::getClass($e), $e->getMessage(), $e->getFile(), $e->getLine()), - ['exception' => $e] - ); - - if ($this->previousExceptionHandler) { - call_user_func($this->previousExceptionHandler, $e); - } - - if (!headers_sent() && !ini_get('display_errors')) { - http_response_code(500); - } - - exit(255); - } - - /** - * @private - */ - public function handleError($code, $message, $file = '', $line = 0, $context = []) - { - if ($this->handleOnlyReportedErrors && !(error_reporting() & $code)) { - return; - } - - // fatal error codes are ignored if a fatal error handler is present as well to avoid duplicate log entries - if (!$this->hasFatalErrorHandler || !in_array($code, self::$fatalErrors, true)) { - $level = $this->errorLevelMap[$code] ?? LogLevel::CRITICAL; - $this->logger->log($level, self::codeToString($code).': '.$message, ['code' => $code, 'message' => $message, 'file' => $file, 'line' => $line]); - } else { - $trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS); - array_shift($trace); // Exclude handleError from trace - $this->lastFatalTrace = $trace; - } - - if ($this->previousErrorHandler === true) { - return false; - } elseif ($this->previousErrorHandler) { - return call_user_func($this->previousErrorHandler, $code, $message, $file, $line, $context); - } - - return true; - } - - /** - * @private - */ - public function handleFatalError() - { - $this->reservedMemory = ''; - - $lastError = error_get_last(); - if ($lastError && in_array($lastError['type'], self::$fatalErrors, true)) { - $this->logger->log( - $this->fatalLevel === null ? LogLevel::ALERT : $this->fatalLevel, - 'Fatal Error ('.self::codeToString($lastError['type']).'): '.$lastError['message'], - ['code' => $lastError['type'], 'message' => $lastError['message'], 'file' => $lastError['file'], 'line' => $lastError['line'], 'trace' => $this->lastFatalTrace] - ); - - if ($this->logger instanceof Logger) { - foreach ($this->logger->getHandlers() as $handler) { - $handler->close(); - } - } - } - } - - private static function codeToString($code): string - { - switch ($code) { - case E_ERROR: - return 'E_ERROR'; - case E_WARNING: - return 'E_WARNING'; - case E_PARSE: - return 'E_PARSE'; - case E_NOTICE: - return 'E_NOTICE'; - case E_CORE_ERROR: - return 'E_CORE_ERROR'; - case E_CORE_WARNING: - return 'E_CORE_WARNING'; - case E_COMPILE_ERROR: - return 'E_COMPILE_ERROR'; - case E_COMPILE_WARNING: - return 'E_COMPILE_WARNING'; - case E_USER_ERROR: - return 'E_USER_ERROR'; - case E_USER_WARNING: - return 'E_USER_WARNING'; - case E_USER_NOTICE: - return 'E_USER_NOTICE'; - case E_STRICT: - return 'E_STRICT'; - case E_RECOVERABLE_ERROR: - return 'E_RECOVERABLE_ERROR'; - case E_DEPRECATED: - return 'E_DEPRECATED'; - case E_USER_DEPRECATED: - return 'E_USER_DEPRECATED'; - } - - return 'Unknown PHP error'; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Formatter/ChromePHPFormatter.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Formatter/ChromePHPFormatter.php deleted file mode 100644 index 2b4d649c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Formatter/ChromePHPFormatter.php +++ /dev/null @@ -1,81 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Formatter; - -use Monolog\Logger; - -/** - * Formats a log message according to the ChromePHP array format - * - * @author Christophe Coevoet - */ -class ChromePHPFormatter implements FormatterInterface -{ - /** - * Translates Monolog log levels to Wildfire levels. - */ - private $logLevels = [ - Logger::DEBUG => 'log', - Logger::INFO => 'info', - Logger::NOTICE => 'info', - Logger::WARNING => 'warn', - Logger::ERROR => 'error', - Logger::CRITICAL => 'error', - Logger::ALERT => 'error', - Logger::EMERGENCY => 'error', - ]; - - /** - * {@inheritdoc} - */ - public function format(array $record) - { - // Retrieve the line and file if set and remove them from the formatted extra - $backtrace = 'unknown'; - if (isset($record['extra']['file'], $record['extra']['line'])) { - $backtrace = $record['extra']['file'].' : '.$record['extra']['line']; - unset($record['extra']['file'], $record['extra']['line']); - } - - $message = ['message' => $record['message']]; - if ($record['context']) { - $message['context'] = $record['context']; - } - if ($record['extra']) { - $message['extra'] = $record['extra']; - } - if (count($message) === 1) { - $message = reset($message); - } - - return [ - $record['channel'], - $message, - $backtrace, - $this->logLevels[$record['level']], - ]; - } - - /** - * {@inheritdoc} - */ - public function formatBatch(array $records) - { - $formatted = []; - - foreach ($records as $record) { - $formatted[] = $this->format($record); - } - - return $formatted; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Formatter/ElasticaFormatter.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Formatter/ElasticaFormatter.php deleted file mode 100644 index c6f3c8e1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Formatter/ElasticaFormatter.php +++ /dev/null @@ -1,80 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Formatter; - -use Elastica\Document; - -/** - * Format a log message into an Elastica Document - * - * @author Jelle Vink - */ -class ElasticaFormatter extends NormalizerFormatter -{ - /** - * @var string Elastic search index name - */ - protected $index; - - /** - * @var string Elastic search document type - */ - protected $type; - - /** - * @param string $index Elastic Search index name - * @param string $type Elastic Search document type - */ - public function __construct(string $index, string $type) - { - // elasticsearch requires a ISO 8601 format date with optional millisecond precision. - parent::__construct('Y-m-d\TH:i:s.uP'); - - $this->index = $index; - $this->type = $type; - } - - /** - * {@inheritdoc} - */ - public function format(array $record) - { - $record = parent::format($record); - - return $this->getDocument($record); - } - - public function getIndex(): string - { - return $this->index; - } - - public function getType(): string - { - return $this->type; - } - - /** - * Convert a log message into an Elastica Document - * @param array $record - * @return Document - */ - protected function getDocument(array $record): Document - { - $document = new Document(); - $document->setData($record); - $document->setType($this->type); - $document->setIndex($this->index); - - return $document; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Formatter/ElasticsearchFormatter.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Formatter/ElasticsearchFormatter.php deleted file mode 100644 index 84affef3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Formatter/ElasticsearchFormatter.php +++ /dev/null @@ -1,89 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Formatter; - -use DateTime; - -/** - * Format a log message into an Elasticsearch record - * - * @author Avtandil Kikabidze - */ -class ElasticsearchFormatter extends NormalizerFormatter -{ - /** - * @var string Elasticsearch index name - */ - protected $index; - - /** - * @var string Elasticsearch record type - */ - protected $type; - - /** - * @param string $index Elasticsearch index name - * @param string $type Elasticsearch record type - */ - public function __construct(string $index, string $type) - { - // Elasticsearch requires an ISO 8601 format date with optional millisecond precision. - parent::__construct(DateTime::ISO8601); - - $this->index = $index; - $this->type = $type; - } - - /** - * {@inheritdoc} - */ - public function format(array $record) - { - $record = parent::format($record); - - return $this->getDocument($record); - } - - /** - * Getter index - * - * @return string - */ - public function getIndex(): string - { - return $this->index; - } - - /** - * Getter type - * - * @return string - */ - public function getType(): string - { - return $this->type; - } - - /** - * Convert a log message into an Elasticsearch record - * - * @param array $record Log message - * @return array - */ - protected function getDocument(array $record): array - { - $record['_index'] = $this->index; - $record['_type'] = $this->type; - - return $record; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Formatter/FlowdockFormatter.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Formatter/FlowdockFormatter.php deleted file mode 100644 index 301b74b2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Formatter/FlowdockFormatter.php +++ /dev/null @@ -1,107 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Formatter; - -/** - * formats the record to be used in the FlowdockHandler - * - * @author Dominik Liebler - */ -class FlowdockFormatter implements FormatterInterface -{ - /** - * @var string - */ - private $source; - - /** - * @var string - */ - private $sourceEmail; - - public function __construct(string $source, string $sourceEmail) - { - $this->source = $source; - $this->sourceEmail = $sourceEmail; - } - - /** - * {@inheritdoc} - */ - public function format(array $record): array - { - $tags = [ - '#logs', - '#' . strtolower($record['level_name']), - '#' . $record['channel'], - ]; - - foreach ($record['extra'] as $value) { - $tags[] = '#' . $value; - } - - $subject = sprintf( - 'in %s: %s - %s', - $this->source, - $record['level_name'], - $this->getShortMessage($record['message']) - ); - - $record['flowdock'] = [ - 'source' => $this->source, - 'from_address' => $this->sourceEmail, - 'subject' => $subject, - 'content' => $record['message'], - 'tags' => $tags, - 'project' => $this->source, - ]; - - return $record; - } - - /** - * {@inheritdoc} - */ - public function formatBatch(array $records): array - { - $formatted = []; - - foreach ($records as $record) { - $formatted[] = $this->format($record); - } - - return $formatted; - } - - public function getShortMessage(string $message): string - { - static $hasMbString; - - if (null === $hasMbString) { - $hasMbString = function_exists('mb_strlen'); - } - - $maxLength = 45; - - if ($hasMbString) { - if (mb_strlen($message, 'UTF-8') > $maxLength) { - $message = mb_substr($message, 0, $maxLength - 4, 'UTF-8') . ' ...'; - } - } else { - if (strlen($message) > $maxLength) { - $message = substr($message, 0, $maxLength - 4) . ' ...'; - } - } - - return $message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Formatter/FluentdFormatter.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Formatter/FluentdFormatter.php deleted file mode 100644 index 29b14d30..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Formatter/FluentdFormatter.php +++ /dev/null @@ -1,88 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Formatter; - -use Monolog\Utils; - -/** - * Class FluentdFormatter - * - * Serializes a log message to Fluentd unix socket protocol - * - * Fluentd config: - * - * - * type unix - * path /var/run/td-agent/td-agent.sock - * - * - * Monolog setup: - * - * $logger = new Monolog\Logger('fluent.tag'); - * $fluentHandler = new Monolog\Handler\SocketHandler('unix:///var/run/td-agent/td-agent.sock'); - * $fluentHandler->setFormatter(new Monolog\Formatter\FluentdFormatter()); - * $logger->pushHandler($fluentHandler); - * - * @author Andrius Putna - */ -class FluentdFormatter implements FormatterInterface -{ - /** - * @var bool $levelTag should message level be a part of the fluentd tag - */ - protected $levelTag = false; - - public function __construct(bool $levelTag = false) - { - if (!function_exists('json_encode')) { - throw new \RuntimeException('PHP\'s json extension is required to use Monolog\'s FluentdUnixFormatter'); - } - - $this->levelTag = $levelTag; - } - - public function isUsingLevelsInTag(): bool - { - return $this->levelTag; - } - - public function format(array $record): string - { - $tag = $record['channel']; - if ($this->levelTag) { - $tag .= '.' . strtolower($record['level_name']); - } - - $message = [ - 'message' => $record['message'], - 'context' => $record['context'], - 'extra' => $record['extra'], - ]; - - if (!$this->levelTag) { - $message['level'] = $record['level']; - $message['level_name'] = $record['level_name']; - } - - return Utils::jsonEncode([$tag, $record['datetime']->getTimestamp(), $message]); - } - - public function formatBatch(array $records): string - { - $message = ''; - foreach ($records as $record) { - $message .= $this->format($record); - } - - return $message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Formatter/FormatterInterface.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Formatter/FormatterInterface.php deleted file mode 100644 index 7442134e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Formatter/FormatterInterface.php +++ /dev/null @@ -1,36 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Formatter; - -/** - * Interface for formatters - * - * @author Jordi Boggiano - */ -interface FormatterInterface -{ - /** - * Formats a log record. - * - * @param array $record A record to format - * @return mixed The formatted record - */ - public function format(array $record); - - /** - * Formats a set of log records. - * - * @param array $records A set of records to format - * @return mixed The formatted set of records - */ - public function formatBatch(array $records); -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Formatter/GelfMessageFormatter.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Formatter/GelfMessageFormatter.php deleted file mode 100644 index 271628a3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Formatter/GelfMessageFormatter.php +++ /dev/null @@ -1,146 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Formatter; - -use Monolog\Logger; -use Gelf\Message; -use Monolog\Utils; - -/** - * Serializes a log message to GELF - * @see http://docs.graylog.org/en/latest/pages/gelf.html - * - * @author Matt Lehner - */ -class GelfMessageFormatter extends NormalizerFormatter -{ - protected const DEFAULT_MAX_LENGTH = 32766; - - /** - * @var string the name of the system for the Gelf log message - */ - protected $systemName; - - /** - * @var string a prefix for 'extra' fields from the Monolog record (optional) - */ - protected $extraPrefix; - - /** - * @var string a prefix for 'context' fields from the Monolog record (optional) - */ - protected $contextPrefix; - - /** - * @var int max length per field - */ - protected $maxLength; - - /** - * Translates Monolog log levels to Graylog2 log priorities. - */ - private $logLevels = [ - Logger::DEBUG => 7, - Logger::INFO => 6, - Logger::NOTICE => 5, - Logger::WARNING => 4, - Logger::ERROR => 3, - Logger::CRITICAL => 2, - Logger::ALERT => 1, - Logger::EMERGENCY => 0, - ]; - - public function __construct(?string $systemName = null, ?string $extraPrefix = null, string $contextPrefix = 'ctxt_', ?int $maxLength = null) - { - parent::__construct('U.u'); - - $this->systemName = (is_null($systemName) || $systemName === '') ? gethostname() : $systemName; - - $this->extraPrefix = is_null($extraPrefix) ? '' : $extraPrefix; - $this->contextPrefix = $contextPrefix; - $this->maxLength = is_null($maxLength) ? self::DEFAULT_MAX_LENGTH : $maxLength; - } - - /** - * {@inheritdoc} - */ - public function format(array $record): Message - { - if (isset($record['context'])) { - $record['context'] = parent::format($record['context']); - } - if (isset($record['extra'])) { - $record['extra'] = parent::format($record['extra']); - } - - if (!isset($record['datetime'], $record['message'], $record['level'])) { - throw new \InvalidArgumentException('The record should at least contain datetime, message and level keys, '.var_export($record, true).' given'); - } - - $message = new Message(); - $message - ->setTimestamp($record['datetime']) - ->setShortMessage((string) $record['message']) - ->setHost($this->systemName) - ->setLevel($this->logLevels[$record['level']]); - - // message length + system name length + 200 for padding / metadata - $len = 200 + strlen((string) $record['message']) + strlen($this->systemName); - - if ($len > $this->maxLength) { - $message->setShortMessage(Utils::substr($record['message'], 0, $this->maxLength)); - } - - if (isset($record['channel'])) { - $message->setFacility($record['channel']); - } - if (isset($record['extra']['line'])) { - $message->setLine($record['extra']['line']); - unset($record['extra']['line']); - } - if (isset($record['extra']['file'])) { - $message->setFile($record['extra']['file']); - unset($record['extra']['file']); - } - - foreach ($record['extra'] as $key => $val) { - $val = is_scalar($val) || null === $val ? $val : $this->toJson($val); - $len = strlen($this->extraPrefix . $key . $val); - if ($len > $this->maxLength) { - $message->setAdditional($this->extraPrefix . $key, Utils::substr($val, 0, $this->maxLength)); - - continue; - } - $message->setAdditional($this->extraPrefix . $key, $val); - } - - foreach ($record['context'] as $key => $val) { - $val = is_scalar($val) || null === $val ? $val : $this->toJson($val); - $len = strlen($this->contextPrefix . $key . $val); - if ($len > $this->maxLength) { - $message->setAdditional($this->contextPrefix . $key, Utils::substr($val, 0, $this->maxLength)); - - continue; - } - $message->setAdditional($this->contextPrefix . $key, $val); - } - - if (null === $message->getFile() && isset($record['context']['exception']['file'])) { - if (preg_match("/^(.+):([0-9]+)$/", $record['context']['exception']['file'], $matches)) { - $message->setFile($matches[1]); - $message->setLine($matches[2]); - } - } - - return $message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Formatter/HtmlFormatter.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Formatter/HtmlFormatter.php deleted file mode 100644 index d82dfb23..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Formatter/HtmlFormatter.php +++ /dev/null @@ -1,139 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Formatter; - -use Monolog\Logger; -use Monolog\Utils; - -/** - * Formats incoming records into an HTML table - * - * This is especially useful for html email logging - * - * @author Tiago Brito - */ -class HtmlFormatter extends NormalizerFormatter -{ - /** - * Translates Monolog log levels to html color priorities. - */ - protected $logLevels = [ - Logger::DEBUG => '#cccccc', - Logger::INFO => '#468847', - Logger::NOTICE => '#3a87ad', - Logger::WARNING => '#c09853', - Logger::ERROR => '#f0ad4e', - Logger::CRITICAL => '#FF7708', - Logger::ALERT => '#C12A19', - Logger::EMERGENCY => '#000000', - ]; - - /** - * @param string|null $dateFormat The format of the timestamp: one supported by DateTime::format - */ - public function __construct(?string $dateFormat = null) - { - parent::__construct($dateFormat); - } - - /** - * Creates an HTML table row - * - * @param string $th Row header content - * @param string $td Row standard cell content - * @param bool $escapeTd false if td content must not be html escaped - */ - protected function addRow(string $th, string $td = ' ', bool $escapeTd = true): string - { - $th = htmlspecialchars($th, ENT_NOQUOTES, 'UTF-8'); - if ($escapeTd) { - $td = '
'.htmlspecialchars($td, ENT_NOQUOTES, 'UTF-8').'
'; - } - - return "\n$th:\n".$td."\n"; - } - - /** - * Create a HTML h1 tag - * - * @param string $title Text to be in the h1 - * @param int $level Error level - * @return string - */ - protected function addTitle(string $title, int $level): string - { - $title = htmlspecialchars($title, ENT_NOQUOTES, 'UTF-8'); - - return '

'.$title.'

'; - } - - /** - * Formats a log record. - * - * @param array $record A record to format - * @return string The formatted record - */ - public function format(array $record): string - { - $output = $this->addTitle($record['level_name'], $record['level']); - $output .= ''; - - $output .= $this->addRow('Message', (string) $record['message']); - $output .= $this->addRow('Time', $this->formatDate($record['datetime'])); - $output .= $this->addRow('Channel', $record['channel']); - if ($record['context']) { - $embeddedTable = '
'; - foreach ($record['context'] as $key => $value) { - $embeddedTable .= $this->addRow((string)$key, $this->convertToString($value)); - } - $embeddedTable .= '
'; - $output .= $this->addRow('Context', $embeddedTable, false); - } - if ($record['extra']) { - $embeddedTable = ''; - foreach ($record['extra'] as $key => $value) { - $embeddedTable .= $this->addRow((string)$key, $this->convertToString($value)); - } - $embeddedTable .= '
'; - $output .= $this->addRow('Extra', $embeddedTable, false); - } - - return $output.''; - } - - /** - * Formats a set of log records. - * - * @param array $records A set of records to format - * @return string The formatted set of records - */ - public function formatBatch(array $records): string - { - $message = ''; - foreach ($records as $record) { - $message .= $this->format($record); - } - - return $message; - } - - protected function convertToString($data): string - { - if (null === $data || is_scalar($data)) { - return (string) $data; - } - - $data = $this->normalize($data); - - return Utils::jsonEncode($data, JSON_PRETTY_PRINT | Utils::DEFAULT_JSON_FLAGS, true); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Formatter/JsonFormatter.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Formatter/JsonFormatter.php deleted file mode 100644 index 6b6dc6af..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Formatter/JsonFormatter.php +++ /dev/null @@ -1,180 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Formatter; - -use Monolog\Utils; -use Throwable; - -/** - * Encodes whatever record data is passed to it as json - * - * This can be useful to log to databases or remote APIs - * - * @author Jordi Boggiano - */ -class JsonFormatter extends NormalizerFormatter -{ - public const BATCH_MODE_JSON = 1; - public const BATCH_MODE_NEWLINES = 2; - - protected $batchMode; - protected $appendNewline; - - /** - * @var bool - */ - protected $includeStacktraces = false; - - public function __construct(int $batchMode = self::BATCH_MODE_JSON, bool $appendNewline = true) - { - $this->batchMode = $batchMode; - $this->appendNewline = $appendNewline; - } - - /** - * The batch mode option configures the formatting style for - * multiple records. By default, multiple records will be - * formatted as a JSON-encoded array. However, for - * compatibility with some API endpoints, alternative styles - * are available. - */ - public function getBatchMode(): int - { - return $this->batchMode; - } - - /** - * True if newlines are appended to every formatted record - */ - public function isAppendingNewlines(): bool - { - return $this->appendNewline; - } - - /** - * {@inheritdoc} - * - * @suppress PhanTypeComparisonToArray - */ - public function format(array $record): string - { - $normalized = $this->normalize($record); - if (isset($normalized['context']) && $normalized['context'] === []) { - $normalized['context'] = new \stdClass; - } - if (isset($normalized['extra']) && $normalized['extra'] === []) { - $normalized['extra'] = new \stdClass; - } - - return $this->toJson($normalized, true) . ($this->appendNewline ? "\n" : ''); - } - - /** - * {@inheritdoc} - */ - public function formatBatch(array $records): string - { - switch ($this->batchMode) { - case static::BATCH_MODE_NEWLINES: - return $this->formatBatchNewlines($records); - - case static::BATCH_MODE_JSON: - default: - return $this->formatBatchJson($records); - } - } - - public function includeStacktraces(bool $include = true) - { - $this->includeStacktraces = $include; - } - - /** - * Return a JSON-encoded array of records. - */ - protected function formatBatchJson(array $records): string - { - return $this->toJson($this->normalize($records), true); - } - - /** - * Use new lines to separate records instead of a - * JSON-encoded array. - */ - protected function formatBatchNewlines(array $records): string - { - $instance = $this; - - $oldNewline = $this->appendNewline; - $this->appendNewline = false; - array_walk($records, function (&$value, $key) use ($instance) { - $value = $instance->format($value); - }); - $this->appendNewline = $oldNewline; - - return implode("\n", $records); - } - - /** - * Normalizes given $data. - * - * @param mixed $data - * - * @return mixed - */ - protected function normalize($data, int $depth = 0) - { - if ($depth > $this->maxNormalizeDepth) { - return 'Over '.$this->maxNormalizeDepth.' levels deep, aborting normalization'; - } - - if (is_array($data)) { - $normalized = []; - - $count = 1; - foreach ($data as $key => $value) { - if ($count++ > $this->maxNormalizeItemCount) { - $normalized['...'] = 'Over '.$this->maxNormalizeItemCount.' items ('.count($data).' total), aborting normalization'; - break; - } - - $normalized[$key] = $this->normalize($value, $depth + 1); - } - - return $normalized; - } - - if ($data instanceof Throwable) { - return $this->normalizeException($data, $depth); - } - - if (is_resource($data)) { - return parent::normalize($data); - } - - return $data; - } - - /** - * Normalizes given exception with or without its own stack trace based on - * `includeStacktraces` property. - */ - protected function normalizeException(Throwable $e, int $depth = 0): array - { - $data = parent::normalizeException($e, $depth); - if (!$this->includeStacktraces) { - unset($data['trace']); - } - - return $data; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Formatter/LineFormatter.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Formatter/LineFormatter.php deleted file mode 100644 index 9fe43193..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Formatter/LineFormatter.php +++ /dev/null @@ -1,195 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Formatter; - -use Monolog\Utils; - -/** - * Formats incoming records into a one-line string - * - * This is especially useful for logging to files - * - * @author Jordi Boggiano - * @author Christophe Coevoet - */ -class LineFormatter extends NormalizerFormatter -{ - public const SIMPLE_FORMAT = "[%datetime%] %channel%.%level_name%: %message% %context% %extra%\n"; - - protected $format; - protected $allowInlineLineBreaks; - protected $ignoreEmptyContextAndExtra; - protected $includeStacktraces; - - /** - * @param string|null $format The format of the message - * @param string|null $dateFormat The format of the timestamp: one supported by DateTime::format - * @param bool $allowInlineLineBreaks Whether to allow inline line breaks in log entries - * @param bool $ignoreEmptyContextAndExtra - */ - public function __construct(?string $format = null, ?string $dateFormat = null, bool $allowInlineLineBreaks = false, bool $ignoreEmptyContextAndExtra = false) - { - $this->format = $format === null ? static::SIMPLE_FORMAT : $format; - $this->allowInlineLineBreaks = $allowInlineLineBreaks; - $this->ignoreEmptyContextAndExtra = $ignoreEmptyContextAndExtra; - parent::__construct($dateFormat); - } - - public function includeStacktraces(bool $include = true) - { - $this->includeStacktraces = $include; - if ($this->includeStacktraces) { - $this->allowInlineLineBreaks = true; - } - } - - public function allowInlineLineBreaks(bool $allow = true) - { - $this->allowInlineLineBreaks = $allow; - } - - public function ignoreEmptyContextAndExtra(bool $ignore = true) - { - $this->ignoreEmptyContextAndExtra = $ignore; - } - - /** - * {@inheritdoc} - */ - public function format(array $record): string - { - $vars = parent::format($record); - - $output = $this->format; - - foreach ($vars['extra'] as $var => $val) { - if (false !== strpos($output, '%extra.'.$var.'%')) { - $output = str_replace('%extra.'.$var.'%', $this->stringify($val), $output); - unset($vars['extra'][$var]); - } - } - - foreach ($vars['context'] as $var => $val) { - if (false !== strpos($output, '%context.'.$var.'%')) { - $output = str_replace('%context.'.$var.'%', $this->stringify($val), $output); - unset($vars['context'][$var]); - } - } - - if ($this->ignoreEmptyContextAndExtra) { - if (empty($vars['context'])) { - unset($vars['context']); - $output = str_replace('%context%', '', $output); - } - - if (empty($vars['extra'])) { - unset($vars['extra']); - $output = str_replace('%extra%', '', $output); - } - } - - foreach ($vars as $var => $val) { - if (false !== strpos($output, '%'.$var.'%')) { - $output = str_replace('%'.$var.'%', $this->stringify($val), $output); - } - } - - // remove leftover %extra.xxx% and %context.xxx% if any - if (false !== strpos($output, '%')) { - $output = preg_replace('/%(?:extra|context)\..+?%/', '', $output); - } - - return $output; - } - - public function formatBatch(array $records): string - { - $message = ''; - foreach ($records as $record) { - $message .= $this->format($record); - } - - return $message; - } - - public function stringify($value): string - { - return $this->replaceNewlines($this->convertToString($value)); - } - - /** - * @suppress PhanParamSignatureMismatch - */ - protected function normalizeException(\Throwable $e, int $depth = 0): string - { - $str = $this->formatException($e); - - if ($previous = $e->getPrevious()) { - do { - $str .= "\n[previous exception] " . $this->formatException($previous); - } while ($previous = $previous->getPrevious()); - } - - return $str; - } - - protected function convertToString($data): string - { - if (null === $data || is_bool($data)) { - return var_export($data, true); - } - - if (is_scalar($data)) { - return (string) $data; - } - - return $this->toJson($data, true); - } - - protected function replaceNewlines(string $str): string - { - if ($this->allowInlineLineBreaks) { - if (0 === strpos($str, '{')) { - return str_replace(array('\r', '\n'), array("\r", "\n"), $str); - } - - return $str; - } - - return str_replace(["\r\n", "\r", "\n"], ' ', $str); - } - - private function formatException(\Throwable $e): string - { - $str = '[object] (' . Utils::getClass($e) . '(code: ' . $e->getCode(); - if ($e instanceof \SoapFault) { - if (isset($e->faultcode)) { - $str .= ' faultcode: ' . $e->faultcode; - } - - if (isset($e->faultactor)) { - $str .= ' faultactor: ' . $e->faultactor; - } - - if (isset($e->detail) && (is_string($e->detail) || is_object($e->detail) || is_array($e->detail))) { - $str .= ' detail: ' . (is_string($e->detail) ? $e->detail : reset($e->detail)); - } - } - $str .= '): ' . $e->getMessage() . ' at ' . $e->getFile() . ':' . $e->getLine() . ')'; - - if ($this->includeStacktraces) { - $str .= "\n[stacktrace]\n" . $e->getTraceAsString() . "\n"; - } - - return $str; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Formatter/LogglyFormatter.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Formatter/LogglyFormatter.php deleted file mode 100644 index 29841aa3..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Formatter/LogglyFormatter.php +++ /dev/null @@ -1,45 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Formatter; - -/** - * Encodes message information into JSON in a format compatible with Loggly. - * - * @author Adam Pancutt - */ -class LogglyFormatter extends JsonFormatter -{ - /** - * Overrides the default batch mode to new lines for compatibility with the - * Loggly bulk API. - */ - public function __construct(int $batchMode = self::BATCH_MODE_NEWLINES, bool $appendNewline = false) - { - parent::__construct($batchMode, $appendNewline); - } - - /** - * Appends the 'timestamp' parameter for indexing by Loggly. - * - * @see https://www.loggly.com/docs/automated-parsing/#json - * @see \Monolog\Formatter\JsonFormatter::format() - */ - public function format(array $record): string - { - if (isset($record["datetime"]) && ($record["datetime"] instanceof \DateTimeInterface)) { - $record["timestamp"] = $record["datetime"]->format("Y-m-d\TH:i:s.uO"); - unset($record["datetime"]); - } - - return parent::format($record); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Formatter/LogmaticFormatter.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Formatter/LogmaticFormatter.php deleted file mode 100644 index b0451aba..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Formatter/LogmaticFormatter.php +++ /dev/null @@ -1,66 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Formatter; - -/** - * Encodes message information into JSON in a format compatible with Logmatic. - * - * @author Julien Breux - */ -class LogmaticFormatter extends JsonFormatter -{ - protected const MARKERS = ["sourcecode", "php"]; - - /** - * @var string - */ - protected $hostname = ''; - - /** - * @var string - */ - protected $appname = ''; - - public function setHostname(string $hostname): self - { - $this->hostname = $hostname; - - return $this; - } - - public function setAppname(string $appname): self - { - $this->appname = $appname; - - return $this; - } - - /** - * Appends the 'hostname' and 'appname' parameter for indexing by Logmatic. - * - * @see http://doc.logmatic.io/docs/basics-to-send-data - * @see \Monolog\Formatter\JsonFormatter::format() - */ - public function format(array $record): string - { - if (!empty($this->hostname)) { - $record["hostname"] = $this->hostname; - } - if (!empty($this->appname)) { - $record["appname"] = $this->appname; - } - - $record["@marker"] = static::MARKERS; - - return parent::format($record); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Formatter/LogstashFormatter.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Formatter/LogstashFormatter.php deleted file mode 100644 index 563d97db..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Formatter/LogstashFormatter.php +++ /dev/null @@ -1,101 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Formatter; - -/** - * Serializes a log message to Logstash Event Format - * - * @see https://www.elastic.co/products/logstash - * @see https://github.com/elastic/logstash/blob/master/logstash-core/src/main/java/org/logstash/Event.java - * - * @author Tim Mower - */ -class LogstashFormatter extends NormalizerFormatter -{ - /** - * @var string the name of the system for the Logstash log message, used to fill the @source field - */ - protected $systemName; - - /** - * @var string an application name for the Logstash log message, used to fill the @type field - */ - protected $applicationName; - - /** - * @var string the key for 'extra' fields from the Monolog record - */ - protected $extraKey; - - /** - * @var string the key for 'context' fields from the Monolog record - */ - protected $contextKey; - - /** - * @param string $applicationName The application that sends the data, used as the "type" field of logstash - * @param string|null $systemName The system/machine name, used as the "source" field of logstash, defaults to the hostname of the machine - * @param string $extraKey The key for extra keys inside logstash "fields", defaults to extra - * @param string $contextKey The key for context keys inside logstash "fields", defaults to context - */ - public function __construct(string $applicationName, ?string $systemName = null, string $extraKey = 'extra', string $contextKey = 'context') - { - // logstash requires a ISO 8601 format date with optional millisecond precision. - parent::__construct('Y-m-d\TH:i:s.uP'); - - $this->systemName = $systemName === null ? gethostname() : $systemName; - $this->applicationName = $applicationName; - $this->extraKey = $extraKey; - $this->contextKey = $contextKey; - } - - /** - * {@inheritdoc} - */ - public function format(array $record): string - { - $record = parent::format($record); - - if (empty($record['datetime'])) { - $record['datetime'] = gmdate('c'); - } - $message = [ - '@timestamp' => $record['datetime'], - '@version' => 1, - 'host' => $this->systemName, - ]; - if (isset($record['message'])) { - $message['message'] = $record['message']; - } - if (isset($record['channel'])) { - $message['type'] = $record['channel']; - $message['channel'] = $record['channel']; - } - if (isset($record['level_name'])) { - $message['level'] = $record['level_name']; - } - if (isset($record['level'])) { - $message['monolog_level'] = $record['level']; - } - if ($this->applicationName) { - $message['type'] = $this->applicationName; - } - if (!empty($record['extra'])) { - $message[$this->extraKey] = $record['extra']; - } - if (!empty($record['context'])) { - $message[$this->contextKey] = $record['context']; - } - - return $this->toJson($message) . "\n"; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Formatter/MongoDBFormatter.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Formatter/MongoDBFormatter.php deleted file mode 100644 index 9d41a505..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Formatter/MongoDBFormatter.php +++ /dev/null @@ -1,141 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Formatter; - -use MongoDB\BSON\UTCDateTime; -use Monolog\Utils; - -/** - * Formats a record for use with the MongoDBHandler. - * - * @author Florian Plattner - */ -class MongoDBFormatter implements FormatterInterface -{ - private $exceptionTraceAsString; - private $maxNestingLevel; - private $isLegacyMongoExt; - - /** - * @param int $maxNestingLevel 0 means infinite nesting, the $record itself is level 1, $record['context'] is 2 - * @param bool $exceptionTraceAsString set to false to log exception traces as a sub documents instead of strings - */ - public function __construct(int $maxNestingLevel = 3, bool $exceptionTraceAsString = true) - { - $this->maxNestingLevel = max($maxNestingLevel, 0); - $this->exceptionTraceAsString = $exceptionTraceAsString; - - $this->isLegacyMongoExt = version_compare(phpversion('mongodb'), '1.1.9', '<='); - } - - /** - * {@inheritDoc} - */ - public function format(array $record): array - { - return $this->formatArray($record); - } - - /** - * {@inheritDoc} - */ - public function formatBatch(array $records): array - { - foreach ($records as $key => $record) { - $records[$key] = $this->format($record); - } - - return $records; - } - - /** - * @return array|string Array except when max nesting level is reached then a string "[...]" - */ - protected function formatArray(array $record, int $nestingLevel = 0) - { - if ($this->maxNestingLevel == 0 || $nestingLevel <= $this->maxNestingLevel) { - foreach ($record as $name => $value) { - if ($value instanceof \DateTimeInterface) { - $record[$name] = $this->formatDate($value, $nestingLevel + 1); - } elseif ($value instanceof \Throwable) { - $record[$name] = $this->formatException($value, $nestingLevel + 1); - } elseif (is_array($value)) { - $record[$name] = $this->formatArray($value, $nestingLevel + 1); - } elseif (is_object($value)) { - $record[$name] = $this->formatObject($value, $nestingLevel + 1); - } - } - } else { - $record = '[...]'; - } - - return $record; - } - - protected function formatObject($value, int $nestingLevel) - { - $objectVars = get_object_vars($value); - $objectVars['class'] = Utils::getClass($value); - - return $this->formatArray($objectVars, $nestingLevel); - } - - protected function formatException(\Throwable $exception, int $nestingLevel) - { - $formattedException = [ - 'class' => Utils::getClass($exception), - 'message' => $exception->getMessage(), - 'code' => (int) $exception->getCode(), - 'file' => $exception->getFile() . ':' . $exception->getLine(), - ]; - - if ($this->exceptionTraceAsString === true) { - $formattedException['trace'] = $exception->getTraceAsString(); - } else { - $formattedException['trace'] = $exception->getTrace(); - } - - return $this->formatArray($formattedException, $nestingLevel); - } - - protected function formatDate(\DateTimeInterface $value, int $nestingLevel): UTCDateTime - { - if ($this->isLegacyMongoExt) { - return $this->legacyGetMongoDbDateTime($value); - } - - return $this->getMongoDbDateTime($value); - } - - private function getMongoDbDateTime(\DateTimeInterface $value): UTCDateTime - { - return new UTCDateTime((int) (string) floor($value->format('U.u') * 1000)); - } - - /** - * This is needed to support MongoDB Driver v1.19 and below - * - * See https://github.com/mongodb/mongo-php-driver/issues/426 - * - * It can probably be removed in 2.1 or later once MongoDB's 1.2 is released and widely adopted - */ - private function legacyGetMongoDbDateTime(\DateTimeInterface $value): UTCDateTime - { - $milliseconds = floor($value->format('U.u') * 1000); - - $milliseconds = (PHP_INT_SIZE == 8) //64-bit OS? - ? (int) $milliseconds - : (string) $milliseconds; - - return new UTCDateTime($milliseconds); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Formatter/NormalizerFormatter.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Formatter/NormalizerFormatter.php deleted file mode 100644 index fe75881b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Formatter/NormalizerFormatter.php +++ /dev/null @@ -1,256 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Formatter; - -use Monolog\DateTimeImmutable; -use Monolog\Utils; -use Throwable; - -/** - * Normalizes incoming records to remove objects/resources so it's easier to dump to various targets - * - * @author Jordi Boggiano - */ -class NormalizerFormatter implements FormatterInterface -{ - public const SIMPLE_DATE = "Y-m-d\TH:i:sP"; - - protected $dateFormat; - protected $maxNormalizeDepth = 9; - protected $maxNormalizeItemCount = 1000; - - private $jsonEncodeOptions = Utils::DEFAULT_JSON_FLAGS; - - /** - * @param string|null $dateFormat The format of the timestamp: one supported by DateTime::format - */ - public function __construct(?string $dateFormat = null) - { - $this->dateFormat = null === $dateFormat ? static::SIMPLE_DATE : $dateFormat; - if (!function_exists('json_encode')) { - throw new \RuntimeException('PHP\'s json extension is required to use Monolog\'s NormalizerFormatter'); - } - } - - /** - * {@inheritdoc} - */ - public function format(array $record) - { - return $this->normalize($record); - } - - /** - * {@inheritdoc} - */ - public function formatBatch(array $records) - { - foreach ($records as $key => $record) { - $records[$key] = $this->format($record); - } - - return $records; - } - - /** - * The maximum number of normalization levels to go through - */ - public function getMaxNormalizeDepth(): int - { - return $this->maxNormalizeDepth; - } - - public function setMaxNormalizeDepth(int $maxNormalizeDepth): self - { - $this->maxNormalizeDepth = $maxNormalizeDepth; - - return $this; - } - - /** - * The maximum number of items to normalize per level - */ - public function getMaxNormalizeItemCount(): int - { - return $this->maxNormalizeItemCount; - } - - public function setMaxNormalizeItemCount(int $maxNormalizeItemCount): self - { - $this->maxNormalizeItemCount = $maxNormalizeItemCount; - - return $this; - } - - /** - * Enables `json_encode` pretty print. - */ - public function setJsonPrettyPrint(bool $enable): self - { - if ($enable) { - $this->jsonEncodeOptions |= JSON_PRETTY_PRINT; - } else { - $this->jsonEncodeOptions ^= JSON_PRETTY_PRINT; - } - - return $this; - } - - /** - * @param mixed $data - * @return int|bool|string|null|array - */ - protected function normalize($data, int $depth = 0) - { - if ($depth > $this->maxNormalizeDepth) { - return 'Over ' . $this->maxNormalizeDepth . ' levels deep, aborting normalization'; - } - - if (null === $data || is_scalar($data)) { - if (is_float($data)) { - if (is_infinite($data)) { - return ($data > 0 ? '' : '-') . 'INF'; - } - if (is_nan($data)) { - return 'NaN'; - } - } - - return $data; - } - - if (is_array($data)) { - $normalized = []; - - $count = 1; - foreach ($data as $key => $value) { - if ($count++ > $this->maxNormalizeItemCount) { - $normalized['...'] = 'Over ' . $this->maxNormalizeItemCount . ' items ('.count($data).' total), aborting normalization'; - break; - } - - $normalized[$key] = $this->normalize($value, $depth + 1); - } - - return $normalized; - } - - if ($data instanceof \DateTimeInterface) { - return $this->formatDate($data); - } - - if (is_object($data)) { - if ($data instanceof Throwable) { - return $this->normalizeException($data, $depth); - } - - if ($data instanceof \JsonSerializable) { - $value = $data->jsonSerialize(); - } elseif (method_exists($data, '__toString')) { - $value = $data->__toString(); - } else { - // the rest is normalized by json encoding and decoding it - $encoded = $this->toJson($data, true); - if ($encoded === false) { - $value = 'JSON_ERROR'; - } else { - $value = json_decode($encoded, true); - } - } - - return [Utils::getClass($data) => $value]; - } - - if (is_resource($data)) { - return sprintf('[resource(%s)]', get_resource_type($data)); - } - - return '[unknown('.gettype($data).')]'; - } - - /** - * @return array - */ - protected function normalizeException(Throwable $e, int $depth = 0) - { - if ($e instanceof \JsonSerializable) { - return (array) $e->jsonSerialize(); - } - - $data = [ - 'class' => Utils::getClass($e), - 'message' => $e->getMessage(), - 'code' => (int) $e->getCode(), - 'file' => $e->getFile().':'.$e->getLine(), - ]; - - if ($e instanceof \SoapFault) { - if (isset($e->faultcode)) { - $data['faultcode'] = $e->faultcode; - } - - if (isset($e->faultactor)) { - $data['faultactor'] = $e->faultactor; - } - - if (isset($e->detail) && (is_string($e->detail) || is_object($e->detail) || is_array($e->detail))) { - $data['detail'] = is_string($e->detail) ? $e->detail : reset($e->detail); - } - } - - $trace = $e->getTrace(); - foreach ($trace as $frame) { - if (isset($frame['file'])) { - $data['trace'][] = $frame['file'].':'.$frame['line']; - } - } - - if ($previous = $e->getPrevious()) { - $data['previous'] = $this->normalizeException($previous, $depth + 1); - } - - return $data; - } - - /** - * Return the JSON representation of a value - * - * @param mixed $data - * @throws \RuntimeException if encoding fails and errors are not ignored - * @return string if encoding fails and ignoreErrors is true 'null' is returned - */ - protected function toJson($data, bool $ignoreErrors = false): string - { - return Utils::jsonEncode($data, $this->jsonEncodeOptions, $ignoreErrors); - } - - protected function formatDate(\DateTimeInterface $date) - { - // in case the date format isn't custom then we defer to the custom DateTimeImmutable - // formatting logic, which will pick the right format based on whether useMicroseconds is on - if ($this->dateFormat === self::SIMPLE_DATE && $date instanceof DateTimeImmutable) { - return (string) $date; - } - - return $date->format($this->dateFormat); - } - - protected function addJsonEncodeOption($option) - { - $this->jsonEncodeOptions |= $option; - } - - protected function removeJsonEncodeOption($option) - { - $this->jsonEncodeOptions ^= $option; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Formatter/ScalarFormatter.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Formatter/ScalarFormatter.php deleted file mode 100644 index 8d560e77..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Formatter/ScalarFormatter.php +++ /dev/null @@ -1,48 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Formatter; - -/** - * Formats data into an associative array of scalar values. - * Objects and arrays will be JSON encoded. - * - * @author Andrew Lawson - */ -class ScalarFormatter extends NormalizerFormatter -{ - /** - * {@inheritdoc} - */ - public function format(array $record): array - { - foreach ($record as $key => $value) { - $record[$key] = $this->normalizeValue($value); - } - - return $record; - } - - /** - * @param mixed $value - * @return mixed - */ - protected function normalizeValue($value) - { - $normalized = $this->normalize($value); - - if (is_array($normalized) || is_object($normalized)) { - return $this->toJson($normalized, true); - } - - return $normalized; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Formatter/WildfireFormatter.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Formatter/WildfireFormatter.php deleted file mode 100644 index 2d96739e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Formatter/WildfireFormatter.php +++ /dev/null @@ -1,118 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Formatter; - -use Monolog\Logger; - -/** - * Serializes a log message according to Wildfire's header requirements - * - * @author Eric Clemmons (@ericclemmons) - * @author Christophe Coevoet - * @author Kirill chEbba Chebunin - */ -class WildfireFormatter extends NormalizerFormatter -{ - /** - * Translates Monolog log levels to Wildfire levels. - */ - private $logLevels = [ - Logger::DEBUG => 'LOG', - Logger::INFO => 'INFO', - Logger::NOTICE => 'INFO', - Logger::WARNING => 'WARN', - Logger::ERROR => 'ERROR', - Logger::CRITICAL => 'ERROR', - Logger::ALERT => 'ERROR', - Logger::EMERGENCY => 'ERROR', - ]; - - /** - * {@inheritdoc} - */ - public function format(array $record): string - { - // Retrieve the line and file if set and remove them from the formatted extra - $file = $line = ''; - if (isset($record['extra']['file'])) { - $file = $record['extra']['file']; - unset($record['extra']['file']); - } - if (isset($record['extra']['line'])) { - $line = $record['extra']['line']; - unset($record['extra']['line']); - } - - $record = $this->normalize($record); - $message = ['message' => $record['message']]; - $handleError = false; - if ($record['context']) { - $message['context'] = $record['context']; - $handleError = true; - } - if ($record['extra']) { - $message['extra'] = $record['extra']; - $handleError = true; - } - if (count($message) === 1) { - $message = reset($message); - } - - if (isset($record['context']['table'])) { - $type = 'TABLE'; - $label = $record['channel'] .': '. $record['message']; - $message = $record['context']['table']; - } else { - $type = $this->logLevels[$record['level']]; - $label = $record['channel']; - } - - // Create JSON object describing the appearance of the message in the console - $json = $this->toJson([ - [ - 'Type' => $type, - 'File' => $file, - 'Line' => $line, - 'Label' => $label, - ], - $message, - ], $handleError); - - // The message itself is a serialization of the above JSON object + it's length - return sprintf( - '%d|%s|', - strlen($json), - $json - ); - } - - /** - * {@inheritdoc} - */ - public function formatBatch(array $records) - { - throw new \BadMethodCallException('Batch formatting does not make sense for the WildfireFormatter'); - } - - /** - * {@inheritdoc} - * @suppress PhanTypeMismatchReturn - */ - protected function normalize($data, int $depth = 0) - { - if (is_object($data) && !$data instanceof \DateTimeInterface) { - return $data; - } - - return parent::normalize($data, $depth); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/AbstractHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/AbstractHandler.php deleted file mode 100644 index c9405bfb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/AbstractHandler.php +++ /dev/null @@ -1,96 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use Monolog\Logger; -use Monolog\ResettableInterface; - -/** - * Base Handler class providing basic level/bubble support - * - * @author Jordi Boggiano - */ -abstract class AbstractHandler extends Handler implements ResettableInterface -{ - protected $level = Logger::DEBUG; - protected $bubble = true; - - /** - * @param int|string $level The minimum logging level at which this handler will be triggered - * @param bool $bubble Whether the messages that are handled can bubble up the stack or not - */ - public function __construct($level = Logger::DEBUG, bool $bubble = true) - { - $this->setLevel($level); - $this->bubble = $bubble; - } - - /** - * {@inheritdoc} - */ - public function isHandling(array $record): bool - { - return $record['level'] >= $this->level; - } - - /** - * Sets minimum logging level at which this handler will be triggered. - * - * @param int|string $level Level or level name - * @return self - */ - public function setLevel($level): self - { - $this->level = Logger::toMonologLevel($level); - - return $this; - } - - /** - * Gets minimum logging level at which this handler will be triggered. - * - * @return int - */ - public function getLevel(): int - { - return $this->level; - } - - /** - * Sets the bubbling behavior. - * - * @param bool $bubble true means that this handler allows bubbling. - * false means that bubbling is not permitted. - * @return self - */ - public function setBubble(bool $bubble): self - { - $this->bubble = $bubble; - - return $this; - } - - /** - * Gets the bubbling behavior. - * - * @return bool true means that this handler allows bubbling. - * false means that bubbling is not permitted. - */ - public function getBubble(): bool - { - return $this->bubble; - } - - public function reset() - { - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php deleted file mode 100644 index 1100260c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -/** - * Base Handler class providing the Handler structure, including processors and formatters - * - * Classes extending it should (in most cases) only implement write($record) - * - * @author Jordi Boggiano - * @author Christophe Coevoet - */ -abstract class AbstractProcessingHandler extends AbstractHandler implements ProcessableHandlerInterface, FormattableHandlerInterface -{ - use ProcessableHandlerTrait; - use FormattableHandlerTrait; - - /** - * {@inheritdoc} - */ - public function handle(array $record): bool - { - if (!$this->isHandling($record)) { - return false; - } - - if ($this->processors) { - $record = $this->processRecord($record); - } - - $record['formatted'] = $this->getFormatter()->format($record); - - $this->write($record); - - return false === $this->bubble; - } - - /** - * Writes the record down to the log of the implementing handler - */ - abstract protected function write(array $record): void; - - public function reset() - { - parent::reset(); - - $this->resetProcessors(); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/AbstractSyslogHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/AbstractSyslogHandler.php deleted file mode 100644 index b7f249d7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/AbstractSyslogHandler.php +++ /dev/null @@ -1,102 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use Monolog\Logger; -use Monolog\Formatter\FormatterInterface; -use Monolog\Formatter\LineFormatter; - -/** - * Common syslog functionality - */ -abstract class AbstractSyslogHandler extends AbstractProcessingHandler -{ - protected $facility; - - /** - * Translates Monolog log levels to syslog log priorities. - */ - protected $logLevels = [ - Logger::DEBUG => LOG_DEBUG, - Logger::INFO => LOG_INFO, - Logger::NOTICE => LOG_NOTICE, - Logger::WARNING => LOG_WARNING, - Logger::ERROR => LOG_ERR, - Logger::CRITICAL => LOG_CRIT, - Logger::ALERT => LOG_ALERT, - Logger::EMERGENCY => LOG_EMERG, - ]; - - /** - * List of valid log facility names. - */ - protected $facilities = [ - 'auth' => LOG_AUTH, - 'authpriv' => LOG_AUTHPRIV, - 'cron' => LOG_CRON, - 'daemon' => LOG_DAEMON, - 'kern' => LOG_KERN, - 'lpr' => LOG_LPR, - 'mail' => LOG_MAIL, - 'news' => LOG_NEWS, - 'syslog' => LOG_SYSLOG, - 'user' => LOG_USER, - 'uucp' => LOG_UUCP, - ]; - - /** - * @param string|int $facility Either one of the names of the keys in $this->facilities, or a LOG_* facility constant - * @param string|int $level The minimum logging level at which this handler will be triggered - * @param bool $bubble Whether the messages that are handled can bubble up the stack or not - */ - public function __construct($facility = LOG_USER, $level = Logger::DEBUG, bool $bubble = true) - { - parent::__construct($level, $bubble); - - if (!defined('PHP_WINDOWS_VERSION_BUILD')) { - $this->facilities['local0'] = LOG_LOCAL0; - $this->facilities['local1'] = LOG_LOCAL1; - $this->facilities['local2'] = LOG_LOCAL2; - $this->facilities['local3'] = LOG_LOCAL3; - $this->facilities['local4'] = LOG_LOCAL4; - $this->facilities['local5'] = LOG_LOCAL5; - $this->facilities['local6'] = LOG_LOCAL6; - $this->facilities['local7'] = LOG_LOCAL7; - } else { - $this->facilities['local0'] = 128; // LOG_LOCAL0 - $this->facilities['local1'] = 136; // LOG_LOCAL1 - $this->facilities['local2'] = 144; // LOG_LOCAL2 - $this->facilities['local3'] = 152; // LOG_LOCAL3 - $this->facilities['local4'] = 160; // LOG_LOCAL4 - $this->facilities['local5'] = 168; // LOG_LOCAL5 - $this->facilities['local6'] = 176; // LOG_LOCAL6 - $this->facilities['local7'] = 184; // LOG_LOCAL7 - } - - // convert textual description of facility to syslog constant - if (is_string($facility) && array_key_exists(strtolower($facility), $this->facilities)) { - $facility = $this->facilities[strtolower($facility)]; - } elseif (!in_array($facility, array_values($this->facilities), true)) { - throw new \UnexpectedValueException('Unknown facility value "'.$facility.'" given'); - } - - $this->facility = $facility; - } - - /** - * {@inheritdoc} - */ - protected function getDefaultFormatter(): FormatterInterface - { - return new LineFormatter('%channel%.%level_name%: %message% %context% %extra%'); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/AmqpHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/AmqpHandler.php deleted file mode 100644 index 33fffccd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/AmqpHandler.php +++ /dev/null @@ -1,137 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use Monolog\Logger; -use Monolog\Formatter\FormatterInterface; -use Monolog\Formatter\JsonFormatter; -use PhpAmqpLib\Message\AMQPMessage; -use PhpAmqpLib\Channel\AMQPChannel; -use AMQPExchange; - -class AmqpHandler extends AbstractProcessingHandler -{ - /** - * @var AMQPExchange|AMQPChannel $exchange - */ - protected $exchange; - - /** - * @var string - */ - protected $exchangeName; - - /** - * @param AMQPExchange|AMQPChannel $exchange AMQPExchange (php AMQP ext) or PHP AMQP lib channel, ready for use - * @param string|null $exchangeName Optional exchange name, for AMQPChannel (PhpAmqpLib) only - * @param string|int $level The minimum logging level at which this handler will be triggered - * @param bool $bubble Whether the messages that are handled can bubble up the stack or not - */ - public function __construct($exchange, ?string $exchangeName = null, $level = Logger::DEBUG, bool $bubble = true) - { - if ($exchange instanceof AMQPChannel) { - $this->exchangeName = (string) $exchangeName; - } elseif (!$exchange instanceof AMQPExchange) { - throw new \InvalidArgumentException('PhpAmqpLib\Channel\AMQPChannel or AMQPExchange instance required'); - } elseif ($exchangeName) { - @trigger_error('The $exchangeName parameter can only be passed when using PhpAmqpLib, if using an AMQPExchange instance configure it beforehand', E_USER_DEPRECATED); - } - $this->exchange = $exchange; - - parent::__construct($level, $bubble); - } - - /** - * {@inheritDoc} - */ - protected function write(array $record): void - { - $data = $record["formatted"]; - $routingKey = $this->getRoutingKey($record); - - if ($this->exchange instanceof AMQPExchange) { - $this->exchange->publish( - $data, - $routingKey, - 0, - [ - 'delivery_mode' => 2, - 'content_type' => 'application/json', - ] - ); - } else { - $this->exchange->basic_publish( - $this->createAmqpMessage($data), - $this->exchangeName, - $routingKey - ); - } - } - - /** - * {@inheritDoc} - */ - public function handleBatch(array $records): void - { - if ($this->exchange instanceof AMQPExchange) { - parent::handleBatch($records); - - return; - } - - foreach ($records as $record) { - if (!$this->isHandling($record)) { - continue; - } - - $record = $this->processRecord($record); - $data = $this->getFormatter()->format($record); - - $this->exchange->batch_basic_publish( - $this->createAmqpMessage($data), - $this->exchangeName, - $this->getRoutingKey($record) - ); - } - - $this->exchange->publish_batch(); - } - - /** - * Gets the routing key for the AMQP exchange - */ - protected function getRoutingKey(array $record): string - { - $routingKey = sprintf('%s.%s', $record['level_name'], $record['channel']); - - return strtolower($routingKey); - } - - private function createAmqpMessage(string $data): AMQPMessage - { - return new AMQPMessage( - $data, - [ - 'delivery_mode' => 2, - 'content_type' => 'application/json', - ] - ); - } - - /** - * {@inheritDoc} - */ - protected function getDefaultFormatter(): FormatterInterface - { - return new JsonFormatter(JsonFormatter::BATCH_MODE_JSON, false); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/BrowserConsoleHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/BrowserConsoleHandler.php deleted file mode 100644 index 310591c7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/BrowserConsoleHandler.php +++ /dev/null @@ -1,243 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use Monolog\Formatter\LineFormatter; -use Monolog\Formatter\FormatterInterface; -use Monolog\Utils; - -/** - * Handler sending logs to browser's javascript console with no browser extension required - * - * @author Olivier Poitrey - */ -class BrowserConsoleHandler extends AbstractProcessingHandler -{ - protected static $initialized = false; - protected static $records = []; - - /** - * {@inheritDoc} - * - * Formatted output may contain some formatting markers to be transferred to `console.log` using the %c format. - * - * Example of formatted string: - * - * You can do [[blue text]]{color: blue} or [[green background]]{background-color: green; color: white} - */ - protected function getDefaultFormatter(): FormatterInterface - { - return new LineFormatter('[[%channel%]]{macro: autolabel} [[%level_name%]]{font-weight: bold} %message%'); - } - - /** - * {@inheritDoc} - */ - protected function write(array $record): void - { - // Accumulate records - static::$records[] = $record; - - // Register shutdown handler if not already done - if (!static::$initialized) { - static::$initialized = true; - $this->registerShutdownFunction(); - } - } - - /** - * Convert records to javascript console commands and send it to the browser. - * This method is automatically called on PHP shutdown if output is HTML or Javascript. - */ - public static function send(): void - { - $format = static::getResponseFormat(); - if ($format === 'unknown') { - return; - } - - if (count(static::$records)) { - if ($format === 'html') { - static::writeOutput(''); - } elseif ($format === 'js') { - static::writeOutput(static::generateScript()); - } - static::resetStatic(); - } - } - - public function close(): void - { - self::resetStatic(); - } - - public function reset() - { - parent::reset(); - - self::resetStatic(); - } - - /** - * Forget all logged records - */ - public static function resetStatic(): void - { - static::$records = []; - } - - /** - * Wrapper for register_shutdown_function to allow overriding - */ - protected function registerShutdownFunction(): void - { - if (PHP_SAPI !== 'cli') { - register_shutdown_function(['Monolog\Handler\BrowserConsoleHandler', 'send']); - } - } - - /** - * Wrapper for echo to allow overriding - */ - protected static function writeOutput(string $str): void - { - echo $str; - } - - /** - * Checks the format of the response - * - * If Content-Type is set to application/javascript or text/javascript -> js - * If Content-Type is set to text/html, or is unset -> html - * If Content-Type is anything else -> unknown - * - * @return string One of 'js', 'html' or 'unknown' - */ - protected static function getResponseFormat(): string - { - // Check content type - foreach (headers_list() as $header) { - if (stripos($header, 'content-type:') === 0) { - // This handler only works with HTML and javascript outputs - // text/javascript is obsolete in favour of application/javascript, but still used - if (stripos($header, 'application/javascript') !== false || stripos($header, 'text/javascript') !== false) { - return 'js'; - } - if (stripos($header, 'text/html') === false) { - return 'unknown'; - } - break; - } - } - - return 'html'; - } - - private static function generateScript(): string - { - $script = []; - foreach (static::$records as $record) { - $context = static::dump('Context', $record['context']); - $extra = static::dump('Extra', $record['extra']); - - if (empty($context) && empty($extra)) { - $script[] = static::call_array('log', static::handleStyles($record['formatted'])); - } else { - $script = array_merge( - $script, - [static::call_array('groupCollapsed', static::handleStyles($record['formatted']))], - $context, - $extra, - [static::call('groupEnd')] - ); - } - } - - return "(function (c) {if (c && c.groupCollapsed) {\n" . implode("\n", $script) . "\n}})(console);"; - } - - private static function handleStyles(string $formatted): array - { - $args = []; - $format = '%c' . $formatted; - preg_match_all('/\[\[(.*?)\]\]\{([^}]*)\}/s', $format, $matches, PREG_OFFSET_CAPTURE | PREG_SET_ORDER); - - foreach (array_reverse($matches) as $match) { - $args[] = '"font-weight: normal"'; - $args[] = static::quote(static::handleCustomStyles($match[2][0], $match[1][0])); - - $pos = $match[0][1]; - $format = Utils::substr($format, 0, $pos) . '%c' . $match[1][0] . '%c' . Utils::substr($format, $pos + strlen($match[0][0])); - } - - $args[] = static::quote('font-weight: normal'); - $args[] = static::quote($format); - - return array_reverse($args); - } - - private static function handleCustomStyles(string $style, string $string): string - { - static $colors = ['blue', 'green', 'red', 'magenta', 'orange', 'black', 'grey']; - static $labels = []; - - return preg_replace_callback('/macro\s*:(.*?)(?:;|$)/', function (array $m) use ($string, &$colors, &$labels) { - if (trim($m[1]) === 'autolabel') { - // Format the string as a label with consistent auto assigned background color - if (!isset($labels[$string])) { - $labels[$string] = $colors[count($labels) % count($colors)]; - } - $color = $labels[$string]; - - return "background-color: $color; color: white; border-radius: 3px; padding: 0 2px 0 2px"; - } - - return $m[1]; - }, $style); - } - - private static function dump(string $title, array $dict): array - { - $script = []; - $dict = array_filter($dict); - if (empty($dict)) { - return $script; - } - $script[] = static::call('log', static::quote('%c%s'), static::quote('font-weight: bold'), static::quote($title)); - foreach ($dict as $key => $value) { - $value = json_encode($value); - if (empty($value)) { - $value = static::quote(''); - } - $script[] = static::call('log', static::quote('%s: %o'), static::quote((string) $key), $value); - } - - return $script; - } - - private static function quote(string $arg): string - { - return '"' . addcslashes($arg, "\"\n\\") . '"'; - } - - private static function call(...$args): string - { - $method = array_shift($args); - - return static::call_array($method, $args); - } - - private static function call_array(string $method, array $args): string - { - return 'c.' . $method . '(' . implode(', ', $args) . ');'; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/BufferHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/BufferHandler.php deleted file mode 100644 index 7a590284..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/BufferHandler.php +++ /dev/null @@ -1,152 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use Monolog\Logger; -use Monolog\ResettableInterface; -use Monolog\Formatter\FormatterInterface; - -/** - * Buffers all records until closing the handler and then pass them as batch. - * - * This is useful for a MailHandler to send only one mail per request instead of - * sending one per log message. - * - * @author Christophe Coevoet - */ -class BufferHandler extends AbstractHandler implements ProcessableHandlerInterface, FormattableHandlerInterface -{ - use ProcessableHandlerTrait; - - protected $handler; - protected $bufferSize = 0; - protected $bufferLimit; - protected $flushOnOverflow; - protected $buffer = []; - protected $initialized = false; - - /** - * @param HandlerInterface $handler Handler. - * @param int $bufferLimit How many entries should be buffered at most, beyond that the oldest items are removed from the buffer. - * @param string|int $level The minimum logging level at which this handler will be triggered - * @param bool $bubble Whether the messages that are handled can bubble up the stack or not - * @param bool $flushOnOverflow If true, the buffer is flushed when the max size has been reached, by default oldest entries are discarded - */ - public function __construct(HandlerInterface $handler, int $bufferLimit = 0, $level = Logger::DEBUG, bool $bubble = true, bool $flushOnOverflow = false) - { - parent::__construct($level, $bubble); - $this->handler = $handler; - $this->bufferLimit = $bufferLimit; - $this->flushOnOverflow = $flushOnOverflow; - } - - /** - * {@inheritdoc} - */ - public function handle(array $record): bool - { - if ($record['level'] < $this->level) { - return false; - } - - if (!$this->initialized) { - // __destructor() doesn't get called on Fatal errors - register_shutdown_function([$this, 'close']); - $this->initialized = true; - } - - if ($this->bufferLimit > 0 && $this->bufferSize === $this->bufferLimit) { - if ($this->flushOnOverflow) { - $this->flush(); - } else { - array_shift($this->buffer); - $this->bufferSize--; - } - } - - if ($this->processors) { - $record = $this->processRecord($record); - } - - $this->buffer[] = $record; - $this->bufferSize++; - - return false === $this->bubble; - } - - public function flush(): void - { - if ($this->bufferSize === 0) { - return; - } - - $this->handler->handleBatch($this->buffer); - $this->clear(); - } - - public function __destruct() - { - // suppress the parent behavior since we already have register_shutdown_function() - // to call close(), and the reference contained there will prevent this from being - // GC'd until the end of the request - } - - /** - * {@inheritdoc} - */ - public function close(): void - { - $this->flush(); - - $this->handler->close(); - } - - /** - * Clears the buffer without flushing any messages down to the wrapped handler. - */ - public function clear(): void - { - $this->bufferSize = 0; - $this->buffer = []; - } - - public function reset() - { - $this->flush(); - - parent::reset(); - - $this->resetProcessors(); - - if ($this->handler instanceof ResettableInterface) { - $this->handler->reset(); - } - } - - /** - * {@inheritdoc} - */ - public function setFormatter(FormatterInterface $formatter): HandlerInterface - { - $this->handler->setFormatter($formatter); - - return $this; - } - - /** - * {@inheritdoc} - */ - public function getFormatter(): FormatterInterface - { - return $this->handler->getFormatter(); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/ChromePHPHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/ChromePHPHandler.php deleted file mode 100644 index ef93f660..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/ChromePHPHandler.php +++ /dev/null @@ -1,193 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use Monolog\Formatter\ChromePHPFormatter; -use Monolog\Formatter\FormatterInterface; -use Monolog\Logger; -use Monolog\Utils; - -/** - * Handler sending logs to the ChromePHP extension (http://www.chromephp.com/) - * - * This also works out of the box with Firefox 43+ - * - * @author Christophe Coevoet - */ -class ChromePHPHandler extends AbstractProcessingHandler -{ - use WebRequestRecognizerTrait; - - /** - * Version of the extension - */ - protected const VERSION = '4.0'; - - /** - * Header name - */ - protected const HEADER_NAME = 'X-ChromeLogger-Data'; - - /** - * Regular expression to detect supported browsers (matches any Chrome, or Firefox 43+) - */ - protected const USER_AGENT_REGEX = '{\b(?:Chrome/\d+(?:\.\d+)*|HeadlessChrome|Firefox/(?:4[3-9]|[5-9]\d|\d{3,})(?:\.\d)*)\b}'; - - protected static $initialized = false; - - /** - * Tracks whether we sent too much data - * - * Chrome limits the headers to 4KB, so when we sent 3KB we stop sending - * - * @var bool - */ - protected static $overflowed = false; - - protected static $json = [ - 'version' => self::VERSION, - 'columns' => ['label', 'log', 'backtrace', 'type'], - 'rows' => [], - ]; - - protected static $sendHeaders = true; - - /** - * @param string|int $level The minimum logging level at which this handler will be triggered - * @param bool $bubble Whether the messages that are handled can bubble up the stack or not - */ - public function __construct($level = Logger::DEBUG, bool $bubble = true) - { - parent::__construct($level, $bubble); - if (!function_exists('json_encode')) { - throw new \RuntimeException('PHP\'s json extension is required to use Monolog\'s ChromePHPHandler'); - } - } - - /** - * {@inheritdoc} - */ - public function handleBatch(array $records): void - { - if (!$this->isWebRequest()) { - return; - } - - $messages = []; - - foreach ($records as $record) { - if ($record['level'] < $this->level) { - continue; - } - $messages[] = $this->processRecord($record); - } - - if (!empty($messages)) { - $messages = $this->getFormatter()->formatBatch($messages); - self::$json['rows'] = array_merge(self::$json['rows'], $messages); - $this->send(); - } - } - - /** - * {@inheritDoc} - */ - protected function getDefaultFormatter(): FormatterInterface - { - return new ChromePHPFormatter(); - } - - /** - * Creates & sends header for a record - * - * @see sendHeader() - * @see send() - */ - protected function write(array $record): void - { - if (!$this->isWebRequest()) { - return; - } - - self::$json['rows'][] = $record['formatted']; - - $this->send(); - } - - /** - * Sends the log header - * - * @see sendHeader() - */ - protected function send(): void - { - if (self::$overflowed || !self::$sendHeaders) { - return; - } - - if (!self::$initialized) { - self::$initialized = true; - - self::$sendHeaders = $this->headersAccepted(); - if (!self::$sendHeaders) { - return; - } - - self::$json['request_uri'] = $_SERVER['REQUEST_URI'] ?? ''; - } - - $json = Utils::jsonEncode(self::$json, null, true); - $data = base64_encode(utf8_encode($json)); - if (strlen($data) > 3 * 1024) { - self::$overflowed = true; - - $record = [ - 'message' => 'Incomplete logs, chrome header size limit reached', - 'context' => [], - 'level' => Logger::WARNING, - 'level_name' => Logger::getLevelName(Logger::WARNING), - 'channel' => 'monolog', - 'datetime' => new \DateTimeImmutable(), - 'extra' => [], - ]; - self::$json['rows'][count(self::$json['rows']) - 1] = $this->getFormatter()->format($record); - $json = Utils::jsonEncode(self::$json, null, true); - $data = base64_encode(utf8_encode($json)); - } - - if (trim($data) !== '') { - $this->sendHeader(static::HEADER_NAME, $data); - } - } - - /** - * Send header string to the client - */ - protected function sendHeader(string $header, string $content): void - { - if (!headers_sent() && self::$sendHeaders) { - header(sprintf('%s: %s', $header, $content)); - } - } - - /** - * Verifies if the headers are accepted by the current user agent - */ - protected function headersAccepted(): bool - { - if (empty($_SERVER['HTTP_USER_AGENT'])) { - return false; - } - - return preg_match(static::USER_AGENT_REGEX, $_SERVER['HTTP_USER_AGENT']) === 1; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/CouchDBHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/CouchDBHandler.php deleted file mode 100644 index b2d1e189..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/CouchDBHandler.php +++ /dev/null @@ -1,73 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use Monolog\Formatter\FormatterInterface; -use Monolog\Formatter\JsonFormatter; -use Monolog\Logger; - -/** - * CouchDB handler - * - * @author Markus Bachmann - */ -class CouchDBHandler extends AbstractProcessingHandler -{ - private $options; - - public function __construct(array $options = [], $level = Logger::DEBUG, bool $bubble = true) - { - $this->options = array_merge([ - 'host' => 'localhost', - 'port' => 5984, - 'dbname' => 'logger', - 'username' => null, - 'password' => null, - ], $options); - - parent::__construct($level, $bubble); - } - - /** - * {@inheritDoc} - */ - protected function write(array $record): void - { - $basicAuth = null; - if ($this->options['username']) { - $basicAuth = sprintf('%s:%s@', $this->options['username'], $this->options['password']); - } - - $url = 'http://'.$basicAuth.$this->options['host'].':'.$this->options['port'].'/'.$this->options['dbname']; - $context = stream_context_create([ - 'http' => [ - 'method' => 'POST', - 'content' => $record['formatted'], - 'ignore_errors' => true, - 'max_redirects' => 0, - 'header' => 'Content-type: application/json', - ], - ]); - - if (false === @file_get_contents($url, false, $context)) { - throw new \RuntimeException(sprintf('Could not connect to %s', $url)); - } - } - - /** - * {@inheritDoc} - */ - protected function getDefaultFormatter(): FormatterInterface - { - return new JsonFormatter(JsonFormatter::BATCH_MODE_JSON, false); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/CubeHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/CubeHandler.php deleted file mode 100644 index 00d38e99..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/CubeHandler.php +++ /dev/null @@ -1,155 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use Monolog\Logger; -use Monolog\Utils; - -/** - * Logs to Cube. - * - * @link http://square.github.com/cube/ - * @author Wan Chen - */ -class CubeHandler extends AbstractProcessingHandler -{ - private $udpConnection; - private $httpConnection; - private $scheme; - private $host; - private $port; - private $acceptedSchemes = ['http', 'udp']; - - /** - * Create a Cube handler - * - * @throws \UnexpectedValueException when given url is not a valid url. - * A valid url must consist of three parts : protocol://host:port - * Only valid protocols used by Cube are http and udp - */ - public function __construct(string $url, $level = Logger::DEBUG, bool $bubble = true) - { - $urlInfo = parse_url($url); - - if (!isset($urlInfo['scheme'], $urlInfo['host'], $urlInfo['port'])) { - throw new \UnexpectedValueException('URL "'.$url.'" is not valid'); - } - - if (!in_array($urlInfo['scheme'], $this->acceptedSchemes)) { - throw new \UnexpectedValueException( - 'Invalid protocol (' . $urlInfo['scheme'] . ').' - . ' Valid options are ' . implode(', ', $this->acceptedSchemes) - ); - } - - $this->scheme = $urlInfo['scheme']; - $this->host = $urlInfo['host']; - $this->port = $urlInfo['port']; - - parent::__construct($level, $bubble); - } - - /** - * Establish a connection to an UDP socket - * - * @throws \LogicException when unable to connect to the socket - * @throws MissingExtensionException when there is no socket extension - */ - protected function connectUdp(): void - { - if (!extension_loaded('sockets')) { - throw new MissingExtensionException('The sockets extension is required to use udp URLs with the CubeHandler'); - } - - $this->udpConnection = socket_create(AF_INET, SOCK_DGRAM, 0); - if (!$this->udpConnection) { - throw new \LogicException('Unable to create a socket'); - } - - if (!socket_connect($this->udpConnection, $this->host, $this->port)) { - throw new \LogicException('Unable to connect to the socket at ' . $this->host . ':' . $this->port); - } - } - - /** - * Establish a connection to an http server - * - * @throws \LogicException when unable to connect to the socket - * @throws MissingExtensionException when no curl extension - */ - protected function connectHttp(): void - { - if (!extension_loaded('curl')) { - throw new MissingExtensionException('The curl extension is required to use http URLs with the CubeHandler'); - } - - $this->httpConnection = curl_init('http://'.$this->host.':'.$this->port.'/1.0/event/put'); - - if (!$this->httpConnection) { - throw new \LogicException('Unable to connect to ' . $this->host . ':' . $this->port); - } - - curl_setopt($this->httpConnection, CURLOPT_CUSTOMREQUEST, "POST"); - curl_setopt($this->httpConnection, CURLOPT_RETURNTRANSFER, true); - } - - /** - * {@inheritdoc} - */ - protected function write(array $record): void - { - $date = $record['datetime']; - - $data = ['time' => $date->format('Y-m-d\TH:i:s.uO')]; - unset($record['datetime']); - - if (isset($record['context']['type'])) { - $data['type'] = $record['context']['type']; - unset($record['context']['type']); - } else { - $data['type'] = $record['channel']; - } - - $data['data'] = $record['context']; - $data['data']['level'] = $record['level']; - - if ($this->scheme === 'http') { - $this->writeHttp(Utils::jsonEncode($data)); - } else { - $this->writeUdp(Utils::jsonEncode($data)); - } - } - - private function writeUdp(string $data): void - { - if (!$this->udpConnection) { - $this->connectUdp(); - } - - socket_send($this->udpConnection, $data, strlen($data), 0); - } - - private function writeHttp(string $data): void - { - if (!$this->httpConnection) { - $this->connectHttp(); - } - - curl_setopt($this->httpConnection, CURLOPT_POSTFIELDS, '['.$data.']'); - curl_setopt($this->httpConnection, CURLOPT_HTTPHEADER, [ - 'Content-Type: application/json', - 'Content-Length: ' . strlen('['.$data.']'), - ]); - - Curl\Util::execute($this->httpConnection, 5, false); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/Curl/Util.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/Curl/Util.php deleted file mode 100644 index b0aeac9c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/Curl/Util.php +++ /dev/null @@ -1,68 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler\Curl; - -/** - * This class is marked as internal and it is not under the BC promise of the package. - * - * @internal - */ -final class Util -{ - private static $retriableErrorCodes = [ - CURLE_COULDNT_RESOLVE_HOST, - CURLE_COULDNT_CONNECT, - CURLE_HTTP_NOT_FOUND, - CURLE_READ_ERROR, - CURLE_OPERATION_TIMEOUTED, - CURLE_HTTP_POST_ERROR, - CURLE_SSL_CONNECT_ERROR, - ]; - - /** - * Executes a CURL request with optional retries and exception on failure - * - * @param resource $ch curl handler - * @param int $retries - * @param bool $closeAfterDone - * @return bool|string @see curl_exec - */ - public static function execute($ch, int $retries = 5, bool $closeAfterDone = true) - { - while ($retries--) { - $curlResponse = curl_exec($ch); - if ($curlResponse === false) { - $curlErrno = curl_errno($ch); - - if (false === in_array($curlErrno, self::$retriableErrorCodes, true) || !$retries) { - $curlError = curl_error($ch); - - if ($closeAfterDone) { - curl_close($ch); - } - - throw new \RuntimeException(sprintf('Curl error (code %d): %s', $curlErrno, $curlError)); - } - - continue; - } - - if ($closeAfterDone) { - curl_close($ch); - } - - return $curlResponse; - } - - return false; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/DeduplicationHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/DeduplicationHandler.php deleted file mode 100644 index 864c29ae..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/DeduplicationHandler.php +++ /dev/null @@ -1,173 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use Monolog\Logger; - -/** - * Simple handler wrapper that deduplicates log records across multiple requests - * - * It also includes the BufferHandler functionality and will buffer - * all messages until the end of the request or flush() is called. - * - * This works by storing all log records' messages above $deduplicationLevel - * to the file specified by $deduplicationStore. When further logs come in at the end of the - * request (or when flush() is called), all those above $deduplicationLevel are checked - * against the existing stored logs. If they match and the timestamps in the stored log is - * not older than $time seconds, the new log record is discarded. If no log record is new, the - * whole data set is discarded. - * - * This is mainly useful in combination with Mail handlers or things like Slack or HipChat handlers - * that send messages to people, to avoid spamming with the same message over and over in case of - * a major component failure like a database server being down which makes all requests fail in the - * same way. - * - * @author Jordi Boggiano - */ -class DeduplicationHandler extends BufferHandler -{ - /** - * @var string - */ - protected $deduplicationStore; - - /** - * @var int - */ - protected $deduplicationLevel; - - /** - * @var int - */ - protected $time; - - /** - * @var bool - */ - private $gc = false; - - /** - * @param HandlerInterface $handler Handler. - * @param string $deduplicationStore The file/path where the deduplication log should be kept - * @param string|int $deduplicationLevel The minimum logging level for log records to be looked at for deduplication purposes - * @param int $time The period (in seconds) during which duplicate entries should be suppressed after a given log is sent through - * @param bool $bubble Whether the messages that are handled can bubble up the stack or not - */ - public function __construct(HandlerInterface $handler, ?string $deduplicationStore = null, $deduplicationLevel = Logger::ERROR, int $time = 60, bool $bubble = true) - { - parent::__construct($handler, 0, Logger::DEBUG, $bubble, false); - - $this->deduplicationStore = $deduplicationStore === null ? sys_get_temp_dir() . '/monolog-dedup-' . substr(md5(__FILE__), 0, 20) .'.log' : $deduplicationStore; - $this->deduplicationLevel = Logger::toMonologLevel($deduplicationLevel); - $this->time = $time; - } - - public function flush(): void - { - if ($this->bufferSize === 0) { - return; - } - - $passthru = null; - - foreach ($this->buffer as $record) { - if ($record['level'] >= $this->deduplicationLevel) { - $passthru = $passthru || !$this->isDuplicate($record); - if ($passthru) { - $this->appendRecord($record); - } - } - } - - // default of null is valid as well as if no record matches duplicationLevel we just pass through - if ($passthru === true || $passthru === null) { - $this->handler->handleBatch($this->buffer); - } - - $this->clear(); - - if ($this->gc) { - $this->collectLogs(); - } - } - - private function isDuplicate(array $record): bool - { - if (!file_exists($this->deduplicationStore)) { - return false; - } - - $store = file($this->deduplicationStore, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES); - if (!is_array($store)) { - return false; - } - - $yesterday = time() - 86400; - $timestampValidity = $record['datetime']->getTimestamp() - $this->time; - $expectedMessage = preg_replace('{[\r\n].*}', '', $record['message']); - - for ($i = count($store) - 1; $i >= 0; $i--) { - list($timestamp, $level, $message) = explode(':', $store[$i], 3); - - if ($level === $record['level_name'] && $message === $expectedMessage && $timestamp > $timestampValidity) { - return true; - } - - if ($timestamp < $yesterday) { - $this->gc = true; - } - } - - return false; - } - - private function collectLogs(): void - { - if (!file_exists($this->deduplicationStore)) { - return; - } - - $handle = fopen($this->deduplicationStore, 'rw+'); - - if (!$handle) { - throw new \RuntimeException('Failed to open file for reading and writing: ' . $this->deduplicationStore); - } - - flock($handle, LOCK_EX); - $validLogs = []; - - $timestampValidity = time() - $this->time; - - while (!feof($handle)) { - $log = fgets($handle); - if ($log && substr($log, 0, 10) >= $timestampValidity) { - $validLogs[] = $log; - } - } - - ftruncate($handle, 0); - rewind($handle); - foreach ($validLogs as $log) { - fwrite($handle, $log); - } - - flock($handle, LOCK_UN); - fclose($handle); - - $this->gc = false; - } - - private function appendRecord(array $record): void - { - file_put_contents($this->deduplicationStore, $record['datetime']->getTimestamp() . ':' . $record['level_name'] . ':' . preg_replace('{[\r\n].*}', '', $record['message']) . "\n", FILE_APPEND); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/DoctrineCouchDBHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/DoctrineCouchDBHandler.php deleted file mode 100644 index b80490d1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/DoctrineCouchDBHandler.php +++ /dev/null @@ -1,46 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use Monolog\Logger; -use Monolog\Formatter\NormalizerFormatter; -use Monolog\Formatter\FormatterInterface; -use Doctrine\CouchDB\CouchDBClient; - -/** - * CouchDB handler for Doctrine CouchDB ODM - * - * @author Markus Bachmann - */ -class DoctrineCouchDBHandler extends AbstractProcessingHandler -{ - private $client; - - public function __construct(CouchDBClient $client, $level = Logger::DEBUG, bool $bubble = true) - { - $this->client = $client; - parent::__construct($level, $bubble); - } - - /** - * {@inheritDoc} - */ - protected function write(array $record): void - { - $this->client->postDocument($record['formatted']); - } - - protected function getDefaultFormatter(): FormatterInterface - { - return new NormalizerFormatter; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/DynamoDbHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/DynamoDbHandler.php deleted file mode 100644 index 21d74310..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/DynamoDbHandler.php +++ /dev/null @@ -1,101 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use Aws\Sdk; -use Aws\DynamoDb\DynamoDbClient; -use Monolog\Formatter\FormatterInterface; -use Aws\DynamoDb\Marshaler; -use Monolog\Formatter\ScalarFormatter; -use Monolog\Logger; - -/** - * Amazon DynamoDB handler (http://aws.amazon.com/dynamodb/) - * - * @link https://github.com/aws/aws-sdk-php/ - * @author Andrew Lawson - */ -class DynamoDbHandler extends AbstractProcessingHandler -{ - public const DATE_FORMAT = 'Y-m-d\TH:i:s.uO'; - - /** - * @var DynamoDbClient - */ - protected $client; - - /** - * @var string - */ - protected $table; - - /** - * @var int - */ - protected $version; - - /** - * @var Marshaler - */ - protected $marshaler; - - /** - * @param int|string $level - */ - public function __construct(DynamoDbClient $client, string $table, $level = Logger::DEBUG, bool $bubble = true) - { - if (defined('Aws\Sdk::VERSION') && version_compare(Sdk::VERSION, '3.0', '>=')) { - $this->version = 3; - $this->marshaler = new Marshaler; - } else { - $this->version = 2; - } - - $this->client = $client; - $this->table = $table; - - parent::__construct($level, $bubble); - } - - /** - * {@inheritdoc} - */ - protected function write(array $record): void - { - $filtered = $this->filterEmptyFields($record['formatted']); - if ($this->version === 3) { - $formatted = $this->marshaler->marshalItem($filtered); - } else { - $formatted = $this->client->formatAttributes($filtered); - } - - $this->client->putItem([ - 'TableName' => $this->table, - 'Item' => $formatted, - ]); - } - - protected function filterEmptyFields(array $record): array - { - return array_filter($record, function ($value) { - return !empty($value) || false === $value || 0 === $value; - }); - } - - /** - * {@inheritdoc} - */ - protected function getDefaultFormatter(): FormatterInterface - { - return new ScalarFormatter(self::DATE_FORMAT); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/ElasticaHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/ElasticaHandler.php deleted file mode 100644 index 78a8d1ea..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/ElasticaHandler.php +++ /dev/null @@ -1,124 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use Monolog\Formatter\FormatterInterface; -use Monolog\Formatter\ElasticaFormatter; -use Monolog\Logger; -use Elastica\Client; -use Elastica\Exception\ExceptionInterface; - -/** - * Elastic Search handler - * - * Usage example: - * - * $client = new \Elastica\Client(); - * $options = array( - * 'index' => 'elastic_index_name', - * 'type' => 'elastic_doc_type', - * ); - * $handler = new ElasticaHandler($client, $options); - * $log = new Logger('application'); - * $log->pushHandler($handler); - * - * @author Jelle Vink - */ -class ElasticaHandler extends AbstractProcessingHandler -{ - /** - * @var Client - */ - protected $client; - - /** - * @var array Handler config options - */ - protected $options = []; - - /** - * @param Client $client Elastica Client object - * @param array $options Handler configuration - * @param int|string $level The minimum logging level at which this handler will be triggered - * @param bool $bubble Whether the messages that are handled can bubble up the stack or not - */ - public function __construct(Client $client, array $options = [], $level = Logger::DEBUG, bool $bubble = true) - { - parent::__construct($level, $bubble); - $this->client = $client; - $this->options = array_merge( - [ - 'index' => 'monolog', // Elastic index name - 'type' => 'record', // Elastic document type - 'ignore_error' => false, // Suppress Elastica exceptions - ], - $options - ); - } - - /** - * {@inheritDoc} - */ - protected function write(array $record): void - { - $this->bulkSend([$record['formatted']]); - } - - /** - * {@inheritdoc} - */ - public function setFormatter(FormatterInterface $formatter): HandlerInterface - { - if ($formatter instanceof ElasticaFormatter) { - return parent::setFormatter($formatter); - } - - throw new \InvalidArgumentException('ElasticaHandler is only compatible with ElasticaFormatter'); - } - - public function getOptions(): array - { - return $this->options; - } - - /** - * {@inheritDoc} - */ - protected function getDefaultFormatter(): FormatterInterface - { - return new ElasticaFormatter($this->options['index'], $this->options['type']); - } - - /** - * {@inheritdoc} - */ - public function handleBatch(array $records): void - { - $documents = $this->getFormatter()->formatBatch($records); - $this->bulkSend($documents); - } - - /** - * Use Elasticsearch bulk API to send list of documents - * @throws \RuntimeException - */ - protected function bulkSend(array $documents): void - { - try { - $this->client->addDocuments($documents); - } catch (ExceptionInterface $e) { - if (!$this->options['ignore_error']) { - throw new \RuntimeException("Error sending messages to Elasticsearch", 0, $e); - } - } - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/ElasticsearchHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/ElasticsearchHandler.php deleted file mode 100644 index 7a7ef059..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/ElasticsearchHandler.php +++ /dev/null @@ -1,189 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use Throwable; -use RuntimeException; -use Monolog\Logger; -use Monolog\Formatter\FormatterInterface; -use Monolog\Formatter\ElasticsearchFormatter; -use InvalidArgumentException; -use Elasticsearch\Common\Exceptions\RuntimeException as ElasticsearchRuntimeException; -use Elasticsearch\Client; - -/** - * Elasticsearch handler - * - * @link https://www.elastic.co/guide/en/elasticsearch/client/php-api/current/index.html - * - * Simple usage example: - * - * $client = \Elasticsearch\ClientBuilder::create() - * ->setHosts($hosts) - * ->build(); - * - * $options = array( - * 'index' => 'elastic_index_name', - * 'type' => 'elastic_doc_type', - * ); - * $handler = new ElasticsearchHandler($client, $options); - * $log = new Logger('application'); - * $log->pushHandler($handler); - * - * @author Avtandil Kikabidze - */ -class ElasticsearchHandler extends AbstractProcessingHandler -{ - /** - * @var Client - */ - protected $client; - - /** - * @var array Handler config options - */ - protected $options = []; - - /** - * @param Client $client Elasticsearch Client object - * @param array $options Handler configuration - * @param string|int $level The minimum logging level at which this handler will be triggered - * @param bool $bubble Whether the messages that are handled can bubble up the stack or not - */ - public function __construct(Client $client, array $options = [], $level = Logger::DEBUG, bool $bubble = true) - { - parent::__construct($level, $bubble); - $this->client = $client; - $this->options = array_merge( - [ - 'index' => 'monolog', // Elastic index name - 'type' => '_doc', // Elastic document type - 'ignore_error' => false, // Suppress Elasticsearch exceptions - ], - $options - ); - } - - /** - * {@inheritDoc} - */ - protected function write(array $record): void - { - $this->bulkSend([$record['formatted']]); - } - - /** - * {@inheritdoc} - */ - public function setFormatter(FormatterInterface $formatter): HandlerInterface - { - if ($formatter instanceof ElasticsearchFormatter) { - return parent::setFormatter($formatter); - } - - throw new InvalidArgumentException('ElasticsearchHandler is only compatible with ElasticsearchFormatter'); - } - - /** - * Getter options - * - * @return array - */ - public function getOptions(): array - { - return $this->options; - } - - /** - * {@inheritDoc} - */ - protected function getDefaultFormatter(): FormatterInterface - { - return new ElasticsearchFormatter($this->options['index'], $this->options['type']); - } - - /** - * {@inheritdoc} - */ - public function handleBatch(array $records): void - { - $documents = $this->getFormatter()->formatBatch($records); - $this->bulkSend($documents); - } - - /** - * Use Elasticsearch bulk API to send list of documents - * - * @param array $records - * @throws \RuntimeException - */ - protected function bulkSend(array $records): void - { - try { - $params = [ - 'body' => [], - ]; - - foreach ($records as $record) { - $params['body'][] = [ - 'index' => [ - '_index' => $record['_index'], - '_type' => $record['_type'], - ], - ]; - unset($record['_index'], $record['_type']); - - $params['body'][] = $record; - } - - $responses = $this->client->bulk($params); - - if ($responses['errors'] === true) { - throw $this->createExceptionFromResponses($responses); - } - } catch (Throwable $e) { - if (! $this->options['ignore_error']) { - throw new RuntimeException('Error sending messages to Elasticsearch', 0, $e); - } - } - } - - /** - * Creates elasticsearch exception from responses array - * - * Only the first error is converted into an exception. - * - * @param array $responses returned by $this->client->bulk() - */ - protected function createExceptionFromResponses(array $responses): ElasticsearchRuntimeException - { - foreach ($responses['items'] ?? [] as $item) { - if (isset($item['index']['error'])) { - return $this->createExceptionFromError($item['index']['error']); - } - } - - return new ElasticsearchRuntimeException('Elasticsearch failed to index one or more records.'); - } - - /** - * Creates elasticsearch exception from error array - * - * @param array $error - */ - protected function createExceptionFromError(array $error): ElasticsearchRuntimeException - { - $previous = isset($error['caused_by']) ? $this->createExceptionFromError($error['caused_by']) : null; - - return new ElasticsearchRuntimeException($error['type'] . ': ' . $error['reason'], 0, $previous); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/ErrorLogHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/ErrorLogHandler.php deleted file mode 100644 index 737c0705..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/ErrorLogHandler.php +++ /dev/null @@ -1,86 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use Monolog\Formatter\LineFormatter; -use Monolog\Formatter\FormatterInterface; -use Monolog\Logger; - -/** - * Stores to PHP error_log() handler. - * - * @author Elan Ruusamäe - */ -class ErrorLogHandler extends AbstractProcessingHandler -{ - public const OPERATING_SYSTEM = 0; - public const SAPI = 4; - - protected $messageType; - protected $expandNewlines; - - /** - * @param int $messageType Says where the error should go. - * @param int|string $level The minimum logging level at which this handler will be triggered - * @param bool $bubble Whether the messages that are handled can bubble up the stack or not - * @param bool $expandNewlines If set to true, newlines in the message will be expanded to be take multiple log entries - */ - public function __construct(int $messageType = self::OPERATING_SYSTEM, $level = Logger::DEBUG, bool $bubble = true, bool $expandNewlines = false) - { - parent::__construct($level, $bubble); - - if (false === in_array($messageType, self::getAvailableTypes(), true)) { - $message = sprintf('The given message type "%s" is not supported', print_r($messageType, true)); - - throw new \InvalidArgumentException($message); - } - - $this->messageType = $messageType; - $this->expandNewlines = $expandNewlines; - } - - /** - * @return array With all available types - */ - public static function getAvailableTypes(): array - { - return [ - self::OPERATING_SYSTEM, - self::SAPI, - ]; - } - - /** - * {@inheritDoc} - */ - protected function getDefaultFormatter(): FormatterInterface - { - return new LineFormatter('[%datetime%] %channel%.%level_name%: %message% %context% %extra%'); - } - - /** - * {@inheritdoc} - */ - protected function write(array $record): void - { - if (!$this->expandNewlines) { - error_log((string) $record['formatted'], $this->messageType); - - return; - } - - $lines = preg_split('{[\r\n]+}', (string) $record['formatted']); - foreach ($lines as $line) { - error_log($line, $this->messageType); - } - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/FallbackGroupHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/FallbackGroupHandler.php deleted file mode 100644 index ea065748..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/FallbackGroupHandler.php +++ /dev/null @@ -1,59 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use Throwable; - -class FallbackGroupHandler extends GroupHandler -{ - /** - * {@inheritdoc} - */ - public function handle(array $record): bool - { - if ($this->processors) { - $record = $this->processRecord($record); - } - foreach ($this->handlers as $handler) { - try { - $handler->handle($record); - break; - } catch (Throwable $e) { - // What throwable? - } - } - return false === $this->bubble; - } - - /** - * {@inheritdoc} - */ - public function handleBatch(array $records): void - { - if ($this->processors) { - $processed = []; - foreach ($records as $record) { - $processed[] = $this->processRecord($record); - } - $records = $processed; - } - - foreach ($this->handlers as $handler) { - try { - $handler->handleBatch($records); - break; - } catch (Throwable $e) { - // What throwable? - } - } - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/FilterHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/FilterHandler.php deleted file mode 100644 index 77b45b99..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/FilterHandler.php +++ /dev/null @@ -1,177 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use Monolog\Logger; -use Monolog\ResettableInterface; -use Monolog\Formatter\FormatterInterface; - -/** - * Simple handler wrapper that filters records based on a list of levels - * - * It can be configured with an exact list of levels to allow, or a min/max level. - * - * @author Hennadiy Verkh - * @author Jordi Boggiano - */ -class FilterHandler extends Handler implements ProcessableHandlerInterface, ResettableInterface, FormattableHandlerInterface -{ - use ProcessableHandlerTrait; - - /** - * Handler or factory callable($record, $this) - * - * @var callable|\Monolog\Handler\HandlerInterface - */ - protected $handler; - - /** - * Minimum level for logs that are passed to handler - * - * @var int[] - */ - protected $acceptedLevels; - - /** - * Whether the messages that are handled can bubble up the stack or not - * - * @var bool - */ - protected $bubble; - - /** - * @param callable|HandlerInterface $handler Handler or factory callable($record|null, $filterHandler). - * @param int|array $minLevelOrList A list of levels to accept or a minimum level if maxLevel is provided - * @param int|string $maxLevel Maximum level to accept, only used if $minLevelOrList is not an array - * @param bool $bubble Whether the messages that are handled can bubble up the stack or not - */ - public function __construct($handler, $minLevelOrList = Logger::DEBUG, $maxLevel = Logger::EMERGENCY, bool $bubble = true) - { - $this->handler = $handler; - $this->bubble = $bubble; - $this->setAcceptedLevels($minLevelOrList, $maxLevel); - - if (!$this->handler instanceof HandlerInterface && !is_callable($this->handler)) { - throw new \RuntimeException("The given handler (".json_encode($this->handler).") is not a callable nor a Monolog\Handler\HandlerInterface object"); - } - } - - public function getAcceptedLevels(): array - { - return array_flip($this->acceptedLevels); - } - - /** - * @param int|string|array $minLevelOrList A list of levels to accept or a minimum level or level name if maxLevel is provided - * @param int|string $maxLevel Maximum level or level name to accept, only used if $minLevelOrList is not an array - */ - public function setAcceptedLevels($minLevelOrList = Logger::DEBUG, $maxLevel = Logger::EMERGENCY): self - { - if (is_array($minLevelOrList)) { - $acceptedLevels = array_map('Monolog\Logger::toMonologLevel', $minLevelOrList); - } else { - $minLevelOrList = Logger::toMonologLevel($minLevelOrList); - $maxLevel = Logger::toMonologLevel($maxLevel); - $acceptedLevels = array_values(array_filter(Logger::getLevels(), function ($level) use ($minLevelOrList, $maxLevel) { - return $level >= $minLevelOrList && $level <= $maxLevel; - })); - } - $this->acceptedLevels = array_flip($acceptedLevels); - - return $this; - } - - /** - * {@inheritdoc} - */ - public function isHandling(array $record): bool - { - return isset($this->acceptedLevels[$record['level']]); - } - - /** - * {@inheritdoc} - */ - public function handle(array $record): bool - { - if (!$this->isHandling($record)) { - return false; - } - - if ($this->processors) { - $record = $this->processRecord($record); - } - - $this->getHandler($record)->handle($record); - - return false === $this->bubble; - } - - /** - * {@inheritdoc} - */ - public function handleBatch(array $records): void - { - $filtered = []; - foreach ($records as $record) { - if ($this->isHandling($record)) { - $filtered[] = $record; - } - } - - if (count($filtered) > 0) { - $this->getHandler($filtered[count($filtered) - 1])->handleBatch($filtered); - } - } - - /** - * Return the nested handler - * - * If the handler was provided as a factory callable, this will trigger the handler's instantiation. - * - * @return HandlerInterface - */ - public function getHandler(array $record = null) - { - if (!$this->handler instanceof HandlerInterface) { - $this->handler = call_user_func($this->handler, $record, $this); - if (!$this->handler instanceof HandlerInterface) { - throw new \RuntimeException("The factory callable should return a HandlerInterface"); - } - } - - return $this->handler; - } - - /** - * {@inheritdoc} - */ - public function setFormatter(FormatterInterface $formatter): HandlerInterface - { - $this->getHandler()->setFormatter($formatter); - - return $this; - } - - /** - * {@inheritdoc} - */ - public function getFormatter(): FormatterInterface - { - return $this->getHandler()->getFormatter(); - } - - public function reset() - { - $this->resetProcessors(); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossed/ActivationStrategyInterface.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossed/ActivationStrategyInterface.php deleted file mode 100644 index 1ba99c73..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossed/ActivationStrategyInterface.php +++ /dev/null @@ -1,25 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler\FingersCrossed; - -/** - * Interface for activation strategies for the FingersCrossedHandler. - * - * @author Johannes M. Schmitt - */ -interface ActivationStrategyInterface -{ - /** - * Returns whether the given record activates the handler. - */ - public function isHandlerActivated(array $record): bool; -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossed/ChannelLevelActivationStrategy.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossed/ChannelLevelActivationStrategy.php deleted file mode 100644 index f98ecfac..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossed/ChannelLevelActivationStrategy.php +++ /dev/null @@ -1,66 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler\FingersCrossed; - -use Monolog\Logger; - -/** - * Channel and Error level based monolog activation strategy. Allows to trigger activation - * based on level per channel. e.g. trigger activation on level 'ERROR' by default, except - * for records of the 'sql' channel; those should trigger activation on level 'WARN'. - * - * Example: - * - * - * $activationStrategy = new ChannelLevelActivationStrategy( - * Logger::CRITICAL, - * array( - * 'request' => Logger::ALERT, - * 'sensitive' => Logger::ERROR, - * ) - * ); - * $handler = new FingersCrossedHandler(new StreamHandler('php://stderr'), $activationStrategy); - * - * - * @author Mike Meessen - */ -class ChannelLevelActivationStrategy implements ActivationStrategyInterface -{ - /** - * @var int - */ - private $defaultActionLevel; - - /** - * @var array - */ - private $channelToActionLevel; - - /** - * @param int|string $defaultActionLevel The default action level to be used if the record's category doesn't match any - * @param array $channelToActionLevel An array that maps channel names to action levels. - */ - public function __construct($defaultActionLevel, array $channelToActionLevel = []) - { - $this->defaultActionLevel = Logger::toMonologLevel($defaultActionLevel); - $this->channelToActionLevel = array_map('Monolog\Logger::toMonologLevel', $channelToActionLevel); - } - - public function isHandlerActivated(array $record): bool - { - if (isset($this->channelToActionLevel[$record['channel']])) { - return $record['level'] >= $this->channelToActionLevel[$record['channel']]; - } - - return $record['level'] >= $this->defaultActionLevel; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossed/ErrorLevelActivationStrategy.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossed/ErrorLevelActivationStrategy.php deleted file mode 100644 index 71601e40..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossed/ErrorLevelActivationStrategy.php +++ /dev/null @@ -1,40 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler\FingersCrossed; - -use Monolog\Logger; - -/** - * Error level based activation strategy. - * - * @author Johannes M. Schmitt - */ -class ErrorLevelActivationStrategy implements ActivationStrategyInterface -{ - /** - * @var int - */ - private $actionLevel; - - /** - * @param int|string $actionLevel Level or name or value - */ - public function __construct($actionLevel) - { - $this->actionLevel = Logger::toMonologLevel($actionLevel); - } - - public function isHandlerActivated(array $record): bool - { - return $record['level'] >= $this->actionLevel; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossedHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossedHandler.php deleted file mode 100644 index 3e529f50..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossedHandler.php +++ /dev/null @@ -1,215 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use Monolog\Handler\FingersCrossed\ErrorLevelActivationStrategy; -use Monolog\Handler\FingersCrossed\ActivationStrategyInterface; -use Monolog\Logger; -use Monolog\ResettableInterface; -use Monolog\Formatter\FormatterInterface; - -/** - * Buffers all records until a certain level is reached - * - * The advantage of this approach is that you don't get any clutter in your log files. - * Only requests which actually trigger an error (or whatever your actionLevel is) will be - * in the logs, but they will contain all records, not only those above the level threshold. - * - * You can then have a passthruLevel as well which means that at the end of the request, - * even if it did not get activated, it will still send through log records of e.g. at least a - * warning level. - * - * You can find the various activation strategies in the - * Monolog\Handler\FingersCrossed\ namespace. - * - * @author Jordi Boggiano - */ -class FingersCrossedHandler extends Handler implements ProcessableHandlerInterface, ResettableInterface, FormattableHandlerInterface -{ - use ProcessableHandlerTrait; - - protected $handler; - protected $activationStrategy; - protected $buffering = true; - protected $bufferSize; - protected $buffer = []; - protected $stopBuffering; - protected $passthruLevel; - protected $bubble; - - /** - * @param callable|HandlerInterface $handler Handler or factory callable($record|null, $fingersCrossedHandler). - * @param int|string|ActivationStrategyInterface $activationStrategy Strategy which determines when this handler takes action, or a level name/value at which the handler is activated - * @param int $bufferSize How many entries should be buffered at most, beyond that the oldest items are removed from the buffer. - * @param bool $bubble Whether the messages that are handled can bubble up the stack or not - * @param bool $stopBuffering Whether the handler should stop buffering after being triggered (default true) - * @param int|string $passthruLevel Minimum level to always flush to handler on close, even if strategy not triggered - */ - public function __construct($handler, $activationStrategy = null, int $bufferSize = 0, bool $bubble = true, bool $stopBuffering = true, $passthruLevel = null) - { - if (null === $activationStrategy) { - $activationStrategy = new ErrorLevelActivationStrategy(Logger::WARNING); - } - - // convert simple int activationStrategy to an object - if (!$activationStrategy instanceof ActivationStrategyInterface) { - $activationStrategy = new ErrorLevelActivationStrategy($activationStrategy); - } - - $this->handler = $handler; - $this->activationStrategy = $activationStrategy; - $this->bufferSize = $bufferSize; - $this->bubble = $bubble; - $this->stopBuffering = $stopBuffering; - - if ($passthruLevel !== null) { - $this->passthruLevel = Logger::toMonologLevel($passthruLevel); - } - - if (!$this->handler instanceof HandlerInterface && !is_callable($this->handler)) { - throw new \RuntimeException("The given handler (".json_encode($this->handler).") is not a callable nor a Monolog\Handler\HandlerInterface object"); - } - } - - /** - * {@inheritdoc} - */ - public function isHandling(array $record): bool - { - return true; - } - - /** - * Manually activate this logger regardless of the activation strategy - */ - public function activate(): void - { - if ($this->stopBuffering) { - $this->buffering = false; - } - - $this->getHandler(end($this->buffer) ?: null)->handleBatch($this->buffer); - $this->buffer = []; - } - - /** - * {@inheritdoc} - */ - public function handle(array $record): bool - { - if ($this->processors) { - $record = $this->processRecord($record); - } - - if ($this->buffering) { - $this->buffer[] = $record; - if ($this->bufferSize > 0 && count($this->buffer) > $this->bufferSize) { - array_shift($this->buffer); - } - if ($this->activationStrategy->isHandlerActivated($record)) { - $this->activate(); - } - } else { - $this->getHandler($record)->handle($record); - } - - return false === $this->bubble; - } - - /** - * {@inheritdoc} - */ - public function close(): void - { - $this->flushBuffer(); - - $this->handler->close(); - } - - public function reset() - { - $this->flushBuffer(); - - $this->resetProcessors(); - - if ($this->getHandler() instanceof ResettableInterface) { - $this->getHandler()->reset(); - } - } - - /** - * Clears the buffer without flushing any messages down to the wrapped handler. - * - * It also resets the handler to its initial buffering state. - */ - public function clear(): void - { - $this->buffer = []; - $this->reset(); - } - - /** - * Resets the state of the handler. Stops forwarding records to the wrapped handler. - */ - private function flushBuffer(): void - { - if (null !== $this->passthruLevel) { - $level = $this->passthruLevel; - $this->buffer = array_filter($this->buffer, function ($record) use ($level) { - return $record['level'] >= $level; - }); - if (count($this->buffer) > 0) { - $this->getHandler(end($this->buffer) ?: null)->handleBatch($this->buffer); - } - } - - $this->buffer = []; - $this->buffering = true; - } - - /** - * Return the nested handler - * - * If the handler was provided as a factory callable, this will trigger the handler's instantiation. - * - * @return HandlerInterface - */ - public function getHandler(array $record = null) - { - if (!$this->handler instanceof HandlerInterface) { - $this->handler = call_user_func($this->handler, $record, $this); - if (!$this->handler instanceof HandlerInterface) { - throw new \RuntimeException("The factory callable should return a HandlerInterface"); - } - } - - return $this->handler; - } - - /** - * {@inheritdoc} - */ - public function setFormatter(FormatterInterface $formatter): HandlerInterface - { - $this->getHandler()->setFormatter($formatter); - - return $this; - } - - /** - * {@inheritdoc} - */ - public function getFormatter(): FormatterInterface - { - return $this->getHandler()->getFormatter(); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/FirePHPHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/FirePHPHandler.php deleted file mode 100644 index c9638630..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/FirePHPHandler.php +++ /dev/null @@ -1,166 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use Monolog\Formatter\WildfireFormatter; -use Monolog\Formatter\FormatterInterface; - -/** - * Simple FirePHP Handler (http://www.firephp.org/), which uses the Wildfire protocol. - * - * @author Eric Clemmons (@ericclemmons) - */ -class FirePHPHandler extends AbstractProcessingHandler -{ - use WebRequestRecognizerTrait; - - /** - * WildFire JSON header message format - */ - protected const PROTOCOL_URI = 'http://meta.wildfirehq.org/Protocol/JsonStream/0.2'; - - /** - * FirePHP structure for parsing messages & their presentation - */ - protected const STRUCTURE_URI = 'http://meta.firephp.org/Wildfire/Structure/FirePHP/FirebugConsole/0.1'; - - /** - * Must reference a "known" plugin, otherwise headers won't display in FirePHP - */ - protected const PLUGIN_URI = 'http://meta.firephp.org/Wildfire/Plugin/FirePHP/Library-FirePHPCore/0.3'; - - /** - * Header prefix for Wildfire to recognize & parse headers - */ - protected const HEADER_PREFIX = 'X-Wf'; - - /** - * Whether or not Wildfire vendor-specific headers have been generated & sent yet - */ - protected static $initialized = false; - - /** - * Shared static message index between potentially multiple handlers - * @var int - */ - protected static $messageIndex = 1; - - protected static $sendHeaders = true; - - /** - * Base header creation function used by init headers & record headers - * - * @param array $meta Wildfire Plugin, Protocol & Structure Indexes - * @param string $message Log message - * @return array Complete header string ready for the client as key and message as value - */ - protected function createHeader(array $meta, string $message): array - { - $header = sprintf('%s-%s', static::HEADER_PREFIX, join('-', $meta)); - - return [$header => $message]; - } - - /** - * Creates message header from record - * - * @see createHeader() - */ - protected function createRecordHeader(array $record): array - { - // Wildfire is extensible to support multiple protocols & plugins in a single request, - // but we're not taking advantage of that (yet), so we're using "1" for simplicity's sake. - return $this->createHeader( - [1, 1, 1, self::$messageIndex++], - $record['formatted'] - ); - } - - /** - * {@inheritDoc} - */ - protected function getDefaultFormatter(): FormatterInterface - { - return new WildfireFormatter(); - } - - /** - * Wildfire initialization headers to enable message parsing - * - * @see createHeader() - * @see sendHeader() - */ - protected function getInitHeaders(): array - { - // Initial payload consists of required headers for Wildfire - return array_merge( - $this->createHeader(['Protocol', 1], static::PROTOCOL_URI), - $this->createHeader([1, 'Structure', 1], static::STRUCTURE_URI), - $this->createHeader([1, 'Plugin', 1], static::PLUGIN_URI) - ); - } - - /** - * Send header string to the client - */ - protected function sendHeader(string $header, string $content): void - { - if (!headers_sent() && self::$sendHeaders) { - header(sprintf('%s: %s', $header, $content)); - } - } - - /** - * Creates & sends header for a record, ensuring init headers have been sent prior - * - * @see sendHeader() - * @see sendInitHeaders() - * @param array $record - */ - protected function write(array $record): void - { - if (!self::$sendHeaders || !$this->isWebRequest()) { - return; - } - - // WildFire-specific headers must be sent prior to any messages - if (!self::$initialized) { - self::$initialized = true; - - self::$sendHeaders = $this->headersAccepted(); - if (!self::$sendHeaders) { - return; - } - - foreach ($this->getInitHeaders() as $header => $content) { - $this->sendHeader($header, $content); - } - } - - $header = $this->createRecordHeader($record); - if (trim(current($header)) !== '') { - $this->sendHeader(key($header), current($header)); - } - } - - /** - * Verifies if the headers are accepted by the current user agent - */ - protected function headersAccepted(): bool - { - if (!empty($_SERVER['HTTP_USER_AGENT']) && preg_match('{\bFirePHP/\d+\.\d+\b}', $_SERVER['HTTP_USER_AGENT'])) { - return true; - } - - return isset($_SERVER['HTTP_X_FIREPHP_VERSION']); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/FleepHookHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/FleepHookHandler.php deleted file mode 100644 index 5087009f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/FleepHookHandler.php +++ /dev/null @@ -1,116 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use Monolog\Formatter\FormatterInterface; -use Monolog\Formatter\LineFormatter; -use Monolog\Logger; - -/** - * Sends logs to Fleep.io using Webhook integrations - * - * You'll need a Fleep.io account to use this handler. - * - * @see https://fleep.io/integrations/webhooks/ Fleep Webhooks Documentation - * @author Ando Roots - */ -class FleepHookHandler extends SocketHandler -{ - protected const FLEEP_HOST = 'fleep.io'; - - protected const FLEEP_HOOK_URI = '/hook/'; - - /** - * @var string Webhook token (specifies the conversation where logs are sent) - */ - protected $token; - - /** - * Construct a new Fleep.io Handler. - * - * For instructions on how to create a new web hook in your conversations - * see https://fleep.io/integrations/webhooks/ - * - * @param string $token Webhook token - * @param string|int $level The minimum logging level at which this handler will be triggered - * @param bool $bubble Whether the messages that are handled can bubble up the stack or not - * @throws MissingExtensionException - */ - public function __construct(string $token, $level = Logger::DEBUG, bool $bubble = true) - { - if (!extension_loaded('openssl')) { - throw new MissingExtensionException('The OpenSSL PHP extension is required to use the FleepHookHandler'); - } - - $this->token = $token; - - $connectionString = 'ssl://' . static::FLEEP_HOST . ':443'; - parent::__construct($connectionString, $level, $bubble); - } - - /** - * Returns the default formatter to use with this handler - * - * Overloaded to remove empty context and extra arrays from the end of the log message. - * - * @return LineFormatter - */ - protected function getDefaultFormatter(): FormatterInterface - { - return new LineFormatter(null, null, true, true); - } - - /** - * Handles a log record - */ - public function write(array $record): void - { - parent::write($record); - $this->closeSocket(); - } - - /** - * {@inheritdoc} - */ - protected function generateDataStream(array $record): string - { - $content = $this->buildContent($record); - - return $this->buildHeader($content) . $content; - } - - /** - * Builds the header of the API Call - */ - private function buildHeader(string $content): string - { - $header = "POST " . static::FLEEP_HOOK_URI . $this->token . " HTTP/1.1\r\n"; - $header .= "Host: " . static::FLEEP_HOST . "\r\n"; - $header .= "Content-Type: application/x-www-form-urlencoded\r\n"; - $header .= "Content-Length: " . strlen($content) . "\r\n"; - $header .= "\r\n"; - - return $header; - } - - /** - * Builds the body of API call - */ - private function buildContent(array $record): string - { - $dataArray = [ - 'message' => $record['formatted'], - ]; - - return http_build_query($dataArray); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/FlowdockHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/FlowdockHandler.php deleted file mode 100644 index 062af418..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/FlowdockHandler.php +++ /dev/null @@ -1,116 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use Monolog\Logger; -use Monolog\Utils; -use Monolog\Formatter\FlowdockFormatter; -use Monolog\Formatter\FormatterInterface; - -/** - * Sends notifications through the Flowdock push API - * - * This must be configured with a FlowdockFormatter instance via setFormatter() - * - * Notes: - * API token - Flowdock API token - * - * @author Dominik Liebler - * @see https://www.flowdock.com/api/push - */ -class FlowdockHandler extends SocketHandler -{ - /** - * @var string - */ - protected $apiToken; - - /** - * @param string|int $level The minimum logging level at which this handler will be triggered - * @param bool $bubble Whether the messages that are handled can bubble up the stack or not - * - * @throws MissingExtensionException if OpenSSL is missing - */ - public function __construct(string $apiToken, $level = Logger::DEBUG, bool $bubble = true) - { - if (!extension_loaded('openssl')) { - throw new MissingExtensionException('The OpenSSL PHP extension is required to use the FlowdockHandler'); - } - - parent::__construct('ssl://api.flowdock.com:443', $level, $bubble); - $this->apiToken = $apiToken; - } - - /** - * {@inheritdoc} - */ - public function setFormatter(FormatterInterface $formatter): HandlerInterface - { - if (!$formatter instanceof FlowdockFormatter) { - throw new \InvalidArgumentException('The FlowdockHandler requires an instance of Monolog\Formatter\FlowdockFormatter to function correctly'); - } - - return parent::setFormatter($formatter); - } - - /** - * Gets the default formatter. - */ - protected function getDefaultFormatter(): FormatterInterface - { - throw new \InvalidArgumentException('The FlowdockHandler must be configured (via setFormatter) with an instance of Monolog\Formatter\FlowdockFormatter to function correctly'); - } - - /** - * {@inheritdoc} - * - * @param array $record - */ - protected function write(array $record): void - { - parent::write($record); - - $this->closeSocket(); - } - - /** - * {@inheritdoc} - */ - protected function generateDataStream(array $record): string - { - $content = $this->buildContent($record); - - return $this->buildHeader($content) . $content; - } - - /** - * Builds the body of API call - */ - private function buildContent(array $record): string - { - return Utils::jsonEncode($record['formatted']['flowdock']); - } - - /** - * Builds the header of the API Call - */ - private function buildHeader(string $content): string - { - $header = "POST /v1/messages/team_inbox/" . $this->apiToken . " HTTP/1.1\r\n"; - $header .= "Host: api.flowdock.com\r\n"; - $header .= "Content-Type: application/json\r\n"; - $header .= "Content-Length: " . strlen($content) . "\r\n"; - $header .= "\r\n"; - - return $header; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/FormattableHandlerInterface.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/FormattableHandlerInterface.php deleted file mode 100644 index fc1693cd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/FormattableHandlerInterface.php +++ /dev/null @@ -1,37 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use Monolog\Formatter\FormatterInterface; - -/** - * Interface to describe loggers that have a formatter - * - * @author Jordi Boggiano - */ -interface FormattableHandlerInterface -{ - /** - * Sets the formatter. - * - * @param FormatterInterface $formatter - * @return HandlerInterface self - */ - public function setFormatter(FormatterInterface $formatter): HandlerInterface; - - /** - * Gets the formatter. - * - * @return FormatterInterface - */ - public function getFormatter(): FormatterInterface; -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/FormattableHandlerTrait.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/FormattableHandlerTrait.php deleted file mode 100644 index 00140b4e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/FormattableHandlerTrait.php +++ /dev/null @@ -1,61 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use Monolog\Formatter\FormatterInterface; -use Monolog\Formatter\LineFormatter; - -/** - * Helper trait for implementing FormattableInterface - * - * @author Jordi Boggiano - */ -trait FormattableHandlerTrait -{ - /** - * @var FormatterInterface - */ - protected $formatter; - - /** - * {@inheritdoc} - * @suppress PhanTypeMismatchReturn - */ - public function setFormatter(FormatterInterface $formatter): HandlerInterface - { - $this->formatter = $formatter; - - return $this; - } - - /** - * {@inheritdoc} - */ - public function getFormatter(): FormatterInterface - { - if (!$this->formatter) { - $this->formatter = $this->getDefaultFormatter(); - } - - return $this->formatter; - } - - /** - * Gets the default formatter. - * - * Overwrite this if the LineFormatter is not a good default for your handler. - */ - protected function getDefaultFormatter(): FormatterInterface - { - return new LineFormatter(); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/GelfHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/GelfHandler.php deleted file mode 100644 index d6965fa7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/GelfHandler.php +++ /dev/null @@ -1,59 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use Gelf\PublisherInterface; -use Monolog\Logger; -use Monolog\Formatter\GelfMessageFormatter; -use Monolog\Formatter\FormatterInterface; - -/** - * Handler to send messages to a Graylog2 (http://www.graylog2.org) server - * - * @author Matt Lehner - * @author Benjamin Zikarsky - */ -class GelfHandler extends AbstractProcessingHandler -{ - /** - * @var PublisherInterface|null the publisher object that sends the message to the server - */ - protected $publisher; - - /** - * @param PublisherInterface $publisher a publisher object - * @param string|int $level The minimum logging level at which this handler will be triggered - * @param bool $bubble Whether the messages that are handled can bubble up the stack or not - */ - public function __construct(PublisherInterface $publisher, $level = Logger::DEBUG, bool $bubble = true) - { - parent::__construct($level, $bubble); - - $this->publisher = $publisher; - } - - /** - * {@inheritdoc} - */ - protected function write(array $record): void - { - $this->publisher->publish($record['formatted']); - } - - /** - * {@inheritDoc} - */ - protected function getDefaultFormatter(): FormatterInterface - { - return new GelfMessageFormatter(); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/GroupHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/GroupHandler.php deleted file mode 100644 index 51218568..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/GroupHandler.php +++ /dev/null @@ -1,124 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use Monolog\Formatter\FormatterInterface; -use Monolog\ResettableInterface; - -/** - * Forwards records to multiple handlers - * - * @author Lenar Lõhmus - */ -class GroupHandler extends Handler implements ProcessableHandlerInterface, ResettableInterface -{ - use ProcessableHandlerTrait; - - protected $handlers; - protected $bubble; - - /** - * @param HandlerInterface[] $handlers Array of Handlers. - * @param bool $bubble Whether the messages that are handled can bubble up the stack or not - */ - public function __construct(array $handlers, bool $bubble = true) - { - foreach ($handlers as $handler) { - if (!$handler instanceof HandlerInterface) { - throw new \InvalidArgumentException('The first argument of the GroupHandler must be an array of HandlerInterface instances.'); - } - } - - $this->handlers = $handlers; - $this->bubble = $bubble; - } - - /** - * {@inheritdoc} - */ - public function isHandling(array $record): bool - { - foreach ($this->handlers as $handler) { - if ($handler->isHandling($record)) { - return true; - } - } - - return false; - } - - /** - * {@inheritdoc} - */ - public function handle(array $record): bool - { - if ($this->processors) { - $record = $this->processRecord($record); - } - - foreach ($this->handlers as $handler) { - $handler->handle($record); - } - - return false === $this->bubble; - } - - /** - * {@inheritdoc} - */ - public function handleBatch(array $records): void - { - if ($this->processors) { - $processed = []; - foreach ($records as $record) { - $processed[] = $this->processRecord($record); - } - $records = $processed; - } - - foreach ($this->handlers as $handler) { - $handler->handleBatch($records); - } - } - - public function reset() - { - $this->resetProcessors(); - - foreach ($this->handlers as $handler) { - if ($handler instanceof ResettableInterface) { - $handler->reset(); - } - } - } - - public function close(): void - { - parent::close(); - - foreach ($this->handlers as $handler) { - $handler->close(); - } - } - - /** - * {@inheritdoc} - */ - public function setFormatter(FormatterInterface $formatter): HandlerInterface - { - foreach ($this->handlers as $handler) { - $handler->setFormatter($formatter); - } - - return $this; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/Handler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/Handler.php deleted file mode 100644 index 9f43fe10..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/Handler.php +++ /dev/null @@ -1,53 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -/** - * Base Handler class providing basic close() support as well as handleBatch - * - * @author Jordi Boggiano - */ -abstract class Handler implements HandlerInterface -{ - /** - * {@inheritdoc} - */ - public function handleBatch(array $records): void - { - foreach ($records as $record) { - $this->handle($record); - } - } - - /** - * {@inheritdoc} - */ - public function close(): void - { - } - - public function __destruct() - { - try { - $this->close(); - } catch (\Throwable $e) { - // do nothing - } - } - - public function __sleep() - { - $this->close(); - - return array_keys(get_object_vars($this)); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/HandlerInterface.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/HandlerInterface.php deleted file mode 100644 index 68aed186..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/HandlerInterface.php +++ /dev/null @@ -1,76 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -/** - * Interface that all Monolog Handlers must implement - * - * @author Jordi Boggiano - */ -interface HandlerInterface -{ - /** - * Checks whether the given record will be handled by this handler. - * - * This is mostly done for performance reasons, to avoid calling processors for nothing. - * - * Handlers should still check the record levels within handle(), returning false in isHandling() - * is no guarantee that handle() will not be called, and isHandling() might not be called - * for a given record. - * - * @param array $record Partial log record containing only a level key - * - * @return bool - */ - public function isHandling(array $record): bool; - - /** - * Handles a record. - * - * All records may be passed to this method, and the handler should discard - * those that it does not want to handle. - * - * The return value of this function controls the bubbling process of the handler stack. - * Unless the bubbling is interrupted (by returning true), the Logger class will keep on - * calling further handlers in the stack with a given log record. - * - * @param array $record The record to handle - * @return bool true means that this handler handled the record, and that bubbling is not permitted. - * false means the record was either not processed or that this handler allows bubbling. - */ - public function handle(array $record): bool; - - /** - * Handles a set of records at once. - * - * @param array $records The records to handle (an array of record arrays) - */ - public function handleBatch(array $records): void; - - /** - * Closes the handler. - * - * Ends a log cycle and frees all resources used by the handler. - * - * Closing a Handler means flushing all buffers and freeing any open resources/handles. - * - * Implementations have to be idempotent (i.e. it should be possible to call close several times without breakage) - * and ideally handlers should be able to reopen themselves on handle() after they have been closed. - * - * This is useful at the end of a request and will be called automatically when the object - * is destroyed if you extend Monolog\Handler\Handler. - * - * If you are thinking of calling this method yourself, most likely you should be - * calling ResettableInterface::reset instead. Have a look. - */ - public function close(): void; -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/HandlerWrapper.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/HandlerWrapper.php deleted file mode 100644 index 3f2c7a1a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/HandlerWrapper.php +++ /dev/null @@ -1,134 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use Monolog\ResettableInterface; -use Monolog\Formatter\FormatterInterface; - -/** - * This simple wrapper class can be used to extend handlers functionality. - * - * Example: A custom filtering that can be applied to any handler. - * - * Inherit from this class and override handle() like this: - * - * public function handle(array $record) - * { - * if ($record meets certain conditions) { - * return false; - * } - * return $this->handler->handle($record); - * } - * - * @author Alexey Karapetov - */ -class HandlerWrapper implements HandlerInterface, ProcessableHandlerInterface, FormattableHandlerInterface, ResettableInterface -{ - /** - * @var HandlerInterface - */ - protected $handler; - - public function __construct(HandlerInterface $handler) - { - $this->handler = $handler; - } - - /** - * {@inheritdoc} - */ - public function isHandling(array $record): bool - { - return $this->handler->isHandling($record); - } - - /** - * {@inheritdoc} - */ - public function handle(array $record): bool - { - return $this->handler->handle($record); - } - - /** - * {@inheritdoc} - */ - public function handleBatch(array $records): void - { - $this->handler->handleBatch($records); - } - - /** - * {@inheritdoc} - */ - public function close(): void - { - $this->handler->close(); - } - - /** - * {@inheritdoc} - */ - public function pushProcessor(callable $callback): HandlerInterface - { - if ($this->handler instanceof ProcessableHandlerInterface) { - $this->handler->pushProcessor($callback); - - return $this; - } - - throw new \LogicException('The wrapped handler does not implement ' . ProcessableHandlerInterface::class); - } - - /** - * {@inheritdoc} - */ - public function popProcessor(): callable - { - if ($this->handler instanceof ProcessableHandlerInterface) { - return $this->handler->popProcessor(); - } - - throw new \LogicException('The wrapped handler does not implement ' . ProcessableHandlerInterface::class); - } - - /** - * {@inheritdoc} - */ - public function setFormatter(FormatterInterface $formatter): HandlerInterface - { - if ($this->handler instanceof FormattableHandlerInterface) { - $this->handler->setFormatter($formatter); - } - - throw new \LogicException('The wrapped handler does not implement ' . FormattableHandlerInterface::class); - } - - /** - * {@inheritdoc} - */ - public function getFormatter(): FormatterInterface - { - if ($this->handler instanceof FormattableHandlerInterface) { - return $this->handler->getFormatter(); - } - - throw new \LogicException('The wrapped handler does not implement ' . FormattableHandlerInterface::class); - } - - public function reset() - { - if ($this->handler instanceof ResettableInterface) { - return $this->handler->reset(); - } - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/IFTTTHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/IFTTTHandler.php deleted file mode 100644 index 921c9f24..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/IFTTTHandler.php +++ /dev/null @@ -1,70 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use Monolog\Logger; -use Monolog\Utils; - -/** - * IFTTTHandler uses cURL to trigger IFTTT Maker actions - * - * Register a secret key and trigger/event name at https://ifttt.com/maker - * - * value1 will be the channel from monolog's Logger constructor, - * value2 will be the level name (ERROR, WARNING, ..) - * value3 will be the log record's message - * - * @author Nehal Patel - */ -class IFTTTHandler extends AbstractProcessingHandler -{ - private $eventName; - private $secretKey; - - /** - * @param string $eventName The name of the IFTTT Maker event that should be triggered - * @param string $secretKey A valid IFTTT secret key - * @param string|int $level The minimum logging level at which this handler will be triggered - * @param bool $bubble Whether the messages that are handled can bubble up the stack or not - */ - public function __construct(string $eventName, string $secretKey, $level = Logger::ERROR, bool $bubble = true) - { - $this->eventName = $eventName; - $this->secretKey = $secretKey; - - parent::__construct($level, $bubble); - } - - /** - * {@inheritdoc} - */ - public function write(array $record): void - { - $postData = [ - "value1" => $record["channel"], - "value2" => $record["level_name"], - "value3" => $record["message"], - ]; - $postString = Utils::jsonEncode($postData); - - $ch = curl_init(); - curl_setopt($ch, CURLOPT_URL, "https://maker.ifttt.com/trigger/" . $this->eventName . "/with/key/" . $this->secretKey); - curl_setopt($ch, CURLOPT_POST, true); - curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); - curl_setopt($ch, CURLOPT_POSTFIELDS, $postString); - curl_setopt($ch, CURLOPT_HTTPHEADER, [ - "Content-Type: application/json", - ]); - - Curl\Util::execute($ch); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/InsightOpsHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/InsightOpsHandler.php deleted file mode 100644 index 5ddc66bd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/InsightOpsHandler.php +++ /dev/null @@ -1,59 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use Monolog\Logger; - -/** - * Inspired on LogEntriesHandler. - * - * @author Robert Kaufmann III - * @author Gabriel Machado - */ -class InsightOpsHandler extends SocketHandler -{ - /** - * @var string - */ - protected $logToken; - - /** - * @param string $token Log token supplied by InsightOps - * @param string $region Region where InsightOps account is hosted. Could be 'us' or 'eu'. - * @param bool $useSSL Whether or not SSL encryption should be used - * @param string|int $level The minimum logging level to trigger this handler - * @param bool $bubble Whether or not messages that are handled should bubble up the stack. - * - * @throws MissingExtensionException If SSL encryption is set to true and OpenSSL is missing - */ - public function __construct(string $token, string $region = 'us', bool $useSSL = true, $level = Logger::DEBUG, bool $bubble = true) - { - if ($useSSL && !extension_loaded('openssl')) { - throw new MissingExtensionException('The OpenSSL PHP plugin is required to use SSL encrypted connection for InsightOpsHandler'); - } - - $endpoint = $useSSL - ? 'ssl://' . $region . '.data.logs.insight.rapid7.com:443' - : $region . '.data.logs.insight.rapid7.com:80'; - - parent::__construct($endpoint, $level, $bubble); - $this->logToken = $token; - } - - /** - * {@inheritdoc} - */ - protected function generateDataStream(array $record): string - { - return $this->logToken . ' ' . $record['formatted']; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/LogEntriesHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/LogEntriesHandler.php deleted file mode 100644 index 66de5f80..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/LogEntriesHandler.php +++ /dev/null @@ -1,53 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use Monolog\Logger; - -/** - * @author Robert Kaufmann III - */ -class LogEntriesHandler extends SocketHandler -{ - /** - * @var string - */ - protected $logToken; - - /** - * @param string $token Log token supplied by LogEntries - * @param bool $useSSL Whether or not SSL encryption should be used. - * @param string|int $level The minimum logging level to trigger this handler - * @param bool $bubble Whether or not messages that are handled should bubble up the stack. - * @param string $host Custom hostname to send the data to if needed - * - * @throws MissingExtensionException If SSL encryption is set to true and OpenSSL is missing - */ - public function __construct(string $token, bool $useSSL = true, $level = Logger::DEBUG, bool $bubble = true, string $host = 'data.logentries.com') - { - if ($useSSL && !extension_loaded('openssl')) { - throw new MissingExtensionException('The OpenSSL PHP plugin is required to use SSL encrypted connection for LogEntriesHandler'); - } - - $endpoint = $useSSL ? 'ssl://' . $host . ':443' : $host . ':80'; - parent::__construct($endpoint, $level, $bubble); - $this->logToken = $token; - } - - /** - * {@inheritdoc} - */ - protected function generateDataStream(array $record): string - { - return $this->logToken . ' ' . $record['formatted']; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/LogglyHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/LogglyHandler.php deleted file mode 100644 index c8befc28..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/LogglyHandler.php +++ /dev/null @@ -1,159 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use Monolog\Logger; -use Monolog\Formatter\FormatterInterface; -use Monolog\Formatter\LogglyFormatter; -use function array_key_exists; - -/** - * Sends errors to Loggly. - * - * @author Przemek Sobstel - * @author Adam Pancutt - * @author Gregory Barchard - */ -class LogglyHandler extends AbstractProcessingHandler -{ - protected const HOST = 'logs-01.loggly.com'; - protected const ENDPOINT_SINGLE = 'inputs'; - protected const ENDPOINT_BATCH = 'bulk'; - - /** - * Caches the curl handlers for every given endpoint. - * - * @var array - */ - protected $curlHandlers = []; - - protected $token; - - protected $tag = []; - - /** - * @param string $token API token supplied by Loggly - * @param string|int $level The minimum logging level to trigger this handler - * @param bool $bubble Whether or not messages that are handled should bubble up the stack. - * - * @throws MissingExtensionException If the curl extension is missing - */ - public function __construct(string $token, $level = Logger::DEBUG, bool $bubble = true) - { - if (!extension_loaded('curl')) { - throw new MissingExtensionException('The curl extension is needed to use the LogglyHandler'); - } - - $this->token = $token; - - parent::__construct($level, $bubble); - } - - /** - * Loads and returns the shared curl handler for the given endpoint. - * - * @param string $endpoint - * - * @return resource - */ - protected function getCurlHandler(string $endpoint) - { - if (!array_key_exists($endpoint, $this->curlHandlers)) { - $this->curlHandlers[$endpoint] = $this->loadCurlHandler($endpoint); - } - - return $this->curlHandlers[$endpoint]; - } - - /** - * Starts a fresh curl session for the given endpoint and returns its handler. - * - * @param string $endpoint - * - * @return resource - */ - private function loadCurlHandler(string $endpoint) - { - $url = sprintf("https://%s/%s/%s/", static::HOST, $endpoint, $this->token); - - $ch = curl_init(); - - curl_setopt($ch, CURLOPT_URL, $url); - curl_setopt($ch, CURLOPT_POST, true); - curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); - - return $ch; - } - - /** - * @param string[]|string $tag - */ - public function setTag($tag): self - { - $tag = !empty($tag) ? $tag : []; - $this->tag = is_array($tag) ? $tag : [$tag]; - - return $this; - } - - /** - * @param string[]|string $tag - */ - public function addTag($tag): self - { - if (!empty($tag)) { - $tag = is_array($tag) ? $tag : [$tag]; - $this->tag = array_unique(array_merge($this->tag, $tag)); - } - - return $this; - } - - protected function write(array $record): void - { - $this->send($record["formatted"], static::ENDPOINT_SINGLE); - } - - public function handleBatch(array $records): void - { - $level = $this->level; - - $records = array_filter($records, function ($record) use ($level) { - return ($record['level'] >= $level); - }); - - if ($records) { - $this->send($this->getFormatter()->formatBatch($records), static::ENDPOINT_BATCH); - } - } - - protected function send(string $data, string $endpoint): void - { - $ch = $this->getCurlHandler($endpoint); - - $headers = ['Content-Type: application/json']; - - if (!empty($this->tag)) { - $headers[] = 'X-LOGGLY-TAG: '.implode(',', $this->tag); - } - - curl_setopt($ch, CURLOPT_POSTFIELDS, $data); - curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); - - Curl\Util::execute($ch, 5, false); - } - - protected function getDefaultFormatter(): FormatterInterface - { - return new LogglyFormatter(); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/LogmaticHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/LogmaticHandler.php deleted file mode 100644 index 209af161..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/LogmaticHandler.php +++ /dev/null @@ -1,88 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use Monolog\Logger; -use Monolog\Formatter\FormatterInterface; -use Monolog\Formatter\LogmaticFormatter; - -/** - * @author Julien Breux - */ -class LogmaticHandler extends SocketHandler -{ - /** - * @var string - */ - private $logToken; - - /** - * @var string - */ - private $hostname; - - /** - * @var string - */ - private $appname; - - /** - * @param string $token Log token supplied by Logmatic. - * @param string $hostname Host name supplied by Logmatic. - * @param string $appname Application name supplied by Logmatic. - * @param bool $useSSL Whether or not SSL encryption should be used. - * @param int|string $level The minimum logging level to trigger this handler. - * @param bool $bubble Whether or not messages that are handled should bubble up the stack. - * - * @throws MissingExtensionException If SSL encryption is set to true and OpenSSL is missing - */ - public function __construct(string $token, string $hostname = '', string $appname = '', bool $useSSL = true, $level = Logger::DEBUG, bool $bubble = true) - { - if ($useSSL && !extension_loaded('openssl')) { - throw new MissingExtensionException('The OpenSSL PHP extension is required to use SSL encrypted connection for LogmaticHandler'); - } - - $endpoint = $useSSL ? 'ssl://api.logmatic.io:10515' : 'api.logmatic.io:10514'; - $endpoint .= '/v1/'; - - parent::__construct($endpoint, $level, $bubble); - - $this->logToken = $token; - $this->hostname = $hostname; - $this->appname = $appname; - } - - /** - * {@inheritdoc} - */ - protected function generateDataStream(array $record): string - { - return $this->logToken . ' ' . $record['formatted']; - } - - /** - * {@inheritdoc} - */ - protected function getDefaultFormatter(): FormatterInterface - { - $formatter = new LogmaticFormatter(); - - if (!empty($this->hostname)) { - $formatter->setHostname($this->hostname); - } - if (!empty($this->appname)) { - $formatter->setAppname($this->appname); - } - - return $formatter; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/MailHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/MailHandler.php deleted file mode 100644 index 3bbfd565..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/MailHandler.php +++ /dev/null @@ -1,85 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use Monolog\Formatter\FormatterInterface; -use Monolog\Formatter\HtmlFormatter; - -/** - * Base class for all mail handlers - * - * @author Gyula Sallai - */ -abstract class MailHandler extends AbstractProcessingHandler -{ - /** - * {@inheritdoc} - */ - public function handleBatch(array $records): void - { - $messages = []; - - foreach ($records as $record) { - if ($record['level'] < $this->level) { - continue; - } - $messages[] = $this->processRecord($record); - } - - if (!empty($messages)) { - $this->send((string) $this->getFormatter()->formatBatch($messages), $messages); - } - } - - /** - * Send a mail with the given content - * - * @param string $content formatted email body to be sent - * @param array $records the array of log records that formed this content - */ - abstract protected function send(string $content, array $records): void; - - /** - * {@inheritdoc} - */ - protected function write(array $record): void - { - $this->send((string) $record['formatted'], [$record]); - } - - protected function getHighestRecord(array $records): array - { - $highestRecord = null; - foreach ($records as $record) { - if ($highestRecord === null || $highestRecord['level'] < $record['level']) { - $highestRecord = $record; - } - } - - return $highestRecord; - } - - protected function isHtmlBody(string $body): bool - { - return substr($body, 0, 1) === '<'; - } - - /** - * Gets the default formatter. - * - * @return FormatterInterface - */ - protected function getDefaultFormatter(): FormatterInterface - { - return new HtmlFormatter(); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/MandrillHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/MandrillHandler.php deleted file mode 100644 index 46b8bff0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/MandrillHandler.php +++ /dev/null @@ -1,78 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use Monolog\Logger; -use Swift; - -/** - * MandrillHandler uses cURL to send the emails to the Mandrill API - * - * @author Adam Nicholson - */ -class MandrillHandler extends MailHandler -{ - protected $message; - protected $apiKey; - - /** - * @param string $apiKey A valid Mandrill API key - * @param callable|\Swift_Message $message An example message for real messages, only the body will be replaced - * @param string|int $level The minimum logging level at which this handler will be triggered - * @param bool $bubble Whether the messages that are handled can bubble up the stack or not - */ - public function __construct(string $apiKey, $message, $level = Logger::ERROR, bool $bubble = true) - { - parent::__construct($level, $bubble); - - if (!$message instanceof \Swift_Message && is_callable($message)) { - $message = call_user_func($message); - } - if (!$message instanceof \Swift_Message) { - throw new \InvalidArgumentException('You must provide either a Swift_Message instance or a callable returning it'); - } - $this->message = $message; - $this->apiKey = $apiKey; - } - - /** - * {@inheritdoc} - */ - protected function send(string $content, array $records): void - { - $mime = 'text/plain'; - if ($this->isHtmlBody($content)) { - $mime = 'text/html'; - } - - $message = clone $this->message; - $message->setBody($content, $mime); - if (version_compare(Swift::VERSION, '6.0.0', '>=')) { - $message->setDate(new \DateTimeImmutable()); - } else { - $message->setDate(time()); - } - - $ch = curl_init(); - - curl_setopt($ch, CURLOPT_URL, 'https://mandrillapp.com/api/1.0/messages/send-raw.json'); - curl_setopt($ch, CURLOPT_POST, 1); - curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); - curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query([ - 'key' => $this->apiKey, - 'raw_message' => (string) $message, - 'async' => false, - ])); - - Curl\Util::execute($ch); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/MissingExtensionException.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/MissingExtensionException.php deleted file mode 100644 index 3965aeea..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/MissingExtensionException.php +++ /dev/null @@ -1,21 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -/** - * Exception can be thrown if an extension for a handler is missing - * - * @author Christian Bergau - */ -class MissingExtensionException extends \Exception -{ -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/MongoDBHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/MongoDBHandler.php deleted file mode 100644 index e7539174..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/MongoDBHandler.php +++ /dev/null @@ -1,85 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use MongoDB\Driver\BulkWrite; -use MongoDB\Driver\Manager; -use MongoDB\Client; -use Monolog\Logger; -use Monolog\Formatter\FormatterInterface; -use Monolog\Formatter\MongoDBFormatter; - -/** - * Logs to a MongoDB database. - * - * Usage example: - * - * $log = new \Monolog\Logger('application'); - * $client = new \MongoDB\Client('mongodb://localhost:27017'); - * $mongodb = new \Monolog\Handler\MongoDBHandler($client, 'logs', 'prod'); - * $log->pushHandler($mongodb); - * - * The above examples uses the MongoDB PHP library's client class; however, the - * MongoDB\Driver\Manager class from ext-mongodb is also supported. - */ -class MongoDBHandler extends AbstractProcessingHandler -{ - private $collection; - private $manager; - private $namespace; - - /** - * Constructor. - * - * @param Client|Manager $mongodb MongoDB library or driver client - * @param string $database Database name - * @param string $collection Collection name - * @param string|int $level The minimum logging level at which this handler will be triggered - * @param bool $bubble Whether the messages that are handled can bubble up the stack or not - */ - public function __construct($mongodb, string $database, string $collection, $level = Logger::DEBUG, bool $bubble = true) - { - if (!($mongodb instanceof Client || $mongodb instanceof Manager)) { - throw new \InvalidArgumentException('MongoDB\Client or MongoDB\Driver\Manager instance required'); - } - - if ($mongodb instanceof Client) { - $this->collection = $mongodb->selectCollection($database, $collection); - } else { - $this->manager = $mongodb; - $this->namespace = $database . '.' . $collection; - } - - parent::__construct($level, $bubble); - } - - protected function write(array $record): void - { - if (isset($this->collection)) { - $this->collection->insertOne($record['formatted']); - } - - if (isset($this->manager, $this->namespace)) { - $bulk = new BulkWrite; - $bulk->insert($record["formatted"]); - $this->manager->executeBulkWrite($this->namespace, $bulk); - } - } - - /** - * {@inheritDoc} - */ - protected function getDefaultFormatter(): FormatterInterface - { - return new MongoDBFormatter; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/NativeMailerHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/NativeMailerHandler.php deleted file mode 100644 index cd205611..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/NativeMailerHandler.php +++ /dev/null @@ -1,176 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use Monolog\Logger; -use Monolog\Formatter\LineFormatter; - -/** - * NativeMailerHandler uses the mail() function to send the emails - * - * @author Christophe Coevoet - * @author Mark Garrett - */ -class NativeMailerHandler extends MailHandler -{ - /** - * The email addresses to which the message will be sent - * @var array - */ - protected $to; - - /** - * The subject of the email - * @var string - */ - protected $subject; - - /** - * Optional headers for the message - * @var array - */ - protected $headers = []; - - /** - * Optional parameters for the message - * @var array - */ - protected $parameters = []; - - /** - * The wordwrap length for the message - * @var int - */ - protected $maxColumnWidth; - - /** - * The Content-type for the message - * @var string|null - */ - protected $contentType; - - /** - * The encoding for the message - * @var string - */ - protected $encoding = 'utf-8'; - - /** - * @param string|array $to The receiver of the mail - * @param string $subject The subject of the mail - * @param string $from The sender of the mail - * @param string|int $level The minimum logging level at which this handler will be triggered - * @param bool $bubble Whether the messages that are handled can bubble up the stack or not - * @param int $maxColumnWidth The maximum column width that the message lines will have - */ - public function __construct($to, string $subject, string $from, $level = Logger::ERROR, bool $bubble = true, int $maxColumnWidth = 70) - { - parent::__construct($level, $bubble); - $this->to = (array) $to; - $this->subject = $subject; - $this->addHeader(sprintf('From: %s', $from)); - $this->maxColumnWidth = $maxColumnWidth; - } - - /** - * Add headers to the message - * - * @param string|array $headers Custom added headers - */ - public function addHeader($headers): self - { - foreach ((array) $headers as $header) { - if (strpos($header, "\n") !== false || strpos($header, "\r") !== false) { - throw new \InvalidArgumentException('Headers can not contain newline characters for security reasons'); - } - $this->headers[] = $header; - } - - return $this; - } - - /** - * Add parameters to the message - * - * @param string|array $parameters Custom added parameters - */ - public function addParameter($parameters): self - { - $this->parameters = array_merge($this->parameters, (array) $parameters); - - return $this; - } - - /** - * {@inheritdoc} - */ - protected function send(string $content, array $records): void - { - $contentType = $this->getContentType() ?: ($this->isHtmlBody($content) ? 'text/html' : 'text/plain'); - - if ($contentType !== 'text/html') { - $content = wordwrap($content, $this->maxColumnWidth); - } - - $headers = ltrim(implode("\r\n", $this->headers) . "\r\n", "\r\n"); - $headers .= 'Content-type: ' . $contentType . '; charset=' . $this->getEncoding() . "\r\n"; - if ($contentType === 'text/html' && false === strpos($headers, 'MIME-Version:')) { - $headers .= 'MIME-Version: 1.0' . "\r\n"; - } - - $subject = $this->subject; - if ($records) { - $subjectFormatter = new LineFormatter($this->subject); - $subject = $subjectFormatter->format($this->getHighestRecord($records)); - } - - $parameters = implode(' ', $this->parameters); - foreach ($this->to as $to) { - mail($to, $subject, $content, $headers, $parameters); - } - } - - public function getContentType(): ?string - { - return $this->contentType; - } - - public function getEncoding(): string - { - return $this->encoding; - } - - /** - * @param string $contentType The content type of the email - Defaults to text/plain. Use text/html for HTML messages. - */ - public function setContentType(string $contentType): self - { - if (strpos($contentType, "\n") !== false || strpos($contentType, "\r") !== false) { - throw new \InvalidArgumentException('The content type can not contain newline characters to prevent email header injection'); - } - - $this->contentType = $contentType; - - return $this; - } - - public function setEncoding(string $encoding): self - { - if (strpos($encoding, "\n") !== false || strpos($encoding, "\r") !== false) { - throw new \InvalidArgumentException('The encoding can not contain newline characters to prevent email header injection'); - } - - $this->encoding = $encoding; - - return $this; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/NewRelicHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/NewRelicHandler.php deleted file mode 100644 index 177ad21a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/NewRelicHandler.php +++ /dev/null @@ -1,197 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use Monolog\Logger; -use Monolog\Utils; -use Monolog\Formatter\NormalizerFormatter; -use Monolog\Formatter\FormatterInterface; - -/** - * Class to record a log on a NewRelic application. - * Enabling New Relic High Security mode may prevent capture of useful information. - * - * This handler requires a NormalizerFormatter to function and expects an array in $record['formatted'] - * - * @see https://docs.newrelic.com/docs/agents/php-agent - * @see https://docs.newrelic.com/docs/accounts-partnerships/accounts/security/high-security - */ -class NewRelicHandler extends AbstractProcessingHandler -{ - /** - * Name of the New Relic application that will receive logs from this handler. - * - * @var string|null - */ - protected $appName; - - /** - * Name of the current transaction - * - * @var string|null - */ - protected $transactionName; - - /** - * Some context and extra data is passed into the handler as arrays of values. Do we send them as is - * (useful if we are using the API), or explode them for display on the NewRelic RPM website? - * - * @var bool - */ - protected $explodeArrays; - - /** - * {@inheritDoc} - * - * @param string|int $level The minimum logging level at which this handler will be triggered. - * @param bool $bubble Whether the messages that are handled can bubble up the stack or not. - * @param string|null $appName - * @param bool $explodeArrays - * @param string|null $transactionName - */ - public function __construct( - $level = Logger::ERROR, - bool $bubble = true, - ?string $appName = null, - bool $explodeArrays = false, - ?string $transactionName = null - ) { - parent::__construct($level, $bubble); - - $this->appName = $appName; - $this->explodeArrays = $explodeArrays; - $this->transactionName = $transactionName; - } - - /** - * {@inheritDoc} - */ - protected function write(array $record): void - { - if (!$this->isNewRelicEnabled()) { - throw new MissingExtensionException('The newrelic PHP extension is required to use the NewRelicHandler'); - } - - if ($appName = $this->getAppName($record['context'])) { - $this->setNewRelicAppName($appName); - } - - if ($transactionName = $this->getTransactionName($record['context'])) { - $this->setNewRelicTransactionName($transactionName); - unset($record['formatted']['context']['transaction_name']); - } - - if (isset($record['context']['exception']) && $record['context']['exception'] instanceof \Throwable) { - newrelic_notice_error($record['message'], $record['context']['exception']); - unset($record['formatted']['context']['exception']); - } else { - newrelic_notice_error($record['message']); - } - - if (isset($record['formatted']['context']) && is_array($record['formatted']['context'])) { - foreach ($record['formatted']['context'] as $key => $parameter) { - if (is_array($parameter) && $this->explodeArrays) { - foreach ($parameter as $paramKey => $paramValue) { - $this->setNewRelicParameter('context_' . $key . '_' . $paramKey, $paramValue); - } - } else { - $this->setNewRelicParameter('context_' . $key, $parameter); - } - } - } - - if (isset($record['formatted']['extra']) && is_array($record['formatted']['extra'])) { - foreach ($record['formatted']['extra'] as $key => $parameter) { - if (is_array($parameter) && $this->explodeArrays) { - foreach ($parameter as $paramKey => $paramValue) { - $this->setNewRelicParameter('extra_' . $key . '_' . $paramKey, $paramValue); - } - } else { - $this->setNewRelicParameter('extra_' . $key, $parameter); - } - } - } - } - - /** - * Checks whether the NewRelic extension is enabled in the system. - * - * @return bool - */ - protected function isNewRelicEnabled(): bool - { - return extension_loaded('newrelic'); - } - - /** - * Returns the appname where this log should be sent. Each log can override the default appname, set in this - * handler's constructor, by providing the appname in it's context. - */ - protected function getAppName(array $context): ?string - { - if (isset($context['appname'])) { - return $context['appname']; - } - - return $this->appName; - } - - /** - * Returns the name of the current transaction. Each log can override the default transaction name, set in this - * handler's constructor, by providing the transaction_name in it's context - */ - protected function getTransactionName(array $context): ?string - { - if (isset($context['transaction_name'])) { - return $context['transaction_name']; - } - - return $this->transactionName; - } - - /** - * Sets the NewRelic application that should receive this log. - */ - protected function setNewRelicAppName(string $appName): void - { - newrelic_set_appname($appName); - } - - /** - * Overwrites the name of the current transaction - */ - protected function setNewRelicTransactionName(string $transactionName): void - { - newrelic_name_transaction($transactionName); - } - - /** - * @param string $key - * @param mixed $value - */ - protected function setNewRelicParameter(string $key, $value): void - { - if (null === $value || is_scalar($value)) { - newrelic_add_custom_parameter($key, $value); - } else { - newrelic_add_custom_parameter($key, Utils::jsonEncode($value, null, true)); - } - } - - /** - * {@inheritDoc} - */ - protected function getDefaultFormatter(): FormatterInterface - { - return new NormalizerFormatter(); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/NoopHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/NoopHandler.php deleted file mode 100644 index 8ee2b4c6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/NoopHandler.php +++ /dev/null @@ -1,40 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -/** - * No-op - * - * This handler handles anything, but does nothing, and does not stop bubbling to the rest of the stack. - * This can be used for testing, or to disable a handler when overriding a configuration without - * influencing the rest of the stack. - * - * @author Roel Harbers - */ -class NoopHandler extends Handler -{ - /** - * {@inheritdoc} - */ - public function isHandling(array $record): bool - { - return true; - } - - /** - * {@inheritdoc} - */ - public function handle(array $record): bool - { - return false; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/NullHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/NullHandler.php deleted file mode 100644 index 1f0078ac..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/NullHandler.php +++ /dev/null @@ -1,54 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use Monolog\Logger; - -/** - * Blackhole - * - * Any record it can handle will be thrown away. This can be used - * to put on top of an existing stack to override it temporarily. - * - * @author Jordi Boggiano - */ -class NullHandler extends Handler -{ - /** - * @var int - */ - private $level; - - /** - * @param string|int $level The minimum logging level at which this handler will be triggered - */ - public function __construct($level = Logger::DEBUG) - { - $this->level = Logger::toMonologLevel($level); - } - - /** - * {@inheritdoc} - */ - public function isHandling(array $record): bool - { - return $record['level'] >= $this->level; - } - - /** - * {@inheritdoc} - */ - public function handle(array $record): bool - { - return $record['level'] >= $this->level; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/OverflowHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/OverflowHandler.php deleted file mode 100644 index 448f6334..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/OverflowHandler.php +++ /dev/null @@ -1,146 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use Monolog\Logger; -use Monolog\Formatter\FormatterInterface; - -/** - * Handler to only pass log messages when a certain threshold of number of messages is reached. - * - * This can be useful in cases of processing a batch of data, but you're for example only interested - * in case it fails catastrophically instead of a warning for 1 or 2 events. Worse things can happen, right? - * - * Usage example: - * - * ``` - * $log = new Logger('application'); - * $handler = new SomeHandler(...) - * - * // Pass all warnings to the handler when more than 10 & all error messages when more then 5 - * $overflow = new OverflowHandler($handler, [Logger::WARNING => 10, Logger::ERROR => 5]); - * - * $log->pushHandler($overflow); - *``` - * - * @author Kris Buist - */ -class OverflowHandler extends AbstractHandler implements FormattableHandlerInterface -{ - /** @var HandlerInterface */ - private $handler; - - /** @var int[] */ - private $thresholdMap = [ - Logger::DEBUG => 0, - Logger::INFO => 0, - Logger::NOTICE => 0, - Logger::WARNING => 0, - Logger::ERROR => 0, - Logger::CRITICAL => 0, - Logger::ALERT => 0, - Logger::EMERGENCY => 0, - ]; - - /** - * Buffer of all messages passed to the handler before the threshold was reached - * - * @var mixed[][] - */ - private $buffer = []; - - /** - * @param HandlerInterface $handler - * @param int[] $thresholdMap Dictionary of logger level => threshold - * @param int $level - * @param bool $bubble - */ - public function __construct( - HandlerInterface $handler, - array $thresholdMap = [], - int $level = Logger::DEBUG, - bool $bubble = true - ) { - $this->handler = $handler; - foreach ($thresholdMap as $thresholdLevel => $threshold) { - $this->thresholdMap[$thresholdLevel] = $threshold; - } - parent::__construct($level, $bubble); - } - - /** - * Handles a record. - * - * All records may be passed to this method, and the handler should discard - * those that it does not want to handle. - * - * The return value of this function controls the bubbling process of the handler stack. - * Unless the bubbling is interrupted (by returning true), the Logger class will keep on - * calling further handlers in the stack with a given log record. - * - * @param array $record The record to handle - * - * @return Boolean true means that this handler handled the record, and that bubbling is not permitted. - * false means the record was either not processed or that this handler allows bubbling. - */ - public function handle(array $record): bool - { - if ($record['level'] < $this->level) { - return false; - } - - $level = $record['level']; - - if (!isset($this->thresholdMap[$level])) { - $this->thresholdMap[$level] = 0; - } - - if ($this->thresholdMap[$level] > 0) { - // The overflow threshold is not yet reached, so we're buffering the record and lowering the threshold by 1 - $this->thresholdMap[$level]--; - $this->buffer[$level][] = $record; - - return false === $this->bubble; - } - - if ($this->thresholdMap[$level] == 0) { - // This current message is breaking the threshold. Flush the buffer and continue handling the current record - foreach ($this->buffer[$level] ?? [] as $buffered) { - $this->handler->handle($buffered); - } - $this->thresholdMap[$level]--; - unset($this->buffer[$level]); - } - - $this->handler->handle($record); - - return false === $this->bubble; - } - - /** - * {@inheritdoc} - */ - public function setFormatter(FormatterInterface $formatter): HandlerInterface - { - $this->handler->setFormatter($formatter); - - return $this; - } - - /** - * {@inheritdoc} - */ - public function getFormatter(): FormatterInterface - { - return $this->handler->getFormatter(); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/PHPConsoleHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/PHPConsoleHandler.php deleted file mode 100644 index aa94e613..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/PHPConsoleHandler.php +++ /dev/null @@ -1,243 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use Monolog\Formatter\LineFormatter; -use Monolog\Formatter\FormatterInterface; -use Monolog\Logger; -use Monolog\Utils; -use PhpConsole\Connector; -use PhpConsole\Handler as VendorPhpConsoleHandler; -use PhpConsole\Helper; - -/** - * Monolog handler for Google Chrome extension "PHP Console" - * - * Display PHP error/debug log messages in Google Chrome console and notification popups, executes PHP code remotely - * - * Usage: - * 1. Install Google Chrome extension https://chrome.google.com/webstore/detail/php-console/nfhmhhlpfleoednkpnnnkolmclajemef - * 2. See overview https://github.com/barbushin/php-console#overview - * 3. Install PHP Console library https://github.com/barbushin/php-console#installation - * 4. Example (result will looks like http://i.hizliresim.com/vg3Pz4.png) - * - * $logger = new \Monolog\Logger('all', array(new \Monolog\Handler\PHPConsoleHandler())); - * \Monolog\ErrorHandler::register($logger); - * echo $undefinedVar; - * $logger->debug('SELECT * FROM users', array('db', 'time' => 0.012)); - * PC::debug($_SERVER); // PHP Console debugger for any type of vars - * - * @author Sergey Barbushin https://www.linkedin.com/in/barbushin - */ -class PHPConsoleHandler extends AbstractProcessingHandler -{ - private $options = [ - 'enabled' => true, // bool Is PHP Console server enabled - 'classesPartialsTraceIgnore' => ['Monolog\\'], // array Hide calls of classes started with... - 'debugTagsKeysInContext' => [0, 'tag'], // bool Is PHP Console server enabled - 'useOwnErrorsHandler' => false, // bool Enable errors handling - 'useOwnExceptionsHandler' => false, // bool Enable exceptions handling - 'sourcesBasePath' => null, // string Base path of all project sources to strip in errors source paths - 'registerHelper' => true, // bool Register PhpConsole\Helper that allows short debug calls like PC::debug($var, 'ta.g.s') - 'serverEncoding' => null, // string|null Server internal encoding - 'headersLimit' => null, // int|null Set headers size limit for your web-server - 'password' => null, // string|null Protect PHP Console connection by password - 'enableSslOnlyMode' => false, // bool Force connection by SSL for clients with PHP Console installed - 'ipMasks' => [], // array Set IP masks of clients that will be allowed to connect to PHP Console: array('192.168.*.*', '127.0.0.1') - 'enableEvalListener' => false, // bool Enable eval request to be handled by eval dispatcher(if enabled, 'password' option is also required) - 'dumperDetectCallbacks' => false, // bool Convert callback items in dumper vars to (callback SomeClass::someMethod) strings - 'dumperLevelLimit' => 5, // int Maximum dumped vars array or object nested dump level - 'dumperItemsCountLimit' => 100, // int Maximum dumped var same level array items or object properties number - 'dumperItemSizeLimit' => 5000, // int Maximum length of any string or dumped array item - 'dumperDumpSizeLimit' => 500000, // int Maximum approximate size of dumped vars result formatted in JSON - 'detectDumpTraceAndSource' => false, // bool Autodetect and append trace data to debug - 'dataStorage' => null, // \PhpConsole\Storage|null Fixes problem with custom $_SESSION handler(see http://goo.gl/Ne8juJ) - ]; - - /** @var Connector */ - private $connector; - - /** - * @param array $options See \Monolog\Handler\PHPConsoleHandler::$options for more details - * @param Connector|null $connector Instance of \PhpConsole\Connector class (optional) - * @param string|int $level The minimum logging level at which this handler will be triggered. - * @param bool $bubble Whether the messages that are handled can bubble up the stack or not. - * @throws \RuntimeException - */ - public function __construct(array $options = [], ?Connector $connector = null, $level = Logger::DEBUG, bool $bubble = true) - { - if (!class_exists('PhpConsole\Connector')) { - throw new \RuntimeException('PHP Console library not found. See https://github.com/barbushin/php-console#installation'); - } - parent::__construct($level, $bubble); - $this->options = $this->initOptions($options); - $this->connector = $this->initConnector($connector); - } - - private function initOptions(array $options): array - { - $wrongOptions = array_diff(array_keys($options), array_keys($this->options)); - if ($wrongOptions) { - throw new \RuntimeException('Unknown options: ' . implode(', ', $wrongOptions)); - } - - return array_replace($this->options, $options); - } - - /** - * @suppress PhanTypeMismatchArgument - */ - private function initConnector(?Connector $connector = null): Connector - { - if (!$connector) { - if ($this->options['dataStorage']) { - Connector::setPostponeStorage($this->options['dataStorage']); - } - $connector = Connector::getInstance(); - } - - if ($this->options['registerHelper'] && !Helper::isRegistered()) { - Helper::register(); - } - - if ($this->options['enabled'] && $connector->isActiveClient()) { - if ($this->options['useOwnErrorsHandler'] || $this->options['useOwnExceptionsHandler']) { - $handler = VendorPhpConsoleHandler::getInstance(); - $handler->setHandleErrors($this->options['useOwnErrorsHandler']); - $handler->setHandleExceptions($this->options['useOwnExceptionsHandler']); - $handler->start(); - } - if ($this->options['sourcesBasePath']) { - $connector->setSourcesBasePath($this->options['sourcesBasePath']); - } - if ($this->options['serverEncoding']) { - $connector->setServerEncoding($this->options['serverEncoding']); - } - if ($this->options['password']) { - $connector->setPassword($this->options['password']); - } - if ($this->options['enableSslOnlyMode']) { - $connector->enableSslOnlyMode(); - } - if ($this->options['ipMasks']) { - $connector->setAllowedIpMasks($this->options['ipMasks']); - } - if ($this->options['headersLimit']) { - $connector->setHeadersLimit($this->options['headersLimit']); - } - if ($this->options['detectDumpTraceAndSource']) { - $connector->getDebugDispatcher()->detectTraceAndSource = true; - } - $dumper = $connector->getDumper(); - $dumper->levelLimit = $this->options['dumperLevelLimit']; - $dumper->itemsCountLimit = $this->options['dumperItemsCountLimit']; - $dumper->itemSizeLimit = $this->options['dumperItemSizeLimit']; - $dumper->dumpSizeLimit = $this->options['dumperDumpSizeLimit']; - $dumper->detectCallbacks = $this->options['dumperDetectCallbacks']; - if ($this->options['enableEvalListener']) { - $connector->startEvalRequestsListener(); - } - } - - return $connector; - } - - public function getConnector(): Connector - { - return $this->connector; - } - - public function getOptions(): array - { - return $this->options; - } - - public function handle(array $record): bool - { - if ($this->options['enabled'] && $this->connector->isActiveClient()) { - return parent::handle($record); - } - - return !$this->bubble; - } - - /** - * Writes the record down to the log of the implementing handler - */ - protected function write(array $record): void - { - if ($record['level'] < Logger::NOTICE) { - $this->handleDebugRecord($record); - } elseif (isset($record['context']['exception']) && $record['context']['exception'] instanceof \Throwable) { - $this->handleExceptionRecord($record); - } else { - $this->handleErrorRecord($record); - } - } - - private function handleDebugRecord(array $record): void - { - $tags = $this->getRecordTags($record); - $message = $record['message']; - if ($record['context']) { - $message .= ' ' . Utils::jsonEncode($this->connector->getDumper()->dump(array_filter($record['context'])), null, true); - } - $this->connector->getDebugDispatcher()->dispatchDebug($message, $tags, $this->options['classesPartialsTraceIgnore']); - } - - private function handleExceptionRecord(array $record): void - { - $this->connector->getErrorsDispatcher()->dispatchException($record['context']['exception']); - } - - private function handleErrorRecord(array $record): void - { - $context = $record['context']; - - $this->connector->getErrorsDispatcher()->dispatchError( - $context['code'] ?? null, - $context['message'] ?? $record['message'], - $context['file'] ?? null, - $context['line'] ?? null, - $this->options['classesPartialsTraceIgnore'] - ); - } - - private function getRecordTags(array &$record) - { - $tags = null; - if (!empty($record['context'])) { - $context = & $record['context']; - foreach ($this->options['debugTagsKeysInContext'] as $key) { - if (!empty($context[$key])) { - $tags = $context[$key]; - if ($key === 0) { - array_shift($context); - } else { - unset($context[$key]); - } - break; - } - } - } - - return $tags ?: strtolower($record['level_name']); - } - - /** - * {@inheritDoc} - */ - protected function getDefaultFormatter(): FormatterInterface - { - return new LineFormatter('%message%'); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/ProcessHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/ProcessHandler.php deleted file mode 100644 index 36e30b87..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/ProcessHandler.php +++ /dev/null @@ -1,193 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use Monolog\Logger; - -/** - * Stores to STDIN of any process, specified by a command. - * - * Usage example: - *
- * $log = new Logger('myLogger');
- * $log->pushHandler(new ProcessHandler('/usr/bin/php /var/www/monolog/someScript.php'));
- * 
- * - * @author Kolja Zuelsdorf - */ -class ProcessHandler extends AbstractProcessingHandler -{ - /** - * Holds the process to receive data on its STDIN. - * - * @var resource|bool|null - */ - private $process; - - /** - * @var string - */ - private $command; - - /** - * @var string|null - */ - private $cwd; - - /** - * @var array - */ - private $pipes = []; - - /** - * @var array - */ - protected const DESCRIPTOR_SPEC = [ - 0 => ['pipe', 'r'], // STDIN is a pipe that the child will read from - 1 => ['pipe', 'w'], // STDOUT is a pipe that the child will write to - 2 => ['pipe', 'w'], // STDERR is a pipe to catch the any errors - ]; - - /** - * @param string $command Command for the process to start. Absolute paths are recommended, - * especially if you do not use the $cwd parameter. - * @param string|int $level The minimum logging level at which this handler will be triggered. - * @param bool $bubble Whether the messages that are handled can bubble up the stack or not. - * @param string|null $cwd "Current working directory" (CWD) for the process to be executed in. - * @throws \InvalidArgumentException - */ - public function __construct(string $command, $level = Logger::DEBUG, bool $bubble = true, ?string $cwd = null) - { - if ($command === '') { - throw new \InvalidArgumentException('The command argument must be a non-empty string.'); - } - if ($cwd === '') { - throw new \InvalidArgumentException('The optional CWD argument must be a non-empty string or null.'); - } - - parent::__construct($level, $bubble); - - $this->command = $command; - $this->cwd = $cwd; - } - - /** - * Writes the record down to the log of the implementing handler - * - * @throws \UnexpectedValueException - */ - protected function write(array $record): void - { - $this->ensureProcessIsStarted(); - - $this->writeProcessInput($record['formatted']); - - $errors = $this->readProcessErrors(); - if (empty($errors) === false) { - throw new \UnexpectedValueException(sprintf('Errors while writing to process: %s', $errors)); - } - } - - /** - * Makes sure that the process is actually started, and if not, starts it, - * assigns the stream pipes, and handles startup errors, if any. - */ - private function ensureProcessIsStarted(): void - { - if (is_resource($this->process) === false) { - $this->startProcess(); - - $this->handleStartupErrors(); - } - } - - /** - * Starts the actual process and sets all streams to non-blocking. - */ - private function startProcess(): void - { - $this->process = proc_open($this->command, static::DESCRIPTOR_SPEC, $this->pipes, $this->cwd); - - foreach ($this->pipes as $pipe) { - stream_set_blocking($pipe, false); - } - } - - /** - * Selects the STDERR stream, handles upcoming startup errors, and throws an exception, if any. - * - * @throws \UnexpectedValueException - */ - private function handleStartupErrors(): void - { - $selected = $this->selectErrorStream(); - if (false === $selected) { - throw new \UnexpectedValueException('Something went wrong while selecting a stream.'); - } - - $errors = $this->readProcessErrors(); - - if (is_resource($this->process) === false || empty($errors) === false) { - throw new \UnexpectedValueException( - sprintf('The process "%s" could not be opened: ' . $errors, $this->command) - ); - } - } - - /** - * Selects the STDERR stream. - * - * @return int|bool - */ - protected function selectErrorStream() - { - $empty = []; - $errorPipes = [$this->pipes[2]]; - - return stream_select($errorPipes, $empty, $empty, 1); - } - - /** - * Reads the errors of the process, if there are any. - * - * @codeCoverageIgnore - * @return string Empty string if there are no errors. - */ - protected function readProcessErrors(): string - { - return stream_get_contents($this->pipes[2]); - } - - /** - * Writes to the input stream of the opened process. - * - * @codeCoverageIgnore - */ - protected function writeProcessInput(string $string): void - { - fwrite($this->pipes[0], $string); - } - - /** - * {@inheritdoc} - */ - public function close(): void - { - if (is_resource($this->process)) { - foreach ($this->pipes as $pipe) { - fclose($pipe); - } - proc_close($this->process); - $this->process = null; - } - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/ProcessableHandlerInterface.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/ProcessableHandlerInterface.php deleted file mode 100644 index 2c9557b4..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/ProcessableHandlerInterface.php +++ /dev/null @@ -1,38 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use Monolog\Processor\ProcessorInterface; - -/** - * Interface to describe loggers that have processors - * - * @author Jordi Boggiano - */ -interface ProcessableHandlerInterface -{ - /** - * Adds a processor in the stack. - * - * @param ProcessorInterface|callable $callback - * @return HandlerInterface self - */ - public function pushProcessor(callable $callback): HandlerInterface; - - /** - * Removes the processor on top of the stack and returns it. - * - * @throws \LogicException In case the processor stack is empty - * @return callable - */ - public function popProcessor(): callable; -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/ProcessableHandlerTrait.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/ProcessableHandlerTrait.php deleted file mode 100644 index c4c38ec5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/ProcessableHandlerTrait.php +++ /dev/null @@ -1,71 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use Monolog\ResettableInterface; - -/** - * Helper trait for implementing ProcessableInterface - * - * @author Jordi Boggiano - */ -trait ProcessableHandlerTrait -{ - /** - * @var callable[] - */ - protected $processors = []; - - /** - * {@inheritdoc} - * @suppress PhanTypeMismatchReturn - */ - public function pushProcessor(callable $callback): HandlerInterface - { - array_unshift($this->processors, $callback); - - return $this; - } - - /** - * {@inheritdoc} - */ - public function popProcessor(): callable - { - if (!$this->processors) { - throw new \LogicException('You tried to pop from an empty processor stack.'); - } - - return array_shift($this->processors); - } - - /** - * Processes a record. - */ - protected function processRecord(array $record): array - { - foreach ($this->processors as $processor) { - $record = $processor($record); - } - - return $record; - } - - protected function resetProcessors(): void - { - foreach ($this->processors as $processor) { - if ($processor instanceof ResettableInterface) { - $processor->reset(); - } - } - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/PsrHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/PsrHandler.php deleted file mode 100644 index cba96a55..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/PsrHandler.php +++ /dev/null @@ -1,97 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use Monolog\Logger; -use Psr\Log\LoggerInterface; -use Monolog\Formatter\FormatterInterface; - -/** - * Proxies log messages to an existing PSR-3 compliant logger. - * - * If a formatter is configured, the formatter's output MUST be a string and the - * formatted message will be fed to the wrapped PSR logger instead of the original - * log record's message. - * - * @author Michael Moussa - */ -class PsrHandler extends AbstractHandler implements FormattableHandlerInterface -{ - /** - * PSR-3 compliant logger - * - * @var LoggerInterface - */ - protected $logger; - - /** - * @var FormatterInterface|null - */ - protected $formatter; - - /** - * @param LoggerInterface $logger The underlying PSR-3 compliant logger to which messages will be proxied - * @param string|int $level The minimum logging level at which this handler will be triggered - * @param bool $bubble Whether the messages that are handled can bubble up the stack or not - */ - public function __construct(LoggerInterface $logger, $level = Logger::DEBUG, bool $bubble = true) - { - parent::__construct($level, $bubble); - - $this->logger = $logger; - } - - /** - * {@inheritDoc} - */ - public function handle(array $record): bool - { - if (!$this->isHandling($record)) { - return false; - } - - if ($this->formatter) { - $formatted = $this->formatter->format($record); - $this->logger->log(strtolower($record['level_name']), (string) $formatted, $record['context']); - } else { - $this->logger->log(strtolower($record['level_name']), $record['message'], $record['context']); - } - - return false === $this->bubble; - } - - /** - * Sets the formatter. - * - * @param FormatterInterface $formatter - */ - public function setFormatter(FormatterInterface $formatter): HandlerInterface - { - $this->formatter = $formatter; - - return $this; - } - - /** - * Gets the formatter. - * - * @return FormatterInterface - */ - public function getFormatter(): FormatterInterface - { - if (!$this->formatter) { - throw new \LogicException('No formatter has been set and this handler does not have a default formatter'); - } - - return $this->formatter; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/PushoverHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/PushoverHandler.php deleted file mode 100644 index 3bb99c75..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/PushoverHandler.php +++ /dev/null @@ -1,203 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use Monolog\Logger; -use Monolog\Utils; - -/** - * Sends notifications through the pushover api to mobile phones - * - * @author Sebastian Göttschkes - * @see https://www.pushover.net/api - */ -class PushoverHandler extends SocketHandler -{ - private $token; - private $users; - private $title; - private $user; - private $retry; - private $expire; - - private $highPriorityLevel; - private $emergencyLevel; - private $useFormattedMessage = false; - - /** - * All parameters that can be sent to Pushover - * @see https://pushover.net/api - * @var array - */ - private $parameterNames = [ - 'token' => true, - 'user' => true, - 'message' => true, - 'device' => true, - 'title' => true, - 'url' => true, - 'url_title' => true, - 'priority' => true, - 'timestamp' => true, - 'sound' => true, - 'retry' => true, - 'expire' => true, - 'callback' => true, - ]; - - /** - * Sounds the api supports by default - * @see https://pushover.net/api#sounds - * @var array - */ - private $sounds = [ - 'pushover', 'bike', 'bugle', 'cashregister', 'classical', 'cosmic', 'falling', 'gamelan', 'incoming', - 'intermission', 'magic', 'mechanical', 'pianobar', 'siren', 'spacealarm', 'tugboat', 'alien', 'climb', - 'persistent', 'echo', 'updown', 'none', - ]; - - /** - * @param string $token Pushover api token - * @param string|array $users Pushover user id or array of ids the message will be sent to - * @param string|null $title Title sent to the Pushover API - * @param string|int $level The minimum logging level at which this handler will be triggered - * @param bool $bubble Whether the messages that are handled can bubble up the stack or not - * @param bool $useSSL Whether to connect via SSL. Required when pushing messages to users that are not - * the pushover.net app owner. OpenSSL is required for this option. - * @param string|int $highPriorityLevel The minimum logging level at which this handler will start - * sending "high priority" requests to the Pushover API - * @param string|int $emergencyLevel The minimum logging level at which this handler will start - * sending "emergency" requests to the Pushover API - * @param int $retry The retry parameter specifies how often (in seconds) the Pushover servers will - * send the same notification to the user. - * @param int $expire The expire parameter specifies how many seconds your notification will continue - * to be retried for (every retry seconds). - */ - public function __construct( - string $token, - $users, - ?string $title = null, - $level = Logger::CRITICAL, - bool $bubble = true, - bool $useSSL = true, - $highPriorityLevel = Logger::CRITICAL, - $emergencyLevel = Logger::EMERGENCY, - int $retry = 30, - int $expire = 25200 - ) { - $connectionString = $useSSL ? 'ssl://api.pushover.net:443' : 'api.pushover.net:80'; - parent::__construct($connectionString, $level, $bubble); - - $this->token = $token; - $this->users = (array) $users; - $this->title = $title ?: gethostname(); - $this->highPriorityLevel = Logger::toMonologLevel($highPriorityLevel); - $this->emergencyLevel = Logger::toMonologLevel($emergencyLevel); - $this->retry = $retry; - $this->expire = $expire; - } - - protected function generateDataStream(array $record): string - { - $content = $this->buildContent($record); - - return $this->buildHeader($content) . $content; - } - - private function buildContent(array $record): string - { - // Pushover has a limit of 512 characters on title and message combined. - $maxMessageLength = 512 - strlen($this->title); - - $message = ($this->useFormattedMessage) ? $record['formatted'] : $record['message']; - $message = Utils::substr($message, 0, $maxMessageLength); - - $timestamp = $record['datetime']->getTimestamp(); - - $dataArray = [ - 'token' => $this->token, - 'user' => $this->user, - 'message' => $message, - 'title' => $this->title, - 'timestamp' => $timestamp, - ]; - - if (isset($record['level']) && $record['level'] >= $this->emergencyLevel) { - $dataArray['priority'] = 2; - $dataArray['retry'] = $this->retry; - $dataArray['expire'] = $this->expire; - } elseif (isset($record['level']) && $record['level'] >= $this->highPriorityLevel) { - $dataArray['priority'] = 1; - } - - // First determine the available parameters - $context = array_intersect_key($record['context'], $this->parameterNames); - $extra = array_intersect_key($record['extra'], $this->parameterNames); - - // Least important info should be merged with subsequent info - $dataArray = array_merge($extra, $context, $dataArray); - - // Only pass sounds that are supported by the API - if (isset($dataArray['sound']) && !in_array($dataArray['sound'], $this->sounds)) { - unset($dataArray['sound']); - } - - return http_build_query($dataArray); - } - - private function buildHeader(string $content): string - { - $header = "POST /1/messages.json HTTP/1.1\r\n"; - $header .= "Host: api.pushover.net\r\n"; - $header .= "Content-Type: application/x-www-form-urlencoded\r\n"; - $header .= "Content-Length: " . strlen($content) . "\r\n"; - $header .= "\r\n"; - - return $header; - } - - protected function write(array $record): void - { - foreach ($this->users as $user) { - $this->user = $user; - - parent::write($record); - $this->closeSocket(); - } - - $this->user = null; - } - - public function setHighPriorityLevel($value): self - { - $this->highPriorityLevel = Logger::toMonologLevel($value); - - return $this; - } - - public function setEmergencyLevel($value): self - { - $this->emergencyLevel = Logger::toMonologLevel($value); - - return $this; - } - - /** - * Use the formatted message? - */ - public function useFormattedMessage(bool $value): self - { - $this->useFormattedMessage = $value; - - return $this; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/RedisHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/RedisHandler.php deleted file mode 100644 index 46482b61..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/RedisHandler.php +++ /dev/null @@ -1,96 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use Monolog\Formatter\LineFormatter; -use Monolog\Formatter\FormatterInterface; -use Monolog\Logger; - -/** - * Logs to a Redis key using rpush - * - * usage example: - * - * $log = new Logger('application'); - * $redis = new RedisHandler(new Predis\Client("tcp://localhost:6379"), "logs", "prod"); - * $log->pushHandler($redis); - * - * @author Thomas Tourlourat - */ -class RedisHandler extends AbstractProcessingHandler -{ - private $redisClient; - private $redisKey; - protected $capSize; - - /** - * @param \Predis\Client|\Redis $redis The redis instance - * @param string $key The key name to push records to - * @param string|int $level The minimum logging level at which this handler will be triggered - * @param bool $bubble Whether the messages that are handled can bubble up the stack or not - * @param int $capSize Number of entries to limit list size to, 0 = unlimited - */ - public function __construct($redis, string $key, $level = Logger::DEBUG, bool $bubble = true, int $capSize = 0) - { - if (!(($redis instanceof \Predis\Client) || ($redis instanceof \Redis))) { - throw new \InvalidArgumentException('Predis\Client or Redis instance required'); - } - - $this->redisClient = $redis; - $this->redisKey = $key; - $this->capSize = $capSize; - - parent::__construct($level, $bubble); - } - - /** - * {@inheritDoc} - */ - protected function write(array $record): void - { - if ($this->capSize) { - $this->writeCapped($record); - } else { - $this->redisClient->rpush($this->redisKey, $record["formatted"]); - } - } - - /** - * Write and cap the collection - * Writes the record to the redis list and caps its - */ - protected function writeCapped(array $record): void - { - if ($this->redisClient instanceof \Redis) { - $mode = defined('\Redis::MULTI') ? \Redis::MULTI : 1; - $this->redisClient->multi($mode) - ->rpush($this->redisKey, $record["formatted"]) - ->ltrim($this->redisKey, -$this->capSize, -1) - ->exec(); - } else { - $redisKey = $this->redisKey; - $capSize = $this->capSize; - $this->redisClient->transaction(function ($tx) use ($record, $redisKey, $capSize) { - $tx->rpush($redisKey, $record["formatted"]); - $tx->ltrim($redisKey, -$capSize, -1); - }); - } - } - - /** - * {@inheritDoc} - */ - protected function getDefaultFormatter(): FormatterInterface - { - return new LineFormatter(); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/RollbarHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/RollbarHandler.php deleted file mode 100644 index 979d651e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/RollbarHandler.php +++ /dev/null @@ -1,130 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use Rollbar\RollbarLogger; -use Throwable; -use Monolog\Logger; - -/** - * Sends errors to Rollbar - * - * If the context data contains a `payload` key, that is used as an array - * of payload options to RollbarLogger's log method. - * - * Rollbar's context info will contain the context + extra keys from the log record - * merged, and then on top of that a few keys: - * - * - level (rollbar level name) - * - monolog_level (monolog level name, raw level, as rollbar only has 5 but monolog 8) - * - channel - * - datetime (unix timestamp) - * - * @author Paul Statezny - */ -class RollbarHandler extends AbstractProcessingHandler -{ - /** - * @var RollbarLogger - */ - protected $rollbarLogger; - - protected $levelMap = [ - Logger::DEBUG => 'debug', - Logger::INFO => 'info', - Logger::NOTICE => 'info', - Logger::WARNING => 'warning', - Logger::ERROR => 'error', - Logger::CRITICAL => 'critical', - Logger::ALERT => 'critical', - Logger::EMERGENCY => 'critical', - ]; - - /** - * Records whether any log records have been added since the last flush of the rollbar notifier - * - * @var bool - */ - private $hasRecords = false; - - protected $initialized = false; - - /** - * @param RollbarLogger $rollbarLogger RollbarLogger object constructed with valid token - * @param string|int $level The minimum logging level at which this handler will be triggered - * @param bool $bubble Whether the messages that are handled can bubble up the stack or not - */ - public function __construct(RollbarLogger $rollbarLogger, $level = Logger::ERROR, bool $bubble = true) - { - $this->rollbarLogger = $rollbarLogger; - - parent::__construct($level, $bubble); - } - - /** - * {@inheritdoc} - */ - protected function write(array $record): void - { - if (!$this->initialized) { - // __destructor() doesn't get called on Fatal errors - register_shutdown_function(array($this, 'close')); - $this->initialized = true; - } - - $context = $record['context']; - $context = array_merge($context, $record['extra'], [ - 'level' => $this->levelMap[$record['level']], - 'monolog_level' => $record['level_name'], - 'channel' => $record['channel'], - 'datetime' => $record['datetime']->format('U'), - ]); - - if (isset($context['exception']) && $context['exception'] instanceof Throwable) { - $exception = $context['exception']; - unset($context['exception']); - $toLog = $exception; - } else { - $toLog = $record['message']; - } - - $this->rollbarLogger->log($context['level'], $toLog, $context); - - $this->hasRecords = true; - } - - public function flush(): void - { - if ($this->hasRecords) { - $this->rollbarLogger->flush(); - $this->hasRecords = false; - } - } - - /** - * {@inheritdoc} - */ - public function close(): void - { - $this->flush(); - } - - /** - * {@inheritdoc} - */ - public function reset() - { - $this->flush(); - - parent::reset(); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/RotatingFileHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/RotatingFileHandler.php deleted file mode 100644 index c1ff25b5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/RotatingFileHandler.php +++ /dev/null @@ -1,193 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use InvalidArgumentException; -use Monolog\Logger; - -/** - * Stores logs to files that are rotated every day and a limited number of files are kept. - * - * This rotation is only intended to be used as a workaround. Using logrotate to - * handle the rotation is strongly encouraged when you can use it. - * - * @author Christophe Coevoet - * @author Jordi Boggiano - */ -class RotatingFileHandler extends StreamHandler -{ - public const FILE_PER_DAY = 'Y-m-d'; - public const FILE_PER_MONTH = 'Y-m'; - public const FILE_PER_YEAR = 'Y'; - - protected $filename; - protected $maxFiles; - protected $mustRotate; - protected $nextRotation; - protected $filenameFormat; - protected $dateFormat; - - /** - * @param string $filename - * @param int $maxFiles The maximal amount of files to keep (0 means unlimited) - * @param string|int $level The minimum logging level at which this handler will be triggered - * @param bool $bubble Whether the messages that are handled can bubble up the stack or not - * @param int|null $filePermission Optional file permissions (default (0644) are only for owner read/write) - * @param bool $useLocking Try to lock log file before doing any writes - */ - public function __construct(string $filename, int $maxFiles = 0, $level = Logger::DEBUG, bool $bubble = true, ?int $filePermission = null, bool $useLocking = false) - { - $this->filename = $filename; - $this->maxFiles = $maxFiles; - $this->nextRotation = new \DateTimeImmutable('tomorrow'); - $this->filenameFormat = '{filename}-{date}'; - $this->dateFormat = static::FILE_PER_DAY; - - parent::__construct($this->getTimedFilename(), $level, $bubble, $filePermission, $useLocking); - } - - /** - * {@inheritdoc} - */ - public function close(): void - { - parent::close(); - - if (true === $this->mustRotate) { - $this->rotate(); - } - } - - /** - * {@inheritdoc} - */ - public function reset() - { - parent::reset(); - - if (true === $this->mustRotate) { - $this->rotate(); - } - } - - public function setFilenameFormat(string $filenameFormat, string $dateFormat): self - { - if (!preg_match('{^[Yy](([/_.-]?m)([/_.-]?d)?)?$}', $dateFormat)) { - throw new InvalidArgumentException( - 'Invalid date format - format must be one of '. - 'RotatingFileHandler::FILE_PER_DAY ("Y-m-d"), RotatingFileHandler::FILE_PER_MONTH ("Y-m") '. - 'or RotatingFileHandler::FILE_PER_YEAR ("Y"), or you can set one of the '. - 'date formats using slashes, underscores and/or dots instead of dashes.' - ); - } - if (substr_count($filenameFormat, '{date}') === 0) { - throw new InvalidArgumentException( - 'Invalid filename format - format must contain at least `{date}`, because otherwise rotating is impossible.' - ); - } - $this->filenameFormat = $filenameFormat; - $this->dateFormat = $dateFormat; - $this->url = $this->getTimedFilename(); - $this->close(); - - return $this; - } - - /** - * {@inheritdoc} - */ - protected function write(array $record): void - { - // on the first record written, if the log is new, we should rotate (once per day) - if (null === $this->mustRotate) { - $this->mustRotate = !file_exists($this->url); - } - - if ($this->nextRotation <= $record['datetime']) { - $this->mustRotate = true; - $this->close(); - } - - parent::write($record); - } - - /** - * Rotates the files. - */ - protected function rotate(): void - { - // update filename - $this->url = $this->getTimedFilename(); - $this->nextRotation = new \DateTimeImmutable('tomorrow'); - - // skip GC of old logs if files are unlimited - if (0 === $this->maxFiles) { - return; - } - - $logFiles = glob($this->getGlobPattern()); - if ($this->maxFiles >= count($logFiles)) { - // no files to remove - return; - } - - // Sorting the files by name to remove the older ones - usort($logFiles, function ($a, $b) { - return strcmp($b, $a); - }); - - foreach (array_slice($logFiles, $this->maxFiles) as $file) { - if (is_writable($file)) { - // suppress errors here as unlink() might fail if two processes - // are cleaning up/rotating at the same time - set_error_handler(function (int $errno, string $errstr, string $errfile, int $errline): bool { - return false; - }); - unlink($file); - restore_error_handler(); - } - } - - $this->mustRotate = false; - } - - protected function getTimedFilename(): string - { - $fileInfo = pathinfo($this->filename); - $timedFilename = str_replace( - ['{filename}', '{date}'], - [$fileInfo['filename'], date($this->dateFormat)], - $fileInfo['dirname'] . '/' . $this->filenameFormat - ); - - if (!empty($fileInfo['extension'])) { - $timedFilename .= '.'.$fileInfo['extension']; - } - - return $timedFilename; - } - - protected function getGlobPattern(): string - { - $fileInfo = pathinfo($this->filename); - $glob = str_replace( - ['{filename}', '{date}'], - [$fileInfo['filename'], '[0-9][0-9][0-9][0-9]*'], - $fileInfo['dirname'] . '/' . $this->filenameFormat - ); - if (!empty($fileInfo['extension'])) { - $glob .= '.'.$fileInfo['extension']; - } - - return $glob; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/SamplingHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/SamplingHandler.php deleted file mode 100644 index 29647873..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/SamplingHandler.php +++ /dev/null @@ -1,113 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use Monolog\Formatter\FormatterInterface; - -/** - * Sampling handler - * - * A sampled event stream can be useful for logging high frequency events in - * a production environment where you only need an idea of what is happening - * and are not concerned with capturing every occurrence. Since the decision to - * handle or not handle a particular event is determined randomly, the - * resulting sampled log is not guaranteed to contain 1/N of the events that - * occurred in the application, but based on the Law of large numbers, it will - * tend to be close to this ratio with a large number of attempts. - * - * @author Bryan Davis - * @author Kunal Mehta - */ -class SamplingHandler extends AbstractHandler implements ProcessableHandlerInterface, FormattableHandlerInterface -{ - use ProcessableHandlerTrait; - - /** - * @var callable|HandlerInterface $handler - */ - protected $handler; - - /** - * @var int $factor - */ - protected $factor; - - /** - * @param callable|HandlerInterface $handler Handler or factory callable($record|null, $samplingHandler). - * @param int $factor Sample factor (e.g. 10 means every ~10th record is sampled) - */ - public function __construct($handler, int $factor) - { - parent::__construct(); - $this->handler = $handler; - $this->factor = $factor; - - if (!$this->handler instanceof HandlerInterface && !is_callable($this->handler)) { - throw new \RuntimeException("The given handler (".json_encode($this->handler).") is not a callable nor a Monolog\Handler\HandlerInterface object"); - } - } - - public function isHandling(array $record): bool - { - return $this->getHandler($record)->isHandling($record); - } - - public function handle(array $record): bool - { - if ($this->isHandling($record) && mt_rand(1, $this->factor) === 1) { - if ($this->processors) { - $record = $this->processRecord($record); - } - - $this->getHandler($record)->handle($record); - } - - return false === $this->bubble; - } - - /** - * Return the nested handler - * - * If the handler was provided as a factory callable, this will trigger the handler's instantiation. - * - * @return HandlerInterface - */ - public function getHandler(array $record = null) - { - if (!$this->handler instanceof HandlerInterface) { - $this->handler = call_user_func($this->handler, $record, $this); - if (!$this->handler instanceof HandlerInterface) { - throw new \RuntimeException("The factory callable should return a HandlerInterface"); - } - } - - return $this->handler; - } - - /** - * {@inheritdoc} - */ - public function setFormatter(FormatterInterface $formatter): HandlerInterface - { - $this->getHandler()->setFormatter($formatter); - - return $this; - } - - /** - * {@inheritdoc} - */ - public function getFormatter(): FormatterInterface - { - return $this->getHandler()->getFormatter(); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/SendGridHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/SendGridHandler.php deleted file mode 100644 index c154a5d1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/SendGridHandler.php +++ /dev/null @@ -1,100 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use Monolog\Logger; - -/** - * SendGridrHandler uses the SendGrid API v2 function to send Log emails, more information in https://sendgrid.com/docs/API_Reference/Web_API/mail.html - * - * @author Ricardo Fontanelli - */ -class SendGridHandler extends MailHandler -{ - /** - * The SendGrid API User - * @var string - */ - protected $apiUser; - - /** - * The SendGrid API Key - * @var string - */ - protected $apiKey; - - /** - * The email addresses to which the message will be sent - * @var string - */ - protected $from; - - /** - * The email addresses to which the message will be sent - * @var array - */ - protected $to; - - /** - * The subject of the email - * @var string - */ - protected $subject; - - /** - * @param string $apiUser The SendGrid API User - * @param string $apiKey The SendGrid API Key - * @param string $from The sender of the email - * @param string|array $to The recipients of the email - * @param string $subject The subject of the mail - * @param int $level The minimum logging level at which this handler will be triggered - * @param bool $bubble Whether the messages that are handled can bubble up the stack or not - */ - public function __construct(string $apiUser, string $apiKey, string $from, $to, string $subject, int $level = Logger::ERROR, bool $bubble = true) - { - parent::__construct($level, $bubble); - $this->apiUser = $apiUser; - $this->apiKey = $apiKey; - $this->from = $from; - $this->to = (array) $to; - $this->subject = $subject; - } - - /** - * {@inheritdoc} - */ - protected function send(string $content, array $records): void - { - $message = []; - $message['api_user'] = $this->apiUser; - $message['api_key'] = $this->apiKey; - $message['from'] = $this->from; - foreach ($this->to as $recipient) { - $message['to[]'] = $recipient; - } - $message['subject'] = $this->subject; - $message['date'] = date('r'); - - if ($this->isHtmlBody($content)) { - $message['html'] = $content; - } else { - $message['text'] = $content; - } - - $ch = curl_init(); - curl_setopt($ch, CURLOPT_URL, 'https://api.sendgrid.com/api/mail.send.json'); - curl_setopt($ch, CURLOPT_POST, 1); - curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); - curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($message)); - Curl\Util::execute($ch, 2); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/Slack/SlackRecord.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/Slack/SlackRecord.php deleted file mode 100644 index b74a22fb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/Slack/SlackRecord.php +++ /dev/null @@ -1,356 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler\Slack; - -use Monolog\Logger; -use Monolog\Utils; -use Monolog\Formatter\NormalizerFormatter; -use Monolog\Formatter\FormatterInterface; - -/** - * Slack record utility helping to log to Slack webhooks or API. - * - * @author Greg Kedzierski - * @author Haralan Dobrev - * @see https://api.slack.com/incoming-webhooks - * @see https://api.slack.com/docs/message-attachments - */ -class SlackRecord -{ - public const COLOR_DANGER = 'danger'; - - public const COLOR_WARNING = 'warning'; - - public const COLOR_GOOD = 'good'; - - public const COLOR_DEFAULT = '#e3e4e6'; - - /** - * Slack channel (encoded ID or name) - * @var string|null - */ - private $channel; - - /** - * Name of a bot - * @var string|null - */ - private $username; - - /** - * User icon e.g. 'ghost', 'http://example.com/user.png' - * @var string|null - */ - private $userIcon; - - /** - * Whether the message should be added to Slack as attachment (plain text otherwise) - * @var bool - */ - private $useAttachment; - - /** - * Whether the the context/extra messages added to Slack as attachments are in a short style - * @var bool - */ - private $useShortAttachment; - - /** - * Whether the attachment should include context and extra data - * @var bool - */ - private $includeContextAndExtra; - - /** - * Dot separated list of fields to exclude from slack message. E.g. ['context.field1', 'extra.field2'] - * @var array - */ - private $excludeFields; - - /** - * @var FormatterInterface - */ - private $formatter; - - /** - * @var NormalizerFormatter - */ - private $normalizerFormatter; - - public function __construct( - ?string $channel = null, - ?string $username = null, - bool $useAttachment = true, - ?string $userIcon = null, - bool $useShortAttachment = false, - bool $includeContextAndExtra = false, - array $excludeFields = array(), - FormatterInterface $formatter = null - ) { - $this - ->setChannel($channel) - ->setUsername($username) - ->useAttachment($useAttachment) - ->setUserIcon($userIcon) - ->useShortAttachment($useShortAttachment) - ->includeContextAndExtra($includeContextAndExtra) - ->excludeFields($excludeFields) - ->setFormatter($formatter); - - if ($this->includeContextAndExtra) { - $this->normalizerFormatter = new NormalizerFormatter(); - } - } - - /** - * Returns required data in format that Slack - * is expecting. - */ - public function getSlackData(array $record): array - { - $dataArray = array(); - $record = $this->removeExcludedFields($record); - - if ($this->username) { - $dataArray['username'] = $this->username; - } - - if ($this->channel) { - $dataArray['channel'] = $this->channel; - } - - if ($this->formatter && !$this->useAttachment) { - $message = $this->formatter->format($record); - } else { - $message = $record['message']; - } - - if ($this->useAttachment) { - $attachment = array( - 'fallback' => $message, - 'text' => $message, - 'color' => $this->getAttachmentColor($record['level']), - 'fields' => array(), - 'mrkdwn_in' => array('fields'), - 'ts' => $record['datetime']->getTimestamp(), - ); - - if ($this->useShortAttachment) { - $attachment['title'] = $record['level_name']; - } else { - $attachment['title'] = 'Message'; - $attachment['fields'][] = $this->generateAttachmentField('Level', $record['level_name']); - } - - if ($this->includeContextAndExtra) { - foreach (array('extra', 'context') as $key) { - if (empty($record[$key])) { - continue; - } - - if ($this->useShortAttachment) { - $attachment['fields'][] = $this->generateAttachmentField( - (string) $key, - $record[$key] - ); - } else { - // Add all extra fields as individual fields in attachment - $attachment['fields'] = array_merge( - $attachment['fields'], - $this->generateAttachmentFields($record[$key]) - ); - } - } - } - - $dataArray['attachments'] = array($attachment); - } else { - $dataArray['text'] = $message; - } - - if ($this->userIcon) { - if (filter_var($this->userIcon, FILTER_VALIDATE_URL)) { - $dataArray['icon_url'] = $this->userIcon; - } else { - $dataArray['icon_emoji'] = ":{$this->userIcon}:"; - } - } - - return $dataArray; - } - - /** - * Returns a Slack message attachment color associated with - * provided level. - */ - public function getAttachmentColor(int $level): string - { - switch (true) { - case $level >= Logger::ERROR: - return static::COLOR_DANGER; - case $level >= Logger::WARNING: - return static::COLOR_WARNING; - case $level >= Logger::INFO: - return static::COLOR_GOOD; - default: - return static::COLOR_DEFAULT; - } - } - - /** - * Stringifies an array of key/value pairs to be used in attachment fields - */ - public function stringify(array $fields): string - { - $normalized = $this->normalizerFormatter->format($fields); - - $hasSecondDimension = count(array_filter($normalized, 'is_array')); - $hasNonNumericKeys = !count(array_filter(array_keys($normalized), 'is_numeric')); - - return $hasSecondDimension || $hasNonNumericKeys - ? Utils::jsonEncode($normalized, JSON_PRETTY_PRINT|Utils::DEFAULT_JSON_FLAGS) - : Utils::jsonEncode($normalized, Utils::DEFAULT_JSON_FLAGS); - } - - /** - * Channel used by the bot when posting - * - * @param ?string $channel - * - * @return SlackHandler - */ - public function setChannel(?string $channel = null): self - { - $this->channel = $channel; - - return $this; - } - - /** - * Username used by the bot when posting - * - * @param ?string $username - * - * @return SlackHandler - */ - public function setUsername(?string $username = null): self - { - $this->username = $username; - - return $this; - } - - public function useAttachment(bool $useAttachment = true): self - { - $this->useAttachment = $useAttachment; - - return $this; - } - - public function setUserIcon(?string $userIcon = null): self - { - $this->userIcon = $userIcon; - - if (\is_string($userIcon)) { - $this->userIcon = trim($userIcon, ':'); - } - - return $this; - } - - public function useShortAttachment(bool $useShortAttachment = false): self - { - $this->useShortAttachment = $useShortAttachment; - - return $this; - } - - public function includeContextAndExtra(bool $includeContextAndExtra = false): self - { - $this->includeContextAndExtra = $includeContextAndExtra; - - if ($this->includeContextAndExtra) { - $this->normalizerFormatter = new NormalizerFormatter(); - } - - return $this; - } - - public function excludeFields(array $excludeFields = []): self - { - $this->excludeFields = $excludeFields; - - return $this; - } - - public function setFormatter(?FormatterInterface $formatter = null): self - { - $this->formatter = $formatter; - - return $this; - } - - /** - * Generates attachment field - * - * @param string|array $value - */ - private function generateAttachmentField(string $title, $value): array - { - $value = is_array($value) - ? sprintf('```%s```', substr($this->stringify($value), 0, 1990)) - : $value; - - return array( - 'title' => ucfirst($title), - 'value' => $value, - 'short' => false, - ); - } - - /** - * Generates a collection of attachment fields from array - */ - private function generateAttachmentFields(array $data): array - { - $fields = array(); - foreach ($this->normalizerFormatter->format($data) as $key => $value) { - $fields[] = $this->generateAttachmentField((string) $key, $value); - } - - return $fields; - } - - /** - * Get a copy of record with fields excluded according to $this->excludeFields - */ - private function removeExcludedFields(array $record): array - { - foreach ($this->excludeFields as $field) { - $keys = explode('.', $field); - $node = &$record; - $lastKey = end($keys); - foreach ($keys as $key) { - if (!isset($node[$key])) { - break; - } - if ($lastKey === $key) { - unset($node[$key]); - break; - } - $node = &$node[$key]; - } - } - - return $record; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/SlackHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/SlackHandler.php deleted file mode 100644 index c2b93e61..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/SlackHandler.php +++ /dev/null @@ -1,233 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use Monolog\Formatter\FormatterInterface; -use Monolog\Logger; -use Monolog\Utils; -use Monolog\Handler\Slack\SlackRecord; - -/** - * Sends notifications through Slack API - * - * @author Greg Kedzierski - * @see https://api.slack.com/ - */ -class SlackHandler extends SocketHandler -{ - /** - * Slack API token - * @var string - */ - private $token; - - /** - * Instance of the SlackRecord util class preparing data for Slack API. - * @var SlackRecord - */ - private $slackRecord; - - /** - * @param string $token Slack API token - * @param string $channel Slack channel (encoded ID or name) - * @param string|null $username Name of a bot - * @param bool $useAttachment Whether the message should be added to Slack as attachment (plain text otherwise) - * @param string|null $iconEmoji The emoji name to use (or null) - * @param int $level The minimum logging level at which this handler will be triggered - * @param bool $bubble Whether the messages that are handled can bubble up the stack or not - * @param bool $useShortAttachment Whether the the context/extra messages added to Slack as attachments are in a short style - * @param bool $includeContextAndExtra Whether the attachment should include context and extra data - * @param array $excludeFields Dot separated list of fields to exclude from slack message. E.g. ['context.field1', 'extra.field2'] - * @throws MissingExtensionException If no OpenSSL PHP extension configured - */ - public function __construct( - string $token, - string $channel, - ?string $username = null, - bool $useAttachment = true, - ?string $iconEmoji = null, - $level = Logger::CRITICAL, - bool $bubble = true, - bool $useShortAttachment = false, - bool $includeContextAndExtra = false, - array $excludeFields = array() - ) { - if (!extension_loaded('openssl')) { - throw new MissingExtensionException('The OpenSSL PHP extension is required to use the SlackHandler'); - } - - parent::__construct('ssl://slack.com:443', $level, $bubble); - - $this->slackRecord = new SlackRecord( - $channel, - $username, - $useAttachment, - $iconEmoji, - $useShortAttachment, - $includeContextAndExtra, - $excludeFields - ); - - $this->token = $token; - } - - public function getSlackRecord(): SlackRecord - { - return $this->slackRecord; - } - - public function getToken(): string - { - return $this->token; - } - - /** - * {@inheritdoc} - */ - protected function generateDataStream(array $record): string - { - $content = $this->buildContent($record); - - return $this->buildHeader($content) . $content; - } - - /** - * Builds the body of API call - */ - private function buildContent(array $record): string - { - $dataArray = $this->prepareContentData($record); - - return http_build_query($dataArray); - } - - protected function prepareContentData(array $record): array - { - $dataArray = $this->slackRecord->getSlackData($record); - $dataArray['token'] = $this->token; - - if (!empty($dataArray['attachments'])) { - $dataArray['attachments'] = Utils::jsonEncode($dataArray['attachments']); - } - - return $dataArray; - } - - /** - * Builds the header of the API Call - */ - private function buildHeader(string $content): string - { - $header = "POST /api/chat.postMessage HTTP/1.1\r\n"; - $header .= "Host: slack.com\r\n"; - $header .= "Content-Type: application/x-www-form-urlencoded\r\n"; - $header .= "Content-Length: " . strlen($content) . "\r\n"; - $header .= "\r\n"; - - return $header; - } - - /** - * {@inheritdoc} - */ - protected function write(array $record): void - { - parent::write($record); - $this->finalizeWrite(); - } - - /** - * Finalizes the request by reading some bytes and then closing the socket - * - * If we do not read some but close the socket too early, slack sometimes - * drops the request entirely. - */ - protected function finalizeWrite(): void - { - $res = $this->getResource(); - if (is_resource($res)) { - @fread($res, 2048); - } - $this->closeSocket(); - } - - public function setFormatter(FormatterInterface $formatter): HandlerInterface - { - parent::setFormatter($formatter); - $this->slackRecord->setFormatter($formatter); - - return $this; - } - - public function getFormatter(): FormatterInterface - { - $formatter = parent::getFormatter(); - $this->slackRecord->setFormatter($formatter); - - return $formatter; - } - - /** - * Channel used by the bot when posting - */ - public function setChannel(string $channel): self - { - $this->slackRecord->setChannel($channel); - - return $this; - } - - /** - * Username used by the bot when posting - */ - public function setUsername(string $username): self - { - $this->slackRecord->setUsername($username); - - return $this; - } - - public function useAttachment(bool $useAttachment): self - { - $this->slackRecord->useAttachment($useAttachment); - - return $this; - } - - public function setIconEmoji(string $iconEmoji): self - { - $this->slackRecord->setUserIcon($iconEmoji); - - return $this; - } - - public function useShortAttachment(bool $useShortAttachment): self - { - $this->slackRecord->useShortAttachment($useShortAttachment); - - return $this; - } - - public function includeContextAndExtra(bool $includeContextAndExtra): self - { - $this->slackRecord->includeContextAndExtra($includeContextAndExtra); - - return $this; - } - - public function excludeFields(array $excludeFields): self - { - $this->slackRecord->excludeFields($excludeFields); - - return $this; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/SlackWebhookHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/SlackWebhookHandler.php deleted file mode 100644 index 17d12b06..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/SlackWebhookHandler.php +++ /dev/null @@ -1,130 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use Monolog\Formatter\FormatterInterface; -use Monolog\Logger; -use Monolog\Utils; -use Monolog\Handler\Slack\SlackRecord; - -/** - * Sends notifications through Slack Webhooks - * - * @author Haralan Dobrev - * @see https://api.slack.com/incoming-webhooks - */ -class SlackWebhookHandler extends AbstractProcessingHandler -{ - /** - * Slack Webhook token - * @var string - */ - private $webhookUrl; - - /** - * Instance of the SlackRecord util class preparing data for Slack API. - * @var SlackRecord - */ - private $slackRecord; - - /** - * @param string $webhookUrl Slack Webhook URL - * @param string|null $channel Slack channel (encoded ID or name) - * @param string|null $username Name of a bot - * @param bool $useAttachment Whether the message should be added to Slack as attachment (plain text otherwise) - * @param string|null $iconEmoji The emoji name to use (or null) - * @param bool $useShortAttachment Whether the the context/extra messages added to Slack as attachments are in a short style - * @param bool $includeContextAndExtra Whether the attachment should include context and extra data - * @param string|int $level The minimum logging level at which this handler will be triggered - * @param bool $bubble Whether the messages that are handled can bubble up the stack or not - * @param array $excludeFields Dot separated list of fields to exclude from slack message. E.g. ['context.field1', 'extra.field2'] - */ - public function __construct( - string $webhookUrl, - ?string $channel = null, - ?string $username = null, - bool $useAttachment = true, - ?string $iconEmoji = null, - bool $useShortAttachment = false, - bool $includeContextAndExtra = false, - $level = Logger::CRITICAL, - bool $bubble = true, - array $excludeFields = array() - ) { - parent::__construct($level, $bubble); - - $this->webhookUrl = $webhookUrl; - - $this->slackRecord = new SlackRecord( - $channel, - $username, - $useAttachment, - $iconEmoji, - $useShortAttachment, - $includeContextAndExtra, - $excludeFields - ); - } - - public function getSlackRecord(): SlackRecord - { - return $this->slackRecord; - } - - public function getWebhookUrl(): string - { - return $this->webhookUrl; - } - - /** - * {@inheritdoc} - * - * @param array $record - */ - protected function write(array $record): void - { - $postData = $this->slackRecord->getSlackData($record); - $postString = Utils::jsonEncode($postData); - - $ch = curl_init(); - $options = array( - CURLOPT_URL => $this->webhookUrl, - CURLOPT_POST => true, - CURLOPT_RETURNTRANSFER => true, - CURLOPT_HTTPHEADER => array('Content-type: application/json'), - CURLOPT_POSTFIELDS => $postString, - ); - if (defined('CURLOPT_SAFE_UPLOAD')) { - $options[CURLOPT_SAFE_UPLOAD] = true; - } - - curl_setopt_array($ch, $options); - - Curl\Util::execute($ch); - } - - public function setFormatter(FormatterInterface $formatter): HandlerInterface - { - parent::setFormatter($formatter); - $this->slackRecord->setFormatter($formatter); - - return $this; - } - - public function getFormatter(): FormatterInterface - { - $formatter = parent::getFormatter(); - $this->slackRecord->setFormatter($formatter); - - return $formatter; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/SocketHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/SocketHandler.php deleted file mode 100644 index 2861e67d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/SocketHandler.php +++ /dev/null @@ -1,379 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use Monolog\Logger; - -/** - * Stores to any socket - uses fsockopen() or pfsockopen(). - * - * @author Pablo de Leon Belloc - * @see http://php.net/manual/en/function.fsockopen.php - */ -class SocketHandler extends AbstractProcessingHandler -{ - private $connectionString; - private $connectionTimeout; - /** @var resource|null */ - private $resource; - /** @var float */ - private $timeout = 0; - /** @var float */ - private $writingTimeout = 10; - private $lastSentBytes = null; - /** @var int */ - private $chunkSize = null; - private $persistent = false; - private $errno; - private $errstr; - private $lastWritingAt; - - /** - * @param string $connectionString Socket connection string - * @param int|string $level The minimum logging level at which this handler will be triggered - * @param bool $bubble Whether the messages that are handled can bubble up the stack or not - */ - public function __construct(string $connectionString, $level = Logger::DEBUG, bool $bubble = true) - { - parent::__construct($level, $bubble); - $this->connectionString = $connectionString; - $this->connectionTimeout = (float) ini_get('default_socket_timeout'); - } - - /** - * Connect (if necessary) and write to the socket - * - * @param array $record - * - * @throws \UnexpectedValueException - * @throws \RuntimeException - */ - protected function write(array $record): void - { - $this->connectIfNotConnected(); - $data = $this->generateDataStream($record); - $this->writeToSocket($data); - } - - /** - * We will not close a PersistentSocket instance so it can be reused in other requests. - */ - public function close(): void - { - if (!$this->isPersistent()) { - $this->closeSocket(); - } - } - - /** - * Close socket, if open - */ - public function closeSocket(): void - { - if (is_resource($this->resource)) { - fclose($this->resource); - $this->resource = null; - } - } - - /** - * Set socket connection to be persistent. It only has effect before the connection is initiated. - */ - public function setPersistent(bool $persistent): self - { - $this->persistent = $persistent; - - return $this; - } - - /** - * Set connection timeout. Only has effect before we connect. - * - * @see http://php.net/manual/en/function.fsockopen.php - */ - public function setConnectionTimeout(float $seconds): self - { - $this->validateTimeout($seconds); - $this->connectionTimeout = $seconds; - - return $this; - } - - /** - * Set write timeout. Only has effect before we connect. - * - * @see http://php.net/manual/en/function.stream-set-timeout.php - */ - public function setTimeout(float $seconds): self - { - $this->validateTimeout($seconds); - $this->timeout = $seconds; - - return $this; - } - - /** - * Set writing timeout. Only has effect during connection in the writing cycle. - * - * @param float $seconds 0 for no timeout - */ - public function setWritingTimeout(float $seconds): self - { - $this->validateTimeout($seconds); - $this->writingTimeout = $seconds; - - return $this; - } - - /** - * Set chunk size. Only has effect during connection in the writing cycle. - */ - public function setChunkSize(int $bytes): self - { - $this->chunkSize = $bytes; - - return $this; - } - - /** - * Get current connection string - */ - public function getConnectionString(): string - { - return $this->connectionString; - } - - /** - * Get persistent setting - */ - public function isPersistent(): bool - { - return $this->persistent; - } - - /** - * Get current connection timeout setting - */ - public function getConnectionTimeout(): float - { - return $this->connectionTimeout; - } - - /** - * Get current in-transfer timeout - */ - public function getTimeout(): float - { - return $this->timeout; - } - - /** - * Get current local writing timeout - * - * @return float - */ - public function getWritingTimeout(): float - { - return $this->writingTimeout; - } - - /** - * Get current chunk size - */ - public function getChunkSize(): int - { - return $this->chunkSize; - } - - /** - * Check to see if the socket is currently available. - * - * UDP might appear to be connected but might fail when writing. See http://php.net/fsockopen for details. - */ - public function isConnected(): bool - { - return is_resource($this->resource) - && !feof($this->resource); // on TCP - other party can close connection. - } - - /** - * Wrapper to allow mocking - */ - protected function pfsockopen() - { - return @pfsockopen($this->connectionString, -1, $this->errno, $this->errstr, $this->connectionTimeout); - } - - /** - * Wrapper to allow mocking - */ - protected function fsockopen() - { - return @fsockopen($this->connectionString, -1, $this->errno, $this->errstr, $this->connectionTimeout); - } - - /** - * Wrapper to allow mocking - * - * @see http://php.net/manual/en/function.stream-set-timeout.php - */ - protected function streamSetTimeout() - { - $seconds = floor($this->timeout); - $microseconds = round(($this->timeout - $seconds) * 1e6); - - return stream_set_timeout($this->resource, (int) $seconds, (int) $microseconds); - } - - /** - * Wrapper to allow mocking - * - * @see http://php.net/manual/en/function.stream-set-chunk-size.php - */ - protected function streamSetChunkSize() - { - return stream_set_chunk_size($this->resource, $this->chunkSize); - } - - /** - * Wrapper to allow mocking - */ - protected function fwrite($data) - { - return @fwrite($this->resource, $data); - } - - /** - * Wrapper to allow mocking - */ - protected function streamGetMetadata() - { - return stream_get_meta_data($this->resource); - } - - private function validateTimeout($value) - { - $ok = filter_var($value, FILTER_VALIDATE_FLOAT); - if ($ok === false || $value < 0) { - throw new \InvalidArgumentException("Timeout must be 0 or a positive float (got $value)"); - } - } - - private function connectIfNotConnected() - { - if ($this->isConnected()) { - return; - } - $this->connect(); - } - - protected function generateDataStream(array $record): string - { - return (string) $record['formatted']; - } - - /** - * @return resource|null - */ - protected function getResource() - { - return $this->resource; - } - - private function connect(): void - { - $this->createSocketResource(); - $this->setSocketTimeout(); - $this->setStreamChunkSize(); - } - - private function createSocketResource(): void - { - if ($this->isPersistent()) { - $resource = $this->pfsockopen(); - } else { - $resource = $this->fsockopen(); - } - if (!$resource) { - throw new \UnexpectedValueException("Failed connecting to $this->connectionString ($this->errno: $this->errstr)"); - } - $this->resource = $resource; - } - - private function setSocketTimeout(): void - { - if (!$this->streamSetTimeout()) { - throw new \UnexpectedValueException("Failed setting timeout with stream_set_timeout()"); - } - } - - private function setStreamChunkSize(): void - { - if ($this->chunkSize && !$this->streamSetChunkSize()) { - throw new \UnexpectedValueException("Failed setting chunk size with stream_set_chunk_size()"); - } - } - - private function writeToSocket(string $data): void - { - $length = strlen($data); - $sent = 0; - $this->lastSentBytes = $sent; - while ($this->isConnected() && $sent < $length) { - if (0 == $sent) { - $chunk = $this->fwrite($data); - } else { - $chunk = $this->fwrite(substr($data, $sent)); - } - if ($chunk === false) { - throw new \RuntimeException("Could not write to socket"); - } - $sent += $chunk; - $socketInfo = $this->streamGetMetadata(); - if ($socketInfo['timed_out']) { - throw new \RuntimeException("Write timed-out"); - } - - if ($this->writingIsTimedOut($sent)) { - throw new \RuntimeException("Write timed-out, no data sent for `{$this->writingTimeout}` seconds, probably we got disconnected (sent $sent of $length)"); - } - } - if (!$this->isConnected() && $sent < $length) { - throw new \RuntimeException("End-of-file reached, probably we got disconnected (sent $sent of $length)"); - } - } - - private function writingIsTimedOut(int $sent): bool - { - $writingTimeout = (int) floor($this->writingTimeout); - if (0 === $writingTimeout) { - return false; - } - - if ($sent !== $this->lastSentBytes) { - $this->lastWritingAt = time(); - $this->lastSentBytes = $sent; - - return false; - } else { - usleep(100); - } - - if ((time() - $this->lastWritingAt) >= $writingTimeout) { - $this->closeSocket(); - - return true; - } - - return false; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/SqsHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/SqsHandler.php deleted file mode 100644 index a98c87bf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/SqsHandler.php +++ /dev/null @@ -1,64 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use Aws\Sqs\SqsClient; -use Monolog\Logger; -use Monolog\Utils; - -/** - * Writes to any sqs queue. - * - * @author Martijn van Calker - */ -class SqsHandler extends AbstractProcessingHandler -{ - /** 256 KB in bytes - maximum message size in SQS */ - protected const MAX_MESSAGE_SIZE = 262144; - /** 100 KB in bytes - head message size for new error log */ - protected const HEAD_MESSAGE_SIZE = 102400; - - /** @var SqsClient */ - private $client; - /** @var string */ - private $queueUrl; - - public function __construct(SqsClient $sqsClient, string $queueUrl, $level = Logger::DEBUG, bool $bubble = true) - { - parent::__construct($level, $bubble); - - $this->client = $sqsClient; - $this->queueUrl = $queueUrl; - } - - /** - * Writes the record down to the log of the implementing handler. - * - * @param array $record - */ - protected function write(array $record): void - { - if (!isset($record['formatted']) || 'string' !== gettype($record['formatted'])) { - throw new \InvalidArgumentException('SqsHandler accepts only formatted records as a string'); - } - - $messageBody = $record['formatted']; - if (strlen($messageBody) >= static::MAX_MESSAGE_SIZE) { - $messageBody = Utils::substr($messageBody, 0, static::HEAD_MESSAGE_SIZE); - } - - $this->client->sendMessage([ - 'QueueUrl' => $this->queueUrl, - 'MessageBody' => $messageBody, - ]); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php deleted file mode 100644 index 4cce3c39..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php +++ /dev/null @@ -1,176 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use Monolog\Logger; - -/** - * Stores to any stream resource - * - * Can be used to store into php://stderr, remote and local files, etc. - * - * @author Jordi Boggiano - */ -class StreamHandler extends AbstractProcessingHandler -{ - /** @var resource|null */ - protected $stream; - protected $url; - /** @var string|null */ - private $errorMessage; - protected $filePermission; - protected $useLocking; - private $dirCreated; - - /** - * @param resource|string $stream If a missing path can't be created, an UnexpectedValueException will be thrown on first write - * @param string|int $level The minimum logging level at which this handler will be triggered - * @param bool $bubble Whether the messages that are handled can bubble up the stack or not - * @param int|null $filePermission Optional file permissions (default (0644) are only for owner read/write) - * @param bool $useLocking Try to lock log file before doing any writes - * - * @throws \InvalidArgumentException If stream is not a resource or string - */ - public function __construct($stream, $level = Logger::DEBUG, bool $bubble = true, ?int $filePermission = null, bool $useLocking = false) - { - parent::__construct($level, $bubble); - if (is_resource($stream)) { - $this->stream = $stream; - } elseif (is_string($stream)) { - $this->url = $stream; - } else { - throw new \InvalidArgumentException('A stream must either be a resource or a string.'); - } - - $this->filePermission = $filePermission; - $this->useLocking = $useLocking; - } - - /** - * {@inheritdoc} - */ - public function close(): void - { - if ($this->url && is_resource($this->stream)) { - fclose($this->stream); - } - $this->stream = null; - $this->dirCreated = null; - } - - /** - * Return the currently active stream if it is open - * - * @return resource|null - */ - public function getStream() - { - return $this->stream; - } - - /** - * Return the stream URL if it was configured with a URL and not an active resource - * - * @return string|null - */ - public function getUrl(): ?string - { - return $this->url; - } - - /** - * {@inheritdoc} - */ - protected function write(array $record): void - { - if (!is_resource($this->stream)) { - if (null === $this->url || '' === $this->url) { - throw new \LogicException('Missing stream url, the stream can not be opened. This may be caused by a premature call to close().'); - } - $this->createDir(); - $this->errorMessage = null; - set_error_handler([$this, 'customErrorHandler']); - $this->stream = fopen($this->url, 'a'); - if ($this->filePermission !== null) { - @chmod($this->url, $this->filePermission); - } - restore_error_handler(); - if (!is_resource($this->stream)) { - $this->stream = null; - - throw new \UnexpectedValueException(sprintf('The stream or file "%s" could not be opened: '.$this->errorMessage, $this->url)); - } - } - - if ($this->useLocking) { - // ignoring errors here, there's not much we can do about them - flock($this->stream, LOCK_EX); - } - - $this->streamWrite($this->stream, $record); - - if ($this->useLocking) { - flock($this->stream, LOCK_UN); - } - } - - /** - * Write to stream - * @param resource $stream - * @param array $record - */ - protected function streamWrite($stream, array $record): void - { - fwrite($stream, (string) $record['formatted']); - } - - private function customErrorHandler($code, $msg): bool - { - $this->errorMessage = preg_replace('{^(fopen|mkdir)\(.*?\): }', '', $msg); - - return true; - } - - private function getDirFromStream(string $stream): ?string - { - $pos = strpos($stream, '://'); - if ($pos === false) { - return dirname($stream); - } - - if ('file://' === substr($stream, 0, 7)) { - return dirname(substr($stream, 7)); - } - - return null; - } - - private function createDir(): void - { - // Do not try to create dir if it has already been tried. - if ($this->dirCreated) { - return; - } - - $dir = $this->getDirFromStream($this->url); - if (null !== $dir && !is_dir($dir)) { - $this->errorMessage = null; - set_error_handler([$this, 'customErrorHandler']); - $status = mkdir($dir, 0777, true); - restore_error_handler(); - if (false === $status && !is_dir($dir)) { - throw new \UnexpectedValueException(sprintf('There is no existing directory at "%s" and its not buildable: '.$this->errorMessage, $dir)); - } - } - $this->dirCreated = true; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/SwiftMailerHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/SwiftMailerHandler.php deleted file mode 100644 index 88279d11..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/SwiftMailerHandler.php +++ /dev/null @@ -1,102 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use Monolog\Logger; -use Monolog\Formatter\FormatterInterface; -use Monolog\Formatter\LineFormatter; -use Swift_Message; -use Swift; - -/** - * SwiftMailerHandler uses Swift_Mailer to send the emails - * - * @author Gyula Sallai - */ -class SwiftMailerHandler extends MailHandler -{ - protected $mailer; - private $messageTemplate; - - /** - * @param \Swift_Mailer $mailer The mailer to use - * @param callable|Swift_Message $message An example message for real messages, only the body will be replaced - * @param string|int $level The minimum logging level at which this handler will be triggered - * @param bool $bubble Whether the messages that are handled can bubble up the stack or not - */ - public function __construct(\Swift_Mailer $mailer, $message, $level = Logger::ERROR, bool $bubble = true) - { - parent::__construct($level, $bubble); - - $this->mailer = $mailer; - $this->messageTemplate = $message; - } - - /** - * {@inheritdoc} - */ - protected function send(string $content, array $records): void - { - $this->mailer->send($this->buildMessage($content, $records)); - } - - /** - * Gets the formatter for the Swift_Message subject. - * - * @param string $format The format of the subject - */ - protected function getSubjectFormatter(string $format): FormatterInterface - { - return new LineFormatter($format); - } - - /** - * Creates instance of Swift_Message to be sent - * - * @param string $content formatted email body to be sent - * @param array $records Log records that formed the content - * @return Swift_Message - */ - protected function buildMessage(string $content, array $records): Swift_Message - { - $message = null; - if ($this->messageTemplate instanceof Swift_Message) { - $message = clone $this->messageTemplate; - $message->generateId(); - } elseif (is_callable($this->messageTemplate)) { - $message = call_user_func($this->messageTemplate, $content, $records); - } - - if (!$message instanceof Swift_Message) { - throw new \InvalidArgumentException('Could not resolve message as instance of Swift_Message or a callable returning it'); - } - - if ($records) { - $subjectFormatter = $this->getSubjectFormatter($message->getSubject()); - $message->setSubject($subjectFormatter->format($this->getHighestRecord($records))); - } - - $mime = 'text/plain'; - if ($this->isHtmlBody($content)) { - $mime = 'text/html'; - } - - $message->setBody($content, $mime); - if (version_compare(Swift::VERSION, '6.0.0', '>=')) { - $message->setDate(new \DateTimeImmutable()); - } else { - $message->setDate(time()); - } - - return $message; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/SyslogHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/SyslogHandler.php deleted file mode 100644 index 20594ced..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/SyslogHandler.php +++ /dev/null @@ -1,67 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use Monolog\Logger; - -/** - * Logs to syslog service. - * - * usage example: - * - * $log = new Logger('application'); - * $syslog = new SyslogHandler('myfacility', 'local6'); - * $formatter = new LineFormatter("%channel%.%level_name%: %message% %extra%"); - * $syslog->setFormatter($formatter); - * $log->pushHandler($syslog); - * - * @author Sven Paulus - */ -class SyslogHandler extends AbstractSyslogHandler -{ - protected $ident; - protected $logopts; - - /** - * @param string $ident - * @param string|int $facility Either one of the names of the keys in $this->facilities, or a LOG_* facility constant - * @param string|int $level The minimum logging level at which this handler will be triggered - * @param bool $bubble Whether the messages that are handled can bubble up the stack or not - * @param int $logopts Option flags for the openlog() call, defaults to LOG_PID - */ - public function __construct(string $ident, $facility = LOG_USER, $level = Logger::DEBUG, bool $bubble = true, int $logopts = LOG_PID) - { - parent::__construct($facility, $level, $bubble); - - $this->ident = $ident; - $this->logopts = $logopts; - } - - /** - * {@inheritdoc} - */ - public function close(): void - { - closelog(); - } - - /** - * {@inheritdoc} - */ - protected function write(array $record): void - { - if (!openlog($this->ident, $this->logopts, $this->facility)) { - throw new \LogicException('Can\'t open syslog for ident "'.$this->ident.'" and facility "'.$this->facility.'"'); - } - syslog($this->logLevels[$record['level']], (string) $record['formatted']); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/SyslogUdp/UdpSocket.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/SyslogUdp/UdpSocket.php deleted file mode 100644 index c43bc156..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/SyslogUdp/UdpSocket.php +++ /dev/null @@ -1,61 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler\SyslogUdp; - -use Monolog\Utils; - -class UdpSocket -{ - protected const DATAGRAM_MAX_LENGTH = 65023; - - /** @var string */ - protected $ip; - /** @var int */ - protected $port; - /** @var resource|null */ - protected $socket; - - public function __construct(string $ip, int $port = 514) - { - $this->ip = $ip; - $this->port = $port; - $this->socket = socket_create(AF_INET, SOCK_DGRAM, SOL_UDP); - } - - public function write($line, $header = "") - { - $this->send($this->assembleMessage($line, $header)); - } - - public function close(): void - { - if (is_resource($this->socket)) { - socket_close($this->socket); - $this->socket = null; - } - } - - protected function send(string $chunk): void - { - if (!is_resource($this->socket)) { - throw new \RuntimeException('The UdpSocket to '.$this->ip.':'.$this->port.' has been closed and can not be written to anymore'); - } - socket_sendto($this->socket, $chunk, strlen($chunk), $flags = 0, $this->ip, $this->port); - } - - protected function assembleMessage(string $line, string $header): string - { - $chunkSize = static::DATAGRAM_MAX_LENGTH - strlen($header); - - return $header . Utils::substr($line, 0, $chunkSize); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/SyslogUdpHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/SyslogUdpHandler.php deleted file mode 100644 index c85ef5b8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/SyslogUdpHandler.php +++ /dev/null @@ -1,125 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use DateTimeInterface; -use Monolog\Logger; -use Monolog\Handler\SyslogUdp\UdpSocket; - -/** - * A Handler for logging to a remote syslogd server. - * - * @author Jesper Skovgaard Nielsen - * @author Dominik Kukacka - */ -class SyslogUdpHandler extends AbstractSyslogHandler -{ - const RFC3164 = 0; - const RFC5424 = 1; - - private $dateFormats = array( - self::RFC3164 => 'M d H:i:s', - self::RFC5424 => \DateTime::RFC3339, - ); - - protected $socket; - protected $ident; - protected $rfc; - - /** - * @param string $host - * @param int $port - * @param string|int $facility Either one of the names of the keys in $this->facilities, or a LOG_* facility constant - * @param string|int $level The minimum logging level at which this handler will be triggered - * @param bool $bubble Whether the messages that are handled can bubble up the stack or not - * @param string $ident Program name or tag for each log message. - * @param int $rfc RFC to format the message for. - */ - public function __construct(string $host, int $port = 514, $facility = LOG_USER, $level = Logger::DEBUG, bool $bubble = true, string $ident = 'php', int $rfc = self::RFC5424) - { - parent::__construct($facility, $level, $bubble); - - $this->ident = $ident; - $this->rfc = $rfc; - - $this->socket = new UdpSocket($host, $port ?: 514); - } - - protected function write(array $record): void - { - $lines = $this->splitMessageIntoLines($record['formatted']); - - $header = $this->makeCommonSyslogHeader($this->logLevels[$record['level']], $record['datetime']); - - foreach ($lines as $line) { - $this->socket->write($line, $header); - } - } - - public function close(): void - { - $this->socket->close(); - } - - private function splitMessageIntoLines($message): array - { - if (is_array($message)) { - $message = implode("\n", $message); - } - - return preg_split('/$\R?^/m', (string) $message, -1, PREG_SPLIT_NO_EMPTY); - } - - /** - * Make common syslog header (see rfc5424 or rfc3164) - */ - protected function makeCommonSyslogHeader(int $severity, DateTimeInterface $datetime): string - { - $priority = $severity + $this->facility; - - if (!$pid = getmypid()) { - $pid = '-'; - } - - if (!$hostname = gethostname()) { - $hostname = '-'; - } - - if ($this->rfc === self::RFC3164) { - $datetime->setTimezone(new \DateTimeZone('UTC')); - } - $date = $datetime->format($this->dateFormats[$this->rfc]); - - if ($this->rfc === self::RFC3164) { - return "<$priority>" . - $date . " " . - $hostname . " " . - $this->ident . "[" . $pid . "]: "; - } else { - return "<$priority>1 " . - $date . " " . - $hostname . " " . - $this->ident . " " . - $pid . " - - "; - } - } - - /** - * Inject your own socket, mainly used for testing - */ - public function setSocket(UdpSocket $socket): self - { - $this->socket = $socket; - - return $this; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/TelegramBotHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/TelegramBotHandler.php deleted file mode 100644 index 5dae9f54..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/TelegramBotHandler.php +++ /dev/null @@ -1,99 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use RuntimeException; -use Monolog\Logger; - -/** - * Handler send logs to Telegram using Telegram Bot API. - * - * How to use: - * 1) Create telegram bot with https://telegram.me/BotFather - * 2) Create a telegram channel where logs will be recorded. - * 3) Add created bot from step 1 to the created channel from step 2. - * - * Use telegram bot API key from step 1 and channel name with '@' prefix from step 2 to create instance of TelegramBotHandler - * - * @link https://core.telegram.org/bots/api - * - * @author Mazur Alexandr - */ -class TelegramBotHandler extends AbstractProcessingHandler -{ - private const BOT_API = 'https://api.telegram.org/bot'; - - /** - * Telegram bot access token provided by BotFather. - * Create telegram bot with https://telegram.me/BotFather and use access token from it. - * @var string - */ - private $apiKey; - - /** - * Telegram channel name. - * Since to start with '@' symbol as prefix. - * @var string - */ - private $channel; - - /** - * @param string $apiKey Telegram bot access token provided by BotFather - * @param string $channel Telegram channel name - * @inheritDoc - */ - public function __construct( - string $apiKey, - string $channel, - $level = Logger::DEBUG, - bool $bubble = true - ) { - parent::__construct($level, $bubble); - - $this->apiKey = $apiKey; - $this->channel = $channel; - $this->level = $level; - $this->bubble = $bubble; - } - - /** - * @inheritDoc - */ - protected function write(array $record): void - { - $this->send($record['formatted']); - } - - /** - * Send request to @link https://api.telegram.org/bot on SendMessage action. - * @param string $message - */ - protected function send(string $message): void - { - $ch = curl_init(); - $url = self::BOT_API . $this->apiKey . '/SendMessage'; - curl_setopt($ch, CURLOPT_URL, $url); - curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); - curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, true); - curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query([ - 'text' => $message, - 'chat_id' => $this->channel, - ])); - - $result = Curl\Util::execute($ch); - $result = json_decode($result, true); - - if ($result['ok'] === false) { - throw new RuntimeException('Telegram API error. Description: ' . $result['description']); - } - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/TestHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/TestHandler.php deleted file mode 100644 index 4260f740..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/TestHandler.php +++ /dev/null @@ -1,190 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use Monolog\Logger; - -/** - * Used for testing purposes. - * - * It records all records and gives you access to them for verification. - * - * @author Jordi Boggiano - * - * @method bool hasEmergency($record) - * @method bool hasAlert($record) - * @method bool hasCritical($record) - * @method bool hasError($record) - * @method bool hasWarning($record) - * @method bool hasNotice($record) - * @method bool hasInfo($record) - * @method bool hasDebug($record) - * - * @method bool hasEmergencyRecords() - * @method bool hasAlertRecords() - * @method bool hasCriticalRecords() - * @method bool hasErrorRecords() - * @method bool hasWarningRecords() - * @method bool hasNoticeRecords() - * @method bool hasInfoRecords() - * @method bool hasDebugRecords() - * - * @method bool hasEmergencyThatContains($message) - * @method bool hasAlertThatContains($message) - * @method bool hasCriticalThatContains($message) - * @method bool hasErrorThatContains($message) - * @method bool hasWarningThatContains($message) - * @method bool hasNoticeThatContains($message) - * @method bool hasInfoThatContains($message) - * @method bool hasDebugThatContains($message) - * - * @method bool hasEmergencyThatMatches($message) - * @method bool hasAlertThatMatches($message) - * @method bool hasCriticalThatMatches($message) - * @method bool hasErrorThatMatches($message) - * @method bool hasWarningThatMatches($message) - * @method bool hasNoticeThatMatches($message) - * @method bool hasInfoThatMatches($message) - * @method bool hasDebugThatMatches($message) - * - * @method bool hasEmergencyThatPasses($message) - * @method bool hasAlertThatPasses($message) - * @method bool hasCriticalThatPasses($message) - * @method bool hasErrorThatPasses($message) - * @method bool hasWarningThatPasses($message) - * @method bool hasNoticeThatPasses($message) - * @method bool hasInfoThatPasses($message) - * @method bool hasDebugThatPasses($message) - */ -class TestHandler extends AbstractProcessingHandler -{ - protected $records = []; - protected $recordsByLevel = []; - private $skipReset = false; - - public function getRecords() - { - return $this->records; - } - - public function clear() - { - $this->records = []; - $this->recordsByLevel = []; - } - - public function reset() - { - if (!$this->skipReset) { - $this->clear(); - } - } - - public function setSkipReset(bool $skipReset) - { - $this->skipReset = $skipReset; - } - - /** - * @param string|int $level Logging level value or name - */ - public function hasRecords($level): bool - { - return isset($this->recordsByLevel[Logger::toMonologLevel($level)]); - } - - /** - * @param string|array $record Either a message string or an array containing message and optionally context keys that will be checked against all records - * @param string|int $level Logging level value or name - */ - public function hasRecord($record, $level): bool - { - if (is_string($record)) { - $record = array('message' => $record); - } - - return $this->hasRecordThatPasses(function ($rec) use ($record) { - if ($rec['message'] !== $record['message']) { - return false; - } - if (isset($record['context']) && $rec['context'] !== $record['context']) { - return false; - } - - return true; - }, $level); - } - - /** - * @param string|int $level Logging level value or name - */ - public function hasRecordThatContains(string $message, $level): bool - { - return $this->hasRecordThatPasses(function ($rec) use ($message) { - return strpos($rec['message'], $message) !== false; - }, $level); - } - - /** - * @param string|int $level Logging level value or name - */ - public function hasRecordThatMatches(string $regex, $level): bool - { - return $this->hasRecordThatPasses(function ($rec) use ($regex) { - return preg_match($regex, $rec['message']) > 0; - }, $level); - } - - /** - * @param string|int $level Logging level value or name - */ - public function hasRecordThatPasses(callable $predicate, $level) - { - $level = Logger::toMonologLevel($level); - - if (!isset($this->recordsByLevel[$level])) { - return false; - } - - foreach ($this->recordsByLevel[$level] as $i => $rec) { - if (call_user_func($predicate, $rec, $i)) { - return true; - } - } - - return false; - } - - /** - * {@inheritdoc} - */ - protected function write(array $record): void - { - $this->recordsByLevel[$record['level']][] = $record; - $this->records[] = $record; - } - - public function __call($method, $args) - { - if (preg_match('/(.*)(Debug|Info|Notice|Warning|Error|Critical|Alert|Emergency)(.*)/', $method, $matches) > 0) { - $genericMethod = $matches[1] . ('Records' !== $matches[3] ? 'Record' : '') . $matches[3]; - $level = constant('Monolog\Logger::' . strtoupper($matches[2])); - if (method_exists($this, $genericMethod)) { - $args[] = $level; - - return call_user_func_array([$this, $genericMethod], $args); - } - } - - throw new \BadMethodCallException('Call to undefined method ' . get_class($this) . '::' . $method . '()'); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/WebRequestRecognizerTrait.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/WebRequestRecognizerTrait.php deleted file mode 100644 index c8183528..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/WebRequestRecognizerTrait.php +++ /dev/null @@ -1,24 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -trait WebRequestRecognizerTrait -{ - /** - * Checks if PHP's serving a web request - * @return bool - */ - protected function isWebRequest(): bool - { - return 'cli' !== \PHP_SAPI && 'phpdbg' !== \PHP_SAPI; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/WhatFailureGroupHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/WhatFailureGroupHandler.php deleted file mode 100644 index 16c3cbbb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/WhatFailureGroupHandler.php +++ /dev/null @@ -1,63 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -/** - * Forwards records to multiple handlers suppressing failures of each handler - * and continuing through to give every handler a chance to succeed. - * - * @author Craig D'Amelio - */ -class WhatFailureGroupHandler extends GroupHandler -{ - /** - * {@inheritdoc} - */ - public function handle(array $record): bool - { - if ($this->processors) { - $record = $this->processRecord($record); - } - - foreach ($this->handlers as $handler) { - try { - $handler->handle($record); - } catch (\Throwable $e) { - // What failure? - } - } - - return false === $this->bubble; - } - - /** - * {@inheritdoc} - */ - public function handleBatch(array $records): void - { - if ($this->processors) { - $processed = array(); - foreach ($records as $record) { - $processed[] = $this->processRecord($record); - } - $records = $processed; - } - - foreach ($this->handlers as $handler) { - try { - $handler->handleBatch($records); - } catch (\Throwable $e) { - // What failure? - } - } - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/ZendMonitorHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/ZendMonitorHandler.php deleted file mode 100644 index d664fa89..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Handler/ZendMonitorHandler.php +++ /dev/null @@ -1,96 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Handler; - -use Monolog\Formatter\FormatterInterface; -use Monolog\Formatter\NormalizerFormatter; -use Monolog\Logger; - -/** - * Handler sending logs to Zend Monitor - * - * @author Christian Bergau - * @author Jason Davis - */ -class ZendMonitorHandler extends AbstractProcessingHandler -{ - /** - * Monolog level / ZendMonitor Custom Event priority map - * - * @var array - */ - protected $levelMap = []; - - /** - * @param string|int $level The minimum logging level at which this handler will be triggered. - * @param bool $bubble Whether the messages that are handled can bubble up the stack or not. - * @throws MissingExtensionException - */ - public function __construct($level = Logger::DEBUG, bool $bubble = true) - { - if (!function_exists('zend_monitor_custom_event')) { - throw new MissingExtensionException( - 'You must have Zend Server installed with Zend Monitor enabled in order to use this handler' - ); - } - //zend monitor constants are not defined if zend monitor is not enabled. - $this->levelMap = [ - Logger::DEBUG => \ZEND_MONITOR_EVENT_SEVERITY_INFO, - Logger::INFO => \ZEND_MONITOR_EVENT_SEVERITY_INFO, - Logger::NOTICE => \ZEND_MONITOR_EVENT_SEVERITY_INFO, - Logger::WARNING => \ZEND_MONITOR_EVENT_SEVERITY_WARNING, - Logger::ERROR => \ZEND_MONITOR_EVENT_SEVERITY_ERROR, - Logger::CRITICAL => \ZEND_MONITOR_EVENT_SEVERITY_ERROR, - Logger::ALERT => \ZEND_MONITOR_EVENT_SEVERITY_ERROR, - Logger::EMERGENCY => \ZEND_MONITOR_EVENT_SEVERITY_ERROR, - ]; - parent::__construct($level, $bubble); - } - - /** - * {@inheritdoc} - */ - protected function write(array $record): void - { - $this->writeZendMonitorCustomEvent( - Logger::getLevelName($record['level']), - $record['message'], - $record['formatted'], - $this->levelMap[$record['level']] - ); - } - - /** - * Write to Zend Monitor Events - * @param string $type Text displayed in "Class Name (custom)" field - * @param string $message Text displayed in "Error String" - * @param mixed $formatted Displayed in Custom Variables tab - * @param int $severity Set the event severity level (-1,0,1) - */ - protected function writeZendMonitorCustomEvent(string $type, string $message, array $formatted, int $severity): void - { - zend_monitor_custom_event($type, $message, $formatted, $severity); - } - - /** - * {@inheritdoc} - */ - public function getDefaultFormatter(): FormatterInterface - { - return new NormalizerFormatter(); - } - - public function getLevelMap(): array - { - return $this->levelMap; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Logger.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Logger.php deleted file mode 100644 index 9242f6ee..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Logger.php +++ /dev/null @@ -1,613 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog; - -use DateTimeZone; -use Monolog\Handler\HandlerInterface; -use Psr\Log\LoggerInterface; -use Psr\Log\InvalidArgumentException; -use Throwable; - -/** - * Monolog log channel - * - * It contains a stack of Handlers and a stack of Processors, - * and uses them to store records that are added to it. - * - * @author Jordi Boggiano - */ -class Logger implements LoggerInterface, ResettableInterface -{ - /** - * Detailed debug information - */ - public const DEBUG = 100; - - /** - * Interesting events - * - * Examples: User logs in, SQL logs. - */ - public const INFO = 200; - - /** - * Uncommon events - */ - public const NOTICE = 250; - - /** - * Exceptional occurrences that are not errors - * - * Examples: Use of deprecated APIs, poor use of an API, - * undesirable things that are not necessarily wrong. - */ - public const WARNING = 300; - - /** - * Runtime errors - */ - public const ERROR = 400; - - /** - * Critical conditions - * - * Example: Application component unavailable, unexpected exception. - */ - public const CRITICAL = 500; - - /** - * Action must be taken immediately - * - * Example: Entire website down, database unavailable, etc. - * This should trigger the SMS alerts and wake you up. - */ - public const ALERT = 550; - - /** - * Urgent alert. - */ - public const EMERGENCY = 600; - - /** - * Monolog API version - * - * This is only bumped when API breaks are done and should - * follow the major version of the library - * - * @var int - */ - public const API = 2; - - /** - * This is a static variable and not a constant to serve as an extension point for custom levels - * - * @var string[] $levels Logging levels with the levels as key - */ - protected static $levels = [ - self::DEBUG => 'DEBUG', - self::INFO => 'INFO', - self::NOTICE => 'NOTICE', - self::WARNING => 'WARNING', - self::ERROR => 'ERROR', - self::CRITICAL => 'CRITICAL', - self::ALERT => 'ALERT', - self::EMERGENCY => 'EMERGENCY', - ]; - - /** - * @var string - */ - protected $name; - - /** - * The handler stack - * - * @var HandlerInterface[] - */ - protected $handlers; - - /** - * Processors that will process all log records - * - * To process records of a single handler instead, add the processor on that specific handler - * - * @var callable[] - */ - protected $processors; - - /** - * @var bool - */ - protected $microsecondTimestamps = true; - - /** - * @var DateTimeZone - */ - protected $timezone; - - /** - * @var callable|null - */ - protected $exceptionHandler; - - /** - * @param string $name The logging channel, a simple descriptive name that is attached to all log records - * @param HandlerInterface[] $handlers Optional stack of handlers, the first one in the array is called first, etc. - * @param callable[] $processors Optional array of processors - * @param DateTimeZone|null $timezone Optional timezone, if not provided date_default_timezone_get() will be used - */ - public function __construct(string $name, array $handlers = [], array $processors = [], ?DateTimeZone $timezone = null) - { - $this->name = $name; - $this->setHandlers($handlers); - $this->processors = $processors; - $this->timezone = $timezone ?: new DateTimeZone(date_default_timezone_get() ?: 'UTC'); - } - - public function getName(): string - { - return $this->name; - } - - /** - * Return a new cloned instance with the name changed - */ - public function withName(string $name): self - { - $new = clone $this; - $new->name = $name; - - return $new; - } - - /** - * Pushes a handler on to the stack. - */ - public function pushHandler(HandlerInterface $handler): self - { - array_unshift($this->handlers, $handler); - - return $this; - } - - /** - * Pops a handler from the stack - * - * @throws \LogicException If empty handler stack - */ - public function popHandler(): HandlerInterface - { - if (!$this->handlers) { - throw new \LogicException('You tried to pop from an empty handler stack.'); - } - - return array_shift($this->handlers); - } - - /** - * Set handlers, replacing all existing ones. - * - * If a map is passed, keys will be ignored. - * - * @param HandlerInterface[] $handlers - */ - public function setHandlers(array $handlers): self - { - $this->handlers = []; - foreach (array_reverse($handlers) as $handler) { - $this->pushHandler($handler); - } - - return $this; - } - - /** - * @return HandlerInterface[] - */ - public function getHandlers(): array - { - return $this->handlers; - } - - /** - * Adds a processor on to the stack. - */ - public function pushProcessor(callable $callback): self - { - array_unshift($this->processors, $callback); - - return $this; - } - - /** - * Removes the processor on top of the stack and returns it. - * - * @throws \LogicException If empty processor stack - * @return callable - */ - public function popProcessor(): callable - { - if (!$this->processors) { - throw new \LogicException('You tried to pop from an empty processor stack.'); - } - - return array_shift($this->processors); - } - - /** - * @return callable[] - */ - public function getProcessors(): array - { - return $this->processors; - } - - /** - * Control the use of microsecond resolution timestamps in the 'datetime' - * member of new records. - * - * On PHP7.0, generating microsecond resolution timestamps by calling - * microtime(true), formatting the result via sprintf() and then parsing - * the resulting string via \DateTime::createFromFormat() can incur - * a measurable runtime overhead vs simple usage of DateTime to capture - * a second resolution timestamp in systems which generate a large number - * of log events. - * - * On PHP7.1 however microseconds are always included by the engine, so - * this setting can be left alone unless you really want to suppress - * microseconds in the output. - * - * @param bool $micro True to use microtime() to create timestamps - */ - public function useMicrosecondTimestamps(bool $micro) - { - $this->microsecondTimestamps = $micro; - } - - /** - * Adds a log record. - * - * @param int $level The logging level - * @param string $message The log message - * @param array $context The log context - * @return bool Whether the record has been processed - */ - public function addRecord(int $level, string $message, array $context = []): bool - { - // check if any handler will handle this message so we can return early and save cycles - $handlerKey = null; - foreach ($this->handlers as $key => $handler) { - if ($handler->isHandling(['level' => $level])) { - $handlerKey = $key; - break; - } - } - - if (null === $handlerKey) { - return false; - } - - $levelName = static::getLevelName($level); - - $record = [ - 'message' => $message, - 'context' => $context, - 'level' => $level, - 'level_name' => $levelName, - 'channel' => $this->name, - 'datetime' => new DateTimeImmutable($this->microsecondTimestamps, $this->timezone), - 'extra' => [], - ]; - - try { - foreach ($this->processors as $processor) { - $record = call_user_func($processor, $record); - } - - // advance the array pointer to the first handler that will handle this record - reset($this->handlers); - while ($handlerKey !== key($this->handlers)) { - next($this->handlers); - } - - while ($handler = current($this->handlers)) { - if (true === $handler->handle($record)) { - break; - } - - next($this->handlers); - } - } catch (Throwable $e) { - $this->handleException($e, $record); - } - - return true; - } - - /** - * Ends a log cycle and frees all resources used by handlers. - * - * Closing a Handler means flushing all buffers and freeing any open resources/handles. - * Handlers that have been closed should be able to accept log records again and re-open - * themselves on demand, but this may not always be possible depending on implementation. - * - * This is useful at the end of a request and will be called automatically on every handler - * when they get destructed. - */ - public function close(): void - { - foreach ($this->handlers as $handler) { - $handler->close(); - } - } - - /** - * Ends a log cycle and resets all handlers and processors to their initial state. - * - * Resetting a Handler or a Processor means flushing/cleaning all buffers, resetting internal - * state, and getting it back to a state in which it can receive log records again. - * - * This is useful in case you want to avoid logs leaking between two requests or jobs when you - * have a long running process like a worker or an application server serving multiple requests - * in one process. - */ - public function reset(): void - { - foreach ($this->handlers as $handler) { - if ($handler instanceof ResettableInterface) { - $handler->reset(); - } - } - - foreach ($this->processors as $processor) { - if ($processor instanceof ResettableInterface) { - $processor->reset(); - } - } - } - - /** - * Gets all supported logging levels. - * - * @return array Assoc array with human-readable level names => level codes. - */ - public static function getLevels(): array - { - return array_flip(static::$levels); - } - - /** - * Gets the name of the logging level. - * - * @throws \Psr\Log\InvalidArgumentException If level is not defined - */ - public static function getLevelName(int $level): string - { - if (!isset(static::$levels[$level])) { - throw new InvalidArgumentException('Level "'.$level.'" is not defined, use one of: '.implode(', ', array_keys(static::$levels))); - } - - return static::$levels[$level]; - } - - /** - * Converts PSR-3 levels to Monolog ones if necessary - * - * @param string|int $level Level number (monolog) or name (PSR-3) - * @throws \Psr\Log\InvalidArgumentException If level is not defined - */ - public static function toMonologLevel($level): int - { - if (is_string($level)) { - // Contains chars of all log levels and avoids using strtoupper() which may have - // strange results depending on locale (for example, "i" will become "İ" in Turkish locale) - $upper = strtr($level, 'abcdefgilmnortuwy', 'ABCDEFGILMNORTUWY'); - if (defined(__CLASS__.'::'.$upper)) { - return constant(__CLASS__ . '::' . $upper); - } - - throw new InvalidArgumentException('Level "'.$level.'" is not defined, use one of: '.implode(', ', array_keys(static::$levels))); - } - - if (!is_int($level)) { - throw new InvalidArgumentException('Level "'.var_export($level, true).'" is not defined, use one of: '.implode(', ', array_keys(static::$levels))); - } - - return $level; - } - - /** - * Checks whether the Logger has a handler that listens on the given level - */ - public function isHandling(int $level): bool - { - $record = [ - 'level' => $level, - ]; - - foreach ($this->handlers as $handler) { - if ($handler->isHandling($record)) { - return true; - } - } - - return false; - } - - /** - * Set a custom exception handler that will be called if adding a new record fails - * - * The callable will receive an exception object and the record that failed to be logged - */ - public function setExceptionHandler(?callable $callback): self - { - $this->exceptionHandler = $callback; - - return $this; - } - - public function getExceptionHandler(): ?callable - { - return $this->exceptionHandler; - } - - /** - * Adds a log record at an arbitrary level. - * - * This method allows for compatibility with common interfaces. - * - * @param mixed $level The log level - * @param string $message The log message - * @param array $context The log context - */ - public function log($level, $message, array $context = []): void - { - $level = static::toMonologLevel($level); - - $this->addRecord($level, (string) $message, $context); - } - - /** - * Adds a log record at the DEBUG level. - * - * This method allows for compatibility with common interfaces. - * - * @param string $message The log message - * @param array $context The log context - */ - public function debug($message, array $context = []): void - { - $this->addRecord(static::DEBUG, (string) $message, $context); - } - - /** - * Adds a log record at the INFO level. - * - * This method allows for compatibility with common interfaces. - * - * @param string $message The log message - * @param array $context The log context - */ - public function info($message, array $context = []): void - { - $this->addRecord(static::INFO, (string) $message, $context); - } - - /** - * Adds a log record at the NOTICE level. - * - * This method allows for compatibility with common interfaces. - * - * @param string $message The log message - * @param array $context The log context - */ - public function notice($message, array $context = []): void - { - $this->addRecord(static::NOTICE, (string) $message, $context); - } - - /** - * Adds a log record at the WARNING level. - * - * This method allows for compatibility with common interfaces. - * - * @param string $message The log message - * @param array $context The log context - */ - public function warning($message, array $context = []): void - { - $this->addRecord(static::WARNING, (string) $message, $context); - } - - /** - * Adds a log record at the ERROR level. - * - * This method allows for compatibility with common interfaces. - * - * @param string $message The log message - * @param array $context The log context - */ - public function error($message, array $context = []): void - { - $this->addRecord(static::ERROR, (string) $message, $context); - } - - /** - * Adds a log record at the CRITICAL level. - * - * This method allows for compatibility with common interfaces. - * - * @param string $message The log message - * @param array $context The log context - */ - public function critical($message, array $context = []): void - { - $this->addRecord(static::CRITICAL, (string) $message, $context); - } - - /** - * Adds a log record at the ALERT level. - * - * This method allows for compatibility with common interfaces. - * - * @param string $message The log message - * @param array $context The log context - */ - public function alert($message, array $context = []): void - { - $this->addRecord(static::ALERT, (string) $message, $context); - } - - /** - * Adds a log record at the EMERGENCY level. - * - * This method allows for compatibility with common interfaces. - * - * @param string $message The log message - * @param array $context The log context - */ - public function emergency($message, array $context = []): void - { - $this->addRecord(static::EMERGENCY, (string) $message, $context); - } - - /** - * Sets the timezone to be used for the timestamp of log records. - */ - public function setTimezone(DateTimeZone $tz): self - { - $this->timezone = $tz; - - return $this; - } - - /** - * Returns the timezone to be used for the timestamp of log records. - */ - public function getTimezone(): DateTimeZone - { - return $this->timezone; - } - - /** - * Delegates exception management to the custom exception handler, - * or throws the exception if no custom handler is set. - */ - protected function handleException(Throwable $e, array $record) - { - if (!$this->exceptionHandler) { - throw $e; - } - - call_user_func($this->exceptionHandler, $e, $record); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Processor/GitProcessor.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Processor/GitProcessor.php deleted file mode 100644 index 1367ee6f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Processor/GitProcessor.php +++ /dev/null @@ -1,63 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Processor; - -use Monolog\Logger; - -/** - * Injects Git branch and Git commit SHA in all records - * - * @author Nick Otter - * @author Jordi Boggiano - */ -class GitProcessor implements ProcessorInterface -{ - private $level; - private static $cache; - - /** - * @param string|int $level The minimum logging level at which this Processor will be triggered - */ - public function __construct($level = Logger::DEBUG) - { - $this->level = Logger::toMonologLevel($level); - } - - public function __invoke(array $record): array - { - // return if the level is not high enough - if ($record['level'] < $this->level) { - return $record; - } - - $record['extra']['git'] = self::getGitInfo(); - - return $record; - } - - private static function getGitInfo(): array - { - if (self::$cache) { - return self::$cache; - } - - $branches = `git branch -v --no-abbrev`; - if (preg_match('{^\* (.+?)\s+([a-f0-9]{40})(?:\s|$)}m', $branches, $matches)) { - return self::$cache = [ - 'branch' => $matches[1], - 'commit' => $matches[2], - ]; - } - - return self::$cache = []; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Processor/HostnameProcessor.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Processor/HostnameProcessor.php deleted file mode 100644 index 7c23db8b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Processor/HostnameProcessor.php +++ /dev/null @@ -1,32 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Processor; - -/** - * Injects value of gethostname in all records - */ -class HostnameProcessor implements ProcessorInterface -{ - private static $host; - - public function __construct() - { - self::$host = (string) gethostname(); - } - - public function __invoke(array $record): array - { - $record['extra']['hostname'] = self::$host; - - return $record; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Processor/IntrospectionProcessor.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Processor/IntrospectionProcessor.php deleted file mode 100644 index c0cc014e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Processor/IntrospectionProcessor.php +++ /dev/null @@ -1,108 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Processor; - -use Monolog\Logger; - -/** - * Injects line/file:class/function where the log message came from - * - * Warning: This only works if the handler processes the logs directly. - * If you put the processor on a handler that is behind a FingersCrossedHandler - * for example, the processor will only be called once the trigger level is reached, - * and all the log records will have the same file/line/.. data from the call that - * triggered the FingersCrossedHandler. - * - * @author Jordi Boggiano - */ -class IntrospectionProcessor implements ProcessorInterface -{ - private $level; - - private $skipClassesPartials; - - private $skipStackFramesCount; - - private $skipFunctions = [ - 'call_user_func', - 'call_user_func_array', - ]; - - /** - * @param string|int $level The minimum logging level at which this Processor will be triggered - */ - public function __construct($level = Logger::DEBUG, array $skipClassesPartials = [], int $skipStackFramesCount = 0) - { - $this->level = Logger::toMonologLevel($level); - $this->skipClassesPartials = array_merge(['Monolog\\'], $skipClassesPartials); - $this->skipStackFramesCount = $skipStackFramesCount; - } - - public function __invoke(array $record): array - { - // return if the level is not high enough - if ($record['level'] < $this->level) { - return $record; - } - - $trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS); - - // skip first since it's always the current method - array_shift($trace); - // the call_user_func call is also skipped - array_shift($trace); - - $i = 0; - - while ($this->isTraceClassOrSkippedFunction($trace, $i)) { - if (isset($trace[$i]['class'])) { - foreach ($this->skipClassesPartials as $part) { - if (strpos($trace[$i]['class'], $part) !== false) { - $i++; - - continue 2; - } - } - } elseif (in_array($trace[$i]['function'], $this->skipFunctions)) { - $i++; - - continue; - } - - break; - } - - $i += $this->skipStackFramesCount; - - // we should have the call source now - $record['extra'] = array_merge( - $record['extra'], - [ - 'file' => isset($trace[$i - 1]['file']) ? $trace[$i - 1]['file'] : null, - 'line' => isset($trace[$i - 1]['line']) ? $trace[$i - 1]['line'] : null, - 'class' => isset($trace[$i]['class']) ? $trace[$i]['class'] : null, - 'function' => isset($trace[$i]['function']) ? $trace[$i]['function'] : null, - ] - ); - - return $record; - } - - private function isTraceClassOrSkippedFunction(array $trace, int $index) - { - if (!isset($trace[$index])) { - return false; - } - - return isset($trace[$index]['class']) || in_array($trace[$index]['function'], $this->skipFunctions); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Processor/MemoryPeakUsageProcessor.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Processor/MemoryPeakUsageProcessor.php deleted file mode 100644 index a1eef61a..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Processor/MemoryPeakUsageProcessor.php +++ /dev/null @@ -1,34 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Processor; - -/** - * Injects memory_get_peak_usage in all records - * - * @see Monolog\Processor\MemoryProcessor::__construct() for options - * @author Rob Jensen - */ -class MemoryPeakUsageProcessor extends MemoryProcessor -{ - public function __invoke(array $record): array - { - $usage = memory_get_peak_usage($this->realUsage); - - if ($this->useFormatting) { - $usage = $this->formatBytes($usage); - } - - $record['extra']['memory_peak_usage'] = $usage; - - return $record; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Processor/MemoryProcessor.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Processor/MemoryProcessor.php deleted file mode 100644 index 227deb7c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Processor/MemoryProcessor.php +++ /dev/null @@ -1,61 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Processor; - -/** - * Some methods that are common for all memory processors - * - * @author Rob Jensen - */ -abstract class MemoryProcessor implements ProcessorInterface -{ - /** - * @var bool If true, get the real size of memory allocated from system. Else, only the memory used by emalloc() is reported. - */ - protected $realUsage; - - /** - * @var bool If true, then format memory size to human readable string (MB, KB, B depending on size) - */ - protected $useFormatting; - - /** - * @param bool $realUsage Set this to true to get the real size of memory allocated from system. - * @param bool $useFormatting If true, then format memory size to human readable string (MB, KB, B depending on size) - */ - public function __construct(bool $realUsage = true, bool $useFormatting = true) - { - $this->realUsage = $realUsage; - $this->useFormatting = $useFormatting; - } - - /** - * Formats bytes into a human readable string if $this->useFormatting is true, otherwise return $bytes as is - * - * @param int $bytes - * @return string|int Formatted string if $this->useFormatting is true, otherwise return $bytes as int - */ - protected function formatBytes(int $bytes) - { - if (!$this->useFormatting) { - return $bytes; - } - - if ($bytes > 1024 * 1024) { - return round($bytes / 1024 / 1024, 2).' MB'; - } elseif ($bytes > 1024) { - return round($bytes / 1024, 2).' KB'; - } - - return $bytes . ' B'; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Processor/MemoryUsageProcessor.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Processor/MemoryUsageProcessor.php deleted file mode 100644 index 653c76d1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Processor/MemoryUsageProcessor.php +++ /dev/null @@ -1,34 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Processor; - -/** - * Injects memory_get_usage in all records - * - * @see Monolog\Processor\MemoryProcessor::__construct() for options - * @author Rob Jensen - */ -class MemoryUsageProcessor extends MemoryProcessor -{ - public function __invoke(array $record): array - { - $usage = memory_get_usage($this->realUsage); - - if ($this->useFormatting) { - $usage = $this->formatBytes($usage); - } - - $record['extra']['memory_usage'] = $usage; - - return $record; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Processor/MercurialProcessor.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Processor/MercurialProcessor.php deleted file mode 100644 index d50f7138..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Processor/MercurialProcessor.php +++ /dev/null @@ -1,63 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Processor; - -use Monolog\Logger; - -/** - * Injects Hg branch and Hg revision number in all records - * - * @author Jonathan A. Schweder - */ -class MercurialProcessor implements ProcessorInterface -{ - private $level; - private static $cache; - - /** - * @param string|int $level The minimum logging level at which this Processor will be triggered - */ - public function __construct($level = Logger::DEBUG) - { - $this->level = Logger::toMonologLevel($level); - } - - public function __invoke(array $record): array - { - // return if the level is not high enough - if ($record['level'] < $this->level) { - return $record; - } - - $record['extra']['hg'] = self::getMercurialInfo(); - - return $record; - } - - private static function getMercurialInfo(): array - { - if (self::$cache) { - return self::$cache; - } - - $result = explode(' ', trim(`hg id -nb`)); - - if (count($result) >= 3) { - return self::$cache = [ - 'branch' => $result[1], - 'revision' => $result[2], - ]; - } - - return self::$cache = []; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Processor/ProcessIdProcessor.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Processor/ProcessIdProcessor.php deleted file mode 100644 index 7851fff6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Processor/ProcessIdProcessor.php +++ /dev/null @@ -1,27 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Processor; - -/** - * Adds value of getmypid into records - * - * @author Andreas Hörnicke - */ -class ProcessIdProcessor implements ProcessorInterface -{ - public function __invoke(array $record): array - { - $record['extra']['process_id'] = getmypid(); - - return $record; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Processor/ProcessorInterface.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Processor/ProcessorInterface.php deleted file mode 100644 index 9e2ded19..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Processor/ProcessorInterface.php +++ /dev/null @@ -1,25 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Processor; - -/** - * An optional interface to allow labelling Monolog processors. - * - * @author Nicolas Grekas - */ -interface ProcessorInterface -{ - /** - * @return array The processed record - */ - public function __invoke(array $record); -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Processor/PsrLogMessageProcessor.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Processor/PsrLogMessageProcessor.php deleted file mode 100644 index 909fc4fd..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Processor/PsrLogMessageProcessor.php +++ /dev/null @@ -1,87 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Processor; - -use Monolog\Utils; - -/** - * Processes a record's message according to PSR-3 rules - * - * It replaces {foo} with the value from $context['foo'] - * - * @author Jordi Boggiano - */ -class PsrLogMessageProcessor implements ProcessorInterface -{ - public const SIMPLE_DATE = "Y-m-d\TH:i:s.uP"; - - /** @var string|null */ - private $dateFormat; - - /** @var bool */ - private $removeUsedContextFields; - - /** - * @param string|null $dateFormat The format of the timestamp: one supported by DateTime::format - * @param bool $removeUsedContextFields If set to true the fields interpolated into message gets unset - */ - public function __construct(?string $dateFormat = null, bool $removeUsedContextFields = false) - { - $this->dateFormat = $dateFormat; - $this->removeUsedContextFields = $removeUsedContextFields; - } - - /** - * @param array $record - * @return array - */ - public function __invoke(array $record): array - { - if (false === strpos($record['message'], '{')) { - return $record; - } - - $replacements = []; - foreach ($record['context'] as $key => $val) { - $placeholder = '{' . $key . '}'; - if (strpos($record['message'], $placeholder) === false) { - continue; - } - - if (is_null($val) || is_scalar($val) || (is_object($val) && method_exists($val, "__toString"))) { - $replacements[$placeholder] = $val; - } elseif ($val instanceof \DateTimeInterface) { - if (!$this->dateFormat && $val instanceof \Monolog\DateTimeImmutable) { - // handle monolog dates using __toString if no specific dateFormat was asked for - // so that it follows the useMicroseconds flag - $replacements[$placeholder] = (string) $val; - } else { - $replacements[$placeholder] = $val->format($this->dateFormat ?: static::SIMPLE_DATE); - } - } elseif (is_object($val)) { - $replacements[$placeholder] = '[object '.Utils::getClass($val).']'; - } elseif (is_array($val)) { - $replacements[$placeholder] = 'array'.@json_encode($val); - } else { - $replacements[$placeholder] = '['.gettype($val).']'; - } - - if ($this->removeUsedContextFields) { - unset($record['context'][$key]); - } - } - - $record['message'] = strtr($record['message'], $replacements); - - return $record; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Processor/TagProcessor.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Processor/TagProcessor.php deleted file mode 100644 index 199760ad..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Processor/TagProcessor.php +++ /dev/null @@ -1,48 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Processor; - -/** - * Adds a tags array into record - * - * @author Martijn Riemers - */ -class TagProcessor implements ProcessorInterface -{ - private $tags; - - public function __construct(array $tags = []) - { - $this->setTags($tags); - } - - public function addTags(array $tags = []): self - { - $this->tags = array_merge($this->tags, $tags); - - return $this; - } - - public function setTags(array $tags = []): self - { - $this->tags = $tags; - - return $this; - } - - public function __invoke(array $record): array - { - $record['extra']['tags'] = $this->tags; - - return $record; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Processor/UidProcessor.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Processor/UidProcessor.php deleted file mode 100644 index 0c97ab6c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Processor/UidProcessor.php +++ /dev/null @@ -1,55 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Processor; - -use Monolog\ResettableInterface; - -/** - * Adds a unique identifier into records - * - * @author Simon Mönch - */ -class UidProcessor implements ProcessorInterface, ResettableInterface -{ - private $uid; - - public function __construct(int $length = 7) - { - if ($length > 32 || $length < 1) { - throw new \InvalidArgumentException('The uid length must be an integer between 1 and 32'); - } - - $this->uid = $this->generateUid($length); - } - - public function __invoke(array $record): array - { - $record['extra']['uid'] = $this->uid; - - return $record; - } - - public function getUid(): string - { - return $this->uid; - } - - public function reset() - { - $this->uid = $this->generateUid(strlen($this->uid)); - } - - private function generateUid(int $length): string - { - return substr(bin2hex(random_bytes((int) ceil($length / 2))), 0, $length); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Processor/WebProcessor.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Processor/WebProcessor.php deleted file mode 100644 index 7b95b0e1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Processor/WebProcessor.php +++ /dev/null @@ -1,100 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Processor; - -/** - * Injects url/method and remote IP of the current web request in all records - * - * @author Jordi Boggiano - */ -class WebProcessor implements ProcessorInterface -{ - /** - * @var array|\ArrayAccess - */ - protected $serverData; - - /** - * Default fields - * - * Array is structured as [key in record.extra => key in $serverData] - * - * @var array - */ - protected $extraFields = [ - 'url' => 'REQUEST_URI', - 'ip' => 'REMOTE_ADDR', - 'http_method' => 'REQUEST_METHOD', - 'server' => 'SERVER_NAME', - 'referrer' => 'HTTP_REFERER', - ]; - - /** - * @param array|\ArrayAccess|null $serverData Array or object w/ ArrayAccess that provides access to the $_SERVER data - * @param array|null $extraFields Field names and the related key inside $serverData to be added. If not provided it defaults to: url, ip, http_method, server, referrer - */ - public function __construct($serverData = null, array $extraFields = null) - { - if (null === $serverData) { - $this->serverData = &$_SERVER; - } elseif (is_array($serverData) || $serverData instanceof \ArrayAccess) { - $this->serverData = $serverData; - } else { - throw new \UnexpectedValueException('$serverData must be an array or object implementing ArrayAccess.'); - } - - if (null !== $extraFields) { - if (isset($extraFields[0])) { - foreach (array_keys($this->extraFields) as $fieldName) { - if (!in_array($fieldName, $extraFields)) { - unset($this->extraFields[$fieldName]); - } - } - } else { - $this->extraFields = $extraFields; - } - } - } - - public function __invoke(array $record): array - { - // skip processing if for some reason request data - // is not present (CLI or wonky SAPIs) - if (!isset($this->serverData['REQUEST_URI'])) { - return $record; - } - - $record['extra'] = $this->appendExtraFields($record['extra']); - - return $record; - } - - public function addExtraField(string $extraName, string $serverName): self - { - $this->extraFields[$extraName] = $serverName; - - return $this; - } - - private function appendExtraFields(array $extra): array - { - foreach ($this->extraFields as $extraName => $serverName) { - $extra[$extraName] = $this->serverData[$serverName] ?? null; - } - - if (isset($this->serverData['UNIQUE_ID'])) { - $extra['unique_id'] = $this->serverData['UNIQUE_ID']; - } - - return $extra; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Registry.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Registry.php deleted file mode 100644 index 78fb97e5..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Registry.php +++ /dev/null @@ -1,133 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog; - -use InvalidArgumentException; - -/** - * Monolog log registry - * - * Allows to get `Logger` instances in the global scope - * via static method calls on this class. - * - * - * $application = new Monolog\Logger('application'); - * $api = new Monolog\Logger('api'); - * - * Monolog\Registry::addLogger($application); - * Monolog\Registry::addLogger($api); - * - * function testLogger() - * { - * Monolog\Registry::api()->error('Sent to $api Logger instance'); - * Monolog\Registry::application()->error('Sent to $application Logger instance'); - * } - * - * - * @author Tomas Tatarko - */ -class Registry -{ - /** - * List of all loggers in the registry (by named indexes) - * - * @var Logger[] - */ - private static $loggers = []; - - /** - * Adds new logging channel to the registry - * - * @param Logger $logger Instance of the logging channel - * @param string|null $name Name of the logging channel ($logger->getName() by default) - * @param bool $overwrite Overwrite instance in the registry if the given name already exists? - * @throws \InvalidArgumentException If $overwrite set to false and named Logger instance already exists - */ - public static function addLogger(Logger $logger, ?string $name = null, bool $overwrite = false) - { - $name = $name ?: $logger->getName(); - - if (isset(self::$loggers[$name]) && !$overwrite) { - throw new InvalidArgumentException('Logger with the given name already exists'); - } - - self::$loggers[$name] = $logger; - } - - /** - * Checks if such logging channel exists by name or instance - * - * @param string|Logger $logger Name or logger instance - */ - public static function hasLogger($logger): bool - { - if ($logger instanceof Logger) { - $index = array_search($logger, self::$loggers, true); - - return false !== $index; - } - - return isset(self::$loggers[$logger]); - } - - /** - * Removes instance from registry by name or instance - * - * @param string|Logger $logger Name or logger instance - */ - public static function removeLogger($logger): void - { - if ($logger instanceof Logger) { - if (false !== ($idx = array_search($logger, self::$loggers, true))) { - unset(self::$loggers[$idx]); - } - } else { - unset(self::$loggers[$logger]); - } - } - - /** - * Clears the registry - */ - public static function clear(): void - { - self::$loggers = []; - } - - /** - * Gets Logger instance from the registry - * - * @param string $name Name of the requested Logger instance - * @throws \InvalidArgumentException If named Logger instance is not in the registry - */ - public static function getInstance($name): Logger - { - if (!isset(self::$loggers[$name])) { - throw new InvalidArgumentException(sprintf('Requested "%s" logger instance is not in the registry', $name)); - } - - return self::$loggers[$name]; - } - - /** - * Gets Logger instance from the registry via static method call - * - * @param string $name Name of the requested Logger instance - * @param array $arguments Arguments passed to static method call - * @throws \InvalidArgumentException If named Logger instance is not in the registry - * @return Logger Requested instance of Logger - */ - public static function __callStatic($name, $arguments) - { - return self::getInstance($name); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/ResettableInterface.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/ResettableInterface.php deleted file mode 100644 index 2c5fd785..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/ResettableInterface.php +++ /dev/null @@ -1,34 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog; - -/** - * Handler or Processor implementing this interface will be reset when Logger::reset() is called. - * - * Resetting ends a log cycle gets them back to their initial state. - * - * Resetting a Handler or a Processor means flushing/cleaning all buffers, resetting internal - * state, and getting it back to a state in which it can receive log records again. - * - * This is useful in case you want to avoid logs leaking between two requests or jobs when you - * have a long running process like a worker or an application server serving multiple requests - * in one process. - * - * @author Grégoire Pineau - */ -interface ResettableInterface -{ - /** - * @return void - */ - public function reset(); -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/SignalHandler.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/SignalHandler.php deleted file mode 100644 index 4a79fe66..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/SignalHandler.php +++ /dev/null @@ -1,102 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog; - -use Psr\Log\LoggerInterface; -use Psr\Log\LogLevel; -use ReflectionExtension; - -/** - * Monolog POSIX signal handler - * - * @author Robert Gust-Bardon - */ -class SignalHandler -{ - private $logger; - - private $previousSignalHandler = []; - private $signalLevelMap = []; - private $signalRestartSyscalls = []; - - public function __construct(LoggerInterface $logger) - { - $this->logger = $logger; - } - - public function registerSignalHandler($signo, $level = LogLevel::CRITICAL, bool $callPrevious = true, bool $restartSyscalls = true, ?bool $async = true): self - { - if (!extension_loaded('pcntl') || !function_exists('pcntl_signal')) { - return $this; - } - - if ($callPrevious) { - $handler = pcntl_signal_get_handler($signo); - if ($handler === false) { - return $this; - } - $this->previousSignalHandler[$signo] = $handler; - } else { - unset($this->previousSignalHandler[$signo]); - } - $this->signalLevelMap[$signo] = $level; - $this->signalRestartSyscalls[$signo] = $restartSyscalls; - - if ($async !== null) { - pcntl_async_signals($async); - } - - pcntl_signal($signo, [$this, 'handleSignal'], $restartSyscalls); - - return $this; - } - - public function handleSignal($signo, array $siginfo = null): void - { - static $signals = []; - - if (!$signals && extension_loaded('pcntl')) { - $pcntl = new ReflectionExtension('pcntl'); - // HHVM 3.24.2 returns an empty array. - foreach ($pcntl->getConstants() ?: get_defined_constants(true)['Core'] as $name => $value) { - if (substr($name, 0, 3) === 'SIG' && $name[3] !== '_' && is_int($value)) { - $signals[$value] = $name; - } - } - } - - $level = $this->signalLevelMap[$signo] ?? LogLevel::CRITICAL; - $signal = $signals[$signo] ?? $signo; - $context = $siginfo ?? []; - $this->logger->log($level, sprintf('Program received signal %s', $signal), $context); - - if (!isset($this->previousSignalHandler[$signo])) { - return; - } - - if ($this->previousSignalHandler[$signo] === true || $this->previousSignalHandler[$signo] === SIG_DFL) { - if (extension_loaded('pcntl') && function_exists('pcntl_signal') && function_exists('pcntl_sigprocmask') && function_exists('pcntl_signal_dispatch') - && extension_loaded('posix') && function_exists('posix_getpid') && function_exists('posix_kill') - ) { - $restartSyscalls = $this->signalRestartSyscalls[$signo] ?? true; - pcntl_signal($signo, SIG_DFL, $restartSyscalls); - pcntl_sigprocmask(SIG_UNBLOCK, [$signo], $oldset); - posix_kill(posix_getpid(), $signo); - pcntl_signal_dispatch(); - pcntl_sigprocmask(SIG_SETMASK, $oldset); - pcntl_signal($signo, [$this, 'handleSignal'], $restartSyscalls); - } - } elseif (is_callable($this->previousSignalHandler[$signo])) { - $this->previousSignalHandler[$signo]($signo, $siginfo); - } - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Test/TestCase.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Test/TestCase.php deleted file mode 100644 index ecb8907f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Test/TestCase.php +++ /dev/null @@ -1,66 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog\Test; - -use Monolog\Logger; -use Monolog\DateTimeImmutable; -use Monolog\Formatter\FormatterInterface; - -/** - * Lets you easily generate log records and a dummy formatter for testing purposes - * * - * @author Jordi Boggiano - */ -class TestCase extends \PHPUnit\Framework\TestCase -{ - /** - * @return array Record - */ - protected function getRecord($level = Logger::WARNING, $message = 'test', array $context = []): array - { - return [ - 'message' => (string) $message, - 'context' => $context, - 'level' => $level, - 'level_name' => Logger::getLevelName($level), - 'channel' => 'test', - 'datetime' => new DateTimeImmutable(true), - 'extra' => [], - ]; - } - - protected function getMultipleRecords(): array - { - return [ - $this->getRecord(Logger::DEBUG, 'debug message 1'), - $this->getRecord(Logger::DEBUG, 'debug message 2'), - $this->getRecord(Logger::INFO, 'information'), - $this->getRecord(Logger::WARNING, 'warning'), - $this->getRecord(Logger::ERROR, 'error'), - ]; - } - - /** - * @suppress PhanTypeMismatchReturn - */ - protected function getIdentityFormatter(): FormatterInterface - { - $formatter = $this->createMock(FormatterInterface::class); - $formatter->expects($this->any()) - ->method('format') - ->will($this->returnCallback(function ($record) { - return $record['message']; - })); - - return $formatter; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Utils.php b/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Utils.php deleted file mode 100644 index 358087cb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/monolog/monolog/src/Monolog/Utils.php +++ /dev/null @@ -1,171 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Monolog; - -final class Utils -{ - const DEFAULT_JSON_FLAGS = JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE | JSON_PRESERVE_ZERO_FRACTION; - - /** - * @internal - */ - public static function getClass($object): string - { - $class = \get_class($object); - - return 'c' === $class[0] && 0 === strpos($class, "class@anonymous\0") ? get_parent_class($class).'@anonymous' : $class; - } - - public static function substr(string $string, int $start, ?int $length = null) - { - if (extension_loaded('mbstring')) { - return mb_strcut($string, $start, $length); - } - - return substr($string, $start, $length); - } - - /** - * Return the JSON representation of a value - * - * @param mixed $data - * @param int $encodeFlags flags to pass to json encode, defaults to JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE - * @param bool $ignoreErrors whether to ignore encoding errors or to throw on error, when ignored and the encoding fails, "null" is returned which is valid json for null - * @throws \RuntimeException if encoding fails and errors are not ignored - * @return string when errors are ignored and the encoding fails, "null" is returned which is valid json for null - */ - public static function jsonEncode($data, ?int $encodeFlags = null, bool $ignoreErrors = false): string - { - if (null === $encodeFlags) { - $encodeFlags = self::DEFAULT_JSON_FLAGS; - } - - if ($ignoreErrors) { - $json = @json_encode($data, $encodeFlags); - if (false === $json) { - return 'null'; - } - - return $json; - } - - $json = json_encode($data, $encodeFlags); - if (false === $json) { - $json = self::handleJsonError(json_last_error(), $data); - } - - return $json; - } - - /** - * Handle a json_encode failure. - * - * If the failure is due to invalid string encoding, try to clean the - * input and encode again. If the second encoding attempt fails, the - * inital error is not encoding related or the input can't be cleaned then - * raise a descriptive exception. - * - * @param int $code return code of json_last_error function - * @param mixed $data data that was meant to be encoded - * @param int $encodeFlags flags to pass to json encode, defaults to JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE | JSON_PRESERVE_ZERO_FRACTION - * @throws \RuntimeException if failure can't be corrected - * @return string JSON encoded data after error correction - */ - public static function handleJsonError(int $code, $data, ?int $encodeFlags = null): string - { - if ($code !== JSON_ERROR_UTF8) { - self::throwEncodeError($code, $data); - } - - if (is_string($data)) { - self::detectAndCleanUtf8($data); - } elseif (is_array($data)) { - array_walk_recursive($data, array('Monolog\Utils', 'detectAndCleanUtf8')); - } else { - self::throwEncodeError($code, $data); - } - - if (null === $encodeFlags) { - $encodeFlags = self::DEFAULT_JSON_FLAGS; - } - - $json = json_encode($data, $encodeFlags); - - if ($json === false) { - self::throwEncodeError(json_last_error(), $data); - } - - return $json; - } - - /** - * Throws an exception according to a given code with a customized message - * - * @param int $code return code of json_last_error function - * @param mixed $data data that was meant to be encoded - * @throws \RuntimeException - */ - private static function throwEncodeError(int $code, $data) - { - switch ($code) { - case JSON_ERROR_DEPTH: - $msg = 'Maximum stack depth exceeded'; - break; - case JSON_ERROR_STATE_MISMATCH: - $msg = 'Underflow or the modes mismatch'; - break; - case JSON_ERROR_CTRL_CHAR: - $msg = 'Unexpected control character found'; - break; - case JSON_ERROR_UTF8: - $msg = 'Malformed UTF-8 characters, possibly incorrectly encoded'; - break; - default: - $msg = 'Unknown error'; - } - - throw new \RuntimeException('JSON encoding failed: '.$msg.'. Encoding: '.var_export($data, true)); - } - - /** - * Detect invalid UTF-8 string characters and convert to valid UTF-8. - * - * Valid UTF-8 input will be left unmodified, but strings containing - * invalid UTF-8 codepoints will be reencoded as UTF-8 with an assumed - * original encoding of ISO-8859-15. This conversion may result in - * incorrect output if the actual encoding was not ISO-8859-15, but it - * will be clean UTF-8 output and will not rely on expensive and fragile - * detection algorithms. - * - * Function converts the input in place in the passed variable so that it - * can be used as a callback for array_walk_recursive. - * - * @param mixed &$data Input to check and convert if needed - */ - private static function detectAndCleanUtf8(&$data) - { - if (is_string($data) && !preg_match('//u', $data)) { - $data = preg_replace_callback( - '/[\x80-\xFF]+/', - function ($m) { - return utf8_encode($m[0]); - }, - $data - ); - $data = str_replace( - ['¤', '¦', '¨', '´', '¸', '¼', '½', '¾'], - ['€', 'Š', 'š', 'Ž', 'ž', 'Œ', 'œ', 'Ÿ'], - $data - ); - } - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/AUTHORS b/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/AUTHORS deleted file mode 100644 index a08b3099..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/AUTHORS +++ /dev/null @@ -1,6 +0,0 @@ -phpseclib Lead Developer: TerraFrost (Jim Wigginton) - -phpseclib Developers: monnerat (Patrick Monnerat) - bantu (Andreas Fischer) - petrich (Hans-Jürgen Petrich) - GrahamCampbell (Graham Campbell) diff --git a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/BACKERS.md b/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/BACKERS.md deleted file mode 100644 index e03152ca..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/BACKERS.md +++ /dev/null @@ -1,8 +0,0 @@ -# Backers - -phpseclib ongoing development is made possible by [Tidelift](https://tidelift.com/subscription/pkg/packagist-phpseclib-phpseclib?utm_source=packagist-phpseclib-phpseclib&utm_medium=referral&utm_campaign=readme) and by contributions by users like you. Thank you. - -## Backers - -- Zane Hooper -- [Setasign](https://www.setasign.com/) \ No newline at end of file diff --git a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/LICENSE b/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/LICENSE deleted file mode 100644 index e7214ebb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/LICENSE +++ /dev/null @@ -1,20 +0,0 @@ -Copyright (c) 2011-2019 TerraFrost and other contributors - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/README.md b/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/README.md deleted file mode 100644 index ac0eb2f9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/README.md +++ /dev/null @@ -1,86 +0,0 @@ -# phpseclib - PHP Secure Communications Library - -[![Build Status](https://travis-ci.org/phpseclib/phpseclib.svg?branch=2.0)](https://travis-ci.org/phpseclib/phpseclib) - -## Supporting phpseclib - -- [Become a backer or sponsor on Patreon](https://www.patreon.com/phpseclib) -- [One-time donation via PayPal or crypto-currencies](http://sourceforge.net/donate/index.php?group_id=198487) -- [Subscribe to Tidelift](https://tidelift.com/subscription/pkg/packagist-phpseclib-phpseclib?utm_source=packagist-phpseclib-phpseclib&utm_medium=referral&utm_campaign=readme) - -## Introduction - -MIT-licensed pure-PHP implementations of an arbitrary-precision integer -arithmetic library, fully PKCS#1 (v2.1) compliant RSA, DES, 3DES, RC4, Rijndael, -AES, Blowfish, Twofish, SSH-1, SSH-2, SFTP, and X.509 - -* [Browse Git](https://github.com/phpseclib/phpseclib) - -## Documentation - -* [Documentation / Manual](http://phpseclib.sourceforge.net/) -* [API Documentation](https://api.phpseclib.org/2.0/) (generated by Sami) - -## Branches - -### master - -* Development Branch -* Unstable API -* Do not use in production - -### 2.0 - -* Long term support (LTS) release -* Modernized version of 1.0 -* Minimum PHP version: 5.3.3 -* PSR-4 autoloading with namespace rooted at `\phpseclib` -* Install via Composer: `composer require phpseclib/phpseclib:~2.0` - -### 1.0 - -* Long term support (LTS) release -* PHP4 compatible -* Composer compatible (PSR-0 autoloading) -* Install using Composer: `composer require phpseclib/phpseclib:~1.0` -* Install using PEAR: See [phpseclib PEAR Channel Documentation](http://phpseclib.sourceforge.net/pear.htm) -* [Download 1.0.18 as ZIP](http://sourceforge.net/projects/phpseclib/files/phpseclib1.0.18.zip/download) - -## Security contact information - -To report a security vulnerability, please use the [Tidelift security contact](https://tidelift.com/security). Tidelift will coordinate the fix and disclosure. - -## Support - -Need Support? - -* [Checkout Questions and Answers on Stack Overflow](http://stackoverflow.com/questions/tagged/phpseclib) -* [Create a Support Ticket on GitHub](https://github.com/phpseclib/phpseclib/issues/new) -* [Browse the Support Forum](http://www.frostjedi.com/phpbb/viewforum.php?f=46) (no longer in use) - -## Contributing - -1. Fork the Project - -2. Ensure you have Composer installed (see [Composer Download Instructions](https://getcomposer.org/download/)) - -3. Install Development Dependencies - - ``` sh - composer install - ``` - -4. Create a Feature Branch - -5. (Recommended) Run the Test Suite - - ``` sh - vendor/bin/phpunit - ``` -6. (Recommended) Check whether your code conforms to our Coding Standards by running - - ``` sh - vendor/bin/phing -f build/build.xml sniff - ``` - -7. Send us a Pull Request diff --git a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/appveyor.yml b/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/appveyor.yml deleted file mode 100644 index 210a9034..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/appveyor.yml +++ /dev/null @@ -1,27 +0,0 @@ -build: false -shallow_clone: false -platform: - - x86 - - x64 -clone_folder: C:\projects\phpseclib - -install: - - cinst -y OpenSSL.Light - - SET PATH=C:\Program Files\OpenSSL;%PATH% - - sc config wuauserv start= auto - - net start wuauserv - - cinst -y php --version 5.6.30 - - cd c:\tools\php56 - - copy php.ini-production php.ini - - echo date.timezone="UTC" >> php.ini - - echo extension_dir=ext >> php.ini - - echo extension=php_openssl.dll >> php.ini - - echo extension=php_gmp.dll >> php.ini - - cd C:\projects\phpseclib - - SET PATH=C:\tools\php56;%PATH% - - php.exe -r "readfile('http://getcomposer.org/installer');" | php.exe - - php.exe composer.phar install --prefer-source --no-interaction - -test_script: - - cd C:\projects\phpseclib - - vendor\bin\phpunit.bat tests/Windows32Test.php \ No newline at end of file diff --git a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/composer.json b/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/composer.json deleted file mode 100644 index b4e8a1c9..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/composer.json +++ /dev/null @@ -1,76 +0,0 @@ -{ - "name": "phpseclib/phpseclib", - "type": "library", - "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.", - "keywords": [ - "security", - "crypto", - "cryptography", - "encryption", - "signature", - "signing", - "rsa", - "aes", - "blowfish", - "twofish", - "ssh", - "sftp", - "x509", - "x.509", - "asn1", - "asn.1", - "BigInteger" - ], - "homepage": "http://phpseclib.sourceforge.net", - "license": "MIT", - "authors": [ - { - "name": "Jim Wigginton", - "email": "terrafrost@php.net", - "role": "Lead Developer" - }, - { - "name": "Patrick Monnerat", - "email": "pm@datasphere.ch", - "role": "Developer" - }, - { - "name": "Andreas Fischer", - "email": "bantu@phpbb.com", - "role": "Developer" - }, - { - "name": "Hans-Jürgen Petrich", - "email": "petrich@tronic-media.com", - "role": "Developer" - }, - { - "name": "Graham Campbell", - "email": "graham@alt-three.com", - "role": "Developer" - } - ], - "require": { - "php": ">=5.3.3" - }, - "require-dev": { - "phing/phing": "~2.7", - "phpunit/phpunit": "^4.8.35|^5.7|^6.0", - "sami/sami": "~2.0", - "squizlabs/php_codesniffer": "~2.0" - }, - "suggest": { - "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.", - "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations.", - "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.", - "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations." - }, - "autoload": { - "files": [ - "phpseclib/bootstrap.php" - ], - "psr-4": { - "phpseclib\\": "phpseclib/" - } - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/Crypt/AES.php b/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/Crypt/AES.php deleted file mode 100644 index 7d8cb8b0..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/Crypt/AES.php +++ /dev/null @@ -1,126 +0,0 @@ - - * setKey('abcdefghijklmnop'); - * - * $size = 10 * 1024; - * $plaintext = ''; - * for ($i = 0; $i < $size; $i++) { - * $plaintext.= 'a'; - * } - * - * echo $aes->decrypt($aes->encrypt($plaintext)); - * ?> - * - * - * @category Crypt - * @package AES - * @author Jim Wigginton - * @copyright 2008 Jim Wigginton - * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @link http://phpseclib.sourceforge.net - */ - -namespace phpseclib\Crypt; - -/** - * Pure-PHP implementation of AES. - * - * @package AES - * @author Jim Wigginton - * @access public - */ -class AES extends Rijndael -{ - /** - * Dummy function - * - * Since \phpseclib\Crypt\AES extends \phpseclib\Crypt\Rijndael, this function is, technically, available, but it doesn't do anything. - * - * @see \phpseclib\Crypt\Rijndael::setBlockLength() - * @access public - * @param int $length - */ - function setBlockLength($length) - { - return; - } - - /** - * Sets the key length - * - * Valid key lengths are 128, 192, and 256. If the length is less than 128, it will be rounded up to - * 128. If the length is greater than 128 and invalid, it will be rounded down to the closest valid amount. - * - * @see \phpseclib\Crypt\Rijndael:setKeyLength() - * @access public - * @param int $length - */ - function setKeyLength($length) - { - switch ($length) { - case 160: - $length = 192; - break; - case 224: - $length = 256; - } - parent::setKeyLength($length); - } - - /** - * Sets the key. - * - * Rijndael supports five different key lengths, AES only supports three. - * - * @see \phpseclib\Crypt\Rijndael:setKey() - * @see setKeyLength() - * @access public - * @param string $key - */ - function setKey($key) - { - parent::setKey($key); - - if (!$this->explicit_key_length) { - $length = strlen($key); - switch (true) { - case $length <= 16: - $this->key_length = 16; - break; - case $length <= 24: - $this->key_length = 24; - break; - default: - $this->key_length = 32; - } - $this->_setEngine(); - } - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/Crypt/Base.php b/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/Crypt/Base.php deleted file mode 100644 index 03b176e7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/Crypt/Base.php +++ /dev/null @@ -1,2708 +0,0 @@ - - * @author Hans-Juergen Petrich - * @copyright 2007 Jim Wigginton - * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @link http://phpseclib.sourceforge.net - */ - -namespace phpseclib\Crypt; - -/** - * Base Class for all \phpseclib\Crypt\* cipher classes - * - * @package Base - * @author Jim Wigginton - * @author Hans-Juergen Petrich - */ -abstract class Base -{ - /**#@+ - * @access public - * @see \phpseclib\Crypt\Base::encrypt() - * @see \phpseclib\Crypt\Base::decrypt() - */ - /** - * Encrypt / decrypt using the Counter mode. - * - * Set to -1 since that's what Crypt/Random.php uses to index the CTR mode. - * - * @link http://en.wikipedia.org/wiki/Block_cipher_modes_of_operation#Counter_.28CTR.29 - */ - const MODE_CTR = -1; - /** - * Encrypt / decrypt using the Electronic Code Book mode. - * - * @link http://en.wikipedia.org/wiki/Block_cipher_modes_of_operation#Electronic_codebook_.28ECB.29 - */ - const MODE_ECB = 1; - /** - * Encrypt / decrypt using the Code Book Chaining mode. - * - * @link http://en.wikipedia.org/wiki/Block_cipher_modes_of_operation#Cipher-block_chaining_.28CBC.29 - */ - const MODE_CBC = 2; - /** - * Encrypt / decrypt using the Cipher Feedback mode. - * - * @link http://en.wikipedia.org/wiki/Block_cipher_modes_of_operation#Cipher_feedback_.28CFB.29 - */ - const MODE_CFB = 3; - /** - * Encrypt / decrypt using the Cipher Feedback mode (8bit) - */ - const MODE_CFB8 = 38; - /** - * Encrypt / decrypt using the Output Feedback mode. - * - * @link http://en.wikipedia.org/wiki/Block_cipher_modes_of_operation#Output_feedback_.28OFB.29 - */ - const MODE_OFB = 4; - /** - * Encrypt / decrypt using streaming mode. - */ - const MODE_STREAM = 5; - /**#@-*/ - - /** - * Whirlpool available flag - * - * @see \phpseclib\Crypt\Base::_hashInlineCryptFunction() - * @var bool - * @access private - */ - static $WHIRLPOOL_AVAILABLE; - - /**#@+ - * @access private - * @see \phpseclib\Crypt\Base::__construct() - */ - /** - * Base value for the internal implementation $engine switch - */ - const ENGINE_INTERNAL = 1; - /** - * Base value for the mcrypt implementation $engine switch - */ - const ENGINE_MCRYPT = 2; - /** - * Base value for the mcrypt implementation $engine switch - */ - const ENGINE_OPENSSL = 3; - /**#@-*/ - - /** - * The Encryption Mode - * - * @see self::__construct() - * @var int - * @access private - */ - var $mode; - - /** - * The Block Length of the block cipher - * - * @var int - * @access private - */ - var $block_size = 16; - - /** - * The Key - * - * @see self::setKey() - * @var string - * @access private - */ - var $key = "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"; - - /** - * The Initialization Vector - * - * @see self::setIV() - * @var string - * @access private - */ - var $iv; - - /** - * A "sliding" Initialization Vector - * - * @see self::enableContinuousBuffer() - * @see self::_clearBuffers() - * @var string - * @access private - */ - var $encryptIV; - - /** - * A "sliding" Initialization Vector - * - * @see self::enableContinuousBuffer() - * @see self::_clearBuffers() - * @var string - * @access private - */ - var $decryptIV; - - /** - * Continuous Buffer status - * - * @see self::enableContinuousBuffer() - * @var bool - * @access private - */ - var $continuousBuffer = false; - - /** - * Encryption buffer for CTR, OFB and CFB modes - * - * @see self::encrypt() - * @see self::_clearBuffers() - * @var array - * @access private - */ - var $enbuffer; - - /** - * Decryption buffer for CTR, OFB and CFB modes - * - * @see self::decrypt() - * @see self::_clearBuffers() - * @var array - * @access private - */ - var $debuffer; - - /** - * mcrypt resource for encryption - * - * The mcrypt resource can be recreated every time something needs to be created or it can be created just once. - * Since mcrypt operates in continuous mode, by default, it'll need to be recreated when in non-continuous mode. - * - * @see self::encrypt() - * @var resource - * @access private - */ - var $enmcrypt; - - /** - * mcrypt resource for decryption - * - * The mcrypt resource can be recreated every time something needs to be created or it can be created just once. - * Since mcrypt operates in continuous mode, by default, it'll need to be recreated when in non-continuous mode. - * - * @see self::decrypt() - * @var resource - * @access private - */ - var $demcrypt; - - /** - * Does the enmcrypt resource need to be (re)initialized? - * - * @see \phpseclib\Crypt\Twofish::setKey() - * @see \phpseclib\Crypt\Twofish::setIV() - * @var bool - * @access private - */ - var $enchanged = true; - - /** - * Does the demcrypt resource need to be (re)initialized? - * - * @see \phpseclib\Crypt\Twofish::setKey() - * @see \phpseclib\Crypt\Twofish::setIV() - * @var bool - * @access private - */ - var $dechanged = true; - - /** - * mcrypt resource for CFB mode - * - * mcrypt's CFB mode, in (and only in) buffered context, - * is broken, so phpseclib implements the CFB mode by it self, - * even when the mcrypt php extension is available. - * - * In order to do the CFB-mode work (fast) phpseclib - * use a separate ECB-mode mcrypt resource. - * - * @link http://phpseclib.sourceforge.net/cfb-demo.phps - * @see self::encrypt() - * @see self::decrypt() - * @see self::_setupMcrypt() - * @var resource - * @access private - */ - var $ecb; - - /** - * Optimizing value while CFB-encrypting - * - * Only relevant if $continuousBuffer enabled - * and $engine == self::ENGINE_MCRYPT - * - * It's faster to re-init $enmcrypt if - * $buffer bytes > $cfb_init_len than - * using the $ecb resource furthermore. - * - * This value depends of the chosen cipher - * and the time it would be needed for it's - * initialization [by mcrypt_generic_init()] - * which, typically, depends on the complexity - * on its internaly Key-expanding algorithm. - * - * @see self::encrypt() - * @var int - * @access private - */ - var $cfb_init_len = 600; - - /** - * Does internal cipher state need to be (re)initialized? - * - * @see self::setKey() - * @see self::setIV() - * @see self::disableContinuousBuffer() - * @var bool - * @access private - */ - var $changed = true; - - /** - * Padding status - * - * @see self::enablePadding() - * @var bool - * @access private - */ - var $padding = true; - - /** - * Is the mode one that is paddable? - * - * @see self::__construct() - * @var bool - * @access private - */ - var $paddable = false; - - /** - * Holds which crypt engine internaly should be use, - * which will be determined automatically on __construct() - * - * Currently available $engines are: - * - self::ENGINE_OPENSSL (very fast, php-extension: openssl, extension_loaded('openssl') required) - * - self::ENGINE_MCRYPT (fast, php-extension: mcrypt, extension_loaded('mcrypt') required) - * - self::ENGINE_INTERNAL (slower, pure php-engine, no php-extension required) - * - * @see self::_setEngine() - * @see self::encrypt() - * @see self::decrypt() - * @var int - * @access private - */ - var $engine; - - /** - * Holds the preferred crypt engine - * - * @see self::_setEngine() - * @see self::setPreferredEngine() - * @var int - * @access private - */ - var $preferredEngine; - - /** - * The mcrypt specific name of the cipher - * - * Only used if $engine == self::ENGINE_MCRYPT - * - * @link http://www.php.net/mcrypt_module_open - * @link http://www.php.net/mcrypt_list_algorithms - * @see self::_setupMcrypt() - * @var string - * @access private - */ - var $cipher_name_mcrypt; - - /** - * The openssl specific name of the cipher - * - * Only used if $engine == self::ENGINE_OPENSSL - * - * @link http://www.php.net/openssl-get-cipher-methods - * @var string - * @access private - */ - var $cipher_name_openssl; - - /** - * The openssl specific name of the cipher in ECB mode - * - * If OpenSSL does not support the mode we're trying to use (CTR) - * it can still be emulated with ECB mode. - * - * @link http://www.php.net/openssl-get-cipher-methods - * @var string - * @access private - */ - var $cipher_name_openssl_ecb; - - /** - * The default salt used by setPassword() - * - * @see self::setPassword() - * @var string - * @access private - */ - var $password_default_salt = 'phpseclib/salt'; - - /** - * The name of the performance-optimized callback function - * - * Used by encrypt() / decrypt() - * only if $engine == self::ENGINE_INTERNAL - * - * @see self::encrypt() - * @see self::decrypt() - * @see self::_setupInlineCrypt() - * @see self::$use_inline_crypt - * @var Callback - * @access private - */ - var $inline_crypt; - - /** - * Holds whether performance-optimized $inline_crypt() can/should be used. - * - * @see self::encrypt() - * @see self::decrypt() - * @see self::inline_crypt - * @var mixed - * @access private - */ - var $use_inline_crypt; - - /** - * If OpenSSL can be used in ECB but not in CTR we can emulate CTR - * - * @see self::_openssl_ctr_process() - * @var bool - * @access private - */ - var $openssl_emulate_ctr = false; - - /** - * Determines what options are passed to openssl_encrypt/decrypt - * - * @see self::isValidEngine() - * @var mixed - * @access private - */ - var $openssl_options; - - /** - * Has the key length explicitly been set or should it be derived from the key, itself? - * - * @see self::setKeyLength() - * @var bool - * @access private - */ - var $explicit_key_length = false; - - /** - * Don't truncate / null pad key - * - * @see self::_clearBuffers() - * @var bool - * @access private - */ - var $skip_key_adjustment = false; - - /** - * Default Constructor. - * - * Determines whether or not the mcrypt extension should be used. - * - * $mode could be: - * - * - self::MODE_ECB - * - * - self::MODE_CBC - * - * - self::MODE_CTR - * - * - self::MODE_CFB - * - * - self::MODE_OFB - * - * If not explicitly set, self::MODE_CBC will be used. - * - * @param int $mode - * @access public - */ - function __construct($mode = self::MODE_CBC) - { - // $mode dependent settings - switch ($mode) { - case self::MODE_ECB: - $this->paddable = true; - $this->mode = self::MODE_ECB; - break; - case self::MODE_CTR: - case self::MODE_CFB: - case self::MODE_CFB8: - case self::MODE_OFB: - case self::MODE_STREAM: - $this->mode = $mode; - break; - case self::MODE_CBC: - default: - $this->paddable = true; - $this->mode = self::MODE_CBC; - } - - $this->_setEngine(); - - // Determining whether inline crypting can be used by the cipher - if ($this->use_inline_crypt !== false) { - $this->use_inline_crypt = version_compare(PHP_VERSION, '5.3.0') >= 0 || function_exists('create_function'); - } - } - - /** - * Sets the initialization vector. (optional) - * - * SetIV is not required when self::MODE_ECB (or ie for AES: \phpseclib\Crypt\AES::MODE_ECB) is being used. If not explicitly set, it'll be assumed - * to be all zero's. - * - * @access public - * @param string $iv - * @internal Can be overwritten by a sub class, but does not have to be - */ - function setIV($iv) - { - if ($this->mode == self::MODE_ECB) { - return; - } - - $this->iv = $iv; - $this->changed = true; - } - - /** - * Sets the key length. - * - * Keys with explicitly set lengths need to be treated accordingly - * - * @access public - * @param int $length - */ - function setKeyLength($length) - { - $this->explicit_key_length = true; - $this->changed = true; - $this->_setEngine(); - } - - /** - * Returns the current key length in bits - * - * @access public - * @return int - */ - function getKeyLength() - { - return $this->key_length << 3; - } - - /** - * Returns the current block length in bits - * - * @access public - * @return int - */ - function getBlockLength() - { - return $this->block_size << 3; - } - - /** - * Sets the key. - * - * The min/max length(s) of the key depends on the cipher which is used. - * If the key not fits the length(s) of the cipher it will paded with null bytes - * up to the closest valid key length. If the key is more than max length, - * we trim the excess bits. - * - * If the key is not explicitly set, it'll be assumed to be all null bytes. - * - * @access public - * @param string $key - * @internal Could, but not must, extend by the child Crypt_* class - */ - function setKey($key) - { - if (!$this->explicit_key_length) { - $this->setKeyLength(strlen($key) << 3); - $this->explicit_key_length = false; - } - - $this->key = $key; - $this->changed = true; - $this->_setEngine(); - } - - /** - * Sets the password. - * - * Depending on what $method is set to, setPassword()'s (optional) parameters are as follows: - * {@link http://en.wikipedia.org/wiki/PBKDF2 pbkdf2} or pbkdf1: - * $hash, $salt, $count, $dkLen - * - * Where $hash (default = sha1) currently supports the following hashes: see: Crypt/Hash.php - * - * @see Crypt/Hash.php - * @param string $password - * @param string $method - * @return bool - * @access public - * @internal Could, but not must, extend by the child Crypt_* class - */ - function setPassword($password, $method = 'pbkdf2') - { - $key = ''; - - switch ($method) { - default: // 'pbkdf2' or 'pbkdf1' - $func_args = func_get_args(); - - // Hash function - $hash = isset($func_args[2]) ? $func_args[2] : 'sha1'; - - // WPA and WPA2 use the SSID as the salt - $salt = isset($func_args[3]) ? $func_args[3] : $this->password_default_salt; - - // RFC2898#section-4.2 uses 1,000 iterations by default - // WPA and WPA2 use 4,096. - $count = isset($func_args[4]) ? $func_args[4] : 1000; - - // Keylength - if (isset($func_args[5])) { - $dkLen = $func_args[5]; - } else { - $dkLen = $method == 'pbkdf1' ? 2 * $this->key_length : $this->key_length; - } - - switch (true) { - case $method == 'pbkdf1': - $hashObj = new Hash(); - $hashObj->setHash($hash); - if ($dkLen > $hashObj->getLength()) { - user_error('Derived key too long'); - return false; - } - $t = $password . $salt; - for ($i = 0; $i < $count; ++$i) { - $t = $hashObj->hash($t); - } - $key = substr($t, 0, $dkLen); - - $this->setKey(substr($key, 0, $dkLen >> 1)); - $this->setIV(substr($key, $dkLen >> 1)); - - return true; - // Determining if php[>=5.5.0]'s hash_pbkdf2() function avail- and useable - case !function_exists('hash_pbkdf2'): - case !function_exists('hash_algos'): - case !in_array($hash, hash_algos()): - $i = 1; - $hmac = new Hash(); - $hmac->setHash($hash); - $hmac->setKey($password); - while (strlen($key) < $dkLen) { - $f = $u = $hmac->hash($salt . pack('N', $i++)); - for ($j = 2; $j <= $count; ++$j) { - $u = $hmac->hash($u); - $f^= $u; - } - $key.= $f; - } - $key = substr($key, 0, $dkLen); - break; - default: - $key = hash_pbkdf2($hash, $password, $salt, $count, $dkLen, true); - } - } - - $this->setKey($key); - - return true; - } - - /** - * Encrypts a message. - * - * $plaintext will be padded with additional bytes such that it's length is a multiple of the block size. Other cipher - * implementations may or may not pad in the same manner. Other common approaches to padding and the reasons why it's - * necessary are discussed in the following - * URL: - * - * {@link http://www.di-mgt.com.au/cryptopad.html http://www.di-mgt.com.au/cryptopad.html} - * - * An alternative to padding is to, separately, send the length of the file. This is what SSH, in fact, does. - * strlen($plaintext) will still need to be a multiple of the block size, however, arbitrary values can be added to make it that - * length. - * - * @see self::decrypt() - * @access public - * @param string $plaintext - * @return string $ciphertext - * @internal Could, but not must, extend by the child Crypt_* class - */ - function encrypt($plaintext) - { - if ($this->paddable) { - $plaintext = $this->_pad($plaintext); - } - - if ($this->engine === self::ENGINE_OPENSSL) { - if ($this->changed) { - $this->_clearBuffers(); - $this->changed = false; - } - switch ($this->mode) { - case self::MODE_STREAM: - return openssl_encrypt($plaintext, $this->cipher_name_openssl, $this->key, $this->openssl_options); - case self::MODE_ECB: - $result = @openssl_encrypt($plaintext, $this->cipher_name_openssl, $this->key, $this->openssl_options); - return !defined('OPENSSL_RAW_DATA') ? substr($result, 0, -$this->block_size) : $result; - case self::MODE_CBC: - $result = openssl_encrypt($plaintext, $this->cipher_name_openssl, $this->key, $this->openssl_options, $this->encryptIV); - if (!defined('OPENSSL_RAW_DATA')) { - $result = substr($result, 0, -$this->block_size); - } - if ($this->continuousBuffer) { - $this->encryptIV = substr($result, -$this->block_size); - } - return $result; - case self::MODE_CTR: - return $this->_openssl_ctr_process($plaintext, $this->encryptIV, $this->enbuffer); - case self::MODE_CFB: - // cfb loosely routines inspired by openssl's: - // {@link http://cvs.openssl.org/fileview?f=openssl/crypto/modes/cfb128.c&v=1.3.2.2.2.1} - $ciphertext = ''; - if ($this->continuousBuffer) { - $iv = &$this->encryptIV; - $pos = &$this->enbuffer['pos']; - } else { - $iv = $this->encryptIV; - $pos = 0; - } - $len = strlen($plaintext); - $i = 0; - if ($pos) { - $orig_pos = $pos; - $max = $this->block_size - $pos; - if ($len >= $max) { - $i = $max; - $len-= $max; - $pos = 0; - } else { - $i = $len; - $pos+= $len; - $len = 0; - } - // ie. $i = min($max, $len), $len-= $i, $pos+= $i, $pos%= $blocksize - $ciphertext = substr($iv, $orig_pos) ^ $plaintext; - $iv = substr_replace($iv, $ciphertext, $orig_pos, $i); - $plaintext = substr($plaintext, $i); - } - - $overflow = $len % $this->block_size; - - if ($overflow) { - $ciphertext.= openssl_encrypt(substr($plaintext, 0, -$overflow) . str_repeat("\0", $this->block_size), $this->cipher_name_openssl, $this->key, $this->openssl_options, $iv); - $iv = $this->_string_pop($ciphertext, $this->block_size); - - $size = $len - $overflow; - $block = $iv ^ substr($plaintext, -$overflow); - $iv = substr_replace($iv, $block, 0, $overflow); - $ciphertext.= $block; - $pos = $overflow; - } elseif ($len) { - $ciphertext = openssl_encrypt($plaintext, $this->cipher_name_openssl, $this->key, $this->openssl_options, $iv); - $iv = substr($ciphertext, -$this->block_size); - } - - return $ciphertext; - case self::MODE_CFB8: - $ciphertext = openssl_encrypt($plaintext, $this->cipher_name_openssl, $this->key, $this->openssl_options, $this->encryptIV); - if ($this->continuousBuffer) { - if (($len = strlen($ciphertext)) >= $this->block_size) { - $this->encryptIV = substr($ciphertext, -$this->block_size); - } else { - $this->encryptIV = substr($this->encryptIV, $len - $this->block_size) . substr($ciphertext, -$len); - } - } - return $ciphertext; - case self::MODE_OFB: - return $this->_openssl_ofb_process($plaintext, $this->encryptIV, $this->enbuffer); - } - } - - if ($this->engine === self::ENGINE_MCRYPT) { - if ($this->changed) { - $this->_setupMcrypt(); - $this->changed = false; - } - if ($this->enchanged) { - @mcrypt_generic_init($this->enmcrypt, $this->key, $this->encryptIV); - $this->enchanged = false; - } - - // re: {@link http://phpseclib.sourceforge.net/cfb-demo.phps} - // using mcrypt's default handing of CFB the above would output two different things. using phpseclib's - // rewritten CFB implementation the above outputs the same thing twice. - if ($this->mode == self::MODE_CFB && $this->continuousBuffer) { - $block_size = $this->block_size; - $iv = &$this->encryptIV; - $pos = &$this->enbuffer['pos']; - $len = strlen($plaintext); - $ciphertext = ''; - $i = 0; - if ($pos) { - $orig_pos = $pos; - $max = $block_size - $pos; - if ($len >= $max) { - $i = $max; - $len-= $max; - $pos = 0; - } else { - $i = $len; - $pos+= $len; - $len = 0; - } - $ciphertext = substr($iv, $orig_pos) ^ $plaintext; - $iv = substr_replace($iv, $ciphertext, $orig_pos, $i); - $this->enbuffer['enmcrypt_init'] = true; - } - if ($len >= $block_size) { - if ($this->enbuffer['enmcrypt_init'] === false || $len > $this->cfb_init_len) { - if ($this->enbuffer['enmcrypt_init'] === true) { - @mcrypt_generic_init($this->enmcrypt, $this->key, $iv); - $this->enbuffer['enmcrypt_init'] = false; - } - $ciphertext.= @mcrypt_generic($this->enmcrypt, substr($plaintext, $i, $len - $len % $block_size)); - $iv = substr($ciphertext, -$block_size); - $len%= $block_size; - } else { - while ($len >= $block_size) { - $iv = @mcrypt_generic($this->ecb, $iv) ^ substr($plaintext, $i, $block_size); - $ciphertext.= $iv; - $len-= $block_size; - $i+= $block_size; - } - } - } - - if ($len) { - $iv = @mcrypt_generic($this->ecb, $iv); - $block = $iv ^ substr($plaintext, -$len); - $iv = substr_replace($iv, $block, 0, $len); - $ciphertext.= $block; - $pos = $len; - } - - return $ciphertext; - } - - $ciphertext = @mcrypt_generic($this->enmcrypt, $plaintext); - - if (!$this->continuousBuffer) { - @mcrypt_generic_init($this->enmcrypt, $this->key, $this->encryptIV); - } - - return $ciphertext; - } - - if ($this->changed) { - $this->_setup(); - $this->changed = false; - } - if ($this->use_inline_crypt) { - $inline = $this->inline_crypt; - return $inline('encrypt', $this, $plaintext); - } - - $buffer = &$this->enbuffer; - $block_size = $this->block_size; - $ciphertext = ''; - switch ($this->mode) { - case self::MODE_ECB: - for ($i = 0; $i < strlen($plaintext); $i+=$block_size) { - $ciphertext.= $this->_encryptBlock(substr($plaintext, $i, $block_size)); - } - break; - case self::MODE_CBC: - $xor = $this->encryptIV; - for ($i = 0; $i < strlen($plaintext); $i+=$block_size) { - $block = substr($plaintext, $i, $block_size); - $block = $this->_encryptBlock($block ^ $xor); - $xor = $block; - $ciphertext.= $block; - } - if ($this->continuousBuffer) { - $this->encryptIV = $xor; - } - break; - case self::MODE_CTR: - $xor = $this->encryptIV; - if (strlen($buffer['ciphertext'])) { - for ($i = 0; $i < strlen($plaintext); $i+=$block_size) { - $block = substr($plaintext, $i, $block_size); - if (strlen($block) > strlen($buffer['ciphertext'])) { - $buffer['ciphertext'].= $this->_encryptBlock($xor); - } - $this->_increment_str($xor); - $key = $this->_string_shift($buffer['ciphertext'], $block_size); - $ciphertext.= $block ^ $key; - } - } else { - for ($i = 0; $i < strlen($plaintext); $i+=$block_size) { - $block = substr($plaintext, $i, $block_size); - $key = $this->_encryptBlock($xor); - $this->_increment_str($xor); - $ciphertext.= $block ^ $key; - } - } - if ($this->continuousBuffer) { - $this->encryptIV = $xor; - if ($start = strlen($plaintext) % $block_size) { - $buffer['ciphertext'] = substr($key, $start) . $buffer['ciphertext']; - } - } - break; - case self::MODE_CFB: - // cfb loosely routines inspired by openssl's: - // {@link http://cvs.openssl.org/fileview?f=openssl/crypto/modes/cfb128.c&v=1.3.2.2.2.1} - if ($this->continuousBuffer) { - $iv = &$this->encryptIV; - $pos = &$buffer['pos']; - } else { - $iv = $this->encryptIV; - $pos = 0; - } - $len = strlen($plaintext); - $i = 0; - if ($pos) { - $orig_pos = $pos; - $max = $block_size - $pos; - if ($len >= $max) { - $i = $max; - $len-= $max; - $pos = 0; - } else { - $i = $len; - $pos+= $len; - $len = 0; - } - // ie. $i = min($max, $len), $len-= $i, $pos+= $i, $pos%= $blocksize - $ciphertext = substr($iv, $orig_pos) ^ $plaintext; - $iv = substr_replace($iv, $ciphertext, $orig_pos, $i); - } - while ($len >= $block_size) { - $iv = $this->_encryptBlock($iv) ^ substr($plaintext, $i, $block_size); - $ciphertext.= $iv; - $len-= $block_size; - $i+= $block_size; - } - if ($len) { - $iv = $this->_encryptBlock($iv); - $block = $iv ^ substr($plaintext, $i); - $iv = substr_replace($iv, $block, 0, $len); - $ciphertext.= $block; - $pos = $len; - } - break; - case self::MODE_CFB8: - $ciphertext = ''; - $len = strlen($plaintext); - $iv = $this->encryptIV; - - for ($i = 0; $i < $len; ++$i) { - $ciphertext .= ($c = $plaintext[$i] ^ $this->_encryptBlock($iv)); - $iv = substr($iv, 1) . $c; - } - - if ($this->continuousBuffer) { - if ($len >= $block_size) { - $this->encryptIV = substr($ciphertext, -$block_size); - } else { - $this->encryptIV = substr($this->encryptIV, $len - $block_size) . substr($ciphertext, -$len); - } - } - break; - case self::MODE_OFB: - $xor = $this->encryptIV; - if (strlen($buffer['xor'])) { - for ($i = 0; $i < strlen($plaintext); $i+=$block_size) { - $block = substr($plaintext, $i, $block_size); - if (strlen($block) > strlen($buffer['xor'])) { - $xor = $this->_encryptBlock($xor); - $buffer['xor'].= $xor; - } - $key = $this->_string_shift($buffer['xor'], $block_size); - $ciphertext.= $block ^ $key; - } - } else { - for ($i = 0; $i < strlen($plaintext); $i+=$block_size) { - $xor = $this->_encryptBlock($xor); - $ciphertext.= substr($plaintext, $i, $block_size) ^ $xor; - } - $key = $xor; - } - if ($this->continuousBuffer) { - $this->encryptIV = $xor; - if ($start = strlen($plaintext) % $block_size) { - $buffer['xor'] = substr($key, $start) . $buffer['xor']; - } - } - break; - case self::MODE_STREAM: - $ciphertext = $this->_encryptBlock($plaintext); - break; - } - - return $ciphertext; - } - - /** - * Decrypts a message. - * - * If strlen($ciphertext) is not a multiple of the block size, null bytes will be added to the end of the string until - * it is. - * - * @see self::encrypt() - * @access public - * @param string $ciphertext - * @return string $plaintext - * @internal Could, but not must, extend by the child Crypt_* class - */ - function decrypt($ciphertext) - { - if ($this->paddable) { - // we pad with chr(0) since that's what mcrypt_generic does. to quote from {@link http://www.php.net/function.mcrypt-generic}: - // "The data is padded with "\0" to make sure the length of the data is n * blocksize." - $ciphertext = str_pad($ciphertext, strlen($ciphertext) + ($this->block_size - strlen($ciphertext) % $this->block_size) % $this->block_size, chr(0)); - } - - if ($this->engine === self::ENGINE_OPENSSL) { - if ($this->changed) { - $this->_clearBuffers(); - $this->changed = false; - } - switch ($this->mode) { - case self::MODE_STREAM: - $plaintext = openssl_decrypt($ciphertext, $this->cipher_name_openssl, $this->key, $this->openssl_options); - break; - case self::MODE_ECB: - if (!defined('OPENSSL_RAW_DATA')) { - $ciphertext.= @openssl_encrypt('', $this->cipher_name_openssl_ecb, $this->key, true); - } - $plaintext = openssl_decrypt($ciphertext, $this->cipher_name_openssl, $this->key, $this->openssl_options); - break; - case self::MODE_CBC: - if (!defined('OPENSSL_RAW_DATA')) { - $padding = str_repeat(chr($this->block_size), $this->block_size) ^ substr($ciphertext, -$this->block_size); - $ciphertext.= substr(@openssl_encrypt($padding, $this->cipher_name_openssl_ecb, $this->key, true), 0, $this->block_size); - $offset = 2 * $this->block_size; - } else { - $offset = $this->block_size; - } - $plaintext = openssl_decrypt($ciphertext, $this->cipher_name_openssl, $this->key, $this->openssl_options, $this->decryptIV); - if ($this->continuousBuffer) { - $this->decryptIV = substr($ciphertext, -$offset, $this->block_size); - } - break; - case self::MODE_CTR: - $plaintext = $this->_openssl_ctr_process($ciphertext, $this->decryptIV, $this->debuffer); - break; - case self::MODE_CFB: - // cfb loosely routines inspired by openssl's: - // {@link http://cvs.openssl.org/fileview?f=openssl/crypto/modes/cfb128.c&v=1.3.2.2.2.1} - $plaintext = ''; - if ($this->continuousBuffer) { - $iv = &$this->decryptIV; - $pos = &$this->buffer['pos']; - } else { - $iv = $this->decryptIV; - $pos = 0; - } - $len = strlen($ciphertext); - $i = 0; - if ($pos) { - $orig_pos = $pos; - $max = $this->block_size - $pos; - if ($len >= $max) { - $i = $max; - $len-= $max; - $pos = 0; - } else { - $i = $len; - $pos+= $len; - $len = 0; - } - // ie. $i = min($max, $len), $len-= $i, $pos+= $i, $pos%= $this->blocksize - $plaintext = substr($iv, $orig_pos) ^ $ciphertext; - $iv = substr_replace($iv, substr($ciphertext, 0, $i), $orig_pos, $i); - $ciphertext = substr($ciphertext, $i); - } - $overflow = $len % $this->block_size; - if ($overflow) { - $plaintext.= openssl_decrypt(substr($ciphertext, 0, -$overflow), $this->cipher_name_openssl, $this->key, $this->openssl_options, $iv); - if ($len - $overflow) { - $iv = substr($ciphertext, -$overflow - $this->block_size, -$overflow); - } - $iv = openssl_encrypt(str_repeat("\0", $this->block_size), $this->cipher_name_openssl, $this->key, $this->openssl_options, $iv); - $plaintext.= $iv ^ substr($ciphertext, -$overflow); - $iv = substr_replace($iv, substr($ciphertext, -$overflow), 0, $overflow); - $pos = $overflow; - } elseif ($len) { - $plaintext.= openssl_decrypt($ciphertext, $this->cipher_name_openssl, $this->key, $this->openssl_options, $iv); - $iv = substr($ciphertext, -$this->block_size); - } - break; - case self::MODE_CFB8: - $plaintext = openssl_decrypt($ciphertext, $this->cipher_name_openssl, $this->key, $this->openssl_options, $this->decryptIV); - if ($this->continuousBuffer) { - if (($len = strlen($ciphertext)) >= $this->block_size) { - $this->decryptIV = substr($ciphertext, -$this->block_size); - } else { - $this->decryptIV = substr($this->decryptIV, $len - $this->block_size) . substr($ciphertext, -$len); - } - } - break; - case self::MODE_OFB: - $plaintext = $this->_openssl_ofb_process($ciphertext, $this->decryptIV, $this->debuffer); - } - - return $this->paddable ? $this->_unpad($plaintext) : $plaintext; - } - - if ($this->engine === self::ENGINE_MCRYPT) { - $block_size = $this->block_size; - if ($this->changed) { - $this->_setupMcrypt(); - $this->changed = false; - } - if ($this->dechanged) { - @mcrypt_generic_init($this->demcrypt, $this->key, $this->decryptIV); - $this->dechanged = false; - } - - if ($this->mode == self::MODE_CFB && $this->continuousBuffer) { - $iv = &$this->decryptIV; - $pos = &$this->debuffer['pos']; - $len = strlen($ciphertext); - $plaintext = ''; - $i = 0; - if ($pos) { - $orig_pos = $pos; - $max = $block_size - $pos; - if ($len >= $max) { - $i = $max; - $len-= $max; - $pos = 0; - } else { - $i = $len; - $pos+= $len; - $len = 0; - } - // ie. $i = min($max, $len), $len-= $i, $pos+= $i, $pos%= $blocksize - $plaintext = substr($iv, $orig_pos) ^ $ciphertext; - $iv = substr_replace($iv, substr($ciphertext, 0, $i), $orig_pos, $i); - } - if ($len >= $block_size) { - $cb = substr($ciphertext, $i, $len - $len % $block_size); - $plaintext.= @mcrypt_generic($this->ecb, $iv . $cb) ^ $cb; - $iv = substr($cb, -$block_size); - $len%= $block_size; - } - if ($len) { - $iv = @mcrypt_generic($this->ecb, $iv); - $plaintext.= $iv ^ substr($ciphertext, -$len); - $iv = substr_replace($iv, substr($ciphertext, -$len), 0, $len); - $pos = $len; - } - - return $plaintext; - } - - $plaintext = @mdecrypt_generic($this->demcrypt, $ciphertext); - - if (!$this->continuousBuffer) { - @mcrypt_generic_init($this->demcrypt, $this->key, $this->decryptIV); - } - - return $this->paddable ? $this->_unpad($plaintext) : $plaintext; - } - - if ($this->changed) { - $this->_setup(); - $this->changed = false; - } - if ($this->use_inline_crypt) { - $inline = $this->inline_crypt; - return $inline('decrypt', $this, $ciphertext); - } - - $block_size = $this->block_size; - - $buffer = &$this->debuffer; - $plaintext = ''; - switch ($this->mode) { - case self::MODE_ECB: - for ($i = 0; $i < strlen($ciphertext); $i+=$block_size) { - $plaintext.= $this->_decryptBlock(substr($ciphertext, $i, $block_size)); - } - break; - case self::MODE_CBC: - $xor = $this->decryptIV; - for ($i = 0; $i < strlen($ciphertext); $i+=$block_size) { - $block = substr($ciphertext, $i, $block_size); - $plaintext.= $this->_decryptBlock($block) ^ $xor; - $xor = $block; - } - if ($this->continuousBuffer) { - $this->decryptIV = $xor; - } - break; - case self::MODE_CTR: - $xor = $this->decryptIV; - if (strlen($buffer['ciphertext'])) { - for ($i = 0; $i < strlen($ciphertext); $i+=$block_size) { - $block = substr($ciphertext, $i, $block_size); - if (strlen($block) > strlen($buffer['ciphertext'])) { - $buffer['ciphertext'].= $this->_encryptBlock($xor); - $this->_increment_str($xor); - } - $key = $this->_string_shift($buffer['ciphertext'], $block_size); - $plaintext.= $block ^ $key; - } - } else { - for ($i = 0; $i < strlen($ciphertext); $i+=$block_size) { - $block = substr($ciphertext, $i, $block_size); - $key = $this->_encryptBlock($xor); - $this->_increment_str($xor); - $plaintext.= $block ^ $key; - } - } - if ($this->continuousBuffer) { - $this->decryptIV = $xor; - if ($start = strlen($ciphertext) % $block_size) { - $buffer['ciphertext'] = substr($key, $start) . $buffer['ciphertext']; - } - } - break; - case self::MODE_CFB: - if ($this->continuousBuffer) { - $iv = &$this->decryptIV; - $pos = &$buffer['pos']; - } else { - $iv = $this->decryptIV; - $pos = 0; - } - $len = strlen($ciphertext); - $i = 0; - if ($pos) { - $orig_pos = $pos; - $max = $block_size - $pos; - if ($len >= $max) { - $i = $max; - $len-= $max; - $pos = 0; - } else { - $i = $len; - $pos+= $len; - $len = 0; - } - // ie. $i = min($max, $len), $len-= $i, $pos+= $i, $pos%= $blocksize - $plaintext = substr($iv, $orig_pos) ^ $ciphertext; - $iv = substr_replace($iv, substr($ciphertext, 0, $i), $orig_pos, $i); - } - while ($len >= $block_size) { - $iv = $this->_encryptBlock($iv); - $cb = substr($ciphertext, $i, $block_size); - $plaintext.= $iv ^ $cb; - $iv = $cb; - $len-= $block_size; - $i+= $block_size; - } - if ($len) { - $iv = $this->_encryptBlock($iv); - $plaintext.= $iv ^ substr($ciphertext, $i); - $iv = substr_replace($iv, substr($ciphertext, $i), 0, $len); - $pos = $len; - } - break; - case self::MODE_CFB8: - $plaintext = ''; - $len = strlen($ciphertext); - $iv = $this->decryptIV; - - for ($i = 0; $i < $len; ++$i) { - $plaintext .= $ciphertext[$i] ^ $this->_encryptBlock($iv); - $iv = substr($iv, 1) . $ciphertext[$i]; - } - - if ($this->continuousBuffer) { - if ($len >= $block_size) { - $this->decryptIV = substr($ciphertext, -$block_size); - } else { - $this->decryptIV = substr($this->decryptIV, $len - $block_size) . substr($ciphertext, -$len); - } - } - break; - case self::MODE_OFB: - $xor = $this->decryptIV; - if (strlen($buffer['xor'])) { - for ($i = 0; $i < strlen($ciphertext); $i+=$block_size) { - $block = substr($ciphertext, $i, $block_size); - if (strlen($block) > strlen($buffer['xor'])) { - $xor = $this->_encryptBlock($xor); - $buffer['xor'].= $xor; - } - $key = $this->_string_shift($buffer['xor'], $block_size); - $plaintext.= $block ^ $key; - } - } else { - for ($i = 0; $i < strlen($ciphertext); $i+=$block_size) { - $xor = $this->_encryptBlock($xor); - $plaintext.= substr($ciphertext, $i, $block_size) ^ $xor; - } - $key = $xor; - } - if ($this->continuousBuffer) { - $this->decryptIV = $xor; - if ($start = strlen($ciphertext) % $block_size) { - $buffer['xor'] = substr($key, $start) . $buffer['xor']; - } - } - break; - case self::MODE_STREAM: - $plaintext = $this->_decryptBlock($ciphertext); - break; - } - return $this->paddable ? $this->_unpad($plaintext) : $plaintext; - } - - /** - * OpenSSL CTR Processor - * - * PHP's OpenSSL bindings do not operate in continuous mode so we'll wrap around it. Since the keystream - * for CTR is the same for both encrypting and decrypting this function is re-used by both Base::encrypt() - * and Base::decrypt(). Also, OpenSSL doesn't implement CTR for all of it's symmetric ciphers so this - * function will emulate CTR with ECB when necessary. - * - * @see self::encrypt() - * @see self::decrypt() - * @param string $plaintext - * @param string $encryptIV - * @param array $buffer - * @return string - * @access private - */ - function _openssl_ctr_process($plaintext, &$encryptIV, &$buffer) - { - $ciphertext = ''; - - $block_size = $this->block_size; - $key = $this->key; - - if ($this->openssl_emulate_ctr) { - $xor = $encryptIV; - if (strlen($buffer['ciphertext'])) { - for ($i = 0; $i < strlen($plaintext); $i+=$block_size) { - $block = substr($plaintext, $i, $block_size); - if (strlen($block) > strlen($buffer['ciphertext'])) { - $result = @openssl_encrypt($xor, $this->cipher_name_openssl_ecb, $key, $this->openssl_options); - $result = !defined('OPENSSL_RAW_DATA') ? substr($result, 0, -$this->block_size) : $result; - $buffer['ciphertext'].= $result; - } - $this->_increment_str($xor); - $otp = $this->_string_shift($buffer['ciphertext'], $block_size); - $ciphertext.= $block ^ $otp; - } - } else { - for ($i = 0; $i < strlen($plaintext); $i+=$block_size) { - $block = substr($plaintext, $i, $block_size); - $otp = @openssl_encrypt($xor, $this->cipher_name_openssl_ecb, $key, $this->openssl_options); - $otp = !defined('OPENSSL_RAW_DATA') ? substr($otp, 0, -$this->block_size) : $otp; - $this->_increment_str($xor); - $ciphertext.= $block ^ $otp; - } - } - if ($this->continuousBuffer) { - $encryptIV = $xor; - if ($start = strlen($plaintext) % $block_size) { - $buffer['ciphertext'] = substr($key, $start) . $buffer['ciphertext']; - } - } - - return $ciphertext; - } - - if (strlen($buffer['ciphertext'])) { - $ciphertext = $plaintext ^ $this->_string_shift($buffer['ciphertext'], strlen($plaintext)); - $plaintext = substr($plaintext, strlen($ciphertext)); - - if (!strlen($plaintext)) { - return $ciphertext; - } - } - - $overflow = strlen($plaintext) % $block_size; - if ($overflow) { - $plaintext2 = $this->_string_pop($plaintext, $overflow); // ie. trim $plaintext to a multiple of $block_size and put rest of $plaintext in $plaintext2 - $encrypted = openssl_encrypt($plaintext . str_repeat("\0", $block_size), $this->cipher_name_openssl, $key, $this->openssl_options, $encryptIV); - $temp = $this->_string_pop($encrypted, $block_size); - $ciphertext.= $encrypted . ($plaintext2 ^ $temp); - if ($this->continuousBuffer) { - $buffer['ciphertext'] = substr($temp, $overflow); - $encryptIV = $temp; - } - } elseif (!strlen($buffer['ciphertext'])) { - $ciphertext.= openssl_encrypt($plaintext . str_repeat("\0", $block_size), $this->cipher_name_openssl, $key, $this->openssl_options, $encryptIV); - $temp = $this->_string_pop($ciphertext, $block_size); - if ($this->continuousBuffer) { - $encryptIV = $temp; - } - } - if ($this->continuousBuffer) { - if (!defined('OPENSSL_RAW_DATA')) { - $encryptIV.= @openssl_encrypt('', $this->cipher_name_openssl_ecb, $key, $this->openssl_options); - } - $encryptIV = openssl_decrypt($encryptIV, $this->cipher_name_openssl_ecb, $key, $this->openssl_options); - if ($overflow) { - $this->_increment_str($encryptIV); - } - } - - return $ciphertext; - } - - /** - * OpenSSL OFB Processor - * - * PHP's OpenSSL bindings do not operate in continuous mode so we'll wrap around it. Since the keystream - * for OFB is the same for both encrypting and decrypting this function is re-used by both Base::encrypt() - * and Base::decrypt(). - * - * @see self::encrypt() - * @see self::decrypt() - * @param string $plaintext - * @param string $encryptIV - * @param array $buffer - * @return string - * @access private - */ - function _openssl_ofb_process($plaintext, &$encryptIV, &$buffer) - { - if (strlen($buffer['xor'])) { - $ciphertext = $plaintext ^ $buffer['xor']; - $buffer['xor'] = substr($buffer['xor'], strlen($ciphertext)); - $plaintext = substr($plaintext, strlen($ciphertext)); - } else { - $ciphertext = ''; - } - - $block_size = $this->block_size; - - $len = strlen($plaintext); - $key = $this->key; - $overflow = $len % $block_size; - - if (strlen($plaintext)) { - if ($overflow) { - $ciphertext.= openssl_encrypt(substr($plaintext, 0, -$overflow) . str_repeat("\0", $block_size), $this->cipher_name_openssl, $key, $this->openssl_options, $encryptIV); - $xor = $this->_string_pop($ciphertext, $block_size); - if ($this->continuousBuffer) { - $encryptIV = $xor; - } - $ciphertext.= $this->_string_shift($xor, $overflow) ^ substr($plaintext, -$overflow); - if ($this->continuousBuffer) { - $buffer['xor'] = $xor; - } - } else { - $ciphertext = openssl_encrypt($plaintext, $this->cipher_name_openssl, $key, $this->openssl_options, $encryptIV); - if ($this->continuousBuffer) { - $encryptIV = substr($ciphertext, -$block_size) ^ substr($plaintext, -$block_size); - } - } - } - - return $ciphertext; - } - - /** - * phpseclib <-> OpenSSL Mode Mapper - * - * May need to be overwritten by classes extending this one in some cases - * - * @return int - * @access private - */ - function _openssl_translate_mode() - { - switch ($this->mode) { - case self::MODE_ECB: - return 'ecb'; - case self::MODE_CBC: - return 'cbc'; - case self::MODE_CTR: - return 'ctr'; - case self::MODE_CFB: - return 'cfb'; - case self::MODE_CFB8: - return 'cfb8'; - case self::MODE_OFB: - return 'ofb'; - } - } - - /** - * Pad "packets". - * - * Block ciphers working by encrypting between their specified [$this->]block_size at a time - * If you ever need to encrypt or decrypt something that isn't of the proper length, it becomes necessary to - * pad the input so that it is of the proper length. - * - * Padding is enabled by default. Sometimes, however, it is undesirable to pad strings. Such is the case in SSH, - * where "packets" are padded with random bytes before being encrypted. Unpad these packets and you risk stripping - * away characters that shouldn't be stripped away. (SSH knows how many bytes are added because the length is - * transmitted separately) - * - * @see self::disablePadding() - * @access public - */ - function enablePadding() - { - $this->padding = true; - } - - /** - * Do not pad packets. - * - * @see self::enablePadding() - * @access public - */ - function disablePadding() - { - $this->padding = false; - } - - /** - * Treat consecutive "packets" as if they are a continuous buffer. - * - * Say you have a 32-byte plaintext $plaintext. Using the default behavior, the two following code snippets - * will yield different outputs: - * - * - * echo $rijndael->encrypt(substr($plaintext, 0, 16)); - * echo $rijndael->encrypt(substr($plaintext, 16, 16)); - * - * - * echo $rijndael->encrypt($plaintext); - * - * - * The solution is to enable the continuous buffer. Although this will resolve the above discrepancy, it creates - * another, as demonstrated with the following: - * - * - * $rijndael->encrypt(substr($plaintext, 0, 16)); - * echo $rijndael->decrypt($rijndael->encrypt(substr($plaintext, 16, 16))); - * - * - * echo $rijndael->decrypt($rijndael->encrypt(substr($plaintext, 16, 16))); - * - * - * With the continuous buffer disabled, these would yield the same output. With it enabled, they yield different - * outputs. The reason is due to the fact that the initialization vector's change after every encryption / - * decryption round when the continuous buffer is enabled. When it's disabled, they remain constant. - * - * Put another way, when the continuous buffer is enabled, the state of the \phpseclib\Crypt\*() object changes after each - * encryption / decryption round, whereas otherwise, it'd remain constant. For this reason, it's recommended that - * continuous buffers not be used. They do offer better security and are, in fact, sometimes required (SSH uses them), - * however, they are also less intuitive and more likely to cause you problems. - * - * @see self::disableContinuousBuffer() - * @access public - * @internal Could, but not must, extend by the child Crypt_* class - */ - function enableContinuousBuffer() - { - if ($this->mode == self::MODE_ECB) { - return; - } - - $this->continuousBuffer = true; - - $this->_setEngine(); - } - - /** - * Treat consecutive packets as if they are a discontinuous buffer. - * - * The default behavior. - * - * @see self::enableContinuousBuffer() - * @access public - * @internal Could, but not must, extend by the child Crypt_* class - */ - function disableContinuousBuffer() - { - if ($this->mode == self::MODE_ECB) { - return; - } - if (!$this->continuousBuffer) { - return; - } - - $this->continuousBuffer = false; - $this->changed = true; - - $this->_setEngine(); - } - - /** - * Test for engine validity - * - * @see self::__construct() - * @param int $engine - * @access public - * @return bool - */ - function isValidEngine($engine) - { - switch ($engine) { - case self::ENGINE_OPENSSL: - if ($this->mode == self::MODE_STREAM && $this->continuousBuffer) { - return false; - } - $this->openssl_emulate_ctr = false; - $result = $this->cipher_name_openssl && - extension_loaded('openssl') && - // PHP 5.3.0 - 5.3.2 did not let you set IV's - version_compare(PHP_VERSION, '5.3.3', '>='); - if (!$result) { - return false; - } - - // prior to PHP 5.4.0 OPENSSL_RAW_DATA and OPENSSL_ZERO_PADDING were not defined. instead of expecting an integer - // $options openssl_encrypt expected a boolean $raw_data. - if (!defined('OPENSSL_RAW_DATA')) { - $this->openssl_options = true; - } else { - $this->openssl_options = OPENSSL_RAW_DATA | OPENSSL_ZERO_PADDING; - } - - $methods = openssl_get_cipher_methods(); - if (in_array($this->cipher_name_openssl, $methods)) { - return true; - } - // not all of openssl's symmetric cipher's support ctr. for those - // that don't we'll emulate it - switch ($this->mode) { - case self::MODE_CTR: - if (in_array($this->cipher_name_openssl_ecb, $methods)) { - $this->openssl_emulate_ctr = true; - return true; - } - } - return false; - case self::ENGINE_MCRYPT: - return $this->cipher_name_mcrypt && - extension_loaded('mcrypt') && - in_array($this->cipher_name_mcrypt, @mcrypt_list_algorithms()); - case self::ENGINE_INTERNAL: - return true; - } - - return false; - } - - /** - * Sets the preferred crypt engine - * - * Currently, $engine could be: - * - * - \phpseclib\Crypt\Base::ENGINE_OPENSSL [very fast] - * - * - \phpseclib\Crypt\Base::ENGINE_MCRYPT [fast] - * - * - \phpseclib\Crypt\Base::ENGINE_INTERNAL [slow] - * - * If the preferred crypt engine is not available the fastest available one will be used - * - * @see self::__construct() - * @param int $engine - * @access public - */ - function setPreferredEngine($engine) - { - switch ($engine) { - //case self::ENGINE_OPENSSL; - case self::ENGINE_MCRYPT: - case self::ENGINE_INTERNAL: - $this->preferredEngine = $engine; - break; - default: - $this->preferredEngine = self::ENGINE_OPENSSL; - } - - $this->_setEngine(); - } - - /** - * Returns the engine currently being utilized - * - * @see self::_setEngine() - * @access public - */ - function getEngine() - { - return $this->engine; - } - - /** - * Sets the engine as appropriate - * - * @see self::__construct() - * @access private - */ - function _setEngine() - { - $this->engine = null; - - $candidateEngines = array( - $this->preferredEngine, - self::ENGINE_OPENSSL, - self::ENGINE_MCRYPT - ); - foreach ($candidateEngines as $engine) { - if ($this->isValidEngine($engine)) { - $this->engine = $engine; - break; - } - } - if (!$this->engine) { - $this->engine = self::ENGINE_INTERNAL; - } - - if ($this->engine != self::ENGINE_MCRYPT && $this->enmcrypt) { - // Closing the current mcrypt resource(s). _mcryptSetup() will, if needed, - // (re)open them with the module named in $this->cipher_name_mcrypt - @mcrypt_module_close($this->enmcrypt); - @mcrypt_module_close($this->demcrypt); - $this->enmcrypt = null; - $this->demcrypt = null; - - if ($this->ecb) { - @mcrypt_module_close($this->ecb); - $this->ecb = null; - } - } - - $this->changed = true; - } - - /** - * Encrypts a block - * - * Note: Must be extended by the child \phpseclib\Crypt\* class - * - * @access private - * @param string $in - * @return string - */ - abstract function _encryptBlock($in); - - /** - * Decrypts a block - * - * Note: Must be extended by the child \phpseclib\Crypt\* class - * - * @access private - * @param string $in - * @return string - */ - abstract function _decryptBlock($in); - - /** - * Setup the key (expansion) - * - * Only used if $engine == self::ENGINE_INTERNAL - * - * Note: Must extend by the child \phpseclib\Crypt\* class - * - * @see self::_setup() - * @access private - */ - abstract function _setupKey(); - - /** - * Setup the self::ENGINE_INTERNAL $engine - * - * (re)init, if necessary, the internal cipher $engine and flush all $buffers - * Used (only) if $engine == self::ENGINE_INTERNAL - * - * _setup() will be called each time if $changed === true - * typically this happens when using one or more of following public methods: - * - * - setKey() - * - * - setIV() - * - * - disableContinuousBuffer() - * - * - First run of encrypt() / decrypt() with no init-settings - * - * @see self::setKey() - * @see self::setIV() - * @see self::disableContinuousBuffer() - * @access private - * @internal _setup() is always called before en/decryption. - * @internal Could, but not must, extend by the child Crypt_* class - */ - function _setup() - { - $this->_clearBuffers(); - $this->_setupKey(); - - if ($this->use_inline_crypt) { - $this->_setupInlineCrypt(); - } - } - - /** - * Setup the self::ENGINE_MCRYPT $engine - * - * (re)init, if necessary, the (ext)mcrypt resources and flush all $buffers - * Used (only) if $engine = self::ENGINE_MCRYPT - * - * _setupMcrypt() will be called each time if $changed === true - * typically this happens when using one or more of following public methods: - * - * - setKey() - * - * - setIV() - * - * - disableContinuousBuffer() - * - * - First run of encrypt() / decrypt() - * - * @see self::setKey() - * @see self::setIV() - * @see self::disableContinuousBuffer() - * @access private - * @internal Could, but not must, extend by the child Crypt_* class - */ - function _setupMcrypt() - { - $this->_clearBuffers(); - $this->enchanged = $this->dechanged = true; - - if (!isset($this->enmcrypt)) { - static $mcrypt_modes = array( - self::MODE_CTR => 'ctr', - self::MODE_ECB => MCRYPT_MODE_ECB, - self::MODE_CBC => MCRYPT_MODE_CBC, - self::MODE_CFB => 'ncfb', - self::MODE_CFB8 => MCRYPT_MODE_CFB, - self::MODE_OFB => MCRYPT_MODE_NOFB, - self::MODE_STREAM => MCRYPT_MODE_STREAM, - ); - - $this->demcrypt = @mcrypt_module_open($this->cipher_name_mcrypt, '', $mcrypt_modes[$this->mode], ''); - $this->enmcrypt = @mcrypt_module_open($this->cipher_name_mcrypt, '', $mcrypt_modes[$this->mode], ''); - - // we need the $ecb mcrypt resource (only) in MODE_CFB with enableContinuousBuffer() - // to workaround mcrypt's broken ncfb implementation in buffered mode - // see: {@link http://phpseclib.sourceforge.net/cfb-demo.phps} - if ($this->mode == self::MODE_CFB) { - $this->ecb = @mcrypt_module_open($this->cipher_name_mcrypt, '', MCRYPT_MODE_ECB, ''); - } - } // else should mcrypt_generic_deinit be called? - - if ($this->mode == self::MODE_CFB) { - @mcrypt_generic_init($this->ecb, $this->key, str_repeat("\0", $this->block_size)); - } - } - - /** - * Pads a string - * - * Pads a string using the RSA PKCS padding standards so that its length is a multiple of the blocksize. - * $this->block_size - (strlen($text) % $this->block_size) bytes are added, each of which is equal to - * chr($this->block_size - (strlen($text) % $this->block_size) - * - * If padding is disabled and $text is not a multiple of the blocksize, the string will be padded regardless - * and padding will, hence forth, be enabled. - * - * @see self::_unpad() - * @param string $text - * @access private - * @return string - */ - function _pad($text) - { - $length = strlen($text); - - if (!$this->padding) { - if ($length % $this->block_size == 0) { - return $text; - } else { - user_error("The plaintext's length ($length) is not a multiple of the block size ({$this->block_size})"); - $this->padding = true; - } - } - - $pad = $this->block_size - ($length % $this->block_size); - - return str_pad($text, $length + $pad, chr($pad)); - } - - /** - * Unpads a string. - * - * If padding is enabled and the reported padding length is invalid the encryption key will be assumed to be wrong - * and false will be returned. - * - * @see self::_pad() - * @param string $text - * @access private - * @return string - */ - function _unpad($text) - { - if (!$this->padding) { - return $text; - } - - $length = ord($text[strlen($text) - 1]); - - if (!$length || $length > $this->block_size) { - return false; - } - - return substr($text, 0, -$length); - } - - /** - * Clears internal buffers - * - * Clearing/resetting the internal buffers is done everytime - * after disableContinuousBuffer() or on cipher $engine (re)init - * ie after setKey() or setIV() - * - * @access public - * @internal Could, but not must, extend by the child Crypt_* class - */ - function _clearBuffers() - { - $this->enbuffer = $this->debuffer = array('ciphertext' => '', 'xor' => '', 'pos' => 0, 'enmcrypt_init' => true); - - // mcrypt's handling of invalid's $iv: - // $this->encryptIV = $this->decryptIV = strlen($this->iv) == $this->block_size ? $this->iv : str_repeat("\0", $this->block_size); - $this->encryptIV = $this->decryptIV = str_pad(substr($this->iv, 0, $this->block_size), $this->block_size, "\0"); - - if (!$this->skip_key_adjustment) { - $this->key = str_pad(substr($this->key, 0, $this->key_length), $this->key_length, "\0"); - } - } - - /** - * String Shift - * - * Inspired by array_shift - * - * @param string $string - * @param int $index - * @access private - * @return string - */ - function _string_shift(&$string, $index = 1) - { - $substr = substr($string, 0, $index); - $string = substr($string, $index); - return $substr; - } - - /** - * String Pop - * - * Inspired by array_pop - * - * @param string $string - * @param int $index - * @access private - * @return string - */ - function _string_pop(&$string, $index = 1) - { - $substr = substr($string, -$index); - $string = substr($string, 0, -$index); - return $substr; - } - - /** - * Increment the current string - * - * @see self::decrypt() - * @see self::encrypt() - * @param string $var - * @access private - */ - function _increment_str(&$var) - { - for ($i = 4; $i <= strlen($var); $i+= 4) { - $temp = substr($var, -$i, 4); - switch ($temp) { - case "\xFF\xFF\xFF\xFF": - $var = substr_replace($var, "\x00\x00\x00\x00", -$i, 4); - break; - case "\x7F\xFF\xFF\xFF": - $var = substr_replace($var, "\x80\x00\x00\x00", -$i, 4); - return; - default: - $temp = unpack('Nnum', $temp); - $var = substr_replace($var, pack('N', $temp['num'] + 1), -$i, 4); - return; - } - } - - $remainder = strlen($var) % 4; - - if ($remainder == 0) { - return; - } - - $temp = unpack('Nnum', str_pad(substr($var, 0, $remainder), 4, "\0", STR_PAD_LEFT)); - $temp = substr(pack('N', $temp['num'] + 1), -$remainder); - $var = substr_replace($var, $temp, 0, $remainder); - } - - /** - * Setup the performance-optimized function for de/encrypt() - * - * Stores the created (or existing) callback function-name - * in $this->inline_crypt - * - * Internally for phpseclib developers: - * - * _setupInlineCrypt() would be called only if: - * - * - $engine == self::ENGINE_INTERNAL and - * - * - $use_inline_crypt === true - * - * - each time on _setup(), after(!) _setupKey() - * - * - * This ensures that _setupInlineCrypt() has always a - * full ready2go initializated internal cipher $engine state - * where, for example, the keys allready expanded, - * keys/block_size calculated and such. - * - * It is, each time if called, the responsibility of _setupInlineCrypt(): - * - * - to set $this->inline_crypt to a valid and fully working callback function - * as a (faster) replacement for encrypt() / decrypt() - * - * - NOT to create unlimited callback functions (for memory reasons!) - * no matter how often _setupInlineCrypt() would be called. At some - * point of amount they must be generic re-useable. - * - * - the code of _setupInlineCrypt() it self, - * and the generated callback code, - * must be, in following order: - * - 100% safe - * - 100% compatible to encrypt()/decrypt() - * - using only php5+ features/lang-constructs/php-extensions if - * compatibility (down to php4) or fallback is provided - * - readable/maintainable/understandable/commented and... not-cryptic-styled-code :-) - * - >= 10% faster than encrypt()/decrypt() [which is, by the way, - * the reason for the existence of _setupInlineCrypt() :-)] - * - memory-nice - * - short (as good as possible) - * - * Note: - _setupInlineCrypt() is using _createInlineCryptFunction() to create the full callback function code. - * - In case of using inline crypting, _setupInlineCrypt() must extend by the child \phpseclib\Crypt\* class. - * - The following variable names are reserved: - * - $_* (all variable names prefixed with an underscore) - * - $self (object reference to it self. Do not use $this, but $self instead) - * - $in (the content of $in has to en/decrypt by the generated code) - * - The callback function should not use the 'return' statement, but en/decrypt'ing the content of $in only - * - * - * @see self::_setup() - * @see self::_createInlineCryptFunction() - * @see self::encrypt() - * @see self::decrypt() - * @access private - * @internal If a Crypt_* class providing inline crypting it must extend _setupInlineCrypt() - */ - function _setupInlineCrypt() - { - // If, for any reason, an extending \phpseclib\Crypt\Base() \phpseclib\Crypt\* class - // not using inline crypting then it must be ensured that: $this->use_inline_crypt = false - // ie in the class var declaration of $use_inline_crypt in general for the \phpseclib\Crypt\* class, - // in the constructor at object instance-time - // or, if it's runtime-specific, at runtime - - $this->use_inline_crypt = false; - } - - /** - * Creates the performance-optimized function for en/decrypt() - * - * Internally for phpseclib developers: - * - * _createInlineCryptFunction(): - * - * - merge the $cipher_code [setup'ed by _setupInlineCrypt()] - * with the current [$this->]mode of operation code - * - * - create the $inline function, which called by encrypt() / decrypt() - * as its replacement to speed up the en/decryption operations. - * - * - return the name of the created $inline callback function - * - * - used to speed up en/decryption - * - * - * - * The main reason why can speed up things [up to 50%] this way are: - * - * - using variables more effective then regular. - * (ie no use of expensive arrays but integers $k_0, $k_1 ... - * or even, for example, the pure $key[] values hardcoded) - * - * - avoiding 1000's of function calls of ie _encryptBlock() - * but inlining the crypt operations. - * in the mode of operation for() loop. - * - * - full loop unroll the (sometimes key-dependent) rounds - * avoiding this way ++$i counters and runtime-if's etc... - * - * The basic code architectur of the generated $inline en/decrypt() - * lambda function, in pseudo php, is: - * - * - * +----------------------------------------------------------------------------------------------+ - * | callback $inline = create_function: | - * | lambda_function_0001_crypt_ECB($action, $text) | - * | { | - * | INSERT PHP CODE OF: | - * | $cipher_code['init_crypt']; // general init code. | - * | // ie: $sbox'es declarations used for | - * | // encrypt and decrypt'ing. | - * | | - * | switch ($action) { | - * | case 'encrypt': | - * | INSERT PHP CODE OF: | - * | $cipher_code['init_encrypt']; // encrypt sepcific init code. | - * | ie: specified $key or $box | - * | declarations for encrypt'ing. | - * | | - * | foreach ($ciphertext) { | - * | $in = $block_size of $ciphertext; | - * | | - * | INSERT PHP CODE OF: | - * | $cipher_code['encrypt_block']; // encrypt's (string) $in, which is always: | - * | // strlen($in) == $this->block_size | - * | // here comes the cipher algorithm in action | - * | // for encryption. | - * | // $cipher_code['encrypt_block'] has to | - * | // encrypt the content of the $in variable | - * | | - * | $plaintext .= $in; | - * | } | - * | return $plaintext; | - * | | - * | case 'decrypt': | - * | INSERT PHP CODE OF: | - * | $cipher_code['init_decrypt']; // decrypt sepcific init code | - * | ie: specified $key or $box | - * | declarations for decrypt'ing. | - * | foreach ($plaintext) { | - * | $in = $block_size of $plaintext; | - * | | - * | INSERT PHP CODE OF: | - * | $cipher_code['decrypt_block']; // decrypt's (string) $in, which is always | - * | // strlen($in) == $this->block_size | - * | // here comes the cipher algorithm in action | - * | // for decryption. | - * | // $cipher_code['decrypt_block'] has to | - * | // decrypt the content of the $in variable | - * | $ciphertext .= $in; | - * | } | - * | return $ciphertext; | - * | } | - * | } | - * +----------------------------------------------------------------------------------------------+ - * - * - * See also the \phpseclib\Crypt\*::_setupInlineCrypt()'s for - * productive inline $cipher_code's how they works. - * - * Structure of: - * - * $cipher_code = array( - * 'init_crypt' => (string) '', // optional - * 'init_encrypt' => (string) '', // optional - * 'init_decrypt' => (string) '', // optional - * 'encrypt_block' => (string) '', // required - * 'decrypt_block' => (string) '' // required - * ); - * - * - * @see self::_setupInlineCrypt() - * @see self::encrypt() - * @see self::decrypt() - * @param array $cipher_code - * @access private - * @return string (the name of the created callback function) - */ - function _createInlineCryptFunction($cipher_code) - { - $block_size = $this->block_size; - - // optional - $init_crypt = isset($cipher_code['init_crypt']) ? $cipher_code['init_crypt'] : ''; - $init_encrypt = isset($cipher_code['init_encrypt']) ? $cipher_code['init_encrypt'] : ''; - $init_decrypt = isset($cipher_code['init_decrypt']) ? $cipher_code['init_decrypt'] : ''; - // required - $encrypt_block = $cipher_code['encrypt_block']; - $decrypt_block = $cipher_code['decrypt_block']; - - // Generating mode of operation inline code, - // merged with the $cipher_code algorithm - // for encrypt- and decryption. - switch ($this->mode) { - case self::MODE_ECB: - $encrypt = $init_encrypt . ' - $_ciphertext = ""; - $_plaintext_len = strlen($_text); - - for ($_i = 0; $_i < $_plaintext_len; $_i+= '.$block_size.') { - $in = substr($_text, $_i, '.$block_size.'); - '.$encrypt_block.' - $_ciphertext.= $in; - } - - return $_ciphertext; - '; - - $decrypt = $init_decrypt . ' - $_plaintext = ""; - $_text = str_pad($_text, strlen($_text) + ('.$block_size.' - strlen($_text) % '.$block_size.') % '.$block_size.', chr(0)); - $_ciphertext_len = strlen($_text); - - for ($_i = 0; $_i < $_ciphertext_len; $_i+= '.$block_size.') { - $in = substr($_text, $_i, '.$block_size.'); - '.$decrypt_block.' - $_plaintext.= $in; - } - - return $self->_unpad($_plaintext); - '; - break; - case self::MODE_CTR: - $encrypt = $init_encrypt . ' - $_ciphertext = ""; - $_plaintext_len = strlen($_text); - $_xor = $self->encryptIV; - $_buffer = &$self->enbuffer; - if (strlen($_buffer["ciphertext"])) { - for ($_i = 0; $_i < $_plaintext_len; $_i+= '.$block_size.') { - $_block = substr($_text, $_i, '.$block_size.'); - if (strlen($_block) > strlen($_buffer["ciphertext"])) { - $in = $_xor; - '.$encrypt_block.' - $self->_increment_str($_xor); - $_buffer["ciphertext"].= $in; - } - $_key = $self->_string_shift($_buffer["ciphertext"], '.$block_size.'); - $_ciphertext.= $_block ^ $_key; - } - } else { - for ($_i = 0; $_i < $_plaintext_len; $_i+= '.$block_size.') { - $_block = substr($_text, $_i, '.$block_size.'); - $in = $_xor; - '.$encrypt_block.' - $self->_increment_str($_xor); - $_key = $in; - $_ciphertext.= $_block ^ $_key; - } - } - if ($self->continuousBuffer) { - $self->encryptIV = $_xor; - if ($_start = $_plaintext_len % '.$block_size.') { - $_buffer["ciphertext"] = substr($_key, $_start) . $_buffer["ciphertext"]; - } - } - - return $_ciphertext; - '; - - $decrypt = $init_encrypt . ' - $_plaintext = ""; - $_ciphertext_len = strlen($_text); - $_xor = $self->decryptIV; - $_buffer = &$self->debuffer; - - if (strlen($_buffer["ciphertext"])) { - for ($_i = 0; $_i < $_ciphertext_len; $_i+= '.$block_size.') { - $_block = substr($_text, $_i, '.$block_size.'); - if (strlen($_block) > strlen($_buffer["ciphertext"])) { - $in = $_xor; - '.$encrypt_block.' - $self->_increment_str($_xor); - $_buffer["ciphertext"].= $in; - } - $_key = $self->_string_shift($_buffer["ciphertext"], '.$block_size.'); - $_plaintext.= $_block ^ $_key; - } - } else { - for ($_i = 0; $_i < $_ciphertext_len; $_i+= '.$block_size.') { - $_block = substr($_text, $_i, '.$block_size.'); - $in = $_xor; - '.$encrypt_block.' - $self->_increment_str($_xor); - $_key = $in; - $_plaintext.= $_block ^ $_key; - } - } - if ($self->continuousBuffer) { - $self->decryptIV = $_xor; - if ($_start = $_ciphertext_len % '.$block_size.') { - $_buffer["ciphertext"] = substr($_key, $_start) . $_buffer["ciphertext"]; - } - } - - return $_plaintext; - '; - break; - case self::MODE_CFB: - $encrypt = $init_encrypt . ' - $_ciphertext = ""; - $_buffer = &$self->enbuffer; - - if ($self->continuousBuffer) { - $_iv = &$self->encryptIV; - $_pos = &$_buffer["pos"]; - } else { - $_iv = $self->encryptIV; - $_pos = 0; - } - $_len = strlen($_text); - $_i = 0; - if ($_pos) { - $_orig_pos = $_pos; - $_max = '.$block_size.' - $_pos; - if ($_len >= $_max) { - $_i = $_max; - $_len-= $_max; - $_pos = 0; - } else { - $_i = $_len; - $_pos+= $_len; - $_len = 0; - } - $_ciphertext = substr($_iv, $_orig_pos) ^ $_text; - $_iv = substr_replace($_iv, $_ciphertext, $_orig_pos, $_i); - } - while ($_len >= '.$block_size.') { - $in = $_iv; - '.$encrypt_block.'; - $_iv = $in ^ substr($_text, $_i, '.$block_size.'); - $_ciphertext.= $_iv; - $_len-= '.$block_size.'; - $_i+= '.$block_size.'; - } - if ($_len) { - $in = $_iv; - '.$encrypt_block.' - $_iv = $in; - $_block = $_iv ^ substr($_text, $_i); - $_iv = substr_replace($_iv, $_block, 0, $_len); - $_ciphertext.= $_block; - $_pos = $_len; - } - return $_ciphertext; - '; - - $decrypt = $init_encrypt . ' - $_plaintext = ""; - $_buffer = &$self->debuffer; - - if ($self->continuousBuffer) { - $_iv = &$self->decryptIV; - $_pos = &$_buffer["pos"]; - } else { - $_iv = $self->decryptIV; - $_pos = 0; - } - $_len = strlen($_text); - $_i = 0; - if ($_pos) { - $_orig_pos = $_pos; - $_max = '.$block_size.' - $_pos; - if ($_len >= $_max) { - $_i = $_max; - $_len-= $_max; - $_pos = 0; - } else { - $_i = $_len; - $_pos+= $_len; - $_len = 0; - } - $_plaintext = substr($_iv, $_orig_pos) ^ $_text; - $_iv = substr_replace($_iv, substr($_text, 0, $_i), $_orig_pos, $_i); - } - while ($_len >= '.$block_size.') { - $in = $_iv; - '.$encrypt_block.' - $_iv = $in; - $cb = substr($_text, $_i, '.$block_size.'); - $_plaintext.= $_iv ^ $cb; - $_iv = $cb; - $_len-= '.$block_size.'; - $_i+= '.$block_size.'; - } - if ($_len) { - $in = $_iv; - '.$encrypt_block.' - $_iv = $in; - $_plaintext.= $_iv ^ substr($_text, $_i); - $_iv = substr_replace($_iv, substr($_text, $_i), 0, $_len); - $_pos = $_len; - } - - return $_plaintext; - '; - break; - case self::MODE_CFB8: - $encrypt = $init_encrypt . ' - $_ciphertext = ""; - $_len = strlen($_text); - $_iv = $self->encryptIV; - - for ($_i = 0; $_i < $_len; ++$_i) { - $in = $_iv; - '.$encrypt_block.' - $_ciphertext .= ($_c = $_text[$_i] ^ $in); - $_iv = substr($_iv, 1) . $_c; - } - - if ($self->continuousBuffer) { - if ($_len >= '.$block_size.') { - $self->encryptIV = substr($_ciphertext, -'.$block_size.'); - } else { - $self->encryptIV = substr($self->encryptIV, $_len - '.$block_size.') . substr($_ciphertext, -$_len); - } - } - - return $_ciphertext; - '; - $decrypt = $init_encrypt . ' - $_plaintext = ""; - $_len = strlen($_text); - $_iv = $self->decryptIV; - - for ($_i = 0; $_i < $_len; ++$_i) { - $in = $_iv; - '.$encrypt_block.' - $_plaintext .= $_text[$_i] ^ $in; - $_iv = substr($_iv, 1) . $_text[$_i]; - } - - if ($self->continuousBuffer) { - if ($_len >= '.$block_size.') { - $self->decryptIV = substr($_text, -'.$block_size.'); - } else { - $self->decryptIV = substr($self->decryptIV, $_len - '.$block_size.') . substr($_text, -$_len); - } - } - - return $_plaintext; - '; - break; - case self::MODE_OFB: - $encrypt = $init_encrypt . ' - $_ciphertext = ""; - $_plaintext_len = strlen($_text); - $_xor = $self->encryptIV; - $_buffer = &$self->enbuffer; - - if (strlen($_buffer["xor"])) { - for ($_i = 0; $_i < $_plaintext_len; $_i+= '.$block_size.') { - $_block = substr($_text, $_i, '.$block_size.'); - if (strlen($_block) > strlen($_buffer["xor"])) { - $in = $_xor; - '.$encrypt_block.' - $_xor = $in; - $_buffer["xor"].= $_xor; - } - $_key = $self->_string_shift($_buffer["xor"], '.$block_size.'); - $_ciphertext.= $_block ^ $_key; - } - } else { - for ($_i = 0; $_i < $_plaintext_len; $_i+= '.$block_size.') { - $in = $_xor; - '.$encrypt_block.' - $_xor = $in; - $_ciphertext.= substr($_text, $_i, '.$block_size.') ^ $_xor; - } - $_key = $_xor; - } - if ($self->continuousBuffer) { - $self->encryptIV = $_xor; - if ($_start = $_plaintext_len % '.$block_size.') { - $_buffer["xor"] = substr($_key, $_start) . $_buffer["xor"]; - } - } - return $_ciphertext; - '; - - $decrypt = $init_encrypt . ' - $_plaintext = ""; - $_ciphertext_len = strlen($_text); - $_xor = $self->decryptIV; - $_buffer = &$self->debuffer; - - if (strlen($_buffer["xor"])) { - for ($_i = 0; $_i < $_ciphertext_len; $_i+= '.$block_size.') { - $_block = substr($_text, $_i, '.$block_size.'); - if (strlen($_block) > strlen($_buffer["xor"])) { - $in = $_xor; - '.$encrypt_block.' - $_xor = $in; - $_buffer["xor"].= $_xor; - } - $_key = $self->_string_shift($_buffer["xor"], '.$block_size.'); - $_plaintext.= $_block ^ $_key; - } - } else { - for ($_i = 0; $_i < $_ciphertext_len; $_i+= '.$block_size.') { - $in = $_xor; - '.$encrypt_block.' - $_xor = $in; - $_plaintext.= substr($_text, $_i, '.$block_size.') ^ $_xor; - } - $_key = $_xor; - } - if ($self->continuousBuffer) { - $self->decryptIV = $_xor; - if ($_start = $_ciphertext_len % '.$block_size.') { - $_buffer["xor"] = substr($_key, $_start) . $_buffer["xor"]; - } - } - return $_plaintext; - '; - break; - case self::MODE_STREAM: - $encrypt = $init_encrypt . ' - $_ciphertext = ""; - '.$encrypt_block.' - return $_ciphertext; - '; - $decrypt = $init_decrypt . ' - $_plaintext = ""; - '.$decrypt_block.' - return $_plaintext; - '; - break; - // case self::MODE_CBC: - default: - $encrypt = $init_encrypt . ' - $_ciphertext = ""; - $_plaintext_len = strlen($_text); - - $in = $self->encryptIV; - - for ($_i = 0; $_i < $_plaintext_len; $_i+= '.$block_size.') { - $in = substr($_text, $_i, '.$block_size.') ^ $in; - '.$encrypt_block.' - $_ciphertext.= $in; - } - - if ($self->continuousBuffer) { - $self->encryptIV = $in; - } - - return $_ciphertext; - '; - - $decrypt = $init_decrypt . ' - $_plaintext = ""; - $_text = str_pad($_text, strlen($_text) + ('.$block_size.' - strlen($_text) % '.$block_size.') % '.$block_size.', chr(0)); - $_ciphertext_len = strlen($_text); - - $_iv = $self->decryptIV; - - for ($_i = 0; $_i < $_ciphertext_len; $_i+= '.$block_size.') { - $in = $_block = substr($_text, $_i, '.$block_size.'); - '.$decrypt_block.' - $_plaintext.= $in ^ $_iv; - $_iv = $_block; - } - - if ($self->continuousBuffer) { - $self->decryptIV = $_iv; - } - - return $self->_unpad($_plaintext); - '; - break; - } - - // Create the $inline function and return its name as string. Ready to run! - if (version_compare(PHP_VERSION, '5.3.0') >= 0) { - eval('$func = function ($_action, &$self, $_text) { ' . $init_crypt . 'if ($_action == "encrypt") { ' . $encrypt . ' } else { ' . $decrypt . ' } };'); - return $func; - } - - return create_function('$_action, &$self, $_text', $init_crypt . 'if ($_action == "encrypt") { ' . $encrypt . ' } else { ' . $decrypt . ' }'); - } - - /** - * Holds the lambda_functions table (classwide) - * - * Each name of the lambda function, created from - * _setupInlineCrypt() && _createInlineCryptFunction() - * is stored, classwide (!), here for reusing. - * - * The string-based index of $function is a classwide - * unique value representing, at least, the $mode of - * operation (or more... depends of the optimizing level) - * for which $mode the lambda function was created. - * - * @access private - * @return array &$functions - */ - function &_getLambdaFunctions() - { - static $functions = array(); - return $functions; - } - - /** - * Generates a digest from $bytes - * - * @see self::_setupInlineCrypt() - * @access private - * @param $bytes - * @return string - */ - function _hashInlineCryptFunction($bytes) - { - if (!isset(self::$WHIRLPOOL_AVAILABLE)) { - self::$WHIRLPOOL_AVAILABLE = extension_loaded('hash') && in_array('whirlpool', hash_algos()); - } - - $result = ''; - $hash = $bytes; - - switch (true) { - case self::$WHIRLPOOL_AVAILABLE: - foreach (str_split($bytes, 64) as $t) { - $hash = hash('whirlpool', $hash, true); - $result .= $t ^ $hash; - } - return $result . hash('whirlpool', $hash, true); - default: - $len = strlen($bytes); - for ($i = 0; $i < $len; $i+=20) { - $t = substr($bytes, $i, 20); - $hash = pack('H*', sha1($hash)); - $result .= $t ^ $hash; - } - return $result . pack('H*', sha1($hash)); - } - } - - /** - * Convert float to int - * - * On ARM CPUs converting floats to ints doesn't always work - * - * @access private - * @param string $x - * @return int - */ - function safe_intval($x) - { - switch (true) { - case is_int($x): - // PHP 5.3, per http://php.net/releases/5_3_0.php, introduced "more consistent float rounding" - case (php_uname('m') & "\xDF\xDF\xDF") != 'ARM': - return $x; - } - return (fmod($x, 0x80000000) & 0x7FFFFFFF) | - ((fmod(floor($x / 0x80000000), 2) & 1) << 31); - } - - /** - * eval()'able string for in-line float to int - * - * @access private - * @return string - */ - function safe_intval_inline() - { - switch (true) { - case defined('PHP_INT_SIZE') && PHP_INT_SIZE == 8: - case (php_uname('m') & "\xDF\xDF\xDF") != 'ARM': - return '%s'; - break; - default: - $safeint = '(is_int($temp = %s) ? $temp : (fmod($temp, 0x80000000) & 0x7FFFFFFF) | '; - return $safeint . '((fmod(floor($temp / 0x80000000), 2) & 1) << 31))'; - } - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/Crypt/Blowfish.php b/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/Crypt/Blowfish.php deleted file mode 100644 index 74cc49de..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/Crypt/Blowfish.php +++ /dev/null @@ -1,571 +0,0 @@ - - * setKey('12345678901234567890123456789012'); - * - * $plaintext = str_repeat('a', 1024); - * - * echo $blowfish->decrypt($blowfish->encrypt($plaintext)); - * ?> - * - * - * @category Crypt - * @package Blowfish - * @author Jim Wigginton - * @author Hans-Juergen Petrich - * @copyright 2007 Jim Wigginton - * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @link http://phpseclib.sourceforge.net - */ - -namespace phpseclib\Crypt; - -/** - * Pure-PHP implementation of Blowfish. - * - * @package Blowfish - * @author Jim Wigginton - * @author Hans-Juergen Petrich - * @access public - */ -class Blowfish extends Base -{ - /** - * Block Length of the cipher - * - * @see \phpseclib\Crypt\Base::block_size - * @var int - * @access private - */ - var $block_size = 8; - - /** - * The mcrypt specific name of the cipher - * - * @see \phpseclib\Crypt\Base::cipher_name_mcrypt - * @var string - * @access private - */ - var $cipher_name_mcrypt = 'blowfish'; - - /** - * Optimizing value while CFB-encrypting - * - * @see \phpseclib\Crypt\Base::cfb_init_len - * @var int - * @access private - */ - var $cfb_init_len = 500; - - /** - * The fixed subkeys boxes ($sbox0 - $sbox3) with 256 entries each - * - * S-Box 0 - * - * @access private - * @var array - */ - var $sbox0 = array( - 0xd1310ba6, 0x98dfb5ac, 0x2ffd72db, 0xd01adfb7, 0xb8e1afed, 0x6a267e96, 0xba7c9045, 0xf12c7f99, - 0x24a19947, 0xb3916cf7, 0x0801f2e2, 0x858efc16, 0x636920d8, 0x71574e69, 0xa458fea3, 0xf4933d7e, - 0x0d95748f, 0x728eb658, 0x718bcd58, 0x82154aee, 0x7b54a41d, 0xc25a59b5, 0x9c30d539, 0x2af26013, - 0xc5d1b023, 0x286085f0, 0xca417918, 0xb8db38ef, 0x8e79dcb0, 0x603a180e, 0x6c9e0e8b, 0xb01e8a3e, - 0xd71577c1, 0xbd314b27, 0x78af2fda, 0x55605c60, 0xe65525f3, 0xaa55ab94, 0x57489862, 0x63e81440, - 0x55ca396a, 0x2aab10b6, 0xb4cc5c34, 0x1141e8ce, 0xa15486af, 0x7c72e993, 0xb3ee1411, 0x636fbc2a, - 0x2ba9c55d, 0x741831f6, 0xce5c3e16, 0x9b87931e, 0xafd6ba33, 0x6c24cf5c, 0x7a325381, 0x28958677, - 0x3b8f4898, 0x6b4bb9af, 0xc4bfe81b, 0x66282193, 0x61d809cc, 0xfb21a991, 0x487cac60, 0x5dec8032, - 0xef845d5d, 0xe98575b1, 0xdc262302, 0xeb651b88, 0x23893e81, 0xd396acc5, 0x0f6d6ff3, 0x83f44239, - 0x2e0b4482, 0xa4842004, 0x69c8f04a, 0x9e1f9b5e, 0x21c66842, 0xf6e96c9a, 0x670c9c61, 0xabd388f0, - 0x6a51a0d2, 0xd8542f68, 0x960fa728, 0xab5133a3, 0x6eef0b6c, 0x137a3be4, 0xba3bf050, 0x7efb2a98, - 0xa1f1651d, 0x39af0176, 0x66ca593e, 0x82430e88, 0x8cee8619, 0x456f9fb4, 0x7d84a5c3, 0x3b8b5ebe, - 0xe06f75d8, 0x85c12073, 0x401a449f, 0x56c16aa6, 0x4ed3aa62, 0x363f7706, 0x1bfedf72, 0x429b023d, - 0x37d0d724, 0xd00a1248, 0xdb0fead3, 0x49f1c09b, 0x075372c9, 0x80991b7b, 0x25d479d8, 0xf6e8def7, - 0xe3fe501a, 0xb6794c3b, 0x976ce0bd, 0x04c006ba, 0xc1a94fb6, 0x409f60c4, 0x5e5c9ec2, 0x196a2463, - 0x68fb6faf, 0x3e6c53b5, 0x1339b2eb, 0x3b52ec6f, 0x6dfc511f, 0x9b30952c, 0xcc814544, 0xaf5ebd09, - 0xbee3d004, 0xde334afd, 0x660f2807, 0x192e4bb3, 0xc0cba857, 0x45c8740f, 0xd20b5f39, 0xb9d3fbdb, - 0x5579c0bd, 0x1a60320a, 0xd6a100c6, 0x402c7279, 0x679f25fe, 0xfb1fa3cc, 0x8ea5e9f8, 0xdb3222f8, - 0x3c7516df, 0xfd616b15, 0x2f501ec8, 0xad0552ab, 0x323db5fa, 0xfd238760, 0x53317b48, 0x3e00df82, - 0x9e5c57bb, 0xca6f8ca0, 0x1a87562e, 0xdf1769db, 0xd542a8f6, 0x287effc3, 0xac6732c6, 0x8c4f5573, - 0x695b27b0, 0xbbca58c8, 0xe1ffa35d, 0xb8f011a0, 0x10fa3d98, 0xfd2183b8, 0x4afcb56c, 0x2dd1d35b, - 0x9a53e479, 0xb6f84565, 0xd28e49bc, 0x4bfb9790, 0xe1ddf2da, 0xa4cb7e33, 0x62fb1341, 0xcee4c6e8, - 0xef20cada, 0x36774c01, 0xd07e9efe, 0x2bf11fb4, 0x95dbda4d, 0xae909198, 0xeaad8e71, 0x6b93d5a0, - 0xd08ed1d0, 0xafc725e0, 0x8e3c5b2f, 0x8e7594b7, 0x8ff6e2fb, 0xf2122b64, 0x8888b812, 0x900df01c, - 0x4fad5ea0, 0x688fc31c, 0xd1cff191, 0xb3a8c1ad, 0x2f2f2218, 0xbe0e1777, 0xea752dfe, 0x8b021fa1, - 0xe5a0cc0f, 0xb56f74e8, 0x18acf3d6, 0xce89e299, 0xb4a84fe0, 0xfd13e0b7, 0x7cc43b81, 0xd2ada8d9, - 0x165fa266, 0x80957705, 0x93cc7314, 0x211a1477, 0xe6ad2065, 0x77b5fa86, 0xc75442f5, 0xfb9d35cf, - 0xebcdaf0c, 0x7b3e89a0, 0xd6411bd3, 0xae1e7e49, 0x00250e2d, 0x2071b35e, 0x226800bb, 0x57b8e0af, - 0x2464369b, 0xf009b91e, 0x5563911d, 0x59dfa6aa, 0x78c14389, 0xd95a537f, 0x207d5ba2, 0x02e5b9c5, - 0x83260376, 0x6295cfa9, 0x11c81968, 0x4e734a41, 0xb3472dca, 0x7b14a94a, 0x1b510052, 0x9a532915, - 0xd60f573f, 0xbc9bc6e4, 0x2b60a476, 0x81e67400, 0x08ba6fb5, 0x571be91f, 0xf296ec6b, 0x2a0dd915, - 0xb6636521, 0xe7b9f9b6, 0xff34052e, 0xc5855664, 0x53b02d5d, 0xa99f8fa1, 0x08ba4799, 0x6e85076a - ); - - /** - * S-Box 1 - * - * @access private - * @var array - */ - var $sbox1 = array( - 0x4b7a70e9, 0xb5b32944, 0xdb75092e, 0xc4192623, 0xad6ea6b0, 0x49a7df7d, 0x9cee60b8, 0x8fedb266, - 0xecaa8c71, 0x699a17ff, 0x5664526c, 0xc2b19ee1, 0x193602a5, 0x75094c29, 0xa0591340, 0xe4183a3e, - 0x3f54989a, 0x5b429d65, 0x6b8fe4d6, 0x99f73fd6, 0xa1d29c07, 0xefe830f5, 0x4d2d38e6, 0xf0255dc1, - 0x4cdd2086, 0x8470eb26, 0x6382e9c6, 0x021ecc5e, 0x09686b3f, 0x3ebaefc9, 0x3c971814, 0x6b6a70a1, - 0x687f3584, 0x52a0e286, 0xb79c5305, 0xaa500737, 0x3e07841c, 0x7fdeae5c, 0x8e7d44ec, 0x5716f2b8, - 0xb03ada37, 0xf0500c0d, 0xf01c1f04, 0x0200b3ff, 0xae0cf51a, 0x3cb574b2, 0x25837a58, 0xdc0921bd, - 0xd19113f9, 0x7ca92ff6, 0x94324773, 0x22f54701, 0x3ae5e581, 0x37c2dadc, 0xc8b57634, 0x9af3dda7, - 0xa9446146, 0x0fd0030e, 0xecc8c73e, 0xa4751e41, 0xe238cd99, 0x3bea0e2f, 0x3280bba1, 0x183eb331, - 0x4e548b38, 0x4f6db908, 0x6f420d03, 0xf60a04bf, 0x2cb81290, 0x24977c79, 0x5679b072, 0xbcaf89af, - 0xde9a771f, 0xd9930810, 0xb38bae12, 0xdccf3f2e, 0x5512721f, 0x2e6b7124, 0x501adde6, 0x9f84cd87, - 0x7a584718, 0x7408da17, 0xbc9f9abc, 0xe94b7d8c, 0xec7aec3a, 0xdb851dfa, 0x63094366, 0xc464c3d2, - 0xef1c1847, 0x3215d908, 0xdd433b37, 0x24c2ba16, 0x12a14d43, 0x2a65c451, 0x50940002, 0x133ae4dd, - 0x71dff89e, 0x10314e55, 0x81ac77d6, 0x5f11199b, 0x043556f1, 0xd7a3c76b, 0x3c11183b, 0x5924a509, - 0xf28fe6ed, 0x97f1fbfa, 0x9ebabf2c, 0x1e153c6e, 0x86e34570, 0xeae96fb1, 0x860e5e0a, 0x5a3e2ab3, - 0x771fe71c, 0x4e3d06fa, 0x2965dcb9, 0x99e71d0f, 0x803e89d6, 0x5266c825, 0x2e4cc978, 0x9c10b36a, - 0xc6150eba, 0x94e2ea78, 0xa5fc3c53, 0x1e0a2df4, 0xf2f74ea7, 0x361d2b3d, 0x1939260f, 0x19c27960, - 0x5223a708, 0xf71312b6, 0xebadfe6e, 0xeac31f66, 0xe3bc4595, 0xa67bc883, 0xb17f37d1, 0x018cff28, - 0xc332ddef, 0xbe6c5aa5, 0x65582185, 0x68ab9802, 0xeecea50f, 0xdb2f953b, 0x2aef7dad, 0x5b6e2f84, - 0x1521b628, 0x29076170, 0xecdd4775, 0x619f1510, 0x13cca830, 0xeb61bd96, 0x0334fe1e, 0xaa0363cf, - 0xb5735c90, 0x4c70a239, 0xd59e9e0b, 0xcbaade14, 0xeecc86bc, 0x60622ca7, 0x9cab5cab, 0xb2f3846e, - 0x648b1eaf, 0x19bdf0ca, 0xa02369b9, 0x655abb50, 0x40685a32, 0x3c2ab4b3, 0x319ee9d5, 0xc021b8f7, - 0x9b540b19, 0x875fa099, 0x95f7997e, 0x623d7da8, 0xf837889a, 0x97e32d77, 0x11ed935f, 0x16681281, - 0x0e358829, 0xc7e61fd6, 0x96dedfa1, 0x7858ba99, 0x57f584a5, 0x1b227263, 0x9b83c3ff, 0x1ac24696, - 0xcdb30aeb, 0x532e3054, 0x8fd948e4, 0x6dbc3128, 0x58ebf2ef, 0x34c6ffea, 0xfe28ed61, 0xee7c3c73, - 0x5d4a14d9, 0xe864b7e3, 0x42105d14, 0x203e13e0, 0x45eee2b6, 0xa3aaabea, 0xdb6c4f15, 0xfacb4fd0, - 0xc742f442, 0xef6abbb5, 0x654f3b1d, 0x41cd2105, 0xd81e799e, 0x86854dc7, 0xe44b476a, 0x3d816250, - 0xcf62a1f2, 0x5b8d2646, 0xfc8883a0, 0xc1c7b6a3, 0x7f1524c3, 0x69cb7492, 0x47848a0b, 0x5692b285, - 0x095bbf00, 0xad19489d, 0x1462b174, 0x23820e00, 0x58428d2a, 0x0c55f5ea, 0x1dadf43e, 0x233f7061, - 0x3372f092, 0x8d937e41, 0xd65fecf1, 0x6c223bdb, 0x7cde3759, 0xcbee7460, 0x4085f2a7, 0xce77326e, - 0xa6078084, 0x19f8509e, 0xe8efd855, 0x61d99735, 0xa969a7aa, 0xc50c06c2, 0x5a04abfc, 0x800bcadc, - 0x9e447a2e, 0xc3453484, 0xfdd56705, 0x0e1e9ec9, 0xdb73dbd3, 0x105588cd, 0x675fda79, 0xe3674340, - 0xc5c43465, 0x713e38d8, 0x3d28f89e, 0xf16dff20, 0x153e21e7, 0x8fb03d4a, 0xe6e39f2b, 0xdb83adf7 - ); - - /** - * S-Box 2 - * - * @access private - * @var array - */ - var $sbox2 = array( - 0xe93d5a68, 0x948140f7, 0xf64c261c, 0x94692934, 0x411520f7, 0x7602d4f7, 0xbcf46b2e, 0xd4a20068, - 0xd4082471, 0x3320f46a, 0x43b7d4b7, 0x500061af, 0x1e39f62e, 0x97244546, 0x14214f74, 0xbf8b8840, - 0x4d95fc1d, 0x96b591af, 0x70f4ddd3, 0x66a02f45, 0xbfbc09ec, 0x03bd9785, 0x7fac6dd0, 0x31cb8504, - 0x96eb27b3, 0x55fd3941, 0xda2547e6, 0xabca0a9a, 0x28507825, 0x530429f4, 0x0a2c86da, 0xe9b66dfb, - 0x68dc1462, 0xd7486900, 0x680ec0a4, 0x27a18dee, 0x4f3ffea2, 0xe887ad8c, 0xb58ce006, 0x7af4d6b6, - 0xaace1e7c, 0xd3375fec, 0xce78a399, 0x406b2a42, 0x20fe9e35, 0xd9f385b9, 0xee39d7ab, 0x3b124e8b, - 0x1dc9faf7, 0x4b6d1856, 0x26a36631, 0xeae397b2, 0x3a6efa74, 0xdd5b4332, 0x6841e7f7, 0xca7820fb, - 0xfb0af54e, 0xd8feb397, 0x454056ac, 0xba489527, 0x55533a3a, 0x20838d87, 0xfe6ba9b7, 0xd096954b, - 0x55a867bc, 0xa1159a58, 0xcca92963, 0x99e1db33, 0xa62a4a56, 0x3f3125f9, 0x5ef47e1c, 0x9029317c, - 0xfdf8e802, 0x04272f70, 0x80bb155c, 0x05282ce3, 0x95c11548, 0xe4c66d22, 0x48c1133f, 0xc70f86dc, - 0x07f9c9ee, 0x41041f0f, 0x404779a4, 0x5d886e17, 0x325f51eb, 0xd59bc0d1, 0xf2bcc18f, 0x41113564, - 0x257b7834, 0x602a9c60, 0xdff8e8a3, 0x1f636c1b, 0x0e12b4c2, 0x02e1329e, 0xaf664fd1, 0xcad18115, - 0x6b2395e0, 0x333e92e1, 0x3b240b62, 0xeebeb922, 0x85b2a20e, 0xe6ba0d99, 0xde720c8c, 0x2da2f728, - 0xd0127845, 0x95b794fd, 0x647d0862, 0xe7ccf5f0, 0x5449a36f, 0x877d48fa, 0xc39dfd27, 0xf33e8d1e, - 0x0a476341, 0x992eff74, 0x3a6f6eab, 0xf4f8fd37, 0xa812dc60, 0xa1ebddf8, 0x991be14c, 0xdb6e6b0d, - 0xc67b5510, 0x6d672c37, 0x2765d43b, 0xdcd0e804, 0xf1290dc7, 0xcc00ffa3, 0xb5390f92, 0x690fed0b, - 0x667b9ffb, 0xcedb7d9c, 0xa091cf0b, 0xd9155ea3, 0xbb132f88, 0x515bad24, 0x7b9479bf, 0x763bd6eb, - 0x37392eb3, 0xcc115979, 0x8026e297, 0xf42e312d, 0x6842ada7, 0xc66a2b3b, 0x12754ccc, 0x782ef11c, - 0x6a124237, 0xb79251e7, 0x06a1bbe6, 0x4bfb6350, 0x1a6b1018, 0x11caedfa, 0x3d25bdd8, 0xe2e1c3c9, - 0x44421659, 0x0a121386, 0xd90cec6e, 0xd5abea2a, 0x64af674e, 0xda86a85f, 0xbebfe988, 0x64e4c3fe, - 0x9dbc8057, 0xf0f7c086, 0x60787bf8, 0x6003604d, 0xd1fd8346, 0xf6381fb0, 0x7745ae04, 0xd736fccc, - 0x83426b33, 0xf01eab71, 0xb0804187, 0x3c005e5f, 0x77a057be, 0xbde8ae24, 0x55464299, 0xbf582e61, - 0x4e58f48f, 0xf2ddfda2, 0xf474ef38, 0x8789bdc2, 0x5366f9c3, 0xc8b38e74, 0xb475f255, 0x46fcd9b9, - 0x7aeb2661, 0x8b1ddf84, 0x846a0e79, 0x915f95e2, 0x466e598e, 0x20b45770, 0x8cd55591, 0xc902de4c, - 0xb90bace1, 0xbb8205d0, 0x11a86248, 0x7574a99e, 0xb77f19b6, 0xe0a9dc09, 0x662d09a1, 0xc4324633, - 0xe85a1f02, 0x09f0be8c, 0x4a99a025, 0x1d6efe10, 0x1ab93d1d, 0x0ba5a4df, 0xa186f20f, 0x2868f169, - 0xdcb7da83, 0x573906fe, 0xa1e2ce9b, 0x4fcd7f52, 0x50115e01, 0xa70683fa, 0xa002b5c4, 0x0de6d027, - 0x9af88c27, 0x773f8641, 0xc3604c06, 0x61a806b5, 0xf0177a28, 0xc0f586e0, 0x006058aa, 0x30dc7d62, - 0x11e69ed7, 0x2338ea63, 0x53c2dd94, 0xc2c21634, 0xbbcbee56, 0x90bcb6de, 0xebfc7da1, 0xce591d76, - 0x6f05e409, 0x4b7c0188, 0x39720a3d, 0x7c927c24, 0x86e3725f, 0x724d9db9, 0x1ac15bb4, 0xd39eb8fc, - 0xed545578, 0x08fca5b5, 0xd83d7cd3, 0x4dad0fc4, 0x1e50ef5e, 0xb161e6f8, 0xa28514d9, 0x6c51133c, - 0x6fd5c7e7, 0x56e14ec4, 0x362abfce, 0xddc6c837, 0xd79a3234, 0x92638212, 0x670efa8e, 0x406000e0 - ); - - /** - * S-Box 3 - * - * @access private - * @var array - */ - var $sbox3 = array( - 0x3a39ce37, 0xd3faf5cf, 0xabc27737, 0x5ac52d1b, 0x5cb0679e, 0x4fa33742, 0xd3822740, 0x99bc9bbe, - 0xd5118e9d, 0xbf0f7315, 0xd62d1c7e, 0xc700c47b, 0xb78c1b6b, 0x21a19045, 0xb26eb1be, 0x6a366eb4, - 0x5748ab2f, 0xbc946e79, 0xc6a376d2, 0x6549c2c8, 0x530ff8ee, 0x468dde7d, 0xd5730a1d, 0x4cd04dc6, - 0x2939bbdb, 0xa9ba4650, 0xac9526e8, 0xbe5ee304, 0xa1fad5f0, 0x6a2d519a, 0x63ef8ce2, 0x9a86ee22, - 0xc089c2b8, 0x43242ef6, 0xa51e03aa, 0x9cf2d0a4, 0x83c061ba, 0x9be96a4d, 0x8fe51550, 0xba645bd6, - 0x2826a2f9, 0xa73a3ae1, 0x4ba99586, 0xef5562e9, 0xc72fefd3, 0xf752f7da, 0x3f046f69, 0x77fa0a59, - 0x80e4a915, 0x87b08601, 0x9b09e6ad, 0x3b3ee593, 0xe990fd5a, 0x9e34d797, 0x2cf0b7d9, 0x022b8b51, - 0x96d5ac3a, 0x017da67d, 0xd1cf3ed6, 0x7c7d2d28, 0x1f9f25cf, 0xadf2b89b, 0x5ad6b472, 0x5a88f54c, - 0xe029ac71, 0xe019a5e6, 0x47b0acfd, 0xed93fa9b, 0xe8d3c48d, 0x283b57cc, 0xf8d56629, 0x79132e28, - 0x785f0191, 0xed756055, 0xf7960e44, 0xe3d35e8c, 0x15056dd4, 0x88f46dba, 0x03a16125, 0x0564f0bd, - 0xc3eb9e15, 0x3c9057a2, 0x97271aec, 0xa93a072a, 0x1b3f6d9b, 0x1e6321f5, 0xf59c66fb, 0x26dcf319, - 0x7533d928, 0xb155fdf5, 0x03563482, 0x8aba3cbb, 0x28517711, 0xc20ad9f8, 0xabcc5167, 0xccad925f, - 0x4de81751, 0x3830dc8e, 0x379d5862, 0x9320f991, 0xea7a90c2, 0xfb3e7bce, 0x5121ce64, 0x774fbe32, - 0xa8b6e37e, 0xc3293d46, 0x48de5369, 0x6413e680, 0xa2ae0810, 0xdd6db224, 0x69852dfd, 0x09072166, - 0xb39a460a, 0x6445c0dd, 0x586cdecf, 0x1c20c8ae, 0x5bbef7dd, 0x1b588d40, 0xccd2017f, 0x6bb4e3bb, - 0xdda26a7e, 0x3a59ff45, 0x3e350a44, 0xbcb4cdd5, 0x72eacea8, 0xfa6484bb, 0x8d6612ae, 0xbf3c6f47, - 0xd29be463, 0x542f5d9e, 0xaec2771b, 0xf64e6370, 0x740e0d8d, 0xe75b1357, 0xf8721671, 0xaf537d5d, - 0x4040cb08, 0x4eb4e2cc, 0x34d2466a, 0x0115af84, 0xe1b00428, 0x95983a1d, 0x06b89fb4, 0xce6ea048, - 0x6f3f3b82, 0x3520ab82, 0x011a1d4b, 0x277227f8, 0x611560b1, 0xe7933fdc, 0xbb3a792b, 0x344525bd, - 0xa08839e1, 0x51ce794b, 0x2f32c9b7, 0xa01fbac9, 0xe01cc87e, 0xbcc7d1f6, 0xcf0111c3, 0xa1e8aac7, - 0x1a908749, 0xd44fbd9a, 0xd0dadecb, 0xd50ada38, 0x0339c32a, 0xc6913667, 0x8df9317c, 0xe0b12b4f, - 0xf79e59b7, 0x43f5bb3a, 0xf2d519ff, 0x27d9459c, 0xbf97222c, 0x15e6fc2a, 0x0f91fc71, 0x9b941525, - 0xfae59361, 0xceb69ceb, 0xc2a86459, 0x12baa8d1, 0xb6c1075e, 0xe3056a0c, 0x10d25065, 0xcb03a442, - 0xe0ec6e0e, 0x1698db3b, 0x4c98a0be, 0x3278e964, 0x9f1f9532, 0xe0d392df, 0xd3a0342b, 0x8971f21e, - 0x1b0a7441, 0x4ba3348c, 0xc5be7120, 0xc37632d8, 0xdf359f8d, 0x9b992f2e, 0xe60b6f47, 0x0fe3f11d, - 0xe54cda54, 0x1edad891, 0xce6279cf, 0xcd3e7e6f, 0x1618b166, 0xfd2c1d05, 0x848fd2c5, 0xf6fb2299, - 0xf523f357, 0xa6327623, 0x93a83531, 0x56cccd02, 0xacf08162, 0x5a75ebb5, 0x6e163697, 0x88d273cc, - 0xde966292, 0x81b949d0, 0x4c50901b, 0x71c65614, 0xe6c6c7bd, 0x327a140a, 0x45e1d006, 0xc3f27b9a, - 0xc9aa53fd, 0x62a80f00, 0xbb25bfe2, 0x35bdd2f6, 0x71126905, 0xb2040222, 0xb6cbcf7c, 0xcd769c2b, - 0x53113ec0, 0x1640e3d3, 0x38abbd60, 0x2547adf0, 0xba38209c, 0xf746ce76, 0x77afa1c5, 0x20756060, - 0x85cbfe4e, 0x8ae88dd8, 0x7aaaf9b0, 0x4cf9aa7e, 0x1948c25c, 0x02fb8a8c, 0x01c36ae4, 0xd6ebe1f9, - 0x90d4f869, 0xa65cdea0, 0x3f09252d, 0xc208e69f, 0xb74e6132, 0xce77e25b, 0x578fdfe3, 0x3ac372e6 - ); - - /** - * P-Array consists of 18 32-bit subkeys - * - * @var array - * @access private - */ - var $parray = array( - 0x243f6a88, 0x85a308d3, 0x13198a2e, 0x03707344, 0xa4093822, 0x299f31d0, - 0x082efa98, 0xec4e6c89, 0x452821e6, 0x38d01377, 0xbe5466cf, 0x34e90c6c, - 0xc0ac29b7, 0xc97c50dd, 0x3f84d5b5, 0xb5470917, 0x9216d5d9, 0x8979fb1b - ); - - /** - * The BCTX-working Array - * - * Holds the expanded key [p] and the key-depended s-boxes [sb] - * - * @var array - * @access private - */ - var $bctx; - - /** - * Holds the last used key - * - * @var array - * @access private - */ - var $kl; - - /** - * The Key Length (in bytes) - * - * @see \phpseclib\Crypt\Base::setKeyLength() - * @var int - * @access private - * @internal The max value is 256 / 8 = 32, the min value is 128 / 8 = 16. Exists in conjunction with $Nk - * because the encryption / decryption / key schedule creation requires this number and not $key_length. We could - * derive this from $key_length or vice versa, but that'd mean we'd have to do multiple shift operations, so in lieu - * of that, we'll just precompute it once. - */ - var $key_length = 16; - - /** - * Sets the key length. - * - * Key lengths can be between 32 and 448 bits. - * - * @access public - * @param int $length - */ - function setKeyLength($length) - { - if ($length < 32) { - $this->key_length = 4; - } elseif ($length > 448) { - $this->key_length = 56; - } else { - $this->key_length = $length >> 3; - } - - parent::setKeyLength($length); - } - - /** - * Test for engine validity - * - * This is mainly just a wrapper to set things up for \phpseclib\Crypt\Base::isValidEngine() - * - * @see \phpseclib\Crypt\Base::isValidEngine() - * @param int $engine - * @access public - * @return bool - */ - function isValidEngine($engine) - { - if ($engine == self::ENGINE_OPENSSL) { - if (version_compare(PHP_VERSION, '5.3.7') < 0 && $this->key_length != 16) { - return false; - } - if ($this->key_length < 16) { - return false; - } - $this->cipher_name_openssl_ecb = 'bf-ecb'; - $this->cipher_name_openssl = 'bf-' . $this->_openssl_translate_mode(); - } - - return parent::isValidEngine($engine); - } - - /** - * Setup the key (expansion) - * - * @see \phpseclib\Crypt\Base::_setupKey() - * @access private - */ - function _setupKey() - { - if (isset($this->kl['key']) && $this->key === $this->kl['key']) { - // already expanded - return; - } - $this->kl = array('key' => $this->key); - - /* key-expanding p[] and S-Box building sb[] */ - $this->bctx = array( - 'p' => array(), - 'sb' => array( - $this->sbox0, - $this->sbox1, - $this->sbox2, - $this->sbox3 - ) - ); - - // unpack binary string in unsigned chars - $key = array_values(unpack('C*', $this->key)); - $keyl = count($key); - for ($j = 0, $i = 0; $i < 18; ++$i) { - // xor P1 with the first 32-bits of the key, xor P2 with the second 32-bits ... - for ($data = 0, $k = 0; $k < 4; ++$k) { - $data = ($data << 8) | $key[$j]; - if (++$j >= $keyl) { - $j = 0; - } - } - $this->bctx['p'][] = $this->parray[$i] ^ $data; - } - - // encrypt the zero-string, replace P1 and P2 with the encrypted data, - // encrypt P3 and P4 with the new P1 and P2, do it with all P-array and subkeys - $data = "\0\0\0\0\0\0\0\0"; - for ($i = 0; $i < 18; $i += 2) { - list($l, $r) = array_values(unpack('N*', $data = $this->_encryptBlock($data))); - $this->bctx['p'][$i ] = $l; - $this->bctx['p'][$i + 1] = $r; - } - for ($i = 0; $i < 4; ++$i) { - for ($j = 0; $j < 256; $j += 2) { - list($l, $r) = array_values(unpack('N*', $data = $this->_encryptBlock($data))); - $this->bctx['sb'][$i][$j ] = $l; - $this->bctx['sb'][$i][$j + 1] = $r; - } - } - } - - /** - * Encrypts a block - * - * @access private - * @param string $in - * @return string - */ - function _encryptBlock($in) - { - $p = $this->bctx["p"]; - // extract($this->bctx["sb"], EXTR_PREFIX_ALL, "sb"); // slower - $sb_0 = $this->bctx["sb"][0]; - $sb_1 = $this->bctx["sb"][1]; - $sb_2 = $this->bctx["sb"][2]; - $sb_3 = $this->bctx["sb"][3]; - - $in = unpack("N*", $in); - $l = $in[1]; - $r = $in[2]; - - for ($i = 0; $i < 16; $i+= 2) { - $l^= $p[$i]; - $r^= $this->safe_intval(($this->safe_intval($sb_0[$l >> 24 & 0xff] + $sb_1[$l >> 16 & 0xff]) ^ - $sb_2[$l >> 8 & 0xff]) + - $sb_3[$l & 0xff]); - - $r^= $p[$i + 1]; - $l^= $this->safe_intval(($this->safe_intval($sb_0[$r >> 24 & 0xff] + $sb_1[$r >> 16 & 0xff]) ^ - $sb_2[$r >> 8 & 0xff]) + - $sb_3[$r & 0xff]); - } - return pack("N*", $r ^ $p[17], $l ^ $p[16]); - } - - /** - * Decrypts a block - * - * @access private - * @param string $in - * @return string - */ - function _decryptBlock($in) - { - $p = $this->bctx["p"]; - $sb_0 = $this->bctx["sb"][0]; - $sb_1 = $this->bctx["sb"][1]; - $sb_2 = $this->bctx["sb"][2]; - $sb_3 = $this->bctx["sb"][3]; - - $in = unpack("N*", $in); - $l = $in[1]; - $r = $in[2]; - - for ($i = 17; $i > 2; $i-= 2) { - $l^= $p[$i]; - $r^= $this->safe_intval(($this->safe_intval($sb_0[$l >> 24 & 0xff] + $sb_1[$l >> 16 & 0xff]) ^ - $sb_2[$l >> 8 & 0xff]) + - $sb_3[$l & 0xff]); - - $r^= $p[$i - 1]; - $l^= $this->safe_intval(($this->safe_intval($sb_0[$r >> 24 & 0xff] + $sb_1[$r >> 16 & 0xff]) ^ - $sb_2[$r >> 8 & 0xff]) + - $sb_3[$r & 0xff]); - } - return pack("N*", $r ^ $p[0], $l ^ $p[1]); - } - - /** - * Setup the performance-optimized function for de/encrypt() - * - * @see \phpseclib\Crypt\Base::_setupInlineCrypt() - * @access private - */ - function _setupInlineCrypt() - { - $lambda_functions =& self::_getLambdaFunctions(); - - // We create max. 10 hi-optimized code for memory reason. Means: For each $key one ultra fast inline-crypt function. - // (Currently, for Blowfish, one generated $lambda_function cost on php5.5@32bit ~100kb unfreeable mem and ~180kb on php5.5@64bit) - // After that, we'll still create very fast optimized code but not the hi-ultimative code, for each $mode one. - $gen_hi_opt_code = (bool)(count($lambda_functions) < 10); - - // Generation of a unique hash for our generated code - $code_hash = "Crypt_Blowfish, {$this->mode}"; - if ($gen_hi_opt_code) { - $code_hash = str_pad($code_hash, 32) . $this->_hashInlineCryptFunction($this->key); - } - - $safeint = $this->safe_intval_inline(); - - if (!isset($lambda_functions[$code_hash])) { - switch (true) { - case $gen_hi_opt_code: - $p = $this->bctx['p']; - $init_crypt = ' - static $sb_0, $sb_1, $sb_2, $sb_3; - if (!$sb_0) { - $sb_0 = $self->bctx["sb"][0]; - $sb_1 = $self->bctx["sb"][1]; - $sb_2 = $self->bctx["sb"][2]; - $sb_3 = $self->bctx["sb"][3]; - } - '; - break; - default: - $p = array(); - for ($i = 0; $i < 18; ++$i) { - $p[] = '$p_' . $i; - } - $init_crypt = ' - list($sb_0, $sb_1, $sb_2, $sb_3) = $self->bctx["sb"]; - list(' . implode(',', $p) . ') = $self->bctx["p"]; - - '; - } - - // Generating encrypt code: - $encrypt_block = ' - $in = unpack("N*", $in); - $l = $in[1]; - $r = $in[2]; - '; - for ($i = 0; $i < 16; $i+= 2) { - $encrypt_block.= ' - $l^= ' . $p[$i] . '; - $r^= ' . sprintf($safeint, '(' . sprintf($safeint, '$sb_0[$l >> 24 & 0xff] + $sb_1[$l >> 16 & 0xff]') . ' ^ - $sb_2[$l >> 8 & 0xff]) + - $sb_3[$l & 0xff]') . '; - - $r^= ' . $p[$i + 1] . '; - $l^= ' . sprintf($safeint, '(' . sprintf($safeint, '$sb_0[$r >> 24 & 0xff] + $sb_1[$r >> 16 & 0xff]') . ' ^ - $sb_2[$r >> 8 & 0xff]) + - $sb_3[$r & 0xff]') . '; - '; - } - $encrypt_block.= ' - $in = pack("N*", - $r ^ ' . $p[17] . ', - $l ^ ' . $p[16] . ' - ); - '; - - // Generating decrypt code: - $decrypt_block = ' - $in = unpack("N*", $in); - $l = $in[1]; - $r = $in[2]; - '; - - for ($i = 17; $i > 2; $i-= 2) { - $decrypt_block.= ' - $l^= ' . $p[$i] . '; - $r^= ' . sprintf($safeint, '(' . sprintf($safeint, '$sb_0[$l >> 24 & 0xff] + $sb_1[$l >> 16 & 0xff]') . ' ^ - $sb_2[$l >> 8 & 0xff]) + - $sb_3[$l & 0xff]') . '; - - $r^= ' . $p[$i - 1] . '; - $l^= ' . sprintf($safeint, '(' . sprintf($safeint, '$sb_0[$r >> 24 & 0xff] + $sb_1[$r >> 16 & 0xff]') . ' ^ - $sb_2[$r >> 8 & 0xff]) + - $sb_3[$r & 0xff]') . '; - '; - } - - $decrypt_block.= ' - $in = pack("N*", - $r ^ ' . $p[0] . ', - $l ^ ' . $p[1] . ' - ); - '; - - $lambda_functions[$code_hash] = $this->_createInlineCryptFunction( - array( - 'init_crypt' => $init_crypt, - 'init_encrypt' => '', - 'init_decrypt' => '', - 'encrypt_block' => $encrypt_block, - 'decrypt_block' => $decrypt_block - ) - ); - } - $this->inline_crypt = $lambda_functions[$code_hash]; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/Crypt/DES.php b/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/Crypt/DES.php deleted file mode 100644 index 9a8225fb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/Crypt/DES.php +++ /dev/null @@ -1,1443 +0,0 @@ - - * setKey('abcdefgh'); - * - * $size = 10 * 1024; - * $plaintext = ''; - * for ($i = 0; $i < $size; $i++) { - * $plaintext.= 'a'; - * } - * - * echo $des->decrypt($des->encrypt($plaintext)); - * ?> - * - * - * @category Crypt - * @package DES - * @author Jim Wigginton - * @copyright 2007 Jim Wigginton - * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @link http://phpseclib.sourceforge.net - */ - -namespace phpseclib\Crypt; - -/** - * Pure-PHP implementation of DES. - * - * @package DES - * @author Jim Wigginton - * @access public - */ -class DES extends Base -{ - /**#@+ - * @access private - * @see \phpseclib\Crypt\DES::_setupKey() - * @see \phpseclib\Crypt\DES::_processBlock() - */ - /** - * Contains $keys[self::ENCRYPT] - */ - const ENCRYPT = 0; - /** - * Contains $keys[self::DECRYPT] - */ - const DECRYPT = 1; - /**#@-*/ - - /** - * Block Length of the cipher - * - * @see \phpseclib\Crypt\Base::block_size - * @var int - * @access private - */ - var $block_size = 8; - - /** - * Key Length (in bytes) - * - * @see \phpseclib\Crypt\Base::setKeyLength() - * @var int - * @access private - */ - var $key_length = 8; - - /** - * The mcrypt specific name of the cipher - * - * @see \phpseclib\Crypt\Base::cipher_name_mcrypt - * @var string - * @access private - */ - var $cipher_name_mcrypt = 'des'; - - /** - * The OpenSSL names of the cipher / modes - * - * @see \phpseclib\Crypt\Base::openssl_mode_names - * @var array - * @access private - */ - var $openssl_mode_names = array( - self::MODE_ECB => 'des-ecb', - self::MODE_CBC => 'des-cbc', - self::MODE_CFB => 'des-cfb', - self::MODE_OFB => 'des-ofb' - // self::MODE_CTR is undefined for DES - ); - - /** - * Optimizing value while CFB-encrypting - * - * @see \phpseclib\Crypt\Base::cfb_init_len - * @var int - * @access private - */ - var $cfb_init_len = 500; - - /** - * Switch for DES/3DES encryption - * - * Used only if $engine == self::ENGINE_INTERNAL - * - * @see self::_setupKey() - * @see self::_processBlock() - * @var int - * @access private - */ - var $des_rounds = 1; - - /** - * max possible size of $key - * - * @see self::setKey() - * @var string - * @access private - */ - var $key_length_max = 8; - - /** - * The Key Schedule - * - * @see self::_setupKey() - * @var array - * @access private - */ - var $keys; - - /** - * Shuffle table. - * - * For each byte value index, the entry holds an 8-byte string - * with each byte containing all bits in the same state as the - * corresponding bit in the index value. - * - * @see self::_processBlock() - * @see self::_setupKey() - * @var array - * @access private - */ - var $shuffle = array( - "\x00\x00\x00\x00\x00\x00\x00\x00", "\x00\x00\x00\x00\x00\x00\x00\xFF", - "\x00\x00\x00\x00\x00\x00\xFF\x00", "\x00\x00\x00\x00\x00\x00\xFF\xFF", - "\x00\x00\x00\x00\x00\xFF\x00\x00", "\x00\x00\x00\x00\x00\xFF\x00\xFF", - "\x00\x00\x00\x00\x00\xFF\xFF\x00", "\x00\x00\x00\x00\x00\xFF\xFF\xFF", - "\x00\x00\x00\x00\xFF\x00\x00\x00", "\x00\x00\x00\x00\xFF\x00\x00\xFF", - "\x00\x00\x00\x00\xFF\x00\xFF\x00", "\x00\x00\x00\x00\xFF\x00\xFF\xFF", - "\x00\x00\x00\x00\xFF\xFF\x00\x00", "\x00\x00\x00\x00\xFF\xFF\x00\xFF", - "\x00\x00\x00\x00\xFF\xFF\xFF\x00", "\x00\x00\x00\x00\xFF\xFF\xFF\xFF", - "\x00\x00\x00\xFF\x00\x00\x00\x00", "\x00\x00\x00\xFF\x00\x00\x00\xFF", - "\x00\x00\x00\xFF\x00\x00\xFF\x00", "\x00\x00\x00\xFF\x00\x00\xFF\xFF", - "\x00\x00\x00\xFF\x00\xFF\x00\x00", "\x00\x00\x00\xFF\x00\xFF\x00\xFF", - "\x00\x00\x00\xFF\x00\xFF\xFF\x00", "\x00\x00\x00\xFF\x00\xFF\xFF\xFF", - "\x00\x00\x00\xFF\xFF\x00\x00\x00", "\x00\x00\x00\xFF\xFF\x00\x00\xFF", - "\x00\x00\x00\xFF\xFF\x00\xFF\x00", "\x00\x00\x00\xFF\xFF\x00\xFF\xFF", - "\x00\x00\x00\xFF\xFF\xFF\x00\x00", "\x00\x00\x00\xFF\xFF\xFF\x00\xFF", - "\x00\x00\x00\xFF\xFF\xFF\xFF\x00", "\x00\x00\x00\xFF\xFF\xFF\xFF\xFF", - "\x00\x00\xFF\x00\x00\x00\x00\x00", "\x00\x00\xFF\x00\x00\x00\x00\xFF", - "\x00\x00\xFF\x00\x00\x00\xFF\x00", "\x00\x00\xFF\x00\x00\x00\xFF\xFF", - "\x00\x00\xFF\x00\x00\xFF\x00\x00", "\x00\x00\xFF\x00\x00\xFF\x00\xFF", - "\x00\x00\xFF\x00\x00\xFF\xFF\x00", "\x00\x00\xFF\x00\x00\xFF\xFF\xFF", - "\x00\x00\xFF\x00\xFF\x00\x00\x00", "\x00\x00\xFF\x00\xFF\x00\x00\xFF", - "\x00\x00\xFF\x00\xFF\x00\xFF\x00", "\x00\x00\xFF\x00\xFF\x00\xFF\xFF", - "\x00\x00\xFF\x00\xFF\xFF\x00\x00", "\x00\x00\xFF\x00\xFF\xFF\x00\xFF", - "\x00\x00\xFF\x00\xFF\xFF\xFF\x00", "\x00\x00\xFF\x00\xFF\xFF\xFF\xFF", - "\x00\x00\xFF\xFF\x00\x00\x00\x00", "\x00\x00\xFF\xFF\x00\x00\x00\xFF", - "\x00\x00\xFF\xFF\x00\x00\xFF\x00", "\x00\x00\xFF\xFF\x00\x00\xFF\xFF", - "\x00\x00\xFF\xFF\x00\xFF\x00\x00", "\x00\x00\xFF\xFF\x00\xFF\x00\xFF", - "\x00\x00\xFF\xFF\x00\xFF\xFF\x00", "\x00\x00\xFF\xFF\x00\xFF\xFF\xFF", - "\x00\x00\xFF\xFF\xFF\x00\x00\x00", "\x00\x00\xFF\xFF\xFF\x00\x00\xFF", - "\x00\x00\xFF\xFF\xFF\x00\xFF\x00", "\x00\x00\xFF\xFF\xFF\x00\xFF\xFF", - "\x00\x00\xFF\xFF\xFF\xFF\x00\x00", "\x00\x00\xFF\xFF\xFF\xFF\x00\xFF", - "\x00\x00\xFF\xFF\xFF\xFF\xFF\x00", "\x00\x00\xFF\xFF\xFF\xFF\xFF\xFF", - "\x00\xFF\x00\x00\x00\x00\x00\x00", "\x00\xFF\x00\x00\x00\x00\x00\xFF", - "\x00\xFF\x00\x00\x00\x00\xFF\x00", "\x00\xFF\x00\x00\x00\x00\xFF\xFF", - "\x00\xFF\x00\x00\x00\xFF\x00\x00", "\x00\xFF\x00\x00\x00\xFF\x00\xFF", - "\x00\xFF\x00\x00\x00\xFF\xFF\x00", "\x00\xFF\x00\x00\x00\xFF\xFF\xFF", - "\x00\xFF\x00\x00\xFF\x00\x00\x00", "\x00\xFF\x00\x00\xFF\x00\x00\xFF", - "\x00\xFF\x00\x00\xFF\x00\xFF\x00", "\x00\xFF\x00\x00\xFF\x00\xFF\xFF", - "\x00\xFF\x00\x00\xFF\xFF\x00\x00", "\x00\xFF\x00\x00\xFF\xFF\x00\xFF", - "\x00\xFF\x00\x00\xFF\xFF\xFF\x00", "\x00\xFF\x00\x00\xFF\xFF\xFF\xFF", - "\x00\xFF\x00\xFF\x00\x00\x00\x00", "\x00\xFF\x00\xFF\x00\x00\x00\xFF", - "\x00\xFF\x00\xFF\x00\x00\xFF\x00", "\x00\xFF\x00\xFF\x00\x00\xFF\xFF", - "\x00\xFF\x00\xFF\x00\xFF\x00\x00", "\x00\xFF\x00\xFF\x00\xFF\x00\xFF", - "\x00\xFF\x00\xFF\x00\xFF\xFF\x00", "\x00\xFF\x00\xFF\x00\xFF\xFF\xFF", - "\x00\xFF\x00\xFF\xFF\x00\x00\x00", "\x00\xFF\x00\xFF\xFF\x00\x00\xFF", - "\x00\xFF\x00\xFF\xFF\x00\xFF\x00", "\x00\xFF\x00\xFF\xFF\x00\xFF\xFF", - "\x00\xFF\x00\xFF\xFF\xFF\x00\x00", "\x00\xFF\x00\xFF\xFF\xFF\x00\xFF", - "\x00\xFF\x00\xFF\xFF\xFF\xFF\x00", "\x00\xFF\x00\xFF\xFF\xFF\xFF\xFF", - "\x00\xFF\xFF\x00\x00\x00\x00\x00", "\x00\xFF\xFF\x00\x00\x00\x00\xFF", - "\x00\xFF\xFF\x00\x00\x00\xFF\x00", "\x00\xFF\xFF\x00\x00\x00\xFF\xFF", - "\x00\xFF\xFF\x00\x00\xFF\x00\x00", "\x00\xFF\xFF\x00\x00\xFF\x00\xFF", - "\x00\xFF\xFF\x00\x00\xFF\xFF\x00", "\x00\xFF\xFF\x00\x00\xFF\xFF\xFF", - "\x00\xFF\xFF\x00\xFF\x00\x00\x00", "\x00\xFF\xFF\x00\xFF\x00\x00\xFF", - "\x00\xFF\xFF\x00\xFF\x00\xFF\x00", "\x00\xFF\xFF\x00\xFF\x00\xFF\xFF", - "\x00\xFF\xFF\x00\xFF\xFF\x00\x00", "\x00\xFF\xFF\x00\xFF\xFF\x00\xFF", - "\x00\xFF\xFF\x00\xFF\xFF\xFF\x00", "\x00\xFF\xFF\x00\xFF\xFF\xFF\xFF", - "\x00\xFF\xFF\xFF\x00\x00\x00\x00", "\x00\xFF\xFF\xFF\x00\x00\x00\xFF", - "\x00\xFF\xFF\xFF\x00\x00\xFF\x00", "\x00\xFF\xFF\xFF\x00\x00\xFF\xFF", - "\x00\xFF\xFF\xFF\x00\xFF\x00\x00", "\x00\xFF\xFF\xFF\x00\xFF\x00\xFF", - "\x00\xFF\xFF\xFF\x00\xFF\xFF\x00", "\x00\xFF\xFF\xFF\x00\xFF\xFF\xFF", - "\x00\xFF\xFF\xFF\xFF\x00\x00\x00", "\x00\xFF\xFF\xFF\xFF\x00\x00\xFF", - "\x00\xFF\xFF\xFF\xFF\x00\xFF\x00", "\x00\xFF\xFF\xFF\xFF\x00\xFF\xFF", - "\x00\xFF\xFF\xFF\xFF\xFF\x00\x00", "\x00\xFF\xFF\xFF\xFF\xFF\x00\xFF", - "\x00\xFF\xFF\xFF\xFF\xFF\xFF\x00", "\x00\xFF\xFF\xFF\xFF\xFF\xFF\xFF", - "\xFF\x00\x00\x00\x00\x00\x00\x00", "\xFF\x00\x00\x00\x00\x00\x00\xFF", - "\xFF\x00\x00\x00\x00\x00\xFF\x00", "\xFF\x00\x00\x00\x00\x00\xFF\xFF", - "\xFF\x00\x00\x00\x00\xFF\x00\x00", "\xFF\x00\x00\x00\x00\xFF\x00\xFF", - "\xFF\x00\x00\x00\x00\xFF\xFF\x00", "\xFF\x00\x00\x00\x00\xFF\xFF\xFF", - "\xFF\x00\x00\x00\xFF\x00\x00\x00", "\xFF\x00\x00\x00\xFF\x00\x00\xFF", - "\xFF\x00\x00\x00\xFF\x00\xFF\x00", "\xFF\x00\x00\x00\xFF\x00\xFF\xFF", - "\xFF\x00\x00\x00\xFF\xFF\x00\x00", "\xFF\x00\x00\x00\xFF\xFF\x00\xFF", - "\xFF\x00\x00\x00\xFF\xFF\xFF\x00", "\xFF\x00\x00\x00\xFF\xFF\xFF\xFF", - "\xFF\x00\x00\xFF\x00\x00\x00\x00", "\xFF\x00\x00\xFF\x00\x00\x00\xFF", - "\xFF\x00\x00\xFF\x00\x00\xFF\x00", "\xFF\x00\x00\xFF\x00\x00\xFF\xFF", - "\xFF\x00\x00\xFF\x00\xFF\x00\x00", "\xFF\x00\x00\xFF\x00\xFF\x00\xFF", - "\xFF\x00\x00\xFF\x00\xFF\xFF\x00", "\xFF\x00\x00\xFF\x00\xFF\xFF\xFF", - "\xFF\x00\x00\xFF\xFF\x00\x00\x00", "\xFF\x00\x00\xFF\xFF\x00\x00\xFF", - "\xFF\x00\x00\xFF\xFF\x00\xFF\x00", "\xFF\x00\x00\xFF\xFF\x00\xFF\xFF", - "\xFF\x00\x00\xFF\xFF\xFF\x00\x00", "\xFF\x00\x00\xFF\xFF\xFF\x00\xFF", - "\xFF\x00\x00\xFF\xFF\xFF\xFF\x00", "\xFF\x00\x00\xFF\xFF\xFF\xFF\xFF", - "\xFF\x00\xFF\x00\x00\x00\x00\x00", "\xFF\x00\xFF\x00\x00\x00\x00\xFF", - "\xFF\x00\xFF\x00\x00\x00\xFF\x00", "\xFF\x00\xFF\x00\x00\x00\xFF\xFF", - "\xFF\x00\xFF\x00\x00\xFF\x00\x00", "\xFF\x00\xFF\x00\x00\xFF\x00\xFF", - "\xFF\x00\xFF\x00\x00\xFF\xFF\x00", "\xFF\x00\xFF\x00\x00\xFF\xFF\xFF", - "\xFF\x00\xFF\x00\xFF\x00\x00\x00", "\xFF\x00\xFF\x00\xFF\x00\x00\xFF", - "\xFF\x00\xFF\x00\xFF\x00\xFF\x00", "\xFF\x00\xFF\x00\xFF\x00\xFF\xFF", - "\xFF\x00\xFF\x00\xFF\xFF\x00\x00", "\xFF\x00\xFF\x00\xFF\xFF\x00\xFF", - "\xFF\x00\xFF\x00\xFF\xFF\xFF\x00", "\xFF\x00\xFF\x00\xFF\xFF\xFF\xFF", - "\xFF\x00\xFF\xFF\x00\x00\x00\x00", "\xFF\x00\xFF\xFF\x00\x00\x00\xFF", - "\xFF\x00\xFF\xFF\x00\x00\xFF\x00", "\xFF\x00\xFF\xFF\x00\x00\xFF\xFF", - "\xFF\x00\xFF\xFF\x00\xFF\x00\x00", "\xFF\x00\xFF\xFF\x00\xFF\x00\xFF", - "\xFF\x00\xFF\xFF\x00\xFF\xFF\x00", "\xFF\x00\xFF\xFF\x00\xFF\xFF\xFF", - "\xFF\x00\xFF\xFF\xFF\x00\x00\x00", "\xFF\x00\xFF\xFF\xFF\x00\x00\xFF", - "\xFF\x00\xFF\xFF\xFF\x00\xFF\x00", "\xFF\x00\xFF\xFF\xFF\x00\xFF\xFF", - "\xFF\x00\xFF\xFF\xFF\xFF\x00\x00", "\xFF\x00\xFF\xFF\xFF\xFF\x00\xFF", - "\xFF\x00\xFF\xFF\xFF\xFF\xFF\x00", "\xFF\x00\xFF\xFF\xFF\xFF\xFF\xFF", - "\xFF\xFF\x00\x00\x00\x00\x00\x00", "\xFF\xFF\x00\x00\x00\x00\x00\xFF", - "\xFF\xFF\x00\x00\x00\x00\xFF\x00", "\xFF\xFF\x00\x00\x00\x00\xFF\xFF", - "\xFF\xFF\x00\x00\x00\xFF\x00\x00", "\xFF\xFF\x00\x00\x00\xFF\x00\xFF", - "\xFF\xFF\x00\x00\x00\xFF\xFF\x00", "\xFF\xFF\x00\x00\x00\xFF\xFF\xFF", - "\xFF\xFF\x00\x00\xFF\x00\x00\x00", "\xFF\xFF\x00\x00\xFF\x00\x00\xFF", - "\xFF\xFF\x00\x00\xFF\x00\xFF\x00", "\xFF\xFF\x00\x00\xFF\x00\xFF\xFF", - "\xFF\xFF\x00\x00\xFF\xFF\x00\x00", "\xFF\xFF\x00\x00\xFF\xFF\x00\xFF", - "\xFF\xFF\x00\x00\xFF\xFF\xFF\x00", "\xFF\xFF\x00\x00\xFF\xFF\xFF\xFF", - "\xFF\xFF\x00\xFF\x00\x00\x00\x00", "\xFF\xFF\x00\xFF\x00\x00\x00\xFF", - "\xFF\xFF\x00\xFF\x00\x00\xFF\x00", "\xFF\xFF\x00\xFF\x00\x00\xFF\xFF", - "\xFF\xFF\x00\xFF\x00\xFF\x00\x00", "\xFF\xFF\x00\xFF\x00\xFF\x00\xFF", - "\xFF\xFF\x00\xFF\x00\xFF\xFF\x00", "\xFF\xFF\x00\xFF\x00\xFF\xFF\xFF", - "\xFF\xFF\x00\xFF\xFF\x00\x00\x00", "\xFF\xFF\x00\xFF\xFF\x00\x00\xFF", - "\xFF\xFF\x00\xFF\xFF\x00\xFF\x00", "\xFF\xFF\x00\xFF\xFF\x00\xFF\xFF", - "\xFF\xFF\x00\xFF\xFF\xFF\x00\x00", "\xFF\xFF\x00\xFF\xFF\xFF\x00\xFF", - "\xFF\xFF\x00\xFF\xFF\xFF\xFF\x00", "\xFF\xFF\x00\xFF\xFF\xFF\xFF\xFF", - "\xFF\xFF\xFF\x00\x00\x00\x00\x00", "\xFF\xFF\xFF\x00\x00\x00\x00\xFF", - "\xFF\xFF\xFF\x00\x00\x00\xFF\x00", "\xFF\xFF\xFF\x00\x00\x00\xFF\xFF", - "\xFF\xFF\xFF\x00\x00\xFF\x00\x00", "\xFF\xFF\xFF\x00\x00\xFF\x00\xFF", - "\xFF\xFF\xFF\x00\x00\xFF\xFF\x00", "\xFF\xFF\xFF\x00\x00\xFF\xFF\xFF", - "\xFF\xFF\xFF\x00\xFF\x00\x00\x00", "\xFF\xFF\xFF\x00\xFF\x00\x00\xFF", - "\xFF\xFF\xFF\x00\xFF\x00\xFF\x00", "\xFF\xFF\xFF\x00\xFF\x00\xFF\xFF", - "\xFF\xFF\xFF\x00\xFF\xFF\x00\x00", "\xFF\xFF\xFF\x00\xFF\xFF\x00\xFF", - "\xFF\xFF\xFF\x00\xFF\xFF\xFF\x00", "\xFF\xFF\xFF\x00\xFF\xFF\xFF\xFF", - "\xFF\xFF\xFF\xFF\x00\x00\x00\x00", "\xFF\xFF\xFF\xFF\x00\x00\x00\xFF", - "\xFF\xFF\xFF\xFF\x00\x00\xFF\x00", "\xFF\xFF\xFF\xFF\x00\x00\xFF\xFF", - "\xFF\xFF\xFF\xFF\x00\xFF\x00\x00", "\xFF\xFF\xFF\xFF\x00\xFF\x00\xFF", - "\xFF\xFF\xFF\xFF\x00\xFF\xFF\x00", "\xFF\xFF\xFF\xFF\x00\xFF\xFF\xFF", - "\xFF\xFF\xFF\xFF\xFF\x00\x00\x00", "\xFF\xFF\xFF\xFF\xFF\x00\x00\xFF", - "\xFF\xFF\xFF\xFF\xFF\x00\xFF\x00", "\xFF\xFF\xFF\xFF\xFF\x00\xFF\xFF", - "\xFF\xFF\xFF\xFF\xFF\xFF\x00\x00", "\xFF\xFF\xFF\xFF\xFF\xFF\x00\xFF", - "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\x00", "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF" - ); - - /** - * IP mapping helper table. - * - * Indexing this table with each source byte performs the initial bit permutation. - * - * @var array - * @access private - */ - var $ipmap = array( - 0x00, 0x10, 0x01, 0x11, 0x20, 0x30, 0x21, 0x31, - 0x02, 0x12, 0x03, 0x13, 0x22, 0x32, 0x23, 0x33, - 0x40, 0x50, 0x41, 0x51, 0x60, 0x70, 0x61, 0x71, - 0x42, 0x52, 0x43, 0x53, 0x62, 0x72, 0x63, 0x73, - 0x04, 0x14, 0x05, 0x15, 0x24, 0x34, 0x25, 0x35, - 0x06, 0x16, 0x07, 0x17, 0x26, 0x36, 0x27, 0x37, - 0x44, 0x54, 0x45, 0x55, 0x64, 0x74, 0x65, 0x75, - 0x46, 0x56, 0x47, 0x57, 0x66, 0x76, 0x67, 0x77, - 0x80, 0x90, 0x81, 0x91, 0xA0, 0xB0, 0xA1, 0xB1, - 0x82, 0x92, 0x83, 0x93, 0xA2, 0xB2, 0xA3, 0xB3, - 0xC0, 0xD0, 0xC1, 0xD1, 0xE0, 0xF0, 0xE1, 0xF1, - 0xC2, 0xD2, 0xC3, 0xD3, 0xE2, 0xF2, 0xE3, 0xF3, - 0x84, 0x94, 0x85, 0x95, 0xA4, 0xB4, 0xA5, 0xB5, - 0x86, 0x96, 0x87, 0x97, 0xA6, 0xB6, 0xA7, 0xB7, - 0xC4, 0xD4, 0xC5, 0xD5, 0xE4, 0xF4, 0xE5, 0xF5, - 0xC6, 0xD6, 0xC7, 0xD7, 0xE6, 0xF6, 0xE7, 0xF7, - 0x08, 0x18, 0x09, 0x19, 0x28, 0x38, 0x29, 0x39, - 0x0A, 0x1A, 0x0B, 0x1B, 0x2A, 0x3A, 0x2B, 0x3B, - 0x48, 0x58, 0x49, 0x59, 0x68, 0x78, 0x69, 0x79, - 0x4A, 0x5A, 0x4B, 0x5B, 0x6A, 0x7A, 0x6B, 0x7B, - 0x0C, 0x1C, 0x0D, 0x1D, 0x2C, 0x3C, 0x2D, 0x3D, - 0x0E, 0x1E, 0x0F, 0x1F, 0x2E, 0x3E, 0x2F, 0x3F, - 0x4C, 0x5C, 0x4D, 0x5D, 0x6C, 0x7C, 0x6D, 0x7D, - 0x4E, 0x5E, 0x4F, 0x5F, 0x6E, 0x7E, 0x6F, 0x7F, - 0x88, 0x98, 0x89, 0x99, 0xA8, 0xB8, 0xA9, 0xB9, - 0x8A, 0x9A, 0x8B, 0x9B, 0xAA, 0xBA, 0xAB, 0xBB, - 0xC8, 0xD8, 0xC9, 0xD9, 0xE8, 0xF8, 0xE9, 0xF9, - 0xCA, 0xDA, 0xCB, 0xDB, 0xEA, 0xFA, 0xEB, 0xFB, - 0x8C, 0x9C, 0x8D, 0x9D, 0xAC, 0xBC, 0xAD, 0xBD, - 0x8E, 0x9E, 0x8F, 0x9F, 0xAE, 0xBE, 0xAF, 0xBF, - 0xCC, 0xDC, 0xCD, 0xDD, 0xEC, 0xFC, 0xED, 0xFD, - 0xCE, 0xDE, 0xCF, 0xDF, 0xEE, 0xFE, 0xEF, 0xFF - ); - - /** - * Inverse IP mapping helper table. - * Indexing this table with a byte value reverses the bit order. - * - * @var array - * @access private - */ - var $invipmap = array( - 0x00, 0x80, 0x40, 0xC0, 0x20, 0xA0, 0x60, 0xE0, - 0x10, 0x90, 0x50, 0xD0, 0x30, 0xB0, 0x70, 0xF0, - 0x08, 0x88, 0x48, 0xC8, 0x28, 0xA8, 0x68, 0xE8, - 0x18, 0x98, 0x58, 0xD8, 0x38, 0xB8, 0x78, 0xF8, - 0x04, 0x84, 0x44, 0xC4, 0x24, 0xA4, 0x64, 0xE4, - 0x14, 0x94, 0x54, 0xD4, 0x34, 0xB4, 0x74, 0xF4, - 0x0C, 0x8C, 0x4C, 0xCC, 0x2C, 0xAC, 0x6C, 0xEC, - 0x1C, 0x9C, 0x5C, 0xDC, 0x3C, 0xBC, 0x7C, 0xFC, - 0x02, 0x82, 0x42, 0xC2, 0x22, 0xA2, 0x62, 0xE2, - 0x12, 0x92, 0x52, 0xD2, 0x32, 0xB2, 0x72, 0xF2, - 0x0A, 0x8A, 0x4A, 0xCA, 0x2A, 0xAA, 0x6A, 0xEA, - 0x1A, 0x9A, 0x5A, 0xDA, 0x3A, 0xBA, 0x7A, 0xFA, - 0x06, 0x86, 0x46, 0xC6, 0x26, 0xA6, 0x66, 0xE6, - 0x16, 0x96, 0x56, 0xD6, 0x36, 0xB6, 0x76, 0xF6, - 0x0E, 0x8E, 0x4E, 0xCE, 0x2E, 0xAE, 0x6E, 0xEE, - 0x1E, 0x9E, 0x5E, 0xDE, 0x3E, 0xBE, 0x7E, 0xFE, - 0x01, 0x81, 0x41, 0xC1, 0x21, 0xA1, 0x61, 0xE1, - 0x11, 0x91, 0x51, 0xD1, 0x31, 0xB1, 0x71, 0xF1, - 0x09, 0x89, 0x49, 0xC9, 0x29, 0xA9, 0x69, 0xE9, - 0x19, 0x99, 0x59, 0xD9, 0x39, 0xB9, 0x79, 0xF9, - 0x05, 0x85, 0x45, 0xC5, 0x25, 0xA5, 0x65, 0xE5, - 0x15, 0x95, 0x55, 0xD5, 0x35, 0xB5, 0x75, 0xF5, - 0x0D, 0x8D, 0x4D, 0xCD, 0x2D, 0xAD, 0x6D, 0xED, - 0x1D, 0x9D, 0x5D, 0xDD, 0x3D, 0xBD, 0x7D, 0xFD, - 0x03, 0x83, 0x43, 0xC3, 0x23, 0xA3, 0x63, 0xE3, - 0x13, 0x93, 0x53, 0xD3, 0x33, 0xB3, 0x73, 0xF3, - 0x0B, 0x8B, 0x4B, 0xCB, 0x2B, 0xAB, 0x6B, 0xEB, - 0x1B, 0x9B, 0x5B, 0xDB, 0x3B, 0xBB, 0x7B, 0xFB, - 0x07, 0x87, 0x47, 0xC7, 0x27, 0xA7, 0x67, 0xE7, - 0x17, 0x97, 0x57, 0xD7, 0x37, 0xB7, 0x77, 0xF7, - 0x0F, 0x8F, 0x4F, 0xCF, 0x2F, 0xAF, 0x6F, 0xEF, - 0x1F, 0x9F, 0x5F, 0xDF, 0x3F, 0xBF, 0x7F, 0xFF - ); - - /** - * Pre-permuted S-box1 - * - * Each box ($sbox1-$sbox8) has been vectorized, then each value pre-permuted using the - * P table: concatenation can then be replaced by exclusive ORs. - * - * @var array - * @access private - */ - var $sbox1 = array( - 0x00808200, 0x00000000, 0x00008000, 0x00808202, - 0x00808002, 0x00008202, 0x00000002, 0x00008000, - 0x00000200, 0x00808200, 0x00808202, 0x00000200, - 0x00800202, 0x00808002, 0x00800000, 0x00000002, - 0x00000202, 0x00800200, 0x00800200, 0x00008200, - 0x00008200, 0x00808000, 0x00808000, 0x00800202, - 0x00008002, 0x00800002, 0x00800002, 0x00008002, - 0x00000000, 0x00000202, 0x00008202, 0x00800000, - 0x00008000, 0x00808202, 0x00000002, 0x00808000, - 0x00808200, 0x00800000, 0x00800000, 0x00000200, - 0x00808002, 0x00008000, 0x00008200, 0x00800002, - 0x00000200, 0x00000002, 0x00800202, 0x00008202, - 0x00808202, 0x00008002, 0x00808000, 0x00800202, - 0x00800002, 0x00000202, 0x00008202, 0x00808200, - 0x00000202, 0x00800200, 0x00800200, 0x00000000, - 0x00008002, 0x00008200, 0x00000000, 0x00808002 - ); - - /** - * Pre-permuted S-box2 - * - * @var array - * @access private - */ - var $sbox2 = array( - 0x40084010, 0x40004000, 0x00004000, 0x00084010, - 0x00080000, 0x00000010, 0x40080010, 0x40004010, - 0x40000010, 0x40084010, 0x40084000, 0x40000000, - 0x40004000, 0x00080000, 0x00000010, 0x40080010, - 0x00084000, 0x00080010, 0x40004010, 0x00000000, - 0x40000000, 0x00004000, 0x00084010, 0x40080000, - 0x00080010, 0x40000010, 0x00000000, 0x00084000, - 0x00004010, 0x40084000, 0x40080000, 0x00004010, - 0x00000000, 0x00084010, 0x40080010, 0x00080000, - 0x40004010, 0x40080000, 0x40084000, 0x00004000, - 0x40080000, 0x40004000, 0x00000010, 0x40084010, - 0x00084010, 0x00000010, 0x00004000, 0x40000000, - 0x00004010, 0x40084000, 0x00080000, 0x40000010, - 0x00080010, 0x40004010, 0x40000010, 0x00080010, - 0x00084000, 0x00000000, 0x40004000, 0x00004010, - 0x40000000, 0x40080010, 0x40084010, 0x00084000 - ); - - /** - * Pre-permuted S-box3 - * - * @var array - * @access private - */ - var $sbox3 = array( - 0x00000104, 0x04010100, 0x00000000, 0x04010004, - 0x04000100, 0x00000000, 0x00010104, 0x04000100, - 0x00010004, 0x04000004, 0x04000004, 0x00010000, - 0x04010104, 0x00010004, 0x04010000, 0x00000104, - 0x04000000, 0x00000004, 0x04010100, 0x00000100, - 0x00010100, 0x04010000, 0x04010004, 0x00010104, - 0x04000104, 0x00010100, 0x00010000, 0x04000104, - 0x00000004, 0x04010104, 0x00000100, 0x04000000, - 0x04010100, 0x04000000, 0x00010004, 0x00000104, - 0x00010000, 0x04010100, 0x04000100, 0x00000000, - 0x00000100, 0x00010004, 0x04010104, 0x04000100, - 0x04000004, 0x00000100, 0x00000000, 0x04010004, - 0x04000104, 0x00010000, 0x04000000, 0x04010104, - 0x00000004, 0x00010104, 0x00010100, 0x04000004, - 0x04010000, 0x04000104, 0x00000104, 0x04010000, - 0x00010104, 0x00000004, 0x04010004, 0x00010100 - ); - - /** - * Pre-permuted S-box4 - * - * @var array - * @access private - */ - var $sbox4 = array( - 0x80401000, 0x80001040, 0x80001040, 0x00000040, - 0x00401040, 0x80400040, 0x80400000, 0x80001000, - 0x00000000, 0x00401000, 0x00401000, 0x80401040, - 0x80000040, 0x00000000, 0x00400040, 0x80400000, - 0x80000000, 0x00001000, 0x00400000, 0x80401000, - 0x00000040, 0x00400000, 0x80001000, 0x00001040, - 0x80400040, 0x80000000, 0x00001040, 0x00400040, - 0x00001000, 0x00401040, 0x80401040, 0x80000040, - 0x00400040, 0x80400000, 0x00401000, 0x80401040, - 0x80000040, 0x00000000, 0x00000000, 0x00401000, - 0x00001040, 0x00400040, 0x80400040, 0x80000000, - 0x80401000, 0x80001040, 0x80001040, 0x00000040, - 0x80401040, 0x80000040, 0x80000000, 0x00001000, - 0x80400000, 0x80001000, 0x00401040, 0x80400040, - 0x80001000, 0x00001040, 0x00400000, 0x80401000, - 0x00000040, 0x00400000, 0x00001000, 0x00401040 - ); - - /** - * Pre-permuted S-box5 - * - * @var array - * @access private - */ - var $sbox5 = array( - 0x00000080, 0x01040080, 0x01040000, 0x21000080, - 0x00040000, 0x00000080, 0x20000000, 0x01040000, - 0x20040080, 0x00040000, 0x01000080, 0x20040080, - 0x21000080, 0x21040000, 0x00040080, 0x20000000, - 0x01000000, 0x20040000, 0x20040000, 0x00000000, - 0x20000080, 0x21040080, 0x21040080, 0x01000080, - 0x21040000, 0x20000080, 0x00000000, 0x21000000, - 0x01040080, 0x01000000, 0x21000000, 0x00040080, - 0x00040000, 0x21000080, 0x00000080, 0x01000000, - 0x20000000, 0x01040000, 0x21000080, 0x20040080, - 0x01000080, 0x20000000, 0x21040000, 0x01040080, - 0x20040080, 0x00000080, 0x01000000, 0x21040000, - 0x21040080, 0x00040080, 0x21000000, 0x21040080, - 0x01040000, 0x00000000, 0x20040000, 0x21000000, - 0x00040080, 0x01000080, 0x20000080, 0x00040000, - 0x00000000, 0x20040000, 0x01040080, 0x20000080 - ); - - /** - * Pre-permuted S-box6 - * - * @var array - * @access private - */ - var $sbox6 = array( - 0x10000008, 0x10200000, 0x00002000, 0x10202008, - 0x10200000, 0x00000008, 0x10202008, 0x00200000, - 0x10002000, 0x00202008, 0x00200000, 0x10000008, - 0x00200008, 0x10002000, 0x10000000, 0x00002008, - 0x00000000, 0x00200008, 0x10002008, 0x00002000, - 0x00202000, 0x10002008, 0x00000008, 0x10200008, - 0x10200008, 0x00000000, 0x00202008, 0x10202000, - 0x00002008, 0x00202000, 0x10202000, 0x10000000, - 0x10002000, 0x00000008, 0x10200008, 0x00202000, - 0x10202008, 0x00200000, 0x00002008, 0x10000008, - 0x00200000, 0x10002000, 0x10000000, 0x00002008, - 0x10000008, 0x10202008, 0x00202000, 0x10200000, - 0x00202008, 0x10202000, 0x00000000, 0x10200008, - 0x00000008, 0x00002000, 0x10200000, 0x00202008, - 0x00002000, 0x00200008, 0x10002008, 0x00000000, - 0x10202000, 0x10000000, 0x00200008, 0x10002008 - ); - - /** - * Pre-permuted S-box7 - * - * @var array - * @access private - */ - var $sbox7 = array( - 0x00100000, 0x02100001, 0x02000401, 0x00000000, - 0x00000400, 0x02000401, 0x00100401, 0x02100400, - 0x02100401, 0x00100000, 0x00000000, 0x02000001, - 0x00000001, 0x02000000, 0x02100001, 0x00000401, - 0x02000400, 0x00100401, 0x00100001, 0x02000400, - 0x02000001, 0x02100000, 0x02100400, 0x00100001, - 0x02100000, 0x00000400, 0x00000401, 0x02100401, - 0x00100400, 0x00000001, 0x02000000, 0x00100400, - 0x02000000, 0x00100400, 0x00100000, 0x02000401, - 0x02000401, 0x02100001, 0x02100001, 0x00000001, - 0x00100001, 0x02000000, 0x02000400, 0x00100000, - 0x02100400, 0x00000401, 0x00100401, 0x02100400, - 0x00000401, 0x02000001, 0x02100401, 0x02100000, - 0x00100400, 0x00000000, 0x00000001, 0x02100401, - 0x00000000, 0x00100401, 0x02100000, 0x00000400, - 0x02000001, 0x02000400, 0x00000400, 0x00100001 - ); - - /** - * Pre-permuted S-box8 - * - * @var array - * @access private - */ - var $sbox8 = array( - 0x08000820, 0x00000800, 0x00020000, 0x08020820, - 0x08000000, 0x08000820, 0x00000020, 0x08000000, - 0x00020020, 0x08020000, 0x08020820, 0x00020800, - 0x08020800, 0x00020820, 0x00000800, 0x00000020, - 0x08020000, 0x08000020, 0x08000800, 0x00000820, - 0x00020800, 0x00020020, 0x08020020, 0x08020800, - 0x00000820, 0x00000000, 0x00000000, 0x08020020, - 0x08000020, 0x08000800, 0x00020820, 0x00020000, - 0x00020820, 0x00020000, 0x08020800, 0x00000800, - 0x00000020, 0x08020020, 0x00000800, 0x00020820, - 0x08000800, 0x00000020, 0x08000020, 0x08020000, - 0x08020020, 0x08000000, 0x00020000, 0x08000820, - 0x00000000, 0x08020820, 0x00020020, 0x08000020, - 0x08020000, 0x08000800, 0x08000820, 0x00000000, - 0x08020820, 0x00020800, 0x00020800, 0x00000820, - 0x00000820, 0x00020020, 0x08000000, 0x08020800 - ); - - /** - * Test for engine validity - * - * This is mainly just a wrapper to set things up for \phpseclib\Crypt\Base::isValidEngine() - * - * @see \phpseclib\Crypt\Base::isValidEngine() - * @param int $engine - * @access public - * @return bool - */ - function isValidEngine($engine) - { - if ($this->key_length_max == 8) { - if ($engine == self::ENGINE_OPENSSL) { - $this->cipher_name_openssl_ecb = 'des-ecb'; - $this->cipher_name_openssl = 'des-' . $this->_openssl_translate_mode(); - } - } - - return parent::isValidEngine($engine); - } - - /** - * Sets the key. - * - * Keys can be of any length. DES, itself, uses 64-bit keys (eg. strlen($key) == 8), however, we - * only use the first eight, if $key has more then eight characters in it, and pad $key with the - * null byte if it is less then eight characters long. - * - * DES also requires that every eighth bit be a parity bit, however, we'll ignore that. - * - * If the key is not explicitly set, it'll be assumed to be all zero's. - * - * @see \phpseclib\Crypt\Base::setKey() - * @access public - * @param string $key - */ - function setKey($key) - { - // We check/cut here only up to max length of the key. - // Key padding to the proper length will be done in _setupKey() - if (strlen($key) > $this->key_length_max) { - $key = substr($key, 0, $this->key_length_max); - } - - // Sets the key - parent::setKey($key); - } - - /** - * Encrypts a block - * - * @see \phpseclib\Crypt\Base::_encryptBlock() - * @see \phpseclib\Crypt\Base::encrypt() - * @see self::encrypt() - * @access private - * @param string $in - * @return string - */ - function _encryptBlock($in) - { - return $this->_processBlock($in, self::ENCRYPT); - } - - /** - * Decrypts a block - * - * @see \phpseclib\Crypt\Base::_decryptBlock() - * @see \phpseclib\Crypt\Base::decrypt() - * @see self::decrypt() - * @access private - * @param string $in - * @return string - */ - function _decryptBlock($in) - { - return $this->_processBlock($in, self::DECRYPT); - } - - /** - * Encrypts or decrypts a 64-bit block - * - * $mode should be either self::ENCRYPT or self::DECRYPT. See - * {@link http://en.wikipedia.org/wiki/Image:Feistel.png Feistel.png} to get a general - * idea of what this function does. - * - * @see self::_encryptBlock() - * @see self::_decryptBlock() - * @access private - * @param string $block - * @param int $mode - * @return string - */ - function _processBlock($block, $mode) - { - static $sbox1, $sbox2, $sbox3, $sbox4, $sbox5, $sbox6, $sbox7, $sbox8, $shuffleip, $shuffleinvip; - if (!$sbox1) { - $sbox1 = array_map("intval", $this->sbox1); - $sbox2 = array_map("intval", $this->sbox2); - $sbox3 = array_map("intval", $this->sbox3); - $sbox4 = array_map("intval", $this->sbox4); - $sbox5 = array_map("intval", $this->sbox5); - $sbox6 = array_map("intval", $this->sbox6); - $sbox7 = array_map("intval", $this->sbox7); - $sbox8 = array_map("intval", $this->sbox8); - /* Merge $shuffle with $[inv]ipmap */ - for ($i = 0; $i < 256; ++$i) { - $shuffleip[] = $this->shuffle[$this->ipmap[$i]]; - $shuffleinvip[] = $this->shuffle[$this->invipmap[$i]]; - } - } - - $keys = $this->keys[$mode]; - $ki = -1; - - // Do the initial IP permutation. - $t = unpack('Nl/Nr', $block); - list($l, $r) = array($t['l'], $t['r']); - $block = ($shuffleip[ $r & 0xFF] & "\x80\x80\x80\x80\x80\x80\x80\x80") | - ($shuffleip[($r >> 8) & 0xFF] & "\x40\x40\x40\x40\x40\x40\x40\x40") | - ($shuffleip[($r >> 16) & 0xFF] & "\x20\x20\x20\x20\x20\x20\x20\x20") | - ($shuffleip[($r >> 24) & 0xFF] & "\x10\x10\x10\x10\x10\x10\x10\x10") | - ($shuffleip[ $l & 0xFF] & "\x08\x08\x08\x08\x08\x08\x08\x08") | - ($shuffleip[($l >> 8) & 0xFF] & "\x04\x04\x04\x04\x04\x04\x04\x04") | - ($shuffleip[($l >> 16) & 0xFF] & "\x02\x02\x02\x02\x02\x02\x02\x02") | - ($shuffleip[($l >> 24) & 0xFF] & "\x01\x01\x01\x01\x01\x01\x01\x01"); - - // Extract L0 and R0. - $t = unpack('Nl/Nr', $block); - list($l, $r) = array($t['l'], $t['r']); - - for ($des_round = 0; $des_round < $this->des_rounds; ++$des_round) { - // Perform the 16 steps. - for ($i = 0; $i < 16; $i++) { - // start of "the Feistel (F) function" - see the following URL: - // http://en.wikipedia.org/wiki/Image:Data_Encryption_Standard_InfoBox_Diagram.png - // Merge key schedule. - $b1 = (($r >> 3) & 0x1FFFFFFF) ^ ($r << 29) ^ $keys[++$ki]; - $b2 = (($r >> 31) & 0x00000001) ^ ($r << 1) ^ $keys[++$ki]; - - // S-box indexing. - $t = $sbox1[($b1 >> 24) & 0x3F] ^ $sbox2[($b2 >> 24) & 0x3F] ^ - $sbox3[($b1 >> 16) & 0x3F] ^ $sbox4[($b2 >> 16) & 0x3F] ^ - $sbox5[($b1 >> 8) & 0x3F] ^ $sbox6[($b2 >> 8) & 0x3F] ^ - $sbox7[ $b1 & 0x3F] ^ $sbox8[ $b2 & 0x3F] ^ $l; - // end of "the Feistel (F) function" - - $l = $r; - $r = $t; - } - - // Last step should not permute L & R. - $t = $l; - $l = $r; - $r = $t; - } - - // Perform the inverse IP permutation. - return ($shuffleinvip[($r >> 24) & 0xFF] & "\x80\x80\x80\x80\x80\x80\x80\x80") | - ($shuffleinvip[($l >> 24) & 0xFF] & "\x40\x40\x40\x40\x40\x40\x40\x40") | - ($shuffleinvip[($r >> 16) & 0xFF] & "\x20\x20\x20\x20\x20\x20\x20\x20") | - ($shuffleinvip[($l >> 16) & 0xFF] & "\x10\x10\x10\x10\x10\x10\x10\x10") | - ($shuffleinvip[($r >> 8) & 0xFF] & "\x08\x08\x08\x08\x08\x08\x08\x08") | - ($shuffleinvip[($l >> 8) & 0xFF] & "\x04\x04\x04\x04\x04\x04\x04\x04") | - ($shuffleinvip[ $r & 0xFF] & "\x02\x02\x02\x02\x02\x02\x02\x02") | - ($shuffleinvip[ $l & 0xFF] & "\x01\x01\x01\x01\x01\x01\x01\x01"); - } - - /** - * Creates the key schedule - * - * @see \phpseclib\Crypt\Base::_setupKey() - * @access private - */ - function _setupKey() - { - if (isset($this->kl['key']) && $this->key === $this->kl['key'] && $this->des_rounds === $this->kl['des_rounds']) { - // already expanded - return; - } - $this->kl = array('key' => $this->key, 'des_rounds' => $this->des_rounds); - - static $shifts = array( // number of key bits shifted per round - 1, 1, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 1 - ); - - static $pc1map = array( - 0x00, 0x00, 0x08, 0x08, 0x04, 0x04, 0x0C, 0x0C, - 0x02, 0x02, 0x0A, 0x0A, 0x06, 0x06, 0x0E, 0x0E, - 0x10, 0x10, 0x18, 0x18, 0x14, 0x14, 0x1C, 0x1C, - 0x12, 0x12, 0x1A, 0x1A, 0x16, 0x16, 0x1E, 0x1E, - 0x20, 0x20, 0x28, 0x28, 0x24, 0x24, 0x2C, 0x2C, - 0x22, 0x22, 0x2A, 0x2A, 0x26, 0x26, 0x2E, 0x2E, - 0x30, 0x30, 0x38, 0x38, 0x34, 0x34, 0x3C, 0x3C, - 0x32, 0x32, 0x3A, 0x3A, 0x36, 0x36, 0x3E, 0x3E, - 0x40, 0x40, 0x48, 0x48, 0x44, 0x44, 0x4C, 0x4C, - 0x42, 0x42, 0x4A, 0x4A, 0x46, 0x46, 0x4E, 0x4E, - 0x50, 0x50, 0x58, 0x58, 0x54, 0x54, 0x5C, 0x5C, - 0x52, 0x52, 0x5A, 0x5A, 0x56, 0x56, 0x5E, 0x5E, - 0x60, 0x60, 0x68, 0x68, 0x64, 0x64, 0x6C, 0x6C, - 0x62, 0x62, 0x6A, 0x6A, 0x66, 0x66, 0x6E, 0x6E, - 0x70, 0x70, 0x78, 0x78, 0x74, 0x74, 0x7C, 0x7C, - 0x72, 0x72, 0x7A, 0x7A, 0x76, 0x76, 0x7E, 0x7E, - 0x80, 0x80, 0x88, 0x88, 0x84, 0x84, 0x8C, 0x8C, - 0x82, 0x82, 0x8A, 0x8A, 0x86, 0x86, 0x8E, 0x8E, - 0x90, 0x90, 0x98, 0x98, 0x94, 0x94, 0x9C, 0x9C, - 0x92, 0x92, 0x9A, 0x9A, 0x96, 0x96, 0x9E, 0x9E, - 0xA0, 0xA0, 0xA8, 0xA8, 0xA4, 0xA4, 0xAC, 0xAC, - 0xA2, 0xA2, 0xAA, 0xAA, 0xA6, 0xA6, 0xAE, 0xAE, - 0xB0, 0xB0, 0xB8, 0xB8, 0xB4, 0xB4, 0xBC, 0xBC, - 0xB2, 0xB2, 0xBA, 0xBA, 0xB6, 0xB6, 0xBE, 0xBE, - 0xC0, 0xC0, 0xC8, 0xC8, 0xC4, 0xC4, 0xCC, 0xCC, - 0xC2, 0xC2, 0xCA, 0xCA, 0xC6, 0xC6, 0xCE, 0xCE, - 0xD0, 0xD0, 0xD8, 0xD8, 0xD4, 0xD4, 0xDC, 0xDC, - 0xD2, 0xD2, 0xDA, 0xDA, 0xD6, 0xD6, 0xDE, 0xDE, - 0xE0, 0xE0, 0xE8, 0xE8, 0xE4, 0xE4, 0xEC, 0xEC, - 0xE2, 0xE2, 0xEA, 0xEA, 0xE6, 0xE6, 0xEE, 0xEE, - 0xF0, 0xF0, 0xF8, 0xF8, 0xF4, 0xF4, 0xFC, 0xFC, - 0xF2, 0xF2, 0xFA, 0xFA, 0xF6, 0xF6, 0xFE, 0xFE - ); - - // Mapping tables for the PC-2 transformation. - static $pc2mapc1 = array( - 0x00000000, 0x00000400, 0x00200000, 0x00200400, - 0x00000001, 0x00000401, 0x00200001, 0x00200401, - 0x02000000, 0x02000400, 0x02200000, 0x02200400, - 0x02000001, 0x02000401, 0x02200001, 0x02200401 - ); - static $pc2mapc2 = array( - 0x00000000, 0x00000800, 0x08000000, 0x08000800, - 0x00010000, 0x00010800, 0x08010000, 0x08010800, - 0x00000000, 0x00000800, 0x08000000, 0x08000800, - 0x00010000, 0x00010800, 0x08010000, 0x08010800, - 0x00000100, 0x00000900, 0x08000100, 0x08000900, - 0x00010100, 0x00010900, 0x08010100, 0x08010900, - 0x00000100, 0x00000900, 0x08000100, 0x08000900, - 0x00010100, 0x00010900, 0x08010100, 0x08010900, - 0x00000010, 0x00000810, 0x08000010, 0x08000810, - 0x00010010, 0x00010810, 0x08010010, 0x08010810, - 0x00000010, 0x00000810, 0x08000010, 0x08000810, - 0x00010010, 0x00010810, 0x08010010, 0x08010810, - 0x00000110, 0x00000910, 0x08000110, 0x08000910, - 0x00010110, 0x00010910, 0x08010110, 0x08010910, - 0x00000110, 0x00000910, 0x08000110, 0x08000910, - 0x00010110, 0x00010910, 0x08010110, 0x08010910, - 0x00040000, 0x00040800, 0x08040000, 0x08040800, - 0x00050000, 0x00050800, 0x08050000, 0x08050800, - 0x00040000, 0x00040800, 0x08040000, 0x08040800, - 0x00050000, 0x00050800, 0x08050000, 0x08050800, - 0x00040100, 0x00040900, 0x08040100, 0x08040900, - 0x00050100, 0x00050900, 0x08050100, 0x08050900, - 0x00040100, 0x00040900, 0x08040100, 0x08040900, - 0x00050100, 0x00050900, 0x08050100, 0x08050900, - 0x00040010, 0x00040810, 0x08040010, 0x08040810, - 0x00050010, 0x00050810, 0x08050010, 0x08050810, - 0x00040010, 0x00040810, 0x08040010, 0x08040810, - 0x00050010, 0x00050810, 0x08050010, 0x08050810, - 0x00040110, 0x00040910, 0x08040110, 0x08040910, - 0x00050110, 0x00050910, 0x08050110, 0x08050910, - 0x00040110, 0x00040910, 0x08040110, 0x08040910, - 0x00050110, 0x00050910, 0x08050110, 0x08050910, - 0x01000000, 0x01000800, 0x09000000, 0x09000800, - 0x01010000, 0x01010800, 0x09010000, 0x09010800, - 0x01000000, 0x01000800, 0x09000000, 0x09000800, - 0x01010000, 0x01010800, 0x09010000, 0x09010800, - 0x01000100, 0x01000900, 0x09000100, 0x09000900, - 0x01010100, 0x01010900, 0x09010100, 0x09010900, - 0x01000100, 0x01000900, 0x09000100, 0x09000900, - 0x01010100, 0x01010900, 0x09010100, 0x09010900, - 0x01000010, 0x01000810, 0x09000010, 0x09000810, - 0x01010010, 0x01010810, 0x09010010, 0x09010810, - 0x01000010, 0x01000810, 0x09000010, 0x09000810, - 0x01010010, 0x01010810, 0x09010010, 0x09010810, - 0x01000110, 0x01000910, 0x09000110, 0x09000910, - 0x01010110, 0x01010910, 0x09010110, 0x09010910, - 0x01000110, 0x01000910, 0x09000110, 0x09000910, - 0x01010110, 0x01010910, 0x09010110, 0x09010910, - 0x01040000, 0x01040800, 0x09040000, 0x09040800, - 0x01050000, 0x01050800, 0x09050000, 0x09050800, - 0x01040000, 0x01040800, 0x09040000, 0x09040800, - 0x01050000, 0x01050800, 0x09050000, 0x09050800, - 0x01040100, 0x01040900, 0x09040100, 0x09040900, - 0x01050100, 0x01050900, 0x09050100, 0x09050900, - 0x01040100, 0x01040900, 0x09040100, 0x09040900, - 0x01050100, 0x01050900, 0x09050100, 0x09050900, - 0x01040010, 0x01040810, 0x09040010, 0x09040810, - 0x01050010, 0x01050810, 0x09050010, 0x09050810, - 0x01040010, 0x01040810, 0x09040010, 0x09040810, - 0x01050010, 0x01050810, 0x09050010, 0x09050810, - 0x01040110, 0x01040910, 0x09040110, 0x09040910, - 0x01050110, 0x01050910, 0x09050110, 0x09050910, - 0x01040110, 0x01040910, 0x09040110, 0x09040910, - 0x01050110, 0x01050910, 0x09050110, 0x09050910 - ); - static $pc2mapc3 = array( - 0x00000000, 0x00000004, 0x00001000, 0x00001004, - 0x00000000, 0x00000004, 0x00001000, 0x00001004, - 0x10000000, 0x10000004, 0x10001000, 0x10001004, - 0x10000000, 0x10000004, 0x10001000, 0x10001004, - 0x00000020, 0x00000024, 0x00001020, 0x00001024, - 0x00000020, 0x00000024, 0x00001020, 0x00001024, - 0x10000020, 0x10000024, 0x10001020, 0x10001024, - 0x10000020, 0x10000024, 0x10001020, 0x10001024, - 0x00080000, 0x00080004, 0x00081000, 0x00081004, - 0x00080000, 0x00080004, 0x00081000, 0x00081004, - 0x10080000, 0x10080004, 0x10081000, 0x10081004, - 0x10080000, 0x10080004, 0x10081000, 0x10081004, - 0x00080020, 0x00080024, 0x00081020, 0x00081024, - 0x00080020, 0x00080024, 0x00081020, 0x00081024, - 0x10080020, 0x10080024, 0x10081020, 0x10081024, - 0x10080020, 0x10080024, 0x10081020, 0x10081024, - 0x20000000, 0x20000004, 0x20001000, 0x20001004, - 0x20000000, 0x20000004, 0x20001000, 0x20001004, - 0x30000000, 0x30000004, 0x30001000, 0x30001004, - 0x30000000, 0x30000004, 0x30001000, 0x30001004, - 0x20000020, 0x20000024, 0x20001020, 0x20001024, - 0x20000020, 0x20000024, 0x20001020, 0x20001024, - 0x30000020, 0x30000024, 0x30001020, 0x30001024, - 0x30000020, 0x30000024, 0x30001020, 0x30001024, - 0x20080000, 0x20080004, 0x20081000, 0x20081004, - 0x20080000, 0x20080004, 0x20081000, 0x20081004, - 0x30080000, 0x30080004, 0x30081000, 0x30081004, - 0x30080000, 0x30080004, 0x30081000, 0x30081004, - 0x20080020, 0x20080024, 0x20081020, 0x20081024, - 0x20080020, 0x20080024, 0x20081020, 0x20081024, - 0x30080020, 0x30080024, 0x30081020, 0x30081024, - 0x30080020, 0x30080024, 0x30081020, 0x30081024, - 0x00000002, 0x00000006, 0x00001002, 0x00001006, - 0x00000002, 0x00000006, 0x00001002, 0x00001006, - 0x10000002, 0x10000006, 0x10001002, 0x10001006, - 0x10000002, 0x10000006, 0x10001002, 0x10001006, - 0x00000022, 0x00000026, 0x00001022, 0x00001026, - 0x00000022, 0x00000026, 0x00001022, 0x00001026, - 0x10000022, 0x10000026, 0x10001022, 0x10001026, - 0x10000022, 0x10000026, 0x10001022, 0x10001026, - 0x00080002, 0x00080006, 0x00081002, 0x00081006, - 0x00080002, 0x00080006, 0x00081002, 0x00081006, - 0x10080002, 0x10080006, 0x10081002, 0x10081006, - 0x10080002, 0x10080006, 0x10081002, 0x10081006, - 0x00080022, 0x00080026, 0x00081022, 0x00081026, - 0x00080022, 0x00080026, 0x00081022, 0x00081026, - 0x10080022, 0x10080026, 0x10081022, 0x10081026, - 0x10080022, 0x10080026, 0x10081022, 0x10081026, - 0x20000002, 0x20000006, 0x20001002, 0x20001006, - 0x20000002, 0x20000006, 0x20001002, 0x20001006, - 0x30000002, 0x30000006, 0x30001002, 0x30001006, - 0x30000002, 0x30000006, 0x30001002, 0x30001006, - 0x20000022, 0x20000026, 0x20001022, 0x20001026, - 0x20000022, 0x20000026, 0x20001022, 0x20001026, - 0x30000022, 0x30000026, 0x30001022, 0x30001026, - 0x30000022, 0x30000026, 0x30001022, 0x30001026, - 0x20080002, 0x20080006, 0x20081002, 0x20081006, - 0x20080002, 0x20080006, 0x20081002, 0x20081006, - 0x30080002, 0x30080006, 0x30081002, 0x30081006, - 0x30080002, 0x30080006, 0x30081002, 0x30081006, - 0x20080022, 0x20080026, 0x20081022, 0x20081026, - 0x20080022, 0x20080026, 0x20081022, 0x20081026, - 0x30080022, 0x30080026, 0x30081022, 0x30081026, - 0x30080022, 0x30080026, 0x30081022, 0x30081026 - ); - static $pc2mapc4 = array( - 0x00000000, 0x00100000, 0x00000008, 0x00100008, - 0x00000200, 0x00100200, 0x00000208, 0x00100208, - 0x00000000, 0x00100000, 0x00000008, 0x00100008, - 0x00000200, 0x00100200, 0x00000208, 0x00100208, - 0x04000000, 0x04100000, 0x04000008, 0x04100008, - 0x04000200, 0x04100200, 0x04000208, 0x04100208, - 0x04000000, 0x04100000, 0x04000008, 0x04100008, - 0x04000200, 0x04100200, 0x04000208, 0x04100208, - 0x00002000, 0x00102000, 0x00002008, 0x00102008, - 0x00002200, 0x00102200, 0x00002208, 0x00102208, - 0x00002000, 0x00102000, 0x00002008, 0x00102008, - 0x00002200, 0x00102200, 0x00002208, 0x00102208, - 0x04002000, 0x04102000, 0x04002008, 0x04102008, - 0x04002200, 0x04102200, 0x04002208, 0x04102208, - 0x04002000, 0x04102000, 0x04002008, 0x04102008, - 0x04002200, 0x04102200, 0x04002208, 0x04102208, - 0x00000000, 0x00100000, 0x00000008, 0x00100008, - 0x00000200, 0x00100200, 0x00000208, 0x00100208, - 0x00000000, 0x00100000, 0x00000008, 0x00100008, - 0x00000200, 0x00100200, 0x00000208, 0x00100208, - 0x04000000, 0x04100000, 0x04000008, 0x04100008, - 0x04000200, 0x04100200, 0x04000208, 0x04100208, - 0x04000000, 0x04100000, 0x04000008, 0x04100008, - 0x04000200, 0x04100200, 0x04000208, 0x04100208, - 0x00002000, 0x00102000, 0x00002008, 0x00102008, - 0x00002200, 0x00102200, 0x00002208, 0x00102208, - 0x00002000, 0x00102000, 0x00002008, 0x00102008, - 0x00002200, 0x00102200, 0x00002208, 0x00102208, - 0x04002000, 0x04102000, 0x04002008, 0x04102008, - 0x04002200, 0x04102200, 0x04002208, 0x04102208, - 0x04002000, 0x04102000, 0x04002008, 0x04102008, - 0x04002200, 0x04102200, 0x04002208, 0x04102208, - 0x00020000, 0x00120000, 0x00020008, 0x00120008, - 0x00020200, 0x00120200, 0x00020208, 0x00120208, - 0x00020000, 0x00120000, 0x00020008, 0x00120008, - 0x00020200, 0x00120200, 0x00020208, 0x00120208, - 0x04020000, 0x04120000, 0x04020008, 0x04120008, - 0x04020200, 0x04120200, 0x04020208, 0x04120208, - 0x04020000, 0x04120000, 0x04020008, 0x04120008, - 0x04020200, 0x04120200, 0x04020208, 0x04120208, - 0x00022000, 0x00122000, 0x00022008, 0x00122008, - 0x00022200, 0x00122200, 0x00022208, 0x00122208, - 0x00022000, 0x00122000, 0x00022008, 0x00122008, - 0x00022200, 0x00122200, 0x00022208, 0x00122208, - 0x04022000, 0x04122000, 0x04022008, 0x04122008, - 0x04022200, 0x04122200, 0x04022208, 0x04122208, - 0x04022000, 0x04122000, 0x04022008, 0x04122008, - 0x04022200, 0x04122200, 0x04022208, 0x04122208, - 0x00020000, 0x00120000, 0x00020008, 0x00120008, - 0x00020200, 0x00120200, 0x00020208, 0x00120208, - 0x00020000, 0x00120000, 0x00020008, 0x00120008, - 0x00020200, 0x00120200, 0x00020208, 0x00120208, - 0x04020000, 0x04120000, 0x04020008, 0x04120008, - 0x04020200, 0x04120200, 0x04020208, 0x04120208, - 0x04020000, 0x04120000, 0x04020008, 0x04120008, - 0x04020200, 0x04120200, 0x04020208, 0x04120208, - 0x00022000, 0x00122000, 0x00022008, 0x00122008, - 0x00022200, 0x00122200, 0x00022208, 0x00122208, - 0x00022000, 0x00122000, 0x00022008, 0x00122008, - 0x00022200, 0x00122200, 0x00022208, 0x00122208, - 0x04022000, 0x04122000, 0x04022008, 0x04122008, - 0x04022200, 0x04122200, 0x04022208, 0x04122208, - 0x04022000, 0x04122000, 0x04022008, 0x04122008, - 0x04022200, 0x04122200, 0x04022208, 0x04122208 - ); - static $pc2mapd1 = array( - 0x00000000, 0x00000001, 0x08000000, 0x08000001, - 0x00200000, 0x00200001, 0x08200000, 0x08200001, - 0x00000002, 0x00000003, 0x08000002, 0x08000003, - 0x00200002, 0x00200003, 0x08200002, 0x08200003 - ); - static $pc2mapd2 = array( - 0x00000000, 0x00100000, 0x00000800, 0x00100800, - 0x00000000, 0x00100000, 0x00000800, 0x00100800, - 0x04000000, 0x04100000, 0x04000800, 0x04100800, - 0x04000000, 0x04100000, 0x04000800, 0x04100800, - 0x00000004, 0x00100004, 0x00000804, 0x00100804, - 0x00000004, 0x00100004, 0x00000804, 0x00100804, - 0x04000004, 0x04100004, 0x04000804, 0x04100804, - 0x04000004, 0x04100004, 0x04000804, 0x04100804, - 0x00000000, 0x00100000, 0x00000800, 0x00100800, - 0x00000000, 0x00100000, 0x00000800, 0x00100800, - 0x04000000, 0x04100000, 0x04000800, 0x04100800, - 0x04000000, 0x04100000, 0x04000800, 0x04100800, - 0x00000004, 0x00100004, 0x00000804, 0x00100804, - 0x00000004, 0x00100004, 0x00000804, 0x00100804, - 0x04000004, 0x04100004, 0x04000804, 0x04100804, - 0x04000004, 0x04100004, 0x04000804, 0x04100804, - 0x00000200, 0x00100200, 0x00000A00, 0x00100A00, - 0x00000200, 0x00100200, 0x00000A00, 0x00100A00, - 0x04000200, 0x04100200, 0x04000A00, 0x04100A00, - 0x04000200, 0x04100200, 0x04000A00, 0x04100A00, - 0x00000204, 0x00100204, 0x00000A04, 0x00100A04, - 0x00000204, 0x00100204, 0x00000A04, 0x00100A04, - 0x04000204, 0x04100204, 0x04000A04, 0x04100A04, - 0x04000204, 0x04100204, 0x04000A04, 0x04100A04, - 0x00000200, 0x00100200, 0x00000A00, 0x00100A00, - 0x00000200, 0x00100200, 0x00000A00, 0x00100A00, - 0x04000200, 0x04100200, 0x04000A00, 0x04100A00, - 0x04000200, 0x04100200, 0x04000A00, 0x04100A00, - 0x00000204, 0x00100204, 0x00000A04, 0x00100A04, - 0x00000204, 0x00100204, 0x00000A04, 0x00100A04, - 0x04000204, 0x04100204, 0x04000A04, 0x04100A04, - 0x04000204, 0x04100204, 0x04000A04, 0x04100A04, - 0x00020000, 0x00120000, 0x00020800, 0x00120800, - 0x00020000, 0x00120000, 0x00020800, 0x00120800, - 0x04020000, 0x04120000, 0x04020800, 0x04120800, - 0x04020000, 0x04120000, 0x04020800, 0x04120800, - 0x00020004, 0x00120004, 0x00020804, 0x00120804, - 0x00020004, 0x00120004, 0x00020804, 0x00120804, - 0x04020004, 0x04120004, 0x04020804, 0x04120804, - 0x04020004, 0x04120004, 0x04020804, 0x04120804, - 0x00020000, 0x00120000, 0x00020800, 0x00120800, - 0x00020000, 0x00120000, 0x00020800, 0x00120800, - 0x04020000, 0x04120000, 0x04020800, 0x04120800, - 0x04020000, 0x04120000, 0x04020800, 0x04120800, - 0x00020004, 0x00120004, 0x00020804, 0x00120804, - 0x00020004, 0x00120004, 0x00020804, 0x00120804, - 0x04020004, 0x04120004, 0x04020804, 0x04120804, - 0x04020004, 0x04120004, 0x04020804, 0x04120804, - 0x00020200, 0x00120200, 0x00020A00, 0x00120A00, - 0x00020200, 0x00120200, 0x00020A00, 0x00120A00, - 0x04020200, 0x04120200, 0x04020A00, 0x04120A00, - 0x04020200, 0x04120200, 0x04020A00, 0x04120A00, - 0x00020204, 0x00120204, 0x00020A04, 0x00120A04, - 0x00020204, 0x00120204, 0x00020A04, 0x00120A04, - 0x04020204, 0x04120204, 0x04020A04, 0x04120A04, - 0x04020204, 0x04120204, 0x04020A04, 0x04120A04, - 0x00020200, 0x00120200, 0x00020A00, 0x00120A00, - 0x00020200, 0x00120200, 0x00020A00, 0x00120A00, - 0x04020200, 0x04120200, 0x04020A00, 0x04120A00, - 0x04020200, 0x04120200, 0x04020A00, 0x04120A00, - 0x00020204, 0x00120204, 0x00020A04, 0x00120A04, - 0x00020204, 0x00120204, 0x00020A04, 0x00120A04, - 0x04020204, 0x04120204, 0x04020A04, 0x04120A04, - 0x04020204, 0x04120204, 0x04020A04, 0x04120A04 - ); - static $pc2mapd3 = array( - 0x00000000, 0x00010000, 0x02000000, 0x02010000, - 0x00000020, 0x00010020, 0x02000020, 0x02010020, - 0x00040000, 0x00050000, 0x02040000, 0x02050000, - 0x00040020, 0x00050020, 0x02040020, 0x02050020, - 0x00002000, 0x00012000, 0x02002000, 0x02012000, - 0x00002020, 0x00012020, 0x02002020, 0x02012020, - 0x00042000, 0x00052000, 0x02042000, 0x02052000, - 0x00042020, 0x00052020, 0x02042020, 0x02052020, - 0x00000000, 0x00010000, 0x02000000, 0x02010000, - 0x00000020, 0x00010020, 0x02000020, 0x02010020, - 0x00040000, 0x00050000, 0x02040000, 0x02050000, - 0x00040020, 0x00050020, 0x02040020, 0x02050020, - 0x00002000, 0x00012000, 0x02002000, 0x02012000, - 0x00002020, 0x00012020, 0x02002020, 0x02012020, - 0x00042000, 0x00052000, 0x02042000, 0x02052000, - 0x00042020, 0x00052020, 0x02042020, 0x02052020, - 0x00000010, 0x00010010, 0x02000010, 0x02010010, - 0x00000030, 0x00010030, 0x02000030, 0x02010030, - 0x00040010, 0x00050010, 0x02040010, 0x02050010, - 0x00040030, 0x00050030, 0x02040030, 0x02050030, - 0x00002010, 0x00012010, 0x02002010, 0x02012010, - 0x00002030, 0x00012030, 0x02002030, 0x02012030, - 0x00042010, 0x00052010, 0x02042010, 0x02052010, - 0x00042030, 0x00052030, 0x02042030, 0x02052030, - 0x00000010, 0x00010010, 0x02000010, 0x02010010, - 0x00000030, 0x00010030, 0x02000030, 0x02010030, - 0x00040010, 0x00050010, 0x02040010, 0x02050010, - 0x00040030, 0x00050030, 0x02040030, 0x02050030, - 0x00002010, 0x00012010, 0x02002010, 0x02012010, - 0x00002030, 0x00012030, 0x02002030, 0x02012030, - 0x00042010, 0x00052010, 0x02042010, 0x02052010, - 0x00042030, 0x00052030, 0x02042030, 0x02052030, - 0x20000000, 0x20010000, 0x22000000, 0x22010000, - 0x20000020, 0x20010020, 0x22000020, 0x22010020, - 0x20040000, 0x20050000, 0x22040000, 0x22050000, - 0x20040020, 0x20050020, 0x22040020, 0x22050020, - 0x20002000, 0x20012000, 0x22002000, 0x22012000, - 0x20002020, 0x20012020, 0x22002020, 0x22012020, - 0x20042000, 0x20052000, 0x22042000, 0x22052000, - 0x20042020, 0x20052020, 0x22042020, 0x22052020, - 0x20000000, 0x20010000, 0x22000000, 0x22010000, - 0x20000020, 0x20010020, 0x22000020, 0x22010020, - 0x20040000, 0x20050000, 0x22040000, 0x22050000, - 0x20040020, 0x20050020, 0x22040020, 0x22050020, - 0x20002000, 0x20012000, 0x22002000, 0x22012000, - 0x20002020, 0x20012020, 0x22002020, 0x22012020, - 0x20042000, 0x20052000, 0x22042000, 0x22052000, - 0x20042020, 0x20052020, 0x22042020, 0x22052020, - 0x20000010, 0x20010010, 0x22000010, 0x22010010, - 0x20000030, 0x20010030, 0x22000030, 0x22010030, - 0x20040010, 0x20050010, 0x22040010, 0x22050010, - 0x20040030, 0x20050030, 0x22040030, 0x22050030, - 0x20002010, 0x20012010, 0x22002010, 0x22012010, - 0x20002030, 0x20012030, 0x22002030, 0x22012030, - 0x20042010, 0x20052010, 0x22042010, 0x22052010, - 0x20042030, 0x20052030, 0x22042030, 0x22052030, - 0x20000010, 0x20010010, 0x22000010, 0x22010010, - 0x20000030, 0x20010030, 0x22000030, 0x22010030, - 0x20040010, 0x20050010, 0x22040010, 0x22050010, - 0x20040030, 0x20050030, 0x22040030, 0x22050030, - 0x20002010, 0x20012010, 0x22002010, 0x22012010, - 0x20002030, 0x20012030, 0x22002030, 0x22012030, - 0x20042010, 0x20052010, 0x22042010, 0x22052010, - 0x20042030, 0x20052030, 0x22042030, 0x22052030 - ); - static $pc2mapd4 = array( - 0x00000000, 0x00000400, 0x01000000, 0x01000400, - 0x00000000, 0x00000400, 0x01000000, 0x01000400, - 0x00000100, 0x00000500, 0x01000100, 0x01000500, - 0x00000100, 0x00000500, 0x01000100, 0x01000500, - 0x10000000, 0x10000400, 0x11000000, 0x11000400, - 0x10000000, 0x10000400, 0x11000000, 0x11000400, - 0x10000100, 0x10000500, 0x11000100, 0x11000500, - 0x10000100, 0x10000500, 0x11000100, 0x11000500, - 0x00080000, 0x00080400, 0x01080000, 0x01080400, - 0x00080000, 0x00080400, 0x01080000, 0x01080400, - 0x00080100, 0x00080500, 0x01080100, 0x01080500, - 0x00080100, 0x00080500, 0x01080100, 0x01080500, - 0x10080000, 0x10080400, 0x11080000, 0x11080400, - 0x10080000, 0x10080400, 0x11080000, 0x11080400, - 0x10080100, 0x10080500, 0x11080100, 0x11080500, - 0x10080100, 0x10080500, 0x11080100, 0x11080500, - 0x00000008, 0x00000408, 0x01000008, 0x01000408, - 0x00000008, 0x00000408, 0x01000008, 0x01000408, - 0x00000108, 0x00000508, 0x01000108, 0x01000508, - 0x00000108, 0x00000508, 0x01000108, 0x01000508, - 0x10000008, 0x10000408, 0x11000008, 0x11000408, - 0x10000008, 0x10000408, 0x11000008, 0x11000408, - 0x10000108, 0x10000508, 0x11000108, 0x11000508, - 0x10000108, 0x10000508, 0x11000108, 0x11000508, - 0x00080008, 0x00080408, 0x01080008, 0x01080408, - 0x00080008, 0x00080408, 0x01080008, 0x01080408, - 0x00080108, 0x00080508, 0x01080108, 0x01080508, - 0x00080108, 0x00080508, 0x01080108, 0x01080508, - 0x10080008, 0x10080408, 0x11080008, 0x11080408, - 0x10080008, 0x10080408, 0x11080008, 0x11080408, - 0x10080108, 0x10080508, 0x11080108, 0x11080508, - 0x10080108, 0x10080508, 0x11080108, 0x11080508, - 0x00001000, 0x00001400, 0x01001000, 0x01001400, - 0x00001000, 0x00001400, 0x01001000, 0x01001400, - 0x00001100, 0x00001500, 0x01001100, 0x01001500, - 0x00001100, 0x00001500, 0x01001100, 0x01001500, - 0x10001000, 0x10001400, 0x11001000, 0x11001400, - 0x10001000, 0x10001400, 0x11001000, 0x11001400, - 0x10001100, 0x10001500, 0x11001100, 0x11001500, - 0x10001100, 0x10001500, 0x11001100, 0x11001500, - 0x00081000, 0x00081400, 0x01081000, 0x01081400, - 0x00081000, 0x00081400, 0x01081000, 0x01081400, - 0x00081100, 0x00081500, 0x01081100, 0x01081500, - 0x00081100, 0x00081500, 0x01081100, 0x01081500, - 0x10081000, 0x10081400, 0x11081000, 0x11081400, - 0x10081000, 0x10081400, 0x11081000, 0x11081400, - 0x10081100, 0x10081500, 0x11081100, 0x11081500, - 0x10081100, 0x10081500, 0x11081100, 0x11081500, - 0x00001008, 0x00001408, 0x01001008, 0x01001408, - 0x00001008, 0x00001408, 0x01001008, 0x01001408, - 0x00001108, 0x00001508, 0x01001108, 0x01001508, - 0x00001108, 0x00001508, 0x01001108, 0x01001508, - 0x10001008, 0x10001408, 0x11001008, 0x11001408, - 0x10001008, 0x10001408, 0x11001008, 0x11001408, - 0x10001108, 0x10001508, 0x11001108, 0x11001508, - 0x10001108, 0x10001508, 0x11001108, 0x11001508, - 0x00081008, 0x00081408, 0x01081008, 0x01081408, - 0x00081008, 0x00081408, 0x01081008, 0x01081408, - 0x00081108, 0x00081508, 0x01081108, 0x01081508, - 0x00081108, 0x00081508, 0x01081108, 0x01081508, - 0x10081008, 0x10081408, 0x11081008, 0x11081408, - 0x10081008, 0x10081408, 0x11081008, 0x11081408, - 0x10081108, 0x10081508, 0x11081108, 0x11081508, - 0x10081108, 0x10081508, 0x11081108, 0x11081508 - ); - - $keys = array(); - for ($des_round = 0; $des_round < $this->des_rounds; ++$des_round) { - // pad the key and remove extra characters as appropriate. - $key = str_pad(substr($this->key, $des_round * 8, 8), 8, "\0"); - - // Perform the PC/1 transformation and compute C and D. - $t = unpack('Nl/Nr', $key); - list($l, $r) = array($t['l'], $t['r']); - $key = ($this->shuffle[$pc1map[ $r & 0xFF]] & "\x80\x80\x80\x80\x80\x80\x80\x00") | - ($this->shuffle[$pc1map[($r >> 8) & 0xFF]] & "\x40\x40\x40\x40\x40\x40\x40\x00") | - ($this->shuffle[$pc1map[($r >> 16) & 0xFF]] & "\x20\x20\x20\x20\x20\x20\x20\x00") | - ($this->shuffle[$pc1map[($r >> 24) & 0xFF]] & "\x10\x10\x10\x10\x10\x10\x10\x00") | - ($this->shuffle[$pc1map[ $l & 0xFF]] & "\x08\x08\x08\x08\x08\x08\x08\x00") | - ($this->shuffle[$pc1map[($l >> 8) & 0xFF]] & "\x04\x04\x04\x04\x04\x04\x04\x00") | - ($this->shuffle[$pc1map[($l >> 16) & 0xFF]] & "\x02\x02\x02\x02\x02\x02\x02\x00") | - ($this->shuffle[$pc1map[($l >> 24) & 0xFF]] & "\x01\x01\x01\x01\x01\x01\x01\x00"); - $key = unpack('Nc/Nd', $key); - $c = ( $key['c'] >> 4) & 0x0FFFFFFF; - $d = (($key['d'] >> 4) & 0x0FFFFFF0) | ($key['c'] & 0x0F); - - $keys[$des_round] = array( - self::ENCRYPT => array(), - self::DECRYPT => array_fill(0, 32, 0) - ); - for ($i = 0, $ki = 31; $i < 16; ++$i, $ki-= 2) { - $c <<= $shifts[$i]; - $c = ($c | ($c >> 28)) & 0x0FFFFFFF; - $d <<= $shifts[$i]; - $d = ($d | ($d >> 28)) & 0x0FFFFFFF; - - // Perform the PC-2 transformation. - $cp = $pc2mapc1[ $c >> 24 ] | $pc2mapc2[($c >> 16) & 0xFF] | - $pc2mapc3[($c >> 8) & 0xFF] | $pc2mapc4[ $c & 0xFF]; - $dp = $pc2mapd1[ $d >> 24 ] | $pc2mapd2[($d >> 16) & 0xFF] | - $pc2mapd3[($d >> 8) & 0xFF] | $pc2mapd4[ $d & 0xFF]; - - // Reorder: odd bytes/even bytes. Push the result in key schedule. - $val1 = ( $cp & 0xFF000000) | (($cp << 8) & 0x00FF0000) | - (($dp >> 16) & 0x0000FF00) | (($dp >> 8) & 0x000000FF); - $val2 = (($cp << 8) & 0xFF000000) | (($cp << 16) & 0x00FF0000) | - (($dp >> 8) & 0x0000FF00) | ( $dp & 0x000000FF); - $keys[$des_round][self::ENCRYPT][ ] = $val1; - $keys[$des_round][self::DECRYPT][$ki - 1] = $val1; - $keys[$des_round][self::ENCRYPT][ ] = $val2; - $keys[$des_round][self::DECRYPT][$ki ] = $val2; - } - } - - switch ($this->des_rounds) { - case 3: // 3DES keys - $this->keys = array( - self::ENCRYPT => array_merge( - $keys[0][self::ENCRYPT], - $keys[1][self::DECRYPT], - $keys[2][self::ENCRYPT] - ), - self::DECRYPT => array_merge( - $keys[2][self::DECRYPT], - $keys[1][self::ENCRYPT], - $keys[0][self::DECRYPT] - ) - ); - break; - // case 1: // DES keys - default: - $this->keys = array( - self::ENCRYPT => $keys[0][self::ENCRYPT], - self::DECRYPT => $keys[0][self::DECRYPT] - ); - } - } - - /** - * Setup the performance-optimized function for de/encrypt() - * - * @see \phpseclib\Crypt\Base::_setupInlineCrypt() - * @access private - */ - function _setupInlineCrypt() - { - $lambda_functions =& self::_getLambdaFunctions(); - - // Engine configuration for: - // - DES ($des_rounds == 1) or - // - 3DES ($des_rounds == 3) - $des_rounds = $this->des_rounds; - - // We create max. 10 hi-optimized code for memory reason. Means: For each $key one ultra fast inline-crypt function. - // (Currently, for DES, one generated $lambda_function cost on php5.5@32bit ~135kb unfreeable mem and ~230kb on php5.5@64bit) - // (Currently, for TripleDES, one generated $lambda_function cost on php5.5@32bit ~240kb unfreeable mem and ~340kb on php5.5@64bit) - // After that, we'll still create very fast optimized code but not the hi-ultimative code, for each $mode one - $gen_hi_opt_code = (bool)( count($lambda_functions) < 10 ); - - // Generation of a unique hash for our generated code - $code_hash = "Crypt_DES, $des_rounds, {$this->mode}"; - if ($gen_hi_opt_code) { - // For hi-optimized code, we create for each combination of - // $mode, $des_rounds and $this->key its own encrypt/decrypt function. - // After max 10 hi-optimized functions, we create generic - // (still very fast.. but not ultra) functions for each $mode/$des_rounds - // Currently 2 * 5 generic functions will be then max. possible. - $code_hash = str_pad($code_hash, 32) . $this->_hashInlineCryptFunction($this->key); - } - - // Is there a re-usable $lambda_functions in there? If not, we have to create it. - if (!isset($lambda_functions[$code_hash])) { - // Init code for both, encrypt and decrypt. - $init_crypt = 'static $sbox1, $sbox2, $sbox3, $sbox4, $sbox5, $sbox6, $sbox7, $sbox8, $shuffleip, $shuffleinvip; - if (!$sbox1) { - $sbox1 = array_map("intval", $self->sbox1); - $sbox2 = array_map("intval", $self->sbox2); - $sbox3 = array_map("intval", $self->sbox3); - $sbox4 = array_map("intval", $self->sbox4); - $sbox5 = array_map("intval", $self->sbox5); - $sbox6 = array_map("intval", $self->sbox6); - $sbox7 = array_map("intval", $self->sbox7); - $sbox8 = array_map("intval", $self->sbox8);' - /* Merge $shuffle with $[inv]ipmap */ . ' - for ($i = 0; $i < 256; ++$i) { - $shuffleip[] = $self->shuffle[$self->ipmap[$i]]; - $shuffleinvip[] = $self->shuffle[$self->invipmap[$i]]; - } - } - '; - - switch (true) { - case $gen_hi_opt_code: - // In Hi-optimized code mode, we use our [3]DES key schedule as hardcoded integers. - // No futher initialisation of the $keys schedule is necessary. - // That is the extra performance boost. - $k = array( - self::ENCRYPT => $this->keys[self::ENCRYPT], - self::DECRYPT => $this->keys[self::DECRYPT] - ); - $init_encrypt = ''; - $init_decrypt = ''; - break; - default: - // In generic optimized code mode, we have to use, as the best compromise [currently], - // our key schedule as $ke/$kd arrays. (with hardcoded indexes...) - $k = array( - self::ENCRYPT => array(), - self::DECRYPT => array() - ); - for ($i = 0, $c = count($this->keys[self::ENCRYPT]); $i < $c; ++$i) { - $k[self::ENCRYPT][$i] = '$ke[' . $i . ']'; - $k[self::DECRYPT][$i] = '$kd[' . $i . ']'; - } - $init_encrypt = '$ke = $self->keys[$self::ENCRYPT];'; - $init_decrypt = '$kd = $self->keys[$self::DECRYPT];'; - break; - } - - // Creating code for en- and decryption. - $crypt_block = array(); - foreach (array(self::ENCRYPT, self::DECRYPT) as $c) { - /* Do the initial IP permutation. */ - $crypt_block[$c] = ' - $in = unpack("N*", $in); - $l = $in[1]; - $r = $in[2]; - $in = unpack("N*", - ($shuffleip[ $r & 0xFF] & "\x80\x80\x80\x80\x80\x80\x80\x80") | - ($shuffleip[($r >> 8) & 0xFF] & "\x40\x40\x40\x40\x40\x40\x40\x40") | - ($shuffleip[($r >> 16) & 0xFF] & "\x20\x20\x20\x20\x20\x20\x20\x20") | - ($shuffleip[($r >> 24) & 0xFF] & "\x10\x10\x10\x10\x10\x10\x10\x10") | - ($shuffleip[ $l & 0xFF] & "\x08\x08\x08\x08\x08\x08\x08\x08") | - ($shuffleip[($l >> 8) & 0xFF] & "\x04\x04\x04\x04\x04\x04\x04\x04") | - ($shuffleip[($l >> 16) & 0xFF] & "\x02\x02\x02\x02\x02\x02\x02\x02") | - ($shuffleip[($l >> 24) & 0xFF] & "\x01\x01\x01\x01\x01\x01\x01\x01") - ); - ' . /* Extract L0 and R0 */ ' - $l = $in[1]; - $r = $in[2]; - '; - - $l = '$l'; - $r = '$r'; - - // Perform DES or 3DES. - for ($ki = -1, $des_round = 0; $des_round < $des_rounds; ++$des_round) { - // Perform the 16 steps. - for ($i = 0; $i < 16; ++$i) { - // start of "the Feistel (F) function" - see the following URL: - // http://en.wikipedia.org/wiki/Image:Data_Encryption_Standard_InfoBox_Diagram.png - // Merge key schedule. - $crypt_block[$c].= ' - $b1 = ((' . $r . ' >> 3) & 0x1FFFFFFF) ^ (' . $r . ' << 29) ^ ' . $k[$c][++$ki] . '; - $b2 = ((' . $r . ' >> 31) & 0x00000001) ^ (' . $r . ' << 1) ^ ' . $k[$c][++$ki] . ';' . - /* S-box indexing. */ - $l . ' = $sbox1[($b1 >> 24) & 0x3F] ^ $sbox2[($b2 >> 24) & 0x3F] ^ - $sbox3[($b1 >> 16) & 0x3F] ^ $sbox4[($b2 >> 16) & 0x3F] ^ - $sbox5[($b1 >> 8) & 0x3F] ^ $sbox6[($b2 >> 8) & 0x3F] ^ - $sbox7[ $b1 & 0x3F] ^ $sbox8[ $b2 & 0x3F] ^ ' . $l . '; - '; - // end of "the Feistel (F) function" - - // swap L & R - list($l, $r) = array($r, $l); - } - list($l, $r) = array($r, $l); - } - - // Perform the inverse IP permutation. - $crypt_block[$c].= '$in = - ($shuffleinvip[($l >> 24) & 0xFF] & "\x80\x80\x80\x80\x80\x80\x80\x80") | - ($shuffleinvip[($r >> 24) & 0xFF] & "\x40\x40\x40\x40\x40\x40\x40\x40") | - ($shuffleinvip[($l >> 16) & 0xFF] & "\x20\x20\x20\x20\x20\x20\x20\x20") | - ($shuffleinvip[($r >> 16) & 0xFF] & "\x10\x10\x10\x10\x10\x10\x10\x10") | - ($shuffleinvip[($l >> 8) & 0xFF] & "\x08\x08\x08\x08\x08\x08\x08\x08") | - ($shuffleinvip[($r >> 8) & 0xFF] & "\x04\x04\x04\x04\x04\x04\x04\x04") | - ($shuffleinvip[ $l & 0xFF] & "\x02\x02\x02\x02\x02\x02\x02\x02") | - ($shuffleinvip[ $r & 0xFF] & "\x01\x01\x01\x01\x01\x01\x01\x01"); - '; - } - - // Creates the inline-crypt function - $lambda_functions[$code_hash] = $this->_createInlineCryptFunction( - array( - 'init_crypt' => $init_crypt, - 'init_encrypt' => $init_encrypt, - 'init_decrypt' => $init_decrypt, - 'encrypt_block' => $crypt_block[self::ENCRYPT], - 'decrypt_block' => $crypt_block[self::DECRYPT] - ) - ); - } - - // Set the inline-crypt function as callback in: $this->inline_crypt - $this->inline_crypt = $lambda_functions[$code_hash]; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/Crypt/Hash.php b/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/Crypt/Hash.php deleted file mode 100644 index a6166820..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/Crypt/Hash.php +++ /dev/null @@ -1,894 +0,0 @@ - - * setKey('abcdefg'); - * - * echo base64_encode($hash->hash('abcdefg')); - * ?> - * - * - * @category Crypt - * @package Hash - * @author Jim Wigginton - * @copyright 2007 Jim Wigginton - * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @link http://phpseclib.sourceforge.net - */ - -namespace phpseclib\Crypt; - -use phpseclib\Math\BigInteger; - -/** - * Pure-PHP implementations of keyed-hash message authentication codes (HMACs) and various cryptographic hashing functions. - * - * @package Hash - * @author Jim Wigginton - * @access public - */ -class Hash -{ - /**#@+ - * @access private - * @see \phpseclib\Crypt\Hash::__construct() - */ - /** - * Toggles the internal implementation - */ - const MODE_INTERNAL = 1; - /** - * Toggles the mhash() implementation, which has been deprecated on PHP 5.3.0+. - */ - const MODE_MHASH = 2; - /** - * Toggles the hash() implementation, which works on PHP 5.1.2+. - */ - const MODE_HASH = 3; - /**#@-*/ - - /** - * Hash Parameter - * - * @see self::setHash() - * @var int - * @access private - */ - var $hashParam; - - /** - * Byte-length of compression blocks / key (Internal HMAC) - * - * @see self::setAlgorithm() - * @var int - * @access private - */ - var $b; - - /** - * Byte-length of hash output (Internal HMAC) - * - * @see self::setHash() - * @var int - * @access private - */ - var $l = false; - - /** - * Hash Algorithm - * - * @see self::setHash() - * @var string - * @access private - */ - var $hash; - - /** - * Key - * - * @see self::setKey() - * @var string - * @access private - */ - var $key = false; - - /** - * Computed Key - * - * @see self::_computeKey() - * @var string - * @access private - */ - var $computedKey = false; - - /** - * Outer XOR (Internal HMAC) - * - * @see self::setKey() - * @var string - * @access private - */ - var $opad; - - /** - * Inner XOR (Internal HMAC) - * - * @see self::setKey() - * @var string - * @access private - */ - var $ipad; - - /** - * Engine - * - * @see self::setHash() - * @var string - * @access private - */ - var $engine; - - /** - * Default Constructor. - * - * @param string $hash - * @return \phpseclib\Crypt\Hash - * @access public - */ - function __construct($hash = 'sha1') - { - if (!defined('CRYPT_HASH_MODE')) { - switch (true) { - case extension_loaded('hash'): - define('CRYPT_HASH_MODE', self::MODE_HASH); - break; - case extension_loaded('mhash'): - define('CRYPT_HASH_MODE', self::MODE_MHASH); - break; - default: - define('CRYPT_HASH_MODE', self::MODE_INTERNAL); - } - } - - $this->setHash($hash); - } - - /** - * Sets the key for HMACs - * - * Keys can be of any length. - * - * @access public - * @param string $key - */ - function setKey($key = false) - { - $this->key = $key; - $this->_computeKey(); - } - - /** - * Pre-compute the key used by the HMAC - * - * Quoting http://tools.ietf.org/html/rfc2104#section-2, "Applications that use keys longer than B bytes - * will first hash the key using H and then use the resultant L byte string as the actual key to HMAC." - * - * As documented in https://www.reddit.com/r/PHP/comments/9nct2l/symfonypolyfill_hash_pbkdf2_correct_fix_for/ - * when doing an HMAC multiple times it's faster to compute the hash once instead of computing it during - * every call - * - * @access private - */ - function _computeKey() - { - if ($this->key === false) { - $this->computedKey = false; - return; - } - - if (strlen($this->key) <= $this->b) { - $this->computedKey = $this->key; - return; - } - - switch ($this->engine) { - case self::MODE_MHASH: - $this->computedKey = mhash($this->hash, $this->key); - break; - case self::MODE_HASH: - $this->computedKey = hash($this->hash, $this->key, true); - break; - case self::MODE_INTERNAL: - $this->computedKey = call_user_func($this->hash, $this->key); - } - } - - /** - * Gets the hash function. - * - * As set by the constructor or by the setHash() method. - * - * @access public - * @return string - */ - function getHash() - { - return $this->hashParam; - } - - /** - * Sets the hash function. - * - * @access public - * @param string $hash - */ - function setHash($hash) - { - $this->hashParam = $hash = strtolower($hash); - switch ($hash) { - case 'md5-96': - case 'sha1-96': - case 'sha256-96': - case 'sha512-96': - $hash = substr($hash, 0, -3); - $this->l = 12; // 96 / 8 = 12 - break; - case 'md2': - case 'md5': - $this->l = 16; - break; - case 'sha1': - $this->l = 20; - break; - case 'sha256': - $this->l = 32; - break; - case 'sha384': - $this->l = 48; - break; - case 'sha512': - $this->l = 64; - } - - switch ($hash) { - case 'md2-96': - case 'md2': - $this->b = 16; - case 'md5-96': - case 'sha1-96': - case 'sha224-96': - case 'sha256-96': - case 'md2': - case 'md5': - case 'sha1': - case 'sha224': - case 'sha256': - $this->b = 64; - break; - default: - $this->b = 128; - } - - switch ($hash) { - case 'md2': - $this->engine = CRYPT_HASH_MODE == self::MODE_HASH && in_array('md2', hash_algos()) ? - self::MODE_HASH : self::MODE_INTERNAL; - break; - case 'sha384': - case 'sha512': - $this->engine = CRYPT_HASH_MODE == self::MODE_MHASH ? self::MODE_INTERNAL : CRYPT_HASH_MODE; - break; - default: - $this->engine = CRYPT_HASH_MODE; - } - - switch ($this->engine) { - case self::MODE_MHASH: - switch ($hash) { - case 'md5': - $this->hash = MHASH_MD5; - break; - case 'sha256': - $this->hash = MHASH_SHA256; - break; - case 'sha1': - default: - $this->hash = MHASH_SHA1; - } - $this->_computeKey(self::MODE_MHASH); - return; - case self::MODE_HASH: - switch ($hash) { - case 'md5': - $this->hash = 'md5'; - return; - case 'md2': - case 'sha256': - case 'sha384': - case 'sha512': - $this->hash = $hash; - return; - case 'sha1': - default: - $this->hash = 'sha1'; - } - $this->_computeKey(self::MODE_HASH); - return; - } - - switch ($hash) { - case 'md2': - $this->hash = array($this, '_md2'); - break; - case 'md5': - $this->hash = array($this, '_md5'); - break; - case 'sha256': - $this->hash = array($this, '_sha256'); - break; - case 'sha384': - case 'sha512': - $this->hash = array($this, '_sha512'); - break; - case 'sha1': - default: - $this->hash = array($this, '_sha1'); - } - - $this->ipad = str_repeat(chr(0x36), $this->b); - $this->opad = str_repeat(chr(0x5C), $this->b); - - $this->_computeKey(self::MODE_INTERNAL); - } - - /** - * Compute the HMAC. - * - * @access public - * @param string $text - * @return string - */ - function hash($text) - { - if (!empty($this->key) || is_string($this->key)) { - switch ($this->engine) { - case self::MODE_MHASH: - $output = mhash($this->hash, $text, $this->computedKey); - break; - case self::MODE_HASH: - $output = hash_hmac($this->hash, $text, $this->computedKey, true); - break; - case self::MODE_INTERNAL: - $key = str_pad($this->computedKey, $this->b, chr(0)); // step 1 - $temp = $this->ipad ^ $key; // step 2 - $temp .= $text; // step 3 - $temp = call_user_func($this->hash, $temp); // step 4 - $output = $this->opad ^ $key; // step 5 - $output.= $temp; // step 6 - $output = call_user_func($this->hash, $output); // step 7 - } - } else { - switch ($this->engine) { - case self::MODE_MHASH: - $output = mhash($this->hash, $text); - break; - case self::MODE_HASH: - $output = hash($this->hash, $text, true); - break; - case self::MODE_INTERNAL: - $output = call_user_func($this->hash, $text); - } - } - - return substr($output, 0, $this->l); - } - - /** - * Returns the hash length (in bytes) - * - * @access public - * @return int - */ - function getLength() - { - return $this->l; - } - - /** - * Wrapper for MD5 - * - * @access private - * @param string $m - */ - function _md5($m) - { - return pack('H*', md5($m)); - } - - /** - * Wrapper for SHA1 - * - * @access private - * @param string $m - */ - function _sha1($m) - { - return pack('H*', sha1($m)); - } - - /** - * Pure-PHP implementation of MD2 - * - * See {@link http://tools.ietf.org/html/rfc1319 RFC1319}. - * - * @access private - * @param string $m - */ - function _md2($m) - { - static $s = array( - 41, 46, 67, 201, 162, 216, 124, 1, 61, 54, 84, 161, 236, 240, 6, - 19, 98, 167, 5, 243, 192, 199, 115, 140, 152, 147, 43, 217, 188, - 76, 130, 202, 30, 155, 87, 60, 253, 212, 224, 22, 103, 66, 111, 24, - 138, 23, 229, 18, 190, 78, 196, 214, 218, 158, 222, 73, 160, 251, - 245, 142, 187, 47, 238, 122, 169, 104, 121, 145, 21, 178, 7, 63, - 148, 194, 16, 137, 11, 34, 95, 33, 128, 127, 93, 154, 90, 144, 50, - 39, 53, 62, 204, 231, 191, 247, 151, 3, 255, 25, 48, 179, 72, 165, - 181, 209, 215, 94, 146, 42, 172, 86, 170, 198, 79, 184, 56, 210, - 150, 164, 125, 182, 118, 252, 107, 226, 156, 116, 4, 241, 69, 157, - 112, 89, 100, 113, 135, 32, 134, 91, 207, 101, 230, 45, 168, 2, 27, - 96, 37, 173, 174, 176, 185, 246, 28, 70, 97, 105, 52, 64, 126, 15, - 85, 71, 163, 35, 221, 81, 175, 58, 195, 92, 249, 206, 186, 197, - 234, 38, 44, 83, 13, 110, 133, 40, 132, 9, 211, 223, 205, 244, 65, - 129, 77, 82, 106, 220, 55, 200, 108, 193, 171, 250, 36, 225, 123, - 8, 12, 189, 177, 74, 120, 136, 149, 139, 227, 99, 232, 109, 233, - 203, 213, 254, 59, 0, 29, 57, 242, 239, 183, 14, 102, 88, 208, 228, - 166, 119, 114, 248, 235, 117, 75, 10, 49, 68, 80, 180, 143, 237, - 31, 26, 219, 153, 141, 51, 159, 17, 131, 20 - ); - - // Step 1. Append Padding Bytes - $pad = 16 - (strlen($m) & 0xF); - $m.= str_repeat(chr($pad), $pad); - - $length = strlen($m); - - // Step 2. Append Checksum - $c = str_repeat(chr(0), 16); - $l = chr(0); - for ($i = 0; $i < $length; $i+= 16) { - for ($j = 0; $j < 16; $j++) { - // RFC1319 incorrectly states that C[j] should be set to S[c xor L] - //$c[$j] = chr($s[ord($m[$i + $j] ^ $l)]); - // per , however, C[j] should be set to S[c xor L] xor C[j] - $c[$j] = chr($s[ord($m[$i + $j] ^ $l)] ^ ord($c[$j])); - $l = $c[$j]; - } - } - $m.= $c; - - $length+= 16; - - // Step 3. Initialize MD Buffer - $x = str_repeat(chr(0), 48); - - // Step 4. Process Message in 16-Byte Blocks - for ($i = 0; $i < $length; $i+= 16) { - for ($j = 0; $j < 16; $j++) { - $x[$j + 16] = $m[$i + $j]; - $x[$j + 32] = $x[$j + 16] ^ $x[$j]; - } - $t = chr(0); - for ($j = 0; $j < 18; $j++) { - for ($k = 0; $k < 48; $k++) { - $x[$k] = $t = $x[$k] ^ chr($s[ord($t)]); - //$t = $x[$k] = $x[$k] ^ chr($s[ord($t)]); - } - $t = chr(ord($t) + $j); - } - } - - // Step 5. Output - return substr($x, 0, 16); - } - - /** - * Pure-PHP implementation of SHA256 - * - * See {@link http://en.wikipedia.org/wiki/SHA_hash_functions#SHA-256_.28a_SHA-2_variant.29_pseudocode SHA-256 (a SHA-2 variant) pseudocode - Wikipedia}. - * - * @access private - * @param string $m - */ - function _sha256($m) - { - if (extension_loaded('suhosin')) { - return pack('H*', sha256($m)); - } - - // Initialize variables - $hash = array( - 0x6a09e667, 0xbb67ae85, 0x3c6ef372, 0xa54ff53a, 0x510e527f, 0x9b05688c, 0x1f83d9ab, 0x5be0cd19 - ); - // Initialize table of round constants - // (first 32 bits of the fractional parts of the cube roots of the first 64 primes 2..311) - static $k = array( - 0x428a2f98, 0x71374491, 0xb5c0fbcf, 0xe9b5dba5, 0x3956c25b, 0x59f111f1, 0x923f82a4, 0xab1c5ed5, - 0xd807aa98, 0x12835b01, 0x243185be, 0x550c7dc3, 0x72be5d74, 0x80deb1fe, 0x9bdc06a7, 0xc19bf174, - 0xe49b69c1, 0xefbe4786, 0x0fc19dc6, 0x240ca1cc, 0x2de92c6f, 0x4a7484aa, 0x5cb0a9dc, 0x76f988da, - 0x983e5152, 0xa831c66d, 0xb00327c8, 0xbf597fc7, 0xc6e00bf3, 0xd5a79147, 0x06ca6351, 0x14292967, - 0x27b70a85, 0x2e1b2138, 0x4d2c6dfc, 0x53380d13, 0x650a7354, 0x766a0abb, 0x81c2c92e, 0x92722c85, - 0xa2bfe8a1, 0xa81a664b, 0xc24b8b70, 0xc76c51a3, 0xd192e819, 0xd6990624, 0xf40e3585, 0x106aa070, - 0x19a4c116, 0x1e376c08, 0x2748774c, 0x34b0bcb5, 0x391c0cb3, 0x4ed8aa4a, 0x5b9cca4f, 0x682e6ff3, - 0x748f82ee, 0x78a5636f, 0x84c87814, 0x8cc70208, 0x90befffa, 0xa4506ceb, 0xbef9a3f7, 0xc67178f2 - ); - - // Pre-processing - $length = strlen($m); - // to round to nearest 56 mod 64, we'll add 64 - (length + (64 - 56)) % 64 - $m.= str_repeat(chr(0), 64 - (($length + 8) & 0x3F)); - $m[$length] = chr(0x80); - // we don't support hashing strings 512MB long - $m.= pack('N2', 0, $length << 3); - - // Process the message in successive 512-bit chunks - $chunks = str_split($m, 64); - foreach ($chunks as $chunk) { - $w = array(); - for ($i = 0; $i < 16; $i++) { - extract(unpack('Ntemp', $this->_string_shift($chunk, 4))); - $w[] = $temp; - } - - // Extend the sixteen 32-bit words into sixty-four 32-bit words - for ($i = 16; $i < 64; $i++) { - // @codingStandardsIgnoreStart - $s0 = $this->_rightRotate($w[$i - 15], 7) ^ - $this->_rightRotate($w[$i - 15], 18) ^ - $this->_rightShift( $w[$i - 15], 3); - $s1 = $this->_rightRotate($w[$i - 2], 17) ^ - $this->_rightRotate($w[$i - 2], 19) ^ - $this->_rightShift( $w[$i - 2], 10); - // @codingStandardsIgnoreEnd - $w[$i] = $this->_add($w[$i - 16], $s0, $w[$i - 7], $s1); - } - - // Initialize hash value for this chunk - list($a, $b, $c, $d, $e, $f, $g, $h) = $hash; - - // Main loop - for ($i = 0; $i < 64; $i++) { - $s0 = $this->_rightRotate($a, 2) ^ - $this->_rightRotate($a, 13) ^ - $this->_rightRotate($a, 22); - $maj = ($a & $b) ^ - ($a & $c) ^ - ($b & $c); - $t2 = $this->_add($s0, $maj); - - $s1 = $this->_rightRotate($e, 6) ^ - $this->_rightRotate($e, 11) ^ - $this->_rightRotate($e, 25); - $ch = ($e & $f) ^ - ($this->_not($e) & $g); - $t1 = $this->_add($h, $s1, $ch, $k[$i], $w[$i]); - - $h = $g; - $g = $f; - $f = $e; - $e = $this->_add($d, $t1); - $d = $c; - $c = $b; - $b = $a; - $a = $this->_add($t1, $t2); - } - - // Add this chunk's hash to result so far - $hash = array( - $this->_add($hash[0], $a), - $this->_add($hash[1], $b), - $this->_add($hash[2], $c), - $this->_add($hash[3], $d), - $this->_add($hash[4], $e), - $this->_add($hash[5], $f), - $this->_add($hash[6], $g), - $this->_add($hash[7], $h) - ); - } - - // Produce the final hash value (big-endian) - return pack('N8', $hash[0], $hash[1], $hash[2], $hash[3], $hash[4], $hash[5], $hash[6], $hash[7]); - } - - /** - * Pure-PHP implementation of SHA384 and SHA512 - * - * @access private - * @param string $m - */ - function _sha512($m) - { - static $init384, $init512, $k; - - if (!isset($k)) { - // Initialize variables - $init384 = array( // initial values for SHA384 - 'cbbb9d5dc1059ed8', '629a292a367cd507', '9159015a3070dd17', '152fecd8f70e5939', - '67332667ffc00b31', '8eb44a8768581511', 'db0c2e0d64f98fa7', '47b5481dbefa4fa4' - ); - $init512 = array( // initial values for SHA512 - '6a09e667f3bcc908', 'bb67ae8584caa73b', '3c6ef372fe94f82b', 'a54ff53a5f1d36f1', - '510e527fade682d1', '9b05688c2b3e6c1f', '1f83d9abfb41bd6b', '5be0cd19137e2179' - ); - - for ($i = 0; $i < 8; $i++) { - $init384[$i] = new BigInteger($init384[$i], 16); - $init384[$i]->setPrecision(64); - $init512[$i] = new BigInteger($init512[$i], 16); - $init512[$i]->setPrecision(64); - } - - // Initialize table of round constants - // (first 64 bits of the fractional parts of the cube roots of the first 80 primes 2..409) - $k = array( - '428a2f98d728ae22', '7137449123ef65cd', 'b5c0fbcfec4d3b2f', 'e9b5dba58189dbbc', - '3956c25bf348b538', '59f111f1b605d019', '923f82a4af194f9b', 'ab1c5ed5da6d8118', - 'd807aa98a3030242', '12835b0145706fbe', '243185be4ee4b28c', '550c7dc3d5ffb4e2', - '72be5d74f27b896f', '80deb1fe3b1696b1', '9bdc06a725c71235', 'c19bf174cf692694', - 'e49b69c19ef14ad2', 'efbe4786384f25e3', '0fc19dc68b8cd5b5', '240ca1cc77ac9c65', - '2de92c6f592b0275', '4a7484aa6ea6e483', '5cb0a9dcbd41fbd4', '76f988da831153b5', - '983e5152ee66dfab', 'a831c66d2db43210', 'b00327c898fb213f', 'bf597fc7beef0ee4', - 'c6e00bf33da88fc2', 'd5a79147930aa725', '06ca6351e003826f', '142929670a0e6e70', - '27b70a8546d22ffc', '2e1b21385c26c926', '4d2c6dfc5ac42aed', '53380d139d95b3df', - '650a73548baf63de', '766a0abb3c77b2a8', '81c2c92e47edaee6', '92722c851482353b', - 'a2bfe8a14cf10364', 'a81a664bbc423001', 'c24b8b70d0f89791', 'c76c51a30654be30', - 'd192e819d6ef5218', 'd69906245565a910', 'f40e35855771202a', '106aa07032bbd1b8', - '19a4c116b8d2d0c8', '1e376c085141ab53', '2748774cdf8eeb99', '34b0bcb5e19b48a8', - '391c0cb3c5c95a63', '4ed8aa4ae3418acb', '5b9cca4f7763e373', '682e6ff3d6b2b8a3', - '748f82ee5defb2fc', '78a5636f43172f60', '84c87814a1f0ab72', '8cc702081a6439ec', - '90befffa23631e28', 'a4506cebde82bde9', 'bef9a3f7b2c67915', 'c67178f2e372532b', - 'ca273eceea26619c', 'd186b8c721c0c207', 'eada7dd6cde0eb1e', 'f57d4f7fee6ed178', - '06f067aa72176fba', '0a637dc5a2c898a6', '113f9804bef90dae', '1b710b35131c471b', - '28db77f523047d84', '32caab7b40c72493', '3c9ebe0a15c9bebc', '431d67c49c100d4c', - '4cc5d4becb3e42b6', '597f299cfc657e2a', '5fcb6fab3ad6faec', '6c44198c4a475817' - ); - - for ($i = 0; $i < 80; $i++) { - $k[$i] = new BigInteger($k[$i], 16); - } - } - - $hash = $this->l == 48 ? $init384 : $init512; - - // Pre-processing - $length = strlen($m); - // to round to nearest 112 mod 128, we'll add 128 - (length + (128 - 112)) % 128 - $m.= str_repeat(chr(0), 128 - (($length + 16) & 0x7F)); - $m[$length] = chr(0x80); - // we don't support hashing strings 512MB long - $m.= pack('N4', 0, 0, 0, $length << 3); - - // Process the message in successive 1024-bit chunks - $chunks = str_split($m, 128); - foreach ($chunks as $chunk) { - $w = array(); - for ($i = 0; $i < 16; $i++) { - $temp = new BigInteger($this->_string_shift($chunk, 8), 256); - $temp->setPrecision(64); - $w[] = $temp; - } - - // Extend the sixteen 32-bit words into eighty 32-bit words - for ($i = 16; $i < 80; $i++) { - $temp = array( - $w[$i - 15]->bitwise_rightRotate(1), - $w[$i - 15]->bitwise_rightRotate(8), - $w[$i - 15]->bitwise_rightShift(7) - ); - $s0 = $temp[0]->bitwise_xor($temp[1]); - $s0 = $s0->bitwise_xor($temp[2]); - $temp = array( - $w[$i - 2]->bitwise_rightRotate(19), - $w[$i - 2]->bitwise_rightRotate(61), - $w[$i - 2]->bitwise_rightShift(6) - ); - $s1 = $temp[0]->bitwise_xor($temp[1]); - $s1 = $s1->bitwise_xor($temp[2]); - $w[$i] = $w[$i - 16]->copy(); - $w[$i] = $w[$i]->add($s0); - $w[$i] = $w[$i]->add($w[$i - 7]); - $w[$i] = $w[$i]->add($s1); - } - - // Initialize hash value for this chunk - $a = $hash[0]->copy(); - $b = $hash[1]->copy(); - $c = $hash[2]->copy(); - $d = $hash[3]->copy(); - $e = $hash[4]->copy(); - $f = $hash[5]->copy(); - $g = $hash[6]->copy(); - $h = $hash[7]->copy(); - - // Main loop - for ($i = 0; $i < 80; $i++) { - $temp = array( - $a->bitwise_rightRotate(28), - $a->bitwise_rightRotate(34), - $a->bitwise_rightRotate(39) - ); - $s0 = $temp[0]->bitwise_xor($temp[1]); - $s0 = $s0->bitwise_xor($temp[2]); - $temp = array( - $a->bitwise_and($b), - $a->bitwise_and($c), - $b->bitwise_and($c) - ); - $maj = $temp[0]->bitwise_xor($temp[1]); - $maj = $maj->bitwise_xor($temp[2]); - $t2 = $s0->add($maj); - - $temp = array( - $e->bitwise_rightRotate(14), - $e->bitwise_rightRotate(18), - $e->bitwise_rightRotate(41) - ); - $s1 = $temp[0]->bitwise_xor($temp[1]); - $s1 = $s1->bitwise_xor($temp[2]); - $temp = array( - $e->bitwise_and($f), - $g->bitwise_and($e->bitwise_not()) - ); - $ch = $temp[0]->bitwise_xor($temp[1]); - $t1 = $h->add($s1); - $t1 = $t1->add($ch); - $t1 = $t1->add($k[$i]); - $t1 = $t1->add($w[$i]); - - $h = $g->copy(); - $g = $f->copy(); - $f = $e->copy(); - $e = $d->add($t1); - $d = $c->copy(); - $c = $b->copy(); - $b = $a->copy(); - $a = $t1->add($t2); - } - - // Add this chunk's hash to result so far - $hash = array( - $hash[0]->add($a), - $hash[1]->add($b), - $hash[2]->add($c), - $hash[3]->add($d), - $hash[4]->add($e), - $hash[5]->add($f), - $hash[6]->add($g), - $hash[7]->add($h) - ); - } - - // Produce the final hash value (big-endian) - // (\phpseclib\Crypt\Hash::hash() trims the output for hashes but not for HMACs. as such, we trim the output here) - $temp = $hash[0]->toBytes() . $hash[1]->toBytes() . $hash[2]->toBytes() . $hash[3]->toBytes() . - $hash[4]->toBytes() . $hash[5]->toBytes(); - if ($this->l != 48) { - $temp.= $hash[6]->toBytes() . $hash[7]->toBytes(); - } - - return $temp; - } - - /** - * Right Rotate - * - * @access private - * @param int $int - * @param int $amt - * @see self::_sha256() - * @return int - */ - function _rightRotate($int, $amt) - { - $invamt = 32 - $amt; - $mask = (1 << $invamt) - 1; - return (($int << $invamt) & 0xFFFFFFFF) | (($int >> $amt) & $mask); - } - - /** - * Right Shift - * - * @access private - * @param int $int - * @param int $amt - * @see self::_sha256() - * @return int - */ - function _rightShift($int, $amt) - { - $mask = (1 << (32 - $amt)) - 1; - return ($int >> $amt) & $mask; - } - - /** - * Not - * - * @access private - * @param int $int - * @see self::_sha256() - * @return int - */ - function _not($int) - { - return ~$int & 0xFFFFFFFF; - } - - /** - * Add - * - * _sha256() adds multiple unsigned 32-bit integers. Since PHP doesn't support unsigned integers and since the - * possibility of overflow exists, care has to be taken. BigInteger could be used but this should be faster. - * - * @param int $... - * @return int - * @see self::_sha256() - * @access private - */ - function _add() - { - static $mod; - if (!isset($mod)) { - $mod = pow(2, 32); - } - - $result = 0; - $arguments = func_get_args(); - foreach ($arguments as $argument) { - $result+= $argument < 0 ? ($argument & 0x7FFFFFFF) + 0x80000000 : $argument; - } - - if ((php_uname('m') & "\xDF\xDF\xDF") != 'ARM') { - return fmod($result, $mod); - } - - return (fmod($result, 0x80000000) & 0x7FFFFFFF) | - ((fmod(floor($result / 0x80000000), 2) & 1) << 31); - } - - /** - * String Shift - * - * Inspired by array_shift - * - * @param string $string - * @param int $index - * @return string - * @access private - */ - function _string_shift(&$string, $index = 1) - { - $substr = substr($string, 0, $index); - $string = substr($string, $index); - return $substr; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/Crypt/RC2.php b/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/Crypt/RC2.php deleted file mode 100644 index b2b9d48e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/Crypt/RC2.php +++ /dev/null @@ -1,688 +0,0 @@ - - * setKey('abcdefgh'); - * - * $plaintext = str_repeat('a', 1024); - * - * echo $rc2->decrypt($rc2->encrypt($plaintext)); - * ?> - * - * - * @category Crypt - * @package RC2 - * @author Patrick Monnerat - * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @link http://phpseclib.sourceforge.net - */ - -namespace phpseclib\Crypt; - -/** - * Pure-PHP implementation of RC2. - * - * @package RC2 - * @access public - */ -class RC2 extends Base -{ - /** - * Block Length of the cipher - * - * @see \phpseclib\Crypt\Base::block_size - * @var int - * @access private - */ - var $block_size = 8; - - /** - * The Key - * - * @see \phpseclib\Crypt\Base::key - * @see self::setKey() - * @var string - * @access private - */ - var $key; - - /** - * The Original (unpadded) Key - * - * @see \phpseclib\Crypt\Base::key - * @see self::setKey() - * @see self::encrypt() - * @see self::decrypt() - * @var string - * @access private - */ - var $orig_key; - - /** - * Don't truncate / null pad key - * - * @see \phpseclib\Crypt\Base::_clearBuffers() - * @var bool - * @access private - */ - var $skip_key_adjustment = true; - - /** - * Key Length (in bytes) - * - * @see \phpseclib\Crypt\RC2::setKeyLength() - * @var int - * @access private - */ - var $key_length = 16; // = 128 bits - - /** - * The mcrypt specific name of the cipher - * - * @see \phpseclib\Crypt\Base::cipher_name_mcrypt - * @var string - * @access private - */ - var $cipher_name_mcrypt = 'rc2'; - - /** - * Optimizing value while CFB-encrypting - * - * @see \phpseclib\Crypt\Base::cfb_init_len - * @var int - * @access private - */ - var $cfb_init_len = 500; - - /** - * The key length in bits. - * - * @see self::setKeyLength() - * @see self::setKey() - * @var int - * @access private - * @internal Should be in range [1..1024]. - * @internal Changing this value after setting the key has no effect. - */ - var $default_key_length = 1024; - - /** - * The key length in bits. - * - * @see self::isValidEnine() - * @see self::setKey() - * @var int - * @access private - * @internal Should be in range [1..1024]. - */ - var $current_key_length; - - /** - * The Key Schedule - * - * @see self::_setupKey() - * @var array - * @access private - */ - var $keys; - - /** - * Key expansion randomization table. - * Twice the same 256-value sequence to save a modulus in key expansion. - * - * @see self::setKey() - * @var array - * @access private - */ - var $pitable = array( - 0xD9, 0x78, 0xF9, 0xC4, 0x19, 0xDD, 0xB5, 0xED, - 0x28, 0xE9, 0xFD, 0x79, 0x4A, 0xA0, 0xD8, 0x9D, - 0xC6, 0x7E, 0x37, 0x83, 0x2B, 0x76, 0x53, 0x8E, - 0x62, 0x4C, 0x64, 0x88, 0x44, 0x8B, 0xFB, 0xA2, - 0x17, 0x9A, 0x59, 0xF5, 0x87, 0xB3, 0x4F, 0x13, - 0x61, 0x45, 0x6D, 0x8D, 0x09, 0x81, 0x7D, 0x32, - 0xBD, 0x8F, 0x40, 0xEB, 0x86, 0xB7, 0x7B, 0x0B, - 0xF0, 0x95, 0x21, 0x22, 0x5C, 0x6B, 0x4E, 0x82, - 0x54, 0xD6, 0x65, 0x93, 0xCE, 0x60, 0xB2, 0x1C, - 0x73, 0x56, 0xC0, 0x14, 0xA7, 0x8C, 0xF1, 0xDC, - 0x12, 0x75, 0xCA, 0x1F, 0x3B, 0xBE, 0xE4, 0xD1, - 0x42, 0x3D, 0xD4, 0x30, 0xA3, 0x3C, 0xB6, 0x26, - 0x6F, 0xBF, 0x0E, 0xDA, 0x46, 0x69, 0x07, 0x57, - 0x27, 0xF2, 0x1D, 0x9B, 0xBC, 0x94, 0x43, 0x03, - 0xF8, 0x11, 0xC7, 0xF6, 0x90, 0xEF, 0x3E, 0xE7, - 0x06, 0xC3, 0xD5, 0x2F, 0xC8, 0x66, 0x1E, 0xD7, - 0x08, 0xE8, 0xEA, 0xDE, 0x80, 0x52, 0xEE, 0xF7, - 0x84, 0xAA, 0x72, 0xAC, 0x35, 0x4D, 0x6A, 0x2A, - 0x96, 0x1A, 0xD2, 0x71, 0x5A, 0x15, 0x49, 0x74, - 0x4B, 0x9F, 0xD0, 0x5E, 0x04, 0x18, 0xA4, 0xEC, - 0xC2, 0xE0, 0x41, 0x6E, 0x0F, 0x51, 0xCB, 0xCC, - 0x24, 0x91, 0xAF, 0x50, 0xA1, 0xF4, 0x70, 0x39, - 0x99, 0x7C, 0x3A, 0x85, 0x23, 0xB8, 0xB4, 0x7A, - 0xFC, 0x02, 0x36, 0x5B, 0x25, 0x55, 0x97, 0x31, - 0x2D, 0x5D, 0xFA, 0x98, 0xE3, 0x8A, 0x92, 0xAE, - 0x05, 0xDF, 0x29, 0x10, 0x67, 0x6C, 0xBA, 0xC9, - 0xD3, 0x00, 0xE6, 0xCF, 0xE1, 0x9E, 0xA8, 0x2C, - 0x63, 0x16, 0x01, 0x3F, 0x58, 0xE2, 0x89, 0xA9, - 0x0D, 0x38, 0x34, 0x1B, 0xAB, 0x33, 0xFF, 0xB0, - 0xBB, 0x48, 0x0C, 0x5F, 0xB9, 0xB1, 0xCD, 0x2E, - 0xC5, 0xF3, 0xDB, 0x47, 0xE5, 0xA5, 0x9C, 0x77, - 0x0A, 0xA6, 0x20, 0x68, 0xFE, 0x7F, 0xC1, 0xAD, - 0xD9, 0x78, 0xF9, 0xC4, 0x19, 0xDD, 0xB5, 0xED, - 0x28, 0xE9, 0xFD, 0x79, 0x4A, 0xA0, 0xD8, 0x9D, - 0xC6, 0x7E, 0x37, 0x83, 0x2B, 0x76, 0x53, 0x8E, - 0x62, 0x4C, 0x64, 0x88, 0x44, 0x8B, 0xFB, 0xA2, - 0x17, 0x9A, 0x59, 0xF5, 0x87, 0xB3, 0x4F, 0x13, - 0x61, 0x45, 0x6D, 0x8D, 0x09, 0x81, 0x7D, 0x32, - 0xBD, 0x8F, 0x40, 0xEB, 0x86, 0xB7, 0x7B, 0x0B, - 0xF0, 0x95, 0x21, 0x22, 0x5C, 0x6B, 0x4E, 0x82, - 0x54, 0xD6, 0x65, 0x93, 0xCE, 0x60, 0xB2, 0x1C, - 0x73, 0x56, 0xC0, 0x14, 0xA7, 0x8C, 0xF1, 0xDC, - 0x12, 0x75, 0xCA, 0x1F, 0x3B, 0xBE, 0xE4, 0xD1, - 0x42, 0x3D, 0xD4, 0x30, 0xA3, 0x3C, 0xB6, 0x26, - 0x6F, 0xBF, 0x0E, 0xDA, 0x46, 0x69, 0x07, 0x57, - 0x27, 0xF2, 0x1D, 0x9B, 0xBC, 0x94, 0x43, 0x03, - 0xF8, 0x11, 0xC7, 0xF6, 0x90, 0xEF, 0x3E, 0xE7, - 0x06, 0xC3, 0xD5, 0x2F, 0xC8, 0x66, 0x1E, 0xD7, - 0x08, 0xE8, 0xEA, 0xDE, 0x80, 0x52, 0xEE, 0xF7, - 0x84, 0xAA, 0x72, 0xAC, 0x35, 0x4D, 0x6A, 0x2A, - 0x96, 0x1A, 0xD2, 0x71, 0x5A, 0x15, 0x49, 0x74, - 0x4B, 0x9F, 0xD0, 0x5E, 0x04, 0x18, 0xA4, 0xEC, - 0xC2, 0xE0, 0x41, 0x6E, 0x0F, 0x51, 0xCB, 0xCC, - 0x24, 0x91, 0xAF, 0x50, 0xA1, 0xF4, 0x70, 0x39, - 0x99, 0x7C, 0x3A, 0x85, 0x23, 0xB8, 0xB4, 0x7A, - 0xFC, 0x02, 0x36, 0x5B, 0x25, 0x55, 0x97, 0x31, - 0x2D, 0x5D, 0xFA, 0x98, 0xE3, 0x8A, 0x92, 0xAE, - 0x05, 0xDF, 0x29, 0x10, 0x67, 0x6C, 0xBA, 0xC9, - 0xD3, 0x00, 0xE6, 0xCF, 0xE1, 0x9E, 0xA8, 0x2C, - 0x63, 0x16, 0x01, 0x3F, 0x58, 0xE2, 0x89, 0xA9, - 0x0D, 0x38, 0x34, 0x1B, 0xAB, 0x33, 0xFF, 0xB0, - 0xBB, 0x48, 0x0C, 0x5F, 0xB9, 0xB1, 0xCD, 0x2E, - 0xC5, 0xF3, 0xDB, 0x47, 0xE5, 0xA5, 0x9C, 0x77, - 0x0A, 0xA6, 0x20, 0x68, 0xFE, 0x7F, 0xC1, 0xAD - ); - - /** - * Inverse key expansion randomization table. - * - * @see self::setKey() - * @var array - * @access private - */ - var $invpitable = array( - 0xD1, 0xDA, 0xB9, 0x6F, 0x9C, 0xC8, 0x78, 0x66, - 0x80, 0x2C, 0xF8, 0x37, 0xEA, 0xE0, 0x62, 0xA4, - 0xCB, 0x71, 0x50, 0x27, 0x4B, 0x95, 0xD9, 0x20, - 0x9D, 0x04, 0x91, 0xE3, 0x47, 0x6A, 0x7E, 0x53, - 0xFA, 0x3A, 0x3B, 0xB4, 0xA8, 0xBC, 0x5F, 0x68, - 0x08, 0xCA, 0x8F, 0x14, 0xD7, 0xC0, 0xEF, 0x7B, - 0x5B, 0xBF, 0x2F, 0xE5, 0xE2, 0x8C, 0xBA, 0x12, - 0xE1, 0xAF, 0xB2, 0x54, 0x5D, 0x59, 0x76, 0xDB, - 0x32, 0xA2, 0x58, 0x6E, 0x1C, 0x29, 0x64, 0xF3, - 0xE9, 0x96, 0x0C, 0x98, 0x19, 0x8D, 0x3E, 0x26, - 0xAB, 0xA5, 0x85, 0x16, 0x40, 0xBD, 0x49, 0x67, - 0xDC, 0x22, 0x94, 0xBB, 0x3C, 0xC1, 0x9B, 0xEB, - 0x45, 0x28, 0x18, 0xD8, 0x1A, 0x42, 0x7D, 0xCC, - 0xFB, 0x65, 0x8E, 0x3D, 0xCD, 0x2A, 0xA3, 0x60, - 0xAE, 0x93, 0x8A, 0x48, 0x97, 0x51, 0x15, 0xF7, - 0x01, 0x0B, 0xB7, 0x36, 0xB1, 0x2E, 0x11, 0xFD, - 0x84, 0x2D, 0x3F, 0x13, 0x88, 0xB3, 0x34, 0x24, - 0x1B, 0xDE, 0xC5, 0x1D, 0x4D, 0x2B, 0x17, 0x31, - 0x74, 0xA9, 0xC6, 0x43, 0x6D, 0x39, 0x90, 0xBE, - 0xC3, 0xB0, 0x21, 0x6B, 0xF6, 0x0F, 0xD5, 0x99, - 0x0D, 0xAC, 0x1F, 0x5C, 0x9E, 0xF5, 0xF9, 0x4C, - 0xD6, 0xDF, 0x89, 0xE4, 0x8B, 0xFF, 0xC7, 0xAA, - 0xE7, 0xED, 0x46, 0x25, 0xB6, 0x06, 0x5E, 0x35, - 0xB5, 0xEC, 0xCE, 0xE8, 0x6C, 0x30, 0x55, 0x61, - 0x4A, 0xFE, 0xA0, 0x79, 0x03, 0xF0, 0x10, 0x72, - 0x7C, 0xCF, 0x52, 0xA6, 0xA7, 0xEE, 0x44, 0xD3, - 0x9A, 0x57, 0x92, 0xD0, 0x5A, 0x7A, 0x41, 0x7F, - 0x0E, 0x00, 0x63, 0xF2, 0x4F, 0x05, 0x83, 0xC9, - 0xA1, 0xD4, 0xDD, 0xC4, 0x56, 0xF4, 0xD2, 0x77, - 0x81, 0x09, 0x82, 0x33, 0x9F, 0x07, 0x86, 0x75, - 0x38, 0x4E, 0x69, 0xF1, 0xAD, 0x23, 0x73, 0x87, - 0x70, 0x02, 0xC2, 0x1E, 0xB8, 0x0A, 0xFC, 0xE6 - ); - - /** - * Test for engine validity - * - * This is mainly just a wrapper to set things up for \phpseclib\Crypt\Base::isValidEngine() - * - * @see \phpseclib\Crypt\Base::__construct() - * @param int $engine - * @access public - * @return bool - */ - function isValidEngine($engine) - { - switch ($engine) { - case self::ENGINE_OPENSSL: - if ($this->current_key_length != 128 || strlen($this->orig_key) < 16) { - return false; - } - $this->cipher_name_openssl_ecb = 'rc2-ecb'; - $this->cipher_name_openssl = 'rc2-' . $this->_openssl_translate_mode(); - } - - return parent::isValidEngine($engine); - } - - /** - * Sets the key length. - * - * Valid key lengths are 8 to 1024. - * Calling this function after setting the key has no effect until the next - * \phpseclib\Crypt\RC2::setKey() call. - * - * @access public - * @param int $length in bits - */ - function setKeyLength($length) - { - if ($length < 8) { - $this->default_key_length = 1; - } elseif ($length > 1024) { - $this->default_key_length = 128; - } else { - $this->default_key_length = $length; - } - $this->current_key_length = $this->default_key_length; - - parent::setKeyLength($length); - } - - /** - * Returns the current key length - * - * @access public - * @return int - */ - function getKeyLength() - { - return $this->current_key_length; - } - - /** - * Sets the key. - * - * Keys can be of any length. RC2, itself, uses 8 to 1024 bit keys (eg. - * strlen($key) <= 128), however, we only use the first 128 bytes if $key - * has more then 128 bytes in it, and set $key to a single null byte if - * it is empty. - * - * If the key is not explicitly set, it'll be assumed to be a single - * null byte. - * - * @see \phpseclib\Crypt\Base::setKey() - * @access public - * @param string $key - * @param int $t1 optional Effective key length in bits. - */ - function setKey($key, $t1 = 0) - { - $this->orig_key = $key; - - if ($t1 <= 0) { - $t1 = $this->default_key_length; - } elseif ($t1 > 1024) { - $t1 = 1024; - } - $this->current_key_length = $t1; - // Key byte count should be 1..128. - $key = strlen($key) ? substr($key, 0, 128) : "\x00"; - $t = strlen($key); - - // The mcrypt RC2 implementation only supports effective key length - // of 1024 bits. It is however possible to handle effective key - // lengths in range 1..1024 by expanding the key and applying - // inverse pitable mapping to the first byte before submitting it - // to mcrypt. - - // Key expansion. - $l = array_values(unpack('C*', $key)); - $t8 = ($t1 + 7) >> 3; - $tm = 0xFF >> (8 * $t8 - $t1); - - // Expand key. - $pitable = $this->pitable; - for ($i = $t; $i < 128; $i++) { - $l[$i] = $pitable[$l[$i - 1] + $l[$i - $t]]; - } - $i = 128 - $t8; - $l[$i] = $pitable[$l[$i] & $tm]; - while ($i--) { - $l[$i] = $pitable[$l[$i + 1] ^ $l[$i + $t8]]; - } - - // Prepare the key for mcrypt. - $l[0] = $this->invpitable[$l[0]]; - array_unshift($l, 'C*'); - - parent::setKey(call_user_func_array('pack', $l)); - } - - /** - * Encrypts a message. - * - * Mostly a wrapper for \phpseclib\Crypt\Base::encrypt, with some additional OpenSSL handling code - * - * @see self::decrypt() - * @access public - * @param string $plaintext - * @return string $ciphertext - */ - function encrypt($plaintext) - { - if ($this->engine == self::ENGINE_OPENSSL) { - $temp = $this->key; - $this->key = $this->orig_key; - $result = parent::encrypt($plaintext); - $this->key = $temp; - return $result; - } - - return parent::encrypt($plaintext); - } - - /** - * Decrypts a message. - * - * Mostly a wrapper for \phpseclib\Crypt\Base::decrypt, with some additional OpenSSL handling code - * - * @see self::encrypt() - * @access public - * @param string $ciphertext - * @return string $plaintext - */ - function decrypt($ciphertext) - { - if ($this->engine == self::ENGINE_OPENSSL) { - $temp = $this->key; - $this->key = $this->orig_key; - $result = parent::decrypt($ciphertext); - $this->key = $temp; - return $result; - } - - return parent::decrypt($ciphertext); - } - - /** - * Encrypts a block - * - * @see \phpseclib\Crypt\Base::_encryptBlock() - * @see \phpseclib\Crypt\Base::encrypt() - * @access private - * @param string $in - * @return string - */ - function _encryptBlock($in) - { - list($r0, $r1, $r2, $r3) = array_values(unpack('v*', $in)); - $keys = $this->keys; - $limit = 20; - $actions = array($limit => 44, 44 => 64); - $j = 0; - - for (;;) { - // Mixing round. - $r0 = (($r0 + $keys[$j++] + ((($r1 ^ $r2) & $r3) ^ $r1)) & 0xFFFF) << 1; - $r0 |= $r0 >> 16; - $r1 = (($r1 + $keys[$j++] + ((($r2 ^ $r3) & $r0) ^ $r2)) & 0xFFFF) << 2; - $r1 |= $r1 >> 16; - $r2 = (($r2 + $keys[$j++] + ((($r3 ^ $r0) & $r1) ^ $r3)) & 0xFFFF) << 3; - $r2 |= $r2 >> 16; - $r3 = (($r3 + $keys[$j++] + ((($r0 ^ $r1) & $r2) ^ $r0)) & 0xFFFF) << 5; - $r3 |= $r3 >> 16; - - if ($j === $limit) { - if ($limit === 64) { - break; - } - - // Mashing round. - $r0 += $keys[$r3 & 0x3F]; - $r1 += $keys[$r0 & 0x3F]; - $r2 += $keys[$r1 & 0x3F]; - $r3 += $keys[$r2 & 0x3F]; - $limit = $actions[$limit]; - } - } - - return pack('vvvv', $r0, $r1, $r2, $r3); - } - - /** - * Decrypts a block - * - * @see \phpseclib\Crypt\Base::_decryptBlock() - * @see \phpseclib\Crypt\Base::decrypt() - * @access private - * @param string $in - * @return string - */ - function _decryptBlock($in) - { - list($r0, $r1, $r2, $r3) = array_values(unpack('v*', $in)); - $keys = $this->keys; - $limit = 44; - $actions = array($limit => 20, 20 => 0); - $j = 64; - - for (;;) { - // R-mixing round. - $r3 = ($r3 | ($r3 << 16)) >> 5; - $r3 = ($r3 - $keys[--$j] - ((($r0 ^ $r1) & $r2) ^ $r0)) & 0xFFFF; - $r2 = ($r2 | ($r2 << 16)) >> 3; - $r2 = ($r2 - $keys[--$j] - ((($r3 ^ $r0) & $r1) ^ $r3)) & 0xFFFF; - $r1 = ($r1 | ($r1 << 16)) >> 2; - $r1 = ($r1 - $keys[--$j] - ((($r2 ^ $r3) & $r0) ^ $r2)) & 0xFFFF; - $r0 = ($r0 | ($r0 << 16)) >> 1; - $r0 = ($r0 - $keys[--$j] - ((($r1 ^ $r2) & $r3) ^ $r1)) & 0xFFFF; - - if ($j === $limit) { - if ($limit === 0) { - break; - } - - // R-mashing round. - $r3 = ($r3 - $keys[$r2 & 0x3F]) & 0xFFFF; - $r2 = ($r2 - $keys[$r1 & 0x3F]) & 0xFFFF; - $r1 = ($r1 - $keys[$r0 & 0x3F]) & 0xFFFF; - $r0 = ($r0 - $keys[$r3 & 0x3F]) & 0xFFFF; - $limit = $actions[$limit]; - } - } - - return pack('vvvv', $r0, $r1, $r2, $r3); - } - - /** - * Setup the \phpseclib\Crypt\Base::ENGINE_MCRYPT $engine - * - * @see \phpseclib\Crypt\Base::_setupMcrypt() - * @access private - */ - function _setupMcrypt() - { - if (!isset($this->key)) { - $this->setKey(''); - } - - parent::_setupMcrypt(); - } - - /** - * Creates the key schedule - * - * @see \phpseclib\Crypt\Base::_setupKey() - * @access private - */ - function _setupKey() - { - if (!isset($this->key)) { - $this->setKey(''); - } - - // Key has already been expanded in \phpseclib\Crypt\RC2::setKey(): - // Only the first value must be altered. - $l = unpack('Ca/Cb/v*', $this->key); - array_unshift($l, $this->pitable[$l['a']] | ($l['b'] << 8)); - unset($l['a']); - unset($l['b']); - $this->keys = $l; - } - - /** - * Setup the performance-optimized function for de/encrypt() - * - * @see \phpseclib\Crypt\Base::_setupInlineCrypt() - * @access private - */ - function _setupInlineCrypt() - { - $lambda_functions =& self::_getLambdaFunctions(); - - // The first 10 generated $lambda_functions will use the $keys hardcoded as integers - // for the mixing rounds, for better inline crypt performance [~20% faster]. - // But for memory reason we have to limit those ultra-optimized $lambda_functions to an amount of 10. - // (Currently, for Crypt_RC2, one generated $lambda_function cost on php5.5@32bit ~60kb unfreeable mem and ~100kb on php5.5@64bit) - $gen_hi_opt_code = (bool)(count($lambda_functions) < 10); - - // Generation of a unique hash for our generated code - $code_hash = "Crypt_RC2, {$this->mode}"; - if ($gen_hi_opt_code) { - $code_hash = str_pad($code_hash, 32) . $this->_hashInlineCryptFunction($this->key); - } - - // Is there a re-usable $lambda_functions in there? - // If not, we have to create it. - if (!isset($lambda_functions[$code_hash])) { - // Init code for both, encrypt and decrypt. - $init_crypt = '$keys = $self->keys;'; - - switch (true) { - case $gen_hi_opt_code: - $keys = $this->keys; - default: - $keys = array(); - foreach ($this->keys as $k => $v) { - $keys[$k] = '$keys[' . $k . ']'; - } - } - - // $in is the current 8 bytes block which has to be en/decrypt - $encrypt_block = $decrypt_block = ' - $in = unpack("v4", $in); - $r0 = $in[1]; - $r1 = $in[2]; - $r2 = $in[3]; - $r3 = $in[4]; - '; - - // Create code for encryption. - $limit = 20; - $actions = array($limit => 44, 44 => 64); - $j = 0; - - for (;;) { - // Mixing round. - $encrypt_block .= ' - $r0 = (($r0 + ' . $keys[$j++] . ' + - ((($r1 ^ $r2) & $r3) ^ $r1)) & 0xFFFF) << 1; - $r0 |= $r0 >> 16; - $r1 = (($r1 + ' . $keys[$j++] . ' + - ((($r2 ^ $r3) & $r0) ^ $r2)) & 0xFFFF) << 2; - $r1 |= $r1 >> 16; - $r2 = (($r2 + ' . $keys[$j++] . ' + - ((($r3 ^ $r0) & $r1) ^ $r3)) & 0xFFFF) << 3; - $r2 |= $r2 >> 16; - $r3 = (($r3 + ' . $keys[$j++] . ' + - ((($r0 ^ $r1) & $r2) ^ $r0)) & 0xFFFF) << 5; - $r3 |= $r3 >> 16;'; - - if ($j === $limit) { - if ($limit === 64) { - break; - } - - // Mashing round. - $encrypt_block .= ' - $r0 += $keys[$r3 & 0x3F]; - $r1 += $keys[$r0 & 0x3F]; - $r2 += $keys[$r1 & 0x3F]; - $r3 += $keys[$r2 & 0x3F];'; - $limit = $actions[$limit]; - } - } - - $encrypt_block .= '$in = pack("v4", $r0, $r1, $r2, $r3);'; - - // Create code for decryption. - $limit = 44; - $actions = array($limit => 20, 20 => 0); - $j = 64; - - for (;;) { - // R-mixing round. - $decrypt_block .= ' - $r3 = ($r3 | ($r3 << 16)) >> 5; - $r3 = ($r3 - ' . $keys[--$j] . ' - - ((($r0 ^ $r1) & $r2) ^ $r0)) & 0xFFFF; - $r2 = ($r2 | ($r2 << 16)) >> 3; - $r2 = ($r2 - ' . $keys[--$j] . ' - - ((($r3 ^ $r0) & $r1) ^ $r3)) & 0xFFFF; - $r1 = ($r1 | ($r1 << 16)) >> 2; - $r1 = ($r1 - ' . $keys[--$j] . ' - - ((($r2 ^ $r3) & $r0) ^ $r2)) & 0xFFFF; - $r0 = ($r0 | ($r0 << 16)) >> 1; - $r0 = ($r0 - ' . $keys[--$j] . ' - - ((($r1 ^ $r2) & $r3) ^ $r1)) & 0xFFFF;'; - - if ($j === $limit) { - if ($limit === 0) { - break; - } - - // R-mashing round. - $decrypt_block .= ' - $r3 = ($r3 - $keys[$r2 & 0x3F]) & 0xFFFF; - $r2 = ($r2 - $keys[$r1 & 0x3F]) & 0xFFFF; - $r1 = ($r1 - $keys[$r0 & 0x3F]) & 0xFFFF; - $r0 = ($r0 - $keys[$r3 & 0x3F]) & 0xFFFF;'; - $limit = $actions[$limit]; - } - } - - $decrypt_block .= '$in = pack("v4", $r0, $r1, $r2, $r3);'; - - // Creates the inline-crypt function - $lambda_functions[$code_hash] = $this->_createInlineCryptFunction( - array( - 'init_crypt' => $init_crypt, - 'encrypt_block' => $encrypt_block, - 'decrypt_block' => $decrypt_block - ) - ); - } - - // Set the inline-crypt function as callback in: $this->inline_crypt - $this->inline_crypt = $lambda_functions[$code_hash]; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/Crypt/RC4.php b/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/Crypt/RC4.php deleted file mode 100644 index 25e4ff85..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/Crypt/RC4.php +++ /dev/null @@ -1,342 +0,0 @@ - - * setKey('abcdefgh'); - * - * $size = 10 * 1024; - * $plaintext = ''; - * for ($i = 0; $i < $size; $i++) { - * $plaintext.= 'a'; - * } - * - * echo $rc4->decrypt($rc4->encrypt($plaintext)); - * ?> - * - * - * @category Crypt - * @package RC4 - * @author Jim Wigginton - * @copyright 2007 Jim Wigginton - * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @link http://phpseclib.sourceforge.net - */ - -namespace phpseclib\Crypt; - -/** - * Pure-PHP implementation of RC4. - * - * @package RC4 - * @author Jim Wigginton - * @access public - */ -class RC4 extends Base -{ - /**#@+ - * @access private - * @see \phpseclib\Crypt\RC4::_crypt() - */ - const ENCRYPT = 0; - const DECRYPT = 1; - /**#@-*/ - - /** - * Block Length of the cipher - * - * RC4 is a stream cipher - * so we the block_size to 0 - * - * @see \phpseclib\Crypt\Base::block_size - * @var int - * @access private - */ - var $block_size = 0; - - /** - * Key Length (in bytes) - * - * @see \phpseclib\Crypt\RC4::setKeyLength() - * @var int - * @access private - */ - var $key_length = 128; // = 1024 bits - - /** - * The mcrypt specific name of the cipher - * - * @see \phpseclib\Crypt\Base::cipher_name_mcrypt - * @var string - * @access private - */ - var $cipher_name_mcrypt = 'arcfour'; - - /** - * Holds whether performance-optimized $inline_crypt() can/should be used. - * - * @see \phpseclib\Crypt\Base::inline_crypt - * @var mixed - * @access private - */ - var $use_inline_crypt = false; // currently not available - - /** - * The Key - * - * @see self::setKey() - * @var string - * @access private - */ - var $key; - - /** - * The Key Stream for decryption and encryption - * - * @see self::setKey() - * @var array - * @access private - */ - var $stream; - - /** - * Default Constructor. - * - * Determines whether or not the mcrypt extension should be used. - * - * @see \phpseclib\Crypt\Base::__construct() - * @return \phpseclib\Crypt\RC4 - * @access public - */ - function __construct() - { - parent::__construct(Base::MODE_STREAM); - } - - /** - * Test for engine validity - * - * This is mainly just a wrapper to set things up for \phpseclib\Crypt\Base::isValidEngine() - * - * @see \phpseclib\Crypt\Base::__construct() - * @param int $engine - * @access public - * @return bool - */ - function isValidEngine($engine) - { - if ($engine == Base::ENGINE_OPENSSL) { - if (version_compare(PHP_VERSION, '5.3.7') >= 0) { - $this->cipher_name_openssl = 'rc4-40'; - } else { - switch (strlen($this->key)) { - case 5: - $this->cipher_name_openssl = 'rc4-40'; - break; - case 8: - $this->cipher_name_openssl = 'rc4-64'; - break; - case 16: - $this->cipher_name_openssl = 'rc4'; - break; - default: - return false; - } - } - } - - return parent::isValidEngine($engine); - } - - /** - * Dummy function. - * - * Some protocols, such as WEP, prepend an "initialization vector" to the key, effectively creating a new key [1]. - * If you need to use an initialization vector in this manner, feel free to prepend it to the key, yourself, before - * calling setKey(). - * - * [1] WEP's initialization vectors (IV's) are used in a somewhat insecure way. Since, in that protocol, - * the IV's are relatively easy to predict, an attack described by - * {@link http://www.drizzle.com/~aboba/IEEE/rc4_ksaproc.pdf Scott Fluhrer, Itsik Mantin, and Adi Shamir} - * can be used to quickly guess at the rest of the key. The following links elaborate: - * - * {@link http://www.rsa.com/rsalabs/node.asp?id=2009 http://www.rsa.com/rsalabs/node.asp?id=2009} - * {@link http://en.wikipedia.org/wiki/Related_key_attack http://en.wikipedia.org/wiki/Related_key_attack} - * - * @param string $iv - * @see self::setKey() - * @access public - */ - function setIV($iv) - { - } - - /** - * Sets the key length - * - * Keys can be between 1 and 256 bytes long. - * - * @access public - * @param int $length - */ - function setKeyLength($length) - { - if ($length < 8) { - $this->key_length = 1; - } elseif ($length > 2048) { - $this->key_length = 256; - } else { - $this->key_length = $length >> 3; - } - - parent::setKeyLength($length); - } - - /** - * Encrypts a message. - * - * @see \phpseclib\Crypt\Base::decrypt() - * @see self::_crypt() - * @access public - * @param string $plaintext - * @return string $ciphertext - */ - function encrypt($plaintext) - { - if ($this->engine != Base::ENGINE_INTERNAL) { - return parent::encrypt($plaintext); - } - return $this->_crypt($plaintext, self::ENCRYPT); - } - - /** - * Decrypts a message. - * - * $this->decrypt($this->encrypt($plaintext)) == $this->encrypt($this->encrypt($plaintext)). - * At least if the continuous buffer is disabled. - * - * @see \phpseclib\Crypt\Base::encrypt() - * @see self::_crypt() - * @access public - * @param string $ciphertext - * @return string $plaintext - */ - function decrypt($ciphertext) - { - if ($this->engine != Base::ENGINE_INTERNAL) { - return parent::decrypt($ciphertext); - } - return $this->_crypt($ciphertext, self::DECRYPT); - } - - /** - * Encrypts a block - * - * @access private - * @param string $in - */ - function _encryptBlock($in) - { - // RC4 does not utilize this method - } - - /** - * Decrypts a block - * - * @access private - * @param string $in - */ - function _decryptBlock($in) - { - // RC4 does not utilize this method - } - - /** - * Setup the key (expansion) - * - * @see \phpseclib\Crypt\Base::_setupKey() - * @access private - */ - function _setupKey() - { - $key = $this->key; - $keyLength = strlen($key); - $keyStream = range(0, 255); - $j = 0; - for ($i = 0; $i < 256; $i++) { - $j = ($j + $keyStream[$i] + ord($key[$i % $keyLength])) & 255; - $temp = $keyStream[$i]; - $keyStream[$i] = $keyStream[$j]; - $keyStream[$j] = $temp; - } - - $this->stream = array(); - $this->stream[self::DECRYPT] = $this->stream[self::ENCRYPT] = array( - 0, // index $i - 0, // index $j - $keyStream - ); - } - - /** - * Encrypts or decrypts a message. - * - * @see self::encrypt() - * @see self::decrypt() - * @access private - * @param string $text - * @param int $mode - * @return string $text - */ - function _crypt($text, $mode) - { - if ($this->changed) { - $this->_setup(); - $this->changed = false; - } - - $stream = &$this->stream[$mode]; - if ($this->continuousBuffer) { - $i = &$stream[0]; - $j = &$stream[1]; - $keyStream = &$stream[2]; - } else { - $i = $stream[0]; - $j = $stream[1]; - $keyStream = $stream[2]; - } - - $len = strlen($text); - for ($k = 0; $k < $len; ++$k) { - $i = ($i + 1) & 255; - $ksi = $keyStream[$i]; - $j = ($j + $ksi) & 255; - $ksj = $keyStream[$j]; - - $keyStream[$i] = $ksj; - $keyStream[$j] = $ksi; - $text[$k] = $text[$k] ^ chr($keyStream[($ksj + $ksi) & 255]); - } - - return $text; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA.php b/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA.php deleted file mode 100644 index 72be6eeb..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA.php +++ /dev/null @@ -1,3201 +0,0 @@ - - * createKey()); - * - * $plaintext = 'terrafrost'; - * - * $rsa->loadKey($privatekey); - * $ciphertext = $rsa->encrypt($plaintext); - * - * $rsa->loadKey($publickey); - * echo $rsa->decrypt($ciphertext); - * ?> - * - * - * Here's an example of how to create signatures and verify signatures with this library: - * - * createKey()); - * - * $plaintext = 'terrafrost'; - * - * $rsa->loadKey($privatekey); - * $signature = $rsa->sign($plaintext); - * - * $rsa->loadKey($publickey); - * echo $rsa->verify($plaintext, $signature) ? 'verified' : 'unverified'; - * ?> - * - * - * @category Crypt - * @package RSA - * @author Jim Wigginton - * @copyright 2009 Jim Wigginton - * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @link http://phpseclib.sourceforge.net - */ - -namespace phpseclib\Crypt; - -use phpseclib\Math\BigInteger; - -/** - * Pure-PHP PKCS#1 compliant implementation of RSA. - * - * @package RSA - * @author Jim Wigginton - * @access public - */ -class RSA -{ - /**#@+ - * @access public - * @see self::encrypt() - * @see self::decrypt() - */ - /** - * Use {@link http://en.wikipedia.org/wiki/Optimal_Asymmetric_Encryption_Padding Optimal Asymmetric Encryption Padding} - * (OAEP) for encryption / decryption. - * - * Uses sha1 by default. - * - * @see self::setHash() - * @see self::setMGFHash() - */ - const ENCRYPTION_OAEP = 1; - /** - * Use PKCS#1 padding. - * - * Although self::ENCRYPTION_OAEP offers more security, including PKCS#1 padding is necessary for purposes of backwards - * compatibility with protocols (like SSH-1) written before OAEP's introduction. - */ - const ENCRYPTION_PKCS1 = 2; - /** - * Do not use any padding - * - * Although this method is not recommended it can none-the-less sometimes be useful if you're trying to decrypt some legacy - * stuff, if you're trying to diagnose why an encrypted message isn't decrypting, etc. - */ - const ENCRYPTION_NONE = 3; - /**#@-*/ - - /**#@+ - * @access public - * @see self::sign() - * @see self::verify() - * @see self::setHash() - */ - /** - * Use the Probabilistic Signature Scheme for signing - * - * Uses sha1 by default. - * - * @see self::setSaltLength() - * @see self::setMGFHash() - */ - const SIGNATURE_PSS = 1; - /** - * Use the PKCS#1 scheme by default. - * - * Although self::SIGNATURE_PSS offers more security, including PKCS#1 signing is necessary for purposes of backwards - * compatibility with protocols (like SSH-2) written before PSS's introduction. - */ - const SIGNATURE_PKCS1 = 2; - /**#@-*/ - - /**#@+ - * @access private - * @see \phpseclib\Crypt\RSA::createKey() - */ - /** - * ASN1 Integer - */ - const ASN1_INTEGER = 2; - /** - * ASN1 Bit String - */ - const ASN1_BITSTRING = 3; - /** - * ASN1 Octet String - */ - const ASN1_OCTETSTRING = 4; - /** - * ASN1 Object Identifier - */ - const ASN1_OBJECT = 6; - /** - * ASN1 Sequence (with the constucted bit set) - */ - const ASN1_SEQUENCE = 48; - /**#@-*/ - - /**#@+ - * @access private - * @see \phpseclib\Crypt\RSA::__construct() - */ - /** - * To use the pure-PHP implementation - */ - const MODE_INTERNAL = 1; - /** - * To use the OpenSSL library - * - * (if enabled; otherwise, the internal implementation will be used) - */ - const MODE_OPENSSL = 2; - /**#@-*/ - - /**#@+ - * @access public - * @see \phpseclib\Crypt\RSA::createKey() - * @see \phpseclib\Crypt\RSA::setPrivateKeyFormat() - */ - /** - * PKCS#1 formatted private key - * - * Used by OpenSSH - */ - const PRIVATE_FORMAT_PKCS1 = 0; - /** - * PuTTY formatted private key - */ - const PRIVATE_FORMAT_PUTTY = 1; - /** - * XML formatted private key - */ - const PRIVATE_FORMAT_XML = 2; - /** - * PKCS#8 formatted private key - */ - const PRIVATE_FORMAT_PKCS8 = 8; - /** - * OpenSSH formatted private key - */ - const PRIVATE_FORMAT_OPENSSH = 9; - /**#@-*/ - - /**#@+ - * @access public - * @see \phpseclib\Crypt\RSA::createKey() - * @see \phpseclib\Crypt\RSA::setPublicKeyFormat() - */ - /** - * Raw public key - * - * An array containing two \phpseclib\Math\BigInteger objects. - * - * The exponent can be indexed with any of the following: - * - * 0, e, exponent, publicExponent - * - * The modulus can be indexed with any of the following: - * - * 1, n, modulo, modulus - */ - const PUBLIC_FORMAT_RAW = 3; - /** - * PKCS#1 formatted public key (raw) - * - * Used by File/X509.php - * - * Has the following header: - * - * -----BEGIN RSA PUBLIC KEY----- - * - * Analogous to ssh-keygen's pem format (as specified by -m) - */ - const PUBLIC_FORMAT_PKCS1 = 4; - const PUBLIC_FORMAT_PKCS1_RAW = 4; - /** - * XML formatted public key - */ - const PUBLIC_FORMAT_XML = 5; - /** - * OpenSSH formatted public key - * - * Place in $HOME/.ssh/authorized_keys - */ - const PUBLIC_FORMAT_OPENSSH = 6; - /** - * PKCS#1 formatted public key (encapsulated) - * - * Used by PHP's openssl_public_encrypt() and openssl's rsautl (when -pubin is set) - * - * Has the following header: - * - * -----BEGIN PUBLIC KEY----- - * - * Analogous to ssh-keygen's pkcs8 format (as specified by -m). Although PKCS8 - * is specific to private keys it's basically creating a DER-encoded wrapper - * for keys. This just extends that same concept to public keys (much like ssh-keygen) - */ - const PUBLIC_FORMAT_PKCS8 = 7; - /**#@-*/ - - /** - * Precomputed Zero - * - * @var \phpseclib\Math\BigInteger - * @access private - */ - var $zero; - - /** - * Precomputed One - * - * @var \phpseclib\Math\BigInteger - * @access private - */ - var $one; - - /** - * Private Key Format - * - * @var int - * @access private - */ - var $privateKeyFormat = self::PRIVATE_FORMAT_PKCS1; - - /** - * Public Key Format - * - * @var int - * @access public - */ - var $publicKeyFormat = self::PUBLIC_FORMAT_PKCS8; - - /** - * Modulus (ie. n) - * - * @var \phpseclib\Math\BigInteger - * @access private - */ - var $modulus; - - /** - * Modulus length - * - * @var \phpseclib\Math\BigInteger - * @access private - */ - var $k; - - /** - * Exponent (ie. e or d) - * - * @var \phpseclib\Math\BigInteger - * @access private - */ - var $exponent; - - /** - * Primes for Chinese Remainder Theorem (ie. p and q) - * - * @var array - * @access private - */ - var $primes; - - /** - * Exponents for Chinese Remainder Theorem (ie. dP and dQ) - * - * @var array - * @access private - */ - var $exponents; - - /** - * Coefficients for Chinese Remainder Theorem (ie. qInv) - * - * @var array - * @access private - */ - var $coefficients; - - /** - * Hash name - * - * @var string - * @access private - */ - var $hashName; - - /** - * Hash function - * - * @var \phpseclib\Crypt\Hash - * @access private - */ - var $hash; - - /** - * Length of hash function output - * - * @var int - * @access private - */ - var $hLen; - - /** - * Length of salt - * - * @var int - * @access private - */ - var $sLen; - - /** - * Hash function for the Mask Generation Function - * - * @var \phpseclib\Crypt\Hash - * @access private - */ - var $mgfHash; - - /** - * Length of MGF hash function output - * - * @var int - * @access private - */ - var $mgfHLen; - - /** - * Encryption mode - * - * @var int - * @access private - */ - var $encryptionMode = self::ENCRYPTION_OAEP; - - /** - * Signature mode - * - * @var int - * @access private - */ - var $signatureMode = self::SIGNATURE_PSS; - - /** - * Public Exponent - * - * @var mixed - * @access private - */ - var $publicExponent = false; - - /** - * Password - * - * @var string - * @access private - */ - var $password = false; - - /** - * Components - * - * For use with parsing XML formatted keys. PHP's XML Parser functions use utilized - instead of PHP's DOM functions - - * because PHP's XML Parser functions work on PHP4 whereas PHP's DOM functions - although surperior - don't. - * - * @see self::_start_element_handler() - * @var array - * @access private - */ - var $components = array(); - - /** - * Current String - * - * For use with parsing XML formatted keys. - * - * @see self::_character_handler() - * @see self::_stop_element_handler() - * @var mixed - * @access private - */ - var $current; - - /** - * OpenSSL configuration file name. - * - * Set to null to use system configuration file. - * @see self::createKey() - * @var mixed - * @Access public - */ - var $configFile; - - /** - * Public key comment field. - * - * @var string - * @access private - */ - var $comment = 'phpseclib-generated-key'; - - /** - * The constructor - * - * If you want to make use of the openssl extension, you'll need to set the mode manually, yourself. The reason - * \phpseclib\Crypt\RSA doesn't do it is because OpenSSL doesn't fail gracefully. openssl_pkey_new(), in particular, requires - * openssl.cnf be present somewhere and, unfortunately, the only real way to find out is too late. - * - * @return \phpseclib\Crypt\RSA - * @access public - */ - function __construct() - { - $this->configFile = dirname(__FILE__) . '/../openssl.cnf'; - - if (!defined('CRYPT_RSA_MODE')) { - switch (true) { - // Math/BigInteger's openssl requirements are a little less stringent than Crypt/RSA's. in particular, - // Math/BigInteger doesn't require an openssl.cfg file whereas Crypt/RSA does. so if Math/BigInteger - // can't use OpenSSL it can be pretty trivially assumed, then, that Crypt/RSA can't either. - case defined('MATH_BIGINTEGER_OPENSSL_DISABLE'): - define('CRYPT_RSA_MODE', self::MODE_INTERNAL); - break; - case extension_loaded('openssl') && file_exists($this->configFile): - // some versions of XAMPP have mismatched versions of OpenSSL which causes it not to work - $versions = array(); - - // avoid generating errors (even with suppression) when phpinfo() is disabled (common in production systems) - if (strpos(ini_get('disable_functions'), 'phpinfo') === false) { - ob_start(); - @phpinfo(); - $content = ob_get_contents(); - ob_end_clean(); - - preg_match_all('#OpenSSL (Header|Library) Version(.*)#im', $content, $matches); - - if (!empty($matches[1])) { - for ($i = 0; $i < count($matches[1]); $i++) { - $fullVersion = trim(str_replace('=>', '', strip_tags($matches[2][$i]))); - - // Remove letter part in OpenSSL version - if (!preg_match('/(\d+\.\d+\.\d+)/i', $fullVersion, $m)) { - $versions[$matches[1][$i]] = $fullVersion; - } else { - $versions[$matches[1][$i]] = $m[0]; - } - } - } - } - - // it doesn't appear that OpenSSL versions were reported upon until PHP 5.3+ - switch (true) { - case !isset($versions['Header']): - case !isset($versions['Library']): - case $versions['Header'] == $versions['Library']: - case version_compare($versions['Header'], '1.0.0') >= 0 && version_compare($versions['Library'], '1.0.0') >= 0: - define('CRYPT_RSA_MODE', self::MODE_OPENSSL); - break; - default: - define('CRYPT_RSA_MODE', self::MODE_INTERNAL); - define('MATH_BIGINTEGER_OPENSSL_DISABLE', true); - } - break; - default: - define('CRYPT_RSA_MODE', self::MODE_INTERNAL); - } - } - - $this->zero = new BigInteger(); - $this->one = new BigInteger(1); - - $this->hash = new Hash('sha1'); - $this->hLen = $this->hash->getLength(); - $this->hashName = 'sha1'; - $this->mgfHash = new Hash('sha1'); - $this->mgfHLen = $this->mgfHash->getLength(); - } - - /** - * Create public / private key pair - * - * Returns an array with the following three elements: - * - 'privatekey': The private key. - * - 'publickey': The public key. - * - 'partialkey': A partially computed key (if the execution time exceeded $timeout). - * Will need to be passed back to \phpseclib\Crypt\RSA::createKey() as the third parameter for further processing. - * - * @access public - * @param int $bits - * @param int $timeout - * @param array $p - */ - function createKey($bits = 1024, $timeout = false, $partial = array()) - { - if (!defined('CRYPT_RSA_EXPONENT')) { - // http://en.wikipedia.org/wiki/65537_%28number%29 - define('CRYPT_RSA_EXPONENT', '65537'); - } - // per , this number ought not result in primes smaller - // than 256 bits. as a consequence if the key you're trying to create is 1024 bits and you've set CRYPT_RSA_SMALLEST_PRIME - // to 384 bits then you're going to get a 384 bit prime and a 640 bit prime (384 + 1024 % 384). at least if - // CRYPT_RSA_MODE is set to self::MODE_INTERNAL. if CRYPT_RSA_MODE is set to self::MODE_OPENSSL then - // CRYPT_RSA_SMALLEST_PRIME is ignored (ie. multi-prime RSA support is more intended as a way to speed up RSA key - // generation when there's a chance neither gmp nor OpenSSL are installed) - if (!defined('CRYPT_RSA_SMALLEST_PRIME')) { - define('CRYPT_RSA_SMALLEST_PRIME', 4096); - } - - // OpenSSL uses 65537 as the exponent and requires RSA keys be 384 bits minimum - if (CRYPT_RSA_MODE == self::MODE_OPENSSL && $bits >= 384 && CRYPT_RSA_EXPONENT == 65537) { - $config = array(); - if (isset($this->configFile)) { - $config['config'] = $this->configFile; - } - $rsa = openssl_pkey_new(array('private_key_bits' => $bits) + $config); - openssl_pkey_export($rsa, $privatekey, null, $config); - $publickey = openssl_pkey_get_details($rsa); - $publickey = $publickey['key']; - - $privatekey = call_user_func_array(array($this, '_convertPrivateKey'), array_values($this->_parseKey($privatekey, self::PRIVATE_FORMAT_PKCS1))); - $publickey = call_user_func_array(array($this, '_convertPublicKey'), array_values($this->_parseKey($publickey, self::PUBLIC_FORMAT_PKCS1))); - - // clear the buffer of error strings stemming from a minimalistic openssl.cnf - while (openssl_error_string() !== false) { - } - - return array( - 'privatekey' => $privatekey, - 'publickey' => $publickey, - 'partialkey' => false - ); - } - - static $e; - if (!isset($e)) { - $e = new BigInteger(CRYPT_RSA_EXPONENT); - } - - extract($this->_generateMinMax($bits)); - $absoluteMin = $min; - $temp = $bits >> 1; // divide by two to see how many bits P and Q would be - if ($temp > CRYPT_RSA_SMALLEST_PRIME) { - $num_primes = floor($bits / CRYPT_RSA_SMALLEST_PRIME); - $temp = CRYPT_RSA_SMALLEST_PRIME; - } else { - $num_primes = 2; - } - extract($this->_generateMinMax($temp + $bits % $temp)); - $finalMax = $max; - extract($this->_generateMinMax($temp)); - - $generator = new BigInteger(); - - $n = $this->one->copy(); - if (!empty($partial)) { - extract(unserialize($partial)); - } else { - $exponents = $coefficients = $primes = array(); - $lcm = array( - 'top' => $this->one->copy(), - 'bottom' => false - ); - } - - $start = time(); - $i0 = count($primes) + 1; - - do { - for ($i = $i0; $i <= $num_primes; $i++) { - if ($timeout !== false) { - $timeout-= time() - $start; - $start = time(); - if ($timeout <= 0) { - return array( - 'privatekey' => '', - 'publickey' => '', - 'partialkey' => serialize(array( - 'primes' => $primes, - 'coefficients' => $coefficients, - 'lcm' => $lcm, - 'exponents' => $exponents - )) - ); - } - } - - if ($i == $num_primes) { - list($min, $temp) = $absoluteMin->divide($n); - if (!$temp->equals($this->zero)) { - $min = $min->add($this->one); // ie. ceil() - } - $primes[$i] = $generator->randomPrime($min, $finalMax, $timeout); - } else { - $primes[$i] = $generator->randomPrime($min, $max, $timeout); - } - - if ($primes[$i] === false) { // if we've reached the timeout - if (count($primes) > 1) { - $partialkey = ''; - } else { - array_pop($primes); - $partialkey = serialize(array( - 'primes' => $primes, - 'coefficients' => $coefficients, - 'lcm' => $lcm, - 'exponents' => $exponents - )); - } - - return array( - 'privatekey' => '', - 'publickey' => '', - 'partialkey' => $partialkey - ); - } - - // the first coefficient is calculated differently from the rest - // ie. instead of being $primes[1]->modInverse($primes[2]), it's $primes[2]->modInverse($primes[1]) - if ($i > 2) { - $coefficients[$i] = $n->modInverse($primes[$i]); - } - - $n = $n->multiply($primes[$i]); - - $temp = $primes[$i]->subtract($this->one); - - // textbook RSA implementations use Euler's totient function instead of the least common multiple. - // see http://en.wikipedia.org/wiki/Euler%27s_totient_function - $lcm['top'] = $lcm['top']->multiply($temp); - $lcm['bottom'] = $lcm['bottom'] === false ? $temp : $lcm['bottom']->gcd($temp); - - $exponents[$i] = $e->modInverse($temp); - } - - list($temp) = $lcm['top']->divide($lcm['bottom']); - $gcd = $temp->gcd($e); - $i0 = 1; - } while (!$gcd->equals($this->one)); - - $d = $e->modInverse($temp); - - $coefficients[2] = $primes[2]->modInverse($primes[1]); - - // from : - // RSAPrivateKey ::= SEQUENCE { - // version Version, - // modulus INTEGER, -- n - // publicExponent INTEGER, -- e - // privateExponent INTEGER, -- d - // prime1 INTEGER, -- p - // prime2 INTEGER, -- q - // exponent1 INTEGER, -- d mod (p-1) - // exponent2 INTEGER, -- d mod (q-1) - // coefficient INTEGER, -- (inverse of q) mod p - // otherPrimeInfos OtherPrimeInfos OPTIONAL - // } - - return array( - 'privatekey' => $this->_convertPrivateKey($n, $e, $d, $primes, $exponents, $coefficients), - 'publickey' => $this->_convertPublicKey($n, $e), - 'partialkey' => false - ); - } - - /** - * Convert a private key to the appropriate format. - * - * @access private - * @see self::setPrivateKeyFormat() - * @param string $RSAPrivateKey - * @return string - */ - function _convertPrivateKey($n, $e, $d, $primes, $exponents, $coefficients) - { - $signed = $this->privateKeyFormat != self::PRIVATE_FORMAT_XML; - $num_primes = count($primes); - $raw = array( - 'version' => $num_primes == 2 ? chr(0) : chr(1), // two-prime vs. multi - 'modulus' => $n->toBytes($signed), - 'publicExponent' => $e->toBytes($signed), - 'privateExponent' => $d->toBytes($signed), - 'prime1' => $primes[1]->toBytes($signed), - 'prime2' => $primes[2]->toBytes($signed), - 'exponent1' => $exponents[1]->toBytes($signed), - 'exponent2' => $exponents[2]->toBytes($signed), - 'coefficient' => $coefficients[2]->toBytes($signed) - ); - - // if the format in question does not support multi-prime rsa and multi-prime rsa was used, - // call _convertPublicKey() instead. - switch ($this->privateKeyFormat) { - case self::PRIVATE_FORMAT_XML: - if ($num_primes != 2) { - return false; - } - return "\r\n" . - ' ' . base64_encode($raw['modulus']) . "\r\n" . - ' ' . base64_encode($raw['publicExponent']) . "\r\n" . - '

' . base64_encode($raw['prime1']) . "

\r\n" . - ' ' . base64_encode($raw['prime2']) . "\r\n" . - ' ' . base64_encode($raw['exponent1']) . "\r\n" . - ' ' . base64_encode($raw['exponent2']) . "\r\n" . - ' ' . base64_encode($raw['coefficient']) . "\r\n" . - ' ' . base64_encode($raw['privateExponent']) . "\r\n" . - '
'; - break; - case self::PRIVATE_FORMAT_PUTTY: - if ($num_primes != 2) { - return false; - } - $key = "PuTTY-User-Key-File-2: ssh-rsa\r\nEncryption: "; - $encryption = (!empty($this->password) || is_string($this->password)) ? 'aes256-cbc' : 'none'; - $key.= $encryption; - $key.= "\r\nComment: " . $this->comment . "\r\n"; - $public = pack( - 'Na*Na*Na*', - strlen('ssh-rsa'), - 'ssh-rsa', - strlen($raw['publicExponent']), - $raw['publicExponent'], - strlen($raw['modulus']), - $raw['modulus'] - ); - $source = pack( - 'Na*Na*Na*Na*', - strlen('ssh-rsa'), - 'ssh-rsa', - strlen($encryption), - $encryption, - strlen($this->comment), - $this->comment, - strlen($public), - $public - ); - $public = base64_encode($public); - $key.= "Public-Lines: " . ((strlen($public) + 63) >> 6) . "\r\n"; - $key.= chunk_split($public, 64); - $private = pack( - 'Na*Na*Na*Na*', - strlen($raw['privateExponent']), - $raw['privateExponent'], - strlen($raw['prime1']), - $raw['prime1'], - strlen($raw['prime2']), - $raw['prime2'], - strlen($raw['coefficient']), - $raw['coefficient'] - ); - if (empty($this->password) && !is_string($this->password)) { - $source.= pack('Na*', strlen($private), $private); - $hashkey = 'putty-private-key-file-mac-key'; - } else { - $private.= Random::string(16 - (strlen($private) & 15)); - $source.= pack('Na*', strlen($private), $private); - $sequence = 0; - $symkey = ''; - while (strlen($symkey) < 32) { - $temp = pack('Na*', $sequence++, $this->password); - $symkey.= pack('H*', sha1($temp)); - } - $symkey = substr($symkey, 0, 32); - $crypto = new AES(); - - $crypto->setKey($symkey); - $crypto->disablePadding(); - $private = $crypto->encrypt($private); - $hashkey = 'putty-private-key-file-mac-key' . $this->password; - } - - $private = base64_encode($private); - $key.= 'Private-Lines: ' . ((strlen($private) + 63) >> 6) . "\r\n"; - $key.= chunk_split($private, 64); - $hash = new Hash('sha1'); - $hash->setKey(pack('H*', sha1($hashkey))); - $key.= 'Private-MAC: ' . bin2hex($hash->hash($source)) . "\r\n"; - - return $key; - case self::PRIVATE_FORMAT_OPENSSH: - if ($num_primes != 2) { - return false; - } - $publicKey = pack('Na*Na*Na*', strlen('ssh-rsa'), 'ssh-rsa', strlen($raw['publicExponent']), $raw['publicExponent'], strlen($raw['modulus']), $raw['modulus']); - $privateKey = pack( - 'Na*Na*Na*Na*Na*Na*Na*', - strlen('ssh-rsa'), - 'ssh-rsa', - strlen($raw['modulus']), - $raw['modulus'], - strlen($raw['publicExponent']), - $raw['publicExponent'], - strlen($raw['privateExponent']), - $raw['privateExponent'], - strlen($raw['coefficient']), - $raw['coefficient'], - strlen($raw['prime1']), - $raw['prime1'], - strlen($raw['prime2']), - $raw['prime2'] - ); - $checkint = Random::string(4); - $paddedKey = pack( - 'a*Na*', - $checkint . $checkint . $privateKey, - strlen($this->comment), - $this->comment - ); - $paddingLength = (7 * strlen($paddedKey)) % 8; - for ($i = 1; $i <= $paddingLength; $i++) { - $paddedKey.= chr($i); - } - $key = pack( - 'Na*Na*Na*NNa*Na*', - strlen('none'), - 'none', - strlen('none'), - 'none', - 0, - '', - 1, - strlen($publicKey), - $publicKey, - strlen($paddedKey), - $paddedKey - ); - $key = "openssh-key-v1\0$key"; - - return "-----BEGIN OPENSSH PRIVATE KEY-----\r\n" . - chunk_split(base64_encode($key), 70) . - "-----END OPENSSH PRIVATE KEY-----"; - default: // eg. self::PRIVATE_FORMAT_PKCS1 - $components = array(); - foreach ($raw as $name => $value) { - $components[$name] = pack('Ca*a*', self::ASN1_INTEGER, $this->_encodeLength(strlen($value)), $value); - } - - $RSAPrivateKey = implode('', $components); - - if ($num_primes > 2) { - $OtherPrimeInfos = ''; - for ($i = 3; $i <= $num_primes; $i++) { - // OtherPrimeInfos ::= SEQUENCE SIZE(1..MAX) OF OtherPrimeInfo - // - // OtherPrimeInfo ::= SEQUENCE { - // prime INTEGER, -- ri - // exponent INTEGER, -- di - // coefficient INTEGER -- ti - // } - $OtherPrimeInfo = pack('Ca*a*', self::ASN1_INTEGER, $this->_encodeLength(strlen($primes[$i]->toBytes(true))), $primes[$i]->toBytes(true)); - $OtherPrimeInfo.= pack('Ca*a*', self::ASN1_INTEGER, $this->_encodeLength(strlen($exponents[$i]->toBytes(true))), $exponents[$i]->toBytes(true)); - $OtherPrimeInfo.= pack('Ca*a*', self::ASN1_INTEGER, $this->_encodeLength(strlen($coefficients[$i]->toBytes(true))), $coefficients[$i]->toBytes(true)); - $OtherPrimeInfos.= pack('Ca*a*', self::ASN1_SEQUENCE, $this->_encodeLength(strlen($OtherPrimeInfo)), $OtherPrimeInfo); - } - $RSAPrivateKey.= pack('Ca*a*', self::ASN1_SEQUENCE, $this->_encodeLength(strlen($OtherPrimeInfos)), $OtherPrimeInfos); - } - - $RSAPrivateKey = pack('Ca*a*', self::ASN1_SEQUENCE, $this->_encodeLength(strlen($RSAPrivateKey)), $RSAPrivateKey); - - if ($this->privateKeyFormat == self::PRIVATE_FORMAT_PKCS8) { - $rsaOID = pack('H*', '300d06092a864886f70d0101010500'); // hex version of MA0GCSqGSIb3DQEBAQUA - $RSAPrivateKey = pack( - 'Ca*a*Ca*a*', - self::ASN1_INTEGER, - "\01\00", - $rsaOID, - 4, - $this->_encodeLength(strlen($RSAPrivateKey)), - $RSAPrivateKey - ); - $RSAPrivateKey = pack('Ca*a*', self::ASN1_SEQUENCE, $this->_encodeLength(strlen($RSAPrivateKey)), $RSAPrivateKey); - if (!empty($this->password) || is_string($this->password)) { - $salt = Random::string(8); - $iterationCount = 2048; - - $crypto = new DES(); - $crypto->setPassword($this->password, 'pbkdf1', 'md5', $salt, $iterationCount); - $RSAPrivateKey = $crypto->encrypt($RSAPrivateKey); - - $parameters = pack( - 'Ca*a*Ca*N', - self::ASN1_OCTETSTRING, - $this->_encodeLength(strlen($salt)), - $salt, - self::ASN1_INTEGER, - $this->_encodeLength(4), - $iterationCount - ); - $pbeWithMD5AndDES_CBC = "\x2a\x86\x48\x86\xf7\x0d\x01\x05\x03"; - - $encryptionAlgorithm = pack( - 'Ca*a*Ca*a*', - self::ASN1_OBJECT, - $this->_encodeLength(strlen($pbeWithMD5AndDES_CBC)), - $pbeWithMD5AndDES_CBC, - self::ASN1_SEQUENCE, - $this->_encodeLength(strlen($parameters)), - $parameters - ); - - $RSAPrivateKey = pack( - 'Ca*a*Ca*a*', - self::ASN1_SEQUENCE, - $this->_encodeLength(strlen($encryptionAlgorithm)), - $encryptionAlgorithm, - self::ASN1_OCTETSTRING, - $this->_encodeLength(strlen($RSAPrivateKey)), - $RSAPrivateKey - ); - - $RSAPrivateKey = pack('Ca*a*', self::ASN1_SEQUENCE, $this->_encodeLength(strlen($RSAPrivateKey)), $RSAPrivateKey); - - $RSAPrivateKey = "-----BEGIN ENCRYPTED PRIVATE KEY-----\r\n" . - chunk_split(base64_encode($RSAPrivateKey), 64) . - '-----END ENCRYPTED PRIVATE KEY-----'; - } else { - $RSAPrivateKey = "-----BEGIN PRIVATE KEY-----\r\n" . - chunk_split(base64_encode($RSAPrivateKey), 64) . - '-----END PRIVATE KEY-----'; - } - return $RSAPrivateKey; - } - - if (!empty($this->password) || is_string($this->password)) { - $iv = Random::string(8); - $symkey = pack('H*', md5($this->password . $iv)); // symkey is short for symmetric key - $symkey.= substr(pack('H*', md5($symkey . $this->password . $iv)), 0, 8); - $des = new TripleDES(); - $des->setKey($symkey); - $des->setIV($iv); - $iv = strtoupper(bin2hex($iv)); - $RSAPrivateKey = "-----BEGIN RSA PRIVATE KEY-----\r\n" . - "Proc-Type: 4,ENCRYPTED\r\n" . - "DEK-Info: DES-EDE3-CBC,$iv\r\n" . - "\r\n" . - chunk_split(base64_encode($des->encrypt($RSAPrivateKey)), 64) . - '-----END RSA PRIVATE KEY-----'; - } else { - $RSAPrivateKey = "-----BEGIN RSA PRIVATE KEY-----\r\n" . - chunk_split(base64_encode($RSAPrivateKey), 64) . - '-----END RSA PRIVATE KEY-----'; - } - - return $RSAPrivateKey; - } - } - - /** - * Convert a public key to the appropriate format - * - * @access private - * @see self::setPublicKeyFormat() - * @param string $RSAPrivateKey - * @return string - */ - function _convertPublicKey($n, $e) - { - $signed = $this->publicKeyFormat != self::PUBLIC_FORMAT_XML; - - $modulus = $n->toBytes($signed); - $publicExponent = $e->toBytes($signed); - - switch ($this->publicKeyFormat) { - case self::PUBLIC_FORMAT_RAW: - return array('e' => $e->copy(), 'n' => $n->copy()); - case self::PUBLIC_FORMAT_XML: - return "\r\n" . - ' ' . base64_encode($modulus) . "\r\n" . - ' ' . base64_encode($publicExponent) . "\r\n" . - ''; - break; - case self::PUBLIC_FORMAT_OPENSSH: - // from : - // string "ssh-rsa" - // mpint e - // mpint n - $RSAPublicKey = pack('Na*Na*Na*', strlen('ssh-rsa'), 'ssh-rsa', strlen($publicExponent), $publicExponent, strlen($modulus), $modulus); - $RSAPublicKey = 'ssh-rsa ' . base64_encode($RSAPublicKey) . ' ' . $this->comment; - - return $RSAPublicKey; - default: // eg. self::PUBLIC_FORMAT_PKCS1_RAW or self::PUBLIC_FORMAT_PKCS1 - // from : - // RSAPublicKey ::= SEQUENCE { - // modulus INTEGER, -- n - // publicExponent INTEGER -- e - // } - $components = array( - 'modulus' => pack('Ca*a*', self::ASN1_INTEGER, $this->_encodeLength(strlen($modulus)), $modulus), - 'publicExponent' => pack('Ca*a*', self::ASN1_INTEGER, $this->_encodeLength(strlen($publicExponent)), $publicExponent) - ); - - $RSAPublicKey = pack( - 'Ca*a*a*', - self::ASN1_SEQUENCE, - $this->_encodeLength(strlen($components['modulus']) + strlen($components['publicExponent'])), - $components['modulus'], - $components['publicExponent'] - ); - - if ($this->publicKeyFormat == self::PUBLIC_FORMAT_PKCS1_RAW) { - $RSAPublicKey = "-----BEGIN RSA PUBLIC KEY-----\r\n" . - chunk_split(base64_encode($RSAPublicKey), 64) . - '-----END RSA PUBLIC KEY-----'; - } else { - // sequence(oid(1.2.840.113549.1.1.1), null)) = rsaEncryption. - $rsaOID = pack('H*', '300d06092a864886f70d0101010500'); // hex version of MA0GCSqGSIb3DQEBAQUA - $RSAPublicKey = chr(0) . $RSAPublicKey; - $RSAPublicKey = chr(3) . $this->_encodeLength(strlen($RSAPublicKey)) . $RSAPublicKey; - - $RSAPublicKey = pack( - 'Ca*a*', - self::ASN1_SEQUENCE, - $this->_encodeLength(strlen($rsaOID . $RSAPublicKey)), - $rsaOID . $RSAPublicKey - ); - - $RSAPublicKey = "-----BEGIN PUBLIC KEY-----\r\n" . - chunk_split(base64_encode($RSAPublicKey), 64) . - '-----END PUBLIC KEY-----'; - } - - return $RSAPublicKey; - } - } - - /** - * Break a public or private key down into its constituant components - * - * @access private - * @see self::_convertPublicKey() - * @see self::_convertPrivateKey() - * @param string|array $key - * @param int $type - * @return array|bool - */ - function _parseKey($key, $type) - { - if ($type != self::PUBLIC_FORMAT_RAW && !is_string($key)) { - return false; - } - - switch ($type) { - case self::PUBLIC_FORMAT_RAW: - if (!is_array($key)) { - return false; - } - $components = array(); - switch (true) { - case isset($key['e']): - $components['publicExponent'] = $key['e']->copy(); - break; - case isset($key['exponent']): - $components['publicExponent'] = $key['exponent']->copy(); - break; - case isset($key['publicExponent']): - $components['publicExponent'] = $key['publicExponent']->copy(); - break; - case isset($key[0]): - $components['publicExponent'] = $key[0]->copy(); - } - switch (true) { - case isset($key['n']): - $components['modulus'] = $key['n']->copy(); - break; - case isset($key['modulo']): - $components['modulus'] = $key['modulo']->copy(); - break; - case isset($key['modulus']): - $components['modulus'] = $key['modulus']->copy(); - break; - case isset($key[1]): - $components['modulus'] = $key[1]->copy(); - } - return isset($components['modulus']) && isset($components['publicExponent']) ? $components : false; - case self::PRIVATE_FORMAT_PKCS1: - case self::PRIVATE_FORMAT_PKCS8: - case self::PUBLIC_FORMAT_PKCS1: - /* Although PKCS#1 proposes a format that public and private keys can use, encrypting them is - "outside the scope" of PKCS#1. PKCS#1 then refers you to PKCS#12 and PKCS#15 if you're wanting to - protect private keys, however, that's not what OpenSSL* does. OpenSSL protects private keys by adding - two new "fields" to the key - DEK-Info and Proc-Type. These fields are discussed here: - - http://tools.ietf.org/html/rfc1421#section-4.6.1.1 - http://tools.ietf.org/html/rfc1421#section-4.6.1.3 - - DES-EDE3-CBC as an algorithm, however, is not discussed anywhere, near as I can tell. - DES-CBC and DES-EDE are discussed in RFC1423, however, DES-EDE3-CBC isn't, nor is its key derivation - function. As is, the definitive authority on this encoding scheme isn't the IETF but rather OpenSSL's - own implementation. ie. the implementation *is* the standard and any bugs that may exist in that - implementation are part of the standard, as well. - - * OpenSSL is the de facto standard. It's utilized by OpenSSH and other projects */ - if (preg_match('#DEK-Info: (.+),(.+)#', $key, $matches)) { - $iv = pack('H*', trim($matches[2])); - $symkey = pack('H*', md5($this->password . substr($iv, 0, 8))); // symkey is short for symmetric key - $symkey.= pack('H*', md5($symkey . $this->password . substr($iv, 0, 8))); - // remove the Proc-Type / DEK-Info sections as they're no longer needed - $key = preg_replace('#^(?:Proc-Type|DEK-Info): .*#m', '', $key); - $ciphertext = $this->_extractBER($key); - if ($ciphertext === false) { - $ciphertext = $key; - } - switch ($matches[1]) { - case 'AES-256-CBC': - $crypto = new AES(); - break; - case 'AES-128-CBC': - $symkey = substr($symkey, 0, 16); - $crypto = new AES(); - break; - case 'DES-EDE3-CFB': - $crypto = new TripleDES(Base::MODE_CFB); - break; - case 'DES-EDE3-CBC': - $symkey = substr($symkey, 0, 24); - $crypto = new TripleDES(); - break; - case 'DES-CBC': - $crypto = new DES(); - break; - default: - return false; - } - $crypto->setKey($symkey); - $crypto->setIV($iv); - $decoded = $crypto->decrypt($ciphertext); - } else { - $decoded = $this->_extractBER($key); - } - - if ($decoded !== false) { - $key = $decoded; - } - - $components = array(); - - if (ord($this->_string_shift($key)) != self::ASN1_SEQUENCE) { - return false; - } - if ($this->_decodeLength($key) != strlen($key)) { - return false; - } - - $tag = ord($this->_string_shift($key)); - /* intended for keys for which OpenSSL's asn1parse returns the following: - - 0:d=0 hl=4 l= 631 cons: SEQUENCE - 4:d=1 hl=2 l= 1 prim: INTEGER :00 - 7:d=1 hl=2 l= 13 cons: SEQUENCE - 9:d=2 hl=2 l= 9 prim: OBJECT :rsaEncryption - 20:d=2 hl=2 l= 0 prim: NULL - 22:d=1 hl=4 l= 609 prim: OCTET STRING - - ie. PKCS8 keys*/ - - if ($tag == self::ASN1_INTEGER && substr($key, 0, 3) == "\x01\x00\x30") { - $this->_string_shift($key, 3); - $tag = self::ASN1_SEQUENCE; - } - - if ($tag == self::ASN1_SEQUENCE) { - $temp = $this->_string_shift($key, $this->_decodeLength($key)); - if (ord($this->_string_shift($temp)) != self::ASN1_OBJECT) { - return false; - } - $length = $this->_decodeLength($temp); - switch ($this->_string_shift($temp, $length)) { - case "\x2a\x86\x48\x86\xf7\x0d\x01\x01\x01": // rsaEncryption - break; - case "\x2a\x86\x48\x86\xf7\x0d\x01\x05\x03": // pbeWithMD5AndDES-CBC - /* - PBEParameter ::= SEQUENCE { - salt OCTET STRING (SIZE(8)), - iterationCount INTEGER } - */ - if (ord($this->_string_shift($temp)) != self::ASN1_SEQUENCE) { - return false; - } - if ($this->_decodeLength($temp) != strlen($temp)) { - return false; - } - $this->_string_shift($temp); // assume it's an octet string - $salt = $this->_string_shift($temp, $this->_decodeLength($temp)); - if (ord($this->_string_shift($temp)) != self::ASN1_INTEGER) { - return false; - } - $this->_decodeLength($temp); - list(, $iterationCount) = unpack('N', str_pad($temp, 4, chr(0), STR_PAD_LEFT)); - $this->_string_shift($key); // assume it's an octet string - $length = $this->_decodeLength($key); - if (strlen($key) != $length) { - return false; - } - - $crypto = new DES(); - $crypto->setPassword($this->password, 'pbkdf1', 'md5', $salt, $iterationCount); - $key = $crypto->decrypt($key); - if ($key === false) { - return false; - } - return $this->_parseKey($key, self::PRIVATE_FORMAT_PKCS1); - default: - return false; - } - /* intended for keys for which OpenSSL's asn1parse returns the following: - - 0:d=0 hl=4 l= 290 cons: SEQUENCE - 4:d=1 hl=2 l= 13 cons: SEQUENCE - 6:d=2 hl=2 l= 9 prim: OBJECT :rsaEncryption - 17:d=2 hl=2 l= 0 prim: NULL - 19:d=1 hl=4 l= 271 prim: BIT STRING */ - $tag = ord($this->_string_shift($key)); // skip over the BIT STRING / OCTET STRING tag - $this->_decodeLength($key); // skip over the BIT STRING / OCTET STRING length - // "The initial octet shall encode, as an unsigned binary integer wtih bit 1 as the least significant bit, the number of - // unused bits in the final subsequent octet. The number shall be in the range zero to seven." - // -- http://www.itu.int/ITU-T/studygroups/com17/languages/X.690-0207.pdf (section 8.6.2.2) - if ($tag == self::ASN1_BITSTRING) { - $this->_string_shift($key); - } - if (ord($this->_string_shift($key)) != self::ASN1_SEQUENCE) { - return false; - } - if ($this->_decodeLength($key) != strlen($key)) { - return false; - } - $tag = ord($this->_string_shift($key)); - } - if ($tag != self::ASN1_INTEGER) { - return false; - } - - $length = $this->_decodeLength($key); - $temp = $this->_string_shift($key, $length); - if (strlen($temp) != 1 || ord($temp) > 2) { - $components['modulus'] = new BigInteger($temp, 256); - $this->_string_shift($key); // skip over self::ASN1_INTEGER - $length = $this->_decodeLength($key); - $components[$type == self::PUBLIC_FORMAT_PKCS1 ? 'publicExponent' : 'privateExponent'] = new BigInteger($this->_string_shift($key, $length), 256); - - return $components; - } - if (ord($this->_string_shift($key)) != self::ASN1_INTEGER) { - return false; - } - $length = $this->_decodeLength($key); - $components['modulus'] = new BigInteger($this->_string_shift($key, $length), 256); - $this->_string_shift($key); - $length = $this->_decodeLength($key); - $components['publicExponent'] = new BigInteger($this->_string_shift($key, $length), 256); - $this->_string_shift($key); - $length = $this->_decodeLength($key); - $components['privateExponent'] = new BigInteger($this->_string_shift($key, $length), 256); - $this->_string_shift($key); - $length = $this->_decodeLength($key); - $components['primes'] = array(1 => new BigInteger($this->_string_shift($key, $length), 256)); - $this->_string_shift($key); - $length = $this->_decodeLength($key); - $components['primes'][] = new BigInteger($this->_string_shift($key, $length), 256); - $this->_string_shift($key); - $length = $this->_decodeLength($key); - $components['exponents'] = array(1 => new BigInteger($this->_string_shift($key, $length), 256)); - $this->_string_shift($key); - $length = $this->_decodeLength($key); - $components['exponents'][] = new BigInteger($this->_string_shift($key, $length), 256); - $this->_string_shift($key); - $length = $this->_decodeLength($key); - $components['coefficients'] = array(2 => new BigInteger($this->_string_shift($key, $length), 256)); - - if (!empty($key)) { - if (ord($this->_string_shift($key)) != self::ASN1_SEQUENCE) { - return false; - } - $this->_decodeLength($key); - while (!empty($key)) { - if (ord($this->_string_shift($key)) != self::ASN1_SEQUENCE) { - return false; - } - $this->_decodeLength($key); - $key = substr($key, 1); - $length = $this->_decodeLength($key); - $components['primes'][] = new BigInteger($this->_string_shift($key, $length), 256); - $this->_string_shift($key); - $length = $this->_decodeLength($key); - $components['exponents'][] = new BigInteger($this->_string_shift($key, $length), 256); - $this->_string_shift($key); - $length = $this->_decodeLength($key); - $components['coefficients'][] = new BigInteger($this->_string_shift($key, $length), 256); - } - } - - return $components; - case self::PUBLIC_FORMAT_OPENSSH: - $parts = explode(' ', $key, 3); - - $key = isset($parts[1]) ? base64_decode($parts[1]) : false; - if ($key === false) { - return false; - } - - $comment = isset($parts[2]) ? $parts[2] : false; - - $cleanup = substr($key, 0, 11) == "\0\0\0\7ssh-rsa"; - - if (strlen($key) <= 4) { - return false; - } - extract(unpack('Nlength', $this->_string_shift($key, 4))); - $publicExponent = new BigInteger($this->_string_shift($key, $length), -256); - if (strlen($key) <= 4) { - return false; - } - extract(unpack('Nlength', $this->_string_shift($key, 4))); - $modulus = new BigInteger($this->_string_shift($key, $length), -256); - - if ($cleanup && strlen($key)) { - if (strlen($key) <= 4) { - return false; - } - extract(unpack('Nlength', $this->_string_shift($key, 4))); - $realModulus = new BigInteger($this->_string_shift($key, $length), -256); - return strlen($key) ? false : array( - 'modulus' => $realModulus, - 'publicExponent' => $modulus, - 'comment' => $comment - ); - } else { - return strlen($key) ? false : array( - 'modulus' => $modulus, - 'publicExponent' => $publicExponent, - 'comment' => $comment - ); - } - // http://www.w3.org/TR/xmldsig-core/#sec-RSAKeyValue - // http://en.wikipedia.org/wiki/XML_Signature - case self::PRIVATE_FORMAT_XML: - case self::PUBLIC_FORMAT_XML: - $this->components = array(); - - $xml = xml_parser_create('UTF-8'); - xml_set_object($xml, $this); - xml_set_element_handler($xml, '_start_element_handler', '_stop_element_handler'); - xml_set_character_data_handler($xml, '_data_handler'); - // add to account for "dangling" tags like ... that are sometimes added - if (!xml_parse($xml, '' . $key . '')) { - xml_parser_free($xml); - unset($xml); - return false; - } - - xml_parser_free($xml); - unset($xml); - - return isset($this->components['modulus']) && isset($this->components['publicExponent']) ? $this->components : false; - // from PuTTY's SSHPUBK.C - case self::PRIVATE_FORMAT_PUTTY: - $components = array(); - $key = preg_split('#\r\n|\r|\n#', $key); - $type = trim(preg_replace('#PuTTY-User-Key-File-2: (.+)#', '$1', $key[0])); - if ($type != 'ssh-rsa') { - return false; - } - $encryption = trim(preg_replace('#Encryption: (.+)#', '$1', $key[1])); - $comment = trim(preg_replace('#Comment: (.+)#', '$1', $key[2])); - - $publicLength = trim(preg_replace('#Public-Lines: (\d+)#', '$1', $key[3])); - $public = base64_decode(implode('', array_map('trim', array_slice($key, 4, $publicLength)))); - $public = substr($public, 11); - extract(unpack('Nlength', $this->_string_shift($public, 4))); - $components['publicExponent'] = new BigInteger($this->_string_shift($public, $length), -256); - extract(unpack('Nlength', $this->_string_shift($public, 4))); - $components['modulus'] = new BigInteger($this->_string_shift($public, $length), -256); - - $privateLength = trim(preg_replace('#Private-Lines: (\d+)#', '$1', $key[$publicLength + 4])); - $private = base64_decode(implode('', array_map('trim', array_slice($key, $publicLength + 5, $privateLength)))); - - switch ($encryption) { - case 'aes256-cbc': - $symkey = ''; - $sequence = 0; - while (strlen($symkey) < 32) { - $temp = pack('Na*', $sequence++, $this->password); - $symkey.= pack('H*', sha1($temp)); - } - $symkey = substr($symkey, 0, 32); - $crypto = new AES(); - } - - if ($encryption != 'none') { - $crypto->setKey($symkey); - $crypto->disablePadding(); - $private = $crypto->decrypt($private); - if ($private === false) { - return false; - } - } - - extract(unpack('Nlength', $this->_string_shift($private, 4))); - if (strlen($private) < $length) { - return false; - } - $components['privateExponent'] = new BigInteger($this->_string_shift($private, $length), -256); - extract(unpack('Nlength', $this->_string_shift($private, 4))); - if (strlen($private) < $length) { - return false; - } - $components['primes'] = array(1 => new BigInteger($this->_string_shift($private, $length), -256)); - extract(unpack('Nlength', $this->_string_shift($private, 4))); - if (strlen($private) < $length) { - return false; - } - $components['primes'][] = new BigInteger($this->_string_shift($private, $length), -256); - - $temp = $components['primes'][1]->subtract($this->one); - $components['exponents'] = array(1 => $components['publicExponent']->modInverse($temp)); - $temp = $components['primes'][2]->subtract($this->one); - $components['exponents'][] = $components['publicExponent']->modInverse($temp); - - extract(unpack('Nlength', $this->_string_shift($private, 4))); - if (strlen($private) < $length) { - return false; - } - $components['coefficients'] = array(2 => new BigInteger($this->_string_shift($private, $length), -256)); - - return $components; - case self::PRIVATE_FORMAT_OPENSSH: - $components = array(); - $decoded = $this->_extractBER($key); - $magic = $this->_string_shift($decoded, 15); - if ($magic !== "openssh-key-v1\0") { - return false; - } - $options = $this->_string_shift($decoded, 24); - // \0\0\0\4none = ciphername - // \0\0\0\4none = kdfname - // \0\0\0\0 = kdfoptions - // \0\0\0\1 = numkeys - if ($options != "\0\0\0\4none\0\0\0\4none\0\0\0\0\0\0\0\1") { - return false; - } - extract(unpack('Nlength', $this->_string_shift($decoded, 4))); - if (strlen($decoded) < $length) { - return false; - } - $publicKey = $this->_string_shift($decoded, $length); - extract(unpack('Nlength', $this->_string_shift($decoded, 4))); - if (strlen($decoded) < $length) { - return false; - } - $paddedKey = $this->_string_shift($decoded, $length); - - if ($this->_string_shift($publicKey, 11) !== "\0\0\0\7ssh-rsa") { - return false; - } - - $checkint1 = $this->_string_shift($paddedKey, 4); - $checkint2 = $this->_string_shift($paddedKey, 4); - if (strlen($checkint1) != 4 || $checkint1 !== $checkint2) { - return false; - } - - if ($this->_string_shift($paddedKey, 11) !== "\0\0\0\7ssh-rsa") { - return false; - } - - $values = array( - &$components['modulus'], - &$components['publicExponent'], - &$components['privateExponent'], - &$components['coefficients'][2], - &$components['primes'][1], - &$components['primes'][2] - ); - - foreach ($values as &$value) { - extract(unpack('Nlength', $this->_string_shift($paddedKey, 4))); - if (strlen($paddedKey) < $length) { - return false; - } - $value = new BigInteger($this->_string_shift($paddedKey, $length), -256); - } - - extract(unpack('Nlength', $this->_string_shift($paddedKey, 4))); - if (strlen($paddedKey) < $length) { - return false; - } - $components['comment'] = $this->_string_shift($decoded, $length); - - $temp = $components['primes'][1]->subtract($this->one); - $components['exponents'] = array(1 => $components['publicExponent']->modInverse($temp)); - $temp = $components['primes'][2]->subtract($this->one); - $components['exponents'][] = $components['publicExponent']->modInverse($temp); - - return $components; - } - } - - /** - * Returns the key size - * - * More specifically, this returns the size of the modulo in bits. - * - * @access public - * @return int - */ - function getSize() - { - return !isset($this->modulus) ? 0 : strlen($this->modulus->toBits()); - } - - /** - * Start Element Handler - * - * Called by xml_set_element_handler() - * - * @access private - * @param resource $parser - * @param string $name - * @param array $attribs - */ - function _start_element_handler($parser, $name, $attribs) - { - //$name = strtoupper($name); - switch ($name) { - case 'MODULUS': - $this->current = &$this->components['modulus']; - break; - case 'EXPONENT': - $this->current = &$this->components['publicExponent']; - break; - case 'P': - $this->current = &$this->components['primes'][1]; - break; - case 'Q': - $this->current = &$this->components['primes'][2]; - break; - case 'DP': - $this->current = &$this->components['exponents'][1]; - break; - case 'DQ': - $this->current = &$this->components['exponents'][2]; - break; - case 'INVERSEQ': - $this->current = &$this->components['coefficients'][2]; - break; - case 'D': - $this->current = &$this->components['privateExponent']; - } - $this->current = ''; - } - - /** - * Stop Element Handler - * - * Called by xml_set_element_handler() - * - * @access private - * @param resource $parser - * @param string $name - */ - function _stop_element_handler($parser, $name) - { - if (isset($this->current)) { - $this->current = new BigInteger(base64_decode($this->current), 256); - unset($this->current); - } - } - - /** - * Data Handler - * - * Called by xml_set_character_data_handler() - * - * @access private - * @param resource $parser - * @param string $data - */ - function _data_handler($parser, $data) - { - if (!isset($this->current) || is_object($this->current)) { - return; - } - $this->current.= trim($data); - } - - /** - * Loads a public or private key - * - * Returns true on success and false on failure (ie. an incorrect password was provided or the key was malformed) - * - * @access public - * @param string|RSA|array $key - * @param bool|int $type optional - * @return bool - */ - function loadKey($key, $type = false) - { - if ($key instanceof RSA) { - $this->privateKeyFormat = $key->privateKeyFormat; - $this->publicKeyFormat = $key->publicKeyFormat; - $this->k = $key->k; - $this->hLen = $key->hLen; - $this->sLen = $key->sLen; - $this->mgfHLen = $key->mgfHLen; - $this->encryptionMode = $key->encryptionMode; - $this->signatureMode = $key->signatureMode; - $this->password = $key->password; - $this->configFile = $key->configFile; - $this->comment = $key->comment; - - if (is_object($key->hash)) { - $this->hash = new Hash($key->hash->getHash()); - } - if (is_object($key->mgfHash)) { - $this->mgfHash = new Hash($key->mgfHash->getHash()); - } - - if (is_object($key->modulus)) { - $this->modulus = $key->modulus->copy(); - } - if (is_object($key->exponent)) { - $this->exponent = $key->exponent->copy(); - } - if (is_object($key->publicExponent)) { - $this->publicExponent = $key->publicExponent->copy(); - } - - $this->primes = array(); - $this->exponents = array(); - $this->coefficients = array(); - - foreach ($this->primes as $prime) { - $this->primes[] = $prime->copy(); - } - foreach ($this->exponents as $exponent) { - $this->exponents[] = $exponent->copy(); - } - foreach ($this->coefficients as $coefficient) { - $this->coefficients[] = $coefficient->copy(); - } - - return true; - } - - if ($type === false) { - $types = array( - self::PUBLIC_FORMAT_RAW, - self::PRIVATE_FORMAT_PKCS1, - self::PRIVATE_FORMAT_XML, - self::PRIVATE_FORMAT_PUTTY, - self::PUBLIC_FORMAT_OPENSSH, - self::PRIVATE_FORMAT_OPENSSH - ); - foreach ($types as $type) { - $components = $this->_parseKey($key, $type); - if ($components !== false) { - break; - } - } - } else { - $components = $this->_parseKey($key, $type); - } - - if ($components === false) { - $this->comment = null; - $this->modulus = null; - $this->k = null; - $this->exponent = null; - $this->primes = null; - $this->exponents = null; - $this->coefficients = null; - $this->publicExponent = null; - - return false; - } - - if (isset($components['comment']) && $components['comment'] !== false) { - $this->comment = $components['comment']; - } - $this->modulus = $components['modulus']; - $this->k = strlen($this->modulus->toBytes()); - $this->exponent = isset($components['privateExponent']) ? $components['privateExponent'] : $components['publicExponent']; - if (isset($components['primes'])) { - $this->primes = $components['primes']; - $this->exponents = $components['exponents']; - $this->coefficients = $components['coefficients']; - $this->publicExponent = $components['publicExponent']; - } else { - $this->primes = array(); - $this->exponents = array(); - $this->coefficients = array(); - $this->publicExponent = false; - } - - switch ($type) { - case self::PUBLIC_FORMAT_OPENSSH: - case self::PUBLIC_FORMAT_RAW: - $this->setPublicKey(); - break; - case self::PRIVATE_FORMAT_PKCS1: - switch (true) { - case strpos($key, '-BEGIN PUBLIC KEY-') !== false: - case strpos($key, '-BEGIN RSA PUBLIC KEY-') !== false: - $this->setPublicKey(); - } - } - - return true; - } - - /** - * Sets the password - * - * Private keys can be encrypted with a password. To unset the password, pass in the empty string or false. - * Or rather, pass in $password such that empty($password) && !is_string($password) is true. - * - * @see self::createKey() - * @see self::loadKey() - * @access public - * @param string $password - */ - function setPassword($password = false) - { - $this->password = $password; - } - - /** - * Defines the public key - * - * Some private key formats define the public exponent and some don't. Those that don't define it are problematic when - * used in certain contexts. For example, in SSH-2, RSA authentication works by sending the public key along with a - * message signed by the private key to the server. The SSH-2 server looks the public key up in an index of public keys - * and if it's present then proceeds to verify the signature. Problem is, if your private key doesn't include the public - * exponent this won't work unless you manually add the public exponent. phpseclib tries to guess if the key being used - * is the public key but in the event that it guesses incorrectly you might still want to explicitly set the key as being - * public. - * - * Do note that when a new key is loaded the index will be cleared. - * - * Returns true on success, false on failure - * - * @see self::getPublicKey() - * @access public - * @param string $key optional - * @param int $type optional - * @return bool - */ - function setPublicKey($key = false, $type = false) - { - // if a public key has already been loaded return false - if (!empty($this->publicExponent)) { - return false; - } - - if ($key === false && !empty($this->modulus)) { - $this->publicExponent = $this->exponent; - return true; - } - - if ($type === false) { - $types = array( - self::PUBLIC_FORMAT_RAW, - self::PUBLIC_FORMAT_PKCS1, - self::PUBLIC_FORMAT_XML, - self::PUBLIC_FORMAT_OPENSSH - ); - foreach ($types as $type) { - $components = $this->_parseKey($key, $type); - if ($components !== false) { - break; - } - } - } else { - $components = $this->_parseKey($key, $type); - } - - if ($components === false) { - return false; - } - - if (empty($this->modulus) || !$this->modulus->equals($components['modulus'])) { - $this->modulus = $components['modulus']; - $this->exponent = $this->publicExponent = $components['publicExponent']; - return true; - } - - $this->publicExponent = $components['publicExponent']; - - return true; - } - - /** - * Defines the private key - * - * If phpseclib guessed a private key was a public key and loaded it as such it might be desirable to force - * phpseclib to treat the key as a private key. This function will do that. - * - * Do note that when a new key is loaded the index will be cleared. - * - * Returns true on success, false on failure - * - * @see self::getPublicKey() - * @access public - * @param string $key optional - * @param int $type optional - * @return bool - */ - function setPrivateKey($key = false, $type = false) - { - if ($key === false && !empty($this->publicExponent)) { - $this->publicExponent = false; - return true; - } - - $rsa = new RSA(); - if (!$rsa->loadKey($key, $type)) { - return false; - } - $rsa->publicExponent = false; - - // don't overwrite the old key if the new key is invalid - $this->loadKey($rsa); - return true; - } - - /** - * Returns the public key - * - * The public key is only returned under two circumstances - if the private key had the public key embedded within it - * or if the public key was set via setPublicKey(). If the currently loaded key is supposed to be the public key this - * function won't return it since this library, for the most part, doesn't distinguish between public and private keys. - * - * @see self::getPublicKey() - * @access public - * @param string $key - * @param int $type optional - */ - function getPublicKey($type = self::PUBLIC_FORMAT_PKCS8) - { - if (empty($this->modulus) || empty($this->publicExponent)) { - return false; - } - - $oldFormat = $this->publicKeyFormat; - $this->publicKeyFormat = $type; - $temp = $this->_convertPublicKey($this->modulus, $this->publicExponent); - $this->publicKeyFormat = $oldFormat; - return $temp; - } - - /** - * Returns the public key's fingerprint - * - * The public key's fingerprint is returned, which is equivalent to running `ssh-keygen -lf rsa.pub`. If there is - * no public key currently loaded, false is returned. - * Example output (md5): "c1:b1:30:29:d7:b8:de:6c:97:77:10:d7:46:41:63:87" (as specified by RFC 4716) - * - * @access public - * @param string $algorithm The hashing algorithm to be used. Valid options are 'md5' and 'sha256'. False is returned - * for invalid values. - * @return mixed - */ - function getPublicKeyFingerprint($algorithm = 'md5') - { - if (empty($this->modulus) || empty($this->publicExponent)) { - return false; - } - - $modulus = $this->modulus->toBytes(true); - $publicExponent = $this->publicExponent->toBytes(true); - - $RSAPublicKey = pack('Na*Na*Na*', strlen('ssh-rsa'), 'ssh-rsa', strlen($publicExponent), $publicExponent, strlen($modulus), $modulus); - - switch ($algorithm) { - case 'sha256': - $hash = new Hash('sha256'); - $base = base64_encode($hash->hash($RSAPublicKey)); - return substr($base, 0, strlen($base) - 1); - case 'md5': - return substr(chunk_split(md5($RSAPublicKey), 2, ':'), 0, -1); - default: - return false; - } - } - - /** - * Returns the private key - * - * The private key is only returned if the currently loaded key contains the constituent prime numbers. - * - * @see self::getPublicKey() - * @access public - * @param string $key - * @param int $type optional - * @return mixed - */ - function getPrivateKey($type = self::PUBLIC_FORMAT_PKCS1) - { - if (empty($this->primes)) { - return false; - } - - $oldFormat = $this->privateKeyFormat; - $this->privateKeyFormat = $type; - $temp = $this->_convertPrivateKey($this->modulus, $this->publicExponent, $this->exponent, $this->primes, $this->exponents, $this->coefficients); - $this->privateKeyFormat = $oldFormat; - return $temp; - } - - /** - * Returns a minimalistic private key - * - * Returns the private key without the prime number constituants. Structurally identical to a public key that - * hasn't been set as the public key - * - * @see self::getPrivateKey() - * @access private - * @param string $key - * @param int $type optional - */ - function _getPrivatePublicKey($mode = self::PUBLIC_FORMAT_PKCS8) - { - if (empty($this->modulus) || empty($this->exponent)) { - return false; - } - - $oldFormat = $this->publicKeyFormat; - $this->publicKeyFormat = $mode; - $temp = $this->_convertPublicKey($this->modulus, $this->exponent); - $this->publicKeyFormat = $oldFormat; - return $temp; - } - - /** - * __toString() magic method - * - * @access public - * @return string - */ - function __toString() - { - $key = $this->getPrivateKey($this->privateKeyFormat); - if ($key !== false) { - return $key; - } - $key = $this->_getPrivatePublicKey($this->publicKeyFormat); - return $key !== false ? $key : ''; - } - - /** - * __clone() magic method - * - * @access public - * @return Crypt_RSA - */ - function __clone() - { - $key = new RSA(); - $key->loadKey($this); - return $key; - } - - /** - * Generates the smallest and largest numbers requiring $bits bits - * - * @access private - * @param int $bits - * @return array - */ - function _generateMinMax($bits) - { - $bytes = $bits >> 3; - $min = str_repeat(chr(0), $bytes); - $max = str_repeat(chr(0xFF), $bytes); - $msb = $bits & 7; - if ($msb) { - $min = chr(1 << ($msb - 1)) . $min; - $max = chr((1 << $msb) - 1) . $max; - } else { - $min[0] = chr(0x80); - } - - return array( - 'min' => new BigInteger($min, 256), - 'max' => new BigInteger($max, 256) - ); - } - - /** - * DER-decode the length - * - * DER supports lengths up to (2**8)**127, however, we'll only support lengths up to (2**8)**4. See - * {@link http://itu.int/ITU-T/studygroups/com17/languages/X.690-0207.pdf#p=13 X.690 paragraph 8.1.3} for more information. - * - * @access private - * @param string $string - * @return int - */ - function _decodeLength(&$string) - { - $length = ord($this->_string_shift($string)); - if ($length & 0x80) { // definite length, long form - $length&= 0x7F; - $temp = $this->_string_shift($string, $length); - list(, $length) = unpack('N', substr(str_pad($temp, 4, chr(0), STR_PAD_LEFT), -4)); - } - return $length; - } - - /** - * DER-encode the length - * - * DER supports lengths up to (2**8)**127, however, we'll only support lengths up to (2**8)**4. See - * {@link http://itu.int/ITU-T/studygroups/com17/languages/X.690-0207.pdf#p=13 X.690 paragraph 8.1.3} for more information. - * - * @access private - * @param int $length - * @return string - */ - function _encodeLength($length) - { - if ($length <= 0x7F) { - return chr($length); - } - - $temp = ltrim(pack('N', $length), chr(0)); - return pack('Ca*', 0x80 | strlen($temp), $temp); - } - - /** - * String Shift - * - * Inspired by array_shift - * - * @param string $string - * @param int $index - * @return string - * @access private - */ - function _string_shift(&$string, $index = 1) - { - $substr = substr($string, 0, $index); - $string = substr($string, $index); - return $substr; - } - - /** - * Determines the private key format - * - * @see self::createKey() - * @access public - * @param int $format - */ - function setPrivateKeyFormat($format) - { - $this->privateKeyFormat = $format; - } - - /** - * Determines the public key format - * - * @see self::createKey() - * @access public - * @param int $format - */ - function setPublicKeyFormat($format) - { - $this->publicKeyFormat = $format; - } - - /** - * Determines which hashing function should be used - * - * Used with signature production / verification and (if the encryption mode is self::ENCRYPTION_OAEP) encryption and - * decryption. If $hash isn't supported, sha1 is used. - * - * @access public - * @param string $hash - */ - function setHash($hash) - { - // \phpseclib\Crypt\Hash supports algorithms that PKCS#1 doesn't support. md5-96 and sha1-96, for example. - switch ($hash) { - case 'md2': - case 'md5': - case 'sha1': - case 'sha256': - case 'sha384': - case 'sha512': - $this->hash = new Hash($hash); - $this->hashName = $hash; - break; - default: - $this->hash = new Hash('sha1'); - $this->hashName = 'sha1'; - } - $this->hLen = $this->hash->getLength(); - } - - /** - * Determines which hashing function should be used for the mask generation function - * - * The mask generation function is used by self::ENCRYPTION_OAEP and self::SIGNATURE_PSS and although it's - * best if Hash and MGFHash are set to the same thing this is not a requirement. - * - * @access public - * @param string $hash - */ - function setMGFHash($hash) - { - // \phpseclib\Crypt\Hash supports algorithms that PKCS#1 doesn't support. md5-96 and sha1-96, for example. - switch ($hash) { - case 'md2': - case 'md5': - case 'sha1': - case 'sha256': - case 'sha384': - case 'sha512': - $this->mgfHash = new Hash($hash); - break; - default: - $this->mgfHash = new Hash('sha1'); - } - $this->mgfHLen = $this->mgfHash->getLength(); - } - - /** - * Determines the salt length - * - * To quote from {@link http://tools.ietf.org/html/rfc3447#page-38 RFC3447#page-38}: - * - * Typical salt lengths in octets are hLen (the length of the output - * of the hash function Hash) and 0. - * - * @access public - * @param int $format - */ - function setSaltLength($sLen) - { - $this->sLen = $sLen; - } - - /** - * Integer-to-Octet-String primitive - * - * See {@link http://tools.ietf.org/html/rfc3447#section-4.1 RFC3447#section-4.1}. - * - * @access private - * @param \phpseclib\Math\BigInteger $x - * @param int $xLen - * @return string - */ - function _i2osp($x, $xLen) - { - $x = $x->toBytes(); - if (strlen($x) > $xLen) { - user_error('Integer too large'); - return false; - } - return str_pad($x, $xLen, chr(0), STR_PAD_LEFT); - } - - /** - * Octet-String-to-Integer primitive - * - * See {@link http://tools.ietf.org/html/rfc3447#section-4.2 RFC3447#section-4.2}. - * - * @access private - * @param string $x - * @return \phpseclib\Math\BigInteger - */ - function _os2ip($x) - { - return new BigInteger($x, 256); - } - - /** - * Exponentiate with or without Chinese Remainder Theorem - * - * See {@link http://tools.ietf.org/html/rfc3447#section-5.1.1 RFC3447#section-5.1.2}. - * - * @access private - * @param \phpseclib\Math\BigInteger $x - * @return \phpseclib\Math\BigInteger - */ - function _exponentiate($x) - { - switch (true) { - case empty($this->primes): - case $this->primes[1]->equals($this->zero): - case empty($this->coefficients): - case $this->coefficients[2]->equals($this->zero): - case empty($this->exponents): - case $this->exponents[1]->equals($this->zero): - return $x->modPow($this->exponent, $this->modulus); - } - - $num_primes = count($this->primes); - - if (defined('CRYPT_RSA_DISABLE_BLINDING')) { - $m_i = array( - 1 => $x->modPow($this->exponents[1], $this->primes[1]), - 2 => $x->modPow($this->exponents[2], $this->primes[2]) - ); - $h = $m_i[1]->subtract($m_i[2]); - $h = $h->multiply($this->coefficients[2]); - list(, $h) = $h->divide($this->primes[1]); - $m = $m_i[2]->add($h->multiply($this->primes[2])); - - $r = $this->primes[1]; - for ($i = 3; $i <= $num_primes; $i++) { - $m_i = $x->modPow($this->exponents[$i], $this->primes[$i]); - - $r = $r->multiply($this->primes[$i - 1]); - - $h = $m_i->subtract($m); - $h = $h->multiply($this->coefficients[$i]); - list(, $h) = $h->divide($this->primes[$i]); - - $m = $m->add($r->multiply($h)); - } - } else { - $smallest = $this->primes[1]; - for ($i = 2; $i <= $num_primes; $i++) { - if ($smallest->compare($this->primes[$i]) > 0) { - $smallest = $this->primes[$i]; - } - } - - $one = new BigInteger(1); - - $r = $one->random($one, $smallest->subtract($one)); - - $m_i = array( - 1 => $this->_blind($x, $r, 1), - 2 => $this->_blind($x, $r, 2) - ); - $h = $m_i[1]->subtract($m_i[2]); - $h = $h->multiply($this->coefficients[2]); - list(, $h) = $h->divide($this->primes[1]); - $m = $m_i[2]->add($h->multiply($this->primes[2])); - - $r = $this->primes[1]; - for ($i = 3; $i <= $num_primes; $i++) { - $m_i = $this->_blind($x, $r, $i); - - $r = $r->multiply($this->primes[$i - 1]); - - $h = $m_i->subtract($m); - $h = $h->multiply($this->coefficients[$i]); - list(, $h) = $h->divide($this->primes[$i]); - - $m = $m->add($r->multiply($h)); - } - } - - return $m; - } - - /** - * Performs RSA Blinding - * - * Protects against timing attacks by employing RSA Blinding. - * Returns $x->modPow($this->exponents[$i], $this->primes[$i]) - * - * @access private - * @param \phpseclib\Math\BigInteger $x - * @param \phpseclib\Math\BigInteger $r - * @param int $i - * @return \phpseclib\Math\BigInteger - */ - function _blind($x, $r, $i) - { - $x = $x->multiply($r->modPow($this->publicExponent, $this->primes[$i])); - $x = $x->modPow($this->exponents[$i], $this->primes[$i]); - - $r = $r->modInverse($this->primes[$i]); - $x = $x->multiply($r); - list(, $x) = $x->divide($this->primes[$i]); - - return $x; - } - - /** - * Performs blinded RSA equality testing - * - * Protects against a particular type of timing attack described. - * - * See {@link http://codahale.com/a-lesson-in-timing-attacks/ A Lesson In Timing Attacks (or, Don't use MessageDigest.isEquals)} - * - * Thanks for the heads up singpolyma! - * - * @access private - * @param string $x - * @param string $y - * @return bool - */ - function _equals($x, $y) - { - if (function_exists('hash_equals')) { - return hash_equals($x, $y); - } - - if (strlen($x) != strlen($y)) { - return false; - } - - $result = "\0"; - $x^= $y; - for ($i = 0; $i < strlen($x); $i++) { - $result|= $x[$i]; - } - - return $result === "\0"; - } - - /** - * RSAEP - * - * See {@link http://tools.ietf.org/html/rfc3447#section-5.1.1 RFC3447#section-5.1.1}. - * - * @access private - * @param \phpseclib\Math\BigInteger $m - * @return \phpseclib\Math\BigInteger - */ - function _rsaep($m) - { - if ($m->compare($this->zero) < 0 || $m->compare($this->modulus) > 0) { - user_error('Message representative out of range'); - return false; - } - return $this->_exponentiate($m); - } - - /** - * RSADP - * - * See {@link http://tools.ietf.org/html/rfc3447#section-5.1.2 RFC3447#section-5.1.2}. - * - * @access private - * @param \phpseclib\Math\BigInteger $c - * @return \phpseclib\Math\BigInteger - */ - function _rsadp($c) - { - if ($c->compare($this->zero) < 0 || $c->compare($this->modulus) > 0) { - user_error('Ciphertext representative out of range'); - return false; - } - return $this->_exponentiate($c); - } - - /** - * RSASP1 - * - * See {@link http://tools.ietf.org/html/rfc3447#section-5.2.1 RFC3447#section-5.2.1}. - * - * @access private - * @param \phpseclib\Math\BigInteger $m - * @return \phpseclib\Math\BigInteger - */ - function _rsasp1($m) - { - if ($m->compare($this->zero) < 0 || $m->compare($this->modulus) > 0) { - user_error('Message representative out of range'); - return false; - } - return $this->_exponentiate($m); - } - - /** - * RSAVP1 - * - * See {@link http://tools.ietf.org/html/rfc3447#section-5.2.2 RFC3447#section-5.2.2}. - * - * @access private - * @param \phpseclib\Math\BigInteger $s - * @return \phpseclib\Math\BigInteger - */ - function _rsavp1($s) - { - if ($s->compare($this->zero) < 0 || $s->compare($this->modulus) > 0) { - user_error('Signature representative out of range'); - return false; - } - return $this->_exponentiate($s); - } - - /** - * MGF1 - * - * See {@link http://tools.ietf.org/html/rfc3447#appendix-B.2.1 RFC3447#appendix-B.2.1}. - * - * @access private - * @param string $mgfSeed - * @param int $mgfLen - * @return string - */ - function _mgf1($mgfSeed, $maskLen) - { - // if $maskLen would yield strings larger than 4GB, PKCS#1 suggests a "Mask too long" error be output. - - $t = ''; - $count = ceil($maskLen / $this->mgfHLen); - for ($i = 0; $i < $count; $i++) { - $c = pack('N', $i); - $t.= $this->mgfHash->hash($mgfSeed . $c); - } - - return substr($t, 0, $maskLen); - } - - /** - * RSAES-OAEP-ENCRYPT - * - * See {@link http://tools.ietf.org/html/rfc3447#section-7.1.1 RFC3447#section-7.1.1} and - * {http://en.wikipedia.org/wiki/Optimal_Asymmetric_Encryption_Padding OAES}. - * - * @access private - * @param string $m - * @param string $l - * @return string - */ - function _rsaes_oaep_encrypt($m, $l = '') - { - $mLen = strlen($m); - - // Length checking - - // if $l is larger than two million terrabytes and you're using sha1, PKCS#1 suggests a "Label too long" error - // be output. - - if ($mLen > $this->k - 2 * $this->hLen - 2) { - user_error('Message too long'); - return false; - } - - // EME-OAEP encoding - - $lHash = $this->hash->hash($l); - $ps = str_repeat(chr(0), $this->k - $mLen - 2 * $this->hLen - 2); - $db = $lHash . $ps . chr(1) . $m; - $seed = Random::string($this->hLen); - $dbMask = $this->_mgf1($seed, $this->k - $this->hLen - 1); - $maskedDB = $db ^ $dbMask; - $seedMask = $this->_mgf1($maskedDB, $this->hLen); - $maskedSeed = $seed ^ $seedMask; - $em = chr(0) . $maskedSeed . $maskedDB; - - // RSA encryption - - $m = $this->_os2ip($em); - $c = $this->_rsaep($m); - $c = $this->_i2osp($c, $this->k); - - // Output the ciphertext C - - return $c; - } - - /** - * RSAES-OAEP-DECRYPT - * - * See {@link http://tools.ietf.org/html/rfc3447#section-7.1.2 RFC3447#section-7.1.2}. The fact that the error - * messages aren't distinguishable from one another hinders debugging, but, to quote from RFC3447#section-7.1.2: - * - * Note. Care must be taken to ensure that an opponent cannot - * distinguish the different error conditions in Step 3.g, whether by - * error message or timing, or, more generally, learn partial - * information about the encoded message EM. Otherwise an opponent may - * be able to obtain useful information about the decryption of the - * ciphertext C, leading to a chosen-ciphertext attack such as the one - * observed by Manger [36]. - * - * As for $l... to quote from {@link http://tools.ietf.org/html/rfc3447#page-17 RFC3447#page-17}: - * - * Both the encryption and the decryption operations of RSAES-OAEP take - * the value of a label L as input. In this version of PKCS #1, L is - * the empty string; other uses of the label are outside the scope of - * this document. - * - * @access private - * @param string $c - * @param string $l - * @return string - */ - function _rsaes_oaep_decrypt($c, $l = '') - { - // Length checking - - // if $l is larger than two million terrabytes and you're using sha1, PKCS#1 suggests a "Label too long" error - // be output. - - if (strlen($c) != $this->k || $this->k < 2 * $this->hLen + 2) { - user_error('Decryption error'); - return false; - } - - // RSA decryption - - $c = $this->_os2ip($c); - $m = $this->_rsadp($c); - if ($m === false) { - user_error('Decryption error'); - return false; - } - $em = $this->_i2osp($m, $this->k); - - // EME-OAEP decoding - - $lHash = $this->hash->hash($l); - $y = ord($em[0]); - $maskedSeed = substr($em, 1, $this->hLen); - $maskedDB = substr($em, $this->hLen + 1); - $seedMask = $this->_mgf1($maskedDB, $this->hLen); - $seed = $maskedSeed ^ $seedMask; - $dbMask = $this->_mgf1($seed, $this->k - $this->hLen - 1); - $db = $maskedDB ^ $dbMask; - $lHash2 = substr($db, 0, $this->hLen); - $m = substr($db, $this->hLen); - $hashesMatch = $this->_equals($lHash, $lHash2); - $leadingZeros = 1; - $patternMatch = 0; - $offset = 0; - for ($i = 0; $i < strlen($m); $i++) { - $patternMatch|= $leadingZeros & ($m[$i] === "\1"); - $leadingZeros&= $m[$i] === "\0"; - $offset+= $patternMatch ? 0 : 1; - } - - // we do & instead of && to avoid https://en.wikipedia.org/wiki/Short-circuit_evaluation - // to protect against timing attacks - if (!$hashesMatch & !$patternMatch) { - user_error('Decryption error'); - return false; - } - - // Output the message M - - return substr($m, $offset + 1); - } - - /** - * Raw Encryption / Decryption - * - * Doesn't use padding and is not recommended. - * - * @access private - * @param string $m - * @return string - */ - function _raw_encrypt($m) - { - $temp = $this->_os2ip($m); - $temp = $this->_rsaep($temp); - return $this->_i2osp($temp, $this->k); - } - - /** - * RSAES-PKCS1-V1_5-ENCRYPT - * - * See {@link http://tools.ietf.org/html/rfc3447#section-7.2.1 RFC3447#section-7.2.1}. - * - * @access private - * @param string $m - * @return string - */ - function _rsaes_pkcs1_v1_5_encrypt($m) - { - $mLen = strlen($m); - - // Length checking - - if ($mLen > $this->k - 11) { - user_error('Message too long'); - return false; - } - - // EME-PKCS1-v1_5 encoding - - $psLen = $this->k - $mLen - 3; - $ps = ''; - while (strlen($ps) != $psLen) { - $temp = Random::string($psLen - strlen($ps)); - $temp = str_replace("\x00", '', $temp); - $ps.= $temp; - } - $type = 2; - // see the comments of _rsaes_pkcs1_v1_5_decrypt() to understand why this is being done - if (defined('CRYPT_RSA_PKCS15_COMPAT') && (!isset($this->publicExponent) || $this->exponent !== $this->publicExponent)) { - $type = 1; - // "The padding string PS shall consist of k-3-||D|| octets. ... for block type 01, they shall have value FF" - $ps = str_repeat("\xFF", $psLen); - } - $em = chr(0) . chr($type) . $ps . chr(0) . $m; - - // RSA encryption - $m = $this->_os2ip($em); - $c = $this->_rsaep($m); - $c = $this->_i2osp($c, $this->k); - - // Output the ciphertext C - - return $c; - } - - /** - * RSAES-PKCS1-V1_5-DECRYPT - * - * See {@link http://tools.ietf.org/html/rfc3447#section-7.2.2 RFC3447#section-7.2.2}. - * - * For compatibility purposes, this function departs slightly from the description given in RFC3447. - * The reason being that RFC2313#section-8.1 (PKCS#1 v1.5) states that ciphertext's encrypted by the - * private key should have the second byte set to either 0 or 1 and that ciphertext's encrypted by the - * public key should have the second byte set to 2. In RFC3447 (PKCS#1 v2.1), the second byte is supposed - * to be 2 regardless of which key is used. For compatibility purposes, we'll just check to make sure the - * second byte is 2 or less. If it is, we'll accept the decrypted string as valid. - * - * As a consequence of this, a private key encrypted ciphertext produced with \phpseclib\Crypt\RSA may not decrypt - * with a strictly PKCS#1 v1.5 compliant RSA implementation. Public key encrypted ciphertext's should but - * not private key encrypted ciphertext's. - * - * @access private - * @param string $c - * @return string - */ - function _rsaes_pkcs1_v1_5_decrypt($c) - { - // Length checking - - if (strlen($c) != $this->k) { // or if k < 11 - user_error('Decryption error'); - return false; - } - - // RSA decryption - - $c = $this->_os2ip($c); - $m = $this->_rsadp($c); - - if ($m === false) { - user_error('Decryption error'); - return false; - } - $em = $this->_i2osp($m, $this->k); - - // EME-PKCS1-v1_5 decoding - - if (ord($em[0]) != 0 || ord($em[1]) > 2) { - user_error('Decryption error'); - return false; - } - - $ps = substr($em, 2, strpos($em, chr(0), 2) - 2); - $m = substr($em, strlen($ps) + 3); - - if (strlen($ps) < 8) { - user_error('Decryption error'); - return false; - } - - // Output M - - return $m; - } - - /** - * EMSA-PSS-ENCODE - * - * See {@link http://tools.ietf.org/html/rfc3447#section-9.1.1 RFC3447#section-9.1.1}. - * - * @access private - * @param string $m - * @param int $emBits - */ - function _emsa_pss_encode($m, $emBits) - { - // if $m is larger than two million terrabytes and you're using sha1, PKCS#1 suggests a "Label too long" error - // be output. - - $emLen = ($emBits + 1) >> 3; // ie. ceil($emBits / 8) - $sLen = $this->sLen !== null ? $this->sLen : $this->hLen; - - $mHash = $this->hash->hash($m); - if ($emLen < $this->hLen + $sLen + 2) { - user_error('Encoding error'); - return false; - } - - $salt = Random::string($sLen); - $m2 = "\0\0\0\0\0\0\0\0" . $mHash . $salt; - $h = $this->hash->hash($m2); - $ps = str_repeat(chr(0), $emLen - $sLen - $this->hLen - 2); - $db = $ps . chr(1) . $salt; - $dbMask = $this->_mgf1($h, $emLen - $this->hLen - 1); - $maskedDB = $db ^ $dbMask; - $maskedDB[0] = ~chr(0xFF << ($emBits & 7)) & $maskedDB[0]; - $em = $maskedDB . $h . chr(0xBC); - - return $em; - } - - /** - * EMSA-PSS-VERIFY - * - * See {@link http://tools.ietf.org/html/rfc3447#section-9.1.2 RFC3447#section-9.1.2}. - * - * @access private - * @param string $m - * @param string $em - * @param int $emBits - * @return string - */ - function _emsa_pss_verify($m, $em, $emBits) - { - // if $m is larger than two million terrabytes and you're using sha1, PKCS#1 suggests a "Label too long" error - // be output. - - $emLen = ($emBits + 7) >> 3; // ie. ceil($emBits / 8); - $sLen = $this->sLen !== null ? $this->sLen : $this->hLen; - - $mHash = $this->hash->hash($m); - if ($emLen < $this->hLen + $sLen + 2) { - return false; - } - - if ($em[strlen($em) - 1] != chr(0xBC)) { - return false; - } - - $maskedDB = substr($em, 0, -$this->hLen - 1); - $h = substr($em, -$this->hLen - 1, $this->hLen); - $temp = chr(0xFF << ($emBits & 7)); - if ((~$maskedDB[0] & $temp) != $temp) { - return false; - } - $dbMask = $this->_mgf1($h, $emLen - $this->hLen - 1); - $db = $maskedDB ^ $dbMask; - $db[0] = ~chr(0xFF << ($emBits & 7)) & $db[0]; - $temp = $emLen - $this->hLen - $sLen - 2; - if (substr($db, 0, $temp) != str_repeat(chr(0), $temp) || ord($db[$temp]) != 1) { - return false; - } - $salt = substr($db, $temp + 1); // should be $sLen long - $m2 = "\0\0\0\0\0\0\0\0" . $mHash . $salt; - $h2 = $this->hash->hash($m2); - return $this->_equals($h, $h2); - } - - /** - * RSASSA-PSS-SIGN - * - * See {@link http://tools.ietf.org/html/rfc3447#section-8.1.1 RFC3447#section-8.1.1}. - * - * @access private - * @param string $m - * @return string - */ - function _rsassa_pss_sign($m) - { - // EMSA-PSS encoding - - $em = $this->_emsa_pss_encode($m, 8 * $this->k - 1); - - // RSA signature - - $m = $this->_os2ip($em); - $s = $this->_rsasp1($m); - $s = $this->_i2osp($s, $this->k); - - // Output the signature S - - return $s; - } - - /** - * RSASSA-PSS-VERIFY - * - * See {@link http://tools.ietf.org/html/rfc3447#section-8.1.2 RFC3447#section-8.1.2}. - * - * @access private - * @param string $m - * @param string $s - * @return string - */ - function _rsassa_pss_verify($m, $s) - { - // Length checking - - if (strlen($s) != $this->k) { - user_error('Invalid signature'); - return false; - } - - // RSA verification - - $modBits = strlen($this->modulus->toBits()); - - $s2 = $this->_os2ip($s); - $m2 = $this->_rsavp1($s2); - if ($m2 === false) { - user_error('Invalid signature'); - return false; - } - $em = $this->_i2osp($m2, $this->k); - if ($em === false) { - user_error('Invalid signature'); - return false; - } - - // EMSA-PSS verification - - return $this->_emsa_pss_verify($m, $em, $modBits - 1); - } - - /** - * EMSA-PKCS1-V1_5-ENCODE - * - * See {@link http://tools.ietf.org/html/rfc3447#section-9.2 RFC3447#section-9.2}. - * - * @access private - * @param string $m - * @param int $emLen - * @return string - */ - function _emsa_pkcs1_v1_5_encode($m, $emLen) - { - $h = $this->hash->hash($m); - if ($h === false) { - return false; - } - - // see http://tools.ietf.org/html/rfc3447#page-43 - switch ($this->hashName) { - case 'md2': - $t = pack('H*', '3020300c06082a864886f70d020205000410'); - break; - case 'md5': - $t = pack('H*', '3020300c06082a864886f70d020505000410'); - break; - case 'sha1': - $t = pack('H*', '3021300906052b0e03021a05000414'); - break; - case 'sha256': - $t = pack('H*', '3031300d060960864801650304020105000420'); - break; - case 'sha384': - $t = pack('H*', '3041300d060960864801650304020205000430'); - break; - case 'sha512': - $t = pack('H*', '3051300d060960864801650304020305000440'); - } - $t.= $h; - $tLen = strlen($t); - - if ($emLen < $tLen + 11) { - user_error('Intended encoded message length too short'); - return false; - } - - $ps = str_repeat(chr(0xFF), $emLen - $tLen - 3); - - $em = "\0\1$ps\0$t"; - - return $em; - } - - /** - * RSASSA-PKCS1-V1_5-SIGN - * - * See {@link http://tools.ietf.org/html/rfc3447#section-8.2.1 RFC3447#section-8.2.1}. - * - * @access private - * @param string $m - * @return string - */ - function _rsassa_pkcs1_v1_5_sign($m) - { - // EMSA-PKCS1-v1_5 encoding - - $em = $this->_emsa_pkcs1_v1_5_encode($m, $this->k); - if ($em === false) { - user_error('RSA modulus too short'); - return false; - } - - // RSA signature - - $m = $this->_os2ip($em); - $s = $this->_rsasp1($m); - $s = $this->_i2osp($s, $this->k); - - // Output the signature S - - return $s; - } - - /** - * RSASSA-PKCS1-V1_5-VERIFY - * - * See {@link http://tools.ietf.org/html/rfc3447#section-8.2.2 RFC3447#section-8.2.2}. - * - * @access private - * @param string $m - * @return string - */ - function _rsassa_pkcs1_v1_5_verify($m, $s) - { - // Length checking - - if (strlen($s) != $this->k) { - user_error('Invalid signature'); - return false; - } - - // RSA verification - - $s = $this->_os2ip($s); - $m2 = $this->_rsavp1($s); - if ($m2 === false) { - user_error('Invalid signature'); - return false; - } - $em = $this->_i2osp($m2, $this->k); - if ($em === false) { - user_error('Invalid signature'); - return false; - } - - // EMSA-PKCS1-v1_5 encoding - - $em2 = $this->_emsa_pkcs1_v1_5_encode($m, $this->k); - if ($em2 === false) { - user_error('RSA modulus too short'); - return false; - } - - // Compare - return $this->_equals($em, $em2); - } - - /** - * Set Encryption Mode - * - * Valid values include self::ENCRYPTION_OAEP and self::ENCRYPTION_PKCS1. - * - * @access public - * @param int $mode - */ - function setEncryptionMode($mode) - { - $this->encryptionMode = $mode; - } - - /** - * Set Signature Mode - * - * Valid values include self::SIGNATURE_PSS and self::SIGNATURE_PKCS1 - * - * @access public - * @param int $mode - */ - function setSignatureMode($mode) - { - $this->signatureMode = $mode; - } - - /** - * Set public key comment. - * - * @access public - * @param string $comment - */ - function setComment($comment) - { - $this->comment = $comment; - } - - /** - * Get public key comment. - * - * @access public - * @return string - */ - function getComment() - { - return $this->comment; - } - - /** - * Encryption - * - * Both self::ENCRYPTION_OAEP and self::ENCRYPTION_PKCS1 both place limits on how long $plaintext can be. - * If $plaintext exceeds those limits it will be broken up so that it does and the resultant ciphertext's will - * be concatenated together. - * - * @see self::decrypt() - * @access public - * @param string $plaintext - * @return string - */ - function encrypt($plaintext) - { - switch ($this->encryptionMode) { - case self::ENCRYPTION_NONE: - $plaintext = str_split($plaintext, $this->k); - $ciphertext = ''; - foreach ($plaintext as $m) { - $ciphertext.= $this->_raw_encrypt($m); - } - return $ciphertext; - case self::ENCRYPTION_PKCS1: - $length = $this->k - 11; - if ($length <= 0) { - return false; - } - - $plaintext = str_split($plaintext, $length); - $ciphertext = ''; - foreach ($plaintext as $m) { - $ciphertext.= $this->_rsaes_pkcs1_v1_5_encrypt($m); - } - return $ciphertext; - //case self::ENCRYPTION_OAEP: - default: - $length = $this->k - 2 * $this->hLen - 2; - if ($length <= 0) { - return false; - } - - $plaintext = str_split($plaintext, $length); - $ciphertext = ''; - foreach ($plaintext as $m) { - $ciphertext.= $this->_rsaes_oaep_encrypt($m); - } - return $ciphertext; - } - } - - /** - * Decryption - * - * @see self::encrypt() - * @access public - * @param string $plaintext - * @return string - */ - function decrypt($ciphertext) - { - if ($this->k <= 0) { - return false; - } - - $ciphertext = str_split($ciphertext, $this->k); - $ciphertext[count($ciphertext) - 1] = str_pad($ciphertext[count($ciphertext) - 1], $this->k, chr(0), STR_PAD_LEFT); - - $plaintext = ''; - - switch ($this->encryptionMode) { - case self::ENCRYPTION_NONE: - $decrypt = '_raw_encrypt'; - break; - case self::ENCRYPTION_PKCS1: - $decrypt = '_rsaes_pkcs1_v1_5_decrypt'; - break; - //case self::ENCRYPTION_OAEP: - default: - $decrypt = '_rsaes_oaep_decrypt'; - } - - foreach ($ciphertext as $c) { - $temp = $this->$decrypt($c); - if ($temp === false) { - return false; - } - $plaintext.= $temp; - } - - return $plaintext; - } - - /** - * Create a signature - * - * @see self::verify() - * @access public - * @param string $message - * @return string - */ - function sign($message) - { - if (empty($this->modulus) || empty($this->exponent)) { - return false; - } - - switch ($this->signatureMode) { - case self::SIGNATURE_PKCS1: - return $this->_rsassa_pkcs1_v1_5_sign($message); - //case self::SIGNATURE_PSS: - default: - return $this->_rsassa_pss_sign($message); - } - } - - /** - * Verifies a signature - * - * @see self::sign() - * @access public - * @param string $message - * @param string $signature - * @return bool - */ - function verify($message, $signature) - { - if (empty($this->modulus) || empty($this->exponent)) { - return false; - } - - switch ($this->signatureMode) { - case self::SIGNATURE_PKCS1: - return $this->_rsassa_pkcs1_v1_5_verify($message, $signature); - //case self::SIGNATURE_PSS: - default: - return $this->_rsassa_pss_verify($message, $signature); - } - } - - /** - * Extract raw BER from Base64 encoding - * - * @access private - * @param string $str - * @return string - */ - function _extractBER($str) - { - /* X.509 certs are assumed to be base64 encoded but sometimes they'll have additional things in them - * above and beyond the ceritificate. - * ie. some may have the following preceding the -----BEGIN CERTIFICATE----- line: - * - * Bag Attributes - * localKeyID: 01 00 00 00 - * subject=/O=organization/OU=org unit/CN=common name - * issuer=/O=organization/CN=common name - */ - $temp = preg_replace('#.*?^-+[^-]+-+[\r\n ]*$#ms', '', $str, 1); - // remove the -----BEGIN CERTIFICATE----- and -----END CERTIFICATE----- stuff - $temp = preg_replace('#-+[^-]+-+#', '', $temp); - // remove new lines - $temp = str_replace(array("\r", "\n", ' '), '', $temp); - $temp = preg_match('#^[a-zA-Z\d/+]*={0,2}$#', $temp) ? base64_decode($temp) : false; - return $temp != false ? $temp : $str; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/Crypt/Random.php b/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/Crypt/Random.php deleted file mode 100644 index e5c819c7..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/Crypt/Random.php +++ /dev/null @@ -1,277 +0,0 @@ - - * - * - * - * @category Crypt - * @package Random - * @author Jim Wigginton - * @copyright 2007 Jim Wigginton - * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @link http://phpseclib.sourceforge.net - */ - -namespace phpseclib\Crypt; - -/** - * Pure-PHP Random Number Generator - * - * @package Random - * @author Jim Wigginton - * @access public - */ -class Random -{ - /** - * Generate a random string. - * - * Although microoptimizations are generally discouraged as they impair readability this function is ripe with - * microoptimizations because this function has the potential of being called a huge number of times. - * eg. for RSA key generation. - * - * @param int $length - * @return string - */ - static function string($length) - { - if (!$length) { - return ''; - } - - if (version_compare(PHP_VERSION, '7.0.0', '>=')) { - try { - return \random_bytes($length); - } catch (\Throwable $e) { - // If a sufficient source of randomness is unavailable, random_bytes() will throw an - // object that implements the Throwable interface (Exception, TypeError, Error). - // We don't actually need to do anything here. The string() method should just continue - // as normal. Note, however, that if we don't have a sufficient source of randomness for - // random_bytes(), most of the other calls here will fail too, so we'll end up using - // the PHP implementation. - } - } - - if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') { - // method 1. prior to PHP 5.3 this would call rand() on windows hence the function_exists('class_alias') call. - // ie. class_alias is a function that was introduced in PHP 5.3 - if (extension_loaded('mcrypt') && function_exists('class_alias')) { - return @mcrypt_create_iv($length); - } - // method 2. openssl_random_pseudo_bytes was introduced in PHP 5.3.0 but prior to PHP 5.3.4 there was, - // to quote , "possible blocking behavior". as of 5.3.4 - // openssl_random_pseudo_bytes and mcrypt_create_iv do the exact same thing on Windows. ie. they both - // call php_win32_get_random_bytes(): - // - // https://github.com/php/php-src/blob/7014a0eb6d1611151a286c0ff4f2238f92c120d6/ext/openssl/openssl.c#L5008 - // https://github.com/php/php-src/blob/7014a0eb6d1611151a286c0ff4f2238f92c120d6/ext/mcrypt/mcrypt.c#L1392 - // - // php_win32_get_random_bytes() is defined thusly: - // - // https://github.com/php/php-src/blob/7014a0eb6d1611151a286c0ff4f2238f92c120d6/win32/winutil.c#L80 - // - // we're calling it, all the same, in the off chance that the mcrypt extension is not available - if (extension_loaded('openssl') && version_compare(PHP_VERSION, '5.3.4', '>=')) { - return openssl_random_pseudo_bytes($length); - } - } else { - // method 1. the fastest - if (extension_loaded('openssl')) { - return openssl_random_pseudo_bytes($length); - } - // method 2 - static $fp = true; - if ($fp === true) { - // warning's will be output unles the error suppression operator is used. errors such as - // "open_basedir restriction in effect", "Permission denied", "No such file or directory", etc. - $fp = @fopen('/dev/urandom', 'rb'); - } - if ($fp !== true && $fp !== false) { // surprisingly faster than !is_bool() or is_resource() - $temp = fread($fp, $length); - if (strlen($temp) != $length) { - return $temp; - } - } - // method 3. pretty much does the same thing as method 2 per the following url: - // https://github.com/php/php-src/blob/7014a0eb6d1611151a286c0ff4f2238f92c120d6/ext/mcrypt/mcrypt.c#L1391 - // surprisingly slower than method 2. maybe that's because mcrypt_create_iv does a bunch of error checking that we're - // not doing. regardless, this'll only be called if this PHP script couldn't open /dev/urandom due to open_basedir - // restrictions or some such - if (extension_loaded('mcrypt')) { - return @mcrypt_create_iv($length, MCRYPT_DEV_URANDOM); - } - } - // at this point we have no choice but to use a pure-PHP CSPRNG - - // cascade entropy across multiple PHP instances by fixing the session and collecting all - // environmental variables, including the previous session data and the current session - // data. - // - // mt_rand seeds itself by looking at the PID and the time, both of which are (relatively) - // easy to guess at. linux uses mouse clicks, keyboard timings, etc, as entropy sources, but - // PHP isn't low level to be able to use those as sources and on a web server there's not likely - // going to be a ton of keyboard or mouse action. web servers do have one thing that we can use - // however, a ton of people visiting the website. obviously you don't want to base your seeding - // soley on parameters a potential attacker sends but (1) not everything in $_SERVER is controlled - // by the user and (2) this isn't just looking at the data sent by the current user - it's based - // on the data sent by all users. one user requests the page and a hash of their info is saved. - // another user visits the page and the serialization of their data is utilized along with the - // server envirnment stuff and a hash of the previous http request data (which itself utilizes - // a hash of the session data before that). certainly an attacker should be assumed to have - // full control over his own http requests. he, however, is not going to have control over - // everyone's http requests. - static $crypto = false, $v; - if ($crypto === false) { - // save old session data - $old_session_id = session_id(); - $old_use_cookies = ini_get('session.use_cookies'); - $old_session_cache_limiter = session_cache_limiter(); - $_OLD_SESSION = isset($_SESSION) ? $_SESSION : false; - if ($old_session_id != '') { - session_write_close(); - } - - session_id(1); - ini_set('session.use_cookies', 0); - session_cache_limiter(''); - session_start(); - - $v = $seed = $_SESSION['seed'] = pack('H*', sha1( - (isset($_SERVER) ? phpseclib_safe_serialize($_SERVER) : '') . - (isset($_POST) ? phpseclib_safe_serialize($_POST) : '') . - (isset($_GET) ? phpseclib_safe_serialize($_GET) : '') . - (isset($_COOKIE) ? phpseclib_safe_serialize($_COOKIE) : '') . - phpseclib_safe_serialize($GLOBALS) . - phpseclib_safe_serialize($_SESSION) . - phpseclib_safe_serialize($_OLD_SESSION) - )); - if (!isset($_SESSION['count'])) { - $_SESSION['count'] = 0; - } - $_SESSION['count']++; - - session_write_close(); - - // restore old session data - if ($old_session_id != '') { - session_id($old_session_id); - session_start(); - ini_set('session.use_cookies', $old_use_cookies); - session_cache_limiter($old_session_cache_limiter); - } else { - if ($_OLD_SESSION !== false) { - $_SESSION = $_OLD_SESSION; - unset($_OLD_SESSION); - } else { - unset($_SESSION); - } - } - - // in SSH2 a shared secret and an exchange hash are generated through the key exchange process. - // the IV client to server is the hash of that "nonce" with the letter A and for the encryption key it's the letter C. - // if the hash doesn't produce enough a key or an IV that's long enough concat successive hashes of the - // original hash and the current hash. we'll be emulating that. for more info see the following URL: - // - // http://tools.ietf.org/html/rfc4253#section-7.2 - // - // see the is_string($crypto) part for an example of how to expand the keys - $key = pack('H*', sha1($seed . 'A')); - $iv = pack('H*', sha1($seed . 'C')); - - // ciphers are used as per the nist.gov link below. also, see this link: - // - // http://en.wikipedia.org/wiki/Cryptographically_secure_pseudorandom_number_generator#Designs_based_on_cryptographic_primitives - switch (true) { - case class_exists('\phpseclib\Crypt\AES'): - $crypto = new AES(Base::MODE_CTR); - break; - case class_exists('\phpseclib\Crypt\Twofish'): - $crypto = new Twofish(Base::MODE_CTR); - break; - case class_exists('\phpseclib\Crypt\Blowfish'): - $crypto = new Blowfish(Base::MODE_CTR); - break; - case class_exists('\phpseclib\Crypt\TripleDES'): - $crypto = new TripleDES(Base::MODE_CTR); - break; - case class_exists('\phpseclib\Crypt\DES'): - $crypto = new DES(Base::MODE_CTR); - break; - case class_exists('\phpseclib\Crypt\RC4'): - $crypto = new RC4(); - break; - default: - user_error(__CLASS__ . ' requires at least one symmetric cipher be loaded'); - return false; - } - - $crypto->setKey($key); - $crypto->setIV($iv); - $crypto->enableContinuousBuffer(); - } - - //return $crypto->encrypt(str_repeat("\0", $length)); - - // the following is based off of ANSI X9.31: - // - // http://csrc.nist.gov/groups/STM/cavp/documents/rng/931rngext.pdf - // - // OpenSSL uses that same standard for it's random numbers: - // - // http://www.opensource.apple.com/source/OpenSSL/OpenSSL-38/openssl/fips-1.0/rand/fips_rand.c - // (do a search for "ANS X9.31 A.2.4") - $result = ''; - while (strlen($result) < $length) { - $i = $crypto->encrypt(microtime()); // strlen(microtime()) == 21 - $r = $crypto->encrypt($i ^ $v); // strlen($v) == 20 - $v = $crypto->encrypt($r ^ $i); // strlen($r) == 20 - $result.= $r; - } - return substr($result, 0, $length); - } -} - -if (!function_exists('phpseclib_safe_serialize')) { - /** - * Safely serialize variables - * - * If a class has a private __sleep() method it'll give a fatal error on PHP 5.2 and earlier. - * PHP 5.3 will emit a warning. - * - * @param mixed $arr - * @access public - */ - function phpseclib_safe_serialize(&$arr) - { - if (is_object($arr)) { - return ''; - } - if (!is_array($arr)) { - return serialize($arr); - } - // prevent circular array recursion - if (isset($arr['__phpseclib_marker'])) { - return ''; - } - $safearr = array(); - $arr['__phpseclib_marker'] = true; - foreach (array_keys($arr) as $key) { - // do not recurse on the '__phpseclib_marker' key itself, for smaller memory usage - if ($key !== '__phpseclib_marker') { - $safearr[$key] = phpseclib_safe_serialize($arr[$key]); - } - } - unset($arr['__phpseclib_marker']); - return serialize($safearr); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/Crypt/Rijndael.php b/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/Crypt/Rijndael.php deleted file mode 100644 index 3648a197..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/Crypt/Rijndael.php +++ /dev/null @@ -1,936 +0,0 @@ - - * setKey('abcdefghijklmnop'); - * - * $size = 10 * 1024; - * $plaintext = ''; - * for ($i = 0; $i < $size; $i++) { - * $plaintext.= 'a'; - * } - * - * echo $rijndael->decrypt($rijndael->encrypt($plaintext)); - * ?> - * - * - * @category Crypt - * @package Rijndael - * @author Jim Wigginton - * @copyright 2008 Jim Wigginton - * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @link http://phpseclib.sourceforge.net - */ - -namespace phpseclib\Crypt; - -/** - * Pure-PHP implementation of Rijndael. - * - * @package Rijndael - * @author Jim Wigginton - * @access public - */ -class Rijndael extends Base -{ - /** - * The mcrypt specific name of the cipher - * - * Mcrypt is useable for 128/192/256-bit $block_size/$key_length. For 160/224 not. - * \phpseclib\Crypt\Rijndael determines automatically whether mcrypt is useable - * or not for the current $block_size/$key_length. - * In case of, $cipher_name_mcrypt will be set dynamically at run time accordingly. - * - * @see \phpseclib\Crypt\Base::cipher_name_mcrypt - * @see \phpseclib\Crypt\Base::engine - * @see self::isValidEngine() - * @var string - * @access private - */ - var $cipher_name_mcrypt = 'rijndael-128'; - - /** - * The default salt used by setPassword() - * - * @see \phpseclib\Crypt\Base::password_default_salt - * @see \phpseclib\Crypt\Base::setPassword() - * @var string - * @access private - */ - var $password_default_salt = 'phpseclib'; - - /** - * The Key Schedule - * - * @see self::_setup() - * @var array - * @access private - */ - var $w; - - /** - * The Inverse Key Schedule - * - * @see self::_setup() - * @var array - * @access private - */ - var $dw; - - /** - * The Block Length divided by 32 - * - * @see self::setBlockLength() - * @var int - * @access private - * @internal The max value is 256 / 32 = 8, the min value is 128 / 32 = 4. Exists in conjunction with $block_size - * because the encryption / decryption / key schedule creation requires this number and not $block_size. We could - * derive this from $block_size or vice versa, but that'd mean we'd have to do multiple shift operations, so in lieu - * of that, we'll just precompute it once. - */ - var $Nb = 4; - - /** - * The Key Length (in bytes) - * - * @see self::setKeyLength() - * @var int - * @access private - * @internal The max value is 256 / 8 = 32, the min value is 128 / 8 = 16. Exists in conjunction with $Nk - * because the encryption / decryption / key schedule creation requires this number and not $key_length. We could - * derive this from $key_length or vice versa, but that'd mean we'd have to do multiple shift operations, so in lieu - * of that, we'll just precompute it once. - */ - var $key_length = 16; - - /** - * The Key Length divided by 32 - * - * @see self::setKeyLength() - * @var int - * @access private - * @internal The max value is 256 / 32 = 8, the min value is 128 / 32 = 4 - */ - var $Nk = 4; - - /** - * The Number of Rounds - * - * @var int - * @access private - * @internal The max value is 14, the min value is 10. - */ - var $Nr; - - /** - * Shift offsets - * - * @var array - * @access private - */ - var $c; - - /** - * Holds the last used key- and block_size information - * - * @var array - * @access private - */ - var $kl; - - /** - * Sets the key length. - * - * Valid key lengths are 128, 160, 192, 224, and 256. If the length is less than 128, it will be rounded up to - * 128. If the length is greater than 128 and invalid, it will be rounded down to the closest valid amount. - * - * Note: phpseclib extends Rijndael (and AES) for using 160- and 224-bit keys but they are officially not defined - * and the most (if not all) implementations are not able using 160/224-bit keys but round/pad them up to - * 192/256 bits as, for example, mcrypt will do. - * - * That said, if you want be compatible with other Rijndael and AES implementations, - * you should not setKeyLength(160) or setKeyLength(224). - * - * Additional: In case of 160- and 224-bit keys, phpseclib will/can, for that reason, not use - * the mcrypt php extension, even if available. - * This results then in slower encryption. - * - * @access public - * @param int $length - */ - function setKeyLength($length) - { - switch (true) { - case $length <= 128: - $this->key_length = 16; - break; - case $length <= 160: - $this->key_length = 20; - break; - case $length <= 192: - $this->key_length = 24; - break; - case $length <= 224: - $this->key_length = 28; - break; - default: - $this->key_length = 32; - } - - parent::setKeyLength($length); - } - - /** - * Sets the block length - * - * Valid block lengths are 128, 160, 192, 224, and 256. If the length is less than 128, it will be rounded up to - * 128. If the length is greater than 128 and invalid, it will be rounded down to the closest valid amount. - * - * @access public - * @param int $length - */ - function setBlockLength($length) - { - $length >>= 5; - if ($length > 8) { - $length = 8; - } elseif ($length < 4) { - $length = 4; - } - $this->Nb = $length; - $this->block_size = $length << 2; - $this->changed = true; - $this->_setEngine(); - } - - /** - * Test for engine validity - * - * This is mainly just a wrapper to set things up for \phpseclib\Crypt\Base::isValidEngine() - * - * @see \phpseclib\Crypt\Base::__construct() - * @param int $engine - * @access public - * @return bool - */ - function isValidEngine($engine) - { - switch ($engine) { - case self::ENGINE_OPENSSL: - if ($this->block_size != 16) { - return false; - } - $this->cipher_name_openssl_ecb = 'aes-' . ($this->key_length << 3) . '-ecb'; - $this->cipher_name_openssl = 'aes-' . ($this->key_length << 3) . '-' . $this->_openssl_translate_mode(); - break; - case self::ENGINE_MCRYPT: - $this->cipher_name_mcrypt = 'rijndael-' . ($this->block_size << 3); - if ($this->key_length % 8) { // is it a 160/224-bit key? - // mcrypt is not usable for them, only for 128/192/256-bit keys - return false; - } - } - - return parent::isValidEngine($engine); - } - - /** - * Encrypts a block - * - * @access private - * @param string $in - * @return string - */ - function _encryptBlock($in) - { - static $tables; - if (empty($tables)) { - $tables = &$this->_getTables(); - } - $t0 = $tables[0]; - $t1 = $tables[1]; - $t2 = $tables[2]; - $t3 = $tables[3]; - $sbox = $tables[4]; - - $state = array(); - $words = unpack('N*', $in); - - $c = $this->c; - $w = $this->w; - $Nb = $this->Nb; - $Nr = $this->Nr; - - // addRoundKey - $wc = $Nb - 1; - foreach ($words as $word) { - $state[] = $word ^ $w[++$wc]; - } - - // fips-197.pdf#page=19, "Figure 5. Pseudo Code for the Cipher", states that this loop has four components - - // subBytes, shiftRows, mixColumns, and addRoundKey. fips-197.pdf#page=30, "Implementation Suggestions Regarding - // Various Platforms" suggests that performs enhanced implementations are described in Rijndael-ammended.pdf. - // Rijndael-ammended.pdf#page=20, "Implementation aspects / 32-bit processor", discusses such an optimization. - // Unfortunately, the description given there is not quite correct. Per aes.spec.v316.pdf#page=19 [1], - // equation (7.4.7) is supposed to use addition instead of subtraction, so we'll do that here, as well. - - // [1] http://fp.gladman.plus.com/cryptography_technology/rijndael/aes.spec.v316.pdf - $temp = array(); - for ($round = 1; $round < $Nr; ++$round) { - $i = 0; // $c[0] == 0 - $j = $c[1]; - $k = $c[2]; - $l = $c[3]; - - while ($i < $Nb) { - $temp[$i] = $t0[$state[$i] >> 24 & 0x000000FF] ^ - $t1[$state[$j] >> 16 & 0x000000FF] ^ - $t2[$state[$k] >> 8 & 0x000000FF] ^ - $t3[$state[$l] & 0x000000FF] ^ - $w[++$wc]; - ++$i; - $j = ($j + 1) % $Nb; - $k = ($k + 1) % $Nb; - $l = ($l + 1) % $Nb; - } - $state = $temp; - } - - // subWord - for ($i = 0; $i < $Nb; ++$i) { - $state[$i] = $sbox[$state[$i] & 0x000000FF] | - ($sbox[$state[$i] >> 8 & 0x000000FF] << 8) | - ($sbox[$state[$i] >> 16 & 0x000000FF] << 16) | - ($sbox[$state[$i] >> 24 & 0x000000FF] << 24); - } - - // shiftRows + addRoundKey - $i = 0; // $c[0] == 0 - $j = $c[1]; - $k = $c[2]; - $l = $c[3]; - while ($i < $Nb) { - $temp[$i] = ($state[$i] & 0xFF000000) ^ - ($state[$j] & 0x00FF0000) ^ - ($state[$k] & 0x0000FF00) ^ - ($state[$l] & 0x000000FF) ^ - $w[$i]; - ++$i; - $j = ($j + 1) % $Nb; - $k = ($k + 1) % $Nb; - $l = ($l + 1) % $Nb; - } - - switch ($Nb) { - case 8: - return pack('N*', $temp[0], $temp[1], $temp[2], $temp[3], $temp[4], $temp[5], $temp[6], $temp[7]); - case 7: - return pack('N*', $temp[0], $temp[1], $temp[2], $temp[3], $temp[4], $temp[5], $temp[6]); - case 6: - return pack('N*', $temp[0], $temp[1], $temp[2], $temp[3], $temp[4], $temp[5]); - case 5: - return pack('N*', $temp[0], $temp[1], $temp[2], $temp[3], $temp[4]); - default: - return pack('N*', $temp[0], $temp[1], $temp[2], $temp[3]); - } - } - - /** - * Decrypts a block - * - * @access private - * @param string $in - * @return string - */ - function _decryptBlock($in) - { - static $invtables; - if (empty($invtables)) { - $invtables = &$this->_getInvTables(); - } - $dt0 = $invtables[0]; - $dt1 = $invtables[1]; - $dt2 = $invtables[2]; - $dt3 = $invtables[3]; - $isbox = $invtables[4]; - - $state = array(); - $words = unpack('N*', $in); - - $c = $this->c; - $dw = $this->dw; - $Nb = $this->Nb; - $Nr = $this->Nr; - - // addRoundKey - $wc = $Nb - 1; - foreach ($words as $word) { - $state[] = $word ^ $dw[++$wc]; - } - - $temp = array(); - for ($round = $Nr - 1; $round > 0; --$round) { - $i = 0; // $c[0] == 0 - $j = $Nb - $c[1]; - $k = $Nb - $c[2]; - $l = $Nb - $c[3]; - - while ($i < $Nb) { - $temp[$i] = $dt0[$state[$i] >> 24 & 0x000000FF] ^ - $dt1[$state[$j] >> 16 & 0x000000FF] ^ - $dt2[$state[$k] >> 8 & 0x000000FF] ^ - $dt3[$state[$l] & 0x000000FF] ^ - $dw[++$wc]; - ++$i; - $j = ($j + 1) % $Nb; - $k = ($k + 1) % $Nb; - $l = ($l + 1) % $Nb; - } - $state = $temp; - } - - // invShiftRows + invSubWord + addRoundKey - $i = 0; // $c[0] == 0 - $j = $Nb - $c[1]; - $k = $Nb - $c[2]; - $l = $Nb - $c[3]; - - while ($i < $Nb) { - $word = ($state[$i] & 0xFF000000) | - ($state[$j] & 0x00FF0000) | - ($state[$k] & 0x0000FF00) | - ($state[$l] & 0x000000FF); - - $temp[$i] = $dw[$i] ^ ($isbox[$word & 0x000000FF] | - ($isbox[$word >> 8 & 0x000000FF] << 8) | - ($isbox[$word >> 16 & 0x000000FF] << 16) | - ($isbox[$word >> 24 & 0x000000FF] << 24)); - ++$i; - $j = ($j + 1) % $Nb; - $k = ($k + 1) % $Nb; - $l = ($l + 1) % $Nb; - } - - switch ($Nb) { - case 8: - return pack('N*', $temp[0], $temp[1], $temp[2], $temp[3], $temp[4], $temp[5], $temp[6], $temp[7]); - case 7: - return pack('N*', $temp[0], $temp[1], $temp[2], $temp[3], $temp[4], $temp[5], $temp[6]); - case 6: - return pack('N*', $temp[0], $temp[1], $temp[2], $temp[3], $temp[4], $temp[5]); - case 5: - return pack('N*', $temp[0], $temp[1], $temp[2], $temp[3], $temp[4]); - default: - return pack('N*', $temp[0], $temp[1], $temp[2], $temp[3]); - } - } - - /** - * Setup the key (expansion) - * - * @see \phpseclib\Crypt\Base::_setupKey() - * @access private - */ - function _setupKey() - { - // Each number in $rcon is equal to the previous number multiplied by two in Rijndael's finite field. - // See http://en.wikipedia.org/wiki/Finite_field_arithmetic#Multiplicative_inverse - static $rcon = array(0, - 0x01000000, 0x02000000, 0x04000000, 0x08000000, 0x10000000, - 0x20000000, 0x40000000, 0x80000000, 0x1B000000, 0x36000000, - 0x6C000000, 0xD8000000, 0xAB000000, 0x4D000000, 0x9A000000, - 0x2F000000, 0x5E000000, 0xBC000000, 0x63000000, 0xC6000000, - 0x97000000, 0x35000000, 0x6A000000, 0xD4000000, 0xB3000000, - 0x7D000000, 0xFA000000, 0xEF000000, 0xC5000000, 0x91000000 - ); - - if (isset($this->kl['key']) && $this->key === $this->kl['key'] && $this->key_length === $this->kl['key_length'] && $this->block_size === $this->kl['block_size']) { - // already expanded - return; - } - $this->kl = array('key' => $this->key, 'key_length' => $this->key_length, 'block_size' => $this->block_size); - - $this->Nk = $this->key_length >> 2; - // see Rijndael-ammended.pdf#page=44 - $this->Nr = max($this->Nk, $this->Nb) + 6; - - // shift offsets for Nb = 5, 7 are defined in Rijndael-ammended.pdf#page=44, - // "Table 8: Shift offsets in Shiftrow for the alternative block lengths" - // shift offsets for Nb = 4, 6, 8 are defined in Rijndael-ammended.pdf#page=14, - // "Table 2: Shift offsets for different block lengths" - switch ($this->Nb) { - case 4: - case 5: - case 6: - $this->c = array(0, 1, 2, 3); - break; - case 7: - $this->c = array(0, 1, 2, 4); - break; - case 8: - $this->c = array(0, 1, 3, 4); - } - - $w = array_values(unpack('N*words', $this->key)); - - $length = $this->Nb * ($this->Nr + 1); - for ($i = $this->Nk; $i < $length; $i++) { - $temp = $w[$i - 1]; - if ($i % $this->Nk == 0) { - // according to , "the size of an integer is platform-dependent". - // on a 32-bit machine, it's 32-bits, and on a 64-bit machine, it's 64-bits. on a 32-bit machine, - // 0xFFFFFFFF << 8 == 0xFFFFFF00, but on a 64-bit machine, it equals 0xFFFFFFFF00. as such, doing 'and' - // with 0xFFFFFFFF (or 0xFFFFFF00) on a 32-bit machine is unnecessary, but on a 64-bit machine, it is. - $temp = (($temp << 8) & 0xFFFFFF00) | (($temp >> 24) & 0x000000FF); // rotWord - $temp = $this->_subWord($temp) ^ $rcon[$i / $this->Nk]; - } elseif ($this->Nk > 6 && $i % $this->Nk == 4) { - $temp = $this->_subWord($temp); - } - $w[$i] = $w[$i - $this->Nk] ^ $temp; - } - - // convert the key schedule from a vector of $Nb * ($Nr + 1) length to a matrix with $Nr + 1 rows and $Nb columns - // and generate the inverse key schedule. more specifically, - // according to (section 5.3.3), - // "The key expansion for the Inverse Cipher is defined as follows: - // 1. Apply the Key Expansion. - // 2. Apply InvMixColumn to all Round Keys except the first and the last one." - // also, see fips-197.pdf#page=27, "5.3.5 Equivalent Inverse Cipher" - list($dt0, $dt1, $dt2, $dt3) = $this->_getInvTables(); - $temp = $this->w = $this->dw = array(); - for ($i = $row = $col = 0; $i < $length; $i++, $col++) { - if ($col == $this->Nb) { - if ($row == 0) { - $this->dw[0] = $this->w[0]; - } else { - // subWord + invMixColumn + invSubWord = invMixColumn - $j = 0; - while ($j < $this->Nb) { - $dw = $this->_subWord($this->w[$row][$j]); - $temp[$j] = $dt0[$dw >> 24 & 0x000000FF] ^ - $dt1[$dw >> 16 & 0x000000FF] ^ - $dt2[$dw >> 8 & 0x000000FF] ^ - $dt3[$dw & 0x000000FF]; - $j++; - } - $this->dw[$row] = $temp; - } - - $col = 0; - $row++; - } - $this->w[$row][$col] = $w[$i]; - } - - $this->dw[$row] = $this->w[$row]; - - // Converting to 1-dim key arrays (both ascending) - $this->dw = array_reverse($this->dw); - $w = array_pop($this->w); - $dw = array_pop($this->dw); - foreach ($this->w as $r => $wr) { - foreach ($wr as $c => $wc) { - $w[] = $wc; - $dw[] = $this->dw[$r][$c]; - } - } - $this->w = $w; - $this->dw = $dw; - } - - /** - * Performs S-Box substitutions - * - * @access private - * @param int $word - */ - function _subWord($word) - { - static $sbox; - if (empty($sbox)) { - list(, , , , $sbox) = $this->_getTables(); - } - - return $sbox[$word & 0x000000FF] | - ($sbox[$word >> 8 & 0x000000FF] << 8) | - ($sbox[$word >> 16 & 0x000000FF] << 16) | - ($sbox[$word >> 24 & 0x000000FF] << 24); - } - - /** - * Provides the mixColumns and sboxes tables - * - * @see self::_encryptBlock() - * @see self::_setupInlineCrypt() - * @see self::_subWord() - * @access private - * @return array &$tables - */ - function &_getTables() - { - static $tables; - if (empty($tables)) { - // according to (section 5.2.1), - // precomputed tables can be used in the mixColumns phase. in that example, they're assigned t0...t3, so - // those are the names we'll use. - $t3 = array_map('intval', array( - // with array_map('intval', ...) we ensure we have only int's and not - // some slower floats converted by php automatically on high values - 0x6363A5C6, 0x7C7C84F8, 0x777799EE, 0x7B7B8DF6, 0xF2F20DFF, 0x6B6BBDD6, 0x6F6FB1DE, 0xC5C55491, - 0x30305060, 0x01010302, 0x6767A9CE, 0x2B2B7D56, 0xFEFE19E7, 0xD7D762B5, 0xABABE64D, 0x76769AEC, - 0xCACA458F, 0x82829D1F, 0xC9C94089, 0x7D7D87FA, 0xFAFA15EF, 0x5959EBB2, 0x4747C98E, 0xF0F00BFB, - 0xADADEC41, 0xD4D467B3, 0xA2A2FD5F, 0xAFAFEA45, 0x9C9CBF23, 0xA4A4F753, 0x727296E4, 0xC0C05B9B, - 0xB7B7C275, 0xFDFD1CE1, 0x9393AE3D, 0x26266A4C, 0x36365A6C, 0x3F3F417E, 0xF7F702F5, 0xCCCC4F83, - 0x34345C68, 0xA5A5F451, 0xE5E534D1, 0xF1F108F9, 0x717193E2, 0xD8D873AB, 0x31315362, 0x15153F2A, - 0x04040C08, 0xC7C75295, 0x23236546, 0xC3C35E9D, 0x18182830, 0x9696A137, 0x05050F0A, 0x9A9AB52F, - 0x0707090E, 0x12123624, 0x80809B1B, 0xE2E23DDF, 0xEBEB26CD, 0x2727694E, 0xB2B2CD7F, 0x75759FEA, - 0x09091B12, 0x83839E1D, 0x2C2C7458, 0x1A1A2E34, 0x1B1B2D36, 0x6E6EB2DC, 0x5A5AEEB4, 0xA0A0FB5B, - 0x5252F6A4, 0x3B3B4D76, 0xD6D661B7, 0xB3B3CE7D, 0x29297B52, 0xE3E33EDD, 0x2F2F715E, 0x84849713, - 0x5353F5A6, 0xD1D168B9, 0x00000000, 0xEDED2CC1, 0x20206040, 0xFCFC1FE3, 0xB1B1C879, 0x5B5BEDB6, - 0x6A6ABED4, 0xCBCB468D, 0xBEBED967, 0x39394B72, 0x4A4ADE94, 0x4C4CD498, 0x5858E8B0, 0xCFCF4A85, - 0xD0D06BBB, 0xEFEF2AC5, 0xAAAAE54F, 0xFBFB16ED, 0x4343C586, 0x4D4DD79A, 0x33335566, 0x85859411, - 0x4545CF8A, 0xF9F910E9, 0x02020604, 0x7F7F81FE, 0x5050F0A0, 0x3C3C4478, 0x9F9FBA25, 0xA8A8E34B, - 0x5151F3A2, 0xA3A3FE5D, 0x4040C080, 0x8F8F8A05, 0x9292AD3F, 0x9D9DBC21, 0x38384870, 0xF5F504F1, - 0xBCBCDF63, 0xB6B6C177, 0xDADA75AF, 0x21216342, 0x10103020, 0xFFFF1AE5, 0xF3F30EFD, 0xD2D26DBF, - 0xCDCD4C81, 0x0C0C1418, 0x13133526, 0xECEC2FC3, 0x5F5FE1BE, 0x9797A235, 0x4444CC88, 0x1717392E, - 0xC4C45793, 0xA7A7F255, 0x7E7E82FC, 0x3D3D477A, 0x6464ACC8, 0x5D5DE7BA, 0x19192B32, 0x737395E6, - 0x6060A0C0, 0x81819819, 0x4F4FD19E, 0xDCDC7FA3, 0x22226644, 0x2A2A7E54, 0x9090AB3B, 0x8888830B, - 0x4646CA8C, 0xEEEE29C7, 0xB8B8D36B, 0x14143C28, 0xDEDE79A7, 0x5E5EE2BC, 0x0B0B1D16, 0xDBDB76AD, - 0xE0E03BDB, 0x32325664, 0x3A3A4E74, 0x0A0A1E14, 0x4949DB92, 0x06060A0C, 0x24246C48, 0x5C5CE4B8, - 0xC2C25D9F, 0xD3D36EBD, 0xACACEF43, 0x6262A6C4, 0x9191A839, 0x9595A431, 0xE4E437D3, 0x79798BF2, - 0xE7E732D5, 0xC8C8438B, 0x3737596E, 0x6D6DB7DA, 0x8D8D8C01, 0xD5D564B1, 0x4E4ED29C, 0xA9A9E049, - 0x6C6CB4D8, 0x5656FAAC, 0xF4F407F3, 0xEAEA25CF, 0x6565AFCA, 0x7A7A8EF4, 0xAEAEE947, 0x08081810, - 0xBABAD56F, 0x787888F0, 0x25256F4A, 0x2E2E725C, 0x1C1C2438, 0xA6A6F157, 0xB4B4C773, 0xC6C65197, - 0xE8E823CB, 0xDDDD7CA1, 0x74749CE8, 0x1F1F213E, 0x4B4BDD96, 0xBDBDDC61, 0x8B8B860D, 0x8A8A850F, - 0x707090E0, 0x3E3E427C, 0xB5B5C471, 0x6666AACC, 0x4848D890, 0x03030506, 0xF6F601F7, 0x0E0E121C, - 0x6161A3C2, 0x35355F6A, 0x5757F9AE, 0xB9B9D069, 0x86869117, 0xC1C15899, 0x1D1D273A, 0x9E9EB927, - 0xE1E138D9, 0xF8F813EB, 0x9898B32B, 0x11113322, 0x6969BBD2, 0xD9D970A9, 0x8E8E8907, 0x9494A733, - 0x9B9BB62D, 0x1E1E223C, 0x87879215, 0xE9E920C9, 0xCECE4987, 0x5555FFAA, 0x28287850, 0xDFDF7AA5, - 0x8C8C8F03, 0xA1A1F859, 0x89898009, 0x0D0D171A, 0xBFBFDA65, 0xE6E631D7, 0x4242C684, 0x6868B8D0, - 0x4141C382, 0x9999B029, 0x2D2D775A, 0x0F0F111E, 0xB0B0CB7B, 0x5454FCA8, 0xBBBBD66D, 0x16163A2C - )); - - foreach ($t3 as $t3i) { - $t0[] = (($t3i << 24) & 0xFF000000) | (($t3i >> 8) & 0x00FFFFFF); - $t1[] = (($t3i << 16) & 0xFFFF0000) | (($t3i >> 16) & 0x0000FFFF); - $t2[] = (($t3i << 8) & 0xFFFFFF00) | (($t3i >> 24) & 0x000000FF); - } - - $tables = array( - // The Precomputed mixColumns tables t0 - t3 - $t0, - $t1, - $t2, - $t3, - // The SubByte S-Box - array( - 0x63, 0x7C, 0x77, 0x7B, 0xF2, 0x6B, 0x6F, 0xC5, 0x30, 0x01, 0x67, 0x2B, 0xFE, 0xD7, 0xAB, 0x76, - 0xCA, 0x82, 0xC9, 0x7D, 0xFA, 0x59, 0x47, 0xF0, 0xAD, 0xD4, 0xA2, 0xAF, 0x9C, 0xA4, 0x72, 0xC0, - 0xB7, 0xFD, 0x93, 0x26, 0x36, 0x3F, 0xF7, 0xCC, 0x34, 0xA5, 0xE5, 0xF1, 0x71, 0xD8, 0x31, 0x15, - 0x04, 0xC7, 0x23, 0xC3, 0x18, 0x96, 0x05, 0x9A, 0x07, 0x12, 0x80, 0xE2, 0xEB, 0x27, 0xB2, 0x75, - 0x09, 0x83, 0x2C, 0x1A, 0x1B, 0x6E, 0x5A, 0xA0, 0x52, 0x3B, 0xD6, 0xB3, 0x29, 0xE3, 0x2F, 0x84, - 0x53, 0xD1, 0x00, 0xED, 0x20, 0xFC, 0xB1, 0x5B, 0x6A, 0xCB, 0xBE, 0x39, 0x4A, 0x4C, 0x58, 0xCF, - 0xD0, 0xEF, 0xAA, 0xFB, 0x43, 0x4D, 0x33, 0x85, 0x45, 0xF9, 0x02, 0x7F, 0x50, 0x3C, 0x9F, 0xA8, - 0x51, 0xA3, 0x40, 0x8F, 0x92, 0x9D, 0x38, 0xF5, 0xBC, 0xB6, 0xDA, 0x21, 0x10, 0xFF, 0xF3, 0xD2, - 0xCD, 0x0C, 0x13, 0xEC, 0x5F, 0x97, 0x44, 0x17, 0xC4, 0xA7, 0x7E, 0x3D, 0x64, 0x5D, 0x19, 0x73, - 0x60, 0x81, 0x4F, 0xDC, 0x22, 0x2A, 0x90, 0x88, 0x46, 0xEE, 0xB8, 0x14, 0xDE, 0x5E, 0x0B, 0xDB, - 0xE0, 0x32, 0x3A, 0x0A, 0x49, 0x06, 0x24, 0x5C, 0xC2, 0xD3, 0xAC, 0x62, 0x91, 0x95, 0xE4, 0x79, - 0xE7, 0xC8, 0x37, 0x6D, 0x8D, 0xD5, 0x4E, 0xA9, 0x6C, 0x56, 0xF4, 0xEA, 0x65, 0x7A, 0xAE, 0x08, - 0xBA, 0x78, 0x25, 0x2E, 0x1C, 0xA6, 0xB4, 0xC6, 0xE8, 0xDD, 0x74, 0x1F, 0x4B, 0xBD, 0x8B, 0x8A, - 0x70, 0x3E, 0xB5, 0x66, 0x48, 0x03, 0xF6, 0x0E, 0x61, 0x35, 0x57, 0xB9, 0x86, 0xC1, 0x1D, 0x9E, - 0xE1, 0xF8, 0x98, 0x11, 0x69, 0xD9, 0x8E, 0x94, 0x9B, 0x1E, 0x87, 0xE9, 0xCE, 0x55, 0x28, 0xDF, - 0x8C, 0xA1, 0x89, 0x0D, 0xBF, 0xE6, 0x42, 0x68, 0x41, 0x99, 0x2D, 0x0F, 0xB0, 0x54, 0xBB, 0x16 - ) - ); - } - return $tables; - } - - /** - * Provides the inverse mixColumns and inverse sboxes tables - * - * @see self::_decryptBlock() - * @see self::_setupInlineCrypt() - * @see self::_setupKey() - * @access private - * @return array &$tables - */ - function &_getInvTables() - { - static $tables; - if (empty($tables)) { - $dt3 = array_map('intval', array( - 0xF4A75051, 0x4165537E, 0x17A4C31A, 0x275E963A, 0xAB6BCB3B, 0x9D45F11F, 0xFA58ABAC, 0xE303934B, - 0x30FA5520, 0x766DF6AD, 0xCC769188, 0x024C25F5, 0xE5D7FC4F, 0x2ACBD7C5, 0x35448026, 0x62A38FB5, - 0xB15A49DE, 0xBA1B6725, 0xEA0E9845, 0xFEC0E15D, 0x2F7502C3, 0x4CF01281, 0x4697A38D, 0xD3F9C66B, - 0x8F5FE703, 0x929C9515, 0x6D7AEBBF, 0x5259DA95, 0xBE832DD4, 0x7421D358, 0xE0692949, 0xC9C8448E, - 0xC2896A75, 0x8E7978F4, 0x583E6B99, 0xB971DD27, 0xE14FB6BE, 0x88AD17F0, 0x20AC66C9, 0xCE3AB47D, - 0xDF4A1863, 0x1A3182E5, 0x51336097, 0x537F4562, 0x6477E0B1, 0x6BAE84BB, 0x81A01CFE, 0x082B94F9, - 0x48685870, 0x45FD198F, 0xDE6C8794, 0x7BF8B752, 0x73D323AB, 0x4B02E272, 0x1F8F57E3, 0x55AB2A66, - 0xEB2807B2, 0xB5C2032F, 0xC57B9A86, 0x3708A5D3, 0x2887F230, 0xBFA5B223, 0x036ABA02, 0x16825CED, - 0xCF1C2B8A, 0x79B492A7, 0x07F2F0F3, 0x69E2A14E, 0xDAF4CD65, 0x05BED506, 0x34621FD1, 0xA6FE8AC4, - 0x2E539D34, 0xF355A0A2, 0x8AE13205, 0xF6EB75A4, 0x83EC390B, 0x60EFAA40, 0x719F065E, 0x6E1051BD, - 0x218AF93E, 0xDD063D96, 0x3E05AEDD, 0xE6BD464D, 0x548DB591, 0xC45D0571, 0x06D46F04, 0x5015FF60, - 0x98FB2419, 0xBDE997D6, 0x4043CC89, 0xD99E7767, 0xE842BDB0, 0x898B8807, 0x195B38E7, 0xC8EEDB79, - 0x7C0A47A1, 0x420FE97C, 0x841EC9F8, 0x00000000, 0x80868309, 0x2BED4832, 0x1170AC1E, 0x5A724E6C, - 0x0EFFFBFD, 0x8538560F, 0xAED51E3D, 0x2D392736, 0x0FD9640A, 0x5CA62168, 0x5B54D19B, 0x362E3A24, - 0x0A67B10C, 0x57E70F93, 0xEE96D2B4, 0x9B919E1B, 0xC0C54F80, 0xDC20A261, 0x774B695A, 0x121A161C, - 0x93BA0AE2, 0xA02AE5C0, 0x22E0433C, 0x1B171D12, 0x090D0B0E, 0x8BC7ADF2, 0xB6A8B92D, 0x1EA9C814, - 0xF1198557, 0x75074CAF, 0x99DDBBEE, 0x7F60FDA3, 0x01269FF7, 0x72F5BC5C, 0x663BC544, 0xFB7E345B, - 0x4329768B, 0x23C6DCCB, 0xEDFC68B6, 0xE4F163B8, 0x31DCCAD7, 0x63851042, 0x97224013, 0xC6112084, - 0x4A247D85, 0xBB3DF8D2, 0xF93211AE, 0x29A16DC7, 0x9E2F4B1D, 0xB230F3DC, 0x8652EC0D, 0xC1E3D077, - 0xB3166C2B, 0x70B999A9, 0x9448FA11, 0xE9642247, 0xFC8CC4A8, 0xF03F1AA0, 0x7D2CD856, 0x3390EF22, - 0x494EC787, 0x38D1C1D9, 0xCAA2FE8C, 0xD40B3698, 0xF581CFA6, 0x7ADE28A5, 0xB78E26DA, 0xADBFA43F, - 0x3A9DE42C, 0x78920D50, 0x5FCC9B6A, 0x7E466254, 0x8D13C2F6, 0xD8B8E890, 0x39F75E2E, 0xC3AFF582, - 0x5D80BE9F, 0xD0937C69, 0xD52DA96F, 0x2512B3CF, 0xAC993BC8, 0x187DA710, 0x9C636EE8, 0x3BBB7BDB, - 0x267809CD, 0x5918F46E, 0x9AB701EC, 0x4F9AA883, 0x956E65E6, 0xFFE67EAA, 0xBCCF0821, 0x15E8E6EF, - 0xE79BD9BA, 0x6F36CE4A, 0x9F09D4EA, 0xB07CD629, 0xA4B2AF31, 0x3F23312A, 0xA59430C6, 0xA266C035, - 0x4EBC3774, 0x82CAA6FC, 0x90D0B0E0, 0xA7D81533, 0x04984AF1, 0xECDAF741, 0xCD500E7F, 0x91F62F17, - 0x4DD68D76, 0xEFB04D43, 0xAA4D54CC, 0x9604DFE4, 0xD1B5E39E, 0x6A881B4C, 0x2C1FB8C1, 0x65517F46, - 0x5EEA049D, 0x8C355D01, 0x877473FA, 0x0B412EFB, 0x671D5AB3, 0xDBD25292, 0x105633E9, 0xD647136D, - 0xD7618C9A, 0xA10C7A37, 0xF8148E59, 0x133C89EB, 0xA927EECE, 0x61C935B7, 0x1CE5EDE1, 0x47B13C7A, - 0xD2DF599C, 0xF2733F55, 0x14CE7918, 0xC737BF73, 0xF7CDEA53, 0xFDAA5B5F, 0x3D6F14DF, 0x44DB8678, - 0xAFF381CA, 0x68C43EB9, 0x24342C38, 0xA3405FC2, 0x1DC37216, 0xE2250CBC, 0x3C498B28, 0x0D9541FF, - 0xA8017139, 0x0CB3DE08, 0xB4E49CD8, 0x56C19064, 0xCB84617B, 0x32B670D5, 0x6C5C7448, 0xB85742D0 - )); - - foreach ($dt3 as $dt3i) { - $dt0[] = (($dt3i << 24) & 0xFF000000) | (($dt3i >> 8) & 0x00FFFFFF); - $dt1[] = (($dt3i << 16) & 0xFFFF0000) | (($dt3i >> 16) & 0x0000FFFF); - $dt2[] = (($dt3i << 8) & 0xFFFFFF00) | (($dt3i >> 24) & 0x000000FF); - }; - - $tables = array( - // The Precomputed inverse mixColumns tables dt0 - dt3 - $dt0, - $dt1, - $dt2, - $dt3, - // The inverse SubByte S-Box - array( - 0x52, 0x09, 0x6A, 0xD5, 0x30, 0x36, 0xA5, 0x38, 0xBF, 0x40, 0xA3, 0x9E, 0x81, 0xF3, 0xD7, 0xFB, - 0x7C, 0xE3, 0x39, 0x82, 0x9B, 0x2F, 0xFF, 0x87, 0x34, 0x8E, 0x43, 0x44, 0xC4, 0xDE, 0xE9, 0xCB, - 0x54, 0x7B, 0x94, 0x32, 0xA6, 0xC2, 0x23, 0x3D, 0xEE, 0x4C, 0x95, 0x0B, 0x42, 0xFA, 0xC3, 0x4E, - 0x08, 0x2E, 0xA1, 0x66, 0x28, 0xD9, 0x24, 0xB2, 0x76, 0x5B, 0xA2, 0x49, 0x6D, 0x8B, 0xD1, 0x25, - 0x72, 0xF8, 0xF6, 0x64, 0x86, 0x68, 0x98, 0x16, 0xD4, 0xA4, 0x5C, 0xCC, 0x5D, 0x65, 0xB6, 0x92, - 0x6C, 0x70, 0x48, 0x50, 0xFD, 0xED, 0xB9, 0xDA, 0x5E, 0x15, 0x46, 0x57, 0xA7, 0x8D, 0x9D, 0x84, - 0x90, 0xD8, 0xAB, 0x00, 0x8C, 0xBC, 0xD3, 0x0A, 0xF7, 0xE4, 0x58, 0x05, 0xB8, 0xB3, 0x45, 0x06, - 0xD0, 0x2C, 0x1E, 0x8F, 0xCA, 0x3F, 0x0F, 0x02, 0xC1, 0xAF, 0xBD, 0x03, 0x01, 0x13, 0x8A, 0x6B, - 0x3A, 0x91, 0x11, 0x41, 0x4F, 0x67, 0xDC, 0xEA, 0x97, 0xF2, 0xCF, 0xCE, 0xF0, 0xB4, 0xE6, 0x73, - 0x96, 0xAC, 0x74, 0x22, 0xE7, 0xAD, 0x35, 0x85, 0xE2, 0xF9, 0x37, 0xE8, 0x1C, 0x75, 0xDF, 0x6E, - 0x47, 0xF1, 0x1A, 0x71, 0x1D, 0x29, 0xC5, 0x89, 0x6F, 0xB7, 0x62, 0x0E, 0xAA, 0x18, 0xBE, 0x1B, - 0xFC, 0x56, 0x3E, 0x4B, 0xC6, 0xD2, 0x79, 0x20, 0x9A, 0xDB, 0xC0, 0xFE, 0x78, 0xCD, 0x5A, 0xF4, - 0x1F, 0xDD, 0xA8, 0x33, 0x88, 0x07, 0xC7, 0x31, 0xB1, 0x12, 0x10, 0x59, 0x27, 0x80, 0xEC, 0x5F, - 0x60, 0x51, 0x7F, 0xA9, 0x19, 0xB5, 0x4A, 0x0D, 0x2D, 0xE5, 0x7A, 0x9F, 0x93, 0xC9, 0x9C, 0xEF, - 0xA0, 0xE0, 0x3B, 0x4D, 0xAE, 0x2A, 0xF5, 0xB0, 0xC8, 0xEB, 0xBB, 0x3C, 0x83, 0x53, 0x99, 0x61, - 0x17, 0x2B, 0x04, 0x7E, 0xBA, 0x77, 0xD6, 0x26, 0xE1, 0x69, 0x14, 0x63, 0x55, 0x21, 0x0C, 0x7D - ) - ); - } - return $tables; - } - - /** - * Setup the performance-optimized function for de/encrypt() - * - * @see \phpseclib\Crypt\Base::_setupInlineCrypt() - * @access private - */ - function _setupInlineCrypt() - { - // Note: _setupInlineCrypt() will be called only if $this->changed === true - // So here we are'nt under the same heavy timing-stress as we are in _de/encryptBlock() or de/encrypt(). - // However...the here generated function- $code, stored as php callback in $this->inline_crypt, must work as fast as even possible. - - $lambda_functions =& self::_getLambdaFunctions(); - - // We create max. 10 hi-optimized code for memory reason. Means: For each $key one ultra fast inline-crypt function. - // (Currently, for Crypt_Rijndael/AES, one generated $lambda_function cost on php5.5@32bit ~80kb unfreeable mem and ~130kb on php5.5@64bit) - // After that, we'll still create very fast optimized code but not the hi-ultimative code, for each $mode one. - $gen_hi_opt_code = (bool)(count($lambda_functions) < 10); - - // Generation of a uniqe hash for our generated code - $code_hash = "Crypt_Rijndael, {$this->mode}, {$this->Nr}, {$this->Nb}"; - if ($gen_hi_opt_code) { - $code_hash = str_pad($code_hash, 32) . $this->_hashInlineCryptFunction($this->key); - } - - if (!isset($lambda_functions[$code_hash])) { - switch (true) { - case $gen_hi_opt_code: - // The hi-optimized $lambda_functions will use the key-words hardcoded for better performance. - $w = $this->w; - $dw = $this->dw; - $init_encrypt = ''; - $init_decrypt = ''; - break; - default: - for ($i = 0, $cw = count($this->w); $i < $cw; ++$i) { - $w[] = '$w[' . $i . ']'; - $dw[] = '$dw[' . $i . ']'; - } - $init_encrypt = '$w = $self->w;'; - $init_decrypt = '$dw = $self->dw;'; - } - - $Nr = $this->Nr; - $Nb = $this->Nb; - $c = $this->c; - - // Generating encrypt code: - $init_encrypt.= ' - static $tables; - if (empty($tables)) { - $tables = &$self->_getTables(); - } - $t0 = $tables[0]; - $t1 = $tables[1]; - $t2 = $tables[2]; - $t3 = $tables[3]; - $sbox = $tables[4]; - '; - - $s = 'e'; - $e = 's'; - $wc = $Nb - 1; - - // Preround: addRoundKey - $encrypt_block = '$in = unpack("N*", $in);'."\n"; - for ($i = 0; $i < $Nb; ++$i) { - $encrypt_block .= '$s'.$i.' = $in['.($i + 1).'] ^ '.$w[++$wc].";\n"; - } - - // Mainrounds: shiftRows + subWord + mixColumns + addRoundKey - for ($round = 1; $round < $Nr; ++$round) { - list($s, $e) = array($e, $s); - for ($i = 0; $i < $Nb; ++$i) { - $encrypt_block.= - '$'.$e.$i.' = - $t0[($'.$s.$i .' >> 24) & 0xff] ^ - $t1[($'.$s.(($i + $c[1]) % $Nb).' >> 16) & 0xff] ^ - $t2[($'.$s.(($i + $c[2]) % $Nb).' >> 8) & 0xff] ^ - $t3[ $'.$s.(($i + $c[3]) % $Nb).' & 0xff] ^ - '.$w[++$wc].";\n"; - } - } - - // Finalround: subWord + shiftRows + addRoundKey - for ($i = 0; $i < $Nb; ++$i) { - $encrypt_block.= - '$'.$e.$i.' = - $sbox[ $'.$e.$i.' & 0xff] | - ($sbox[($'.$e.$i.' >> 8) & 0xff] << 8) | - ($sbox[($'.$e.$i.' >> 16) & 0xff] << 16) | - ($sbox[($'.$e.$i.' >> 24) & 0xff] << 24);'."\n"; - } - $encrypt_block .= '$in = pack("N*"'."\n"; - for ($i = 0; $i < $Nb; ++$i) { - $encrypt_block.= ', - ($'.$e.$i .' & '.((int)0xFF000000).') ^ - ($'.$e.(($i + $c[1]) % $Nb).' & 0x00FF0000 ) ^ - ($'.$e.(($i + $c[2]) % $Nb).' & 0x0000FF00 ) ^ - ($'.$e.(($i + $c[3]) % $Nb).' & 0x000000FF ) ^ - '.$w[$i]."\n"; - } - $encrypt_block .= ');'; - - // Generating decrypt code: - $init_decrypt.= ' - static $invtables; - if (empty($invtables)) { - $invtables = &$self->_getInvTables(); - } - $dt0 = $invtables[0]; - $dt1 = $invtables[1]; - $dt2 = $invtables[2]; - $dt3 = $invtables[3]; - $isbox = $invtables[4]; - '; - - $s = 'e'; - $e = 's'; - $wc = $Nb - 1; - - // Preround: addRoundKey - $decrypt_block = '$in = unpack("N*", $in);'."\n"; - for ($i = 0; $i < $Nb; ++$i) { - $decrypt_block .= '$s'.$i.' = $in['.($i + 1).'] ^ '.$dw[++$wc].';'."\n"; - } - - // Mainrounds: shiftRows + subWord + mixColumns + addRoundKey - for ($round = 1; $round < $Nr; ++$round) { - list($s, $e) = array($e, $s); - for ($i = 0; $i < $Nb; ++$i) { - $decrypt_block.= - '$'.$e.$i.' = - $dt0[($'.$s.$i .' >> 24) & 0xff] ^ - $dt1[($'.$s.(($Nb + $i - $c[1]) % $Nb).' >> 16) & 0xff] ^ - $dt2[($'.$s.(($Nb + $i - $c[2]) % $Nb).' >> 8) & 0xff] ^ - $dt3[ $'.$s.(($Nb + $i - $c[3]) % $Nb).' & 0xff] ^ - '.$dw[++$wc].";\n"; - } - } - - // Finalround: subWord + shiftRows + addRoundKey - for ($i = 0; $i < $Nb; ++$i) { - $decrypt_block.= - '$'.$e.$i.' = - $isbox[ $'.$e.$i.' & 0xff] | - ($isbox[($'.$e.$i.' >> 8) & 0xff] << 8) | - ($isbox[($'.$e.$i.' >> 16) & 0xff] << 16) | - ($isbox[($'.$e.$i.' >> 24) & 0xff] << 24);'."\n"; - } - $decrypt_block .= '$in = pack("N*"'."\n"; - for ($i = 0; $i < $Nb; ++$i) { - $decrypt_block.= ', - ($'.$e.$i. ' & '.((int)0xFF000000).') ^ - ($'.$e.(($Nb + $i - $c[1]) % $Nb).' & 0x00FF0000 ) ^ - ($'.$e.(($Nb + $i - $c[2]) % $Nb).' & 0x0000FF00 ) ^ - ($'.$e.(($Nb + $i - $c[3]) % $Nb).' & 0x000000FF ) ^ - '.$dw[$i]."\n"; - } - $decrypt_block .= ');'; - - $lambda_functions[$code_hash] = $this->_createInlineCryptFunction( - array( - 'init_crypt' => '', - 'init_encrypt' => $init_encrypt, - 'init_decrypt' => $init_decrypt, - 'encrypt_block' => $encrypt_block, - 'decrypt_block' => $decrypt_block - ) - ); - } - $this->inline_crypt = $lambda_functions[$code_hash]; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/Crypt/TripleDES.php b/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/Crypt/TripleDES.php deleted file mode 100644 index a2c41668..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/Crypt/TripleDES.php +++ /dev/null @@ -1,460 +0,0 @@ - - * setKey('abcdefghijklmnopqrstuvwx'); - * - * $size = 10 * 1024; - * $plaintext = ''; - * for ($i = 0; $i < $size; $i++) { - * $plaintext.= 'a'; - * } - * - * echo $des->decrypt($des->encrypt($plaintext)); - * ?> - * - * - * @category Crypt - * @package TripleDES - * @author Jim Wigginton - * @copyright 2007 Jim Wigginton - * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @link http://phpseclib.sourceforge.net - */ - -namespace phpseclib\Crypt; - -/** - * Pure-PHP implementation of Triple DES. - * - * @package TripleDES - * @author Jim Wigginton - * @access public - */ -class TripleDES extends DES -{ - /** - * Encrypt / decrypt using inner chaining - * - * Inner chaining is used by SSH-1 and is generally considered to be less secure then outer chaining (self::MODE_CBC3). - */ - const MODE_3CBC = -2; - - /** - * Encrypt / decrypt using outer chaining - * - * Outer chaining is used by SSH-2 and when the mode is set to \phpseclib\Crypt\Base::MODE_CBC. - */ - const MODE_CBC3 = Base::MODE_CBC; - - /** - * Key Length (in bytes) - * - * @see \phpseclib\Crypt\TripleDES::setKeyLength() - * @var int - * @access private - */ - var $key_length = 24; - - /** - * The default salt used by setPassword() - * - * @see \phpseclib\Crypt\Base::password_default_salt - * @see \phpseclib\Crypt\Base::setPassword() - * @var string - * @access private - */ - var $password_default_salt = 'phpseclib'; - - /** - * The mcrypt specific name of the cipher - * - * @see \phpseclib\Crypt\DES::cipher_name_mcrypt - * @see \phpseclib\Crypt\Base::cipher_name_mcrypt - * @var string - * @access private - */ - var $cipher_name_mcrypt = 'tripledes'; - - /** - * Optimizing value while CFB-encrypting - * - * @see \phpseclib\Crypt\Base::cfb_init_len - * @var int - * @access private - */ - var $cfb_init_len = 750; - - /** - * max possible size of $key - * - * @see self::setKey() - * @see \phpseclib\Crypt\DES::setKey() - * @var string - * @access private - */ - var $key_length_max = 24; - - /** - * Internal flag whether using self::MODE_3CBC or not - * - * @var bool - * @access private - */ - var $mode_3cbc; - - /** - * The \phpseclib\Crypt\DES objects - * - * Used only if $mode_3cbc === true - * - * @var array - * @access private - */ - var $des; - - /** - * Default Constructor. - * - * Determines whether or not the mcrypt extension should be used. - * - * $mode could be: - * - * - \phpseclib\Crypt\Base::MODE_ECB - * - * - \phpseclib\Crypt\Base::MODE_CBC - * - * - \phpseclib\Crypt\Base::MODE_CTR - * - * - \phpseclib\Crypt\Base::MODE_CFB - * - * - \phpseclib\Crypt\Base::MODE_OFB - * - * - \phpseclib\Crypt\TripleDES::MODE_3CBC - * - * If not explicitly set, \phpseclib\Crypt\Base::MODE_CBC will be used. - * - * @see \phpseclib\Crypt\DES::__construct() - * @see \phpseclib\Crypt\Base::__construct() - * @param int $mode - * @access public - */ - function __construct($mode = Base::MODE_CBC) - { - switch ($mode) { - // In case of self::MODE_3CBC, we init as CRYPT_DES_MODE_CBC - // and additional flag us internally as 3CBC - case self::MODE_3CBC: - parent::__construct(Base::MODE_CBC); - $this->mode_3cbc = true; - - // This three $des'es will do the 3CBC work (if $key > 64bits) - $this->des = array( - new DES(Base::MODE_CBC), - new DES(Base::MODE_CBC), - new DES(Base::MODE_CBC), - ); - - // we're going to be doing the padding, ourselves, so disable it in the \phpseclib\Crypt\DES objects - $this->des[0]->disablePadding(); - $this->des[1]->disablePadding(); - $this->des[2]->disablePadding(); - break; - // If not 3CBC, we init as usual - default: - parent::__construct($mode); - } - } - - /** - * Test for engine validity - * - * This is mainly just a wrapper to set things up for \phpseclib\Crypt\Base::isValidEngine() - * - * @see \phpseclib\Crypt\Base::__construct() - * @param int $engine - * @access public - * @return bool - */ - function isValidEngine($engine) - { - if ($engine == self::ENGINE_OPENSSL) { - $this->cipher_name_openssl_ecb = 'des-ede3'; - $mode = $this->_openssl_translate_mode(); - $this->cipher_name_openssl = $mode == 'ecb' ? 'des-ede3' : 'des-ede3-' . $mode; - } - - return parent::isValidEngine($engine); - } - - /** - * Sets the initialization vector. (optional) - * - * SetIV is not required when \phpseclib\Crypt\Base::MODE_ECB is being used. If not explicitly set, it'll be assumed - * to be all zero's. - * - * @see \phpseclib\Crypt\Base::setIV() - * @access public - * @param string $iv - */ - function setIV($iv) - { - parent::setIV($iv); - if ($this->mode_3cbc) { - $this->des[0]->setIV($iv); - $this->des[1]->setIV($iv); - $this->des[2]->setIV($iv); - } - } - - /** - * Sets the key length. - * - * Valid key lengths are 64, 128 and 192 - * - * @see \phpseclib\Crypt\Base:setKeyLength() - * @access public - * @param int $length - */ - function setKeyLength($length) - { - $length >>= 3; - switch (true) { - case $length <= 8: - $this->key_length = 8; - break; - case $length <= 16: - $this->key_length = 16; - break; - default: - $this->key_length = 24; - } - - parent::setKeyLength($length); - } - - /** - * Sets the key. - * - * Keys can be of any length. Triple DES, itself, can use 128-bit (eg. strlen($key) == 16) or - * 192-bit (eg. strlen($key) == 24) keys. This function pads and truncates $key as appropriate. - * - * DES also requires that every eighth bit be a parity bit, however, we'll ignore that. - * - * If the key is not explicitly set, it'll be assumed to be all null bytes. - * - * @access public - * @see \phpseclib\Crypt\DES::setKey() - * @see \phpseclib\Crypt\Base::setKey() - * @param string $key - */ - function setKey($key) - { - $length = $this->explicit_key_length ? $this->key_length : strlen($key); - if ($length > 8) { - $key = str_pad(substr($key, 0, 24), 24, chr(0)); - // if $key is between 64 and 128-bits, use the first 64-bits as the last, per this: - // http://php.net/function.mcrypt-encrypt#47973 - $key = $length <= 16 ? substr_replace($key, substr($key, 0, 8), 16) : substr($key, 0, 24); - } else { - $key = str_pad($key, 8, chr(0)); - } - parent::setKey($key); - - // And in case of self::MODE_3CBC: - // if key <= 64bits we not need the 3 $des to work, - // because we will then act as regular DES-CBC with just a <= 64bit key. - // So only if the key > 64bits (> 8 bytes) we will call setKey() for the 3 $des. - if ($this->mode_3cbc && $length > 8) { - $this->des[0]->setKey(substr($key, 0, 8)); - $this->des[1]->setKey(substr($key, 8, 8)); - $this->des[2]->setKey(substr($key, 16, 8)); - } - } - - /** - * Encrypts a message. - * - * @see \phpseclib\Crypt\Base::encrypt() - * @access public - * @param string $plaintext - * @return string $cipertext - */ - function encrypt($plaintext) - { - // parent::en/decrypt() is able to do all the work for all modes and keylengths, - // except for: self::MODE_3CBC (inner chaining CBC) with a key > 64bits - - // if the key is smaller then 8, do what we'd normally do - if ($this->mode_3cbc && strlen($this->key) > 8) { - return $this->des[2]->encrypt( - $this->des[1]->decrypt( - $this->des[0]->encrypt( - $this->_pad($plaintext) - ) - ) - ); - } - - return parent::encrypt($plaintext); - } - - /** - * Decrypts a message. - * - * @see \phpseclib\Crypt\Base::decrypt() - * @access public - * @param string $ciphertext - * @return string $plaintext - */ - function decrypt($ciphertext) - { - if ($this->mode_3cbc && strlen($this->key) > 8) { - return $this->_unpad( - $this->des[0]->decrypt( - $this->des[1]->encrypt( - $this->des[2]->decrypt( - str_pad($ciphertext, (strlen($ciphertext) + 7) & 0xFFFFFFF8, "\0") - ) - ) - ) - ); - } - - return parent::decrypt($ciphertext); - } - - /** - * Treat consecutive "packets" as if they are a continuous buffer. - * - * Say you have a 16-byte plaintext $plaintext. Using the default behavior, the two following code snippets - * will yield different outputs: - * - * - * echo $des->encrypt(substr($plaintext, 0, 8)); - * echo $des->encrypt(substr($plaintext, 8, 8)); - * - * - * echo $des->encrypt($plaintext); - * - * - * The solution is to enable the continuous buffer. Although this will resolve the above discrepancy, it creates - * another, as demonstrated with the following: - * - * - * $des->encrypt(substr($plaintext, 0, 8)); - * echo $des->decrypt($des->encrypt(substr($plaintext, 8, 8))); - * - * - * echo $des->decrypt($des->encrypt(substr($plaintext, 8, 8))); - * - * - * With the continuous buffer disabled, these would yield the same output. With it enabled, they yield different - * outputs. The reason is due to the fact that the initialization vector's change after every encryption / - * decryption round when the continuous buffer is enabled. When it's disabled, they remain constant. - * - * Put another way, when the continuous buffer is enabled, the state of the \phpseclib\Crypt\DES() object changes after each - * encryption / decryption round, whereas otherwise, it'd remain constant. For this reason, it's recommended that - * continuous buffers not be used. They do offer better security and are, in fact, sometimes required (SSH uses them), - * however, they are also less intuitive and more likely to cause you problems. - * - * @see \phpseclib\Crypt\Base::enableContinuousBuffer() - * @see self::disableContinuousBuffer() - * @access public - */ - function enableContinuousBuffer() - { - parent::enableContinuousBuffer(); - if ($this->mode_3cbc) { - $this->des[0]->enableContinuousBuffer(); - $this->des[1]->enableContinuousBuffer(); - $this->des[2]->enableContinuousBuffer(); - } - } - - /** - * Treat consecutive packets as if they are a discontinuous buffer. - * - * The default behavior. - * - * @see \phpseclib\Crypt\Base::disableContinuousBuffer() - * @see self::enableContinuousBuffer() - * @access public - */ - function disableContinuousBuffer() - { - parent::disableContinuousBuffer(); - if ($this->mode_3cbc) { - $this->des[0]->disableContinuousBuffer(); - $this->des[1]->disableContinuousBuffer(); - $this->des[2]->disableContinuousBuffer(); - } - } - - /** - * Creates the key schedule - * - * @see \phpseclib\Crypt\DES::_setupKey() - * @see \phpseclib\Crypt\Base::_setupKey() - * @access private - */ - function _setupKey() - { - switch (true) { - // if $key <= 64bits we configure our internal pure-php cipher engine - // to act as regular [1]DES, not as 3DES. mcrypt.so::tripledes does the same. - case strlen($this->key) <= 8: - $this->des_rounds = 1; - break; - - // otherwise, if $key > 64bits, we configure our engine to work as 3DES. - default: - $this->des_rounds = 3; - - // (only) if 3CBC is used we have, of course, to setup the $des[0-2] keys also separately. - if ($this->mode_3cbc) { - $this->des[0]->_setupKey(); - $this->des[1]->_setupKey(); - $this->des[2]->_setupKey(); - - // because $des[0-2] will, now, do all the work we can return here - // not need unnecessary stress parent::_setupKey() with our, now unused, $key. - return; - } - } - // setup our key - parent::_setupKey(); - } - - /** - * Sets the internal crypt engine - * - * @see \phpseclib\Crypt\Base::__construct() - * @see \phpseclib\Crypt\Base::setPreferredEngine() - * @param int $engine - * @access public - * @return int - */ - function setPreferredEngine($engine) - { - if ($this->mode_3cbc) { - $this->des[0]->setPreferredEngine($engine); - $this->des[1]->setPreferredEngine($engine); - $this->des[2]->setPreferredEngine($engine); - } - - return parent::setPreferredEngine($engine); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/Crypt/Twofish.php b/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/Crypt/Twofish.php deleted file mode 100644 index 70980a2f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/Crypt/Twofish.php +++ /dev/null @@ -1,816 +0,0 @@ - - * setKey('12345678901234567890123456789012'); - * - * $plaintext = str_repeat('a', 1024); - * - * echo $twofish->decrypt($twofish->encrypt($plaintext)); - * ?> - * - * - * @category Crypt - * @package Twofish - * @author Jim Wigginton - * @author Hans-Juergen Petrich - * @copyright 2007 Jim Wigginton - * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @link http://phpseclib.sourceforge.net - */ - -namespace phpseclib\Crypt; - -/** - * Pure-PHP implementation of Twofish. - * - * @package Twofish - * @author Jim Wigginton - * @author Hans-Juergen Petrich - * @access public - */ -class Twofish extends Base -{ - /** - * The mcrypt specific name of the cipher - * - * @see \phpseclib\Crypt\Base::cipher_name_mcrypt - * @var string - * @access private - */ - var $cipher_name_mcrypt = 'twofish'; - - /** - * Optimizing value while CFB-encrypting - * - * @see \phpseclib\Crypt\Base::cfb_init_len - * @var int - * @access private - */ - var $cfb_init_len = 800; - - /** - * Q-Table - * - * @var array - * @access private - */ - var $q0 = array( - 0xA9, 0x67, 0xB3, 0xE8, 0x04, 0xFD, 0xA3, 0x76, - 0x9A, 0x92, 0x80, 0x78, 0xE4, 0xDD, 0xD1, 0x38, - 0x0D, 0xC6, 0x35, 0x98, 0x18, 0xF7, 0xEC, 0x6C, - 0x43, 0x75, 0x37, 0x26, 0xFA, 0x13, 0x94, 0x48, - 0xF2, 0xD0, 0x8B, 0x30, 0x84, 0x54, 0xDF, 0x23, - 0x19, 0x5B, 0x3D, 0x59, 0xF3, 0xAE, 0xA2, 0x82, - 0x63, 0x01, 0x83, 0x2E, 0xD9, 0x51, 0x9B, 0x7C, - 0xA6, 0xEB, 0xA5, 0xBE, 0x16, 0x0C, 0xE3, 0x61, - 0xC0, 0x8C, 0x3A, 0xF5, 0x73, 0x2C, 0x25, 0x0B, - 0xBB, 0x4E, 0x89, 0x6B, 0x53, 0x6A, 0xB4, 0xF1, - 0xE1, 0xE6, 0xBD, 0x45, 0xE2, 0xF4, 0xB6, 0x66, - 0xCC, 0x95, 0x03, 0x56, 0xD4, 0x1C, 0x1E, 0xD7, - 0xFB, 0xC3, 0x8E, 0xB5, 0xE9, 0xCF, 0xBF, 0xBA, - 0xEA, 0x77, 0x39, 0xAF, 0x33, 0xC9, 0x62, 0x71, - 0x81, 0x79, 0x09, 0xAD, 0x24, 0xCD, 0xF9, 0xD8, - 0xE5, 0xC5, 0xB9, 0x4D, 0x44, 0x08, 0x86, 0xE7, - 0xA1, 0x1D, 0xAA, 0xED, 0x06, 0x70, 0xB2, 0xD2, - 0x41, 0x7B, 0xA0, 0x11, 0x31, 0xC2, 0x27, 0x90, - 0x20, 0xF6, 0x60, 0xFF, 0x96, 0x5C, 0xB1, 0xAB, - 0x9E, 0x9C, 0x52, 0x1B, 0x5F, 0x93, 0x0A, 0xEF, - 0x91, 0x85, 0x49, 0xEE, 0x2D, 0x4F, 0x8F, 0x3B, - 0x47, 0x87, 0x6D, 0x46, 0xD6, 0x3E, 0x69, 0x64, - 0x2A, 0xCE, 0xCB, 0x2F, 0xFC, 0x97, 0x05, 0x7A, - 0xAC, 0x7F, 0xD5, 0x1A, 0x4B, 0x0E, 0xA7, 0x5A, - 0x28, 0x14, 0x3F, 0x29, 0x88, 0x3C, 0x4C, 0x02, - 0xB8, 0xDA, 0xB0, 0x17, 0x55, 0x1F, 0x8A, 0x7D, - 0x57, 0xC7, 0x8D, 0x74, 0xB7, 0xC4, 0x9F, 0x72, - 0x7E, 0x15, 0x22, 0x12, 0x58, 0x07, 0x99, 0x34, - 0x6E, 0x50, 0xDE, 0x68, 0x65, 0xBC, 0xDB, 0xF8, - 0xC8, 0xA8, 0x2B, 0x40, 0xDC, 0xFE, 0x32, 0xA4, - 0xCA, 0x10, 0x21, 0xF0, 0xD3, 0x5D, 0x0F, 0x00, - 0x6F, 0x9D, 0x36, 0x42, 0x4A, 0x5E, 0xC1, 0xE0 - ); - - /** - * Q-Table - * - * @var array - * @access private - */ - var $q1 = array( - 0x75, 0xF3, 0xC6, 0xF4, 0xDB, 0x7B, 0xFB, 0xC8, - 0x4A, 0xD3, 0xE6, 0x6B, 0x45, 0x7D, 0xE8, 0x4B, - 0xD6, 0x32, 0xD8, 0xFD, 0x37, 0x71, 0xF1, 0xE1, - 0x30, 0x0F, 0xF8, 0x1B, 0x87, 0xFA, 0x06, 0x3F, - 0x5E, 0xBA, 0xAE, 0x5B, 0x8A, 0x00, 0xBC, 0x9D, - 0x6D, 0xC1, 0xB1, 0x0E, 0x80, 0x5D, 0xD2, 0xD5, - 0xA0, 0x84, 0x07, 0x14, 0xB5, 0x90, 0x2C, 0xA3, - 0xB2, 0x73, 0x4C, 0x54, 0x92, 0x74, 0x36, 0x51, - 0x38, 0xB0, 0xBD, 0x5A, 0xFC, 0x60, 0x62, 0x96, - 0x6C, 0x42, 0xF7, 0x10, 0x7C, 0x28, 0x27, 0x8C, - 0x13, 0x95, 0x9C, 0xC7, 0x24, 0x46, 0x3B, 0x70, - 0xCA, 0xE3, 0x85, 0xCB, 0x11, 0xD0, 0x93, 0xB8, - 0xA6, 0x83, 0x20, 0xFF, 0x9F, 0x77, 0xC3, 0xCC, - 0x03, 0x6F, 0x08, 0xBF, 0x40, 0xE7, 0x2B, 0xE2, - 0x79, 0x0C, 0xAA, 0x82, 0x41, 0x3A, 0xEA, 0xB9, - 0xE4, 0x9A, 0xA4, 0x97, 0x7E, 0xDA, 0x7A, 0x17, - 0x66, 0x94, 0xA1, 0x1D, 0x3D, 0xF0, 0xDE, 0xB3, - 0x0B, 0x72, 0xA7, 0x1C, 0xEF, 0xD1, 0x53, 0x3E, - 0x8F, 0x33, 0x26, 0x5F, 0xEC, 0x76, 0x2A, 0x49, - 0x81, 0x88, 0xEE, 0x21, 0xC4, 0x1A, 0xEB, 0xD9, - 0xC5, 0x39, 0x99, 0xCD, 0xAD, 0x31, 0x8B, 0x01, - 0x18, 0x23, 0xDD, 0x1F, 0x4E, 0x2D, 0xF9, 0x48, - 0x4F, 0xF2, 0x65, 0x8E, 0x78, 0x5C, 0x58, 0x19, - 0x8D, 0xE5, 0x98, 0x57, 0x67, 0x7F, 0x05, 0x64, - 0xAF, 0x63, 0xB6, 0xFE, 0xF5, 0xB7, 0x3C, 0xA5, - 0xCE, 0xE9, 0x68, 0x44, 0xE0, 0x4D, 0x43, 0x69, - 0x29, 0x2E, 0xAC, 0x15, 0x59, 0xA8, 0x0A, 0x9E, - 0x6E, 0x47, 0xDF, 0x34, 0x35, 0x6A, 0xCF, 0xDC, - 0x22, 0xC9, 0xC0, 0x9B, 0x89, 0xD4, 0xED, 0xAB, - 0x12, 0xA2, 0x0D, 0x52, 0xBB, 0x02, 0x2F, 0xA9, - 0xD7, 0x61, 0x1E, 0xB4, 0x50, 0x04, 0xF6, 0xC2, - 0x16, 0x25, 0x86, 0x56, 0x55, 0x09, 0xBE, 0x91 - ); - - /** - * M-Table - * - * @var array - * @access private - */ - var $m0 = array( - 0xBCBC3275, 0xECEC21F3, 0x202043C6, 0xB3B3C9F4, 0xDADA03DB, 0x02028B7B, 0xE2E22BFB, 0x9E9EFAC8, - 0xC9C9EC4A, 0xD4D409D3, 0x18186BE6, 0x1E1E9F6B, 0x98980E45, 0xB2B2387D, 0xA6A6D2E8, 0x2626B74B, - 0x3C3C57D6, 0x93938A32, 0x8282EED8, 0x525298FD, 0x7B7BD437, 0xBBBB3771, 0x5B5B97F1, 0x474783E1, - 0x24243C30, 0x5151E20F, 0xBABAC6F8, 0x4A4AF31B, 0xBFBF4887, 0x0D0D70FA, 0xB0B0B306, 0x7575DE3F, - 0xD2D2FD5E, 0x7D7D20BA, 0x666631AE, 0x3A3AA35B, 0x59591C8A, 0x00000000, 0xCDCD93BC, 0x1A1AE09D, - 0xAEAE2C6D, 0x7F7FABC1, 0x2B2BC7B1, 0xBEBEB90E, 0xE0E0A080, 0x8A8A105D, 0x3B3B52D2, 0x6464BAD5, - 0xD8D888A0, 0xE7E7A584, 0x5F5FE807, 0x1B1B1114, 0x2C2CC2B5, 0xFCFCB490, 0x3131272C, 0x808065A3, - 0x73732AB2, 0x0C0C8173, 0x79795F4C, 0x6B6B4154, 0x4B4B0292, 0x53536974, 0x94948F36, 0x83831F51, - 0x2A2A3638, 0xC4C49CB0, 0x2222C8BD, 0xD5D5F85A, 0xBDBDC3FC, 0x48487860, 0xFFFFCE62, 0x4C4C0796, - 0x4141776C, 0xC7C7E642, 0xEBEB24F7, 0x1C1C1410, 0x5D5D637C, 0x36362228, 0x6767C027, 0xE9E9AF8C, - 0x4444F913, 0x1414EA95, 0xF5F5BB9C, 0xCFCF18C7, 0x3F3F2D24, 0xC0C0E346, 0x7272DB3B, 0x54546C70, - 0x29294CCA, 0xF0F035E3, 0x0808FE85, 0xC6C617CB, 0xF3F34F11, 0x8C8CE4D0, 0xA4A45993, 0xCACA96B8, - 0x68683BA6, 0xB8B84D83, 0x38382820, 0xE5E52EFF, 0xADAD569F, 0x0B0B8477, 0xC8C81DC3, 0x9999FFCC, - 0x5858ED03, 0x19199A6F, 0x0E0E0A08, 0x95957EBF, 0x70705040, 0xF7F730E7, 0x6E6ECF2B, 0x1F1F6EE2, - 0xB5B53D79, 0x09090F0C, 0x616134AA, 0x57571682, 0x9F9F0B41, 0x9D9D803A, 0x111164EA, 0x2525CDB9, - 0xAFAFDDE4, 0x4545089A, 0xDFDF8DA4, 0xA3A35C97, 0xEAEAD57E, 0x353558DA, 0xEDEDD07A, 0x4343FC17, - 0xF8F8CB66, 0xFBFBB194, 0x3737D3A1, 0xFAFA401D, 0xC2C2683D, 0xB4B4CCF0, 0x32325DDE, 0x9C9C71B3, - 0x5656E70B, 0xE3E3DA72, 0x878760A7, 0x15151B1C, 0xF9F93AEF, 0x6363BFD1, 0x3434A953, 0x9A9A853E, - 0xB1B1428F, 0x7C7CD133, 0x88889B26, 0x3D3DA65F, 0xA1A1D7EC, 0xE4E4DF76, 0x8181942A, 0x91910149, - 0x0F0FFB81, 0xEEEEAA88, 0x161661EE, 0xD7D77321, 0x9797F5C4, 0xA5A5A81A, 0xFEFE3FEB, 0x6D6DB5D9, - 0x7878AEC5, 0xC5C56D39, 0x1D1DE599, 0x7676A4CD, 0x3E3EDCAD, 0xCBCB6731, 0xB6B6478B, 0xEFEF5B01, - 0x12121E18, 0x6060C523, 0x6A6AB0DD, 0x4D4DF61F, 0xCECEE94E, 0xDEDE7C2D, 0x55559DF9, 0x7E7E5A48, - 0x2121B24F, 0x03037AF2, 0xA0A02665, 0x5E5E198E, 0x5A5A6678, 0x65654B5C, 0x62624E58, 0xFDFD4519, - 0x0606F48D, 0x404086E5, 0xF2F2BE98, 0x3333AC57, 0x17179067, 0x05058E7F, 0xE8E85E05, 0x4F4F7D64, - 0x89896AAF, 0x10109563, 0x74742FB6, 0x0A0A75FE, 0x5C5C92F5, 0x9B9B74B7, 0x2D2D333C, 0x3030D6A5, - 0x2E2E49CE, 0x494989E9, 0x46467268, 0x77775544, 0xA8A8D8E0, 0x9696044D, 0x2828BD43, 0xA9A92969, - 0xD9D97929, 0x8686912E, 0xD1D187AC, 0xF4F44A15, 0x8D8D1559, 0xD6D682A8, 0xB9B9BC0A, 0x42420D9E, - 0xF6F6C16E, 0x2F2FB847, 0xDDDD06DF, 0x23233934, 0xCCCC6235, 0xF1F1C46A, 0xC1C112CF, 0x8585EBDC, - 0x8F8F9E22, 0x7171A1C9, 0x9090F0C0, 0xAAAA539B, 0x0101F189, 0x8B8BE1D4, 0x4E4E8CED, 0x8E8E6FAB, - 0xABABA212, 0x6F6F3EA2, 0xE6E6540D, 0xDBDBF252, 0x92927BBB, 0xB7B7B602, 0x6969CA2F, 0x3939D9A9, - 0xD3D30CD7, 0xA7A72361, 0xA2A2AD1E, 0xC3C399B4, 0x6C6C4450, 0x07070504, 0x04047FF6, 0x272746C2, - 0xACACA716, 0xD0D07625, 0x50501386, 0xDCDCF756, 0x84841A55, 0xE1E15109, 0x7A7A25BE, 0x1313EF91 - ); - - /** - * M-Table - * - * @var array - * @access private - */ - var $m1 = array( - 0xA9D93939, 0x67901717, 0xB3719C9C, 0xE8D2A6A6, 0x04050707, 0xFD985252, 0xA3658080, 0x76DFE4E4, - 0x9A084545, 0x92024B4B, 0x80A0E0E0, 0x78665A5A, 0xE4DDAFAF, 0xDDB06A6A, 0xD1BF6363, 0x38362A2A, - 0x0D54E6E6, 0xC6432020, 0x3562CCCC, 0x98BEF2F2, 0x181E1212, 0xF724EBEB, 0xECD7A1A1, 0x6C774141, - 0x43BD2828, 0x7532BCBC, 0x37D47B7B, 0x269B8888, 0xFA700D0D, 0x13F94444, 0x94B1FBFB, 0x485A7E7E, - 0xF27A0303, 0xD0E48C8C, 0x8B47B6B6, 0x303C2424, 0x84A5E7E7, 0x54416B6B, 0xDF06DDDD, 0x23C56060, - 0x1945FDFD, 0x5BA33A3A, 0x3D68C2C2, 0x59158D8D, 0xF321ECEC, 0xAE316666, 0xA23E6F6F, 0x82165757, - 0x63951010, 0x015BEFEF, 0x834DB8B8, 0x2E918686, 0xD9B56D6D, 0x511F8383, 0x9B53AAAA, 0x7C635D5D, - 0xA63B6868, 0xEB3FFEFE, 0xA5D63030, 0xBE257A7A, 0x16A7ACAC, 0x0C0F0909, 0xE335F0F0, 0x6123A7A7, - 0xC0F09090, 0x8CAFE9E9, 0x3A809D9D, 0xF5925C5C, 0x73810C0C, 0x2C273131, 0x2576D0D0, 0x0BE75656, - 0xBB7B9292, 0x4EE9CECE, 0x89F10101, 0x6B9F1E1E, 0x53A93434, 0x6AC4F1F1, 0xB499C3C3, 0xF1975B5B, - 0xE1834747, 0xE66B1818, 0xBDC82222, 0x450E9898, 0xE26E1F1F, 0xF4C9B3B3, 0xB62F7474, 0x66CBF8F8, - 0xCCFF9999, 0x95EA1414, 0x03ED5858, 0x56F7DCDC, 0xD4E18B8B, 0x1C1B1515, 0x1EADA2A2, 0xD70CD3D3, - 0xFB2BE2E2, 0xC31DC8C8, 0x8E195E5E, 0xB5C22C2C, 0xE9894949, 0xCF12C1C1, 0xBF7E9595, 0xBA207D7D, - 0xEA641111, 0x77840B0B, 0x396DC5C5, 0xAF6A8989, 0x33D17C7C, 0xC9A17171, 0x62CEFFFF, 0x7137BBBB, - 0x81FB0F0F, 0x793DB5B5, 0x0951E1E1, 0xADDC3E3E, 0x242D3F3F, 0xCDA47676, 0xF99D5555, 0xD8EE8282, - 0xE5864040, 0xC5AE7878, 0xB9CD2525, 0x4D049696, 0x44557777, 0x080A0E0E, 0x86135050, 0xE730F7F7, - 0xA1D33737, 0x1D40FAFA, 0xAA346161, 0xED8C4E4E, 0x06B3B0B0, 0x706C5454, 0xB22A7373, 0xD2523B3B, - 0x410B9F9F, 0x7B8B0202, 0xA088D8D8, 0x114FF3F3, 0x3167CBCB, 0xC2462727, 0x27C06767, 0x90B4FCFC, - 0x20283838, 0xF67F0404, 0x60784848, 0xFF2EE5E5, 0x96074C4C, 0x5C4B6565, 0xB1C72B2B, 0xAB6F8E8E, - 0x9E0D4242, 0x9CBBF5F5, 0x52F2DBDB, 0x1BF34A4A, 0x5FA63D3D, 0x9359A4A4, 0x0ABCB9B9, 0xEF3AF9F9, - 0x91EF1313, 0x85FE0808, 0x49019191, 0xEE611616, 0x2D7CDEDE, 0x4FB22121, 0x8F42B1B1, 0x3BDB7272, - 0x47B82F2F, 0x8748BFBF, 0x6D2CAEAE, 0x46E3C0C0, 0xD6573C3C, 0x3E859A9A, 0x6929A9A9, 0x647D4F4F, - 0x2A948181, 0xCE492E2E, 0xCB17C6C6, 0x2FCA6969, 0xFCC3BDBD, 0x975CA3A3, 0x055EE8E8, 0x7AD0EDED, - 0xAC87D1D1, 0x7F8E0505, 0xD5BA6464, 0x1AA8A5A5, 0x4BB72626, 0x0EB9BEBE, 0xA7608787, 0x5AF8D5D5, - 0x28223636, 0x14111B1B, 0x3FDE7575, 0x2979D9D9, 0x88AAEEEE, 0x3C332D2D, 0x4C5F7979, 0x02B6B7B7, - 0xB896CACA, 0xDA583535, 0xB09CC4C4, 0x17FC4343, 0x551A8484, 0x1FF64D4D, 0x8A1C5959, 0x7D38B2B2, - 0x57AC3333, 0xC718CFCF, 0x8DF40606, 0x74695353, 0xB7749B9B, 0xC4F59797, 0x9F56ADAD, 0x72DAE3E3, - 0x7ED5EAEA, 0x154AF4F4, 0x229E8F8F, 0x12A2ABAB, 0x584E6262, 0x07E85F5F, 0x99E51D1D, 0x34392323, - 0x6EC1F6F6, 0x50446C6C, 0xDE5D3232, 0x68724646, 0x6526A0A0, 0xBC93CDCD, 0xDB03DADA, 0xF8C6BABA, - 0xC8FA9E9E, 0xA882D6D6, 0x2BCF6E6E, 0x40507070, 0xDCEB8585, 0xFE750A0A, 0x328A9393, 0xA48DDFDF, - 0xCA4C2929, 0x10141C1C, 0x2173D7D7, 0xF0CCB4B4, 0xD309D4D4, 0x5D108A8A, 0x0FE25151, 0x00000000, - 0x6F9A1919, 0x9DE01A1A, 0x368F9494, 0x42E6C7C7, 0x4AECC9C9, 0x5EFDD2D2, 0xC1AB7F7F, 0xE0D8A8A8 - ); - - /** - * M-Table - * - * @var array - * @access private - */ - var $m2 = array( - 0xBC75BC32, 0xECF3EC21, 0x20C62043, 0xB3F4B3C9, 0xDADBDA03, 0x027B028B, 0xE2FBE22B, 0x9EC89EFA, - 0xC94AC9EC, 0xD4D3D409, 0x18E6186B, 0x1E6B1E9F, 0x9845980E, 0xB27DB238, 0xA6E8A6D2, 0x264B26B7, - 0x3CD63C57, 0x9332938A, 0x82D882EE, 0x52FD5298, 0x7B377BD4, 0xBB71BB37, 0x5BF15B97, 0x47E14783, - 0x2430243C, 0x510F51E2, 0xBAF8BAC6, 0x4A1B4AF3, 0xBF87BF48, 0x0DFA0D70, 0xB006B0B3, 0x753F75DE, - 0xD25ED2FD, 0x7DBA7D20, 0x66AE6631, 0x3A5B3AA3, 0x598A591C, 0x00000000, 0xCDBCCD93, 0x1A9D1AE0, - 0xAE6DAE2C, 0x7FC17FAB, 0x2BB12BC7, 0xBE0EBEB9, 0xE080E0A0, 0x8A5D8A10, 0x3BD23B52, 0x64D564BA, - 0xD8A0D888, 0xE784E7A5, 0x5F075FE8, 0x1B141B11, 0x2CB52CC2, 0xFC90FCB4, 0x312C3127, 0x80A38065, - 0x73B2732A, 0x0C730C81, 0x794C795F, 0x6B546B41, 0x4B924B02, 0x53745369, 0x9436948F, 0x8351831F, - 0x2A382A36, 0xC4B0C49C, 0x22BD22C8, 0xD55AD5F8, 0xBDFCBDC3, 0x48604878, 0xFF62FFCE, 0x4C964C07, - 0x416C4177, 0xC742C7E6, 0xEBF7EB24, 0x1C101C14, 0x5D7C5D63, 0x36283622, 0x672767C0, 0xE98CE9AF, - 0x441344F9, 0x149514EA, 0xF59CF5BB, 0xCFC7CF18, 0x3F243F2D, 0xC046C0E3, 0x723B72DB, 0x5470546C, - 0x29CA294C, 0xF0E3F035, 0x088508FE, 0xC6CBC617, 0xF311F34F, 0x8CD08CE4, 0xA493A459, 0xCAB8CA96, - 0x68A6683B, 0xB883B84D, 0x38203828, 0xE5FFE52E, 0xAD9FAD56, 0x0B770B84, 0xC8C3C81D, 0x99CC99FF, - 0x580358ED, 0x196F199A, 0x0E080E0A, 0x95BF957E, 0x70407050, 0xF7E7F730, 0x6E2B6ECF, 0x1FE21F6E, - 0xB579B53D, 0x090C090F, 0x61AA6134, 0x57825716, 0x9F419F0B, 0x9D3A9D80, 0x11EA1164, 0x25B925CD, - 0xAFE4AFDD, 0x459A4508, 0xDFA4DF8D, 0xA397A35C, 0xEA7EEAD5, 0x35DA3558, 0xED7AEDD0, 0x431743FC, - 0xF866F8CB, 0xFB94FBB1, 0x37A137D3, 0xFA1DFA40, 0xC23DC268, 0xB4F0B4CC, 0x32DE325D, 0x9CB39C71, - 0x560B56E7, 0xE372E3DA, 0x87A78760, 0x151C151B, 0xF9EFF93A, 0x63D163BF, 0x345334A9, 0x9A3E9A85, - 0xB18FB142, 0x7C337CD1, 0x8826889B, 0x3D5F3DA6, 0xA1ECA1D7, 0xE476E4DF, 0x812A8194, 0x91499101, - 0x0F810FFB, 0xEE88EEAA, 0x16EE1661, 0xD721D773, 0x97C497F5, 0xA51AA5A8, 0xFEEBFE3F, 0x6DD96DB5, - 0x78C578AE, 0xC539C56D, 0x1D991DE5, 0x76CD76A4, 0x3EAD3EDC, 0xCB31CB67, 0xB68BB647, 0xEF01EF5B, - 0x1218121E, 0x602360C5, 0x6ADD6AB0, 0x4D1F4DF6, 0xCE4ECEE9, 0xDE2DDE7C, 0x55F9559D, 0x7E487E5A, - 0x214F21B2, 0x03F2037A, 0xA065A026, 0x5E8E5E19, 0x5A785A66, 0x655C654B, 0x6258624E, 0xFD19FD45, - 0x068D06F4, 0x40E54086, 0xF298F2BE, 0x335733AC, 0x17671790, 0x057F058E, 0xE805E85E, 0x4F644F7D, - 0x89AF896A, 0x10631095, 0x74B6742F, 0x0AFE0A75, 0x5CF55C92, 0x9BB79B74, 0x2D3C2D33, 0x30A530D6, - 0x2ECE2E49, 0x49E94989, 0x46684672, 0x77447755, 0xA8E0A8D8, 0x964D9604, 0x284328BD, 0xA969A929, - 0xD929D979, 0x862E8691, 0xD1ACD187, 0xF415F44A, 0x8D598D15, 0xD6A8D682, 0xB90AB9BC, 0x429E420D, - 0xF66EF6C1, 0x2F472FB8, 0xDDDFDD06, 0x23342339, 0xCC35CC62, 0xF16AF1C4, 0xC1CFC112, 0x85DC85EB, - 0x8F228F9E, 0x71C971A1, 0x90C090F0, 0xAA9BAA53, 0x018901F1, 0x8BD48BE1, 0x4EED4E8C, 0x8EAB8E6F, - 0xAB12ABA2, 0x6FA26F3E, 0xE60DE654, 0xDB52DBF2, 0x92BB927B, 0xB702B7B6, 0x692F69CA, 0x39A939D9, - 0xD3D7D30C, 0xA761A723, 0xA21EA2AD, 0xC3B4C399, 0x6C506C44, 0x07040705, 0x04F6047F, 0x27C22746, - 0xAC16ACA7, 0xD025D076, 0x50865013, 0xDC56DCF7, 0x8455841A, 0xE109E151, 0x7ABE7A25, 0x139113EF - ); - - /** - * M-Table - * - * @var array - * @access private - */ - var $m3 = array( - 0xD939A9D9, 0x90176790, 0x719CB371, 0xD2A6E8D2, 0x05070405, 0x9852FD98, 0x6580A365, 0xDFE476DF, - 0x08459A08, 0x024B9202, 0xA0E080A0, 0x665A7866, 0xDDAFE4DD, 0xB06ADDB0, 0xBF63D1BF, 0x362A3836, - 0x54E60D54, 0x4320C643, 0x62CC3562, 0xBEF298BE, 0x1E12181E, 0x24EBF724, 0xD7A1ECD7, 0x77416C77, - 0xBD2843BD, 0x32BC7532, 0xD47B37D4, 0x9B88269B, 0x700DFA70, 0xF94413F9, 0xB1FB94B1, 0x5A7E485A, - 0x7A03F27A, 0xE48CD0E4, 0x47B68B47, 0x3C24303C, 0xA5E784A5, 0x416B5441, 0x06DDDF06, 0xC56023C5, - 0x45FD1945, 0xA33A5BA3, 0x68C23D68, 0x158D5915, 0x21ECF321, 0x3166AE31, 0x3E6FA23E, 0x16578216, - 0x95106395, 0x5BEF015B, 0x4DB8834D, 0x91862E91, 0xB56DD9B5, 0x1F83511F, 0x53AA9B53, 0x635D7C63, - 0x3B68A63B, 0x3FFEEB3F, 0xD630A5D6, 0x257ABE25, 0xA7AC16A7, 0x0F090C0F, 0x35F0E335, 0x23A76123, - 0xF090C0F0, 0xAFE98CAF, 0x809D3A80, 0x925CF592, 0x810C7381, 0x27312C27, 0x76D02576, 0xE7560BE7, - 0x7B92BB7B, 0xE9CE4EE9, 0xF10189F1, 0x9F1E6B9F, 0xA93453A9, 0xC4F16AC4, 0x99C3B499, 0x975BF197, - 0x8347E183, 0x6B18E66B, 0xC822BDC8, 0x0E98450E, 0x6E1FE26E, 0xC9B3F4C9, 0x2F74B62F, 0xCBF866CB, - 0xFF99CCFF, 0xEA1495EA, 0xED5803ED, 0xF7DC56F7, 0xE18BD4E1, 0x1B151C1B, 0xADA21EAD, 0x0CD3D70C, - 0x2BE2FB2B, 0x1DC8C31D, 0x195E8E19, 0xC22CB5C2, 0x8949E989, 0x12C1CF12, 0x7E95BF7E, 0x207DBA20, - 0x6411EA64, 0x840B7784, 0x6DC5396D, 0x6A89AF6A, 0xD17C33D1, 0xA171C9A1, 0xCEFF62CE, 0x37BB7137, - 0xFB0F81FB, 0x3DB5793D, 0x51E10951, 0xDC3EADDC, 0x2D3F242D, 0xA476CDA4, 0x9D55F99D, 0xEE82D8EE, - 0x8640E586, 0xAE78C5AE, 0xCD25B9CD, 0x04964D04, 0x55774455, 0x0A0E080A, 0x13508613, 0x30F7E730, - 0xD337A1D3, 0x40FA1D40, 0x3461AA34, 0x8C4EED8C, 0xB3B006B3, 0x6C54706C, 0x2A73B22A, 0x523BD252, - 0x0B9F410B, 0x8B027B8B, 0x88D8A088, 0x4FF3114F, 0x67CB3167, 0x4627C246, 0xC06727C0, 0xB4FC90B4, - 0x28382028, 0x7F04F67F, 0x78486078, 0x2EE5FF2E, 0x074C9607, 0x4B655C4B, 0xC72BB1C7, 0x6F8EAB6F, - 0x0D429E0D, 0xBBF59CBB, 0xF2DB52F2, 0xF34A1BF3, 0xA63D5FA6, 0x59A49359, 0xBCB90ABC, 0x3AF9EF3A, - 0xEF1391EF, 0xFE0885FE, 0x01914901, 0x6116EE61, 0x7CDE2D7C, 0xB2214FB2, 0x42B18F42, 0xDB723BDB, - 0xB82F47B8, 0x48BF8748, 0x2CAE6D2C, 0xE3C046E3, 0x573CD657, 0x859A3E85, 0x29A96929, 0x7D4F647D, - 0x94812A94, 0x492ECE49, 0x17C6CB17, 0xCA692FCA, 0xC3BDFCC3, 0x5CA3975C, 0x5EE8055E, 0xD0ED7AD0, - 0x87D1AC87, 0x8E057F8E, 0xBA64D5BA, 0xA8A51AA8, 0xB7264BB7, 0xB9BE0EB9, 0x6087A760, 0xF8D55AF8, - 0x22362822, 0x111B1411, 0xDE753FDE, 0x79D92979, 0xAAEE88AA, 0x332D3C33, 0x5F794C5F, 0xB6B702B6, - 0x96CAB896, 0x5835DA58, 0x9CC4B09C, 0xFC4317FC, 0x1A84551A, 0xF64D1FF6, 0x1C598A1C, 0x38B27D38, - 0xAC3357AC, 0x18CFC718, 0xF4068DF4, 0x69537469, 0x749BB774, 0xF597C4F5, 0x56AD9F56, 0xDAE372DA, - 0xD5EA7ED5, 0x4AF4154A, 0x9E8F229E, 0xA2AB12A2, 0x4E62584E, 0xE85F07E8, 0xE51D99E5, 0x39233439, - 0xC1F66EC1, 0x446C5044, 0x5D32DE5D, 0x72466872, 0x26A06526, 0x93CDBC93, 0x03DADB03, 0xC6BAF8C6, - 0xFA9EC8FA, 0x82D6A882, 0xCF6E2BCF, 0x50704050, 0xEB85DCEB, 0x750AFE75, 0x8A93328A, 0x8DDFA48D, - 0x4C29CA4C, 0x141C1014, 0x73D72173, 0xCCB4F0CC, 0x09D4D309, 0x108A5D10, 0xE2510FE2, 0x00000000, - 0x9A196F9A, 0xE01A9DE0, 0x8F94368F, 0xE6C742E6, 0xECC94AEC, 0xFDD25EFD, 0xAB7FC1AB, 0xD8A8E0D8 - ); - - /** - * The Key Schedule Array - * - * @var array - * @access private - */ - var $K = array(); - - /** - * The Key depended S-Table 0 - * - * @var array - * @access private - */ - var $S0 = array(); - - /** - * The Key depended S-Table 1 - * - * @var array - * @access private - */ - var $S1 = array(); - - /** - * The Key depended S-Table 2 - * - * @var array - * @access private - */ - var $S2 = array(); - - /** - * The Key depended S-Table 3 - * - * @var array - * @access private - */ - var $S3 = array(); - - /** - * Holds the last used key - * - * @var array - * @access private - */ - var $kl; - - /** - * The Key Length (in bytes) - * - * @see Crypt_Twofish::setKeyLength() - * @var int - * @access private - */ - var $key_length = 16; - - /** - * Sets the key length. - * - * Valid key lengths are 128, 192 or 256 bits - * - * @access public - * @param int $length - */ - function setKeyLength($length) - { - switch (true) { - case $length <= 128: - $this->key_length = 16; - break; - case $length <= 192: - $this->key_length = 24; - break; - default: - $this->key_length = 32; - } - - parent::setKeyLength($length); - } - - /** - * Setup the key (expansion) - * - * @see \phpseclib\Crypt\Base::_setupKey() - * @access private - */ - function _setupKey() - { - if (isset($this->kl['key']) && $this->key === $this->kl['key']) { - // already expanded - return; - } - $this->kl = array('key' => $this->key); - - /* Key expanding and generating the key-depended s-boxes */ - $le_longs = unpack('V*', $this->key); - $key = unpack('C*', $this->key); - $m0 = $this->m0; - $m1 = $this->m1; - $m2 = $this->m2; - $m3 = $this->m3; - $q0 = $this->q0; - $q1 = $this->q1; - - $K = $S0 = $S1 = $S2 = $S3 = array(); - - switch (strlen($this->key)) { - case 16: - list($s7, $s6, $s5, $s4) = $this->_mdsrem($le_longs[1], $le_longs[2]); - list($s3, $s2, $s1, $s0) = $this->_mdsrem($le_longs[3], $le_longs[4]); - for ($i = 0, $j = 1; $i < 40; $i+= 2, $j+= 2) { - $A = $m0[$q0[$q0[$i] ^ $key[ 9]] ^ $key[1]] ^ - $m1[$q0[$q1[$i] ^ $key[10]] ^ $key[2]] ^ - $m2[$q1[$q0[$i] ^ $key[11]] ^ $key[3]] ^ - $m3[$q1[$q1[$i] ^ $key[12]] ^ $key[4]]; - $B = $m0[$q0[$q0[$j] ^ $key[13]] ^ $key[5]] ^ - $m1[$q0[$q1[$j] ^ $key[14]] ^ $key[6]] ^ - $m2[$q1[$q0[$j] ^ $key[15]] ^ $key[7]] ^ - $m3[$q1[$q1[$j] ^ $key[16]] ^ $key[8]]; - $B = ($B << 8) | ($B >> 24 & 0xff); - $A = $this->safe_intval($A + $B); - $K[] = $A; - $A = $this->safe_intval($A + $B); - $K[] = ($A << 9 | $A >> 23 & 0x1ff); - } - for ($i = 0; $i < 256; ++$i) { - $S0[$i] = $m0[$q0[$q0[$i] ^ $s4] ^ $s0]; - $S1[$i] = $m1[$q0[$q1[$i] ^ $s5] ^ $s1]; - $S2[$i] = $m2[$q1[$q0[$i] ^ $s6] ^ $s2]; - $S3[$i] = $m3[$q1[$q1[$i] ^ $s7] ^ $s3]; - } - break; - case 24: - list($sb, $sa, $s9, $s8) = $this->_mdsrem($le_longs[1], $le_longs[2]); - list($s7, $s6, $s5, $s4) = $this->_mdsrem($le_longs[3], $le_longs[4]); - list($s3, $s2, $s1, $s0) = $this->_mdsrem($le_longs[5], $le_longs[6]); - for ($i = 0, $j = 1; $i < 40; $i+= 2, $j+= 2) { - $A = $m0[$q0[$q0[$q1[$i] ^ $key[17]] ^ $key[ 9]] ^ $key[1]] ^ - $m1[$q0[$q1[$q1[$i] ^ $key[18]] ^ $key[10]] ^ $key[2]] ^ - $m2[$q1[$q0[$q0[$i] ^ $key[19]] ^ $key[11]] ^ $key[3]] ^ - $m3[$q1[$q1[$q0[$i] ^ $key[20]] ^ $key[12]] ^ $key[4]]; - $B = $m0[$q0[$q0[$q1[$j] ^ $key[21]] ^ $key[13]] ^ $key[5]] ^ - $m1[$q0[$q1[$q1[$j] ^ $key[22]] ^ $key[14]] ^ $key[6]] ^ - $m2[$q1[$q0[$q0[$j] ^ $key[23]] ^ $key[15]] ^ $key[7]] ^ - $m3[$q1[$q1[$q0[$j] ^ $key[24]] ^ $key[16]] ^ $key[8]]; - $B = ($B << 8) | ($B >> 24 & 0xff); - $A = $this->safe_intval($A + $B); - $K[] = $A; - $A = $this->safe_intval($A + $B); - $K[] = ($A << 9 | $A >> 23 & 0x1ff); - } - for ($i = 0; $i < 256; ++$i) { - $S0[$i] = $m0[$q0[$q0[$q1[$i] ^ $s8] ^ $s4] ^ $s0]; - $S1[$i] = $m1[$q0[$q1[$q1[$i] ^ $s9] ^ $s5] ^ $s1]; - $S2[$i] = $m2[$q1[$q0[$q0[$i] ^ $sa] ^ $s6] ^ $s2]; - $S3[$i] = $m3[$q1[$q1[$q0[$i] ^ $sb] ^ $s7] ^ $s3]; - } - break; - default: // 32 - list($sf, $se, $sd, $sc) = $this->_mdsrem($le_longs[1], $le_longs[2]); - list($sb, $sa, $s9, $s8) = $this->_mdsrem($le_longs[3], $le_longs[4]); - list($s7, $s6, $s5, $s4) = $this->_mdsrem($le_longs[5], $le_longs[6]); - list($s3, $s2, $s1, $s0) = $this->_mdsrem($le_longs[7], $le_longs[8]); - for ($i = 0, $j = 1; $i < 40; $i+= 2, $j+= 2) { - $A = $m0[$q0[$q0[$q1[$q1[$i] ^ $key[25]] ^ $key[17]] ^ $key[ 9]] ^ $key[1]] ^ - $m1[$q0[$q1[$q1[$q0[$i] ^ $key[26]] ^ $key[18]] ^ $key[10]] ^ $key[2]] ^ - $m2[$q1[$q0[$q0[$q0[$i] ^ $key[27]] ^ $key[19]] ^ $key[11]] ^ $key[3]] ^ - $m3[$q1[$q1[$q0[$q1[$i] ^ $key[28]] ^ $key[20]] ^ $key[12]] ^ $key[4]]; - $B = $m0[$q0[$q0[$q1[$q1[$j] ^ $key[29]] ^ $key[21]] ^ $key[13]] ^ $key[5]] ^ - $m1[$q0[$q1[$q1[$q0[$j] ^ $key[30]] ^ $key[22]] ^ $key[14]] ^ $key[6]] ^ - $m2[$q1[$q0[$q0[$q0[$j] ^ $key[31]] ^ $key[23]] ^ $key[15]] ^ $key[7]] ^ - $m3[$q1[$q1[$q0[$q1[$j] ^ $key[32]] ^ $key[24]] ^ $key[16]] ^ $key[8]]; - $B = ($B << 8) | ($B >> 24 & 0xff); - $A = $this->safe_intval($A + $B); - $K[] = $A; - $A = $this->safe_intval($A + $B); - $K[] = ($A << 9 | $A >> 23 & 0x1ff); - } - for ($i = 0; $i < 256; ++$i) { - $S0[$i] = $m0[$q0[$q0[$q1[$q1[$i] ^ $sc] ^ $s8] ^ $s4] ^ $s0]; - $S1[$i] = $m1[$q0[$q1[$q1[$q0[$i] ^ $sd] ^ $s9] ^ $s5] ^ $s1]; - $S2[$i] = $m2[$q1[$q0[$q0[$q0[$i] ^ $se] ^ $sa] ^ $s6] ^ $s2]; - $S3[$i] = $m3[$q1[$q1[$q0[$q1[$i] ^ $sf] ^ $sb] ^ $s7] ^ $s3]; - } - } - - $this->K = $K; - $this->S0 = $S0; - $this->S1 = $S1; - $this->S2 = $S2; - $this->S3 = $S3; - } - - /** - * _mdsrem function using by the twofish cipher algorithm - * - * @access private - * @param string $A - * @param string $B - * @return array - */ - function _mdsrem($A, $B) - { - // No gain by unrolling this loop. - for ($i = 0; $i < 8; ++$i) { - // Get most significant coefficient. - $t = 0xff & ($B >> 24); - - // Shift the others up. - $B = ($B << 8) | (0xff & ($A >> 24)); - $A<<= 8; - - $u = $t << 1; - - // Subtract the modular polynomial on overflow. - if ($t & 0x80) { - $u^= 0x14d; - } - - // Remove t * (a * x^2 + 1). - $B ^= $t ^ ($u << 16); - - // Form u = a*t + t/a = t*(a + 1/a). - $u^= 0x7fffffff & ($t >> 1); - - // Add the modular polynomial on underflow. - if ($t & 0x01) { - $u^= 0xa6 ; - } - - // Remove t * (a + 1/a) * (x^3 + x). - $B^= ($u << 24) | ($u << 8); - } - - return array( - 0xff & $B >> 24, - 0xff & $B >> 16, - 0xff & $B >> 8, - 0xff & $B); - } - - /** - * Encrypts a block - * - * @access private - * @param string $in - * @return string - */ - function _encryptBlock($in) - { - $S0 = $this->S0; - $S1 = $this->S1; - $S2 = $this->S2; - $S3 = $this->S3; - $K = $this->K; - - $in = unpack("V4", $in); - $R0 = $K[0] ^ $in[1]; - $R1 = $K[1] ^ $in[2]; - $R2 = $K[2] ^ $in[3]; - $R3 = $K[3] ^ $in[4]; - - $ki = 7; - while ($ki < 39) { - $t0 = $S0[ $R0 & 0xff] ^ - $S1[($R0 >> 8) & 0xff] ^ - $S2[($R0 >> 16) & 0xff] ^ - $S3[($R0 >> 24) & 0xff]; - $t1 = $S0[($R1 >> 24) & 0xff] ^ - $S1[ $R1 & 0xff] ^ - $S2[($R1 >> 8) & 0xff] ^ - $S3[($R1 >> 16) & 0xff]; - $R2^= $this->safe_intval($t0 + $t1 + $K[++$ki]); - $R2 = ($R2 >> 1 & 0x7fffffff) | ($R2 << 31); - $R3 = ((($R3 >> 31) & 1) | ($R3 << 1)) ^ $this->safe_intval($t0 + ($t1 << 1) + $K[++$ki]); - - $t0 = $S0[ $R2 & 0xff] ^ - $S1[($R2 >> 8) & 0xff] ^ - $S2[($R2 >> 16) & 0xff] ^ - $S3[($R2 >> 24) & 0xff]; - $t1 = $S0[($R3 >> 24) & 0xff] ^ - $S1[ $R3 & 0xff] ^ - $S2[($R3 >> 8) & 0xff] ^ - $S3[($R3 >> 16) & 0xff]; - $R0^= $this->safe_intval($t0 + $t1 + $K[++$ki]); - $R0 = ($R0 >> 1 & 0x7fffffff) | ($R0 << 31); - $R1 = ((($R1 >> 31) & 1) | ($R1 << 1)) ^ $this->safe_intval($t0 + ($t1 << 1) + $K[++$ki]); - } - - // @codingStandardsIgnoreStart - return pack("V4", $K[4] ^ $R2, - $K[5] ^ $R3, - $K[6] ^ $R0, - $K[7] ^ $R1); - // @codingStandardsIgnoreEnd - } - - /** - * Decrypts a block - * - * @access private - * @param string $in - * @return string - */ - function _decryptBlock($in) - { - $S0 = $this->S0; - $S1 = $this->S1; - $S2 = $this->S2; - $S3 = $this->S3; - $K = $this->K; - - $in = unpack("V4", $in); - $R0 = $K[4] ^ $in[1]; - $R1 = $K[5] ^ $in[2]; - $R2 = $K[6] ^ $in[3]; - $R3 = $K[7] ^ $in[4]; - - $ki = 40; - while ($ki > 8) { - $t0 = $S0[$R0 & 0xff] ^ - $S1[$R0 >> 8 & 0xff] ^ - $S2[$R0 >> 16 & 0xff] ^ - $S3[$R0 >> 24 & 0xff]; - $t1 = $S0[$R1 >> 24 & 0xff] ^ - $S1[$R1 & 0xff] ^ - $S2[$R1 >> 8 & 0xff] ^ - $S3[$R1 >> 16 & 0xff]; - $R3^= $this->safe_intval($t0 + ($t1 << 1) + $K[--$ki]); - $R3 = $R3 >> 1 & 0x7fffffff | $R3 << 31; - $R2 = ($R2 >> 31 & 0x1 | $R2 << 1) ^ $this->safe_intval($t0 + $t1 + $K[--$ki]); - - $t0 = $S0[$R2 & 0xff] ^ - $S1[$R2 >> 8 & 0xff] ^ - $S2[$R2 >> 16 & 0xff] ^ - $S3[$R2 >> 24 & 0xff]; - $t1 = $S0[$R3 >> 24 & 0xff] ^ - $S1[$R3 & 0xff] ^ - $S2[$R3 >> 8 & 0xff] ^ - $S3[$R3 >> 16 & 0xff]; - $R1^= $this->safe_intval($t0 + ($t1 << 1) + $K[--$ki]); - $R1 = $R1 >> 1 & 0x7fffffff | $R1 << 31; - $R0 = ($R0 >> 31 & 0x1 | $R0 << 1) ^ $this->safe_intval($t0 + $t1 + $K[--$ki]); - } - - // @codingStandardsIgnoreStart - return pack("V4", $K[0] ^ $R2, - $K[1] ^ $R3, - $K[2] ^ $R0, - $K[3] ^ $R1); - // @codingStandardsIgnoreEnd - } - - /** - * Setup the performance-optimized function for de/encrypt() - * - * @see \phpseclib\Crypt\Base::_setupInlineCrypt() - * @access private - */ - function _setupInlineCrypt() - { - $lambda_functions =& self::_getLambdaFunctions(); - - // Max. 10 Ultra-Hi-optimized inline-crypt functions. After that, we'll (still) create very fast code, but not the ultimate fast one. - // (Currently, for Crypt_Twofish, one generated $lambda_function cost on php5.5@32bit ~140kb unfreeable mem and ~240kb on php5.5@64bit) - $gen_hi_opt_code = (bool)(count($lambda_functions) < 10); - - // Generation of a unique hash for our generated code - $code_hash = "Crypt_Twofish, {$this->mode}"; - if ($gen_hi_opt_code) { - $code_hash = str_pad($code_hash, 32) . $this->_hashInlineCryptFunction($this->key); - } - - $safeint = $this->safe_intval_inline(); - - if (!isset($lambda_functions[$code_hash])) { - switch (true) { - case $gen_hi_opt_code: - $K = $this->K; - $init_crypt = ' - static $S0, $S1, $S2, $S3; - if (!$S0) { - for ($i = 0; $i < 256; ++$i) { - $S0[] = (int)$self->S0[$i]; - $S1[] = (int)$self->S1[$i]; - $S2[] = (int)$self->S2[$i]; - $S3[] = (int)$self->S3[$i]; - } - } - '; - break; - default: - $K = array(); - for ($i = 0; $i < 40; ++$i) { - $K[] = '$K_' . $i; - } - $init_crypt = ' - $S0 = $self->S0; - $S1 = $self->S1; - $S2 = $self->S2; - $S3 = $self->S3; - list(' . implode(',', $K) . ') = $self->K; - '; - } - - // Generating encrypt code: - $encrypt_block = ' - $in = unpack("V4", $in); - $R0 = '.$K[0].' ^ $in[1]; - $R1 = '.$K[1].' ^ $in[2]; - $R2 = '.$K[2].' ^ $in[3]; - $R3 = '.$K[3].' ^ $in[4]; - '; - for ($ki = 7, $i = 0; $i < 8; ++$i) { - $encrypt_block.= ' - $t0 = $S0[ $R0 & 0xff] ^ - $S1[($R0 >> 8) & 0xff] ^ - $S2[($R0 >> 16) & 0xff] ^ - $S3[($R0 >> 24) & 0xff]; - $t1 = $S0[($R1 >> 24) & 0xff] ^ - $S1[ $R1 & 0xff] ^ - $S2[($R1 >> 8) & 0xff] ^ - $S3[($R1 >> 16) & 0xff]; - $R2^= ' . sprintf($safeint, '$t0 + $t1 + ' . $K[++$ki]) . '; - $R2 = ($R2 >> 1 & 0x7fffffff) | ($R2 << 31); - $R3 = ((($R3 >> 31) & 1) | ($R3 << 1)) ^ ' . sprintf($safeint, '($t0 + ($t1 << 1) + ' . $K[++$ki] . ')') . '; - - $t0 = $S0[ $R2 & 0xff] ^ - $S1[($R2 >> 8) & 0xff] ^ - $S2[($R2 >> 16) & 0xff] ^ - $S3[($R2 >> 24) & 0xff]; - $t1 = $S0[($R3 >> 24) & 0xff] ^ - $S1[ $R3 & 0xff] ^ - $S2[($R3 >> 8) & 0xff] ^ - $S3[($R3 >> 16) & 0xff]; - $R0^= ' . sprintf($safeint, '($t0 + $t1 + ' . $K[++$ki] . ')') . '; - $R0 = ($R0 >> 1 & 0x7fffffff) | ($R0 << 31); - $R1 = ((($R1 >> 31) & 1) | ($R1 << 1)) ^ ' . sprintf($safeint, '($t0 + ($t1 << 1) + ' . $K[++$ki] . ')') . '; - '; - } - $encrypt_block.= ' - $in = pack("V4", ' . $K[4] . ' ^ $R2, - ' . $K[5] . ' ^ $R3, - ' . $K[6] . ' ^ $R0, - ' . $K[7] . ' ^ $R1); - '; - - // Generating decrypt code: - $decrypt_block = ' - $in = unpack("V4", $in); - $R0 = '.$K[4].' ^ $in[1]; - $R1 = '.$K[5].' ^ $in[2]; - $R2 = '.$K[6].' ^ $in[3]; - $R3 = '.$K[7].' ^ $in[4]; - '; - for ($ki = 40, $i = 0; $i < 8; ++$i) { - $decrypt_block.= ' - $t0 = $S0[$R0 & 0xff] ^ - $S1[$R0 >> 8 & 0xff] ^ - $S2[$R0 >> 16 & 0xff] ^ - $S3[$R0 >> 24 & 0xff]; - $t1 = $S0[$R1 >> 24 & 0xff] ^ - $S1[$R1 & 0xff] ^ - $S2[$R1 >> 8 & 0xff] ^ - $S3[$R1 >> 16 & 0xff]; - $R3^= ' . sprintf($safeint, '$t0 + ($t1 << 1) + ' . $K[--$ki]) . '; - $R3 = $R3 >> 1 & 0x7fffffff | $R3 << 31; - $R2 = ($R2 >> 31 & 0x1 | $R2 << 1) ^ ' . sprintf($safeint, '($t0 + $t1 + '.$K[--$ki] . ')') . '; - - $t0 = $S0[$R2 & 0xff] ^ - $S1[$R2 >> 8 & 0xff] ^ - $S2[$R2 >> 16 & 0xff] ^ - $S3[$R2 >> 24 & 0xff]; - $t1 = $S0[$R3 >> 24 & 0xff] ^ - $S1[$R3 & 0xff] ^ - $S2[$R3 >> 8 & 0xff] ^ - $S3[$R3 >> 16 & 0xff]; - $R1^= ' . sprintf($safeint, '$t0 + ($t1 << 1) + ' . $K[--$ki]) . '; - $R1 = $R1 >> 1 & 0x7fffffff | $R1 << 31; - $R0 = ($R0 >> 31 & 0x1 | $R0 << 1) ^ ' . sprintf($safeint, '($t0 + $t1 + '.$K[--$ki] . ')') . '; - '; - } - $decrypt_block.= ' - $in = pack("V4", ' . $K[0] . ' ^ $R2, - ' . $K[1] . ' ^ $R3, - ' . $K[2] . ' ^ $R0, - ' . $K[3] . ' ^ $R1); - '; - - $lambda_functions[$code_hash] = $this->_createInlineCryptFunction( - array( - 'init_crypt' => $init_crypt, - 'init_encrypt' => '', - 'init_decrypt' => '', - 'encrypt_block' => $encrypt_block, - 'decrypt_block' => $decrypt_block - ) - ); - } - $this->inline_crypt = $lambda_functions[$code_hash]; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/File/ANSI.php b/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/File/ANSI.php deleted file mode 100644 index 5ff1f2ea..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/File/ANSI.php +++ /dev/null @@ -1,577 +0,0 @@ - - * @copyright 2012 Jim Wigginton - * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @link http://phpseclib.sourceforge.net - */ - -namespace phpseclib\File; - -/** - * Pure-PHP ANSI Decoder - * - * @package ANSI - * @author Jim Wigginton - * @access public - */ -class ANSI -{ - /** - * Max Width - * - * @var int - * @access private - */ - var $max_x; - - /** - * Max Height - * - * @var int - * @access private - */ - var $max_y; - - /** - * Max History - * - * @var int - * @access private - */ - var $max_history; - - /** - * History - * - * @var array - * @access private - */ - var $history; - - /** - * History Attributes - * - * @var array - * @access private - */ - var $history_attrs; - - /** - * Current Column - * - * @var int - * @access private - */ - var $x; - - /** - * Current Row - * - * @var int - * @access private - */ - var $y; - - /** - * Old Column - * - * @var int - * @access private - */ - var $old_x; - - /** - * Old Row - * - * @var int - * @access private - */ - var $old_y; - - /** - * An empty attribute cell - * - * @var object - * @access private - */ - var $base_attr_cell; - - /** - * The current attribute cell - * - * @var object - * @access private - */ - var $attr_cell; - - /** - * An empty attribute row - * - * @var array - * @access private - */ - var $attr_row; - - /** - * The current screen text - * - * @var array - * @access private - */ - var $screen; - - /** - * The current screen attributes - * - * @var array - * @access private - */ - var $attrs; - - /** - * Current ANSI code - * - * @var string - * @access private - */ - var $ansi; - - /** - * Tokenization - * - * @var array - * @access private - */ - var $tokenization; - - /** - * Default Constructor. - * - * @return \phpseclib\File\ANSI - * @access public - */ - function __construct() - { - $attr_cell = new \stdClass(); - $attr_cell->bold = false; - $attr_cell->underline = false; - $attr_cell->blink = false; - $attr_cell->background = 'black'; - $attr_cell->foreground = 'white'; - $attr_cell->reverse = false; - $this->base_attr_cell = clone $attr_cell; - $this->attr_cell = clone $attr_cell; - - $this->setHistory(200); - $this->setDimensions(80, 24); - } - - /** - * Set terminal width and height - * - * Resets the screen as well - * - * @param int $x - * @param int $y - * @access public - */ - function setDimensions($x, $y) - { - $this->max_x = $x - 1; - $this->max_y = $y - 1; - $this->x = $this->y = 0; - $this->history = $this->history_attrs = array(); - $this->attr_row = array_fill(0, $this->max_x + 2, $this->base_attr_cell); - $this->screen = array_fill(0, $this->max_y + 1, ''); - $this->attrs = array_fill(0, $this->max_y + 1, $this->attr_row); - $this->ansi = ''; - } - - /** - * Set the number of lines that should be logged past the terminal height - * - * @param int $x - * @param int $y - * @access public - */ - function setHistory($history) - { - $this->max_history = $history; - } - - /** - * Load a string - * - * @param string $source - * @access public - */ - function loadString($source) - { - $this->setDimensions($this->max_x + 1, $this->max_y + 1); - $this->appendString($source); - } - - /** - * Appdend a string - * - * @param string $source - * @access public - */ - function appendString($source) - { - $this->tokenization = array(''); - for ($i = 0; $i < strlen($source); $i++) { - if (strlen($this->ansi)) { - $this->ansi.= $source[$i]; - $chr = ord($source[$i]); - // http://en.wikipedia.org/wiki/ANSI_escape_code#Sequence_elements - // single character CSI's not currently supported - switch (true) { - case $this->ansi == "\x1B=": - $this->ansi = ''; - continue 2; - case strlen($this->ansi) == 2 && $chr >= 64 && $chr <= 95 && $chr != ord('['): - case strlen($this->ansi) > 2 && $chr >= 64 && $chr <= 126: - break; - default: - continue 2; - } - $this->tokenization[] = $this->ansi; - $this->tokenization[] = ''; - // http://ascii-table.com/ansi-escape-sequences-vt-100.php - switch ($this->ansi) { - case "\x1B[H": // Move cursor to upper left corner - $this->old_x = $this->x; - $this->old_y = $this->y; - $this->x = $this->y = 0; - break; - case "\x1B[J": // Clear screen from cursor down - $this->history = array_merge($this->history, array_slice(array_splice($this->screen, $this->y + 1), 0, $this->old_y)); - $this->screen = array_merge($this->screen, array_fill($this->y, $this->max_y, '')); - - $this->history_attrs = array_merge($this->history_attrs, array_slice(array_splice($this->attrs, $this->y + 1), 0, $this->old_y)); - $this->attrs = array_merge($this->attrs, array_fill($this->y, $this->max_y, $this->attr_row)); - - if (count($this->history) == $this->max_history) { - array_shift($this->history); - array_shift($this->history_attrs); - } - case "\x1B[K": // Clear screen from cursor right - $this->screen[$this->y] = substr($this->screen[$this->y], 0, $this->x); - - array_splice($this->attrs[$this->y], $this->x + 1, $this->max_x - $this->x, array_fill($this->x, $this->max_x - $this->x - 1, $this->base_attr_cell)); - break; - case "\x1B[2K": // Clear entire line - $this->screen[$this->y] = str_repeat(' ', $this->x); - $this->attrs[$this->y] = $this->attr_row; - break; - case "\x1B[?1h": // set cursor key to application - case "\x1B[?25h": // show the cursor - case "\x1B(B": // set united states g0 character set - break; - case "\x1BE": // Move to next line - $this->_newLine(); - $this->x = 0; - break; - default: - switch (true) { - case preg_match('#\x1B\[(\d+)B#', $this->ansi, $match): // Move cursor down n lines - $this->old_y = $this->y; - $this->y+= $match[1]; - break; - case preg_match('#\x1B\[(\d+);(\d+)H#', $this->ansi, $match): // Move cursor to screen location v,h - $this->old_x = $this->x; - $this->old_y = $this->y; - $this->x = $match[2] - 1; - $this->y = $match[1] - 1; - break; - case preg_match('#\x1B\[(\d+)C#', $this->ansi, $match): // Move cursor right n lines - $this->old_x = $this->x; - $this->x+= $match[1]; - break; - case preg_match('#\x1B\[(\d+)D#', $this->ansi, $match): // Move cursor left n lines - $this->old_x = $this->x; - $this->x-= $match[1]; - if ($this->x < 0) { - $this->x = 0; - } - break; - case preg_match('#\x1B\[(\d+);(\d+)r#', $this->ansi, $match): // Set top and bottom lines of a window - break; - case preg_match('#\x1B\[(\d*(?:;\d*)*)m#', $this->ansi, $match): // character attributes - $attr_cell = &$this->attr_cell; - $mods = explode(';', $match[1]); - foreach ($mods as $mod) { - switch ($mod) { - case 0: // Turn off character attributes - $attr_cell = clone $this->base_attr_cell; - break; - case 1: // Turn bold mode on - $attr_cell->bold = true; - break; - case 4: // Turn underline mode on - $attr_cell->underline = true; - break; - case 5: // Turn blinking mode on - $attr_cell->blink = true; - break; - case 7: // Turn reverse video on - $attr_cell->reverse = !$attr_cell->reverse; - $temp = $attr_cell->background; - $attr_cell->background = $attr_cell->foreground; - $attr_cell->foreground = $temp; - break; - default: // set colors - //$front = $attr_cell->reverse ? &$attr_cell->background : &$attr_cell->foreground; - $front = &$attr_cell->{ $attr_cell->reverse ? 'background' : 'foreground' }; - //$back = $attr_cell->reverse ? &$attr_cell->foreground : &$attr_cell->background; - $back = &$attr_cell->{ $attr_cell->reverse ? 'foreground' : 'background' }; - switch ($mod) { - // @codingStandardsIgnoreStart - case 30: $front = 'black'; break; - case 31: $front = 'red'; break; - case 32: $front = 'green'; break; - case 33: $front = 'yellow'; break; - case 34: $front = 'blue'; break; - case 35: $front = 'magenta'; break; - case 36: $front = 'cyan'; break; - case 37: $front = 'white'; break; - - case 40: $back = 'black'; break; - case 41: $back = 'red'; break; - case 42: $back = 'green'; break; - case 43: $back = 'yellow'; break; - case 44: $back = 'blue'; break; - case 45: $back = 'magenta'; break; - case 46: $back = 'cyan'; break; - case 47: $back = 'white'; break; - // @codingStandardsIgnoreEnd - - default: - //user_error('Unsupported attribute: ' . $mod); - $this->ansi = ''; - break 2; - } - } - } - break; - default: - //user_error("{$this->ansi} is unsupported\r\n"); - } - } - $this->ansi = ''; - continue; - } - - $this->tokenization[count($this->tokenization) - 1].= $source[$i]; - switch ($source[$i]) { - case "\r": - $this->x = 0; - break; - case "\n": - $this->_newLine(); - break; - case "\x08": // backspace - if ($this->x) { - $this->x--; - $this->attrs[$this->y][$this->x] = clone $this->base_attr_cell; - $this->screen[$this->y] = substr_replace( - $this->screen[$this->y], - $source[$i], - $this->x, - 1 - ); - } - break; - case "\x0F": // shift - break; - case "\x1B": // start ANSI escape code - $this->tokenization[count($this->tokenization) - 1] = substr($this->tokenization[count($this->tokenization) - 1], 0, -1); - //if (!strlen($this->tokenization[count($this->tokenization) - 1])) { - // array_pop($this->tokenization); - //} - $this->ansi.= "\x1B"; - break; - default: - $this->attrs[$this->y][$this->x] = clone $this->attr_cell; - if ($this->x > strlen($this->screen[$this->y])) { - $this->screen[$this->y] = str_repeat(' ', $this->x); - } - $this->screen[$this->y] = substr_replace( - $this->screen[$this->y], - $source[$i], - $this->x, - 1 - ); - - if ($this->x > $this->max_x) { - $this->x = 0; - $this->_newLine(); - } else { - $this->x++; - } - } - } - } - - /** - * Add a new line - * - * Also update the $this->screen and $this->history buffers - * - * @access private - */ - function _newLine() - { - //if ($this->y < $this->max_y) { - // $this->y++; - //} - - while ($this->y >= $this->max_y) { - $this->history = array_merge($this->history, array(array_shift($this->screen))); - $this->screen[] = ''; - - $this->history_attrs = array_merge($this->history_attrs, array(array_shift($this->attrs))); - $this->attrs[] = $this->attr_row; - - if (count($this->history) >= $this->max_history) { - array_shift($this->history); - array_shift($this->history_attrs); - } - - $this->y--; - } - $this->y++; - } - - /** - * Returns the current coordinate without preformating - * - * @access private - * @return string - */ - function _processCoordinate($last_attr, $cur_attr, $char) - { - $output = ''; - - if ($last_attr != $cur_attr) { - $close = $open = ''; - if ($last_attr->foreground != $cur_attr->foreground) { - if ($cur_attr->foreground != 'white') { - $open.= ''; - } - if ($last_attr->foreground != 'white') { - $close = '' . $close; - } - } - if ($last_attr->background != $cur_attr->background) { - if ($cur_attr->background != 'black') { - $open.= ''; - } - if ($last_attr->background != 'black') { - $close = '' . $close; - } - } - if ($last_attr->bold != $cur_attr->bold) { - if ($cur_attr->bold) { - $open.= ''; - } else { - $close = '' . $close; - } - } - if ($last_attr->underline != $cur_attr->underline) { - if ($cur_attr->underline) { - $open.= ''; - } else { - $close = '' . $close; - } - } - if ($last_attr->blink != $cur_attr->blink) { - if ($cur_attr->blink) { - $open.= ''; - } else { - $close = '' . $close; - } - } - $output.= $close . $open; - } - - $output.= htmlspecialchars($char); - - return $output; - } - - /** - * Returns the current screen without preformating - * - * @access private - * @return string - */ - function _getScreen() - { - $output = ''; - $last_attr = $this->base_attr_cell; - for ($i = 0; $i <= $this->max_y; $i++) { - for ($j = 0; $j <= $this->max_x; $j++) { - $cur_attr = $this->attrs[$i][$j]; - $output.= $this->_processCoordinate($last_attr, $cur_attr, isset($this->screen[$i][$j]) ? $this->screen[$i][$j] : ''); - $last_attr = $this->attrs[$i][$j]; - } - $output.= "\r\n"; - } - $output = substr($output, 0, -2); - // close any remaining open tags - $output.= $this->_processCoordinate($last_attr, $this->base_attr_cell, ''); - return rtrim($output); - } - - /** - * Returns the current screen - * - * @access public - * @return string - */ - function getScreen() - { - return '
' . $this->_getScreen() . '
'; - } - - /** - * Returns the current screen and the x previous lines - * - * @access public - * @return string - */ - function getHistory() - { - $scrollback = ''; - $last_attr = $this->base_attr_cell; - for ($i = 0; $i < count($this->history); $i++) { - for ($j = 0; $j <= $this->max_x + 1; $j++) { - $cur_attr = $this->history_attrs[$i][$j]; - $scrollback.= $this->_processCoordinate($last_attr, $cur_attr, isset($this->history[$i][$j]) ? $this->history[$i][$j] : ''); - $last_attr = $this->history_attrs[$i][$j]; - } - $scrollback.= "\r\n"; - } - $base_attr_cell = $this->base_attr_cell; - $this->base_attr_cell = $last_attr; - $scrollback.= $this->_getScreen(); - $this->base_attr_cell = $base_attr_cell; - - return '
' . $scrollback . '
'; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/File/ASN1.php b/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/File/ASN1.php deleted file mode 100644 index a304a000..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/File/ASN1.php +++ /dev/null @@ -1,1414 +0,0 @@ - - * @copyright 2012 Jim Wigginton - * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @link http://phpseclib.sourceforge.net - */ - -namespace phpseclib\File; - -use phpseclib\File\ASN1\Element; -use phpseclib\Math\BigInteger; -use DateTime; -use DateTimeZone; - -/** - * Pure-PHP ASN.1 Parser - * - * @package ASN1 - * @author Jim Wigginton - * @access public - */ -class ASN1 -{ - /**#@+ - * Tag Classes - * - * @access private - * @link http://www.itu.int/ITU-T/studygroups/com17/languages/X.690-0207.pdf#page=12 - */ - const CLASS_UNIVERSAL = 0; - const CLASS_APPLICATION = 1; - const CLASS_CONTEXT_SPECIFIC = 2; - const CLASS_PRIVATE = 3; - /**#@-*/ - - /**#@+ - * Tag Classes - * - * @access private - * @link http://www.obj-sys.com/asn1tutorial/node124.html - */ - const TYPE_BOOLEAN = 1; - const TYPE_INTEGER = 2; - const TYPE_BIT_STRING = 3; - const TYPE_OCTET_STRING = 4; - const TYPE_NULL = 5; - const TYPE_OBJECT_IDENTIFIER = 6; - //const TYPE_OBJECT_DESCRIPTOR = 7; - //const TYPE_INSTANCE_OF = 8; // EXTERNAL - const TYPE_REAL = 9; - const TYPE_ENUMERATED = 10; - //const TYPE_EMBEDDED = 11; - const TYPE_UTF8_STRING = 12; - //const TYPE_RELATIVE_OID = 13; - const TYPE_SEQUENCE = 16; // SEQUENCE OF - const TYPE_SET = 17; // SET OF - /**#@-*/ - /**#@+ - * More Tag Classes - * - * @access private - * @link http://www.obj-sys.com/asn1tutorial/node10.html - */ - const TYPE_NUMERIC_STRING = 18; - const TYPE_PRINTABLE_STRING = 19; - const TYPE_TELETEX_STRING = 20; // T61String - const TYPE_VIDEOTEX_STRING = 21; - const TYPE_IA5_STRING = 22; - const TYPE_UTC_TIME = 23; - const TYPE_GENERALIZED_TIME = 24; - const TYPE_GRAPHIC_STRING = 25; - const TYPE_VISIBLE_STRING = 26; // ISO646String - const TYPE_GENERAL_STRING = 27; - const TYPE_UNIVERSAL_STRING = 28; - //const TYPE_CHARACTER_STRING = 29; - const TYPE_BMP_STRING = 30; - /**#@-*/ - - /**#@+ - * Tag Aliases - * - * These tags are kinda place holders for other tags. - * - * @access private - */ - const TYPE_CHOICE = -1; - const TYPE_ANY = -2; - /**#@-*/ - - /** - * ASN.1 object identifier - * - * @var array - * @access private - * @link http://en.wikipedia.org/wiki/Object_identifier - */ - var $oids = array(); - - /** - * Default date format - * - * @var string - * @access private - * @link http://php.net/class.datetime - */ - var $format = 'D, d M Y H:i:s O'; - - /** - * Default date format - * - * @var array - * @access private - * @see self::setTimeFormat() - * @see self::asn1map() - * @link http://php.net/class.datetime - */ - var $encoded; - - /** - * Filters - * - * If the mapping type is self::TYPE_ANY what do we actually encode it as? - * - * @var array - * @access private - * @see self::_encode_der() - */ - var $filters; - - /** - * Type mapping table for the ANY type. - * - * Structured or unknown types are mapped to a \phpseclib\File\ASN1\Element. - * Unambiguous types get the direct mapping (int/real/bool). - * Others are mapped as a choice, with an extra indexing level. - * - * @var array - * @access public - */ - var $ANYmap = array( - self::TYPE_BOOLEAN => true, - self::TYPE_INTEGER => true, - self::TYPE_BIT_STRING => 'bitString', - self::TYPE_OCTET_STRING => 'octetString', - self::TYPE_NULL => 'null', - self::TYPE_OBJECT_IDENTIFIER => 'objectIdentifier', - self::TYPE_REAL => true, - self::TYPE_ENUMERATED => 'enumerated', - self::TYPE_UTF8_STRING => 'utf8String', - self::TYPE_NUMERIC_STRING => 'numericString', - self::TYPE_PRINTABLE_STRING => 'printableString', - self::TYPE_TELETEX_STRING => 'teletexString', - self::TYPE_VIDEOTEX_STRING => 'videotexString', - self::TYPE_IA5_STRING => 'ia5String', - self::TYPE_UTC_TIME => 'utcTime', - self::TYPE_GENERALIZED_TIME => 'generalTime', - self::TYPE_GRAPHIC_STRING => 'graphicString', - self::TYPE_VISIBLE_STRING => 'visibleString', - self::TYPE_GENERAL_STRING => 'generalString', - self::TYPE_UNIVERSAL_STRING => 'universalString', - //self::TYPE_CHARACTER_STRING => 'characterString', - self::TYPE_BMP_STRING => 'bmpString' - ); - - /** - * String type to character size mapping table. - * - * Non-convertable types are absent from this table. - * size == 0 indicates variable length encoding. - * - * @var array - * @access public - */ - var $stringTypeSize = array( - self::TYPE_UTF8_STRING => 0, - self::TYPE_BMP_STRING => 2, - self::TYPE_UNIVERSAL_STRING => 4, - self::TYPE_PRINTABLE_STRING => 1, - self::TYPE_TELETEX_STRING => 1, - self::TYPE_IA5_STRING => 1, - self::TYPE_VISIBLE_STRING => 1, - ); - - /** - * Parse BER-encoding - * - * Serves a similar purpose to openssl's asn1parse - * - * @param string $encoded - * @return array - * @access public - */ - function decodeBER($encoded) - { - if ($encoded instanceof Element) { - $encoded = $encoded->element; - } - - $this->encoded = $encoded; - // encapsulate in an array for BC with the old decodeBER - return array($this->_decode_ber($encoded)); - } - - /** - * Parse BER-encoding (Helper function) - * - * Sometimes we want to get the BER encoding of a particular tag. $start lets us do that without having to reencode. - * $encoded is passed by reference for the recursive calls done for self::TYPE_BIT_STRING and - * self::TYPE_OCTET_STRING. In those cases, the indefinite length is used. - * - * @param string $encoded - * @param int $start - * @param int $encoded_pos - * @return array - * @access private - */ - function _decode_ber($encoded, $start = 0, $encoded_pos = 0) - { - $current = array('start' => $start); - - $type = ord($encoded[$encoded_pos++]); - $start++; - - $constructed = ($type >> 5) & 1; - - $tag = $type & 0x1F; - if ($tag == 0x1F) { - $tag = 0; - // process septets (since the eighth bit is ignored, it's not an octet) - do { - $temp = ord($encoded[$encoded_pos++]); - $loop = $temp >> 7; - $tag <<= 7; - $tag |= $temp & 0x7F; - $start++; - } while ($loop); - } - - // Length, as discussed in paragraph 8.1.3 of X.690-0207.pdf#page=13 - $length = ord($encoded[$encoded_pos++]); - $start++; - if ($length == 0x80) { // indefinite length - // "[A sender shall] use the indefinite form (see 8.1.3.6) if the encoding is constructed and is not all - // immediately available." -- paragraph 8.1.3.2.c - $length = strlen($encoded) - $encoded_pos; - } elseif ($length & 0x80) { // definite length, long form - // technically, the long form of the length can be represented by up to 126 octets (bytes), but we'll only - // support it up to four. - $length&= 0x7F; - $temp = substr($encoded, $encoded_pos, $length); - $encoded_pos += $length; - // tags of indefinte length don't really have a header length; this length includes the tag - $current+= array('headerlength' => $length + 2); - $start+= $length; - extract(unpack('Nlength', substr(str_pad($temp, 4, chr(0), STR_PAD_LEFT), -4))); - } else { - $current+= array('headerlength' => 2); - } - - if ($length > (strlen($encoded) - $encoded_pos)) { - return false; - } - - $content = substr($encoded, $encoded_pos, $length); - $content_pos = 0; - - // at this point $length can be overwritten. it's only accurate for definite length things as is - - /* Class is UNIVERSAL, APPLICATION, PRIVATE, or CONTEXT-SPECIFIC. The UNIVERSAL class is restricted to the ASN.1 - built-in types. It defines an application-independent data type that must be distinguishable from all other - data types. The other three classes are user defined. The APPLICATION class distinguishes data types that - have a wide, scattered use within a particular presentation context. PRIVATE distinguishes data types within - a particular organization or country. CONTEXT-SPECIFIC distinguishes members of a sequence or set, the - alternatives of a CHOICE, or universally tagged set members. Only the class number appears in braces for this - data type; the term CONTEXT-SPECIFIC does not appear. - - -- http://www.obj-sys.com/asn1tutorial/node12.html */ - $class = ($type >> 6) & 3; - switch ($class) { - case self::CLASS_APPLICATION: - case self::CLASS_PRIVATE: - case self::CLASS_CONTEXT_SPECIFIC: - if (!$constructed) { - return array( - 'type' => $class, - 'constant' => $tag, - 'content' => $content, - 'length' => $length + $start - $current['start'] - ); - } - - $newcontent = array(); - $remainingLength = $length; - while ($remainingLength > 0) { - $temp = $this->_decode_ber($content, $start, $content_pos); - if ($temp === false) { - break; - } - $length = $temp['length']; - // end-of-content octets - see paragraph 8.1.5 - if (substr($content, $content_pos + $length, 2) == "\0\0") { - $length+= 2; - $start+= $length; - $newcontent[] = $temp; - break; - } - $start+= $length; - $remainingLength-= $length; - $newcontent[] = $temp; - $content_pos += $length; - } - - return array( - 'type' => $class, - 'constant' => $tag, - // the array encapsulation is for BC with the old format - 'content' => $newcontent, - // the only time when $content['headerlength'] isn't defined is when the length is indefinite. - // the absence of $content['headerlength'] is how we know if something is indefinite or not. - // technically, it could be defined to be 2 and then another indicator could be used but whatever. - 'length' => $start - $current['start'] - ) + $current; - } - - $current+= array('type' => $tag); - - // decode UNIVERSAL tags - switch ($tag) { - case self::TYPE_BOOLEAN: - // "The contents octets shall consist of a single octet." -- paragraph 8.2.1 - //if (strlen($content) != 1) { - // return false; - //} - $current['content'] = (bool) ord($content[$content_pos]); - break; - case self::TYPE_INTEGER: - case self::TYPE_ENUMERATED: - $current['content'] = new BigInteger(substr($content, $content_pos), -256); - break; - case self::TYPE_REAL: // not currently supported - return false; - case self::TYPE_BIT_STRING: - // The initial octet shall encode, as an unsigned binary integer with bit 1 as the least significant bit, - // the number of unused bits in the final subsequent octet. The number shall be in the range zero to - // seven. - if (!$constructed) { - $current['content'] = substr($content, $content_pos); - } else { - $temp = $this->_decode_ber($content, $start, $content_pos); - if ($temp === false) { - return false; - } - $length-= (strlen($content) - $content_pos); - $last = count($temp) - 1; - for ($i = 0; $i < $last; $i++) { - // all subtags should be bit strings - //if ($temp[$i]['type'] != self::TYPE_BIT_STRING) { - // return false; - //} - $current['content'].= substr($temp[$i]['content'], 1); - } - // all subtags should be bit strings - //if ($temp[$last]['type'] != self::TYPE_BIT_STRING) { - // return false; - //} - $current['content'] = $temp[$last]['content'][0] . $current['content'] . substr($temp[$i]['content'], 1); - } - break; - case self::TYPE_OCTET_STRING: - if (!$constructed) { - $current['content'] = substr($content, $content_pos); - } else { - $current['content'] = ''; - $length = 0; - while (substr($content, $content_pos, 2) != "\0\0") { - $temp = $this->_decode_ber($content, $length + $start, $content_pos); - if ($temp === false) { - return false; - } - $content_pos += $temp['length']; - // all subtags should be octet strings - //if ($temp['type'] != self::TYPE_OCTET_STRING) { - // return false; - //} - $current['content'].= $temp['content']; - $length+= $temp['length']; - } - if (substr($content, $content_pos, 2) == "\0\0") { - $length+= 2; // +2 for the EOC - } - } - break; - case self::TYPE_NULL: - // "The contents octets shall not contain any octets." -- paragraph 8.8.2 - //if (strlen($content)) { - // return false; - //} - break; - case self::TYPE_SEQUENCE: - case self::TYPE_SET: - $offset = 0; - $current['content'] = array(); - $content_len = strlen($content); - while ($content_pos < $content_len) { - // if indefinite length construction was used and we have an end-of-content string next - // see paragraphs 8.1.1.3, 8.1.3.2, 8.1.3.6, 8.1.5, and (for an example) 8.6.4.2 - if (!isset($current['headerlength']) && substr($content, $content_pos, 2) == "\0\0") { - $length = $offset + 2; // +2 for the EOC - break 2; - } - $temp = $this->_decode_ber($content, $start + $offset, $content_pos); - if ($temp === false) { - return false; - } - $content_pos += $temp['length']; - $current['content'][] = $temp; - $offset+= $temp['length']; - } - break; - case self::TYPE_OBJECT_IDENTIFIER: - $current['content'] = $this->_decodeOID(substr($content, $content_pos)); - break; - /* Each character string type shall be encoded as if it had been declared: - [UNIVERSAL x] IMPLICIT OCTET STRING - - -- X.690-0207.pdf#page=23 (paragraph 8.21.3) - - Per that, we're not going to do any validation. If there are any illegal characters in the string, - we don't really care */ - case self::TYPE_NUMERIC_STRING: - // 0,1,2,3,4,5,6,7,8,9, and space - case self::TYPE_PRINTABLE_STRING: - // Upper and lower case letters, digits, space, apostrophe, left/right parenthesis, plus sign, comma, - // hyphen, full stop, solidus, colon, equal sign, question mark - case self::TYPE_TELETEX_STRING: - // The Teletex character set in CCITT's T61, space, and delete - // see http://en.wikipedia.org/wiki/Teletex#Character_sets - case self::TYPE_VIDEOTEX_STRING: - // The Videotex character set in CCITT's T.100 and T.101, space, and delete - case self::TYPE_VISIBLE_STRING: - // Printing character sets of international ASCII, and space - case self::TYPE_IA5_STRING: - // International Alphabet 5 (International ASCII) - case self::TYPE_GRAPHIC_STRING: - // All registered G sets, and space - case self::TYPE_GENERAL_STRING: - // All registered C and G sets, space and delete - case self::TYPE_UTF8_STRING: - // ???? - case self::TYPE_BMP_STRING: - $current['content'] = substr($content, $content_pos); - break; - case self::TYPE_UTC_TIME: - case self::TYPE_GENERALIZED_TIME: - $current['content'] = $this->_decodeTime(substr($content, $content_pos), $tag); - default: - } - - $start+= $length; - - // ie. length is the length of the full TLV encoding - it's not just the length of the value - return $current + array('length' => $start - $current['start']); - } - - /** - * ASN.1 Map - * - * Provides an ASN.1 semantic mapping ($mapping) from a parsed BER-encoding to a human readable format. - * - * "Special" mappings may be applied on a per tag-name basis via $special. - * - * @param array $decoded - * @param array $mapping - * @param array $special - * @return array - * @access public - */ - function asn1map($decoded, $mapping, $special = array()) - { - if (!is_array($decoded)) { - return false; - } - - if (isset($mapping['explicit']) && is_array($decoded['content'])) { - $decoded = $decoded['content'][0]; - } - - switch (true) { - case $mapping['type'] == self::TYPE_ANY: - $intype = $decoded['type']; - if (isset($decoded['constant']) || !isset($this->ANYmap[$intype]) || (ord($this->encoded[$decoded['start']]) & 0x20)) { - return new Element(substr($this->encoded, $decoded['start'], $decoded['length'])); - } - $inmap = $this->ANYmap[$intype]; - if (is_string($inmap)) { - return array($inmap => $this->asn1map($decoded, array('type' => $intype) + $mapping, $special)); - } - break; - case $mapping['type'] == self::TYPE_CHOICE: - foreach ($mapping['children'] as $key => $option) { - switch (true) { - case isset($option['constant']) && $option['constant'] == $decoded['constant']: - case !isset($option['constant']) && $option['type'] == $decoded['type']: - $value = $this->asn1map($decoded, $option, $special); - break; - case !isset($option['constant']) && $option['type'] == self::TYPE_CHOICE: - $v = $this->asn1map($decoded, $option, $special); - if (isset($v)) { - $value = $v; - } - } - if (isset($value)) { - if (isset($special[$key])) { - $value = call_user_func($special[$key], $value); - } - return array($key => $value); - } - } - return null; - case isset($mapping['implicit']): - case isset($mapping['explicit']): - case $decoded['type'] == $mapping['type']: - break; - default: - // if $decoded['type'] and $mapping['type'] are both strings, but different types of strings, - // let it through - switch (true) { - case $decoded['type'] < 18: // self::TYPE_NUMERIC_STRING == 18 - case $decoded['type'] > 30: // self::TYPE_BMP_STRING == 30 - case $mapping['type'] < 18: - case $mapping['type'] > 30: - return null; - } - } - - if (isset($mapping['implicit'])) { - $decoded['type'] = $mapping['type']; - } - - switch ($decoded['type']) { - case self::TYPE_SEQUENCE: - $map = array(); - - // ignore the min and max - if (isset($mapping['min']) && isset($mapping['max'])) { - $child = $mapping['children']; - foreach ($decoded['content'] as $content) { - if (($map[] = $this->asn1map($content, $child, $special)) === null) { - return null; - } - } - - return $map; - } - - $n = count($decoded['content']); - $i = 0; - - foreach ($mapping['children'] as $key => $child) { - $maymatch = $i < $n; // Match only existing input. - if ($maymatch) { - $temp = $decoded['content'][$i]; - - if ($child['type'] != self::TYPE_CHOICE) { - // Get the mapping and input class & constant. - $childClass = $tempClass = self::CLASS_UNIVERSAL; - $constant = null; - if (isset($temp['constant'])) { - $tempClass = $temp['type']; - } - if (isset($child['class'])) { - $childClass = $child['class']; - $constant = $child['cast']; - } elseif (isset($child['constant'])) { - $childClass = self::CLASS_CONTEXT_SPECIFIC; - $constant = $child['constant']; - } - - if (isset($constant) && isset($temp['constant'])) { - // Can only match if constants and class match. - $maymatch = $constant == $temp['constant'] && $childClass == $tempClass; - } else { - // Can only match if no constant expected and type matches or is generic. - $maymatch = !isset($child['constant']) && array_search($child['type'], array($temp['type'], self::TYPE_ANY, self::TYPE_CHOICE)) !== false; - } - } - } - - if ($maymatch) { - // Attempt submapping. - $candidate = $this->asn1map($temp, $child, $special); - $maymatch = $candidate !== null; - } - - if ($maymatch) { - // Got the match: use it. - if (isset($special[$key])) { - $candidate = call_user_func($special[$key], $candidate); - } - $map[$key] = $candidate; - $i++; - } elseif (isset($child['default'])) { - $map[$key] = $child['default']; // Use default. - } elseif (!isset($child['optional'])) { - return null; // Syntax error. - } - } - - // Fail mapping if all input items have not been consumed. - return $i < $n ? null: $map; - - // the main diff between sets and sequences is the encapsulation of the foreach in another for loop - case self::TYPE_SET: - $map = array(); - - // ignore the min and max - if (isset($mapping['min']) && isset($mapping['max'])) { - $child = $mapping['children']; - foreach ($decoded['content'] as $content) { - if (($map[] = $this->asn1map($content, $child, $special)) === null) { - return null; - } - } - - return $map; - } - - for ($i = 0; $i < count($decoded['content']); $i++) { - $temp = $decoded['content'][$i]; - $tempClass = self::CLASS_UNIVERSAL; - if (isset($temp['constant'])) { - $tempClass = $temp['type']; - } - - foreach ($mapping['children'] as $key => $child) { - if (isset($map[$key])) { - continue; - } - $maymatch = true; - if ($child['type'] != self::TYPE_CHOICE) { - $childClass = self::CLASS_UNIVERSAL; - $constant = null; - if (isset($child['class'])) { - $childClass = $child['class']; - $constant = $child['cast']; - } elseif (isset($child['constant'])) { - $childClass = self::CLASS_CONTEXT_SPECIFIC; - $constant = $child['constant']; - } - - if (isset($constant) && isset($temp['constant'])) { - // Can only match if constants and class match. - $maymatch = $constant == $temp['constant'] && $childClass == $tempClass; - } else { - // Can only match if no constant expected and type matches or is generic. - $maymatch = !isset($child['constant']) && array_search($child['type'], array($temp['type'], self::TYPE_ANY, self::TYPE_CHOICE)) !== false; - } - } - - if ($maymatch) { - // Attempt submapping. - $candidate = $this->asn1map($temp, $child, $special); - $maymatch = $candidate !== null; - } - - if (!$maymatch) { - break; - } - - // Got the match: use it. - if (isset($special[$key])) { - $candidate = call_user_func($special[$key], $candidate); - } - $map[$key] = $candidate; - break; - } - } - - foreach ($mapping['children'] as $key => $child) { - if (!isset($map[$key])) { - if (isset($child['default'])) { - $map[$key] = $child['default']; - } elseif (!isset($child['optional'])) { - return null; - } - } - } - return $map; - case self::TYPE_OBJECT_IDENTIFIER: - return isset($this->oids[$decoded['content']]) ? $this->oids[$decoded['content']] : $decoded['content']; - case self::TYPE_UTC_TIME: - case self::TYPE_GENERALIZED_TIME: - // for explicitly tagged optional stuff - if (is_array($decoded['content'])) { - $decoded['content'] = $decoded['content'][0]['content']; - } - // for implicitly tagged optional stuff - // in theory, doing isset($mapping['implicit']) would work but malformed certs do exist - // in the wild that OpenSSL decodes without issue so we'll support them as well - if (!is_object($decoded['content'])) { - $decoded['content'] = $this->_decodeTime($decoded['content'], $decoded['type']); - } - return $decoded['content'] ? $decoded['content']->format($this->format) : false; - case self::TYPE_BIT_STRING: - if (isset($mapping['mapping'])) { - $offset = ord($decoded['content'][0]); - $size = (strlen($decoded['content']) - 1) * 8 - $offset; - /* - From X.680-0207.pdf#page=46 (21.7): - - "When a "NamedBitList" is used in defining a bitstring type ASN.1 encoding rules are free to add (or remove) - arbitrarily any trailing 0 bits to (or from) values that are being encoded or decoded. Application designers should - therefore ensure that different semantics are not associated with such values which differ only in the number of trailing - 0 bits." - */ - $bits = count($mapping['mapping']) == $size ? array() : array_fill(0, count($mapping['mapping']) - $size, false); - for ($i = strlen($decoded['content']) - 1; $i > 0; $i--) { - $current = ord($decoded['content'][$i]); - for ($j = $offset; $j < 8; $j++) { - $bits[] = (bool) ($current & (1 << $j)); - } - $offset = 0; - } - $values = array(); - $map = array_reverse($mapping['mapping']); - foreach ($map as $i => $value) { - if ($bits[$i]) { - $values[] = $value; - } - } - return $values; - } - case self::TYPE_OCTET_STRING: - return base64_encode($decoded['content']); - case self::TYPE_NULL: - return ''; - case self::TYPE_BOOLEAN: - return $decoded['content']; - case self::TYPE_NUMERIC_STRING: - case self::TYPE_PRINTABLE_STRING: - case self::TYPE_TELETEX_STRING: - case self::TYPE_VIDEOTEX_STRING: - case self::TYPE_IA5_STRING: - case self::TYPE_GRAPHIC_STRING: - case self::TYPE_VISIBLE_STRING: - case self::TYPE_GENERAL_STRING: - case self::TYPE_UNIVERSAL_STRING: - case self::TYPE_UTF8_STRING: - case self::TYPE_BMP_STRING: - return $decoded['content']; - case self::TYPE_INTEGER: - case self::TYPE_ENUMERATED: - $temp = $decoded['content']; - if (isset($mapping['implicit'])) { - $temp = new BigInteger($decoded['content'], -256); - } - if (isset($mapping['mapping'])) { - $temp = (int) $temp->toString(); - return isset($mapping['mapping'][$temp]) ? - $mapping['mapping'][$temp] : - false; - } - return $temp; - } - } - - /** - * ASN.1 Encode - * - * DER-encodes an ASN.1 semantic mapping ($mapping). Some libraries would probably call this function - * an ASN.1 compiler. - * - * "Special" mappings can be applied via $special. - * - * @param string $source - * @param string $mapping - * @param int $idx - * @return string - * @access public - */ - function encodeDER($source, $mapping, $special = array()) - { - $this->location = array(); - return $this->_encode_der($source, $mapping, null, $special); - } - - /** - * ASN.1 Encode (Helper function) - * - * @param string $source - * @param string $mapping - * @param int $idx - * @return string - * @access private - */ - function _encode_der($source, $mapping, $idx = null, $special = array()) - { - if ($source instanceof Element) { - return $source->element; - } - - // do not encode (implicitly optional) fields with value set to default - if (isset($mapping['default']) && $source === $mapping['default']) { - return ''; - } - - if (isset($idx)) { - if (isset($special[$idx])) { - $source = call_user_func($special[$idx], $source); - } - $this->location[] = $idx; - } - - $tag = $mapping['type']; - - switch ($tag) { - case self::TYPE_SET: // Children order is not important, thus process in sequence. - case self::TYPE_SEQUENCE: - $tag|= 0x20; // set the constructed bit - - // ignore the min and max - if (isset($mapping['min']) && isset($mapping['max'])) { - $value = array(); - $child = $mapping['children']; - - foreach ($source as $content) { - $temp = $this->_encode_der($content, $child, null, $special); - if ($temp === false) { - return false; - } - $value[]= $temp; - } - /* "The encodings of the component values of a set-of value shall appear in ascending order, the encodings being compared - as octet strings with the shorter components being padded at their trailing end with 0-octets. - NOTE - The padding octets are for comparison purposes only and do not appear in the encodings." - - -- sec 11.6 of http://www.itu.int/ITU-T/studygroups/com17/languages/X.690-0207.pdf */ - if ($mapping['type'] == self::TYPE_SET) { - sort($value); - } - $value = implode('', $value); - break; - } - - $value = ''; - foreach ($mapping['children'] as $key => $child) { - if (!array_key_exists($key, $source)) { - if (!isset($child['optional'])) { - return false; - } - continue; - } - - $temp = $this->_encode_der($source[$key], $child, $key, $special); - if ($temp === false) { - return false; - } - - // An empty child encoding means it has been optimized out. - // Else we should have at least one tag byte. - if ($temp === '') { - continue; - } - - // if isset($child['constant']) is true then isset($child['optional']) should be true as well - if (isset($child['constant'])) { - /* - From X.680-0207.pdf#page=58 (30.6): - - "The tagging construction specifies explicit tagging if any of the following holds: - ... - c) the "Tag Type" alternative is used and the value of "TagDefault" for the module is IMPLICIT TAGS or - AUTOMATIC TAGS, but the type defined by "Type" is an untagged choice type, an untagged open type, or - an untagged "DummyReference" (see ITU-T Rec. X.683 | ISO/IEC 8824-4, 8.3)." - */ - if (isset($child['explicit']) || $child['type'] == self::TYPE_CHOICE) { - $subtag = chr((self::CLASS_CONTEXT_SPECIFIC << 6) | 0x20 | $child['constant']); - $temp = $subtag . $this->_encodeLength(strlen($temp)) . $temp; - } else { - $subtag = chr((self::CLASS_CONTEXT_SPECIFIC << 6) | (ord($temp[0]) & 0x20) | $child['constant']); - $temp = $subtag . substr($temp, 1); - } - } - $value.= $temp; - } - break; - case self::TYPE_CHOICE: - $temp = false; - - foreach ($mapping['children'] as $key => $child) { - if (!isset($source[$key])) { - continue; - } - - $temp = $this->_encode_der($source[$key], $child, $key, $special); - if ($temp === false) { - return false; - } - - // An empty child encoding means it has been optimized out. - // Else we should have at least one tag byte. - if ($temp === '') { - continue; - } - - $tag = ord($temp[0]); - - // if isset($child['constant']) is true then isset($child['optional']) should be true as well - if (isset($child['constant'])) { - if (isset($child['explicit']) || $child['type'] == self::TYPE_CHOICE) { - $subtag = chr((self::CLASS_CONTEXT_SPECIFIC << 6) | 0x20 | $child['constant']); - $temp = $subtag . $this->_encodeLength(strlen($temp)) . $temp; - } else { - $subtag = chr((self::CLASS_CONTEXT_SPECIFIC << 6) | (ord($temp[0]) & 0x20) | $child['constant']); - $temp = $subtag . substr($temp, 1); - } - } - } - - if (isset($idx)) { - array_pop($this->location); - } - - if ($temp && isset($mapping['cast'])) { - $temp[0] = chr(($mapping['class'] << 6) | ($tag & 0x20) | $mapping['cast']); - } - - return $temp; - case self::TYPE_INTEGER: - case self::TYPE_ENUMERATED: - if (!isset($mapping['mapping'])) { - if (is_numeric($source)) { - $source = new BigInteger($source); - } - $value = $source->toBytes(true); - } else { - $value = array_search($source, $mapping['mapping']); - if ($value === false) { - return false; - } - $value = new BigInteger($value); - $value = $value->toBytes(true); - } - if (!strlen($value)) { - $value = chr(0); - } - break; - case self::TYPE_UTC_TIME: - case self::TYPE_GENERALIZED_TIME: - $format = $mapping['type'] == self::TYPE_UTC_TIME ? 'y' : 'Y'; - $format.= 'mdHis'; - $date = new DateTime($source, new DateTimeZone('GMT')); - $value = $date->format($format) . 'Z'; - break; - case self::TYPE_BIT_STRING: - if (isset($mapping['mapping'])) { - $bits = array_fill(0, count($mapping['mapping']), 0); - $size = 0; - for ($i = 0; $i < count($mapping['mapping']); $i++) { - if (in_array($mapping['mapping'][$i], $source)) { - $bits[$i] = 1; - $size = $i; - } - } - - if (isset($mapping['min']) && $mapping['min'] >= 1 && $size < $mapping['min']) { - $size = $mapping['min'] - 1; - } - - $offset = 8 - (($size + 1) & 7); - $offset = $offset !== 8 ? $offset : 0; - - $value = chr($offset); - - for ($i = $size + 1; $i < count($mapping['mapping']); $i++) { - unset($bits[$i]); - } - - $bits = implode('', array_pad($bits, $size + $offset + 1, 0)); - $bytes = explode(' ', rtrim(chunk_split($bits, 8, ' '))); - foreach ($bytes as $byte) { - $value.= chr(bindec($byte)); - } - - break; - } - case self::TYPE_OCTET_STRING: - /* The initial octet shall encode, as an unsigned binary integer with bit 1 as the least significant bit, - the number of unused bits in the final subsequent octet. The number shall be in the range zero to seven. - - -- http://www.itu.int/ITU-T/studygroups/com17/languages/X.690-0207.pdf#page=16 */ - $value = base64_decode($source); - break; - case self::TYPE_OBJECT_IDENTIFIER: - $value = $this->_encodeOID($source); - break; - case self::TYPE_ANY: - $loc = $this->location; - if (isset($idx)) { - array_pop($this->location); - } - - switch (true) { - case !isset($source): - return $this->_encode_der(null, array('type' => self::TYPE_NULL) + $mapping, null, $special); - case is_int($source): - case $source instanceof BigInteger: - return $this->_encode_der($source, array('type' => self::TYPE_INTEGER) + $mapping, null, $special); - case is_float($source): - return $this->_encode_der($source, array('type' => self::TYPE_REAL) + $mapping, null, $special); - case is_bool($source): - return $this->_encode_der($source, array('type' => self::TYPE_BOOLEAN) + $mapping, null, $special); - case is_array($source) && count($source) == 1: - $typename = implode('', array_keys($source)); - $outtype = array_search($typename, $this->ANYmap, true); - if ($outtype !== false) { - return $this->_encode_der($source[$typename], array('type' => $outtype) + $mapping, null, $special); - } - } - - $filters = $this->filters; - foreach ($loc as $part) { - if (!isset($filters[$part])) { - $filters = false; - break; - } - $filters = $filters[$part]; - } - if ($filters === false) { - user_error('No filters defined for ' . implode('/', $loc)); - return false; - } - return $this->_encode_der($source, $filters + $mapping, null, $special); - case self::TYPE_NULL: - $value = ''; - break; - case self::TYPE_NUMERIC_STRING: - case self::TYPE_TELETEX_STRING: - case self::TYPE_PRINTABLE_STRING: - case self::TYPE_UNIVERSAL_STRING: - case self::TYPE_UTF8_STRING: - case self::TYPE_BMP_STRING: - case self::TYPE_IA5_STRING: - case self::TYPE_VISIBLE_STRING: - case self::TYPE_VIDEOTEX_STRING: - case self::TYPE_GRAPHIC_STRING: - case self::TYPE_GENERAL_STRING: - $value = $source; - break; - case self::TYPE_BOOLEAN: - $value = $source ? "\xFF" : "\x00"; - break; - default: - user_error('Mapping provides no type definition for ' . implode('/', $this->location)); - return false; - } - - if (isset($idx)) { - array_pop($this->location); - } - - if (isset($mapping['cast'])) { - if (isset($mapping['explicit']) || $mapping['type'] == self::TYPE_CHOICE) { - $value = chr($tag) . $this->_encodeLength(strlen($value)) . $value; - $tag = ($mapping['class'] << 6) | 0x20 | $mapping['cast']; - } else { - $tag = ($mapping['class'] << 6) | (ord($temp[0]) & 0x20) | $mapping['cast']; - } - } - - return chr($tag) . $this->_encodeLength(strlen($value)) . $value; - } - - /** - * DER-encode the length - * - * DER supports lengths up to (2**8)**127, however, we'll only support lengths up to (2**8)**4. See - * {@link http://itu.int/ITU-T/studygroups/com17/languages/X.690-0207.pdf#p=13 X.690 paragraph 8.1.3} for more information. - * - * @access private - * @param int $length - * @return string - */ - function _encodeLength($length) - { - if ($length <= 0x7F) { - return chr($length); - } - - $temp = ltrim(pack('N', $length), chr(0)); - return pack('Ca*', 0x80 | strlen($temp), $temp); - } - - /** - * BER-decode the OID - * - * Called by _decode_ber() - * - * @access private - * @param string $content - * @return string - */ - function _decodeOID($content) - { - static $eighty; - if (!$eighty) { - $eighty = new BigInteger(80); - } - - $oid = array(); - $pos = 0; - $len = strlen($content); - $n = new BigInteger(); - while ($pos < $len) { - $temp = ord($content[$pos++]); - $n = $n->bitwise_leftShift(7); - $n = $n->bitwise_or(new BigInteger($temp & 0x7F)); - if (~$temp & 0x80) { - $oid[] = $n; - $n = new BigInteger(); - } - } - $part1 = array_shift($oid); - $first = floor(ord($content[0]) / 40); - /* - "This packing of the first two object identifier components recognizes that only three values are allocated from the root - node, and at most 39 subsequent values from nodes reached by X = 0 and X = 1." - - -- https://www.itu.int/ITU-T/studygroups/com17/languages/X.690-0207.pdf#page=22 - */ - if ($first <= 2) { // ie. 0 <= ord($content[0]) < 120 (0x78) - array_unshift($oid, ord($content[0]) % 40); - array_unshift($oid, $first); - } else { - array_unshift($oid, $part1->subtract($eighty)); - array_unshift($oid, 2); - } - - return implode('.', $oid); - } - - /** - * DER-encode the OID - * - * Called by _encode_der() - * - * @access private - * @param string $content - * @return string - */ - function _encodeOID($source) - { - static $mask, $zero, $forty; - if (!$mask) { - $mask = new BigInteger(0x7F); - $zero = new BigInteger(); - $forty = new BigInteger(40); - } - - $oid = preg_match('#(?:\d+\.)+#', $source) ? $source : array_search($source, $this->oids); - if ($oid === false) { - user_error('Invalid OID'); - return false; - } - $parts = explode('.', $oid); - $part1 = array_shift($parts); - $part2 = array_shift($parts); - - $first = new BigInteger($part1); - $first = $first->multiply($forty); - $first = $first->add(new BigInteger($part2)); - - array_unshift($parts, $first->toString()); - - $value = ''; - foreach ($parts as $part) { - if (!$part) { - $temp = "\0"; - } else { - $temp = ''; - $part = new BigInteger($part); - while (!$part->equals($zero)) { - $submask = $part->bitwise_and($mask); - $submask->setPrecision(8); - $temp = (chr(0x80) | $submask->toBytes()) . $temp; - $part = $part->bitwise_rightShift(7); - } - $temp[strlen($temp) - 1] = $temp[strlen($temp) - 1] & chr(0x7F); - } - $value.= $temp; - } - - return $value; - } - - /** - * BER-decode the time - * - * Called by _decode_ber() and in the case of implicit tags asn1map(). - * - * @access private - * @param string $content - * @param int $tag - * @return string - */ - function _decodeTime($content, $tag) - { - /* UTCTime: - http://tools.ietf.org/html/rfc5280#section-4.1.2.5.1 - http://www.obj-sys.com/asn1tutorial/node15.html - - GeneralizedTime: - http://tools.ietf.org/html/rfc5280#section-4.1.2.5.2 - http://www.obj-sys.com/asn1tutorial/node14.html */ - - $format = 'YmdHis'; - - if ($tag == self::TYPE_UTC_TIME) { - // https://www.itu.int/ITU-T/studygroups/com17/languages/X.690-0207.pdf#page=28 says "the seconds - // element shall always be present" but none-the-less I've seen X509 certs where it isn't and if the - // browsers parse it phpseclib ought to too - if (preg_match('#^(\d{10})(Z|[+-]\d{4})$#', $content, $matches)) { - $content = $matches[1] . '00' . $matches[2]; - } - $prefix = substr($content, 0, 2) >= 50 ? '19' : '20'; - $content = $prefix . $content; - } elseif (strpos($content, '.') !== false) { - $format.= '.u'; - } - - if ($content[strlen($content) - 1] == 'Z') { - $content = substr($content, 0, -1) . '+0000'; - } - - if (strpos($content, '-') !== false || strpos($content, '+') !== false) { - $format.= 'O'; - } - - // error supression isn't necessary as of PHP 7.0: - // http://php.net/manual/en/migration70.other-changes.php - return @DateTime::createFromFormat($format, $content); - } - - /** - * Set the time format - * - * Sets the time / date format for asn1map(). - * - * @access public - * @param string $format - */ - function setTimeFormat($format) - { - $this->format = $format; - } - - /** - * Load OIDs - * - * Load the relevant OIDs for a particular ASN.1 semantic mapping. - * - * @access public - * @param array $oids - */ - function loadOIDs($oids) - { - $this->oids = $oids; - } - - /** - * Load filters - * - * See \phpseclib\File\X509, etc, for an example. - * - * @access public - * @param array $filters - */ - function loadFilters($filters) - { - $this->filters = $filters; - } - - /** - * String Shift - * - * Inspired by array_shift - * - * @param string $string - * @param int $index - * @return string - * @access private - */ - function _string_shift(&$string, $index = 1) - { - $substr = substr($string, 0, $index); - $string = substr($string, $index); - return $substr; - } - - /** - * String type conversion - * - * This is a lazy conversion, dealing only with character size. - * No real conversion table is used. - * - * @param string $in - * @param int $from - * @param int $to - * @return string - * @access public - */ - function convert($in, $from = self::TYPE_UTF8_STRING, $to = self::TYPE_UTF8_STRING) - { - if (!isset($this->stringTypeSize[$from]) || !isset($this->stringTypeSize[$to])) { - return false; - } - $insize = $this->stringTypeSize[$from]; - $outsize = $this->stringTypeSize[$to]; - $inlength = strlen($in); - $out = ''; - - for ($i = 0; $i < $inlength;) { - if ($inlength - $i < $insize) { - return false; - } - - // Get an input character as a 32-bit value. - $c = ord($in[$i++]); - switch (true) { - case $insize == 4: - $c = ($c << 8) | ord($in[$i++]); - $c = ($c << 8) | ord($in[$i++]); - case $insize == 2: - $c = ($c << 8) | ord($in[$i++]); - case $insize == 1: - break; - case ($c & 0x80) == 0x00: - break; - case ($c & 0x40) == 0x00: - return false; - default: - $bit = 6; - do { - if ($bit > 25 || $i >= $inlength || (ord($in[$i]) & 0xC0) != 0x80) { - return false; - } - $c = ($c << 6) | (ord($in[$i++]) & 0x3F); - $bit += 5; - $mask = 1 << $bit; - } while ($c & $bit); - $c &= $mask - 1; - break; - } - - // Convert and append the character to output string. - $v = ''; - switch (true) { - case $outsize == 4: - $v .= chr($c & 0xFF); - $c >>= 8; - $v .= chr($c & 0xFF); - $c >>= 8; - case $outsize == 2: - $v .= chr($c & 0xFF); - $c >>= 8; - case $outsize == 1: - $v .= chr($c & 0xFF); - $c >>= 8; - if ($c) { - return false; - } - break; - case ($c & 0x80000000) != 0: - return false; - case $c >= 0x04000000: - $v .= chr(0x80 | ($c & 0x3F)); - $c = ($c >> 6) | 0x04000000; - case $c >= 0x00200000: - $v .= chr(0x80 | ($c & 0x3F)); - $c = ($c >> 6) | 0x00200000; - case $c >= 0x00010000: - $v .= chr(0x80 | ($c & 0x3F)); - $c = ($c >> 6) | 0x00010000; - case $c >= 0x00000800: - $v .= chr(0x80 | ($c & 0x3F)); - $c = ($c >> 6) | 0x00000800; - case $c >= 0x00000080: - $v .= chr(0x80 | ($c & 0x3F)); - $c = ($c >> 6) | 0x000000C0; - default: - $v .= chr($c); - break; - } - $out .= strrev($v); - } - return $out; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/File/ASN1/Element.php b/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/File/ASN1/Element.php deleted file mode 100644 index 68246e2b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/File/ASN1/Element.php +++ /dev/null @@ -1,47 +0,0 @@ - - * @copyright 2012 Jim Wigginton - * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @link http://phpseclib.sourceforge.net - */ - -namespace phpseclib\File\ASN1; - -/** - * ASN.1 Element - * - * Bypass normal encoding rules in phpseclib\File\ASN1::encodeDER() - * - * @package ASN1 - * @author Jim Wigginton - * @access public - */ -class Element -{ - /** - * Raw element value - * - * @var string - * @access private - */ - var $element; - - /** - * Constructor - * - * @param string $encoded - * @return \phpseclib\File\ASN1\Element - * @access public - */ - function __construct($encoded) - { - $this->element = $encoded; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/File/X509.php b/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/File/X509.php deleted file mode 100644 index ddbc6159..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/File/X509.php +++ /dev/null @@ -1,5092 +0,0 @@ - - * @copyright 2012 Jim Wigginton - * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @link http://phpseclib.sourceforge.net - */ - -namespace phpseclib\File; - -use phpseclib\Crypt\Hash; -use phpseclib\Crypt\Random; -use phpseclib\Crypt\RSA; -use phpseclib\File\ASN1\Element; -use phpseclib\Math\BigInteger; -use DateTime; -use DateTimeZone; - -/** - * Pure-PHP X.509 Parser - * - * @package X509 - * @author Jim Wigginton - * @access public - */ -class X509 -{ - /** - * Flag to only accept signatures signed by certificate authorities - * - * Not really used anymore but retained all the same to suppress E_NOTICEs from old installs - * - * @access public - */ - const VALIDATE_SIGNATURE_BY_CA = 1; - - /**#@+ - * @access public - * @see \phpseclib\File\X509::getDN() - */ - /** - * Return internal array representation - */ - const DN_ARRAY = 0; - /** - * Return string - */ - const DN_STRING = 1; - /** - * Return ASN.1 name string - */ - const DN_ASN1 = 2; - /** - * Return OpenSSL compatible array - */ - const DN_OPENSSL = 3; - /** - * Return canonical ASN.1 RDNs string - */ - const DN_CANON = 4; - /** - * Return name hash for file indexing - */ - const DN_HASH = 5; - /**#@-*/ - - /**#@+ - * @access public - * @see \phpseclib\File\X509::saveX509() - * @see \phpseclib\File\X509::saveCSR() - * @see \phpseclib\File\X509::saveCRL() - */ - /** - * Save as PEM - * - * ie. a base64-encoded PEM with a header and a footer - */ - const FORMAT_PEM = 0; - /** - * Save as DER - */ - const FORMAT_DER = 1; - /** - * Save as a SPKAC - * - * Only works on CSRs. Not currently supported. - */ - const FORMAT_SPKAC = 2; - /** - * Auto-detect the format - * - * Used only by the load*() functions - */ - const FORMAT_AUTO_DETECT = 3; - /**#@-*/ - - /** - * Attribute value disposition. - * If disposition is >= 0, this is the index of the target value. - */ - const ATTR_ALL = -1; // All attribute values (array). - const ATTR_APPEND = -2; // Add a value. - const ATTR_REPLACE = -3; // Clear first, then add a value. - - /** - * ASN.1 syntax for X.509 certificates - * - * @var array - * @access private - */ - var $Certificate; - - /**#@+ - * ASN.1 syntax for various extensions - * - * @access private - */ - var $DirectoryString; - var $PKCS9String; - var $AttributeValue; - var $Extensions; - var $KeyUsage; - var $ExtKeyUsageSyntax; - var $BasicConstraints; - var $KeyIdentifier; - var $CRLDistributionPoints; - var $AuthorityKeyIdentifier; - var $CertificatePolicies; - var $AuthorityInfoAccessSyntax; - var $SubjectAltName; - var $SubjectDirectoryAttributes; - var $PrivateKeyUsagePeriod; - var $IssuerAltName; - var $PolicyMappings; - var $NameConstraints; - - var $CPSuri; - var $UserNotice; - - var $netscape_cert_type; - var $netscape_comment; - var $netscape_ca_policy_url; - - var $Name; - var $RelativeDistinguishedName; - var $CRLNumber; - var $CRLReason; - var $IssuingDistributionPoint; - var $InvalidityDate; - var $CertificateIssuer; - var $HoldInstructionCode; - var $SignedPublicKeyAndChallenge; - /**#@-*/ - - /**#@+ - * ASN.1 syntax for various DN attributes - * - * @access private - */ - var $PostalAddress; - /**#@-*/ - - /** - * ASN.1 syntax for Certificate Signing Requests (RFC2986) - * - * @var array - * @access private - */ - var $CertificationRequest; - - /** - * ASN.1 syntax for Certificate Revocation Lists (RFC5280) - * - * @var array - * @access private - */ - var $CertificateList; - - /** - * Distinguished Name - * - * @var array - * @access private - */ - var $dn; - - /** - * Public key - * - * @var string - * @access private - */ - var $publicKey; - - /** - * Private key - * - * @var string - * @access private - */ - var $privateKey; - - /** - * Object identifiers for X.509 certificates - * - * @var array - * @access private - * @link http://en.wikipedia.org/wiki/Object_identifier - */ - var $oids; - - /** - * The certificate authorities - * - * @var array - * @access private - */ - var $CAs; - - /** - * The currently loaded certificate - * - * @var array - * @access private - */ - var $currentCert; - - /** - * The signature subject - * - * There's no guarantee \phpseclib\File\X509 is going to re-encode an X.509 cert in the same way it was originally - * encoded so we take save the portion of the original cert that the signature would have made for. - * - * @var string - * @access private - */ - var $signatureSubject; - - /** - * Certificate Start Date - * - * @var string - * @access private - */ - var $startDate; - - /** - * Certificate End Date - * - * @var string - * @access private - */ - var $endDate; - - /** - * Serial Number - * - * @var string - * @access private - */ - var $serialNumber; - - /** - * Key Identifier - * - * See {@link http://tools.ietf.org/html/rfc5280#section-4.2.1.1 RFC5280#section-4.2.1.1} and - * {@link http://tools.ietf.org/html/rfc5280#section-4.2.1.2 RFC5280#section-4.2.1.2}. - * - * @var string - * @access private - */ - var $currentKeyIdentifier; - - /** - * CA Flag - * - * @var bool - * @access private - */ - var $caFlag = false; - - /** - * SPKAC Challenge - * - * @var string - * @access private - */ - var $challenge; - - /** - * Recursion Limit - * - * @var int - * @access private - */ - static $recur_limit = 5; - - /** - * URL fetch flag - * - * @var bool - * @access private - */ - static $disable_url_fetch = false; - - /** - * Default Constructor. - * - * @return \phpseclib\File\X509 - * @access public - */ - function __construct() - { - // Explicitly Tagged Module, 1988 Syntax - // http://tools.ietf.org/html/rfc5280#appendix-A.1 - - $this->DirectoryString = array( - 'type' => ASN1::TYPE_CHOICE, - 'children' => array( - 'teletexString' => array('type' => ASN1::TYPE_TELETEX_STRING), - 'printableString' => array('type' => ASN1::TYPE_PRINTABLE_STRING), - 'universalString' => array('type' => ASN1::TYPE_UNIVERSAL_STRING), - 'utf8String' => array('type' => ASN1::TYPE_UTF8_STRING), - 'bmpString' => array('type' => ASN1::TYPE_BMP_STRING) - ) - ); - - $this->PKCS9String = array( - 'type' => ASN1::TYPE_CHOICE, - 'children' => array( - 'ia5String' => array('type' => ASN1::TYPE_IA5_STRING), - 'directoryString' => $this->DirectoryString - ) - ); - - $this->AttributeValue = array('type' => ASN1::TYPE_ANY); - - $AttributeType = array('type' => ASN1::TYPE_OBJECT_IDENTIFIER); - - $AttributeTypeAndValue = array( - 'type' => ASN1::TYPE_SEQUENCE, - 'children' => array( - 'type' => $AttributeType, - 'value'=> $this->AttributeValue - ) - ); - - /* - In practice, RDNs containing multiple name-value pairs (called "multivalued RDNs") are rare, - but they can be useful at times when either there is no unique attribute in the entry or you - want to ensure that the entry's DN contains some useful identifying information. - - - https://www.opends.org/wiki/page/DefinitionRelativeDistinguishedName - */ - $this->RelativeDistinguishedName = array( - 'type' => ASN1::TYPE_SET, - 'min' => 1, - 'max' => -1, - 'children' => $AttributeTypeAndValue - ); - - // http://tools.ietf.org/html/rfc5280#section-4.1.2.4 - $RDNSequence = array( - 'type' => ASN1::TYPE_SEQUENCE, - // RDNSequence does not define a min or a max, which means it doesn't have one - 'min' => 0, - 'max' => -1, - 'children' => $this->RelativeDistinguishedName - ); - - $this->Name = array( - 'type' => ASN1::TYPE_CHOICE, - 'children' => array( - 'rdnSequence' => $RDNSequence - ) - ); - - // http://tools.ietf.org/html/rfc5280#section-4.1.1.2 - $AlgorithmIdentifier = array( - 'type' => ASN1::TYPE_SEQUENCE, - 'children' => array( - 'algorithm' => array('type' => ASN1::TYPE_OBJECT_IDENTIFIER), - 'parameters' => array( - 'type' => ASN1::TYPE_ANY, - 'optional' => true - ) - ) - ); - - /* - A certificate using system MUST reject the certificate if it encounters - a critical extension it does not recognize; however, a non-critical - extension may be ignored if it is not recognized. - - http://tools.ietf.org/html/rfc5280#section-4.2 - */ - $Extension = array( - 'type' => ASN1::TYPE_SEQUENCE, - 'children' => array( - 'extnId' => array('type' => ASN1::TYPE_OBJECT_IDENTIFIER), - 'critical' => array( - 'type' => ASN1::TYPE_BOOLEAN, - 'optional' => true, - 'default' => false - ), - 'extnValue' => array('type' => ASN1::TYPE_OCTET_STRING) - ) - ); - - $this->Extensions = array( - 'type' => ASN1::TYPE_SEQUENCE, - 'min' => 1, - // technically, it's MAX, but we'll assume anything < 0 is MAX - 'max' => -1, - // if 'children' isn't an array then 'min' and 'max' must be defined - 'children' => $Extension - ); - - $SubjectPublicKeyInfo = array( - 'type' => ASN1::TYPE_SEQUENCE, - 'children' => array( - 'algorithm' => $AlgorithmIdentifier, - 'subjectPublicKey' => array('type' => ASN1::TYPE_BIT_STRING) - ) - ); - - $UniqueIdentifier = array('type' => ASN1::TYPE_BIT_STRING); - - $Time = array( - 'type' => ASN1::TYPE_CHOICE, - 'children' => array( - 'utcTime' => array('type' => ASN1::TYPE_UTC_TIME), - 'generalTime' => array('type' => ASN1::TYPE_GENERALIZED_TIME) - ) - ); - - // http://tools.ietf.org/html/rfc5280#section-4.1.2.5 - $Validity = array( - 'type' => ASN1::TYPE_SEQUENCE, - 'children' => array( - 'notBefore' => $Time, - 'notAfter' => $Time - ) - ); - - $CertificateSerialNumber = array('type' => ASN1::TYPE_INTEGER); - - $Version = array( - 'type' => ASN1::TYPE_INTEGER, - 'mapping' => array('v1', 'v2', 'v3') - ); - - // assert($TBSCertificate['children']['signature'] == $Certificate['children']['signatureAlgorithm']) - $TBSCertificate = array( - 'type' => ASN1::TYPE_SEQUENCE, - 'children' => array( - // technically, default implies optional, but we'll define it as being optional, none-the-less, just to - // reenforce that fact - 'version' => array( - 'constant' => 0, - 'optional' => true, - 'explicit' => true, - 'default' => 'v1' - ) + $Version, - 'serialNumber' => $CertificateSerialNumber, - 'signature' => $AlgorithmIdentifier, - 'issuer' => $this->Name, - 'validity' => $Validity, - 'subject' => $this->Name, - 'subjectPublicKeyInfo' => $SubjectPublicKeyInfo, - // implicit means that the T in the TLV structure is to be rewritten, regardless of the type - 'issuerUniqueID' => array( - 'constant' => 1, - 'optional' => true, - 'implicit' => true - ) + $UniqueIdentifier, - 'subjectUniqueID' => array( - 'constant' => 2, - 'optional' => true, - 'implicit' => true - ) + $UniqueIdentifier, - // doesn't use the EXPLICIT keyword but if - // it's not IMPLICIT, it's EXPLICIT - 'extensions' => array( - 'constant' => 3, - 'optional' => true, - 'explicit' => true - ) + $this->Extensions - ) - ); - - $this->Certificate = array( - 'type' => ASN1::TYPE_SEQUENCE, - 'children' => array( - 'tbsCertificate' => $TBSCertificate, - 'signatureAlgorithm' => $AlgorithmIdentifier, - 'signature' => array('type' => ASN1::TYPE_BIT_STRING) - ) - ); - - $this->KeyUsage = array( - 'type' => ASN1::TYPE_BIT_STRING, - 'mapping' => array( - 'digitalSignature', - 'nonRepudiation', - 'keyEncipherment', - 'dataEncipherment', - 'keyAgreement', - 'keyCertSign', - 'cRLSign', - 'encipherOnly', - 'decipherOnly' - ) - ); - - $this->BasicConstraints = array( - 'type' => ASN1::TYPE_SEQUENCE, - 'children' => array( - 'cA' => array( - 'type' => ASN1::TYPE_BOOLEAN, - 'optional' => true, - 'default' => false - ), - 'pathLenConstraint' => array( - 'type' => ASN1::TYPE_INTEGER, - 'optional' => true - ) - ) - ); - - $this->KeyIdentifier = array('type' => ASN1::TYPE_OCTET_STRING); - - $OrganizationalUnitNames = array( - 'type' => ASN1::TYPE_SEQUENCE, - 'min' => 1, - 'max' => 4, // ub-organizational-units - 'children' => array('type' => ASN1::TYPE_PRINTABLE_STRING) - ); - - $PersonalName = array( - 'type' => ASN1::TYPE_SET, - 'children' => array( - 'surname' => array( - 'type' => ASN1::TYPE_PRINTABLE_STRING, - 'constant' => 0, - 'optional' => true, - 'implicit' => true - ), - 'given-name' => array( - 'type' => ASN1::TYPE_PRINTABLE_STRING, - 'constant' => 1, - 'optional' => true, - 'implicit' => true - ), - 'initials' => array( - 'type' => ASN1::TYPE_PRINTABLE_STRING, - 'constant' => 2, - 'optional' => true, - 'implicit' => true - ), - 'generation-qualifier' => array( - 'type' => ASN1::TYPE_PRINTABLE_STRING, - 'constant' => 3, - 'optional' => true, - 'implicit' => true - ) - ) - ); - - $NumericUserIdentifier = array('type' => ASN1::TYPE_NUMERIC_STRING); - - $OrganizationName = array('type' => ASN1::TYPE_PRINTABLE_STRING); - - $PrivateDomainName = array( - 'type' => ASN1::TYPE_CHOICE, - 'children' => array( - 'numeric' => array('type' => ASN1::TYPE_NUMERIC_STRING), - 'printable' => array('type' => ASN1::TYPE_PRINTABLE_STRING) - ) - ); - - $TerminalIdentifier = array('type' => ASN1::TYPE_PRINTABLE_STRING); - - $NetworkAddress = array('type' => ASN1::TYPE_NUMERIC_STRING); - - $AdministrationDomainName = array( - 'type' => ASN1::TYPE_CHOICE, - // if class isn't present it's assumed to be \phpseclib\File\ASN1::CLASS_UNIVERSAL or - // (if constant is present) \phpseclib\File\ASN1::CLASS_CONTEXT_SPECIFIC - 'class' => ASN1::CLASS_APPLICATION, - 'cast' => 2, - 'children' => array( - 'numeric' => array('type' => ASN1::TYPE_NUMERIC_STRING), - 'printable' => array('type' => ASN1::TYPE_PRINTABLE_STRING) - ) - ); - - $CountryName = array( - 'type' => ASN1::TYPE_CHOICE, - // if class isn't present it's assumed to be \phpseclib\File\ASN1::CLASS_UNIVERSAL or - // (if constant is present) \phpseclib\File\ASN1::CLASS_CONTEXT_SPECIFIC - 'class' => ASN1::CLASS_APPLICATION, - 'cast' => 1, - 'children' => array( - 'x121-dcc-code' => array('type' => ASN1::TYPE_NUMERIC_STRING), - 'iso-3166-alpha2-code' => array('type' => ASN1::TYPE_PRINTABLE_STRING) - ) - ); - - $AnotherName = array( - 'type' => ASN1::TYPE_SEQUENCE, - 'children' => array( - 'type-id' => array('type' => ASN1::TYPE_OBJECT_IDENTIFIER), - 'value' => array( - 'type' => ASN1::TYPE_ANY, - 'constant' => 0, - 'optional' => true, - 'explicit' => true - ) - ) - ); - - $ExtensionAttribute = array( - 'type' => ASN1::TYPE_SEQUENCE, - 'children' => array( - 'extension-attribute-type' => array( - 'type' => ASN1::TYPE_PRINTABLE_STRING, - 'constant' => 0, - 'optional' => true, - 'implicit' => true - ), - 'extension-attribute-value' => array( - 'type' => ASN1::TYPE_ANY, - 'constant' => 1, - 'optional' => true, - 'explicit' => true - ) - ) - ); - - $ExtensionAttributes = array( - 'type' => ASN1::TYPE_SET, - 'min' => 1, - 'max' => 256, // ub-extension-attributes - 'children' => $ExtensionAttribute - ); - - $BuiltInDomainDefinedAttribute = array( - 'type' => ASN1::TYPE_SEQUENCE, - 'children' => array( - 'type' => array('type' => ASN1::TYPE_PRINTABLE_STRING), - 'value' => array('type' => ASN1::TYPE_PRINTABLE_STRING) - ) - ); - - $BuiltInDomainDefinedAttributes = array( - 'type' => ASN1::TYPE_SEQUENCE, - 'min' => 1, - 'max' => 4, // ub-domain-defined-attributes - 'children' => $BuiltInDomainDefinedAttribute - ); - - $BuiltInStandardAttributes = array( - 'type' => ASN1::TYPE_SEQUENCE, - 'children' => array( - 'country-name' => array('optional' => true) + $CountryName, - 'administration-domain-name' => array('optional' => true) + $AdministrationDomainName, - 'network-address' => array( - 'constant' => 0, - 'optional' => true, - 'implicit' => true - ) + $NetworkAddress, - 'terminal-identifier' => array( - 'constant' => 1, - 'optional' => true, - 'implicit' => true - ) + $TerminalIdentifier, - 'private-domain-name' => array( - 'constant' => 2, - 'optional' => true, - 'explicit' => true - ) + $PrivateDomainName, - 'organization-name' => array( - 'constant' => 3, - 'optional' => true, - 'implicit' => true - ) + $OrganizationName, - 'numeric-user-identifier' => array( - 'constant' => 4, - 'optional' => true, - 'implicit' => true - ) + $NumericUserIdentifier, - 'personal-name' => array( - 'constant' => 5, - 'optional' => true, - 'implicit' => true - ) + $PersonalName, - 'organizational-unit-names' => array( - 'constant' => 6, - 'optional' => true, - 'implicit' => true - ) + $OrganizationalUnitNames - ) - ); - - $ORAddress = array( - 'type' => ASN1::TYPE_SEQUENCE, - 'children' => array( - 'built-in-standard-attributes' => $BuiltInStandardAttributes, - 'built-in-domain-defined-attributes' => array('optional' => true) + $BuiltInDomainDefinedAttributes, - 'extension-attributes' => array('optional' => true) + $ExtensionAttributes - ) - ); - - $EDIPartyName = array( - 'type' => ASN1::TYPE_SEQUENCE, - 'children' => array( - 'nameAssigner' => array( - 'constant' => 0, - 'optional' => true, - 'implicit' => true - ) + $this->DirectoryString, - // partyName is technically required but \phpseclib\File\ASN1 doesn't currently support non-optional constants and - // setting it to optional gets the job done in any event. - 'partyName' => array( - 'constant' => 1, - 'optional' => true, - 'implicit' => true - ) + $this->DirectoryString - ) - ); - - $GeneralName = array( - 'type' => ASN1::TYPE_CHOICE, - 'children' => array( - 'otherName' => array( - 'constant' => 0, - 'optional' => true, - 'implicit' => true - ) + $AnotherName, - 'rfc822Name' => array( - 'type' => ASN1::TYPE_IA5_STRING, - 'constant' => 1, - 'optional' => true, - 'implicit' => true - ), - 'dNSName' => array( - 'type' => ASN1::TYPE_IA5_STRING, - 'constant' => 2, - 'optional' => true, - 'implicit' => true - ), - 'x400Address' => array( - 'constant' => 3, - 'optional' => true, - 'implicit' => true - ) + $ORAddress, - 'directoryName' => array( - 'constant' => 4, - 'optional' => true, - 'explicit' => true - ) + $this->Name, - 'ediPartyName' => array( - 'constant' => 5, - 'optional' => true, - 'implicit' => true - ) + $EDIPartyName, - 'uniformResourceIdentifier' => array( - 'type' => ASN1::TYPE_IA5_STRING, - 'constant' => 6, - 'optional' => true, - 'implicit' => true - ), - 'iPAddress' => array( - 'type' => ASN1::TYPE_OCTET_STRING, - 'constant' => 7, - 'optional' => true, - 'implicit' => true - ), - 'registeredID' => array( - 'type' => ASN1::TYPE_OBJECT_IDENTIFIER, - 'constant' => 8, - 'optional' => true, - 'implicit' => true - ) - ) - ); - - $GeneralNames = array( - 'type' => ASN1::TYPE_SEQUENCE, - 'min' => 1, - 'max' => -1, - 'children' => $GeneralName - ); - - $this->IssuerAltName = $GeneralNames; - - $ReasonFlags = array( - 'type' => ASN1::TYPE_BIT_STRING, - 'mapping' => array( - 'unused', - 'keyCompromise', - 'cACompromise', - 'affiliationChanged', - 'superseded', - 'cessationOfOperation', - 'certificateHold', - 'privilegeWithdrawn', - 'aACompromise' - ) - ); - - $DistributionPointName = array( - 'type' => ASN1::TYPE_CHOICE, - 'children' => array( - 'fullName' => array( - 'constant' => 0, - 'optional' => true, - 'implicit' => true - ) + $GeneralNames, - 'nameRelativeToCRLIssuer' => array( - 'constant' => 1, - 'optional' => true, - 'implicit' => true - ) + $this->RelativeDistinguishedName - ) - ); - - $DistributionPoint = array( - 'type' => ASN1::TYPE_SEQUENCE, - 'children' => array( - 'distributionPoint' => array( - 'constant' => 0, - 'optional' => true, - 'explicit' => true - ) + $DistributionPointName, - 'reasons' => array( - 'constant' => 1, - 'optional' => true, - 'implicit' => true - ) + $ReasonFlags, - 'cRLIssuer' => array( - 'constant' => 2, - 'optional' => true, - 'implicit' => true - ) + $GeneralNames - ) - ); - - $this->CRLDistributionPoints = array( - 'type' => ASN1::TYPE_SEQUENCE, - 'min' => 1, - 'max' => -1, - 'children' => $DistributionPoint - ); - - $this->AuthorityKeyIdentifier = array( - 'type' => ASN1::TYPE_SEQUENCE, - 'children' => array( - 'keyIdentifier' => array( - 'constant' => 0, - 'optional' => true, - 'implicit' => true - ) + $this->KeyIdentifier, - 'authorityCertIssuer' => array( - 'constant' => 1, - 'optional' => true, - 'implicit' => true - ) + $GeneralNames, - 'authorityCertSerialNumber' => array( - 'constant' => 2, - 'optional' => true, - 'implicit' => true - ) + $CertificateSerialNumber - ) - ); - - $PolicyQualifierId = array('type' => ASN1::TYPE_OBJECT_IDENTIFIER); - - $PolicyQualifierInfo = array( - 'type' => ASN1::TYPE_SEQUENCE, - 'children' => array( - 'policyQualifierId' => $PolicyQualifierId, - 'qualifier' => array('type' => ASN1::TYPE_ANY) - ) - ); - - $CertPolicyId = array('type' => ASN1::TYPE_OBJECT_IDENTIFIER); - - $PolicyInformation = array( - 'type' => ASN1::TYPE_SEQUENCE, - 'children' => array( - 'policyIdentifier' => $CertPolicyId, - 'policyQualifiers' => array( - 'type' => ASN1::TYPE_SEQUENCE, - 'min' => 0, - 'max' => -1, - 'optional' => true, - 'children' => $PolicyQualifierInfo - ) - ) - ); - - $this->CertificatePolicies = array( - 'type' => ASN1::TYPE_SEQUENCE, - 'min' => 1, - 'max' => -1, - 'children' => $PolicyInformation - ); - - $this->PolicyMappings = array( - 'type' => ASN1::TYPE_SEQUENCE, - 'min' => 1, - 'max' => -1, - 'children' => array( - 'type' => ASN1::TYPE_SEQUENCE, - 'children' => array( - 'issuerDomainPolicy' => $CertPolicyId, - 'subjectDomainPolicy' => $CertPolicyId - ) - ) - ); - - $KeyPurposeId = array('type' => ASN1::TYPE_OBJECT_IDENTIFIER); - - $this->ExtKeyUsageSyntax = array( - 'type' => ASN1::TYPE_SEQUENCE, - 'min' => 1, - 'max' => -1, - 'children' => $KeyPurposeId - ); - - $AccessDescription = array( - 'type' => ASN1::TYPE_SEQUENCE, - 'children' => array( - 'accessMethod' => array('type' => ASN1::TYPE_OBJECT_IDENTIFIER), - 'accessLocation' => $GeneralName - ) - ); - - $this->AuthorityInfoAccessSyntax = array( - 'type' => ASN1::TYPE_SEQUENCE, - 'min' => 1, - 'max' => -1, - 'children' => $AccessDescription - ); - - $this->SubjectInfoAccessSyntax = array( - 'type' => ASN1::TYPE_SEQUENCE, - 'min' => 1, - 'max' => -1, - 'children' => $AccessDescription - ); - - $this->SubjectAltName = $GeneralNames; - - $this->PrivateKeyUsagePeriod = array( - 'type' => ASN1::TYPE_SEQUENCE, - 'children' => array( - 'notBefore' => array( - 'constant' => 0, - 'optional' => true, - 'implicit' => true, - 'type' => ASN1::TYPE_GENERALIZED_TIME), - 'notAfter' => array( - 'constant' => 1, - 'optional' => true, - 'implicit' => true, - 'type' => ASN1::TYPE_GENERALIZED_TIME) - ) - ); - - $BaseDistance = array('type' => ASN1::TYPE_INTEGER); - - $GeneralSubtree = array( - 'type' => ASN1::TYPE_SEQUENCE, - 'children' => array( - 'base' => $GeneralName, - 'minimum' => array( - 'constant' => 0, - 'optional' => true, - 'implicit' => true, - 'default' => new BigInteger(0) - ) + $BaseDistance, - 'maximum' => array( - 'constant' => 1, - 'optional' => true, - 'implicit' => true, - ) + $BaseDistance - ) - ); - - $GeneralSubtrees = array( - 'type' => ASN1::TYPE_SEQUENCE, - 'min' => 1, - 'max' => -1, - 'children' => $GeneralSubtree - ); - - $this->NameConstraints = array( - 'type' => ASN1::TYPE_SEQUENCE, - 'children' => array( - 'permittedSubtrees' => array( - 'constant' => 0, - 'optional' => true, - 'implicit' => true - ) + $GeneralSubtrees, - 'excludedSubtrees' => array( - 'constant' => 1, - 'optional' => true, - 'implicit' => true - ) + $GeneralSubtrees - ) - ); - - $this->CPSuri = array('type' => ASN1::TYPE_IA5_STRING); - - $DisplayText = array( - 'type' => ASN1::TYPE_CHOICE, - 'children' => array( - 'ia5String' => array('type' => ASN1::TYPE_IA5_STRING), - 'visibleString' => array('type' => ASN1::TYPE_VISIBLE_STRING), - 'bmpString' => array('type' => ASN1::TYPE_BMP_STRING), - 'utf8String' => array('type' => ASN1::TYPE_UTF8_STRING) - ) - ); - - $NoticeReference = array( - 'type' => ASN1::TYPE_SEQUENCE, - 'children' => array( - 'organization' => $DisplayText, - 'noticeNumbers' => array( - 'type' => ASN1::TYPE_SEQUENCE, - 'min' => 1, - 'max' => 200, - 'children' => array('type' => ASN1::TYPE_INTEGER) - ) - ) - ); - - $this->UserNotice = array( - 'type' => ASN1::TYPE_SEQUENCE, - 'children' => array( - 'noticeRef' => array( - 'optional' => true, - 'implicit' => true - ) + $NoticeReference, - 'explicitText' => array( - 'optional' => true, - 'implicit' => true - ) + $DisplayText - ) - ); - - // mapping is from - $this->netscape_cert_type = array( - 'type' => ASN1::TYPE_BIT_STRING, - 'mapping' => array( - 'SSLClient', - 'SSLServer', - 'Email', - 'ObjectSigning', - 'Reserved', - 'SSLCA', - 'EmailCA', - 'ObjectSigningCA' - ) - ); - - $this->netscape_comment = array('type' => ASN1::TYPE_IA5_STRING); - $this->netscape_ca_policy_url = array('type' => ASN1::TYPE_IA5_STRING); - - // attribute is used in RFC2986 but we're using the RFC5280 definition - - $Attribute = array( - 'type' => ASN1::TYPE_SEQUENCE, - 'children' => array( - 'type' => $AttributeType, - 'value'=> array( - 'type' => ASN1::TYPE_SET, - 'min' => 1, - 'max' => -1, - 'children' => $this->AttributeValue - ) - ) - ); - - $this->SubjectDirectoryAttributes = array( - 'type' => ASN1::TYPE_SEQUENCE, - 'min' => 1, - 'max' => -1, - 'children' => $Attribute - ); - - // adapted from - - $Attributes = array( - 'type' => ASN1::TYPE_SET, - 'min' => 1, - 'max' => -1, - 'children' => $Attribute - ); - - $CertificationRequestInfo = array( - 'type' => ASN1::TYPE_SEQUENCE, - 'children' => array( - 'version' => array( - 'type' => ASN1::TYPE_INTEGER, - 'mapping' => array('v1') - ), - 'subject' => $this->Name, - 'subjectPKInfo' => $SubjectPublicKeyInfo, - 'attributes' => array( - 'constant' => 0, - 'optional' => true, - 'implicit' => true - ) + $Attributes, - ) - ); - - $this->CertificationRequest = array( - 'type' => ASN1::TYPE_SEQUENCE, - 'children' => array( - 'certificationRequestInfo' => $CertificationRequestInfo, - 'signatureAlgorithm' => $AlgorithmIdentifier, - 'signature' => array('type' => ASN1::TYPE_BIT_STRING) - ) - ); - - $RevokedCertificate = array( - 'type' => ASN1::TYPE_SEQUENCE, - 'children' => array( - 'userCertificate' => $CertificateSerialNumber, - 'revocationDate' => $Time, - 'crlEntryExtensions' => array( - 'optional' => true - ) + $this->Extensions - ) - ); - - $TBSCertList = array( - 'type' => ASN1::TYPE_SEQUENCE, - 'children' => array( - 'version' => array( - 'optional' => true, - 'default' => 'v1' - ) + $Version, - 'signature' => $AlgorithmIdentifier, - 'issuer' => $this->Name, - 'thisUpdate' => $Time, - 'nextUpdate' => array( - 'optional' => true - ) + $Time, - 'revokedCertificates' => array( - 'type' => ASN1::TYPE_SEQUENCE, - 'optional' => true, - 'min' => 0, - 'max' => -1, - 'children' => $RevokedCertificate - ), - 'crlExtensions' => array( - 'constant' => 0, - 'optional' => true, - 'explicit' => true - ) + $this->Extensions - ) - ); - - $this->CertificateList = array( - 'type' => ASN1::TYPE_SEQUENCE, - 'children' => array( - 'tbsCertList' => $TBSCertList, - 'signatureAlgorithm' => $AlgorithmIdentifier, - 'signature' => array('type' => ASN1::TYPE_BIT_STRING) - ) - ); - - $this->CRLNumber = array('type' => ASN1::TYPE_INTEGER); - - $this->CRLReason = array('type' => ASN1::TYPE_ENUMERATED, - 'mapping' => array( - 'unspecified', - 'keyCompromise', - 'cACompromise', - 'affiliationChanged', - 'superseded', - 'cessationOfOperation', - 'certificateHold', - // Value 7 is not used. - 8 => 'removeFromCRL', - 'privilegeWithdrawn', - 'aACompromise' - ) - ); - - $this->IssuingDistributionPoint = array('type' => ASN1::TYPE_SEQUENCE, - 'children' => array( - 'distributionPoint' => array( - 'constant' => 0, - 'optional' => true, - 'explicit' => true - ) + $DistributionPointName, - 'onlyContainsUserCerts' => array( - 'type' => ASN1::TYPE_BOOLEAN, - 'constant' => 1, - 'optional' => true, - 'default' => false, - 'implicit' => true - ), - 'onlyContainsCACerts' => array( - 'type' => ASN1::TYPE_BOOLEAN, - 'constant' => 2, - 'optional' => true, - 'default' => false, - 'implicit' => true - ), - 'onlySomeReasons' => array( - 'constant' => 3, - 'optional' => true, - 'implicit' => true - ) + $ReasonFlags, - 'indirectCRL' => array( - 'type' => ASN1::TYPE_BOOLEAN, - 'constant' => 4, - 'optional' => true, - 'default' => false, - 'implicit' => true - ), - 'onlyContainsAttributeCerts' => array( - 'type' => ASN1::TYPE_BOOLEAN, - 'constant' => 5, - 'optional' => true, - 'default' => false, - 'implicit' => true - ) - ) - ); - - $this->InvalidityDate = array('type' => ASN1::TYPE_GENERALIZED_TIME); - - $this->CertificateIssuer = $GeneralNames; - - $this->HoldInstructionCode = array('type' => ASN1::TYPE_OBJECT_IDENTIFIER); - - $PublicKeyAndChallenge = array( - 'type' => ASN1::TYPE_SEQUENCE, - 'children' => array( - 'spki' => $SubjectPublicKeyInfo, - 'challenge' => array('type' => ASN1::TYPE_IA5_STRING) - ) - ); - - $this->SignedPublicKeyAndChallenge = array( - 'type' => ASN1::TYPE_SEQUENCE, - 'children' => array( - 'publicKeyAndChallenge' => $PublicKeyAndChallenge, - 'signatureAlgorithm' => $AlgorithmIdentifier, - 'signature' => array('type' => ASN1::TYPE_BIT_STRING) - ) - ); - - $this->PostalAddress = array( - 'type' => ASN1::TYPE_SEQUENCE, - 'optional' => true, - 'min' => 1, - 'max' => -1, - 'children' => $this->DirectoryString - ); - - // OIDs from RFC5280 and those RFCs mentioned in RFC5280#section-4.1.1.2 - $this->oids = array( - '1.3.6.1.5.5.7' => 'id-pkix', - '1.3.6.1.5.5.7.1' => 'id-pe', - '1.3.6.1.5.5.7.2' => 'id-qt', - '1.3.6.1.5.5.7.3' => 'id-kp', - '1.3.6.1.5.5.7.48' => 'id-ad', - '1.3.6.1.5.5.7.2.1' => 'id-qt-cps', - '1.3.6.1.5.5.7.2.2' => 'id-qt-unotice', - '1.3.6.1.5.5.7.48.1' =>'id-ad-ocsp', - '1.3.6.1.5.5.7.48.2' => 'id-ad-caIssuers', - '1.3.6.1.5.5.7.48.3' => 'id-ad-timeStamping', - '1.3.6.1.5.5.7.48.5' => 'id-ad-caRepository', - '2.5.4' => 'id-at', - '2.5.4.41' => 'id-at-name', - '2.5.4.4' => 'id-at-surname', - '2.5.4.42' => 'id-at-givenName', - '2.5.4.43' => 'id-at-initials', - '2.5.4.44' => 'id-at-generationQualifier', - '2.5.4.3' => 'id-at-commonName', - '2.5.4.7' => 'id-at-localityName', - '2.5.4.8' => 'id-at-stateOrProvinceName', - '2.5.4.10' => 'id-at-organizationName', - '2.5.4.11' => 'id-at-organizationalUnitName', - '2.5.4.12' => 'id-at-title', - '2.5.4.13' => 'id-at-description', - '2.5.4.46' => 'id-at-dnQualifier', - '2.5.4.6' => 'id-at-countryName', - '2.5.4.5' => 'id-at-serialNumber', - '2.5.4.65' => 'id-at-pseudonym', - '2.5.4.17' => 'id-at-postalCode', - '2.5.4.9' => 'id-at-streetAddress', - '2.5.4.45' => 'id-at-uniqueIdentifier', - '2.5.4.72' => 'id-at-role', - '2.5.4.16' => 'id-at-postalAddress', - - '0.9.2342.19200300.100.1.25' => 'id-domainComponent', - '1.2.840.113549.1.9' => 'pkcs-9', - '1.2.840.113549.1.9.1' => 'pkcs-9-at-emailAddress', - '2.5.29' => 'id-ce', - '2.5.29.35' => 'id-ce-authorityKeyIdentifier', - '2.5.29.14' => 'id-ce-subjectKeyIdentifier', - '2.5.29.15' => 'id-ce-keyUsage', - '2.5.29.16' => 'id-ce-privateKeyUsagePeriod', - '2.5.29.32' => 'id-ce-certificatePolicies', - '2.5.29.32.0' => 'anyPolicy', - - '2.5.29.33' => 'id-ce-policyMappings', - '2.5.29.17' => 'id-ce-subjectAltName', - '2.5.29.18' => 'id-ce-issuerAltName', - '2.5.29.9' => 'id-ce-subjectDirectoryAttributes', - '2.5.29.19' => 'id-ce-basicConstraints', - '2.5.29.30' => 'id-ce-nameConstraints', - '2.5.29.36' => 'id-ce-policyConstraints', - '2.5.29.31' => 'id-ce-cRLDistributionPoints', - '2.5.29.37' => 'id-ce-extKeyUsage', - '2.5.29.37.0' => 'anyExtendedKeyUsage', - '1.3.6.1.5.5.7.3.1' => 'id-kp-serverAuth', - '1.3.6.1.5.5.7.3.2' => 'id-kp-clientAuth', - '1.3.6.1.5.5.7.3.3' => 'id-kp-codeSigning', - '1.3.6.1.5.5.7.3.4' => 'id-kp-emailProtection', - '1.3.6.1.5.5.7.3.8' => 'id-kp-timeStamping', - '1.3.6.1.5.5.7.3.9' => 'id-kp-OCSPSigning', - '2.5.29.54' => 'id-ce-inhibitAnyPolicy', - '2.5.29.46' => 'id-ce-freshestCRL', - '1.3.6.1.5.5.7.1.1' => 'id-pe-authorityInfoAccess', - '1.3.6.1.5.5.7.1.11' => 'id-pe-subjectInfoAccess', - '2.5.29.20' => 'id-ce-cRLNumber', - '2.5.29.28' => 'id-ce-issuingDistributionPoint', - '2.5.29.27' => 'id-ce-deltaCRLIndicator', - '2.5.29.21' => 'id-ce-cRLReasons', - '2.5.29.29' => 'id-ce-certificateIssuer', - '2.5.29.23' => 'id-ce-holdInstructionCode', - '1.2.840.10040.2' => 'holdInstruction', - '1.2.840.10040.2.1' => 'id-holdinstruction-none', - '1.2.840.10040.2.2' => 'id-holdinstruction-callissuer', - '1.2.840.10040.2.3' => 'id-holdinstruction-reject', - '2.5.29.24' => 'id-ce-invalidityDate', - - '1.2.840.113549.2.2' => 'md2', - '1.2.840.113549.2.5' => 'md5', - '1.3.14.3.2.26' => 'id-sha1', - '1.2.840.10040.4.1' => 'id-dsa', - '1.2.840.10040.4.3' => 'id-dsa-with-sha1', - '1.2.840.113549.1.1' => 'pkcs-1', - '1.2.840.113549.1.1.1' => 'rsaEncryption', - '1.2.840.113549.1.1.2' => 'md2WithRSAEncryption', - '1.2.840.113549.1.1.4' => 'md5WithRSAEncryption', - '1.2.840.113549.1.1.5' => 'sha1WithRSAEncryption', - '1.2.840.10046.2.1' => 'dhpublicnumber', - '2.16.840.1.101.2.1.1.22' => 'id-keyExchangeAlgorithm', - '1.2.840.10045' => 'ansi-X9-62', - '1.2.840.10045.4' => 'id-ecSigType', - '1.2.840.10045.4.1' => 'ecdsa-with-SHA1', - '1.2.840.10045.1' => 'id-fieldType', - '1.2.840.10045.1.1' => 'prime-field', - '1.2.840.10045.1.2' => 'characteristic-two-field', - '1.2.840.10045.1.2.3' => 'id-characteristic-two-basis', - '1.2.840.10045.1.2.3.1' => 'gnBasis', - '1.2.840.10045.1.2.3.2' => 'tpBasis', - '1.2.840.10045.1.2.3.3' => 'ppBasis', - '1.2.840.10045.2' => 'id-publicKeyType', - '1.2.840.10045.2.1' => 'id-ecPublicKey', - '1.2.840.10045.3' => 'ellipticCurve', - '1.2.840.10045.3.0' => 'c-TwoCurve', - '1.2.840.10045.3.0.1' => 'c2pnb163v1', - '1.2.840.10045.3.0.2' => 'c2pnb163v2', - '1.2.840.10045.3.0.3' => 'c2pnb163v3', - '1.2.840.10045.3.0.4' => 'c2pnb176w1', - '1.2.840.10045.3.0.5' => 'c2pnb191v1', - '1.2.840.10045.3.0.6' => 'c2pnb191v2', - '1.2.840.10045.3.0.7' => 'c2pnb191v3', - '1.2.840.10045.3.0.8' => 'c2pnb191v4', - '1.2.840.10045.3.0.9' => 'c2pnb191v5', - '1.2.840.10045.3.0.10' => 'c2pnb208w1', - '1.2.840.10045.3.0.11' => 'c2pnb239v1', - '1.2.840.10045.3.0.12' => 'c2pnb239v2', - '1.2.840.10045.3.0.13' => 'c2pnb239v3', - '1.2.840.10045.3.0.14' => 'c2pnb239v4', - '1.2.840.10045.3.0.15' => 'c2pnb239v5', - '1.2.840.10045.3.0.16' => 'c2pnb272w1', - '1.2.840.10045.3.0.17' => 'c2pnb304w1', - '1.2.840.10045.3.0.18' => 'c2pnb359v1', - '1.2.840.10045.3.0.19' => 'c2pnb368w1', - '1.2.840.10045.3.0.20' => 'c2pnb431r1', - '1.2.840.10045.3.1' => 'primeCurve', - '1.2.840.10045.3.1.1' => 'prime192v1', - '1.2.840.10045.3.1.2' => 'prime192v2', - '1.2.840.10045.3.1.3' => 'prime192v3', - '1.2.840.10045.3.1.4' => 'prime239v1', - '1.2.840.10045.3.1.5' => 'prime239v2', - '1.2.840.10045.3.1.6' => 'prime239v3', - '1.2.840.10045.3.1.7' => 'prime256v1', - '1.2.840.113549.1.1.7' => 'id-RSAES-OAEP', - '1.2.840.113549.1.1.9' => 'id-pSpecified', - '1.2.840.113549.1.1.10' => 'id-RSASSA-PSS', - '1.2.840.113549.1.1.8' => 'id-mgf1', - '1.2.840.113549.1.1.14' => 'sha224WithRSAEncryption', - '1.2.840.113549.1.1.11' => 'sha256WithRSAEncryption', - '1.2.840.113549.1.1.12' => 'sha384WithRSAEncryption', - '1.2.840.113549.1.1.13' => 'sha512WithRSAEncryption', - '2.16.840.1.101.3.4.2.4' => 'id-sha224', - '2.16.840.1.101.3.4.2.1' => 'id-sha256', - '2.16.840.1.101.3.4.2.2' => 'id-sha384', - '2.16.840.1.101.3.4.2.3' => 'id-sha512', - '1.2.643.2.2.4' => 'id-GostR3411-94-with-GostR3410-94', - '1.2.643.2.2.3' => 'id-GostR3411-94-with-GostR3410-2001', - '1.2.643.2.2.20' => 'id-GostR3410-2001', - '1.2.643.2.2.19' => 'id-GostR3410-94', - // Netscape Object Identifiers from "Netscape Certificate Extensions" - '2.16.840.1.113730' => 'netscape', - '2.16.840.1.113730.1' => 'netscape-cert-extension', - '2.16.840.1.113730.1.1' => 'netscape-cert-type', - '2.16.840.1.113730.1.13' => 'netscape-comment', - '2.16.840.1.113730.1.8' => 'netscape-ca-policy-url', - // the following are X.509 extensions not supported by phpseclib - '1.3.6.1.5.5.7.1.12' => 'id-pe-logotype', - '1.2.840.113533.7.65.0' => 'entrustVersInfo', - '2.16.840.1.113733.1.6.9' => 'verisignPrivate', - // for Certificate Signing Requests - // see http://tools.ietf.org/html/rfc2985 - '1.2.840.113549.1.9.2' => 'pkcs-9-at-unstructuredName', // PKCS #9 unstructured name - '1.2.840.113549.1.9.7' => 'pkcs-9-at-challengePassword', // Challenge password for certificate revocations - '1.2.840.113549.1.9.14' => 'pkcs-9-at-extensionRequest' // Certificate extension request - ); - } - - /** - * Load X.509 certificate - * - * Returns an associative array describing the X.509 cert or a false if the cert failed to load - * - * @param string $cert - * @param int $mode - * @access public - * @return mixed - */ - function loadX509($cert, $mode = self::FORMAT_AUTO_DETECT) - { - if (is_array($cert) && isset($cert['tbsCertificate'])) { - unset($this->currentCert); - unset($this->currentKeyIdentifier); - $this->dn = $cert['tbsCertificate']['subject']; - if (!isset($this->dn)) { - return false; - } - $this->currentCert = $cert; - - $currentKeyIdentifier = $this->getExtension('id-ce-subjectKeyIdentifier'); - $this->currentKeyIdentifier = is_string($currentKeyIdentifier) ? $currentKeyIdentifier : null; - - unset($this->signatureSubject); - - return $cert; - } - - $asn1 = new ASN1(); - - if ($mode != self::FORMAT_DER) { - $newcert = $this->_extractBER($cert); - if ($mode == self::FORMAT_PEM && $cert == $newcert) { - return false; - } - $cert = $newcert; - } - - if ($cert === false) { - $this->currentCert = false; - return false; - } - - $asn1->loadOIDs($this->oids); - $decoded = $asn1->decodeBER($cert); - - if (!empty($decoded)) { - $x509 = $asn1->asn1map($decoded[0], $this->Certificate); - } - if (!isset($x509) || $x509 === false) { - $this->currentCert = false; - return false; - } - - $this->signatureSubject = substr($cert, $decoded[0]['content'][0]['start'], $decoded[0]['content'][0]['length']); - - if ($this->_isSubArrayValid($x509, 'tbsCertificate/extensions')) { - $this->_mapInExtensions($x509, 'tbsCertificate/extensions', $asn1); - } - $this->_mapInDNs($x509, 'tbsCertificate/issuer/rdnSequence', $asn1); - $this->_mapInDNs($x509, 'tbsCertificate/subject/rdnSequence', $asn1); - - $key = &$x509['tbsCertificate']['subjectPublicKeyInfo']['subjectPublicKey']; - $key = $this->_reformatKey($x509['tbsCertificate']['subjectPublicKeyInfo']['algorithm']['algorithm'], $key); - - $this->currentCert = $x509; - $this->dn = $x509['tbsCertificate']['subject']; - - $currentKeyIdentifier = $this->getExtension('id-ce-subjectKeyIdentifier'); - $this->currentKeyIdentifier = is_string($currentKeyIdentifier) ? $currentKeyIdentifier : null; - - return $x509; - } - - /** - * Save X.509 certificate - * - * @param array $cert - * @param int $format optional - * @access public - * @return string - */ - function saveX509($cert, $format = self::FORMAT_PEM) - { - if (!is_array($cert) || !isset($cert['tbsCertificate'])) { - return false; - } - - switch (true) { - // "case !$a: case !$b: break; default: whatever();" is the same thing as "if ($a && $b) whatever()" - case !($algorithm = $this->_subArray($cert, 'tbsCertificate/subjectPublicKeyInfo/algorithm/algorithm')): - case is_object($cert['tbsCertificate']['subjectPublicKeyInfo']['subjectPublicKey']): - break; - default: - switch ($algorithm) { - case 'rsaEncryption': - $cert['tbsCertificate']['subjectPublicKeyInfo']['subjectPublicKey'] - = base64_encode("\0" . base64_decode(preg_replace('#-.+-|[\r\n]#', '', $cert['tbsCertificate']['subjectPublicKeyInfo']['subjectPublicKey']))); - /* "[For RSA keys] the parameters field MUST have ASN.1 type NULL for this algorithm identifier." - -- https://tools.ietf.org/html/rfc3279#section-2.3.1 - - given that and the fact that RSA keys appear ot be the only key type for which the parameters field can be blank, - it seems like perhaps the ASN.1 description ought not say the parameters field is OPTIONAL, but whatever. - */ - $cert['tbsCertificate']['subjectPublicKeyInfo']['algorithm']['parameters'] = null; - // https://tools.ietf.org/html/rfc3279#section-2.2.1 - $cert['signatureAlgorithm']['parameters'] = null; - $cert['tbsCertificate']['signature']['parameters'] = null; - } - } - - $asn1 = new ASN1(); - $asn1->loadOIDs($this->oids); - - $filters = array(); - $type_utf8_string = array('type' => ASN1::TYPE_UTF8_STRING); - $filters['tbsCertificate']['signature']['parameters'] = $type_utf8_string; - $filters['tbsCertificate']['signature']['issuer']['rdnSequence']['value'] = $type_utf8_string; - $filters['tbsCertificate']['issuer']['rdnSequence']['value'] = $type_utf8_string; - $filters['tbsCertificate']['subject']['rdnSequence']['value'] = $type_utf8_string; - $filters['tbsCertificate']['subjectPublicKeyInfo']['algorithm']['parameters'] = $type_utf8_string; - $filters['signatureAlgorithm']['parameters'] = $type_utf8_string; - $filters['authorityCertIssuer']['directoryName']['rdnSequence']['value'] = $type_utf8_string; - //$filters['policyQualifiers']['qualifier'] = $type_utf8_string; - $filters['distributionPoint']['fullName']['directoryName']['rdnSequence']['value'] = $type_utf8_string; - $filters['directoryName']['rdnSequence']['value'] = $type_utf8_string; - - /* in the case of policyQualifiers/qualifier, the type has to be \phpseclib\File\ASN1::TYPE_IA5_STRING. - \phpseclib\File\ASN1::TYPE_PRINTABLE_STRING will cause OpenSSL's X.509 parser to spit out random - characters. - */ - $filters['policyQualifiers']['qualifier'] - = array('type' => ASN1::TYPE_IA5_STRING); - - $asn1->loadFilters($filters); - - $this->_mapOutExtensions($cert, 'tbsCertificate/extensions', $asn1); - $this->_mapOutDNs($cert, 'tbsCertificate/issuer/rdnSequence', $asn1); - $this->_mapOutDNs($cert, 'tbsCertificate/subject/rdnSequence', $asn1); - - $cert = $asn1->encodeDER($cert, $this->Certificate); - - switch ($format) { - case self::FORMAT_DER: - return $cert; - // case self::FORMAT_PEM: - default: - return "-----BEGIN CERTIFICATE-----\r\n" . chunk_split(base64_encode($cert), 64) . '-----END CERTIFICATE-----'; - } - } - - /** - * Map extension values from octet string to extension-specific internal - * format. - * - * @param array ref $root - * @param string $path - * @param object $asn1 - * @access private - */ - function _mapInExtensions(&$root, $path, $asn1) - { - $extensions = &$this->_subArrayUnchecked($root, $path); - - if ($extensions) { - for ($i = 0; $i < count($extensions); $i++) { - $id = $extensions[$i]['extnId']; - $value = &$extensions[$i]['extnValue']; - $value = base64_decode($value); - $decoded = $asn1->decodeBER($value); - /* [extnValue] contains the DER encoding of an ASN.1 value - corresponding to the extension type identified by extnID */ - $map = $this->_getMapping($id); - if (!is_bool($map)) { - $decoder = $id == 'id-ce-nameConstraints' ? - array($this, '_decodeNameConstraintIP') : - array($this, '_decodeIP'); - $mapped = $asn1->asn1map($decoded[0], $map, array('iPAddress' => $decoder)); - $value = $mapped === false ? $decoded[0] : $mapped; - - if ($id == 'id-ce-certificatePolicies') { - for ($j = 0; $j < count($value); $j++) { - if (!isset($value[$j]['policyQualifiers'])) { - continue; - } - for ($k = 0; $k < count($value[$j]['policyQualifiers']); $k++) { - $subid = $value[$j]['policyQualifiers'][$k]['policyQualifierId']; - $map = $this->_getMapping($subid); - $subvalue = &$value[$j]['policyQualifiers'][$k]['qualifier']; - if ($map !== false) { - $decoded = $asn1->decodeBER($subvalue); - $mapped = $asn1->asn1map($decoded[0], $map); - $subvalue = $mapped === false ? $decoded[0] : $mapped; - } - } - } - } - } else { - $value = base64_encode($value); - } - } - } - } - - /** - * Map extension values from extension-specific internal format to - * octet string. - * - * @param array ref $root - * @param string $path - * @param object $asn1 - * @access private - */ - function _mapOutExtensions(&$root, $path, $asn1) - { - $extensions = &$this->_subArray($root, $path); - - if (is_array($extensions)) { - $size = count($extensions); - for ($i = 0; $i < $size; $i++) { - if ($extensions[$i] instanceof Element) { - continue; - } - - $id = $extensions[$i]['extnId']; - $value = &$extensions[$i]['extnValue']; - - switch ($id) { - case 'id-ce-certificatePolicies': - for ($j = 0; $j < count($value); $j++) { - if (!isset($value[$j]['policyQualifiers'])) { - continue; - } - for ($k = 0; $k < count($value[$j]['policyQualifiers']); $k++) { - $subid = $value[$j]['policyQualifiers'][$k]['policyQualifierId']; - $map = $this->_getMapping($subid); - $subvalue = &$value[$j]['policyQualifiers'][$k]['qualifier']; - if ($map !== false) { - // by default \phpseclib\File\ASN1 will try to render qualifier as a \phpseclib\File\ASN1::TYPE_IA5_STRING since it's - // actual type is \phpseclib\File\ASN1::TYPE_ANY - $subvalue = new Element($asn1->encodeDER($subvalue, $map)); - } - } - } - break; - case 'id-ce-authorityKeyIdentifier': // use 00 as the serial number instead of an empty string - if (isset($value['authorityCertSerialNumber'])) { - if ($value['authorityCertSerialNumber']->toBytes() == '') { - $temp = chr((ASN1::CLASS_CONTEXT_SPECIFIC << 6) | 2) . "\1\0"; - $value['authorityCertSerialNumber'] = new Element($temp); - } - } - } - - /* [extnValue] contains the DER encoding of an ASN.1 value - corresponding to the extension type identified by extnID */ - $map = $this->_getMapping($id); - if (is_bool($map)) { - if (!$map) { - user_error($id . ' is not a currently supported extension'); - unset($extensions[$i]); - } - } else { - $temp = $asn1->encodeDER($value, $map, array('iPAddress' => array($this, '_encodeIP'))); - $value = base64_encode($temp); - } - } - } - } - - /** - * Map attribute values from ANY type to attribute-specific internal - * format. - * - * @param array ref $root - * @param string $path - * @param object $asn1 - * @access private - */ - function _mapInAttributes(&$root, $path, $asn1) - { - $attributes = &$this->_subArray($root, $path); - - if (is_array($attributes)) { - for ($i = 0; $i < count($attributes); $i++) { - $id = $attributes[$i]['type']; - /* $value contains the DER encoding of an ASN.1 value - corresponding to the attribute type identified by type */ - $map = $this->_getMapping($id); - if (is_array($attributes[$i]['value'])) { - $values = &$attributes[$i]['value']; - for ($j = 0; $j < count($values); $j++) { - $value = $asn1->encodeDER($values[$j], $this->AttributeValue); - $decoded = $asn1->decodeBER($value); - if (!is_bool($map)) { - $mapped = $asn1->asn1map($decoded[0], $map); - if ($mapped !== false) { - $values[$j] = $mapped; - } - if ($id == 'pkcs-9-at-extensionRequest' && $this->_isSubArrayValid($values, $j)) { - $this->_mapInExtensions($values, $j, $asn1); - } - } elseif ($map) { - $values[$j] = base64_encode($value); - } - } - } - } - } - } - - /** - * Map attribute values from attribute-specific internal format to - * ANY type. - * - * @param array ref $root - * @param string $path - * @param object $asn1 - * @access private - */ - function _mapOutAttributes(&$root, $path, $asn1) - { - $attributes = &$this->_subArray($root, $path); - - if (is_array($attributes)) { - $size = count($attributes); - for ($i = 0; $i < $size; $i++) { - /* [value] contains the DER encoding of an ASN.1 value - corresponding to the attribute type identified by type */ - $id = $attributes[$i]['type']; - $map = $this->_getMapping($id); - if ($map === false) { - user_error($id . ' is not a currently supported attribute', E_USER_NOTICE); - unset($attributes[$i]); - } elseif (is_array($attributes[$i]['value'])) { - $values = &$attributes[$i]['value']; - for ($j = 0; $j < count($values); $j++) { - switch ($id) { - case 'pkcs-9-at-extensionRequest': - $this->_mapOutExtensions($values, $j, $asn1); - break; - } - - if (!is_bool($map)) { - $temp = $asn1->encodeDER($values[$j], $map); - $decoded = $asn1->decodeBER($temp); - $values[$j] = $asn1->asn1map($decoded[0], $this->AttributeValue); - } - } - } - } - } - } - - /** - * Map DN values from ANY type to DN-specific internal - * format. - * - * @param array ref $root - * @param string $path - * @param object $asn1 - * @access private - */ - function _mapInDNs(&$root, $path, $asn1) - { - $dns = &$this->_subArray($root, $path); - - if (is_array($dns)) { - for ($i = 0; $i < count($dns); $i++) { - for ($j = 0; $j < count($dns[$i]); $j++) { - $type = $dns[$i][$j]['type']; - $value = &$dns[$i][$j]['value']; - if (is_object($value) && $value instanceof Element) { - $map = $this->_getMapping($type); - if (!is_bool($map)) { - $decoded = $asn1->decodeBER($value); - $value = $asn1->asn1map($decoded[0], $map); - } - } - } - } - } - } - - /** - * Map DN values from DN-specific internal format to - * ANY type. - * - * @param array ref $root - * @param string $path - * @param object $asn1 - * @access private - */ - function _mapOutDNs(&$root, $path, $asn1) - { - $dns = &$this->_subArray($root, $path); - - if (is_array($dns)) { - $size = count($dns); - for ($i = 0; $i < $size; $i++) { - for ($j = 0; $j < count($dns[$i]); $j++) { - $type = $dns[$i][$j]['type']; - $value = &$dns[$i][$j]['value']; - if (is_object($value) && $value instanceof Element) { - continue; - } - - $map = $this->_getMapping($type); - if (!is_bool($map)) { - $value = new Element($asn1->encodeDER($value, $map)); - } - } - } - } - } - - /** - * Associate an extension ID to an extension mapping - * - * @param string $extnId - * @access private - * @return mixed - */ - function _getMapping($extnId) - { - if (!is_string($extnId)) { // eg. if it's a \phpseclib\File\ASN1\Element object - return true; - } - - switch ($extnId) { - case 'id-ce-keyUsage': - return $this->KeyUsage; - case 'id-ce-basicConstraints': - return $this->BasicConstraints; - case 'id-ce-subjectKeyIdentifier': - return $this->KeyIdentifier; - case 'id-ce-cRLDistributionPoints': - return $this->CRLDistributionPoints; - case 'id-ce-authorityKeyIdentifier': - return $this->AuthorityKeyIdentifier; - case 'id-ce-certificatePolicies': - return $this->CertificatePolicies; - case 'id-ce-extKeyUsage': - return $this->ExtKeyUsageSyntax; - case 'id-pe-authorityInfoAccess': - return $this->AuthorityInfoAccessSyntax; - case 'id-pe-subjectInfoAccess': - return $this->SubjectInfoAccessSyntax; - case 'id-ce-subjectAltName': - return $this->SubjectAltName; - case 'id-ce-subjectDirectoryAttributes': - return $this->SubjectDirectoryAttributes; - case 'id-ce-privateKeyUsagePeriod': - return $this->PrivateKeyUsagePeriod; - case 'id-ce-issuerAltName': - return $this->IssuerAltName; - case 'id-ce-policyMappings': - return $this->PolicyMappings; - case 'id-ce-nameConstraints': - return $this->NameConstraints; - - case 'netscape-cert-type': - return $this->netscape_cert_type; - case 'netscape-comment': - return $this->netscape_comment; - case 'netscape-ca-policy-url': - return $this->netscape_ca_policy_url; - - // since id-qt-cps isn't a constructed type it will have already been decoded as a string by the time it gets - // back around to asn1map() and we don't want it decoded again. - //case 'id-qt-cps': - // return $this->CPSuri; - case 'id-qt-unotice': - return $this->UserNotice; - - // the following OIDs are unsupported but we don't want them to give notices when calling saveX509(). - case 'id-pe-logotype': // http://www.ietf.org/rfc/rfc3709.txt - case 'entrustVersInfo': - // http://support.microsoft.com/kb/287547 - case '1.3.6.1.4.1.311.20.2': // szOID_ENROLL_CERTTYPE_EXTENSION - case '1.3.6.1.4.1.311.21.1': // szOID_CERTSRV_CA_VERSION - // "SET Secure Electronic Transaction Specification" - // http://www.maithean.com/docs/set_bk3.pdf - case '2.23.42.7.0': // id-set-hashedRootKey - // "Certificate Transparency" - // https://tools.ietf.org/html/rfc6962 - case '1.3.6.1.4.1.11129.2.4.2': - // "Qualified Certificate statements" - // https://tools.ietf.org/html/rfc3739#section-3.2.6 - case '1.3.6.1.5.5.7.1.3': - return true; - - // CSR attributes - case 'pkcs-9-at-unstructuredName': - return $this->PKCS9String; - case 'pkcs-9-at-challengePassword': - return $this->DirectoryString; - case 'pkcs-9-at-extensionRequest': - return $this->Extensions; - - // CRL extensions. - case 'id-ce-cRLNumber': - return $this->CRLNumber; - case 'id-ce-deltaCRLIndicator': - return $this->CRLNumber; - case 'id-ce-issuingDistributionPoint': - return $this->IssuingDistributionPoint; - case 'id-ce-freshestCRL': - return $this->CRLDistributionPoints; - case 'id-ce-cRLReasons': - return $this->CRLReason; - case 'id-ce-invalidityDate': - return $this->InvalidityDate; - case 'id-ce-certificateIssuer': - return $this->CertificateIssuer; - case 'id-ce-holdInstructionCode': - return $this->HoldInstructionCode; - case 'id-at-postalAddress': - return $this->PostalAddress; - } - - return false; - } - - /** - * Load an X.509 certificate as a certificate authority - * - * @param string $cert - * @access public - * @return bool - */ - function loadCA($cert) - { - $olddn = $this->dn; - $oldcert = $this->currentCert; - $oldsigsubj = $this->signatureSubject; - $oldkeyid = $this->currentKeyIdentifier; - - $cert = $this->loadX509($cert); - if (!$cert) { - $this->dn = $olddn; - $this->currentCert = $oldcert; - $this->signatureSubject = $oldsigsubj; - $this->currentKeyIdentifier = $oldkeyid; - - return false; - } - - /* From RFC5280 "PKIX Certificate and CRL Profile": - - If the keyUsage extension is present, then the subject public key - MUST NOT be used to verify signatures on certificates or CRLs unless - the corresponding keyCertSign or cRLSign bit is set. */ - //$keyUsage = $this->getExtension('id-ce-keyUsage'); - //if ($keyUsage && !in_array('keyCertSign', $keyUsage)) { - // return false; - //} - - /* From RFC5280 "PKIX Certificate and CRL Profile": - - The cA boolean indicates whether the certified public key may be used - to verify certificate signatures. If the cA boolean is not asserted, - then the keyCertSign bit in the key usage extension MUST NOT be - asserted. If the basic constraints extension is not present in a - version 3 certificate, or the extension is present but the cA boolean - is not asserted, then the certified public key MUST NOT be used to - verify certificate signatures. */ - //$basicConstraints = $this->getExtension('id-ce-basicConstraints'); - //if (!$basicConstraints || !$basicConstraints['cA']) { - // return false; - //} - - $this->CAs[] = $cert; - - $this->dn = $olddn; - $this->currentCert = $oldcert; - $this->signatureSubject = $oldsigsubj; - - return true; - } - - /** - * Validate an X.509 certificate against a URL - * - * From RFC2818 "HTTP over TLS": - * - * Matching is performed using the matching rules specified by - * [RFC2459]. If more than one identity of a given type is present in - * the certificate (e.g., more than one dNSName name, a match in any one - * of the set is considered acceptable.) Names may contain the wildcard - * character * which is considered to match any single domain name - * component or component fragment. E.g., *.a.com matches foo.a.com but - * not bar.foo.a.com. f*.com matches foo.com but not bar.com. - * - * @param string $url - * @access public - * @return bool - */ - function validateURL($url) - { - if (!is_array($this->currentCert) || !isset($this->currentCert['tbsCertificate'])) { - return false; - } - - $components = parse_url($url); - if (!isset($components['host'])) { - return false; - } - - if ($names = $this->getExtension('id-ce-subjectAltName')) { - foreach ($names as $name) { - foreach ($name as $key => $value) { - $value = str_replace(array('.', '*'), array('\.', '[^.]*'), $value); - switch ($key) { - case 'dNSName': - /* From RFC2818 "HTTP over TLS": - - If a subjectAltName extension of type dNSName is present, that MUST - be used as the identity. Otherwise, the (most specific) Common Name - field in the Subject field of the certificate MUST be used. Although - the use of the Common Name is existing practice, it is deprecated and - Certification Authorities are encouraged to use the dNSName instead. */ - if (preg_match('#^' . $value . '$#', $components['host'])) { - return true; - } - break; - case 'iPAddress': - /* From RFC2818 "HTTP over TLS": - - In some cases, the URI is specified as an IP address rather than a - hostname. In this case, the iPAddress subjectAltName must be present - in the certificate and must exactly match the IP in the URI. */ - if (preg_match('#(?:\d{1-3}\.){4}#', $components['host'] . '.') && preg_match('#^' . $value . '$#', $components['host'])) { - return true; - } - } - } - } - return false; - } - - if ($value = $this->getDNProp('id-at-commonName')) { - $value = str_replace(array('.', '*'), array('\.', '[^.]*'), $value[0]); - return preg_match('#^' . $value . '$#', $components['host']); - } - - return false; - } - - /** - * Validate a date - * - * If $date isn't defined it is assumed to be the current date. - * - * @param \DateTime|string $date optional - * @access public - */ - function validateDate($date = null) - { - if (!is_array($this->currentCert) || !isset($this->currentCert['tbsCertificate'])) { - return false; - } - - if (!isset($date)) { - $date = new DateTime(null, new DateTimeZone(@date_default_timezone_get())); - } - - $notBefore = $this->currentCert['tbsCertificate']['validity']['notBefore']; - $notBefore = isset($notBefore['generalTime']) ? $notBefore['generalTime'] : $notBefore['utcTime']; - - $notAfter = $this->currentCert['tbsCertificate']['validity']['notAfter']; - $notAfter = isset($notAfter['generalTime']) ? $notAfter['generalTime'] : $notAfter['utcTime']; - - if (is_string($date)) { - $date = new DateTime($date, new DateTimeZone(@date_default_timezone_get())); - } - - $notBefore = new DateTime($notBefore, new DateTimeZone(@date_default_timezone_get())); - $notAfter = new DateTime($notAfter, new DateTimeZone(@date_default_timezone_get())); - - switch (true) { - case $date < $notBefore: - case $date > $notAfter: - return false; - } - - return true; - } - - /** - * Fetches a URL - * - * @param string $url - * @access private - * @return bool|string - */ - static function _fetchURL($url) - { - if (self::$disable_url_fetch) { - return false; - } - - $parts = parse_url($url); - $data = ''; - switch ($parts['scheme']) { - case 'http': - $fsock = @fsockopen($parts['host'], isset($parts['port']) ? $parts['port'] : 80); - if (!$fsock) { - return false; - } - fputs($fsock, "GET $parts[path] HTTP/1.0\r\n"); - fputs($fsock, "Host: $parts[host]\r\n\r\n"); - $line = fgets($fsock, 1024); - if (strlen($line) < 3) { - return false; - } - preg_match('#HTTP/1.\d (\d{3})#', $line, $temp); - if ($temp[1] != '200') { - return false; - } - - // skip the rest of the headers in the http response - while (!feof($fsock) && fgets($fsock, 1024) != "\r\n") { - } - - while (!feof($fsock)) { - $temp = fread($fsock, 1024); - if ($temp === false) { - return false; - } - $data.= $temp; - } - - break; - //case 'ftp': - //case 'ldap': - //default: - } - - return $data; - } - - /** - * Validates an intermediate cert as identified via authority info access extension - * - * See https://tools.ietf.org/html/rfc4325 for more info - * - * @param bool $caonly - * @param int $count - * @access private - * @return bool - */ - function _testForIntermediate($caonly, $count) - { - $opts = $this->getExtension('id-pe-authorityInfoAccess'); - if (!is_array($opts)) { - return false; - } - foreach ($opts as $opt) { - if ($opt['accessMethod'] == 'id-ad-caIssuers') { - // accessLocation is a GeneralName. GeneralName fields support stuff like email addresses, IP addresses, LDAP, - // etc, but we're only supporting URI's. URI's and LDAP are the only thing https://tools.ietf.org/html/rfc4325 - // discusses - if (isset($opt['accessLocation']['uniformResourceIdentifier'])) { - $url = $opt['accessLocation']['uniformResourceIdentifier']; - break; - } - } - } - - if (!isset($url)) { - return false; - } - - $cert = static::_fetchURL($url); - if (!is_string($cert)) { - return false; - } - - $parent = new static(); - $parent->CAs = $this->CAs; - /* - "Conforming applications that support HTTP or FTP for accessing - certificates MUST be able to accept .cer files and SHOULD be able - to accept .p7c files." -- https://tools.ietf.org/html/rfc4325 - - A .p7c file is 'a "certs-only" CMS message as specified in RFC 2797" - - These are currently unsupported - */ - if (!is_array($parent->loadX509($cert))) { - return false; - } - - if (!$parent->_validateSignatureCountable($caonly, ++$count)) { - return false; - } - - $this->CAs[] = $parent->currentCert; - //$this->loadCA($cert); - - return true; - } - - /** - * Validate a signature - * - * Works on X.509 certs, CSR's and CRL's. - * Returns true if the signature is verified, false if it is not correct or null on error - * - * By default returns false for self-signed certs. Call validateSignature(false) to make this support - * self-signed. - * - * The behavior of this function is inspired by {@link http://php.net/openssl-verify openssl_verify}. - * - * @param bool $caonly optional - * @access public - * @return mixed - */ - function validateSignature($caonly = true) - { - return $this->_validateSignatureCountable($caonly, 0); - } - - /** - * Validate a signature - * - * Performs said validation whilst keeping track of how many times validation method is called - * - * @param bool $caonly - * @param int $count - * @access private - * @return mixed - */ - function _validateSignatureCountable($caonly, $count) - { - if (!is_array($this->currentCert) || !isset($this->signatureSubject)) { - return null; - } - - if ($count == self::$recur_limit) { - return false; - } - - /* TODO: - "emailAddress attribute values are not case-sensitive (e.g., "subscriber@example.com" is the same as "SUBSCRIBER@EXAMPLE.COM")." - -- http://tools.ietf.org/html/rfc5280#section-4.1.2.6 - - implement pathLenConstraint in the id-ce-basicConstraints extension */ - - switch (true) { - case isset($this->currentCert['tbsCertificate']): - // self-signed cert - switch (true) { - case !defined('FILE_X509_IGNORE_TYPE') && $this->currentCert['tbsCertificate']['issuer'] === $this->currentCert['tbsCertificate']['subject']: - case defined('FILE_X509_IGNORE_TYPE') && $this->getIssuerDN(self::DN_STRING) === $this->getDN(self::DN_STRING): - $authorityKey = $this->getExtension('id-ce-authorityKeyIdentifier'); - $subjectKeyID = $this->getExtension('id-ce-subjectKeyIdentifier'); - switch (true) { - case !is_array($authorityKey): - case !$subjectKeyID: - case isset($authorityKey['keyIdentifier']) && $authorityKey['keyIdentifier'] === $subjectKeyID: - $signingCert = $this->currentCert; // working cert - } - } - - if (!empty($this->CAs)) { - for ($i = 0; $i < count($this->CAs); $i++) { - // even if the cert is a self-signed one we still want to see if it's a CA; - // if not, we'll conditionally return an error - $ca = $this->CAs[$i]; - switch (true) { - case !defined('FILE_X509_IGNORE_TYPE') && $this->currentCert['tbsCertificate']['issuer'] === $ca['tbsCertificate']['subject']: - case defined('FILE_X509_IGNORE_TYPE') && $this->getDN(self::DN_STRING, $this->currentCert['tbsCertificate']['issuer']) === $this->getDN(self::DN_STRING, $ca['tbsCertificate']['subject']): - $authorityKey = $this->getExtension('id-ce-authorityKeyIdentifier'); - $subjectKeyID = $this->getExtension('id-ce-subjectKeyIdentifier', $ca); - switch (true) { - case !is_array($authorityKey): - case !$subjectKeyID: - case isset($authorityKey['keyIdentifier']) && $authorityKey['keyIdentifier'] === $subjectKeyID: - if (is_array($authorityKey) && isset($authorityKey['authorityCertSerialNumber']) && !$authorityKey['authorityCertSerialNumber']->equals($ca['tbsCertificate']['serialNumber'])) { - break 2; // serial mismatch - check other ca - } - $signingCert = $ca; // working cert - break 3; - } - } - } - if (count($this->CAs) == $i && $caonly) { - return $this->_testForIntermediate($caonly, $count) && $this->validateSignature($caonly); - } - } elseif (!isset($signingCert) || $caonly) { - return $this->_testForIntermediate($caonly, $count) && $this->validateSignature($caonly); - } - return $this->_validateSignature( - $signingCert['tbsCertificate']['subjectPublicKeyInfo']['algorithm']['algorithm'], - $signingCert['tbsCertificate']['subjectPublicKeyInfo']['subjectPublicKey'], - $this->currentCert['signatureAlgorithm']['algorithm'], - substr(base64_decode($this->currentCert['signature']), 1), - $this->signatureSubject - ); - case isset($this->currentCert['certificationRequestInfo']): - return $this->_validateSignature( - $this->currentCert['certificationRequestInfo']['subjectPKInfo']['algorithm']['algorithm'], - $this->currentCert['certificationRequestInfo']['subjectPKInfo']['subjectPublicKey'], - $this->currentCert['signatureAlgorithm']['algorithm'], - substr(base64_decode($this->currentCert['signature']), 1), - $this->signatureSubject - ); - case isset($this->currentCert['publicKeyAndChallenge']): - return $this->_validateSignature( - $this->currentCert['publicKeyAndChallenge']['spki']['algorithm']['algorithm'], - $this->currentCert['publicKeyAndChallenge']['spki']['subjectPublicKey'], - $this->currentCert['signatureAlgorithm']['algorithm'], - substr(base64_decode($this->currentCert['signature']), 1), - $this->signatureSubject - ); - case isset($this->currentCert['tbsCertList']): - if (!empty($this->CAs)) { - for ($i = 0; $i < count($this->CAs); $i++) { - $ca = $this->CAs[$i]; - switch (true) { - case !defined('FILE_X509_IGNORE_TYPE') && $this->currentCert['tbsCertList']['issuer'] === $ca['tbsCertificate']['subject']: - case defined('FILE_X509_IGNORE_TYPE') && $this->getDN(self::DN_STRING, $this->currentCert['tbsCertList']['issuer']) === $this->getDN(self::DN_STRING, $ca['tbsCertificate']['subject']): - $authorityKey = $this->getExtension('id-ce-authorityKeyIdentifier'); - $subjectKeyID = $this->getExtension('id-ce-subjectKeyIdentifier', $ca); - switch (true) { - case !is_array($authorityKey): - case !$subjectKeyID: - case isset($authorityKey['keyIdentifier']) && $authorityKey['keyIdentifier'] === $subjectKeyID: - if (is_array($authorityKey) && isset($authorityKey['authorityCertSerialNumber']) && !$authorityKey['authorityCertSerialNumber']->equals($ca['tbsCertificate']['serialNumber'])) { - break 2; // serial mismatch - check other ca - } - $signingCert = $ca; // working cert - break 3; - } - } - } - } - if (!isset($signingCert)) { - return false; - } - return $this->_validateSignature( - $signingCert['tbsCertificate']['subjectPublicKeyInfo']['algorithm']['algorithm'], - $signingCert['tbsCertificate']['subjectPublicKeyInfo']['subjectPublicKey'], - $this->currentCert['signatureAlgorithm']['algorithm'], - substr(base64_decode($this->currentCert['signature']), 1), - $this->signatureSubject - ); - default: - return false; - } - } - - /** - * Validates a signature - * - * Returns true if the signature is verified, false if it is not correct or null on error - * - * @param string $publicKeyAlgorithm - * @param string $publicKey - * @param string $signatureAlgorithm - * @param string $signature - * @param string $signatureSubject - * @access private - * @return int - */ - function _validateSignature($publicKeyAlgorithm, $publicKey, $signatureAlgorithm, $signature, $signatureSubject) - { - switch ($publicKeyAlgorithm) { - case 'rsaEncryption': - $rsa = new RSA(); - $rsa->loadKey($publicKey); - - switch ($signatureAlgorithm) { - case 'md2WithRSAEncryption': - case 'md5WithRSAEncryption': - case 'sha1WithRSAEncryption': - case 'sha224WithRSAEncryption': - case 'sha256WithRSAEncryption': - case 'sha384WithRSAEncryption': - case 'sha512WithRSAEncryption': - $rsa->setHash(preg_replace('#WithRSAEncryption$#', '', $signatureAlgorithm)); - $rsa->setSignatureMode(RSA::SIGNATURE_PKCS1); - if (!@$rsa->verify($signatureSubject, $signature)) { - return false; - } - break; - default: - return null; - } - break; - default: - return null; - } - - return true; - } - - /** - * Sets the recursion limit - * - * When validating a signature it may be necessary to download intermediate certs from URI's. - * An intermediate cert that linked to itself would result in an infinite loop so to prevent - * that we set a recursion limit. A negative number means that there is no recursion limit. - * - * @param int $count - * @access public - */ - static function setRecurLimit($count) - { - self::$recur_limit = $count; - } - - /** - * Prevents URIs from being automatically retrieved - * - * @access public - */ - static function disableURLFetch() - { - self::$disable_url_fetch = true; - } - - /** - * Allows URIs to be automatically retrieved - * - * @access public - */ - static function enableURLFetch() - { - self::$disable_url_fetch = false; - } - - /** - * Reformat public keys - * - * Reformats a public key to a format supported by phpseclib (if applicable) - * - * @param string $algorithm - * @param string $key - * @access private - * @return string - */ - function _reformatKey($algorithm, $key) - { - switch ($algorithm) { - case 'rsaEncryption': - return - "-----BEGIN RSA PUBLIC KEY-----\r\n" . - // subjectPublicKey is stored as a bit string in X.509 certs. the first byte of a bit string represents how many bits - // in the last byte should be ignored. the following only supports non-zero stuff but as none of the X.509 certs Firefox - // uses as a cert authority actually use a non-zero bit I think it's safe to assume that none do. - chunk_split(base64_encode(substr(base64_decode($key), 1)), 64) . - '-----END RSA PUBLIC KEY-----'; - default: - return $key; - } - } - - /** - * Decodes an IP address - * - * Takes in a base64 encoded "blob" and returns a human readable IP address - * - * @param string $ip - * @access private - * @return string - */ - function _decodeIP($ip) - { - return inet_ntop(base64_decode($ip)); - } - - /** - * Decodes an IP address in a name constraints extension - * - * Takes in a base64 encoded "blob" and returns a human readable IP address / mask - * - * @param string $ip - * @access private - * @return array - */ - function _decodeNameConstraintIP($ip) - { - $ip = base64_decode($ip); - $size = strlen($ip) >> 1; - $mask = substr($ip, $size); - $ip = substr($ip, 0, $size); - return array(inet_ntop($ip), inet_ntop($mask)); - } - - /** - * Encodes an IP address - * - * Takes a human readable IP address into a base64-encoded "blob" - * - * @param string|array $ip - * @access private - * @return string - */ - function _encodeIP($ip) - { - return is_string($ip) ? - base64_encode(inet_pton($ip)) : - base64_encode(inet_pton($ip[0]) . inet_pton($ip[1])); - } - - /** - * "Normalizes" a Distinguished Name property - * - * @param string $propName - * @access private - * @return mixed - */ - function _translateDNProp($propName) - { - switch (strtolower($propName)) { - case 'id-at-countryname': - case 'countryname': - case 'c': - return 'id-at-countryName'; - case 'id-at-organizationname': - case 'organizationname': - case 'o': - return 'id-at-organizationName'; - case 'id-at-dnqualifier': - case 'dnqualifier': - return 'id-at-dnQualifier'; - case 'id-at-commonname': - case 'commonname': - case 'cn': - return 'id-at-commonName'; - case 'id-at-stateorprovincename': - case 'stateorprovincename': - case 'state': - case 'province': - case 'provincename': - case 'st': - return 'id-at-stateOrProvinceName'; - case 'id-at-localityname': - case 'localityname': - case 'l': - return 'id-at-localityName'; - case 'id-emailaddress': - case 'emailaddress': - return 'pkcs-9-at-emailAddress'; - case 'id-at-serialnumber': - case 'serialnumber': - return 'id-at-serialNumber'; - case 'id-at-postalcode': - case 'postalcode': - return 'id-at-postalCode'; - case 'id-at-streetaddress': - case 'streetaddress': - return 'id-at-streetAddress'; - case 'id-at-name': - case 'name': - return 'id-at-name'; - case 'id-at-givenname': - case 'givenname': - return 'id-at-givenName'; - case 'id-at-surname': - case 'surname': - case 'sn': - return 'id-at-surname'; - case 'id-at-initials': - case 'initials': - return 'id-at-initials'; - case 'id-at-generationqualifier': - case 'generationqualifier': - return 'id-at-generationQualifier'; - case 'id-at-organizationalunitname': - case 'organizationalunitname': - case 'ou': - return 'id-at-organizationalUnitName'; - case 'id-at-pseudonym': - case 'pseudonym': - return 'id-at-pseudonym'; - case 'id-at-title': - case 'title': - return 'id-at-title'; - case 'id-at-description': - case 'description': - return 'id-at-description'; - case 'id-at-role': - case 'role': - return 'id-at-role'; - case 'id-at-uniqueidentifier': - case 'uniqueidentifier': - case 'x500uniqueidentifier': - return 'id-at-uniqueIdentifier'; - case 'postaladdress': - case 'id-at-postaladdress': - return 'id-at-postalAddress'; - default: - return false; - } - } - - /** - * Set a Distinguished Name property - * - * @param string $propName - * @param mixed $propValue - * @param string $type optional - * @access public - * @return bool - */ - function setDNProp($propName, $propValue, $type = 'utf8String') - { - if (empty($this->dn)) { - $this->dn = array('rdnSequence' => array()); - } - - if (($propName = $this->_translateDNProp($propName)) === false) { - return false; - } - - foreach ((array) $propValue as $v) { - if (!is_array($v) && isset($type)) { - $v = array($type => $v); - } - $this->dn['rdnSequence'][] = array( - array( - 'type' => $propName, - 'value'=> $v - ) - ); - } - - return true; - } - - /** - * Remove Distinguished Name properties - * - * @param string $propName - * @access public - */ - function removeDNProp($propName) - { - if (empty($this->dn)) { - return; - } - - if (($propName = $this->_translateDNProp($propName)) === false) { - return; - } - - $dn = &$this->dn['rdnSequence']; - $size = count($dn); - for ($i = 0; $i < $size; $i++) { - if ($dn[$i][0]['type'] == $propName) { - unset($dn[$i]); - } - } - - $dn = array_values($dn); - // fix for https://bugs.php.net/75433 affecting PHP 7.2 - if (!isset($dn[0])) { - $dn = array_splice($dn, 0, 0); - } - } - - /** - * Get Distinguished Name properties - * - * @param string $propName - * @param array $dn optional - * @param bool $withType optional - * @return mixed - * @access public - */ - function getDNProp($propName, $dn = null, $withType = false) - { - if (!isset($dn)) { - $dn = $this->dn; - } - - if (empty($dn)) { - return false; - } - - if (($propName = $this->_translateDNProp($propName)) === false) { - return false; - } - - $asn1 = new ASN1(); - $asn1->loadOIDs($this->oids); - $filters = array(); - $filters['value'] = array('type' => ASN1::TYPE_UTF8_STRING); - $asn1->loadFilters($filters); - $this->_mapOutDNs($dn, 'rdnSequence', $asn1); - $dn = $dn['rdnSequence']; - $result = array(); - for ($i = 0; $i < count($dn); $i++) { - if ($dn[$i][0]['type'] == $propName) { - $v = $dn[$i][0]['value']; - if (!$withType) { - if (is_array($v)) { - foreach ($v as $type => $s) { - $type = array_search($type, $asn1->ANYmap, true); - if ($type !== false && isset($asn1->stringTypeSize[$type])) { - $s = $asn1->convert($s, $type); - if ($s !== false) { - $v = $s; - break; - } - } - } - if (is_array($v)) { - $v = array_pop($v); // Always strip data type. - } - } elseif (is_object($v) && $v instanceof Element) { - $map = $this->_getMapping($propName); - if (!is_bool($map)) { - $decoded = $asn1->decodeBER($v); - $v = $asn1->asn1map($decoded[0], $map); - } - } - } - $result[] = $v; - } - } - - return $result; - } - - /** - * Set a Distinguished Name - * - * @param mixed $dn - * @param bool $merge optional - * @param string $type optional - * @access public - * @return bool - */ - function setDN($dn, $merge = false, $type = 'utf8String') - { - if (!$merge) { - $this->dn = null; - } - - if (is_array($dn)) { - if (isset($dn['rdnSequence'])) { - $this->dn = $dn; // No merge here. - return true; - } - - // handles stuff generated by openssl_x509_parse() - foreach ($dn as $prop => $value) { - if (!$this->setDNProp($prop, $value, $type)) { - return false; - } - } - return true; - } - - // handles everything else - $results = preg_split('#((?:^|, *|/)(?:C=|O=|OU=|CN=|L=|ST=|SN=|postalCode=|streetAddress=|emailAddress=|serialNumber=|organizationalUnitName=|title=|description=|role=|x500UniqueIdentifier=|postalAddress=))#', $dn, -1, PREG_SPLIT_DELIM_CAPTURE); - for ($i = 1; $i < count($results); $i+=2) { - $prop = trim($results[$i], ', =/'); - $value = $results[$i + 1]; - if (!$this->setDNProp($prop, $value, $type)) { - return false; - } - } - - return true; - } - - /** - * Get the Distinguished Name for a certificates subject - * - * @param mixed $format optional - * @param array $dn optional - * @access public - * @return bool - */ - function getDN($format = self::DN_ARRAY, $dn = null) - { - if (!isset($dn)) { - $dn = isset($this->currentCert['tbsCertList']) ? $this->currentCert['tbsCertList']['issuer'] : $this->dn; - } - - switch ((int) $format) { - case self::DN_ARRAY: - return $dn; - case self::DN_ASN1: - $asn1 = new ASN1(); - $asn1->loadOIDs($this->oids); - $filters = array(); - $filters['rdnSequence']['value'] = array('type' => ASN1::TYPE_UTF8_STRING); - $asn1->loadFilters($filters); - $this->_mapOutDNs($dn, 'rdnSequence', $asn1); - return $asn1->encodeDER($dn, $this->Name); - case self::DN_CANON: - // No SEQUENCE around RDNs and all string values normalized as - // trimmed lowercase UTF-8 with all spacing as one blank. - // constructed RDNs will not be canonicalized - $asn1 = new ASN1(); - $asn1->loadOIDs($this->oids); - $filters = array(); - $filters['value'] = array('type' => ASN1::TYPE_UTF8_STRING); - $asn1->loadFilters($filters); - $result = ''; - $this->_mapOutDNs($dn, 'rdnSequence', $asn1); - foreach ($dn['rdnSequence'] as $rdn) { - foreach ($rdn as $i => $attr) { - $attr = &$rdn[$i]; - if (is_array($attr['value'])) { - foreach ($attr['value'] as $type => $v) { - $type = array_search($type, $asn1->ANYmap, true); - if ($type !== false && isset($asn1->stringTypeSize[$type])) { - $v = $asn1->convert($v, $type); - if ($v !== false) { - $v = preg_replace('/\s+/', ' ', $v); - $attr['value'] = strtolower(trim($v)); - break; - } - } - } - } - } - $result .= $asn1->encodeDER($rdn, $this->RelativeDistinguishedName); - } - return $result; - case self::DN_HASH: - $dn = $this->getDN(self::DN_CANON, $dn); - $hash = new Hash('sha1'); - $hash = $hash->hash($dn); - extract(unpack('Vhash', $hash)); - return strtolower(bin2hex(pack('N', $hash))); - } - - // Default is to return a string. - $start = true; - $output = ''; - - $result = array(); - $asn1 = new ASN1(); - $asn1->loadOIDs($this->oids); - $filters = array(); - $filters['rdnSequence']['value'] = array('type' => ASN1::TYPE_UTF8_STRING); - $asn1->loadFilters($filters); - $this->_mapOutDNs($dn, 'rdnSequence', $asn1); - - foreach ($dn['rdnSequence'] as $field) { - $prop = $field[0]['type']; - $value = $field[0]['value']; - - $delim = ', '; - switch ($prop) { - case 'id-at-countryName': - $desc = 'C'; - break; - case 'id-at-stateOrProvinceName': - $desc = 'ST'; - break; - case 'id-at-organizationName': - $desc = 'O'; - break; - case 'id-at-organizationalUnitName': - $desc = 'OU'; - break; - case 'id-at-commonName': - $desc = 'CN'; - break; - case 'id-at-localityName': - $desc = 'L'; - break; - case 'id-at-surname': - $desc = 'SN'; - break; - case 'id-at-uniqueIdentifier': - $delim = '/'; - $desc = 'x500UniqueIdentifier'; - break; - case 'id-at-postalAddress': - $delim = '/'; - $desc = 'postalAddress'; - break; - default: - $delim = '/'; - $desc = preg_replace('#.+-([^-]+)$#', '$1', $prop); - } - - if (!$start) { - $output.= $delim; - } - if (is_array($value)) { - foreach ($value as $type => $v) { - $type = array_search($type, $asn1->ANYmap, true); - if ($type !== false && isset($asn1->stringTypeSize[$type])) { - $v = $asn1->convert($v, $type); - if ($v !== false) { - $value = $v; - break; - } - } - } - if (is_array($value)) { - $value = array_pop($value); // Always strip data type. - } - } elseif (is_object($value) && $value instanceof Element) { - $callback = function ($x) { - return "\x" . bin2hex($x[0]); - }; - $value = strtoupper(preg_replace_callback('#[^\x20-\x7E]#', $callback, $value->element)); - } - $output.= $desc . '=' . $value; - $result[$desc] = isset($result[$desc]) ? - array_merge((array) $result[$desc], array($value)) : - $value; - $start = false; - } - - return $format == self::DN_OPENSSL ? $result : $output; - } - - /** - * Get the Distinguished Name for a certificate/crl issuer - * - * @param int $format optional - * @access public - * @return mixed - */ - function getIssuerDN($format = self::DN_ARRAY) - { - switch (true) { - case !isset($this->currentCert) || !is_array($this->currentCert): - break; - case isset($this->currentCert['tbsCertificate']): - return $this->getDN($format, $this->currentCert['tbsCertificate']['issuer']); - case isset($this->currentCert['tbsCertList']): - return $this->getDN($format, $this->currentCert['tbsCertList']['issuer']); - } - - return false; - } - - /** - * Get the Distinguished Name for a certificate/csr subject - * Alias of getDN() - * - * @param int $format optional - * @access public - * @return mixed - */ - function getSubjectDN($format = self::DN_ARRAY) - { - switch (true) { - case !empty($this->dn): - return $this->getDN($format); - case !isset($this->currentCert) || !is_array($this->currentCert): - break; - case isset($this->currentCert['tbsCertificate']): - return $this->getDN($format, $this->currentCert['tbsCertificate']['subject']); - case isset($this->currentCert['certificationRequestInfo']): - return $this->getDN($format, $this->currentCert['certificationRequestInfo']['subject']); - } - - return false; - } - - /** - * Get an individual Distinguished Name property for a certificate/crl issuer - * - * @param string $propName - * @param bool $withType optional - * @access public - * @return mixed - */ - function getIssuerDNProp($propName, $withType = false) - { - switch (true) { - case !isset($this->currentCert) || !is_array($this->currentCert): - break; - case isset($this->currentCert['tbsCertificate']): - return $this->getDNProp($propName, $this->currentCert['tbsCertificate']['issuer'], $withType); - case isset($this->currentCert['tbsCertList']): - return $this->getDNProp($propName, $this->currentCert['tbsCertList']['issuer'], $withType); - } - - return false; - } - - /** - * Get an individual Distinguished Name property for a certificate/csr subject - * - * @param string $propName - * @param bool $withType optional - * @access public - * @return mixed - */ - function getSubjectDNProp($propName, $withType = false) - { - switch (true) { - case !empty($this->dn): - return $this->getDNProp($propName, null, $withType); - case !isset($this->currentCert) || !is_array($this->currentCert): - break; - case isset($this->currentCert['tbsCertificate']): - return $this->getDNProp($propName, $this->currentCert['tbsCertificate']['subject'], $withType); - case isset($this->currentCert['certificationRequestInfo']): - return $this->getDNProp($propName, $this->currentCert['certificationRequestInfo']['subject'], $withType); - } - - return false; - } - - /** - * Get the certificate chain for the current cert - * - * @access public - * @return mixed - */ - function getChain() - { - $chain = array($this->currentCert); - - if (!is_array($this->currentCert) || !isset($this->currentCert['tbsCertificate'])) { - return false; - } - if (empty($this->CAs)) { - return $chain; - } - while (true) { - $currentCert = $chain[count($chain) - 1]; - for ($i = 0; $i < count($this->CAs); $i++) { - $ca = $this->CAs[$i]; - if ($currentCert['tbsCertificate']['issuer'] === $ca['tbsCertificate']['subject']) { - $authorityKey = $this->getExtension('id-ce-authorityKeyIdentifier', $currentCert); - $subjectKeyID = $this->getExtension('id-ce-subjectKeyIdentifier', $ca); - switch (true) { - case !is_array($authorityKey): - case is_array($authorityKey) && isset($authorityKey['keyIdentifier']) && $authorityKey['keyIdentifier'] === $subjectKeyID: - if ($currentCert === $ca) { - break 3; - } - $chain[] = $ca; - break 2; - } - } - } - if ($i == count($this->CAs)) { - break; - } - } - foreach ($chain as $key => $value) { - $chain[$key] = new X509(); - $chain[$key]->loadX509($value); - } - return $chain; - } - - /** - * Set public key - * - * Key needs to be a \phpseclib\Crypt\RSA object - * - * @param object $key - * @access public - * @return bool - */ - function setPublicKey($key) - { - $key->setPublicKey(); - $this->publicKey = $key; - } - - /** - * Set private key - * - * Key needs to be a \phpseclib\Crypt\RSA object - * - * @param object $key - * @access public - */ - function setPrivateKey($key) - { - $this->privateKey = $key; - } - - /** - * Set challenge - * - * Used for SPKAC CSR's - * - * @param string $challenge - * @access public - */ - function setChallenge($challenge) - { - $this->challenge = $challenge; - } - - /** - * Gets the public key - * - * Returns a \phpseclib\Crypt\RSA object or a false. - * - * @access public - * @return mixed - */ - function getPublicKey() - { - if (isset($this->publicKey)) { - return $this->publicKey; - } - - if (isset($this->currentCert) && is_array($this->currentCert)) { - foreach (array('tbsCertificate/subjectPublicKeyInfo', 'certificationRequestInfo/subjectPKInfo') as $path) { - $keyinfo = $this->_subArray($this->currentCert, $path); - if (!empty($keyinfo)) { - break; - } - } - } - if (empty($keyinfo)) { - return false; - } - - $key = $keyinfo['subjectPublicKey']; - - switch ($keyinfo['algorithm']['algorithm']) { - case 'rsaEncryption': - $publicKey = new RSA(); - $publicKey->loadKey($key); - $publicKey->setPublicKey(); - break; - default: - return false; - } - - return $publicKey; - } - - /** - * Load a Certificate Signing Request - * - * @param string $csr - * @access public - * @return mixed - */ - function loadCSR($csr, $mode = self::FORMAT_AUTO_DETECT) - { - if (is_array($csr) && isset($csr['certificationRequestInfo'])) { - unset($this->currentCert); - unset($this->currentKeyIdentifier); - unset($this->signatureSubject); - $this->dn = $csr['certificationRequestInfo']['subject']; - if (!isset($this->dn)) { - return false; - } - - $this->currentCert = $csr; - return $csr; - } - - // see http://tools.ietf.org/html/rfc2986 - - $asn1 = new ASN1(); - - if ($mode != self::FORMAT_DER) { - $newcsr = $this->_extractBER($csr); - if ($mode == self::FORMAT_PEM && $csr == $newcsr) { - return false; - } - $csr = $newcsr; - } - $orig = $csr; - - if ($csr === false) { - $this->currentCert = false; - return false; - } - - $asn1->loadOIDs($this->oids); - $decoded = $asn1->decodeBER($csr); - - if (empty($decoded)) { - $this->currentCert = false; - return false; - } - - $csr = $asn1->asn1map($decoded[0], $this->CertificationRequest); - if (!isset($csr) || $csr === false) { - $this->currentCert = false; - return false; - } - - $this->_mapInAttributes($csr, 'certificationRequestInfo/attributes', $asn1); - $this->_mapInDNs($csr, 'certificationRequestInfo/subject/rdnSequence', $asn1); - - $this->dn = $csr['certificationRequestInfo']['subject']; - - $this->signatureSubject = substr($orig, $decoded[0]['content'][0]['start'], $decoded[0]['content'][0]['length']); - - $algorithm = &$csr['certificationRequestInfo']['subjectPKInfo']['algorithm']['algorithm']; - $key = &$csr['certificationRequestInfo']['subjectPKInfo']['subjectPublicKey']; - $key = $this->_reformatKey($algorithm, $key); - - switch ($algorithm) { - case 'rsaEncryption': - $this->publicKey = new RSA(); - $this->publicKey->loadKey($key); - $this->publicKey->setPublicKey(); - break; - default: - $this->publicKey = null; - } - - $this->currentKeyIdentifier = null; - $this->currentCert = $csr; - - return $csr; - } - - /** - * Save CSR request - * - * @param array $csr - * @param int $format optional - * @access public - * @return string - */ - function saveCSR($csr, $format = self::FORMAT_PEM) - { - if (!is_array($csr) || !isset($csr['certificationRequestInfo'])) { - return false; - } - - switch (true) { - case !($algorithm = $this->_subArray($csr, 'certificationRequestInfo/subjectPKInfo/algorithm/algorithm')): - case is_object($csr['certificationRequestInfo']['subjectPKInfo']['subjectPublicKey']): - break; - default: - switch ($algorithm) { - case 'rsaEncryption': - $csr['certificationRequestInfo']['subjectPKInfo']['subjectPublicKey'] - = base64_encode("\0" . base64_decode(preg_replace('#-.+-|[\r\n]#', '', $csr['certificationRequestInfo']['subjectPKInfo']['subjectPublicKey']))); - $csr['certificationRequestInfo']['subjectPKInfo']['algorithm']['parameters'] = null; - $csr['signatureAlgorithm']['parameters'] = null; - $csr['certificationRequestInfo']['signature']['parameters'] = null; - } - } - - $asn1 = new ASN1(); - - $asn1->loadOIDs($this->oids); - - $filters = array(); - $filters['certificationRequestInfo']['subject']['rdnSequence']['value'] - = array('type' => ASN1::TYPE_UTF8_STRING); - - $asn1->loadFilters($filters); - - $this->_mapOutDNs($csr, 'certificationRequestInfo/subject/rdnSequence', $asn1); - $this->_mapOutAttributes($csr, 'certificationRequestInfo/attributes', $asn1); - $csr = $asn1->encodeDER($csr, $this->CertificationRequest); - - switch ($format) { - case self::FORMAT_DER: - return $csr; - // case self::FORMAT_PEM: - default: - return "-----BEGIN CERTIFICATE REQUEST-----\r\n" . chunk_split(base64_encode($csr), 64) . '-----END CERTIFICATE REQUEST-----'; - } - } - - /** - * Load a SPKAC CSR - * - * SPKAC's are produced by the HTML5 keygen element: - * - * https://developer.mozilla.org/en-US/docs/HTML/Element/keygen - * - * @param string $csr - * @access public - * @return mixed - */ - function loadSPKAC($spkac) - { - if (is_array($spkac) && isset($spkac['publicKeyAndChallenge'])) { - unset($this->currentCert); - unset($this->currentKeyIdentifier); - unset($this->signatureSubject); - $this->currentCert = $spkac; - return $spkac; - } - - // see http://www.w3.org/html/wg/drafts/html/master/forms.html#signedpublickeyandchallenge - - $asn1 = new ASN1(); - - // OpenSSL produces SPKAC's that are preceded by the string SPKAC= - $temp = preg_replace('#(?:SPKAC=)|[ \r\n\\\]#', '', $spkac); - $temp = preg_match('#^[a-zA-Z\d/+]*={0,2}$#', $temp) ? base64_decode($temp) : false; - if ($temp != false) { - $spkac = $temp; - } - $orig = $spkac; - - if ($spkac === false) { - $this->currentCert = false; - return false; - } - - $asn1->loadOIDs($this->oids); - $decoded = $asn1->decodeBER($spkac); - - if (empty($decoded)) { - $this->currentCert = false; - return false; - } - - $spkac = $asn1->asn1map($decoded[0], $this->SignedPublicKeyAndChallenge); - - if (!isset($spkac) || $spkac === false) { - $this->currentCert = false; - return false; - } - - $this->signatureSubject = substr($orig, $decoded[0]['content'][0]['start'], $decoded[0]['content'][0]['length']); - - $algorithm = &$spkac['publicKeyAndChallenge']['spki']['algorithm']['algorithm']; - $key = &$spkac['publicKeyAndChallenge']['spki']['subjectPublicKey']; - $key = $this->_reformatKey($algorithm, $key); - - switch ($algorithm) { - case 'rsaEncryption': - $this->publicKey = new RSA(); - $this->publicKey->loadKey($key); - $this->publicKey->setPublicKey(); - break; - default: - $this->publicKey = null; - } - - $this->currentKeyIdentifier = null; - $this->currentCert = $spkac; - - return $spkac; - } - - /** - * Save a SPKAC CSR request - * - * @param array $csr - * @param int $format optional - * @access public - * @return string - */ - function saveSPKAC($spkac, $format = self::FORMAT_PEM) - { - if (!is_array($spkac) || !isset($spkac['publicKeyAndChallenge'])) { - return false; - } - - $algorithm = $this->_subArray($spkac, 'publicKeyAndChallenge/spki/algorithm/algorithm'); - switch (true) { - case !$algorithm: - case is_object($spkac['publicKeyAndChallenge']['spki']['subjectPublicKey']): - break; - default: - switch ($algorithm) { - case 'rsaEncryption': - $spkac['publicKeyAndChallenge']['spki']['subjectPublicKey'] - = base64_encode("\0" . base64_decode(preg_replace('#-.+-|[\r\n]#', '', $spkac['publicKeyAndChallenge']['spki']['subjectPublicKey']))); - } - } - - $asn1 = new ASN1(); - - $asn1->loadOIDs($this->oids); - $spkac = $asn1->encodeDER($spkac, $this->SignedPublicKeyAndChallenge); - - switch ($format) { - case self::FORMAT_DER: - return $spkac; - // case self::FORMAT_PEM: - default: - // OpenSSL's implementation of SPKAC requires the SPKAC be preceded by SPKAC= and since there are pretty much - // no other SPKAC decoders phpseclib will use that same format - return 'SPKAC=' . base64_encode($spkac); - } - } - - /** - * Load a Certificate Revocation List - * - * @param string $crl - * @access public - * @return mixed - */ - function loadCRL($crl, $mode = self::FORMAT_AUTO_DETECT) - { - if (is_array($crl) && isset($crl['tbsCertList'])) { - $this->currentCert = $crl; - unset($this->signatureSubject); - return $crl; - } - - $asn1 = new ASN1(); - - if ($mode != self::FORMAT_DER) { - $newcrl = $this->_extractBER($crl); - if ($mode == self::FORMAT_PEM && $crl == $newcrl) { - return false; - } - $crl = $newcrl; - } - $orig = $crl; - - if ($crl === false) { - $this->currentCert = false; - return false; - } - - $asn1->loadOIDs($this->oids); - $decoded = $asn1->decodeBER($crl); - - if (empty($decoded)) { - $this->currentCert = false; - return false; - } - - $crl = $asn1->asn1map($decoded[0], $this->CertificateList); - if (!isset($crl) || $crl === false) { - $this->currentCert = false; - return false; - } - - $this->signatureSubject = substr($orig, $decoded[0]['content'][0]['start'], $decoded[0]['content'][0]['length']); - - $this->_mapInDNs($crl, 'tbsCertList/issuer/rdnSequence', $asn1); - if ($this->_isSubArrayValid($crl, 'tbsCertList/crlExtensions')) { - $this->_mapInExtensions($crl, 'tbsCertList/crlExtensions', $asn1); - } - if ($this->_isSubArrayValid($crl, 'tbsCertList/revokedCertificates')) { - $rclist_ref = &$this->_subArrayUnchecked($crl, 'tbsCertList/revokedCertificates'); - if ($rclist_ref) { - $rclist = $crl['tbsCertList']['revokedCertificates']; - foreach ($rclist as $i => $extension) { - if ($this->_isSubArrayValid($rclist, "$i/crlEntryExtensions", $asn1)) { - $this->_mapInExtensions($rclist_ref, "$i/crlEntryExtensions", $asn1); - } - } - } - } - - $this->currentKeyIdentifier = null; - $this->currentCert = $crl; - - return $crl; - } - - /** - * Save Certificate Revocation List. - * - * @param array $crl - * @param int $format optional - * @access public - * @return string - */ - function saveCRL($crl, $format = self::FORMAT_PEM) - { - if (!is_array($crl) || !isset($crl['tbsCertList'])) { - return false; - } - - $asn1 = new ASN1(); - - $asn1->loadOIDs($this->oids); - - $filters = array(); - $filters['tbsCertList']['issuer']['rdnSequence']['value'] - = array('type' => ASN1::TYPE_UTF8_STRING); - $filters['tbsCertList']['signature']['parameters'] - = array('type' => ASN1::TYPE_UTF8_STRING); - $filters['signatureAlgorithm']['parameters'] - = array('type' => ASN1::TYPE_UTF8_STRING); - - if (empty($crl['tbsCertList']['signature']['parameters'])) { - $filters['tbsCertList']['signature']['parameters'] - = array('type' => ASN1::TYPE_NULL); - } - - if (empty($crl['signatureAlgorithm']['parameters'])) { - $filters['signatureAlgorithm']['parameters'] - = array('type' => ASN1::TYPE_NULL); - } - - $asn1->loadFilters($filters); - - $this->_mapOutDNs($crl, 'tbsCertList/issuer/rdnSequence', $asn1); - $this->_mapOutExtensions($crl, 'tbsCertList/crlExtensions', $asn1); - $rclist = &$this->_subArray($crl, 'tbsCertList/revokedCertificates'); - if (is_array($rclist)) { - foreach ($rclist as $i => $extension) { - $this->_mapOutExtensions($rclist, "$i/crlEntryExtensions", $asn1); - } - } - - $crl = $asn1->encodeDER($crl, $this->CertificateList); - - switch ($format) { - case self::FORMAT_DER: - return $crl; - // case self::FORMAT_PEM: - default: - return "-----BEGIN X509 CRL-----\r\n" . chunk_split(base64_encode($crl), 64) . '-----END X509 CRL-----'; - } - } - - /** - * Helper function to build a time field according to RFC 3280 section - * - 4.1.2.5 Validity - * - 5.1.2.4 This Update - * - 5.1.2.5 Next Update - * - 5.1.2.6 Revoked Certificates - * by choosing utcTime iff year of date given is before 2050 and generalTime else. - * - * @param string $date in format date('D, d M Y H:i:s O') - * @access private - * @return array - */ - function _timeField($date) - { - if ($date instanceof Element) { - return $date; - } - $dateObj = new DateTime($date, new DateTimeZone('GMT')); - $year = $dateObj->format('Y'); // the same way ASN1.php parses this - if ($year < 2050) { - return array('utcTime' => $date); - } else { - return array('generalTime' => $date); - } - } - - /** - * Sign an X.509 certificate - * - * $issuer's private key needs to be loaded. - * $subject can be either an existing X.509 cert (if you want to resign it), - * a CSR or something with the DN and public key explicitly set. - * - * @param \phpseclib\File\X509 $issuer - * @param \phpseclib\File\X509 $subject - * @param string $signatureAlgorithm optional - * @access public - * @return mixed - */ - function sign($issuer, $subject, $signatureAlgorithm = 'sha1WithRSAEncryption') - { - if (!is_object($issuer->privateKey) || empty($issuer->dn)) { - return false; - } - - if (isset($subject->publicKey) && !($subjectPublicKey = $subject->_formatSubjectPublicKey())) { - return false; - } - - $currentCert = isset($this->currentCert) ? $this->currentCert : null; - $signatureSubject = isset($this->signatureSubject) ? $this->signatureSubject: null; - - if (isset($subject->currentCert) && is_array($subject->currentCert) && isset($subject->currentCert['tbsCertificate'])) { - $this->currentCert = $subject->currentCert; - $this->currentCert['tbsCertificate']['signature']['algorithm'] = $signatureAlgorithm; - $this->currentCert['signatureAlgorithm']['algorithm'] = $signatureAlgorithm; - - if (!empty($this->startDate)) { - $this->currentCert['tbsCertificate']['validity']['notBefore'] = $this->_timeField($this->startDate); - } - if (!empty($this->endDate)) { - $this->currentCert['tbsCertificate']['validity']['notAfter'] = $this->_timeField($this->endDate); - } - if (!empty($this->serialNumber)) { - $this->currentCert['tbsCertificate']['serialNumber'] = $this->serialNumber; - } - if (!empty($subject->dn)) { - $this->currentCert['tbsCertificate']['subject'] = $subject->dn; - } - if (!empty($subject->publicKey)) { - $this->currentCert['tbsCertificate']['subjectPublicKeyInfo'] = $subjectPublicKey; - } - $this->removeExtension('id-ce-authorityKeyIdentifier'); - if (isset($subject->domains)) { - $this->removeExtension('id-ce-subjectAltName'); - } - } elseif (isset($subject->currentCert) && is_array($subject->currentCert) && isset($subject->currentCert['tbsCertList'])) { - return false; - } else { - if (!isset($subject->publicKey)) { - return false; - } - - $startDate = new DateTime('now', new DateTimeZone(@date_default_timezone_get())); - $startDate = !empty($this->startDate) ? $this->startDate : $startDate->format('D, d M Y H:i:s O'); - - $endDate = new DateTime('+1 year', new DateTimeZone(@date_default_timezone_get())); - $endDate = !empty($this->endDate) ? $this->endDate : $endDate->format('D, d M Y H:i:s O'); - - /* "The serial number MUST be a positive integer" - "Conforming CAs MUST NOT use serialNumber values longer than 20 octets." - -- https://tools.ietf.org/html/rfc5280#section-4.1.2.2 - - for the integer to be positive the leading bit needs to be 0 hence the - application of a bitmap - */ - $serialNumber = !empty($this->serialNumber) ? - $this->serialNumber : - new BigInteger(Random::string(20) & ("\x7F" . str_repeat("\xFF", 19)), 256); - - $this->currentCert = array( - 'tbsCertificate' => - array( - 'version' => 'v3', - 'serialNumber' => $serialNumber, // $this->setSerialNumber() - 'signature' => array('algorithm' => $signatureAlgorithm), - 'issuer' => false, // this is going to be overwritten later - 'validity' => array( - 'notBefore' => $this->_timeField($startDate), // $this->setStartDate() - 'notAfter' => $this->_timeField($endDate) // $this->setEndDate() - ), - 'subject' => $subject->dn, - 'subjectPublicKeyInfo' => $subjectPublicKey - ), - 'signatureAlgorithm' => array('algorithm' => $signatureAlgorithm), - 'signature' => false // this is going to be overwritten later - ); - - // Copy extensions from CSR. - $csrexts = $subject->getAttribute('pkcs-9-at-extensionRequest', 0); - - if (!empty($csrexts)) { - $this->currentCert['tbsCertificate']['extensions'] = $csrexts; - } - } - - $this->currentCert['tbsCertificate']['issuer'] = $issuer->dn; - - if (isset($issuer->currentKeyIdentifier)) { - $this->setExtension('id-ce-authorityKeyIdentifier', array( - //'authorityCertIssuer' => array( - // array( - // 'directoryName' => $issuer->dn - // ) - //), - 'keyIdentifier' => $issuer->currentKeyIdentifier - )); - //$extensions = &$this->currentCert['tbsCertificate']['extensions']; - //if (isset($issuer->serialNumber)) { - // $extensions[count($extensions) - 1]['authorityCertSerialNumber'] = $issuer->serialNumber; - //} - //unset($extensions); - } - - if (isset($subject->currentKeyIdentifier)) { - $this->setExtension('id-ce-subjectKeyIdentifier', $subject->currentKeyIdentifier); - } - - $altName = array(); - - if (isset($subject->domains) && count($subject->domains)) { - $altName = array_map(array('\phpseclib\File\X509', '_dnsName'), $subject->domains); - } - - if (isset($subject->ipAddresses) && count($subject->ipAddresses)) { - // should an IP address appear as the CN if no domain name is specified? idk - //$ips = count($subject->domains) ? $subject->ipAddresses : array_slice($subject->ipAddresses, 1); - $ipAddresses = array(); - foreach ($subject->ipAddresses as $ipAddress) { - $encoded = $subject->_ipAddress($ipAddress); - if ($encoded !== false) { - $ipAddresses[] = $encoded; - } - } - if (count($ipAddresses)) { - $altName = array_merge($altName, $ipAddresses); - } - } - - if (!empty($altName)) { - $this->setExtension('id-ce-subjectAltName', $altName); - } - - if ($this->caFlag) { - $keyUsage = $this->getExtension('id-ce-keyUsage'); - if (!$keyUsage) { - $keyUsage = array(); - } - - $this->setExtension( - 'id-ce-keyUsage', - array_values(array_unique(array_merge($keyUsage, array('cRLSign', 'keyCertSign')))) - ); - - $basicConstraints = $this->getExtension('id-ce-basicConstraints'); - if (!$basicConstraints) { - $basicConstraints = array(); - } - - $this->setExtension( - 'id-ce-basicConstraints', - array_unique(array_merge(array('cA' => true), $basicConstraints)), - true - ); - - if (!isset($subject->currentKeyIdentifier)) { - $this->setExtension('id-ce-subjectKeyIdentifier', base64_encode($this->computeKeyIdentifier($this->currentCert)), false, false); - } - } - - // resync $this->signatureSubject - // save $tbsCertificate in case there are any \phpseclib\File\ASN1\Element objects in it - $tbsCertificate = $this->currentCert['tbsCertificate']; - $this->loadX509($this->saveX509($this->currentCert)); - - $result = $this->_sign($issuer->privateKey, $signatureAlgorithm); - $result['tbsCertificate'] = $tbsCertificate; - - $this->currentCert = $currentCert; - $this->signatureSubject = $signatureSubject; - - return $result; - } - - /** - * Sign a CSR - * - * @access public - * @return mixed - */ - function signCSR($signatureAlgorithm = 'sha1WithRSAEncryption') - { - if (!is_object($this->privateKey) || empty($this->dn)) { - return false; - } - - $origPublicKey = $this->publicKey; - $class = get_class($this->privateKey); - $this->publicKey = new $class(); - $this->publicKey->loadKey($this->privateKey->getPublicKey()); - $this->publicKey->setPublicKey(); - if (!($publicKey = $this->_formatSubjectPublicKey())) { - return false; - } - $this->publicKey = $origPublicKey; - - $currentCert = isset($this->currentCert) ? $this->currentCert : null; - $signatureSubject = isset($this->signatureSubject) ? $this->signatureSubject: null; - - if (isset($this->currentCert) && is_array($this->currentCert) && isset($this->currentCert['certificationRequestInfo'])) { - $this->currentCert['signatureAlgorithm']['algorithm'] = $signatureAlgorithm; - if (!empty($this->dn)) { - $this->currentCert['certificationRequestInfo']['subject'] = $this->dn; - } - $this->currentCert['certificationRequestInfo']['subjectPKInfo'] = $publicKey; - } else { - $this->currentCert = array( - 'certificationRequestInfo' => - array( - 'version' => 'v1', - 'subject' => $this->dn, - 'subjectPKInfo' => $publicKey - ), - 'signatureAlgorithm' => array('algorithm' => $signatureAlgorithm), - 'signature' => false // this is going to be overwritten later - ); - } - - // resync $this->signatureSubject - // save $certificationRequestInfo in case there are any \phpseclib\File\ASN1\Element objects in it - $certificationRequestInfo = $this->currentCert['certificationRequestInfo']; - $this->loadCSR($this->saveCSR($this->currentCert)); - - $result = $this->_sign($this->privateKey, $signatureAlgorithm); - $result['certificationRequestInfo'] = $certificationRequestInfo; - - $this->currentCert = $currentCert; - $this->signatureSubject = $signatureSubject; - - return $result; - } - - /** - * Sign a SPKAC - * - * @access public - * @return mixed - */ - function signSPKAC($signatureAlgorithm = 'sha1WithRSAEncryption') - { - if (!is_object($this->privateKey)) { - return false; - } - - $origPublicKey = $this->publicKey; - $class = get_class($this->privateKey); - $this->publicKey = new $class(); - $this->publicKey->loadKey($this->privateKey->getPublicKey()); - $this->publicKey->setPublicKey(); - $publicKey = $this->_formatSubjectPublicKey(); - if (!$publicKey) { - return false; - } - $this->publicKey = $origPublicKey; - - $currentCert = isset($this->currentCert) ? $this->currentCert : null; - $signatureSubject = isset($this->signatureSubject) ? $this->signatureSubject: null; - - // re-signing a SPKAC seems silly but since everything else supports re-signing why not? - if (isset($this->currentCert) && is_array($this->currentCert) && isset($this->currentCert['publicKeyAndChallenge'])) { - $this->currentCert['signatureAlgorithm']['algorithm'] = $signatureAlgorithm; - $this->currentCert['publicKeyAndChallenge']['spki'] = $publicKey; - if (!empty($this->challenge)) { - // the bitwise AND ensures that the output is a valid IA5String - $this->currentCert['publicKeyAndChallenge']['challenge'] = $this->challenge & str_repeat("\x7F", strlen($this->challenge)); - } - } else { - $this->currentCert = array( - 'publicKeyAndChallenge' => - array( - 'spki' => $publicKey, - // quoting , - // "A challenge string that is submitted along with the public key. Defaults to an empty string if not specified." - // both Firefox and OpenSSL ("openssl spkac -key private.key") behave this way - // we could alternatively do this instead if we ignored the specs: - // Random::string(8) & str_repeat("\x7F", 8) - 'challenge' => !empty($this->challenge) ? $this->challenge : '' - ), - 'signatureAlgorithm' => array('algorithm' => $signatureAlgorithm), - 'signature' => false // this is going to be overwritten later - ); - } - - // resync $this->signatureSubject - // save $publicKeyAndChallenge in case there are any \phpseclib\File\ASN1\Element objects in it - $publicKeyAndChallenge = $this->currentCert['publicKeyAndChallenge']; - $this->loadSPKAC($this->saveSPKAC($this->currentCert)); - - $result = $this->_sign($this->privateKey, $signatureAlgorithm); - $result['publicKeyAndChallenge'] = $publicKeyAndChallenge; - - $this->currentCert = $currentCert; - $this->signatureSubject = $signatureSubject; - - return $result; - } - - /** - * Sign a CRL - * - * $issuer's private key needs to be loaded. - * - * @param \phpseclib\File\X509 $issuer - * @param \phpseclib\File\X509 $crl - * @param string $signatureAlgorithm optional - * @access public - * @return mixed - */ - function signCRL($issuer, $crl, $signatureAlgorithm = 'sha1WithRSAEncryption') - { - if (!is_object($issuer->privateKey) || empty($issuer->dn)) { - return false; - } - - $currentCert = isset($this->currentCert) ? $this->currentCert : null; - $signatureSubject = isset($this->signatureSubject) ? $this->signatureSubject : null; - - $thisUpdate = new DateTime('now', new DateTimeZone(@date_default_timezone_get())); - $thisUpdate = !empty($this->startDate) ? $this->startDate : $thisUpdate->format('D, d M Y H:i:s O'); - - if (isset($crl->currentCert) && is_array($crl->currentCert) && isset($crl->currentCert['tbsCertList'])) { - $this->currentCert = $crl->currentCert; - $this->currentCert['tbsCertList']['signature']['algorithm'] = $signatureAlgorithm; - $this->currentCert['signatureAlgorithm']['algorithm'] = $signatureAlgorithm; - } else { - $this->currentCert = array( - 'tbsCertList' => - array( - 'version' => 'v2', - 'signature' => array('algorithm' => $signatureAlgorithm), - 'issuer' => false, // this is going to be overwritten later - 'thisUpdate' => $this->_timeField($thisUpdate) // $this->setStartDate() - ), - 'signatureAlgorithm' => array('algorithm' => $signatureAlgorithm), - 'signature' => false // this is going to be overwritten later - ); - } - - $tbsCertList = &$this->currentCert['tbsCertList']; - $tbsCertList['issuer'] = $issuer->dn; - $tbsCertList['thisUpdate'] = $this->_timeField($thisUpdate); - - if (!empty($this->endDate)) { - $tbsCertList['nextUpdate'] = $this->_timeField($this->endDate); // $this->setEndDate() - } else { - unset($tbsCertList['nextUpdate']); - } - - if (!empty($this->serialNumber)) { - $crlNumber = $this->serialNumber; - } else { - $crlNumber = $this->getExtension('id-ce-cRLNumber'); - // "The CRL number is a non-critical CRL extension that conveys a - // monotonically increasing sequence number for a given CRL scope and - // CRL issuer. This extension allows users to easily determine when a - // particular CRL supersedes another CRL." - // -- https://tools.ietf.org/html/rfc5280#section-5.2.3 - $crlNumber = $crlNumber !== false ? $crlNumber->add(new BigInteger(1)) : null; - } - - $this->removeExtension('id-ce-authorityKeyIdentifier'); - $this->removeExtension('id-ce-issuerAltName'); - - // Be sure version >= v2 if some extension found. - $version = isset($tbsCertList['version']) ? $tbsCertList['version'] : 0; - if (!$version) { - if (!empty($tbsCertList['crlExtensions'])) { - $version = 1; // v2. - } elseif (!empty($tbsCertList['revokedCertificates'])) { - foreach ($tbsCertList['revokedCertificates'] as $cert) { - if (!empty($cert['crlEntryExtensions'])) { - $version = 1; // v2. - } - } - } - - if ($version) { - $tbsCertList['version'] = $version; - } - } - - // Store additional extensions. - if (!empty($tbsCertList['version'])) { // At least v2. - if (!empty($crlNumber)) { - $this->setExtension('id-ce-cRLNumber', $crlNumber); - } - - if (isset($issuer->currentKeyIdentifier)) { - $this->setExtension('id-ce-authorityKeyIdentifier', array( - //'authorityCertIssuer' => array( - // array( - // 'directoryName' => $issuer->dn - // ) - //), - 'keyIdentifier' => $issuer->currentKeyIdentifier - )); - //$extensions = &$tbsCertList['crlExtensions']; - //if (isset($issuer->serialNumber)) { - // $extensions[count($extensions) - 1]['authorityCertSerialNumber'] = $issuer->serialNumber; - //} - //unset($extensions); - } - - $issuerAltName = $this->getExtension('id-ce-subjectAltName', $issuer->currentCert); - - if ($issuerAltName !== false) { - $this->setExtension('id-ce-issuerAltName', $issuerAltName); - } - } - - if (empty($tbsCertList['revokedCertificates'])) { - unset($tbsCertList['revokedCertificates']); - } - - unset($tbsCertList); - - // resync $this->signatureSubject - // save $tbsCertList in case there are any \phpseclib\File\ASN1\Element objects in it - $tbsCertList = $this->currentCert['tbsCertList']; - $this->loadCRL($this->saveCRL($this->currentCert)); - - $result = $this->_sign($issuer->privateKey, $signatureAlgorithm); - $result['tbsCertList'] = $tbsCertList; - - $this->currentCert = $currentCert; - $this->signatureSubject = $signatureSubject; - - return $result; - } - - /** - * X.509 certificate signing helper function. - * - * @param object $key - * @param \phpseclib\File\X509 $subject - * @param string $signatureAlgorithm - * @access public - * @return mixed - */ - function _sign($key, $signatureAlgorithm) - { - if ($key instanceof RSA) { - switch ($signatureAlgorithm) { - case 'md2WithRSAEncryption': - case 'md5WithRSAEncryption': - case 'sha1WithRSAEncryption': - case 'sha224WithRSAEncryption': - case 'sha256WithRSAEncryption': - case 'sha384WithRSAEncryption': - case 'sha512WithRSAEncryption': - $key->setHash(preg_replace('#WithRSAEncryption$#', '', $signatureAlgorithm)); - $key->setSignatureMode(RSA::SIGNATURE_PKCS1); - - $this->currentCert['signature'] = base64_encode("\0" . $key->sign($this->signatureSubject)); - return $this->currentCert; - } - } - - return false; - } - - /** - * Set certificate start date - * - * @param string $date - * @access public - */ - function setStartDate($date) - { - if (!is_object($date) || !is_a($date, 'DateTime')) { - $date = new DateTime($date, new DateTimeZone(@date_default_timezone_get())); - } - - $this->startDate = $date->format('D, d M Y H:i:s O'); - } - - /** - * Set certificate end date - * - * @param string $date - * @access public - */ - function setEndDate($date) - { - /* - To indicate that a certificate has no well-defined expiration date, - the notAfter SHOULD be assigned the GeneralizedTime value of - 99991231235959Z. - - -- http://tools.ietf.org/html/rfc5280#section-4.1.2.5 - */ - if (strtolower($date) == 'lifetime') { - $temp = '99991231235959Z'; - $asn1 = new ASN1(); - $temp = chr(ASN1::TYPE_GENERALIZED_TIME) . $asn1->_encodeLength(strlen($temp)) . $temp; - $this->endDate = new Element($temp); - } else { - if (!is_object($date) || !is_a($date, 'DateTime')) { - $date = new DateTime($date, new DateTimeZone(@date_default_timezone_get())); - } - - $this->endDate = $date->format('D, d M Y H:i:s O'); - } - } - - /** - * Set Serial Number - * - * @param string $serial - * @param $base optional - * @access public - */ - function setSerialNumber($serial, $base = -256) - { - $this->serialNumber = new BigInteger($serial, $base); - } - - /** - * Turns the certificate into a certificate authority - * - * @access public - */ - function makeCA() - { - $this->caFlag = true; - } - - /** - * Check for validity of subarray - * - * This is intended for use in conjunction with _subArrayUnchecked(), - * implementing the checks included in _subArray() but without copying - * a potentially large array by passing its reference by-value to is_array(). - * - * @param array $root - * @param string $path - * @return boolean - * @access private - */ - function _isSubArrayValid($root, $path) - { - if (!is_array($root)) { - return false; - } - - foreach (explode('/', $path) as $i) { - if (!is_array($root)) { - return false; - } - - if (!isset($root[$i])) { - return true; - } - - $root = $root[$i]; - } - - return true; - } - - /** - * Get a reference to a subarray - * - * This variant of _subArray() does no is_array() checking, - * so $root should be checked with _isSubArrayValid() first. - * - * This is here for performance reasons: - * Passing a reference (i.e. $root) by-value (i.e. to is_array()) - * creates a copy. If $root is an especially large array, this is expensive. - * - * @param array $root - * @param string $path absolute path with / as component separator - * @param bool $create optional - * @access private - * @return array|false - */ - function &_subArrayUnchecked(&$root, $path, $create = false) - { - $false = false; - - foreach (explode('/', $path) as $i) { - if (!isset($root[$i])) { - if (!$create) { - return $false; - } - - $root[$i] = array(); - } - - $root = &$root[$i]; - } - - return $root; - } - - /** - * Get a reference to a subarray - * - * @param array $root - * @param string $path absolute path with / as component separator - * @param bool $create optional - * @access private - * @return array|false - */ - function &_subArray(&$root, $path, $create = false) - { - $false = false; - - if (!is_array($root)) { - return $false; - } - - foreach (explode('/', $path) as $i) { - if (!is_array($root)) { - return $false; - } - - if (!isset($root[$i])) { - if (!$create) { - return $false; - } - - $root[$i] = array(); - } - - $root = &$root[$i]; - } - - return $root; - } - - /** - * Get a reference to an extension subarray - * - * @param array $root - * @param string $path optional absolute path with / as component separator - * @param bool $create optional - * @access private - * @return array|false - */ - function &_extensions(&$root, $path = null, $create = false) - { - if (!isset($root)) { - $root = $this->currentCert; - } - - switch (true) { - case !empty($path): - case !is_array($root): - break; - case isset($root['tbsCertificate']): - $path = 'tbsCertificate/extensions'; - break; - case isset($root['tbsCertList']): - $path = 'tbsCertList/crlExtensions'; - break; - case isset($root['certificationRequestInfo']): - $pth = 'certificationRequestInfo/attributes'; - $attributes = &$this->_subArray($root, $pth, $create); - - if (is_array($attributes)) { - foreach ($attributes as $key => $value) { - if ($value['type'] == 'pkcs-9-at-extensionRequest') { - $path = "$pth/$key/value/0"; - break 2; - } - } - if ($create) { - $key = count($attributes); - $attributes[] = array('type' => 'pkcs-9-at-extensionRequest', 'value' => array()); - $path = "$pth/$key/value/0"; - } - } - break; - } - - $extensions = &$this->_subArray($root, $path, $create); - - if (!is_array($extensions)) { - $false = false; - return $false; - } - - return $extensions; - } - - /** - * Remove an Extension - * - * @param string $id - * @param string $path optional - * @access private - * @return bool - */ - function _removeExtension($id, $path = null) - { - $extensions = &$this->_extensions($this->currentCert, $path); - - if (!is_array($extensions)) { - return false; - } - - $result = false; - foreach ($extensions as $key => $value) { - if ($value['extnId'] == $id) { - unset($extensions[$key]); - $result = true; - } - } - - $extensions = array_values($extensions); - // fix for https://bugs.php.net/75433 affecting PHP 7.2 - if (!isset($extensions[0])) { - $extensions = array_splice($extensions, 0, 0); - } - return $result; - } - - /** - * Get an Extension - * - * Returns the extension if it exists and false if not - * - * @param string $id - * @param array $cert optional - * @param string $path optional - * @access private - * @return mixed - */ - function _getExtension($id, $cert = null, $path = null) - { - $extensions = $this->_extensions($cert, $path); - - if (!is_array($extensions)) { - return false; - } - - foreach ($extensions as $key => $value) { - if ($value['extnId'] == $id) { - return $value['extnValue']; - } - } - - return false; - } - - /** - * Returns a list of all extensions in use - * - * @param array $cert optional - * @param string $path optional - * @access private - * @return array - */ - function _getExtensions($cert = null, $path = null) - { - $exts = $this->_extensions($cert, $path); - $extensions = array(); - - if (is_array($exts)) { - foreach ($exts as $extension) { - $extensions[] = $extension['extnId']; - } - } - - return $extensions; - } - - /** - * Set an Extension - * - * @param string $id - * @param mixed $value - * @param bool $critical optional - * @param bool $replace optional - * @param string $path optional - * @access private - * @return bool - */ - function _setExtension($id, $value, $critical = false, $replace = true, $path = null) - { - $extensions = &$this->_extensions($this->currentCert, $path, true); - - if (!is_array($extensions)) { - return false; - } - - $newext = array('extnId' => $id, 'critical' => $critical, 'extnValue' => $value); - - foreach ($extensions as $key => $value) { - if ($value['extnId'] == $id) { - if (!$replace) { - return false; - } - - $extensions[$key] = $newext; - return true; - } - } - - $extensions[] = $newext; - return true; - } - - /** - * Remove a certificate, CSR or CRL Extension - * - * @param string $id - * @access public - * @return bool - */ - function removeExtension($id) - { - return $this->_removeExtension($id); - } - - /** - * Get a certificate, CSR or CRL Extension - * - * Returns the extension if it exists and false if not - * - * @param string $id - * @param array $cert optional - * @access public - * @return mixed - */ - function getExtension($id, $cert = null) - { - return $this->_getExtension($id, $cert); - } - - /** - * Returns a list of all extensions in use in certificate, CSR or CRL - * - * @param array $cert optional - * @access public - * @return array - */ - function getExtensions($cert = null) - { - return $this->_getExtensions($cert); - } - - /** - * Set a certificate, CSR or CRL Extension - * - * @param string $id - * @param mixed $value - * @param bool $critical optional - * @param bool $replace optional - * @access public - * @return bool - */ - function setExtension($id, $value, $critical = false, $replace = true) - { - return $this->_setExtension($id, $value, $critical, $replace); - } - - /** - * Remove a CSR attribute. - * - * @param string $id - * @param int $disposition optional - * @access public - * @return bool - */ - function removeAttribute($id, $disposition = self::ATTR_ALL) - { - $attributes = &$this->_subArray($this->currentCert, 'certificationRequestInfo/attributes'); - - if (!is_array($attributes)) { - return false; - } - - $result = false; - foreach ($attributes as $key => $attribute) { - if ($attribute['type'] == $id) { - $n = count($attribute['value']); - switch (true) { - case $disposition == self::ATTR_APPEND: - case $disposition == self::ATTR_REPLACE: - return false; - case $disposition >= $n: - $disposition -= $n; - break; - case $disposition == self::ATTR_ALL: - case $n == 1: - unset($attributes[$key]); - $result = true; - break; - default: - unset($attributes[$key]['value'][$disposition]); - $attributes[$key]['value'] = array_values($attributes[$key]['value']); - $result = true; - break; - } - if ($result && $disposition != self::ATTR_ALL) { - break; - } - } - } - - $attributes = array_values($attributes); - return $result; - } - - /** - * Get a CSR attribute - * - * Returns the attribute if it exists and false if not - * - * @param string $id - * @param int $disposition optional - * @param array $csr optional - * @access public - * @return mixed - */ - function getAttribute($id, $disposition = self::ATTR_ALL, $csr = null) - { - if (empty($csr)) { - $csr = $this->currentCert; - } - - $attributes = $this->_subArray($csr, 'certificationRequestInfo/attributes'); - - if (!is_array($attributes)) { - return false; - } - - foreach ($attributes as $key => $attribute) { - if ($attribute['type'] == $id) { - $n = count($attribute['value']); - switch (true) { - case $disposition == self::ATTR_APPEND: - case $disposition == self::ATTR_REPLACE: - return false; - case $disposition == self::ATTR_ALL: - return $attribute['value']; - case $disposition >= $n: - $disposition -= $n; - break; - default: - return $attribute['value'][$disposition]; - } - } - } - - return false; - } - - /** - * Returns a list of all CSR attributes in use - * - * @param array $csr optional - * @access public - * @return array - */ - function getAttributes($csr = null) - { - if (empty($csr)) { - $csr = $this->currentCert; - } - - $attributes = $this->_subArray($csr, 'certificationRequestInfo/attributes'); - $attrs = array(); - - if (is_array($attributes)) { - foreach ($attributes as $attribute) { - $attrs[] = $attribute['type']; - } - } - - return $attrs; - } - - /** - * Set a CSR attribute - * - * @param string $id - * @param mixed $value - * @param bool $disposition optional - * @access public - * @return bool - */ - function setAttribute($id, $value, $disposition = self::ATTR_ALL) - { - $attributes = &$this->_subArray($this->currentCert, 'certificationRequestInfo/attributes', true); - - if (!is_array($attributes)) { - return false; - } - - switch ($disposition) { - case self::ATTR_REPLACE: - $disposition = self::ATTR_APPEND; - case self::ATTR_ALL: - $this->removeAttribute($id); - break; - } - - foreach ($attributes as $key => $attribute) { - if ($attribute['type'] == $id) { - $n = count($attribute['value']); - switch (true) { - case $disposition == self::ATTR_APPEND: - $last = $key; - break; - case $disposition >= $n: - $disposition -= $n; - break; - default: - $attributes[$key]['value'][$disposition] = $value; - return true; - } - } - } - - switch (true) { - case $disposition >= 0: - return false; - case isset($last): - $attributes[$last]['value'][] = $value; - break; - default: - $attributes[] = array('type' => $id, 'value' => $disposition == self::ATTR_ALL ? $value: array($value)); - break; - } - - return true; - } - - /** - * Sets the subject key identifier - * - * This is used by the id-ce-authorityKeyIdentifier and the id-ce-subjectKeyIdentifier extensions. - * - * @param string $value - * @access public - */ - function setKeyIdentifier($value) - { - if (empty($value)) { - unset($this->currentKeyIdentifier); - } else { - $this->currentKeyIdentifier = base64_encode($value); - } - } - - /** - * Compute a public key identifier. - * - * Although key identifiers may be set to any unique value, this function - * computes key identifiers from public key according to the two - * recommended methods (4.2.1.2 RFC 3280). - * Highly polymorphic: try to accept all possible forms of key: - * - Key object - * - \phpseclib\File\X509 object with public or private key defined - * - Certificate or CSR array - * - \phpseclib\File\ASN1\Element object - * - PEM or DER string - * - * @param mixed $key optional - * @param int $method optional - * @access public - * @return string binary key identifier - */ - function computeKeyIdentifier($key = null, $method = 1) - { - if (is_null($key)) { - $key = $this; - } - - switch (true) { - case is_string($key): - break; - case is_array($key) && isset($key['tbsCertificate']['subjectPublicKeyInfo']['subjectPublicKey']): - return $this->computeKeyIdentifier($key['tbsCertificate']['subjectPublicKeyInfo']['subjectPublicKey'], $method); - case is_array($key) && isset($key['certificationRequestInfo']['subjectPKInfo']['subjectPublicKey']): - return $this->computeKeyIdentifier($key['certificationRequestInfo']['subjectPKInfo']['subjectPublicKey'], $method); - case !is_object($key): - return false; - case $key instanceof Element: - // Assume the element is a bitstring-packed key. - $asn1 = new ASN1(); - $decoded = $asn1->decodeBER($key->element); - if (empty($decoded)) { - return false; - } - $raw = $asn1->asn1map($decoded[0], array('type' => ASN1::TYPE_BIT_STRING)); - if (empty($raw)) { - return false; - } - $raw = base64_decode($raw); - // If the key is private, compute identifier from its corresponding public key. - $key = new RSA(); - if (!$key->loadKey($raw)) { - return false; // Not an unencrypted RSA key. - } - if ($key->getPrivateKey() !== false) { // If private. - return $this->computeKeyIdentifier($key, $method); - } - $key = $raw; // Is a public key. - break; - case $key instanceof X509: - if (isset($key->publicKey)) { - return $this->computeKeyIdentifier($key->publicKey, $method); - } - if (isset($key->privateKey)) { - return $this->computeKeyIdentifier($key->privateKey, $method); - } - if (isset($key->currentCert['tbsCertificate']) || isset($key->currentCert['certificationRequestInfo'])) { - return $this->computeKeyIdentifier($key->currentCert, $method); - } - return false; - default: // Should be a key object (i.e.: \phpseclib\Crypt\RSA). - $key = $key->getPublicKey(RSA::PUBLIC_FORMAT_PKCS1); - break; - } - - // If in PEM format, convert to binary. - $key = $this->_extractBER($key); - - // Now we have the key string: compute its sha-1 sum. - $hash = new Hash('sha1'); - $hash = $hash->hash($key); - - if ($method == 2) { - $hash = substr($hash, -8); - $hash[0] = chr((ord($hash[0]) & 0x0F) | 0x40); - } - - return $hash; - } - - /** - * Format a public key as appropriate - * - * @access private - * @return array - */ - function _formatSubjectPublicKey() - { - if ($this->publicKey instanceof RSA) { - // the following two return statements do the same thing. i dunno.. i just prefer the later for some reason. - // the former is a good example of how to do fuzzing on the public key - //return new Element(base64_decode(preg_replace('#-.+-|[\r\n]#', '', $this->publicKey->getPublicKey()))); - return array( - 'algorithm' => array('algorithm' => 'rsaEncryption'), - 'subjectPublicKey' => $this->publicKey->getPublicKey(RSA::PUBLIC_FORMAT_PKCS1) - ); - } - - return false; - } - - /** - * Set the domain name's which the cert is to be valid for - * - * @access public - * @return array - */ - function setDomain() - { - $this->domains = func_get_args(); - $this->removeDNProp('id-at-commonName'); - $this->setDNProp('id-at-commonName', $this->domains[0]); - } - - /** - * Set the IP Addresses's which the cert is to be valid for - * - * @access public - * @param string $ipAddress optional - */ - function setIPAddress() - { - $this->ipAddresses = func_get_args(); - /* - if (!isset($this->domains)) { - $this->removeDNProp('id-at-commonName'); - $this->setDNProp('id-at-commonName', $this->ipAddresses[0]); - } - */ - } - - /** - * Helper function to build domain array - * - * @access private - * @param string $domain - * @return array - */ - function _dnsName($domain) - { - return array('dNSName' => $domain); - } - - /** - * Helper function to build IP Address array - * - * (IPv6 is not currently supported) - * - * @access private - * @param string $address - * @return array - */ - function _iPAddress($address) - { - return array('iPAddress' => $address); - } - - /** - * Get the index of a revoked certificate. - * - * @param array $rclist - * @param string $serial - * @param bool $create optional - * @access private - * @return int|false - */ - function _revokedCertificate(&$rclist, $serial, $create = false) - { - $serial = new BigInteger($serial); - - foreach ($rclist as $i => $rc) { - if (!($serial->compare($rc['userCertificate']))) { - return $i; - } - } - - if (!$create) { - return false; - } - - $i = count($rclist); - $revocationDate = new DateTime('now', new DateTimeZone(@date_default_timezone_get())); - $rclist[] = array('userCertificate' => $serial, - 'revocationDate' => $this->_timeField($revocationDate->format('D, d M Y H:i:s O'))); - return $i; - } - - /** - * Revoke a certificate. - * - * @param string $serial - * @param string $date optional - * @access public - * @return bool - */ - function revoke($serial, $date = null) - { - if (isset($this->currentCert['tbsCertList'])) { - if (is_array($rclist = &$this->_subArray($this->currentCert, 'tbsCertList/revokedCertificates', true))) { - if ($this->_revokedCertificate($rclist, $serial) === false) { // If not yet revoked - if (($i = $this->_revokedCertificate($rclist, $serial, true)) !== false) { - if (!empty($date)) { - $rclist[$i]['revocationDate'] = $this->_timeField($date); - } - - return true; - } - } - } - } - - return false; - } - - /** - * Unrevoke a certificate. - * - * @param string $serial - * @access public - * @return bool - */ - function unrevoke($serial) - { - if (is_array($rclist = &$this->_subArray($this->currentCert, 'tbsCertList/revokedCertificates'))) { - if (($i = $this->_revokedCertificate($rclist, $serial)) !== false) { - unset($rclist[$i]); - $rclist = array_values($rclist); - return true; - } - } - - return false; - } - - /** - * Get a revoked certificate. - * - * @param string $serial - * @access public - * @return mixed - */ - function getRevoked($serial) - { - if (is_array($rclist = $this->_subArray($this->currentCert, 'tbsCertList/revokedCertificates'))) { - if (($i = $this->_revokedCertificate($rclist, $serial)) !== false) { - return $rclist[$i]; - } - } - - return false; - } - - /** - * List revoked certificates - * - * @param array $crl optional - * @access public - * @return array - */ - function listRevoked($crl = null) - { - if (!isset($crl)) { - $crl = $this->currentCert; - } - - if (!isset($crl['tbsCertList'])) { - return false; - } - - $result = array(); - - if (is_array($rclist = $this->_subArray($crl, 'tbsCertList/revokedCertificates'))) { - foreach ($rclist as $rc) { - $result[] = $rc['userCertificate']->toString(); - } - } - - return $result; - } - - /** - * Remove a Revoked Certificate Extension - * - * @param string $serial - * @param string $id - * @access public - * @return bool - */ - function removeRevokedCertificateExtension($serial, $id) - { - if (is_array($rclist = &$this->_subArray($this->currentCert, 'tbsCertList/revokedCertificates'))) { - if (($i = $this->_revokedCertificate($rclist, $serial)) !== false) { - return $this->_removeExtension($id, "tbsCertList/revokedCertificates/$i/crlEntryExtensions"); - } - } - - return false; - } - - /** - * Get a Revoked Certificate Extension - * - * Returns the extension if it exists and false if not - * - * @param string $serial - * @param string $id - * @param array $crl optional - * @access public - * @return mixed - */ - function getRevokedCertificateExtension($serial, $id, $crl = null) - { - if (!isset($crl)) { - $crl = $this->currentCert; - } - - if (is_array($rclist = $this->_subArray($crl, 'tbsCertList/revokedCertificates'))) { - if (($i = $this->_revokedCertificate($rclist, $serial)) !== false) { - return $this->_getExtension($id, $crl, "tbsCertList/revokedCertificates/$i/crlEntryExtensions"); - } - } - - return false; - } - - /** - * Returns a list of all extensions in use for a given revoked certificate - * - * @param string $serial - * @param array $crl optional - * @access public - * @return array - */ - function getRevokedCertificateExtensions($serial, $crl = null) - { - if (!isset($crl)) { - $crl = $this->currentCert; - } - - if (is_array($rclist = $this->_subArray($crl, 'tbsCertList/revokedCertificates'))) { - if (($i = $this->_revokedCertificate($rclist, $serial)) !== false) { - return $this->_getExtensions($crl, "tbsCertList/revokedCertificates/$i/crlEntryExtensions"); - } - } - - return false; - } - - /** - * Set a Revoked Certificate Extension - * - * @param string $serial - * @param string $id - * @param mixed $value - * @param bool $critical optional - * @param bool $replace optional - * @access public - * @return bool - */ - function setRevokedCertificateExtension($serial, $id, $value, $critical = false, $replace = true) - { - if (isset($this->currentCert['tbsCertList'])) { - if (is_array($rclist = &$this->_subArray($this->currentCert, 'tbsCertList/revokedCertificates', true))) { - if (($i = $this->_revokedCertificate($rclist, $serial, true)) !== false) { - return $this->_setExtension($id, $value, $critical, $replace, "tbsCertList/revokedCertificates/$i/crlEntryExtensions"); - } - } - } - - return false; - } - - /** - * Extract raw BER from Base64 encoding - * - * @access private - * @param string $str - * @return string - */ - function _extractBER($str) - { - /* X.509 certs are assumed to be base64 encoded but sometimes they'll have additional things in them - * above and beyond the ceritificate. - * ie. some may have the following preceding the -----BEGIN CERTIFICATE----- line: - * - * Bag Attributes - * localKeyID: 01 00 00 00 - * subject=/O=organization/OU=org unit/CN=common name - * issuer=/O=organization/CN=common name - */ - $temp = preg_replace('#.*?^-+[^-]+-+[\r\n ]*$#ms', '', $str, 1); - // remove the -----BEGIN CERTIFICATE----- and -----END CERTIFICATE----- stuff - $temp = preg_replace('#-+[^-]+-+#', '', $temp); - // remove new lines - $temp = str_replace(array("\r", "\n", ' '), '', $temp); - $temp = preg_match('#^[a-zA-Z\d/+]*={0,2}$#', $temp) ? base64_decode($temp) : false; - return $temp != false ? $temp : $str; - } - - /** - * Returns the OID corresponding to a name - * - * What's returned in the associative array returned by loadX509() (or load*()) is either a name or an OID if - * no OID to name mapping is available. The problem with this is that what may be an unmapped OID in one version - * of phpseclib may not be unmapped in the next version, so apps that are looking at this OID may not be able - * to work from version to version. - * - * This method will return the OID if a name is passed to it and if no mapping is avialable it'll assume that - * what's being passed to it already is an OID and return that instead. A few examples. - * - * getOID('2.16.840.1.101.3.4.2.1') == '2.16.840.1.101.3.4.2.1' - * getOID('id-sha256') == '2.16.840.1.101.3.4.2.1' - * getOID('zzz') == 'zzz' - * - * @access public - * @return string - */ - function getOID($name) - { - static $reverseMap; - if (!isset($reverseMap)) { - $reverseMap = array_flip($this->oids); - } - return isset($reverseMap[$name]) ? $reverseMap[$name] : $name; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger.php b/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger.php deleted file mode 100644 index e7f66467..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger.php +++ /dev/null @@ -1,3787 +0,0 @@ -> and << cannot be used, nor can the modulo operator %, - * which only supports integers. Although this fact will slow this library down, the fact that such a high - * base is being used should more than compensate. - * - * Numbers are stored in {@link http://en.wikipedia.org/wiki/Endianness little endian} format. ie. - * (new \phpseclib\Math\BigInteger(pow(2, 26)))->value = array(0, 1) - * - * Useful resources are as follows: - * - * - {@link http://www.cacr.math.uwaterloo.ca/hac/about/chap14.pdf Handbook of Applied Cryptography (HAC)} - * - {@link http://math.libtomcrypt.com/files/tommath.pdf Multi-Precision Math (MPM)} - * - Java's BigInteger classes. See /j2se/src/share/classes/java/math in jdk-1_5_0-src-jrl.zip - * - * Here's an example of how to use this library: - * - * add($b); - * - * echo $c->toString(); // outputs 5 - * ?> - * - * - * @category Math - * @package BigInteger - * @author Jim Wigginton - * @copyright 2006 Jim Wigginton - * @license http://www.opensource.org/licenses/mit-license.html MIT License - */ - -namespace phpseclib\Math; - -use phpseclib\Crypt\Random; - -/** - * Pure-PHP arbitrary precision integer arithmetic library. Supports base-2, base-10, base-16, and base-256 - * numbers. - * - * @package BigInteger - * @author Jim Wigginton - * @access public - */ -class BigInteger -{ - /**#@+ - * Reduction constants - * - * @access private - * @see BigInteger::_reduce() - */ - /** - * @see BigInteger::_montgomery() - * @see BigInteger::_prepMontgomery() - */ - const MONTGOMERY = 0; - /** - * @see BigInteger::_barrett() - */ - const BARRETT = 1; - /** - * @see BigInteger::_mod2() - */ - const POWEROF2 = 2; - /** - * @see BigInteger::_remainder() - */ - const CLASSIC = 3; - /** - * @see BigInteger::__clone() - */ - const NONE = 4; - /**#@-*/ - - /**#@+ - * Array constants - * - * Rather than create a thousands and thousands of new BigInteger objects in repeated function calls to add() and - * multiply() or whatever, we'll just work directly on arrays, taking them in as parameters and returning them. - * - * @access private - */ - /** - * $result[self::VALUE] contains the value. - */ - const VALUE = 0; - /** - * $result[self::SIGN] contains the sign. - */ - const SIGN = 1; - /**#@-*/ - - /**#@+ - * @access private - * @see BigInteger::_montgomery() - * @see BigInteger::_barrett() - */ - /** - * Cache constants - * - * $cache[self::VARIABLE] tells us whether or not the cached data is still valid. - */ - const VARIABLE = 0; - /** - * $cache[self::DATA] contains the cached data. - */ - const DATA = 1; - /**#@-*/ - - /**#@+ - * Mode constants. - * - * @access private - * @see BigInteger::__construct() - */ - /** - * To use the pure-PHP implementation - */ - const MODE_INTERNAL = 1; - /** - * To use the BCMath library - * - * (if enabled; otherwise, the internal implementation will be used) - */ - const MODE_BCMATH = 2; - /** - * To use the GMP library - * - * (if present; otherwise, either the BCMath or the internal implementation will be used) - */ - const MODE_GMP = 3; - /**#@-*/ - - /** - * Karatsuba Cutoff - * - * At what point do we switch between Karatsuba multiplication and schoolbook long multiplication? - * - * @access private - */ - const KARATSUBA_CUTOFF = 25; - - /**#@+ - * Static properties used by the pure-PHP implementation. - * - * @see __construct() - */ - protected static $base; - protected static $baseFull; - protected static $maxDigit; - protected static $msb; - - /** - * $max10 in greatest $max10Len satisfying - * $max10 = 10**$max10Len <= 2**$base. - */ - protected static $max10; - - /** - * $max10Len in greatest $max10Len satisfying - * $max10 = 10**$max10Len <= 2**$base. - */ - protected static $max10Len; - protected static $maxDigit2; - /**#@-*/ - - /** - * Holds the BigInteger's value. - * - * @var array - * @access private - */ - var $value; - - /** - * Holds the BigInteger's magnitude. - * - * @var bool - * @access private - */ - var $is_negative = false; - - /** - * Precision - * - * @see self::setPrecision() - * @access private - */ - var $precision = -1; - - /** - * Precision Bitmask - * - * @see self::setPrecision() - * @access private - */ - var $bitmask = false; - - /** - * Mode independent value used for serialization. - * - * If the bcmath or gmp extensions are installed $this->value will be a non-serializable resource, hence the need for - * a variable that'll be serializable regardless of whether or not extensions are being used. Unlike $this->value, - * however, $this->hex is only calculated when $this->__sleep() is called. - * - * @see self::__sleep() - * @see self::__wakeup() - * @var string - * @access private - */ - var $hex; - - /** - * Converts base-2, base-10, base-16, and binary strings (base-256) to BigIntegers. - * - * If the second parameter - $base - is negative, then it will be assumed that the number's are encoded using - * two's compliment. The sole exception to this is -10, which is treated the same as 10 is. - * - * Here's an example: - * - * toString(); // outputs 50 - * ?> - * - * - * @param $x base-10 number or base-$base number if $base set. - * @param int $base - * @return \phpseclib\Math\BigInteger - * @access public - */ - function __construct($x = 0, $base = 10) - { - if (!defined('MATH_BIGINTEGER_MODE')) { - switch (true) { - case extension_loaded('gmp'): - define('MATH_BIGINTEGER_MODE', self::MODE_GMP); - break; - case extension_loaded('bcmath'): - define('MATH_BIGINTEGER_MODE', self::MODE_BCMATH); - break; - default: - define('MATH_BIGINTEGER_MODE', self::MODE_INTERNAL); - } - } - - if (extension_loaded('openssl') && !defined('MATH_BIGINTEGER_OPENSSL_DISABLE') && !defined('MATH_BIGINTEGER_OPENSSL_ENABLED')) { - // some versions of XAMPP have mismatched versions of OpenSSL which causes it not to work - $versions = array(); - - // avoid generating errors (even with suppression) when phpinfo() is disabled (common in production systems) - if (strpos(ini_get('disable_functions'), 'phpinfo') === false) { - ob_start(); - @phpinfo(); - $content = ob_get_contents(); - ob_end_clean(); - - preg_match_all('#OpenSSL (Header|Library) Version(.*)#im', $content, $matches); - - if (!empty($matches[1])) { - for ($i = 0; $i < count($matches[1]); $i++) { - $fullVersion = trim(str_replace('=>', '', strip_tags($matches[2][$i]))); - - // Remove letter part in OpenSSL version - if (!preg_match('/(\d+\.\d+\.\d+)/i', $fullVersion, $m)) { - $versions[$matches[1][$i]] = $fullVersion; - } else { - $versions[$matches[1][$i]] = $m[0]; - } - } - } - } - - // it doesn't appear that OpenSSL versions were reported upon until PHP 5.3+ - switch (true) { - case !isset($versions['Header']): - case !isset($versions['Library']): - case $versions['Header'] == $versions['Library']: - case version_compare($versions['Header'], '1.0.0') >= 0 && version_compare($versions['Library'], '1.0.0') >= 0: - define('MATH_BIGINTEGER_OPENSSL_ENABLED', true); - break; - default: - define('MATH_BIGINTEGER_OPENSSL_DISABLE', true); - } - } - - if (!defined('PHP_INT_SIZE')) { - define('PHP_INT_SIZE', 4); - } - - if (empty(self::$base) && MATH_BIGINTEGER_MODE == self::MODE_INTERNAL) { - switch (PHP_INT_SIZE) { - case 8: // use 64-bit integers if int size is 8 bytes - self::$base = 31; - self::$baseFull = 0x80000000; - self::$maxDigit = 0x7FFFFFFF; - self::$msb = 0x40000000; - self::$max10 = 1000000000; - self::$max10Len = 9; - self::$maxDigit2 = pow(2, 62); - break; - //case 4: // use 64-bit floats if int size is 4 bytes - default: - self::$base = 26; - self::$baseFull = 0x4000000; - self::$maxDigit = 0x3FFFFFF; - self::$msb = 0x2000000; - self::$max10 = 10000000; - self::$max10Len = 7; - self::$maxDigit2 = pow(2, 52); // pow() prevents truncation - } - } - - switch (MATH_BIGINTEGER_MODE) { - case self::MODE_GMP: - switch (true) { - case is_resource($x) && get_resource_type($x) == 'GMP integer': - // PHP 5.6 switched GMP from using resources to objects - case $x instanceof \GMP: - $this->value = $x; - return; - } - $this->value = gmp_init(0); - break; - case self::MODE_BCMATH: - $this->value = '0'; - break; - default: - $this->value = array(); - } - - // '0' counts as empty() but when the base is 256 '0' is equal to ord('0') or 48 - // '0' is the only value like this per http://php.net/empty - if (empty($x) && (abs($base) != 256 || $x !== '0')) { - return; - } - - switch ($base) { - case -256: - if (ord($x[0]) & 0x80) { - $x = ~$x; - $this->is_negative = true; - } - case 256: - switch (MATH_BIGINTEGER_MODE) { - case self::MODE_GMP: - $this->value = function_exists('gmp_import') ? - gmp_import($x) : - gmp_init('0x' . bin2hex($x)); - if ($this->is_negative) { - $this->value = gmp_neg($this->value); - } - break; - case self::MODE_BCMATH: - // round $len to the nearest 4 (thanks, DavidMJ!) - $len = (strlen($x) + 3) & 0xFFFFFFFC; - - $x = str_pad($x, $len, chr(0), STR_PAD_LEFT); - - for ($i = 0; $i < $len; $i+= 4) { - $this->value = bcmul($this->value, '4294967296', 0); // 4294967296 == 2**32 - $this->value = bcadd($this->value, 0x1000000 * ord($x[$i]) + ((ord($x[$i + 1]) << 16) | (ord($x[$i + 2]) << 8) | ord($x[$i + 3])), 0); - } - - if ($this->is_negative) { - $this->value = '-' . $this->value; - } - - break; - // converts a base-2**8 (big endian / msb) number to base-2**26 (little endian / lsb) - default: - while (strlen($x)) { - $this->value[] = $this->_bytes2int($this->_base256_rshift($x, self::$base)); - } - } - - if ($this->is_negative) { - if (MATH_BIGINTEGER_MODE != self::MODE_INTERNAL) { - $this->is_negative = false; - } - $temp = $this->add(new static('-1')); - $this->value = $temp->value; - } - break; - case 16: - case -16: - if ($base > 0 && $x[0] == '-') { - $this->is_negative = true; - $x = substr($x, 1); - } - - $x = preg_replace('#^(?:0x)?([A-Fa-f0-9]*).*#', '$1', $x); - - $is_negative = false; - if ($base < 0 && hexdec($x[0]) >= 8) { - $this->is_negative = $is_negative = true; - $x = bin2hex(~pack('H*', $x)); - } - - switch (MATH_BIGINTEGER_MODE) { - case self::MODE_GMP: - $temp = $this->is_negative ? '-0x' . $x : '0x' . $x; - $this->value = gmp_init($temp); - $this->is_negative = false; - break; - case self::MODE_BCMATH: - $x = (strlen($x) & 1) ? '0' . $x : $x; - $temp = new static(pack('H*', $x), 256); - $this->value = $this->is_negative ? '-' . $temp->value : $temp->value; - $this->is_negative = false; - break; - default: - $x = (strlen($x) & 1) ? '0' . $x : $x; - $temp = new static(pack('H*', $x), 256); - $this->value = $temp->value; - } - - if ($is_negative) { - $temp = $this->add(new static('-1')); - $this->value = $temp->value; - } - break; - case 10: - case -10: - // (?value = gmp_init($x); - break; - case self::MODE_BCMATH: - // explicitly casting $x to a string is necessary, here, since doing $x[0] on -1 yields different - // results then doing it on '-1' does (modInverse does $x[0]) - $this->value = $x === '-' ? '0' : (string) $x; - break; - default: - $temp = new static(); - - $multiplier = new static(); - $multiplier->value = array(self::$max10); - - if ($x[0] == '-') { - $this->is_negative = true; - $x = substr($x, 1); - } - - $x = str_pad($x, strlen($x) + ((self::$max10Len - 1) * strlen($x)) % self::$max10Len, 0, STR_PAD_LEFT); - while (strlen($x)) { - $temp = $temp->multiply($multiplier); - $temp = $temp->add(new static($this->_int2bytes(substr($x, 0, self::$max10Len)), 256)); - $x = substr($x, self::$max10Len); - } - - $this->value = $temp->value; - } - break; - case 2: // base-2 support originally implemented by Lluis Pamies - thanks! - case -2: - if ($base > 0 && $x[0] == '-') { - $this->is_negative = true; - $x = substr($x, 1); - } - - $x = preg_replace('#^([01]*).*#', '$1', $x); - $x = str_pad($x, strlen($x) + (3 * strlen($x)) % 4, 0, STR_PAD_LEFT); - - $str = '0x'; - while (strlen($x)) { - $part = substr($x, 0, 4); - $str.= dechex(bindec($part)); - $x = substr($x, 4); - } - - if ($this->is_negative) { - $str = '-' . $str; - } - - $temp = new static($str, 8 * $base); // ie. either -16 or +16 - $this->value = $temp->value; - $this->is_negative = $temp->is_negative; - - break; - default: - // base not supported, so we'll let $this == 0 - } - } - - /** - * Converts a BigInteger to a byte string (eg. base-256). - * - * Negative numbers are saved as positive numbers, unless $twos_compliment is set to true, at which point, they're - * saved as two's compliment. - * - * Here's an example: - * - * toBytes(); // outputs chr(65) - * ?> - * - * - * @param bool $twos_compliment - * @return string - * @access public - * @internal Converts a base-2**26 number to base-2**8 - */ - function toBytes($twos_compliment = false) - { - if ($twos_compliment) { - $comparison = $this->compare(new static()); - if ($comparison == 0) { - return $this->precision > 0 ? str_repeat(chr(0), ($this->precision + 1) >> 3) : ''; - } - - $temp = $comparison < 0 ? $this->add(new static(1)) : $this->copy(); - $bytes = $temp->toBytes(); - - if (!strlen($bytes)) { // eg. if the number we're trying to convert is -1 - $bytes = chr(0); - } - - if ($this->precision <= 0 && (ord($bytes[0]) & 0x80)) { - $bytes = chr(0) . $bytes; - } - - return $comparison < 0 ? ~$bytes : $bytes; - } - - switch (MATH_BIGINTEGER_MODE) { - case self::MODE_GMP: - if (gmp_cmp($this->value, gmp_init(0)) == 0) { - return $this->precision > 0 ? str_repeat(chr(0), ($this->precision + 1) >> 3) : ''; - } - - if (function_exists('gmp_export')) { - $temp = gmp_export($this->value); - } else { - $temp = gmp_strval(gmp_abs($this->value), 16); - $temp = (strlen($temp) & 1) ? '0' . $temp : $temp; - $temp = pack('H*', $temp); - } - - return $this->precision > 0 ? - substr(str_pad($temp, $this->precision >> 3, chr(0), STR_PAD_LEFT), -($this->precision >> 3)) : - ltrim($temp, chr(0)); - case self::MODE_BCMATH: - if ($this->value === '0') { - return $this->precision > 0 ? str_repeat(chr(0), ($this->precision + 1) >> 3) : ''; - } - - $value = ''; - $current = $this->value; - - if ($current[0] == '-') { - $current = substr($current, 1); - } - - while (bccomp($current, '0', 0) > 0) { - $temp = bcmod($current, '16777216'); - $value = chr($temp >> 16) . chr($temp >> 8) . chr($temp) . $value; - $current = bcdiv($current, '16777216', 0); - } - - return $this->precision > 0 ? - substr(str_pad($value, $this->precision >> 3, chr(0), STR_PAD_LEFT), -($this->precision >> 3)) : - ltrim($value, chr(0)); - } - - if (!count($this->value)) { - return $this->precision > 0 ? str_repeat(chr(0), ($this->precision + 1) >> 3) : ''; - } - $result = $this->_int2bytes($this->value[count($this->value) - 1]); - - $temp = $this->copy(); - - for ($i = count($temp->value) - 2; $i >= 0; --$i) { - $temp->_base256_lshift($result, self::$base); - $result = $result | str_pad($temp->_int2bytes($temp->value[$i]), strlen($result), chr(0), STR_PAD_LEFT); - } - - return $this->precision > 0 ? - str_pad(substr($result, -(($this->precision + 7) >> 3)), ($this->precision + 7) >> 3, chr(0), STR_PAD_LEFT) : - $result; - } - - /** - * Converts a BigInteger to a hex string (eg. base-16)). - * - * Negative numbers are saved as positive numbers, unless $twos_compliment is set to true, at which point, they're - * saved as two's compliment. - * - * Here's an example: - * - * toHex(); // outputs '41' - * ?> - * - * - * @param bool $twos_compliment - * @return string - * @access public - * @internal Converts a base-2**26 number to base-2**8 - */ - function toHex($twos_compliment = false) - { - return bin2hex($this->toBytes($twos_compliment)); - } - - /** - * Converts a BigInteger to a bit string (eg. base-2). - * - * Negative numbers are saved as positive numbers, unless $twos_compliment is set to true, at which point, they're - * saved as two's compliment. - * - * Here's an example: - * - * toBits(); // outputs '1000001' - * ?> - * - * - * @param bool $twos_compliment - * @return string - * @access public - * @internal Converts a base-2**26 number to base-2**2 - */ - function toBits($twos_compliment = false) - { - $hex = $this->toHex($twos_compliment); - $bits = ''; - for ($i = strlen($hex) - 8, $start = strlen($hex) & 7; $i >= $start; $i-=8) { - $bits = str_pad(decbin(hexdec(substr($hex, $i, 8))), 32, '0', STR_PAD_LEFT) . $bits; - } - if ($start) { // hexdec('') == 0 - $bits = str_pad(decbin(hexdec(substr($hex, 0, $start))), 8, '0', STR_PAD_LEFT) . $bits; - } - $result = $this->precision > 0 ? substr($bits, -$this->precision) : ltrim($bits, '0'); - - if ($twos_compliment && $this->compare(new static()) > 0 && $this->precision <= 0) { - return '0' . $result; - } - - return $result; - } - - /** - * Converts a BigInteger to a base-10 number. - * - * Here's an example: - * - * toString(); // outputs 50 - * ?> - * - * - * @return string - * @access public - * @internal Converts a base-2**26 number to base-10**7 (which is pretty much base-10) - */ - function toString() - { - switch (MATH_BIGINTEGER_MODE) { - case self::MODE_GMP: - return gmp_strval($this->value); - case self::MODE_BCMATH: - if ($this->value === '0') { - return '0'; - } - - return ltrim($this->value, '0'); - } - - if (!count($this->value)) { - return '0'; - } - - $temp = $this->copy(); - $temp->bitmask = false; - $temp->is_negative = false; - - $divisor = new static(); - $divisor->value = array(self::$max10); - $result = ''; - while (count($temp->value)) { - list($temp, $mod) = $temp->divide($divisor); - $result = str_pad(isset($mod->value[0]) ? $mod->value[0] : '', self::$max10Len, '0', STR_PAD_LEFT) . $result; - } - $result = ltrim($result, '0'); - if (empty($result)) { - $result = '0'; - } - - if ($this->is_negative) { - $result = '-' . $result; - } - - return $result; - } - - /** - * Copy an object - * - * PHP5 passes objects by reference while PHP4 passes by value. As such, we need a function to guarantee - * that all objects are passed by value, when appropriate. More information can be found here: - * - * {@link http://php.net/language.oop5.basic#51624} - * - * @access public - * @see self::__clone() - * @return \phpseclib\Math\BigInteger - */ - function copy() - { - $temp = new static(); - $temp->value = $this->value; - $temp->is_negative = $this->is_negative; - $temp->precision = $this->precision; - $temp->bitmask = $this->bitmask; - return $temp; - } - - /** - * __toString() magic method - * - * Will be called, automatically, if you're supporting just PHP5. If you're supporting PHP4, you'll need to call - * toString(). - * - * @access public - * @internal Implemented per a suggestion by Techie-Michael - thanks! - */ - function __toString() - { - return $this->toString(); - } - - /** - * __clone() magic method - * - * Although you can call BigInteger::__toString() directly in PHP5, you cannot call BigInteger::__clone() directly - * in PHP5. You can in PHP4 since it's not a magic method, but in PHP5, you have to call it by using the PHP5 - * only syntax of $y = clone $x. As such, if you're trying to write an application that works on both PHP4 and - * PHP5, call BigInteger::copy(), instead. - * - * @access public - * @see self::copy() - * @return \phpseclib\Math\BigInteger - */ - function __clone() - { - return $this->copy(); - } - - /** - * __sleep() magic method - * - * Will be called, automatically, when serialize() is called on a BigInteger object. - * - * @see self::__wakeup() - * @access public - */ - function __sleep() - { - $this->hex = $this->toHex(true); - $vars = array('hex'); - if ($this->precision > 0) { - $vars[] = 'precision'; - } - return $vars; - } - - /** - * __wakeup() magic method - * - * Will be called, automatically, when unserialize() is called on a BigInteger object. - * - * @see self::__sleep() - * @access public - */ - function __wakeup() - { - $temp = new static($this->hex, -16); - $this->value = $temp->value; - $this->is_negative = $temp->is_negative; - if ($this->precision > 0) { - // recalculate $this->bitmask - $this->setPrecision($this->precision); - } - } - - /** - * __debugInfo() magic method - * - * Will be called, automatically, when print_r() or var_dump() are called - * - * @access public - */ - function __debugInfo() - { - $opts = array(); - switch (MATH_BIGINTEGER_MODE) { - case self::MODE_GMP: - $engine = 'gmp'; - break; - case self::MODE_BCMATH: - $engine = 'bcmath'; - break; - case self::MODE_INTERNAL: - $engine = 'internal'; - $opts[] = PHP_INT_SIZE == 8 ? '64-bit' : '32-bit'; - } - if (MATH_BIGINTEGER_MODE != self::MODE_GMP && defined('MATH_BIGINTEGER_OPENSSL_ENABLED')) { - $opts[] = 'OpenSSL'; - } - if (!empty($opts)) { - $engine.= ' (' . implode('.', $opts) . ')'; - } - return array( - 'value' => '0x' . $this->toHex(true), - 'engine' => $engine - ); - } - - /** - * Adds two BigIntegers. - * - * Here's an example: - * - * add($b); - * - * echo $c->toString(); // outputs 30 - * ?> - * - * - * @param \phpseclib\Math\BigInteger $y - * @return \phpseclib\Math\BigInteger - * @access public - * @internal Performs base-2**52 addition - */ - function add($y) - { - switch (MATH_BIGINTEGER_MODE) { - case self::MODE_GMP: - $temp = new static(); - $temp->value = gmp_add($this->value, $y->value); - - return $this->_normalize($temp); - case self::MODE_BCMATH: - $temp = new static(); - $temp->value = bcadd($this->value, $y->value, 0); - - return $this->_normalize($temp); - } - - $temp = $this->_add($this->value, $this->is_negative, $y->value, $y->is_negative); - - $result = new static(); - $result->value = $temp[self::VALUE]; - $result->is_negative = $temp[self::SIGN]; - - return $this->_normalize($result); - } - - /** - * Performs addition. - * - * @param array $x_value - * @param bool $x_negative - * @param array $y_value - * @param bool $y_negative - * @return array - * @access private - */ - function _add($x_value, $x_negative, $y_value, $y_negative) - { - $x_size = count($x_value); - $y_size = count($y_value); - - if ($x_size == 0) { - return array( - self::VALUE => $y_value, - self::SIGN => $y_negative - ); - } elseif ($y_size == 0) { - return array( - self::VALUE => $x_value, - self::SIGN => $x_negative - ); - } - - // subtract, if appropriate - if ($x_negative != $y_negative) { - if ($x_value == $y_value) { - return array( - self::VALUE => array(), - self::SIGN => false - ); - } - - $temp = $this->_subtract($x_value, false, $y_value, false); - $temp[self::SIGN] = $this->_compare($x_value, false, $y_value, false) > 0 ? - $x_negative : $y_negative; - - return $temp; - } - - if ($x_size < $y_size) { - $size = $x_size; - $value = $y_value; - } else { - $size = $y_size; - $value = $x_value; - } - - $value[count($value)] = 0; // just in case the carry adds an extra digit - - $carry = 0; - for ($i = 0, $j = 1; $j < $size; $i+=2, $j+=2) { - $sum = $x_value[$j] * self::$baseFull + $x_value[$i] + $y_value[$j] * self::$baseFull + $y_value[$i] + $carry; - $carry = $sum >= self::$maxDigit2; // eg. floor($sum / 2**52); only possible values (in any base) are 0 and 1 - $sum = $carry ? $sum - self::$maxDigit2 : $sum; - - $temp = self::$base === 26 ? intval($sum / 0x4000000) : ($sum >> 31); - - $value[$i] = (int) ($sum - self::$baseFull * $temp); // eg. a faster alternative to fmod($sum, 0x4000000) - $value[$j] = $temp; - } - - if ($j == $size) { // ie. if $y_size is odd - $sum = $x_value[$i] + $y_value[$i] + $carry; - $carry = $sum >= self::$baseFull; - $value[$i] = $carry ? $sum - self::$baseFull : $sum; - ++$i; // ie. let $i = $j since we've just done $value[$i] - } - - if ($carry) { - for (; $value[$i] == self::$maxDigit; ++$i) { - $value[$i] = 0; - } - ++$value[$i]; - } - - return array( - self::VALUE => $this->_trim($value), - self::SIGN => $x_negative - ); - } - - /** - * Subtracts two BigIntegers. - * - * Here's an example: - * - * subtract($b); - * - * echo $c->toString(); // outputs -10 - * ?> - * - * - * @param \phpseclib\Math\BigInteger $y - * @return \phpseclib\Math\BigInteger - * @access public - * @internal Performs base-2**52 subtraction - */ - function subtract($y) - { - switch (MATH_BIGINTEGER_MODE) { - case self::MODE_GMP: - $temp = new static(); - $temp->value = gmp_sub($this->value, $y->value); - - return $this->_normalize($temp); - case self::MODE_BCMATH: - $temp = new static(); - $temp->value = bcsub($this->value, $y->value, 0); - - return $this->_normalize($temp); - } - - $temp = $this->_subtract($this->value, $this->is_negative, $y->value, $y->is_negative); - - $result = new static(); - $result->value = $temp[self::VALUE]; - $result->is_negative = $temp[self::SIGN]; - - return $this->_normalize($result); - } - - /** - * Performs subtraction. - * - * @param array $x_value - * @param bool $x_negative - * @param array $y_value - * @param bool $y_negative - * @return array - * @access private - */ - function _subtract($x_value, $x_negative, $y_value, $y_negative) - { - $x_size = count($x_value); - $y_size = count($y_value); - - if ($x_size == 0) { - return array( - self::VALUE => $y_value, - self::SIGN => !$y_negative - ); - } elseif ($y_size == 0) { - return array( - self::VALUE => $x_value, - self::SIGN => $x_negative - ); - } - - // add, if appropriate (ie. -$x - +$y or +$x - -$y) - if ($x_negative != $y_negative) { - $temp = $this->_add($x_value, false, $y_value, false); - $temp[self::SIGN] = $x_negative; - - return $temp; - } - - $diff = $this->_compare($x_value, $x_negative, $y_value, $y_negative); - - if (!$diff) { - return array( - self::VALUE => array(), - self::SIGN => false - ); - } - - // switch $x and $y around, if appropriate. - if ((!$x_negative && $diff < 0) || ($x_negative && $diff > 0)) { - $temp = $x_value; - $x_value = $y_value; - $y_value = $temp; - - $x_negative = !$x_negative; - - $x_size = count($x_value); - $y_size = count($y_value); - } - - // at this point, $x_value should be at least as big as - if not bigger than - $y_value - - $carry = 0; - for ($i = 0, $j = 1; $j < $y_size; $i+=2, $j+=2) { - $sum = $x_value[$j] * self::$baseFull + $x_value[$i] - $y_value[$j] * self::$baseFull - $y_value[$i] - $carry; - $carry = $sum < 0; // eg. floor($sum / 2**52); only possible values (in any base) are 0 and 1 - $sum = $carry ? $sum + self::$maxDigit2 : $sum; - - $temp = self::$base === 26 ? intval($sum / 0x4000000) : ($sum >> 31); - - $x_value[$i] = (int) ($sum - self::$baseFull * $temp); - $x_value[$j] = $temp; - } - - if ($j == $y_size) { // ie. if $y_size is odd - $sum = $x_value[$i] - $y_value[$i] - $carry; - $carry = $sum < 0; - $x_value[$i] = $carry ? $sum + self::$baseFull : $sum; - ++$i; - } - - if ($carry) { - for (; !$x_value[$i]; ++$i) { - $x_value[$i] = self::$maxDigit; - } - --$x_value[$i]; - } - - return array( - self::VALUE => $this->_trim($x_value), - self::SIGN => $x_negative - ); - } - - /** - * Multiplies two BigIntegers - * - * Here's an example: - * - * multiply($b); - * - * echo $c->toString(); // outputs 200 - * ?> - * - * - * @param \phpseclib\Math\BigInteger $x - * @return \phpseclib\Math\BigInteger - * @access public - */ - function multiply($x) - { - switch (MATH_BIGINTEGER_MODE) { - case self::MODE_GMP: - $temp = new static(); - $temp->value = gmp_mul($this->value, $x->value); - - return $this->_normalize($temp); - case self::MODE_BCMATH: - $temp = new static(); - $temp->value = bcmul($this->value, $x->value, 0); - - return $this->_normalize($temp); - } - - $temp = $this->_multiply($this->value, $this->is_negative, $x->value, $x->is_negative); - - $product = new static(); - $product->value = $temp[self::VALUE]; - $product->is_negative = $temp[self::SIGN]; - - return $this->_normalize($product); - } - - /** - * Performs multiplication. - * - * @param array $x_value - * @param bool $x_negative - * @param array $y_value - * @param bool $y_negative - * @return array - * @access private - */ - function _multiply($x_value, $x_negative, $y_value, $y_negative) - { - //if ( $x_value == $y_value ) { - // return array( - // self::VALUE => $this->_square($x_value), - // self::SIGN => $x_sign != $y_value - // ); - //} - - $x_length = count($x_value); - $y_length = count($y_value); - - if (!$x_length || !$y_length) { // a 0 is being multiplied - return array( - self::VALUE => array(), - self::SIGN => false - ); - } - - return array( - self::VALUE => min($x_length, $y_length) < 2 * self::KARATSUBA_CUTOFF ? - $this->_trim($this->_regularMultiply($x_value, $y_value)) : - $this->_trim($this->_karatsuba($x_value, $y_value)), - self::SIGN => $x_negative != $y_negative - ); - } - - /** - * Performs long multiplication on two BigIntegers - * - * Modeled after 'multiply' in MutableBigInteger.java. - * - * @param array $x_value - * @param array $y_value - * @return array - * @access private - */ - function _regularMultiply($x_value, $y_value) - { - $x_length = count($x_value); - $y_length = count($y_value); - - if (!$x_length || !$y_length) { // a 0 is being multiplied - return array(); - } - - if ($x_length < $y_length) { - $temp = $x_value; - $x_value = $y_value; - $y_value = $temp; - - $x_length = count($x_value); - $y_length = count($y_value); - } - - $product_value = $this->_array_repeat(0, $x_length + $y_length); - - // the following for loop could be removed if the for loop following it - // (the one with nested for loops) initially set $i to 0, but - // doing so would also make the result in one set of unnecessary adds, - // since on the outermost loops first pass, $product->value[$k] is going - // to always be 0 - - $carry = 0; - - for ($j = 0; $j < $x_length; ++$j) { // ie. $i = 0 - $temp = $x_value[$j] * $y_value[0] + $carry; // $product_value[$k] == 0 - $carry = self::$base === 26 ? intval($temp / 0x4000000) : ($temp >> 31); - $product_value[$j] = (int) ($temp - self::$baseFull * $carry); - } - - $product_value[$j] = $carry; - - // the above for loop is what the previous comment was talking about. the - // following for loop is the "one with nested for loops" - for ($i = 1; $i < $y_length; ++$i) { - $carry = 0; - - for ($j = 0, $k = $i; $j < $x_length; ++$j, ++$k) { - $temp = $product_value[$k] + $x_value[$j] * $y_value[$i] + $carry; - $carry = self::$base === 26 ? intval($temp / 0x4000000) : ($temp >> 31); - $product_value[$k] = (int) ($temp - self::$baseFull * $carry); - } - - $product_value[$k] = $carry; - } - - return $product_value; - } - - /** - * Performs Karatsuba multiplication on two BigIntegers - * - * See {@link http://en.wikipedia.org/wiki/Karatsuba_algorithm Karatsuba algorithm} and - * {@link http://math.libtomcrypt.com/files/tommath.pdf#page=120 MPM 5.2.3}. - * - * @param array $x_value - * @param array $y_value - * @return array - * @access private - */ - function _karatsuba($x_value, $y_value) - { - $m = min(count($x_value) >> 1, count($y_value) >> 1); - - if ($m < self::KARATSUBA_CUTOFF) { - return $this->_regularMultiply($x_value, $y_value); - } - - $x1 = array_slice($x_value, $m); - $x0 = array_slice($x_value, 0, $m); - $y1 = array_slice($y_value, $m); - $y0 = array_slice($y_value, 0, $m); - - $z2 = $this->_karatsuba($x1, $y1); - $z0 = $this->_karatsuba($x0, $y0); - - $z1 = $this->_add($x1, false, $x0, false); - $temp = $this->_add($y1, false, $y0, false); - $z1 = $this->_karatsuba($z1[self::VALUE], $temp[self::VALUE]); - $temp = $this->_add($z2, false, $z0, false); - $z1 = $this->_subtract($z1, false, $temp[self::VALUE], false); - - $z2 = array_merge(array_fill(0, 2 * $m, 0), $z2); - $z1[self::VALUE] = array_merge(array_fill(0, $m, 0), $z1[self::VALUE]); - - $xy = $this->_add($z2, false, $z1[self::VALUE], $z1[self::SIGN]); - $xy = $this->_add($xy[self::VALUE], $xy[self::SIGN], $z0, false); - - return $xy[self::VALUE]; - } - - /** - * Performs squaring - * - * @param array $x - * @return array - * @access private - */ - function _square($x = false) - { - return count($x) < 2 * self::KARATSUBA_CUTOFF ? - $this->_trim($this->_baseSquare($x)) : - $this->_trim($this->_karatsubaSquare($x)); - } - - /** - * Performs traditional squaring on two BigIntegers - * - * Squaring can be done faster than multiplying a number by itself can be. See - * {@link http://www.cacr.math.uwaterloo.ca/hac/about/chap14.pdf#page=7 HAC 14.2.4} / - * {@link http://math.libtomcrypt.com/files/tommath.pdf#page=141 MPM 5.3} for more information. - * - * @param array $value - * @return array - * @access private - */ - function _baseSquare($value) - { - if (empty($value)) { - return array(); - } - $square_value = $this->_array_repeat(0, 2 * count($value)); - - for ($i = 0, $max_index = count($value) - 1; $i <= $max_index; ++$i) { - $i2 = $i << 1; - - $temp = $square_value[$i2] + $value[$i] * $value[$i]; - $carry = self::$base === 26 ? intval($temp / 0x4000000) : ($temp >> 31); - $square_value[$i2] = (int) ($temp - self::$baseFull * $carry); - - // note how we start from $i+1 instead of 0 as we do in multiplication. - for ($j = $i + 1, $k = $i2 + 1; $j <= $max_index; ++$j, ++$k) { - $temp = $square_value[$k] + 2 * $value[$j] * $value[$i] + $carry; - $carry = self::$base === 26 ? intval($temp / 0x4000000) : ($temp >> 31); - $square_value[$k] = (int) ($temp - self::$baseFull * $carry); - } - - // the following line can yield values larger 2**15. at this point, PHP should switch - // over to floats. - $square_value[$i + $max_index + 1] = $carry; - } - - return $square_value; - } - - /** - * Performs Karatsuba "squaring" on two BigIntegers - * - * See {@link http://en.wikipedia.org/wiki/Karatsuba_algorithm Karatsuba algorithm} and - * {@link http://math.libtomcrypt.com/files/tommath.pdf#page=151 MPM 5.3.4}. - * - * @param array $value - * @return array - * @access private - */ - function _karatsubaSquare($value) - { - $m = count($value) >> 1; - - if ($m < self::KARATSUBA_CUTOFF) { - return $this->_baseSquare($value); - } - - $x1 = array_slice($value, $m); - $x0 = array_slice($value, 0, $m); - - $z2 = $this->_karatsubaSquare($x1); - $z0 = $this->_karatsubaSquare($x0); - - $z1 = $this->_add($x1, false, $x0, false); - $z1 = $this->_karatsubaSquare($z1[self::VALUE]); - $temp = $this->_add($z2, false, $z0, false); - $z1 = $this->_subtract($z1, false, $temp[self::VALUE], false); - - $z2 = array_merge(array_fill(0, 2 * $m, 0), $z2); - $z1[self::VALUE] = array_merge(array_fill(0, $m, 0), $z1[self::VALUE]); - - $xx = $this->_add($z2, false, $z1[self::VALUE], $z1[self::SIGN]); - $xx = $this->_add($xx[self::VALUE], $xx[self::SIGN], $z0, false); - - return $xx[self::VALUE]; - } - - /** - * Divides two BigIntegers. - * - * Returns an array whose first element contains the quotient and whose second element contains the - * "common residue". If the remainder would be positive, the "common residue" and the remainder are the - * same. If the remainder would be negative, the "common residue" is equal to the sum of the remainder - * and the divisor (basically, the "common residue" is the first positive modulo). - * - * Here's an example: - * - * divide($b); - * - * echo $quotient->toString(); // outputs 0 - * echo "\r\n"; - * echo $remainder->toString(); // outputs 10 - * ?> - * - * - * @param \phpseclib\Math\BigInteger $y - * @return array - * @access public - * @internal This function is based off of {@link http://www.cacr.math.uwaterloo.ca/hac/about/chap14.pdf#page=9 HAC 14.20}. - */ - function divide($y) - { - switch (MATH_BIGINTEGER_MODE) { - case self::MODE_GMP: - $quotient = new static(); - $remainder = new static(); - - list($quotient->value, $remainder->value) = gmp_div_qr($this->value, $y->value); - - if (gmp_sign($remainder->value) < 0) { - $remainder->value = gmp_add($remainder->value, gmp_abs($y->value)); - } - - return array($this->_normalize($quotient), $this->_normalize($remainder)); - case self::MODE_BCMATH: - $quotient = new static(); - $remainder = new static(); - - $quotient->value = bcdiv($this->value, $y->value, 0); - $remainder->value = bcmod($this->value, $y->value); - - if ($remainder->value[0] == '-') { - $remainder->value = bcadd($remainder->value, $y->value[0] == '-' ? substr($y->value, 1) : $y->value, 0); - } - - return array($this->_normalize($quotient), $this->_normalize($remainder)); - } - - if (count($y->value) == 1) { - list($q, $r) = $this->_divide_digit($this->value, $y->value[0]); - $quotient = new static(); - $remainder = new static(); - $quotient->value = $q; - $remainder->value = array($r); - $quotient->is_negative = $this->is_negative != $y->is_negative; - return array($this->_normalize($quotient), $this->_normalize($remainder)); - } - - static $zero; - if (!isset($zero)) { - $zero = new static(); - } - - $x = $this->copy(); - $y = $y->copy(); - - $x_sign = $x->is_negative; - $y_sign = $y->is_negative; - - $x->is_negative = $y->is_negative = false; - - $diff = $x->compare($y); - - if (!$diff) { - $temp = new static(); - $temp->value = array(1); - $temp->is_negative = $x_sign != $y_sign; - return array($this->_normalize($temp), $this->_normalize(new static())); - } - - if ($diff < 0) { - // if $x is negative, "add" $y. - if ($x_sign) { - $x = $y->subtract($x); - } - return array($this->_normalize(new static()), $this->_normalize($x)); - } - - // normalize $x and $y as described in HAC 14.23 / 14.24 - $msb = $y->value[count($y->value) - 1]; - for ($shift = 0; !($msb & self::$msb); ++$shift) { - $msb <<= 1; - } - $x->_lshift($shift); - $y->_lshift($shift); - $y_value = &$y->value; - - $x_max = count($x->value) - 1; - $y_max = count($y->value) - 1; - - $quotient = new static(); - $quotient_value = &$quotient->value; - $quotient_value = $this->_array_repeat(0, $x_max - $y_max + 1); - - static $temp, $lhs, $rhs; - if (!isset($temp)) { - $temp = new static(); - $lhs = new static(); - $rhs = new static(); - } - $temp_value = &$temp->value; - $rhs_value = &$rhs->value; - - // $temp = $y << ($x_max - $y_max-1) in base 2**26 - $temp_value = array_merge($this->_array_repeat(0, $x_max - $y_max), $y_value); - - while ($x->compare($temp) >= 0) { - // calculate the "common residue" - ++$quotient_value[$x_max - $y_max]; - $x = $x->subtract($temp); - $x_max = count($x->value) - 1; - } - - for ($i = $x_max; $i >= $y_max + 1; --$i) { - $x_value = &$x->value; - $x_window = array( - isset($x_value[$i]) ? $x_value[$i] : 0, - isset($x_value[$i - 1]) ? $x_value[$i - 1] : 0, - isset($x_value[$i - 2]) ? $x_value[$i - 2] : 0 - ); - $y_window = array( - $y_value[$y_max], - ($y_max > 0) ? $y_value[$y_max - 1] : 0 - ); - - $q_index = $i - $y_max - 1; - if ($x_window[0] == $y_window[0]) { - $quotient_value[$q_index] = self::$maxDigit; - } else { - $quotient_value[$q_index] = $this->_safe_divide( - $x_window[0] * self::$baseFull + $x_window[1], - $y_window[0] - ); - } - - $temp_value = array($y_window[1], $y_window[0]); - - $lhs->value = array($quotient_value[$q_index]); - $lhs = $lhs->multiply($temp); - - $rhs_value = array($x_window[2], $x_window[1], $x_window[0]); - - while ($lhs->compare($rhs) > 0) { - --$quotient_value[$q_index]; - - $lhs->value = array($quotient_value[$q_index]); - $lhs = $lhs->multiply($temp); - } - - $adjust = $this->_array_repeat(0, $q_index); - $temp_value = array($quotient_value[$q_index]); - $temp = $temp->multiply($y); - $temp_value = &$temp->value; - if (count($temp_value)) { - $temp_value = array_merge($adjust, $temp_value); - } - - $x = $x->subtract($temp); - - if ($x->compare($zero) < 0) { - $temp_value = array_merge($adjust, $y_value); - $x = $x->add($temp); - - --$quotient_value[$q_index]; - } - - $x_max = count($x_value) - 1; - } - - // unnormalize the remainder - $x->_rshift($shift); - - $quotient->is_negative = $x_sign != $y_sign; - - // calculate the "common residue", if appropriate - if ($x_sign) { - $y->_rshift($shift); - $x = $y->subtract($x); - } - - return array($this->_normalize($quotient), $this->_normalize($x)); - } - - /** - * Divides a BigInteger by a regular integer - * - * abc / x = a00 / x + b0 / x + c / x - * - * @param array $dividend - * @param array $divisor - * @return array - * @access private - */ - function _divide_digit($dividend, $divisor) - { - $carry = 0; - $result = array(); - - for ($i = count($dividend) - 1; $i >= 0; --$i) { - $temp = self::$baseFull * $carry + $dividend[$i]; - $result[$i] = $this->_safe_divide($temp, $divisor); - $carry = (int) ($temp - $divisor * $result[$i]); - } - - return array($result, $carry); - } - - /** - * Performs modular exponentiation. - * - * Here's an example: - * - * modPow($b, $c); - * - * echo $c->toString(); // outputs 10 - * ?> - * - * - * @param \phpseclib\Math\BigInteger $e - * @param \phpseclib\Math\BigInteger $n - * @return \phpseclib\Math\BigInteger - * @access public - * @internal The most naive approach to modular exponentiation has very unreasonable requirements, and - * and although the approach involving repeated squaring does vastly better, it, too, is impractical - * for our purposes. The reason being that division - by far the most complicated and time-consuming - * of the basic operations (eg. +,-,*,/) - occurs multiple times within it. - * - * Modular reductions resolve this issue. Although an individual modular reduction takes more time - * then an individual division, when performed in succession (with the same modulo), they're a lot faster. - * - * The two most commonly used modular reductions are Barrett and Montgomery reduction. Montgomery reduction, - * although faster, only works when the gcd of the modulo and of the base being used is 1. In RSA, when the - * base is a power of two, the modulo - a product of two primes - is always going to have a gcd of 1 (because - * the product of two odd numbers is odd), but what about when RSA isn't used? - * - * In contrast, Barrett reduction has no such constraint. As such, some bigint implementations perform a - * Barrett reduction after every operation in the modpow function. Others perform Barrett reductions when the - * modulo is even and Montgomery reductions when the modulo is odd. BigInteger.java's modPow method, however, - * uses a trick involving the Chinese Remainder Theorem to factor the even modulo into two numbers - one odd and - * the other, a power of two - and recombine them, later. This is the method that this modPow function uses. - * {@link http://islab.oregonstate.edu/papers/j34monex.pdf Montgomery Reduction with Even Modulus} elaborates. - */ - function modPow($e, $n) - { - $n = $this->bitmask !== false && $this->bitmask->compare($n) < 0 ? $this->bitmask : $n->abs(); - - if ($e->compare(new static()) < 0) { - $e = $e->abs(); - - $temp = $this->modInverse($n); - if ($temp === false) { - return false; - } - - return $this->_normalize($temp->modPow($e, $n)); - } - - if (MATH_BIGINTEGER_MODE == self::MODE_GMP) { - $temp = new static(); - $temp->value = gmp_powm($this->value, $e->value, $n->value); - - return $this->_normalize($temp); - } - - if ($this->compare(new static()) < 0 || $this->compare($n) > 0) { - list(, $temp) = $this->divide($n); - return $temp->modPow($e, $n); - } - - if (defined('MATH_BIGINTEGER_OPENSSL_ENABLED')) { - $components = array( - 'modulus' => $n->toBytes(true), - 'publicExponent' => $e->toBytes(true) - ); - - $components = array( - 'modulus' => pack('Ca*a*', 2, $this->_encodeASN1Length(strlen($components['modulus'])), $components['modulus']), - 'publicExponent' => pack('Ca*a*', 2, $this->_encodeASN1Length(strlen($components['publicExponent'])), $components['publicExponent']) - ); - - $RSAPublicKey = pack( - 'Ca*a*a*', - 48, - $this->_encodeASN1Length(strlen($components['modulus']) + strlen($components['publicExponent'])), - $components['modulus'], - $components['publicExponent'] - ); - - $rsaOID = pack('H*', '300d06092a864886f70d0101010500'); // hex version of MA0GCSqGSIb3DQEBAQUA - $RSAPublicKey = chr(0) . $RSAPublicKey; - $RSAPublicKey = chr(3) . $this->_encodeASN1Length(strlen($RSAPublicKey)) . $RSAPublicKey; - - $encapsulated = pack( - 'Ca*a*', - 48, - $this->_encodeASN1Length(strlen($rsaOID . $RSAPublicKey)), - $rsaOID . $RSAPublicKey - ); - - $RSAPublicKey = "-----BEGIN PUBLIC KEY-----\r\n" . - chunk_split(base64_encode($encapsulated)) . - '-----END PUBLIC KEY-----'; - - $plaintext = str_pad($this->toBytes(), strlen($n->toBytes(true)) - 1, "\0", STR_PAD_LEFT); - - if (openssl_public_encrypt($plaintext, $result, $RSAPublicKey, OPENSSL_NO_PADDING)) { - return new static($result, 256); - } - } - - if (MATH_BIGINTEGER_MODE == self::MODE_BCMATH) { - $temp = new static(); - $temp->value = bcpowmod($this->value, $e->value, $n->value, 0); - - return $this->_normalize($temp); - } - - if (empty($e->value)) { - $temp = new static(); - $temp->value = array(1); - return $this->_normalize($temp); - } - - if ($e->value == array(1)) { - list(, $temp) = $this->divide($n); - return $this->_normalize($temp); - } - - if ($e->value == array(2)) { - $temp = new static(); - $temp->value = $this->_square($this->value); - list(, $temp) = $temp->divide($n); - return $this->_normalize($temp); - } - - return $this->_normalize($this->_slidingWindow($e, $n, self::BARRETT)); - - // the following code, although not callable, can be run independently of the above code - // although the above code performed better in my benchmarks the following could might - // perform better under different circumstances. in lieu of deleting it it's just been - // made uncallable - - // is the modulo odd? - if ($n->value[0] & 1) { - return $this->_normalize($this->_slidingWindow($e, $n, self::MONTGOMERY)); - } - // if it's not, it's even - - // find the lowest set bit (eg. the max pow of 2 that divides $n) - for ($i = 0; $i < count($n->value); ++$i) { - if ($n->value[$i]) { - $temp = decbin($n->value[$i]); - $j = strlen($temp) - strrpos($temp, '1') - 1; - $j+= 26 * $i; - break; - } - } - // at this point, 2^$j * $n/(2^$j) == $n - - $mod1 = $n->copy(); - $mod1->_rshift($j); - $mod2 = new static(); - $mod2->value = array(1); - $mod2->_lshift($j); - - $part1 = ($mod1->value != array(1)) ? $this->_slidingWindow($e, $mod1, self::MONTGOMERY) : new static(); - $part2 = $this->_slidingWindow($e, $mod2, self::POWEROF2); - - $y1 = $mod2->modInverse($mod1); - $y2 = $mod1->modInverse($mod2); - - $result = $part1->multiply($mod2); - $result = $result->multiply($y1); - - $temp = $part2->multiply($mod1); - $temp = $temp->multiply($y2); - - $result = $result->add($temp); - list(, $result) = $result->divide($n); - - return $this->_normalize($result); - } - - /** - * Performs modular exponentiation. - * - * Alias for modPow(). - * - * @param \phpseclib\Math\BigInteger $e - * @param \phpseclib\Math\BigInteger $n - * @return \phpseclib\Math\BigInteger - * @access public - */ - function powMod($e, $n) - { - return $this->modPow($e, $n); - } - - /** - * Sliding Window k-ary Modular Exponentiation - * - * Based on {@link http://www.cacr.math.uwaterloo.ca/hac/about/chap14.pdf#page=27 HAC 14.85} / - * {@link http://math.libtomcrypt.com/files/tommath.pdf#page=210 MPM 7.7}. In a departure from those algorithims, - * however, this function performs a modular reduction after every multiplication and squaring operation. - * As such, this function has the same preconditions that the reductions being used do. - * - * @param \phpseclib\Math\BigInteger $e - * @param \phpseclib\Math\BigInteger $n - * @param int $mode - * @return \phpseclib\Math\BigInteger - * @access private - */ - function _slidingWindow($e, $n, $mode) - { - static $window_ranges = array(7, 25, 81, 241, 673, 1793); // from BigInteger.java's oddModPow function - //static $window_ranges = array(0, 7, 36, 140, 450, 1303, 3529); // from MPM 7.3.1 - - $e_value = $e->value; - $e_length = count($e_value) - 1; - $e_bits = decbin($e_value[$e_length]); - for ($i = $e_length - 1; $i >= 0; --$i) { - $e_bits.= str_pad(decbin($e_value[$i]), self::$base, '0', STR_PAD_LEFT); - } - - $e_length = strlen($e_bits); - - // calculate the appropriate window size. - // $window_size == 3 if $window_ranges is between 25 and 81, for example. - for ($i = 0, $window_size = 1; $i < count($window_ranges) && $e_length > $window_ranges[$i]; ++$window_size, ++$i) { - } - - $n_value = $n->value; - - // precompute $this^0 through $this^$window_size - $powers = array(); - $powers[1] = $this->_prepareReduce($this->value, $n_value, $mode); - $powers[2] = $this->_squareReduce($powers[1], $n_value, $mode); - - // we do every other number since substr($e_bits, $i, $j+1) (see below) is supposed to end - // in a 1. ie. it's supposed to be odd. - $temp = 1 << ($window_size - 1); - for ($i = 1; $i < $temp; ++$i) { - $i2 = $i << 1; - $powers[$i2 + 1] = $this->_multiplyReduce($powers[$i2 - 1], $powers[2], $n_value, $mode); - } - - $result = array(1); - $result = $this->_prepareReduce($result, $n_value, $mode); - - for ($i = 0; $i < $e_length;) { - if (!$e_bits[$i]) { - $result = $this->_squareReduce($result, $n_value, $mode); - ++$i; - } else { - for ($j = $window_size - 1; $j > 0; --$j) { - if (!empty($e_bits[$i + $j])) { - break; - } - } - - // eg. the length of substr($e_bits, $i, $j + 1) - for ($k = 0; $k <= $j; ++$k) { - $result = $this->_squareReduce($result, $n_value, $mode); - } - - $result = $this->_multiplyReduce($result, $powers[bindec(substr($e_bits, $i, $j + 1))], $n_value, $mode); - - $i += $j + 1; - } - } - - $temp = new static(); - $temp->value = $this->_reduce($result, $n_value, $mode); - - return $temp; - } - - /** - * Modular reduction - * - * For most $modes this will return the remainder. - * - * @see self::_slidingWindow() - * @access private - * @param array $x - * @param array $n - * @param int $mode - * @return array - */ - function _reduce($x, $n, $mode) - { - switch ($mode) { - case self::MONTGOMERY: - return $this->_montgomery($x, $n); - case self::BARRETT: - return $this->_barrett($x, $n); - case self::POWEROF2: - $lhs = new static(); - $lhs->value = $x; - $rhs = new static(); - $rhs->value = $n; - return $x->_mod2($n); - case self::CLASSIC: - $lhs = new static(); - $lhs->value = $x; - $rhs = new static(); - $rhs->value = $n; - list(, $temp) = $lhs->divide($rhs); - return $temp->value; - case self::NONE: - return $x; - default: - // an invalid $mode was provided - } - } - - /** - * Modular reduction preperation - * - * @see self::_slidingWindow() - * @access private - * @param array $x - * @param array $n - * @param int $mode - * @return array - */ - function _prepareReduce($x, $n, $mode) - { - if ($mode == self::MONTGOMERY) { - return $this->_prepMontgomery($x, $n); - } - return $this->_reduce($x, $n, $mode); - } - - /** - * Modular multiply - * - * @see self::_slidingWindow() - * @access private - * @param array $x - * @param array $y - * @param array $n - * @param int $mode - * @return array - */ - function _multiplyReduce($x, $y, $n, $mode) - { - if ($mode == self::MONTGOMERY) { - return $this->_montgomeryMultiply($x, $y, $n); - } - $temp = $this->_multiply($x, false, $y, false); - return $this->_reduce($temp[self::VALUE], $n, $mode); - } - - /** - * Modular square - * - * @see self::_slidingWindow() - * @access private - * @param array $x - * @param array $n - * @param int $mode - * @return array - */ - function _squareReduce($x, $n, $mode) - { - if ($mode == self::MONTGOMERY) { - return $this->_montgomeryMultiply($x, $x, $n); - } - return $this->_reduce($this->_square($x), $n, $mode); - } - - /** - * Modulos for Powers of Two - * - * Calculates $x%$n, where $n = 2**$e, for some $e. Since this is basically the same as doing $x & ($n-1), - * we'll just use this function as a wrapper for doing that. - * - * @see self::_slidingWindow() - * @access private - * @param \phpseclib\Math\BigInteger - * @return \phpseclib\Math\BigInteger - */ - function _mod2($n) - { - $temp = new static(); - $temp->value = array(1); - return $this->bitwise_and($n->subtract($temp)); - } - - /** - * Barrett Modular Reduction - * - * See {@link http://www.cacr.math.uwaterloo.ca/hac/about/chap14.pdf#page=14 HAC 14.3.3} / - * {@link http://math.libtomcrypt.com/files/tommath.pdf#page=165 MPM 6.2.5} for more information. Modified slightly, - * so as not to require negative numbers (initially, this script didn't support negative numbers). - * - * Employs "folding", as described at - * {@link http://www.cosic.esat.kuleuven.be/publications/thesis-149.pdf#page=66 thesis-149.pdf#page=66}. To quote from - * it, "the idea [behind folding] is to find a value x' such that x (mod m) = x' (mod m), with x' being smaller than x." - * - * Unfortunately, the "Barrett Reduction with Folding" algorithm described in thesis-149.pdf is not, as written, all that - * usable on account of (1) its not using reasonable radix points as discussed in - * {@link http://math.libtomcrypt.com/files/tommath.pdf#page=162 MPM 6.2.2} and (2) the fact that, even with reasonable - * radix points, it only works when there are an even number of digits in the denominator. The reason for (2) is that - * (x >> 1) + (x >> 1) != x / 2 + x / 2. If x is even, they're the same, but if x is odd, they're not. See the in-line - * comments for details. - * - * @see self::_slidingWindow() - * @access private - * @param array $n - * @param array $m - * @return array - */ - function _barrett($n, $m) - { - static $cache = array( - self::VARIABLE => array(), - self::DATA => array() - ); - - $m_length = count($m); - - // if ($this->_compare($n, $this->_square($m)) >= 0) { - if (count($n) > 2 * $m_length) { - $lhs = new static(); - $rhs = new static(); - $lhs->value = $n; - $rhs->value = $m; - list(, $temp) = $lhs->divide($rhs); - return $temp->value; - } - - // if (m.length >> 1) + 2 <= m.length then m is too small and n can't be reduced - if ($m_length < 5) { - return $this->_regularBarrett($n, $m); - } - - // n = 2 * m.length - - if (($key = array_search($m, $cache[self::VARIABLE])) === false) { - $key = count($cache[self::VARIABLE]); - $cache[self::VARIABLE][] = $m; - - $lhs = new static(); - $lhs_value = &$lhs->value; - $lhs_value = $this->_array_repeat(0, $m_length + ($m_length >> 1)); - $lhs_value[] = 1; - $rhs = new static(); - $rhs->value = $m; - - list($u, $m1) = $lhs->divide($rhs); - $u = $u->value; - $m1 = $m1->value; - - $cache[self::DATA][] = array( - 'u' => $u, // m.length >> 1 (technically (m.length >> 1) + 1) - 'm1'=> $m1 // m.length - ); - } else { - extract($cache[self::DATA][$key]); - } - - $cutoff = $m_length + ($m_length >> 1); - $lsd = array_slice($n, 0, $cutoff); // m.length + (m.length >> 1) - $msd = array_slice($n, $cutoff); // m.length >> 1 - $lsd = $this->_trim($lsd); - $temp = $this->_multiply($msd, false, $m1, false); - $n = $this->_add($lsd, false, $temp[self::VALUE], false); // m.length + (m.length >> 1) + 1 - - if ($m_length & 1) { - return $this->_regularBarrett($n[self::VALUE], $m); - } - - // (m.length + (m.length >> 1) + 1) - (m.length - 1) == (m.length >> 1) + 2 - $temp = array_slice($n[self::VALUE], $m_length - 1); - // if even: ((m.length >> 1) + 2) + (m.length >> 1) == m.length + 2 - // if odd: ((m.length >> 1) + 2) + (m.length >> 1) == (m.length - 1) + 2 == m.length + 1 - $temp = $this->_multiply($temp, false, $u, false); - // if even: (m.length + 2) - ((m.length >> 1) + 1) = m.length - (m.length >> 1) + 1 - // if odd: (m.length + 1) - ((m.length >> 1) + 1) = m.length - (m.length >> 1) - $temp = array_slice($temp[self::VALUE], ($m_length >> 1) + 1); - // if even: (m.length - (m.length >> 1) + 1) + m.length = 2 * m.length - (m.length >> 1) + 1 - // if odd: (m.length - (m.length >> 1)) + m.length = 2 * m.length - (m.length >> 1) - $temp = $this->_multiply($temp, false, $m, false); - - // at this point, if m had an odd number of digits, we'd be subtracting a 2 * m.length - (m.length >> 1) digit - // number from a m.length + (m.length >> 1) + 1 digit number. ie. there'd be an extra digit and the while loop - // following this comment would loop a lot (hence our calling _regularBarrett() in that situation). - - $result = $this->_subtract($n[self::VALUE], false, $temp[self::VALUE], false); - - while ($this->_compare($result[self::VALUE], $result[self::SIGN], $m, false) >= 0) { - $result = $this->_subtract($result[self::VALUE], $result[self::SIGN], $m, false); - } - - return $result[self::VALUE]; - } - - /** - * (Regular) Barrett Modular Reduction - * - * For numbers with more than four digits BigInteger::_barrett() is faster. The difference between that and this - * is that this function does not fold the denominator into a smaller form. - * - * @see self::_slidingWindow() - * @access private - * @param array $x - * @param array $n - * @return array - */ - function _regularBarrett($x, $n) - { - static $cache = array( - self::VARIABLE => array(), - self::DATA => array() - ); - - $n_length = count($n); - - if (count($x) > 2 * $n_length) { - $lhs = new static(); - $rhs = new static(); - $lhs->value = $x; - $rhs->value = $n; - list(, $temp) = $lhs->divide($rhs); - return $temp->value; - } - - if (($key = array_search($n, $cache[self::VARIABLE])) === false) { - $key = count($cache[self::VARIABLE]); - $cache[self::VARIABLE][] = $n; - $lhs = new static(); - $lhs_value = &$lhs->value; - $lhs_value = $this->_array_repeat(0, 2 * $n_length); - $lhs_value[] = 1; - $rhs = new static(); - $rhs->value = $n; - list($temp, ) = $lhs->divide($rhs); // m.length - $cache[self::DATA][] = $temp->value; - } - - // 2 * m.length - (m.length - 1) = m.length + 1 - $temp = array_slice($x, $n_length - 1); - // (m.length + 1) + m.length = 2 * m.length + 1 - $temp = $this->_multiply($temp, false, $cache[self::DATA][$key], false); - // (2 * m.length + 1) - (m.length - 1) = m.length + 2 - $temp = array_slice($temp[self::VALUE], $n_length + 1); - - // m.length + 1 - $result = array_slice($x, 0, $n_length + 1); - // m.length + 1 - $temp = $this->_multiplyLower($temp, false, $n, false, $n_length + 1); - // $temp == array_slice($temp->_multiply($temp, false, $n, false)->value, 0, $n_length + 1) - - if ($this->_compare($result, false, $temp[self::VALUE], $temp[self::SIGN]) < 0) { - $corrector_value = $this->_array_repeat(0, $n_length + 1); - $corrector_value[count($corrector_value)] = 1; - $result = $this->_add($result, false, $corrector_value, false); - $result = $result[self::VALUE]; - } - - // at this point, we're subtracting a number with m.length + 1 digits from another number with m.length + 1 digits - $result = $this->_subtract($result, false, $temp[self::VALUE], $temp[self::SIGN]); - while ($this->_compare($result[self::VALUE], $result[self::SIGN], $n, false) > 0) { - $result = $this->_subtract($result[self::VALUE], $result[self::SIGN], $n, false); - } - - return $result[self::VALUE]; - } - - /** - * Performs long multiplication up to $stop digits - * - * If you're going to be doing array_slice($product->value, 0, $stop), some cycles can be saved. - * - * @see self::_regularBarrett() - * @param array $x_value - * @param bool $x_negative - * @param array $y_value - * @param bool $y_negative - * @param int $stop - * @return array - * @access private - */ - function _multiplyLower($x_value, $x_negative, $y_value, $y_negative, $stop) - { - $x_length = count($x_value); - $y_length = count($y_value); - - if (!$x_length || !$y_length) { // a 0 is being multiplied - return array( - self::VALUE => array(), - self::SIGN => false - ); - } - - if ($x_length < $y_length) { - $temp = $x_value; - $x_value = $y_value; - $y_value = $temp; - - $x_length = count($x_value); - $y_length = count($y_value); - } - - $product_value = $this->_array_repeat(0, $x_length + $y_length); - - // the following for loop could be removed if the for loop following it - // (the one with nested for loops) initially set $i to 0, but - // doing so would also make the result in one set of unnecessary adds, - // since on the outermost loops first pass, $product->value[$k] is going - // to always be 0 - - $carry = 0; - - for ($j = 0; $j < $x_length; ++$j) { // ie. $i = 0, $k = $i - $temp = $x_value[$j] * $y_value[0] + $carry; // $product_value[$k] == 0 - $carry = self::$base === 26 ? intval($temp / 0x4000000) : ($temp >> 31); - $product_value[$j] = (int) ($temp - self::$baseFull * $carry); - } - - if ($j < $stop) { - $product_value[$j] = $carry; - } - - // the above for loop is what the previous comment was talking about. the - // following for loop is the "one with nested for loops" - - for ($i = 1; $i < $y_length; ++$i) { - $carry = 0; - - for ($j = 0, $k = $i; $j < $x_length && $k < $stop; ++$j, ++$k) { - $temp = $product_value[$k] + $x_value[$j] * $y_value[$i] + $carry; - $carry = self::$base === 26 ? intval($temp / 0x4000000) : ($temp >> 31); - $product_value[$k] = (int) ($temp - self::$baseFull * $carry); - } - - if ($k < $stop) { - $product_value[$k] = $carry; - } - } - - return array( - self::VALUE => $this->_trim($product_value), - self::SIGN => $x_negative != $y_negative - ); - } - - /** - * Montgomery Modular Reduction - * - * ($x->_prepMontgomery($n))->_montgomery($n) yields $x % $n. - * {@link http://math.libtomcrypt.com/files/tommath.pdf#page=170 MPM 6.3} provides insights on how this can be - * improved upon (basically, by using the comba method). gcd($n, 2) must be equal to one for this function - * to work correctly. - * - * @see self::_prepMontgomery() - * @see self::_slidingWindow() - * @access private - * @param array $x - * @param array $n - * @return array - */ - function _montgomery($x, $n) - { - static $cache = array( - self::VARIABLE => array(), - self::DATA => array() - ); - - if (($key = array_search($n, $cache[self::VARIABLE])) === false) { - $key = count($cache[self::VARIABLE]); - $cache[self::VARIABLE][] = $x; - $cache[self::DATA][] = $this->_modInverse67108864($n); - } - - $k = count($n); - - $result = array(self::VALUE => $x); - - for ($i = 0; $i < $k; ++$i) { - $temp = $result[self::VALUE][$i] * $cache[self::DATA][$key]; - $temp = $temp - self::$baseFull * (self::$base === 26 ? intval($temp / 0x4000000) : ($temp >> 31)); - $temp = $this->_regularMultiply(array($temp), $n); - $temp = array_merge($this->_array_repeat(0, $i), $temp); - $result = $this->_add($result[self::VALUE], false, $temp, false); - } - - $result[self::VALUE] = array_slice($result[self::VALUE], $k); - - if ($this->_compare($result, false, $n, false) >= 0) { - $result = $this->_subtract($result[self::VALUE], false, $n, false); - } - - return $result[self::VALUE]; - } - - /** - * Montgomery Multiply - * - * Interleaves the montgomery reduction and long multiplication algorithms together as described in - * {@link http://www.cacr.math.uwaterloo.ca/hac/about/chap14.pdf#page=13 HAC 14.36} - * - * @see self::_prepMontgomery() - * @see self::_montgomery() - * @access private - * @param array $x - * @param array $y - * @param array $m - * @return array - */ - function _montgomeryMultiply($x, $y, $m) - { - $temp = $this->_multiply($x, false, $y, false); - return $this->_montgomery($temp[self::VALUE], $m); - - // the following code, although not callable, can be run independently of the above code - // although the above code performed better in my benchmarks the following could might - // perform better under different circumstances. in lieu of deleting it it's just been - // made uncallable - - static $cache = array( - self::VARIABLE => array(), - self::DATA => array() - ); - - if (($key = array_search($m, $cache[self::VARIABLE])) === false) { - $key = count($cache[self::VARIABLE]); - $cache[self::VARIABLE][] = $m; - $cache[self::DATA][] = $this->_modInverse67108864($m); - } - - $n = max(count($x), count($y), count($m)); - $x = array_pad($x, $n, 0); - $y = array_pad($y, $n, 0); - $m = array_pad($m, $n, 0); - $a = array(self::VALUE => $this->_array_repeat(0, $n + 1)); - for ($i = 0; $i < $n; ++$i) { - $temp = $a[self::VALUE][0] + $x[$i] * $y[0]; - $temp = $temp - self::$baseFull * (self::$base === 26 ? intval($temp / 0x4000000) : ($temp >> 31)); - $temp = $temp * $cache[self::DATA][$key]; - $temp = $temp - self::$baseFull * (self::$base === 26 ? intval($temp / 0x4000000) : ($temp >> 31)); - $temp = $this->_add($this->_regularMultiply(array($x[$i]), $y), false, $this->_regularMultiply(array($temp), $m), false); - $a = $this->_add($a[self::VALUE], false, $temp[self::VALUE], false); - $a[self::VALUE] = array_slice($a[self::VALUE], 1); - } - if ($this->_compare($a[self::VALUE], false, $m, false) >= 0) { - $a = $this->_subtract($a[self::VALUE], false, $m, false); - } - return $a[self::VALUE]; - } - - /** - * Prepare a number for use in Montgomery Modular Reductions - * - * @see self::_montgomery() - * @see self::_slidingWindow() - * @access private - * @param array $x - * @param array $n - * @return array - */ - function _prepMontgomery($x, $n) - { - $lhs = new static(); - $lhs->value = array_merge($this->_array_repeat(0, count($n)), $x); - $rhs = new static(); - $rhs->value = $n; - - list(, $temp) = $lhs->divide($rhs); - return $temp->value; - } - - /** - * Modular Inverse of a number mod 2**26 (eg. 67108864) - * - * Based off of the bnpInvDigit function implemented and justified in the following URL: - * - * {@link http://www-cs-students.stanford.edu/~tjw/jsbn/jsbn.js} - * - * The following URL provides more info: - * - * {@link http://groups.google.com/group/sci.crypt/msg/7a137205c1be7d85} - * - * As for why we do all the bitmasking... strange things can happen when converting from floats to ints. For - * instance, on some computers, var_dump((int) -4294967297) yields int(-1) and on others, it yields - * int(-2147483648). To avoid problems stemming from this, we use bitmasks to guarantee that ints aren't - * auto-converted to floats. The outermost bitmask is present because without it, there's no guarantee that - * the "residue" returned would be the so-called "common residue". We use fmod, in the last step, because the - * maximum possible $x is 26 bits and the maximum $result is 16 bits. Thus, we have to be able to handle up to - * 40 bits, which only 64-bit floating points will support. - * - * Thanks to Pedro Gimeno Fortea for input! - * - * @see self::_montgomery() - * @access private - * @param array $x - * @return int - */ - function _modInverse67108864($x) // 2**26 == 67,108,864 - { - $x = -$x[0]; - $result = $x & 0x3; // x**-1 mod 2**2 - $result = ($result * (2 - $x * $result)) & 0xF; // x**-1 mod 2**4 - $result = ($result * (2 - ($x & 0xFF) * $result)) & 0xFF; // x**-1 mod 2**8 - $result = ($result * ((2 - ($x & 0xFFFF) * $result) & 0xFFFF)) & 0xFFFF; // x**-1 mod 2**16 - $result = fmod($result * (2 - fmod($x * $result, self::$baseFull)), self::$baseFull); // x**-1 mod 2**26 - return $result & self::$maxDigit; - } - - /** - * Calculates modular inverses. - * - * Say you have (30 mod 17 * x mod 17) mod 17 == 1. x can be found using modular inverses. - * - * Here's an example: - * - * modInverse($b); - * echo $c->toString(); // outputs 4 - * - * echo "\r\n"; - * - * $d = $a->multiply($c); - * list(, $d) = $d->divide($b); - * echo $d; // outputs 1 (as per the definition of modular inverse) - * ?> - * - * - * @param \phpseclib\Math\BigInteger $n - * @return \phpseclib\Math\BigInteger|false - * @access public - * @internal See {@link http://www.cacr.math.uwaterloo.ca/hac/about/chap14.pdf#page=21 HAC 14.64} for more information. - */ - function modInverse($n) - { - switch (MATH_BIGINTEGER_MODE) { - case self::MODE_GMP: - $temp = new static(); - $temp->value = gmp_invert($this->value, $n->value); - - return ($temp->value === false) ? false : $this->_normalize($temp); - } - - static $zero, $one; - if (!isset($zero)) { - $zero = new static(); - $one = new static(1); - } - - // $x mod -$n == $x mod $n. - $n = $n->abs(); - - if ($this->compare($zero) < 0) { - $temp = $this->abs(); - $temp = $temp->modInverse($n); - return $this->_normalize($n->subtract($temp)); - } - - extract($this->extendedGCD($n)); - - if (!$gcd->equals($one)) { - return false; - } - - $x = $x->compare($zero) < 0 ? $x->add($n) : $x; - - return $this->compare($zero) < 0 ? $this->_normalize($n->subtract($x)) : $this->_normalize($x); - } - - /** - * Calculates the greatest common divisor and Bezout's identity. - * - * Say you have 693 and 609. The GCD is 21. Bezout's identity states that there exist integers x and y such that - * 693*x + 609*y == 21. In point of fact, there are actually an infinite number of x and y combinations and which - * combination is returned is dependent upon which mode is in use. See - * {@link http://en.wikipedia.org/wiki/B%C3%A9zout%27s_identity Bezout's identity - Wikipedia} for more information. - * - * Here's an example: - * - * extendedGCD($b)); - * - * echo $gcd->toString() . "\r\n"; // outputs 21 - * echo $a->toString() * $x->toString() + $b->toString() * $y->toString(); // outputs 21 - * ?> - * - * - * @param \phpseclib\Math\BigInteger $n - * @return \phpseclib\Math\BigInteger - * @access public - * @internal Calculates the GCD using the binary xGCD algorithim described in - * {@link http://www.cacr.math.uwaterloo.ca/hac/about/chap14.pdf#page=19 HAC 14.61}. As the text above 14.61 notes, - * the more traditional algorithim requires "relatively costly multiple-precision divisions". - */ - function extendedGCD($n) - { - switch (MATH_BIGINTEGER_MODE) { - case self::MODE_GMP: - extract(gmp_gcdext($this->value, $n->value)); - - return array( - 'gcd' => $this->_normalize(new static($g)), - 'x' => $this->_normalize(new static($s)), - 'y' => $this->_normalize(new static($t)) - ); - case self::MODE_BCMATH: - // it might be faster to use the binary xGCD algorithim here, as well, but (1) that algorithim works - // best when the base is a power of 2 and (2) i don't think it'd make much difference, anyway. as is, - // the basic extended euclidean algorithim is what we're using. - - $u = $this->value; - $v = $n->value; - - $a = '1'; - $b = '0'; - $c = '0'; - $d = '1'; - - while (bccomp($v, '0', 0) != 0) { - $q = bcdiv($u, $v, 0); - - $temp = $u; - $u = $v; - $v = bcsub($temp, bcmul($v, $q, 0), 0); - - $temp = $a; - $a = $c; - $c = bcsub($temp, bcmul($a, $q, 0), 0); - - $temp = $b; - $b = $d; - $d = bcsub($temp, bcmul($b, $q, 0), 0); - } - - return array( - 'gcd' => $this->_normalize(new static($u)), - 'x' => $this->_normalize(new static($a)), - 'y' => $this->_normalize(new static($b)) - ); - } - - $y = $n->copy(); - $x = $this->copy(); - $g = new static(); - $g->value = array(1); - - while (!(($x->value[0] & 1)|| ($y->value[0] & 1))) { - $x->_rshift(1); - $y->_rshift(1); - $g->_lshift(1); - } - - $u = $x->copy(); - $v = $y->copy(); - - $a = new static(); - $b = new static(); - $c = new static(); - $d = new static(); - - $a->value = $d->value = $g->value = array(1); - $b->value = $c->value = array(); - - while (!empty($u->value)) { - while (!($u->value[0] & 1)) { - $u->_rshift(1); - if ((!empty($a->value) && ($a->value[0] & 1)) || (!empty($b->value) && ($b->value[0] & 1))) { - $a = $a->add($y); - $b = $b->subtract($x); - } - $a->_rshift(1); - $b->_rshift(1); - } - - while (!($v->value[0] & 1)) { - $v->_rshift(1); - if ((!empty($d->value) && ($d->value[0] & 1)) || (!empty($c->value) && ($c->value[0] & 1))) { - $c = $c->add($y); - $d = $d->subtract($x); - } - $c->_rshift(1); - $d->_rshift(1); - } - - if ($u->compare($v) >= 0) { - $u = $u->subtract($v); - $a = $a->subtract($c); - $b = $b->subtract($d); - } else { - $v = $v->subtract($u); - $c = $c->subtract($a); - $d = $d->subtract($b); - } - } - - return array( - 'gcd' => $this->_normalize($g->multiply($v)), - 'x' => $this->_normalize($c), - 'y' => $this->_normalize($d) - ); - } - - /** - * Calculates the greatest common divisor - * - * Say you have 693 and 609. The GCD is 21. - * - * Here's an example: - * - * extendedGCD($b); - * - * echo $gcd->toString() . "\r\n"; // outputs 21 - * ?> - * - * - * @param \phpseclib\Math\BigInteger $n - * @return \phpseclib\Math\BigInteger - * @access public - */ - function gcd($n) - { - extract($this->extendedGCD($n)); - return $gcd; - } - - /** - * Absolute value. - * - * @return \phpseclib\Math\BigInteger - * @access public - */ - function abs() - { - $temp = new static(); - - switch (MATH_BIGINTEGER_MODE) { - case self::MODE_GMP: - $temp->value = gmp_abs($this->value); - break; - case self::MODE_BCMATH: - $temp->value = (bccomp($this->value, '0', 0) < 0) ? substr($this->value, 1) : $this->value; - break; - default: - $temp->value = $this->value; - } - - return $temp; - } - - /** - * Compares two numbers. - * - * Although one might think !$x->compare($y) means $x != $y, it, in fact, means the opposite. The reason for this is - * demonstrated thusly: - * - * $x > $y: $x->compare($y) > 0 - * $x < $y: $x->compare($y) < 0 - * $x == $y: $x->compare($y) == 0 - * - * Note how the same comparison operator is used. If you want to test for equality, use $x->equals($y). - * - * @param \phpseclib\Math\BigInteger $y - * @return int < 0 if $this is less than $y; > 0 if $this is greater than $y, and 0 if they are equal. - * @access public - * @see self::equals() - * @internal Could return $this->subtract($x), but that's not as fast as what we do do. - */ - function compare($y) - { - switch (MATH_BIGINTEGER_MODE) { - case self::MODE_GMP: - $r = gmp_cmp($this->value, $y->value); - if ($r < -1) { - $r = -1; - } - if ($r > 1) { - $r = 1; - } - return $r; - case self::MODE_BCMATH: - return bccomp($this->value, $y->value, 0); - } - - return $this->_compare($this->value, $this->is_negative, $y->value, $y->is_negative); - } - - /** - * Compares two numbers. - * - * @param array $x_value - * @param bool $x_negative - * @param array $y_value - * @param bool $y_negative - * @return int - * @see self::compare() - * @access private - */ - function _compare($x_value, $x_negative, $y_value, $y_negative) - { - if ($x_negative != $y_negative) { - return (!$x_negative && $y_negative) ? 1 : -1; - } - - $result = $x_negative ? -1 : 1; - - if (count($x_value) != count($y_value)) { - return (count($x_value) > count($y_value)) ? $result : -$result; - } - $size = max(count($x_value), count($y_value)); - - $x_value = array_pad($x_value, $size, 0); - $y_value = array_pad($y_value, $size, 0); - - for ($i = count($x_value) - 1; $i >= 0; --$i) { - if ($x_value[$i] != $y_value[$i]) { - return ($x_value[$i] > $y_value[$i]) ? $result : -$result; - } - } - - return 0; - } - - /** - * Tests the equality of two numbers. - * - * If you need to see if one number is greater than or less than another number, use BigInteger::compare() - * - * @param \phpseclib\Math\BigInteger $x - * @return bool - * @access public - * @see self::compare() - */ - function equals($x) - { - switch (MATH_BIGINTEGER_MODE) { - case self::MODE_GMP: - return gmp_cmp($this->value, $x->value) == 0; - default: - return $this->value === $x->value && $this->is_negative == $x->is_negative; - } - } - - /** - * Set Precision - * - * Some bitwise operations give different results depending on the precision being used. Examples include left - * shift, not, and rotates. - * - * @param int $bits - * @access public - */ - function setPrecision($bits) - { - $this->precision = $bits; - if (MATH_BIGINTEGER_MODE != self::MODE_BCMATH) { - $this->bitmask = new static(chr((1 << ($bits & 0x7)) - 1) . str_repeat(chr(0xFF), $bits >> 3), 256); - } else { - $this->bitmask = new static(bcpow('2', $bits, 0)); - } - - $temp = $this->_normalize($this); - $this->value = $temp->value; - } - - /** - * Logical And - * - * @param \phpseclib\Math\BigInteger $x - * @access public - * @internal Implemented per a request by Lluis Pamies i Juarez - * @return \phpseclib\Math\BigInteger - */ - function bitwise_and($x) - { - switch (MATH_BIGINTEGER_MODE) { - case self::MODE_GMP: - $temp = new static(); - $temp->value = gmp_and($this->value, $x->value); - - return $this->_normalize($temp); - case self::MODE_BCMATH: - $left = $this->toBytes(); - $right = $x->toBytes(); - - $length = max(strlen($left), strlen($right)); - - $left = str_pad($left, $length, chr(0), STR_PAD_LEFT); - $right = str_pad($right, $length, chr(0), STR_PAD_LEFT); - - return $this->_normalize(new static($left & $right, 256)); - } - - $result = $this->copy(); - - $length = min(count($x->value), count($this->value)); - - $result->value = array_slice($result->value, 0, $length); - - for ($i = 0; $i < $length; ++$i) { - $result->value[$i]&= $x->value[$i]; - } - - return $this->_normalize($result); - } - - /** - * Logical Or - * - * @param \phpseclib\Math\BigInteger $x - * @access public - * @internal Implemented per a request by Lluis Pamies i Juarez - * @return \phpseclib\Math\BigInteger - */ - function bitwise_or($x) - { - switch (MATH_BIGINTEGER_MODE) { - case self::MODE_GMP: - $temp = new static(); - $temp->value = gmp_or($this->value, $x->value); - - return $this->_normalize($temp); - case self::MODE_BCMATH: - $left = $this->toBytes(); - $right = $x->toBytes(); - - $length = max(strlen($left), strlen($right)); - - $left = str_pad($left, $length, chr(0), STR_PAD_LEFT); - $right = str_pad($right, $length, chr(0), STR_PAD_LEFT); - - return $this->_normalize(new static($left | $right, 256)); - } - - $length = max(count($this->value), count($x->value)); - $result = $this->copy(); - $result->value = array_pad($result->value, $length, 0); - $x->value = array_pad($x->value, $length, 0); - - for ($i = 0; $i < $length; ++$i) { - $result->value[$i]|= $x->value[$i]; - } - - return $this->_normalize($result); - } - - /** - * Logical Exclusive-Or - * - * @param \phpseclib\Math\BigInteger $x - * @access public - * @internal Implemented per a request by Lluis Pamies i Juarez - * @return \phpseclib\Math\BigInteger - */ - function bitwise_xor($x) - { - switch (MATH_BIGINTEGER_MODE) { - case self::MODE_GMP: - $temp = new static(); - $temp->value = gmp_xor(gmp_abs($this->value), gmp_abs($x->value)); - return $this->_normalize($temp); - case self::MODE_BCMATH: - $left = $this->toBytes(); - $right = $x->toBytes(); - - $length = max(strlen($left), strlen($right)); - - $left = str_pad($left, $length, chr(0), STR_PAD_LEFT); - $right = str_pad($right, $length, chr(0), STR_PAD_LEFT); - - return $this->_normalize(new static($left ^ $right, 256)); - } - - $length = max(count($this->value), count($x->value)); - $result = $this->copy(); - $result->is_negative = false; - $result->value = array_pad($result->value, $length, 0); - $x->value = array_pad($x->value, $length, 0); - - for ($i = 0; $i < $length; ++$i) { - $result->value[$i]^= $x->value[$i]; - } - - return $this->_normalize($result); - } - - /** - * Logical Not - * - * @access public - * @internal Implemented per a request by Lluis Pamies i Juarez - * @return \phpseclib\Math\BigInteger - */ - function bitwise_not() - { - // calculuate "not" without regard to $this->precision - // (will always result in a smaller number. ie. ~1 isn't 1111 1110 - it's 0) - $temp = $this->toBytes(); - if ($temp == '') { - return $this->_normalize(new static()); - } - $pre_msb = decbin(ord($temp[0])); - $temp = ~$temp; - $msb = decbin(ord($temp[0])); - if (strlen($msb) == 8) { - $msb = substr($msb, strpos($msb, '0')); - } - $temp[0] = chr(bindec($msb)); - - // see if we need to add extra leading 1's - $current_bits = strlen($pre_msb) + 8 * strlen($temp) - 8; - $new_bits = $this->precision - $current_bits; - if ($new_bits <= 0) { - return $this->_normalize(new static($temp, 256)); - } - - // generate as many leading 1's as we need to. - $leading_ones = chr((1 << ($new_bits & 0x7)) - 1) . str_repeat(chr(0xFF), $new_bits >> 3); - $this->_base256_lshift($leading_ones, $current_bits); - - $temp = str_pad($temp, strlen($leading_ones), chr(0), STR_PAD_LEFT); - - return $this->_normalize(new static($leading_ones | $temp, 256)); - } - - /** - * Logical Right Shift - * - * Shifts BigInteger's by $shift bits, effectively dividing by 2**$shift. - * - * @param int $shift - * @return \phpseclib\Math\BigInteger - * @access public - * @internal The only version that yields any speed increases is the internal version. - */ - function bitwise_rightShift($shift) - { - $temp = new static(); - - switch (MATH_BIGINTEGER_MODE) { - case self::MODE_GMP: - static $two; - - if (!isset($two)) { - $two = gmp_init('2'); - } - - $temp->value = gmp_div_q($this->value, gmp_pow($two, $shift)); - - break; - case self::MODE_BCMATH: - $temp->value = bcdiv($this->value, bcpow('2', $shift, 0), 0); - - break; - default: // could just replace _lshift with this, but then all _lshift() calls would need to be rewritten - // and I don't want to do that... - $temp->value = $this->value; - $temp->_rshift($shift); - } - - return $this->_normalize($temp); - } - - /** - * Logical Left Shift - * - * Shifts BigInteger's by $shift bits, effectively multiplying by 2**$shift. - * - * @param int $shift - * @return \phpseclib\Math\BigInteger - * @access public - * @internal The only version that yields any speed increases is the internal version. - */ - function bitwise_leftShift($shift) - { - $temp = new static(); - - switch (MATH_BIGINTEGER_MODE) { - case self::MODE_GMP: - static $two; - - if (!isset($two)) { - $two = gmp_init('2'); - } - - $temp->value = gmp_mul($this->value, gmp_pow($two, $shift)); - - break; - case self::MODE_BCMATH: - $temp->value = bcmul($this->value, bcpow('2', $shift, 0), 0); - - break; - default: // could just replace _rshift with this, but then all _lshift() calls would need to be rewritten - // and I don't want to do that... - $temp->value = $this->value; - $temp->_lshift($shift); - } - - return $this->_normalize($temp); - } - - /** - * Logical Left Rotate - * - * Instead of the top x bits being dropped they're appended to the shifted bit string. - * - * @param int $shift - * @return \phpseclib\Math\BigInteger - * @access public - */ - function bitwise_leftRotate($shift) - { - $bits = $this->toBytes(); - - if ($this->precision > 0) { - $precision = $this->precision; - if (MATH_BIGINTEGER_MODE == self::MODE_BCMATH) { - $mask = $this->bitmask->subtract(new static(1)); - $mask = $mask->toBytes(); - } else { - $mask = $this->bitmask->toBytes(); - } - } else { - $temp = ord($bits[0]); - for ($i = 0; $temp >> $i; ++$i) { - } - $precision = 8 * strlen($bits) - 8 + $i; - $mask = chr((1 << ($precision & 0x7)) - 1) . str_repeat(chr(0xFF), $precision >> 3); - } - - if ($shift < 0) { - $shift+= $precision; - } - $shift%= $precision; - - if (!$shift) { - return $this->copy(); - } - - $left = $this->bitwise_leftShift($shift); - $left = $left->bitwise_and(new static($mask, 256)); - $right = $this->bitwise_rightShift($precision - $shift); - $result = MATH_BIGINTEGER_MODE != self::MODE_BCMATH ? $left->bitwise_or($right) : $left->add($right); - return $this->_normalize($result); - } - - /** - * Logical Right Rotate - * - * Instead of the bottom x bits being dropped they're prepended to the shifted bit string. - * - * @param int $shift - * @return \phpseclib\Math\BigInteger - * @access public - */ - function bitwise_rightRotate($shift) - { - return $this->bitwise_leftRotate(-$shift); - } - - /** - * Generates a random BigInteger - * - * Byte length is equal to $length. Uses \phpseclib\Crypt\Random if it's loaded and mt_rand if it's not. - * - * @param int $length - * @return \phpseclib\Math\BigInteger - * @access private - */ - function _random_number_helper($size) - { - if (class_exists('\phpseclib\Crypt\Random')) { - $random = Random::string($size); - } else { - $random = ''; - - if ($size & 1) { - $random.= chr(mt_rand(0, 255)); - } - - $blocks = $size >> 1; - for ($i = 0; $i < $blocks; ++$i) { - // mt_rand(-2147483648, 0x7FFFFFFF) always produces -2147483648 on some systems - $random.= pack('n', mt_rand(0, 0xFFFF)); - } - } - - return new static($random, 256); - } - - /** - * Generate a random number - * - * Returns a random number between $min and $max where $min and $max - * can be defined using one of the two methods: - * - * $min->random($max) - * $max->random($min) - * - * @param \phpseclib\Math\BigInteger $arg1 - * @param \phpseclib\Math\BigInteger $arg2 - * @return \phpseclib\Math\BigInteger - * @access public - * @internal The API for creating random numbers used to be $a->random($min, $max), where $a was a BigInteger object. - * That method is still supported for BC purposes. - */ - function random($arg1, $arg2 = false) - { - if ($arg1 === false) { - return false; - } - - if ($arg2 === false) { - $max = $arg1; - $min = $this; - } else { - $min = $arg1; - $max = $arg2; - } - - $compare = $max->compare($min); - - if (!$compare) { - return $this->_normalize($min); - } elseif ($compare < 0) { - // if $min is bigger then $max, swap $min and $max - $temp = $max; - $max = $min; - $min = $temp; - } - - static $one; - if (!isset($one)) { - $one = new static(1); - } - - $max = $max->subtract($min->subtract($one)); - $size = strlen(ltrim($max->toBytes(), chr(0))); - - /* - doing $random % $max doesn't work because some numbers will be more likely to occur than others. - eg. if $max is 140 and $random's max is 255 then that'd mean both $random = 5 and $random = 145 - would produce 5 whereas the only value of random that could produce 139 would be 139. ie. - not all numbers would be equally likely. some would be more likely than others. - - creating a whole new random number until you find one that is within the range doesn't work - because, for sufficiently small ranges, the likelihood that you'd get a number within that range - would be pretty small. eg. with $random's max being 255 and if your $max being 1 the probability - would be pretty high that $random would be greater than $max. - - phpseclib works around this using the technique described here: - - http://crypto.stackexchange.com/questions/5708/creating-a-small-number-from-a-cryptographically-secure-random-string - */ - $random_max = new static(chr(1) . str_repeat("\0", $size), 256); - $random = $this->_random_number_helper($size); - - list($max_multiple) = $random_max->divide($max); - $max_multiple = $max_multiple->multiply($max); - - while ($random->compare($max_multiple) >= 0) { - $random = $random->subtract($max_multiple); - $random_max = $random_max->subtract($max_multiple); - $random = $random->bitwise_leftShift(8); - $random = $random->add($this->_random_number_helper(1)); - $random_max = $random_max->bitwise_leftShift(8); - list($max_multiple) = $random_max->divide($max); - $max_multiple = $max_multiple->multiply($max); - } - list(, $random) = $random->divide($max); - - return $this->_normalize($random->add($min)); - } - - /** - * Generate a random prime number. - * - * If there's not a prime within the given range, false will be returned. - * If more than $timeout seconds have elapsed, give up and return false. - * - * @param \phpseclib\Math\BigInteger $arg1 - * @param \phpseclib\Math\BigInteger $arg2 - * @param int $timeout - * @return Math_BigInteger|false - * @access public - * @internal See {@link http://www.cacr.math.uwaterloo.ca/hac/about/chap4.pdf#page=15 HAC 4.44}. - */ - function randomPrime($arg1, $arg2 = false, $timeout = false) - { - if ($arg1 === false) { - return false; - } - - if ($arg2 === false) { - $max = $arg1; - $min = $this; - } else { - $min = $arg1; - $max = $arg2; - } - - $compare = $max->compare($min); - - if (!$compare) { - return $min->isPrime() ? $min : false; - } elseif ($compare < 0) { - // if $min is bigger then $max, swap $min and $max - $temp = $max; - $max = $min; - $min = $temp; - } - - static $one, $two; - if (!isset($one)) { - $one = new static(1); - $two = new static(2); - } - - $start = time(); - - $x = $this->random($min, $max); - - // gmp_nextprime() requires PHP 5 >= 5.2.0 per . - if (MATH_BIGINTEGER_MODE == self::MODE_GMP && extension_loaded('gmp')) { - $p = new static(); - $p->value = gmp_nextprime($x->value); - - if ($p->compare($max) <= 0) { - return $p; - } - - if (!$min->equals($x)) { - $x = $x->subtract($one); - } - - return $x->randomPrime($min, $x); - } - - if ($x->equals($two)) { - return $x; - } - - $x->_make_odd(); - if ($x->compare($max) > 0) { - // if $x > $max then $max is even and if $min == $max then no prime number exists between the specified range - if ($min->equals($max)) { - return false; - } - $x = $min->copy(); - $x->_make_odd(); - } - - $initial_x = $x->copy(); - - while (true) { - if ($timeout !== false && time() - $start > $timeout) { - return false; - } - - if ($x->isPrime()) { - return $x; - } - - $x = $x->add($two); - - if ($x->compare($max) > 0) { - $x = $min->copy(); - if ($x->equals($two)) { - return $x; - } - $x->_make_odd(); - } - - if ($x->equals($initial_x)) { - return false; - } - } - } - - /** - * Make the current number odd - * - * If the current number is odd it'll be unchanged. If it's even, one will be added to it. - * - * @see self::randomPrime() - * @access private - */ - function _make_odd() - { - switch (MATH_BIGINTEGER_MODE) { - case self::MODE_GMP: - gmp_setbit($this->value, 0); - break; - case self::MODE_BCMATH: - if ($this->value[strlen($this->value) - 1] % 2 == 0) { - $this->value = bcadd($this->value, '1'); - } - break; - default: - $this->value[0] |= 1; - } - } - - /** - * Checks a numer to see if it's prime - * - * Assuming the $t parameter is not set, this function has an error rate of 2**-80. The main motivation for the - * $t parameter is distributability. BigInteger::randomPrime() can be distributed across multiple pageloads - * on a website instead of just one. - * - * @param \phpseclib\Math\BigInteger $t - * @return bool - * @access public - * @internal Uses the - * {@link http://en.wikipedia.org/wiki/Miller%E2%80%93Rabin_primality_test Miller-Rabin primality test}. See - * {@link http://www.cacr.math.uwaterloo.ca/hac/about/chap4.pdf#page=8 HAC 4.24}. - */ - function isPrime($t = false) - { - $length = strlen($this->toBytes()); - - if (!$t) { - // see HAC 4.49 "Note (controlling the error probability)" - // @codingStandardsIgnoreStart - if ($length >= 163) { $t = 2; } // floor(1300 / 8) - else if ($length >= 106) { $t = 3; } // floor( 850 / 8) - else if ($length >= 81 ) { $t = 4; } // floor( 650 / 8) - else if ($length >= 68 ) { $t = 5; } // floor( 550 / 8) - else if ($length >= 56 ) { $t = 6; } // floor( 450 / 8) - else if ($length >= 50 ) { $t = 7; } // floor( 400 / 8) - else if ($length >= 43 ) { $t = 8; } // floor( 350 / 8) - else if ($length >= 37 ) { $t = 9; } // floor( 300 / 8) - else if ($length >= 31 ) { $t = 12; } // floor( 250 / 8) - else if ($length >= 25 ) { $t = 15; } // floor( 200 / 8) - else if ($length >= 18 ) { $t = 18; } // floor( 150 / 8) - else { $t = 27; } - // @codingStandardsIgnoreEnd - } - - // ie. gmp_testbit($this, 0) - // ie. isEven() or !isOdd() - switch (MATH_BIGINTEGER_MODE) { - case self::MODE_GMP: - return gmp_prob_prime($this->value, $t) != 0; - case self::MODE_BCMATH: - if ($this->value === '2') { - return true; - } - if ($this->value[strlen($this->value) - 1] % 2 == 0) { - return false; - } - break; - default: - if ($this->value == array(2)) { - return true; - } - if (~$this->value[0] & 1) { - return false; - } - } - - static $primes, $zero, $one, $two; - - if (!isset($primes)) { - $primes = array( - 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, - 61, 67, 71, 73, 79, 83, 89, 97, 101, 103, 107, 109, 113, 127, 131, 137, - 139, 149, 151, 157, 163, 167, 173, 179, 181, 191, 193, 197, 199, 211, 223, 227, - 229, 233, 239, 241, 251, 257, 263, 269, 271, 277, 281, 283, 293, 307, 311, 313, - 317, 331, 337, 347, 349, 353, 359, 367, 373, 379, 383, 389, 397, 401, 409, 419, - 421, 431, 433, 439, 443, 449, 457, 461, 463, 467, 479, 487, 491, 499, 503, 509, - 521, 523, 541, 547, 557, 563, 569, 571, 577, 587, 593, 599, 601, 607, 613, 617, - 619, 631, 641, 643, 647, 653, 659, 661, 673, 677, 683, 691, 701, 709, 719, 727, - 733, 739, 743, 751, 757, 761, 769, 773, 787, 797, 809, 811, 821, 823, 827, 829, - 839, 853, 857, 859, 863, 877, 881, 883, 887, 907, 911, 919, 929, 937, 941, 947, - 953, 967, 971, 977, 983, 991, 997 - ); - - if (MATH_BIGINTEGER_MODE != self::MODE_INTERNAL) { - for ($i = 0; $i < count($primes); ++$i) { - $primes[$i] = new static($primes[$i]); - } - } - - $zero = new static(); - $one = new static(1); - $two = new static(2); - } - - if ($this->equals($one)) { - return false; - } - - // see HAC 4.4.1 "Random search for probable primes" - if (MATH_BIGINTEGER_MODE != self::MODE_INTERNAL) { - foreach ($primes as $prime) { - list(, $r) = $this->divide($prime); - if ($r->equals($zero)) { - return $this->equals($prime); - } - } - } else { - $value = $this->value; - foreach ($primes as $prime) { - list(, $r) = $this->_divide_digit($value, $prime); - if (!$r) { - return count($value) == 1 && $value[0] == $prime; - } - } - } - - $n = $this->copy(); - $n_1 = $n->subtract($one); - $n_2 = $n->subtract($two); - - $r = $n_1->copy(); - $r_value = $r->value; - // ie. $s = gmp_scan1($n, 0) and $r = gmp_div_q($n, gmp_pow(gmp_init('2'), $s)); - if (MATH_BIGINTEGER_MODE == self::MODE_BCMATH) { - $s = 0; - // if $n was 1, $r would be 0 and this would be an infinite loop, hence our $this->equals($one) check earlier - while ($r->value[strlen($r->value) - 1] % 2 == 0) { - $r->value = bcdiv($r->value, '2', 0); - ++$s; - } - } else { - for ($i = 0, $r_length = count($r_value); $i < $r_length; ++$i) { - $temp = ~$r_value[$i] & 0xFFFFFF; - for ($j = 1; ($temp >> $j) & 1; ++$j) { - } - if ($j != 25) { - break; - } - } - $s = 26 * $i + $j; - $r->_rshift($s); - } - - for ($i = 0; $i < $t; ++$i) { - $a = $this->random($two, $n_2); - $y = $a->modPow($r, $n); - - if (!$y->equals($one) && !$y->equals($n_1)) { - for ($j = 1; $j < $s && !$y->equals($n_1); ++$j) { - $y = $y->modPow($two, $n); - if ($y->equals($one)) { - return false; - } - } - - if (!$y->equals($n_1)) { - return false; - } - } - } - return true; - } - - /** - * Logical Left Shift - * - * Shifts BigInteger's by $shift bits. - * - * @param int $shift - * @access private - */ - function _lshift($shift) - { - if ($shift == 0) { - return; - } - - $num_digits = (int) ($shift / self::$base); - $shift %= self::$base; - $shift = 1 << $shift; - - $carry = 0; - - for ($i = 0; $i < count($this->value); ++$i) { - $temp = $this->value[$i] * $shift + $carry; - $carry = self::$base === 26 ? intval($temp / 0x4000000) : ($temp >> 31); - $this->value[$i] = (int) ($temp - $carry * self::$baseFull); - } - - if ($carry) { - $this->value[count($this->value)] = $carry; - } - - while ($num_digits--) { - array_unshift($this->value, 0); - } - } - - /** - * Logical Right Shift - * - * Shifts BigInteger's by $shift bits. - * - * @param int $shift - * @access private - */ - function _rshift($shift) - { - if ($shift == 0) { - return; - } - - $num_digits = (int) ($shift / self::$base); - $shift %= self::$base; - $carry_shift = self::$base - $shift; - $carry_mask = (1 << $shift) - 1; - - if ($num_digits) { - $this->value = array_slice($this->value, $num_digits); - } - - $carry = 0; - - for ($i = count($this->value) - 1; $i >= 0; --$i) { - $temp = $this->value[$i] >> $shift | $carry; - $carry = ($this->value[$i] & $carry_mask) << $carry_shift; - $this->value[$i] = $temp; - } - - $this->value = $this->_trim($this->value); - } - - /** - * Normalize - * - * Removes leading zeros and truncates (if necessary) to maintain the appropriate precision - * - * @param \phpseclib\Math\BigInteger - * @return \phpseclib\Math\BigInteger - * @see self::_trim() - * @access private - */ - function _normalize($result) - { - $result->precision = $this->precision; - $result->bitmask = $this->bitmask; - - switch (MATH_BIGINTEGER_MODE) { - case self::MODE_GMP: - if ($this->bitmask !== false) { - $flip = gmp_cmp($result->value, gmp_init(0)) < 0; - if ($flip) { - $result->value = gmp_neg($result->value); - } - $result->value = gmp_and($result->value, $result->bitmask->value); - if ($flip) { - $result->value = gmp_neg($result->value); - } - } - - return $result; - case self::MODE_BCMATH: - if (!empty($result->bitmask->value)) { - $result->value = bcmod($result->value, $result->bitmask->value); - } - - return $result; - } - - $value = &$result->value; - - if (!count($value)) { - $result->is_negative = false; - return $result; - } - - $value = $this->_trim($value); - - if (!empty($result->bitmask->value)) { - $length = min(count($value), count($this->bitmask->value)); - $value = array_slice($value, 0, $length); - - for ($i = 0; $i < $length; ++$i) { - $value[$i] = $value[$i] & $this->bitmask->value[$i]; - } - } - - return $result; - } - - /** - * Trim - * - * Removes leading zeros - * - * @param array $value - * @return \phpseclib\Math\BigInteger - * @access private - */ - function _trim($value) - { - for ($i = count($value) - 1; $i >= 0; --$i) { - if ($value[$i]) { - break; - } - unset($value[$i]); - } - - return $value; - } - - /** - * Array Repeat - * - * @param $input Array - * @param $multiplier mixed - * @return array - * @access private - */ - function _array_repeat($input, $multiplier) - { - return ($multiplier) ? array_fill(0, $multiplier, $input) : array(); - } - - /** - * Logical Left Shift - * - * Shifts binary strings $shift bits, essentially multiplying by 2**$shift. - * - * @param $x String - * @param $shift Integer - * @return string - * @access private - */ - function _base256_lshift(&$x, $shift) - { - if ($shift == 0) { - return; - } - - $num_bytes = $shift >> 3; // eg. floor($shift/8) - $shift &= 7; // eg. $shift % 8 - - $carry = 0; - for ($i = strlen($x) - 1; $i >= 0; --$i) { - $temp = ord($x[$i]) << $shift | $carry; - $x[$i] = chr($temp); - $carry = $temp >> 8; - } - $carry = ($carry != 0) ? chr($carry) : ''; - $x = $carry . $x . str_repeat(chr(0), $num_bytes); - } - - /** - * Logical Right Shift - * - * Shifts binary strings $shift bits, essentially dividing by 2**$shift and returning the remainder. - * - * @param $x String - * @param $shift Integer - * @return string - * @access private - */ - function _base256_rshift(&$x, $shift) - { - if ($shift == 0) { - $x = ltrim($x, chr(0)); - return ''; - } - - $num_bytes = $shift >> 3; // eg. floor($shift/8) - $shift &= 7; // eg. $shift % 8 - - $remainder = ''; - if ($num_bytes) { - $start = $num_bytes > strlen($x) ? -strlen($x) : -$num_bytes; - $remainder = substr($x, $start); - $x = substr($x, 0, -$num_bytes); - } - - $carry = 0; - $carry_shift = 8 - $shift; - for ($i = 0; $i < strlen($x); ++$i) { - $temp = (ord($x[$i]) >> $shift) | $carry; - $carry = (ord($x[$i]) << $carry_shift) & 0xFF; - $x[$i] = chr($temp); - } - $x = ltrim($x, chr(0)); - - $remainder = chr($carry >> $carry_shift) . $remainder; - - return ltrim($remainder, chr(0)); - } - - // one quirk about how the following functions are implemented is that PHP defines N to be an unsigned long - // at 32-bits, while java's longs are 64-bits. - - /** - * Converts 32-bit integers to bytes. - * - * @param int $x - * @return string - * @access private - */ - function _int2bytes($x) - { - return ltrim(pack('N', $x), chr(0)); - } - - /** - * Converts bytes to 32-bit integers - * - * @param string $x - * @return int - * @access private - */ - function _bytes2int($x) - { - $temp = unpack('Nint', str_pad($x, 4, chr(0), STR_PAD_LEFT)); - return $temp['int']; - } - - /** - * DER-encode an integer - * - * The ability to DER-encode integers is needed to create RSA public keys for use with OpenSSL - * - * @see self::modPow() - * @access private - * @param int $length - * @return string - */ - function _encodeASN1Length($length) - { - if ($length <= 0x7F) { - return chr($length); - } - - $temp = ltrim(pack('N', $length), chr(0)); - return pack('Ca*', 0x80 | strlen($temp), $temp); - } - - /** - * Single digit division - * - * Even if int64 is being used the division operator will return a float64 value - * if the dividend is not evenly divisible by the divisor. Since a float64 doesn't - * have the precision of int64 this is a problem so, when int64 is being used, - * we'll guarantee that the dividend is divisible by first subtracting the remainder. - * - * @access private - * @param int $x - * @param int $y - * @return int - */ - function _safe_divide($x, $y) - { - if (self::$base === 26) { - return (int) ($x / $y); - } - - // self::$base === 31 - return ($x - ($x % $y)) / $y; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/Net/SCP.php b/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/Net/SCP.php deleted file mode 100644 index cf13496c..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/Net/SCP.php +++ /dev/null @@ -1,342 +0,0 @@ - - * login('username', 'password')) { - * exit('bad login'); - * } - * $scp = new \phpseclib\Net\SCP($ssh); - * - * $scp->put('abcd', str_repeat('x', 1024*1024)); - * ?> - * - * - * @category Net - * @package SCP - * @author Jim Wigginton - * @copyright 2010 Jim Wigginton - * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @link http://phpseclib.sourceforge.net - */ - -namespace phpseclib\Net; - -/** - * Pure-PHP implementations of SCP. - * - * @package SCP - * @author Jim Wigginton - * @access public - */ -class SCP -{ - /**#@+ - * @access public - * @see \phpseclib\Net\SCP::put() - */ - /** - * Reads data from a local file. - */ - const SOURCE_LOCAL_FILE = 1; - /** - * Reads data from a string. - */ - const SOURCE_STRING = 2; - /**#@-*/ - - /**#@+ - * @access private - * @see \phpseclib\Net\SCP::_send() - * @see \phpseclib\Net\SCP::_receive() - */ - /** - * SSH1 is being used. - */ - const MODE_SSH1 = 1; - /** - * SSH2 is being used. - */ - const MODE_SSH2 = 2; - /**#@-*/ - - /** - * SSH Object - * - * @var object - * @access private - */ - var $ssh; - - /** - * Packet Size - * - * @var int - * @access private - */ - var $packet_size; - - /** - * Mode - * - * @var int - * @access private - */ - var $mode; - - /** - * Default Constructor. - * - * Connects to an SSH server - * - * @param \phpseclib\Net\SSH1|\phpseclib\Net\SSH2 $ssh - * @return \phpseclib\Net\SCP - * @access public - */ - function __construct($ssh) - { - if ($ssh instanceof SSH2) { - $this->mode = self::MODE_SSH2; - } elseif ($ssh instanceof SSH1) { - $this->packet_size = 50000; - $this->mode = self::MODE_SSH1; - } else { - return; - } - - $this->ssh = $ssh; - } - - /** - * Uploads a file to the SCP server. - * - * By default, \phpseclib\Net\SCP::put() does not read from the local filesystem. $data is dumped directly into $remote_file. - * So, for example, if you set $data to 'filename.ext' and then do \phpseclib\Net\SCP::get(), you will get a file, twelve bytes - * long, containing 'filename.ext' as its contents. - * - * Setting $mode to self::SOURCE_LOCAL_FILE will change the above behavior. With self::SOURCE_LOCAL_FILE, $remote_file will - * contain as many bytes as filename.ext does on your local filesystem. If your filename.ext is 1MB then that is how - * large $remote_file will be, as well. - * - * Currently, only binary mode is supported. As such, if the line endings need to be adjusted, you will need to take - * care of that, yourself. - * - * @param string $remote_file - * @param string $data - * @param int $mode - * @param callable $callback - * @return bool - * @access public - */ - function put($remote_file, $data, $mode = self::SOURCE_STRING, $callback = null) - { - if (!isset($this->ssh)) { - return false; - } - - if (empty($remote_file)) { - user_error('remote_file cannot be blank', E_USER_NOTICE); - return false; - } - - if (!$this->ssh->exec('scp -t ' . escapeshellarg($remote_file), false)) { // -t = to - return false; - } - - $temp = $this->_receive(); - if ($temp !== chr(0)) { - return false; - } - - if ($this->mode == self::MODE_SSH2) { - $this->packet_size = $this->ssh->packet_size_client_to_server[SSH2::CHANNEL_EXEC] - 4; - } - - $remote_file = basename($remote_file); - - if ($mode == self::SOURCE_STRING) { - $size = strlen($data); - } else { - if (!is_file($data)) { - user_error("$data is not a valid file", E_USER_NOTICE); - return false; - } - - $fp = @fopen($data, 'rb'); - if (!$fp) { - return false; - } - $size = filesize($data); - } - - $this->_send('C0644 ' . $size . ' ' . $remote_file . "\n"); - - $temp = $this->_receive(); - if ($temp !== chr(0)) { - return false; - } - - $sent = 0; - while ($sent < $size) { - $temp = $mode & self::SOURCE_STRING ? substr($data, $sent, $this->packet_size) : fread($fp, $this->packet_size); - $this->_send($temp); - $sent+= strlen($temp); - - if (is_callable($callback)) { - call_user_func($callback, $sent); - } - } - $this->_close(); - - if ($mode != self::SOURCE_STRING) { - fclose($fp); - } - - return true; - } - - /** - * Downloads a file from the SCP server. - * - * Returns a string containing the contents of $remote_file if $local_file is left undefined or a boolean false if - * the operation was unsuccessful. If $local_file is defined, returns true or false depending on the success of the - * operation - * - * @param string $remote_file - * @param string $local_file - * @return mixed - * @access public - */ - function get($remote_file, $local_file = false) - { - if (!isset($this->ssh)) { - return false; - } - - if (!$this->ssh->exec('scp -f ' . escapeshellarg($remote_file), false)) { // -f = from - return false; - } - - $this->_send("\0"); - - if (!preg_match('#(?[^ ]+) (?\d+) (?.+)#', rtrim($this->_receive()), $info)) { - return false; - } - - $this->_send("\0"); - - $size = 0; - - if ($local_file !== false) { - $fp = @fopen($local_file, 'wb'); - if (!$fp) { - return false; - } - } - - $content = ''; - while ($size < $info['size']) { - $data = $this->_receive(); - // SCP usually seems to split stuff out into 16k chunks - $size+= strlen($data); - - if ($local_file === false) { - $content.= $data; - } else { - fputs($fp, $data); - } - } - - $this->_close(); - - if ($local_file !== false) { - fclose($fp); - return true; - } - - return $content; - } - - /** - * Sends a packet to an SSH server - * - * @param string $data - * @access private - */ - function _send($data) - { - switch ($this->mode) { - case self::MODE_SSH2: - $this->ssh->_send_channel_packet(SSH2::CHANNEL_EXEC, $data); - break; - case self::MODE_SSH1: - $data = pack('CNa*', NET_SSH1_CMSG_STDIN_DATA, strlen($data), $data); - $this->ssh->_send_binary_packet($data); - } - } - - /** - * Receives a packet from an SSH server - * - * @return string - * @access private - */ - function _receive() - { - switch ($this->mode) { - case self::MODE_SSH2: - return $this->ssh->_get_channel_packet(SSH2::CHANNEL_EXEC, true); - case self::MODE_SSH1: - if (!$this->ssh->bitmap) { - return false; - } - while (true) { - $response = $this->ssh->_get_binary_packet(); - switch ($response[SSH1::RESPONSE_TYPE]) { - case NET_SSH1_SMSG_STDOUT_DATA: - if (strlen($response[SSH1::RESPONSE_DATA]) < 4) { - return false; - } - extract(unpack('Nlength', $response[SSH1::RESPONSE_DATA])); - return $this->ssh->_string_shift($response[SSH1::RESPONSE_DATA], $length); - case NET_SSH1_SMSG_STDERR_DATA: - break; - case NET_SSH1_SMSG_EXITSTATUS: - $this->ssh->_send_binary_packet(chr(NET_SSH1_CMSG_EXIT_CONFIRMATION)); - fclose($this->ssh->fsock); - $this->ssh->bitmap = 0; - return false; - default: - user_error('Unknown packet received', E_USER_NOTICE); - return false; - } - } - } - } - - /** - * Closes the connection to an SSH server - * - * @access private - */ - function _close() - { - switch ($this->mode) { - case self::MODE_SSH2: - $this->ssh->_close_channel(SSH2::CHANNEL_EXEC, true); - break; - case self::MODE_SSH1: - $this->ssh->disconnect(); - } - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP.php b/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP.php deleted file mode 100644 index bc16ea15..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP.php +++ /dev/null @@ -1,3171 +0,0 @@ - - * login('username', 'password')) { - * exit('Login Failed'); - * } - * - * echo $sftp->pwd() . "\r\n"; - * $sftp->put('filename.ext', 'hello, world!'); - * print_r($sftp->nlist()); - * ?> - * - * - * @category Net - * @package SFTP - * @author Jim Wigginton - * @copyright 2009 Jim Wigginton - * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @link http://phpseclib.sourceforge.net - */ - -namespace phpseclib\Net; - -/** - * Pure-PHP implementations of SFTP. - * - * @package SFTP - * @author Jim Wigginton - * @access public - */ -class SFTP extends SSH2 -{ - /** - * SFTP channel constant - * - * \phpseclib\Net\SSH2::exec() uses 0 and \phpseclib\Net\SSH2::read() / \phpseclib\Net\SSH2::write() use 1. - * - * @see \phpseclib\Net\SSH2::_send_channel_packet() - * @see \phpseclib\Net\SSH2::_get_channel_packet() - * @access private - */ - const CHANNEL = 0x100; - - /**#@+ - * @access public - * @see \phpseclib\Net\SFTP::put() - */ - /** - * Reads data from a local file. - */ - const SOURCE_LOCAL_FILE = 1; - /** - * Reads data from a string. - */ - // this value isn't really used anymore but i'm keeping it reserved for historical reasons - const SOURCE_STRING = 2; - /** - * Reads data from callback: - * function callback($length) returns string to proceed, null for EOF - */ - const SOURCE_CALLBACK = 16; - /** - * Resumes an upload - */ - const RESUME = 4; - /** - * Append a local file to an already existing remote file - */ - const RESUME_START = 8; - /**#@-*/ - - /** - * Packet Types - * - * @see self::__construct() - * @var array - * @access private - */ - var $packet_types = array(); - - /** - * Status Codes - * - * @see self::__construct() - * @var array - * @access private - */ - var $status_codes = array(); - - /** - * The Request ID - * - * The request ID exists in the off chance that a packet is sent out-of-order. Of course, this library doesn't support - * concurrent actions, so it's somewhat academic, here. - * - * @var boolean - * @see self::_send_sftp_packet() - * @access private - */ - var $use_request_id = false; - - /** - * The Packet Type - * - * The request ID exists in the off chance that a packet is sent out-of-order. Of course, this library doesn't support - * concurrent actions, so it's somewhat academic, here. - * - * @var int - * @see self::_get_sftp_packet() - * @access private - */ - var $packet_type = -1; - - /** - * Packet Buffer - * - * @var string - * @see self::_get_sftp_packet() - * @access private - */ - var $packet_buffer = ''; - - /** - * Extensions supported by the server - * - * @var array - * @see self::_initChannel() - * @access private - */ - var $extensions = array(); - - /** - * Server SFTP version - * - * @var int - * @see self::_initChannel() - * @access private - */ - var $version; - - /** - * Current working directory - * - * @var string - * @see self::realpath() - * @see self::chdir() - * @access private - */ - var $pwd = false; - - /** - * Packet Type Log - * - * @see self::getLog() - * @var array - * @access private - */ - var $packet_type_log = array(); - - /** - * Packet Log - * - * @see self::getLog() - * @var array - * @access private - */ - var $packet_log = array(); - - /** - * Error information - * - * @see self::getSFTPErrors() - * @see self::getLastSFTPError() - * @var array - * @access private - */ - var $sftp_errors = array(); - - /** - * Stat Cache - * - * Rather than always having to open a directory and close it immediately there after to see if a file is a directory - * we'll cache the results. - * - * @see self::_update_stat_cache() - * @see self::_remove_from_stat_cache() - * @see self::_query_stat_cache() - * @var array - * @access private - */ - var $stat_cache = array(); - - /** - * Max SFTP Packet Size - * - * @see self::__construct() - * @see self::get() - * @var array - * @access private - */ - var $max_sftp_packet; - - /** - * Stat Cache Flag - * - * @see self::disableStatCache() - * @see self::enableStatCache() - * @var bool - * @access private - */ - var $use_stat_cache = true; - - /** - * Sort Options - * - * @see self::_comparator() - * @see self::setListOrder() - * @var array - * @access private - */ - var $sortOptions = array(); - - /** - * Canonicalization Flag - * - * Determines whether or not paths should be canonicalized before being - * passed on to the remote server. - * - * @see self::enablePathCanonicalization() - * @see self::disablePathCanonicalization() - * @see self::realpath() - * @var bool - * @access private - */ - var $canonicalize_paths = true; - - /** - * Request Buffers - * - * @see self::_get_sftp_packet() - * @var array - * @access private - */ - var $requestBuffer = array(); - - /** - * Default Constructor. - * - * Connects to an SFTP server - * - * @param string $host - * @param int $port - * @param int $timeout - * @return \phpseclib\Net\SFTP - * @access public - */ - function __construct($host, $port = 22, $timeout = 10) - { - parent::__construct($host, $port, $timeout); - - $this->max_sftp_packet = 1 << 15; - - $this->packet_types = array( - 1 => 'NET_SFTP_INIT', - 2 => 'NET_SFTP_VERSION', - /* the format of SSH_FXP_OPEN changed between SFTPv4 and SFTPv5+: - SFTPv5+: http://tools.ietf.org/html/draft-ietf-secsh-filexfer-13#section-8.1.1 - pre-SFTPv5 : http://tools.ietf.org/html/draft-ietf-secsh-filexfer-04#section-6.3 */ - 3 => 'NET_SFTP_OPEN', - 4 => 'NET_SFTP_CLOSE', - 5 => 'NET_SFTP_READ', - 6 => 'NET_SFTP_WRITE', - 7 => 'NET_SFTP_LSTAT', - 9 => 'NET_SFTP_SETSTAT', - 11 => 'NET_SFTP_OPENDIR', - 12 => 'NET_SFTP_READDIR', - 13 => 'NET_SFTP_REMOVE', - 14 => 'NET_SFTP_MKDIR', - 15 => 'NET_SFTP_RMDIR', - 16 => 'NET_SFTP_REALPATH', - 17 => 'NET_SFTP_STAT', - /* the format of SSH_FXP_RENAME changed between SFTPv4 and SFTPv5+: - SFTPv5+: http://tools.ietf.org/html/draft-ietf-secsh-filexfer-13#section-8.3 - pre-SFTPv5 : http://tools.ietf.org/html/draft-ietf-secsh-filexfer-04#section-6.5 */ - 18 => 'NET_SFTP_RENAME', - 19 => 'NET_SFTP_READLINK', - 20 => 'NET_SFTP_SYMLINK', - - 101=> 'NET_SFTP_STATUS', - 102=> 'NET_SFTP_HANDLE', - /* the format of SSH_FXP_NAME changed between SFTPv3 and SFTPv4+: - SFTPv4+: http://tools.ietf.org/html/draft-ietf-secsh-filexfer-13#section-9.4 - pre-SFTPv4 : http://tools.ietf.org/html/draft-ietf-secsh-filexfer-02#section-7 */ - 103=> 'NET_SFTP_DATA', - 104=> 'NET_SFTP_NAME', - 105=> 'NET_SFTP_ATTRS', - - 200=> 'NET_SFTP_EXTENDED' - ); - $this->status_codes = array( - 0 => 'NET_SFTP_STATUS_OK', - 1 => 'NET_SFTP_STATUS_EOF', - 2 => 'NET_SFTP_STATUS_NO_SUCH_FILE', - 3 => 'NET_SFTP_STATUS_PERMISSION_DENIED', - 4 => 'NET_SFTP_STATUS_FAILURE', - 5 => 'NET_SFTP_STATUS_BAD_MESSAGE', - 6 => 'NET_SFTP_STATUS_NO_CONNECTION', - 7 => 'NET_SFTP_STATUS_CONNECTION_LOST', - 8 => 'NET_SFTP_STATUS_OP_UNSUPPORTED', - 9 => 'NET_SFTP_STATUS_INVALID_HANDLE', - 10 => 'NET_SFTP_STATUS_NO_SUCH_PATH', - 11 => 'NET_SFTP_STATUS_FILE_ALREADY_EXISTS', - 12 => 'NET_SFTP_STATUS_WRITE_PROTECT', - 13 => 'NET_SFTP_STATUS_NO_MEDIA', - 14 => 'NET_SFTP_STATUS_NO_SPACE_ON_FILESYSTEM', - 15 => 'NET_SFTP_STATUS_QUOTA_EXCEEDED', - 16 => 'NET_SFTP_STATUS_UNKNOWN_PRINCIPAL', - 17 => 'NET_SFTP_STATUS_LOCK_CONFLICT', - 18 => 'NET_SFTP_STATUS_DIR_NOT_EMPTY', - 19 => 'NET_SFTP_STATUS_NOT_A_DIRECTORY', - 20 => 'NET_SFTP_STATUS_INVALID_FILENAME', - 21 => 'NET_SFTP_STATUS_LINK_LOOP', - 22 => 'NET_SFTP_STATUS_CANNOT_DELETE', - 23 => 'NET_SFTP_STATUS_INVALID_PARAMETER', - 24 => 'NET_SFTP_STATUS_FILE_IS_A_DIRECTORY', - 25 => 'NET_SFTP_STATUS_BYTE_RANGE_LOCK_CONFLICT', - 26 => 'NET_SFTP_STATUS_BYTE_RANGE_LOCK_REFUSED', - 27 => 'NET_SFTP_STATUS_DELETE_PENDING', - 28 => 'NET_SFTP_STATUS_FILE_CORRUPT', - 29 => 'NET_SFTP_STATUS_OWNER_INVALID', - 30 => 'NET_SFTP_STATUS_GROUP_INVALID', - 31 => 'NET_SFTP_STATUS_NO_MATCHING_BYTE_RANGE_LOCK' - ); - // http://tools.ietf.org/html/draft-ietf-secsh-filexfer-13#section-7.1 - // the order, in this case, matters quite a lot - see \phpseclib\Net\SFTP::_parseAttributes() to understand why - $this->attributes = array( - 0x00000001 => 'NET_SFTP_ATTR_SIZE', - 0x00000002 => 'NET_SFTP_ATTR_UIDGID', // defined in SFTPv3, removed in SFTPv4+ - 0x00000004 => 'NET_SFTP_ATTR_PERMISSIONS', - 0x00000008 => 'NET_SFTP_ATTR_ACCESSTIME', - // 0x80000000 will yield a floating point on 32-bit systems and converting floating points to integers - // yields inconsistent behavior depending on how php is compiled. so we left shift -1 (which, in - // two's compliment, consists of all 1 bits) by 31. on 64-bit systems this'll yield 0xFFFFFFFF80000000. - // that's not a problem, however, and 'anded' and a 32-bit number, as all the leading 1 bits are ignored. - (-1 << 31) & 0xFFFFFFFF => 'NET_SFTP_ATTR_EXTENDED' - ); - // http://tools.ietf.org/html/draft-ietf-secsh-filexfer-04#section-6.3 - // the flag definitions change somewhat in SFTPv5+. if SFTPv5+ support is added to this library, maybe name - // the array for that $this->open5_flags and similarly alter the constant names. - $this->open_flags = array( - 0x00000001 => 'NET_SFTP_OPEN_READ', - 0x00000002 => 'NET_SFTP_OPEN_WRITE', - 0x00000004 => 'NET_SFTP_OPEN_APPEND', - 0x00000008 => 'NET_SFTP_OPEN_CREATE', - 0x00000010 => 'NET_SFTP_OPEN_TRUNCATE', - 0x00000020 => 'NET_SFTP_OPEN_EXCL' - ); - // http://tools.ietf.org/html/draft-ietf-secsh-filexfer-04#section-5.2 - // see \phpseclib\Net\SFTP::_parseLongname() for an explanation - $this->file_types = array( - 1 => 'NET_SFTP_TYPE_REGULAR', - 2 => 'NET_SFTP_TYPE_DIRECTORY', - 3 => 'NET_SFTP_TYPE_SYMLINK', - 4 => 'NET_SFTP_TYPE_SPECIAL', - 5 => 'NET_SFTP_TYPE_UNKNOWN', - // the followin types were first defined for use in SFTPv5+ - // http://tools.ietf.org/html/draft-ietf-secsh-filexfer-05#section-5.2 - 6 => 'NET_SFTP_TYPE_SOCKET', - 7 => 'NET_SFTP_TYPE_CHAR_DEVICE', - 8 => 'NET_SFTP_TYPE_BLOCK_DEVICE', - 9 => 'NET_SFTP_TYPE_FIFO' - ); - $this->_define_array( - $this->packet_types, - $this->status_codes, - $this->attributes, - $this->open_flags, - $this->file_types - ); - - if (!defined('NET_SFTP_QUEUE_SIZE')) { - define('NET_SFTP_QUEUE_SIZE', 32); - } - if (!defined('NET_SFTP_UPLOAD_QUEUE_SIZE')) { - define('NET_SFTP_UPLOAD_QUEUE_SIZE', 1024); - } - } - - /** - * Login - * - * @param string $username - * @param string $password - * @return bool - * @access public - */ - function login($username) - { - if (!call_user_func_array(array(&$this, 'parent::login'), func_get_args())) { - return false; - } - - $this->window_size_server_to_client[self::CHANNEL] = $this->window_size; - - $packet = pack( - 'CNa*N3', - NET_SSH2_MSG_CHANNEL_OPEN, - strlen('session'), - 'session', - self::CHANNEL, - $this->window_size, - 0x4000 - ); - - if (!$this->_send_binary_packet($packet)) { - return false; - } - - $this->channel_status[self::CHANNEL] = NET_SSH2_MSG_CHANNEL_OPEN; - - $response = $this->_get_channel_packet(self::CHANNEL, true); - if ($response === false) { - return false; - } - - $packet = pack( - 'CNNa*CNa*', - NET_SSH2_MSG_CHANNEL_REQUEST, - $this->server_channels[self::CHANNEL], - strlen('subsystem'), - 'subsystem', - 1, - strlen('sftp'), - 'sftp' - ); - if (!$this->_send_binary_packet($packet)) { - return false; - } - - $this->channel_status[self::CHANNEL] = NET_SSH2_MSG_CHANNEL_REQUEST; - - $response = $this->_get_channel_packet(self::CHANNEL, true); - if ($response === false) { - // from PuTTY's psftp.exe - $command = "test -x /usr/lib/sftp-server && exec /usr/lib/sftp-server\n" . - "test -x /usr/local/lib/sftp-server && exec /usr/local/lib/sftp-server\n" . - "exec sftp-server"; - // we don't do $this->exec($command, false) because exec() operates on a different channel and plus the SSH_MSG_CHANNEL_OPEN that exec() does - // is redundant - $packet = pack( - 'CNNa*CNa*', - NET_SSH2_MSG_CHANNEL_REQUEST, - $this->server_channels[self::CHANNEL], - strlen('exec'), - 'exec', - 1, - strlen($command), - $command - ); - if (!$this->_send_binary_packet($packet)) { - return false; - } - - $this->channel_status[self::CHANNEL] = NET_SSH2_MSG_CHANNEL_REQUEST; - - $response = $this->_get_channel_packet(self::CHANNEL, true); - if ($response === false) { - return false; - } - } - - $this->channel_status[self::CHANNEL] = NET_SSH2_MSG_CHANNEL_DATA; - - if (!$this->_send_sftp_packet(NET_SFTP_INIT, "\0\0\0\3")) { - return false; - } - - $response = $this->_get_sftp_packet(); - if ($this->packet_type != NET_SFTP_VERSION) { - user_error('Expected SSH_FXP_VERSION'); - return false; - } - - if (strlen($response) < 4) { - return false; - } - extract(unpack('Nversion', $this->_string_shift($response, 4))); - $this->version = $version; - while (!empty($response)) { - if (strlen($response) < 4) { - return false; - } - extract(unpack('Nlength', $this->_string_shift($response, 4))); - $key = $this->_string_shift($response, $length); - if (strlen($response) < 4) { - return false; - } - extract(unpack('Nlength', $this->_string_shift($response, 4))); - $value = $this->_string_shift($response, $length); - $this->extensions[$key] = $value; - } - - /* - SFTPv4+ defines a 'newline' extension. SFTPv3 seems to have unofficial support for it via 'newline@vandyke.com', - however, I'm not sure what 'newline@vandyke.com' is supposed to do (the fact that it's unofficial means that it's - not in the official SFTPv3 specs) and 'newline@vandyke.com' / 'newline' are likely not drop-in substitutes for - one another due to the fact that 'newline' comes with a SSH_FXF_TEXT bitmask whereas it seems unlikely that - 'newline@vandyke.com' would. - */ - /* - if (isset($this->extensions['newline@vandyke.com'])) { - $this->extensions['newline'] = $this->extensions['newline@vandyke.com']; - unset($this->extensions['newline@vandyke.com']); - } - */ - - $this->use_request_id = true; - - /* - A Note on SFTPv4/5/6 support: - states the following: - - "If the client wishes to interoperate with servers that support noncontiguous version - numbers it SHOULD send '3'" - - Given that the server only sends its version number after the client has already done so, the above - seems to be suggesting that v3 should be the default version. This makes sense given that v3 is the - most popular. - - states the following; - - "If the server did not send the "versions" extension, or the version-from-list was not included, the - server MAY send a status response describing the failure, but MUST then close the channel without - processing any further requests." - - So what do you do if you have a client whose initial SSH_FXP_INIT packet says it implements v3 and - a server whose initial SSH_FXP_VERSION reply says it implements v4 and only v4? If it only implements - v4, the "versions" extension is likely not going to have been sent so version re-negotiation as discussed - in draft-ietf-secsh-filexfer-13 would be quite impossible. As such, what \phpseclib\Net\SFTP would do is close the - channel and reopen it with a new and updated SSH_FXP_INIT packet. - */ - switch ($this->version) { - case 2: - case 3: - break; - default: - return false; - } - - $this->pwd = $this->_realpath('.'); - - $this->_update_stat_cache($this->pwd, array()); - - return true; - } - - /** - * Disable the stat cache - * - * @access public - */ - function disableStatCache() - { - $this->use_stat_cache = false; - } - - /** - * Enable the stat cache - * - * @access public - */ - function enableStatCache() - { - $this->use_stat_cache = true; - } - - /** - * Clear the stat cache - * - * @access public - */ - function clearStatCache() - { - $this->stat_cache = array(); - } - - /** - * Enable path canonicalization - * - * @access public - */ - function enablePathCanonicalization() - { - $this->canonicalize_paths = true; - } - - /** - * Enable path canonicalization - * - * @access public - */ - function disablePathCanonicalization() - { - $this->canonicalize_paths = false; - } - - /** - * Returns the current directory name - * - * @return mixed - * @access public - */ - function pwd() - { - return $this->pwd; - } - - /** - * Logs errors - * - * @param string $response - * @param int $status - * @access public - */ - function _logError($response, $status = -1) - { - if ($status == -1) { - if (strlen($response) < 4) { - return; - } - extract(unpack('Nstatus', $this->_string_shift($response, 4))); - } - - $error = $this->status_codes[$status]; - - if ($this->version > 2 || strlen($response) < 4) { - extract(unpack('Nlength', $this->_string_shift($response, 4))); - $this->sftp_errors[] = $error . ': ' . $this->_string_shift($response, $length); - } else { - $this->sftp_errors[] = $error; - } - } - - /** - * Returns canonicalized absolute pathname - * - * realpath() expands all symbolic links and resolves references to '/./', '/../' and extra '/' characters in the input - * path and returns the canonicalized absolute pathname. - * - * @param string $path - * @return mixed - * @access public - */ - function realpath($path) - { - return $this->_realpath($path); - } - - /** - * Canonicalize the Server-Side Path Name - * - * SFTP doesn't provide a mechanism by which the current working directory can be changed, so we'll emulate it. Returns - * the absolute (canonicalized) path. - * - * If canonicalize_paths has been disabled using disablePathCanonicalization(), $path is returned as-is. - * - * @see self::chdir() - * @see self::disablePathCanonicalization() - * @param string $path - * @return mixed - * @access private - */ - function _realpath($path) - { - if (!$this->canonicalize_paths) { - return $path; - } - - if ($this->pwd === false) { - // http://tools.ietf.org/html/draft-ietf-secsh-filexfer-13#section-8.9 - if (!$this->_send_sftp_packet(NET_SFTP_REALPATH, pack('Na*', strlen($path), $path))) { - return false; - } - - $response = $this->_get_sftp_packet(); - switch ($this->packet_type) { - case NET_SFTP_NAME: - // although SSH_FXP_NAME is implemented differently in SFTPv3 than it is in SFTPv4+, the following - // should work on all SFTP versions since the only part of the SSH_FXP_NAME packet the following looks - // at is the first part and that part is defined the same in SFTP versions 3 through 6. - $this->_string_shift($response, 4); // skip over the count - it should be 1, anyway - if (strlen($response) < 4) { - return false; - } - extract(unpack('Nlength', $this->_string_shift($response, 4))); - return $this->_string_shift($response, $length); - case NET_SFTP_STATUS: - $this->_logError($response); - return false; - default: - user_error('Expected SSH_FXP_NAME or SSH_FXP_STATUS'); - return false; - } - } - - if ($path[0] != '/') { - $path = $this->pwd . '/' . $path; - } - - $path = explode('/', $path); - $new = array(); - foreach ($path as $dir) { - if (!strlen($dir)) { - continue; - } - switch ($dir) { - case '..': - array_pop($new); - case '.': - break; - default: - $new[] = $dir; - } - } - - return '/' . implode('/', $new); - } - - /** - * Changes the current directory - * - * @param string $dir - * @return bool - * @access public - */ - function chdir($dir) - { - if (!($this->bitmap & SSH2::MASK_LOGIN)) { - return false; - } - - // assume current dir if $dir is empty - if ($dir === '') { - $dir = './'; - // suffix a slash if needed - } elseif ($dir[strlen($dir) - 1] != '/') { - $dir.= '/'; - } - - $dir = $this->_realpath($dir); - - // confirm that $dir is, in fact, a valid directory - if ($this->use_stat_cache && is_array($this->_query_stat_cache($dir))) { - $this->pwd = $dir; - return true; - } - - // we could do a stat on the alleged $dir to see if it's a directory but that doesn't tell us - // the currently logged in user has the appropriate permissions or not. maybe you could see if - // the file's uid / gid match the currently logged in user's uid / gid but how there's no easy - // way to get those with SFTP - - if (!$this->_send_sftp_packet(NET_SFTP_OPENDIR, pack('Na*', strlen($dir), $dir))) { - return false; - } - - // see \phpseclib\Net\SFTP::nlist() for a more thorough explanation of the following - $response = $this->_get_sftp_packet(); - switch ($this->packet_type) { - case NET_SFTP_HANDLE: - $handle = substr($response, 4); - break; - case NET_SFTP_STATUS: - $this->_logError($response); - return false; - default: - user_error('Expected SSH_FXP_HANDLE or SSH_FXP_STATUS'); - return false; - } - - if (!$this->_close_handle($handle)) { - return false; - } - - $this->_update_stat_cache($dir, array()); - - $this->pwd = $dir; - return true; - } - - /** - * Returns a list of files in the given directory - * - * @param string $dir - * @param bool $recursive - * @return mixed - * @access public - */ - function nlist($dir = '.', $recursive = false) - { - return $this->_nlist_helper($dir, $recursive, ''); - } - - /** - * Helper method for nlist - * - * @param string $dir - * @param bool $recursive - * @param string $relativeDir - * @return mixed - * @access private - */ - function _nlist_helper($dir, $recursive, $relativeDir) - { - $files = $this->_list($dir, false); - - if (!$recursive || $files === false) { - return $files; - } - - $result = array(); - foreach ($files as $value) { - if ($value == '.' || $value == '..') { - if ($relativeDir == '') { - $result[] = $value; - } - continue; - } - if (is_array($this->_query_stat_cache($this->_realpath($dir . '/' . $value)))) { - $temp = $this->_nlist_helper($dir . '/' . $value, true, $relativeDir . $value . '/'); - $temp = is_array($temp) ? $temp : array(); - $result = array_merge($result, $temp); - } else { - $result[] = $relativeDir . $value; - } - } - - return $result; - } - - /** - * Returns a detailed list of files in the given directory - * - * @param string $dir - * @param bool $recursive - * @return mixed - * @access public - */ - function rawlist($dir = '.', $recursive = false) - { - $files = $this->_list($dir, true); - if (!$recursive || $files === false) { - return $files; - } - - static $depth = 0; - - foreach ($files as $key => $value) { - if ($depth != 0 && $key == '..') { - unset($files[$key]); - continue; - } - $is_directory = false; - if ($key != '.' && $key != '..') { - if ($this->use_stat_cache) { - $is_directory = is_array($this->_query_stat_cache($this->_realpath($dir . '/' . $key))); - } else { - $stat = $this->lstat($dir . '/' . $key); - $is_directory = $stat && $stat['type'] === NET_SFTP_TYPE_DIRECTORY; - } - } - - if ($is_directory) { - $depth++; - $files[$key] = $this->rawlist($dir . '/' . $key, true); - $depth--; - } else { - $files[$key] = (object) $value; - } - } - - return $files; - } - - /** - * Reads a list, be it detailed or not, of files in the given directory - * - * @param string $dir - * @param bool $raw - * @return mixed - * @access private - */ - function _list($dir, $raw = true) - { - if (!($this->bitmap & SSH2::MASK_LOGIN)) { - return false; - } - - $dir = $this->_realpath($dir . '/'); - if ($dir === false) { - return false; - } - - // http://tools.ietf.org/html/draft-ietf-secsh-filexfer-13#section-8.1.2 - if (!$this->_send_sftp_packet(NET_SFTP_OPENDIR, pack('Na*', strlen($dir), $dir))) { - return false; - } - - $response = $this->_get_sftp_packet(); - switch ($this->packet_type) { - case NET_SFTP_HANDLE: - // http://tools.ietf.org/html/draft-ietf-secsh-filexfer-13#section-9.2 - // since 'handle' is the last field in the SSH_FXP_HANDLE packet, we'll just remove the first four bytes that - // represent the length of the string and leave it at that - $handle = substr($response, 4); - break; - case NET_SFTP_STATUS: - // presumably SSH_FX_NO_SUCH_FILE or SSH_FX_PERMISSION_DENIED - $this->_logError($response); - return false; - default: - user_error('Expected SSH_FXP_HANDLE or SSH_FXP_STATUS'); - return false; - } - - $this->_update_stat_cache($dir, array()); - - $contents = array(); - while (true) { - // http://tools.ietf.org/html/draft-ietf-secsh-filexfer-13#section-8.2.2 - // why multiple SSH_FXP_READDIR packets would be sent when the response to a single one can span arbitrarily many - // SSH_MSG_CHANNEL_DATA messages is not known to me. - if (!$this->_send_sftp_packet(NET_SFTP_READDIR, pack('Na*', strlen($handle), $handle))) { - return false; - } - - $response = $this->_get_sftp_packet(); - switch ($this->packet_type) { - case NET_SFTP_NAME: - if (strlen($response) < 4) { - return false; - } - extract(unpack('Ncount', $this->_string_shift($response, 4))); - for ($i = 0; $i < $count; $i++) { - if (strlen($response) < 4) { - return false; - } - extract(unpack('Nlength', $this->_string_shift($response, 4))); - $shortname = $this->_string_shift($response, $length); - if (strlen($response) < 4) { - return false; - } - extract(unpack('Nlength', $this->_string_shift($response, 4))); - $longname = $this->_string_shift($response, $length); - $attributes = $this->_parseAttributes($response); - if (!isset($attributes['type'])) { - $fileType = $this->_parseLongname($longname); - if ($fileType) { - $attributes['type'] = $fileType; - } - } - $contents[$shortname] = $attributes + array('filename' => $shortname); - - if (isset($attributes['type']) && $attributes['type'] == NET_SFTP_TYPE_DIRECTORY && ($shortname != '.' && $shortname != '..')) { - $this->_update_stat_cache($dir . '/' . $shortname, array()); - } else { - if ($shortname == '..') { - $temp = $this->_realpath($dir . '/..') . '/.'; - } else { - $temp = $dir . '/' . $shortname; - } - $this->_update_stat_cache($temp, (object) array('lstat' => $attributes)); - } - // SFTPv6 has an optional boolean end-of-list field, but we'll ignore that, since the - // final SSH_FXP_STATUS packet should tell us that, already. - } - break; - case NET_SFTP_STATUS: - if (strlen($response) < 4) { - return false; - } - extract(unpack('Nstatus', $this->_string_shift($response, 4))); - if ($status != NET_SFTP_STATUS_EOF) { - $this->_logError($response, $status); - return false; - } - break 2; - default: - user_error('Expected SSH_FXP_NAME or SSH_FXP_STATUS'); - return false; - } - } - - if (!$this->_close_handle($handle)) { - return false; - } - - if (count($this->sortOptions)) { - uasort($contents, array(&$this, '_comparator')); - } - - return $raw ? $contents : array_keys($contents); - } - - /** - * Compares two rawlist entries using parameters set by setListOrder() - * - * Intended for use with uasort() - * - * @param array $a - * @param array $b - * @return int - * @access private - */ - function _comparator($a, $b) - { - switch (true) { - case $a['filename'] === '.' || $b['filename'] === '.': - if ($a['filename'] === $b['filename']) { - return 0; - } - return $a['filename'] === '.' ? -1 : 1; - case $a['filename'] === '..' || $b['filename'] === '..': - if ($a['filename'] === $b['filename']) { - return 0; - } - return $a['filename'] === '..' ? -1 : 1; - case isset($a['type']) && $a['type'] === NET_SFTP_TYPE_DIRECTORY: - if (!isset($b['type'])) { - return 1; - } - if ($b['type'] !== $a['type']) { - return -1; - } - break; - case isset($b['type']) && $b['type'] === NET_SFTP_TYPE_DIRECTORY: - return 1; - } - foreach ($this->sortOptions as $sort => $order) { - if (!isset($a[$sort]) || !isset($b[$sort])) { - if (isset($a[$sort])) { - return -1; - } - if (isset($b[$sort])) { - return 1; - } - return 0; - } - switch ($sort) { - case 'filename': - $result = strcasecmp($a['filename'], $b['filename']); - if ($result) { - return $order === SORT_DESC ? -$result : $result; - } - break; - case 'permissions': - case 'mode': - $a[$sort]&= 07777; - $b[$sort]&= 07777; - default: - if ($a[$sort] === $b[$sort]) { - break; - } - return $order === SORT_ASC ? $a[$sort] - $b[$sort] : $b[$sort] - $a[$sort]; - } - } - } - - /** - * Defines how nlist() and rawlist() will be sorted - if at all. - * - * If sorting is enabled directories and files will be sorted independently with - * directories appearing before files in the resultant array that is returned. - * - * Any parameter returned by stat is a valid sort parameter for this function. - * Filename comparisons are case insensitive. - * - * Examples: - * - * $sftp->setListOrder('filename', SORT_ASC); - * $sftp->setListOrder('size', SORT_DESC, 'filename', SORT_ASC); - * $sftp->setListOrder(true); - * Separates directories from files but doesn't do any sorting beyond that - * $sftp->setListOrder(); - * Don't do any sort of sorting - * - * @access public - */ - function setListOrder() - { - $this->sortOptions = array(); - $args = func_get_args(); - if (empty($args)) { - return; - } - $len = count($args) & 0x7FFFFFFE; - for ($i = 0; $i < $len; $i+=2) { - $this->sortOptions[$args[$i]] = $args[$i + 1]; - } - if (!count($this->sortOptions)) { - $this->sortOptions = array('bogus' => true); - } - } - - /** - * Returns the file size, in bytes, or false, on failure - * - * Files larger than 4GB will show up as being exactly 4GB. - * - * @param string $filename - * @return mixed - * @access public - */ - function size($filename) - { - if (!($this->bitmap & SSH2::MASK_LOGIN)) { - return false; - } - - $result = $this->stat($filename); - if ($result === false) { - return false; - } - return isset($result['size']) ? $result['size'] : -1; - } - - /** - * Save files / directories to cache - * - * @param string $path - * @param mixed $value - * @access private - */ - function _update_stat_cache($path, $value) - { - if ($this->use_stat_cache === false) { - return; - } - - // preg_replace('#^/|/(?=/)|/$#', '', $dir) == str_replace('//', '/', trim($path, '/')) - $dirs = explode('/', preg_replace('#^/|/(?=/)|/$#', '', $path)); - - $temp = &$this->stat_cache; - $max = count($dirs) - 1; - foreach ($dirs as $i => $dir) { - // if $temp is an object that means one of two things. - // 1. a file was deleted and changed to a directory behind phpseclib's back - // 2. it's a symlink. when lstat is done it's unclear what it's a symlink to - if (is_object($temp)) { - $temp = array(); - } - if (!isset($temp[$dir])) { - $temp[$dir] = array(); - } - if ($i === $max) { - if (is_object($temp[$dir]) && is_object($value)) { - if (!isset($value->stat) && isset($temp[$dir]->stat)) { - $value->stat = $temp[$dir]->stat; - } - if (!isset($value->lstat) && isset($temp[$dir]->lstat)) { - $value->lstat = $temp[$dir]->lstat; - } - } - $temp[$dir] = $value; - break; - } - $temp = &$temp[$dir]; - } - } - - /** - * Remove files / directories from cache - * - * @param string $path - * @return bool - * @access private - */ - function _remove_from_stat_cache($path) - { - $dirs = explode('/', preg_replace('#^/|/(?=/)|/$#', '', $path)); - - $temp = &$this->stat_cache; - $max = count($dirs) - 1; - foreach ($dirs as $i => $dir) { - if ($i === $max) { - unset($temp[$dir]); - return true; - } - if (!isset($temp[$dir])) { - return false; - } - $temp = &$temp[$dir]; - } - } - - /** - * Checks cache for path - * - * Mainly used by file_exists - * - * @param string $dir - * @return mixed - * @access private - */ - function _query_stat_cache($path) - { - $dirs = explode('/', preg_replace('#^/|/(?=/)|/$#', '', $path)); - - $temp = &$this->stat_cache; - foreach ($dirs as $dir) { - if (!isset($temp[$dir])) { - return null; - } - $temp = &$temp[$dir]; - } - return $temp; - } - - /** - * Returns general information about a file. - * - * Returns an array on success and false otherwise. - * - * @param string $filename - * @return mixed - * @access public - */ - function stat($filename) - { - if (!($this->bitmap & SSH2::MASK_LOGIN)) { - return false; - } - - $filename = $this->_realpath($filename); - if ($filename === false) { - return false; - } - - if ($this->use_stat_cache) { - $result = $this->_query_stat_cache($filename); - if (is_array($result) && isset($result['.']) && isset($result['.']->stat)) { - return $result['.']->stat; - } - if (is_object($result) && isset($result->stat)) { - return $result->stat; - } - } - - $stat = $this->_stat($filename, NET_SFTP_STAT); - if ($stat === false) { - $this->_remove_from_stat_cache($filename); - return false; - } - if (isset($stat['type'])) { - if ($stat['type'] == NET_SFTP_TYPE_DIRECTORY) { - $filename.= '/.'; - } - $this->_update_stat_cache($filename, (object) array('stat' => $stat)); - return $stat; - } - - $pwd = $this->pwd; - $stat['type'] = $this->chdir($filename) ? - NET_SFTP_TYPE_DIRECTORY : - NET_SFTP_TYPE_REGULAR; - $this->pwd = $pwd; - - if ($stat['type'] == NET_SFTP_TYPE_DIRECTORY) { - $filename.= '/.'; - } - $this->_update_stat_cache($filename, (object) array('stat' => $stat)); - - return $stat; - } - - /** - * Returns general information about a file or symbolic link. - * - * Returns an array on success and false otherwise. - * - * @param string $filename - * @return mixed - * @access public - */ - function lstat($filename) - { - if (!($this->bitmap & SSH2::MASK_LOGIN)) { - return false; - } - - $filename = $this->_realpath($filename); - if ($filename === false) { - return false; - } - - if ($this->use_stat_cache) { - $result = $this->_query_stat_cache($filename); - if (is_array($result) && isset($result['.']) && isset($result['.']->lstat)) { - return $result['.']->lstat; - } - if (is_object($result) && isset($result->lstat)) { - return $result->lstat; - } - } - - $lstat = $this->_stat($filename, NET_SFTP_LSTAT); - if ($lstat === false) { - $this->_remove_from_stat_cache($filename); - return false; - } - if (isset($lstat['type'])) { - if ($lstat['type'] == NET_SFTP_TYPE_DIRECTORY) { - $filename.= '/.'; - } - $this->_update_stat_cache($filename, (object) array('lstat' => $lstat)); - return $lstat; - } - - $stat = $this->_stat($filename, NET_SFTP_STAT); - - if ($lstat != $stat) { - $lstat = array_merge($lstat, array('type' => NET_SFTP_TYPE_SYMLINK)); - $this->_update_stat_cache($filename, (object) array('lstat' => $lstat)); - return $stat; - } - - $pwd = $this->pwd; - $lstat['type'] = $this->chdir($filename) ? - NET_SFTP_TYPE_DIRECTORY : - NET_SFTP_TYPE_REGULAR; - $this->pwd = $pwd; - - if ($lstat['type'] == NET_SFTP_TYPE_DIRECTORY) { - $filename.= '/.'; - } - $this->_update_stat_cache($filename, (object) array('lstat' => $lstat)); - - return $lstat; - } - - /** - * Returns general information about a file or symbolic link - * - * Determines information without calling \phpseclib\Net\SFTP::realpath(). - * The second parameter can be either NET_SFTP_STAT or NET_SFTP_LSTAT. - * - * @param string $filename - * @param int $type - * @return mixed - * @access private - */ - function _stat($filename, $type) - { - // SFTPv4+ adds an additional 32-bit integer field - flags - to the following: - $packet = pack('Na*', strlen($filename), $filename); - if (!$this->_send_sftp_packet($type, $packet)) { - return false; - } - - $response = $this->_get_sftp_packet(); - switch ($this->packet_type) { - case NET_SFTP_ATTRS: - return $this->_parseAttributes($response); - case NET_SFTP_STATUS: - $this->_logError($response); - return false; - } - - user_error('Expected SSH_FXP_ATTRS or SSH_FXP_STATUS'); - return false; - } - - /** - * Truncates a file to a given length - * - * @param string $filename - * @param int $new_size - * @return bool - * @access public - */ - function truncate($filename, $new_size) - { - $attr = pack('N3', NET_SFTP_ATTR_SIZE, $new_size / 4294967296, $new_size); // 4294967296 == 0x100000000 == 1<<32 - - return $this->_setstat($filename, $attr, false); - } - - /** - * Sets access and modification time of file. - * - * If the file does not exist, it will be created. - * - * @param string $filename - * @param int $time - * @param int $atime - * @return bool - * @access public - */ - function touch($filename, $time = null, $atime = null) - { - if (!($this->bitmap & SSH2::MASK_LOGIN)) { - return false; - } - - $filename = $this->_realpath($filename); - if ($filename === false) { - return false; - } - - if (!isset($time)) { - $time = time(); - } - if (!isset($atime)) { - $atime = $time; - } - - $flags = NET_SFTP_OPEN_WRITE | NET_SFTP_OPEN_CREATE | NET_SFTP_OPEN_EXCL; - $attr = pack('N3', NET_SFTP_ATTR_ACCESSTIME, $time, $atime); - $packet = pack('Na*Na*', strlen($filename), $filename, $flags, $attr); - if (!$this->_send_sftp_packet(NET_SFTP_OPEN, $packet)) { - return false; - } - - $response = $this->_get_sftp_packet(); - switch ($this->packet_type) { - case NET_SFTP_HANDLE: - return $this->_close_handle(substr($response, 4)); - case NET_SFTP_STATUS: - $this->_logError($response); - break; - default: - user_error('Expected SSH_FXP_HANDLE or SSH_FXP_STATUS'); - return false; - } - - return $this->_setstat($filename, $attr, false); - } - - /** - * Changes file or directory owner - * - * Returns true on success or false on error. - * - * @param string $filename - * @param int $uid - * @param bool $recursive - * @return bool - * @access public - */ - function chown($filename, $uid, $recursive = false) - { - // quoting from , - // "if the owner or group is specified as -1, then that ID is not changed" - $attr = pack('N3', NET_SFTP_ATTR_UIDGID, $uid, -1); - - return $this->_setstat($filename, $attr, $recursive); - } - - /** - * Changes file or directory group - * - * Returns true on success or false on error. - * - * @param string $filename - * @param int $gid - * @param bool $recursive - * @return bool - * @access public - */ - function chgrp($filename, $gid, $recursive = false) - { - $attr = pack('N3', NET_SFTP_ATTR_UIDGID, -1, $gid); - - return $this->_setstat($filename, $attr, $recursive); - } - - /** - * Set permissions on a file. - * - * Returns the new file permissions on success or false on error. - * If $recursive is true than this just returns true or false. - * - * @param int $mode - * @param string $filename - * @param bool $recursive - * @return mixed - * @access public - */ - function chmod($mode, $filename, $recursive = false) - { - if (is_string($mode) && is_int($filename)) { - $temp = $mode; - $mode = $filename; - $filename = $temp; - } - - $attr = pack('N2', NET_SFTP_ATTR_PERMISSIONS, $mode & 07777); - if (!$this->_setstat($filename, $attr, $recursive)) { - return false; - } - if ($recursive) { - return true; - } - - $filename = $this->realpath($filename); - // rather than return what the permissions *should* be, we'll return what they actually are. this will also - // tell us if the file actually exists. - // incidentally, SFTPv4+ adds an additional 32-bit integer field - flags - to the following: - $packet = pack('Na*', strlen($filename), $filename); - if (!$this->_send_sftp_packet(NET_SFTP_STAT, $packet)) { - return false; - } - - $response = $this->_get_sftp_packet(); - switch ($this->packet_type) { - case NET_SFTP_ATTRS: - $attrs = $this->_parseAttributes($response); - return $attrs['permissions']; - case NET_SFTP_STATUS: - $this->_logError($response); - return false; - } - - user_error('Expected SSH_FXP_ATTRS or SSH_FXP_STATUS'); - return false; - } - - /** - * Sets information about a file - * - * @param string $filename - * @param string $attr - * @param bool $recursive - * @return bool - * @access private - */ - function _setstat($filename, $attr, $recursive) - { - if (!($this->bitmap & SSH2::MASK_LOGIN)) { - return false; - } - - $filename = $this->_realpath($filename); - if ($filename === false) { - return false; - } - - $this->_remove_from_stat_cache($filename); - - if ($recursive) { - $i = 0; - $result = $this->_setstat_recursive($filename, $attr, $i); - $this->_read_put_responses($i); - return $result; - } - - // SFTPv4+ has an additional byte field - type - that would need to be sent, as well. setting it to - // SSH_FILEXFER_TYPE_UNKNOWN might work. if not, we'd have to do an SSH_FXP_STAT before doing an SSH_FXP_SETSTAT. - if (!$this->_send_sftp_packet(NET_SFTP_SETSTAT, pack('Na*a*', strlen($filename), $filename, $attr))) { - return false; - } - - /* - "Because some systems must use separate system calls to set various attributes, it is possible that a failure - response will be returned, but yet some of the attributes may be have been successfully modified. If possible, - servers SHOULD avoid this situation; however, clients MUST be aware that this is possible." - - -- http://tools.ietf.org/html/draft-ietf-secsh-filexfer-13#section-8.6 - */ - $response = $this->_get_sftp_packet(); - if ($this->packet_type != NET_SFTP_STATUS) { - user_error('Expected SSH_FXP_STATUS'); - return false; - } - - if (strlen($response) < 4) { - return false; - } - extract(unpack('Nstatus', $this->_string_shift($response, 4))); - if ($status != NET_SFTP_STATUS_OK) { - $this->_logError($response, $status); - return false; - } - - return true; - } - - /** - * Recursively sets information on directories on the SFTP server - * - * Minimizes directory lookups and SSH_FXP_STATUS requests for speed. - * - * @param string $path - * @param string $attr - * @param int $i - * @return bool - * @access private - */ - function _setstat_recursive($path, $attr, &$i) - { - if (!$this->_read_put_responses($i)) { - return false; - } - $i = 0; - $entries = $this->_list($path, true); - - if ($entries === false) { - return $this->_setstat($path, $attr, false); - } - - // normally $entries would have at least . and .. but it might not if the directories - // permissions didn't allow reading - if (empty($entries)) { - return false; - } - - unset($entries['.'], $entries['..']); - foreach ($entries as $filename => $props) { - if (!isset($props['type'])) { - return false; - } - - $temp = $path . '/' . $filename; - if ($props['type'] == NET_SFTP_TYPE_DIRECTORY) { - if (!$this->_setstat_recursive($temp, $attr, $i)) { - return false; - } - } else { - if (!$this->_send_sftp_packet(NET_SFTP_SETSTAT, pack('Na*a*', strlen($temp), $temp, $attr))) { - return false; - } - - $i++; - - if ($i >= NET_SFTP_QUEUE_SIZE) { - if (!$this->_read_put_responses($i)) { - return false; - } - $i = 0; - } - } - } - - if (!$this->_send_sftp_packet(NET_SFTP_SETSTAT, pack('Na*a*', strlen($path), $path, $attr))) { - return false; - } - - $i++; - - if ($i >= NET_SFTP_QUEUE_SIZE) { - if (!$this->_read_put_responses($i)) { - return false; - } - $i = 0; - } - - return true; - } - - /** - * Return the target of a symbolic link - * - * @param string $link - * @return mixed - * @access public - */ - function readlink($link) - { - if (!($this->bitmap & SSH2::MASK_LOGIN)) { - return false; - } - - $link = $this->_realpath($link); - - if (!$this->_send_sftp_packet(NET_SFTP_READLINK, pack('Na*', strlen($link), $link))) { - return false; - } - - $response = $this->_get_sftp_packet(); - switch ($this->packet_type) { - case NET_SFTP_NAME: - break; - case NET_SFTP_STATUS: - $this->_logError($response); - return false; - default: - user_error('Expected SSH_FXP_NAME or SSH_FXP_STATUS'); - return false; - } - - if (strlen($response) < 4) { - return false; - } - extract(unpack('Ncount', $this->_string_shift($response, 4))); - // the file isn't a symlink - if (!$count) { - return false; - } - - if (strlen($response) < 4) { - return false; - } - extract(unpack('Nlength', $this->_string_shift($response, 4))); - return $this->_string_shift($response, $length); - } - - /** - * Create a symlink - * - * symlink() creates a symbolic link to the existing target with the specified name link. - * - * @param string $target - * @param string $link - * @return bool - * @access public - */ - function symlink($target, $link) - { - if (!($this->bitmap & SSH2::MASK_LOGIN)) { - return false; - } - - //$target = $this->_realpath($target); - $link = $this->_realpath($link); - - $packet = pack('Na*Na*', strlen($target), $target, strlen($link), $link); - if (!$this->_send_sftp_packet(NET_SFTP_SYMLINK, $packet)) { - return false; - } - - $response = $this->_get_sftp_packet(); - if ($this->packet_type != NET_SFTP_STATUS) { - user_error('Expected SSH_FXP_STATUS'); - return false; - } - - if (strlen($response) < 4) { - return false; - } - extract(unpack('Nstatus', $this->_string_shift($response, 4))); - if ($status != NET_SFTP_STATUS_OK) { - $this->_logError($response, $status); - return false; - } - - return true; - } - - /** - * Creates a directory. - * - * @param string $dir - * @return bool - * @access public - */ - function mkdir($dir, $mode = -1, $recursive = false) - { - if (!($this->bitmap & SSH2::MASK_LOGIN)) { - return false; - } - - $dir = $this->_realpath($dir); - // by not providing any permissions, hopefully the server will use the logged in users umask - their - // default permissions. - $attr = $mode == -1 ? "\0\0\0\0" : pack('N2', NET_SFTP_ATTR_PERMISSIONS, $mode & 07777); - - if ($recursive) { - $dirs = explode('/', preg_replace('#/(?=/)|/$#', '', $dir)); - if (empty($dirs[0])) { - array_shift($dirs); - $dirs[0] = '/' . $dirs[0]; - } - for ($i = 0; $i < count($dirs); $i++) { - $temp = array_slice($dirs, 0, $i + 1); - $temp = implode('/', $temp); - $result = $this->_mkdir_helper($temp, $attr); - } - return $result; - } - - return $this->_mkdir_helper($dir, $attr); - } - - /** - * Helper function for directory creation - * - * @param string $dir - * @return bool - * @access private - */ - function _mkdir_helper($dir, $attr) - { - if (!$this->_send_sftp_packet(NET_SFTP_MKDIR, pack('Na*a*', strlen($dir), $dir, $attr))) { - return false; - } - - $response = $this->_get_sftp_packet(); - if ($this->packet_type != NET_SFTP_STATUS) { - user_error('Expected SSH_FXP_STATUS'); - return false; - } - - if (strlen($response) < 4) { - return false; - } - extract(unpack('Nstatus', $this->_string_shift($response, 4))); - if ($status != NET_SFTP_STATUS_OK) { - $this->_logError($response, $status); - return false; - } - - return true; - } - - /** - * Removes a directory. - * - * @param string $dir - * @return bool - * @access public - */ - function rmdir($dir) - { - if (!($this->bitmap & SSH2::MASK_LOGIN)) { - return false; - } - - $dir = $this->_realpath($dir); - if ($dir === false) { - return false; - } - - if (!$this->_send_sftp_packet(NET_SFTP_RMDIR, pack('Na*', strlen($dir), $dir))) { - return false; - } - - $response = $this->_get_sftp_packet(); - if ($this->packet_type != NET_SFTP_STATUS) { - user_error('Expected SSH_FXP_STATUS'); - return false; - } - - if (strlen($response) < 4) { - return false; - } - extract(unpack('Nstatus', $this->_string_shift($response, 4))); - if ($status != NET_SFTP_STATUS_OK) { - // presumably SSH_FX_NO_SUCH_FILE or SSH_FX_PERMISSION_DENIED? - $this->_logError($response, $status); - return false; - } - - $this->_remove_from_stat_cache($dir); - // the following will do a soft delete, which would be useful if you deleted a file - // and then tried to do a stat on the deleted file. the above, in contrast, does - // a hard delete - //$this->_update_stat_cache($dir, false); - - return true; - } - - /** - * Uploads a file to the SFTP server. - * - * By default, \phpseclib\Net\SFTP::put() does not read from the local filesystem. $data is dumped directly into $remote_file. - * So, for example, if you set $data to 'filename.ext' and then do \phpseclib\Net\SFTP::get(), you will get a file, twelve bytes - * long, containing 'filename.ext' as its contents. - * - * Setting $mode to self::SOURCE_LOCAL_FILE will change the above behavior. With self::SOURCE_LOCAL_FILE, $remote_file will - * contain as many bytes as filename.ext does on your local filesystem. If your filename.ext is 1MB then that is how - * large $remote_file will be, as well. - * - * Setting $mode to self::SOURCE_CALLBACK will use $data as callback function, which gets only one parameter -- number of bytes to return, and returns a string if there is some data or null if there is no more data - * - * If $data is a resource then it'll be used as a resource instead. - * - * Currently, only binary mode is supported. As such, if the line endings need to be adjusted, you will need to take - * care of that, yourself. - * - * $mode can take an additional two parameters - self::RESUME and self::RESUME_START. These are bitwise AND'd with - * $mode. So if you want to resume upload of a 300mb file on the local file system you'd set $mode to the following: - * - * self::SOURCE_LOCAL_FILE | self::RESUME - * - * If you wanted to simply append the full contents of a local file to the full contents of a remote file you'd replace - * self::RESUME with self::RESUME_START. - * - * If $mode & (self::RESUME | self::RESUME_START) then self::RESUME_START will be assumed. - * - * $start and $local_start give you more fine grained control over this process and take precident over self::RESUME - * when they're non-negative. ie. $start could let you write at the end of a file (like self::RESUME) or in the middle - * of one. $local_start could let you start your reading from the end of a file (like self::RESUME_START) or in the - * middle of one. - * - * Setting $local_start to > 0 or $mode | self::RESUME_START doesn't do anything unless $mode | self::SOURCE_LOCAL_FILE. - * - * @param string $remote_file - * @param string|resource $data - * @param int $mode - * @param int $start - * @param int $local_start - * @param callable|null $progressCallback - * @return bool - * @access public - * @internal ASCII mode for SFTPv4/5/6 can be supported by adding a new function - \phpseclib\Net\SFTP::setMode(). - */ - function put($remote_file, $data, $mode = self::SOURCE_STRING, $start = -1, $local_start = -1, $progressCallback = null) - { - if (!($this->bitmap & SSH2::MASK_LOGIN)) { - return false; - } - - $remote_file = $this->_realpath($remote_file); - if ($remote_file === false) { - return false; - } - - $this->_remove_from_stat_cache($remote_file); - - $flags = NET_SFTP_OPEN_WRITE | NET_SFTP_OPEN_CREATE; - // according to the SFTP specs, NET_SFTP_OPEN_APPEND should "force all writes to append data at the end of the file." - // in practice, it doesn't seem to do that. - //$flags|= ($mode & self::RESUME) ? NET_SFTP_OPEN_APPEND : NET_SFTP_OPEN_TRUNCATE; - - if ($start >= 0) { - $offset = $start; - } elseif ($mode & self::RESUME) { - // if NET_SFTP_OPEN_APPEND worked as it should _size() wouldn't need to be called - $size = $this->size($remote_file); - $offset = $size !== false ? $size : 0; - } else { - $offset = 0; - $flags|= NET_SFTP_OPEN_TRUNCATE; - } - - $packet = pack('Na*N2', strlen($remote_file), $remote_file, $flags, 0); - if (!$this->_send_sftp_packet(NET_SFTP_OPEN, $packet)) { - return false; - } - - $response = $this->_get_sftp_packet(); - switch ($this->packet_type) { - case NET_SFTP_HANDLE: - $handle = substr($response, 4); - break; - case NET_SFTP_STATUS: - $this->_logError($response); - return false; - default: - user_error('Expected SSH_FXP_HANDLE or SSH_FXP_STATUS'); - return false; - } - - // http://tools.ietf.org/html/draft-ietf-secsh-filexfer-13#section-8.2.3 - $dataCallback = false; - switch (true) { - case $mode & self::SOURCE_CALLBACK: - if (!is_callable($data)) { - user_error("\$data should be is_callable() if you specify SOURCE_CALLBACK flag"); - } - $dataCallback = $data; - // do nothing - break; - case is_resource($data): - $mode = $mode & ~self::SOURCE_LOCAL_FILE; - $info = stream_get_meta_data($data); - if ($info['wrapper_type'] == 'PHP' && $info['stream_type'] == 'Input') { - $fp = fopen('php://memory', 'w+'); - stream_copy_to_stream($data, $fp); - rewind($fp); - } else { - $fp = $data; - } - break; - case $mode & self::SOURCE_LOCAL_FILE: - if (!is_file($data)) { - user_error("$data is not a valid file"); - return false; - } - $fp = @fopen($data, 'rb'); - if (!$fp) { - return false; - } - } - - if (isset($fp)) { - $stat = fstat($fp); - $size = !empty($stat) ? $stat['size'] : 0; - - if ($local_start >= 0) { - fseek($fp, $local_start); - $size-= $local_start; - } - } elseif ($dataCallback) { - $size = 0; - } else { - $size = strlen($data); - } - - $sent = 0; - $size = $size < 0 ? ($size & 0x7FFFFFFF) + 0x80000000 : $size; - - $sftp_packet_size = 4096; // PuTTY uses 4096 - // make the SFTP packet be exactly 4096 bytes by including the bytes in the NET_SFTP_WRITE packets "header" - $sftp_packet_size-= strlen($handle) + 25; - $i = $j = 0; - while ($dataCallback || ($size === 0 || $sent < $size)) { - if ($dataCallback) { - $temp = call_user_func($dataCallback, $sftp_packet_size); - if (is_null($temp)) { - break; - } - } else { - $temp = isset($fp) ? fread($fp, $sftp_packet_size) : substr($data, $sent, $sftp_packet_size); - if ($temp === false || $temp === '') { - break; - } - } - - $subtemp = $offset + $sent; - $packet = pack('Na*N3a*', strlen($handle), $handle, $subtemp / 4294967296, $subtemp, strlen($temp), $temp); - if (!$this->_send_sftp_packet(NET_SFTP_WRITE, $packet, $j)) { - if ($mode & self::SOURCE_LOCAL_FILE) { - fclose($fp); - } - return false; - } - $sent+= strlen($temp); - if (is_callable($progressCallback)) { - call_user_func($progressCallback, $sent); - } - - $i++; - $j++; - - if ($i == NET_SFTP_UPLOAD_QUEUE_SIZE) { - if (!$this->_read_put_responses($i)) { - $i = 0; - break; - } - $i = 0; - } - } - - if (!$this->_read_put_responses($i)) { - if ($mode & self::SOURCE_LOCAL_FILE) { - fclose($fp); - } - $this->_close_handle($handle); - return false; - } - - if ($mode & self::SOURCE_LOCAL_FILE) { - fclose($fp); - } - - return $this->_close_handle($handle); - } - - /** - * Reads multiple successive SSH_FXP_WRITE responses - * - * Sending an SSH_FXP_WRITE packet and immediately reading its response isn't as efficient as blindly sending out $i - * SSH_FXP_WRITEs, in succession, and then reading $i responses. - * - * @param int $i - * @return bool - * @access private - */ - function _read_put_responses($i) - { - while ($i--) { - $response = $this->_get_sftp_packet(); - if ($this->packet_type != NET_SFTP_STATUS) { - user_error('Expected SSH_FXP_STATUS'); - return false; - } - - if (strlen($response) < 4) { - return false; - } - extract(unpack('Nstatus', $this->_string_shift($response, 4))); - if ($status != NET_SFTP_STATUS_OK) { - $this->_logError($response, $status); - break; - } - } - - return $i < 0; - } - - /** - * Close handle - * - * @param string $handle - * @return bool - * @access private - */ - function _close_handle($handle) - { - if (!$this->_send_sftp_packet(NET_SFTP_CLOSE, pack('Na*', strlen($handle), $handle))) { - return false; - } - - // "The client MUST release all resources associated with the handle regardless of the status." - // -- http://tools.ietf.org/html/draft-ietf-secsh-filexfer-13#section-8.1.3 - $response = $this->_get_sftp_packet(); - if ($this->packet_type != NET_SFTP_STATUS) { - user_error('Expected SSH_FXP_STATUS'); - return false; - } - - if (strlen($response) < 4) { - return false; - } - extract(unpack('Nstatus', $this->_string_shift($response, 4))); - if ($status != NET_SFTP_STATUS_OK) { - $this->_logError($response, $status); - return false; - } - - return true; - } - - /** - * Downloads a file from the SFTP server. - * - * Returns a string containing the contents of $remote_file if $local_file is left undefined or a boolean false if - * the operation was unsuccessful. If $local_file is defined, returns true or false depending on the success of the - * operation. - * - * $offset and $length can be used to download files in chunks. - * - * @param string $remote_file - * @param string $local_file - * @param int $offset - * @param int $length - * @param callable|null $progressCallback - * @return mixed - * @access public - */ - function get($remote_file, $local_file = false, $offset = 0, $length = -1, $progressCallback = null) - { - if (!($this->bitmap & SSH2::MASK_LOGIN)) { - return false; - } - - $remote_file = $this->_realpath($remote_file); - if ($remote_file === false) { - return false; - } - - $packet = pack('Na*N2', strlen($remote_file), $remote_file, NET_SFTP_OPEN_READ, 0); - if (!$this->_send_sftp_packet(NET_SFTP_OPEN, $packet)) { - return false; - } - - $response = $this->_get_sftp_packet(); - switch ($this->packet_type) { - case NET_SFTP_HANDLE: - $handle = substr($response, 4); - break; - case NET_SFTP_STATUS: // presumably SSH_FX_NO_SUCH_FILE or SSH_FX_PERMISSION_DENIED - $this->_logError($response); - return false; - default: - user_error('Expected SSH_FXP_HANDLE or SSH_FXP_STATUS'); - return false; - } - - if (is_resource($local_file)) { - $fp = $local_file; - $stat = fstat($fp); - $res_offset = $stat['size']; - } else { - $res_offset = 0; - if ($local_file !== false) { - $fp = fopen($local_file, 'wb'); - if (!$fp) { - return false; - } - } else { - $content = ''; - } - } - - $fclose_check = $local_file !== false && !is_resource($local_file); - - $start = $offset; - $read = 0; - while (true) { - $i = 0; - - while ($i < NET_SFTP_QUEUE_SIZE && ($length < 0 || $read < $length)) { - $tempoffset = $start + $read; - - $packet_size = $length > 0 ? min($this->max_sftp_packet, $length - $read) : $this->max_sftp_packet; - - $packet = pack('Na*N3', strlen($handle), $handle, $tempoffset / 4294967296, $tempoffset, $packet_size); - if (!$this->_send_sftp_packet(NET_SFTP_READ, $packet, $i)) { - if ($fclose_check) { - fclose($fp); - } - return false; - } - $packet = null; - $read+= $packet_size; - if (is_callable($progressCallback)) { - call_user_func($progressCallback, $read); - } - $i++; - } - - if (!$i) { - break; - } - - $packets_sent = $i - 1; - - $clear_responses = false; - while ($i > 0) { - $i--; - - if ($clear_responses) { - $this->_get_sftp_packet($packets_sent - $i); - continue; - } else { - $response = $this->_get_sftp_packet($packets_sent - $i); - } - - switch ($this->packet_type) { - case NET_SFTP_DATA: - $temp = substr($response, 4); - $offset+= strlen($temp); - if ($local_file === false) { - $content.= $temp; - } else { - fputs($fp, $temp); - } - $temp = null; - break; - case NET_SFTP_STATUS: - // could, in theory, return false if !strlen($content) but we'll hold off for the time being - $this->_logError($response); - $clear_responses = true; // don't break out of the loop yet, so we can read the remaining responses - break; - default: - if ($fclose_check) { - fclose($fp); - } - user_error('Expected SSH_FX_DATA or SSH_FXP_STATUS'); - } - $response = null; - } - - if ($clear_responses) { - break; - } - } - - if ($length > 0 && $length <= $offset - $start) { - if ($local_file === false) { - $content = substr($content, 0, $length); - } else { - ftruncate($fp, $length + $res_offset); - } - } - - if ($fclose_check) { - fclose($fp); - } - - if (!$this->_close_handle($handle)) { - return false; - } - - // if $content isn't set that means a file was written to - return isset($content) ? $content : true; - } - - /** - * Deletes a file on the SFTP server. - * - * @param string $path - * @param bool $recursive - * @return bool - * @access public - */ - function delete($path, $recursive = true) - { - if (!($this->bitmap & SSH2::MASK_LOGIN)) { - return false; - } - - if (is_object($path)) { - // It's an object. Cast it as string before we check anything else. - $path = (string) $path; - } - - if (!is_string($path) || $path == '') { - return false; - } - - $path = $this->_realpath($path); - if ($path === false) { - return false; - } - - // http://tools.ietf.org/html/draft-ietf-secsh-filexfer-13#section-8.3 - if (!$this->_send_sftp_packet(NET_SFTP_REMOVE, pack('Na*', strlen($path), $path))) { - return false; - } - - $response = $this->_get_sftp_packet(); - if ($this->packet_type != NET_SFTP_STATUS) { - user_error('Expected SSH_FXP_STATUS'); - return false; - } - - // if $status isn't SSH_FX_OK it's probably SSH_FX_NO_SUCH_FILE or SSH_FX_PERMISSION_DENIED - if (strlen($response) < 4) { - return false; - } - extract(unpack('Nstatus', $this->_string_shift($response, 4))); - if ($status != NET_SFTP_STATUS_OK) { - $this->_logError($response, $status); - if (!$recursive) { - return false; - } - $i = 0; - $result = $this->_delete_recursive($path, $i); - $this->_read_put_responses($i); - return $result; - } - - $this->_remove_from_stat_cache($path); - - return true; - } - - /** - * Recursively deletes directories on the SFTP server - * - * Minimizes directory lookups and SSH_FXP_STATUS requests for speed. - * - * @param string $path - * @param int $i - * @return bool - * @access private - */ - function _delete_recursive($path, &$i) - { - if (!$this->_read_put_responses($i)) { - return false; - } - $i = 0; - $entries = $this->_list($path, true); - - // normally $entries would have at least . and .. but it might not if the directories - // permissions didn't allow reading - if (empty($entries)) { - return false; - } - - unset($entries['.'], $entries['..']); - foreach ($entries as $filename => $props) { - if (!isset($props['type'])) { - return false; - } - - $temp = $path . '/' . $filename; - if ($props['type'] == NET_SFTP_TYPE_DIRECTORY) { - if (!$this->_delete_recursive($temp, $i)) { - return false; - } - } else { - if (!$this->_send_sftp_packet(NET_SFTP_REMOVE, pack('Na*', strlen($temp), $temp))) { - return false; - } - $this->_remove_from_stat_cache($temp); - - $i++; - - if ($i >= NET_SFTP_QUEUE_SIZE) { - if (!$this->_read_put_responses($i)) { - return false; - } - $i = 0; - } - } - } - - if (!$this->_send_sftp_packet(NET_SFTP_RMDIR, pack('Na*', strlen($path), $path))) { - return false; - } - $this->_remove_from_stat_cache($path); - - $i++; - - if ($i >= NET_SFTP_QUEUE_SIZE) { - if (!$this->_read_put_responses($i)) { - return false; - } - $i = 0; - } - - return true; - } - - /** - * Checks whether a file or directory exists - * - * @param string $path - * @return bool - * @access public - */ - function file_exists($path) - { - if ($this->use_stat_cache) { - $path = $this->_realpath($path); - - $result = $this->_query_stat_cache($path); - - if (isset($result)) { - // return true if $result is an array or if it's an stdClass object - return $result !== false; - } - } - - return $this->stat($path) !== false; - } - - /** - * Tells whether the filename is a directory - * - * @param string $path - * @return bool - * @access public - */ - function is_dir($path) - { - $result = $this->_get_stat_cache_prop($path, 'type'); - if ($result === false) { - return false; - } - return $result === NET_SFTP_TYPE_DIRECTORY; - } - - /** - * Tells whether the filename is a regular file - * - * @param string $path - * @return bool - * @access public - */ - function is_file($path) - { - $result = $this->_get_stat_cache_prop($path, 'type'); - if ($result === false) { - return false; - } - return $result === NET_SFTP_TYPE_REGULAR; - } - - /** - * Tells whether the filename is a symbolic link - * - * @param string $path - * @return bool - * @access public - */ - function is_link($path) - { - $result = $this->_get_lstat_cache_prop($path, 'type'); - if ($result === false) { - return false; - } - return $result === NET_SFTP_TYPE_SYMLINK; - } - - /** - * Tells whether a file exists and is readable - * - * @param string $path - * @return bool - * @access public - */ - function is_readable($path) - { - $path = $this->_realpath($path); - - $packet = pack('Na*N2', strlen($path), $path, NET_SFTP_OPEN_READ, 0); - if (!$this->_send_sftp_packet(NET_SFTP_OPEN, $packet)) { - return false; - } - - $response = $this->_get_sftp_packet(); - switch ($this->packet_type) { - case NET_SFTP_HANDLE: - return true; - case NET_SFTP_STATUS: // presumably SSH_FX_NO_SUCH_FILE or SSH_FX_PERMISSION_DENIED - return false; - default: - user_error('Expected SSH_FXP_HANDLE or SSH_FXP_STATUS'); - return false; - } - } - - /** - * Tells whether the filename is writable - * - * @param string $path - * @return bool - * @access public - */ - function is_writable($path) - { - $path = $this->_realpath($path); - - $packet = pack('Na*N2', strlen($path), $path, NET_SFTP_OPEN_WRITE, 0); - if (!$this->_send_sftp_packet(NET_SFTP_OPEN, $packet)) { - return false; - } - - $response = $this->_get_sftp_packet(); - switch ($this->packet_type) { - case NET_SFTP_HANDLE: - return true; - case NET_SFTP_STATUS: // presumably SSH_FX_NO_SUCH_FILE or SSH_FX_PERMISSION_DENIED - return false; - default: - user_error('Expected SSH_FXP_HANDLE or SSH_FXP_STATUS'); - return false; - } - } - - /** - * Tells whether the filename is writeable - * - * Alias of is_writable - * - * @param string $path - * @return bool - * @access public - */ - function is_writeable($path) - { - return $this->is_writable($path); - } - - /** - * Gets last access time of file - * - * @param string $path - * @return mixed - * @access public - */ - function fileatime($path) - { - return $this->_get_stat_cache_prop($path, 'atime'); - } - - /** - * Gets file modification time - * - * @param string $path - * @return mixed - * @access public - */ - function filemtime($path) - { - return $this->_get_stat_cache_prop($path, 'mtime'); - } - - /** - * Gets file permissions - * - * @param string $path - * @return mixed - * @access public - */ - function fileperms($path) - { - return $this->_get_stat_cache_prop($path, 'permissions'); - } - - /** - * Gets file owner - * - * @param string $path - * @return mixed - * @access public - */ - function fileowner($path) - { - return $this->_get_stat_cache_prop($path, 'uid'); - } - - /** - * Gets file group - * - * @param string $path - * @return mixed - * @access public - */ - function filegroup($path) - { - return $this->_get_stat_cache_prop($path, 'gid'); - } - - /** - * Gets file size - * - * @param string $path - * @return mixed - * @access public - */ - function filesize($path) - { - return $this->_get_stat_cache_prop($path, 'size'); - } - - /** - * Gets file type - * - * @param string $path - * @return mixed - * @access public - */ - function filetype($path) - { - $type = $this->_get_stat_cache_prop($path, 'type'); - if ($type === false) { - return false; - } - - switch ($type) { - case NET_SFTP_TYPE_BLOCK_DEVICE: - return 'block'; - case NET_SFTP_TYPE_CHAR_DEVICE: - return 'char'; - case NET_SFTP_TYPE_DIRECTORY: - return 'dir'; - case NET_SFTP_TYPE_FIFO: - return 'fifo'; - case NET_SFTP_TYPE_REGULAR: - return 'file'; - case NET_SFTP_TYPE_SYMLINK: - return 'link'; - default: - return false; - } - } - - /** - * Return a stat properity - * - * Uses cache if appropriate. - * - * @param string $path - * @param string $prop - * @return mixed - * @access private - */ - function _get_stat_cache_prop($path, $prop) - { - return $this->_get_xstat_cache_prop($path, $prop, 'stat'); - } - - /** - * Return an lstat properity - * - * Uses cache if appropriate. - * - * @param string $path - * @param string $prop - * @return mixed - * @access private - */ - function _get_lstat_cache_prop($path, $prop) - { - return $this->_get_xstat_cache_prop($path, $prop, 'lstat'); - } - - /** - * Return a stat or lstat properity - * - * Uses cache if appropriate. - * - * @param string $path - * @param string $prop - * @return mixed - * @access private - */ - function _get_xstat_cache_prop($path, $prop, $type) - { - if ($this->use_stat_cache) { - $path = $this->_realpath($path); - - $result = $this->_query_stat_cache($path); - - if (is_object($result) && isset($result->$type)) { - return $result->{$type}[$prop]; - } - } - - $result = $this->$type($path); - - if ($result === false || !isset($result[$prop])) { - return false; - } - - return $result[$prop]; - } - - /** - * Renames a file or a directory on the SFTP server - * - * @param string $oldname - * @param string $newname - * @return bool - * @access public - */ - function rename($oldname, $newname) - { - if (!($this->bitmap & SSH2::MASK_LOGIN)) { - return false; - } - - $oldname = $this->_realpath($oldname); - $newname = $this->_realpath($newname); - if ($oldname === false || $newname === false) { - return false; - } - - // http://tools.ietf.org/html/draft-ietf-secsh-filexfer-13#section-8.3 - $packet = pack('Na*Na*', strlen($oldname), $oldname, strlen($newname), $newname); - if (!$this->_send_sftp_packet(NET_SFTP_RENAME, $packet)) { - return false; - } - - $response = $this->_get_sftp_packet(); - if ($this->packet_type != NET_SFTP_STATUS) { - user_error('Expected SSH_FXP_STATUS'); - return false; - } - - // if $status isn't SSH_FX_OK it's probably SSH_FX_NO_SUCH_FILE or SSH_FX_PERMISSION_DENIED - if (strlen($response) < 4) { - return false; - } - extract(unpack('Nstatus', $this->_string_shift($response, 4))); - if ($status != NET_SFTP_STATUS_OK) { - $this->_logError($response, $status); - return false; - } - - // don't move the stat cache entry over since this operation could very well change the - // atime and mtime attributes - //$this->_update_stat_cache($newname, $this->_query_stat_cache($oldname)); - $this->_remove_from_stat_cache($oldname); - $this->_remove_from_stat_cache($newname); - - return true; - } - - /** - * Parse Attributes - * - * See '7. File Attributes' of draft-ietf-secsh-filexfer-13 for more info. - * - * @param string $response - * @return array - * @access private - */ - function _parseAttributes(&$response) - { - $attr = array(); - if (strlen($response) < 4) { - user_error('Malformed file attributes'); - return array(); - } - extract(unpack('Nflags', $this->_string_shift($response, 4))); - // SFTPv4+ have a type field (a byte) that follows the above flag field - foreach ($this->attributes as $key => $value) { - switch ($flags & $key) { - case NET_SFTP_ATTR_SIZE: // 0x00000001 - // The size attribute is defined as an unsigned 64-bit integer. - // The following will use floats on 32-bit platforms, if necessary. - // As can be seen in the BigInteger class, floats are generally - // IEEE 754 binary64 "double precision" on such platforms and - // as such can represent integers of at least 2^50 without loss - // of precision. Interpreted in filesize, 2^50 bytes = 1024 TiB. - $attr['size'] = hexdec(bin2hex($this->_string_shift($response, 8))); - break; - case NET_SFTP_ATTR_UIDGID: // 0x00000002 (SFTPv3 only) - if (strlen($response) < 8) { - user_error('Malformed file attributes'); - return $attr; - } - $attr+= unpack('Nuid/Ngid', $this->_string_shift($response, 8)); - break; - case NET_SFTP_ATTR_PERMISSIONS: // 0x00000004 - if (strlen($response) < 4) { - user_error('Malformed file attributes'); - return $attr; - } - $attr+= unpack('Npermissions', $this->_string_shift($response, 4)); - // mode == permissions; permissions was the original array key and is retained for bc purposes. - // mode was added because that's the more industry standard terminology - $attr+= array('mode' => $attr['permissions']); - $fileType = $this->_parseMode($attr['permissions']); - if ($fileType !== false) { - $attr+= array('type' => $fileType); - } - break; - case NET_SFTP_ATTR_ACCESSTIME: // 0x00000008 - if (strlen($response) < 8) { - user_error('Malformed file attributes'); - return $attr; - } - $attr+= unpack('Natime/Nmtime', $this->_string_shift($response, 8)); - break; - case NET_SFTP_ATTR_EXTENDED: // 0x80000000 - if (strlen($response) < 4) { - user_error('Malformed file attributes'); - return $attr; - } - extract(unpack('Ncount', $this->_string_shift($response, 4))); - for ($i = 0; $i < $count; $i++) { - if (strlen($response) < 4) { - user_error('Malformed file attributes'); - return $attr; - } - extract(unpack('Nlength', $this->_string_shift($response, 4))); - $key = $this->_string_shift($response, $length); - if (strlen($response) < 4) { - user_error('Malformed file attributes'); - return $attr; - } - extract(unpack('Nlength', $this->_string_shift($response, 4))); - $attr[$key] = $this->_string_shift($response, $length); - } - } - } - return $attr; - } - - /** - * Attempt to identify the file type - * - * Quoting the SFTP RFC, "Implementations MUST NOT send bits that are not defined" but they seem to anyway - * - * @param int $mode - * @return int - * @access private - */ - function _parseMode($mode) - { - // values come from http://lxr.free-electrons.com/source/include/uapi/linux/stat.h#L12 - // see, also, http://linux.die.net/man/2/stat - switch ($mode & 0170000) {// ie. 1111 0000 0000 0000 - case 0000000: // no file type specified - figure out the file type using alternative means - return false; - case 0040000: - return NET_SFTP_TYPE_DIRECTORY; - case 0100000: - return NET_SFTP_TYPE_REGULAR; - case 0120000: - return NET_SFTP_TYPE_SYMLINK; - // new types introduced in SFTPv5+ - // http://tools.ietf.org/html/draft-ietf-secsh-filexfer-05#section-5.2 - case 0010000: // named pipe (fifo) - return NET_SFTP_TYPE_FIFO; - case 0020000: // character special - return NET_SFTP_TYPE_CHAR_DEVICE; - case 0060000: // block special - return NET_SFTP_TYPE_BLOCK_DEVICE; - case 0140000: // socket - return NET_SFTP_TYPE_SOCKET; - case 0160000: // whiteout - // "SPECIAL should be used for files that are of - // a known type which cannot be expressed in the protocol" - return NET_SFTP_TYPE_SPECIAL; - default: - return NET_SFTP_TYPE_UNKNOWN; - } - } - - /** - * Parse Longname - * - * SFTPv3 doesn't provide any easy way of identifying a file type. You could try to open - * a file as a directory and see if an error is returned or you could try to parse the - * SFTPv3-specific longname field of the SSH_FXP_NAME packet. That's what this function does. - * The result is returned using the - * {@link http://tools.ietf.org/html/draft-ietf-secsh-filexfer-04#section-5.2 SFTPv4 type constants}. - * - * If the longname is in an unrecognized format bool(false) is returned. - * - * @param string $longname - * @return mixed - * @access private - */ - function _parseLongname($longname) - { - // http://en.wikipedia.org/wiki/Unix_file_types - // http://en.wikipedia.org/wiki/Filesystem_permissions#Notation_of_traditional_Unix_permissions - if (preg_match('#^[^/]([r-][w-][xstST-]){3}#', $longname)) { - switch ($longname[0]) { - case '-': - return NET_SFTP_TYPE_REGULAR; - case 'd': - return NET_SFTP_TYPE_DIRECTORY; - case 'l': - return NET_SFTP_TYPE_SYMLINK; - default: - return NET_SFTP_TYPE_SPECIAL; - } - } - - return false; - } - - /** - * Sends SFTP Packets - * - * See '6. General Packet Format' of draft-ietf-secsh-filexfer-13 for more info. - * - * @param int $type - * @param string $data - * @see self::_get_sftp_packet() - * @see self::_send_channel_packet() - * @return bool - * @access private - */ - function _send_sftp_packet($type, $data, $request_id = 1) - { - $packet = $this->use_request_id ? - pack('NCNa*', strlen($data) + 5, $type, $request_id, $data) : - pack('NCa*', strlen($data) + 1, $type, $data); - - $start = strtok(microtime(), ' ') + strtok(''); // http://php.net/microtime#61838 - $result = $this->_send_channel_packet(self::CHANNEL, $packet); - $stop = strtok(microtime(), ' ') + strtok(''); - - if (defined('NET_SFTP_LOGGING')) { - $packet_type = '-> ' . $this->packet_types[$type] . - ' (' . round($stop - $start, 4) . 's)'; - if (NET_SFTP_LOGGING == self::LOG_REALTIME) { - echo "
\r\n" . $this->_format_log(array($data), array($packet_type)) . "\r\n
\r\n"; - flush(); - ob_flush(); - } else { - $this->packet_type_log[] = $packet_type; - if (NET_SFTP_LOGGING == self::LOG_COMPLEX) { - $this->packet_log[] = $data; - } - } - } - - return $result; - } - - /** - * Resets a connection for re-use - * - * @param int $reason - * @access private - */ - function _reset_connection($reason) - { - parent::_reset_connection($reason); - $this->use_request_id = false; - $this->pwd = false; - $this->requestBuffer = array(); - } - - /** - * Receives SFTP Packets - * - * See '6. General Packet Format' of draft-ietf-secsh-filexfer-13 for more info. - * - * Incidentally, the number of SSH_MSG_CHANNEL_DATA messages has no bearing on the number of SFTP packets present. - * There can be one SSH_MSG_CHANNEL_DATA messages containing two SFTP packets or there can be two SSH_MSG_CHANNEL_DATA - * messages containing one SFTP packet. - * - * @see self::_send_sftp_packet() - * @return string - * @access private - */ - function _get_sftp_packet($request_id = null) - { - if (isset($request_id) && isset($this->requestBuffer[$request_id])) { - $this->packet_type = $this->requestBuffer[$request_id]['packet_type']; - $temp = $this->requestBuffer[$request_id]['packet']; - unset($this->requestBuffer[$request_id]); - return $temp; - } - - // in SSH2.php the timeout is cumulative per function call. eg. exec() will - // timeout after 10s. but for SFTP.php it's cumulative per packet - $this->curTimeout = $this->timeout; - - $start = strtok(microtime(), ' ') + strtok(''); // http://php.net/microtime#61838 - - // SFTP packet length - while (strlen($this->packet_buffer) < 4) { - $temp = $this->_get_channel_packet(self::CHANNEL, true); - if (is_bool($temp)) { - $this->packet_type = false; - $this->packet_buffer = ''; - return false; - } - $this->packet_buffer.= $temp; - } - if (strlen($this->packet_buffer) < 4) { - return false; - } - extract(unpack('Nlength', $this->_string_shift($this->packet_buffer, 4))); - $tempLength = $length; - $tempLength-= strlen($this->packet_buffer); - - - // 256 * 1024 is what SFTP_MAX_MSG_LENGTH is set to in OpenSSH's sftp-common.h - if ($tempLength > 256 * 1024) { - user_error('Invalid SFTP packet size'); - return false; - } - - // SFTP packet type and data payload - while ($tempLength > 0) { - $temp = $this->_get_channel_packet(self::CHANNEL, true); - if (is_bool($temp)) { - $this->packet_type = false; - $this->packet_buffer = ''; - return false; - } - $this->packet_buffer.= $temp; - $tempLength-= strlen($temp); - } - - $stop = strtok(microtime(), ' ') + strtok(''); - - $this->packet_type = ord($this->_string_shift($this->packet_buffer)); - - if ($this->use_request_id) { - extract(unpack('Npacket_id', $this->_string_shift($this->packet_buffer, 4))); // remove the request id - $length-= 5; // account for the request id and the packet type - } else { - $length-= 1; // account for the packet type - } - - $packet = $this->_string_shift($this->packet_buffer, $length); - - if (defined('NET_SFTP_LOGGING')) { - $packet_type = '<- ' . $this->packet_types[$this->packet_type] . - ' (' . round($stop - $start, 4) . 's)'; - if (NET_SFTP_LOGGING == self::LOG_REALTIME) { - echo "
\r\n" . $this->_format_log(array($packet), array($packet_type)) . "\r\n
\r\n"; - flush(); - ob_flush(); - } else { - $this->packet_type_log[] = $packet_type; - if (NET_SFTP_LOGGING == self::LOG_COMPLEX) { - $this->packet_log[] = $packet; - } - } - } - - if (isset($request_id) && $this->use_request_id && $packet_id != $request_id) { - $this->requestBuffer[$packet_id] = array( - 'packet_type' => $this->packet_type, - 'packet' => $packet - ); - return $this->_get_sftp_packet($request_id); - } - - return $packet; - } - - /** - * Returns a log of the packets that have been sent and received. - * - * Returns a string if NET_SFTP_LOGGING == NET_SFTP_LOG_COMPLEX, an array if NET_SFTP_LOGGING == NET_SFTP_LOG_SIMPLE and false if !defined('NET_SFTP_LOGGING') - * - * @access public - * @return string or Array - */ - function getSFTPLog() - { - if (!defined('NET_SFTP_LOGGING')) { - return false; - } - - switch (NET_SFTP_LOGGING) { - case self::LOG_COMPLEX: - return $this->_format_log($this->packet_log, $this->packet_type_log); - break; - //case self::LOG_SIMPLE: - default: - return $this->packet_type_log; - } - } - - /** - * Returns all errors - * - * @return array - * @access public - */ - function getSFTPErrors() - { - return $this->sftp_errors; - } - - /** - * Returns the last error - * - * @return string - * @access public - */ - function getLastSFTPError() - { - return count($this->sftp_errors) ? $this->sftp_errors[count($this->sftp_errors) - 1] : ''; - } - - /** - * Get supported SFTP versions - * - * @return array - * @access public - */ - function getSupportedVersions() - { - $temp = array('version' => $this->version); - if (isset($this->extensions['versions'])) { - $temp['extensions'] = $this->extensions['versions']; - } - return $temp; - } - - /** - * Disconnect - * - * @param int $reason - * @return bool - * @access private - */ - function _disconnect($reason) - { - $this->pwd = false; - parent::_disconnect($reason); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP/Stream.php b/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP/Stream.php deleted file mode 100644 index d2c4425d..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP/Stream.php +++ /dev/null @@ -1,795 +0,0 @@ - - * @copyright 2013 Jim Wigginton - * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @link http://phpseclib.sourceforge.net - */ - -namespace phpseclib\Net\SFTP; - -use phpseclib\Crypt\RSA; -use phpseclib\Net\SFTP; - -/** - * SFTP Stream Wrapper - * - * @package SFTP - * @author Jim Wigginton - * @access public - */ -class Stream -{ - /** - * SFTP instances - * - * Rather than re-create the connection we re-use instances if possible - * - * @var array - */ - static $instances; - - /** - * SFTP instance - * - * @var object - * @access private - */ - var $sftp; - - /** - * Path - * - * @var string - * @access private - */ - var $path; - - /** - * Mode - * - * @var string - * @access private - */ - var $mode; - - /** - * Position - * - * @var int - * @access private - */ - var $pos; - - /** - * Size - * - * @var int - * @access private - */ - var $size; - - /** - * Directory entries - * - * @var array - * @access private - */ - var $entries; - - /** - * EOF flag - * - * @var bool - * @access private - */ - var $eof; - - /** - * Context resource - * - * Technically this needs to be publically accessible so PHP can set it directly - * - * @var resource - * @access public - */ - var $context; - - /** - * Notification callback function - * - * @var callable - * @access public - */ - var $notification; - - /** - * Registers this class as a URL wrapper. - * - * @param string $protocol The wrapper name to be registered. - * @return bool True on success, false otherwise. - * @access public - */ - static function register($protocol = 'sftp') - { - if (in_array($protocol, stream_get_wrappers(), true)) { - return false; - } - return stream_wrapper_register($protocol, get_called_class()); - } - - /** - * The Constructor - * - * @access public - */ - function __construct() - { - if (defined('NET_SFTP_STREAM_LOGGING')) { - echo "__construct()\r\n"; - } - } - - /** - * Path Parser - * - * Extract a path from a URI and actually connect to an SSH server if appropriate - * - * If "notification" is set as a context parameter the message code for successful login is - * NET_SSH2_MSG_USERAUTH_SUCCESS. For a failed login it's NET_SSH2_MSG_USERAUTH_FAILURE. - * - * @param string $path - * @return string - * @access private - */ - function _parse_path($path) - { - $orig = $path; - extract(parse_url($path) + array('port' => 22)); - if (isset($query)) { - $path.= '?' . $query; - } elseif (preg_match('/(\?|\?#)$/', $orig)) { - $path.= '?'; - } - if (isset($fragment)) { - $path.= '#' . $fragment; - } elseif ($orig[strlen($orig) - 1] == '#') { - $path.= '#'; - } - - if (!isset($host)) { - return false; - } - - if (isset($this->context)) { - $context = stream_context_get_params($this->context); - if (isset($context['notification'])) { - $this->notification = $context['notification']; - } - } - - if ($host[0] == '$') { - $host = substr($host, 1); - global ${$host}; - if (($$host instanceof SFTP) === false) { - return false; - } - $this->sftp = $$host; - } else { - if (isset($this->context)) { - $context = stream_context_get_options($this->context); - } - if (isset($context[$scheme]['session'])) { - $sftp = $context[$scheme]['session']; - } - if (isset($context[$scheme]['sftp'])) { - $sftp = $context[$scheme]['sftp']; - } - if (isset($sftp) && $sftp instanceof SFTP) { - $this->sftp = $sftp; - return $path; - } - if (isset($context[$scheme]['username'])) { - $user = $context[$scheme]['username']; - } - if (isset($context[$scheme]['password'])) { - $pass = $context[$scheme]['password']; - } - if (isset($context[$scheme]['privkey']) && $context[$scheme]['privkey'] instanceof RSA) { - $pass = $context[$scheme]['privkey']; - } - - if (!isset($user) || !isset($pass)) { - return false; - } - - // casting $pass to a string is necessary in the event that it's a \phpseclib\Crypt\RSA object - if (isset(self::$instances[$host][$port][$user][(string) $pass])) { - $this->sftp = self::$instances[$host][$port][$user][(string) $pass]; - } else { - $this->sftp = new SFTP($host, $port); - $this->sftp->disableStatCache(); - if (isset($this->notification) && is_callable($this->notification)) { - /* if !is_callable($this->notification) we could do this: - - user_error('fopen(): failed to call user notifier', E_USER_WARNING); - - the ftp wrapper gives errors like that when the notifier isn't callable. - i've opted not to do that, however, since the ftp wrapper gives the line - on which the fopen occurred as the line number - not the line that the - user_error is on. - */ - call_user_func($this->notification, STREAM_NOTIFY_CONNECT, STREAM_NOTIFY_SEVERITY_INFO, '', 0, 0, 0); - call_user_func($this->notification, STREAM_NOTIFY_AUTH_REQUIRED, STREAM_NOTIFY_SEVERITY_INFO, '', 0, 0, 0); - if (!$this->sftp->login($user, $pass)) { - call_user_func($this->notification, STREAM_NOTIFY_AUTH_RESULT, STREAM_NOTIFY_SEVERITY_ERR, 'Login Failure', NET_SSH2_MSG_USERAUTH_FAILURE, 0, 0); - return false; - } - call_user_func($this->notification, STREAM_NOTIFY_AUTH_RESULT, STREAM_NOTIFY_SEVERITY_INFO, 'Login Success', NET_SSH2_MSG_USERAUTH_SUCCESS, 0, 0); - } else { - if (!$this->sftp->login($user, $pass)) { - return false; - } - } - self::$instances[$host][$port][$user][(string) $pass] = $this->sftp; - } - } - - return $path; - } - - /** - * Opens file or URL - * - * @param string $path - * @param string $mode - * @param int $options - * @param string $opened_path - * @return bool - * @access public - */ - function _stream_open($path, $mode, $options, &$opened_path) - { - $path = $this->_parse_path($path); - - if ($path === false) { - return false; - } - $this->path = $path; - - $this->size = $this->sftp->size($path); - $this->mode = preg_replace('#[bt]$#', '', $mode); - $this->eof = false; - - if ($this->size === false) { - if ($this->mode[0] == 'r') { - return false; - } else { - $this->sftp->touch($path); - $this->size = 0; - } - } else { - switch ($this->mode[0]) { - case 'x': - return false; - case 'w': - $this->sftp->truncate($path, 0); - $this->size = 0; - } - } - - $this->pos = $this->mode[0] != 'a' ? 0 : $this->size; - - return true; - } - - /** - * Read from stream - * - * @param int $count - * @return mixed - * @access public - */ - function _stream_read($count) - { - switch ($this->mode) { - case 'w': - case 'a': - case 'x': - case 'c': - return false; - } - - // commented out because some files - eg. /dev/urandom - will say their size is 0 when in fact it's kinda infinite - //if ($this->pos >= $this->size) { - // $this->eof = true; - // return false; - //} - - $result = $this->sftp->get($this->path, false, $this->pos, $count); - if (isset($this->notification) && is_callable($this->notification)) { - if ($result === false) { - call_user_func($this->notification, STREAM_NOTIFY_FAILURE, STREAM_NOTIFY_SEVERITY_ERR, $this->sftp->getLastSFTPError(), NET_SFTP_OPEN, 0, 0); - return 0; - } - // seems that PHP calls stream_read in 8k chunks - call_user_func($this->notification, STREAM_NOTIFY_PROGRESS, STREAM_NOTIFY_SEVERITY_INFO, '', 0, strlen($result), $this->size); - } - - if (empty($result)) { // ie. false or empty string - $this->eof = true; - return false; - } - $this->pos+= strlen($result); - - return $result; - } - - /** - * Write to stream - * - * @param string $data - * @return mixed - * @access public - */ - function _stream_write($data) - { - switch ($this->mode) { - case 'r': - return false; - } - - $result = $this->sftp->put($this->path, $data, SFTP::SOURCE_STRING, $this->pos); - if (isset($this->notification) && is_callable($this->notification)) { - if (!$result) { - call_user_func($this->notification, STREAM_NOTIFY_FAILURE, STREAM_NOTIFY_SEVERITY_ERR, $this->sftp->getLastSFTPError(), NET_SFTP_OPEN, 0, 0); - return 0; - } - // seems that PHP splits up strings into 8k blocks before calling stream_write - call_user_func($this->notification, STREAM_NOTIFY_PROGRESS, STREAM_NOTIFY_SEVERITY_INFO, '', 0, strlen($data), strlen($data)); - } - - if ($result === false) { - return false; - } - $this->pos+= strlen($data); - if ($this->pos > $this->size) { - $this->size = $this->pos; - } - $this->eof = false; - return strlen($data); - } - - /** - * Retrieve the current position of a stream - * - * @return int - * @access public - */ - function _stream_tell() - { - return $this->pos; - } - - /** - * Tests for end-of-file on a file pointer - * - * In my testing there are four classes functions that normally effect the pointer: - * fseek, fputs / fwrite, fgets / fread and ftruncate. - * - * Only fgets / fread, however, results in feof() returning true. do fputs($fp, 'aaa') on a blank file and feof() - * will return false. do fread($fp, 1) and feof() will then return true. do fseek($fp, 10) on ablank file and feof() - * will return false. do fread($fp, 1) and feof() will then return true. - * - * @return bool - * @access public - */ - function _stream_eof() - { - return $this->eof; - } - - /** - * Seeks to specific location in a stream - * - * @param int $offset - * @param int $whence - * @return bool - * @access public - */ - function _stream_seek($offset, $whence) - { - switch ($whence) { - case SEEK_SET: - if ($offset >= $this->size || $offset < 0) { - return false; - } - break; - case SEEK_CUR: - $offset+= $this->pos; - break; - case SEEK_END: - $offset+= $this->size; - } - - $this->pos = $offset; - $this->eof = false; - return true; - } - - /** - * Change stream options - * - * @param string $path - * @param int $option - * @param mixed $var - * @return bool - * @access public - */ - function _stream_metadata($path, $option, $var) - { - $path = $this->_parse_path($path); - if ($path === false) { - return false; - } - - // stream_metadata was introduced in PHP 5.4.0 but as of 5.4.11 the constants haven't been defined - // see http://www.php.net/streamwrapper.stream-metadata and https://bugs.php.net/64246 - // and https://github.com/php/php-src/blob/master/main/php_streams.h#L592 - switch ($option) { - case 1: // PHP_STREAM_META_TOUCH - return $this->sftp->touch($path, $var[0], $var[1]); - case 2: // PHP_STREAM_OWNER_NAME - case 3: // PHP_STREAM_GROUP_NAME - return false; - case 4: // PHP_STREAM_META_OWNER - return $this->sftp->chown($path, $var); - case 5: // PHP_STREAM_META_GROUP - return $this->sftp->chgrp($path, $var); - case 6: // PHP_STREAM_META_ACCESS - return $this->sftp->chmod($path, $var) !== false; - } - } - - /** - * Retrieve the underlaying resource - * - * @param int $cast_as - * @return resource - * @access public - */ - function _stream_cast($cast_as) - { - return $this->sftp->fsock; - } - - /** - * Advisory file locking - * - * @param int $operation - * @return bool - * @access public - */ - function _stream_lock($operation) - { - return false; - } - - /** - * Renames a file or directory - * - * Attempts to rename oldname to newname, moving it between directories if necessary. - * If newname exists, it will be overwritten. This is a departure from what \phpseclib\Net\SFTP - * does. - * - * @param string $path_from - * @param string $path_to - * @return bool - * @access public - */ - function _rename($path_from, $path_to) - { - $path1 = parse_url($path_from); - $path2 = parse_url($path_to); - unset($path1['path'], $path2['path']); - if ($path1 != $path2) { - return false; - } - - $path_from = $this->_parse_path($path_from); - $path_to = parse_url($path_to); - if ($path_from === false) { - return false; - } - - $path_to = $path_to['path']; // the $component part of parse_url() was added in PHP 5.1.2 - // "It is an error if there already exists a file with the name specified by newpath." - // -- http://tools.ietf.org/html/draft-ietf-secsh-filexfer-02#section-6.5 - if (!$this->sftp->rename($path_from, $path_to)) { - if ($this->sftp->stat($path_to)) { - return $this->sftp->delete($path_to, true) && $this->sftp->rename($path_from, $path_to); - } - return false; - } - - return true; - } - - /** - * Open directory handle - * - * The only $options is "whether or not to enforce safe_mode (0x04)". Since safe mode was deprecated in 5.3 and - * removed in 5.4 I'm just going to ignore it. - * - * Also, nlist() is the best that this function is realistically going to be able to do. When an SFTP client - * sends a SSH_FXP_READDIR packet you don't generally get info on just one file but on multiple files. Quoting - * the SFTP specs: - * - * The SSH_FXP_NAME response has the following format: - * - * uint32 id - * uint32 count - * repeats count times: - * string filename - * string longname - * ATTRS attrs - * - * @param string $path - * @param int $options - * @return bool - * @access public - */ - function _dir_opendir($path, $options) - { - $path = $this->_parse_path($path); - if ($path === false) { - return false; - } - $this->pos = 0; - $this->entries = $this->sftp->nlist($path); - return $this->entries !== false; - } - - /** - * Read entry from directory handle - * - * @return mixed - * @access public - */ - function _dir_readdir() - { - if (isset($this->entries[$this->pos])) { - return $this->entries[$this->pos++]; - } - return false; - } - - /** - * Rewind directory handle - * - * @return bool - * @access public - */ - function _dir_rewinddir() - { - $this->pos = 0; - return true; - } - - /** - * Close directory handle - * - * @return bool - * @access public - */ - function _dir_closedir() - { - return true; - } - - /** - * Create a directory - * - * Only valid $options is STREAM_MKDIR_RECURSIVE - * - * @param string $path - * @param int $mode - * @param int $options - * @return bool - * @access public - */ - function _mkdir($path, $mode, $options) - { - $path = $this->_parse_path($path); - if ($path === false) { - return false; - } - - return $this->sftp->mkdir($path, $mode, $options & STREAM_MKDIR_RECURSIVE); - } - - /** - * Removes a directory - * - * Only valid $options is STREAM_MKDIR_RECURSIVE per , however, - * does not have a $recursive parameter as mkdir() does so I don't know how - * STREAM_MKDIR_RECURSIVE is supposed to be set. Also, when I try it out with rmdir() I get 8 as - * $options. What does 8 correspond to? - * - * @param string $path - * @param int $mode - * @param int $options - * @return bool - * @access public - */ - function _rmdir($path, $options) - { - $path = $this->_parse_path($path); - if ($path === false) { - return false; - } - - return $this->sftp->rmdir($path); - } - - /** - * Flushes the output - * - * See . Always returns true because \phpseclib\Net\SFTP doesn't cache stuff before writing - * - * @return bool - * @access public - */ - function _stream_flush() - { - return true; - } - - /** - * Retrieve information about a file resource - * - * @return mixed - * @access public - */ - function _stream_stat() - { - $results = $this->sftp->stat($this->path); - if ($results === false) { - return false; - } - return $results; - } - - /** - * Delete a file - * - * @param string $path - * @return bool - * @access public - */ - function _unlink($path) - { - $path = $this->_parse_path($path); - if ($path === false) { - return false; - } - - return $this->sftp->delete($path, false); - } - - /** - * Retrieve information about a file - * - * Ignores the STREAM_URL_STAT_QUIET flag because the entirety of \phpseclib\Net\SFTP\Stream is quiet by default - * might be worthwhile to reconstruct bits 12-16 (ie. the file type) if mode doesn't have them but we'll - * cross that bridge when and if it's reached - * - * @param string $path - * @param int $flags - * @return mixed - * @access public - */ - function _url_stat($path, $flags) - { - $path = $this->_parse_path($path); - if ($path === false) { - return false; - } - - $results = $flags & STREAM_URL_STAT_LINK ? $this->sftp->lstat($path) : $this->sftp->stat($path); - if ($results === false) { - return false; - } - - return $results; - } - - /** - * Truncate stream - * - * @param int $new_size - * @return bool - * @access public - */ - function _stream_truncate($new_size) - { - if (!$this->sftp->truncate($this->path, $new_size)) { - return false; - } - - $this->eof = false; - $this->size = $new_size; - - return true; - } - - /** - * Change stream options - * - * STREAM_OPTION_WRITE_BUFFER isn't supported for the same reason stream_flush isn't. - * The other two aren't supported because of limitations in \phpseclib\Net\SFTP. - * - * @param int $option - * @param int $arg1 - * @param int $arg2 - * @return bool - * @access public - */ - function _stream_set_option($option, $arg1, $arg2) - { - return false; - } - - /** - * Close an resource - * - * @access public - */ - function _stream_close() - { - } - - /** - * __call Magic Method - * - * When you're utilizing an SFTP stream you're not calling the methods in this class directly - PHP is calling them for you. - * Which kinda begs the question... what methods is PHP calling and what parameters is it passing to them? This function - * lets you figure that out. - * - * If NET_SFTP_STREAM_LOGGING is defined all calls will be output on the screen and then (regardless of whether or not - * NET_SFTP_STREAM_LOGGING is enabled) the parameters will be passed through to the appropriate method. - * - * @param string - * @param array - * @return mixed - * @access public - */ - function __call($name, $arguments) - { - if (defined('NET_SFTP_STREAM_LOGGING')) { - echo $name . '('; - $last = count($arguments) - 1; - foreach ($arguments as $i => $argument) { - var_export($argument); - if ($i != $last) { - echo ','; - } - } - echo ")\r\n"; - } - $name = '_' . $name; - if (!method_exists($this, $name)) { - return false; - } - return call_user_func_array(array($this, $name), $arguments); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/Net/SSH1.php b/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/Net/SSH1.php deleted file mode 100644 index ff48d543..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/Net/SSH1.php +++ /dev/null @@ -1,1645 +0,0 @@ - - * login('username', 'password')) { - * exit('Login Failed'); - * } - * - * echo $ssh->exec('ls -la'); - * ?> - * - * - * Here's another short example: - * - * login('username', 'password')) { - * exit('Login Failed'); - * } - * - * echo $ssh->read('username@username:~$'); - * $ssh->write("ls -la\n"); - * echo $ssh->read('username@username:~$'); - * ?> - * - * - * More information on the SSHv1 specification can be found by reading - * {@link http://www.snailbook.com/docs/protocol-1.5.txt protocol-1.5.txt}. - * - * @category Net - * @package SSH1 - * @author Jim Wigginton - * @copyright 2007 Jim Wigginton - * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @link http://phpseclib.sourceforge.net - */ - -namespace phpseclib\Net; - -use phpseclib\Crypt\DES; -use phpseclib\Crypt\Random; -use phpseclib\Crypt\TripleDES; -use phpseclib\Math\BigInteger; - -/** - * Pure-PHP implementation of SSHv1. - * - * @package SSH1 - * @author Jim Wigginton - * @access public - */ -class SSH1 -{ - /**#@+ - * Encryption Methods - * - * @see \phpseclib\Net\SSH1::getSupportedCiphers() - * @access public - */ - /** - * No encryption - * - * Not supported. - */ - const CIPHER_NONE = 0; - /** - * IDEA in CFB mode - * - * Not supported. - */ - const CIPHER_IDEA = 1; - /** - * DES in CBC mode - */ - const CIPHER_DES = 2; - /** - * Triple-DES in CBC mode - * - * All implementations are required to support this - */ - const CIPHER_3DES = 3; - /** - * TRI's Simple Stream encryption CBC - * - * Not supported nor is it defined in the official SSH1 specs. OpenSSH, however, does define it (see cipher.h), - * although it doesn't use it (see cipher.c) - */ - const CIPHER_BROKEN_TSS = 4; - /** - * RC4 - * - * Not supported. - * - * @internal According to the SSH1 specs: - * - * "The first 16 bytes of the session key are used as the key for - * the server to client direction. The remaining 16 bytes are used - * as the key for the client to server direction. This gives - * independent 128-bit keys for each direction." - * - * This library currently only supports encryption when the same key is being used for both directions. This is - * because there's only one $crypto object. Two could be added ($encrypt and $decrypt, perhaps). - */ - const CIPHER_RC4 = 5; - /** - * Blowfish - * - * Not supported nor is it defined in the official SSH1 specs. OpenSSH, however, defines it (see cipher.h) and - * uses it (see cipher.c) - */ - const CIPHER_BLOWFISH = 6; - /**#@-*/ - - /**#@+ - * Authentication Methods - * - * @see \phpseclib\Net\SSH1::getSupportedAuthentications() - * @access public - */ - /** - * .rhosts or /etc/hosts.equiv - */ - const AUTH_RHOSTS = 1; - /** - * pure RSA authentication - */ - const AUTH_RSA = 2; - /** - * password authentication - * - * This is the only method that is supported by this library. - */ - const AUTH_PASSWORD = 3; - /** - * .rhosts with RSA host authentication - */ - const AUTH_RHOSTS_RSA = 4; - /**#@-*/ - - /**#@+ - * Terminal Modes - * - * @link http://3sp.com/content/developer/maverick-net/docs/Maverick.SSH.PseudoTerminalModesMembers.html - * @access private - */ - const TTY_OP_END = 0; - /**#@-*/ - - /** - * The Response Type - * - * @see \phpseclib\Net\SSH1::_get_binary_packet() - * @access private - */ - const RESPONSE_TYPE = 1; - - /** - * The Response Data - * - * @see \phpseclib\Net\SSH1::_get_binary_packet() - * @access private - */ - const RESPONSE_DATA = 2; - - /**#@+ - * Execution Bitmap Masks - * - * @see \phpseclib\Net\SSH1::bitmap - * @access private - */ - const MASK_CONSTRUCTOR = 0x00000001; - const MASK_CONNECTED = 0x00000002; - const MASK_LOGIN = 0x00000004; - const MASK_SHELL = 0x00000008; - /**#@-*/ - - /**#@+ - * @access public - * @see \phpseclib\Net\SSH1::getLog() - */ - /** - * Returns the message numbers - */ - const LOG_SIMPLE = 1; - /** - * Returns the message content - */ - const LOG_COMPLEX = 2; - /** - * Outputs the content real-time - */ - const LOG_REALTIME = 3; - /** - * Dumps the content real-time to a file - */ - const LOG_REALTIME_FILE = 4; - /**#@-*/ - - /**#@+ - * @access public - * @see \phpseclib\Net\SSH1::read() - */ - /** - * Returns when a string matching $expect exactly is found - */ - const READ_SIMPLE = 1; - /** - * Returns when a string matching the regular expression $expect is found - */ - const READ_REGEX = 2; - /**#@-*/ - - /** - * The SSH identifier - * - * @var string - * @access private - */ - var $identifier = 'SSH-1.5-phpseclib'; - - /** - * The Socket Object - * - * @var object - * @access private - */ - var $fsock; - - /** - * The cryptography object - * - * @var object - * @access private - */ - var $crypto = false; - - /** - * Execution Bitmap - * - * The bits that are set represent functions that have been called already. This is used to determine - * if a requisite function has been successfully executed. If not, an error should be thrown. - * - * @var int - * @access private - */ - var $bitmap = 0; - - /** - * The Server Key Public Exponent - * - * Logged for debug purposes - * - * @see self::getServerKeyPublicExponent() - * @var string - * @access private - */ - var $server_key_public_exponent; - - /** - * The Server Key Public Modulus - * - * Logged for debug purposes - * - * @see self::getServerKeyPublicModulus() - * @var string - * @access private - */ - var $server_key_public_modulus; - - /** - * The Host Key Public Exponent - * - * Logged for debug purposes - * - * @see self::getHostKeyPublicExponent() - * @var string - * @access private - */ - var $host_key_public_exponent; - - /** - * The Host Key Public Modulus - * - * Logged for debug purposes - * - * @see self::getHostKeyPublicModulus() - * @var string - * @access private - */ - var $host_key_public_modulus; - - /** - * Supported Ciphers - * - * Logged for debug purposes - * - * @see self::getSupportedCiphers() - * @var array - * @access private - */ - var $supported_ciphers = array( - self::CIPHER_NONE => 'No encryption', - self::CIPHER_IDEA => 'IDEA in CFB mode', - self::CIPHER_DES => 'DES in CBC mode', - self::CIPHER_3DES => 'Triple-DES in CBC mode', - self::CIPHER_BROKEN_TSS => 'TRI\'s Simple Stream encryption CBC', - self::CIPHER_RC4 => 'RC4', - self::CIPHER_BLOWFISH => 'Blowfish' - ); - - /** - * Supported Authentications - * - * Logged for debug purposes - * - * @see self::getSupportedAuthentications() - * @var array - * @access private - */ - var $supported_authentications = array( - self::AUTH_RHOSTS => '.rhosts or /etc/hosts.equiv', - self::AUTH_RSA => 'pure RSA authentication', - self::AUTH_PASSWORD => 'password authentication', - self::AUTH_RHOSTS_RSA => '.rhosts with RSA host authentication' - ); - - /** - * Server Identification - * - * @see self::getServerIdentification() - * @var string - * @access private - */ - var $server_identification = ''; - - /** - * Protocol Flags - * - * @see self::__construct() - * @var array - * @access private - */ - var $protocol_flags = array(); - - /** - * Protocol Flag Log - * - * @see self::getLog() - * @var array - * @access private - */ - var $protocol_flag_log = array(); - - /** - * Message Log - * - * @see self::getLog() - * @var array - * @access private - */ - var $message_log = array(); - - /** - * Real-time log file pointer - * - * @see self::_append_log() - * @var resource - * @access private - */ - var $realtime_log_file; - - /** - * Real-time log file size - * - * @see self::_append_log() - * @var int - * @access private - */ - var $realtime_log_size; - - /** - * Real-time log file wrap boolean - * - * @see self::_append_log() - * @var bool - * @access private - */ - var $realtime_log_wrap; - - /** - * Interactive Buffer - * - * @see self::read() - * @var array - * @access private - */ - var $interactiveBuffer = ''; - - /** - * Timeout - * - * @see self::setTimeout() - * @access private - */ - var $timeout; - - /** - * Current Timeout - * - * @see self::_get_channel_packet() - * @access private - */ - var $curTimeout; - - /** - * Log Boundary - * - * @see self::_format_log() - * @access private - */ - var $log_boundary = ':'; - - /** - * Log Long Width - * - * @see self::_format_log() - * @access private - */ - var $log_long_width = 65; - - /** - * Log Short Width - * - * @see self::_format_log() - * @access private - */ - var $log_short_width = 16; - - /** - * Hostname - * - * @see self::__construct() - * @see self::_connect() - * @var string - * @access private - */ - var $host; - - /** - * Port Number - * - * @see self::__construct() - * @see self::_connect() - * @var int - * @access private - */ - var $port; - - /** - * Timeout for initial connection - * - * Set by the constructor call. Calling setTimeout() is optional. If it's not called functions like - * exec() won't timeout unless some PHP setting forces it too. The timeout specified in the constructor, - * however, is non-optional. There will be a timeout, whether or not you set it. If you don't it'll be - * 10 seconds. It is used by fsockopen() in that function. - * - * @see self::__construct() - * @see self::_connect() - * @var int - * @access private - */ - var $connectionTimeout; - - /** - * Default cipher - * - * @see self::__construct() - * @see self::_connect() - * @var int - * @access private - */ - var $cipher; - - /** - * Default Constructor. - * - * Connects to an SSHv1 server - * - * @param string $host - * @param int $port - * @param int $timeout - * @param int $cipher - * @return \phpseclib\Net\SSH1 - * @access public - */ - function __construct($host, $port = 22, $timeout = 10, $cipher = self::CIPHER_3DES) - { - $this->protocol_flags = array( - 1 => 'NET_SSH1_MSG_DISCONNECT', - 2 => 'NET_SSH1_SMSG_PUBLIC_KEY', - 3 => 'NET_SSH1_CMSG_SESSION_KEY', - 4 => 'NET_SSH1_CMSG_USER', - 9 => 'NET_SSH1_CMSG_AUTH_PASSWORD', - 10 => 'NET_SSH1_CMSG_REQUEST_PTY', - 12 => 'NET_SSH1_CMSG_EXEC_SHELL', - 13 => 'NET_SSH1_CMSG_EXEC_CMD', - 14 => 'NET_SSH1_SMSG_SUCCESS', - 15 => 'NET_SSH1_SMSG_FAILURE', - 16 => 'NET_SSH1_CMSG_STDIN_DATA', - 17 => 'NET_SSH1_SMSG_STDOUT_DATA', - 18 => 'NET_SSH1_SMSG_STDERR_DATA', - 19 => 'NET_SSH1_CMSG_EOF', - 20 => 'NET_SSH1_SMSG_EXITSTATUS', - 33 => 'NET_SSH1_CMSG_EXIT_CONFIRMATION' - ); - - $this->_define_array($this->protocol_flags); - - $this->host = $host; - $this->port = $port; - $this->connectionTimeout = $timeout; - $this->cipher = $cipher; - } - - /** - * Connect to an SSHv1 server - * - * @return bool - * @access private - */ - function _connect() - { - $this->fsock = @fsockopen($this->host, $this->port, $errno, $errstr, $this->connectionTimeout); - if (!$this->fsock) { - user_error(rtrim("Cannot connect to {$this->host}:{$this->port}. Error $errno. $errstr")); - return false; - } - - $this->server_identification = $init_line = fgets($this->fsock, 255); - - if (defined('NET_SSH1_LOGGING')) { - $this->_append_log('<-', $this->server_identification); - $this->_append_log('->', $this->identifier . "\r\n"); - } - - if (!preg_match('#SSH-([0-9\.]+)-(.+)#', $init_line, $parts)) { - user_error('Can only connect to SSH servers'); - return false; - } - if ($parts[1][0] != 1) { - user_error("Cannot connect to SSH $parts[1] servers"); - return false; - } - - fputs($this->fsock, $this->identifier."\r\n"); - - $response = $this->_get_binary_packet(); - if ($response[self::RESPONSE_TYPE] != NET_SSH1_SMSG_PUBLIC_KEY) { - user_error('Expected SSH_SMSG_PUBLIC_KEY'); - return false; - } - - $anti_spoofing_cookie = $this->_string_shift($response[self::RESPONSE_DATA], 8); - - $this->_string_shift($response[self::RESPONSE_DATA], 4); - - if (strlen($response[self::RESPONSE_DATA]) < 2) { - return false; - } - $temp = unpack('nlen', $this->_string_shift($response[self::RESPONSE_DATA], 2)); - $server_key_public_exponent = new BigInteger($this->_string_shift($response[self::RESPONSE_DATA], ceil($temp['len'] / 8)), 256); - $this->server_key_public_exponent = $server_key_public_exponent; - - if (strlen($response[self::RESPONSE_DATA]) < 2) { - return false; - } - $temp = unpack('nlen', $this->_string_shift($response[self::RESPONSE_DATA], 2)); - $server_key_public_modulus = new BigInteger($this->_string_shift($response[self::RESPONSE_DATA], ceil($temp['len'] / 8)), 256); - - $this->server_key_public_modulus = $server_key_public_modulus; - - $this->_string_shift($response[self::RESPONSE_DATA], 4); - - if (strlen($response[self::RESPONSE_DATA]) < 2) { - return false; - } - $temp = unpack('nlen', $this->_string_shift($response[self::RESPONSE_DATA], 2)); - $host_key_public_exponent = new BigInteger($this->_string_shift($response[self::RESPONSE_DATA], ceil($temp['len'] / 8)), 256); - $this->host_key_public_exponent = $host_key_public_exponent; - - if (strlen($response[self::RESPONSE_DATA]) < 2) { - return false; - } - $temp = unpack('nlen', $this->_string_shift($response[self::RESPONSE_DATA], 2)); - $host_key_public_modulus = new BigInteger($this->_string_shift($response[self::RESPONSE_DATA], ceil($temp['len'] / 8)), 256); - - $this->host_key_public_modulus = $host_key_public_modulus; - - $this->_string_shift($response[self::RESPONSE_DATA], 4); - - // get a list of the supported ciphers - if (strlen($response[self::RESPONSE_DATA]) < 4) { - return false; - } - extract(unpack('Nsupported_ciphers_mask', $this->_string_shift($response[self::RESPONSE_DATA], 4))); - - foreach ($this->supported_ciphers as $mask => $name) { - if (($supported_ciphers_mask & (1 << $mask)) == 0) { - unset($this->supported_ciphers[$mask]); - } - } - - // get a list of the supported authentications - if (strlen($response[self::RESPONSE_DATA]) < 4) { - return false; - } - extract(unpack('Nsupported_authentications_mask', $this->_string_shift($response[self::RESPONSE_DATA], 4))); - foreach ($this->supported_authentications as $mask => $name) { - if (($supported_authentications_mask & (1 << $mask)) == 0) { - unset($this->supported_authentications[$mask]); - } - } - - $session_id = pack('H*', md5($host_key_public_modulus->toBytes() . $server_key_public_modulus->toBytes() . $anti_spoofing_cookie)); - - $session_key = Random::string(32); - $double_encrypted_session_key = $session_key ^ str_pad($session_id, 32, chr(0)); - - if ($server_key_public_modulus->compare($host_key_public_modulus) < 0) { - $double_encrypted_session_key = $this->_rsa_crypt( - $double_encrypted_session_key, - array( - $server_key_public_exponent, - $server_key_public_modulus - ) - ); - $double_encrypted_session_key = $this->_rsa_crypt( - $double_encrypted_session_key, - array( - $host_key_public_exponent, - $host_key_public_modulus - ) - ); - } else { - $double_encrypted_session_key = $this->_rsa_crypt( - $double_encrypted_session_key, - array( - $host_key_public_exponent, - $host_key_public_modulus - ) - ); - $double_encrypted_session_key = $this->_rsa_crypt( - $double_encrypted_session_key, - array( - $server_key_public_exponent, - $server_key_public_modulus - ) - ); - } - - $cipher = isset($this->supported_ciphers[$this->cipher]) ? $this->cipher : self::CIPHER_3DES; - $data = pack('C2a*na*N', NET_SSH1_CMSG_SESSION_KEY, $cipher, $anti_spoofing_cookie, 8 * strlen($double_encrypted_session_key), $double_encrypted_session_key, 0); - - if (!$this->_send_binary_packet($data)) { - user_error('Error sending SSH_CMSG_SESSION_KEY'); - return false; - } - - switch ($cipher) { - //case self::CIPHER_NONE: - // $this->crypto = new \phpseclib\Crypt\Null(); - // break; - case self::CIPHER_DES: - $this->crypto = new DES(); - $this->crypto->disablePadding(); - $this->crypto->enableContinuousBuffer(); - $this->crypto->setKey(substr($session_key, 0, 8)); - break; - case self::CIPHER_3DES: - $this->crypto = new TripleDES(TripleDES::MODE_3CBC); - $this->crypto->disablePadding(); - $this->crypto->enableContinuousBuffer(); - $this->crypto->setKey(substr($session_key, 0, 24)); - break; - //case self::CIPHER_RC4: - // $this->crypto = new RC4(); - // $this->crypto->enableContinuousBuffer(); - // $this->crypto->setKey(substr($session_key, 0, 16)); - // break; - } - - $response = $this->_get_binary_packet(); - - if ($response[self::RESPONSE_TYPE] != NET_SSH1_SMSG_SUCCESS) { - user_error('Expected SSH_SMSG_SUCCESS'); - return false; - } - - $this->bitmap = self::MASK_CONNECTED; - - return true; - } - - /** - * Login - * - * @param string $username - * @param string $password - * @return bool - * @access public - */ - function login($username, $password = '') - { - if (!($this->bitmap & self::MASK_CONSTRUCTOR)) { - $this->bitmap |= self::MASK_CONSTRUCTOR; - if (!$this->_connect()) { - return false; - } - } - - if (!($this->bitmap & self::MASK_CONNECTED)) { - return false; - } - - $data = pack('CNa*', NET_SSH1_CMSG_USER, strlen($username), $username); - - if (!$this->_send_binary_packet($data)) { - user_error('Error sending SSH_CMSG_USER'); - return false; - } - - $response = $this->_get_binary_packet(); - - if ($response === true) { - return false; - } - if ($response[self::RESPONSE_TYPE] == NET_SSH1_SMSG_SUCCESS) { - $this->bitmap |= self::MASK_LOGIN; - return true; - } elseif ($response[self::RESPONSE_TYPE] != NET_SSH1_SMSG_FAILURE) { - user_error('Expected SSH_SMSG_SUCCESS or SSH_SMSG_FAILURE'); - return false; - } - - $data = pack('CNa*', NET_SSH1_CMSG_AUTH_PASSWORD, strlen($password), $password); - - if (!$this->_send_binary_packet($data)) { - user_error('Error sending SSH_CMSG_AUTH_PASSWORD'); - return false; - } - - // remove the username and password from the last logged packet - if (defined('NET_SSH1_LOGGING') && NET_SSH1_LOGGING == self::LOG_COMPLEX) { - $data = pack('CNa*', NET_SSH1_CMSG_AUTH_PASSWORD, strlen('password'), 'password'); - $this->message_log[count($this->message_log) - 1] = $data; - } - - $response = $this->_get_binary_packet(); - - if ($response === true) { - return false; - } - if ($response[self::RESPONSE_TYPE] == NET_SSH1_SMSG_SUCCESS) { - $this->bitmap |= self::MASK_LOGIN; - return true; - } elseif ($response[self::RESPONSE_TYPE] == NET_SSH1_SMSG_FAILURE) { - return false; - } else { - user_error('Expected SSH_SMSG_SUCCESS or SSH_SMSG_FAILURE'); - return false; - } - } - - /** - * Set Timeout - * - * $ssh->exec('ping 127.0.0.1'); on a Linux host will never return and will run indefinitely. setTimeout() makes it so it'll timeout. - * Setting $timeout to false or 0 will mean there is no timeout. - * - * @param mixed $timeout - */ - function setTimeout($timeout) - { - $this->timeout = $this->curTimeout = $timeout; - } - - /** - * Executes a command on a non-interactive shell, returns the output, and quits. - * - * An SSH1 server will close the connection after a command has been executed on a non-interactive shell. SSH2 - * servers don't, however, this isn't an SSH2 client. The way this works, on the server, is by initiating a - * shell with the -s option, as discussed in the following links: - * - * {@link http://www.faqs.org/docs/bashman/bashref_65.html http://www.faqs.org/docs/bashman/bashref_65.html} - * {@link http://www.faqs.org/docs/bashman/bashref_62.html http://www.faqs.org/docs/bashman/bashref_62.html} - * - * To execute further commands, a new \phpseclib\Net\SSH1 object will need to be created. - * - * Returns false on failure and the output, otherwise. - * - * @see self::interactiveRead() - * @see self::interactiveWrite() - * @param string $cmd - * @return mixed - * @access public - */ - function exec($cmd, $block = true) - { - if (!($this->bitmap & self::MASK_LOGIN)) { - user_error('Operation disallowed prior to login()'); - return false; - } - - $data = pack('CNa*', NET_SSH1_CMSG_EXEC_CMD, strlen($cmd), $cmd); - - if (!$this->_send_binary_packet($data)) { - user_error('Error sending SSH_CMSG_EXEC_CMD'); - return false; - } - - if (!$block) { - return true; - } - - $output = ''; - $response = $this->_get_binary_packet(); - - if ($response !== false) { - do { - $output.= substr($response[self::RESPONSE_DATA], 4); - $response = $this->_get_binary_packet(); - } while (is_array($response) && $response[self::RESPONSE_TYPE] != NET_SSH1_SMSG_EXITSTATUS); - } - - $data = pack('C', NET_SSH1_CMSG_EXIT_CONFIRMATION); - - // i don't think it's really all that important if this packet gets sent or not. - $this->_send_binary_packet($data); - - fclose($this->fsock); - - // reset the execution bitmap - a new \phpseclib\Net\SSH1 object needs to be created. - $this->bitmap = 0; - - return $output; - } - - /** - * Creates an interactive shell - * - * @see self::interactiveRead() - * @see self::interactiveWrite() - * @return bool - * @access private - */ - function _initShell() - { - // connect using the sample parameters in protocol-1.5.txt. - // according to wikipedia.org's entry on text terminals, "the fundamental type of application running on a text - // terminal is a command line interpreter or shell". thus, opening a terminal session to run the shell. - $data = pack('CNa*N4C', NET_SSH1_CMSG_REQUEST_PTY, strlen('vt100'), 'vt100', 24, 80, 0, 0, self::TTY_OP_END); - - if (!$this->_send_binary_packet($data)) { - user_error('Error sending SSH_CMSG_REQUEST_PTY'); - return false; - } - - $response = $this->_get_binary_packet(); - - if ($response === true) { - return false; - } - if ($response[self::RESPONSE_TYPE] != NET_SSH1_SMSG_SUCCESS) { - user_error('Expected SSH_SMSG_SUCCESS'); - return false; - } - - $data = pack('C', NET_SSH1_CMSG_EXEC_SHELL); - - if (!$this->_send_binary_packet($data)) { - user_error('Error sending SSH_CMSG_EXEC_SHELL'); - return false; - } - - $this->bitmap |= self::MASK_SHELL; - - //stream_set_blocking($this->fsock, 0); - - return true; - } - - /** - * Inputs a command into an interactive shell. - * - * @see self::interactiveWrite() - * @param string $cmd - * @return bool - * @access public - */ - function write($cmd) - { - return $this->interactiveWrite($cmd); - } - - /** - * Returns the output of an interactive shell when there's a match for $expect - * - * $expect can take the form of a string literal or, if $mode == self::READ_REGEX, - * a regular expression. - * - * @see self::write() - * @param string $expect - * @param int $mode - * @return bool - * @access public - */ - function read($expect, $mode = self::READ_SIMPLE) - { - if (!($this->bitmap & self::MASK_LOGIN)) { - user_error('Operation disallowed prior to login()'); - return false; - } - - if (!($this->bitmap & self::MASK_SHELL) && !$this->_initShell()) { - user_error('Unable to initiate an interactive shell session'); - return false; - } - - $match = $expect; - while (true) { - if ($mode == self::READ_REGEX) { - preg_match($expect, $this->interactiveBuffer, $matches); - $match = isset($matches[0]) ? $matches[0] : ''; - } - $pos = strlen($match) ? strpos($this->interactiveBuffer, $match) : false; - if ($pos !== false) { - return $this->_string_shift($this->interactiveBuffer, $pos + strlen($match)); - } - $response = $this->_get_binary_packet(); - - if ($response === true) { - return $this->_string_shift($this->interactiveBuffer, strlen($this->interactiveBuffer)); - } - $this->interactiveBuffer.= substr($response[self::RESPONSE_DATA], 4); - } - } - - /** - * Inputs a command into an interactive shell. - * - * @see self::interactiveRead() - * @param string $cmd - * @return bool - * @access public - */ - function interactiveWrite($cmd) - { - if (!($this->bitmap & self::MASK_LOGIN)) { - user_error('Operation disallowed prior to login()'); - return false; - } - - if (!($this->bitmap & self::MASK_SHELL) && !$this->_initShell()) { - user_error('Unable to initiate an interactive shell session'); - return false; - } - - $data = pack('CNa*', NET_SSH1_CMSG_STDIN_DATA, strlen($cmd), $cmd); - - if (!$this->_send_binary_packet($data)) { - user_error('Error sending SSH_CMSG_STDIN'); - return false; - } - - return true; - } - - /** - * Returns the output of an interactive shell when no more output is available. - * - * Requires PHP 4.3.0 or later due to the use of the stream_select() function. If you see stuff like - * "^[[00m", you're seeing ANSI escape codes. According to - * {@link http://support.microsoft.com/kb/101875 How to Enable ANSI.SYS in a Command Window}, "Windows NT - * does not support ANSI escape sequences in Win32 Console applications", so if you're a Windows user, - * there's not going to be much recourse. - * - * @see self::interactiveRead() - * @return string - * @access public - */ - function interactiveRead() - { - if (!($this->bitmap & self::MASK_LOGIN)) { - user_error('Operation disallowed prior to login()'); - return false; - } - - if (!($this->bitmap & self::MASK_SHELL) && !$this->_initShell()) { - user_error('Unable to initiate an interactive shell session'); - return false; - } - - $read = array($this->fsock); - $write = $except = null; - if (stream_select($read, $write, $except, 0)) { - $response = $this->_get_binary_packet(); - return substr($response[self::RESPONSE_DATA], 4); - } else { - return ''; - } - } - - /** - * Disconnect - * - * @access public - */ - function disconnect() - { - $this->_disconnect(); - } - - /** - * Destructor. - * - * Will be called, automatically, if you're supporting just PHP5. If you're supporting PHP4, you'll need to call - * disconnect(). - * - * @access public - */ - function __destruct() - { - $this->_disconnect(); - } - - /** - * Disconnect - * - * @param string $msg - * @access private - */ - function _disconnect($msg = 'Client Quit') - { - if ($this->bitmap) { - $data = pack('C', NET_SSH1_CMSG_EOF); - $this->_send_binary_packet($data); - /* - $response = $this->_get_binary_packet(); - if ($response === true) { - $response = array(self::RESPONSE_TYPE => -1); - } - switch ($response[self::RESPONSE_TYPE]) { - case NET_SSH1_SMSG_EXITSTATUS: - $data = pack('C', NET_SSH1_CMSG_EXIT_CONFIRMATION); - break; - default: - $data = pack('CNa*', NET_SSH1_MSG_DISCONNECT, strlen($msg), $msg); - } - */ - $data = pack('CNa*', NET_SSH1_MSG_DISCONNECT, strlen($msg), $msg); - - $this->_send_binary_packet($data); - fclose($this->fsock); - $this->bitmap = 0; - } - } - - /** - * Gets Binary Packets - * - * See 'The Binary Packet Protocol' of protocol-1.5.txt for more info. - * - * Also, this function could be improved upon by adding detection for the following exploit: - * http://www.securiteam.com/securitynews/5LP042K3FY.html - * - * @see self::_send_binary_packet() - * @return array - * @access private - */ - function _get_binary_packet() - { - if (feof($this->fsock)) { - //user_error('connection closed prematurely'); - return false; - } - - if ($this->curTimeout) { - $read = array($this->fsock); - $write = $except = null; - - $start = strtok(microtime(), ' ') + strtok(''); // http://php.net/microtime#61838 - $sec = floor($this->curTimeout); - $usec = 1000000 * ($this->curTimeout - $sec); - // on windows this returns a "Warning: Invalid CRT parameters detected" error - if (!@stream_select($read, $write, $except, $sec, $usec) && !count($read)) { - //$this->_disconnect('Timeout'); - return true; - } - $elapsed = strtok(microtime(), ' ') + strtok('') - $start; - $this->curTimeout-= $elapsed; - } - - $start = strtok(microtime(), ' ') + strtok(''); // http://php.net/microtime#61838 - $data = fread($this->fsock, 4); - if (strlen($data) < 4) { - return false; - } - $temp = unpack('Nlength', $data); - - $padding_length = 8 - ($temp['length'] & 7); - $length = $temp['length'] + $padding_length; - $raw = ''; - - while ($length > 0) { - $temp = fread($this->fsock, $length); - if (strlen($temp) != $length) { - return false; - } - $raw.= $temp; - $length-= strlen($temp); - } - $stop = strtok(microtime(), ' ') + strtok(''); - - if (strlen($raw) && $this->crypto !== false) { - $raw = $this->crypto->decrypt($raw); - } - - $padding = substr($raw, 0, $padding_length); - $type = $raw[$padding_length]; - $data = substr($raw, $padding_length + 1, -4); - - if (strlen($raw) < 4) { - return false; - } - $temp = unpack('Ncrc', substr($raw, -4)); - - //if ( $temp['crc'] != $this->_crc($padding . $type . $data) ) { - // user_error('Bad CRC in packet from server'); - // return false; - //} - - $type = ord($type); - - if (defined('NET_SSH1_LOGGING')) { - $temp = isset($this->protocol_flags[$type]) ? $this->protocol_flags[$type] : 'UNKNOWN'; - $temp = '<- ' . $temp . - ' (' . round($stop - $start, 4) . 's)'; - $this->_append_log($temp, $data); - } - - return array( - self::RESPONSE_TYPE => $type, - self::RESPONSE_DATA => $data - ); - } - - /** - * Sends Binary Packets - * - * Returns true on success, false on failure. - * - * @see self::_get_binary_packet() - * @param string $data - * @return bool - * @access private - */ - function _send_binary_packet($data) - { - if (feof($this->fsock)) { - //user_error('connection closed prematurely'); - return false; - } - - $length = strlen($data) + 4; - - $padding = Random::string(8 - ($length & 7)); - - $orig = $data; - $data = $padding . $data; - $data.= pack('N', $this->_crc($data)); - - if ($this->crypto !== false) { - $data = $this->crypto->encrypt($data); - } - - $packet = pack('Na*', $length, $data); - - $start = strtok(microtime(), ' ') + strtok(''); // http://php.net/microtime#61838 - $result = strlen($packet) == fputs($this->fsock, $packet); - $stop = strtok(microtime(), ' ') + strtok(''); - - if (defined('NET_SSH1_LOGGING')) { - $temp = isset($this->protocol_flags[ord($orig[0])]) ? $this->protocol_flags[ord($orig[0])] : 'UNKNOWN'; - $temp = '-> ' . $temp . - ' (' . round($stop - $start, 4) . 's)'; - $this->_append_log($temp, $orig); - } - - return $result; - } - - /** - * Cyclic Redundancy Check (CRC) - * - * PHP's crc32 function is implemented slightly differently than the one that SSH v1 uses, so - * we've reimplemented it. A more detailed discussion of the differences can be found after - * $crc_lookup_table's initialization. - * - * @see self::_get_binary_packet() - * @see self::_send_binary_packet() - * @param string $data - * @return int - * @access private - */ - function _crc($data) - { - static $crc_lookup_table = array( - 0x00000000, 0x77073096, 0xEE0E612C, 0x990951BA, - 0x076DC419, 0x706AF48F, 0xE963A535, 0x9E6495A3, - 0x0EDB8832, 0x79DCB8A4, 0xE0D5E91E, 0x97D2D988, - 0x09B64C2B, 0x7EB17CBD, 0xE7B82D07, 0x90BF1D91, - 0x1DB71064, 0x6AB020F2, 0xF3B97148, 0x84BE41DE, - 0x1ADAD47D, 0x6DDDE4EB, 0xF4D4B551, 0x83D385C7, - 0x136C9856, 0x646BA8C0, 0xFD62F97A, 0x8A65C9EC, - 0x14015C4F, 0x63066CD9, 0xFA0F3D63, 0x8D080DF5, - 0x3B6E20C8, 0x4C69105E, 0xD56041E4, 0xA2677172, - 0x3C03E4D1, 0x4B04D447, 0xD20D85FD, 0xA50AB56B, - 0x35B5A8FA, 0x42B2986C, 0xDBBBC9D6, 0xACBCF940, - 0x32D86CE3, 0x45DF5C75, 0xDCD60DCF, 0xABD13D59, - 0x26D930AC, 0x51DE003A, 0xC8D75180, 0xBFD06116, - 0x21B4F4B5, 0x56B3C423, 0xCFBA9599, 0xB8BDA50F, - 0x2802B89E, 0x5F058808, 0xC60CD9B2, 0xB10BE924, - 0x2F6F7C87, 0x58684C11, 0xC1611DAB, 0xB6662D3D, - 0x76DC4190, 0x01DB7106, 0x98D220BC, 0xEFD5102A, - 0x71B18589, 0x06B6B51F, 0x9FBFE4A5, 0xE8B8D433, - 0x7807C9A2, 0x0F00F934, 0x9609A88E, 0xE10E9818, - 0x7F6A0DBB, 0x086D3D2D, 0x91646C97, 0xE6635C01, - 0x6B6B51F4, 0x1C6C6162, 0x856530D8, 0xF262004E, - 0x6C0695ED, 0x1B01A57B, 0x8208F4C1, 0xF50FC457, - 0x65B0D9C6, 0x12B7E950, 0x8BBEB8EA, 0xFCB9887C, - 0x62DD1DDF, 0x15DA2D49, 0x8CD37CF3, 0xFBD44C65, - 0x4DB26158, 0x3AB551CE, 0xA3BC0074, 0xD4BB30E2, - 0x4ADFA541, 0x3DD895D7, 0xA4D1C46D, 0xD3D6F4FB, - 0x4369E96A, 0x346ED9FC, 0xAD678846, 0xDA60B8D0, - 0x44042D73, 0x33031DE5, 0xAA0A4C5F, 0xDD0D7CC9, - 0x5005713C, 0x270241AA, 0xBE0B1010, 0xC90C2086, - 0x5768B525, 0x206F85B3, 0xB966D409, 0xCE61E49F, - 0x5EDEF90E, 0x29D9C998, 0xB0D09822, 0xC7D7A8B4, - 0x59B33D17, 0x2EB40D81, 0xB7BD5C3B, 0xC0BA6CAD, - 0xEDB88320, 0x9ABFB3B6, 0x03B6E20C, 0x74B1D29A, - 0xEAD54739, 0x9DD277AF, 0x04DB2615, 0x73DC1683, - 0xE3630B12, 0x94643B84, 0x0D6D6A3E, 0x7A6A5AA8, - 0xE40ECF0B, 0x9309FF9D, 0x0A00AE27, 0x7D079EB1, - 0xF00F9344, 0x8708A3D2, 0x1E01F268, 0x6906C2FE, - 0xF762575D, 0x806567CB, 0x196C3671, 0x6E6B06E7, - 0xFED41B76, 0x89D32BE0, 0x10DA7A5A, 0x67DD4ACC, - 0xF9B9DF6F, 0x8EBEEFF9, 0x17B7BE43, 0x60B08ED5, - 0xD6D6A3E8, 0xA1D1937E, 0x38D8C2C4, 0x4FDFF252, - 0xD1BB67F1, 0xA6BC5767, 0x3FB506DD, 0x48B2364B, - 0xD80D2BDA, 0xAF0A1B4C, 0x36034AF6, 0x41047A60, - 0xDF60EFC3, 0xA867DF55, 0x316E8EEF, 0x4669BE79, - 0xCB61B38C, 0xBC66831A, 0x256FD2A0, 0x5268E236, - 0xCC0C7795, 0xBB0B4703, 0x220216B9, 0x5505262F, - 0xC5BA3BBE, 0xB2BD0B28, 0x2BB45A92, 0x5CB36A04, - 0xC2D7FFA7, 0xB5D0CF31, 0x2CD99E8B, 0x5BDEAE1D, - 0x9B64C2B0, 0xEC63F226, 0x756AA39C, 0x026D930A, - 0x9C0906A9, 0xEB0E363F, 0x72076785, 0x05005713, - 0x95BF4A82, 0xE2B87A14, 0x7BB12BAE, 0x0CB61B38, - 0x92D28E9B, 0xE5D5BE0D, 0x7CDCEFB7, 0x0BDBDF21, - 0x86D3D2D4, 0xF1D4E242, 0x68DDB3F8, 0x1FDA836E, - 0x81BE16CD, 0xF6B9265B, 0x6FB077E1, 0x18B74777, - 0x88085AE6, 0xFF0F6A70, 0x66063BCA, 0x11010B5C, - 0x8F659EFF, 0xF862AE69, 0x616BFFD3, 0x166CCF45, - 0xA00AE278, 0xD70DD2EE, 0x4E048354, 0x3903B3C2, - 0xA7672661, 0xD06016F7, 0x4969474D, 0x3E6E77DB, - 0xAED16A4A, 0xD9D65ADC, 0x40DF0B66, 0x37D83BF0, - 0xA9BCAE53, 0xDEBB9EC5, 0x47B2CF7F, 0x30B5FFE9, - 0xBDBDF21C, 0xCABAC28A, 0x53B39330, 0x24B4A3A6, - 0xBAD03605, 0xCDD70693, 0x54DE5729, 0x23D967BF, - 0xB3667A2E, 0xC4614AB8, 0x5D681B02, 0x2A6F2B94, - 0xB40BBE37, 0xC30C8EA1, 0x5A05DF1B, 0x2D02EF8D - ); - - // For this function to yield the same output as PHP's crc32 function, $crc would have to be - // set to 0xFFFFFFFF, initially - not 0x00000000 as it currently is. - $crc = 0x00000000; - $length = strlen($data); - - for ($i=0; $i<$length; $i++) { - // We AND $crc >> 8 with 0x00FFFFFF because we want the eight newly added bits to all - // be zero. PHP, unfortunately, doesn't always do this. 0x80000000 >> 8, as an example, - // yields 0xFF800000 - not 0x00800000. The following link elaborates: - // http://www.php.net/manual/en/language.operators.bitwise.php#57281 - $crc = (($crc >> 8) & 0x00FFFFFF) ^ $crc_lookup_table[($crc & 0xFF) ^ ord($data[$i])]; - } - - // In addition to having to set $crc to 0xFFFFFFFF, initially, the return value must be XOR'd with - // 0xFFFFFFFF for this function to return the same thing that PHP's crc32 function would. - return $crc; - } - - /** - * String Shift - * - * Inspired by array_shift - * - * @param string $string - * @param int $index - * @return string - * @access private - */ - function _string_shift(&$string, $index = 1) - { - $substr = substr($string, 0, $index); - $string = substr($string, $index); - return $substr; - } - - /** - * RSA Encrypt - * - * Returns mod(pow($m, $e), $n), where $n should be the product of two (large) primes $p and $q and where $e - * should be a number with the property that gcd($e, ($p - 1) * ($q - 1)) == 1. Could just make anything that - * calls this call modexp, instead, but I think this makes things clearer, maybe... - * - * @see self::__construct() - * @param BigInteger $m - * @param array $key - * @return BigInteger - * @access private - */ - function _rsa_crypt($m, $key) - { - /* - $rsa = new RSA(); - $rsa->loadKey($key, RSA::PUBLIC_FORMAT_RAW); - $rsa->setEncryptionMode(RSA::ENCRYPTION_PKCS1); - return $rsa->encrypt($m); - */ - - // To quote from protocol-1.5.txt: - // The most significant byte (which is only partial as the value must be - // less than the public modulus, which is never a power of two) is zero. - // - // The next byte contains the value 2 (which stands for public-key - // encrypted data in the PKCS standard [PKCS#1]). Then, there are non- - // zero random bytes to fill any unused space, a zero byte, and the data - // to be encrypted in the least significant bytes, the last byte of the - // data in the least significant byte. - - // Presumably the part of PKCS#1 they're refering to is "Section 7.2.1 Encryption Operation", - // under "7.2 RSAES-PKCS1-v1.5" and "7 Encryption schemes" of the following URL: - // ftp://ftp.rsasecurity.com/pub/pkcs/pkcs-1/pkcs-1v2-1.pdf - $modulus = $key[1]->toBytes(); - $length = strlen($modulus) - strlen($m) - 3; - $random = ''; - while (strlen($random) != $length) { - $block = Random::string($length - strlen($random)); - $block = str_replace("\x00", '', $block); - $random.= $block; - } - $temp = chr(0) . chr(2) . $random . chr(0) . $m; - - $m = new BigInteger($temp, 256); - $m = $m->modPow($key[0], $key[1]); - - return $m->toBytes(); - } - - /** - * Define Array - * - * Takes any number of arrays whose indices are integers and whose values are strings and defines a bunch of - * named constants from it, using the value as the name of the constant and the index as the value of the constant. - * If any of the constants that would be defined already exists, none of the constants will be defined. - * - * @param array $array - * @access private - */ - function _define_array() - { - $args = func_get_args(); - foreach ($args as $arg) { - foreach ($arg as $key => $value) { - if (!defined($value)) { - define($value, $key); - } else { - break 2; - } - } - } - } - - /** - * Returns a log of the packets that have been sent and received. - * - * Returns a string if NET_SSH1_LOGGING == self::LOG_COMPLEX, an array if NET_SSH1_LOGGING == self::LOG_SIMPLE and false if !defined('NET_SSH1_LOGGING') - * - * @access public - * @return array|false|string - */ - function getLog() - { - if (!defined('NET_SSH1_LOGGING')) { - return false; - } - - switch (NET_SSH1_LOGGING) { - case self::LOG_SIMPLE: - return $this->message_number_log; - break; - case self::LOG_COMPLEX: - return $this->_format_log($this->message_log, $this->protocol_flags_log); - break; - default: - return false; - } - } - - /** - * Formats a log for printing - * - * @param array $message_log - * @param array $message_number_log - * @access private - * @return string - */ - function _format_log($message_log, $message_number_log) - { - $output = ''; - for ($i = 0; $i < count($message_log); $i++) { - $output.= $message_number_log[$i] . "\r\n"; - $current_log = $message_log[$i]; - $j = 0; - do { - if (strlen($current_log)) { - $output.= str_pad(dechex($j), 7, '0', STR_PAD_LEFT) . '0 '; - } - $fragment = $this->_string_shift($current_log, $this->log_short_width); - $hex = substr(preg_replace_callback('#.#s', array($this, '_format_log_helper'), $fragment), strlen($this->log_boundary)); - // replace non ASCII printable characters with dots - // http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters - // also replace < with a . since < messes up the output on web browsers - $raw = preg_replace('#[^\x20-\x7E]|<#', '.', $fragment); - $output.= str_pad($hex, $this->log_long_width - $this->log_short_width, ' ') . $raw . "\r\n"; - $j++; - } while (strlen($current_log)); - $output.= "\r\n"; - } - - return $output; - } - - /** - * Helper function for _format_log - * - * For use with preg_replace_callback() - * - * @param array $matches - * @access private - * @return string - */ - function _format_log_helper($matches) - { - return $this->log_boundary . str_pad(dechex(ord($matches[0])), 2, '0', STR_PAD_LEFT); - } - - /** - * Return the server key public exponent - * - * Returns, by default, the base-10 representation. If $raw_output is set to true, returns, instead, - * the raw bytes. This behavior is similar to PHP's md5() function. - * - * @param bool $raw_output - * @return string - * @access public - */ - function getServerKeyPublicExponent($raw_output = false) - { - return $raw_output ? $this->server_key_public_exponent->toBytes() : $this->server_key_public_exponent->toString(); - } - - /** - * Return the server key public modulus - * - * Returns, by default, the base-10 representation. If $raw_output is set to true, returns, instead, - * the raw bytes. This behavior is similar to PHP's md5() function. - * - * @param bool $raw_output - * @return string - * @access public - */ - function getServerKeyPublicModulus($raw_output = false) - { - return $raw_output ? $this->server_key_public_modulus->toBytes() : $this->server_key_public_modulus->toString(); - } - - /** - * Return the host key public exponent - * - * Returns, by default, the base-10 representation. If $raw_output is set to true, returns, instead, - * the raw bytes. This behavior is similar to PHP's md5() function. - * - * @param bool $raw_output - * @return string - * @access public - */ - function getHostKeyPublicExponent($raw_output = false) - { - return $raw_output ? $this->host_key_public_exponent->toBytes() : $this->host_key_public_exponent->toString(); - } - - /** - * Return the host key public modulus - * - * Returns, by default, the base-10 representation. If $raw_output is set to true, returns, instead, - * the raw bytes. This behavior is similar to PHP's md5() function. - * - * @param bool $raw_output - * @return string - * @access public - */ - function getHostKeyPublicModulus($raw_output = false) - { - return $raw_output ? $this->host_key_public_modulus->toBytes() : $this->host_key_public_modulus->toString(); - } - - /** - * Return a list of ciphers supported by SSH1 server. - * - * Just because a cipher is supported by an SSH1 server doesn't mean it's supported by this library. If $raw_output - * is set to true, returns, instead, an array of constants. ie. instead of array('Triple-DES in CBC mode'), you'll - * get array(self::CIPHER_3DES). - * - * @param bool $raw_output - * @return array - * @access public - */ - function getSupportedCiphers($raw_output = false) - { - return $raw_output ? array_keys($this->supported_ciphers) : array_values($this->supported_ciphers); - } - - /** - * Return a list of authentications supported by SSH1 server. - * - * Just because a cipher is supported by an SSH1 server doesn't mean it's supported by this library. If $raw_output - * is set to true, returns, instead, an array of constants. ie. instead of array('password authentication'), you'll - * get array(self::AUTH_PASSWORD). - * - * @param bool $raw_output - * @return array - * @access public - */ - function getSupportedAuthentications($raw_output = false) - { - return $raw_output ? array_keys($this->supported_authentications) : array_values($this->supported_authentications); - } - - /** - * Return the server identification. - * - * @return string - * @access public - */ - function getServerIdentification() - { - return rtrim($this->server_identification); - } - - /** - * Logs data packets - * - * Makes sure that only the last 1MB worth of packets will be logged - * - * @param string $data - * @access private - */ - function _append_log($protocol_flags, $message) - { - switch (NET_SSH1_LOGGING) { - // useful for benchmarks - case self::LOG_SIMPLE: - $this->protocol_flags_log[] = $protocol_flags; - break; - // the most useful log for SSH1 - case self::LOG_COMPLEX: - $this->protocol_flags_log[] = $protocol_flags; - $this->_string_shift($message); - $this->log_size+= strlen($message); - $this->message_log[] = $message; - while ($this->log_size > self::LOG_MAX_SIZE) { - $this->log_size-= strlen(array_shift($this->message_log)); - array_shift($this->protocol_flags_log); - } - break; - // dump the output out realtime; packets may be interspersed with non packets, - // passwords won't be filtered out and select other packets may not be correctly - // identified - case self::LOG_REALTIME: - echo "
\r\n" . $this->_format_log(array($message), array($protocol_flags)) . "\r\n
\r\n"; - @flush(); - @ob_flush(); - break; - // basically the same thing as self::LOG_REALTIME with the caveat that self::LOG_REALTIME_FILE - // needs to be defined and that the resultant log file will be capped out at self::LOG_MAX_SIZE. - // the earliest part of the log file is denoted by the first <<< START >>> and is not going to necessarily - // at the beginning of the file - case self::LOG_REALTIME_FILE: - if (!isset($this->realtime_log_file)) { - // PHP doesn't seem to like using constants in fopen() - $filename = self::LOG_REALTIME_FILE; - $fp = fopen($filename, 'w'); - $this->realtime_log_file = $fp; - } - if (!is_resource($this->realtime_log_file)) { - break; - } - $entry = $this->_format_log(array($message), array($protocol_flags)); - if ($this->realtime_log_wrap) { - $temp = "<<< START >>>\r\n"; - $entry.= $temp; - fseek($this->realtime_log_file, ftell($this->realtime_log_file) - strlen($temp)); - } - $this->realtime_log_size+= strlen($entry); - if ($this->realtime_log_size > self::LOG_MAX_SIZE) { - fseek($this->realtime_log_file, 0); - $this->realtime_log_size = strlen($entry); - $this->realtime_log_wrap = true; - } - fputs($this->realtime_log_file, $entry); - } - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/Net/SSH2.php b/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/Net/SSH2.php deleted file mode 100644 index f37a0494..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/Net/SSH2.php +++ /dev/null @@ -1,5091 +0,0 @@ - - * login('username', 'password')) { - * exit('Login Failed'); - * } - * - * echo $ssh->exec('pwd'); - * echo $ssh->exec('ls -la'); - * ?> - * - * - * - * setPassword('whatever'); - * $key->loadKey(file_get_contents('privatekey')); - * - * $ssh = new \phpseclib\Net\SSH2('www.domain.tld'); - * if (!$ssh->login('username', $key)) { - * exit('Login Failed'); - * } - * - * echo $ssh->read('username@username:~$'); - * $ssh->write("ls -la\n"); - * echo $ssh->read('username@username:~$'); - * ?> - * - * - * @category Net - * @package SSH2 - * @author Jim Wigginton - * @copyright 2007 Jim Wigginton - * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @link http://phpseclib.sourceforge.net - */ - -namespace phpseclib\Net; - -use phpseclib\Crypt\Base; -use phpseclib\Crypt\Blowfish; -use phpseclib\Crypt\Hash; -use phpseclib\Crypt\Random; -use phpseclib\Crypt\RC4; -use phpseclib\Crypt\Rijndael; -use phpseclib\Crypt\RSA; -use phpseclib\Crypt\TripleDES; -use phpseclib\Crypt\Twofish; -use phpseclib\Math\BigInteger; // Used to do Diffie-Hellman key exchange and DSA/RSA signature verification. -use phpseclib\System\SSH\Agent; - -/** - * Pure-PHP implementation of SSHv2. - * - * @package SSH2 - * @author Jim Wigginton - * @access public - */ -class SSH2 -{ - /**#@+ - * Execution Bitmap Masks - * - * @see \phpseclib\Net\SSH2::bitmap - * @access private - */ - const MASK_CONSTRUCTOR = 0x00000001; - const MASK_CONNECTED = 0x00000002; - const MASK_LOGIN_REQ = 0x00000004; - const MASK_LOGIN = 0x00000008; - const MASK_SHELL = 0x00000010; - const MASK_WINDOW_ADJUST = 0x00000020; - /**#@-*/ - - /**#@+ - * Channel constants - * - * RFC4254 refers not to client and server channels but rather to sender and recipient channels. we don't refer - * to them in that way because RFC4254 toggles the meaning. the client sends a SSH_MSG_CHANNEL_OPEN message with - * a sender channel and the server sends a SSH_MSG_CHANNEL_OPEN_CONFIRMATION in response, with a sender and a - * recepient channel. at first glance, you might conclude that SSH_MSG_CHANNEL_OPEN_CONFIRMATION's sender channel - * would be the same thing as SSH_MSG_CHANNEL_OPEN's sender channel, but it's not, per this snipet: - * The 'recipient channel' is the channel number given in the original - * open request, and 'sender channel' is the channel number allocated by - * the other side. - * - * @see \phpseclib\Net\SSH2::_send_channel_packet() - * @see \phpseclib\Net\SSH2::_get_channel_packet() - * @access private - */ - const CHANNEL_EXEC = 1; // PuTTy uses 0x100 - const CHANNEL_SHELL = 2; - const CHANNEL_SUBSYSTEM = 3; - const CHANNEL_AGENT_FORWARD = 4; - const CHANNEL_KEEP_ALIVE = 5; - /**#@-*/ - - /**#@+ - * @access public - * @see \phpseclib\Net\SSH2::getLog() - */ - /** - * Returns the message numbers - */ - const LOG_SIMPLE = 1; - /** - * Returns the message content - */ - const LOG_COMPLEX = 2; - /** - * Outputs the content real-time - */ - const LOG_REALTIME = 3; - /** - * Dumps the content real-time to a file - */ - const LOG_REALTIME_FILE = 4; - /** - * Make sure that the log never gets larger than this - */ - const LOG_MAX_SIZE = 1048576; // 1024 * 1024 - /**#@-*/ - - /**#@+ - * @access public - * @see \phpseclib\Net\SSH2::read() - */ - /** - * Returns when a string matching $expect exactly is found - */ - const READ_SIMPLE = 1; - /** - * Returns when a string matching the regular expression $expect is found - */ - const READ_REGEX = 2; - /** - * Returns whenever a data packet is received. - * - * Some data packets may only contain a single character so it may be necessary - * to call read() multiple times when using this option - */ - const READ_NEXT = 3; - /**#@-*/ - - /** - * The SSH identifier - * - * @var string - * @access private - */ - var $identifier; - - /** - * The Socket Object - * - * @var object - * @access private - */ - var $fsock; - - /** - * Execution Bitmap - * - * The bits that are set represent functions that have been called already. This is used to determine - * if a requisite function has been successfully executed. If not, an error should be thrown. - * - * @var int - * @access private - */ - var $bitmap = 0; - - /** - * Error information - * - * @see self::getErrors() - * @see self::getLastError() - * @var string - * @access private - */ - var $errors = array(); - - /** - * Server Identifier - * - * @see self::getServerIdentification() - * @var array|false - * @access private - */ - var $server_identifier = false; - - /** - * Key Exchange Algorithms - * - * @see self::getKexAlgorithims() - * @var array|false - * @access private - */ - var $kex_algorithms = false; - - /** - * Key Exchange Algorithm - * - * @see self::getMethodsNegotiated() - * @var string|false - * @access private - */ - var $kex_algorithm = false; - - /** - * Minimum Diffie-Hellman Group Bit Size in RFC 4419 Key Exchange Methods - * - * @see self::_key_exchange() - * @var int - * @access private - */ - var $kex_dh_group_size_min = 1536; - - /** - * Preferred Diffie-Hellman Group Bit Size in RFC 4419 Key Exchange Methods - * - * @see self::_key_exchange() - * @var int - * @access private - */ - var $kex_dh_group_size_preferred = 2048; - - /** - * Maximum Diffie-Hellman Group Bit Size in RFC 4419 Key Exchange Methods - * - * @see self::_key_exchange() - * @var int - * @access private - */ - var $kex_dh_group_size_max = 4096; - - /** - * Server Host Key Algorithms - * - * @see self::getServerHostKeyAlgorithms() - * @var array|false - * @access private - */ - var $server_host_key_algorithms = false; - - /** - * Encryption Algorithms: Client to Server - * - * @see self::getEncryptionAlgorithmsClient2Server() - * @var array|false - * @access private - */ - var $encryption_algorithms_client_to_server = false; - - /** - * Encryption Algorithms: Server to Client - * - * @see self::getEncryptionAlgorithmsServer2Client() - * @var array|false - * @access private - */ - var $encryption_algorithms_server_to_client = false; - - /** - * MAC Algorithms: Client to Server - * - * @see self::getMACAlgorithmsClient2Server() - * @var array|false - * @access private - */ - var $mac_algorithms_client_to_server = false; - - /** - * MAC Algorithms: Server to Client - * - * @see self::getMACAlgorithmsServer2Client() - * @var array|false - * @access private - */ - var $mac_algorithms_server_to_client = false; - - /** - * Compression Algorithms: Client to Server - * - * @see self::getCompressionAlgorithmsClient2Server() - * @var array|false - * @access private - */ - var $compression_algorithms_client_to_server = false; - - /** - * Compression Algorithms: Server to Client - * - * @see self::getCompressionAlgorithmsServer2Client() - * @var array|false - * @access private - */ - var $compression_algorithms_server_to_client = false; - - /** - * Languages: Server to Client - * - * @see self::getLanguagesServer2Client() - * @var array|false - * @access private - */ - var $languages_server_to_client = false; - - /** - * Languages: Client to Server - * - * @see self::getLanguagesClient2Server() - * @var array|false - * @access private - */ - var $languages_client_to_server = false; - - /** - * Preferred Algorithms - * - * @see self::setPreferredAlgorithms() - * @var array - * @access private - */ - var $preferred = array(); - - /** - * Block Size for Server to Client Encryption - * - * "Note that the length of the concatenation of 'packet_length', - * 'padding_length', 'payload', and 'random padding' MUST be a multiple - * of the cipher block size or 8, whichever is larger. This constraint - * MUST be enforced, even when using stream ciphers." - * - * -- http://tools.ietf.org/html/rfc4253#section-6 - * - * @see self::__construct() - * @see self::_send_binary_packet() - * @var int - * @access private - */ - var $encrypt_block_size = 8; - - /** - * Block Size for Client to Server Encryption - * - * @see self::__construct() - * @see self::_get_binary_packet() - * @var int - * @access private - */ - var $decrypt_block_size = 8; - - /** - * Server to Client Encryption Object - * - * @see self::_get_binary_packet() - * @var object - * @access private - */ - var $decrypt = false; - - /** - * Client to Server Encryption Object - * - * @see self::_send_binary_packet() - * @var object - * @access private - */ - var $encrypt = false; - - /** - * Client to Server HMAC Object - * - * @see self::_send_binary_packet() - * @var object - * @access private - */ - var $hmac_create = false; - - /** - * Server to Client HMAC Object - * - * @see self::_get_binary_packet() - * @var object - * @access private - */ - var $hmac_check = false; - - /** - * Size of server to client HMAC - * - * We need to know how big the HMAC will be for the server to client direction so that we know how many bytes to read. - * For the client to server side, the HMAC object will make the HMAC as long as it needs to be. All we need to do is - * append it. - * - * @see self::_get_binary_packet() - * @var int - * @access private - */ - var $hmac_size = false; - - /** - * Server Public Host Key - * - * @see self::getServerPublicHostKey() - * @var string - * @access private - */ - var $server_public_host_key; - - /** - * Session identifier - * - * "The exchange hash H from the first key exchange is additionally - * used as the session identifier, which is a unique identifier for - * this connection." - * - * -- http://tools.ietf.org/html/rfc4253#section-7.2 - * - * @see self::_key_exchange() - * @var string - * @access private - */ - var $session_id = false; - - /** - * Exchange hash - * - * The current exchange hash - * - * @see self::_key_exchange() - * @var string - * @access private - */ - var $exchange_hash = false; - - /** - * Message Numbers - * - * @see self::__construct() - * @var array - * @access private - */ - var $message_numbers = array(); - - /** - * Disconnection Message 'reason codes' defined in RFC4253 - * - * @see self::__construct() - * @var array - * @access private - */ - var $disconnect_reasons = array(); - - /** - * SSH_MSG_CHANNEL_OPEN_FAILURE 'reason codes', defined in RFC4254 - * - * @see self::__construct() - * @var array - * @access private - */ - var $channel_open_failure_reasons = array(); - - /** - * Terminal Modes - * - * @link http://tools.ietf.org/html/rfc4254#section-8 - * @see self::__construct() - * @var array - * @access private - */ - var $terminal_modes = array(); - - /** - * SSH_MSG_CHANNEL_EXTENDED_DATA's data_type_codes - * - * @link http://tools.ietf.org/html/rfc4254#section-5.2 - * @see self::__construct() - * @var array - * @access private - */ - var $channel_extended_data_type_codes = array(); - - /** - * Send Sequence Number - * - * See 'Section 6.4. Data Integrity' of rfc4253 for more info. - * - * @see self::_send_binary_packet() - * @var int - * @access private - */ - var $send_seq_no = 0; - - /** - * Get Sequence Number - * - * See 'Section 6.4. Data Integrity' of rfc4253 for more info. - * - * @see self::_get_binary_packet() - * @var int - * @access private - */ - var $get_seq_no = 0; - - /** - * Server Channels - * - * Maps client channels to server channels - * - * @see self::_get_channel_packet() - * @see self::exec() - * @var array - * @access private - */ - var $server_channels = array(); - - /** - * Channel Buffers - * - * If a client requests a packet from one channel but receives two packets from another those packets should - * be placed in a buffer - * - * @see self::_get_channel_packet() - * @see self::exec() - * @var array - * @access private - */ - var $channel_buffers = array(); - - /** - * Channel Status - * - * Contains the type of the last sent message - * - * @see self::_get_channel_packet() - * @var array - * @access private - */ - var $channel_status = array(); - - /** - * Packet Size - * - * Maximum packet size indexed by channel - * - * @see self::_send_channel_packet() - * @var array - * @access private - */ - var $packet_size_client_to_server = array(); - - /** - * Message Number Log - * - * @see self::getLog() - * @var array - * @access private - */ - var $message_number_log = array(); - - /** - * Message Log - * - * @see self::getLog() - * @var array - * @access private - */ - var $message_log = array(); - - /** - * The Window Size - * - * Bytes the other party can send before it must wait for the window to be adjusted (0x7FFFFFFF = 2GB) - * - * @var int - * @see self::_send_channel_packet() - * @see self::exec() - * @access private - */ - var $window_size = 0x7FFFFFFF; - - /** - * What we resize the window to - * - * When PuTTY resizes the window it doesn't add an additional 0x7FFFFFFF bytes - it adds 0x40000000 bytes. - * Some SFTP clients (GoAnywhere) don't support adding 0x7FFFFFFF to the window size after the fact so - * we'll just do what PuTTY does - * - * @var int - * @see self::_send_channel_packet() - * @see self::exec() - * @access private - */ - var $window_resize = 0x40000000; - - /** - * Window size, server to client - * - * Window size indexed by channel - * - * @see self::_send_channel_packet() - * @var array - * @access private - */ - var $window_size_server_to_client = array(); - - /** - * Window size, client to server - * - * Window size indexed by channel - * - * @see self::_get_channel_packet() - * @var array - * @access private - */ - var $window_size_client_to_server = array(); - - /** - * Server signature - * - * Verified against $this->session_id - * - * @see self::getServerPublicHostKey() - * @var string - * @access private - */ - var $signature = ''; - - /** - * Server signature format - * - * ssh-rsa or ssh-dss. - * - * @see self::getServerPublicHostKey() - * @var string - * @access private - */ - var $signature_format = ''; - - /** - * Interactive Buffer - * - * @see self::read() - * @var array - * @access private - */ - var $interactiveBuffer = ''; - - /** - * Current log size - * - * Should never exceed self::LOG_MAX_SIZE - * - * @see self::_send_binary_packet() - * @see self::_get_binary_packet() - * @var int - * @access private - */ - var $log_size; - - /** - * Timeout - * - * @see self::setTimeout() - * @access private - */ - var $timeout; - - /** - * Current Timeout - * - * @see self::_get_channel_packet() - * @access private - */ - var $curTimeout; - - /** - * Real-time log file pointer - * - * @see self::_append_log() - * @var resource - * @access private - */ - var $realtime_log_file; - - /** - * Real-time log file size - * - * @see self::_append_log() - * @var int - * @access private - */ - var $realtime_log_size; - - /** - * Has the signature been validated? - * - * @see self::getServerPublicHostKey() - * @var bool - * @access private - */ - var $signature_validated = false; - - /** - * Real-time log file wrap boolean - * - * @see self::_append_log() - * @access private - */ - var $realtime_log_wrap; - - /** - * Flag to suppress stderr from output - * - * @see self::enableQuietMode() - * @access private - */ - var $quiet_mode = false; - - /** - * Time of first network activity - * - * @var int - * @access private - */ - var $last_packet; - - /** - * Exit status returned from ssh if any - * - * @var int - * @access private - */ - var $exit_status; - - /** - * Flag to request a PTY when using exec() - * - * @var bool - * @see self::enablePTY() - * @access private - */ - var $request_pty = false; - - /** - * Flag set while exec() is running when using enablePTY() - * - * @var bool - * @access private - */ - var $in_request_pty_exec = false; - - /** - * Flag set after startSubsystem() is called - * - * @var bool - * @access private - */ - var $in_subsystem; - - /** - * Contents of stdError - * - * @var string - * @access private - */ - var $stdErrorLog; - - /** - * The Last Interactive Response - * - * @see self::_keyboard_interactive_process() - * @var string - * @access private - */ - var $last_interactive_response = ''; - - /** - * Keyboard Interactive Request / Responses - * - * @see self::_keyboard_interactive_process() - * @var array - * @access private - */ - var $keyboard_requests_responses = array(); - - /** - * Banner Message - * - * Quoting from the RFC, "in some jurisdictions, sending a warning message before - * authentication may be relevant for getting legal protection." - * - * @see self::_filter() - * @see self::getBannerMessage() - * @var string - * @access private - */ - var $banner_message = ''; - - /** - * Did read() timeout or return normally? - * - * @see self::isTimeout() - * @var bool - * @access private - */ - var $is_timeout = false; - - /** - * Log Boundary - * - * @see self::_format_log() - * @var string - * @access private - */ - var $log_boundary = ':'; - - /** - * Log Long Width - * - * @see self::_format_log() - * @var int - * @access private - */ - var $log_long_width = 65; - - /** - * Log Short Width - * - * @see self::_format_log() - * @var int - * @access private - */ - var $log_short_width = 16; - - /** - * Hostname - * - * @see self::__construct() - * @see self::_connect() - * @var string - * @access private - */ - var $host; - - /** - * Port Number - * - * @see self::__construct() - * @see self::_connect() - * @var int - * @access private - */ - var $port; - - /** - * Number of columns for terminal window size - * - * @see self::getWindowColumns() - * @see self::setWindowColumns() - * @see self::setWindowSize() - * @var int - * @access private - */ - var $windowColumns = 80; - - /** - * Number of columns for terminal window size - * - * @see self::getWindowRows() - * @see self::setWindowRows() - * @see self::setWindowSize() - * @var int - * @access private - */ - var $windowRows = 24; - - /** - * Crypto Engine - * - * @see self::setCryptoEngine() - * @see self::_key_exchange() - * @var int - * @access private - */ - var $crypto_engine = false; - - /** - * A System_SSH_Agent for use in the SSH2 Agent Forwarding scenario - * - * @var System_SSH_Agent - * @access private - */ - var $agent; - - /** - * Send the identification string first? - * - * @var bool - * @access private - */ - var $send_id_string_first = true; - - /** - * Send the key exchange initiation packet first? - * - * @var bool - * @access private - */ - var $send_kex_first = true; - - /** - * Some versions of OpenSSH incorrectly calculate the key size - * - * @var bool - * @access private - */ - var $bad_key_size_fix = false; - - /** - * Should we try to re-connect to re-establish keys? - * - * @var bool - * @access private - */ - var $retry_connect = false; - - /** - * Binary Packet Buffer - * - * @var string|false - * @access private - */ - var $binary_packet_buffer = false; - - /** - * Preferred Signature Format - * - * @var string|false - * @access private - */ - var $preferred_signature_format = false; - - /** - * Authentication Credentials - * - * @var array - * @access private - */ - var $auth = array(); - - /** - * Default Constructor. - * - * $host can either be a string, representing the host, or a stream resource. - * - * @param mixed $host - * @param int $port - * @param int $timeout - * @see self::login() - * @return \phpseclib\Net\SSH2 - * @access public - */ - function __construct($host, $port = 22, $timeout = 10) - { - $this->message_numbers = array( - 1 => 'NET_SSH2_MSG_DISCONNECT', - 2 => 'NET_SSH2_MSG_IGNORE', - 3 => 'NET_SSH2_MSG_UNIMPLEMENTED', - 4 => 'NET_SSH2_MSG_DEBUG', - 5 => 'NET_SSH2_MSG_SERVICE_REQUEST', - 6 => 'NET_SSH2_MSG_SERVICE_ACCEPT', - 20 => 'NET_SSH2_MSG_KEXINIT', - 21 => 'NET_SSH2_MSG_NEWKEYS', - 30 => 'NET_SSH2_MSG_KEXDH_INIT', - 31 => 'NET_SSH2_MSG_KEXDH_REPLY', - 50 => 'NET_SSH2_MSG_USERAUTH_REQUEST', - 51 => 'NET_SSH2_MSG_USERAUTH_FAILURE', - 52 => 'NET_SSH2_MSG_USERAUTH_SUCCESS', - 53 => 'NET_SSH2_MSG_USERAUTH_BANNER', - - 80 => 'NET_SSH2_MSG_GLOBAL_REQUEST', - 81 => 'NET_SSH2_MSG_REQUEST_SUCCESS', - 82 => 'NET_SSH2_MSG_REQUEST_FAILURE', - 90 => 'NET_SSH2_MSG_CHANNEL_OPEN', - 91 => 'NET_SSH2_MSG_CHANNEL_OPEN_CONFIRMATION', - 92 => 'NET_SSH2_MSG_CHANNEL_OPEN_FAILURE', - 93 => 'NET_SSH2_MSG_CHANNEL_WINDOW_ADJUST', - 94 => 'NET_SSH2_MSG_CHANNEL_DATA', - 95 => 'NET_SSH2_MSG_CHANNEL_EXTENDED_DATA', - 96 => 'NET_SSH2_MSG_CHANNEL_EOF', - 97 => 'NET_SSH2_MSG_CHANNEL_CLOSE', - 98 => 'NET_SSH2_MSG_CHANNEL_REQUEST', - 99 => 'NET_SSH2_MSG_CHANNEL_SUCCESS', - 100 => 'NET_SSH2_MSG_CHANNEL_FAILURE' - ); - $this->disconnect_reasons = array( - 1 => 'NET_SSH2_DISCONNECT_HOST_NOT_ALLOWED_TO_CONNECT', - 2 => 'NET_SSH2_DISCONNECT_PROTOCOL_ERROR', - 3 => 'NET_SSH2_DISCONNECT_KEY_EXCHANGE_FAILED', - 4 => 'NET_SSH2_DISCONNECT_RESERVED', - 5 => 'NET_SSH2_DISCONNECT_MAC_ERROR', - 6 => 'NET_SSH2_DISCONNECT_COMPRESSION_ERROR', - 7 => 'NET_SSH2_DISCONNECT_SERVICE_NOT_AVAILABLE', - 8 => 'NET_SSH2_DISCONNECT_PROTOCOL_VERSION_NOT_SUPPORTED', - 9 => 'NET_SSH2_DISCONNECT_HOST_KEY_NOT_VERIFIABLE', - 10 => 'NET_SSH2_DISCONNECT_CONNECTION_LOST', - 11 => 'NET_SSH2_DISCONNECT_BY_APPLICATION', - 12 => 'NET_SSH2_DISCONNECT_TOO_MANY_CONNECTIONS', - 13 => 'NET_SSH2_DISCONNECT_AUTH_CANCELLED_BY_USER', - 14 => 'NET_SSH2_DISCONNECT_NO_MORE_AUTH_METHODS_AVAILABLE', - 15 => 'NET_SSH2_DISCONNECT_ILLEGAL_USER_NAME' - ); - $this->channel_open_failure_reasons = array( - 1 => 'NET_SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED' - ); - $this->terminal_modes = array( - 0 => 'NET_SSH2_TTY_OP_END' - ); - $this->channel_extended_data_type_codes = array( - 1 => 'NET_SSH2_EXTENDED_DATA_STDERR' - ); - - $this->_define_array( - $this->message_numbers, - $this->disconnect_reasons, - $this->channel_open_failure_reasons, - $this->terminal_modes, - $this->channel_extended_data_type_codes, - array(60 => 'NET_SSH2_MSG_USERAUTH_PASSWD_CHANGEREQ'), - array(60 => 'NET_SSH2_MSG_USERAUTH_PK_OK'), - array(60 => 'NET_SSH2_MSG_USERAUTH_INFO_REQUEST', - 61 => 'NET_SSH2_MSG_USERAUTH_INFO_RESPONSE'), - // RFC 4419 - diffie-hellman-group-exchange-sha{1,256} - array(30 => 'NET_SSH2_MSG_KEXDH_GEX_REQUEST_OLD', - 31 => 'NET_SSH2_MSG_KEXDH_GEX_GROUP', - 32 => 'NET_SSH2_MSG_KEXDH_GEX_INIT', - 33 => 'NET_SSH2_MSG_KEXDH_GEX_REPLY', - 34 => 'NET_SSH2_MSG_KEXDH_GEX_REQUEST'), - // RFC 5656 - Elliptic Curves (for curve25519-sha256@libssh.org) - array(30 => 'NET_SSH2_MSG_KEX_ECDH_INIT', - 31 => 'NET_SSH2_MSG_KEX_ECDH_REPLY') - ); - - if (is_resource($host)) { - $this->fsock = $host; - return; - } - - if (is_string($host)) { - $this->host = $host; - $this->port = $port; - $this->timeout = $timeout; - } - } - - /** - * Set Crypto Engine Mode - * - * Possible $engine values: - * CRYPT_MODE_INTERNAL, CRYPT_MODE_MCRYPT - * - * @param int $engine - * @access public - */ - function setCryptoEngine($engine) - { - $this->crypto_engine = $engine; - } - - /** - * Send Identification String First - * - * https://tools.ietf.org/html/rfc4253#section-4.2 says "when the connection has been established, - * both sides MUST send an identification string". It does not say which side sends it first. In - * theory it shouldn't matter but it is a fact of life that some SSH servers are simply buggy - * - * @access public - */ - function sendIdentificationStringFirst() - { - $this->send_id_string_first = true; - } - - /** - * Send Identification String Last - * - * https://tools.ietf.org/html/rfc4253#section-4.2 says "when the connection has been established, - * both sides MUST send an identification string". It does not say which side sends it first. In - * theory it shouldn't matter but it is a fact of life that some SSH servers are simply buggy - * - * @access public - */ - function sendIdentificationStringLast() - { - $this->send_id_string_first = false; - } - - /** - * Send SSH_MSG_KEXINIT First - * - * https://tools.ietf.org/html/rfc4253#section-7.1 says "key exchange begins by each sending - * sending the [SSH_MSG_KEXINIT] packet". It does not say which side sends it first. In theory - * it shouldn't matter but it is a fact of life that some SSH servers are simply buggy - * - * @access public - */ - function sendKEXINITFirst() - { - $this->send_kex_first = true; - } - - /** - * Send SSH_MSG_KEXINIT Last - * - * https://tools.ietf.org/html/rfc4253#section-7.1 says "key exchange begins by each sending - * sending the [SSH_MSG_KEXINIT] packet". It does not say which side sends it first. In theory - * it shouldn't matter but it is a fact of life that some SSH servers are simply buggy - * - * @access public - */ - function sendKEXINITLast() - { - $this->send_kex_first = false; - } - - /** - * Connect to an SSHv2 server - * - * @return bool - * @access private - */ - function _connect() - { - if ($this->bitmap & self::MASK_CONSTRUCTOR) { - return false; - } - - $this->bitmap |= self::MASK_CONSTRUCTOR; - - $this->curTimeout = $this->timeout; - - $this->last_packet = microtime(true); - - if (!is_resource($this->fsock)) { - $start = microtime(true); - // with stream_select a timeout of 0 means that no timeout takes place; - // with fsockopen a timeout of 0 means that you instantly timeout - // to resolve this incompatibility a timeout of 100,000 will be used for fsockopen if timeout is 0 - $this->fsock = @fsockopen($this->host, $this->port, $errno, $errstr, $this->curTimeout == 0 ? 100000 : $this->curTimeout); - if (!$this->fsock) { - $host = $this->host . ':' . $this->port; - user_error(rtrim("Cannot connect to $host. Error $errno. $errstr")); - return false; - } - $elapsed = microtime(true) - $start; - - if ($this->curTimeout) { - $this->curTimeout-= $elapsed; - if ($this->curTimeout < 0) { - $this->is_timeout = true; - return false; - } - } - } - - $this->identifier = $this->_generate_identifier(); - - if ($this->send_id_string_first) { - fputs($this->fsock, $this->identifier . "\r\n"); - } - - /* According to the SSH2 specs, - - "The server MAY send other lines of data before sending the version - string. Each line SHOULD be terminated by a Carriage Return and Line - Feed. Such lines MUST NOT begin with "SSH-", and SHOULD be encoded - in ISO-10646 UTF-8 [RFC3629] (language is not specified). Clients - MUST be able to process such lines." */ - $data = ''; - while (!feof($this->fsock) && !preg_match('#(.*)^(SSH-(\d\.\d+).*)#ms', $data, $matches)) { - $line = ''; - while (true) { - if ($this->curTimeout) { - if ($this->curTimeout < 0) { - $this->is_timeout = true; - return false; - } - $read = array($this->fsock); - $write = $except = null; - $start = microtime(true); - $sec = floor($this->curTimeout); - $usec = 1000000 * ($this->curTimeout - $sec); - // on windows this returns a "Warning: Invalid CRT parameters detected" error - // the !count() is done as a workaround for - if (!@stream_select($read, $write, $except, $sec, $usec) && !count($read)) { - $this->is_timeout = true; - return false; - } - $elapsed = microtime(true) - $start; - $this->curTimeout-= $elapsed; - } - - $temp = stream_get_line($this->fsock, 255, "\n"); - if (strlen($temp) == 255) { - continue; - } - if ($temp === false) { - return false; - } - - $line.= "$temp\n"; - - // quoting RFC4253, "Implementers who wish to maintain - // compatibility with older, undocumented versions of this protocol may - // want to process the identification string without expecting the - // presence of the carriage return character for reasons described in - // Section 5 of this document." - - //if (substr($line, -2) == "\r\n") { - // break; - //} - - break; - } - - $data.= $line; - } - - if (feof($this->fsock)) { - $this->bitmap = 0; - user_error('Connection closed by server'); - return false; - } - - $extra = $matches[1]; - - if (defined('NET_SSH2_LOGGING')) { - $this->_append_log('<-', $matches[0]); - $this->_append_log('->', $this->identifier . "\r\n"); - } - - $this->server_identifier = trim($temp, "\r\n"); - if (strlen($extra)) { - $this->errors[] = $data; - } - - if (version_compare($matches[3], '1.99', '<')) { - user_error("Cannot connect to SSH $matches[3] servers"); - return false; - } - - if (!$this->send_id_string_first) { - fputs($this->fsock, $this->identifier . "\r\n"); - } - - if (!$this->send_kex_first) { - $response = $this->_get_binary_packet(); - if ($response === false) { - $this->bitmap = 0; - user_error('Connection closed by server'); - return false; - } - - if (!strlen($response) || ord($response[0]) != NET_SSH2_MSG_KEXINIT) { - user_error('Expected SSH_MSG_KEXINIT'); - return false; - } - - if (!$this->_key_exchange($response)) { - return false; - } - } - - if ($this->send_kex_first && !$this->_key_exchange()) { - return false; - } - - $this->bitmap|= self::MASK_CONNECTED; - - return true; - } - - /** - * Generates the SSH identifier - * - * You should overwrite this method in your own class if you want to use another identifier - * - * @access protected - * @return string - */ - function _generate_identifier() - { - $identifier = 'SSH-2.0-phpseclib_2.0'; - - $ext = array(); - if (function_exists('sodium_crypto_box_publickey_from_secretkey')) { - $ext[] = 'libsodium'; - } - - if (extension_loaded('openssl')) { - $ext[] = 'openssl'; - } elseif (extension_loaded('mcrypt')) { - $ext[] = 'mcrypt'; - } - - if (extension_loaded('gmp')) { - $ext[] = 'gmp'; - } elseif (extension_loaded('bcmath')) { - $ext[] = 'bcmath'; - } - - if (!empty($ext)) { - $identifier .= ' (' . implode(', ', $ext) . ')'; - } - - return $identifier; - } - - /** - * Key Exchange - * - * @param string $kexinit_payload_server optional - * @access private - */ - function _key_exchange($kexinit_payload_server = false) - { - $preferred = $this->preferred; - - $kex_algorithms = isset($preferred['kex']) ? - $preferred['kex'] : - $this->getSupportedKEXAlgorithms(); - $server_host_key_algorithms = isset($preferred['hostkey']) ? - $preferred['hostkey'] : - $this->getSupportedHostKeyAlgorithms(); - $s2c_encryption_algorithms = isset($preferred['server_to_client']['crypt']) ? - $preferred['server_to_client']['crypt'] : - $this->getSupportedEncryptionAlgorithms(); - $c2s_encryption_algorithms = isset($preferred['client_to_server']['crypt']) ? - $preferred['client_to_server']['crypt'] : - $this->getSupportedEncryptionAlgorithms(); - $s2c_mac_algorithms = isset($preferred['server_to_client']['mac']) ? - $preferred['server_to_client']['mac'] : - $this->getSupportedMACAlgorithms(); - $c2s_mac_algorithms = isset($preferred['client_to_server']['mac']) ? - $preferred['client_to_server']['mac'] : - $this->getSupportedMACAlgorithms(); - $s2c_compression_algorithms = isset($preferred['server_to_client']['comp']) ? - $preferred['server_to_client']['comp'] : - $this->getSupportedCompressionAlgorithms(); - $c2s_compression_algorithms = isset($preferred['client_to_server']['comp']) ? - $preferred['client_to_server']['comp'] : - $this->getSupportedCompressionAlgorithms(); - - // some SSH servers have buggy implementations of some of the above algorithms - switch (true) { - case $this->server_identifier == 'SSH-2.0-SSHD': - case substr($this->server_identifier, 0, 13) == 'SSH-2.0-DLINK': - if (!isset($preferred['server_to_client']['mac'])) { - $s2c_mac_algorithms = array_values(array_diff( - $s2c_mac_algorithms, - array('hmac-sha1-96', 'hmac-md5-96') - )); - } - if (!isset($preferred['client_to_server']['mac'])) { - $c2s_mac_algorithms = array_values(array_diff( - $c2s_mac_algorithms, - array('hmac-sha1-96', 'hmac-md5-96') - )); - } - } - - $str_kex_algorithms = implode(',', $kex_algorithms); - $str_server_host_key_algorithms = implode(',', $server_host_key_algorithms); - $encryption_algorithms_server_to_client = implode(',', $s2c_encryption_algorithms); - $encryption_algorithms_client_to_server = implode(',', $c2s_encryption_algorithms); - $mac_algorithms_server_to_client = implode(',', $s2c_mac_algorithms); - $mac_algorithms_client_to_server = implode(',', $c2s_mac_algorithms); - $compression_algorithms_server_to_client = implode(',', $s2c_compression_algorithms); - $compression_algorithms_client_to_server = implode(',', $c2s_compression_algorithms); - - $client_cookie = Random::string(16); - - $kexinit_payload_client = pack( - 'Ca*Na*Na*Na*Na*Na*Na*Na*Na*Na*Na*CN', - NET_SSH2_MSG_KEXINIT, - $client_cookie, - strlen($str_kex_algorithms), - $str_kex_algorithms, - strlen($str_server_host_key_algorithms), - $str_server_host_key_algorithms, - strlen($encryption_algorithms_client_to_server), - $encryption_algorithms_client_to_server, - strlen($encryption_algorithms_server_to_client), - $encryption_algorithms_server_to_client, - strlen($mac_algorithms_client_to_server), - $mac_algorithms_client_to_server, - strlen($mac_algorithms_server_to_client), - $mac_algorithms_server_to_client, - strlen($compression_algorithms_client_to_server), - $compression_algorithms_client_to_server, - strlen($compression_algorithms_server_to_client), - $compression_algorithms_server_to_client, - 0, - '', - 0, - '', - 0, - 0 - ); - - if ($this->send_kex_first) { - if (!$this->_send_binary_packet($kexinit_payload_client)) { - return false; - } - - $kexinit_payload_server = $this->_get_binary_packet(); - if ($kexinit_payload_server === false) { - $this->bitmap = 0; - user_error('Connection closed by server'); - return false; - } - - if (!strlen($kexinit_payload_server) || ord($kexinit_payload_server[0]) != NET_SSH2_MSG_KEXINIT) { - user_error('Expected SSH_MSG_KEXINIT'); - return false; - } - } - - $response = $kexinit_payload_server; - $this->_string_shift($response, 1); // skip past the message number (it should be SSH_MSG_KEXINIT) - $server_cookie = $this->_string_shift($response, 16); - - if (strlen($response) < 4) { - return false; - } - $temp = unpack('Nlength', $this->_string_shift($response, 4)); - $this->kex_algorithms = explode(',', $this->_string_shift($response, $temp['length'])); - - if (strlen($response) < 4) { - return false; - } - $temp = unpack('Nlength', $this->_string_shift($response, 4)); - $this->server_host_key_algorithms = explode(',', $this->_string_shift($response, $temp['length'])); - - if (strlen($response) < 4) { - return false; - } - $temp = unpack('Nlength', $this->_string_shift($response, 4)); - $this->encryption_algorithms_client_to_server = explode(',', $this->_string_shift($response, $temp['length'])); - - if (strlen($response) < 4) { - return false; - } - $temp = unpack('Nlength', $this->_string_shift($response, 4)); - $this->encryption_algorithms_server_to_client = explode(',', $this->_string_shift($response, $temp['length'])); - - if (strlen($response) < 4) { - return false; - } - $temp = unpack('Nlength', $this->_string_shift($response, 4)); - $this->mac_algorithms_client_to_server = explode(',', $this->_string_shift($response, $temp['length'])); - - if (strlen($response) < 4) { - return false; - } - $temp = unpack('Nlength', $this->_string_shift($response, 4)); - $this->mac_algorithms_server_to_client = explode(',', $this->_string_shift($response, $temp['length'])); - - if (strlen($response) < 4) { - return false; - } - $temp = unpack('Nlength', $this->_string_shift($response, 4)); - $this->compression_algorithms_client_to_server = explode(',', $this->_string_shift($response, $temp['length'])); - - if (strlen($response) < 4) { - return false; - } - $temp = unpack('Nlength', $this->_string_shift($response, 4)); - $this->compression_algorithms_server_to_client = explode(',', $this->_string_shift($response, $temp['length'])); - - if (strlen($response) < 4) { - return false; - } - $temp = unpack('Nlength', $this->_string_shift($response, 4)); - $this->languages_client_to_server = explode(',', $this->_string_shift($response, $temp['length'])); - - if (strlen($response) < 4) { - return false; - } - $temp = unpack('Nlength', $this->_string_shift($response, 4)); - $this->languages_server_to_client = explode(',', $this->_string_shift($response, $temp['length'])); - - if (!strlen($response)) { - return false; - } - extract(unpack('Cfirst_kex_packet_follows', $this->_string_shift($response, 1))); - $first_kex_packet_follows = $first_kex_packet_follows != 0; - - if (!$this->send_kex_first && !$this->_send_binary_packet($kexinit_payload_client)) { - return false; - } - - // we need to decide upon the symmetric encryption algorithms before we do the diffie-hellman key exchange - // we don't initialize any crypto-objects, yet - we do that, later. for now, we need the lengths to make the - // diffie-hellman key exchange as fast as possible - $decrypt = $this->_array_intersect_first($s2c_encryption_algorithms, $this->encryption_algorithms_server_to_client); - $decryptKeyLength = $this->_encryption_algorithm_to_key_size($decrypt); - if ($decryptKeyLength === null) { - user_error('No compatible server to client encryption algorithms found'); - return $this->_disconnect(NET_SSH2_DISCONNECT_KEY_EXCHANGE_FAILED); - } - - $encrypt = $this->_array_intersect_first($c2s_encryption_algorithms, $this->encryption_algorithms_client_to_server); - $encryptKeyLength = $this->_encryption_algorithm_to_key_size($encrypt); - if ($encryptKeyLength === null) { - user_error('No compatible client to server encryption algorithms found'); - return $this->_disconnect(NET_SSH2_DISCONNECT_KEY_EXCHANGE_FAILED); - } - - // through diffie-hellman key exchange a symmetric key is obtained - $this->kex_algorithm = $kex_algorithm = $this->_array_intersect_first($kex_algorithms, $this->kex_algorithms); - if ($kex_algorithm === false) { - user_error('No compatible key exchange algorithms found'); - return $this->_disconnect(NET_SSH2_DISCONNECT_KEY_EXCHANGE_FAILED); - } - - // Only relevant in diffie-hellman-group-exchange-sha{1,256}, otherwise empty. - $exchange_hash_rfc4419 = ''; - - if ($kex_algorithm === 'curve25519-sha256@libssh.org') { - $x = Random::string(32); - $eBytes = sodium_crypto_box_publickey_from_secretkey($x); - $clientKexInitMessage = 'NET_SSH2_MSG_KEX_ECDH_INIT'; - $serverKexReplyMessage = 'NET_SSH2_MSG_KEX_ECDH_REPLY'; - $kexHash = new Hash('sha256'); - } else { - if (strpos($kex_algorithm, 'diffie-hellman-group-exchange') === 0) { - $dh_group_sizes_packed = pack( - 'NNN', - $this->kex_dh_group_size_min, - $this->kex_dh_group_size_preferred, - $this->kex_dh_group_size_max - ); - $packet = pack( - 'Ca*', - NET_SSH2_MSG_KEXDH_GEX_REQUEST, - $dh_group_sizes_packed - ); - if (!$this->_send_binary_packet($packet)) { - return false; - } - $this->_updateLogHistory('UNKNOWN (34)', 'NET_SSH2_MSG_KEXDH_GEX_REQUEST'); - - $response = $this->_get_binary_packet(); - if ($response === false) { - $this->bitmap = 0; - user_error('Connection closed by server'); - return false; - } - extract(unpack('Ctype', $this->_string_shift($response, 1))); - if ($type != NET_SSH2_MSG_KEXDH_GEX_GROUP) { - user_error('Expected SSH_MSG_KEX_DH_GEX_GROUP'); - return false; - } - $this->_updateLogHistory('NET_SSH2_MSG_KEXDH_REPLY', 'NET_SSH2_MSG_KEXDH_GEX_GROUP'); - - if (strlen($response) < 4) { - return false; - } - extract(unpack('NprimeLength', $this->_string_shift($response, 4))); - $primeBytes = $this->_string_shift($response, $primeLength); - $prime = new BigInteger($primeBytes, -256); - - if (strlen($response) < 4) { - return false; - } - extract(unpack('NgLength', $this->_string_shift($response, 4))); - $gBytes = $this->_string_shift($response, $gLength); - $g = new BigInteger($gBytes, -256); - - $exchange_hash_rfc4419 = pack( - 'a*Na*Na*', - $dh_group_sizes_packed, - $primeLength, - $primeBytes, - $gLength, - $gBytes - ); - - $clientKexInitMessage = 'NET_SSH2_MSG_KEXDH_GEX_INIT'; - $serverKexReplyMessage = 'NET_SSH2_MSG_KEXDH_GEX_REPLY'; - } else { - switch ($kex_algorithm) { - // see http://tools.ietf.org/html/rfc2409#section-6.2 and - // http://tools.ietf.org/html/rfc2412, appendex E - case 'diffie-hellman-group1-sha1': - $prime = 'FFFFFFFFFFFFFFFFC90FDAA22168C234C4C6628B80DC1CD129024E088A67CC74' . - '020BBEA63B139B22514A08798E3404DDEF9519B3CD3A431B302B0A6DF25F1437' . - '4FE1356D6D51C245E485B576625E7EC6F44C42E9A637ED6B0BFF5CB6F406B7ED' . - 'EE386BFB5A899FA5AE9F24117C4B1FE649286651ECE65381FFFFFFFFFFFFFFFF'; - break; - // see http://tools.ietf.org/html/rfc3526#section-3 - case 'diffie-hellman-group14-sha1': - $prime = 'FFFFFFFFFFFFFFFFC90FDAA22168C234C4C6628B80DC1CD129024E088A67CC74' . - '020BBEA63B139B22514A08798E3404DDEF9519B3CD3A431B302B0A6DF25F1437' . - '4FE1356D6D51C245E485B576625E7EC6F44C42E9A637ED6B0BFF5CB6F406B7ED' . - 'EE386BFB5A899FA5AE9F24117C4B1FE649286651ECE45B3DC2007CB8A163BF05' . - '98DA48361C55D39A69163FA8FD24CF5F83655D23DCA3AD961C62F356208552BB' . - '9ED529077096966D670C354E4ABC9804F1746C08CA18217C32905E462E36CE3B' . - 'E39E772C180E86039B2783A2EC07A28FB5C55DF06F4C52C9DE2BCBF695581718' . - '3995497CEA956AE515D2261898FA051015728E5A8AACAA68FFFFFFFFFFFFFFFF'; - break; - } - // For both diffie-hellman-group1-sha1 and diffie-hellman-group14-sha1 - // the generator field element is 2 (decimal) and the hash function is sha1. - $g = new BigInteger(2); - $prime = new BigInteger($prime, 16); - $clientKexInitMessage = 'NET_SSH2_MSG_KEXDH_INIT'; - $serverKexReplyMessage = 'NET_SSH2_MSG_KEXDH_REPLY'; - } - - switch ($kex_algorithm) { - case 'diffie-hellman-group-exchange-sha256': - $kexHash = new Hash('sha256'); - break; - default: - $kexHash = new Hash('sha1'); - } - - /* To increase the speed of the key exchange, both client and server may - reduce the size of their private exponents. It should be at least - twice as long as the key material that is generated from the shared - secret. For more details, see the paper by van Oorschot and Wiener - [VAN-OORSCHOT]. - - -- http://tools.ietf.org/html/rfc4419#section-6.2 */ - $one = new BigInteger(1); - $keyLength = min($kexHash->getLength(), max($encryptKeyLength, $decryptKeyLength)); - $max = $one->bitwise_leftShift(16 * $keyLength); // 2 * 8 * $keyLength - $max = $max->subtract($one); - - $x = $one->random($one, $max); - $e = $g->modPow($x, $prime); - - $eBytes = $e->toBytes(true); - } - $data = pack('CNa*', constant($clientKexInitMessage), strlen($eBytes), $eBytes); - - if (!$this->_send_binary_packet($data)) { - $this->bitmap = 0; - user_error('Connection closed by server'); - return false; - } - switch ($clientKexInitMessage) { - case 'NET_SSH2_MSG_KEX_ECDH_INIT': - $this->_updateLogHistory('NET_SSH2_MSG_KEXDH_INIT', 'NET_SSH2_MSG_KEX_ECDH_INIT'); - break; - case 'NET_SSH2_MSG_KEXDH_GEX_INIT': - $this->_updateLogHistory('UNKNOWN (32)', 'NET_SSH2_MSG_KEXDH_GEX_INIT'); - } - - $response = $this->_get_binary_packet(); - if ($response === false) { - $this->bitmap = 0; - user_error('Connection closed by server'); - return false; - } - if (!strlen($response)) { - return false; - } - extract(unpack('Ctype', $this->_string_shift($response, 1))); - - if ($type != constant($serverKexReplyMessage)) { - user_error("Expected $serverKexReplyMessage"); - return false; - } - switch ($serverKexReplyMessage) { - case 'NET_SSH2_MSG_KEX_ECDH_REPLY': - $this->_updateLogHistory('NET_SSH2_MSG_KEXDH_REPLY', 'NET_SSH2_MSG_KEX_ECDH_REPLY'); - break; - case 'NET_SSH2_MSG_KEXDH_GEX_REPLY': - $this->_updateLogHistory('UNKNOWN (33)', 'NET_SSH2_MSG_KEXDH_GEX_REPLY'); - } - - if (strlen($response) < 4) { - return false; - } - $temp = unpack('Nlength', $this->_string_shift($response, 4)); - $this->server_public_host_key = $server_public_host_key = $this->_string_shift($response, $temp['length']); - - if (strlen($server_public_host_key) < 4) { - return false; - } - $temp = unpack('Nlength', $this->_string_shift($server_public_host_key, 4)); - $public_key_format = $this->_string_shift($server_public_host_key, $temp['length']); - - if (strlen($response) < 4) { - return false; - } - $temp = unpack('Nlength', $this->_string_shift($response, 4)); - $fBytes = $this->_string_shift($response, $temp['length']); - - if (strlen($response) < 4) { - return false; - } - $temp = unpack('Nlength', $this->_string_shift($response, 4)); - $this->signature = $this->_string_shift($response, $temp['length']); - - if (strlen($this->signature) < 4) { - return false; - } - $temp = unpack('Nlength', $this->_string_shift($this->signature, 4)); - $this->signature_format = $this->_string_shift($this->signature, $temp['length']); - - if ($kex_algorithm === 'curve25519-sha256@libssh.org') { - if (strlen($fBytes) !== 32) { - user_error('Received curve25519 public key of invalid length.'); - return false; - } - $key = new BigInteger(sodium_crypto_scalarmult($x, $fBytes), 256); - // sodium_compat doesn't emulate sodium_memzero - // also, with v1 of libsodium API the extension identifies itself as - // libsodium whereas v2 of the libsodium API (what PHP 7.2+ includes) - // identifies itself as sodium. sodium_compat uses the v1 API to - // emulate the v2 API if it's the v1 API that's available - if (extension_loaded('sodium') || extension_loaded('libsodium')) { - sodium_memzero($x); - } - } else { - $f = new BigInteger($fBytes, -256); - $key = $f->modPow($x, $prime); - } - $keyBytes = $key->toBytes(true); - - $this->exchange_hash = pack( - 'Na*Na*Na*Na*Na*a*Na*Na*Na*', - strlen($this->identifier), - $this->identifier, - strlen($this->server_identifier), - $this->server_identifier, - strlen($kexinit_payload_client), - $kexinit_payload_client, - strlen($kexinit_payload_server), - $kexinit_payload_server, - strlen($this->server_public_host_key), - $this->server_public_host_key, - $exchange_hash_rfc4419, - strlen($eBytes), - $eBytes, - strlen($fBytes), - $fBytes, - strlen($keyBytes), - $keyBytes - ); - - $this->exchange_hash = $kexHash->hash($this->exchange_hash); - - if ($this->session_id === false) { - $this->session_id = $this->exchange_hash; - } - - $server_host_key_algorithm = $this->_array_intersect_first($server_host_key_algorithms, $this->server_host_key_algorithms); - if ($server_host_key_algorithm === false) { - user_error('No compatible server host key algorithms found'); - return $this->_disconnect(NET_SSH2_DISCONNECT_KEY_EXCHANGE_FAILED); - } - - switch ($server_host_key_algorithm) { - case 'ssh-dss': - $expected_key_format = 'ssh-dss'; - break; - //case 'rsa-sha2-256': - //case 'rsa-sha2-512': - //case 'ssh-rsa': - default: - $expected_key_format = 'ssh-rsa'; - } - - if ($public_key_format != $expected_key_format || $this->signature_format != $server_host_key_algorithm) { - switch (true) { - case $this->signature_format == $server_host_key_algorithm: - case $server_host_key_algorithm != 'rsa-sha2-256' && $server_host_key_algorithm != 'rsa-sha2-512': - case $this->signature_format != 'ssh-rsa': - user_error('Server Host Key Algorithm Mismatch'); - return $this->_disconnect(NET_SSH2_DISCONNECT_KEY_EXCHANGE_FAILED); - } - } - - $packet = pack( - 'C', - NET_SSH2_MSG_NEWKEYS - ); - - if (!$this->_send_binary_packet($packet)) { - return false; - } - - $response = $this->_get_binary_packet(); - - if ($response === false) { - $this->bitmap = 0; - user_error('Connection closed by server'); - return false; - } - - if (!strlen($response)) { - return false; - } - extract(unpack('Ctype', $this->_string_shift($response, 1))); - - if ($type != NET_SSH2_MSG_NEWKEYS) { - user_error('Expected SSH_MSG_NEWKEYS'); - return false; - } - - $keyBytes = pack('Na*', strlen($keyBytes), $keyBytes); - - $this->encrypt = $this->_encryption_algorithm_to_crypt_instance($encrypt); - if ($this->encrypt) { - if ($this->crypto_engine) { - $this->encrypt->setPreferredEngine($this->crypto_engine); - } - if ($this->encrypt->block_size) { - $this->encrypt_block_size = $this->encrypt->block_size; - } - $this->encrypt->enableContinuousBuffer(); - $this->encrypt->disablePadding(); - - if ($this->encrypt->getBlockLength()) { - $this->encrypt_block_size = $this->encrypt->getBlockLength() >> 3; - } - - $iv = $kexHash->hash($keyBytes . $this->exchange_hash . 'A' . $this->session_id); - while ($this->encrypt_block_size > strlen($iv)) { - $iv.= $kexHash->hash($keyBytes . $this->exchange_hash . $iv); - } - $this->encrypt->setIV(substr($iv, 0, $this->encrypt_block_size)); - - $key = $kexHash->hash($keyBytes . $this->exchange_hash . 'C' . $this->session_id); - while ($encryptKeyLength > strlen($key)) { - $key.= $kexHash->hash($keyBytes . $this->exchange_hash . $key); - } - $this->encrypt->setKey(substr($key, 0, $encryptKeyLength)); - - $this->encrypt->name = $decrypt; - } - - $this->decrypt = $this->_encryption_algorithm_to_crypt_instance($decrypt); - if ($this->decrypt) { - if ($this->crypto_engine) { - $this->decrypt->setPreferredEngine($this->crypto_engine); - } - if ($this->decrypt->block_size) { - $this->decrypt_block_size = $this->decrypt->block_size; - } - $this->decrypt->enableContinuousBuffer(); - $this->decrypt->disablePadding(); - - if ($this->decrypt->getBlockLength()) { - $this->decrypt_block_size = $this->decrypt->getBlockLength() >> 3; - } - - $iv = $kexHash->hash($keyBytes . $this->exchange_hash . 'B' . $this->session_id); - while ($this->decrypt_block_size > strlen($iv)) { - $iv.= $kexHash->hash($keyBytes . $this->exchange_hash . $iv); - } - $this->decrypt->setIV(substr($iv, 0, $this->decrypt_block_size)); - - $key = $kexHash->hash($keyBytes . $this->exchange_hash . 'D' . $this->session_id); - while ($decryptKeyLength > strlen($key)) { - $key.= $kexHash->hash($keyBytes . $this->exchange_hash . $key); - } - $this->decrypt->setKey(substr($key, 0, $decryptKeyLength)); - - $this->decrypt->name = $decrypt; - } - - /* The "arcfour128" algorithm is the RC4 cipher, as described in - [SCHNEIER], using a 128-bit key. The first 1536 bytes of keystream - generated by the cipher MUST be discarded, and the first byte of the - first encrypted packet MUST be encrypted using the 1537th byte of - keystream. - - -- http://tools.ietf.org/html/rfc4345#section-4 */ - if ($encrypt == 'arcfour128' || $encrypt == 'arcfour256') { - $this->encrypt->encrypt(str_repeat("\0", 1536)); - } - if ($decrypt == 'arcfour128' || $decrypt == 'arcfour256') { - $this->decrypt->decrypt(str_repeat("\0", 1536)); - } - - $mac_algorithm = $this->_array_intersect_first($c2s_mac_algorithms, $this->mac_algorithms_client_to_server); - if ($mac_algorithm === false) { - user_error('No compatible client to server message authentication algorithms found'); - return $this->_disconnect(NET_SSH2_DISCONNECT_KEY_EXCHANGE_FAILED); - } - - $createKeyLength = 0; // ie. $mac_algorithm == 'none' - switch ($mac_algorithm) { - case 'hmac-sha2-256': - $this->hmac_create = new Hash('sha256'); - $createKeyLength = 32; - break; - case 'hmac-sha1': - $this->hmac_create = new Hash('sha1'); - $createKeyLength = 20; - break; - case 'hmac-sha1-96': - $this->hmac_create = new Hash('sha1-96'); - $createKeyLength = 20; - break; - case 'hmac-md5': - $this->hmac_create = new Hash('md5'); - $createKeyLength = 16; - break; - case 'hmac-md5-96': - $this->hmac_create = new Hash('md5-96'); - $createKeyLength = 16; - } - $this->hmac_create->name = $mac_algorithm; - - $mac_algorithm = $this->_array_intersect_first($s2c_mac_algorithms, $this->mac_algorithms_server_to_client); - if ($mac_algorithm === false) { - user_error('No compatible server to client message authentication algorithms found'); - return $this->_disconnect(NET_SSH2_DISCONNECT_KEY_EXCHANGE_FAILED); - } - - $checkKeyLength = 0; - $this->hmac_size = 0; - switch ($mac_algorithm) { - case 'hmac-sha2-256': - $this->hmac_check = new Hash('sha256'); - $checkKeyLength = 32; - $this->hmac_size = 32; - break; - case 'hmac-sha1': - $this->hmac_check = new Hash('sha1'); - $checkKeyLength = 20; - $this->hmac_size = 20; - break; - case 'hmac-sha1-96': - $this->hmac_check = new Hash('sha1-96'); - $checkKeyLength = 20; - $this->hmac_size = 12; - break; - case 'hmac-md5': - $this->hmac_check = new Hash('md5'); - $checkKeyLength = 16; - $this->hmac_size = 16; - break; - case 'hmac-md5-96': - $this->hmac_check = new Hash('md5-96'); - $checkKeyLength = 16; - $this->hmac_size = 12; - } - $this->hmac_check->name = $mac_algorithm; - - $key = $kexHash->hash($keyBytes . $this->exchange_hash . 'E' . $this->session_id); - while ($createKeyLength > strlen($key)) { - $key.= $kexHash->hash($keyBytes . $this->exchange_hash . $key); - } - $this->hmac_create->setKey(substr($key, 0, $createKeyLength)); - - $key = $kexHash->hash($keyBytes . $this->exchange_hash . 'F' . $this->session_id); - while ($checkKeyLength > strlen($key)) { - $key.= $kexHash->hash($keyBytes . $this->exchange_hash . $key); - } - $this->hmac_check->setKey(substr($key, 0, $checkKeyLength)); - - $compression_algorithm = $this->_array_intersect_first($c2s_compression_algorithms, $this->compression_algorithms_client_to_server); - if ($compression_algorithm === false) { - user_error('No compatible client to server compression algorithms found'); - return $this->_disconnect(NET_SSH2_DISCONNECT_KEY_EXCHANGE_FAILED); - } - //$this->decompress = $compression_algorithm == 'zlib'; - - $compression_algorithm = $this->_array_intersect_first($s2c_compression_algorithms, $this->compression_algorithms_client_to_server); - if ($compression_algorithm === false) { - user_error('No compatible server to client compression algorithms found'); - return $this->_disconnect(NET_SSH2_DISCONNECT_KEY_EXCHANGE_FAILED); - } - //$this->compress = $compression_algorithm == 'zlib'; - - return true; - } - - /** - * Maps an encryption algorithm name to the number of key bytes. - * - * @param string $algorithm Name of the encryption algorithm - * @return int|null Number of bytes as an integer or null for unknown - * @access private - */ - function _encryption_algorithm_to_key_size($algorithm) - { - if ($this->bad_key_size_fix && $this->_bad_algorithm_candidate($algorithm)) { - return 16; - } - - switch ($algorithm) { - case 'none': - return 0; - case 'aes128-cbc': - case 'aes128-ctr': - case 'arcfour': - case 'arcfour128': - case 'blowfish-cbc': - case 'blowfish-ctr': - case 'twofish128-cbc': - case 'twofish128-ctr': - return 16; - case '3des-cbc': - case '3des-ctr': - case 'aes192-cbc': - case 'aes192-ctr': - case 'twofish192-cbc': - case 'twofish192-ctr': - return 24; - case 'aes256-cbc': - case 'aes256-ctr': - case 'arcfour256': - case 'twofish-cbc': - case 'twofish256-cbc': - case 'twofish256-ctr': - return 32; - } - return null; - } - - /** - * Maps an encryption algorithm name to an instance of a subclass of - * \phpseclib\Crypt\Base. - * - * @param string $algorithm Name of the encryption algorithm - * @return mixed Instance of \phpseclib\Crypt\Base or null for unknown - * @access private - */ - function _encryption_algorithm_to_crypt_instance($algorithm) - { - switch ($algorithm) { - case '3des-cbc': - return new TripleDES(); - case '3des-ctr': - return new TripleDES(Base::MODE_CTR); - case 'aes256-cbc': - case 'aes192-cbc': - case 'aes128-cbc': - return new Rijndael(); - case 'aes256-ctr': - case 'aes192-ctr': - case 'aes128-ctr': - return new Rijndael(Base::MODE_CTR); - case 'blowfish-cbc': - return new Blowfish(); - case 'blowfish-ctr': - return new Blowfish(Base::MODE_CTR); - case 'twofish128-cbc': - case 'twofish192-cbc': - case 'twofish256-cbc': - case 'twofish-cbc': - return new Twofish(); - case 'twofish128-ctr': - case 'twofish192-ctr': - case 'twofish256-ctr': - return new Twofish(Base::MODE_CTR); - case 'arcfour': - case 'arcfour128': - case 'arcfour256': - return new RC4(); - } - return null; - } - - /** - * Tests whether or not proposed algorithm has a potential for issues - * - * @link https://www.chiark.greenend.org.uk/~sgtatham/putty/wishlist/ssh2-aesctr-openssh.html - * @link https://bugzilla.mindrot.org/show_bug.cgi?id=1291 - * @param string $algorithm Name of the encryption algorithm - * @return bool - * @access private - */ - function _bad_algorithm_candidate($algorithm) - { - switch ($algorithm) { - case 'arcfour256': - case 'aes192-ctr': - case 'aes256-ctr': - return true; - } - - return false; - } - - /** - * Login - * - * The $password parameter can be a plaintext password, a \phpseclib\Crypt\RSA object or an array - * - * @param string $username - * @param mixed $password - * @param mixed $... - * @return bool - * @see self::_login() - * @access public - */ - function login($username) - { - $args = func_get_args(); - $this->auth[] = $args; - - // try logging with 'none' as an authentication method first since that's what - // PuTTY does - if ($this->_login($username)) { - return true; - } - if (count($args) == 1) { - return false; - } - return call_user_func_array(array(&$this, '_login'), $args); - } - - /** - * Login Helper - * - * @param string $username - * @param mixed $password - * @param mixed $... - * @return bool - * @see self::_login_helper() - * @access private - */ - function _login($username) - { - if (!($this->bitmap & self::MASK_CONSTRUCTOR)) { - if (!$this->_connect()) { - return false; - } - } - - $args = array_slice(func_get_args(), 1); - if (empty($args)) { - return $this->_login_helper($username); - } - - foreach ($args as $arg) { - if ($this->_login_helper($username, $arg)) { - return true; - } - } - return false; - } - - /** - * Login Helper - * - * @param string $username - * @param string $password - * @return bool - * @access private - * @internal It might be worthwhile, at some point, to protect against {@link http://tools.ietf.org/html/rfc4251#section-9.3.9 traffic analysis} - * by sending dummy SSH_MSG_IGNORE messages. - */ - function _login_helper($username, $password = null) - { - if (!($this->bitmap & self::MASK_CONNECTED)) { - return false; - } - - if (!($this->bitmap & self::MASK_LOGIN_REQ)) { - $packet = pack( - 'CNa*', - NET_SSH2_MSG_SERVICE_REQUEST, - strlen('ssh-userauth'), - 'ssh-userauth' - ); - - if (!$this->_send_binary_packet($packet)) { - return false; - } - - $response = $this->_get_binary_packet(); - if ($response === false) { - if ($this->retry_connect) { - $this->retry_connect = false; - if (!$this->_connect()) { - return false; - } - return $this->_login_helper($username, $password); - } - $this->bitmap = 0; - user_error('Connection closed by server'); - return false; - } - - if (strlen($response) < 4) { - return false; - } - extract(unpack('Ctype', $this->_string_shift($response, 1))); - - if ($type != NET_SSH2_MSG_SERVICE_ACCEPT) { - user_error('Expected SSH_MSG_SERVICE_ACCEPT'); - return false; - } - $this->bitmap |= self::MASK_LOGIN_REQ; - } - - if (strlen($this->last_interactive_response)) { - return !is_string($password) && !is_array($password) ? false : $this->_keyboard_interactive_process($password); - } - - if ($password instanceof RSA) { - return $this->_privatekey_login($username, $password); - } elseif ($password instanceof Agent) { - return $this->_ssh_agent_login($username, $password); - } - - if (is_array($password)) { - if ($this->_keyboard_interactive_login($username, $password)) { - $this->bitmap |= self::MASK_LOGIN; - return true; - } - return false; - } - - if (!isset($password)) { - $packet = pack( - 'CNa*Na*Na*', - NET_SSH2_MSG_USERAUTH_REQUEST, - strlen($username), - $username, - strlen('ssh-connection'), - 'ssh-connection', - strlen('none'), - 'none' - ); - - if (!$this->_send_binary_packet($packet)) { - return false; - } - - $response = $this->_get_binary_packet(); - if ($response === false) { - $this->bitmap = 0; - user_error('Connection closed by server'); - return false; - } - - if (!strlen($response)) { - return false; - } - extract(unpack('Ctype', $this->_string_shift($response, 1))); - - switch ($type) { - case NET_SSH2_MSG_USERAUTH_SUCCESS: - $this->bitmap |= self::MASK_LOGIN; - return true; - //case NET_SSH2_MSG_USERAUTH_FAILURE: - default: - return false; - } - } - - $packet = pack( - 'CNa*Na*Na*CNa*', - NET_SSH2_MSG_USERAUTH_REQUEST, - strlen($username), - $username, - strlen('ssh-connection'), - 'ssh-connection', - strlen('password'), - 'password', - 0, - strlen($password), - $password - ); - - // remove the username and password from the logged packet - if (!defined('NET_SSH2_LOGGING')) { - $logged = null; - } else { - $logged = pack( - 'CNa*Na*Na*CNa*', - NET_SSH2_MSG_USERAUTH_REQUEST, - strlen('username'), - 'username', - strlen('ssh-connection'), - 'ssh-connection', - strlen('password'), - 'password', - 0, - strlen('password'), - 'password' - ); - } - - if (!$this->_send_binary_packet($packet, $logged)) { - return false; - } - - $response = $this->_get_binary_packet(); - if ($response === false) { - $this->bitmap = 0; - user_error('Connection closed by server'); - return false; - } - - if (!strlen($response)) { - return false; - } - extract(unpack('Ctype', $this->_string_shift($response, 1))); - - switch ($type) { - case NET_SSH2_MSG_USERAUTH_PASSWD_CHANGEREQ: // in theory, the password can be changed - $this->_updateLogHistory('UNKNOWN (60)', 'NET_SSH2_MSG_USERAUTH_PASSWD_CHANGEREQ'); - if (strlen($response) < 4) { - return false; - } - extract(unpack('Nlength', $this->_string_shift($response, 4))); - $this->errors[] = 'SSH_MSG_USERAUTH_PASSWD_CHANGEREQ: ' . $this->_string_shift($response, $length); - return $this->_disconnect(NET_SSH2_DISCONNECT_AUTH_CANCELLED_BY_USER); - case NET_SSH2_MSG_USERAUTH_FAILURE: - // can we use keyboard-interactive authentication? if not then either the login is bad or the server employees - // multi-factor authentication - if (strlen($response) < 4) { - return false; - } - extract(unpack('Nlength', $this->_string_shift($response, 4))); - $auth_methods = explode(',', $this->_string_shift($response, $length)); - if (!strlen($response)) { - return false; - } - extract(unpack('Cpartial_success', $this->_string_shift($response, 1))); - $partial_success = $partial_success != 0; - - if (!$partial_success && in_array('keyboard-interactive', $auth_methods)) { - if ($this->_keyboard_interactive_login($username, $password)) { - $this->bitmap |= self::MASK_LOGIN; - return true; - } - return false; - } - return false; - case NET_SSH2_MSG_USERAUTH_SUCCESS: - $this->bitmap |= self::MASK_LOGIN; - return true; - } - - return false; - } - - /** - * Login via keyboard-interactive authentication - * - * See {@link http://tools.ietf.org/html/rfc4256 RFC4256} for details. This is not a full-featured keyboard-interactive authenticator. - * - * @param string $username - * @param string $password - * @return bool - * @access private - */ - function _keyboard_interactive_login($username, $password) - { - $packet = pack( - 'CNa*Na*Na*Na*Na*', - NET_SSH2_MSG_USERAUTH_REQUEST, - strlen($username), - $username, - strlen('ssh-connection'), - 'ssh-connection', - strlen('keyboard-interactive'), - 'keyboard-interactive', - 0, - '', - 0, - '' - ); - - if (!$this->_send_binary_packet($packet)) { - return false; - } - - return $this->_keyboard_interactive_process($password); - } - - /** - * Handle the keyboard-interactive requests / responses. - * - * @param string $responses... - * @return bool - * @access private - */ - function _keyboard_interactive_process() - { - $responses = func_get_args(); - - if (strlen($this->last_interactive_response)) { - $response = $this->last_interactive_response; - } else { - $orig = $response = $this->_get_binary_packet(); - if ($response === false) { - $this->bitmap = 0; - user_error('Connection closed by server'); - return false; - } - } - - if (!strlen($response)) { - return false; - } - extract(unpack('Ctype', $this->_string_shift($response, 1))); - - switch ($type) { - case NET_SSH2_MSG_USERAUTH_INFO_REQUEST: - if (strlen($response) < 4) { - return false; - } - extract(unpack('Nlength', $this->_string_shift($response, 4))); - $this->_string_shift($response, $length); // name; may be empty - if (strlen($response) < 4) { - return false; - } - extract(unpack('Nlength', $this->_string_shift($response, 4))); - $this->_string_shift($response, $length); // instruction; may be empty - if (strlen($response) < 4) { - return false; - } - extract(unpack('Nlength', $this->_string_shift($response, 4))); - $this->_string_shift($response, $length); // language tag; may be empty - if (strlen($response) < 4) { - return false; - } - extract(unpack('Nnum_prompts', $this->_string_shift($response, 4))); - - for ($i = 0; $i < count($responses); $i++) { - if (is_array($responses[$i])) { - foreach ($responses[$i] as $key => $value) { - $this->keyboard_requests_responses[$key] = $value; - } - unset($responses[$i]); - } - } - $responses = array_values($responses); - - if (isset($this->keyboard_requests_responses)) { - for ($i = 0; $i < $num_prompts; $i++) { - if (strlen($response) < 4) { - return false; - } - extract(unpack('Nlength', $this->_string_shift($response, 4))); - // prompt - ie. "Password: "; must not be empty - $prompt = $this->_string_shift($response, $length); - //$echo = $this->_string_shift($response) != chr(0); - foreach ($this->keyboard_requests_responses as $key => $value) { - if (substr($prompt, 0, strlen($key)) == $key) { - $responses[] = $value; - break; - } - } - } - } - - // see http://tools.ietf.org/html/rfc4256#section-3.2 - if (strlen($this->last_interactive_response)) { - $this->last_interactive_response = ''; - } else { - $this->_updateLogHistory('UNKNOWN (60)', 'NET_SSH2_MSG_USERAUTH_INFO_REQUEST'); - } - - if (!count($responses) && $num_prompts) { - $this->last_interactive_response = $orig; - return false; - } - - /* - After obtaining the requested information from the user, the client - MUST respond with an SSH_MSG_USERAUTH_INFO_RESPONSE message. - */ - // see http://tools.ietf.org/html/rfc4256#section-3.4 - $packet = $logged = pack('CN', NET_SSH2_MSG_USERAUTH_INFO_RESPONSE, count($responses)); - for ($i = 0; $i < count($responses); $i++) { - $packet.= pack('Na*', strlen($responses[$i]), $responses[$i]); - $logged.= pack('Na*', strlen('dummy-answer'), 'dummy-answer'); - } - - if (!$this->_send_binary_packet($packet, $logged)) { - return false; - } - - $this->_updateLogHistory('UNKNOWN (61)', 'NET_SSH2_MSG_USERAUTH_INFO_RESPONSE'); - - /* - After receiving the response, the server MUST send either an - SSH_MSG_USERAUTH_SUCCESS, SSH_MSG_USERAUTH_FAILURE, or another - SSH_MSG_USERAUTH_INFO_REQUEST message. - */ - // maybe phpseclib should force close the connection after x request / responses? unless something like that is done - // there could be an infinite loop of request / responses. - return $this->_keyboard_interactive_process(); - case NET_SSH2_MSG_USERAUTH_SUCCESS: - return true; - case NET_SSH2_MSG_USERAUTH_FAILURE: - return false; - } - - return false; - } - - /** - * Login with an ssh-agent provided key - * - * @param string $username - * @param \phpseclib\System\SSH\Agent $agent - * @return bool - * @access private - */ - function _ssh_agent_login($username, $agent) - { - $this->agent = $agent; - $keys = $agent->requestIdentities(); - foreach ($keys as $key) { - if ($this->_privatekey_login($username, $key)) { - return true; - } - } - - return false; - } - - /** - * Login with an RSA private key - * - * @param string $username - * @param \phpseclib\Crypt\RSA $password - * @return bool - * @access private - * @internal It might be worthwhile, at some point, to protect against {@link http://tools.ietf.org/html/rfc4251#section-9.3.9 traffic analysis} - * by sending dummy SSH_MSG_IGNORE messages. - */ - function _privatekey_login($username, $privatekey) - { - // see http://tools.ietf.org/html/rfc4253#page-15 - $publickey = $privatekey->getPublicKey(RSA::PUBLIC_FORMAT_RAW); - if ($publickey === false) { - return false; - } - - $publickey = array( - 'e' => $publickey['e']->toBytes(true), - 'n' => $publickey['n']->toBytes(true) - ); - $publickey = pack( - 'Na*Na*Na*', - strlen('ssh-rsa'), - 'ssh-rsa', - strlen($publickey['e']), - $publickey['e'], - strlen($publickey['n']), - $publickey['n'] - ); - - switch ($this->signature_format) { - case 'rsa-sha2-512': - $hash = 'sha512'; - $signatureType = 'rsa-sha2-512'; - break; - case 'rsa-sha2-256': - $hash = 'sha256'; - $signatureType = 'rsa-sha2-256'; - break; - //case 'ssh-rsa': - default: - $hash = 'sha1'; - $signatureType = 'ssh-rsa'; - } - - $part1 = pack( - 'CNa*Na*Na*', - NET_SSH2_MSG_USERAUTH_REQUEST, - strlen($username), - $username, - strlen('ssh-connection'), - 'ssh-connection', - strlen('publickey'), - 'publickey' - ); - $part2 = pack('Na*Na*', strlen($signatureType), $signatureType, strlen($publickey), $publickey); - - $packet = $part1 . chr(0) . $part2; - if (!$this->_send_binary_packet($packet)) { - return false; - } - - $response = $this->_get_binary_packet(); - if ($response === false) { - $this->bitmap = 0; - user_error('Connection closed by server'); - return false; - } - - if (!strlen($response)) { - return false; - } - extract(unpack('Ctype', $this->_string_shift($response, 1))); - - switch ($type) { - case NET_SSH2_MSG_USERAUTH_FAILURE: - if (strlen($response) < 4) { - return false; - } - extract(unpack('Nlength', $this->_string_shift($response, 4))); - $this->errors[] = 'SSH_MSG_USERAUTH_FAILURE: ' . $this->_string_shift($response, $length); - return false; - case NET_SSH2_MSG_USERAUTH_PK_OK: - // we'll just take it on faith that the public key blob and the public key algorithm name are as - // they should be - $this->_updateLogHistory('UNKNOWN (60)', 'NET_SSH2_MSG_USERAUTH_PK_OK'); - } - - $packet = $part1 . chr(1) . $part2; - $privatekey->setSignatureMode(RSA::SIGNATURE_PKCS1); - $privatekey->setHash($hash); - $signature = $privatekey->sign(pack('Na*a*', strlen($this->session_id), $this->session_id, $packet)); - $signature = pack('Na*Na*', strlen($signatureType), $signatureType, strlen($signature), $signature); - $packet.= pack('Na*', strlen($signature), $signature); - - if (!$this->_send_binary_packet($packet)) { - return false; - } - - $response = $this->_get_binary_packet(); - if ($response === false) { - $this->bitmap = 0; - user_error('Connection closed by server'); - return false; - } - - if (!strlen($response)) { - return false; - } - extract(unpack('Ctype', $this->_string_shift($response, 1))); - - switch ($type) { - case NET_SSH2_MSG_USERAUTH_FAILURE: - // either the login is bad or the server employs multi-factor authentication - return false; - case NET_SSH2_MSG_USERAUTH_SUCCESS: - $this->bitmap |= self::MASK_LOGIN; - return true; - } - - return false; - } - - /** - * Set Timeout - * - * $ssh->exec('ping 127.0.0.1'); on a Linux host will never return and will run indefinitely. setTimeout() makes it so it'll timeout. - * Setting $timeout to false or 0 will mean there is no timeout. - * - * @param mixed $timeout - * @access public - */ - function setTimeout($timeout) - { - $this->timeout = $this->curTimeout = $timeout; - } - - /** - * Get the output from stdError - * - * @access public - */ - function getStdError() - { - return $this->stdErrorLog; - } - - /** - * Execute Command - * - * If $callback is set to false then \phpseclib\Net\SSH2::_get_channel_packet(self::CHANNEL_EXEC) will need to be called manually. - * In all likelihood, this is not a feature you want to be taking advantage of. - * - * @param string $command - * @param Callback $callback - * @return string - * @access public - */ - function exec($command, $callback = null) - { - $this->curTimeout = $this->timeout; - $this->is_timeout = false; - $this->stdErrorLog = ''; - - if (!$this->isAuthenticated()) { - return false; - } - - if ($this->in_request_pty_exec) { - user_error('If you want to run multiple exec()\'s you will need to disable (and re-enable if appropriate) a PTY for each one.'); - return false; - } - - // RFC4254 defines the (client) window size as "bytes the other party can send before it must wait for the window to - // be adjusted". 0x7FFFFFFF is, at 2GB, the max size. technically, it should probably be decremented, but, - // honestly, if you're transferring more than 2GB, you probably shouldn't be using phpseclib, anyway. - // see http://tools.ietf.org/html/rfc4254#section-5.2 for more info - $this->window_size_server_to_client[self::CHANNEL_EXEC] = $this->window_size; - // 0x8000 is the maximum max packet size, per http://tools.ietf.org/html/rfc4253#section-6.1, although since PuTTy - // uses 0x4000, that's what will be used here, as well. - $packet_size = 0x4000; - - $packet = pack( - 'CNa*N3', - NET_SSH2_MSG_CHANNEL_OPEN, - strlen('session'), - 'session', - self::CHANNEL_EXEC, - $this->window_size_server_to_client[self::CHANNEL_EXEC], - $packet_size - ); - - if (!$this->_send_binary_packet($packet)) { - return false; - } - - $this->channel_status[self::CHANNEL_EXEC] = NET_SSH2_MSG_CHANNEL_OPEN; - - $response = $this->_get_channel_packet(self::CHANNEL_EXEC); - if ($response === false) { - return false; - } - - if ($this->request_pty === true) { - $terminal_modes = pack('C', NET_SSH2_TTY_OP_END); - $packet = pack( - 'CNNa*CNa*N5a*', - NET_SSH2_MSG_CHANNEL_REQUEST, - $this->server_channels[self::CHANNEL_EXEC], - strlen('pty-req'), - 'pty-req', - 1, - strlen('vt100'), - 'vt100', - $this->windowColumns, - $this->windowRows, - 0, - 0, - strlen($terminal_modes), - $terminal_modes - ); - - if (!$this->_send_binary_packet($packet)) { - return false; - } - - $response = $this->_get_binary_packet(); - if ($response === false) { - $this->bitmap = 0; - user_error('Connection closed by server'); - return false; - } - - if (!strlen($response)) { - return false; - } - list(, $type) = unpack('C', $this->_string_shift($response, 1)); - - switch ($type) { - case NET_SSH2_MSG_CHANNEL_SUCCESS: - break; - case NET_SSH2_MSG_CHANNEL_FAILURE: - default: - user_error('Unable to request pseudo-terminal'); - return $this->_disconnect(NET_SSH2_DISCONNECT_BY_APPLICATION); - } - $this->in_request_pty_exec = true; - } - - // sending a pty-req SSH_MSG_CHANNEL_REQUEST message is unnecessary and, in fact, in most cases, slows things - // down. the one place where it might be desirable is if you're doing something like \phpseclib\Net\SSH2::exec('ping localhost &'). - // with a pty-req SSH_MSG_CHANNEL_REQUEST, exec() will return immediately and the ping process will then - // then immediately terminate. without such a request exec() will loop indefinitely. the ping process won't end but - // neither will your script. - - // although, in theory, the size of SSH_MSG_CHANNEL_REQUEST could exceed the maximum packet size established by - // SSH_MSG_CHANNEL_OPEN_CONFIRMATION, RFC4254#section-5.1 states that the "maximum packet size" refers to the - // "maximum size of an individual data packet". ie. SSH_MSG_CHANNEL_DATA. RFC4254#section-5.2 corroborates. - $packet = pack( - 'CNNa*CNa*', - NET_SSH2_MSG_CHANNEL_REQUEST, - $this->server_channels[self::CHANNEL_EXEC], - strlen('exec'), - 'exec', - 1, - strlen($command), - $command - ); - if (!$this->_send_binary_packet($packet)) { - return false; - } - - $this->channel_status[self::CHANNEL_EXEC] = NET_SSH2_MSG_CHANNEL_REQUEST; - - $response = $this->_get_channel_packet(self::CHANNEL_EXEC); - if ($response === false) { - return false; - } - - $this->channel_status[self::CHANNEL_EXEC] = NET_SSH2_MSG_CHANNEL_DATA; - - if ($callback === false || $this->in_request_pty_exec) { - return true; - } - - $output = ''; - while (true) { - $temp = $this->_get_channel_packet(self::CHANNEL_EXEC); - switch (true) { - case $temp === true: - return is_callable($callback) ? true : $output; - case $temp === false: - return false; - default: - if (is_callable($callback)) { - if (call_user_func($callback, $temp) === true) { - $this->_close_channel(self::CHANNEL_EXEC); - return true; - } - } else { - $output.= $temp; - } - } - } - } - - /** - * Creates an interactive shell - * - * @see self::read() - * @see self::write() - * @return bool - * @access private - */ - function _initShell() - { - if ($this->in_request_pty_exec === true) { - return true; - } - - $this->window_size_server_to_client[self::CHANNEL_SHELL] = $this->window_size; - $packet_size = 0x4000; - - $packet = pack( - 'CNa*N3', - NET_SSH2_MSG_CHANNEL_OPEN, - strlen('session'), - 'session', - self::CHANNEL_SHELL, - $this->window_size_server_to_client[self::CHANNEL_SHELL], - $packet_size - ); - - if (!$this->_send_binary_packet($packet)) { - return false; - } - - $this->channel_status[self::CHANNEL_SHELL] = NET_SSH2_MSG_CHANNEL_OPEN; - - $response = $this->_get_channel_packet(self::CHANNEL_SHELL); - if ($response === false) { - return false; - } - - $terminal_modes = pack('C', NET_SSH2_TTY_OP_END); - $packet = pack( - 'CNNa*CNa*N5a*', - NET_SSH2_MSG_CHANNEL_REQUEST, - $this->server_channels[self::CHANNEL_SHELL], - strlen('pty-req'), - 'pty-req', - 1, - strlen('vt100'), - 'vt100', - $this->windowColumns, - $this->windowRows, - 0, - 0, - strlen($terminal_modes), - $terminal_modes - ); - - if (!$this->_send_binary_packet($packet)) { - return false; - } - - $response = $this->_get_binary_packet(); - if ($response === false) { - $this->bitmap = 0; - user_error('Connection closed by server'); - return false; - } - - if (!strlen($response)) { - return false; - } - list(, $type) = unpack('C', $this->_string_shift($response, 1)); - - switch ($type) { - case NET_SSH2_MSG_CHANNEL_SUCCESS: - // if a pty can't be opened maybe commands can still be executed - case NET_SSH2_MSG_CHANNEL_FAILURE: - break; - default: - user_error('Unable to request pseudo-terminal'); - return $this->_disconnect(NET_SSH2_DISCONNECT_BY_APPLICATION); - } - - $packet = pack( - 'CNNa*C', - NET_SSH2_MSG_CHANNEL_REQUEST, - $this->server_channels[self::CHANNEL_SHELL], - strlen('shell'), - 'shell', - 1 - ); - if (!$this->_send_binary_packet($packet)) { - return false; - } - - $this->channel_status[self::CHANNEL_SHELL] = NET_SSH2_MSG_CHANNEL_REQUEST; - - $response = $this->_get_channel_packet(self::CHANNEL_SHELL); - if ($response === false) { - return false; - } - - $this->channel_status[self::CHANNEL_SHELL] = NET_SSH2_MSG_CHANNEL_DATA; - - $this->bitmap |= self::MASK_SHELL; - - return true; - } - - /** - * Return the channel to be used with read() / write() - * - * @see self::read() - * @see self::write() - * @return int - * @access public - */ - function _get_interactive_channel() - { - switch (true) { - case $this->in_subsystem: - return self::CHANNEL_SUBSYSTEM; - case $this->in_request_pty_exec: - return self::CHANNEL_EXEC; - default: - return self::CHANNEL_SHELL; - } - } - - /** - * Return an available open channel - * - * @return int - * @access public - */ - function _get_open_channel() - { - $channel = self::CHANNEL_EXEC; - do { - if (isset($this->channel_status[$channel]) && $this->channel_status[$channel] == NET_SSH2_MSG_CHANNEL_OPEN) { - return $channel; - } - } while ($channel++ < self::CHANNEL_SUBSYSTEM); - - return false; - } - - /** - * Returns the output of an interactive shell - * - * Returns when there's a match for $expect, which can take the form of a string literal or, - * if $mode == self::READ_REGEX, a regular expression. - * - * @see self::write() - * @param string $expect - * @param int $mode - * @return string - * @access public - */ - function read($expect = '', $mode = self::READ_SIMPLE) - { - $this->curTimeout = $this->timeout; - $this->is_timeout = false; - - if (!$this->isAuthenticated()) { - user_error('Operation disallowed prior to login()'); - return false; - } - - if (!($this->bitmap & self::MASK_SHELL) && !$this->_initShell()) { - user_error('Unable to initiate an interactive shell session'); - return false; - } - - $channel = $this->_get_interactive_channel(); - - if ($mode == self::READ_NEXT) { - return $this->_get_channel_packet($channel); - } - - $match = $expect; - while (true) { - if ($mode == self::READ_REGEX) { - preg_match($expect, substr($this->interactiveBuffer, -1024), $matches); - $match = isset($matches[0]) ? $matches[0] : ''; - } - $pos = strlen($match) ? strpos($this->interactiveBuffer, $match) : false; - if ($pos !== false) { - return $this->_string_shift($this->interactiveBuffer, $pos + strlen($match)); - } - $response = $this->_get_channel_packet($channel); - if (is_bool($response)) { - $this->in_request_pty_exec = false; - return $response ? $this->_string_shift($this->interactiveBuffer, strlen($this->interactiveBuffer)) : false; - } - - $this->interactiveBuffer.= $response; - } - } - - /** - * Inputs a command into an interactive shell. - * - * @see self::read() - * @param string $cmd - * @return bool - * @access public - */ - function write($cmd) - { - if (!$this->isAuthenticated()) { - user_error('Operation disallowed prior to login()'); - return false; - } - - if (!($this->bitmap & self::MASK_SHELL) && !$this->_initShell()) { - user_error('Unable to initiate an interactive shell session'); - return false; - } - - return $this->_send_channel_packet($this->_get_interactive_channel(), $cmd); - } - - /** - * Start a subsystem. - * - * Right now only one subsystem at a time is supported. To support multiple subsystem's stopSubsystem() could accept - * a string that contained the name of the subsystem, but at that point, only one subsystem of each type could be opened. - * To support multiple subsystem's of the same name maybe it'd be best if startSubsystem() generated a new channel id and - * returns that and then that that was passed into stopSubsystem() but that'll be saved for a future date and implemented - * if there's sufficient demand for such a feature. - * - * @see self::stopSubsystem() - * @param string $subsystem - * @return bool - * @access public - */ - function startSubsystem($subsystem) - { - $this->window_size_server_to_client[self::CHANNEL_SUBSYSTEM] = $this->window_size; - - $packet = pack( - 'CNa*N3', - NET_SSH2_MSG_CHANNEL_OPEN, - strlen('session'), - 'session', - self::CHANNEL_SUBSYSTEM, - $this->window_size, - 0x4000 - ); - - if (!$this->_send_binary_packet($packet)) { - return false; - } - - $this->channel_status[self::CHANNEL_SUBSYSTEM] = NET_SSH2_MSG_CHANNEL_OPEN; - - $response = $this->_get_channel_packet(self::CHANNEL_SUBSYSTEM); - if ($response === false) { - return false; - } - - $packet = pack( - 'CNNa*CNa*', - NET_SSH2_MSG_CHANNEL_REQUEST, - $this->server_channels[self::CHANNEL_SUBSYSTEM], - strlen('subsystem'), - 'subsystem', - 1, - strlen($subsystem), - $subsystem - ); - if (!$this->_send_binary_packet($packet)) { - return false; - } - - $this->channel_status[self::CHANNEL_SUBSYSTEM] = NET_SSH2_MSG_CHANNEL_REQUEST; - - $response = $this->_get_channel_packet(self::CHANNEL_SUBSYSTEM); - - if ($response === false) { - return false; - } - - $this->channel_status[self::CHANNEL_SUBSYSTEM] = NET_SSH2_MSG_CHANNEL_DATA; - - $this->bitmap |= self::MASK_SHELL; - $this->in_subsystem = true; - - return true; - } - - /** - * Stops a subsystem. - * - * @see self::startSubsystem() - * @return bool - * @access public - */ - function stopSubsystem() - { - $this->in_subsystem = false; - $this->_close_channel(self::CHANNEL_SUBSYSTEM); - return true; - } - - /** - * Closes a channel - * - * If read() timed out you might want to just close the channel and have it auto-restart on the next read() call - * - * @access public - */ - function reset() - { - $this->_close_channel($this->_get_interactive_channel()); - } - - /** - * Is timeout? - * - * Did exec() or read() return because they timed out or because they encountered the end? - * - * @access public - */ - function isTimeout() - { - return $this->is_timeout; - } - - /** - * Disconnect - * - * @access public - */ - function disconnect() - { - $this->_disconnect(NET_SSH2_DISCONNECT_BY_APPLICATION); - if (isset($this->realtime_log_file) && is_resource($this->realtime_log_file)) { - fclose($this->realtime_log_file); - } - } - - /** - * Destructor. - * - * Will be called, automatically, if you're supporting just PHP5. If you're supporting PHP4, you'll need to call - * disconnect(). - * - * @access public - */ - function __destruct() - { - $this->disconnect(); - } - - /** - * Is the connection still active? - * - * @return bool - * @access public - */ - function isConnected() - { - return (bool) ($this->bitmap & self::MASK_CONNECTED); - } - - /** - * Have you successfully been logged in? - * - * @return bool - * @access public - */ - function isAuthenticated() - { - return (bool) ($this->bitmap & self::MASK_LOGIN); - } - - /** - * Pings a server connection, or tries to reconnect if the connection has gone down - * - * Inspired by http://php.net/manual/en/mysqli.ping.php - * - * @return bool - * @access public - */ - function ping() - { - if (!$this->isAuthenticated()) { - if (!empty($this->auth)) { - return $this->_reconnect(); - } - return false; - } - - $this->window_size_server_to_client[self::CHANNEL_KEEP_ALIVE] = $this->window_size; - $packet_size = 0x4000; - $packet = pack( - 'CNa*N3', - NET_SSH2_MSG_CHANNEL_OPEN, - strlen('session'), - 'session', - self::CHANNEL_KEEP_ALIVE, - $this->window_size_server_to_client[self::CHANNEL_KEEP_ALIVE], - $packet_size - ); - - if (!@$this->_send_binary_packet($packet)) { - return $this->_reconnect(); - } - - $this->channel_status[self::CHANNEL_KEEP_ALIVE] = NET_SSH2_MSG_CHANNEL_OPEN; - - $response = @$this->_get_channel_packet(self::CHANNEL_KEEP_ALIVE); - if ($response !== false) { - $this->_close_channel(self::CHANNEL_KEEP_ALIVE); - return true; - } - - return $this->_reconnect(); - } - - /** - * In situ reconnect method - * - * @return boolean - * @access private - */ - function _reconnect() - { - $this->_reset_connection(NET_SSH2_DISCONNECT_CONNECTION_LOST); - $this->retry_connect = true; - if (!$this->_connect()) { - return false; - } - foreach ($this->auth as $auth) { - $result = call_user_func_array(array(&$this, 'login'), $auth); - } - return $result; - } - - /** - * Resets a connection for re-use - * - * @param int $reason - * @access private - */ - function _reset_connection($reason) - { - $this->_disconnect($reason); - $this->decrypt = $this->encrypt = false; - $this->decrypt_block_size = $this->encrypt_block_size = 8; - $this->hmac_check = $this->hmac_create = false; - $this->hmac_size = false; - $this->session_id = false; - $this->retry_connect = true; - $this->get_seq_no = $this->send_seq_no = 0; - } - - /** - * Gets Binary Packets - * - * See '6. Binary Packet Protocol' of rfc4253 for more info. - * - * @see self::_send_binary_packet() - * @return string - * @access private - */ - function _get_binary_packet($skip_channel_filter = false) - { - if (!is_resource($this->fsock) || feof($this->fsock)) { - $this->bitmap = 0; - user_error('Connection closed prematurely'); - return false; - } - - $start = microtime(true); - $raw = stream_get_contents($this->fsock, $this->decrypt_block_size); - - if (!strlen($raw)) { - return ''; - } - - if ($this->decrypt !== false) { - $raw = $this->decrypt->decrypt($raw); - } - if ($raw === false) { - user_error('Unable to decrypt content'); - return false; - } - - if (strlen($raw) < 5) { - return false; - } - extract(unpack('Npacket_length/Cpadding_length', $this->_string_shift($raw, 5))); - - $remaining_length = $packet_length + 4 - $this->decrypt_block_size; - - // quoting , - // "implementations SHOULD check that the packet length is reasonable" - // PuTTY uses 0x9000 as the actual max packet size and so to shall we - if ($remaining_length < -$this->decrypt_block_size || $remaining_length > 0x9000 || $remaining_length % $this->decrypt_block_size != 0) { - if (!$this->bad_key_size_fix && $this->_bad_algorithm_candidate($this->decrypt->name) && !($this->bitmap & SSH2::MASK_LOGIN)) { - $this->bad_key_size_fix = true; - $this->_reset_connection(NET_SSH2_DISCONNECT_KEY_EXCHANGE_FAILED); - return false; - } - user_error('Invalid size'); - return false; - } - - $buffer = ''; - while ($remaining_length > 0) { - $temp = stream_get_contents($this->fsock, $remaining_length); - if ($temp === false || feof($this->fsock)) { - $this->bitmap = 0; - user_error('Error reading from socket'); - return false; - } - $buffer.= $temp; - $remaining_length-= strlen($temp); - } - - $stop = microtime(true); - if (strlen($buffer)) { - $raw.= $this->decrypt !== false ? $this->decrypt->decrypt($buffer) : $buffer; - } - - $payload = $this->_string_shift($raw, $packet_length - $padding_length - 1); - $padding = $this->_string_shift($raw, $padding_length); // should leave $raw empty - - if ($this->hmac_check !== false) { - $hmac = stream_get_contents($this->fsock, $this->hmac_size); - if ($hmac === false || strlen($hmac) != $this->hmac_size) { - $this->bitmap = 0; - user_error('Error reading socket'); - return false; - } elseif ($hmac != $this->hmac_check->hash(pack('NNCa*', $this->get_seq_no, $packet_length, $padding_length, $payload . $padding))) { - user_error('Invalid HMAC'); - return false; - } - } - - //if ($this->decompress) { - // $payload = gzinflate(substr($payload, 2)); - //} - - $this->get_seq_no++; - - if (defined('NET_SSH2_LOGGING')) { - $current = microtime(true); - $message_number = isset($this->message_numbers[ord($payload[0])]) ? $this->message_numbers[ord($payload[0])] : 'UNKNOWN (' . ord($payload[0]) . ')'; - $message_number = '<- ' . $message_number . - ' (since last: ' . round($current - $this->last_packet, 4) . ', network: ' . round($stop - $start, 4) . 's)'; - $this->_append_log($message_number, $payload); - $this->last_packet = $current; - } - - return $this->_filter($payload, $skip_channel_filter); - } - - /** - * Filter Binary Packets - * - * Because some binary packets need to be ignored... - * - * @see self::_get_binary_packet() - * @return string - * @access private - */ - function _filter($payload, $skip_channel_filter) - { - switch (ord($payload[0])) { - case NET_SSH2_MSG_DISCONNECT: - $this->_string_shift($payload, 1); - if (strlen($payload) < 8) { - return false; - } - extract(unpack('Nreason_code/Nlength', $this->_string_shift($payload, 8))); - $this->errors[] = 'SSH_MSG_DISCONNECT: ' . $this->disconnect_reasons[$reason_code] . "\r\n" . $this->_string_shift($payload, $length); - $this->bitmap = 0; - return false; - case NET_SSH2_MSG_IGNORE: - $payload = $this->_get_binary_packet($skip_channel_filter); - break; - case NET_SSH2_MSG_DEBUG: - $this->_string_shift($payload, 2); - if (strlen($payload) < 4) { - return false; - } - extract(unpack('Nlength', $this->_string_shift($payload, 4))); - $this->errors[] = 'SSH_MSG_DEBUG: ' . $this->_string_shift($payload, $length); - $payload = $this->_get_binary_packet($skip_channel_filter); - break; - case NET_SSH2_MSG_UNIMPLEMENTED: - return false; - case NET_SSH2_MSG_KEXINIT: - if ($this->session_id !== false) { - $this->send_kex_first = false; - if (!$this->_key_exchange($payload)) { - $this->bitmap = 0; - return false; - } - $payload = $this->_get_binary_packet($skip_channel_filter); - } - } - - // see http://tools.ietf.org/html/rfc4252#section-5.4; only called when the encryption has been activated and when we haven't already logged in - if (($this->bitmap & self::MASK_CONNECTED) && !$this->isAuthenticated() && ord($payload[0]) == NET_SSH2_MSG_USERAUTH_BANNER) { - $this->_string_shift($payload, 1); - if (strlen($payload) < 4) { - return false; - } - extract(unpack('Nlength', $this->_string_shift($payload, 4))); - $this->banner_message = $this->_string_shift($payload, $length); - $payload = $this->_get_binary_packet(); - } - - // only called when we've already logged in - if (($this->bitmap & self::MASK_CONNECTED) && $this->isAuthenticated()) { - switch (ord($payload[0])) { - case NET_SSH2_MSG_CHANNEL_DATA: - case NET_SSH2_MSG_CHANNEL_EXTENDED_DATA: - case NET_SSH2_MSG_CHANNEL_REQUEST: - case NET_SSH2_MSG_CHANNEL_CLOSE: - case NET_SSH2_MSG_CHANNEL_EOF: - if (!$skip_channel_filter && !empty($this->server_channels)) { - $this->binary_packet_buffer = $payload; - $this->_get_channel_packet(true); - $payload = $this->_get_binary_packet(); - } - break; - case NET_SSH2_MSG_GLOBAL_REQUEST: // see http://tools.ietf.org/html/rfc4254#section-4 - if (strlen($payload) < 4) { - return false; - } - extract(unpack('Nlength', $this->_string_shift($payload, 4))); - $this->errors[] = 'SSH_MSG_GLOBAL_REQUEST: ' . $this->_string_shift($payload, $length); - - if (!$this->_send_binary_packet(pack('C', NET_SSH2_MSG_REQUEST_FAILURE))) { - return $this->_disconnect(NET_SSH2_DISCONNECT_BY_APPLICATION); - } - - $payload = $this->_get_binary_packet($skip_channel_filter); - break; - case NET_SSH2_MSG_CHANNEL_OPEN: // see http://tools.ietf.org/html/rfc4254#section-5.1 - $this->_string_shift($payload, 1); - if (strlen($payload) < 4) { - return false; - } - extract(unpack('Nlength', $this->_string_shift($payload, 4))); - $data = $this->_string_shift($payload, $length); - if (strlen($payload) < 4) { - return false; - } - extract(unpack('Nserver_channel', $this->_string_shift($payload, 4))); - switch ($data) { - case 'auth-agent': - case 'auth-agent@openssh.com': - if (isset($this->agent)) { - $new_channel = self::CHANNEL_AGENT_FORWARD; - - if (strlen($payload) < 8) { - return false; - } - extract(unpack('Nremote_window_size', $this->_string_shift($payload, 4))); - extract(unpack('Nremote_maximum_packet_size', $this->_string_shift($payload, 4))); - - $this->packet_size_client_to_server[$new_channel] = $remote_window_size; - $this->window_size_server_to_client[$new_channel] = $remote_maximum_packet_size; - $this->window_size_client_to_server[$new_channel] = $this->window_size; - - $packet_size = 0x4000; - - $packet = pack( - 'CN4', - NET_SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, - $server_channel, - $new_channel, - $packet_size, - $packet_size - ); - - $this->server_channels[$new_channel] = $server_channel; - $this->channel_status[$new_channel] = NET_SSH2_MSG_CHANNEL_OPEN_CONFIRMATION; - if (!$this->_send_binary_packet($packet)) { - return false; - } - } - break; - default: - $packet = pack( - 'CN3a*Na*', - NET_SSH2_MSG_REQUEST_FAILURE, - $server_channel, - NET_SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED, - 0, - '', - 0, - '' - ); - - if (!$this->_send_binary_packet($packet)) { - return $this->_disconnect(NET_SSH2_DISCONNECT_BY_APPLICATION); - } - } - $payload = $this->_get_binary_packet($skip_channel_filter); - break; - case NET_SSH2_MSG_CHANNEL_WINDOW_ADJUST: - $this->_string_shift($payload, 1); - if (strlen($payload) < 8) { - return false; - } - extract(unpack('Nchannel', $this->_string_shift($payload, 4))); - extract(unpack('Nwindow_size', $this->_string_shift($payload, 4))); - $this->window_size_client_to_server[$channel]+= $window_size; - - $payload = ($this->bitmap & self::MASK_WINDOW_ADJUST) ? true : $this->_get_binary_packet($skip_channel_filter); - } - } - - return $payload; - } - - /** - * Enable Quiet Mode - * - * Suppress stderr from output - * - * @access public - */ - function enableQuietMode() - { - $this->quiet_mode = true; - } - - /** - * Disable Quiet Mode - * - * Show stderr in output - * - * @access public - */ - function disableQuietMode() - { - $this->quiet_mode = false; - } - - /** - * Returns whether Quiet Mode is enabled or not - * - * @see self::enableQuietMode() - * @see self::disableQuietMode() - * @access public - * @return bool - */ - function isQuietModeEnabled() - { - return $this->quiet_mode; - } - - /** - * Enable request-pty when using exec() - * - * @access public - */ - function enablePTY() - { - $this->request_pty = true; - } - - /** - * Disable request-pty when using exec() - * - * @access public - */ - function disablePTY() - { - if ($this->in_request_pty_exec) { - $this->_close_channel(self::CHANNEL_EXEC); - $this->in_request_pty_exec = false; - } - $this->request_pty = false; - } - - /** - * Returns whether request-pty is enabled or not - * - * @see self::enablePTY() - * @see self::disablePTY() - * @access public - * @return bool - */ - function isPTYEnabled() - { - return $this->request_pty; - } - - /** - * Gets channel data - * - * Returns the data as a string if it's available and false if not. - * - * @param $client_channel - * @return mixed - * @access private - */ - function _get_channel_packet($client_channel, $skip_extended = false) - { - if (!empty($this->channel_buffers[$client_channel])) { - return array_shift($this->channel_buffers[$client_channel]); - } - - while (true) { - if ($this->binary_packet_buffer !== false) { - $response = $this->binary_packet_buffer; - $this->binary_packet_buffer = false; - } else { - $read = array($this->fsock); - $write = $except = null; - - if (!$this->curTimeout) { - @stream_select($read, $write, $except, null); - } else { - if ($this->curTimeout < 0) { - $this->is_timeout = true; - return true; - } - - $read = array($this->fsock); - $write = $except = null; - - $start = microtime(true); - $sec = floor($this->curTimeout); - $usec = 1000000 * ($this->curTimeout - $sec); - // on windows this returns a "Warning: Invalid CRT parameters detected" error - if (!@stream_select($read, $write, $except, $sec, $usec) && !count($read)) { - $this->is_timeout = true; - if ($client_channel == self::CHANNEL_EXEC && !$this->request_pty) { - $this->_close_channel($client_channel); - } - return true; - } - $elapsed = microtime(true) - $start; - $this->curTimeout-= $elapsed; - } - - $response = $this->_get_binary_packet(true); - if ($response === false) { - $this->bitmap = 0; - user_error('Connection closed by server'); - return false; - } - } - - if ($client_channel == -1 && $response === true) { - return true; - } - if (!strlen($response)) { - return false; - } - extract(unpack('Ctype', $this->_string_shift($response, 1))); - - if (strlen($response) < 4) { - return false; - } - if ($type == NET_SSH2_MSG_CHANNEL_OPEN) { - extract(unpack('Nlength', $this->_string_shift($response, 4))); - } else { - extract(unpack('Nchannel', $this->_string_shift($response, 4))); - } - - // will not be setup yet on incoming channel open request - if (isset($channel) && isset($this->channel_status[$channel]) && isset($this->window_size_server_to_client[$channel])) { - $this->window_size_server_to_client[$channel]-= strlen($response); - - // resize the window, if appropriate - if ($this->window_size_server_to_client[$channel] < 0) { - // PuTTY does something more analogous to the following: - //if ($this->window_size_server_to_client[$channel] < 0x3FFFFFFF) { - $packet = pack('CNN', NET_SSH2_MSG_CHANNEL_WINDOW_ADJUST, $this->server_channels[$channel], $this->window_resize); - if (!$this->_send_binary_packet($packet)) { - return false; - } - $this->window_size_server_to_client[$channel]+= $this->window_resize; - } - - switch ($type) { - case NET_SSH2_MSG_CHANNEL_EXTENDED_DATA: - /* - if ($client_channel == self::CHANNEL_EXEC) { - $this->_send_channel_packet($client_channel, chr(0)); - } - */ - // currently, there's only one possible value for $data_type_code: NET_SSH2_EXTENDED_DATA_STDERR - if (strlen($response) < 8) { - return false; - } - extract(unpack('Ndata_type_code/Nlength', $this->_string_shift($response, 8))); - $data = $this->_string_shift($response, $length); - $this->stdErrorLog.= $data; - if ($skip_extended || $this->quiet_mode) { - continue 2; - } - if ($client_channel == $channel && $this->channel_status[$channel] == NET_SSH2_MSG_CHANNEL_DATA) { - return $data; - } - if (!isset($this->channel_buffers[$channel])) { - $this->channel_buffers[$channel] = array(); - } - $this->channel_buffers[$channel][] = $data; - - continue 2; - case NET_SSH2_MSG_CHANNEL_REQUEST: - if ($this->channel_status[$channel] == NET_SSH2_MSG_CHANNEL_CLOSE) { - continue 2; - } - if (strlen($response) < 4) { - return false; - } - extract(unpack('Nlength', $this->_string_shift($response, 4))); - $value = $this->_string_shift($response, $length); - switch ($value) { - case 'exit-signal': - $this->_string_shift($response, 1); - if (strlen($response) < 4) { - return false; - } - extract(unpack('Nlength', $this->_string_shift($response, 4))); - $this->errors[] = 'SSH_MSG_CHANNEL_REQUEST (exit-signal): ' . $this->_string_shift($response, $length); - $this->_string_shift($response, 1); - if (strlen($response) < 4) { - return false; - } - extract(unpack('Nlength', $this->_string_shift($response, 4))); - if ($length) { - $this->errors[count($this->errors)].= "\r\n" . $this->_string_shift($response, $length); - } - - $this->_send_binary_packet(pack('CN', NET_SSH2_MSG_CHANNEL_EOF, $this->server_channels[$client_channel])); - $this->_send_binary_packet(pack('CN', NET_SSH2_MSG_CHANNEL_CLOSE, $this->server_channels[$channel])); - - $this->channel_status[$channel] = NET_SSH2_MSG_CHANNEL_EOF; - - continue 3; - case 'exit-status': - if (strlen($response) < 5) { - return false; - } - extract(unpack('Cfalse/Nexit_status', $this->_string_shift($response, 5))); - $this->exit_status = $exit_status; - - // "The client MAY ignore these messages." - // -- http://tools.ietf.org/html/rfc4254#section-6.10 - - continue 3; - default: - // "Some systems may not implement signals, in which case they SHOULD ignore this message." - // -- http://tools.ietf.org/html/rfc4254#section-6.9 - continue 3; - } - } - - switch ($this->channel_status[$channel]) { - case NET_SSH2_MSG_CHANNEL_OPEN: - switch ($type) { - case NET_SSH2_MSG_CHANNEL_OPEN_CONFIRMATION: - if (strlen($response) < 4) { - return false; - } - extract(unpack('Nserver_channel', $this->_string_shift($response, 4))); - $this->server_channels[$channel] = $server_channel; - if (strlen($response) < 4) { - return false; - } - extract(unpack('Nwindow_size', $this->_string_shift($response, 4))); - if ($window_size < 0) { - $window_size&= 0x7FFFFFFF; - $window_size+= 0x80000000; - } - $this->window_size_client_to_server[$channel] = $window_size; - if (strlen($response) < 4) { - return false; - } - $temp = unpack('Npacket_size_client_to_server', $this->_string_shift($response, 4)); - $this->packet_size_client_to_server[$channel] = $temp['packet_size_client_to_server']; - $result = $client_channel == $channel ? true : $this->_get_channel_packet($client_channel, $skip_extended); - $this->_on_channel_open(); - return $result; - //case NET_SSH2_MSG_CHANNEL_OPEN_FAILURE: - default: - user_error('Unable to open channel'); - return $this->_disconnect(NET_SSH2_DISCONNECT_BY_APPLICATION); - } - break; - case NET_SSH2_MSG_CHANNEL_REQUEST: - switch ($type) { - case NET_SSH2_MSG_CHANNEL_SUCCESS: - return true; - case NET_SSH2_MSG_CHANNEL_FAILURE: - return false; - default: - user_error('Unable to fulfill channel request'); - return $this->_disconnect(NET_SSH2_DISCONNECT_BY_APPLICATION); - } - case NET_SSH2_MSG_CHANNEL_CLOSE: - return $type == NET_SSH2_MSG_CHANNEL_CLOSE ? true : $this->_get_channel_packet($client_channel, $skip_extended); - } - } - - // ie. $this->channel_status[$channel] == NET_SSH2_MSG_CHANNEL_DATA - - switch ($type) { - case NET_SSH2_MSG_CHANNEL_DATA: - /* - if ($channel == self::CHANNEL_EXEC) { - // SCP requires null packets, such as this, be sent. further, in the case of the ssh.com SSH server - // this actually seems to make things twice as fast. more to the point, the message right after - // SSH_MSG_CHANNEL_DATA (usually SSH_MSG_IGNORE) won't block for as long as it would have otherwise. - // in OpenSSH it slows things down but only by a couple thousandths of a second. - $this->_send_channel_packet($channel, chr(0)); - } - */ - if (strlen($response) < 4) { - return false; - } - extract(unpack('Nlength', $this->_string_shift($response, 4))); - $data = $this->_string_shift($response, $length); - - if ($channel == self::CHANNEL_AGENT_FORWARD) { - $agent_response = $this->agent->_forward_data($data); - if (!is_bool($agent_response)) { - $this->_send_channel_packet($channel, $agent_response); - } - break; - } - - if ($client_channel == $channel) { - return $data; - } - if (!isset($this->channel_buffers[$channel])) { - $this->channel_buffers[$channel] = array(); - } - $this->channel_buffers[$channel][] = $data; - break; - case NET_SSH2_MSG_CHANNEL_CLOSE: - $this->curTimeout = 0; - - if ($this->bitmap & self::MASK_SHELL) { - $this->bitmap&= ~self::MASK_SHELL; - } - if ($this->channel_status[$channel] != NET_SSH2_MSG_CHANNEL_EOF) { - $this->_send_binary_packet(pack('CN', NET_SSH2_MSG_CHANNEL_CLOSE, $this->server_channels[$channel])); - } - - $this->channel_status[$channel] = NET_SSH2_MSG_CHANNEL_CLOSE; - if ($client_channel == $channel) { - return true; - } - case NET_SSH2_MSG_CHANNEL_EOF: - break; - default: - user_error('Error reading channel data'); - return $this->_disconnect(NET_SSH2_DISCONNECT_BY_APPLICATION); - } - } - } - - /** - * Sends Binary Packets - * - * See '6. Binary Packet Protocol' of rfc4253 for more info. - * - * @param string $data - * @param string $logged - * @see self::_get_binary_packet() - * @return bool - * @access private - */ - function _send_binary_packet($data, $logged = null) - { - if (!is_resource($this->fsock) || feof($this->fsock)) { - $this->bitmap = 0; - user_error('Connection closed prematurely'); - return false; - } - - //if ($this->compress) { - // // the -4 removes the checksum: - // // http://php.net/function.gzcompress#57710 - // $data = substr(gzcompress($data), 0, -4); - //} - - // 4 (packet length) + 1 (padding length) + 4 (minimal padding amount) == 9 - $packet_length = strlen($data) + 9; - // round up to the nearest $this->encrypt_block_size - $packet_length+= (($this->encrypt_block_size - 1) * $packet_length) % $this->encrypt_block_size; - // subtracting strlen($data) is obvious - subtracting 5 is necessary because of packet_length and padding_length - $padding_length = $packet_length - strlen($data) - 5; - $padding = Random::string($padding_length); - - // we subtract 4 from packet_length because the packet_length field isn't supposed to include itself - $packet = pack('NCa*', $packet_length - 4, $padding_length, $data . $padding); - - $hmac = $this->hmac_create !== false ? $this->hmac_create->hash(pack('Na*', $this->send_seq_no, $packet)) : ''; - $this->send_seq_no++; - - if ($this->encrypt !== false) { - $packet = $this->encrypt->encrypt($packet); - } - - $packet.= $hmac; - - $start = microtime(true); - $result = strlen($packet) == fputs($this->fsock, $packet); - $stop = microtime(true); - - if (defined('NET_SSH2_LOGGING')) { - $current = microtime(true); - $message_number = isset($this->message_numbers[ord($data[0])]) ? $this->message_numbers[ord($data[0])] : 'UNKNOWN (' . ord($data[0]) . ')'; - $message_number = '-> ' . $message_number . - ' (since last: ' . round($current - $this->last_packet, 4) . ', network: ' . round($stop - $start, 4) . 's)'; - $this->_append_log($message_number, isset($logged) ? $logged : $data); - $this->last_packet = $current; - } - - return $result; - } - - /** - * Logs data packets - * - * Makes sure that only the last 1MB worth of packets will be logged - * - * @param string $data - * @access private - */ - function _append_log($message_number, $message) - { - // remove the byte identifying the message type from all but the first two messages (ie. the identification strings) - if (strlen($message_number) > 2) { - $this->_string_shift($message); - } - - switch (NET_SSH2_LOGGING) { - // useful for benchmarks - case self::LOG_SIMPLE: - $this->message_number_log[] = $message_number; - break; - // the most useful log for SSH2 - case self::LOG_COMPLEX: - $this->message_number_log[] = $message_number; - $this->log_size+= strlen($message); - $this->message_log[] = $message; - while ($this->log_size > self::LOG_MAX_SIZE) { - $this->log_size-= strlen(array_shift($this->message_log)); - array_shift($this->message_number_log); - } - break; - // dump the output out realtime; packets may be interspersed with non packets, - // passwords won't be filtered out and select other packets may not be correctly - // identified - case self::LOG_REALTIME: - switch (PHP_SAPI) { - case 'cli': - $start = $stop = "\r\n"; - break; - default: - $start = '
';
-                        $stop = '
'; - } - echo $start . $this->_format_log(array($message), array($message_number)) . $stop; - @flush(); - @ob_flush(); - break; - // basically the same thing as self::LOG_REALTIME with the caveat that self::LOG_REALTIME_FILE - // needs to be defined and that the resultant log file will be capped out at self::LOG_MAX_SIZE. - // the earliest part of the log file is denoted by the first <<< START >>> and is not going to necessarily - // at the beginning of the file - case self::LOG_REALTIME_FILE: - if (!isset($this->realtime_log_file)) { - // PHP doesn't seem to like using constants in fopen() - $filename = self::LOG_REALTIME_FILENAME; - $fp = fopen($filename, 'w'); - $this->realtime_log_file = $fp; - } - if (!is_resource($this->realtime_log_file)) { - break; - } - $entry = $this->_format_log(array($message), array($message_number)); - if ($this->realtime_log_wrap) { - $temp = "<<< START >>>\r\n"; - $entry.= $temp; - fseek($this->realtime_log_file, ftell($this->realtime_log_file) - strlen($temp)); - } - $this->realtime_log_size+= strlen($entry); - if ($this->realtime_log_size > self::LOG_MAX_SIZE) { - fseek($this->realtime_log_file, 0); - $this->realtime_log_size = strlen($entry); - $this->realtime_log_wrap = true; - } - fputs($this->realtime_log_file, $entry); - } - } - - /** - * Sends channel data - * - * Spans multiple SSH_MSG_CHANNEL_DATAs if appropriate - * - * @param int $client_channel - * @param string $data - * @return bool - * @access private - */ - function _send_channel_packet($client_channel, $data) - { - while (strlen($data)) { - if (!$this->window_size_client_to_server[$client_channel]) { - $this->bitmap^= self::MASK_WINDOW_ADJUST; - // using an invalid channel will let the buffers be built up for the valid channels - $this->_get_channel_packet(-1); - $this->bitmap^= self::MASK_WINDOW_ADJUST; - } - - /* The maximum amount of data allowed is determined by the maximum - packet size for the channel, and the current window size, whichever - is smaller. - -- http://tools.ietf.org/html/rfc4254#section-5.2 */ - $max_size = min( - $this->packet_size_client_to_server[$client_channel], - $this->window_size_client_to_server[$client_channel] - ); - - $temp = $this->_string_shift($data, $max_size); - $packet = pack( - 'CN2a*', - NET_SSH2_MSG_CHANNEL_DATA, - $this->server_channels[$client_channel], - strlen($temp), - $temp - ); - $this->window_size_client_to_server[$client_channel]-= strlen($temp); - if (!$this->_send_binary_packet($packet)) { - return false; - } - } - - return true; - } - - /** - * Closes and flushes a channel - * - * \phpseclib\Net\SSH2 doesn't properly close most channels. For exec() channels are normally closed by the server - * and for SFTP channels are presumably closed when the client disconnects. This functions is intended - * for SCP more than anything. - * - * @param int $client_channel - * @param bool $want_reply - * @return bool - * @access private - */ - function _close_channel($client_channel, $want_reply = false) - { - // see http://tools.ietf.org/html/rfc4254#section-5.3 - - $this->_send_binary_packet(pack('CN', NET_SSH2_MSG_CHANNEL_EOF, $this->server_channels[$client_channel])); - - if (!$want_reply) { - $this->_send_binary_packet(pack('CN', NET_SSH2_MSG_CHANNEL_CLOSE, $this->server_channels[$client_channel])); - } - - $this->channel_status[$client_channel] = NET_SSH2_MSG_CHANNEL_CLOSE; - - $this->curTimeout = 0; - - while (!is_bool($this->_get_channel_packet($client_channel))) { - } - - if ($want_reply) { - $this->_send_binary_packet(pack('CN', NET_SSH2_MSG_CHANNEL_CLOSE, $this->server_channels[$client_channel])); - } - - if ($this->bitmap & self::MASK_SHELL) { - $this->bitmap&= ~self::MASK_SHELL; - } - } - - /** - * Disconnect - * - * @param int $reason - * @return bool - * @access private - */ - function _disconnect($reason) - { - if ($this->bitmap & self::MASK_CONNECTED) { - $data = pack('CNNa*Na*', NET_SSH2_MSG_DISCONNECT, $reason, 0, '', 0, ''); - $this->_send_binary_packet($data); - } - - $this->bitmap = 0; - if (is_resource($this->fsock) && get_resource_type($this->fsock) == 'stream') { - fclose($this->fsock); - } - - return false; - } - - /** - * String Shift - * - * Inspired by array_shift - * - * @param string $string - * @param int $index - * @return string - * @access private - */ - function _string_shift(&$string, $index = 1) - { - $substr = substr($string, 0, $index); - $string = substr($string, $index); - return $substr; - } - - /** - * Define Array - * - * Takes any number of arrays whose indices are integers and whose values are strings and defines a bunch of - * named constants from it, using the value as the name of the constant and the index as the value of the constant. - * If any of the constants that would be defined already exists, none of the constants will be defined. - * - * @param array $array - * @access private - */ - function _define_array() - { - $args = func_get_args(); - foreach ($args as $arg) { - foreach ($arg as $key => $value) { - if (!defined($value)) { - define($value, $key); - } else { - break 2; - } - } - } - } - - /** - * Returns a log of the packets that have been sent and received. - * - * Returns a string if NET_SSH2_LOGGING == self::LOG_COMPLEX, an array if NET_SSH2_LOGGING == self::LOG_SIMPLE and false if !defined('NET_SSH2_LOGGING') - * - * @access public - * @return array|false|string - */ - function getLog() - { - if (!defined('NET_SSH2_LOGGING')) { - return false; - } - - switch (NET_SSH2_LOGGING) { - case self::LOG_SIMPLE: - return $this->message_number_log; - case self::LOG_COMPLEX: - $log = $this->_format_log($this->message_log, $this->message_number_log); - return PHP_SAPI == 'cli' ? $log : '
' . $log . '
'; - default: - return false; - } - } - - /** - * Formats a log for printing - * - * @param array $message_log - * @param array $message_number_log - * @access private - * @return string - */ - function _format_log($message_log, $message_number_log) - { - $output = ''; - for ($i = 0; $i < count($message_log); $i++) { - $output.= $message_number_log[$i] . "\r\n"; - $current_log = $message_log[$i]; - $j = 0; - do { - if (strlen($current_log)) { - $output.= str_pad(dechex($j), 7, '0', STR_PAD_LEFT) . '0 '; - } - $fragment = $this->_string_shift($current_log, $this->log_short_width); - $hex = substr(preg_replace_callback('#.#s', array($this, '_format_log_helper'), $fragment), strlen($this->log_boundary)); - // replace non ASCII printable characters with dots - // http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters - // also replace < with a . since < messes up the output on web browsers - $raw = preg_replace('#[^\x20-\x7E]|<#', '.', $fragment); - $output.= str_pad($hex, $this->log_long_width - $this->log_short_width, ' ') . $raw . "\r\n"; - $j++; - } while (strlen($current_log)); - $output.= "\r\n"; - } - - return $output; - } - - /** - * Helper function for _format_log - * - * For use with preg_replace_callback() - * - * @param array $matches - * @access private - * @return string - */ - function _format_log_helper($matches) - { - return $this->log_boundary . str_pad(dechex(ord($matches[0])), 2, '0', STR_PAD_LEFT); - } - - /** - * Helper function for agent->_on_channel_open() - * - * Used when channels are created to inform agent - * of said channel opening. Must be called after - * channel open confirmation received - * - * @access private - */ - function _on_channel_open() - { - if (isset($this->agent)) { - $this->agent->_on_channel_open($this); - } - } - - /** - * Returns the first value of the intersection of two arrays or false if - * the intersection is empty. The order is defined by the first parameter. - * - * @param array $array1 - * @param array $array2 - * @return mixed False if intersection is empty, else intersected value. - * @access private - */ - function _array_intersect_first($array1, $array2) - { - foreach ($array1 as $value) { - if (in_array($value, $array2)) { - return $value; - } - } - return false; - } - - /** - * Returns all errors - * - * @return string[] - * @access public - */ - function getErrors() - { - return $this->errors; - } - - /** - * Returns the last error - * - * @return string - * @access public - */ - function getLastError() - { - $count = count($this->errors); - - if ($count > 0) { - return $this->errors[$count - 1]; - } - } - - /** - * Return the server identification. - * - * @return string - * @access public - */ - function getServerIdentification() - { - $this->_connect(); - - return $this->server_identifier; - } - - /** - * Return a list of the key exchange algorithms the server supports. - * - * @return array - * @access public - */ - function getKexAlgorithms() - { - $this->_connect(); - - return $this->kex_algorithms; - } - - /** - * Return a list of the host key (public key) algorithms the server supports. - * - * @return array - * @access public - */ - function getServerHostKeyAlgorithms() - { - $this->_connect(); - - return $this->server_host_key_algorithms; - } - - /** - * Return a list of the (symmetric key) encryption algorithms the server supports, when receiving stuff from the client. - * - * @return array - * @access public - */ - function getEncryptionAlgorithmsClient2Server() - { - $this->_connect(); - - return $this->encryption_algorithms_client_to_server; - } - - /** - * Return a list of the (symmetric key) encryption algorithms the server supports, when sending stuff to the client. - * - * @return array - * @access public - */ - function getEncryptionAlgorithmsServer2Client() - { - $this->_connect(); - - return $this->encryption_algorithms_server_to_client; - } - - /** - * Return a list of the MAC algorithms the server supports, when receiving stuff from the client. - * - * @return array - * @access public - */ - function getMACAlgorithmsClient2Server() - { - $this->_connect(); - - return $this->mac_algorithms_client_to_server; - } - - /** - * Return a list of the MAC algorithms the server supports, when sending stuff to the client. - * - * @return array - * @access public - */ - function getMACAlgorithmsServer2Client() - { - $this->_connect(); - - return $this->mac_algorithms_server_to_client; - } - - /** - * Return a list of the compression algorithms the server supports, when receiving stuff from the client. - * - * @return array - * @access public - */ - function getCompressionAlgorithmsClient2Server() - { - $this->_connect(); - - return $this->compression_algorithms_client_to_server; - } - - /** - * Return a list of the compression algorithms the server supports, when sending stuff to the client. - * - * @return array - * @access public - */ - function getCompressionAlgorithmsServer2Client() - { - $this->_connect(); - - return $this->compression_algorithms_server_to_client; - } - - /** - * Return a list of the languages the server supports, when sending stuff to the client. - * - * @return array - * @access public - */ - function getLanguagesServer2Client() - { - $this->_connect(); - - return $this->languages_server_to_client; - } - - /** - * Return a list of the languages the server supports, when receiving stuff from the client. - * - * @return array - * @access public - */ - function getLanguagesClient2Server() - { - $this->_connect(); - - return $this->languages_client_to_server; - } - - /** - * Returns a list of algorithms the server supports - * - * @return array - * @access public - */ - function getServerAlgorithms() - { - $this->_connect(); - - return array( - 'kex' => $this->kex_algorithms, - 'hostkey' => $this->server_host_key_algorithms, - 'client_to_server' => array( - 'crypt' => $this->encryption_algorithms_client_to_server, - 'mac' => $this->mac_algorithms_client_to_server, - 'comp' => $this->compression_algorithms_client_to_server, - 'lang' => $this->languages_client_to_server - ), - 'server_to_client' => array( - 'crypt' => $this->encryption_algorithms_server_to_client, - 'mac' => $this->mac_algorithms_server_to_client, - 'comp' => $this->compression_algorithms_server_to_client, - 'lang' => $this->languages_server_to_client - ) - ); - } - - /** - * Returns a list of KEX algorithms that phpseclib supports - * - * @return array - * @access public - */ - function getSupportedKEXAlgorithms() - { - $kex_algorithms = array( - // Elliptic Curve Diffie-Hellman Key Agreement (ECDH) using - // Curve25519. See doc/curve25519-sha256@libssh.org.txt in the - // libssh repository for more information. - 'curve25519-sha256@libssh.org', - - 'diffie-hellman-group-exchange-sha256',// RFC 4419 - 'diffie-hellman-group-exchange-sha1', // RFC 4419 - - // Diffie-Hellman Key Agreement (DH) using integer modulo prime - // groups. - 'diffie-hellman-group14-sha1', // REQUIRED - 'diffie-hellman-group1-sha1', // REQUIRED - ); - - if (!function_exists('sodium_crypto_box_publickey_from_secretkey')) { - $kex_algorithms = array_diff( - $kex_algorithms, - array('curve25519-sha256@libssh.org') - ); - } - - return $kex_algorithms; - } - - /** - * Returns a list of host key algorithms that phpseclib supports - * - * @return array - * @access public - */ - function getSupportedHostKeyAlgorithms() - { - return array( - 'rsa-sha2-256', // RFC 8332 - 'rsa-sha2-512', // RFC 8332 - 'ssh-rsa', // RECOMMENDED sign Raw RSA Key - 'ssh-dss' // REQUIRED sign Raw DSS Key - ); - } - - /** - * Returns a list of symmetric key algorithms that phpseclib supports - * - * @return array - * @access public - */ - function getSupportedEncryptionAlgorithms() - { - $algos = array( - // from : - 'arcfour256', - 'arcfour128', - - //'arcfour', // OPTIONAL the ARCFOUR stream cipher with a 128-bit key - - // CTR modes from : - 'aes128-ctr', // RECOMMENDED AES (Rijndael) in SDCTR mode, with 128-bit key - 'aes192-ctr', // RECOMMENDED AES with 192-bit key - 'aes256-ctr', // RECOMMENDED AES with 256-bit key - - 'twofish128-ctr', // OPTIONAL Twofish in SDCTR mode, with 128-bit key - 'twofish192-ctr', // OPTIONAL Twofish with 192-bit key - 'twofish256-ctr', // OPTIONAL Twofish with 256-bit key - - 'aes128-cbc', // RECOMMENDED AES with a 128-bit key - 'aes192-cbc', // OPTIONAL AES with a 192-bit key - 'aes256-cbc', // OPTIONAL AES in CBC mode, with a 256-bit key - - 'twofish128-cbc', // OPTIONAL Twofish with a 128-bit key - 'twofish192-cbc', // OPTIONAL Twofish with a 192-bit key - 'twofish256-cbc', - 'twofish-cbc', // OPTIONAL alias for "twofish256-cbc" - // (this is being retained for historical reasons) - - 'blowfish-ctr', // OPTIONAL Blowfish in SDCTR mode - - 'blowfish-cbc', // OPTIONAL Blowfish in CBC mode - - '3des-ctr', // RECOMMENDED Three-key 3DES in SDCTR mode - - '3des-cbc', // REQUIRED three-key 3DES in CBC mode - - //'none' // OPTIONAL no encryption; NOT RECOMMENDED - ); - - $engines = array( - Base::ENGINE_OPENSSL, - Base::ENGINE_MCRYPT, - Base::ENGINE_INTERNAL - ); - - $ciphers = array(); - foreach ($engines as $engine) { - foreach ($algos as $algo) { - $obj = $this->_encryption_algorithm_to_crypt_instance($algo); - if ($obj instanceof Rijndael) { - $obj->setKeyLength(preg_replace('#[^\d]#', '', $algo)); - } - switch ($algo) { - case 'arcfour128': - case 'arcfour256': - if ($engine != Base::ENGINE_INTERNAL) { - continue 2; - } - } - if ($obj->isValidEngine($engine)) { - $algos = array_diff($algos, array($algo)); - $ciphers[] = $algo; - } - } - } - - return $ciphers; - } - - /** - * Returns a list of MAC algorithms that phpseclib supports - * - * @return array - * @access public - */ - function getSupportedMACAlgorithms() - { - return array( - // from : - 'hmac-sha2-256',// RECOMMENDED HMAC-SHA256 (digest length = key length = 32) - - 'hmac-sha1-96', // RECOMMENDED first 96 bits of HMAC-SHA1 (digest length = 12, key length = 20) - 'hmac-sha1', // REQUIRED HMAC-SHA1 (digest length = key length = 20) - 'hmac-md5-96', // OPTIONAL first 96 bits of HMAC-MD5 (digest length = 12, key length = 16) - 'hmac-md5', // OPTIONAL HMAC-MD5 (digest length = key length = 16) - //'none' // OPTIONAL no MAC; NOT RECOMMENDED - ); - } - - /** - * Returns a list of compression algorithms that phpseclib supports - * - * @return array - * @access public - */ - function getSupportedCompressionAlgorithms() - { - return array( - 'none' // REQUIRED no compression - //'zlib' // OPTIONAL ZLIB (LZ77) compression - ); - } - - /** - * Return list of negotiated algorithms - * - * Uses the same format as https://www.php.net/ssh2-methods-negotiated - * - * @return array - * @access public - */ - function getAlgorithmsNegotiated() - { - $this->_connect(); - - return array( - 'kex' => $this->kex_algorithm, - 'hostkey' => $this->signature_format, - 'client_to_server' => array( - 'crypt' => $this->encrypt->name, - 'mac' => $this->hmac_create->name, - 'comp' => 'none', - ), - 'server_to_client' => array( - 'crypt' => $this->decrypt->name, - 'mac' => $this->hmac_check->name, - 'comp' => 'none', - ) - ); - } - - /** - * Accepts an associative array with up to four parameters as described at - * - * - * @param array $methods - * @access public - */ - function setPreferredAlgorithms($methods) - { - $preferred = $methods; - - if (isset($preferred['kex'])) { - $preferred['kex'] = array_intersect( - $preferred['kex'], - $this->getSupportedKEXAlgorithms() - ); - } - - if (isset($preferred['hostkey'])) { - $preferred['hostkey'] = array_intersect( - $preferred['hostkey'], - $this->getSupportedHostKeyAlgorithms() - ); - } - - $keys = array('client_to_server', 'server_to_client'); - foreach ($keys as $key) { - if (isset($preferred[$key])) { - $a = &$preferred[$key]; - if (isset($a['crypt'])) { - $a['crypt'] = array_intersect( - $a['crypt'], - $this->getSupportedEncryptionAlgorithms() - ); - } - if (isset($a['comp'])) { - $a['comp'] = array_intersect( - $a['comp'], - $this->getSupportedCompressionAlgorithms() - ); - } - if (isset($a['mac'])) { - $a['mac'] = array_intersect( - $a['mac'], - $this->getSupportedMACAlgorithms() - ); - } - } - } - - $keys = array( - 'kex', - 'hostkey', - 'client_to_server/crypt', - 'client_to_server/comp', - 'client_to_server/mac', - 'server_to_client/crypt', - 'server_to_client/comp', - 'server_to_client/mac', - ); - foreach ($keys as $key) { - $p = $preferred; - $m = $methods; - - $subkeys = explode('/', $key); - foreach ($subkeys as $subkey) { - if (!isset($p[$subkey])) { - continue 2; - } - $p = $p[$subkey]; - $m = $m[$subkey]; - } - - if (count($p) != count($m)) { - $diff = array_diff($m, $p); - $msg = count($diff) == 1 ? - ' is not a supported algorithm' : - ' are not supported algorithms'; - user_error(implode(', ', $diff) . $msg); - return false; - } - } - - $this->preferred = $preferred; - } - - /** - * Returns the banner message. - * - * Quoting from the RFC, "in some jurisdictions, sending a warning message before - * authentication may be relevant for getting legal protection." - * - * @return string - * @access public - */ - function getBannerMessage() - { - return $this->banner_message; - } - - /** - * Returns the server public host key. - * - * Caching this the first time you connect to a server and checking the result on subsequent connections - * is recommended. Returns false if the server signature is not signed correctly with the public host key. - * - * @return mixed - * @access public - */ - function getServerPublicHostKey() - { - if (!($this->bitmap & self::MASK_CONSTRUCTOR)) { - if (!$this->_connect()) { - return false; - } - } - - $signature = $this->signature; - $server_public_host_key = $this->server_public_host_key; - - if (strlen($server_public_host_key) < 4) { - return false; - } - extract(unpack('Nlength', $this->_string_shift($server_public_host_key, 4))); - $this->_string_shift($server_public_host_key, $length); - - if ($this->signature_validated) { - return $this->bitmap ? - $this->signature_format . ' ' . base64_encode($this->server_public_host_key) : - false; - } - - $this->signature_validated = true; - - switch ($this->signature_format) { - case 'ssh-dss': - $zero = new BigInteger(); - - if (strlen($server_public_host_key) < 4) { - return false; - } - $temp = unpack('Nlength', $this->_string_shift($server_public_host_key, 4)); - $p = new BigInteger($this->_string_shift($server_public_host_key, $temp['length']), -256); - - if (strlen($server_public_host_key) < 4) { - return false; - } - $temp = unpack('Nlength', $this->_string_shift($server_public_host_key, 4)); - $q = new BigInteger($this->_string_shift($server_public_host_key, $temp['length']), -256); - - if (strlen($server_public_host_key) < 4) { - return false; - } - $temp = unpack('Nlength', $this->_string_shift($server_public_host_key, 4)); - $g = new BigInteger($this->_string_shift($server_public_host_key, $temp['length']), -256); - - if (strlen($server_public_host_key) < 4) { - return false; - } - $temp = unpack('Nlength', $this->_string_shift($server_public_host_key, 4)); - $y = new BigInteger($this->_string_shift($server_public_host_key, $temp['length']), -256); - - /* The value for 'dss_signature_blob' is encoded as a string containing - r, followed by s (which are 160-bit integers, without lengths or - padding, unsigned, and in network byte order). */ - $temp = unpack('Nlength', $this->_string_shift($signature, 4)); - if ($temp['length'] != 40) { - user_error('Invalid signature'); - return $this->_disconnect(NET_SSH2_DISCONNECT_KEY_EXCHANGE_FAILED); - } - - $r = new BigInteger($this->_string_shift($signature, 20), 256); - $s = new BigInteger($this->_string_shift($signature, 20), 256); - - switch (true) { - case $r->equals($zero): - case $r->compare($q) >= 0: - case $s->equals($zero): - case $s->compare($q) >= 0: - user_error('Invalid signature'); - return $this->_disconnect(NET_SSH2_DISCONNECT_KEY_EXCHANGE_FAILED); - } - - $w = $s->modInverse($q); - - $u1 = $w->multiply(new BigInteger(sha1($this->exchange_hash), 16)); - list(, $u1) = $u1->divide($q); - - $u2 = $w->multiply($r); - list(, $u2) = $u2->divide($q); - - $g = $g->modPow($u1, $p); - $y = $y->modPow($u2, $p); - - $v = $g->multiply($y); - list(, $v) = $v->divide($p); - list(, $v) = $v->divide($q); - - if (!$v->equals($r)) { - user_error('Bad server signature'); - return $this->_disconnect(NET_SSH2_DISCONNECT_HOST_KEY_NOT_VERIFIABLE); - } - - break; - case 'ssh-rsa': - case 'rsa-sha2-256': - case 'rsa-sha2-512': - if (strlen($server_public_host_key) < 4) { - return false; - } - $temp = unpack('Nlength', $this->_string_shift($server_public_host_key, 4)); - $e = new BigInteger($this->_string_shift($server_public_host_key, $temp['length']), -256); - - if (strlen($server_public_host_key) < 4) { - return false; - } - $temp = unpack('Nlength', $this->_string_shift($server_public_host_key, 4)); - $rawN = $this->_string_shift($server_public_host_key, $temp['length']); - $n = new BigInteger($rawN, -256); - $nLength = strlen(ltrim($rawN, "\0")); - - /* - if (strlen($signature) < 4) { - return false; - } - $temp = unpack('Nlength', $this->_string_shift($signature, 4)); - $signature = $this->_string_shift($signature, $temp['length']); - - $rsa = new RSA(); - switch ($this->signature_format) { - case 'rsa-sha2-512': - $hash = 'sha512'; - break; - case 'rsa-sha2-256': - $hash = 'sha256'; - break; - //case 'ssh-rsa': - default: - $hash = 'sha1'; - } - $rsa->setHash($hash); - $rsa->setSignatureMode(RSA::SIGNATURE_PKCS1); - $rsa->loadKey(array('e' => $e, 'n' => $n), RSA::PUBLIC_FORMAT_RAW); - - if (!$rsa->verify($this->exchange_hash, $signature)) { - user_error('Bad server signature'); - return $this->_disconnect(NET_SSH2_DISCONNECT_HOST_KEY_NOT_VERIFIABLE); - } - */ - - if (strlen($signature) < 4) { - return false; - } - $temp = unpack('Nlength', $this->_string_shift($signature, 4)); - $s = new BigInteger($this->_string_shift($signature, $temp['length']), 256); - - // validate an RSA signature per "8.2 RSASSA-PKCS1-v1_5", "5.2.2 RSAVP1", and "9.1 EMSA-PSS" in the - // following URL: - // ftp://ftp.rsasecurity.com/pub/pkcs/pkcs-1/pkcs-1v2-1.pdf - - // also, see SSHRSA.c (rsa2_verifysig) in PuTTy's source. - - if ($s->compare(new BigInteger()) < 0 || $s->compare($n->subtract(new BigInteger(1))) > 0) { - user_error('Invalid signature'); - return $this->_disconnect(NET_SSH2_DISCONNECT_KEY_EXCHANGE_FAILED); - } - - $s = $s->modPow($e, $n); - $s = $s->toBytes(); - - switch ($this->signature_format) { - case 'rsa-sha2-512': - $hash = 'sha512'; - break; - case 'rsa-sha2-256': - $hash = 'sha256'; - break; - //case 'ssh-rsa': - default: - $hash = 'sha1'; - } - $hashObj = new Hash($hash); - switch ($this->signature_format) { - case 'rsa-sha2-512': - $h = pack('N5a*', 0x00305130, 0x0D060960, 0x86480165, 0x03040203, 0x05000440, $hashObj->hash($this->exchange_hash)); - break; - case 'rsa-sha2-256': - $h = pack('N5a*', 0x00303130, 0x0D060960, 0x86480165, 0x03040201, 0x05000420, $hashObj->hash($this->exchange_hash)); - break; - //case 'ssh-rsa': - default: - $hash = 'sha1'; - $h = pack('N4a*', 0x00302130, 0x0906052B, 0x0E03021A, 0x05000414, $hashObj->hash($this->exchange_hash)); - } - $h = chr(0x01) . str_repeat(chr(0xFF), $nLength - 2 - strlen($h)) . $h; - - if ($s != $h) { - user_error('Bad server signature'); - return $this->_disconnect(NET_SSH2_DISCONNECT_HOST_KEY_NOT_VERIFIABLE); - } - break; - default: - user_error('Unsupported signature format'); - return $this->_disconnect(NET_SSH2_DISCONNECT_HOST_KEY_NOT_VERIFIABLE); - } - - return $this->signature_format . ' ' . base64_encode($this->server_public_host_key); - } - - /** - * Returns the exit status of an SSH command or false. - * - * @return false|int - * @access public - */ - function getExitStatus() - { - if (is_null($this->exit_status)) { - return false; - } - return $this->exit_status; - } - - /** - * Returns the number of columns for the terminal window size. - * - * @return int - * @access public - */ - function getWindowColumns() - { - return $this->windowColumns; - } - - /** - * Returns the number of rows for the terminal window size. - * - * @return int - * @access public - */ - function getWindowRows() - { - return $this->windowRows; - } - - /** - * Sets the number of columns for the terminal window size. - * - * @param int $value - * @access public - */ - function setWindowColumns($value) - { - $this->windowColumns = $value; - } - - /** - * Sets the number of rows for the terminal window size. - * - * @param int $value - * @access public - */ - function setWindowRows($value) - { - $this->windowRows = $value; - } - - /** - * Sets the number of columns and rows for the terminal window size. - * - * @param int $columns - * @param int $rows - * @access public - */ - function setWindowSize($columns = 80, $rows = 24) - { - $this->windowColumns = $columns; - $this->windowRows = $rows; - } - - /** - * Update packet types in log history - * - * @param string $old - * @param string $new - * @access private - */ - function _updateLogHistory($old, $new) - { - if (defined('NET_SSH2_LOGGING') && NET_SSH2_LOGGING == self::LOG_COMPLEX) { - $this->message_number_log[count($this->message_number_log) - 1] = str_replace( - $old, - $new, - $this->message_number_log[count($this->message_number_log) - 1] - ); - } - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/System/SSH/Agent.php b/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/System/SSH/Agent.php deleted file mode 100644 index 2b25250b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/System/SSH/Agent.php +++ /dev/null @@ -1,351 +0,0 @@ - - * login('username', $agent)) { - * exit('Login Failed'); - * } - * - * echo $ssh->exec('pwd'); - * echo $ssh->exec('ls -la'); - * ?> - * - * - * @category System - * @package SSH\Agent - * @author Jim Wigginton - * @copyright 2014 Jim Wigginton - * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @link http://phpseclib.sourceforge.net - * @internal See http://api.libssh.org/rfc/PROTOCOL.agent - */ - -namespace phpseclib\System\SSH; - -use phpseclib\Crypt\RSA; -use phpseclib\System\SSH\Agent\Identity; - -/** - * Pure-PHP ssh-agent client identity factory - * - * requestIdentities() method pumps out \phpseclib\System\SSH\Agent\Identity objects - * - * @package SSH\Agent - * @author Jim Wigginton - * @access public - */ -class Agent -{ - /**#@+ - * Message numbers - * - * @access private - */ - // to request SSH1 keys you have to use SSH_AGENTC_REQUEST_RSA_IDENTITIES (1) - const SSH_AGENTC_REQUEST_IDENTITIES = 11; - // this is the SSH2 response; the SSH1 response is SSH_AGENT_RSA_IDENTITIES_ANSWER (2). - const SSH_AGENT_IDENTITIES_ANSWER = 12; - // the SSH1 request is SSH_AGENTC_RSA_CHALLENGE (3) - const SSH_AGENTC_SIGN_REQUEST = 13; - // the SSH1 response is SSH_AGENT_RSA_RESPONSE (4) - const SSH_AGENT_SIGN_RESPONSE = 14; - /**#@-*/ - - /**@+ - * Agent forwarding status - * - * @access private - */ - // no forwarding requested and not active - const FORWARD_NONE = 0; - // request agent forwarding when opportune - const FORWARD_REQUEST = 1; - // forwarding has been request and is active - const FORWARD_ACTIVE = 2; - /**#@-*/ - - /** - * Unused - */ - const SSH_AGENT_FAILURE = 5; - - /** - * Socket Resource - * - * @var resource - * @access private - */ - var $fsock; - - /** - * Agent forwarding status - * - * @access private - */ - var $forward_status = self::FORWARD_NONE; - - /** - * Buffer for accumulating forwarded authentication - * agent data arriving on SSH data channel destined - * for agent unix socket - * - * @access private - */ - var $socket_buffer = ''; - - /** - * Tracking the number of bytes we are expecting - * to arrive for the agent socket on the SSH data - * channel - */ - var $expected_bytes = 0; - - /** - * Default Constructor - * - * @return \phpseclib\System\SSH\Agent - * @access public - */ - function __construct($address = null) - { - if (!$address) { - switch (true) { - case isset($_SERVER['SSH_AUTH_SOCK']): - $address = $_SERVER['SSH_AUTH_SOCK']; - break; - case isset($_ENV['SSH_AUTH_SOCK']): - $address = $_ENV['SSH_AUTH_SOCK']; - break; - default: - user_error('SSH_AUTH_SOCK not found'); - return false; - } - } - - $this->fsock = fsockopen('unix://' . $address, 0, $errno, $errstr); - if (!$this->fsock) { - user_error("Unable to connect to ssh-agent (Error $errno: $errstr)"); - } - } - - /** - * Request Identities - * - * See "2.5.2 Requesting a list of protocol 2 keys" - * Returns an array containing zero or more \phpseclib\System\SSH\Agent\Identity objects - * - * @return array - * @access public - */ - function requestIdentities() - { - if (!$this->fsock) { - return array(); - } - - $packet = pack('NC', 1, self::SSH_AGENTC_REQUEST_IDENTITIES); - if (strlen($packet) != fputs($this->fsock, $packet)) { - user_error('Connection closed while requesting identities'); - return array(); - } - - $temp = fread($this->fsock, 4); - if (strlen($temp) != 4) { - user_error('Connection closed while requesting identities'); - return array(); - } - $length = current(unpack('N', $temp)); - $type = ord(fread($this->fsock, 1)); - if ($type != self::SSH_AGENT_IDENTITIES_ANSWER) { - user_error('Unable to request identities'); - return array(); - } - - $identities = array(); - $temp = fread($this->fsock, 4); - if (strlen($temp) != 4) { - user_error('Connection closed while requesting identities'); - return array(); - } - $keyCount = current(unpack('N', $temp)); - for ($i = 0; $i < $keyCount; $i++) { - $temp = fread($this->fsock, 4); - if (strlen($temp) != 4) { - user_error('Connection closed while requesting identities'); - return array(); - } - $length = current(unpack('N', $temp)); - $key_blob = fread($this->fsock, $length); - if (strlen($key_blob) != $length) { - user_error('Connection closed while requesting identities'); - return array(); - } - $key_str = 'ssh-rsa ' . base64_encode($key_blob); - $temp = fread($this->fsock, 4); - if (strlen($temp) != 4) { - user_error('Connection closed while requesting identities'); - return array(); - } - $length = current(unpack('N', $temp)); - if ($length) { - $temp = fread($this->fsock, $length); - if (strlen($temp) != $length) { - user_error('Connection closed while requesting identities'); - return array(); - } - $key_str.= ' ' . $temp; - } - $length = current(unpack('N', substr($key_blob, 0, 4))); - $key_type = substr($key_blob, 4, $length); - switch ($key_type) { - case 'ssh-rsa': - $key = new RSA(); - $key->loadKey($key_str); - break; - case 'ssh-dss': - // not currently supported - break; - } - // resources are passed by reference by default - if (isset($key)) { - $identity = new Identity($this->fsock); - $identity->setPublicKey($key); - $identity->setPublicKeyBlob($key_blob); - $identities[] = $identity; - unset($key); - } - } - - return $identities; - } - - /** - * Signal that agent forwarding should - * be requested when a channel is opened - * - * @param Net_SSH2 $ssh - * @return bool - * @access public - */ - function startSSHForwarding($ssh) - { - if ($this->forward_status == self::FORWARD_NONE) { - $this->forward_status = self::FORWARD_REQUEST; - } - } - - /** - * Request agent forwarding of remote server - * - * @param Net_SSH2 $ssh - * @return bool - * @access private - */ - function _request_forwarding($ssh) - { - $request_channel = $ssh->_get_open_channel(); - if ($request_channel === false) { - return false; - } - - $packet = pack( - 'CNNa*C', - NET_SSH2_MSG_CHANNEL_REQUEST, - $ssh->server_channels[$request_channel], - strlen('auth-agent-req@openssh.com'), - 'auth-agent-req@openssh.com', - 1 - ); - - $ssh->channel_status[$request_channel] = NET_SSH2_MSG_CHANNEL_REQUEST; - - if (!$ssh->_send_binary_packet($packet)) { - return false; - } - - $response = $ssh->_get_channel_packet($request_channel); - if ($response === false) { - return false; - } - - $ssh->channel_status[$request_channel] = NET_SSH2_MSG_CHANNEL_OPEN; - $this->forward_status = self::FORWARD_ACTIVE; - - return true; - } - - /** - * On successful channel open - * - * This method is called upon successful channel - * open to give the SSH Agent an opportunity - * to take further action. i.e. request agent forwarding - * - * @param Net_SSH2 $ssh - * @access private - */ - function _on_channel_open($ssh) - { - if ($this->forward_status == self::FORWARD_REQUEST) { - $this->_request_forwarding($ssh); - } - } - - /** - * Forward data to SSH Agent and return data reply - * - * @param string $data - * @return data from SSH Agent - * @access private - */ - function _forward_data($data) - { - if ($this->expected_bytes > 0) { - $this->socket_buffer.= $data; - $this->expected_bytes -= strlen($data); - } else { - $agent_data_bytes = current(unpack('N', $data)); - $current_data_bytes = strlen($data); - $this->socket_buffer = $data; - if ($current_data_bytes != $agent_data_bytes + 4) { - $this->expected_bytes = ($agent_data_bytes + 4) - $current_data_bytes; - return false; - } - } - - if (strlen($this->socket_buffer) != fwrite($this->fsock, $this->socket_buffer)) { - user_error('Connection closed attempting to forward data to SSH agent'); - return false; - } - - $this->socket_buffer = ''; - $this->expected_bytes = 0; - - $temp = fread($this->fsock, 4); - if (strlen($temp) != 4) { - user_error('Connection closed while reading data response'); - return false; - } - $agent_reply_bytes = current(unpack('N', $temp)); - - $agent_reply_data = fread($this->fsock, $agent_reply_bytes); - if (strlen($agent_reply_data) != $agent_reply_bytes) { - user_error('Connection closed while reading data response'); - return false; - } - $agent_reply_data = current(unpack('a*', $agent_reply_data)); - - return pack('Na*', $agent_reply_bytes, $agent_reply_data); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/System/SSH/Agent/Identity.php b/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/System/SSH/Agent/Identity.php deleted file mode 100644 index 68b6bfdf..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/System/SSH/Agent/Identity.php +++ /dev/null @@ -1,241 +0,0 @@ - - * @copyright 2009 Jim Wigginton - * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @link http://phpseclib.sourceforge.net - * @internal See http://api.libssh.org/rfc/PROTOCOL.agent - */ - -namespace phpseclib\System\SSH\Agent; - -use phpseclib\System\SSH\Agent; - -/** - * Pure-PHP ssh-agent client identity object - * - * Instantiation should only be performed by \phpseclib\System\SSH\Agent class. - * This could be thought of as implementing an interface that phpseclib\Crypt\RSA - * implements. ie. maybe a Net_SSH_Auth_PublicKey interface or something. - * The methods in this interface would be getPublicKey and sign since those are the - * methods phpseclib looks for to perform public key authentication. - * - * @package SSH\Agent - * @author Jim Wigginton - * @access internal - */ -class Identity -{ - /**@+ - * Signature Flags - * - * See https://tools.ietf.org/html/draft-miller-ssh-agent-00#section-5.3 - * - * @access private - */ - const SSH_AGENT_RSA2_256 = 2; - const SSH_AGENT_RSA2_512 = 4; - /**#@-*/ - - /** - * Key Object - * - * @var \phpseclib\Crypt\RSA - * @access private - * @see self::getPublicKey() - */ - var $key; - - /** - * Key Blob - * - * @var string - * @access private - * @see self::sign() - */ - var $key_blob; - - /** - * Socket Resource - * - * @var resource - * @access private - * @see self::sign() - */ - var $fsock; - - /** - * Signature flags - * - * @var int - * @access private - * @see self::sign() - * @see self::setHash() - */ - var $flags = 0; - - /** - * Default Constructor. - * - * @param resource $fsock - * @return \phpseclib\System\SSH\Agent\Identity - * @access private - */ - function __construct($fsock) - { - $this->fsock = $fsock; - } - - /** - * Set Public Key - * - * Called by \phpseclib\System\SSH\Agent::requestIdentities() - * - * @param \phpseclib\Crypt\RSA $key - * @access private - */ - function setPublicKey($key) - { - $this->key = $key; - $this->key->setPublicKey(); - } - - /** - * Set Public Key - * - * Called by \phpseclib\System\SSH\Agent::requestIdentities(). The key blob could be extracted from $this->key - * but this saves a small amount of computation. - * - * @param string $key_blob - * @access private - */ - function setPublicKeyBlob($key_blob) - { - $this->key_blob = $key_blob; - } - - /** - * Get Public Key - * - * Wrapper for $this->key->getPublicKey() - * - * @param int $format optional - * @return mixed - * @access public - */ - function getPublicKey($format = null) - { - return !isset($format) ? $this->key->getPublicKey() : $this->key->getPublicKey($format); - } - - /** - * Set Signature Mode - * - * Doesn't do anything as ssh-agent doesn't let you pick and choose the signature mode. ie. - * ssh-agent's only supported mode is \phpseclib\Crypt\RSA::SIGNATURE_PKCS1 - * - * @param int $mode - * @access public - */ - function setSignatureMode($mode) - { - } - - /** - * Set Hash - * - * ssh-agent doesn't support using hashes for RSA other than SHA1 - * - * @param string $hash - * @access public - */ - function setHash($hash) - { - $this->flags = 0; - switch ($hash) { - case 'sha1': - break; - case 'sha256': - $this->flags = self::SSH_AGENT_RSA2_256; - break; - case 'sha512': - $this->flags = self::SSH_AGENT_RSA2_512; - break; - default: - user_error('The only supported hashes for RSA are sha1, sha256 and sha512'); - } - } - - /** - * Create a signature - * - * See "2.6.2 Protocol 2 private key signature request" - * - * @param string $message - * @return string - * @access public - */ - function sign($message) - { - // the last parameter (currently 0) is for flags and ssh-agent only defines one flag (for ssh-dss): SSH_AGENT_OLD_SIGNATURE - $packet = pack('CNa*Na*N', Agent::SSH_AGENTC_SIGN_REQUEST, strlen($this->key_blob), $this->key_blob, strlen($message), $message, $this->flags); - $packet = pack('Na*', strlen($packet), $packet); - if (strlen($packet) != fputs($this->fsock, $packet)) { - user_error('Connection closed during signing'); - return false; - } - - $temp = fread($this->fsock, 4); - if (strlen($temp) != 4) { - user_error('Connection closed during signing'); - return false; - } - $length = current(unpack('N', $temp)); - $type = ord(fread($this->fsock, 1)); - if ($type != Agent::SSH_AGENT_SIGN_RESPONSE) { - user_error('Unable to retrieve signature'); - return false; - } - - $signature_blob = fread($this->fsock, $length - 1); - if (strlen($signature_blob) != $length - 1) { - user_error('Connection closed during signing'); - return false; - } - $length = current(unpack('N', $this->_string_shift($signature_blob, 4))); - if ($length != strlen($signature_blob)) { - user_error('Malformed signature blob'); - } - $length = current(unpack('N', $this->_string_shift($signature_blob, 4))); - if ($length > strlen($signature_blob) + 4) { - user_error('Malformed signature blob'); - } - $type = $this->_string_shift($signature_blob, $length); - $this->_string_shift($signature_blob, 4); - - return $signature_blob; - } - - /** - * String Shift - * - * Inspired by array_shift - * - * @param string $string - * @param int $index - * @return string - * @access private - */ - function _string_shift(&$string, $index = 1) - { - $substr = substr($string, 0, $index); - $string = substr($string, $index); - return $substr; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/bootstrap.php b/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/bootstrap.php deleted file mode 100644 index 0da0999f..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/phpseclib/phpseclib/phpseclib/bootstrap.php +++ /dev/null @@ -1,16 +0,0 @@ -=5.3.0" - }, - "autoload": { - "psr-4": { - "Psr\\Cache\\": "src/" - } - }, - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/psr/cache/src/CacheException.php b/services/libs/google-api-php-client-2.4.1/vendor/psr/cache/src/CacheException.php deleted file mode 100644 index e27f22f8..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/psr/cache/src/CacheException.php +++ /dev/null @@ -1,10 +0,0 @@ -=5.3.0" - }, - "autoload": { - "psr-4": { - "Psr\\Http\\Message\\": "src/" - } - }, - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/psr/http-message/src/MessageInterface.php b/services/libs/google-api-php-client-2.4.1/vendor/psr/http-message/src/MessageInterface.php deleted file mode 100644 index dd46e5ec..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/psr/http-message/src/MessageInterface.php +++ /dev/null @@ -1,187 +0,0 @@ -getHeaders() as $name => $values) { - * echo $name . ": " . implode(", ", $values); - * } - * - * // Emit headers iteratively: - * foreach ($message->getHeaders() as $name => $values) { - * foreach ($values as $value) { - * header(sprintf('%s: %s', $name, $value), false); - * } - * } - * - * While header names are not case-sensitive, getHeaders() will preserve the - * exact case in which headers were originally specified. - * - * @return string[][] Returns an associative array of the message's headers. Each - * key MUST be a header name, and each value MUST be an array of strings - * for that header. - */ - public function getHeaders(); - - /** - * Checks if a header exists by the given case-insensitive name. - * - * @param string $name Case-insensitive header field name. - * @return bool Returns true if any header names match the given header - * name using a case-insensitive string comparison. Returns false if - * no matching header name is found in the message. - */ - public function hasHeader($name); - - /** - * Retrieves a message header value by the given case-insensitive name. - * - * This method returns an array of all the header values of the given - * case-insensitive header name. - * - * If the header does not appear in the message, this method MUST return an - * empty array. - * - * @param string $name Case-insensitive header field name. - * @return string[] An array of string values as provided for the given - * header. If the header does not appear in the message, this method MUST - * return an empty array. - */ - public function getHeader($name); - - /** - * Retrieves a comma-separated string of the values for a single header. - * - * This method returns all of the header values of the given - * case-insensitive header name as a string concatenated together using - * a comma. - * - * NOTE: Not all header values may be appropriately represented using - * comma concatenation. For such headers, use getHeader() instead - * and supply your own delimiter when concatenating. - * - * If the header does not appear in the message, this method MUST return - * an empty string. - * - * @param string $name Case-insensitive header field name. - * @return string A string of values as provided for the given header - * concatenated together using a comma. If the header does not appear in - * the message, this method MUST return an empty string. - */ - public function getHeaderLine($name); - - /** - * Return an instance with the provided value replacing the specified header. - * - * While header names are case-insensitive, the casing of the header will - * be preserved by this function, and returned from getHeaders(). - * - * This method MUST be implemented in such a way as to retain the - * immutability of the message, and MUST return an instance that has the - * new and/or updated header and value. - * - * @param string $name Case-insensitive header field name. - * @param string|string[] $value Header value(s). - * @return static - * @throws \InvalidArgumentException for invalid header names or values. - */ - public function withHeader($name, $value); - - /** - * Return an instance with the specified header appended with the given value. - * - * Existing values for the specified header will be maintained. The new - * value(s) will be appended to the existing list. If the header did not - * exist previously, it will be added. - * - * This method MUST be implemented in such a way as to retain the - * immutability of the message, and MUST return an instance that has the - * new header and/or value. - * - * @param string $name Case-insensitive header field name to add. - * @param string|string[] $value Header value(s). - * @return static - * @throws \InvalidArgumentException for invalid header names or values. - */ - public function withAddedHeader($name, $value); - - /** - * Return an instance without the specified header. - * - * Header resolution MUST be done without case-sensitivity. - * - * This method MUST be implemented in such a way as to retain the - * immutability of the message, and MUST return an instance that removes - * the named header. - * - * @param string $name Case-insensitive header field name to remove. - * @return static - */ - public function withoutHeader($name); - - /** - * Gets the body of the message. - * - * @return StreamInterface Returns the body as a stream. - */ - public function getBody(); - - /** - * Return an instance with the specified message body. - * - * The body MUST be a StreamInterface object. - * - * This method MUST be implemented in such a way as to retain the - * immutability of the message, and MUST return a new instance that has the - * new body stream. - * - * @param StreamInterface $body Body. - * @return static - * @throws \InvalidArgumentException When the body is not valid. - */ - public function withBody(StreamInterface $body); -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/psr/http-message/src/RequestInterface.php b/services/libs/google-api-php-client-2.4.1/vendor/psr/http-message/src/RequestInterface.php deleted file mode 100644 index a96d4fd6..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/psr/http-message/src/RequestInterface.php +++ /dev/null @@ -1,129 +0,0 @@ -getQuery()` - * or from the `QUERY_STRING` server param. - * - * @return array - */ - public function getQueryParams(); - - /** - * Return an instance with the specified query string arguments. - * - * These values SHOULD remain immutable over the course of the incoming - * request. They MAY be injected during instantiation, such as from PHP's - * $_GET superglobal, or MAY be derived from some other value such as the - * URI. In cases where the arguments are parsed from the URI, the data - * MUST be compatible with what PHP's parse_str() would return for - * purposes of how duplicate query parameters are handled, and how nested - * sets are handled. - * - * Setting query string arguments MUST NOT change the URI stored by the - * request, nor the values in the server params. - * - * This method MUST be implemented in such a way as to retain the - * immutability of the message, and MUST return an instance that has the - * updated query string arguments. - * - * @param array $query Array of query string arguments, typically from - * $_GET. - * @return static - */ - public function withQueryParams(array $query); - - /** - * Retrieve normalized file upload data. - * - * This method returns upload metadata in a normalized tree, with each leaf - * an instance of Psr\Http\Message\UploadedFileInterface. - * - * These values MAY be prepared from $_FILES or the message body during - * instantiation, or MAY be injected via withUploadedFiles(). - * - * @return array An array tree of UploadedFileInterface instances; an empty - * array MUST be returned if no data is present. - */ - public function getUploadedFiles(); - - /** - * Create a new instance with the specified uploaded files. - * - * This method MUST be implemented in such a way as to retain the - * immutability of the message, and MUST return an instance that has the - * updated body parameters. - * - * @param array $uploadedFiles An array tree of UploadedFileInterface instances. - * @return static - * @throws \InvalidArgumentException if an invalid structure is provided. - */ - public function withUploadedFiles(array $uploadedFiles); - - /** - * Retrieve any parameters provided in the request body. - * - * If the request Content-Type is either application/x-www-form-urlencoded - * or multipart/form-data, and the request method is POST, this method MUST - * return the contents of $_POST. - * - * Otherwise, this method may return any results of deserializing - * the request body content; as parsing returns structured content, the - * potential types MUST be arrays or objects only. A null value indicates - * the absence of body content. - * - * @return null|array|object The deserialized body parameters, if any. - * These will typically be an array or object. - */ - public function getParsedBody(); - - /** - * Return an instance with the specified body parameters. - * - * These MAY be injected during instantiation. - * - * If the request Content-Type is either application/x-www-form-urlencoded - * or multipart/form-data, and the request method is POST, use this method - * ONLY to inject the contents of $_POST. - * - * The data IS NOT REQUIRED to come from $_POST, but MUST be the results of - * deserializing the request body content. Deserialization/parsing returns - * structured data, and, as such, this method ONLY accepts arrays or objects, - * or a null value if nothing was available to parse. - * - * As an example, if content negotiation determines that the request data - * is a JSON payload, this method could be used to create a request - * instance with the deserialized parameters. - * - * This method MUST be implemented in such a way as to retain the - * immutability of the message, and MUST return an instance that has the - * updated body parameters. - * - * @param null|array|object $data The deserialized body data. This will - * typically be in an array or object. - * @return static - * @throws \InvalidArgumentException if an unsupported argument type is - * provided. - */ - public function withParsedBody($data); - - /** - * Retrieve attributes derived from the request. - * - * The request "attributes" may be used to allow injection of any - * parameters derived from the request: e.g., the results of path - * match operations; the results of decrypting cookies; the results of - * deserializing non-form-encoded message bodies; etc. Attributes - * will be application and request specific, and CAN be mutable. - * - * @return array Attributes derived from the request. - */ - public function getAttributes(); - - /** - * Retrieve a single derived request attribute. - * - * Retrieves a single derived request attribute as described in - * getAttributes(). If the attribute has not been previously set, returns - * the default value as provided. - * - * This method obviates the need for a hasAttribute() method, as it allows - * specifying a default value to return if the attribute is not found. - * - * @see getAttributes() - * @param string $name The attribute name. - * @param mixed $default Default value to return if the attribute does not exist. - * @return mixed - */ - public function getAttribute($name, $default = null); - - /** - * Return an instance with the specified derived request attribute. - * - * This method allows setting a single derived request attribute as - * described in getAttributes(). - * - * This method MUST be implemented in such a way as to retain the - * immutability of the message, and MUST return an instance that has the - * updated attribute. - * - * @see getAttributes() - * @param string $name The attribute name. - * @param mixed $value The value of the attribute. - * @return static - */ - public function withAttribute($name, $value); - - /** - * Return an instance that removes the specified derived request attribute. - * - * This method allows removing a single derived request attribute as - * described in getAttributes(). - * - * This method MUST be implemented in such a way as to retain the - * immutability of the message, and MUST return an instance that removes - * the attribute. - * - * @see getAttributes() - * @param string $name The attribute name. - * @return static - */ - public function withoutAttribute($name); -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/psr/http-message/src/StreamInterface.php b/services/libs/google-api-php-client-2.4.1/vendor/psr/http-message/src/StreamInterface.php deleted file mode 100644 index f68f3912..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/psr/http-message/src/StreamInterface.php +++ /dev/null @@ -1,158 +0,0 @@ - - * [user-info@]host[:port] - * - * - * If the port component is not set or is the standard port for the current - * scheme, it SHOULD NOT be included. - * - * @see https://tools.ietf.org/html/rfc3986#section-3.2 - * @return string The URI authority, in "[user-info@]host[:port]" format. - */ - public function getAuthority(); - - /** - * Retrieve the user information component of the URI. - * - * If no user information is present, this method MUST return an empty - * string. - * - * If a user is present in the URI, this will return that value; - * additionally, if the password is also present, it will be appended to the - * user value, with a colon (":") separating the values. - * - * The trailing "@" character is not part of the user information and MUST - * NOT be added. - * - * @return string The URI user information, in "username[:password]" format. - */ - public function getUserInfo(); - - /** - * Retrieve the host component of the URI. - * - * If no host is present, this method MUST return an empty string. - * - * The value returned MUST be normalized to lowercase, per RFC 3986 - * Section 3.2.2. - * - * @see http://tools.ietf.org/html/rfc3986#section-3.2.2 - * @return string The URI host. - */ - public function getHost(); - - /** - * Retrieve the port component of the URI. - * - * If a port is present, and it is non-standard for the current scheme, - * this method MUST return it as an integer. If the port is the standard port - * used with the current scheme, this method SHOULD return null. - * - * If no port is present, and no scheme is present, this method MUST return - * a null value. - * - * If no port is present, but a scheme is present, this method MAY return - * the standard port for that scheme, but SHOULD return null. - * - * @return null|int The URI port. - */ - public function getPort(); - - /** - * Retrieve the path component of the URI. - * - * The path can either be empty or absolute (starting with a slash) or - * rootless (not starting with a slash). Implementations MUST support all - * three syntaxes. - * - * Normally, the empty path "" and absolute path "/" are considered equal as - * defined in RFC 7230 Section 2.7.3. But this method MUST NOT automatically - * do this normalization because in contexts with a trimmed base path, e.g. - * the front controller, this difference becomes significant. It's the task - * of the user to handle both "" and "/". - * - * The value returned MUST be percent-encoded, but MUST NOT double-encode - * any characters. To determine what characters to encode, please refer to - * RFC 3986, Sections 2 and 3.3. - * - * As an example, if the value should include a slash ("/") not intended as - * delimiter between path segments, that value MUST be passed in encoded - * form (e.g., "%2F") to the instance. - * - * @see https://tools.ietf.org/html/rfc3986#section-2 - * @see https://tools.ietf.org/html/rfc3986#section-3.3 - * @return string The URI path. - */ - public function getPath(); - - /** - * Retrieve the query string of the URI. - * - * If no query string is present, this method MUST return an empty string. - * - * The leading "?" character is not part of the query and MUST NOT be - * added. - * - * The value returned MUST be percent-encoded, but MUST NOT double-encode - * any characters. To determine what characters to encode, please refer to - * RFC 3986, Sections 2 and 3.4. - * - * As an example, if a value in a key/value pair of the query string should - * include an ampersand ("&") not intended as a delimiter between values, - * that value MUST be passed in encoded form (e.g., "%26") to the instance. - * - * @see https://tools.ietf.org/html/rfc3986#section-2 - * @see https://tools.ietf.org/html/rfc3986#section-3.4 - * @return string The URI query string. - */ - public function getQuery(); - - /** - * Retrieve the fragment component of the URI. - * - * If no fragment is present, this method MUST return an empty string. - * - * The leading "#" character is not part of the fragment and MUST NOT be - * added. - * - * The value returned MUST be percent-encoded, but MUST NOT double-encode - * any characters. To determine what characters to encode, please refer to - * RFC 3986, Sections 2 and 3.5. - * - * @see https://tools.ietf.org/html/rfc3986#section-2 - * @see https://tools.ietf.org/html/rfc3986#section-3.5 - * @return string The URI fragment. - */ - public function getFragment(); - - /** - * Return an instance with the specified scheme. - * - * This method MUST retain the state of the current instance, and return - * an instance that contains the specified scheme. - * - * Implementations MUST support the schemes "http" and "https" case - * insensitively, and MAY accommodate other schemes if required. - * - * An empty scheme is equivalent to removing the scheme. - * - * @param string $scheme The scheme to use with the new instance. - * @return static A new instance with the specified scheme. - * @throws \InvalidArgumentException for invalid or unsupported schemes. - */ - public function withScheme($scheme); - - /** - * Return an instance with the specified user information. - * - * This method MUST retain the state of the current instance, and return - * an instance that contains the specified user information. - * - * Password is optional, but the user information MUST include the - * user; an empty string for the user is equivalent to removing user - * information. - * - * @param string $user The user name to use for authority. - * @param null|string $password The password associated with $user. - * @return static A new instance with the specified user information. - */ - public function withUserInfo($user, $password = null); - - /** - * Return an instance with the specified host. - * - * This method MUST retain the state of the current instance, and return - * an instance that contains the specified host. - * - * An empty host value is equivalent to removing the host. - * - * @param string $host The hostname to use with the new instance. - * @return static A new instance with the specified host. - * @throws \InvalidArgumentException for invalid hostnames. - */ - public function withHost($host); - - /** - * Return an instance with the specified port. - * - * This method MUST retain the state of the current instance, and return - * an instance that contains the specified port. - * - * Implementations MUST raise an exception for ports outside the - * established TCP and UDP port ranges. - * - * A null value provided for the port is equivalent to removing the port - * information. - * - * @param null|int $port The port to use with the new instance; a null value - * removes the port information. - * @return static A new instance with the specified port. - * @throws \InvalidArgumentException for invalid ports. - */ - public function withPort($port); - - /** - * Return an instance with the specified path. - * - * This method MUST retain the state of the current instance, and return - * an instance that contains the specified path. - * - * The path can either be empty or absolute (starting with a slash) or - * rootless (not starting with a slash). Implementations MUST support all - * three syntaxes. - * - * If the path is intended to be domain-relative rather than path relative then - * it must begin with a slash ("/"). Paths not starting with a slash ("/") - * are assumed to be relative to some base path known to the application or - * consumer. - * - * Users can provide both encoded and decoded path characters. - * Implementations ensure the correct encoding as outlined in getPath(). - * - * @param string $path The path to use with the new instance. - * @return static A new instance with the specified path. - * @throws \InvalidArgumentException for invalid paths. - */ - public function withPath($path); - - /** - * Return an instance with the specified query string. - * - * This method MUST retain the state of the current instance, and return - * an instance that contains the specified query string. - * - * Users can provide both encoded and decoded query characters. - * Implementations ensure the correct encoding as outlined in getQuery(). - * - * An empty query string value is equivalent to removing the query string. - * - * @param string $query The query string to use with the new instance. - * @return static A new instance with the specified query string. - * @throws \InvalidArgumentException for invalid query strings. - */ - public function withQuery($query); - - /** - * Return an instance with the specified URI fragment. - * - * This method MUST retain the state of the current instance, and return - * an instance that contains the specified URI fragment. - * - * Users can provide both encoded and decoded fragment characters. - * Implementations ensure the correct encoding as outlined in getFragment(). - * - * An empty fragment value is equivalent to removing the fragment. - * - * @param string $fragment The fragment to use with the new instance. - * @return static A new instance with the specified fragment. - */ - public function withFragment($fragment); - - /** - * Return the string representation as a URI reference. - * - * Depending on which components of the URI are present, the resulting - * string is either a full URI or relative reference according to RFC 3986, - * Section 4.1. The method concatenates the various components of the URI, - * using the appropriate delimiters: - * - * - If a scheme is present, it MUST be suffixed by ":". - * - If an authority is present, it MUST be prefixed by "//". - * - The path can be concatenated without delimiters. But there are two - * cases where the path has to be adjusted to make the URI reference - * valid as PHP does not allow to throw an exception in __toString(): - * - If the path is rootless and an authority is present, the path MUST - * be prefixed by "/". - * - If the path is starting with more than one "/" and no authority is - * present, the starting slashes MUST be reduced to one. - * - If a query is present, it MUST be prefixed by "?". - * - If a fragment is present, it MUST be prefixed by "#". - * - * @see http://tools.ietf.org/html/rfc3986#section-4.1 - * @return string - */ - public function __toString(); -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/psr/log/LICENSE b/services/libs/google-api-php-client-2.4.1/vendor/psr/log/LICENSE deleted file mode 100644 index 474c952b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/psr/log/LICENSE +++ /dev/null @@ -1,19 +0,0 @@ -Copyright (c) 2012 PHP Framework Interoperability Group - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. diff --git a/services/libs/google-api-php-client-2.4.1/vendor/psr/log/Psr/Log/AbstractLogger.php b/services/libs/google-api-php-client-2.4.1/vendor/psr/log/Psr/Log/AbstractLogger.php deleted file mode 100644 index 90e721af..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/psr/log/Psr/Log/AbstractLogger.php +++ /dev/null @@ -1,128 +0,0 @@ -log(LogLevel::EMERGENCY, $message, $context); - } - - /** - * Action must be taken immediately. - * - * Example: Entire website down, database unavailable, etc. This should - * trigger the SMS alerts and wake you up. - * - * @param string $message - * @param array $context - * - * @return void - */ - public function alert($message, array $context = array()) - { - $this->log(LogLevel::ALERT, $message, $context); - } - - /** - * Critical conditions. - * - * Example: Application component unavailable, unexpected exception. - * - * @param string $message - * @param array $context - * - * @return void - */ - public function critical($message, array $context = array()) - { - $this->log(LogLevel::CRITICAL, $message, $context); - } - - /** - * Runtime errors that do not require immediate action but should typically - * be logged and monitored. - * - * @param string $message - * @param array $context - * - * @return void - */ - public function error($message, array $context = array()) - { - $this->log(LogLevel::ERROR, $message, $context); - } - - /** - * Exceptional occurrences that are not errors. - * - * Example: Use of deprecated APIs, poor use of an API, undesirable things - * that are not necessarily wrong. - * - * @param string $message - * @param array $context - * - * @return void - */ - public function warning($message, array $context = array()) - { - $this->log(LogLevel::WARNING, $message, $context); - } - - /** - * Normal but significant events. - * - * @param string $message - * @param array $context - * - * @return void - */ - public function notice($message, array $context = array()) - { - $this->log(LogLevel::NOTICE, $message, $context); - } - - /** - * Interesting events. - * - * Example: User logs in, SQL logs. - * - * @param string $message - * @param array $context - * - * @return void - */ - public function info($message, array $context = array()) - { - $this->log(LogLevel::INFO, $message, $context); - } - - /** - * Detailed debug information. - * - * @param string $message - * @param array $context - * - * @return void - */ - public function debug($message, array $context = array()) - { - $this->log(LogLevel::DEBUG, $message, $context); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/psr/log/Psr/Log/InvalidArgumentException.php b/services/libs/google-api-php-client-2.4.1/vendor/psr/log/Psr/Log/InvalidArgumentException.php deleted file mode 100644 index 67f852d1..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/psr/log/Psr/Log/InvalidArgumentException.php +++ /dev/null @@ -1,7 +0,0 @@ -logger = $logger; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/psr/log/Psr/Log/LoggerInterface.php b/services/libs/google-api-php-client-2.4.1/vendor/psr/log/Psr/Log/LoggerInterface.php deleted file mode 100644 index 2206cfde..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/psr/log/Psr/Log/LoggerInterface.php +++ /dev/null @@ -1,125 +0,0 @@ -log(LogLevel::EMERGENCY, $message, $context); - } - - /** - * Action must be taken immediately. - * - * Example: Entire website down, database unavailable, etc. This should - * trigger the SMS alerts and wake you up. - * - * @param string $message - * @param array $context - * - * @return void - */ - public function alert($message, array $context = array()) - { - $this->log(LogLevel::ALERT, $message, $context); - } - - /** - * Critical conditions. - * - * Example: Application component unavailable, unexpected exception. - * - * @param string $message - * @param array $context - * - * @return void - */ - public function critical($message, array $context = array()) - { - $this->log(LogLevel::CRITICAL, $message, $context); - } - - /** - * Runtime errors that do not require immediate action but should typically - * be logged and monitored. - * - * @param string $message - * @param array $context - * - * @return void - */ - public function error($message, array $context = array()) - { - $this->log(LogLevel::ERROR, $message, $context); - } - - /** - * Exceptional occurrences that are not errors. - * - * Example: Use of deprecated APIs, poor use of an API, undesirable things - * that are not necessarily wrong. - * - * @param string $message - * @param array $context - * - * @return void - */ - public function warning($message, array $context = array()) - { - $this->log(LogLevel::WARNING, $message, $context); - } - - /** - * Normal but significant events. - * - * @param string $message - * @param array $context - * - * @return void - */ - public function notice($message, array $context = array()) - { - $this->log(LogLevel::NOTICE, $message, $context); - } - - /** - * Interesting events. - * - * Example: User logs in, SQL logs. - * - * @param string $message - * @param array $context - * - * @return void - */ - public function info($message, array $context = array()) - { - $this->log(LogLevel::INFO, $message, $context); - } - - /** - * Detailed debug information. - * - * @param string $message - * @param array $context - * - * @return void - */ - public function debug($message, array $context = array()) - { - $this->log(LogLevel::DEBUG, $message, $context); - } - - /** - * Logs with an arbitrary level. - * - * @param mixed $level - * @param string $message - * @param array $context - * - * @return void - * - * @throws \Psr\Log\InvalidArgumentException - */ - abstract public function log($level, $message, array $context = array()); -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/psr/log/Psr/Log/NullLogger.php b/services/libs/google-api-php-client-2.4.1/vendor/psr/log/Psr/Log/NullLogger.php deleted file mode 100644 index c8f7293b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/psr/log/Psr/Log/NullLogger.php +++ /dev/null @@ -1,30 +0,0 @@ -logger) { }` - * blocks. - */ -class NullLogger extends AbstractLogger -{ - /** - * Logs with an arbitrary level. - * - * @param mixed $level - * @param string $message - * @param array $context - * - * @return void - * - * @throws \Psr\Log\InvalidArgumentException - */ - public function log($level, $message, array $context = array()) - { - // noop - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/psr/log/Psr/Log/Test/DummyTest.php b/services/libs/google-api-php-client-2.4.1/vendor/psr/log/Psr/Log/Test/DummyTest.php deleted file mode 100644 index 9638c110..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/psr/log/Psr/Log/Test/DummyTest.php +++ /dev/null @@ -1,18 +0,0 @@ - ". - * - * Example ->error('Foo') would yield "error Foo". - * - * @return string[] - */ - abstract public function getLogs(); - - public function testImplements() - { - $this->assertInstanceOf('Psr\Log\LoggerInterface', $this->getLogger()); - } - - /** - * @dataProvider provideLevelsAndMessages - */ - public function testLogsAtAllLevels($level, $message) - { - $logger = $this->getLogger(); - $logger->{$level}($message, array('user' => 'Bob')); - $logger->log($level, $message, array('user' => 'Bob')); - - $expected = array( - $level.' message of level '.$level.' with context: Bob', - $level.' message of level '.$level.' with context: Bob', - ); - $this->assertEquals($expected, $this->getLogs()); - } - - public function provideLevelsAndMessages() - { - return array( - LogLevel::EMERGENCY => array(LogLevel::EMERGENCY, 'message of level emergency with context: {user}'), - LogLevel::ALERT => array(LogLevel::ALERT, 'message of level alert with context: {user}'), - LogLevel::CRITICAL => array(LogLevel::CRITICAL, 'message of level critical with context: {user}'), - LogLevel::ERROR => array(LogLevel::ERROR, 'message of level error with context: {user}'), - LogLevel::WARNING => array(LogLevel::WARNING, 'message of level warning with context: {user}'), - LogLevel::NOTICE => array(LogLevel::NOTICE, 'message of level notice with context: {user}'), - LogLevel::INFO => array(LogLevel::INFO, 'message of level info with context: {user}'), - LogLevel::DEBUG => array(LogLevel::DEBUG, 'message of level debug with context: {user}'), - ); - } - - /** - * @expectedException \Psr\Log\InvalidArgumentException - */ - public function testThrowsOnInvalidLevel() - { - $logger = $this->getLogger(); - $logger->log('invalid level', 'Foo'); - } - - public function testContextReplacement() - { - $logger = $this->getLogger(); - $logger->info('{Message {nothing} {user} {foo.bar} a}', array('user' => 'Bob', 'foo.bar' => 'Bar')); - - $expected = array('info {Message {nothing} Bob Bar a}'); - $this->assertEquals($expected, $this->getLogs()); - } - - public function testObjectCastToString() - { - if (method_exists($this, 'createPartialMock')) { - $dummy = $this->createPartialMock('Psr\Log\Test\DummyTest', array('__toString')); - } else { - $dummy = $this->getMock('Psr\Log\Test\DummyTest', array('__toString')); - } - $dummy->expects($this->once()) - ->method('__toString') - ->will($this->returnValue('DUMMY')); - - $this->getLogger()->warning($dummy); - - $expected = array('warning DUMMY'); - $this->assertEquals($expected, $this->getLogs()); - } - - public function testContextCanContainAnything() - { - $closed = fopen('php://memory', 'r'); - fclose($closed); - - $context = array( - 'bool' => true, - 'null' => null, - 'string' => 'Foo', - 'int' => 0, - 'float' => 0.5, - 'nested' => array('with object' => new DummyTest), - 'object' => new \DateTime, - 'resource' => fopen('php://memory', 'r'), - 'closed' => $closed, - ); - - $this->getLogger()->warning('Crazy context data', $context); - - $expected = array('warning Crazy context data'); - $this->assertEquals($expected, $this->getLogs()); - } - - public function testContextExceptionKeyCanBeExceptionOrOtherValues() - { - $logger = $this->getLogger(); - $logger->warning('Random message', array('exception' => 'oops')); - $logger->critical('Uncaught Exception!', array('exception' => new \LogicException('Fail'))); - - $expected = array( - 'warning Random message', - 'critical Uncaught Exception!' - ); - $this->assertEquals($expected, $this->getLogs()); - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/psr/log/Psr/Log/Test/TestLogger.php b/services/libs/google-api-php-client-2.4.1/vendor/psr/log/Psr/Log/Test/TestLogger.php deleted file mode 100644 index 1be32304..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/psr/log/Psr/Log/Test/TestLogger.php +++ /dev/null @@ -1,147 +0,0 @@ - $level, - 'message' => $message, - 'context' => $context, - ]; - - $this->recordsByLevel[$record['level']][] = $record; - $this->records[] = $record; - } - - public function hasRecords($level) - { - return isset($this->recordsByLevel[$level]); - } - - public function hasRecord($record, $level) - { - if (is_string($record)) { - $record = ['message' => $record]; - } - return $this->hasRecordThatPasses(function ($rec) use ($record) { - if ($rec['message'] !== $record['message']) { - return false; - } - if (isset($record['context']) && $rec['context'] !== $record['context']) { - return false; - } - return true; - }, $level); - } - - public function hasRecordThatContains($message, $level) - { - return $this->hasRecordThatPasses(function ($rec) use ($message) { - return strpos($rec['message'], $message) !== false; - }, $level); - } - - public function hasRecordThatMatches($regex, $level) - { - return $this->hasRecordThatPasses(function ($rec) use ($regex) { - return preg_match($regex, $rec['message']) > 0; - }, $level); - } - - public function hasRecordThatPasses(callable $predicate, $level) - { - if (!isset($this->recordsByLevel[$level])) { - return false; - } - foreach ($this->recordsByLevel[$level] as $i => $rec) { - if (call_user_func($predicate, $rec, $i)) { - return true; - } - } - return false; - } - - public function __call($method, $args) - { - if (preg_match('/(.*)(Debug|Info|Notice|Warning|Error|Critical|Alert|Emergency)(.*)/', $method, $matches) > 0) { - $genericMethod = $matches[1] . ('Records' !== $matches[3] ? 'Record' : '') . $matches[3]; - $level = strtolower($matches[2]); - if (method_exists($this, $genericMethod)) { - $args[] = $level; - return call_user_func_array([$this, $genericMethod], $args); - } - } - throw new \BadMethodCallException('Call to undefined method ' . get_class($this) . '::' . $method . '()'); - } - - public function reset() - { - $this->records = []; - $this->recordsByLevel = []; - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/psr/log/README.md b/services/libs/google-api-php-client-2.4.1/vendor/psr/log/README.md deleted file mode 100644 index a9f20c43..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/psr/log/README.md +++ /dev/null @@ -1,58 +0,0 @@ -PSR Log -======= - -This repository holds all interfaces/classes/traits related to -[PSR-3](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-3-logger-interface.md). - -Note that this is not a logger of its own. It is merely an interface that -describes a logger. See the specification for more details. - -Installation ------------- - -```bash -composer require psr/log -``` - -Usage ------ - -If you need a logger, you can use the interface like this: - -```php -logger = $logger; - } - - public function doSomething() - { - if ($this->logger) { - $this->logger->info('Doing work'); - } - - try { - $this->doSomethingElse(); - } catch (Exception $exception) { - $this->logger->error('Oh no!', array('exception' => $exception)); - } - - // do something useful - } -} -``` - -You can then pick one of the implementations of the interface to get a logger. - -If you want to implement the interface, you can require this package and -implement `Psr\Log\LoggerInterface` in your code. Please read the -[specification text](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-3-logger-interface.md) -for details. diff --git a/services/libs/google-api-php-client-2.4.1/vendor/psr/log/composer.json b/services/libs/google-api-php-client-2.4.1/vendor/psr/log/composer.json deleted file mode 100644 index 3f6d4eea..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/psr/log/composer.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "name": "psr/log", - "description": "Common interface for logging libraries", - "keywords": ["psr", "psr-3", "log"], - "homepage": "https://github.com/php-fig/log", - "license": "MIT", - "authors": [ - { - "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" - } - ], - "require": { - "php": ">=5.3.0" - }, - "autoload": { - "psr-4": { - "Psr\\Log\\": "Psr/Log/" - } - }, - "extra": { - "branch-alias": { - "dev-master": "1.1.x-dev" - } - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/ralouphie/getallheaders/LICENSE b/services/libs/google-api-php-client-2.4.1/vendor/ralouphie/getallheaders/LICENSE deleted file mode 100644 index be5540c2..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/ralouphie/getallheaders/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2014 Ralph Khattar - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/services/libs/google-api-php-client-2.4.1/vendor/ralouphie/getallheaders/README.md b/services/libs/google-api-php-client-2.4.1/vendor/ralouphie/getallheaders/README.md deleted file mode 100644 index 9430d76b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/ralouphie/getallheaders/README.md +++ /dev/null @@ -1,27 +0,0 @@ -getallheaders -============= - -PHP `getallheaders()` polyfill. Compatible with PHP >= 5.3. - -[![Build Status](https://travis-ci.org/ralouphie/getallheaders.svg?branch=master)](https://travis-ci.org/ralouphie/getallheaders) -[![Coverage Status](https://coveralls.io/repos/ralouphie/getallheaders/badge.png?branch=master)](https://coveralls.io/r/ralouphie/getallheaders?branch=master) -[![Latest Stable Version](https://poser.pugx.org/ralouphie/getallheaders/v/stable.png)](https://packagist.org/packages/ralouphie/getallheaders) -[![Latest Unstable Version](https://poser.pugx.org/ralouphie/getallheaders/v/unstable.png)](https://packagist.org/packages/ralouphie/getallheaders) -[![License](https://poser.pugx.org/ralouphie/getallheaders/license.png)](https://packagist.org/packages/ralouphie/getallheaders) - - -This is a simple polyfill for [`getallheaders()`](http://www.php.net/manual/en/function.getallheaders.php). - -## Install - -For PHP version **`>= 5.6`**: - -``` -composer require ralouphie/getallheaders -``` - -For PHP version **`< 5.6`**: - -``` -composer require ralouphie/getallheaders "^2" -``` diff --git a/services/libs/google-api-php-client-2.4.1/vendor/ralouphie/getallheaders/composer.json b/services/libs/google-api-php-client-2.4.1/vendor/ralouphie/getallheaders/composer.json deleted file mode 100644 index de8ce62e..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/ralouphie/getallheaders/composer.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "name": "ralouphie/getallheaders", - "description": "A polyfill for getallheaders.", - "license": "MIT", - "authors": [ - { - "name": "Ralph Khattar", - "email": "ralph.khattar@gmail.com" - } - ], - "require": { - "php": ">=5.6" - }, - "require-dev": { - "phpunit/phpunit": "^5 || ^6.5", - "php-coveralls/php-coveralls": "^2.1" - }, - "autoload": { - "files": ["src/getallheaders.php"] - }, - "autoload-dev": { - "psr-4": { - "getallheaders\\Tests\\": "tests/" - } - } -} diff --git a/services/libs/google-api-php-client-2.4.1/vendor/ralouphie/getallheaders/src/getallheaders.php b/services/libs/google-api-php-client-2.4.1/vendor/ralouphie/getallheaders/src/getallheaders.php deleted file mode 100644 index c7285a5b..00000000 --- a/services/libs/google-api-php-client-2.4.1/vendor/ralouphie/getallheaders/src/getallheaders.php +++ /dev/null @@ -1,46 +0,0 @@ - 'Content-Type', - 'CONTENT_LENGTH' => 'Content-Length', - 'CONTENT_MD5' => 'Content-Md5', - ); - - foreach ($_SERVER as $key => $value) { - if (substr($key, 0, 5) === 'HTTP_') { - $key = substr($key, 5); - if (!isset($copy_server[$key]) || !isset($_SERVER[$key])) { - $key = str_replace(' ', '-', ucwords(strtolower(str_replace('_', ' ', $key)))); - $headers[$key] = $value; - } - } elseif (isset($copy_server[$key])) { - $headers[$copy_server[$key]] = $value; - } - } - - if (!isset($headers['Authorization'])) { - if (isset($_SERVER['REDIRECT_HTTP_AUTHORIZATION'])) { - $headers['Authorization'] = $_SERVER['REDIRECT_HTTP_AUTHORIZATION']; - } elseif (isset($_SERVER['PHP_AUTH_USER'])) { - $basic_pass = isset($_SERVER['PHP_AUTH_PW']) ? $_SERVER['PHP_AUTH_PW'] : ''; - $headers['Authorization'] = 'Basic ' . base64_encode($_SERVER['PHP_AUTH_USER'] . ':' . $basic_pass); - } elseif (isset($_SERVER['PHP_AUTH_DIGEST'])) { - $headers['Authorization'] = $_SERVER['PHP_AUTH_DIGEST']; - } - } - - return $headers; - } - -} diff --git a/services/links_updater_cron.php b/services/links_updater_cron.php index 96f7cc35..5d5947d8 100644 --- a/services/links_updater_cron.php +++ b/services/links_updater_cron.php @@ -1,6 +1,5 @@ 0) { - $new_remote_account_folders = array(); - foreach ($remote_account_folders as $remote_account_folder) { - if ($remote_account_folder['type']=='mega') { - array_push($new_remote_account_folders, $remote_account_folder); - } - } - $remote_account_folders = $new_remote_account_folders; - } else if ($import_type=='googledrive' && $count_google_drive>0) { - $new_remote_account_folders = array(); - foreach ($remote_account_folders as $remote_account_folder) { - if ($remote_account_folder['type']=='googledrive') { - array_push($new_remote_account_folders, $remote_account_folder); - } - } - $remote_account_folders = $new_remote_account_folders; - } - $links = array(); foreach ($remote_account_folders as $remote_account_folder) { @@ -139,19 +117,6 @@ function get_custom_server_files($server_base_url, $remote_folder) { } } } - } else if ($remote_account_folder['type']=='googledrive') { - $res = get_google_drive_files($remote_account_folder['remote_account_id'], $remote_account_folder['division_id'], $remote_account_folder['remote_folder']); - if ($res['status']=='ko') { - echo json_encode(array( - "status" => 'ko', - "error" => "Error en accedir a Google Drive. (codi: ".$res['code'].")" - )); - die(); - } else { - foreach ($res['files'] as $file) { - array_push($links,$remote_account_folder['division_id'].':::'.$file); - } - } } else if ($remote_account_folder['type']=='storage') { $res = get_custom_server_files($remote_account_folder['token'], $remote_account_folder['remote_folder']); if ($res['status']=='ko') { diff --git a/websites/admin/remote_account_edit.php b/websites/admin/remote_account_edit.php index 75361fa6..56e11641 100644 --- a/websites/admin/remote_account_edit.php +++ b/websites/admin/remote_account_edit.php @@ -70,13 +70,12 @@
- +
diff --git a/websites/admin/remote_account_list.php b/websites/admin/remote_account_list.php index e959f683..90407133 100644 --- a/websites/admin/remote_account_list.php +++ b/websites/admin/remote_account_list.php @@ -41,7 +41,7 @@ } else { $where = ''; } - $result = query("SELECT a.*, f.name fansub_name FROM remote_account a LEFT JOIN fansub f ON a.fansub_id=f.id$where ORDER BY a.type='storage' DESC, a.type='googledrive' DESC, a.name ASC"); + $result = query("SELECT a.*, f.name fansub_name FROM remote_account a LEFT JOIN fansub f ON a.fansub_id=f.id$where ORDER BY a.type='storage' DESC, a.name ASC"); if (mysqli_num_rows($result)==0) { ?> @@ -53,7 +53,7 @@ ?> - + )" onauxclick="return false;" class="fa fa-trash p-1 text-danger"> diff --git a/websites/admin/version_edit.php b/websites/admin/version_edit.php index c9a25f62..2dfff1d1 100644 --- a/websites/admin/version_edit.php +++ b/websites/admin/version_edit.php @@ -907,10 +907,10 @@ $where = ''; } - $resulta = query("SELECT a.* FROM remote_account a$where ORDER BY a.type='storage' DESC, a.type='googledrive' DESC, a.name ASC"); + $resulta = query("SELECT a.* FROM remote_account a$where ORDER BY a.type='storage' DESC, a.name ASC"); while ($arow = mysqli_fetch_assoc($resulta)) { ?> - + Compte - Id. de carpeta (Google Drive) / Carpeta (resta) + Carpeta Sincronitza Acció @@ -956,10 +956,10 @@ $where = ''; } - $resulta = query("SELECT a.* FROM remote_account a$where ORDER BY a.type='storage' DESC, a.type='googledrive' DESC, a.name ASC"); + $resulta = query("SELECT a.* FROM remote_account a$where ORDER BY a.type='storage' DESC, a.name ASC"); while ($arow = mysqli_fetch_assoc($resulta)) { ?> - + Afegeix una carpeta
- -